traceroute: fix help text to not show -6 when traceroute6 is off
[oweals/busybox.git] / libbb / read.c
index e67bbfb7e0f062436d1ad3636e611ea4e59ce5a1..06ce29718e9e5bb24219a01be9a67a2116074037 100644 (file)
@@ -9,6 +9,16 @@
 
 #include "libbb.h"
 
+#define ZIPPED (ENABLE_FEATURE_SEAMLESS_LZMA \
+       || ENABLE_FEATURE_SEAMLESS_BZ2 \
+       || ENABLE_FEATURE_SEAMLESS_GZ \
+       /* || ENABLE_FEATURE_SEAMLESS_Z */ \
+)
+
+#if ZIPPED
+#include "unarchive.h"
+#endif
+
 ssize_t FAST_FUNC safe_read(int fd, void *buf, size_t count)
 {
        ssize_t n;
@@ -29,18 +39,18 @@ ssize_t FAST_FUNC safe_read(int fd, void *buf, size_t count)
  * *** 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);
+ *      fcntl(0, F_SETFL, fcntl(0, F_GETFL) | 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);
+ *      fcntl(fd2, F_SETFL, fcntl(fd2, F_GETFL) | 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);
+ *      fcntl(fd2, F_SETFD, fcntl(fd2, F_GETFD) | O_NONBLOCK);
  * (note SETFD, not SETFL!) but such thing doesn't exist.
  *
  * Alternatively, we need nonblocking_read(fd, ...) which doesn't
@@ -124,31 +134,6 @@ unsigned char FAST_FUNC xread_char(int fd)
        return tmp;
 }
 
-/* Read one line a-la fgets. Works only on seekable streams */
-char* FAST_FUNC reads(int fd, char *buffer, size_t size)
-{
-       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';
-               /* avoid incorrect (unsigned) widening */
-               offset = (off_t)(p - buffer) - (off_t)size;
-               /* set fd position right after '\n' */
-               if (offset && lseek(fd, offset, SEEK_CUR) == (off_t)-1)
-                       return NULL;
-       }
-       return buffer;
-}
-
 // 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.
 // Bytes are appended to pfx (which must be malloced, or NULL).
@@ -156,7 +141,7 @@ char* FAST_FUNC xmalloc_reads(int fd, char *buf, size_t *maxsz_p)
 {
        char *p;
        size_t sz = buf ? strlen(buf) : 0;
-       size_t maxsz = maxsz_p ? *maxsz_p : MAXINT(size_t);
+       size_t maxsz = maxsz_p ? *maxsz_p : (INT_MAX - 4095);
 
        goto jump_in;
        while (sz < maxsz) {
@@ -206,14 +191,14 @@ ssize_t FAST_FUNC open_read_close(const char *filename, void *buf, size_t size)
 
 // Read (potentially big) files in one go. File size is estimated
 // by stat. Extra '\0' byte is appended.
-void* FAST_FUNC xmalloc_read(int fd, size_t *sizep)
+void* FAST_FUNC xmalloc_read(int fd, size_t *maxsz_p)
 {
        char *buf;
        size_t size, rd_size, total;
-       off_t to_read;
+       size_t to_read;
        struct stat st;
 
-       to_read = sizep ? *sizep : MAXINT(ssize_t); /* max to read */
+       to_read = maxsz_p ? *maxsz_p : (INT_MAX - 4095); /* max to read */
 
        /* Estimate file size */
        st.st_size = 0; /* in case fstat fails, assume 0 */
@@ -229,26 +214,26 @@ void* FAST_FUNC xmalloc_read(int fd, size_t *sizep)
                        size = to_read;
                buf = xrealloc(buf, total + size + 1);
                rd_size = full_read(fd, buf + total, size);
-               if ((ssize_t)rd_size < 0) { /* error */
+               if ((ssize_t)rd_size == (ssize_t)(-1)) { /* error */
                        free(buf);
                        return NULL;
                }
                total += rd_size;
                if (rd_size < size) /* EOF */
                        break;
-               to_read -= rd_size;
-               if (to_read <= 0)
+               if (to_read <= rd_size)
                        break;
+               to_read -= rd_size;
                /* grow by 1/8, but in [1k..64k] bounds */
                size = ((total / 8) | 0x3ff) + 1;
                if (size > 64*1024)
                        size = 64*1024;
        }
-       xrealloc(buf, total + 1);
+       buf = xrealloc(buf, total + 1);
        buf[total] = '\0';
 
-       if (sizep)
-               *sizep = total;
+       if (maxsz_p)
+               *maxsz_p = total;
        return buf;
 }
 
@@ -260,7 +245,7 @@ void* FAST_FUNC xmalloc_read(int fd, size_t *sizep)
 
 // Read (potentially big) files in one go. File size is estimated by
 // lseek to end.
-void* FAST_FUNC xmalloc_open_read_close(const char *filename, size_t *sizep)
+void* FAST_FUNC xmalloc_open_read_close(const char *filename, size_t *maxsz_p)
 {
        char *buf;
        size_t size;
@@ -277,7 +262,7 @@ void* FAST_FUNC xmalloc_open_read_close(const char *filename, size_t *sizep)
        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;
+               size = maxsz_p ? *maxsz_p : (INT_MAX - 4095);
                if (len < size)
                        size = len;
        }
@@ -288,18 +273,18 @@ void* FAST_FUNC xmalloc_open_read_close(const char *filename, size_t *sizep)
                free(buf);
                return NULL;
        }
-       xrealloc(buf, size + 1);
+       buf = xrealloc(buf, size + 1);
        buf[size] = '\0';
 
-       if (sizep)
-               *sizep = size;
+       if (maxsz_p)
+               *maxsz_p = size;
        return buf;
 }
 #endif
 
 // Read (potentially big) files in one go. File size is estimated
 // by stat.
