Systems Programming

Application making system calls getchar() and putchar() to interface to hardware. Source: Weiss 2020, fig. 1.1.
Application making system calls getchar() and putchar() to interface to hardware. Source: Weiss 2020, fig. 1.1.

Systems are built from hardware and software components. Systems programming is about implementing these components, their interfaces and the overall architecture. Individual components perform their prescribed functions and at the same time work together to form a stable and efficient system.

Systems programming is distinct from application programming. System programs provide services to other software. Via abstractions, they expose API to simplify the development of applications. They're often optimized to low-level machine architecture. Unlike application software, most system software are not directly used by end users.

Assembly and C language have been historically used for systems programming. Go, Rust, Swift and WebAssembly are newer languages suited for systems programming.

Discussion

  • How is systems programming different from application programming?
    Comparing system software against application software. Source: Lithmee 2018.
    Comparing system software against application software. Source: Lithmee 2018.

    Operating systems, device drivers, BIOS and other firmware, compilers, debuggers, web servers, database management systems, communication protocols and networking utilities are examples of system software. As part of operating systems, memory management, scheduling, event handling and many more essential functions are done by system software. Examples of application software are Microsoft Office, web browsers, games, and graphics software.

    Application software generally don't directly access hardware or manage low-level resources. They do so via calls to system software. We may thus view system software as aiding application software with low-level access and management. Application developers can therefore focus on the business logic of their applications.

    While application developers may not build system software, they can become better developers by knowing more about the design and implementation of system software. Specifically, by knowing and using system APIs correctly they can avoid implementing similar functions in their applications.

    For example, a C application on UNIX/Linux calls the system API getpid(). The OS creates the process, allocates memory and assigns a process identifier.

  • What are the main concerns of systems programming?
    Foundations of systems programming. Source: Donovan 1972, fig. 1.1.
    Foundations of systems programming. Source: Donovan 1972, fig. 1.1.

    An operating system such as Linux is a collection of system programs. These deal with files and directories, manage processes for executable programs, enable I/O for those programs and allocate/release memory as needed. The OS manages users, groups and associated permissions. The OS prevents normal user programs from executing privileged operations. The shell is a special system program that allows users to interact with the system. If processes need to communicate or respond to external events, signals (aka software interrupts) facilitate this.

    There are systems programs that transform other programs into machine-level instructions for execution: compilers, assemblers, macro processors, loaders and linkers. Their aim is to generate instructions optimized for speed or memory. Use of registers, loops, data structures, and algorithms are considered in these system programs.

    Programming languages, editors and debuggers are also system programs. These are tools to write good and reliable system programs. They have to be easy to learn and productive for a developer while also being efficient and safe from a system perspective.

  • Is a system programmer same as a system administrator?

    A system programmer is one who write system software and this task is called system programming or systems programming. But there's an older definition that's been used in the context of mainframes since the 1960s.

    On a mainframe, a system programmer installs, upgrades, configures and maintains the operating system. She does capacity planning and evaluates new products. She's also skilled in optimizing the system for performance, troubleshooting problems and analyzing memory dumps.

    On the other hand, a system administrator handles day-to-day operations such as adding/removing users, configuring access, installing software, and monitoring performance. She deals with applications whereas a system programmer is more well-versed with the mainframe hardware.

    In small IT organizations, both roles may be performed by a single individual.

  • What languages are suited to systems programming?

    Wikipedia lists more than a dozen languages: C/C++, Ada, D, Nim, Go, Rust, Swift, and more. Notably, the following popular languages are absent: JavaScript, Java, C#, Python, Visual Basic, PHP, Perl, and Ruby. Implemented in Haskell, COGENT is a functional programming language that's also suited for systems programming.

    System programming languages are required to provide direct access to hardware including memory and I/O access. Performance, explicit memory management and fine-grained control at bit level are essential capabilities. Where they also offer high-level programming constructs, system programming languages (C, Rust, Swift, etc.) are also used for application programming.

    Since such languages give access to low-level hardware functions, there's a risk of introducing bugs. Rust was created to balance aspects of both safety and control. C sacrifices safety for control while Java does the opposite.

    Scripting languages such as Python, JavaScript and Lua are not for systems programming. However, the introduction of static typing (for safety) and Just-in-Time (JIT) compilation (for speed) has seen these languages being used for systems programming.

  • What's systems programming in the context of the web?

    On the web, applications adopt the client-server architecture. Server-side logic may be implemented as many microservices distributed on a cloud platform. Applications make use of APIs served by different endpoints. In this context, we have systems programs that help create distributed applications for the cloud. System programs must be designed to address network topology changes, security concerns, high latency, and poor network connections.

    Rob Pike commented that developers thought that Go was for systems programming. In fact, it was for writing any server-side code. Later he saw anything running on the cloud as systems software. Ousterhout commented in 1998 that on the web Java was being used for systems programming.

    Bunardzic commented that "the only way to program a system is to program a network". Systems should be designed for concurrency, fault encapsulation/detection/recovery, upgrade without downtime, observability, and asynchronous communication. Developers who use system services and APIs must be free to choose their own technology stack. One service shouldn't depend on others.

  • What are the best practices in systems programming?

    A systems programmer needs to know the system APIs well. In addition, she should know how the OS kernel, programs and users interact with one another.

    Designing a good system is not a one-time task. The system should be designed for iteration and incremental improvements. System designers must be open to feedback. Historically, many Linux system programmers blamed application developers for program crashes instead of seeing these as opportunities to improve the Linux kernel or system tools.

    All assumptions must be made explicit. Systems software should get the abstractions right, minimize if not avoid leaky abstractions. In other words, its users shouldn't need to know implementation details. For instance, ORM frameworks that interface between applications and databases are often leaky due to a conceptual mismatch between objects and relations.

    Before implementation, it's beneficial to do system modelling, analysis and simulations. Unified Modelling Language (UML) can help. Small and simple systems are amenable to formal analysis. Anything else, we need to apply statistical analysis. More components there are, more complex becomes the system.

