Patch from Denis Vlasenko to add xstat() and use it.
authorRob Landley <rob@landley.net>
Mon, 13 Mar 2006 15:45:16 +0000 (15:45 -0000)
committerRob Landley <rob@landley.net>
Mon, 13 Mar 2006 15:45:16 +0000 (15:45 -0000)
12 files changed:
archival/gunzip.c
coreutils/date.c
coreutils/ls.c
coreutils/uuencode.c
debianutils/start_stop_daemon.c
findutils/find.c
include/libbb.h
libbb/Makefile.in
libbb/run_parts.c
libbb/xstat.c [new file with mode: 0644]
miscutils/hdparm.c
util-linux/swaponoff.c

index 4fb77044a2bbace45815125e305a6cf79b8f69b4..7b939290b4b13e80234aca26a6eddbacc9449689 100644 (file)
@@ -103,9 +103,7 @@ int gunzip_main(int argc, char **argv)
                        src_fd = bb_xopen(old_path, O_RDONLY);
 
                        /* Get the time stamp on the input file. */
-                       if (stat(old_path, &stat_buf) < 0) {
-                               bb_error_msg_and_die("Couldn't stat file %s", old_path);
-                       }
+                       xstat(old_path, &stat_buf);
                }
 
                /* Check that the input is sane.  */
index c111b6161701a3e1072538193b0308f3e83065b1..401d2ffb7d1c1490698c26ab5abbb1dba347d7e5 100644 (file)
@@ -165,8 +165,7 @@ int date_main(int argc, char **argv)
 
        if(filename) {
                struct stat statbuf;
-               if(stat(filename,&statbuf))
-                       bb_perror_msg_and_die("File '%s' not found.", filename);
+               xstat(filename,&statbuf);
                tm=statbuf.st_mtime;
        } else time(&tm);
        memcpy(&tm_time, localtime(&tm), sizeof(tm_time));
index a575a02cb61432570dde138378d07f899beb2825..964e7c964fbacb587d49882576fc65ff0b9347e6 100644 (file)
@@ -230,7 +230,7 @@ static struct dnode *my_stat(char *fullname, char *name)
                  rc = getfilecon(fullname,&sid);
                }
 #endif
