It turns out that DODMALLOC was broken when I reorganized busybox.h
[oweals/busybox.git] / utility.c
index bc5a5bdc00e89463ae016bbd7c182dd37cc52fd9..cf0aecc804e77c77f126b59a37729165573c1b72 100644 (file)
--- a/utility.c
+++ b/utility.c
  *
  */
 
-#include "internal.h"
+#include <stdio.h>
+#include <string.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <dirent.h>
+#include <time.h>
+#include <utime.h>
+#include <unistd.h>
+#include <ctype.h>
+#include <stdlib.h>
+#include <limits.h>
+#include <sys/ioctl.h>
+#include <sys/utsname.h>               /* for uname(2) */
+
+#include "busybox.h"
 #if defined (BB_CHMOD_CHOWN_CHGRP) \
  || defined (BB_CP_MV)            \
  || defined (BB_FIND)             \
  || defined (BB_LS)               \
  || defined (BB_RM)               \
  || defined (BB_TAR)
-/* same conditions as recursiveAction */
+/* same conditions as recursive_action */
 #define bb_need_name_too_long
 #endif
 #define bb_need_memory_exhausted
 #define bb_need_full_version
 #define BB_DECLARE_EXTERN
 #include "messages.c"
+#include "usage.h"
 
-#include <stdio.h>
-#include <string.h>
-#include <errno.h>
-#include <fcntl.h>
-#include <dirent.h>
-#include <time.h>
-#include <utime.h>
-#include <unistd.h>
-#include <ctype.h>
-#include <sys/stat.h>
-#include <sys/ioctl.h>
-#include <sys/utsname.h>               /* for uname(2) */
+#include "pwd_grp/pwd.h"
+#include "pwd_grp/grp.h"
 
-#if defined BB_FEATURE_MOUNT_LOOP
-#include <fcntl.h>
-#include <linux/loop.h> /* Pull in loop device support */
-#endif
+/* for the _syscall() macros */
+#include <sys/syscall.h>
+#include <linux/unistd.h>
 
 /* Busybox mount uses either /proc/filesystems or /dev/mtab to get the 
  * list of available filesystems used for the -t auto option */ 
-#if defined BB_FEATURE_USE_PROCFS && defined BB_FEATURE_USE_DEVPS_PATCH
-//#error Sorry, but busybox can't use both /proc and /dev/ps at the same time -- Pick one and try again.
-#error "Sorry, but busybox can't use both /proc and /dev/ps at the same time -- Pick one and try again."
-#endif
-
-
 #if defined BB_MOUNT || defined BB_UMOUNT || defined BB_DF
 #  if defined BB_MTAB
 const char mtab_file[] = "/etc/mtab";
 #  else
-#    if defined BB_FEATURE_USE_PROCFS
-const char mtab_file[] = "/proc/mounts";
-#    else
 #      if defined BB_FEATURE_USE_DEVPS_PATCH
 const char mtab_file[] = "/dev/mtab";
 #    else
-#        error With (BB_MOUNT||BB_UMOUNT||BB_DF) defined, you must define either BB_MTAB or ( BB_FEATURE_USE_PROCFS | BB_FEATURE_USE_DEVPS_PATCH)
+const char mtab_file[] = "/proc/mounts";
 #    endif
 #  endif
-#  endif
 #endif
 
-extern void usage(const char *usage)
+static struct BB_applet *applet_using;
+
+extern void show_usage(void)
+{
+       static const char no_help[] = "No help available.\n";
+
+       const char *usage_string = no_help;
+       int i;
+
+       if (applet_using->usage_index >= 0) {
+               usage_string = usage_messages;
+               for (i=applet_using->usage_index ; i>0 ; ) {
+                       if (!*usage_string++) {
+                               --i;
+                       }
+               }
+       }
+       fprintf(stderr, "%s\n\nUsage: %s %s\n\n", full_version,
+                       applet_using->name, usage_string);
+       exit(EXIT_FAILURE);
+}
+
+
+static void verror_msg(const char *s, va_list p)
 {
-       fprintf(stderr, "%s\n\n", full_version);
-       fprintf(stderr, "Usage: %s\n", usage);
-       exit FALSE;
+       fflush(stdout);
+       fprintf(stderr, "%s: ", applet_name);
+       vfprintf(stderr, s, p);
 }
 
-extern void errorMsg(const char *s, ...)
+extern void error_msg(const char *s, ...)
 {
        va_list p;
 
        va_start(p, s);
-       fflush(stdout);
-       fprintf(stderr, "%s: ", applet_name);
-       vfprintf(stderr, s, p);
+       verror_msg(s, p);
        va_end(p);
-       fflush(stderr);
+       putc('\n', stderr);
 }
 
-extern void fatalError(const char *s, ...)
+extern void error_msg_and_die(const char *s, ...)
 {
        va_list p;
 
        va_start(p, s);
-       fflush(stdout);
-       fprintf(stderr, "%s: ", applet_name);
-       vfprintf(stderr, s, p);
+       verror_msg(s, p);
+       va_end(p);
+       putc('\n', stderr);
+       exit(EXIT_FAILURE);
+}
+
+static void vperror_msg(const char *s, va_list p)
+{
+       int err=errno;
+       if(s == 0) s = "";
+       verror_msg(s, p);
+       if (*s) s = ": ";
+       fprintf(stderr, "%s%s\n", s, strerror(err));
+}
+
+extern void perror_msg(const char *s, ...)
+{
+       va_list p;
+
+       va_start(p, s);
+       vperror_msg(s, p);
+       va_end(p);
+}
+
+extern void perror_msg_and_die(const char *s, ...)
+{
+       va_list p;
+
+       va_start(p, s);
+       vperror_msg(s, p);
        va_end(p);
-       fflush(stderr);
-       exit( FALSE);
+       exit(EXIT_FAILURE);
 }
 
-#if defined BB_INIT
+#if defined BB_INIT || defined BB_MKSWAP || defined BB_MOUNT || defined BB_NFSMOUNT
 /* Returns kernel version encoded as major*65536 + minor*256 + patch,
  * so, for example,  to check if the kernel is greater than 2.2.11:
  *     if (get_kernel_revision() <= 2*65536+2*256+11) { <stuff> }
@@ -123,14 +164,21 @@ extern void fatalError(const char *s, ...)
 extern int get_kernel_revision(void)
 {
        struct utsname name;
-       int major = 0, minor = 0, patch = 0;
+       char *s;
+       int i, r;
 
        if (uname(&name) == -1) {
-               perror("cannot get system information");
+               perror_msg("cannot get system information");
                return (0);
        }
-       sscanf(name.version, "%d.%d.%d", &major, &minor, &patch);
-       return major * 65536 + minor * 256 + patch;
+
+       s = name.release;
+       r = 0;
+       for (i=0 ; i<3 ; i++) {
+               r = r * 256 + atoi(strtok(s, "."));
+               s = NULL;
+       }
+       return r;
 }
 #endif                                                 /* BB_INIT */
 
@@ -143,7 +191,7 @@ _syscall1(int, sysinfo, struct sysinfo *, info);
 #if defined BB_MOUNT || defined BB_UMOUNT
 
 #ifndef __NR_umount2
