Why does popen() invoke a shell to execute a process?

前端 未结 3 1823
温柔的废话
温柔的废话 2021-02-20 12:13

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

3条回答
  •  醉酒成梦
    2021-02-20 12:44

    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 function

    Synopsis

    #include 
    int system(const char *string);
    

    Description

    If string is a null pointer, the system function determines whether the host environment has a command processor. If string is not a null pointer, the system function passes the string pointed to by string to that command processor to be executed in a manner which the implementation shall document; this might then cause the program calling system 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 the system 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:

    1. Somewhere there's a requirement in POSIX that ties popen() to the system() implementation.
    2. It's much easier to just reuse the "command processor" entirely since there's also a requirement to run as a separate process.

    So this is the glib answer twice-removed.

提交回复
热议问题