-                 rc = stat(fullname, &dstat);
+               rc = stat(fullname, &dstat);
                if(rc) {
                        bb_perror_msg("%s", fullname);
                        status = EXIT_FAILURE;
index d45565c6ec2ffb14d2ff2bb2b127cb50c777606f..6a82a4b43362e8a3a0ec7384e27a252135d19229 100644 (file)
@@ -105,9 +105,7 @@ int uuencode_main(int argc, char **argv)
        switch (argc - optind) {
                case 2:
                        src_stream = bb_xfopen(argv[optind], "r");
-                       if (stat(argv[optind], &stat_buf) < 0) {
-                               bb_perror_msg_and_die("stat");
-                       }
+                       xstat(argv[optind], &stat_buf);
                        mode = stat_buf.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
                        if (src_stream == stdout) {
                                puts("NULL");
index aa1b3c7a07c700fe68b1782d8092e8d89f8979aa..1dd2231dc93b354ad422d30bf417987510b31cf9 100644 (file)
@@ -53,8 +53,8 @@ pid_is_exec(pid_t pid, const char *name)
        char buf[32];
        struct stat sb, exec_stat;
 
-       if (name && stat(name, &exec_stat))
-               bb_perror_msg_and_die("stat %s", name);
+       if (name)
+               xstat(name, &exec_stat);
 
        sprintf(buf, "/proc/%d/exe", pid);
        if (stat(buf, &sb) != 0)
index 0f2f2144c2fb52d3a0a29133bd914a2a5fa6ad18..c6aaf7aab4b1f267dfa704c176b4572d01593567 100644 (file)
@@ -274,15 +274,13 @@ int find_main(int argc, char **argv)
                        xdev_dev = xmalloc ( xdev_count * sizeof( dev_t ));
 
                        if ( firstopt == 1 ) {
-                               if ( stat ( ".", &stbuf ) < 0 )
-                                       bb_error_msg_and_die("could not stat '.'" );
+                               xstat ( ".", &stbuf );
                                xdev_dev [0] = stbuf. st_dev;
                        }
                        else {
 
                                for (i = 1; i < firstopt; i++) {
-                                       if ( stat ( argv [i], &stbuf ) < 0 )
-                                               bb_error_msg_and_die("could not stat '%s'", argv [i] );
+                                       xstat ( argv [i], &stbuf );
                                        xdev_dev [i-1] = stbuf. st_dev;
                                }
                        }
@@ -292,8 +290,7 @@ int find_main(int argc, char **argv)
                        struct stat stat_newer;
                        if (++i == argc)
                                bb_error_msg_and_die(msg_req_arg, "-newer");
-                   if (stat (argv[i], &stat_newer) != 0)
-                               bb_error_msg_and_die("file %s not found", argv[i]);
+                       xstat (argv[i], &stat_newer);
                        newer_mtime = stat_newer.st_mtime;
 #endif
 #ifdef CONFIG_FEATURE_FIND_INUM
index bc3fa59908be126d062ba4bcb5daebb66ad83de0..0ec332b30122e162e19fb5aca89790948dd64c73 100644 (file)
@@ -122,6 +122,8 @@ extern FILE *bb_xfopen(const char *path, const char *mode);
 extern int   bb_fclose_nonstdin(FILE *f);
 extern void  bb_fflush_stdout_and_exit(int retval) ATTRIBUTE_NORETURN;
 
+extern void xstat(const char *filename, struct stat *buf);
+
 #define BB_GETOPT_ERROR 0x80000000UL
 extern const char *bb_opt_complementally;
 extern const struct option *bb_applet_long_options;
index b4ee3f501d8de2032c93fedccc463eba4b32eb10..159957aa42cf7a1a75aa46d6e58ede58027286e1 100644 (file)
@@ -26,7 +26,7 @@ LIBBB-y:= \
        restricted_shell.c run_parts.c run_shell.c safe_read.c safe_write.c \
        safe_strncpy.c setup_environment.c sha1.c simplify_path.c \
        trim.c u_signal_names.c vdprintf.c verror_msg.c \
-       vherror_msg.c vperror_msg.c wfopen.c xconnect.c xgetcwd.c \
+       vherror_msg.c vperror_msg.c wfopen.c xconnect.c xgetcwd.c xstat.c \
        xgethostbyname.c xgethostbyname2.c xreadlink.c xregcomp.c xgetlarg.c \
        get_terminal_width_height.c fclose_nonstdin.c fflush_stdout_and_exit.c \
        getopt_ulflags.c default_error_retval.c wfopen_input.c speed_table.c \
index 7f5fe459b8449ccc552b44da2eabce12f1d0e993..864460d0d16f449a03d691f3bd168d16df059398 100644 (file)
@@ -76,9 +76,7 @@ int run_parts(char **args, const unsigned char test_mode, char **env)
 
                filename = concat_path_file(arg0, namelist[i]->d_name);
 
-               if (stat(filename, &st) < 0) {
-                       bb_perror_msg_and_die("failed to stat component %s", filename);
-               }
+               xstat(filename, &st);
                if (S_ISREG(st.st_mode) && !access(filename, X_OK)) {
                        if (test_mode) {
                                puts(filename);
diff --git a/libbb/xstat.c b/libbb/xstat.c
new file mode 100644 (file)
index 0000000..ca66864
--- /dev/null
@@ -0,0 +1,11 @@
+/*
+ * xstat.c - a stat() which dies on failure with meaningful error message
+ */
+#include <unistd.h>
+#include "libbb.h"
+
+void xstat(const char *name, struct stat *stat_buf)
+{
+       if (stat(name, stat_buf))
+               bb_perror_msg_and_die("Can't stat '%s'", name);
+}
index bd3065d7e1edda4deb540787e2bd4eb02c73b38e..ca60dcf37255adf2bc1fde2831dbcfcc201841e5 100644 (file)
@@ -1871,8 +1871,7 @@ static void process_dev (char *devname)
 #ifndef HDIO_DRIVE_CMD
        int force_operation = 0;
 #endif
-       if (stat(devname,&stat_buf))
-               bb_perror_msg_and_die(devname);
+       xstat(devname,&stat_buf);
 
        switch(major(stat_buf.st_rdev))
        {
index ce55a132a5954ecb830b1df99118884deb071631..473325d0c99fe2dcc440cbdd851d44cbb2ff4c80 100644 (file)
@@ -23,8 +23,7 @@ static int swap_enable_disable(const char *device)
        int status;
        struct stat st;
 
-       if (stat(device, &st) < 0)
-               bb_perror_msg_and_die("cannot stat %s", device);
+       xstat(device, &st);
 
        /* test for holes */
        if (S_ISREG(st.st_mode))