:orphan: .. index:: pair: group; TAPI for some file operations calls .. _doxid-group__te__lib__rpc__unistd: TAPI for some file operations calls =================================== .. toctree:: :hidden: struct_rpc_epoll_event.rst struct_rpc_f_owner_ex.rst struct_rpc_iovec.rst struct_rpc_pollfd.rst union_rpc_epoll_data.rst Overview ~~~~~~~~ .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef struct :ref:`rpc_iovec` :ref:`rpc_iovec`; typedef union :ref:`rpc_epoll_data` :target:`rpc_epoll_data_t`; // structs struct :ref:`rpc_epoll_event`; struct :ref:`rpc_f_owner_ex`; struct :ref:`rpc_iovec`; struct :ref:`rpc_pollfd`; // unions union :ref:`rpc_epoll_data`; // global functions int :ref:`rpc_open`(:ref:`rcf_rpc_server`* rpcs, const char* path, :ref:`rpc_fcntl_flags` flags, :ref:`rpc_file_mode_flags` mode); int :ref:`rpc_open64`(:ref:`rcf_rpc_server`* rpcs, const char* path, :ref:`rpc_fcntl_flags` flags, :ref:`rpc_file_mode_flags` mode); int :ref:`rpc_mkstemp`(:ref:`rcf_rpc_server`* rpcs, const char* template, char** pathname); int :ref:`rpc_close`(:ref:`rcf_rpc_server`* rpcs, int fd); ssize_t :ref:`rpc_write_at_offset`(:ref:`rcf_rpc_server`* rpcs, int fd, char* buf, size_t buflen, off_t offset); int :ref:`rpc_dup`(:ref:`rcf_rpc_server`* rpcs, int oldfd); int :ref:`rpc_dup2`(:ref:`rcf_rpc_server`* rpcs, int oldfd, int newfd); int :ref:`rpc_dup3`(:ref:`rcf_rpc_server`* rpcs, int oldfd, int newfd, int flags); int :ref:`rpc_write`(:ref:`rcf_rpc_server`* rpcs, int fd, const void* buf, size_t count); int :ref:`rpc_pwrite`(:ref:`rcf_rpc_server`* rpcs, int fd, const void* buf, size_t count, off_t offset); int :target:`rpc_write_via_splice`(:ref:`rcf_rpc_server`* rpcs, int fd, const void* buf, size_t count); int :ref:`rpc_write_and_close`(:ref:`rcf_rpc_server`* rpcs, int fd, const void* buf, size_t count); :ref:`tarpc_ssize_t` :ref:`rpc_writebuf_gen`(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_ptr buf, size_t buf_off, size_t count); static :ref:`tarpc_ssize_t` :target:`rpc_writebuf`(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_ptr buf, size_t count); static :ref:`tarpc_ssize_t` :target:`rpc_writebuf_off`(:ref:`rcf_rpc_server`* rpcs, int fd, :ref:`rpc_ptr_off`* buf, size_t count); int :ref:`rpc_read_gen`(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count, size_t rbuflen); int :target:`rpc_read_via_splice`(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count); static int :ref:`rpc_read`(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count); int :ref:`rpc_pread`(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count, :ref:`tarpc_off_t` offset); :ref:`tarpc_ssize_t` :ref:`rpc_readbuf_gen`(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_ptr buf, size_t buf_off, size_t count); static :ref:`tarpc_ssize_t` :target:`rpc_readbuf`(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_ptr buf, size_t count); static :ref:`tarpc_ssize_t` :target:`rpc_readbuf_off`(:ref:`rcf_rpc_server`* rpcs, int fd, :ref:`rpc_ptr_off`* buf, size_t count); :ref:`tarpc_off_t` :ref:`rpc_lseek`(:ref:`rcf_rpc_server`* rpcs, int fd, :ref:`tarpc_off_t` pos, :ref:`rpc_lseek_mode` mode); int :target:`rpc_truncate`(:ref:`rcf_rpc_server`* rpcs, const char* path, :ref:`tarpc_off_t` length); int :target:`rpc_ftruncate`(:ref:`rcf_rpc_server`* rpcs, int fd, :ref:`tarpc_off_t` length); int :ref:`rpc_fsync`(:ref:`rcf_rpc_server`* rpcs, int fd); uint8_t* :ref:`rpc_iovec_to_array`(size_t len, const struct :ref:`rpc_iovec`* v, size_t cnt); void :ref:`te_iovec_rpc2tarpc`(const :ref:`rpc_iovec`* rpc_iovs, :ref:`tarpc_iovec`* tarpc_iovs, size_t count); :ref:`te_errno` :ref:`te_iovec_rpc2str_append`(:ref:`te_string`* str, const :ref:`rpc_iovec`* iovs, size_t count); int :ref:`rpc_iovec_cmp`(size_t v1len, const struct :ref:`rpc_iovec`* v1, size_t v1cnt, size_t v2len, const struct :ref:`rpc_iovec`* v2, size_t v2cnt); void :ref:`rpc_iovec_cmp_strict`(:ref:`rpc_iovec`* iov1, :ref:`rpc_iovec`* iov2, size_t iovcnt); int :ref:`rpc_writev`(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt); int :ref:`rpc_pwritev`(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`tarpc_off_t` offset); int :ref:`rpc_pwritev2`(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`tarpc_off_t` offset, rpc_preadv2_pwritev2_flags flags); int :ref:`rpc_readv_gen`(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, size_t riovcnt); static int :ref:`rpc_readv`(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt); int :ref:`rpc_preadv`(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`tarpc_off_t` offset); int :ref:`rpc_preadv2`(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`tarpc_off_t` offset, rpc_preadv2_pwritev2_flags flags); rpc_fd_set_p :ref:`rpc_fd_set_new`(:ref:`rcf_rpc_server`* rpcs); void :ref:`rpc_fd_set_delete`(:ref:`rcf_rpc_server`* rpcs, rpc_fd_set_p set); void :ref:`rpc_do_fd_zero`(:ref:`rcf_rpc_server`* rpcs, rpc_fd_set_p set); void :ref:`rpc_do_fd_set`(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_fd_set_p set); void :ref:`rpc_do_fd_clr`(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_fd_set_p set); int :ref:`rpc_do_fd_isset`(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_fd_set_p set); int :ref:`rpc_select`(:ref:`rcf_rpc_server`* rpcs, int n, rpc_fd_set_p readfds, rpc_fd_set_p writefds, rpc_fd_set_p exceptfds, struct :ref:`tarpc_timeval`* timeout); int :ref:`rpc_pselect`(:ref:`rcf_rpc_server`* rpcs, int n, rpc_fd_set_p readfds, rpc_fd_set_p writefds, rpc_fd_set_p exceptfds, struct :ref:`tarpc_timespec`* timeout, const rpc_sigset_p sigmask); int :target:`rpc_epoll_create`(:ref:`rcf_rpc_server`* rpcs, int size); int :target:`rpc_epoll_create1`(:ref:`rcf_rpc_server`* rpcs, int flags); int :target:`rpc_epoll_ctl`(:ref:`rcf_rpc_server`* rpcs, int epfd, int oper, int fd, struct :ref:`rpc_epoll_event`* event); static int :target:`rpc_epoll_ctl_simple`(:ref:`rcf_rpc_server`* rpcs, int epfd, int oper, int fd, uint32_t events); int :target:`rpc_epoll_wait_gen`(:ref:`rcf_rpc_server`* rpcs, int epfd, struct :ref:`rpc_epoll_event`* events, int rmaxev, int maxevents, int timeout); static int :target:`rpc_epoll_wait`(:ref:`rcf_rpc_server`* rpcs, int epfd, struct :ref:`rpc_epoll_event`* events, int maxevents, int timeout); int :target:`rpc_epoll_pwait_gen`(:ref:`rcf_rpc_server`* rpcs, int epfd, struct :ref:`rpc_epoll_event`* events, int rmaxev, int maxevents, int timeout, const rpc_sigset_p sigmask); static int :target:`rpc_epoll_pwait`(:ref:`rcf_rpc_server`* rpcs, int epfd, struct :ref:`rpc_epoll_event`* events, int maxevents, int timeout, const rpc_sigset_p sigmask); int :target:`rpc_epoll_pwait2_gen`(:ref:`rcf_rpc_server`* rpcs, int epfd, struct :ref:`rpc_epoll_event`* events, int rmaxev, int maxevents, struct :ref:`tarpc_timespec`* timeout, const rpc_sigset_p sigmask); static int :target:`rpc_epoll_pwait2`(:ref:`rcf_rpc_server`* rpcs, int epfd, struct :ref:`rpc_epoll_event`* events, int maxevents, struct :ref:`tarpc_timespec`* timeout, const rpc_sigset_p sigmask); int :ref:`rpc_poll_gen`(:ref:`rcf_rpc_server`* rpcs, struct :ref:`rpc_pollfd`* ufds, unsigned int nfds, int timeout, unsigned int rnfds); static int :ref:`rpc_poll`(:ref:`rcf_rpc_server`* rpcs, struct :ref:`rpc_pollfd`* ufds, unsigned int nfds, int timeout); int :target:`rpc_ppoll_gen`(:ref:`rcf_rpc_server`* rpcs, struct :ref:`rpc_pollfd`* ufds, unsigned int nfds, struct :ref:`tarpc_timespec`* timeout, const rpc_sigset_p sigmask, unsigned int rnfds); static int :target:`rpc_ppoll`(:ref:`rcf_rpc_server`* rpcs, struct :ref:`rpc_pollfd`* ufds, unsigned int nfds, struct :ref:`tarpc_timespec`* timeout, const rpc_sigset_p sigmask); ssize_t :ref:`rpc_sendfile`(:ref:`rcf_rpc_server`* rpcs, int out_fd, int in_fd, :ref:`tarpc_off_t`* offset, size_t count, tarpc_bool force64); ssize_t :target:`rpc_sendfile_via_splice`(:ref:`rcf_rpc_server`* rpcs, int out_fd, int in_fd, :ref:`tarpc_off_t`* offset, size_t count); ssize_t :target:`rpc_splice`(:ref:`rcf_rpc_server`* rpcs, int fd_in, :ref:`tarpc_off_t`* off_in, int fd_out, :ref:`tarpc_off_t`* off_out, size_t len, int flags); int :ref:`rpc_ioctl`(:ref:`rcf_rpc_server`* rpcs, int fd, :ref:`rpc_ioctl_code` request, ...); int :ref:`rpc_fcntl`(:ref:`rcf_rpc_server`* rpcs, int fd, int cmd, ...); int :ref:`rpc_pipe`(:ref:`rcf_rpc_server`* rpcs, int filedes[2]); int :ref:`rpc_pipe2`(:ref:`rcf_rpc_server`* rpcs, int filedes[2], int flags); int :ref:`rpc_socketpair`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_socket_domain` domain, :ref:`rpc_socket_type` type, :ref:`rpc_socket_proto` protocol, int sv[2]); void :ref:`rpc_exit`(:ref:`rcf_rpc_server`* rpcs, int status); void :ref:`rpc__exit`(:ref:`rcf_rpc_server`* rpcs, int status); pid_t :ref:`rpc_getpid`(:ref:`rcf_rpc_server`* rpcs); :ref:`tarpc_pthread_t` :ref:`rpc_pthread_self`(:ref:`rcf_rpc_server`* rpcs); int :ref:`rpc_pthread_cancel`(:ref:`rcf_rpc_server`* rpcs, :ref:`tarpc_pthread_t` tid); int :ref:`rpc_pthread_setcancelstate`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_pthread_cancelstate` state, :ref:`rpc_pthread_cancelstate`* oldstate); int :ref:`rpc_pthread_setcanceltype`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_pthread_canceltype` type, :ref:`rpc_pthread_canceltype`* oldtype); int :ref:`rpc_pthread_join`(:ref:`rcf_rpc_server`* rpcs, :ref:`tarpc_pthread_t` tid, uint64_t* retval); int :ref:`rpc_gettid`(:ref:`rcf_rpc_server`* rpcs); tarpc_uid_t :ref:`rpc_getuid`(:ref:`rcf_rpc_server`* rpcs); int :ref:`rpc_setuid`(:ref:`rcf_rpc_server`* rpcs, tarpc_uid_t uid); int :ref:`rpc_access`(:ref:`rcf_rpc_server`* rpcs, const char* path, int mode); struct passwd* :ref:`rpc_getpwnam`(:ref:`rcf_rpc_server`* rpcs, const char* name); int :ref:`rpc_uname`(:ref:`rcf_rpc_server`* rpcs, struct utsname* buf); tarpc_uid_t :ref:`rpc_geteuid`(:ref:`rcf_rpc_server`* rpcs); int :ref:`rpc_seteuid`(:ref:`rcf_rpc_server`* rpcs, tarpc_uid_t uid); rpc_ptr :ref:`rpc_malloc`(:ref:`rcf_rpc_server`* rpcs, size_t size); void :ref:`rpc_free`(:ref:`rcf_rpc_server`* rpcs, rpc_ptr buf); uint64_t :ref:`rpc_get_addr_by_id`(:ref:`rcf_rpc_server`* rpcs, rpc_ptr id); static bool :ref:`rpc_malloc_off`(:ref:`rcf_rpc_server`* rpcs, size_t size, :ref:`rpc_ptr_off`** buf); static void :ref:`rpc_free_off`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_ptr_off`* buf); rpc_ptr :ref:`rpc_malloc_misaligned`(:ref:`rcf_rpc_server`* rpcs, size_t alignment, size_t size, size_t offset); int :ref:`rpc_posix_memalign`(:ref:`rcf_rpc_server`* rpcs, rpc_ptr* ptr, size_t alignment, size_t size); int :ref:`rpc_setrlimit`(:ref:`rcf_rpc_server`* rpcs, int resource, const :ref:`tarpc_rlimit`* rlim); int :ref:`rpc_getrlimit`(:ref:`rcf_rpc_server`* rpcs, int resource, :ref:`tarpc_rlimit`* rlim); int64_t :ref:`rpc_sysconf`(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_sysconf_name` name); int :ref:`rpc_fstat`(:ref:`rcf_rpc_server`* rpcs, int fd, :ref:`rpc_stat`* buf); int :target:`rpc_fstat64`(:ref:`rcf_rpc_server`* rpcs, int fd, :ref:`rpc_stat`* buf); int :ref:`rpc_stat_func`(:ref:`rcf_rpc_server`* rpcs, const char* path, :ref:`rpc_stat`* buf); int :ref:`rpc_link`(:ref:`rcf_rpc_server`* rpcs, const char* path1, const char* path2); int :ref:`rpc_symlink`(:ref:`rcf_rpc_server`* rpcs, const char* path1, const char* path2); ssize_t :ref:`rpc_readlink`(:ref:`rcf_rpc_server`* rpcs, const char* path, char* buf, size_t bufsize); int :ref:`rpc_unlink`(:ref:`rcf_rpc_server`* rpcs, const char* path); int :ref:`rpc_mkdir`(:ref:`rcf_rpc_server`* rpcs, const char* path, :ref:`rpc_file_mode_flags` mode); int :ref:`rpc_mkdirp`(:ref:`rcf_rpc_server`* rpcs, const char* path, :ref:`rpc_file_mode_flags` mode); int :ref:`rpc_rmdir`(:ref:`rcf_rpc_server`* rpcs, const char* path); int :ref:`rpc_rename`(:ref:`rcf_rpc_server`* rpcs, const char* path_old, const char* path_new); int :ref:`rpc_fstatvfs`(:ref:`rcf_rpc_server`* rpcs, int fd, :ref:`tarpc_statvfs`* buf); int :ref:`rpc_statvfs`(:ref:`rcf_rpc_server`* rpcs, const char* path, :ref:`tarpc_statvfs`* buf); int :ref:`rpc_gethostname`(:ref:`rcf_rpc_server`* rpcs, char* name, size_t len); int :ref:`rpc_chroot`(:ref:`rcf_rpc_server`* rpcs, char* path); int :ref:`rpc_copy_ta_libs`(:ref:`rcf_rpc_server`* rpcs, char* path); int :ref:`rpc_rm_ta_libs`(:ref:`rcf_rpc_server`* rpcs, char* path); int :ref:`rpc_execve_gen`(:ref:`rcf_rpc_server`* rpcs, const char* filename, char*const argv[], char*const envp[]); void :ref:`rpc_make_iov`(:ref:`rpc_iovec`* iov, size_t iovcnt, size_t min, size_t max); void :ref:`rpc_release_iov`(:ref:`rpc_iovec`* iov, size_t iovcnt); void :ref:`rpc_alloc_iov`(:ref:`rpc_iovec`** iov, size_t iovcnt, size_t min, size_t max); void :ref:`rpc_free_iov`(:ref:`rpc_iovec`* iov, size_t iovcnt); uint8_t* :ref:`rpc_iov_append2dbuf`(const :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`te_dbuf`* buf); uint8_t* :ref:`rpc_iov2dbuf`(const :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`te_dbuf`* buf); size_t :ref:`rpc_iov_data_len`(const :ref:`rpc_iovec`* iov, size_t iovcnt); // macros #define :ref:`CLEANUP_RPC_FREE`(_rpcs, _ptr) .. _details-group__te__lib__rpc__unistd: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Typedefs -------- .. index:: pair: typedef; rpc_iovec .. _doxid-group__te__lib__rpc__unistd_1ga58ea93e99cbefc608309b21a0b7ef038: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`rpc_iovec` rpc_iovec Sturcture to store vector of buffers Global Functions ---------------- .. index:: pair: function; rpc_open .. _doxid-group__te__lib__rpc__unistd_1gadf95c64dd362f129e4553fae2717eac0: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_open(:ref:`rcf_rpc_server`* rpcs, const char* path, :ref:`rpc_fcntl_flags` flags, :ref:`rpc_file_mode_flags` mode) Open a file or device. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - path - File or device name * - flags - How to open * - mode - The permissions to use in case a new file is created .. rubric:: Returns: File descriptor on success or -1 on failure .. index:: pair: function; rpc_open64 .. _doxid-group__te__lib__rpc__unistd_1gaed2f09559451ea6edaac8bc232c8055f: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_open64(:ref:`rcf_rpc_server`* rpcs, const char* path, :ref:`rpc_fcntl_flags` flags, :ref:`rpc_file_mode_flags` mode) Open a large file or device. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - path - File or device name * - flags - How to open * - mode - The permissions to use in case a new file is created .. rubric:: Returns: File descriptor on success or -1 on failure .. index:: pair: function; rpc_mkstemp .. _doxid-group__te__lib__rpc__unistd_1ga1c3ac0bec793a1fd66bb917a28793f4d: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_mkstemp(:ref:`rcf_rpc_server`* rpcs, const char* template, char** pathname) Create and open a temporary file. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle. * - template - Template for a pathname. Like for the POSIX mkstemp(), it must end with six ``XXXXXX``, but unlike mkstemp(), the value won't be modified. * - pathname - The location for a generated name (may be ``NULL``, otherwise the memory should be free()'d). .. rubric:: Returns: File descriptor or -1 on failure .. index:: pair: function; rpc_close .. _doxid-group__te__lib__rpc__unistd_1ga507064a34e2e8b964cff8f867f1e83b6: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_close(:ref:`rcf_rpc_server`* rpcs, int fd) Close file descriptor on RPC server side. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor to close .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_write_at_offset .. _doxid-group__te__lib__rpc__unistd_1ga11e6dcc092764a6d1d78c644b1bfb555: .. ref-code-block:: cpp :class: doxyrest-title-code-block ssize_t rpc_write_at_offset(:ref:`rcf_rpc_server`* rpcs, int fd, char* buf, size_t buflen, off_t offset) Write the buffer to the file starting with the specified file offset. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - buf - buffer to write * - buflen - size of buffer * - offset - file offset to write the buffer at * - -2 - Failed to reposition the file offset. * - -1 - Failed to write the data. * - -3 - Other errors. .. rubric:: Returns: Number of bytes actually written or negative value on failure. .. index:: pair: function; rpc_dup .. _doxid-group__te__lib__rpc__unistd_1ga7dda7411d8b41d6f3cf7114ac20d9475: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_dup(:ref:`rcf_rpc_server`* rpcs, int oldfd) Duplicate a file descriptor on RPC server side. See **dup** manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - oldfd - file descriptor to be duplicated .. rubric:: Returns: New file descriptor or -1 on error .. index:: pair: function; rpc_dup2 .. _doxid-group__te__lib__rpc__unistd_1gadad8c7ceb76ec02108acf11bbac4ef11: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_dup2(:ref:`rcf_rpc_server`* rpcs, int oldfd, int newfd) Duplicate an open file descriptor on RPC server side. See **dup2** manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - oldfd - file descriptor to be duplicated * - newfd - new file descriptor .. rubric:: Returns: New file descriptor or -1 when an error occurred. .. index:: pair: function; rpc_dup3 .. _doxid-group__te__lib__rpc__unistd_1ga66f3de6c564320052304d7562904b499: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_dup3(:ref:`rcf_rpc_server`* rpcs, int oldfd, int newfd, int flags) Duplicate an open file descriptor on RPC server side. See **dup3** manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - oldfd - file descriptor to be duplicated * - newfd - new file descriptor * - flags - RPC_O_CLOEXEC flag .. rubric:: Returns: New file descriptor or -1 when an error occurred. .. index:: pair: function; rpc_write .. _doxid-group__te__lib__rpc__unistd_1ga51a47cca779f8eabdab31c1766dd830b: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_write(:ref:`rcf_rpc_server`* rpcs, int fd, const void* buf, size_t count) Write up to **count** bytes from buffer **buf** to file with descriptor **fd**. See write(2) manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - buf - pointer to a buffer containing data to write * - count - number of bytes to be written .. rubric:: Returns: Number of bytes actually written, otherwise -1 on failure .. index:: pair: function; rpc_pwrite .. _doxid-group__te__lib__rpc__unistd_1ga84d369204521fe95f38cbf2a0c585c58: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_pwrite(:ref:`rcf_rpc_server`* rpcs, int fd, const void* buf, size_t count, off_t offset) Write up to **count** bytes from buffer **buf** to a file with descriptor **fd** at **offset**. See pwrite(2) manual page for more information. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle. * - fd - File descriptor. * - buf - Pointer to a buffer containing data to write. * - count - Number of bytes to be written. * - offset - Offset from the start of the **fd**. .. rubric:: Returns: Number of bytes actually written, otherwise -1 on failure. .. index:: pair: function; rpc_write_and_close .. _doxid-group__te__lib__rpc__unistd_1ga864a034fa98141c83d2527bc501f3957: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_write_and_close(:ref:`rcf_rpc_server`* rpcs, int fd, const void* buf, size_t count) Write up to **count** bytes from buffer **buf** to file with descriptor **fd** and close this file descriptor. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - buf - pointer to a buffer containing data to write * - count - number of bytes to be written .. rubric:: Returns: Number of bytes actually written, otherwise -1 on failure .. index:: pair: function; rpc_writebuf_gen .. _doxid-group__te__lib__rpc__unistd_1ga3178456dbabe93ff1bc2c3c3394a7753: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tarpc_ssize_t` rpc_writebuf_gen(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_ptr buf, size_t buf_off, size_t count) Like :ref:`rpc_write() `, but uses a buffer that has been allocated by the user earlier. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - buf - pointer to the data buffer in the TA address space * - count - number of bytes to be written .. rubric:: Returns: Number of bytes actually written, otherwise -1 on failure .. index:: pair: function; rpc_read_gen .. _doxid-group__te__lib__rpc__unistd_1ga52184727542be9bd67c0fb9a1f29a70b: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_read_gen(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count, size_t rbuflen) This generic routine attemps to read up to **count** bytes from file with descriptor **fdinto** buffer pointed by **buf**. The behavior of this call depends on the following operations * **RCF_RPC_CALL** do not wait the remote procedure to complete (non-blocking call) * **RCF_RPC_WAIT** wait for non-blocking call to complete * **RCF_RPC_CALL_WAIT** wait for remote procedure to complete before returning (blocking call) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - buf - pointer to buffer into where data is read * - count - number of bytes to read * - rbuflen - real size of the buffer to be copied by RPC .. rubric:: Returns: Number of bytes read, otherwise -1 on error. .. index:: pair: function; rpc_read .. _doxid-group__te__lib__rpc__unistd_1gaf7ba91be68cd23939bbb2d641d4d5f97: .. ref-code-block:: cpp :class: doxyrest-title-code-block static int rpc_read(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count) Attemp to read up to **count** bytes from file with descriptor **fd** into buffer pointed by **buf**. The behavior of this call depends on the following operations * **RCF_RPC_CALL** do not wait the remote procedure to complete (non-blocking call) * **RCF_RPC_WAIT** wait for non-blocking call to complete * **RCF_RPC_CALL_WAIT** wait for remote procedure to complete before returning (blocking call) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - buf - pointer to buffer into where data is read * - count - number of bytes to read .. rubric:: Returns: number of bytes read, otherwise -1 on error. .. index:: pair: function; rpc_pread .. _doxid-group__te__lib__rpc__unistd_1ga0f0934dc4201600a434044d457fccb1d: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_pread(:ref:`rcf_rpc_server`* rpcs, int fd, void* buf, size_t count, :ref:`tarpc_off_t` offset) Read up to **count** bytes from file with descriptor **fd** at **offset** into buffer pointed to by **buf**. The behavior of this call depends on the following operations: * **RCF_RPC_CALL** do not wait the remote procedure to complete (non-blocking call) * **RCF_RPC_WAIT** wait for non-blocking call to complete * **RCF_RPC_CALL_WAIT** wait for remote procedure to complete before returning (blocking call) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle. * - fd - File descriptor. * - buf - Pointer to buffer into where data is read. * - count - Number of bytes to read. * - offset - Offset from the start of the **fd**. .. rubric:: Returns: Number of bytes read, otherwise -1 on error. .. index:: pair: function; rpc_readbuf_gen .. _doxid-group__te__lib__rpc__unistd_1ga169120ca5aed533e15fc051f9fdb3522: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tarpc_ssize_t` rpc_readbuf_gen(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_ptr buf, size_t buf_off, size_t count) Like :ref:`rpc_read() ` but uses a buffer allocated by the user on the TA earlier. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - buf - pointer to buffer into where data is read * - count - number of bytes to read .. rubric:: Returns: number of bytes read, otherwise -1 on error. .. index:: pair: function; rpc_lseek .. _doxid-group__te__lib__rpc__unistd_1ga8865e765ddba8bda9ba08112be6c389c: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tarpc_off_t` rpc_lseek(:ref:`rcf_rpc_server`* rpcs, int fd, :ref:`tarpc_off_t` pos, :ref:`rpc_lseek_mode` mode) RPC equivalent of 'lseek' .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - pos - position to seek * - count - seek mode (SEEK_SET, SEEK_CUR, SEEK_END) .. rubric:: Returns: Resuling file position or -1 on error .. index:: pair: function; rpc_fsync .. _doxid-group__te__lib__rpc__unistd_1gadb9a49811f30ea7346ff44428f88c7e5: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_fsync(:ref:`rcf_rpc_server`* rpcs, int fd) RPC equivalent of 'fsync' .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor .. rubric:: Returns: 0 on success, -1 on failure .. index:: pair: function; rpc_iovec_to_array .. _doxid-group__te__lib__rpc__unistd_1ga72047da2210e9fbb4925c6d653867dca: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint8_t* rpc_iovec_to_array(size_t len, const struct :ref:`rpc_iovec`* v, size_t cnt) Convert I/O vector to array. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - len - total data length * - v - I/O vector * - cnt - number of elements in vector .. rubric:: Returns: Pointer to allocated array or NULL. .. index:: pair: function; te_iovec_rpc2tarpc .. _doxid-group__te__lib__rpc__unistd_1ga914e101c9c10680b0f80ed546cb54239: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_iovec_rpc2tarpc(const :ref:`rpc_iovec`* rpc_iovs, :ref:`tarpc_iovec`* tarpc_iovs, size_t count) Fill array of :ref:`tarpc_iovec ` structures with data from array of :ref:`rpc_iovec ` structures before passing it to an RPC call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpc_iovs - Array of :ref:`rpc_iovec ` structures. * - tarpc_iovs - Array of :ref:`tarpc_iovec ` structures. * - count - Number of elements in the arrays. .. index:: pair: function; te_iovec_rpc2str_append .. _doxid-group__te__lib__rpc__unistd_1ga70008114d49b5963283f634664b14682: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_iovec_rpc2str_append(:ref:`te_string`* str, const :ref:`rpc_iovec`* iovs, size_t count) Append string representation of a given array of :ref:`rpc_iovec ` structures to TE string. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - str - Pointer to TE string. * - iovs - Array of :ref:`rpc_iovec ` structures. * - count - Number of elements in the array. .. rubric:: Returns: Status code. .. index:: pair: function; rpc_iovec_cmp .. _doxid-group__te__lib__rpc__unistd_1ga23cceca90681a1c979832fd8a0eef57d: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_iovec_cmp(size_t v1len, const struct :ref:`rpc_iovec`* v1, size_t v1cnt, size_t v2len, const struct :ref:`rpc_iovec`* v2, size_t v2cnt) Compare RPC alalog of 'struct iovec'. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - v1len - total length of the first vector * - v1 - the first vector * - v1cnt - number of buffers in vector **v1** * - v2len - total length of the second vector * - v2 - the second vector * - v2cnt - number of buffers in vector **v1** .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_iovec_cmp_strict .. _doxid-group__te__lib__rpc__unistd_1gabc4703c47b63d667b25c776e949e122f: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_iovec_cmp_strict(:ref:`rpc_iovec`* iov1, :ref:`rpc_iovec`* iov2, size_t iovcnt) Strictly compare two iov vectors. Buffers length and data have to be equal. The function jumps to **cleanup** with a verdict if buffers are different. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - iov1 - The first iov vectors array. * - iov2 - The second iov vectors array. * - len - Arrays length. .. index:: pair: function; rpc_writev .. _doxid-group__te__lib__rpc__unistd_1gaf1d46175479f8ad5e3386c95caa1c7b3: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_writev(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt) Write data to file with descriptor **fd** from the specified vector of buffer. See writev manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - iov - vector of buffers to be written. * - iovcnt - number of buffers .. rubric:: Returns: Number of bytes really written, otherwise -1 is returned on error .. index:: pair: function; rpc_pwritev .. _doxid-group__te__lib__rpc__unistd_1gade77f069c5f654540f9688fa278bae55: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_pwritev(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`tarpc_off_t` offset) Write data to file with descriptor **fd** at **offset** from the specified vector of buffer. See pwritev manual page for more information. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle. * - fd - File descriptor. * - iov - Vector of buffers to be written. * - iovcnt - Number of buffers. * - offset - Offset from the start of the **fd**. .. rubric:: Returns: Number of bytes really written, otherwise -1 is returned on error. .. index:: pair: function; rpc_pwritev2 .. _doxid-group__te__lib__rpc__unistd_1gaa0837c8f8958edd48fb0b2fee07a293b: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_pwritev2(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`tarpc_off_t` offset, rpc_preadv2_pwritev2_flags flags) Write data to file with descriptor **fd** at **offset** from the specified vector of buffer. See pwritev2 manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptor * - iov - vector of buffers to be written. * - iovcnt - number of buffers * - offset - offset from the start of the **fd** * - flags - specifies bits for per-call operation .. rubric:: Returns: Number of bytes really written, otherwise -1 is returned on error .. index:: pair: function; rpc_readv_gen .. _doxid-group__te__lib__rpc__unistd_1ga756cee23671fe3eb9fbf6e4e7657029d: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_readv_gen(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, size_t riovcnt) Read data from specified file with descriptor **fd** into a vector of buffer **iov**. See **readv** manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptorfrom which data is read * - iov - vector of buffer where data is stored * - iovcnt - number of buffer to read * - riovcnt - real number of buffer .. rubric:: Returns: Number of bytes read,otherwise -1 is returned when an error occurred. .. index:: pair: function; rpc_readv .. _doxid-group__te__lib__rpc__unistd_1ga401f519309e3ebcae1c4c269da52901c: .. ref-code-block:: cpp :class: doxyrest-title-code-block static int rpc_readv(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt) Attempt to read data from specified file with descriptor **fd** into a vector of buffer **iov**. See **readv** manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptorfrom which data is read * - iov - vector of buffer where data is stored * - iovcnt - number of buffer to read .. rubric:: Returns: Number of bytes read,otherwise -1 is returned when an error occurred. .. index:: pair: function; rpc_preadv .. _doxid-group__te__lib__rpc__unistd_1ga976c8a8ee540f8e2a422bb443a9d1610: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_preadv(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`tarpc_off_t` offset) Read data from specified file with descriptor **fd** at **offset** into a vector of buffer **iov**. See **preadv** manual page for more information. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle. * - fd - File descriptorfrom which data is read. * - iov - Vector of buffer where data is stored. * - iovcnt - Number of buffer to read. * - offset - Offset from the start of the **fd**. .. rubric:: Returns: Number of bytes read,otherwise -1 is returned when an error occurred. .. index:: pair: function; rpc_preadv2 .. _doxid-group__te__lib__rpc__unistd_1ga477caaf0261216dfbf4e69c05f45cbf7: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_preadv2(:ref:`rcf_rpc_server`* rpcs, int fd, const struct :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`tarpc_off_t` offset, rpc_preadv2_pwritev2_flags flags) Read data with **flags** from specified file with descriptor **fd** at **offset** into a vector of buffer **iov**. See **preadv** manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - file descriptorfrom which data is read * - iov - vector of buffer where data is stored * - iovcnt - number of buffer to read * - offset - offset from the start of the **fd** * - flags - specifies bits for per-call operation .. rubric:: Returns: Number of bytes read,otherwise -1 is returned when an error occurred. .. index:: pair: function; rpc_fd_set_new .. _doxid-group__te__lib__rpc__unistd_1ga706a208e60903c0d38451eb4b88bbeec: .. ref-code-block:: cpp :class: doxyrest-title-code-block rpc_fd_set_p rpc_fd_set_new(:ref:`rcf_rpc_server`* rpcs) Allocate a set of file descriptors on RPC server side. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: Set of descriptors,otherwise **NULL** is returned on error .. index:: pair: function; rpc_fd_set_delete .. _doxid-group__te__lib__rpc__unistd_1ga73711b4e1c156318f05b5bfbbe7cac18: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_fd_set_delete(:ref:`rcf_rpc_server`* rpcs, rpc_fd_set_p set) Destroy a specified set of file descriptors allocated by **rpc_fd_set_new**. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - set - set of descriptors to be deleted .. index:: pair: function; rpc_do_fd_zero .. _doxid-group__te__lib__rpc__unistd_1ga0c61400414fbac80f40134300bb0b944: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_do_fd_zero(:ref:`rcf_rpc_server`* rpcs, rpc_fd_set_p set) Initialize the specified set of descriptors (clear the set) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - set - set of descriptors to initialize .. index:: pair: function; rpc_do_fd_set .. _doxid-group__te__lib__rpc__unistd_1ga1c8019fcd4d75cc3313cb5be2f8ef4f6: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_do_fd_set(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_fd_set_p set) Add a specified descriptor **fd** to a given set of descriptors **set** on RPC server side. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - descriptor to add to the set * - set - set to which descriptor is added .. index:: pair: function; rpc_do_fd_clr .. _doxid-group__te__lib__rpc__unistd_1gabc64dc28224496ab406e0c3cb2021a36: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_do_fd_clr(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_fd_set_p set) Remove a specified descriptor from the set of descriptors. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - descriptor to remove * - set - set from which descriptor is removed .. index:: pair: function; rpc_do_fd_isset .. _doxid-group__te__lib__rpc__unistd_1ga93813bcc4c1598f2051cc9951d4ff540: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_do_fd_isset(:ref:`rcf_rpc_server`* rpcs, int fd, rpc_fd_set_p set) Test existance of specified descriptor **fd** in a given set of descriptor **set**. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - descriptor to test * - set - set of descriptor .. rubric:: Returns: Value other than zero, other return 0 when failed. .. index:: pair: function; rpc_select .. _doxid-group__te__lib__rpc__unistd_1gabb2776431d0734fe36531e8fdfc99dbb: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_select(:ref:`rcf_rpc_server`* rpcs, int n, rpc_fd_set_p readfds, rpc_fd_set_p writefds, rpc_fd_set_p exceptfds, struct :ref:`tarpc_timeval`* timeout) Examine the file descriptor sets whose addresses are passed in the **readfds**, **writefds**, and **exceptfds** parameters to see whether some of there file descriptors are ready for reading, writing or have and exceptional condition pending, respectively. The behavior of this routine depends on specified RPC operation: ``RCF_RPC_CALL`` - return immediately without waiting for remote procedure to complete (non-blocking call). ``RCF_RPC_WAIT`` - wait for non-blocking call to complete ``RCF_RPC_CALL_WAIT`` - wait for remote procedure to complete before returning (blocking call) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - n - range of descriptors to be tested. The first **n** descriptors should be checked in each defined set. That is the descriptors from 0 to **n-1** shall be examined. * - readfds - checked file descrpitors for readability * - writefds - checked file descriptors for writing * - exceptfds - checked file descriptors for exceptional conditions * - timeout - upper bound of time elapsed before remote **select** procedure return. .. rubric:: Returns: Total number of file descriptors contained in the whole defined set upon successful completion, which may be zero if the timeout expires before anything interesting happens, otherwise -1 is returned. .. index:: pair: function; rpc_pselect .. _doxid-group__te__lib__rpc__unistd_1ga49fdb61f5f0c8e885e16612a46cdc260: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_pselect(:ref:`rcf_rpc_server`* rpcs, int n, rpc_fd_set_p readfds, rpc_fd_set_p writefds, rpc_fd_set_p exceptfds, struct :ref:`tarpc_timespec`* timeout, const rpc_sigset_p sigmask) Examine the file descriptor sets whose addresses are passed in the **readfds**, **writefds**, and **exceptfds** parameters to see whether some of there file descriptors are ready for reading, writing or have and exceptional condition pending, respectively. The current signal mask is replaced by the one pointed by **sigmask**, and restoted after **select** call. The behavior of this routine depends on specified RPC operation: ``RCF_RPC_CALL`` - return immediately without waiting for remote procedure to complete (non-blocking call). ``RCF_RPC_WAIT`` - wait for non-blocking call to complete ``RCF_RPC_CALL_WAIT`` - wait for remote procedure to complete before returning (blocking call) See **pselect** manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - n - Range of descriptors to be tested. The first **n** descriptors should be checked in each defined set. That is the descriptors from 0 to **n-1** shall be examined. * - readfds - checked file descrpitors for readability * - writefds - checked file descriptors for writing possibility * - exceptfds - checked fie descriptors for exceptional conditions * - timeout - Upper bound of time elapsed before remote **select** procedure return. * - sigmask - Pointer to a signal mask (See **sigprocmask(2)**) .. rubric:: Returns: Total number of file descriptors contained in the whole defined set upon successful completion, which may be zero if the timeout expires before anything interesting happens, otherwise -1 is returned. .. index:: pair: function; rpc_poll_gen .. _doxid-group__te__lib__rpc__unistd_1ga7026980eb0688392e7ba3f1664707014: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_poll_gen(:ref:`rcf_rpc_server`* rpcs, struct :ref:`rpc_pollfd`* ufds, unsigned int nfds, int timeout, unsigned int rnfds) Provide a generic mechanism for reporting I/O conditions associated with a set of file descriptors and waiting for one or more specified conditions becomes true. Specified condition include the ability to read or write data without blocking and error conditions; .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - ufds - pointer to an array of :ref:`rpc_pollfd ` structure. One for each file descriptor of interest. * - nfds - number of :ref:`rpc_pollfd ` in the array of :ref:`rpc_pollfd ` structure * - timeout - maximum length of time(in milliseconds) to wait before at least one of the specified condition occures. A negative value means an infinite timeout. * - rnfds - real size of the array of :ref:`rpc_pollfd ` structures .. rubric:: Returns: A positive number is returned upon successful completion. That's the number of :ref:`rpc_pollfd ` structure that have non-zero revents fields. A value of zero indicates that the timed out and no file descriptors have been selcted. -1 is returned on error. .. index:: pair: function; rpc_poll .. _doxid-group__te__lib__rpc__unistd_1gadeec1c3ef5125c8406d1cbb6f5b1dfe8: .. ref-code-block:: cpp :class: doxyrest-title-code-block static int rpc_poll(:ref:`rcf_rpc_server`* rpcs, struct :ref:`rpc_pollfd`* ufds, unsigned int nfds, int timeout) Provide a mechanism for reporting I/O conditions associated with a set of file descriptors and waiting for one or more specified conditions becomes true. Specified condition include the ability to read or write data without blocking and error conditions; See **poll** manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - ufds - pointer to an array of :ref:`rpc_pollfd ` structure. One for each file descriptor of interest. * - nfds - number of :ref:`rpc_pollfd ` in the array of :ref:`rpc_pollfd ` strudture * - timeout - maximum length of time(in milliseconds) to wait before at least one of the specified condition occures. A negative value means an infinite timeout. .. rubric:: Returns: A positive number is returned upon successful completion. That's the number of :ref:`rpc_pollfd ` structure that have non-zero revents fields. A value of zero indicates that the timed out and no file descriptors have been selcted. -1 is returned on error. .. index:: pair: function; rpc_sendfile .. _doxid-group__te__lib__rpc__unistd_1gaf5a930bb519767ac7fefbbde6ed03978: .. ref-code-block:: cpp :class: doxyrest-title-code-block ssize_t rpc_sendfile(:ref:`rcf_rpc_server`* rpcs, int out_fd, int in_fd, :ref:`tarpc_off_t`* offset, size_t count, tarpc_bool force64) Routine which copies data from file descriptor opened for reading to the file descriptor opened for writing (processing in kernel land). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - out_fd - file descriptor opened for writing * - in_fd - file descriptor opened for reading * - offset - pointer to input file pointer position * - count - number of bytes to copy between file descriptors * - force64 - boolean value, whether to force sendfile64 call .. rubric:: Returns: Number of bytes written to out_fd or -1 in the case of failure and appropriate errno .. index:: pair: function; rpc_ioctl .. _doxid-group__te__lib__rpc__unistd_1ga4252a9a2ef7144161e1466e17d7f14e9: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_ioctl(:ref:`rcf_rpc_server`* rpcs, int fd, :ref:`rpc_ioctl_code` request, ...) Manipulate the underlying device parameters of special files. In particular many operating characteristics of character special files may be controlled with **rpc_ioctl** request. The argument **fd** must be an opened file descriptor. See **ioctl** manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - opened file descriptor * - request - request code (See ``te_rpc_sys_socket.h`` for availlable request codes) * - ... - optional parameter for request specific information .. rubric:: Returns: Zero on success. Some ioctls use the returned value as an output parameter and return a non negative value on success. -1 is returned on error. .. index:: pair: function; rpc_fcntl .. _doxid-group__te__lib__rpc__unistd_1gaa6fb013370a485ca1d7f32892422fe6d: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_fcntl(:ref:`rcf_rpc_server`* rpcs, int fd, int cmd, ...) Perform various miscellaneous operation on files descriptor **fd**. The operation in question is determined by **cmd** .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - fd - opened file descriptor * - cmd - command that indicate the requested operation See ``te_rpc_fcntl.h`` for availlable command. * - arg - indicate flag used according to **cmd** .. rubric:: Returns: The returned value depends on the specified operation See **fcntl** manual page for more information. .. index:: pair: function; rpc_pipe .. _doxid-group__te__lib__rpc__unistd_1ga777d3dd4964ecbd04510fadaef24e077: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_pipe(:ref:`rcf_rpc_server`* rpcs, int filedes[2]) Create a pair file descriptor on RPC server side, pointing to a pipe inode and place them in the array **filedes** The file descriptor of index zero (filedes[0]) is used for reading, and the other file descriptor for writing. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - filedes - array of created file descriptors .. rubric:: Returns: Upon successful completion this function returns 0. On error -1 is returned. .. index:: pair: function; rpc_pipe2 .. _doxid-group__te__lib__rpc__unistd_1gac557e0e2a7abbd4993edb7b022ebba7c: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_pipe2(:ref:`rcf_rpc_server`* rpcs, int filedes[2], int flags) Create a pair file descriptor on RPC server side, pointing to a pipe inode and place them in the array **filedes** The file descriptor of index zero (filedes[0]) is used for reading, and the other file descriptor for writing. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - filedes - array of created file descriptors * - flags - RPC_O_NONBLOCK, RPC_O_CLOEXEC flags .. rubric:: Returns: Upon successful completion this function returns 0. On error -1 is returned. .. index:: pair: function; rpc_socketpair .. _doxid-group__te__lib__rpc__unistd_1ga7248e5abaa8af89ee0dff0b0dcf54862: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_socketpair(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_socket_domain` domain, :ref:`rpc_socket_type` type, :ref:`rpc_socket_proto` protocol, int sv[2]) Create a unnamed pair of connected socket on RPC server side. the sockets belong to specified domain **domain**, and are of specified type **type**. The descriptor used in referencing the new sockets are returned in sv[0] and sv[1]. See **socketpair** manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - domain - communication domain * - type - defines semantic of communication * - protocol - specifies the protocol to be used. * - sv - array of file descriptors .. rubric:: Returns: 0 is returned upon successful completion, otherwise -1 is returned. .. index:: pair: function; rpc_exit .. _doxid-group__te__lib__rpc__unistd_1ga71ae68124bd15ca4f8ab7f03b31ee7e5: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_exit(:ref:`rcf_rpc_server`* rpcs, int status) Terminate RPC server process via exit() call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - status - Status code .. index:: pair: function; rpc__exit .. _doxid-group__te__lib__rpc__unistd_1gaaa0adb6d7c28839b349cd0f813d9e35f: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc__exit(:ref:`rcf_rpc_server`* rpcs, int status) Terminate RPC server process via _exit() call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - status - Status code .. index:: pair: function; rpc_getpid .. _doxid-group__te__lib__rpc__unistd_1ga8a684f60918b7744f67090564cd72df1: .. ref-code-block:: cpp :class: doxyrest-title-code-block pid_t rpc_getpid(:ref:`rcf_rpc_server`* rpcs) Get RPC server process identification. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: The ID of the RPC server process .. index:: pair: function; rpc_pthread_self .. _doxid-group__te__lib__rpc__unistd_1ga3295cdad4d43f6040012808a101fe042: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tarpc_pthread_t` rpc_pthread_self(:ref:`rcf_rpc_server`* rpcs) Get RPC server thread identification. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: The thread ID of the RPC server thread .. index:: pair: function; rpc_pthread_cancel .. _doxid-group__te__lib__rpc__unistd_1ga4c7cad448500c2dc4f8ac28087c0f453: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_pthread_cancel(:ref:`rcf_rpc_server`* rpcs, :ref:`tarpc_pthread_t` tid) Send a cancellation request to a RPC thread. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - tid - The thread ID .. rubric:: Returns: 0 is returned upon successful completion, otherwise -1 is returned. .. index:: pair: function; rpc_pthread_setcancelstate .. _doxid-group__te__lib__rpc__unistd_1ga949148dd0329a786dba6e6d336cc1d55: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_pthread_setcancelstate(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_pthread_cancelstate` state, :ref:`rpc_pthread_cancelstate`* oldstate) Set cancelability state to a RPC thread. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - state - State to set * - oldstate - Old state of the thread cancelability, can be NULL if does not matter .. rubric:: Returns: 0 is returned upon successful completion, otherwise -1 is returned. .. index:: pair: function; rpc_pthread_setcanceltype .. _doxid-group__te__lib__rpc__unistd_1ga31844df592c2a77bccb43667f60e6b47: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_pthread_setcanceltype(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_pthread_canceltype` type, :ref:`rpc_pthread_canceltype`* oldtype) Set cancelability type to a RPC thread. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - type - Type to set * - oldtype - Old type of the thread cancelability, can be NULL if does not matter .. rubric:: Returns: 0 is returned upon successful completion, otherwise -1 is returned. .. index:: pair: function; rpc_pthread_join .. _doxid-group__te__lib__rpc__unistd_1ga15eebe462a4051bcb4154e7b7bd310c4: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_pthread_join(:ref:`rcf_rpc_server`* rpcs, :ref:`tarpc_pthread_t` tid, uint64_t* retval) Join with a terminated thread .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - tid - The thread ID * - retval - Exit status of the target thread, can be NULL if does not matter .. rubric:: Returns: 0 is returned upon successful completion, otherwise -1 is returned. .. index:: pair: function; rpc_gettid .. _doxid-group__te__lib__rpc__unistd_1gae18ec1b5cc30747410eb90dfc4719989: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_gettid(:ref:`rcf_rpc_server`* rpcs) Get thread ID. This is linux-specific system call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: 0 on success or -1 on failure .. index:: pair: function; rpc_getuid .. _doxid-group__te__lib__rpc__unistd_1gab5f720d4abb4e6281b5249f32a043ea8: .. ref-code-block:: cpp :class: doxyrest-title-code-block tarpc_uid_t rpc_getuid(:ref:`rcf_rpc_server`* rpcs) Query the real user ID on the RPC server. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: The real user ID .. index:: pair: function; rpc_setuid .. _doxid-group__te__lib__rpc__unistd_1gadd2672e1f26dd7a69b28cde0fc93bdb4: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_setuid(:ref:`rcf_rpc_server`* rpcs, tarpc_uid_t uid) Set the effective user ID of the RPC server process. If the effective user ID is root, then the real and saved user ID's are also set. Under Linux **setuid** is implemented like POSIX version with _POSIX_SAVED_IDS future. This allows a setuid program to drop all of its user privileges, do some un-privileged work, and then re-engage the original user ID for secure manner See **setuid** manual page for more information .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - uid - user ID .. rubric:: Returns: Upon successful completion returns 0, otherwise -1 is returned. .. index:: pair: function; rpc_access .. _doxid-group__te__lib__rpc__unistd_1gab0b0e7f415625ffcded6b7f86041c838: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_access(:ref:`rcf_rpc_server`* rpcs, const char* path, int mode) Checks for access permissions ``mode`` of ``path`` at ``rpcs`` .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - path - Pathname to check * - mode - Access mode (see ``lib/rpc_types/te_rpc_sys_stat.h``) .. rubric:: Returns: 0 if ``path`` is available as specific ``mode``, -1 otherwise .. index:: pair: function; rpc_getpwnam .. _doxid-group__te__lib__rpc__unistd_1ga43d983a934e74255dfdd4039df2e017f: .. ref-code-block:: cpp :class: doxyrest-title-code-block struct passwd* rpc_getpwnam(:ref:`rcf_rpc_server`* rpcs, const char* name) Query information about the broken out fields of a line from **/etc/passwd** for the entry that matches the user name **name** on RPC server side .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - name - user name whose information is needed. .. rubric:: Returns: Upon successful completion a pointer to a structure containing the broken out fields, otherwise a **NULL** pointer is returned. .. index:: pair: function; rpc_uname .. _doxid-group__te__lib__rpc__unistd_1ga233ffe108f40037432dac0e06e7c25e8: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_uname(:ref:`rcf_rpc_server`* rpcs, struct utsname* buf) Query information about the host on RPC server site .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - buf - Buffer to hold host info (OUT) .. rubric:: Returns: 0 in case of success, -1 in case of error .. index:: pair: function; rpc_geteuid .. _doxid-group__te__lib__rpc__unistd_1ga48cf99edd5055753b8ae162124c9d739: .. ref-code-block:: cpp :class: doxyrest-title-code-block tarpc_uid_t rpc_geteuid(:ref:`rcf_rpc_server`* rpcs) Get the effective user ID of the RPC server process. The effective user ID corresponds to the set ID bit of the file currently executed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle .. rubric:: Returns: The effective user ID of the RPC server process .. index:: pair: function; rpc_seteuid .. _doxid-group__te__lib__rpc__unistd_1ga771086d3b16262294f1fcc14d3db7b9c: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_seteuid(:ref:`rcf_rpc_server`* rpcs, tarpc_uid_t uid) Set the effective user ID of the RPC server process. Unprivileged user processes can only set the effective user ID to the real user ID, the effective user ID, or the saved user ID. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - uid - User ID to be set .. rubric:: Returns: Upon successful completion this function returns 0, otherwise -1 is returned. .. index:: pair: function; rpc_malloc .. _doxid-group__te__lib__rpc__unistd_1gab7608275ec380fea6d1d873181bddd74: .. ref-code-block:: cpp :class: doxyrest-title-code-block rpc_ptr rpc_malloc(:ref:`rcf_rpc_server`* rpcs, size_t size) Allocate a buffer of specified size in the TA address space. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - size - size of the buffer to be allocated .. rubric:: Returns: Allocated buffer identifier or RPC_NULL. .. index:: pair: function; rpc_free .. _doxid-group__te__lib__rpc__unistd_1ga3c854b34d6025670b2f35bf13f441e98: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_free(:ref:`rcf_rpc_server`* rpcs, rpc_ptr buf) Free the specified buffer in TA address space. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - buf - identifier of the buffer to be freed .. index:: pair: function; rpc_get_addr_by_id .. _doxid-group__te__lib__rpc__unistd_1gae444b7aa1387959c0338263f51f35d88: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint64_t rpc_get_addr_by_id(:ref:`rcf_rpc_server`* rpcs, rpc_ptr id) Get address in the TA address space by its ID. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - id - Address ID .. rubric:: Returns: Value of address in the TA address space .. index:: pair: function; rpc_malloc_off .. _doxid-group__te__lib__rpc__unistd_1ga590d44415ddf2983300e3e52e988f8a0: .. ref-code-block:: cpp :class: doxyrest-title-code-block static bool rpc_malloc_off(:ref:`rcf_rpc_server`* rpcs, size_t size, :ref:`rpc_ptr_off`** buf) Allocate a buffer of specified size in the TA address space. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - size - size of the buffer to be allocated .. rubric:: Returns: Allocated buffer identifier with offset. It should be validated by RPC_PTR_OFF_IS_VALID() .. index:: pair: function; rpc_free_off .. _doxid-group__te__lib__rpc__unistd_1ga95ce186ec53175e646dc4b81c7611272: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void rpc_free_off(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_ptr_off`* buf) Free the specified buffer in TA address space. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - buf - Identifier of the buffer to be freed with offset. Offset should be zero. .. index:: pair: function; rpc_malloc_misaligned .. _doxid-group__te__lib__rpc__unistd_1ga45a56518bf6b0d36b23499570c27bba7: .. ref-code-block:: cpp :class: doxyrest-title-code-block rpc_ptr rpc_malloc_misaligned(:ref:`rcf_rpc_server`* rpcs, size_t alignment, size_t size, size_t offset) Allocate a buffer of specified size in the TA address space that should be misaligned. That means that an aligned memory is allocated, however it should be considered as an allocated memory that starts with some offset that is less than size. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - alignment - buffer alignment * - size - size of the buffer to be allocated * - offset - offset .. rubric:: Returns: Allocated buffer identifier or ``RPC_NULL`` .. index:: pair: function; rpc_posix_memalign .. _doxid-group__te__lib__rpc__unistd_1ga9984136824b6d105f6e2776490593d84: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_posix_memalign(:ref:`rcf_rpc_server`* rpcs, rpc_ptr* ptr, size_t alignment, size_t size) Allocate a buffer of specified size in the TA address space aligned at a specified boundary. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle * - ptr - allocated buffer identifier * - alignment - alignment of the buffer * - size - size of the buffer to be allocated .. rubric:: Returns: ``0`` on success or code of the error on failure .. index:: pair: function; rpc_setrlimit .. _doxid-group__te__lib__rpc__unistd_1ga6a208b0660422a0809c42c9dc865c99a: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_setrlimit(:ref:`rcf_rpc_server`* rpcs, int resource, const :ref:`tarpc_rlimit`* rlim) Set resource limits and usage .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - resource - Resource type (see 'man 2 setrlimit'). * - rlim - RPC analog of rlimit structure (see 'man 2 setrlimit'). .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_getrlimit .. _doxid-group__te__lib__rpc__unistd_1gae1efd393f8de8ae20bf96e38030ce67e: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_getrlimit(:ref:`rcf_rpc_server`* rpcs, int resource, :ref:`tarpc_rlimit`* rlim) Get resource limits and usage .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - resource - Resource type (see 'man 2 getrlimit'). * - rlim - RPC analog of rlimit structure (see 'man 2 getrlimit'). .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_sysconf .. _doxid-group__te__lib__rpc__unistd_1ga970ed672760d199ca8cb5fa983fcc09f: .. ref-code-block:: cpp :class: doxyrest-title-code-block int64_t rpc_sysconf(:ref:`rcf_rpc_server`* rpcs, :ref:`rpc_sysconf_name` name) RPC sysconf() call. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - name - Name of sysconf() constant .. rubric:: Returns: -1 in the case of failure or a value of system resource .. index:: pair: function; rpc_fstat .. _doxid-group__te__lib__rpc__unistd_1gac6ff8c96a7f16a7ef4b1a138f426505d: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_fstat(:ref:`rcf_rpc_server`* rpcs, int fd, :ref:`rpc_stat`* buf) Get file status. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - fd - FD to stat * - buf - Buffer for file status. .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_stat_func .. _doxid-group__te__lib__rpc__unistd_1gafebf0e7d2e70934baac1b6839a275908: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_stat_func(:ref:`rcf_rpc_server`* rpcs, const char* path, :ref:`rpc_stat`* buf) Get file status. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - path - path to a file * - buf - Buffer for file status. .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_link .. _doxid-group__te__lib__rpc__unistd_1gaa543f24b687b6ade65ace9d801e85ce0: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_link(:ref:`rcf_rpc_server`* rpcs, const char* path1, const char* path2) Create a new link for existing file. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - path1 - Pathname naming an existing file * - path2 - Pathname naming the new directory entry to be created .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_symlink .. _doxid-group__te__lib__rpc__unistd_1ga314252b9b702e46cc9326ca713323862: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_symlink(:ref:`rcf_rpc_server`* rpcs, const char* path1, const char* path2) Create a symbolic link to a file. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - path1 - String contained in the symbolic link * - path2 - Name of the symbolic link created .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_readlink .. _doxid-group__te__lib__rpc__unistd_1ga06432ae0698c8ff1cf8d33454c7f7fe5: .. ref-code-block:: cpp :class: doxyrest-title-code-block ssize_t rpc_readlink(:ref:`rcf_rpc_server`* rpcs, const char* path, char* buf, size_t bufsize) Resolve a symbolic link. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle. * - path - Path to symbolic link. * - buf - Buffer for the resolved link. * - bufsize - Length of the buffer. .. rubric:: Returns: Number of bytes put in the buffer. .. index:: pair: function; rpc_unlink .. _doxid-group__te__lib__rpc__unistd_1ga554dea5be15a0a3f1d74ff45b81441b0: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_unlink(:ref:`rcf_rpc_server`* rpcs, const char* path) Remove a directory entry. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - path - Path of the file to be removed .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_mkdir .. _doxid-group__te__lib__rpc__unistd_1ga39251c21f7e866f84367c48d23fa6463: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_mkdir(:ref:`rcf_rpc_server`* rpcs, const char* path, :ref:`rpc_file_mode_flags` mode) Create a directory. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - path - Path of the directory to be created * - mode - The permission bits to assign to a new directory .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_mkdirp .. _doxid-group__te__lib__rpc__unistd_1ga061e55345be62e18ec4a0100e20c206f: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_mkdirp(:ref:`rcf_rpc_server`* rpcs, const char* path, :ref:`rpc_file_mode_flags` mode) Create the directory(ies), if they do not already exist .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - path - Path of the directory to be created * - mode - The permission bits to assign to a new directory .. rubric:: Returns: ``-1`` on failure, ``0`` if the directory has been created or existing .. index:: pair: function; rpc_rmdir .. _doxid-group__te__lib__rpc__unistd_1ga57476daf1c15f485c75e86d309931252: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rmdir(:ref:`rcf_rpc_server`* rpcs, const char* path) Remove a directory. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - path - Path of the directory to be removed .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_rename .. _doxid-group__te__lib__rpc__unistd_1gaf7691337129df597172b316098277aaa: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rename(:ref:`rcf_rpc_server`* rpcs, const char* path_old, const char* path_new) Rename a directory entry. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - path_old - Current directory entry path * - path_new - New directory entry path .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_fstatvfs .. _doxid-group__te__lib__rpc__unistd_1ga8a153e9d310fa2bed4c8703a779ae704: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_fstatvfs(:ref:`rcf_rpc_server`* rpcs, int fd, :ref:`tarpc_statvfs`* buf) Get file system information. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - fd - file descriptor opened on file system whose information we want to obtain * - buf - structure with file system information (OUT) .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_statvfs .. _doxid-group__te__lib__rpc__unistd_1gab00ae4ad3c536195e2e26440f58e2f44: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_statvfs(:ref:`rcf_rpc_server`* rpcs, const char* path, :ref:`tarpc_statvfs`* buf) Get file system information by path. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - path - path to a directory entry on a volume whose information we want to obtain * - buf - structure with file system information (OUT) .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_gethostname .. _doxid-group__te__lib__rpc__unistd_1gaa78d5eac6bf14b65427a0aa8048258a5: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_gethostname(:ref:`rcf_rpc_server`* rpcs, char* name, size_t len) Get hostname .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - name - Hostname * - len - Length of buffer in name argument .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_chroot .. _doxid-group__te__lib__rpc__unistd_1ga8127981769fe553fc725a43bc8dff3de: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_chroot(:ref:`rcf_rpc_server`* rpcs, char* path) Change root directory. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - path - Path to a new root directory .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_copy_ta_libs .. _doxid-group__te__lib__rpc__unistd_1ga927f14ddf3eddfbd352c2643d0f628a2: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_copy_ta_libs(:ref:`rcf_rpc_server`* rpcs, char* path) Copy dynamic libraries necessary to run TA to its directory (can be used to perform exec() after chroot()). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - path - Path to a new root directory .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_rm_ta_libs .. _doxid-group__te__lib__rpc__unistd_1ga2c09c409dd7d9a6603035f7e6f3b0990: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_rm_ta_libs(:ref:`rcf_rpc_server`* rpcs, char* path) Removie lib/ folder from TA folder (used for cleanup after :ref:`rpc_copy_ta_libs() `). .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - path - Path to a new root directory .. rubric:: Returns: -1 in the case of failure or 0 on success .. index:: pair: function; rpc_execve_gen .. _doxid-group__te__lib__rpc__unistd_1ga5846d6be2af01c89e8a7c4a58b34a764: .. ref-code-block:: cpp :class: doxyrest-title-code-block int rpc_execve_gen(:ref:`rcf_rpc_server`* rpcs, const char* filename, char*const argv[], char*const envp[]) Execute program *filename* .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server * - filename - Pathname to the program or script * - argv - Array of argument strings * - envp - Array of strings which are passed as environment .. index:: pair: function; rpc_make_iov .. _doxid-group__te__lib__rpc__unistd_1ga8fe5e1f8898ebcd5318798da263366e5: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_make_iov(:ref:`rpc_iovec`* iov, size_t iovcnt, size_t min, size_t max) Allocate buffers for ``iov`` vectors and set length fields. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - iov - Iov vectors array. * - iovcnt - Vectors number. * - min - Minimum buffer length. * - max - Maximum buffer length. .. index:: pair: function; rpc_release_iov .. _doxid-group__te__lib__rpc__unistd_1ga2d14798a4130c048d489f10d66e349bd: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_release_iov(:ref:`rpc_iovec`* iov, size_t iovcnt) Free buffers of ``iov`` vector. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - iov - Iov vectors array. * - iovcnt - Vectors number. .. index:: pair: function; rpc_alloc_iov .. _doxid-group__te__lib__rpc__unistd_1ga8d6f9ab0c048dfa7f6eafae7ad5fb4a3: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_alloc_iov(:ref:`rpc_iovec`** iov, size_t iovcnt, size_t min, size_t max) Allocate array of IOV vectors and its elements, set buffer lengths. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - iov - Iov vectors array. * - iovcnt - Vectors number. * - min - Minimum buffer length. * - max - Maximum buffer length. .. index:: pair: function; rpc_free_iov .. _doxid-group__te__lib__rpc__unistd_1ga457ff7ad7f3f75b4650c338e9ca31456: .. ref-code-block:: cpp :class: doxyrest-title-code-block void rpc_free_iov(:ref:`rpc_iovec`* iov, size_t iovcnt) Free buffers of IOV array and the array itself. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - iov - Iov vectors array. * - iovcnt - Vectors number. .. index:: pair: function; rpc_iov_append2dbuf .. _doxid-group__te__lib__rpc__unistd_1ga9a05e167db39bc781b068d1e321c3191: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint8_t* rpc_iov_append2dbuf(const :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`te_dbuf`* buf) Append data from IOV array to :ref:`te_dbuf `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - iov - IOV array. * - iovcnt - Number of vectors in array. * - buf - Dynamic buffer to append data to. .. rubric:: Returns: Pointer to buffer with copied data. .. index:: pair: function; rpc_iov2dbuf .. _doxid-group__te__lib__rpc__unistd_1ga754f1fcafee085f019d24366ea77ef85: .. ref-code-block:: cpp :class: doxyrest-title-code-block uint8_t* rpc_iov2dbuf(const :ref:`rpc_iovec`* iov, size_t iovcnt, :ref:`te_dbuf`* buf) Copy data from IOV array to :ref:`te_dbuf `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - iov - IOV array. * - iovcnt - Number of vectors in array. * - buf - Dynamic buffer to copy data to. .. rubric:: Returns: Pointer to buffer with copied data. .. index:: pair: function; rpc_iov_data_len .. _doxid-group__te__lib__rpc__unistd_1ga752f59aa3fc01e229b7c3be979abfd8f: .. ref-code-block:: cpp :class: doxyrest-title-code-block size_t rpc_iov_data_len(const :ref:`rpc_iovec`* iov, size_t iovcnt) Get length of data stored in IOV array. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - iov - IOV array. * - iovcnt - Number of vectors in array. .. rubric:: Returns: Total length of data stored in vectors. Macros ------ .. index:: pair: define; CLEANUP_RPC_FREE .. _doxid-group__te__lib__rpc__unistd_1ga1ca5a0f661174b17ec510d092f49b242: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define CLEANUP_RPC_FREE(_rpcs, _ptr) Free memory allocated on RPC server in cleanup part of the test. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - _rpcs - RPC server handle * - _ptr - memory identifier