Milestones

1960

Till early and even mid-1960s, the first concern in designing computer systems is the hardware itself. Programming them becomes a secondary concern. Programming techniques are chaotic. Often they're not as intended by the hardware designers. Systems programming as a discipline is only starting to emerge.

1966
Translators are system programs. Source: Shaw 1966, sec. I-3.
Translators are system programs. Source: Shaw 1966, sec. I-3.

Shaw considers assemblers, interpreters, compilers, and monitors as translators; that is, they translate code in one form to another. Referring to the figure, translator T translates A to B. He defines the following,

Systems Programming is the science of designing and constructing translators.
Oct
1968

At the NATO Conference on Software Engineering, the merits of high-level languages are discussed: cost, maintainability, correctness. System programmers however object to high-level languages. They don't like anything to get in between themselves and the machine. Reconciling these two concerns is the main challenge in design a suitable systems programming language.

1969

Unix operating system is invented at Bell Laboratories, first in assembly on PDP-7 (1969) and subsequently migrated to C on PDP-11 (1971). A decade later one of its inventors, Dennis Ritchie, comments that only the assembler is still written in assembler. Most other system programs are written in C language.

1971
A 'pointer' in BLISS to access bits within a word. Source: Wulf et al. 1971, pp. 786.
A 'pointer' in BLISS to access bits within a word. Source: Wulf et al. 1971, pp. 786.

Researchers at the Carnegie-Mellon University invent a new systems programming language that they name BLISS. They describe it as a general purpose high-level language for writing large software systems for specific machines. They enumerate the requirements of any good systems programming language: space/time economy, access to hardware features, data structures, control structures, understandability, debugging, etc. The figure shows an example of how BLISS enables bit-level access. Such low-level access is typical of systems software.

1984

Weicker proposes Dhrystone as a benchmark for systems programming. Currently we have the Whetstone benchmark that's tuned to measure floating-point arithmetic. Systems programs often use enumerations, records and pointer data types. Compared to numerical programs, systems programs have fewer loops, simpler compute statements, more conditional branching and more procedure calls. The Dhrystone benchmark accounts for these.

1986

An IBM research report details the challenges and pitfalls in programming for a multi-CPU and multi-threaded environment. They refer to the System/370 architecture. Shared memory and data structures have to be handled carefully. Therefore, parallelism is a new concern for systems programming. However, multi-programming was considered in the design of Unix back in the early 1970s.

1990

