:orphan: .. index:: pair: group; TAPI for standard I/O calls .. _doxid-group__te__lib__rpc__stdio: TAPI for standard I/O calls =========================== .. toctree:: :hidden: Overview ~~~~~~~~ .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef rpc_ptr :ref:`rpc_file_p`; // global functions int :ref:`rpc_fileno`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_file_p` f); :ref:`rpc_file_p` :ref:`rpc_fopen`(:ref:`rcf_rpc_server`* rpcs, const char* path, const char* mode); :ref:`rpc_file_p` :ref:`rpc_fdopen`(:ref:`rcf_rpc_server`* rpcs, int fd, const char* mode); int :ref:`rpc_fclose`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_file_p` file); :ref:`rpc_wait_status` :ref:`rpc_system`(:ref:`rcf_rpc_server`* rpcs, const char* cmd); :ref:`rpc_wait_status` :ref:`rpc_system_ex`(:ref:`rcf_rpc_server`* rpcs, const char* cmd, ...); :ref:`rpc_file_p` :ref:`rpc_popen`(:ref:`rcf_rpc_server`* rpcs, const char* cmd, const char* mode); int :ref:`rpc_pclose`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_file_p` file); :ref:`rpc_wait_status` :ref:`rpc_shell_get_all`(:ref:`rcf_rpc_server`* rpcs, char** pbuf, const char* cmd, tarpc_uid_t uid, ...); :ref:`rpc_wait_status` :ref:`rpc_shell_get_all2`(:ref:`rcf_rpc_server`* rpcs, char** pbuf, const char* cmd, ...); :ref:`rpc_wait_status` :ref:`rpc_shell_get_all3`(:ref:`rcf_rpc_server`* rpcs, char** pbuf, const char* cmd, ...); :ref:`tarpc_pid_t` :ref:`rpc_te_shell_cmd`(:ref:`rcf_rpc_server`* rpcs, const char* cmd, tarpc_uid_t uid, int* in_fd, int* out_fd, int* err_fd, ...); char* :ref:`rpc_getenv`(:ref:`rcf_rpc_server`* rpcs, const char* name); static int :ref:`rpc_getenv_int`(:ref:`rcf_rpc_server`* rpcs, const char* name, int* val); int :ref:`rpc_setenv`(:ref:`rcf_rpc_server`* rpcs, const char* name, const char* value, int overwrite); int :ref:`rpc_unsetenv`(:ref:`rcf_rpc_server`* rpcs, const char* name); // macros #define :ref:`RPC_SHELL_CMDLINE_MAX` .. _details-group__te__lib__rpc__stdio: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Typedefs -------- .. index:: pair: typedef; rpc_file_p .. _doxid-group__te__lib__rpc__stdio_1ga7798f534de75f5c0402442e5cecbeb62: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef rpc_ptr rpc_file_p 'FILE \*' equivalent Global Functions ---------------- .. index:: pair: function; rpc_fileno .. _doxid-group__te__lib__rpc__stdio_1ga602984126c2c607d45e689720c1afc1a: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_fileno(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_file_p` f) Query the descriptor of the given file on RPC server side. See fileno manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - f - file stream .. rubric:: Returns: The stream file descriptor, otherwise -1 when error occurred .. index:: pair: function; rpc_fopen .. _doxid-group__te__lib__rpc__stdio_1gac0a7ffa28053ad5d2b084c0efa26509f: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_file_p` rpc_fopen(:ref:`rcf_rpc_server`* rpcs, const char* path, const char* mode) Open a file on RPC server side and associate it with a stream. See **fopen** manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - path - file name * - mode - type of file access .. rubric:: Returns: Stream associated with the file name, otherwise **NULL** on error .. index:: pair: function; rpc_fdopen .. _doxid-group__te__lib__rpc__stdio_1ga34fd65f8f25e04b7420f1991806cdf60: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_file_p` rpc_fdopen(:ref:`rcf_rpc_server`* rpcs, int fd, const char* mode) Open a file on RPC server side and associate it with a stream. See **fdopen** manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - mode - type of file access .. rubric:: Returns: Stream associated with the file name, otherwise **NULL** on error .. index:: pair: function; rpc_fclose .. _doxid-group__te__lib__rpc__stdio_1gad3f10f8e42d01f62806e63fb0510e0dc: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_fclose(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_file_p` file) Close the stream associated with the file. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - file - Stream to close .. rubric:: Returns: Zero on success, otherwise -1. .. index:: pair: function; rpc_system .. _doxid-group__te__lib__rpc__stdio_1ga129297c23716954f54bb099b50336fed: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_wait_status` rpc_system(:ref:`rcf_rpc_server`* rpcs, const char* cmd) Execute shell command on the IPC server. You SHOULD not use this function unless you are sure that shell command will exit normally. If this RPC will timeout, you'll have no chance to kill the child process, because you do not know its PID. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - cmd - the command to be executed .. rubric:: Returns: status of the process .. index:: pair: function; rpc_system_ex .. _doxid-group__te__lib__rpc__stdio_1ga1b5452b684278bc4e075d2b40800c303: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_wait_status` rpc_system_ex(:ref:`rcf_rpc_server`* rpcs, const char* cmd, ...) Execute shell command on the IPC server. You SHOULD not use this function unless you are sure that shell command will exit normally. If this RPC will timeout, you'll have no chance to kill the child process, because you do not know its PID. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - cmd - format of the command to be executed * - ... - parameters for the command format .. rubric:: Returns: status of the process .. index:: pair: function; rpc_popen .. _doxid-group__te__lib__rpc__stdio_1ga81076592a533d45d5178f0c13210ad8c: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_file_p` rpc_popen(:ref:`rcf_rpc_server`* rpcs, const char* cmd, const char* mode) Open a process by creating a pipe, forking, and invoking the shell. Do not use this function unless you test it - use rpc_te_shell_cmd instead. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - cmd - NULL-terminated shell command line * - mode - "r" (for reading command output) or "w" (for writing to command standard input) .. rubric:: Returns: Stream to be used for reading or writing or **NULL** on error .. index:: pair: function; rpc_pclose .. _doxid-group__te__lib__rpc__stdio_1ga49ea4e43e4da99a287372a10c9682d1d: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_pclose(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_file_p` file) Close the stream returned by **popen()**. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - file - Stream to close .. rubric:: Returns: Zero on success, otherwise -1 .. index:: pair: function; rpc_shell_get_all .. _doxid-group__te__lib__rpc__stdio_1ga6c0a2feab67aaaa0317be66ee5e201d9: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_wait_status` rpc_shell_get_all(:ref:`rcf_rpc_server`* rpcs, char** pbuf, const char* cmd, tarpc_uid_t uid, ...) Execute shell command on the IPC server and read the output. The routine allocates memory for the output buffer and places null-terminated string to it. **pbuf** pointer is initialized by NULL if no buffer is allocated. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - pbuf - location for the command output buffer * - cmd - format of the command to be executed * - uid - user id to execute as * - ... - parameters for command .. rubric:: Returns: status of the process .. index:: pair: function; rpc_shell_get_all2 .. _doxid-group__te__lib__rpc__stdio_1ga220abb0fa530c70fc5ef0ba9161777e4: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_wait_status` rpc_shell_get_all2(:ref:`rcf_rpc_server`* rpcs, char** pbuf, const char* cmd, ...) Execute shell command on the IPC server and read the output. Fail if there was anything on stderr. The routine allocates memory for the output buffer and places null-terminated string to it. **pbuf** pointer is initialized by NULL if no buffer is allocated. If **pbuf** is NULL, stdout is not redirected. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - pbuf - location for the command output * - cmd - format of the command to be executed * - ... - parameters for command .. rubric:: Returns: status of the process .. index:: pair: function; rpc_shell_get_all3 .. _doxid-group__te__lib__rpc__stdio_1ga52d520aec550de08538e5e4cc025e597: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`rpc_wait_status` rpc_shell_get_all3(:ref:`rcf_rpc_server`* rpcs, char** pbuf, const char* cmd, ...) Execute shell command on the IPC server and read the output and stderr. The routine allocates memory for the output buffers and places null-terminated strings to them. **pbuf** [0] and pbuf[1] pointers are initialized by NULL if no buffer are allocated. If **pbuf** is NULL, stdout is not redirected. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - pbuf - array of locations for the command output and stderr * - cmd - format of the command to be executed * - ... - parameters for command .. rubric:: Returns: status of the process .. index:: pair: function; rpc_te_shell_cmd .. _doxid-group__te__lib__rpc__stdio_1gab3edfbc66bb7d1240e813cf7489ecd34: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tarpc_pid_t` rpc_te_shell_cmd(:ref:`rcf_rpc_server`* rpcs, const char* cmd, tarpc_uid_t uid, int* in_fd, int* out_fd, int* err_fd, ...) Execute command on the RPC server as a given user and redirect stdin/stdout to pipe(s) if necessary. You MUST use uid parameter instead of "su - user -c", because su makes one more fork, and you do not know how to kill this grandchild process. You SHOULD destroy this process by calling :ref:`rpc_ta_kill_death() ` instead of rpc_kill(RPC_SIGKILL). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - cmd - command format to execute * - uid - user to run as * - in_fd - location to store pipe to stdin or NULL * - out_fd - location to store pipe to stdout or NULL * - err_fd - location to store pipe to stderr or NULL * - ... - parameters to command format .. rubric:: Returns: pid of spawned process or -1 on failure .. index:: pair: function; rpc_getenv .. _doxid-group__te__lib__rpc__stdio_1ga4adf577af9dd8784cf05c4c5e2787062: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* rpc_getenv(:ref:`rcf_rpc_server`* rpcs, const char* name) Get environment variable. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - name - variable name .. rubric:: Returns: variable value (memory is allocated by the function) or NULL .. index:: pair: function; rpc_getenv_int .. _doxid-group__te__lib__rpc__stdio_1gabef061e465deafcd01749ea14d69c315: .. ref-code-block:: cpp :class: doxyrest-title-code-block static int rpc_getenv_int(:ref:`rcf_rpc_server`* rpcs, const char* name, int* val) Get integer environment variable. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - name - Variable name * - val - Value location .. rubric:: Returns: ``0`` on success, otherwise ``-1`` .. index:: pair: function; rpc_setenv .. _doxid-group__te__lib__rpc__stdio_1ga30507cf59ada9a66c00192cf84c669e2: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_setenv(:ref:`rcf_rpc_server`* rpcs, const char* name, const char* value, int overwrite) Add the variable with specified value to the environment or change value of the existing variable. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - name - variable name * - value - new value * - overwrite - 0, value of the existing variable is not changed .. rubric:: Returns: variable value (memory is allocated by the function) or NULL .. index:: pair: function; rpc_unsetenv .. _doxid-group__te__lib__rpc__stdio_1ga94e2031f06346964becc068312f9be29: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_unsetenv(:ref:`rcf_rpc_server`* rpcs, const char* name) Remove environment variable. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - name - variable name .. rubric:: Returns: return code Macros ------ .. index:: pair: define; RPC_SHELL_CMDLINE_MAX .. _doxid-group__te__lib__rpc__stdio_1ga4b82a127c468142b09097320e0f5554b: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define RPC_SHELL_CMDLINE_MAX Maximum resulting command length for rpc_shell()