-void* FAST_FUNC xmalloc_open_read_close(const char *filename, size_t *sizep)
+void* FAST_FUNC xmalloc_open_read_close(const char *filename, size_t *maxsz_p)
 {
        char *buf;
        int fd;
@@ -308,15 +293,102 @@ void* FAST_FUNC xmalloc_open_read_close(const char *filename, size_t *sizep)
        if (fd < 0)
                return NULL;
 
-       buf = xmalloc_read(fd, sizep);
+       buf = xmalloc_read(fd, maxsz_p);
        close(fd);
        return buf;
 }
 
-void* FAST_FUNC xmalloc_xopen_read_close(const char *filename, size_t *sizep)
+void* FAST_FUNC xmalloc_xopen_read_close(const char *filename, size_t *maxsz_p)
 {
-       void *buf = xmalloc_open_read_close(filename, sizep);
+       void *buf = xmalloc_open_read_close(filename, maxsz_p);
        if (!buf)
                bb_perror_msg_and_die("can't read '%s'", filename);
        return buf;
 }
+
+int FAST_FUNC open_zipped(const char *fname)
+{
+#if !ZIPPED
+       return open(fname, O_RDONLY);
+#else
+       unsigned char magic[2];
+       char *sfx;
+       int fd;
+#if BB_MMU
+       IF_DESKTOP(long long) int FAST_FUNC (*xformer)(int src_fd, int dst_fd);
+       enum { xformer_prog = 0 };
+#else
+       enum { xformer = 0 };
+       const char *xformer_prog;
+#endif
+
+       fd = open(fname, O_RDONLY);
+       if (fd < 0)
+               return fd;
+
+       sfx = strrchr(fname, '.');
+       if (sfx) {
+               if (ENABLE_FEATURE_SEAMLESS_LZMA && strcmp(sfx, ".lzma") == 0)
+                       /* .lzma has no header/signature, just trust it */
+                       open_transformer(fd, unpack_lzma_stream, "unlzma");
+               else
+               if ((ENABLE_FEATURE_SEAMLESS_GZ && strcmp(sfx, ".gz") == 0)
+                || (ENABLE_FEATURE_SEAMLESS_BZ2 && strcmp(sfx, ".bz2") == 0)
+               ) {
+                       /* .gz and .bz2 both have 2-byte signature, and their
+                        * unpack_XXX_stream wants this header skipped. */
+                       xread(fd, &magic, 2);
+#if ENABLE_FEATURE_SEAMLESS_GZ
+#if BB_MMU
+                       xformer = unpack_gz_stream;
+#else
+                       xformer_prog = "gunzip";
+#endif
+#endif
+                       if (!ENABLE_FEATURE_SEAMLESS_GZ
+                        || magic[0] != 0x1f || magic[1] != 0x8b
+                       ) {
+                               if (!ENABLE_FEATURE_SEAMLESS_BZ2
+                                || magic[0] != 'B' || magic[1] != 'Z'
+                               ) {
+                                       bb_error_msg_and_die("no gzip"
+                                               IF_FEATURE_SEAMLESS_BZ2("/bzip2")
+                                               " magic");
+                               }
+#if BB_MMU
+                               xformer = unpack_bz2_stream;
+#else
+                               xformer_prog = "bunzip2";
+#endif
+                       } else {
+#if !BB_MMU
+                               /* NOMMU version of open_transformer execs
+                                * an external unzipper that wants
+                                * file position at the start of the file */
+                               xlseek(fd, 0, SEEK_SET);
+#endif
+                       }
+                       open_transformer(fd, xformer, xformer_prog);
+               }
+       }
+
+       return fd;
+#endif
+}
+
+void* FAST_FUNC xmalloc_open_zipped_read_close(const char *fname, size_t *maxsz_p)
+{
+       int fd;
+       char *image;
+
+       fd = open_zipped(fname);
+       if (fd < 0)
+               return NULL;
+
+       image = xmalloc_read(fd, maxsz_p);
+       if (!image)
+               bb_perror_msg("read error from '%s'", fname);
+       close(fd);
+
+       return image;
+}