-#define __NR_umount2           52
+static const int __NR_umount2 = 52;
 #endif
 
 /* Include our own version of <sys/mount.h>, since libc5 doesn't
@@ -154,6 +202,13 @@ extern _syscall5(int, mount, const char *, special_file, const char *, dir,
                const char *, fstype, unsigned long int, rwflag, const void *, data);
 #endif
 
+#if defined BB_INSMOD || defined BB_LSMOD
+#ifndef __NR_query_module
+static const int __NR_query_module = 167;
+#endif
+_syscall5(int, query_module, const char *, name, int, which,
+               void *, buf, size_t, bufsize, size_t*, ret);
+#endif
 
 
 #if defined (BB_CP_MV) || defined (BB_DU)
@@ -225,12 +280,12 @@ void reset_ino_dev_hashtable(void)
 
 #endif /* BB_CP_MV || BB_DU */
 
-#if defined (BB_CP_MV) || defined (BB_DU) || defined (BB_LN) || defined (BB_AR)
+#if defined (BB_CP_MV) || defined (BB_DU) || defined (BB_LN) || defined (BB_DPKG_DEB)
 /*
  * Return TRUE if a fileName is a directory.
  * Nonexistant files return FALSE.
  */
-int isDirectory(const char *fileName, const int followLinks, struct stat *statBuf)
+int is_directory(const char *fileName, const int followLinks, struct stat *statBuf)
 {
        int status;
        int didMalloc = 0;
@@ -258,7 +313,30 @@ int isDirectory(const char *fileName, const int followLinks, struct stat *statBu
 }
 #endif
 
-#if defined (BB_CP_MV)
+#if defined BB_AR || defined BB_CP_MV
+/*
+ * Copy chunksize bytes between two file descriptors
+ */
+int copy_file_chunk(int srcfd, int dstfd, size_t chunksize)
+{
+        size_t size;
+        char buffer[BUFSIZ]; /* BUFSIZ is declared in stdio.h */
+
+        while (chunksize > 0) {
+                if (chunksize > BUFSIZ)
+                        size = BUFSIZ;
+                else
+                        size = chunksize;
+                if (full_write(dstfd, buffer, full_read(srcfd, buffer, size)) < size)
+                        return(FALSE);
+                chunksize -= size;
+        }
+        return (TRUE);
+}
+#endif
+
+
+#if defined (BB_CP_MV) || defined BB_DPKG
 /*
  * Copy one file to another, while possibly preserving its modes, times, and
  * modes.  Returns TRUE if successful, or FALSE on a failure with an error
@@ -266,14 +344,12 @@ int isDirectory(const char *fileName, const int followLinks, struct stat *statBu
  * -Erik Andersen
  */
 int
-copyFile(const char *srcName, const char *destName,
+copy_file(const char *srcName, const char *destName,
                 int setModes, int followLinks, int forceFlag)
 {
        int rfd;
        int wfd;
-       int rcc;
        int status;
-       char buf[BUF_SIZE];
        struct stat srcStatBuf;
        struct stat dstStatBuf;
        struct utimbuf times;
@@ -284,7 +360,7 @@ copyFile(const char *srcName, const char *destName,
                status = lstat(srcName, &srcStatBuf);
 
        if (status < 0) {
-               perror(srcName);
+               perror_msg("%s", srcName);
                return FALSE;
        }
 
@@ -301,7 +377,7 @@ copyFile(const char *srcName, const char *destName,
 
        if ((srcStatBuf.st_dev == dstStatBuf.st_dev) &&
                (srcStatBuf.st_ino == dstStatBuf.st_ino)) {
-               errorMsg("Copying file \"%s\" to itself\n", srcName);
+               error_msg("Copying file \"%s\" to itself", srcName);
                return FALSE;
        }
 
@@ -310,7 +386,7 @@ copyFile(const char *srcName, const char *destName,
                /* Make sure the directory is writable */
                status = mkdir(destName, 0777777 ^ umask(0));
                if (status < 0 && errno != EEXIST) {
-                       perror(destName);
+                       perror_msg("%s", destName);
                        return FALSE;
                }
        } else if (S_ISLNK(srcStatBuf.st_mode)) {
@@ -321,13 +397,13 @@ copyFile(const char *srcName, const char *destName,
                /* Warning: This could possibly truncate silently, to BUFSIZ chars */
                link_size = readlink(srcName, &link_val[0], BUFSIZ);
                if (link_size < 0) {
-                       perror(srcName);
+                       perror_msg("%s", srcName);
                        return FALSE;
                }
                link_val[link_size] = '\0';
                status = symlink(link_val, destName);
                if (status < 0) {
-                       perror(destName);
+                       perror_msg("%s", destName);
                        return FALSE;
                }
 #if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
@@ -340,41 +416,35 @@ copyFile(const char *srcName, const char *destName,
        } else if (S_ISFIFO(srcStatBuf.st_mode)) {
                //fprintf(stderr, "copying fifo %s to %s\n", srcName, destName);
                if (mkfifo(destName, 0644) < 0) {
-                       perror(destName);
+                       perror_msg("%s", destName);
                        return FALSE;
                }
        } else if (S_ISBLK(srcStatBuf.st_mode) || S_ISCHR(srcStatBuf.st_mode)
                           || S_ISSOCK(srcStatBuf.st_mode)) {
                //fprintf(stderr, "copying soc, blk, or chr %s to %s\n", srcName, destName);
                if (mknod(destName, srcStatBuf.st_mode, srcStatBuf.st_rdev) < 0) {
-                       perror(destName);
+                       perror_msg("%s", destName);
                        return FALSE;
                }
        } else if (S_ISREG(srcStatBuf.st_mode)) {
                //fprintf(stderr, "copying regular file %s to %s\n", srcName, destName);
                rfd = open(srcName, O_RDONLY);
                if (rfd < 0) {
-                       perror(srcName);
+                       perror_msg("%s", srcName);
                        return FALSE;
                }
 
-               wfd =
-                       open(destName, O_WRONLY | O_CREAT | O_TRUNC,
+               wfd = open(destName, O_WRONLY | O_CREAT | O_TRUNC,
                                 srcStatBuf.st_mode);
                if (wfd < 0) {
-                       perror(destName);
+                       perror_msg("%s", destName);
                        close(rfd);
                        return FALSE;
                }
 
-               while ((rcc = read(rfd, buf, sizeof(buf))) > 0) {
-                       if (fullWrite(wfd, buf, rcc) < 0)
-                               goto error_exit;
-               }
-               if (rcc < 0) {
-                       goto error_exit;
-               }
-
+               if (copy_file_chunk(rfd, wfd, srcStatBuf.st_size)==FALSE)
+                       goto error_exit;        
+               
                close(rfd);
                if (close(wfd) < 0) {
                        return FALSE;
@@ -383,26 +453,20 @@ copyFile(const char *srcName, const char *destName,
 
        if (setModes == TRUE) {
                /* This is fine, since symlinks never get here */
-               if (chown(destName, srcStatBuf.st_uid, srcStatBuf.st_gid) < 0) {
-                       perror(destName);
-                       exit FALSE;
-               }
-               if (chmod(destName, srcStatBuf.st_mode) < 0) {
-                       perror(destName);
-                       exit FALSE;
-               }
+               if (chown(destName, srcStatBuf.st_uid, srcStatBuf.st_gid) < 0)
+                       perror_msg_and_die("%s", destName);
+               if (chmod(destName, srcStatBuf.st_mode) < 0)
+                       perror_msg_and_die("%s", destName);
                times.actime = srcStatBuf.st_atime;
                times.modtime = srcStatBuf.st_mtime;
-               if (utime(destName, &times) < 0) {
-                       perror(destName);
-                       exit FALSE;
-               }
+               if (utime(destName, &times) < 0)
+                       perror_msg_and_die("%s", destName);
        }
 
        return TRUE;
 
   error_exit:
-       perror(destName);
+       perror_msg("%s", destName);
        close(rfd);
        close(wfd);
 
@@ -412,7 +476,7 @@ copyFile(const char *srcName, const char *destName,
 
 
 
-#if defined BB_TAR || defined BB_LS
+#if defined BB_TAR || defined BB_LS ||defined BB_AR
 
 #define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
 #define TYPECHAR(mode)  ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
@@ -431,16 +495,16 @@ static const mode_t MBIT[] = {
        S_IROTH, S_IWOTH, S_IXOTH
 };
 
-#define MODE1  "rwxrwxrwx"
-#define MODE0  "---------"
-#define SMODE1 "..s..s..t"
-#define SMODE0 "..S..S..T"
+static const char MODE1[]  = "rwxrwxrwx";
+static const char MODE0[]  = "---------";
+static const char SMODE1[] = "..s..s..t";
+static const char SMODE0[] = "..S..S..T";
 
 /*
  * Return the standard ls-like mode string from a file mode.
  * This is static and so is overwritten on each call.
  */
-const char *modeString(int mode)
+const char *mode_string(int mode)
 {
        static char buf[12];
 
@@ -463,7 +527,7 @@ const char *modeString(int mode)
  * Return the standard ls-like time string from a time_t
  * This is static and so is overwritten on each call.
  */
-const char *timeString(time_t timeVal)
+const char *time_string(time_t timeVal)
 {
        time_t now;
        char *str;
@@ -485,13 +549,13 @@ const char *timeString(time_t timeVal)
 }
 #endif /* BB_TAR || BB_AR */
 
-#if defined BB_TAR || defined BB_CP_MV || defined BB_AR
+#if defined BB_DD || defined BB_NC || defined BB_TAIL || defined BB_TAR || defined BB_AR || defined BB_CP_MV
 /*
  * Write all of the supplied buffer out to a file.
  * This does multiple writes as necessary.
  * Returns the amount written, or -1 on an error.
  */
-int fullWrite(int fd, const char *buf, int len)
+int full_write(int fd, const char *buf, int len)
 {
        int cc;
        int total;
@@ -511,17 +575,16 @@ int fullWrite(int fd, const char *buf, int len)
 
        return total;
 }
-#endif /* BB_TAR || BB_CP_MV || BB_AR */
-
+#endif
 
-#if defined BB_TAR || defined BB_TAIL || defined BB_AR || defined BB_SH
+#if defined BB_AR || defined BB_CP_MV || defined BB_SH || defined BB_TAR
 /*
  * 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.
  */
-int fullRead(int fd, char *buf, int len)
+int full_read(int fd, char *buf, int len)
 {
        int cc;
        int total;
@@ -560,12 +623,12 @@ int fullRead(int fd, char *buf, int len)
  * location, and do something (something specified
  * by the fileAction and dirAction function pointers).
  *
- * Unfortunatly, while nftw(3) could replace this and reduce 
+ * Unfortunately, while nftw(3) could replace this and reduce 
  * code size a bit, nftw() wasn't supported before GNU libc 2.1, 
  * and so isn't sufficiently portable to take over since glibc2.1
  * is so stinking huge.
  */
-int recursiveAction(const char *fileName,
+int recursive_action(const char *fileName,
                                        int recurse, int followLinks, int depthFirst,
                                        int (*fileAction) (const char *fileName,
                                                                           struct stat * statbuf,
@@ -590,7 +653,7 @@ int recursiveAction(const char *fileName,
                                "status=%d followLinks=%d TRUE=%d\n",
                                status, followLinks, TRUE);
 #endif
-               perror(fileName);
+               perror_msg("%s", fileName);
                return FALSE;
        }
 
@@ -613,17 +676,18 @@ int recursiveAction(const char *fileName,
        if (S_ISDIR(statbuf.st_mode)) {
                DIR *dir;
 
-               dir = opendir(fileName);
-               if (!dir) {
-                       perror(fileName);
-                       return FALSE;
-               }
                if (dirAction != NULL && depthFirst == FALSE) {
                        status = dirAction(fileName, &statbuf, userData);
                        if (status == FALSE) {
-                               perror(fileName);
+                               perror_msg("%s", fileName);
                                return FALSE;
-                       }
+                       } else if (status == SKIP)
+                               return TRUE;
+               }
+               dir = opendir(fileName);
+               if (!dir) {
+                       perror_msg("%s", fileName);
+                       return FALSE;
                }
                while ((next = readdir(dir)) != NULL) {
                        char nextFile[BUFSIZ + 1];
@@ -633,13 +697,13 @@ int recursiveAction(const char *fileName,
                                continue;
                        }
                        if (strlen(fileName) + strlen(next->d_name) + 1 > BUFSIZ) {
-                               errorMsg(name_too_long);
+                               error_msg(name_too_long);
                                return FALSE;
                        }
                        memset(nextFile, 0, sizeof(nextFile));
                        sprintf(nextFile, "%s/%s", fileName, next->d_name);
                        status =
-                               recursiveAction(nextFile, TRUE, followLinks, depthFirst,
+                               recursive_action(nextFile, TRUE, followLinks, depthFirst,
                                                                fileAction, dirAction, userData);
                        if (status == FALSE) {
                                closedir(dir);
@@ -648,13 +712,13 @@ int recursiveAction(const char *fileName,
                }
                status = closedir(dir);
                if (status < 0) {
-                       perror(fileName);
+                       perror_msg("%s", fileName);
                        return FALSE;
                }
                if (dirAction != NULL && depthFirst == TRUE) {
                        status = dirAction(fileName, &statbuf, userData);
                        if (status == FALSE) {
-                               perror(fileName);
+                               perror_msg("%s", fileName);
                                return FALSE;
                        }
                }
@@ -671,14 +735,14 @@ int recursiveAction(const char *fileName,
 
 
 
-#if defined (BB_TAR) || defined (BB_MKDIR) || defined (BB_AR)
+#if defined (BB_TAR) || defined (BB_MKDIR)
 /*
  * Attempt to create the directories along the specified path, except for
  * the final component.  The mode is given for the final directory only,
  * while all previous ones get default protections.  Errors are not reported
  * here, as failures to restore files can be reported later.
  */
-extern int createPath(const char *name, int mode)
+extern int create_path(const char *name, int mode)
 {
        char *cp;
        char *cpOld;
@@ -694,7 +758,7 @@ extern int createPath(const char *name, int mode)
                *cpOld = '\0';
                retVal = mkdir(buf, cp ? 0777 : mode);
                if (retVal != 0 && errno != EEXIST) {
-                       perror(buf);
+                       perror_msg("%s", buf);
                        return FALSE;
                }
                *cpOld = '/';
@@ -706,102 +770,103 @@ extern int createPath(const char *name, int mode)
 
 
 #if defined (BB_CHMOD_CHOWN_CHGRP) || defined (BB_MKDIR) \
- || defined (BB_MKFIFO) || defined (BB_MKNOD)
+ || defined (BB_MKFIFO) || defined (BB_MKNOD) || defined (BB_AR)
 /* [ugoa]{+|-|=}[rwxst] */
 
-
-
 extern int parse_mode(const char *s, mode_t * theMode)
 {
-       mode_t andMode =
+       static const mode_t group_set[] = { 
+               S_ISUID | S_IRWXU,              /* u */
+               S_ISGID | S_IRWXG,              /* g */
+               S_IRWXO,                                /* o */
+               S_ISUID | S_ISGID | S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO /* a */
+       };
+
+       static const mode_t mode_set[] = {
+               S_IRUSR | S_IRGRP | S_IROTH, /* r */
+               S_IWUSR | S_IWGRP | S_IWOTH, /* w */
+               S_IXUSR | S_IXGRP | S_IXOTH, /* x */
+               S_ISUID | S_ISGID,              /* s */
+               S_ISVTX                                 /* t */
+       };
+
+       static const char group_string[] = "ugoa";
+       static const char mode_string[] = "rwxst";
+
+       const char *p;
 
+       mode_t andMode =
                S_ISVTX | S_ISUID | S_ISGID | S_IRWXU | S_IRWXG | S_IRWXO;
        mode_t orMode = 0;
-       mode_t mode = 0;
-       mode_t groups = 0;
+       mode_t mode;
+       mode_t groups;
        char type;
        char c;
 
+       if (s==NULL) {
+               return (FALSE);
+       }
+
        do {
-               for (;;) {
-                       switch (c = *s++) {
-                       case '\0':
-                               return -1;
-                       case 'u':
-                               groups |= S_ISUID | S_IRWXU;
-                               continue;
-                       case 'g':
-                               groups |= S_ISGID | S_IRWXG;
-                               continue;
-                       case 'o':
-                               groups |= S_IRWXO;
-                               continue;
-                       case 'a':
-                               groups |= S_ISUID | S_ISGID | S_IRWXU | S_IRWXG | S_IRWXO;
-                               continue;
-                       case '+':
+               mode = 0;
+               groups = 0;
+       NEXT_GROUP:
+               if ((c = *s++) == '\0') {
+                       return -1;
+               }
+               for (p=group_string ; *p ; p++) {
+                       if (*p == c) {
+                               groups |= group_set[(int)(p-group_string)];
+                               goto NEXT_GROUP;
+                       }
+               }
+               switch (c) {
                        case '=':
+                       case '+':
                        case '-':
                                type = c;
-                               if (groups == 0)        /* The default is "all" */
-                                       groups |=
-                                               S_ISUID | S_ISGID | S_IRWXU | S_IRWXG | S_IRWXO;
+                               if (groups == 0) { /* The default is "all" */
+                                       groups |= S_ISUID | S_ISGID | S_ISVTX
+                                                       | S_IRWXU | S_IRWXG | S_IRWXO;
+                               }
                                break;
                        default:
-                               if (isdigit(c) && c >= '0' && c <= '7' &&
-                                       mode == 0 && groups == 0) {
+                               if ((c < '0') || (c > '7') || (mode | groups)) {
+                                       return (FALSE);
+                               } else {
                                        *theMode = strtol(--s, NULL, 8);
                                        return (TRUE);
-                               } else
-                                       return (FALSE);
-                       }
-                       break;
+                               }
                }
 
-               while ((c = *s++) != '\0') {
-                       switch (c) {
-                       case ',':
-                               break;
-                       case 'r':
-                               mode |= S_IRUSR | S_IRGRP | S_IROTH;
-                               continue;
-                       case 'w':
-                               mode |= S_IWUSR | S_IWGRP | S_IWOTH;
-                               continue;
-                       case 'x':
-                               mode |= S_IXUSR | S_IXGRP | S_IXOTH;
-                               continue;
-                       case 's':
-                               mode |= S_IXGRP | S_ISUID | S_ISGID;
-                               continue;
-                       case 't':
-                               mode |= 0;
-                               continue;
-                       default:
-                               *theMode &= andMode;
-                               *theMode |= orMode;
-                               return (TRUE);
+       NEXT_MODE:
+               if (((c = *s++) != '\0') && (c != ',')) {
+                       for (p=mode_string ; *p ; p++) {
+                               if (*p == c) {
+                                       mode |= mode_set[(int)(p-mode_string)];
+                                       goto NEXT_MODE;
+                               }
                        }
-                       break;
+                       break;                          /* We're done so break out of loop.*/
                }
                switch (type) {
-               case '=':
-                       andMode &= ~(groups);
-                       /* fall through */
-               case '+':
-                       orMode |= mode & groups;
-                       break;
-               case '-':
-                       andMode &= ~(mode & groups);
-                       orMode &= andMode;
-                       break;
+                       case '=':
+                               andMode &= ~(groups); /* Now fall through. */
+                       case '+':
+                               orMode |= mode & groups;
+                               break;
+                       case '-':
+                               andMode &= ~(mode & groups);
+                               orMode &= ~(mode & groups);
+                               break;
                }
        } while (c == ',');
+
        *theMode &= andMode;
        *theMode |= orMode;
-       return (TRUE);
-}
 
+       return TRUE;
+}
 
 #endif
 /* BB_CHMOD_CHOWN_CHGRP || BB_MKDIR || BB_MKFIFO || BB_MKNOD */
@@ -812,113 +877,73 @@ extern int parse_mode(const char *s, mode_t * theMode)
 
 #if defined BB_CHMOD_CHOWN_CHGRP || defined BB_PS || defined BB_LS \
  || defined BB_TAR || defined BB_ID || defined BB_LOGGER \
- || defined BB_LOGNAME || defined BB_WHOAMI
-
-/* This parses entries in /etc/passwd and /etc/group.  This is desirable
- * for BusyBox, since we want to avoid using the glibc NSS stuff, which
- * increases target size and is often not needed or wanted for embedded
- * systems.
- *
- * /etc/passwd entries look like this: 
- *             root:x:0:0:root:/root:/bin/bash
- * and /etc/group entries look like this: 
- *             root:x:0:
- *
- * This uses buf as storage to hold things.
- * 
- */
-unsigned long my_getid(const char *filename, char *name, long id, long *gid)
-{
-       FILE *file;
-       char *rname, *start, *end, buf[128];
-       long rid;
-       long rgid = 0;
-
-       file = fopen(filename, "r");
-       if (file == NULL) {
-               /* Do not complain.  It is ok for /etc/passwd and
-                * friends to be missing... */
-               return (-1);
-       }
-
-       while (fgets(buf, 128, file) != NULL) {
-               if (buf[0] == '#')
-                       continue;
-
-               /* username/group name */
-               start = buf;
-               end = strchr(start, ':');
-               if (end == NULL)
-                       continue;
-               *end = '\0';
-               rname = start;
-
-               /* password */
-               start = end + 1;
-               end = strchr(start, ':');
-               if (end == NULL)
-                       continue;
-
-               /* uid in passwd, gid in group */
-               start = end + 1;
-               rid = (unsigned long) strtol(start, &end, 10);
-               if (end == start)
-                       continue;
-
-               /* gid in passwd */
-               start = end + 1;
-               rgid = (unsigned long) strtol(start, &end, 10);
-               
-               if (name) {
-                       if (0 == strcmp(rname, name)) {
-                           if (gid) *gid = rgid;
-                               fclose(file);
-                               return (rid);
-                       }
-               }
-               if (id != -1 && id == rid) {
-                       strncpy(name, rname, 8);
-                       if (gid) *gid = rgid;
-                       fclose(file);
-                       return (TRUE);
-               }
-       }
-       fclose(file);
-       return (-1);
-}
-
+ || defined BB_LOGNAME || defined BB_WHOAMI || defined BB_SH
 /* returns a uid given a username */
 long my_getpwnam(char *name)
 {
-       return my_getid("/etc/passwd", name, -1, NULL);
+       struct passwd *myuser;
+
+       myuser  = getpwnam(name);
+       if (myuser==NULL)
+               return(-1);
+
+       return myuser->pw_uid;
 }
 
 /* returns a gid given a group name */
 long my_getgrnam(char *name)
 {
-       return my_getid("/etc/group", name, -1, NULL);
+       struct group *mygroup;
+
+       mygroup  = getgrnam(name);
+       if (mygroup==NULL)
+               return(-1);
+
+       return (mygroup->gr_gid);
 }
 
 /* gets a username given a uid */
 void my_getpwuid(char *name, long uid)
 {
-       my_getid("/etc/passwd", name, uid, NULL);
+       struct passwd *myuser;
+
+       myuser  = getpwuid(uid);
+       if (myuser==NULL)
+               sprintf(name, "%-8ld ", (long)uid);
+       else
+               strcpy(name, myuser->pw_name);
 }
 
 /* gets a groupname given a gid */
 void my_getgrgid(char *group, long gid)
 {
-       my_getid("/etc/group", group, gid, NULL);
+       struct group *mygroup;
+
+       mygroup  = getgrgid(gid);
+       if (mygroup==NULL)
+               sprintf(group, "%-8ld ", (long)gid);
+       else
+               strcpy(group, mygroup->gr_name);
 }
 
+#if defined BB_ID
 /* gets a gid given a user name */
 long my_getpwnamegid(char *name)
 {
-       long gid;
-       my_getid("/etc/passwd", name, -1, &gid);
-       return gid;
-}
+       struct group *mygroup;
+       struct passwd *myuser;
+
+       myuser=getpwnam(name);
+       if (myuser==NULL)
+               error_msg_and_die( "unknown user name: %s", name);
+
+       mygroup  = getgrgid(myuser->pw_gid);
+       if (mygroup==NULL)
+               error_msg_and_die( "unknown gid %ld", (long)myuser->pw_gid);
 
+       return mygroup->gr_gid;
+}
+#endif /* BB_ID */
 #endif
  /* BB_CHMOD_CHOWN_CHGRP || BB_PS || BB_LS || BB_TAR \
  || BB_ID || BB_LOGGER || BB_LOGNAME || BB_WHOAMI */
@@ -927,9 +952,9 @@ long my_getpwnamegid(char *name)
 #if (defined BB_CHVT) || (defined BB_DEALLOCVT) || (defined BB_SETKEYCODES)
 
 /* From <linux/kd.h> */ 
-#define KDGKBTYPE       0x4B33  /* get keyboard type */
-#define         KB_84           0x01
-#define         KB_101          0x02    /* this is what we always answer */
+static const int KDGKBTYPE = 0x4B33;  /* get keyboard type */
+static const int KB_84 = 0x01;
+static const int KB_101 = 0x02;    /* this is what we always answer */
 
 int is_a_console(int fd)
 {
@@ -1004,7 +1029,7 @@ int get_console_fd(char *tty_name)
                if (is_a_console(fd))
                        return fd;
 
-       errorMsg("Couldnt get a file descriptor referring to the console\n");
+       error_msg("Couldnt get a file descriptor referring to the console");
        return -1;                                      /* total failure */
 }
 
@@ -1012,82 +1037,6 @@ int get_console_fd(char *tty_name)
 #endif                                                 /* BB_CHVT || BB_DEALLOCVT || BB_SETKEYCODES */
 
 
-#if !defined BB_REGEXP && (defined BB_GREP || defined BB_SED)
-
-/* Do a case insensitive strstr() */
-char *stristr(char *haystack, const char *needle)
-{
-       int len = strlen(needle);
-
-       while (*haystack) {
-               if (!strncasecmp(haystack, needle, len))
-                       break;
-               haystack++;
-       }
-
-       if (!(*haystack))
-               haystack = NULL;
-
-       return haystack;
-}
-
-/* This tries to find a needle in a haystack, but does so by
- * only trying to match literal strings (look 'ma, no regexps!)
- * This is short, sweet, and carries _very_ little baggage,
- * unlike its beefier cousin in regexp.c
- *  -Erik Andersen
- */
-extern int find_match(char *haystack, char *needle, int ignoreCase)
-{
-
-       if (ignoreCase == FALSE)
-               haystack = strstr(haystack, needle);
-       else
-               haystack = stristr(haystack, needle);
-       if (haystack == NULL)
-               return FALSE;
-       return TRUE;
-}
-
-
-/* This performs substitutions after a string match has been found.  */
-extern int replace_match(char *haystack, char *needle, char *newNeedle,
-                                                int ignoreCase)
-{
-       int foundOne = 0;
-       char *where, *slider, *slider1, *oldhayStack;
-
-       if (ignoreCase == FALSE)
-               where = strstr(haystack, needle);
-       else
-               where = stristr(haystack, needle);
-
-       if (strcmp(needle, newNeedle) == 0)
-               return FALSE;
-
-       oldhayStack = (char *) xmalloc((unsigned) (strlen(haystack)));
-       while (where != NULL) {
-               foundOne++;
-               strcpy(oldhayStack, haystack);
-               for (slider = haystack, slider1 = oldhayStack; slider != where;
-                        slider++, slider1++);
-               *slider = 0;
-               haystack = strcat(haystack, newNeedle);
-               slider1 += strlen(needle);
-               haystack = strcat(haystack, slider1);
-               where = strstr(slider, needle);
-       }
-       free(oldhayStack);
-
-       if (foundOne > 0)
-               return TRUE;
-       else
-               return FALSE;
-}
-
-#endif                                                 /* ! BB_REGEXP && (BB_GREP || BB_SED) */
-
-
 #if defined BB_FIND || defined BB_INSMOD
 /*
  * Routine to see if a text string is matched by a wildcard pattern.
@@ -1194,6 +1143,7 @@ extern int check_wildcard_match(const char *text, const char *pattern)
 
 
 #if defined BB_DF || defined BB_MTAB
+#include <mntent.h>
 /*
  * Given a block device, find the mount table entry if that block device
  * is mounted.
@@ -1201,7 +1151,7 @@ extern int check_wildcard_match(const char *text, const char *pattern)
  * Given any other file (or directory), find the mount table entry for its
  * filesystem.
  */
-extern struct mntent *findMountPoint(const char *name, const char *table)
+extern struct mntent *find_mount_point(const char *name, const char *table)
 {
        struct stat s;
        dev_t mountDevice;
@@ -1234,59 +1184,7 @@ extern struct mntent *findMountPoint(const char *name, const char *table)
 }
 #endif                                                 /* BB_DF || BB_MTAB */
 
-
-
-#if defined BB_DD || defined BB_TAIL
-/*
- * Read a number with a possible multiplier.
- * Returns -1 if the number format is illegal.
- */
-extern long getNum(const char *cp)
-{
-       long value;
-
-       if (!isDecimal(*cp))
-               return -1;
-
-       value = 0;
-
-       while (isDecimal(*cp))
-               value = value * 10 + *cp++ - '0';
-
-       switch (*cp++) {
-       case 'M':
-       case 'm':                                       /* `tail' uses it traditionally */
-               value *= 1048576;
-               break;
-
-       case 'k':
-               value *= 1024;
-               break;
-
-       case 'b':
-               value *= 512;
-               break;
-
-       case 'w':
-               value *= 2;
-               break;
-
-       case '\0':
-               return value;
-
-       default:
-               return -1;
-       }
-
-       if (*cp)
-               return -1;
-
-       return value;
-}
-#endif                                                 /* BB_DD || BB_TAIL */
-
-
-#if defined BB_INIT || defined BB_SYSLOGD || defined BB_AR
+#if defined BB_INIT || defined BB_SYSLOGD 
 /* try to open up the specified device */
 extern int device_open(char *device, int mode)
 {
@@ -1314,14 +1212,14 @@ extern int device_open(char *device, int mode)
 #endif
 
 #if defined BB_FEATURE_USE_DEVPS_PATCH
-/* findPidByName()
+/* find_pid_by_name()
  *  
  *  This finds the pid of the specified process,
  *  by using the /dev/ps device driver.
  *
  *  Returns a list of all matching PIDs
  */
-extern pid_t* findPidByName( char* pidName)
+extern pid_t* find_pid_by_name( char* pidName)
 {
        int fd, i, j;
        char device[] = "/dev/ps";
@@ -1332,22 +1230,22 @@ extern pid_t* findPidByName( char* pidName)
        /* open device */ 
        fd = open(device, O_RDONLY);
        if (fd < 0)
-               fatalError( "open failed for `%s': %s\n", device, strerror (errno));
+               perror_msg_and_die("open failed for `%s'", device);
 
        /* Find out how many processes there are */
        if (ioctl (fd, DEVPS_GET_NUM_PIDS, &num_pids)<0) 
-               fatalError( "\nDEVPS_GET_PID_LIST: %s\n", strerror (errno));
+               perror_msg_and_die("\nDEVPS_GET_PID_LIST");
        
        /* Allocate some memory -- grab a few extras just in case 
         * some new processes start up while we wait. The kernel will
         * just ignore any extras if we give it too many, and will trunc.
         * the list if we give it too few.  */
-       pid_array = (pid_t*) calloc( num_pids+10, sizeof(pid_t));
+       pid_array = (pid_t*) xcalloc( num_pids+10, sizeof(pid_t));
        pid_array[0] = num_pids+10;
 
        /* Now grab the pid list */
        if (ioctl (fd, DEVPS_GET_PID_LIST, pid_array)<0) 
-               fatalError( "\nDEVPS_GET_PID_LIST: %s\n", strerror (errno));
+               perror_msg_and_die("\nDEVPS_GET_PID_LIST");
 
        /* Now search for a match */
        for (i=1, j=0; i<pid_array[0] ; i++) {
@@ -1356,7 +1254,7 @@ extern pid_t* findPidByName( char* pidName)
 
            info.pid = pid_array[i];
            if (ioctl (fd, DEVPS_GET_PID_INFO, &info)<0)
-                       fatalError( "\nDEVPS_GET_PID_INFO: %s\n", strerror (errno));
+                       perror_msg_and_die("\nDEVPS_GET_PID_INFO");
 
                /* Make sure we only match on the process name */
                p=info.command_line+1;
@@ -1368,9 +1266,7 @@ extern pid_t* findPidByName( char* pidName)
 
                if ((strstr(info.command_line, pidName) != NULL)
                                && (strlen(pidName) == strlen(info.command_line))) {
-                       pidList=realloc( pidList, sizeof(pid_t) * (j+2));
-                       if (pidList==NULL)
-                               fatalError(memory_exhausted);
+                       pidList=xrealloc( pidList, sizeof(pid_t) * (j+2));
                        pidList[j++]=info.pid;
                }
        }
@@ -1382,16 +1278,13 @@ extern pid_t* findPidByName( char* pidName)
 
        /* close device */
        if (close (fd) != 0) 
-               fatalError( "close failed for `%s': %s\n",device, strerror (errno));
+               perror_msg_and_die("close failed for `%s'", device);
 
        return pidList;
 }
 #else          /* BB_FEATURE_USE_DEVPS_PATCH */
-#if ! defined BB_FEATURE_USE_PROCFS
-#error Sorry, I depend on the /proc filesystem right now.
-#endif
 
-/* findPidByName()
+/* find_pid_by_name()
  *  
  *  This finds the pid of the specified process.
  *  Currently, it's implemented by rummaging through 
@@ -1399,7 +1292,7 @@ extern pid_t* findPidByName( char* pidName)
  *
  *  Returns a list of all matching PIDs
  */
-extern pid_t* findPidByName( char* pidName)
+extern pid_t* find_pid_by_name( char* pidName)
 {
        DIR *dir;
        struct dirent *next;
@@ -1408,20 +1301,18 @@ extern pid_t* findPidByName( char* pidName)
 
        dir = opendir("/proc");
        if (!dir)
-               fatalError( "Cannot open /proc: %s\n", strerror (errno));
+               perror_msg_and_die("Cannot open /proc");
        
        while ((next = readdir(dir)) != NULL) {
                FILE *status;
                char filename[256];
                char buffer[256];
-               char* p;
 
                /* If it isn't a number, we don't want it */
                if (!isdigit(*next->d_name))
                        continue;
 
-               /* Now open the status file */
-               sprintf(filename, "/proc/%s/status", next->d_name);
+               sprintf(filename, "/proc/%s/cmdline", next->d_name);
                status = fopen(filename, "r");
                if (!status) {
                        continue;
@@ -1429,24 +1320,12 @@ extern pid_t* findPidByName( char* pidName)
                fgets(buffer, 256, status);
                fclose(status);
 
-               /* Make sure we only match on the process name */
-               p=buffer+5; /* Skip the name */
-               while ((p)++) {
-                       if (*p==0 || *p=='\n') {
-                               *p='\0';
-                               break;
-                       }
-               }
-               p=buffer+6; /* Skip the "Name:\t" */
-
-               if ((strstr(p, pidName) != NULL)
-                               && (strlen(pidName) == strlen(p))) {
-                       pidList=realloc( pidList, sizeof(pid_t) * (i+2));
-                       if (pidList==NULL)
-                               fatalError(memory_exhausted);
+               if (strstr(get_last_path_component(buffer), pidName) != NULL) {
+                       pidList=xrealloc( pidList, sizeof(pid_t) * (i+2));
                        pidList[i++]=strtol(next->d_name, NULL, 0);
                }
        }
+
        if (pidList)
                pidList[i]=0;
        return pidList;
@@ -1461,7 +1340,7 @@ extern void *xmalloc(size_t size)
        void *ptr = malloc(size);
 
        if (!ptr)
-               fatalError(memory_exhausted);
+               error_msg_and_die(memory_exhausted);
        return ptr;
 }
 
@@ -1469,7 +1348,7 @@ extern void *xrealloc(void *old, size_t size)
 {
        void *ptr = realloc(old, size);
        if (!ptr)
-               fatalError(memory_exhausted);
+               error_msg_and_die(memory_exhausted);
        return ptr;
 }
 
@@ -1477,12 +1356,14 @@ extern void *xcalloc(size_t nmemb, size_t size)
 {
        void *ptr = calloc(nmemb, size);
        if (!ptr)
-               fatalError(memory_exhausted);
+               error_msg_and_die(memory_exhausted);
        return ptr;
 }
 #endif
 
-#if defined BB_FEATURE_NFSMOUNT
+#if defined BB_NFSMOUNT || defined BB_LS || defined BB_SH || \
+       defined BB_WGET || defined BB_DPKG_DEB || defined BB_TAR || \
+       defined BB_LN
 # ifndef DMALLOC
 extern char * xstrdup (const char *s) {
        char *t;
@@ -1493,26 +1374,35 @@ extern char * xstrdup (const char *s) {
        t = strdup (s);
 
        if (t == NULL)
-               fatalError(memory_exhausted);
+               error_msg_and_die(memory_exhausted);
 
        return t;
 }
 # endif
+#endif
 
+#if defined BB_NFSMOUNT
 extern char * xstrndup (const char *s, int n) {
        char *t;
 
        if (s == NULL)
-               fatalError("xstrndup bug");
-
-       t = xmalloc(n+1);
-       strncpy(t,s,n);
-       t[n] = 0;
+               error_msg_and_die("xstrndup bug");
 
-       return t;
+       t = xmalloc(++n);
+       
+       return safe_strncpy(t,s,n);
 }
 #endif
 
+#if defined BB_IFCONFIG || defined BB_ROUTE || defined BB_NFSMOUNT || \
+    defined BB_FEATURE_MOUNT_LOOP
+/* Like strncpy but make sure the resulting string is always 0 terminated. */  
+extern char * safe_strncpy(char *dst, const char *src, size_t size)
+{   
+       dst[size-1] = '\0';
+       return strncpy(dst, src, size-1);   
+}
+#endif
 
 #if (__GLIBC__ < 2) && (defined BB_SYSLOGD || defined BB_INIT)
 extern int vdprintf(int d, const char *format, va_list ap)
@@ -1525,17 +1415,21 @@ extern int vdprintf(int d, const char *format, va_list ap)
 }
 #endif                                                 /* BB_SYSLOGD */
 
+
 #if defined BB_FEATURE_MOUNT_LOOP
+#include <fcntl.h>
+#include "loop.h" /* Pull in loop device support */
+
 extern int del_loop(const char *device)
 {
        int fd;
 
        if ((fd = open(device, O_RDONLY)) < 0) {
-               perror(device);
+               perror_msg("%s", device);
                return (FALSE);
        }
        if (ioctl(fd, LOOP_CLR_FD, 0) < 0) {
-               perror("ioctl: LOOP_CLR_FD");
+               perror_msg("ioctl: LOOP_CLR_FD");
                return (FALSE);
        }
        close(fd);
@@ -1551,32 +1445,31 @@ extern int set_loop(const char *device, const char *file, int offset,
        mode = *loopro ? O_RDONLY : O_RDWR;
        if ((ffd = open(file, mode)) < 0 && !*loopro
                && (errno != EROFS || (ffd = open(file, mode = O_RDONLY)) < 0)) {
-               perror(file);
+               perror_msg("%s", file);
                return 1;
        }
        if ((fd = open(device, mode)) < 0) {
                close(ffd);
-               perror(device);
+               perror_msg("%s", device);
                return 1;
        }
        *loopro = (mode == O_RDONLY);
 
        memset(&loopinfo, 0, sizeof(loopinfo));
-       strncpy(loopinfo.lo_name, file, LO_NAME_SIZE);
-       loopinfo.lo_name[LO_NAME_SIZE - 1] = 0;
+       safe_strncpy(loopinfo.lo_name, file, LO_NAME_SIZE);
 
        loopinfo.lo_offset = offset;
 
        loopinfo.lo_encrypt_key_size = 0;
        if (ioctl(fd, LOOP_SET_FD, ffd) < 0) {
-               perror("ioctl: LOOP_SET_FD");
+               perror_msg("ioctl: LOOP_SET_FD");
                close(fd);
                close(ffd);
                return 1;
        }
        if (ioctl(fd, LOOP_SET_STATUS, &loopinfo) < 0) {
                (void) ioctl(fd, LOOP_CLR_FD, 0);
-               perror("ioctl: LOOP_SET_STATUS");
+               perror_msg("ioctl: LOOP_SET_STATUS");
                close(fd);
                close(ffd);
                return 1;
@@ -1620,13 +1513,13 @@ extern int find_real_root_device_name(char* name)
        char fileName[BUFSIZ];
 
        if (stat("/", &rootStat) != 0) {
-               errorMsg("could not stat '/'\n");
+               error_msg("could not stat '/'");
                return( FALSE);
        }
 
        dir = opendir("/dev");
        if (!dir) {
-               errorMsg("could not open '/dev'\n");
+               error_msg("could not open '/dev'");
                return( FALSE);
        }
 
@@ -1637,7 +1530,7 @@ extern int find_real_root_device_name(char* name)
                if (strcmp(entry->d_name, "..") == 0)
                        continue;
 
-               sprintf( fileName, "/dev/%s", entry->d_name);
+               snprintf( fileName, strlen(name)+1, "/dev/%s", entry->d_name);
 
                if (stat(fileName, &statBuf) != 0)
                        continue;
@@ -1673,8 +1566,8 @@ extern char *get_line_from_file(FILE *file)
                if (ch == EOF)
                        break;
                /* grow the line buffer as necessary */
-               if (idx > linebufsz-2)
-                       linebuf = realloc(linebuf, linebufsz += GROWBY);
+               while (idx > linebufsz-2)
+                       linebuf = xrealloc(linebuf, linebufsz += GROWBY);
                linebuf[idx++] = (char)ch;
                if ((char)ch == '\n')
                        break;
@@ -1687,7 +1580,7 @@ extern char *get_line_from_file(FILE *file)
        return linebuf;
 }
 
-#if defined BB_CAT || defined BB_LSMOD
+#if defined BB_CAT
 extern void print_file(FILE *file)
 {
        int c;
@@ -1701,78 +1594,78 @@ extern void print_file(FILE *file)
 extern int print_file_by_name(char *filename)
 {
        FILE *file;
-       file = fopen(filename, "r");
-       if (file == NULL) {
+       if ((file = wfopen(filename, "r")) == NULL)
                return FALSE;
-       }
        print_file(file);
        return TRUE;
 }
-#endif /* BB_CAT || BB_LSMOD */
+#endif /* BB_CAT */
 
-#if defined BB_ECHO || defined BB_TR
+#if defined BB_ECHO || defined BB_SH || defined BB_TR
 char process_escape_sequence(char **ptr)
 {
-       char c;
-
-       switch (c = *(*ptr)++) {
-       case 'a':
-               c = '\a';
-               break;
-       case 'b':
-               c = '\b';
-               break;
-       case 'f':
-               c = '\f';
-               break;
-       case 'n':
-               c = '\n';
-               break;
-       case 't':
-               c = '\t';
-               break;
-       case 'v':
-               c = '\v';
-               break;
-       case '\\':
-               c = '\\';
-               break;
-       case '0': case '1': case '2': case '3':
-       case '4': case '5': case '6': case '7':
-               c -= '0';
-               if ('0' <= **ptr && **ptr <= '7') {
-                       c = c * 8 + (*(*ptr)++ - '0');
-                       if ('0' <= **ptr && **ptr <= '7')
-                               c = c * 8 + (*(*ptr)++ - '0');
-               }
-               break;
-       default:
-               (*ptr)--;
-               c = '\\';
-               break;
-       }
-       return c;
+       static const char charmap[] = {
+                  'a',  'b',  'f',  'n',  'r',  't',  'v',  '\\', 0,
+              '\a', '\b', '\f', '\n', '\r', '\t', '\v', '\\', '\\' };
+
+       const char *p;
+          char *q;
+       int num_digits;
+       unsigned int n;
+
+       n = 0;
+          q = *ptr;
+
+       for ( num_digits = 0 ; num_digits < 3 ; ++num_digits) {
+              if ((*q < '0') || (*q > '7')) { /* not a digit? */
+                      break;
+              }
+              n = n * 8 + (*q++ - '0');
+       }
+
+       if (num_digits == 0) {  /* mnemonic escape sequence? */
+                  for (p=charmap ; *p ; p++) {
+                          if (*p == *q) {
+                                  q++;
+                                  break;
+                          }
+                  }
+                  n = *(p+(sizeof(charmap)/2));
+          }
+
+          /* doesn't hurt to fall through to here from mnemonic case */
+          if (n > UCHAR_MAX) { /* is octal code too big for a char? */
+                  n /= 8;                      /* adjust value and */
+                  --q;                         /* back up one char */
+          }
+
+          *ptr = q;
+          return (char) n;
 }
 #endif
 
-#if defined BB_BASENAME || defined BB_LN
+#if defined BB_BASENAME || defined BB_LN || defined BB_SH || defined BB_INIT || \
+       ! defined BB_FEATURE_USE_DEVPS_PATCH || defined BB_WGET
 char *get_last_path_component(char *path)
 {
        char *s=path+strlen(path)-1;
 
        /* strip trailing slashes */
-       while (s && *s == '/') {
+       while (s != path && *s == '/') {
                *s-- = '\0';
        }
 
        /* find last component */
        s = strrchr(path, '/');
-       if (s==NULL) return path;
-       else return s+1;
+       if (s == NULL || s[1] == '\0')
+               return path;
+       else
+               return s+1;
 }
 #endif
 
 #if defined BB_GREP || defined BB_SED
+#include <regex.h>
 void xregcomp(regex_t *preg, const char *regex, int cflags)
 {
        int ret;
@@ -1780,8 +1673,163 @@ void xregcomp(regex_t *preg, const char *regex, int cflags)
                int errmsgsz = regerror(ret, preg, NULL, 0);
                char *errmsg = xmalloc(errmsgsz);
                regerror(ret, preg, errmsg, errmsgsz);
-               fatalError("bb_regcomp: %s\n", errmsg);
+               error_msg_and_die("xregcomp: %s", errmsg);
+       }
+}
+#endif
+
+#if defined BB_CAT || defined BB_HEAD || defined BB_WC
+FILE *wfopen(const char *path, const char *mode)
+{
+       FILE *fp;
+       if ((fp = fopen(path, mode)) == NULL) {
+               perror_msg("%s", path);
+               errno = 0;
+       }
+       return fp;
+}
+#endif
+
+#if defined BB_HOSTNAME || defined BB_LOADACM || defined BB_MORE \
+ || defined BB_SED || defined BB_SH || defined BB_TAR || defined BB_UNIQ \
+ || defined BB_WC || defined BB_CMP || defined BB_SORT || defined BB_WGET \
+ || defined BB_MOUNT || defined BB_ROUTE
+FILE *xfopen(const char *path, const char *mode)
+{
+       FILE *fp;
+       if ((fp = fopen(path, mode)) == NULL)
+               perror_msg_and_die("%s", path);
+       return fp;
+}
+#endif
+
+static int applet_name_compare(const void *x, const void *y)
+{
+       const char *name = x;
+       const struct BB_applet *applet = y;
+
+       return strcmp(name, applet->name);
+}
+
+extern size_t NUM_APPLETS;
+
+struct BB_applet *find_applet_by_name(const char *name)
+{
+       return bsearch(name, applets, NUM_APPLETS, sizeof(struct BB_applet),
+                       applet_name_compare);
+}
+
+void run_applet_by_name(const char *name, int argc, char **argv)
+{
+       /* Do a binary search to find the applet entry given the name. */
+       if ((applet_using = find_applet_by_name(name)) != NULL) {
+               applet_name = applet_using->name;
+               if (argv[1] && strcmp(argv[1], "--help") == 0)
+                       show_usage();
+               exit((*(applet_using->main)) (argc, argv));
+       }
+}
+
+#if defined BB_DD || defined BB_TAIL || defined BB_STTY
+unsigned long parse_number(const char *numstr,
+               const struct suffix_mult *suffixes)
+{
+       const struct suffix_mult *sm;
+       unsigned long int ret;
+       int len;
+       char *end;
+       
+       ret = strtoul(numstr, &end, 10);
+       if (numstr == end)
+               error_msg_and_die("invalid number `%s'", numstr);
+       while (end[0] != '\0') {
+               sm = suffixes;
+               while ( sm != 0 ) {
+                       if(sm->suffix) {
+                               len = strlen(sm->suffix);
+                               if (strncmp(sm->suffix, end, len) == 0) {
+                                       ret *= sm->mult;
+                                       end += len;
+                                       break;
+                               }
+                       sm++;
+                       
+                       } else
+                               sm = 0;
+               }
+               if (sm == 0)
+                       error_msg_and_die("invalid number `%s'", numstr);
+       }
+       return ret;
+}
+#endif
+
+#if defined BB_DD || defined BB_NC || defined BB_TAIL
+ssize_t safe_read(int fd, void *buf, size_t count)
+{
+       ssize_t n;
+
+       do {
+               n = read(fd, buf, count);
+       } while (n < 0 && errno == EINTR);
+
+       return n;
+}
+#endif
+
+#ifdef BB_FEATURE_HUMAN_READABLE
+const char *format(unsigned long val, unsigned long hr)
+{
+       static const char strings[] = { '0', 0, 'k', 0, 'M', 0, 'G', 0 };
+       static const char fmt[] = "%lu";
+       static const char fmt_u[] = "%lu.%lu%s";
+
+       static char str[10];
+
+       unsigned long frac __attribute__ ((unused));    /* 'may be uninitialized' warning is ok */
+       const char *u;
+       const char *f;
+
+#if 1
+       if(val == 0) {                          /* This may be omitted to reduce size */
+               return strings;                 /* at the cost of speed. */
+       }
+#endif
+
+       u = strings;
+       f = fmt;
+       if (hr) {
+               val /= hr;
+       } else {
+               while ((val >= KILOBYTE) && (*u != 'G')) {
+                       f = fmt_u;
+                       u += 2;
+                       frac = (((val % KILOBYTE) * 10) + (KILOBYTE/2)) / KILOBYTE;
+                       val /= KILOBYTE;
+                       if (frac >= 10) {       /* We need to round up here. */
+                               ++val;
+                               frac = 0;
+                       }
+               }
        }
+
+       /* If f==fmt then 'frac' and 'u' are ignored and need not be set. */
+       snprintf(str, sizeof(str), f, val, frac, u);
+
+       return str;
+}
+#endif
+
+#if defined(BB_GREP) || defined(BB_HOSTNAME) || defined(BB_SED) || defined(BB_TAR) || defined(BB_WGET) || defined(BB_XARGS)
+void chomp(char *s)
+{
+       size_t len = strlen(s);
+
+       if (len == 0)
+               return;
+
+       if (s[len-1] == '\n')
+               s[len-1] = '\0';
 }
 #endif