- add and use bb_opendir(), bb_xopendir().
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Wed, 12 Apr 2006 07:35:12 +0000 (07:35 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Wed, 12 Apr 2006 07:35:12 +0000 (07:35 -0000)
   text    data     bss     dec     hex filename
 889445    9392 1035784 1934621  1d851d busybox.gcc-4.2.orig
 889297    9392 1035784 1934473  1d8489 busybox.gcc-4.2
 889009    9820 1037860 1936689  1d8d31 busybox.gcc-4.1.orig
 888817    9820 1037860 1936497  1d8c71 busybox.gcc-4.1

13 files changed:
coreutils/diff.c
coreutils/du.c
coreutils/ls.c
debianutils/start_stop_daemon.c
include/libbb.h
libbb/Makefile.in
libbb/copy_file.c
libbb/opendir.c [new file with mode: 0644]
libbb/procps.c
libbb/recursive_action.c
libbb/remove_file.c
libbb/run_parts.c
procps/sysctl.c

index 2c89a66e43a50b00d704f4fdb49b78aaacbd2856..12c61ca1e4e4e21be5bf6c8c48f4c3b98330503c 100644 (file)
@@ -1114,8 +1114,8 @@ static char **get_dir(char *path) {
        else {
                DIR *dp;
                struct dirent *ep;
-               if ((dp = opendir(path)) == NULL)
-                       bb_error_msg("Error reading directory");
+
+               dp = bb_opendir(path);
                while ((ep = readdir(dp))) {
                        if ((!strcmp(ep->d_name, "..")) || (!strcmp(ep->d_name, ".")))
                                continue;
index d453ba412065a2b90882585cca15dbcbd99e925c..38790f83bd177a38ff8f289ca97196122e517fc4 100644 (file)
@@ -6,20 +6,7 @@
  * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
  * Copyright (C) 2002  Edward Betts <edward@debian.org>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
+ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
 /* BB_AUDIT SUSv3 compliant (unless default blocksize set to 1k) */
@@ -134,9 +121,8 @@ static long du(char *filename)
                struct dirent *entry;
                char *newfile;
 
-               dir = opendir(filename);
+               dir = bb_opendir(filename);
                if (!dir) {
-                       bb_perror_msg("%s", filename);
                        status = EXIT_FAILURE;
                        return sum;
                }
index 964e7c964fbacb587d49882576fc65ff0b9347e6..c9d24ff4a436ee1031643b09f5b3ce72f0b17c09 100644 (file)
@@ -3,19 +3,7 @@
  * tiny-ls.c version 0.1.0: A minimalist 'ls'
  * Copyright (C) 1996 Brian Candler <B.Candler@pobox.com>
  *
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
- *  (at your option) any later version.
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
 /*
@@ -592,9 +580,8 @@ static struct dnode **list_dir(const char *path)
 
        dn = NULL;
        nfiles = 0;
-       dir = opendir(path);
+       dir = bb_opendir(path);
        if (dir == NULL) {
-               bb_perror_msg("%s", path);
                status = EXIT_FAILURE;
                return (NULL);  /* could not open the dir */
        }
index 1dd2231dc93b354ad422d30bf417987510b31cf9..5b689740e6239f324c6867ddb99dfb9c0ce4c2fd 100644 (file)
@@ -143,9 +143,7 @@ do_procinit(void)
                return;
        }
 
-       procdir = opendir("/proc");
-       if (!procdir)
-               bb_perror_msg_and_die ("opendir /proc");
+       procdir = bb_xopendir("/proc");
 
        foundany = 0;
        while ((entry = readdir(procdir)) != NULL) {
index 759df8d2617fa56dc14cc4b84a5d658bafb1a3ad..d3634f95ddeac70581eb22d8669c90ad8b742807 100644 (file)
@@ -17,6 +17,7 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <termios.h>
+#include <dirent.h>
 #include <stdint.h>
 
 #include <netinet/in.h>
@@ -98,6 +99,8 @@ extern int bb_echo(int argc, char** argv);
 
 extern const char *bb_mode_string(int mode);
 extern int is_directory(const char *name, int followLinks, struct stat *statBuf);
+extern DIR *bb_opendir(const char *path);
+extern DIR *bb_xopendir(const char *path);
 
 extern int remove_file(const char *path, int flags);
 extern int copy_file(const char *source, const char *dest, int flags);
index 2d9a1745de225f3b645a0250fabcf9ae169b1c21..de511fc9b0a2348ab493d5f74672f5ff93aabfa5 100644 (file)
@@ -105,12 +105,18 @@ LIBBB_MOBJ6:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ6))
 $(LIBBB_MOBJ6):$(LIBBB_MSRC6)
        $(compile.c) -DL_$(notdir $*)
 
+LIBBB_MSRC7:=$(srcdir)/opendir.c
+LIBBB_MOBJ7:=bb_opendir.o bb_xopendir.o
+LIBBB_MOBJ7:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ7))
+$(LIBBB_MOBJ7):$(LIBBB_MSRC7)
+       $(compile.c) -DL_$(notdir $*)
 
 # We need the names of the object files built from MSRC for the L_ defines
