I\'m currently reading up on and experimenting with the different possibilities of running programs from within C code on Linux. My use cases cover all possible scenarios, from
The 2004 version of the POSIX system() documentation has a rationale that is likely applicable to popen()
as well. Note the stated restrictions on system()
, especially the one stating "that the process ID is different":
RATIONALE
...
There are three levels of specification for the system() function. The ISO C standard gives the most basic. It requires that the function exists, and defines a way for an application to query whether a command language interpreter exists. It says nothing about the command language or the environment in which the command is interpreted.
IEEE Std 1003.1-2001 places additional restrictions on system(). It requires that if there is a command language interpreter, the environment must be as specified by fork() and exec. This ensures, for example, that close-on- exec works, that file locks are not inherited, and that the process ID is different. It also specifies the return value from system() when the command line can be run, thus giving the application some information about the command's completion status.
Finally, IEEE Std 1003.1-2001 requires the command to be interpreted as in the shell command language defined in the Shell and Utilities volume of IEEE Std 1003.1-2001.
Note the multiple references to the "ISO C Standard". The latest version of the C standard requires that the command string be processed by the system's "command processor":
7.22.4.8 The
system
functionSynopsis
#include
int system(const char *string); Description
If
string
is a null pointer, thesystem
function determines whether the host environment has a command processor. Ifstring
is not a null pointer, thesystem
function passes the string pointed to bystring
to that command processor to be executed in a manner which the implementation shall document; this might then cause the program callingsystem
to behave in a non-conforming manner or to terminate.Returns
If the argument is a null pointer, the
system
function returns nonzero only if a command processor is available. If the argument is not a null pointer, and thesystem
function does return, it returns an implementation-defined value.
Since the C standard requires that the systems "command processor" be used for the system()
call, I suspect that:
popen()
to the system()
implementation.So this is the glib answer twice-removed.