Why fork()
is a good API
Back in this entry, I claimed that fork()
is a
good API. This may strike some people as a crazy thing to say, given
that many people consider fork()
to be undesirable and something to
be papered over with higher-level APIs like posix_spawn()
.
The first thing to understand about fork()
is that like a number of
other Unix APIs, it is primarily a kernel API, the interface between
the kernel and user level code, not necessarily an interface that
ordinary programmers writing ordinary code are expected to use directly.
Unix has a number of these, most famously the split between the kernel
read()
and write()
APIs and standard IO.
A kernel API has different demands and tensions than a user-facing API. User-facing APIs are generally created to be convenient and easy to use, and sometimes to be hard to get things wrong (shielding you from common sorts of errors). Kernel APIs worry about efficiency, minimalism, and flexibility. They are much more willing to push work up to user-level code, and indeed they often prefer to do this.
From this perspective, fork()
is a great API with two great virtues,
one of them obvious and one of them more subtle. The first virtue is
that fork()
is about the most minimal process creation primitive
you could imagine. We can see this by how few arguments it takes;
even revised and generalized to clone()
, it takes only a couple
of arguments. If the kernel directly supported an operation like,
say, posix_spawn()
, the system call involved would need to
take much more complex arguments and do much more complex things,
things that can perfectly well be delegated to user level code (library
or otherwise). The other way to view fork()
's minimalism is that
fork()
does only the bits that require kernel privileges. By
splitting the 'spawn' operation into two system calls, Unix could let
user-level code handle any number of things in the middle that don't
need kernel privileges (some of them done with the help of existing
system calls).
(In the process Unix enabled significant flexibility and power for programs that wanted to do things other than 'spawn a separate command'.)
The subtle virtue is how future-proof fork()
is because of how little
it does. Unix has steadily acquired more and more per-process state over
time, state that you may well want to change aspects of in a command
that you run. If the kernel implemented a 'spawn' system call that
combined creating a new process, changing various aspects of its state,
and then executing a command, this system call would have needed to
have its arguments steadily revised to allow you to change all of these
new bits of state. But because changing state is up to user-level code,
fork()
needs no changes at all to support new state; all you need
to do is revise user-level code to do whatever you need. Do you need
to change the security label, decrease memory limits, or restrict the
processor cores that the command will run on? All of that is up to you.
In turn this has made it much easier to add such new state to Unix (and
to specific Unixes), because you can just add the state and some system
calls to change it; you don't need to make any changes to the arguments
a hypothetical 'spawn' system call takes.
The other aspect to this is that the creators of a hypothetical 'spawn' system call haven't had to try to anticipate every change to process state that people could want to do when they spawn commands. This matters because best practices in this area has changed and grown more elaborate over time as people gained more experience with what caused problems on Unix.
(I was going to use the example of file descriptor leaks from parents
into commands that they run, which used to be common but has been
more or less stamped out today. However this is a bad example for a
hypothetical spawn system call because the problem is actually solved in
a different way than closing file descriptors after fork()
, for good
reasons.)
|
|