-LIBBB_ALL_MOBJ:=$(LIBBB_MOBJ0) $(LIBBB_MOBJ1) $(LIBBB_MOBJ2) $(LIBBB_MOBJ3) $(LIBBB_MOBJ4) $(LIBBB_MOBJ5) $(LIBBB_MOBJ6)
+LIBBB_ALL_MOBJ:=$(LIBBB_MOBJ0) $(LIBBB_MOBJ1) $(LIBBB_MOBJ2) $(LIBBB_MOBJ3) \
+       $(LIBBB_MOBJ4) $(LIBBB_MOBJ5) $(LIBBB_MOBJ6) $(LIBBB_MOBJ7)
 
 LIBBB_ALL_MSRC:=$(LIBBB_MSRC0) $(LIBBB_MSRC1) $(LIBBB_MSRC2) $(LIBBB_MSRC3) \
-       $(LIBBB_MSRC4) $(LIBBB_MSRC5) $(LIBBB_MSRC6)
+       $(LIBBB_MSRC4) $(LIBBB_MSRC5) $(LIBBB_MSRC6) $(LIBBB_MSRC7)
 
 LIBBB-y:=$(sort $(LIBBB-y) $(LIBBB_ALL_MSRC))
 
index 3b172ffe48290ec9a9126a49f0c234212eaee19e..2f7514628c1d26845a17703e426c2a6eb7c1bc0c 100644 (file)
@@ -92,8 +92,7 @@ int copy_file(const char *source, const char *dest, int flags)
                }
 
                /* Recursively copy files in SOURCE.  */
