• [转]execve()


    link: http://www.tutorialspoint.com/unix_system_calls/execve.htm

    NAME

    execve - execute program

    SYNOPSIS

    #include <unistd.h>

    int execve(const char *filename, char *const argv[], char *const envp[]);

    DESCRIPTION

    execve() executes the program pointed to by filenamefilename must be either a binary executable, or a script starting with a line of the form "#! interpreter [arg]". In the latter case, the interpreter must be a valid pathname for an executable which is not itself a script, which will be invoked as interpreter [arg] filename.

    argv is an array of argument strings passed to the new program. envp is an array of strings, conventionally of the form key=value, which are passed as environment to the new program. Both argv and envp must be terminated by a null pointer. The argument vector and environment can be accessed by the called program’s main function, when it is defined as int main(int argc, char *argv[], char *envp[]).

    execve() does not return on success, and the text, data, bss, and stack of the calling process are overwritten by that of the program loaded. The program invoked inherits the calling process’s PID, and any open file descriptors that are not set to close-on-exec. Signals pending on the calling process are cleared. Any signals set to be caught by the calling process are reset to their default behaviour. The SIGCHLD signal (when set to SIG_IGN) may or may not be reset to SIG_DFL.

    If the current program is being ptraced, a SIGTRAP is sent to it after a successful execve().

    If the set-user-ID bit is set on the program file pointed to by filename, and the calling process is not being ptraced, then the effective user ID of the calling process is changed to that of the owner of the program file. i Similarly, when the set-group-ID bit of the program file is set the effective group ID of the calling process is set to the group of the program file.

    The effective user ID of the process is copied to the saved set-user-ID; similarly, the effective group ID is copied to the saved set-group-ID. This copying takes place after any effective ID changes that occur because of the set-user-ID and set-group-ID permission bits.

    If the executable is an a.out dynamically-linked binary executable containing shared-library stubs, the Linux dynamic linker ld.so(8) is called at the start of execution to bring needed shared libraries into memory and link the executable with them.

    If the executable is a dynamically-linked ELF executable, the interpreter named in the PT_INTERP segment is used to load the needed shared libraries. This interpreter is typically/lib/ld-linux.so.1 for binaries linked with the Linux libc version 5, or /lib/ld-linux.so.2 for binaries linked with the GNU libc version 2.

    RETURN VALUE

    On success, execve() does not return, on error -1 is returned, and errno is set appropriately.

    ERRORS

    Error CodeDescription
    E2BIGThe total number of bytes in the environment (envp) and argument list (argv) is too large.
    EACCESSearch permission is denied on a component of the path prefix offilename or the name of a script interpreter. (See alsopath_resolution(2).)
    EACCESThe file or a script interpreter is not a regular file.
    EACCESExecute permission is denied for the file or a script or ELF interpreter.
    EACCESThe file system is mounted noexec.
    EFAULTfilename points outside your accessible address space.
    EINVALAn ELF executable had more than one PT_INTERP segment (i.e., tried to name more than one interpreter).
    EIOAn I/O error occurred.
    EISDIRAn ELF interpreter was a directory.
    ELIBBADAn ELF interpreter was not in a recognised format.
    ELOOPToo many symbolic links were encountered in resolving filename or the name of a script or ELF interpreter.
    EMFILEThe process has the maximum number of files open.
    ENAMETOOLONGfilename is too long.
    ENFILEThe system limit on the total number of open files has been reached.
    ENOENTThe file filename or a script or ELF interpreter does not exist, or a shared library needed for file or interpreter cannot be found.
    ENOEXECAn executable is not in a recognised format, is for the wrong architecture, or has some other format error that means it cannot be executed.
    ENOMEMInsufficient kernel memory was available.
    ENOTDIRA component of the path prefix of filename or a script or ELF interpreter is not a directory.
    EPERMThe file system is mounted nosuid, the user is not the superuser, and the file has an SUID or SGID bit set.
    EPERMThe process is being traced, the user is not the superuser and the file has an SUID or SGID bit set.
    ETXTBSYExecutable was open for writing by one or more processes.

    CONFORMING TO

    SVr4, 4.3BSD, POSIX.1-2001. POSIX.1-2001 does not document the #! behavior but is otherwise compatible.

    NOTES

    SUID and SGID processes can not be ptrace()d. Linux ignores the SUID and SGID bits on scripts.

    The result of mounting a filesystem nosuid vary between Linux kernel versions: some will refuse execution of SUID/SGID executables when this would give the user powers she did not have already (and return EPERM), some will just ignore the SUID/SGID bits and exec() successfully.

    A maximum line length of 127 characters is allowed for the first line in a #! executable shell script.

    HISTORICAL

    With Unix V6 the argument list of an exec() call was ended by 0, while the argument list ofmain was ended by -1. Thus, this argument list was not directly usable in a further exec() call. Since Unix V7 both are NULL.

    .

  • 相关阅读:
    backbone.js初体验--构建简单分页应用时踩到的坑
    使用r.js打包js文件
    javascript原型式继承
    javascript浮点数运算修正
    javascript对象的浅复制与深复制
    javascript类式继承
    初识requirejs(二)
    标准版SCADA 上线了~~ 三菱 Fanuc 广数 华中 西门子 HAAS等等 可以做到一套程序通用,采集所有CNC PLC
    KepServerEX读写三菱PLC,车间现场测试记录,带你了解【数据采集的困境】的前世与今生
    Mitsubishi (三菱) Fanuc(发那科),CNC,网口数据采集,NC程序下发(其它品牌CNC,哈斯 马扎克 兄弟等,正在开发中)
  • 原文地址:https://www.cnblogs.com/Proteas/p/3711370.html
Copyright © 2020-2023  润新知