home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / man / cat3 / exec.0 < prev    next >
Text File  |  1993-12-07  |  6KB  |  133 lines

  1.  
  2. EXEC(3)                    UNIX Programmer's Manual                    EXEC(3)
  3.  
  4. NNAAMMEE
  5.      eexxeeccll, eexxeeccllpp, eexxeeccllee, eexxeecctt, eexxeeccvv, eexxeeccvvpp - execute a file
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<uunniissttdd..hh>>
  9.  
  10.      _e_x_t_e_r_n _c_h_a_r _*_*_e_n_v_i_r_o_n_;
  11.  
  12.      _i_n_t
  13.      eexxeeccll(_c_o_n_s_t _c_h_a_r _*_p_a_t_h, _c_o_n_s_t _c_h_a_r _*_a_r_g, _._._.)
  14.  
  15.      _i_n_t
  16.      eexxeeccllpp(_c_o_n_s_t _c_h_a_r _*_f_i_l_e, _c_o_n_s_t _c_h_a_r _*_a_r_g, _._._.)
  17.  
  18.      _i_n_t
  19.      eexxeeccllee(_c_o_n_s_t _c_h_a_r _*_p_a_t_h, _c_o_n_s_t _c_h_a_r _*_a_r_g, _._._., _c_h_a_r _*_c_o_n_s_t _e_n_v_p_[_])
  20.  
  21.      _i_n_t
  22.      eexxeecctt(_c_o_n_s_t _c_h_a_r _*_p_a_t_h, _c_h_a_r _*_c_o_n_s_t _a_r_g_v_[_])
  23.  
  24.      _i_n_t
  25.      eexxeeccvv(_c_o_n_s_t _c_h_a_r _*_p_a_t_h, _c_h_a_r _*_c_o_n_s_t _a_r_g_v_[_])
  26.  
  27.      _i_n_t
  28.      eexxeeccvvpp(_c_o_n_s_t _c_h_a_r _*_f_i_l_e, _c_h_a_r _*_c_o_n_s_t _a_r_g_v_[_])
  29.  
  30. DDEESSCCRRIIPPTTIIOONN
  31.      The eexxeecc family of functions replaces the current process image with a
  32.      new process image.  The functions described in this manual page are
  33.      front­ends for the function execve(2).  (See the manual page for execve
  34.      for detailed information about the replacement of the current process.)
  35.  
  36.      The initial argument for these functions is the pathname of a file which
  37.      is to be executed.
  38.  
  39.      The _c_o_n_s_t _c_h_a_r _*_a_r_g and subsequent ellipses in the eexxeeccll(), eexxeeccllpp(), and
  40.      eexxeeccllee() functions can be thought of as _a_r_g_0, _a_r_g_1, ..., _a_r_g_n. Together
  41.      they describe a list of one or more pointers to null­terminated strings
  42.      that represent the argument list available to the executed program.  The
  43.      first argument, by convention, should point to the file name associated
  44.      with the file being executed.  The list of arguments _m_u_s_t be terminated
  45.      by a NULL pointer.
  46.  
  47.      The eexxeecctt(), eexxeeccvv(), and eexxeeccvvpp() functions provide an array of pointers
  48.      to null­terminated strings that represent the argument list available to
  49.      the new program.  The first argument, by convention, should point to the
  50.      file name associated with the file begin executed.  The array of pointers
  51.      mmuusstt be terminated by a NULL pointer.
  52.  
  53.      The eexxeeccllee() and eexxeecctt() functions also specify the environment of the
  54.      executed process by following the NULL pointer that terminates the list
  55.      of arguments in the parameter list or the pointer to the argv array with
  56.      an additional parameter.  This additional parameter is an array of point­
  57.      ers to null­terminated strings and _m_u_s_t be terminated by a NULL pointer.
  58.      The other functions take the environment for the new process image from
  59.      the external variable _e_n_v_i_r_o_n in the current process.
  60.  
  61.      Some of these functions have special semantics.
  62.  
  63.      The functions eexxeeccllpp() and eexxeeccvvpp() will duplicate the actions of the
  64.      shell in searching for an executable file if the specified file name does
  65.      not contain a slash ``/'' character.  The search path is the path speci­
  66.      fied in the environment by ``PATH'' variable.  If this variable isn't
  67.      specified, the default path ``/bin:/usr/bin:'' is used.  In addtion, cer­
  68.      tain errors are treated specially.
  69.  
  70.      If permission is denied for a file (the attempted execve returned
  71.      EACCES), these functions will continue searching the rest of the search
  72.      path.  If no other file is found, however, they will return with the
  73.      global variable _e_r_r_n_o set to EACCES.
  74.  
  75.      If the header of a file isn't recognized (the attempted execve returned
  76.      ENOEXEC), these functions will execute the shell with the path of the
  77.      file as its first argument.  (If this attempt fails, no further searching
  78.      is done.)
  79.  
  80.      If the file is currently busy (the attempted execve returned ETXTBUSY),
  81.      these functions will sleep for several seconds, periodically re­
  82.      attempting to execute the file.
  83.  
  84.      The function eexxeecctt() executes a file with the program tracing facilities
  85.      enabled (see ptrace(2)).
  86.  
  87. RREETTUURRNN VVAALLUUEESS
  88.      If any of the exec functions returns, an error will have occurred.  The
  89.      return value is -1, and the global variable _e_r_r_n_o will be set to indicate
  90.      the error.
  91.  
  92. FFIILLEESS
  93.      /bin/sh  The shell.
  94.  
  95. EERRRROORRSS
  96.      EExxeeccll(), eexxeeccllee(), eexxeeccllpp() and eexxeeccvvpp() may fail and set _e_r_r_n_o for any
  97.      of the errors specified for the library functions execve(2) and
  98.      malloc(3).
  99.  
  100.      EExxeecctt() and eexxeeccvv() may fail and set _e_r_r_n_o for any of the errors speci­
  101.      fied for the library function execve(2).
  102.  
  103. SSEEEE AALLSSOO
  104.      sh(1),  execve(2),  fork(2),  trace(2),  environ(7),  ptrace(2),
  105.      environ(7),
  106.  
  107. CCOOMMPPAATTIIBBIILLIITTYY
  108.      Historically, the default path for the eexxeeccllpp() and eexxeeccvvpp() functions
  109.      was ``_:_/_b_i_n_:_/_u_s_r_/_b_i_n''. This was changed to place the current directory
  110.      last to enhance system security.
  111.  
  112.      The behavior of eexxeeccllpp() and eexxeeccvvpp() when errors occur while attempting
  113.      to execute the file is historic practice, but has not traditionally been
  114.      documented and is not specified by the POSIX standard.
  115.  
  116.      Traditionally, the functions eexxeeccllpp() and eexxeeccvvpp() ignored all errors ex­
  117.      cept for the ones described above and ENOMEM and E2BIG, upon which they
  118.      returned.  They now return if any error other than the ones described
  119.      above occurs.
  120.  
  121. SSTTAANNDDAARRDDSS
  122.      EExxeeccll(), eexxeeccvv(), eexxeeccllee(), eexxeeccllpp() and eexxeeccvvpp() conform to IEEE
  123.      Std1003.1­1988 (``POSIX'').
  124.  
  125. BSD Experimental                April 19, 1991                               2
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.