-               if ((dp = opendir(source)) == NULL) {
-                       bb_perror_msg("unable to open directory `%s'", source);
+               if ((dp = bb_opendir(source)) == NULL) {
                        status = -1;
                        goto preserve_status;
                }
diff --git a/libbb/opendir.c b/libbb/opendir.c
new file mode 100644 (file)
index 0000000..e284db0
--- /dev/null
@@ -0,0 +1,37 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * wrapper for opendir()
+ *
+ * Copyright (C) 2006 Bernhard Fischer <busybox@busybox.net>
+ *
+ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ */
+
+#include <sys/types.h>
+#include <dirent.h>
+#include "libbb.h"
+
+#ifdef L_bb_opendir
+DIR *bb_opendir(const char *path)
+{
+       DIR *dp;
+
+       if ((dp = opendir(path)) == NULL) {
+               bb_perror_msg("unable to open `%s'", path);
+               return NULL;
+       }
+       return dp;
+}
+#endif
+
+#ifdef L_bb_xopendir
+DIR *bb_xopendir(const char *path)
+{
+       DIR *dp;
+
+       if ((dp = opendir(path)) == NULL) {
+               bb_perror_msg_and_die("unable to open `%s'", path);
+       }
+       return dp;
+}
+#endif
index e73c0dc64c37871d977857446c6d59c358bfe50e..25f42ffc8f35aa28ac99cfa5b302cd753ad2b634 100644 (file)
@@ -50,9 +50,7 @@ procps_status_t * procps_scan(int save_user_arg0)
        struct stat sb;
 
        if (!dir) {
-               dir = opendir("/proc");
-               if(!dir)
-                       bb_error_msg_and_die("Can't open /proc");
+               dir = bb_xopendir("/proc");
        }
        for(;;) {
                if((entry = readdir(dir)) == NULL) {
index d27629829f5f0a1638a2a6d40848bc2692c5cdaf..6b005e22dfe19af5e31803c622cc30ce95ac307a 100644 (file)
@@ -4,19 +4,7 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
 #include <stdio.h>
@@ -94,9 +82,8 @@ int recursive_action(const char *fileName,
                        } else if (status == SKIP)
                                return TRUE;
                }
-               dir = opendir(fileName);
+               dir = bb_opendir(fileName);
                if (!dir) {
-                       bb_perror_msg("%s", fileName);
                        return FALSE;
                }
                status = TRUE;
index ee1aaa5cd3d980b28b1af5fc0d56ac887475c7fb..2fa6596ee3648a28f4f654622c65698c30f5c9e6 100644 (file)
@@ -4,19 +4,7 @@
  *
  * Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
 #include <stdio.h>
@@ -71,8 +59,7 @@ int remove_file(const char *path, int flags)
                                return 0;
                }
 
-               if ((dp = opendir(path)) == NULL) {
-                       bb_perror_msg("unable to open `%s'", path);
+               if ((dp = bb_opendir(path)) == NULL) {
                        return -1;
                }
 
index 864460d0d16f449a03d691f3bd168d16df059398..7bdae5b3821bb5ecfca7ab5750e13273851f8977 100644 (file)
@@ -7,12 +7,7 @@
  * rewrite to vfork usage by
  * Copyright (C) 2002 by Vladimir Oleynik <dzo@simtreas.ru>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- *
+ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
 
@@ -69,7 +64,7 @@ int run_parts(char **args, const unsigned char test_mode, char **env)
                if (test_mode & 2) {
                        return(2);
                }
-               bb_perror_msg_and_die("failed to open directory %s", arg0);
+               bb_perror_msg_and_die("unable to open `%s'", arg0);
        }
 
        for (i = 0; i < entries; i++) {
index b8835c0d89c315b42b71dc6849cf2f39661657dd..bcd229fdd219499cf273a674a828764abcf92e33 100644 (file)
@@ -4,13 +4,8 @@
  *
  *
  * "Copyright 1999 George Staikos
- * This file may be used subject to the terms and conditions of the
- * GNU General Public License Version 2, or any later version
- * at your option, as published by the Free Software Foundation.
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details."
+ *
+ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  *
  * Changelog:
  *     v1.01:
@@ -57,7 +52,6 @@ static const char ERR_UNKNOWN_READING[] =
        "error: unknown error %d reading key '%s'\n";
 static const char ERR_PERMISSION_DENIED[] =
        "error: permission denied on key '%s'\n";
-static const char ERR_OPENING_DIR[] = "error: unable to open directory '%s'\n";
 static const char ERR_PRELOAD_FILE[] =
        "error: unable to open preload file '%s'\n";
 static const char WARN_BAD_LINE[] =
@@ -316,8 +310,7 @@ int sysctl_display_all(const char *path, int output, int show_table)
        char *tmpdir;
        struct stat ts;
 
-       if (!(dp = opendir(path))) {
-               bb_perror_msg(ERR_OPENING_DIR, path);
+       if (!(dp = bb_opendir(path))) {
                retval = -1;
        } else {
                while ((de = readdir(dp)) != NULL) {