2006-10-14 07:53:43 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
ssize_t FAST_FUNC safe_read(int fd, void *buf, size_t count)
|
2006-10-14 07:53:43 +05:30
|
|
|
{
|
|
|
|
ssize_t n;
|
|
|
|
|
|
|
|
do {
|
|
|
|
n = read(fd, buf, count);
|
|
|
|
} while (n < 0 && errno == EINTR);
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2008-02-21 03:53:24 +05:30
|
|
|
/* Suppose that you are a shell. You start child processes.
|
|
|
|
* They work and eventually exit. You want to get user input.
|
|
|
|
* You read stdin. But what happens if last child switched
|
|
|
|
* its stdin into O_NONBLOCK mode?
|
|
|
|
*
|
|
|
|
* *** SURPRISE! It will affect the parent too! ***
|
|
|
|
* *** BIG SURPRISE! It stays even after child exits! ***
|
|
|
|
*
|
|
|
|
* This is a design bug in UNIX API.
|
|
|
|
* fcntl(0, F_SETFL, fcntl(0, F_GETFL, 0) | O_NONBLOCK);
|
|
|
|
* will set nonblocking mode not only on _your_ stdin, but
|
|
|
|
* also on stdin of your parent, etc.
|
|
|
|
*
|
|
|
|
* In general,
|
|
|
|
* fd2 = dup(fd1);
|
|
|
|
* fcntl(fd2, F_SETFL, fcntl(fd2, F_GETFL, 0) | O_NONBLOCK);
|
|
|
|
* sets both fd1 and fd2 to O_NONBLOCK. This includes cases
|
|
|
|
* where duping is done implicitly by fork() etc.
|
|
|
|
*
|
|
|
|
* We need
|
|
|
|
* fcntl(fd2, F_SETFD, fcntl(fd2, F_GETFD, 0) | O_NONBLOCK);
|
|
|
|
* (note SETFD, not SETFL!) but such thing doesn't exist.
|
|
|
|
*
|
|
|
|
* Alternatively, we need nonblocking_read(fd, ...) which doesn't
|
|
|
|
* require O_NONBLOCK dance at all. Actually, it exists:
|
|
|
|
* n = recv(fd, buf, len, MSG_DONTWAIT);
|
|
|
|
* "MSG_DONTWAIT:
|
|
|
|
* Enables non-blocking operation; if the operation
|
|
|
|
* would block, EAGAIN is returned."
|
|
|
|
* but recv() works only for sockets!
|
|
|
|
*
|
|
|
|
* So far I don't see any good solution, I can only propose
|
|
|
|
* that affected readers should be careful and use this routine,
|
|
|
|
* which detects EAGAIN and uses poll() to wait on the fd.
|
2008-02-21 04:27:24 +05:30
|
|
|
* Thankfully, poll() doesn't care about O_NONBLOCK flag.
|
2008-02-21 03:53:24 +05:30
|
|
|
*/
|
2008-06-27 08:22:20 +05:30
|
|
|
ssize_t FAST_FUNC nonblock_safe_read(int fd, void *buf, size_t count)
|
2008-02-21 03:53:24 +05:30
|
|
|
{
|
|
|
|
struct pollfd pfd[1];
|
|
|
|
ssize_t n;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
n = safe_read(fd, buf, count);
|
|
|
|
if (n >= 0 || errno != EAGAIN)
|
|
|
|
return n;
|
|
|
|
/* fd is in O_NONBLOCK mode. Wait using poll and repeat */
|
|
|
|
pfd[0].fd = fd;
|
|
|
|
pfd[0].events = POLLIN;
|
|
|
|
safe_poll(pfd, 1, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-14 07:53:43 +05:30
|
|
|
/*
|
|
|
|
* Read all of the supplied buffer from a file.
|
|
|
|
* This does multiple reads as necessary.
|
|
|
|
* Returns the amount read, or -1 on an error.
|
|
|
|
* A short read is returned on an end of file.
|
|
|
|
*/
|
2008-06-27 08:22:20 +05:30
|
|
|
ssize_t FAST_FUNC full_read(int fd, void *buf, size_t len)
|
2006-10-14 07:53:43 +05:30
|
|
|
{
|
|
|
|
ssize_t cc;
|
|
|
|
ssize_t total;
|
|
|
|
|
|
|
|
total = 0;
|
|
|
|
|
|
|
|
while (len) {
|
|
|
|
cc = safe_read(fd, buf, len);
|
|
|
|
|
2008-02-26 02:00:24 +05:30
|
|
|
if (cc < 0) {
|
|
|
|
if (total) {
|
|
|
|
/* we already have some! */
|
|
|
|
/* user can do another read to know the error code */
|
|
|
|
return total;
|
|
|
|
}
|
|
|
|
return cc; /* read() returns -1 on failure. */
|
|
|
|
}
|
2006-10-14 07:53:43 +05:30
|
|
|
if (cc == 0)
|
|
|
|
break;
|
|
|
|
buf = ((char *)buf) + cc;
|
|
|
|
total += cc;
|
|
|
|
len -= cc;
|
|
|
|
}
|
|
|
|
|
|
|
|
return total;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Die with an error message if we can't read the entire buffer.
|
2008-06-27 08:22:20 +05:30
|
|
|
void FAST_FUNC xread(int fd, void *buf, size_t count)
|
2006-10-14 07:53:43 +05:30
|
|
|
{
|
|
|
|
if (count) {
|
|
|
|
ssize_t size = full_read(fd, buf, count);
|
2008-05-13 07:57:31 +05:30
|
|
|
if ((size_t)size != count)
|
2006-10-14 07:53:43 +05:30
|
|
|
bb_error_msg_and_die("short read");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Die with an error message if we can't read one character.
|
2008-06-27 08:22:20 +05:30
|
|
|
unsigned char FAST_FUNC xread_char(int fd)
|
2006-10-14 07:53:43 +05:30
|
|
|
{
|
|
|
|
char tmp;
|
|
|
|
xread(fd, &tmp, 1);
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read one line a-la fgets. Works only on seekable streams
|
2008-06-27 08:22:20 +05:30
|
|
|
char* FAST_FUNC reads(int fd, char *buffer, size_t size)
|
2006-10-14 07:53:43 +05:30
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
if (size < 2)
|
|
|
|
return NULL;
|
|
|
|
size = full_read(fd, buffer, size-1);
|
|
|
|
if ((ssize_t)size <= 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
buffer[size] = '\0';
|
|
|
|
p = strchr(buffer, '\n');
|
|
|
|
if (p) {
|
|
|
|
off_t offset;
|
|
|
|
*p++ = '\0';
|
2006-11-01 04:16:08 +05:30
|
|
|
// avoid incorrect (unsigned) widening
|
2008-03-27 01:34:27 +05:30
|
|
|
offset = (off_t)(p - buffer) - (off_t)size;
|
2007-01-13 03:40:34 +05:30
|
|
|
// set fd position right after '\n'
|
2006-10-14 07:53:43 +05:30
|
|
|
if (offset && lseek(fd, offset, SEEK_CUR) == (off_t)-1)
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2008-03-27 01:34:27 +05:30
|
|
|
// Reads one line a-la fgets (but doesn't save terminating '\n').
|
|
|
|
// Reads byte-by-byte. Useful when it is important to not read ahead.
|
2008-02-21 03:53:24 +05:30
|
|
|
// Bytes are appended to pfx (which must be malloced, or NULL).
|
2008-06-27 08:22:20 +05:30
|
|
|
char* FAST_FUNC xmalloc_reads(int fd, char *buf, size_t *maxsz_p)
|
2007-06-13 12:17:47 +05:30
|
|
|
{
|
|
|
|
char *p;
|
2008-03-24 05:34:42 +05:30
|
|
|
size_t sz = buf ? strlen(buf) : 0;
|
|
|
|
size_t maxsz = maxsz_p ? *maxsz_p : MAXINT(size_t);
|
2007-06-13 12:17:47 +05:30
|
|
|
|
|
|
|
goto jump_in;
|
2008-03-24 05:34:42 +05:30
|
|
|
while (sz < maxsz) {
|
2008-05-13 07:57:31 +05:30
|
|
|
if ((size_t)(p - buf) == sz) {
|
2007-06-13 12:17:47 +05:30
|
|
|
jump_in:
|
|
|
|
buf = xrealloc(buf, sz + 128);
|
|
|
|
p = buf + sz;
|
|
|
|
sz += 128;
|
|
|
|
}
|
2008-02-21 03:53:24 +05:30
|
|
|
/* nonblock_safe_read() because we are used by e.g. shells */
|
|
|
|
if (nonblock_safe_read(fd, p, 1) != 1) { /* EOF/error */
|
2008-02-25 05:02:36 +05:30
|
|
|
if (p == buf) { /* we read nothing */
|
2007-06-13 12:17:47 +05:30
|
|
|
free(buf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (*p == '\n')
|
|
|
|
break;
|
|
|
|
p++;
|
|
|
|
}
|
2008-03-27 01:34:27 +05:30
|
|
|
*p = '\0';
|
2008-03-24 05:34:42 +05:30
|
|
|
if (maxsz_p)
|
2008-03-27 01:34:27 +05:30
|
|
|
*maxsz_p = p - buf;
|
|
|
|
p++;
|
2007-06-13 12:17:47 +05:30
|
|
|
return xrealloc(buf, p - buf);
|
|
|
|
}
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
ssize_t FAST_FUNC read_close(int fd, void *buf, size_t size)
|
2006-10-14 07:53:43 +05:30
|
|
|
{
|
2007-06-30 20:17:41 +05:30
|
|
|
/*int e;*/
|
2006-10-14 07:53:43 +05:30
|
|
|
size = full_read(fd, buf, size);
|
2007-06-30 20:17:41 +05:30
|
|
|
/*e = errno;*/
|
2006-10-14 07:53:43 +05:30
|
|
|
close(fd);
|
2007-06-30 20:17:41 +05:30
|
|
|
/*errno = e;*/
|
2006-10-14 07:53:43 +05:30
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
ssize_t FAST_FUNC open_read_close(const char *filename, void *buf, size_t size)
|
2006-10-14 07:53:43 +05:30
|
|
|
{
|
|
|
|
int fd = open(filename, O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
|
|
|
return read_close(fd, buf, size);
|
|
|
|
}
|
|
|
|
|
2008-06-24 21:38:22 +05:30
|
|
|
// Read (potentially big) files in one go. File size is estimated
|
|
|
|
// by stat.
|
2008-06-27 08:22:20 +05:30
|
|
|
void* FAST_FUNC xmalloc_open_read_close(const char *filename, size_t *sizep)
|
2008-04-20 20:15:43 +05:30
|
|
|
{
|
|
|
|
char *buf;
|
|
|
|
size_t size;
|
|
|
|
int fd;
|
|
|
|
off_t len;
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
fd = open(filename, O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
st.st_size = 0; /* in case fstat fail, define to 0 */
|
|
|
|
fstat(fd, &st);
|
|
|
|
/* /proc/N/stat files report len 0 here */
|
|
|
|
/* In order to make such files readable, we add small const */
|
|
|
|
len = st.st_size | 0x3ff; /* read only 1k on unseekable files */
|
|
|
|
size = sizep ? *sizep : INT_MAX;
|
|
|
|
if (len < size)
|
|
|
|
size = len;
|
|
|
|
buf = xmalloc(size + 1);
|
|
|
|
size = read_close(fd, buf, size);
|
|
|
|
if ((ssize_t)size < 0) {
|
|
|
|
free(buf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
xrealloc(buf, size + 1);
|
|
|
|
buf[size] = '\0';
|
|
|
|
|
|
|
|
if (sizep)
|
|
|
|
*sizep = size;
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef USING_LSEEK_TO_GET_SIZE
|
|
|
|
/* Alternatively, file size can be obtained by lseek to the end.
|
|
|
|
* The code is slightly bigger. Retained in case fstat approach
|
|
|
|
* will not work for some weird cases (/proc, block devices, etc).
|
|
|
|
* (NB: lseek also can fail to work for some weird files) */
|
|
|
|
|
2007-06-13 12:17:47 +05:30
|
|
|
// Read (potentially big) files in one go. File size is estimated by
|
|
|
|
// lseek to end.
|
2008-06-27 08:22:20 +05:30
|
|
|
void* FAST_FUNC xmalloc_open_read_close(const char *filename, size_t *sizep)
|
2006-10-14 07:53:43 +05:30
|
|
|
{
|
|
|
|
char *buf;
|
2008-04-20 06:57:59 +05:30
|
|
|
size_t size;
|
2007-06-13 12:17:47 +05:30
|
|
|
int fd;
|
|
|
|
off_t len;
|
|
|
|
|
2008-04-20 01:02:08 +05:30
|
|
|
fd = open(filename, O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
return NULL;
|
2008-04-20 06:57:59 +05:30
|
|
|
|
2006-12-17 23:00:01 +05:30
|
|
|
/* /proc/N/stat files report len 0 here */
|
|
|
|
/* In order to make such files readable, we add small const */
|
2008-04-20 06:57:59 +05:30
|
|
|
size = 0x3ff; /* read only 1k on unseekable files */
|
|
|
|
len = lseek(fd, 0, SEEK_END) | 0x3ff; /* + up to 1k */
|
|
|
|
if (len != (off_t)-1) {
|
|
|
|
xlseek(fd, 0, SEEK_SET);
|
|
|
|
size = sizep ? *sizep : INT_MAX;
|
|
|
|
if (len < size)
|
|
|
|
size = len;
|
|
|
|
}
|
|
|
|
|
2006-12-17 23:00:01 +05:30
|
|
|
buf = xmalloc(size + 1);
|
2006-10-14 07:53:43 +05:30
|
|
|
size = read_close(fd, buf, size);
|
2008-04-20 06:57:59 +05:30
|
|
|
if ((ssize_t)size < 0) {
|
|
|
|
free(buf);
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-12-17 23:00:01 +05:30
|
|
|
xrealloc(buf, size + 1);
|
2006-10-14 07:53:43 +05:30
|
|
|
buf[size] = '\0';
|
2008-04-20 06:57:59 +05:30
|
|
|
|
2007-06-13 12:17:47 +05:30
|
|
|
if (sizep)
|
|
|
|
*sizep = size;
|
2006-10-14 07:53:43 +05:30
|
|
|
return buf;
|
|
|
|
}
|
2008-04-20 20:15:43 +05:30
|
|
|
#endif
|
2008-04-20 01:02:08 +05:30
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
void* FAST_FUNC xmalloc_xopen_read_close(const char *filename, size_t *sizep)
|
2008-04-20 01:02:08 +05:30
|
|
|
{
|
|
|
|
void *buf = xmalloc_open_read_close(filename, sizep);
|
|
|
|
if (!buf)
|
|
|
|
bb_perror_msg_and_die("can't read '%s'", filename);
|
|
|
|
return buf;
|
|
|
|
}
|