429960cc0ab3d822811a1702c56c99a9e4c1ff10
2 * Copyright (C) 2006-2012 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file fd.c Helper functions for file descriptor handling. */
10 #include <sys/types.h>
22 * Write a buffer to a file descriptor, re-write on short writes.
24 * \param fd The file descriptor.
25 * \param buf The buffer to be sent.
26 * \param len The length of \a buf.
30 int write_all(int fd
, const char *buf
, size_t len
)
37 int ret
= write(fd
, buf
+ len
, total
- len
);
39 return -ERRNO_TO_PARA_ERROR(errno
);
46 * Write a buffer to a non-blocking file descriptor.
48 * \param fd The file descriptor.
49 * \param buf the buffer to write.
50 * \param len the number of bytes of \a buf.
52 * EAGAIN is not considered an error condition. For example CCID3 has a
53 * sending wait queue which fills up and is emptied asynchronously. The EAGAIN
54 * case means that there is currently no space in the wait queue, but this can
55 * change at any moment.
57 * \return Negative on errors, number of bytes written else.
59 int write_nonblock(int fd
, const char *buf
, size_t len
)
64 while (written
< len
) {
65 size_t num
= len
- written
;
67 ret
= write(fd
, buf
+ written
, num
);
68 if (ret
< 0 && errno
== EAGAIN
)
71 return -ERRNO_TO_PARA_ERROR(errno
);
78 * Read from a non-blocking file descriptor into multiple buffers.
80 * \param fd The file descriptor to read from.
81 * \param iov Scatter/gather array used in readv().
82 * \param iovcnt Number of elements in \a iov.
83 * \param rfds An optional fd set pointer.
84 * \param num_bytes Result pointer. Contains the number of bytes read from \a fd.
86 * If \a rfds is not \p NULL and the (non-blocking) file descriptor \a fd is
87 * not set in \a rfds, this function returns early without doing anything.
88 * Otherwise The function tries to read up to \a sz bytes from \a fd. As for
89 * write_nonblock(), EAGAIN is not considered an error condition. However, EOF
92 * \return Zero or a negative error code. If the underlying call to readv(2)
93 * returned zero (indicating an end of file condition) or failed for some
94 * reason other than \p EAGAIN, a negative return value is returned.
96 * In any case, \a num_bytes contains the number of bytes that have been
97 * successfully read from \a fd (zero if the first readv() call failed with
98 * EAGAIN). Note that even if the function returns negative, some data might
99 * have been read before the error occurred. In this case \a num_bytes is
102 * \sa \ref write_nonblock(), read(2), readv(2).
104 int readv_nonblock(int fd
, struct iovec
*iov
, int iovcnt
, fd_set
*rfds
,
111 * Avoid a shortcoming of select(): Reads from a non-blocking fd might
112 * return EAGAIN even if FD_ISSET() returns true. However, FD_ISSET()
113 * returning false definitely means that no data can currently be read.
114 * This is the common case, so it is worth to avoid the overhead of the
115 * read() system call in this case.
117 if (rfds
&& !FD_ISSET(fd
, rfds
))
120 for (i
= 0, j
= 0; i
< iovcnt
;) {
122 /* fix up the first iov */
123 assert(j
< iov
[i
].iov_len
);
124 iov
[i
].iov_base
+= j
;
126 ret
= readv(fd
, iov
+ i
, iovcnt
- i
);
127 iov
[i
].iov_base
-= j
;
135 return -ERRNO_TO_PARA_ERROR(errno
);
139 if (ret
< iov
[i
].iov_len
- j
) {
143 ret
-= iov
[i
].iov_len
- j
;
153 * Read from a non-blocking file descriptor into a single buffer.
155 * \param fd The file descriptor to read from.
156 * \param buf The buffer to read data to.
157 * \param sz The size of \a buf.
158 * \param rfds \see \ref readv_nonblock().
159 * \param num_bytes \see \ref readv_nonblock().
161 * This is a simple wrapper for readv_nonblock() which uses an iovec with a single
164 * \return The return value of the underlying call to readv_nonblock().
166 int read_nonblock(int fd
, void *buf
, size_t sz
, fd_set
*rfds
, size_t *num_bytes
)
168 struct iovec iov
= {.iov_base
= buf
, .iov_len
= sz
};
169 return readv_nonblock(fd
, &iov
, 1, rfds
, num_bytes
);
173 * Read a buffer and check its content for a pattern.
175 * \param fd The file descriptor to receive from.
176 * \param pattern The expected pattern.
177 * \param bufsize The size of the internal buffer.
178 * \param rfds Passed to read_nonblock().
180 * This function tries to read at most \a bufsize bytes from the non-blocking
181 * file descriptor \a fd. If at least \p strlen(\a pattern) bytes have been
182 * received, the beginning of the received buffer is compared with \a pattern,
185 * \return Positive if \a pattern was received, negative on errors, zero if no data
186 * was available to read.
188 * \sa \ref read_nonblock(), \sa strncasecmp(3).
190 int read_pattern(int fd
, const char *pattern
, size_t bufsize
, fd_set
*rfds
)
193 char *buf
= para_malloc(bufsize
+ 1);
194 int ret
= read_nonblock(fd
, buf
, bufsize
, rfds
, &n
);
202 ret
= -E_READ_PATTERN
;
203 len
= strlen(pattern
);
206 if (strncasecmp(buf
, pattern
, len
) != 0)
211 PARA_NOTICE_LOG("%s\n", para_strerror(-ret
));
212 PARA_NOTICE_LOG("recvd %zu bytes: %s\n", n
, buf
);
219 * Check whether a file exists.
221 * \param fn The file name.
223 * \return Non-zero iff file exists.
225 int file_exists(const char *fn
)
229 return !stat(fn
, &statbuf
);
233 * Paraslash's wrapper for select(2).
235 * It calls select(2) (with no exceptfds) and starts over if select() was
236 * interrupted by a signal.
238 * \param n The highest-numbered descriptor in any of the two sets, plus 1.
239 * \param readfds fds that should be checked for readability.
240 * \param writefds fds that should be checked for writablility.
241 * \param timeout_tv upper bound on the amount of time elapsed before select()
244 * \return The return value of the underlying select() call on success, the
245 * negative system error code on errors.
247 * All arguments are passed verbatim to select(2).
248 * \sa select(2) select_tut(2).
250 int para_select(int n
, fd_set
*readfds
, fd_set
*writefds
,
251 struct timeval
*timeout_tv
)
255 ret
= select(n
, readfds
, writefds
, NULL
, timeout_tv
);
256 while (ret
< 0 && errno
== EINTR
);
258 return -ERRNO_TO_PARA_ERROR(errno
);
263 * Set a file descriptor to blocking mode.
265 * \param fd The file descriptor.
269 __must_check
int mark_fd_blocking(int fd
)
271 int flags
= fcntl(fd
, F_GETFL
);
273 return -ERRNO_TO_PARA_ERROR(errno
);
274 flags
= fcntl(fd
, F_SETFL
, ((long)flags
) & ~O_NONBLOCK
);
276 return -ERRNO_TO_PARA_ERROR(errno
);
281 * Set a file descriptor to non-blocking mode.
283 * \param fd The file descriptor.
287 __must_check
int mark_fd_nonblocking(int fd
)
289 int flags
= fcntl(fd
, F_GETFL
);
291 return -ERRNO_TO_PARA_ERROR(errno
);
292 flags
= fcntl(fd
, F_SETFL
, ((long)flags
) | O_NONBLOCK
);
294 return -ERRNO_TO_PARA_ERROR(errno
);
299 * Set a file descriptor in a fd_set.
301 * \param fd The file descriptor to be set.
302 * \param fds The file descriptor set.
303 * \param max_fileno Highest-numbered file descriptor.
305 * This wrapper for FD_SET() passes its first two arguments to \p FD_SET. Upon
306 * return, \a max_fileno contains the maximum of the old_value and \a fd.
310 void para_fd_set(int fd
, fd_set
*fds
, int *max_fileno
)
312 assert(fd
>= 0 && fd
< FD_SETSIZE
);
315 int flags
= fcntl(fd
, F_GETFL
);
316 if (!(flags
& O_NONBLOCK
)) {
317 PARA_EMERG_LOG("fd %d is a blocking file descriptor\n", fd
);
323 *max_fileno
= PARA_MAX(*max_fileno
, fd
);
327 * Paraslash's wrapper for fgets(3).
329 * \param line Pointer to the buffer to store the line.
330 * \param size The size of the buffer given by \a line.
331 * \param f The stream to read from.
333 * \return Unlike the standard fgets() function, an integer value
334 * is returned. On success, this function returns 1. On errors, -E_FGETS
335 * is returned. A zero return value indicates an end of file condition.
337 __must_check
int para_fgets(char *line
, int size
, FILE *f
)
340 if (fgets(line
, size
, f
))
346 if (errno
!= EINTR
) {
347 PARA_ERROR_LOG("%s\n", strerror(errno
));
355 * Paraslash's wrapper for mmap.
357 * \param length Number of bytes to mmap.
358 * \param prot Either PROT_NONE or the bitwise OR of one or more of
359 * PROT_EXEC PROT_READ PROT_WRITE.
360 * \param flags Exactly one of MAP_SHARED and MAP_PRIVATE.
361 * \param fd The file to mmap from.
362 * \param offset Mmap start.
363 * \param map Result pointer.
369 int para_mmap(size_t length
, int prot
, int flags
, int fd
, off_t offset
,
377 *m
= mmap(NULL
, length
, prot
, flags
, fd
, offset
);
378 if (*m
!= MAP_FAILED
)
382 return -ERRNO_TO_PARA_ERROR(errno
);
386 * Wrapper for the open(2) system call.
388 * \param path The filename.
389 * \param flags The usual open(2) flags.
390 * \param mode Specifies the permissions to use.
392 * The mode parameter must be specified when O_CREAT is in the flags, and is
395 * \return The file descriptor on success, negative on errors.
399 int para_open(const char *path
, int flags
, mode_t mode
)
401 int ret
= open(path
, flags
, mode
);
405 return -ERRNO_TO_PARA_ERROR(errno
);
409 * Wrapper for chdir(2).
411 * \param path The specified directory.
415 int para_chdir(const char *path
)
417 int ret
= chdir(path
);
421 return -ERRNO_TO_PARA_ERROR(errno
);
425 * Save the cwd and open a given directory.
427 * \param dirname Path to the directory to open.
428 * \param dir Result pointer.
429 * \param cwd File descriptor of the current working directory.
433 * Opening the current directory (".") and calling fchdir() to return is
434 * usually faster and more reliable than saving cwd in some buffer and calling
435 * chdir() afterwards.
437 * If \a cwd is not \p NULL "." is opened and the resulting file descriptor is
438 * stored in \a cwd. If the function returns success, and \a cwd is not \p
439 * NULL, the caller must close this file descriptor (probably after calling
442 * On errors, the function undos everything, so the caller needs neither close
443 * any files, nor change back to the original working directory.
448 static int para_opendir(const char *dirname
, DIR **dir
, int *cwd
)
453 ret
= para_open(".", O_RDONLY
, 0);
458 ret
= para_chdir(dirname
);
464 ret
= -ERRNO_TO_PARA_ERROR(errno
);
465 /* Ignore return value of fchdir() and close(). We're busted anyway. */
467 int __a_unused ret2
= fchdir(*cwd
); /* STFU, gcc */
476 * A wrapper for fchdir().
478 * \param fd An open file descriptor.
482 static int para_fchdir(int fd
)
485 return -ERRNO_TO_PARA_ERROR(errno
);
490 * A wrapper for mkdir(2).
492 * \param path Name of the directory to create.
493 * \param mode The permissions to use.
497 int para_mkdir(const char *path
, mode_t mode
)
499 if (!mkdir(path
, mode
))
501 return -ERRNO_TO_PARA_ERROR(errno
);
505 * Open a file and map it into memory.
507 * \param path Name of the regular file to map.
508 * \param open_mode Either \p O_RDONLY or \p O_RDWR.
509 * \param map On success, the mapping is returned here.
510 * \param size size of the mapping.
511 * \param fd_ptr The file descriptor of the mapping.
513 * If \a fd_ptr is \p NULL, the file descriptor resulting from the underlying
514 * open call is closed after mmap(). Otherwise the file is kept open and the
515 * file descriptor is returned in \a fd_ptr.
519 * \sa para_open(), mmap(2).
521 int mmap_full_file(const char *path
, int open_mode
, void **map
,
522 size_t *size
, int *fd_ptr
)
524 int fd
, ret
, mmap_prot
, mmap_flags
;
525 struct stat file_status
;
527 if (open_mode
== O_RDONLY
) {
528 mmap_prot
= PROT_READ
;
529 mmap_flags
= MAP_PRIVATE
;
531 mmap_prot
= PROT_READ
| PROT_WRITE
;
532 mmap_flags
= MAP_SHARED
;
534 ret
= para_open(path
, open_mode
, 0);
538 if (fstat(fd
, &file_status
) < 0) {
539 ret
= -ERRNO_TO_PARA_ERROR(errno
);
542 *size
= file_status
.st_size
;
543 ret
= para_mmap(*size
, mmap_prot
, mmap_flags
, fd
, 0, map
);
545 if (ret
< 0 || !fd_ptr
)
553 * A wrapper for munmap(2).
555 * \param start The start address of the memory mapping.
556 * \param length The size of the mapping.
560 * \sa munmap(2), mmap_full_file().
562 int para_munmap(void *start
, size_t length
)
568 if (munmap(start
, length
) >= 0)
571 PARA_ERROR_LOG("munmap (%p/%zu) failed: %s\n", start
, length
,
573 return -ERRNO_TO_PARA_ERROR(err
);
577 * Check a file descriptor for writability.
579 * \param fd The file descriptor.
581 * \return positive if fd is ready for writing, zero if it isn't, negative if
594 return para_select(fd
+ 1, NULL
, &wfds
, &tv
);
598 * Ensure that file descriptors 0, 1, and 2 are valid.
600 * Common approach that opens /dev/null until it gets a file descriptor greater
603 * \sa okir's Black Hats Manual.
605 void valid_fd_012(void)
608 int fd
= open("/dev/null", O_RDWR
);
619 * Traverse the given directory recursively.
621 * \param dirname The directory to traverse.
622 * \param func The function to call for each entry.
623 * \param private_data Pointer to an arbitrary data structure.
625 * For each regular file under \a dirname, the supplied function \a func is
626 * called. The full path of the regular file and the \a private_data pointer
627 * are passed to \a func. Directories for which the calling process has no
628 * permissions to change to are silently ignored.
632 int for_each_file_in_dir(const char *dirname
,
633 int (*func
)(const char *, void *), void *private_data
)
636 struct dirent
*entry
;
637 int cwd_fd
, ret2
, ret
= para_opendir(dirname
, &dir
, &cwd_fd
);
640 return ret
== -ERRNO_TO_PARA_ERROR(EACCES
)? 1 : ret
;
641 /* scan cwd recursively */
642 while ((entry
= readdir(dir
))) {
647 if (!strcmp(entry
->d_name
, "."))
649 if (!strcmp(entry
->d_name
, ".."))
651 if (lstat(entry
->d_name
, &s
) == -1)
654 if (!S_ISREG(m
) && !S_ISDIR(m
))
656 tmp
= make_message("%s/%s", dirname
, entry
->d_name
);
658 ret
= func(tmp
, private_data
);
665 ret
= for_each_file_in_dir(tmp
, func
, private_data
);
673 ret2
= para_fchdir(cwd_fd
);
674 if (ret2
< 0 && ret
>= 0)