This decade sees the wide adoption of scripting languages such as Perl, Tcl, Ruby, PHP, Python and JavaScript. They're seen as languages that "glue together" various components whereas systems programming languages are used to create those components. In the 2010s, the boundaries blur as some scripting languages are used to build large systems software.

1992

Wolfe proposes changes to how systems programming must be taught to students. The curriculum would include small challenges in various aspects of systems programming and not just focus on assemblers and compilers. Currently, students perceive systems programming as boring, the techniques themselves stale, and the courses disconnected from systems programming jobs out there.

2005

Brewer et al. note that 35 years after the invention of C language, we still don't have a suitable alternative for systems programming. Shapiro voices a similar complaint in 2006. Advances in programming languages have not motivated systems programmers to adopt them.

2009

Mozilla begins sponsoring the development of Rust. Rust is announced to the world in 2010. The first stable release of the language happens in May 2015. Today Rust is well-recognized as a systems programming language.

2019

Crichton at Stanford University proposes that students of programming languages must be taught systems programming. Courses must not be about theory and formal methods alone. They should include practical programming while also providing effective mental models of computation and formal reasoning. He includes WebAssembly and Rust in the proposed curriculum.

References

  1. Beck, Leland L. 1997. "System Software: An Introduction to Systems Programming." Third Edition, Addison-Wesley. Accessed 2022-05-23.
  2. Bunardzic, Alex. 2022. "An open source developer's guide to systems programming." Opensource.com, April 29. Accessed 2022-05-23.
  3. Crichton, Will. 2018. "What is Systems Programming, Really?" September 9. Accessed 2022-05-23.
  4. Crichton, W. 2019. "From Theory to Systems: A Grounded Approach to Programming Language Education." arXiv, v1, April 14. Accessed 2022-05-23.
  5. Donovan, John J. 1972. "Systems Programming." Tata McGraw-Hill Edition (1991), The McGraw-Hill, Inc. Accessed 2022-05-23.
  6. Eberhardt, Colin. 2022. "WebAssembly & Modern Systems Programming Languages." QCon London, May 12. Accessed 2022-05-24.
  7. Encyclopaedia Britannica. 2021. "systems programming." Encyclopaedia Britannica, August 2. Accessed 2022-05-23.
  8. Farkas, T., C. Neumann, and A. Hinnerichs. 2009. "An Integrative Approach for Embedded Software Design with UML and Simulink/" 33rd Annual IEEE International Computer Software and Applications Conference, pp. 516-521. doi: 10.1109/COMPSAC.2009.185. Accessed 2022-05-30.
  9. GoLang Docs. 2020. "System programming in Go - 1." GoLang Docs, September 17. Accessed 2022-05-24.
  10. IBM. 2008. "Mainframe concepts." z/OS Basic Skills Information Center, IBM Corporation. Accessed 2022-05-23.
  11. Jung, Ralf, Jacques-Henri Jourdan, Robbert Krebbers, and Derek Dreyer. 2021. "Safe Systems Programming in Rust." Communications of the ACM, vol. 64, no. 4, pp. 144-152, April. Accessed 2022-05-24.
  12. Kerr, Luka. 2020. "Extending a Purely Functional Language to Enable Low-Level Systems Programming." B.E. Thesis, The University of New South Wales, December 11. Accessed 2022-05-23.
  13. Li, Peng. 2004. "Safe Systems Programming Languages." Department of Computer and Information Science, University of Pennsylvania, October 6. Accessed 2022-05-23.
  14. Lithmee. 2018. "Difference Between System Software and Application Software." Pediaa, June 22. Accessed 2022-05-24.
  15. Love, Robert. 2013. "Linux System Programming." Second Edition, O'Reilly. Accessed 2022-05-23.
  16. Madunuwan, Dumindu. 2021. "Why Rust?" Learning Rust, April 27. Accessed 2022-05-30.
  17. McDaniel, Patrick. 2015. "Module: Systems Programming." CMPSC 311- Introduction to Systems Programming, Penn State Univ. Accessed 2022-05-23.
  18. PCMag. 2022. "System software." Encyclopedia, PCMag. Accessed 2022-05-26.
  19. Perkins, C. 2012. "Evolution of Systems Programming." Lecture 11 in Advanced Operating Systems, School of CS, Accessed 2022-05-23.
  20. Ritchie, Dennis M. 1984. "The Evolution of the Unix Time-sharing System." Lucent Technologies Inc. Accessed 2022-05-23.
  21. Shapiro, Jonathan. 2006. "Programming language challenges in systems codes: why systems programmers still use C, and what to do about it." PLOS '06: Proceedings of the 3rd workshop on Programming languages and operating systems: linguistic support for modern operating systems, October. doi: 10.1145/1215995.1216004. Accessed 2022-05-30.
  22. Shaw, Alan C. 1966. "Lecture notes on a course in systems programming." Technical Report No. 52, CS Dept, Stanford University, December 9. Accessed 2022-05-23.
  23. Suda, Jon. 2015. "Stop Leak." Blog, Jon's Musings, July 25. Accessed 2022-05-30.
  24. Swift. 2022. "About Swift." Swift. Accessed 2022-05-26.
  25. TIOBE. 2022. "TIOBE Index for May 2022." TIOBE. Accessed 2022-05-30.
  26. Techopedia. 2015. "System Programming." Techopedia, September 28. Accessed 2022-05-23.
  27. Treiber, R. Kent. 1986. "Systems Programming: Coping with Parallelism." Research Report, RJ 5118, IBM Almaden Research Center, April 23. Accessed 2022-05-23.
  28. Watts, Stephen. 2020. "What is Systems Programming?" Blog, BMC, April 24. Accessed 2022-05-23.
  29. Weicker, Reinhold P. 1984. "Dhrystone: a synthetic systems programming benchmark." Communications of the ACM, vol. 27, no. 10, pp. 1013-1030, October. Accessed 2022-05-23.
  30. Weicker, R. P. 1990. "An Overview of Common Benchmarks." IEEE Computer, vol. 23, no. 12, pp. 65-75, 1990, doi: 10.1109/2.62094. Accessed 2022-05-23.
  31. Weiss, Stewart. 2020. "Chapter 1: Introduction to System Programming." Lecture notes, UNIX Application and System Programming, Department of Computer Science, Hunter College. Accessed 2022-05-23.
  32. Wikipedia. 2022. "Systems programming language." Wikipedia, April 22. Accessed 2022-05-23.
  33. Wolfe, James L. 1992. "Reviving systems programming." ACM SIGCSE Bulletin, vol. 24, no. 1, pp. 255–258, March. Accessed 2022-05-23.
  34. Wulf, W.A., D.B. Russell, and A.N. Habermann. 1971. "BLISS: A Language for Systems Programming." Communications of the ACM, vol. 14, no. 12, pp. 780-790, December. Accessed 2022-05-23.

