OSDN Git Service

dd: make it recognize not only 'k' but 'K' too;
authorDenis Vlasenko <vda.linux@googlemail.com>
Sat, 7 Oct 2006 16:24:46 +0000 (16:24 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Sat, 7 Oct 2006 16:24:46 +0000 (16:24 -0000)
make it (partially) CONFIG_LFS-aware

coreutils/dd.c
e2fsprogs/chattr.c
e2fsprogs/lsattr.c
e2fsprogs/util.c
include/libbb.h
networking/httpd.c
networking/wget.c

index 8d859ef..e63244d 100644 (file)
@@ -17,6 +17,7 @@ static const struct suffix_mult dd_suffixes[] = {
        { "b", 512 },
        { "kD", 1000 },
        { "k", 1024 },
+       { "K", 1024 },  // compat with coreutils dd
        { "MD", 1000000 },
        { "M", 1048576 },
        { "GD", 1000000000 },
@@ -24,25 +25,26 @@ static const struct suffix_mult dd_suffixes[] = {
        { NULL, 0 }
 };
 
-static size_t out_full, out_part, in_full, in_part;
+static FILEOFF_TYPE out_full, out_part, in_full, in_part;
 
 static void dd_output_status(int ATTRIBUTE_UNUSED cur_signal)
 {
-       bb_fprintf(stderr, "%ld+%ld records in\n%ld+%ld records out\n",
-                       (long)in_full, (long)in_part,
-                       (long)out_full, (long)out_part);
+       bb_fprintf(stderr, FILEOFF_FMT"+"FILEOFF_FMT" records in\n"
+                       FILEOFF_FMT"+"FILEOFF_FMT" records out\n",
+                       in_full, in_part,
+                       out_full, out_part);
 }
 
 int dd_main(int argc, char **argv)
 {
-#define sync_flag      (1<<0)
-#define noerror                (1<<1)
-#define trunc_flag     (1<<2)
+#define sync_flag    (1<<0)
+#define noerror      (1<<1)
+#define trunc_flag   (1<<2)
 #define twobufs_flag (1<<3)
        int flags = trunc_flag;
-       size_t count = -1, oc = 0, ibs = 512, obs = 512;
+       size_t oc = 0, ibs = 512, obs = 512;
        ssize_t n;
-       off_t seek = 0, skip = 0;
+       FILEOFF_TYPE seek = 0, skip = 0, count = MAX_FILEOFF_TYPE;
        int oflag, ifd, ofd;
        const char *infile = NULL, *outfile = NULL;
        char *ibuf, *obuf;
@@ -58,6 +60,7 @@ int dd_main(int argc, char **argv)
        }
 
        for (n = 1; n < argc; n++) {
+               // FIXME: make them capable of eating LARGE numbers
                if (ENABLE_FEATURE_DD_IBS_OBS && !strncmp("ibs=", argv[n], 4)) {
                        ibs = bb_xparse_number(argv[n]+4, dd_suffixes);
                        flags |= twobufs_flag;
@@ -80,7 +83,7 @@ int dd_main(int argc, char **argv)
                        ibuf = argv[n]+5;
                        while (1) {
                                if (!strncmp("notrunc", ibuf, 7)) {
-                                       flags ^= trunc_flag;
+                                       flags &= ~trunc_flag;
                                        ibuf += 7;
                                } else if (!strncmp("sync", ibuf, 4)) {
                                        flags |= sync_flag;
@@ -105,14 +108,14 @@ int dd_main(int argc, char **argv)
                obuf = ibuf;
 
        if (infile != NULL)
-               ifd = xopen(infile, O_RDONLY);
+               ifd = xopen(infile, O_RDONLY | (O_LARGEFILE * ENABLE_LFS));
        else {
                ifd = STDIN_FILENO;
                infile = bb_msg_standard_input;
        }
 
        if (outfile != NULL) {
-               oflag = O_WRONLY | O_CREAT;
+               oflag = O_WRONLY | O_CREAT | (O_LARGEFILE * ENABLE_LFS);
 
                if (!seek && (flags & trunc_flag))
                        oflag |= O_TRUNC;
@@ -134,7 +137,7 @@ int dd_main(int argc, char **argv)
        }
 
        if (skip) {
-               if (lseek(ifd, skip * ibs, SEEK_CUR) < 0) {
+               if (LSEEK(ifd, skip * ibs, SEEK_CUR) < 0) {
                        while (skip-- > 0) {
                                n = safe_read(ifd, ibuf, ibs);
                                if (n < 0)
@@ -146,7 +149,7 @@ int dd_main(int argc, char **argv)
        }
 
        if (seek) {
-               if (lseek(ofd, seek * obs, SEEK_CUR) < 0)
+               if (LSEEK(ofd, seek * obs, SEEK_CUR) < 0)
                        goto die_outfile;
        }
 
index 2cb75e8..618d8c4 100644 (file)
@@ -53,14 +53,6 @@ static unsigned long af;
 static unsigned long rf;
 static unsigned long sf;
 
-#ifdef CONFIG_LFS
-# define LSTAT lstat64
-# define STRUCT_STAT struct stat64
-#else
-# define LSTAT lstat
-# define STRUCT_STAT struct stat
-#endif
-
 struct flags_char {
        unsigned long flag;
        char optchar;
index e76f8d9..1b7cf44 100644 (file)
 #define OPT_GENERATION 16
 static int flags;
 
-#ifdef CONFIG_LFS
-# define LSTAT lstat64
-# define STRUCT_STAT struct stat64
-#else
-# define LSTAT lstat
-# define STRUCT_STAT struct stat
-#endif
-
 static void list_attributes(const char *name)
 {
        unsigned long fsflags;
index efb128f..aaee50a 100644 (file)
@@ -33,13 +33,8 @@ void proceed_question(void)
 void check_plausibility(const char *device, int force)
 {
        int val;
-#ifdef CONFIG_LFS
-       struct stat64 s;
-       val = stat64(device, &s);
-#else
-       struct stat s;
-       val = stat(device, &s);
-#endif
+       STRUCT_STAT s;
+       val = STAT(device, &s);
        if (force)
                return;
        if(val == -1)
index 84c8af4..11e1e62 100644 (file)
 #define  PATH_MAX         256
 #endif
 
+/* Large file support */
+#ifdef CONFIG_LFS
+# define FILEOFF_TYPE off64_t
+# define FILEOFF_FMT "%lld"
+# define LSEEK lseek64
+# define STAT stat64
+# define LSTAT lstat64
+# define STRUCT_STAT struct stat64
+# define STRTOOFF strtoll
+# define SAFE_STRTOOFF safe_strtoll
+#else
+# define FILEOFF_TYPE off_t
+# define FILEOFF_FMT "%ld"
+# define LSEEK lseek
+# define STAT stat
+# define LSTAT lstat
+# define STRUCT_STAT struct stat
+# define STRTOOFF strtol
+# define SAFE_STRTOOFF safe_strtol
+/* Do we need to undefine O_LARGEFILE? */
+#endif
+/* scary. better ideas? (but do *test* them first!) */
+#define MAX_FILEOFF_TYPE \
+       ((FILEOFF_TYPE)~((FILEOFF_TYPE)1 << (sizeof(FILEOFF_TYPE)*8-1)))
+
 /* Some useful definitions */
 #undef FALSE
 #define FALSE   ((int) 0)
index 8f98577..0e471ba 100644 (file)
@@ -97,14 +97,6 @@ static const char default_path_httpd_conf[] = "/etc";
 static const char httpd_conf[] = "httpd.conf";
 static const char home[] = "./";
 
-#if ENABLE_LFS
-# define cont_l_fmt "%lld"
-# define cont_l_type (long long)
-#else
-# define cont_l_fmt "%ld"
-# define cont_l_type (long)
-#endif
-
 #define TIMEOUT 60
 
 // Note: busybox xfuncs are not used because we want the server to keep running
@@ -927,8 +919,8 @@ static int sendHeaders(HttpResponseNum responseNum)
 
        if (config->ContentLength != -1) {    /* file */
                strftime(timeStr, sizeof(timeStr), RFC1123FMT, gmtime(&config->last_mod));
-               len += sprintf(buf+len, "Last-Modified: %s\r\n%s " cont_l_fmt "\r\n",
-                                                     timeStr, Content_length, cont_l_type config->ContentLength);
+               len += sprintf(buf+len, "Last-Modified: %s\r\n%s "FILEOFF_FMT"\r\n",
+                               timeStr, Content_length, (FILEOFF_TYPE) config->ContentLength);
        }
        strcat(buf, "\r\n");
        len += 2;
index 788c291..eda0bb8 100644 (file)
 #include "busybox.h"
 #include <getopt.h>    /* for struct option */
 
-#ifdef CONFIG_LFS
-# define FILEOFF_TYPE off64_t
-# define FILEOFF_FMT "%lld"
-# define LSEEK lseek64
-# define STRTOOFF strtoll
-# define SAFE_STRTOOFF safe_strtoll
-/* stat64 etc as needed...  */
-#else
-# define FILEOFF_TYPE off_t
-# define FILEOFF_FMT "%ld"
-# define LSEEK lseek
-# define STRTOOFF strtol
-# define SAFE_STRTOOFF safe_strtol
-/* Do we need to undefine O_LARGEFILE? */
-#endif
-
 struct host_info {
        // May be used if we ever will want to free() all xstrdup()s...
        /* char *allocated; */