summaryrefslogtreecommitdiffstats
path: root/man2/vfork.2
diff options
context:
space:
mode:
Diffstat (limited to 'man2/vfork.2')
-rw-r--r--man2/vfork.288
1 files changed, 44 insertions, 44 deletions
diff --git a/man2/vfork.2 b/man2/vfork.2
index 0436b0f42..b978d94a5 100644
--- a/man2/vfork.2
+++ b/man2/vfork.2
@@ -21,7 +21,7 @@ Standard C library
.P
.RS -4
Feature Test Macro Requirements for glibc (see
-.BR feature_test_macros (7)):
+.MR feature_test_macros 7 ):
.RE
.P
.BR vfork ():
@@ -40,7 +40,7 @@ Feature Test Macro Requirements for glibc (see
The
.BR vfork ()
function has the same effect as
-.BR fork (2),
+.MR fork 2 ,
except that the behavior is undefined if the process created by
.BR vfork ()
either modifies any data other than a variable of type
@@ -50,49 +50,49 @@ used to store the return value from
or returns from the function in which
.BR vfork ()
was called, or calls any other function before successfully calling
-.BR _exit (2)
+.MR _exit 2
or one of the
-.BR exec (3)
+.MR exec 3
family of functions.
.SS Linux description
.BR vfork (),
just like
-.BR fork (2),
+.MR fork 2 ,
creates a child process of the calling process.
For details and return value and errors, see
-.BR fork (2).
+.MR fork 2 .
.P
.BR vfork ()
is a special case of
-.BR clone (2).
+.MR clone 2 .
It is used to create new processes without copying the page tables of
the parent process.
It may be useful in performance-sensitive applications
where a child is created which then immediately issues an
-.BR execve (2).
+.MR execve 2 .
.P
.BR vfork ()
differs from
-.BR fork (2)
+.MR fork 2
in that the calling thread is suspended until the child terminates
(either normally,
by calling
-.BR _exit (2),
+.MR _exit 2 ,
or abnormally, after delivery of a fatal signal),
or it makes a call to
-.BR execve (2).
+.MR execve 2 .
Until that point, the child shares all memory with its parent,
including the stack.
The child must not return from the current function or call
-.BR exit (3)
+.MR exit 3
(which would have the effect of calling exit handlers
established by the parent process and flushing the parent's
-.BR stdio (3)
+.MR stdio 3
buffers), but may call
-.BR _exit (2).
+.MR _exit 2 .
.P
As with
-.BR fork (2),
+.MR fork 2 ,
the child process created by
.BR vfork ()
inherits copies of various of the caller's process attributes
@@ -106,26 +106,26 @@ Signals sent to the parent
arrive after the child releases the parent's memory
(i.e., after the child terminates
or calls
-.BR execve (2)).
+.MR execve 2 ).
.SS Historic description
Under Linux,
-.BR fork (2)
+.MR fork 2
is implemented using copy-on-write pages, so the only penalty incurred by
-.BR fork (2)
+.MR fork 2
is the time and memory required to duplicate the parent's page tables,
and to create a unique task structure for the child.
However, in the bad old days a
-.BR fork (2)
+.MR fork 2
would require making a complete copy of the caller's data space,
often needlessly, since usually immediately afterward an
-.BR exec (3)
+.MR exec 3
is done.
Thus, for greater efficiency, BSD introduced the
.BR vfork ()
system call, which did not fully copy the address space of
the parent process, but borrowed the parent's memory and thread
of control until a call to
-.BR execve (2)
+.MR execve 2
or an exit occurred.
The parent process was suspended while the
child was using its resources.
@@ -138,11 +138,11 @@ held in a register.
The requirements put on
.BR vfork ()
by the standards are weaker than those put on
-.BR fork (2),
+.MR fork 2 ,
so an implementation where the two are synonymous is compliant.
In particular, the programmer cannot rely on the parent
remaining blocked until the child either terminates or calls
-.BR execve (2),
+.MR execve 2 ,
and cannot rely on any specific behavior with respect to shared memory.
.\" In AIXv3.1 vfork is equivalent to fork.
.P
@@ -157,7 +157,7 @@ as it will, in that case, be made synonymous to
.IR fork .\[rq]
However, even though modern memory management hardware
has decreased the performance difference between
-.BR fork (2)
+.MR fork 2
and
.BR vfork (),
there are various reasons why Linux and other systems have retained
@@ -169,16 +169,16 @@ advantage conferred by
.IP \[bu]
.BR vfork ()
can be implemented on systems that lack a memory-management unit (MMU), but
-.BR fork (2)
+.MR fork 2
can't be implemented on such systems.
(POSIX.1-2008 removed
.BR vfork ()
from the standard; the POSIX rationale for the
-.BR posix_spawn (3)
+.MR posix_spawn 3
function notes that that function,
which provides functionality equivalent to
-.BR fork (2)+\c
-.BR exec (3),
+.MR fork 2 +\c
+.MR exec 3 ,
is designed to be implementable on systems that lack an MMU.)
.\" http://stackoverflow.com/questions/4259629/what-is-the-difference-between-fork-and-vfork
.\" http://developers.sun.com/solaris/articles/subprocess/subprocess.html
@@ -190,32 +190,32 @@ On systems where memory is constrained,
avoids the need to temporarily commit memory (see the description of
.I /proc/sys/vm/overcommit_memory
in
-.BR proc (5))
+.MR proc 5 )
in order to execute a new program.
(This can be especially beneficial where a large parent process wishes
to execute a small helper program in a child process.)
By contrast, using
-.BR fork (2)
+.MR fork 2
in this scenario requires either committing an amount of memory equal
to the size of the parent process (if strict overcommitting is in force)
or overcommitting memory with the risk that a process is terminated
by the out-of-memory (OOM) killer.
.SS Linux notes
Fork handlers established using
-.BR pthread_atfork (3)
+.MR pthread_atfork 3
are not called when a multithreaded program employing
the NPTL threading library calls
.BR vfork ().
Fork handlers are called in this case in a program using the
LinuxThreads threading library.
(See
-.BR pthreads (7)
+.MR pthreads 7
for a description of Linux threading libraries.)
.P
A call to
.BR vfork ()
is equivalent to calling
-.BR clone (2)
+.MR clone 2
with
.I flags
specified as:
@@ -238,13 +238,13 @@ system call appeared in 3.0BSD.
.\" In the release notes for 4.2BSD Sam Leffler wrote: `vfork: Is still
.\" present, but definitely on its way out'.
In 4.4BSD it was made synonymous to
-.BR fork (2)
+.MR fork 2
but NetBSD introduced it again;
see
.UR http://www.netbsd.org\:/Documentation\:/kernel\:/vfork.html
.UE .
In Linux, it has been equivalent to
-.BR fork (2)
+.MR fork 2
until Linux 2.2.0-pre6 or so.
Since Linux 2.2.0-pre9 (on i386, somewhat later on
other architectures) it is an independent system call.
@@ -270,7 +270,7 @@ or executes a new program.
This means that the child is sharing an address space with other running code.
This can be dangerous if another thread in the parent process
changes credentials (using
-.BR setuid (2)
+.MR setuid 2
or similar),
since there are now two processes with different privilege levels
running in the same address space.
@@ -282,9 +282,9 @@ After the
a thread in the parent process drops the process to an unprivileged user
in order to run some untrusted code
(e.g., perhaps via plug-in opened with
-.BR dlopen (3)).
+.MR dlopen 3 ).
In this case, attacks are possible where the parent process uses
-.BR mmap (2)
+.MR mmap 2
to map in code that will be executed by the privileged child process.
.\"
.SH BUGS
@@ -308,9 +308,9 @@ are allowed and input attempts result in an end-of-file indication."
.\" .BR vfork ()
.\" and requires a kernel patch.
.SH SEE ALSO
-.BR clone (2),
-.BR execve (2),
-.BR _exit (2),
-.BR fork (2),
-.BR unshare (2),
-.BR wait (2)
+.MR clone 2 ,
+.MR execve 2 ,
+.MR _exit 2 ,
+.MR fork 2 ,
+.MR unshare 2 ,
+.MR wait 2