Further Reading

  1. Crichton, Will. 2018. "What is Systems Programming, Really?" September 9. Accessed 2022-05-23.
  2. Donovan, John J. 1972. "Systems Programming." Tata McGraw-Hill Edition (1991), The McGraw-Hill, Inc. Accessed 2022-05-23.
  3. Jung, Ralf, Jacques-Henri Jourdan, Robbert Krebbers, and Derek Dreyer. 2021. "Safe Systems Programming in Rust." Communications of the ACM, vol. 64, no. 4, pp. 144-152, April. Accessed 2022-05-24.
  4. Li, Peng. 2004. "Safe Systems Programming Languages." Department of Computer and Information Science, University of Pennsylvania, October 6. Accessed 2022-05-23.
  5. Perkins, C. 2012. "Evolution of Systems Programming." Lecture 11 in Advanced Operating Systems, School of CS, Accessed 2022-05-23.
  6. Robbins, Kay A., and Steven Robbins. 2003. Unix™ Systems Programming: Communication, Concurrency, and Threads." Pearson. Accessed 2022-05-23.

Article Stats

Author-wise Stats for Article Edits

Author
No. of Edits
No. of Chats
DevCoins
3
0
2713
1
0
3
1801
Words
4
Likes
17K
Hits

Cite As

Devopedia. 2022. "Systems Programming." Version 4, May 30. Accessed 2024-06-25. https://devopedia.org/systems-programming
Contributed by
2 authors


Last updated on
2022-05-30 18:30:08

Improve this article
  • Operating System
  • Linux File System
  • Relational Database Management System
  • Systems Modelling Language
  • Systems Thinking
  • Programming Paradigms

Article Warnings

  • Readability score of this article is below 50 (48). Use shorter sentences. Use simpler words.