Oops. Forgot the usleep.c file.
[oweals/busybox.git] / utility.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Utility routines.
4  *
5  * Copyright (C) tons of folks.  Tracking down who wrote what
6  * isn't something I'm going to worry about...  If you wrote something
7  * here, please feel free to acknowledge your work.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22  *
23  * Based in part on code from sash, Copyright (c) 1999 by David I. Bell 
24  * Permission has been granted to redistribute this code under the GPL.
25  *
26  */
27
28 #include "internal.h"
29 #if defined (BB_CHMOD_CHOWN_CHGRP) \
30  || defined (BB_CP_MV)             \
31  || defined (BB_FIND)              \
32  || defined (BB_LS)                \
33  || defined (BB_INSMOD)
34 /* same conditions as recursiveAction */
35 #define bb_need_name_too_long
36 #endif
37 #define BB_DECLARE_EXTERN
38 #include "messages.c"
39
40 #include <stdio.h>
41 #include <string.h>
42 #include <errno.h>
43 #include <fcntl.h>
44 #include <dirent.h>
45 #include <time.h>
46 #include <utime.h>
47 #include <sys/stat.h>
48 #include <unistd.h>
49 #include <ctype.h>
50 #include <sys/param.h>                  /* for PATH_MAX */
51 #include <sys/utsname.h>                /* for uname(2) */
52
53 #if defined BB_FEATURE_MOUNT_LOOP
54 #include <fcntl.h>
55 #include <sys/ioctl.h>
56 #include <linux/loop.h>
57 #endif
58
59 /* Busybox mount uses either /proc/filesystems or /dev/mtab to get the 
60  * list of available filesystems used for the -t auto option */ 
61 #if defined BB_FEATURE_USE_PROCFS && defined BB_FEATURE_USE_DEVPS_PATCH
62 //#error Sorry, but busybox can't use both /proc and /dev/ps at the same time -- Pick one and try again.
63 #error "Sorry, but busybox can't use both /proc and /dev/ps at the same time -- Pick one and try again."
64 #endif
65
66
67 #if defined BB_MOUNT || defined BB_UMOUNT || defined BB_DF
68 #  if defined BB_FEATURE_USE_PROCFS
69 const char mtab_file[] = "/proc/mounts";
70 #  else
71 #    if defined BB_MTAB
72 const char mtab_file[] = "/etc/mtab";
73 #    else
74 #      if defined BB_FEATURE_USE_DEVPS_PATCH
75 const char mtab_file[] = "/dev/mtab";
76 #    else
77 #        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)
78 #    endif
79 #  endif
80 #  endif
81 #endif
82
83
84 extern void usage(const char *usage)
85 {
86         fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n\n",
87                         BB_VER, BB_BT);
88         fprintf(stderr, "Usage: %s\n", usage);
89         exit FALSE;
90 }
91
92 extern void errorMsg(const char *s, ...)
93 {
94         va_list p;
95
96         va_start(p, s);
97         fflush(stdout);
98         vfprintf(stderr, s, p);
99         va_end(p);
100         fflush(stderr);
101 }
102
103 extern void fatalError(const char *s, ...)
104 {
105         va_list p;
106
107         va_start(p, s);
108         fflush(stdout);
109         vfprintf(stderr, s, p);
110         va_end(p);
111         fflush(stderr);
112         exit( FALSE);
113 }
114
115 #if defined BB_INIT
116 /* Returns kernel version encoded as major*65536 + minor*256 + patch,
117  * so, for example,  to check if the kernel is greater than 2.2.11:
118  *     if (get_kernel_revision() <= 2*65536+2*256+11) { <stuff> }
119  */
120 extern int get_kernel_revision(void)
121 {
122         struct utsname name;
123         int major = 0, minor = 0, patch = 0;
124
125         if (uname(&name) == -1) {
126                 perror("cannot get system information");
127                 return (0);
128         }
129         sscanf(name.version, "%d.%d.%d", &major, &minor, &patch);
130         return major * 65536 + minor * 256 + patch;
131 }
132 #endif                                                 /* BB_INIT */
133
134 #if defined (BB_CP_MV) || defined (BB_DU)
135
136 #define HASH_SIZE       311             /* Should be prime */
137 #define hash_inode(i)   ((i) % HASH_SIZE)
138
139 static ino_dev_hashtable_bucket_t *ino_dev_hashtable[HASH_SIZE];
140
141 /*
142  * Return 1 if statbuf->st_ino && statbuf->st_dev are recorded in
143  * `ino_dev_hashtable', else return 0
144  *
145  * If NAME is a non-NULL pointer to a character pointer, and there is
146  * a match, then set *NAME to the value of the name slot in that
147  * bucket.
148  */
149 int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name)
150 {
151         ino_dev_hashtable_bucket_t *bucket;
152
153         bucket = ino_dev_hashtable[hash_inode(statbuf->st_ino)];
154         while (bucket != NULL) {
155           if ((bucket->ino == statbuf->st_ino) &&
156                   (bucket->dev == statbuf->st_dev))
157           {
158                 if (name) *name = bucket->name;
159                 return 1;
160           }
161           bucket = bucket->next;
162         }
163         return 0;
164 }
165
166 /* Add statbuf to statbuf hash table */
167 void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name)
168 {
169         int i;
170         size_t s;
171         ino_dev_hashtable_bucket_t *bucket;
172     
173         i = hash_inode(statbuf->st_ino);
174         s = name ? strlen(name) : 0;
175         bucket = xmalloc(sizeof(ino_dev_hashtable_bucket_t) + s);
176         bucket->ino = statbuf->st_ino;
177         bucket->dev = statbuf->st_dev;
178         if (name)
179                 strcpy(bucket->name, name);
180         else
181                 bucket->name[0] = '\0';
182         bucket->next = ino_dev_hashtable[i];
183         ino_dev_hashtable[i] = bucket;
184 }
185
186 /* Clear statbuf hash table */
187 void reset_ino_dev_hashtable(void)
188 {
189         int i;
190         ino_dev_hashtable_bucket_t *bucket;
191
192         for (i = 0; i < HASH_SIZE; i++) {
193                 while (ino_dev_hashtable[i] != NULL) {
194                         bucket = ino_dev_hashtable[i]->next;
195                         free(ino_dev_hashtable[i]);
196                         ino_dev_hashtable[i] = bucket;
197                 }
198         }
199 }
200
201 #endif /* BB_CP_MV || BB_DU */
202
203 #if defined (BB_CP_MV) || defined (BB_DU) || defined (BB_LN)
204 /*
205  * Return TRUE if a fileName is a directory.
206  * Nonexistant files return FALSE.
207  */
208 int isDirectory(const char *fileName, const int followLinks, struct stat *statBuf)
209 {
210         int status;
211         int didMalloc = 0;
212
213         if (statBuf == NULL) {
214             statBuf = (struct stat *)xmalloc(sizeof(struct stat));
215             ++didMalloc;
216         }
217
218         if (followLinks == TRUE)
219                 status = stat(fileName, statBuf);
220         else
221                 status = lstat(fileName, statBuf);
222
223         if (status < 0 || !(S_ISDIR(statBuf->st_mode))) {
224             status = FALSE;
225         }
226         else status = TRUE;
227
228         if (didMalloc) {
229             free(statBuf);
230             statBuf = NULL;
231         }
232         return status;
233 }
234 #endif
235
236 #if defined (BB_CP_MV)
237 /*
238  * Copy one file to another, while possibly preserving its modes, times,
239  * and modes.  Returns TRUE if successful, or FALSE on a failure with an
240  * error message output.  (Failure is not indicated if the attributes cannot
241  * be set.)
242  *  -Erik Andersen
243  */
244 int
245 copyFile(const char *srcName, const char *destName,
246                  int setModes, int followLinks)
247 {
248         int rfd;
249         int wfd;
250         int rcc;
251         int status;
252         char buf[BUF_SIZE];
253         struct stat srcStatBuf;
254         struct stat dstStatBuf;
255         struct utimbuf times;
256
257         if (followLinks == TRUE)
258                 status = stat(srcName, &srcStatBuf);
259         else
260                 status = lstat(srcName, &srcStatBuf);
261
262         if (status < 0) {
263                 perror(srcName);
264                 return FALSE;
265         }
266
267         if (followLinks == TRUE)
268                 status = stat(destName, &dstStatBuf);
269         else
270                 status = lstat(destName, &dstStatBuf);
271
272         if (status < 0) {
273                 dstStatBuf.st_ino = -1;
274                 dstStatBuf.st_dev = -1;
275         }
276
277         if ((srcStatBuf.st_dev == dstStatBuf.st_dev) &&
278                 (srcStatBuf.st_ino == dstStatBuf.st_ino)) {
279                 fprintf(stderr, "Copying file \"%s\" to itself\n", srcName);
280                 return FALSE;
281         }
282
283         if (S_ISDIR(srcStatBuf.st_mode)) {
284                 //fprintf(stderr, "copying directory %s to %s\n", srcName, destName);
285                 /* Make sure the directory is writable */
286                 status = mkdir(destName, 0777777 ^ umask(0));
287                 if (status < 0 && errno != EEXIST) {
288                         perror(destName);
289                         return FALSE;
290                 }
291         } else if (S_ISLNK(srcStatBuf.st_mode)) {
292                 char link_val[PATH_MAX + 1];
293                 int link_size;
294
295                 //fprintf(stderr, "copying link %s to %s\n", srcName, destName);
296                 /* Warning: This could possibly truncate silently, to PATH_MAX chars */
297                 link_size = readlink(srcName, &link_val[0], PATH_MAX);
298                 if (link_size < 0) {
299                         perror(srcName);
300                         return FALSE;
301                 }
302                 link_val[link_size] = '\0';
303                 status = symlink(link_val, destName);
304                 if (status < 0) {
305                         perror(destName);
306                         return FALSE;
307                 }
308 #if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
309                 if (setModes == TRUE) {
310                         if (lchown(destName, srcStatBuf.st_uid, srcStatBuf.st_gid) < 0) {
311                                 perror(destName);
312                                 return FALSE;
313                         }
314                 }
315 #endif
316                 return TRUE;
317         } else if (S_ISFIFO(srcStatBuf.st_mode)) {
318                 //fprintf(stderr, "copying fifo %s to %s\n", srcName, destName);
319                 if (mkfifo(destName, 0644) < 0) {
320                         perror(destName);
321                         return FALSE;
322                 }
323         } else if (S_ISBLK(srcStatBuf.st_mode) || S_ISCHR(srcStatBuf.st_mode)
324                            || S_ISSOCK(srcStatBuf.st_mode)) {
325                 //fprintf(stderr, "copying soc, blk, or chr %s to %s\n", srcName, destName);
326                 if (mknod(destName, srcStatBuf.st_mode, srcStatBuf.st_rdev) < 0) {
327                         perror(destName);
328                         return FALSE;
329                 }
330         } else if (S_ISREG(srcStatBuf.st_mode)) {
331                 //fprintf(stderr, "copying regular file %s to %s\n", srcName, destName);
332                 rfd = open(srcName, O_RDONLY);
333                 if (rfd < 0) {
334                         perror(srcName);
335                         return FALSE;
336                 }
337
338                 wfd =
339                         open(destName, O_WRONLY | O_CREAT | O_TRUNC,
340                                  srcStatBuf.st_mode);
341                 if (wfd < 0) {
342                         perror(destName);
343                         close(rfd);
344                         return FALSE;
345                 }
346
347                 while ((rcc = read(rfd, buf, sizeof(buf))) > 0) {
348                         if (fullWrite(wfd, buf, rcc) < 0)
349                                 goto error_exit;
350                 }
351                 if (rcc < 0) {
352                         goto error_exit;
353                 }
354
355                 close(rfd);
356                 if (close(wfd) < 0) {
357                         return FALSE;
358                 }
359         }
360
361         if (setModes == TRUE) {
362                 /* This is fine, since symlinks never get here */
363                 if (chown(destName, srcStatBuf.st_uid, srcStatBuf.st_gid) < 0) {
364                         perror(destName);
365                         exit FALSE;
366                 }
367                 if (chmod(destName, srcStatBuf.st_mode) < 0) {
368                         perror(destName);
369                         exit FALSE;
370                 }
371                 times.actime = srcStatBuf.st_atime;
372                 times.modtime = srcStatBuf.st_mtime;
373                 if (utime(destName, &times) < 0) {
374                         perror(destName);
375                         exit FALSE;
376                 }
377         }
378
379         return TRUE;
380
381   error_exit:
382         perror(destName);
383         close(rfd);
384         close(wfd);
385
386         return FALSE;
387 }
388 #endif                                                  /* BB_CP_MV */
389
390
391
392 #if defined BB_TAR || defined BB_LS
393
394 #define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
395 #define TYPECHAR(mode)  ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
396
397 /* The special bits. If set, display SMODE0/1 instead of MODE0/1 */
398 static const mode_t SBIT[] = {
399         0, 0, S_ISUID,
400         0, 0, S_ISGID,
401         0, 0, S_ISVTX
402 };
403
404 /* The 9 mode bits to test */
405 static const mode_t MBIT[] = {
406         S_IRUSR, S_IWUSR, S_IXUSR,
407         S_IRGRP, S_IWGRP, S_IXGRP,
408         S_IROTH, S_IWOTH, S_IXOTH
409 };
410
411 #define MODE1  "rwxrwxrwx"
412 #define MODE0  "---------"
413 #define SMODE1 "..s..s..t"
414 #define SMODE0 "..S..S..T"
415
416 /*
417  * Return the standard ls-like mode string from a file mode.
418  * This is static and so is overwritten on each call.
419  */
420 const char *modeString(int mode)
421 {
422         static char buf[12];
423
424         int i;
425
426         buf[0] = TYPECHAR(mode);
427         for (i = 0; i < 9; i++) {
428                 if (mode & SBIT[i])
429                         buf[i + 1] = (mode & MBIT[i]) ? SMODE1[i] : SMODE0[i];
430                 else
431                         buf[i + 1] = (mode & MBIT[i]) ? MODE1[i] : MODE0[i];
432         }
433         return buf;
434 }
435 #endif                                                  /* BB_TAR || BB_LS */
436
437
438 #if defined BB_TAR
439 /*
440  * Return the standard ls-like time string from a time_t
441  * This is static and so is overwritten on each call.
442  */
443 const char *timeString(time_t timeVal)
444 {
445         time_t now;
446         char *str;
447         static char buf[26];
448
449         time(&now);
450
451         str = ctime(&timeVal);
452
453         strcpy(buf, &str[4]);
454         buf[12] = '\0';
455
456         if ((timeVal > now) || (timeVal < now - 365 * 24 * 60 * 60L)) {
457                 strcpy(&buf[7], &str[20]);
458                 buf[11] = '\0';
459         }
460
461         return buf;
462 }
463 #endif                                                  /* BB_TAR */
464
465 #if defined BB_TAR || defined BB_CP_MV
466 /*
467  * Write all of the supplied buffer out to a file.
468  * This does multiple writes as necessary.
469  * Returns the amount written, or -1 on an error.
470  */
471 int fullWrite(int fd, const char *buf, int len)
472 {
473         int cc;
474         int total;
475
476         total = 0;
477
478         while (len > 0) {
479                 cc = write(fd, buf, len);
480
481                 if (cc < 0)
482                         return -1;
483
484                 buf += cc;
485                 total += cc;
486                 len -= cc;
487         }
488
489         return total;
490 }
491 #endif                                                  /* BB_TAR || BB_CP_MV */
492
493
494 #if defined BB_TAR || defined BB_TAIL
495 /*
496  * Read all of the supplied buffer from a file.
497  * This does multiple reads as necessary.
498  * Returns the amount read, or -1 on an error.
499  * A short read is returned on an end of file.
500  */
501 int fullRead(int fd, char *buf, int len)
502 {
503         int cc;
504         int total;
505
506         total = 0;
507
508         while (len > 0) {
509                 cc = read(fd, buf, len);
510
511                 if (cc < 0)
512                         return -1;
513
514                 if (cc == 0)
515                         break;
516
517                 buf += cc;
518                 total += cc;
519                 len -= cc;
520         }
521
522         return total;
523 }
524 #endif                                                  /* BB_TAR || BB_TAIL */
525
526
527 #if defined (BB_CHMOD_CHOWN_CHGRP) \
528  || defined (BB_CP_MV)             \
529  || defined (BB_FIND)              \
530  || defined (BB_LS)                \
531  || defined (BB_INSMOD)
532 /*
533  * Walk down all the directories under the specified 
534  * location, and do something (something specified
535  * by the fileAction and dirAction function pointers).
536  *
537  * Unfortunatly, while nftw(3) could replace this and reduce 
538  * code size a bit, nftw() wasn't supported before GNU libc 2.1, 
539  * and so isn't sufficiently portable to take over since glibc2.1
540  * is so stinking huge.
541  */
542 int recursiveAction(const char *fileName,
543                                         int recurse, int followLinks, int depthFirst,
544                                         int (*fileAction) (const char *fileName,
545                                                                            struct stat * statbuf,
546                                                                            void* userData),
547                                         int (*dirAction) (const char *fileName,
548                                                                           struct stat * statbuf,
549                                                                           void* userData),
550                                         void* userData)
551 {
552         int status;
553         struct stat statbuf;
554         struct dirent *next;
555
556         if (followLinks == TRUE)
557                 status = stat(fileName, &statbuf);
558         else
559                 status = lstat(fileName, &statbuf);
560
561         if (status < 0) {
562 #ifdef BB_DEBUG_PRINT_SCAFFOLD
563                 fprintf(stderr,
564                                 "status=%d followLinks=%d TRUE=%d\n",
565                                 status, followLinks, TRUE);
566 #endif
567                 perror(fileName);
568                 return FALSE;
569         }
570
571         if ((followLinks == FALSE) && (S_ISLNK(statbuf.st_mode))) {
572                 if (fileAction == NULL)
573                         return TRUE;
574                 else
575                         return fileAction(fileName, &statbuf, userData);
576         }
577
578         if (recurse == FALSE) {
579                 if (S_ISDIR(statbuf.st_mode)) {
580                         if (dirAction != NULL)
581                                 return (dirAction(fileName, &statbuf, userData));
582                         else
583                                 return TRUE;
584                 }
585         }
586
587         if (S_ISDIR(statbuf.st_mode)) {
588                 DIR *dir;
589
590                 dir = opendir(fileName);
591                 if (!dir) {
592                         perror(fileName);
593                         return FALSE;
594                 }
595                 if (dirAction != NULL && depthFirst == FALSE) {
596                         status = dirAction(fileName, &statbuf, userData);
597                         if (status == FALSE) {
598                                 perror(fileName);
599                                 return FALSE;
600                         }
601                 }
602                 while ((next = readdir(dir)) != NULL) {
603                         char nextFile[PATH_MAX + 1];
604
605                         if ((strcmp(next->d_name, "..") == 0)
606                                 || (strcmp(next->d_name, ".") == 0)) {
607                                 continue;
608                         }
609                         if (strlen(fileName) + strlen(next->d_name) + 1 > PATH_MAX) {
610                                 fprintf(stderr, name_too_long, "ftw");
611                                 return FALSE;
612                         }
613                         sprintf(nextFile, "%s/%s", fileName, next->d_name);
614                         status =
615                                 recursiveAction(nextFile, TRUE, followLinks, depthFirst,
616                                                                 fileAction, dirAction, userData);
617                         if (status < 0) {
618                                 closedir(dir);
619                                 return FALSE;
620                         }
621                 }
622                 status = closedir(dir);
623                 if (status < 0) {
624                         perror(fileName);
625                         return FALSE;
626                 }
627                 if (dirAction != NULL && depthFirst == TRUE) {
628                         status = dirAction(fileName, &statbuf, userData);
629                         if (status == FALSE) {
630                                 perror(fileName);
631                                 return FALSE;
632                         }
633                 }
634         } else {
635                 if (fileAction == NULL)
636                         return TRUE;
637                 else
638                         return fileAction(fileName, &statbuf, userData);
639         }
640         return TRUE;
641 }
642
643 #endif                                                  /* BB_CHMOD_CHOWN_CHGRP || BB_CP_MV || BB_FIND || BB_LS || BB_INSMOD */
644
645
646
647 #if defined (BB_TAR) || defined (BB_MKDIR)
648 /*
649  * Attempt to create the directories along the specified path, except for
650  * the final component.  The mode is given for the final directory only,
651  * while all previous ones get default protections.  Errors are not reported
652  * here, as failures to restore files can be reported later.
653  */
654 extern int createPath(const char *name, int mode)
655 {
656         char *cp;
657         char *cpOld;
658         char buf[PATH_MAX + 1];
659         int retVal = 0;
660
661         strcpy(buf, name);
662         for (cp = buf; *cp == '/'; cp++);
663         cp = strchr(cp, '/');
664         while (cp) {
665                 cpOld = cp;
666                 cp = strchr(cp + 1, '/');
667                 *cpOld = '\0';
668                 retVal = mkdir(buf, cp ? 0777 : mode);
669                 if (retVal != 0 && errno != EEXIST) {
670                         perror(buf);
671                         return FALSE;
672                 }
673                 *cpOld = '/';
674         }
675         return TRUE;
676 }
677 #endif                                                  /* BB_TAR || BB_MKDIR */
678
679
680
681 #if defined (BB_CHMOD_CHOWN_CHGRP) || defined (BB_MKDIR)
682 /* [ugoa]{+|-|=}[rwxst] */
683
684
685
686 extern int parse_mode(const char *s, mode_t * theMode)
687 {
688         mode_t andMode =
689
690                 S_ISVTX | S_ISUID | S_ISGID | S_IRWXU | S_IRWXG | S_IRWXO;
691         mode_t orMode = 0;
692         mode_t mode = 0;
693         mode_t groups = 0;
694         char type;
695         char c;
696
697         do {
698                 for (;;) {
699                         switch (c = *s++) {
700                         case '\0':
701                                 return -1;
702                         case 'u':
703                                 groups |= S_ISUID | S_IRWXU;
704                                 continue;
705                         case 'g':
706                                 groups |= S_ISGID | S_IRWXG;
707                                 continue;
708                         case 'o':
709                                 groups |= S_IRWXO;
710                                 continue;
711                         case 'a':
712                                 groups |= S_ISUID | S_ISGID | S_IRWXU | S_IRWXG | S_IRWXO;
713                                 continue;
714                         case '+':
715                         case '=':
716                         case '-':
717                                 type = c;
718                                 if (groups == 0)        /* The default is "all" */
719                                         groups |=
720                                                 S_ISUID | S_ISGID | S_IRWXU | S_IRWXG | S_IRWXO;
721                                 break;
722                         default:
723                                 if (isdigit(c) && c >= '0' && c <= '7' &&
724                                         mode == 0 && groups == 0) {
725                                         *theMode = strtol(--s, NULL, 8);
726                                         return (TRUE);
727                                 } else
728                                         return (FALSE);
729                         }
730                         break;
731                 }
732
733                 while ((c = *s++) != '\0') {
734                         switch (c) {
735                         case ',':
736                                 break;
737                         case 'r':
738                                 mode |= S_IRUSR | S_IRGRP | S_IROTH;
739                                 continue;
740                         case 'w':
741                                 mode |= S_IWUSR | S_IWGRP | S_IWOTH;
742                                 continue;
743                         case 'x':
744                                 mode |= S_IXUSR | S_IXGRP | S_IXOTH;
745                                 continue;
746                         case 's':
747                                 mode |= S_IXGRP | S_ISUID | S_ISGID;
748                                 continue;
749                         case 't':
750                                 mode |= 0;
751                                 continue;
752                         default:
753                                 *theMode &= andMode;
754                                 *theMode |= orMode;
755                                 return (TRUE);
756                         }
757                         break;
758                 }
759                 switch (type) {
760                 case '=':
761                         andMode &= ~(groups);
762                         /* fall through */
763                 case '+':
764                         orMode |= mode & groups;
765                         break;
766                 case '-':
767                         andMode &= ~(mode & groups);
768                         orMode &= andMode;
769                         break;
770                 }
771         } while (c == ',');
772         *theMode &= andMode;
773         *theMode |= orMode;
774         return (TRUE);
775 }
776
777
778 #endif                                                  /* BB_CHMOD_CHOWN_CHGRP || BB_MKDIR */
779
780
781
782
783
784
785
786 #if defined (BB_CHMOD_CHOWN_CHGRP) || defined (BB_PS)
787
788 /* Use this to avoid needing the glibc NSS stuff 
789  * This uses storage buf to hold things.
790  * */
791 uid_t my_getid(const char *filename, char *name, uid_t id)
792 {
793         FILE *file;
794         char *rname, *start, *end, buf[128];
795         uid_t rid;
796
797         file = fopen(filename, "r");
798         if (file == NULL) {
799                 perror(filename);
800                 return (-1);
801         }
802
803         while (fgets(buf, 128, file) != NULL) {
804                 if (buf[0] == '#')
805                         continue;
806
807                 start = buf;
808                 end = strchr(start, ':');
809                 if (end == NULL)
810                         continue;
811                 *end = '\0';
812                 rname = start;
813
814                 start = end + 1;
815                 end = strchr(start, ':');
816                 if (end == NULL)
817                         continue;
818
819                 start = end + 1;
820                 rid = (uid_t) strtol(start, &end, 10);
821                 if (end == start)
822                         continue;
823
824                 if (name) {
825                         if (0 == strcmp(rname, name)) {
826                                 fclose(file);
827                                 return (rid);
828                         }
829                 }
830                 if (id != -1 && id == rid) {
831                         strncpy(name, rname, 8);
832                         fclose(file);
833                         return (TRUE);
834                 }
835         }
836         fclose(file);
837         return (-1);
838 }
839
840 uid_t my_getpwnam(char *name)
841 {
842         return my_getid("/etc/passwd", name, -1);
843 }
844
845 gid_t my_getgrnam(char *name)
846 {
847         return my_getid("/etc/group", name, -1);
848 }
849
850 void my_getpwuid(char *name, uid_t uid)
851 {
852         my_getid("/etc/passwd", name, uid);
853 }
854
855 void my_getgrgid(char *group, gid_t gid)
856 {
857         my_getid("/etc/group", group, gid);
858 }
859
860
861 #endif                                                  /* BB_CHMOD_CHOWN_CHGRP || BB_PS */
862
863
864
865
866 #if (defined BB_CHVT) || (defined BB_DEALLOCVT)
867
868
869 #include <linux/kd.h>
870 #include <sys/ioctl.h>
871
872 int is_a_console(int fd)
873 {
874         char arg;
875
876         arg = 0;
877         return (ioctl(fd, KDGKBTYPE, &arg) == 0
878                         && ((arg == KB_101) || (arg == KB_84)));
879 }
880
881 static int open_a_console(char *fnam)
882 {
883         int fd;
884
885         /* try read-only */
886         fd = open(fnam, O_RDWR);
887
888         /* if failed, try read-only */
889         if (fd < 0 && errno == EACCES)
890                 fd = open(fnam, O_RDONLY);
891
892         /* if failed, try write-only */
893         if (fd < 0 && errno == EACCES)
894                 fd = open(fnam, O_WRONLY);
895
896         /* if failed, fail */
897         if (fd < 0)
898                 return -1;
899
900         /* if not a console, fail */
901         if (!is_a_console(fd)) {
902                 close(fd);
903                 return -1;
904         }
905
906         /* success */
907         return fd;
908 }
909
910 /*
911  * Get an fd for use with kbd/console ioctls.
912  * We try several things because opening /dev/console will fail
913  * if someone else used X (which does a chown on /dev/console).
914  *
915  * if tty_name is non-NULL, try this one instead.
916  */
917
918 int get_console_fd(char *tty_name)
919 {
920         int fd;
921
922         if (tty_name) {
923                 if (-1 == (fd = open_a_console(tty_name)))
924                         return -1;
925                 else
926                         return fd;
927         }
928
929         fd = open_a_console("/dev/tty");
930         if (fd >= 0)
931                 return fd;
932
933         fd = open_a_console("/dev/tty0");
934         if (fd >= 0)
935                 return fd;
936
937         fd = open_a_console("/dev/console");
938         if (fd >= 0)
939                 return fd;
940
941         for (fd = 0; fd < 3; fd++)
942                 if (is_a_console(fd))
943                         return fd;
944
945         fprintf(stderr,
946                         "Couldnt get a file descriptor referring to the console\n");
947         return -1;                                      /* total failure */
948 }
949
950
951 #endif                                                  /* BB_CHVT || BB_DEALLOCVT */
952
953
954 #if !defined BB_REGEXP && (defined BB_GREP || defined BB_SED)
955
956 /* Do a case insensitive strstr() */
957 char *stristr(char *haystack, const char *needle)
958 {
959         int len = strlen(needle);
960
961         while (*haystack) {
962                 if (!strncasecmp(haystack, needle, len))
963                         break;
964                 haystack++;
965         }
966
967         if (!(*haystack))
968                 haystack = NULL;
969
970         return haystack;
971 }
972
973 /* This tries to find a needle in a haystack, but does so by
974  * only trying to match literal strings (look 'ma, no regexps!)
975  * This is short, sweet, and carries _very_ little baggage,
976  * unlike its beefier cousin in regexp.c
977  *  -Erik Andersen
978  */
979 extern int find_match(char *haystack, char *needle, int ignoreCase)
980 {
981
982         if (ignoreCase == FALSE)
983                 haystack = strstr(haystack, needle);
984         else
985                 haystack = stristr(haystack, needle);
986         if (haystack == NULL)
987                 return FALSE;
988         return TRUE;
989 }
990
991
992 /* This performs substitutions after a string match has been found.  */
993 extern int replace_match(char *haystack, char *needle, char *newNeedle,
994                                                  int ignoreCase)
995 {
996         int foundOne = 0;
997         char *where, *slider, *slider1, *oldhayStack;
998
999         if (ignoreCase == FALSE)
1000                 where = strstr(haystack, needle);
1001         else
1002                 where = stristr(haystack, needle);
1003
1004         if (strcmp(needle, newNeedle) == 0)
1005                 return FALSE;
1006
1007         oldhayStack = (char *) xmalloc((unsigned) (strlen(haystack)));
1008         while (where != NULL) {
1009                 foundOne++;
1010                 strcpy(oldhayStack, haystack);
1011 #if 0
1012                 if (strlen(newNeedle) > strlen(needle)) {
1013                         haystack =
1014                                 (char *) realloc(haystack,
1015                                                                  (unsigned) (strlen(haystack) -
1016                                                                                          strlen(needle) +
1017                                                                                          strlen(newNeedle)));
1018                 }
1019 #endif
1020                 for (slider = haystack, slider1 = oldhayStack; slider != where;
1021                          slider++, slider1++);
1022                 *slider = 0;
1023                 haystack = strcat(haystack, newNeedle);
1024                 slider1 += strlen(needle);
1025                 haystack = strcat(haystack, slider1);
1026                 where = strstr(slider, needle);
1027         }
1028         free(oldhayStack);
1029
1030         if (foundOne > 0)
1031                 return TRUE;
1032         else
1033                 return FALSE;
1034 }
1035
1036 #endif                                                  /* ! BB_REGEXP && (BB_GREP || BB_SED) */
1037
1038
1039 #if defined BB_FIND
1040 /*
1041  * Routine to see if a text string is matched by a wildcard pattern.
1042  * Returns TRUE if the text is matched, or FALSE if it is not matched
1043  * or if the pattern is invalid.
1044  *  *           matches zero or more characters
1045  *  ?           matches a single character
1046  *  [abc]       matches 'a', 'b' or 'c'
1047  *  \c          quotes character c
1048  * Adapted from code written by Ingo Wilken, and
1049  * then taken from sash, Copyright (c) 1999 by David I. Bell
1050  * Permission is granted to use, distribute, or modify this source,
1051  * provided that this copyright notice remains intact.
1052  * Permission to distribute this code under the GPL has been granted.
1053  */
1054 extern int check_wildcard_match(const char *text, const char *pattern)
1055 {
1056         const char *retryPat;
1057         const char *retryText;
1058         int ch;
1059         int found;
1060
1061         retryPat = NULL;
1062         retryText = NULL;
1063
1064         while (*text || *pattern) {
1065                 ch = *pattern++;
1066
1067                 switch (ch) {
1068                 case '*':
1069                         retryPat = pattern;
1070                         retryText = text;
1071                         break;
1072
1073                 case '[':
1074                         found = FALSE;
1075
1076                         while ((ch = *pattern++) != ']') {
1077                                 if (ch == '\\')
1078                                         ch = *pattern++;
1079
1080                                 if (ch == '\0')
1081                                         return FALSE;
1082
1083                                 if (*text == ch)
1084                                         found = TRUE;
1085                         }
1086
1087                         //if (!found)
1088                         if (found == TRUE) {
1089                                 pattern = retryPat;
1090                                 text = ++retryText;
1091                         }
1092
1093                         /* fall into next case */
1094
1095                 case '?':
1096                         if (*text++ == '\0')
1097                                 return FALSE;
1098
1099                         break;
1100
1101                 case '\\':
1102                         ch = *pattern++;
1103
1104                         if (ch == '\0')
1105                                 return FALSE;
1106
1107                         /* fall into next case */
1108
1109                 default:
1110                         if (*text == ch) {
1111                                 if (*text)
1112                                         text++;
1113                                 break;
1114                         }
1115
1116                         if (*text) {
1117                                 pattern = retryPat;
1118                                 text = ++retryText;
1119                                 break;
1120                         }
1121
1122                         return FALSE;
1123                 }
1124
1125                 if (pattern == NULL)
1126                         return FALSE;
1127         }
1128
1129         return TRUE;
1130 }
1131 #endif                                                  /* BB_FIND */
1132
1133
1134
1135
1136 #if defined BB_DF || defined BB_MTAB
1137 /*
1138  * Given a block device, find the mount table entry if that block device
1139  * is mounted.
1140  *
1141  * Given any other file (or directory), find the mount table entry for its
1142  * filesystem.
1143  */
1144 extern struct mntent *findMountPoint(const char *name, const char *table)
1145 {
1146         struct stat s;
1147         dev_t mountDevice;
1148         FILE *mountTable;
1149         struct mntent *mountEntry;
1150
1151         if (stat(name, &s) != 0)
1152                 return 0;
1153
1154         if ((s.st_mode & S_IFMT) == S_IFBLK)
1155                 mountDevice = s.st_rdev;
1156         else
1157                 mountDevice = s.st_dev;
1158
1159
1160         if ((mountTable = setmntent(table, "r")) == 0)
1161                 return 0;
1162
1163         while ((mountEntry = getmntent(mountTable)) != 0) {
1164                 if (strcmp(name, mountEntry->mnt_dir) == 0
1165                         || strcmp(name, mountEntry->mnt_fsname) == 0)   /* String match. */
1166                         break;
1167                 if (stat(mountEntry->mnt_fsname, &s) == 0 && s.st_rdev == mountDevice)  /* Match the device. */
1168                         break;
1169                 if (stat(mountEntry->mnt_dir, &s) == 0 && s.st_dev == mountDevice)      /* Match the directory's mount point. */
1170                         break;
1171         }
1172         endmntent(mountTable);
1173         return mountEntry;
1174 }
1175 #endif                                                  /* BB_DF || BB_MTAB */
1176
1177
1178
1179 #if defined BB_DD || defined BB_TAIL
1180 /*
1181  * Read a number with a possible multiplier.
1182  * Returns -1 if the number format is illegal.
1183  */
1184 extern long getNum(const char *cp)
1185 {
1186         long value;
1187
1188         if (!isDecimal(*cp))
1189                 return -1;
1190
1191         value = 0;
1192
1193         while (isDecimal(*cp))
1194                 value = value * 10 + *cp++ - '0';
1195
1196         switch (*cp++) {
1197         case 'M':
1198         case 'm':                                       /* `tail' uses it traditionally */
1199                 value *= 1048576;
1200                 break;
1201
1202         case 'k':
1203                 value *= 1024;
1204                 break;
1205
1206         case 'b':
1207                 value *= 512;
1208                 break;
1209
1210         case 'w':
1211                 value *= 2;
1212                 break;
1213
1214         case '\0':
1215                 return value;
1216
1217         default:
1218                 return -1;
1219         }
1220
1221         if (*cp)
1222                 return -1;
1223
1224         return value;
1225 }
1226 #endif                                                  /* BB_DD || BB_TAIL */
1227
1228
1229 #if defined BB_INIT || defined BB_SYSLOGD
1230 /* try to open up the specified device */
1231 extern int device_open(char *device, int mode)
1232 {
1233         int m, f, fd = -1;
1234
1235         m = mode | O_NONBLOCK;
1236
1237         /* Retry up to 5 times */
1238         for (f = 0; f < 5; f++)
1239                 if ((fd = open(device, m, 0600)) >= 0)
1240                         break;
1241         if (fd < 0)
1242                 return fd;
1243         /* Reset original flags. */
1244         if (m != mode)
1245                 fcntl(fd, F_SETFL, mode);
1246         return fd;
1247 }
1248 #endif                                                  /* BB_INIT BB_SYSLOGD */
1249
1250
1251 #if defined BB_KILLALL || ( defined BB_FEATURE_LINUXRC && ( defined BB_HALT || defined BB_REBOOT || defined BB_POWEROFF ))
1252 #ifdef BB_FEATURE_USE_DEVPS_PATCH
1253 #include <linux/devps.h>
1254 #endif
1255
1256 #if defined BB_FEATURE_USE_DEVPS_PATCH
1257 /* findPidByName()
1258  *  
1259  *  This finds the pid of the specified process,
1260  *  by using the /dev/ps device driver.
1261  *
1262  *  [return]
1263  *  0       failure
1264  *  pid     when the pid is found.
1265  */
1266 extern pid_t findPidByName( char* pidName)
1267 {
1268         int fd, i;
1269         char device[] = "/dev/ps";
1270         pid_t thePid = 0;
1271         pid_t num_pids;
1272         pid_t* pid_array = NULL;
1273
1274         /* open device */ 
1275         fd = open(device, O_RDONLY);
1276         if (fd < 0)
1277                 fatalError( "open failed for `%s': %s\n", device, strerror (errno));
1278
1279         /* Find out how many processes there are */
1280         if (ioctl (fd, DEVPS_GET_NUM_PIDS, &num_pids)<0) 
1281                 fatalError( "\nDEVPS_GET_PID_LIST: %s\n", strerror (errno));
1282         
1283         /* Allocate some memory -- grab a few extras just in case 
1284          * some new processes start up while we wait. The kernel will
1285          * just ignore any extras if we give it too many, and will trunc.
1286          * the list if we give it too few.  */
1287         pid_array = (pid_t*) calloc( num_pids+10, sizeof(pid_t));
1288         pid_array[0] = num_pids+10;
1289
1290         /* Now grab the pid list */
1291         if (ioctl (fd, DEVPS_GET_PID_LIST, pid_array)<0) 
1292                 fatalError( "\nDEVPS_GET_PID_LIST: %s\n", strerror (errno));
1293
1294         /* Now search for a match */
1295         for (i=1; i<pid_array[0] ; i++) {
1296                 struct pid_info info;
1297
1298             info.pid = pid_array[i];
1299             if (ioctl (fd, DEVPS_GET_PID_INFO, &info)<0)
1300                         fatalError( "\nDEVPS_GET_PID_INFO: %s\n", strerror (errno));
1301
1302                 if ((strstr(info.command_line, pidName) != NULL)) {
1303                         thePid = info.pid;
1304                         break;
1305                 }
1306         }
1307
1308         /* Free memory */
1309         free( pid_array);
1310
1311         /* close device */
1312         if (close (fd) != 0) 
1313                 fatalError( "close failed for `%s': %s\n",device, strerror (errno));
1314
1315         return thePid;
1316 }
1317 #else           /* BB_FEATURE_USE_DEVPS_PATCH */
1318 #if ! defined BB_FEATURE_USE_PROCFS
1319 #error Sorry, I depend on the /proc filesystem right now.
1320 #endif
1321
1322 /* findPidByName()
1323  *  
1324  *  This finds the pid of the specified process.
1325  *  Currently, it's implemented by rummaging through 
1326  *  the proc filesystem.
1327  *
1328  *  [return]
1329  *  0       failure
1330  *  pid     when the pid is found.
1331  */
1332 extern pid_t findPidByName( char* pidName)
1333 {
1334         DIR *dir;
1335         struct dirent *next;
1336
1337         dir = opendir("/proc");
1338         if (!dir)
1339                 fatalError( "Cannot open /proc: %s\n", strerror (errno));
1340         
1341         while ((next = readdir(dir)) != NULL) {
1342                 FILE *status;
1343                 char filename[256];
1344                 char buffer[256];
1345
1346                 /* If it isn't a number, we don't want it */
1347                 if (!isdigit(*next->d_name))
1348                         continue;
1349
1350                 /* Now open the command line file */
1351                 sprintf(filename, "/proc/%s/status", next->d_name);
1352                 status = fopen(filename, "r");
1353                 if (!status) {
1354                         continue;
1355                 }
1356                 fgets(buffer, 256, status);
1357                 fclose(status);
1358
1359                 if ((strstr(buffer, pidName) != NULL)) {
1360                         return strtol(next->d_name, NULL, 0);
1361                 }
1362         }
1363         return 0;
1364 }
1365 #endif                                                  /* BB_FEATURE_USE_DEVPS_PATCH */
1366 #endif                                                  /* BB_KILLALL || ( BB_FEATURE_LINUXRC && ( BB_HALT || BB_REBOOT || BB_POWEROFF )) */
1367
1368 /* this should really be farmed out to libbusybox.a */
1369 extern void *xmalloc(size_t size)
1370 {
1371         void *cp = malloc(size);
1372
1373         if (cp == NULL)
1374                 fatalError("out of memory");
1375         return cp;
1376 }
1377
1378 #if (__GLIBC__ < 2) && (defined BB_SYSLOGD || defined BB_INIT)
1379 extern int vdprintf(int d, const char *format, va_list ap)
1380 {
1381         char buf[BUF_SIZE];
1382         int len;
1383
1384         len = vsprintf(buf, format, ap);
1385         return write(d, buf, len);
1386 }
1387 #endif                                                  /* BB_SYSLOGD */
1388
1389 #if defined BB_FEATURE_MOUNT_LOOP
1390 extern int del_loop(const char *device)
1391 {
1392         int fd;
1393
1394         if ((fd = open(device, O_RDONLY)) < 0) {
1395                 perror(device);
1396                 return (FALSE);
1397         }
1398         if (ioctl(fd, LOOP_CLR_FD, 0) < 0) {
1399                 perror("ioctl: LOOP_CLR_FD");
1400                 return (FALSE);
1401         }
1402         close(fd);
1403         return (TRUE);
1404 }
1405
1406 extern int set_loop(const char *device, const char *file, int offset,
1407                                         int *loopro)
1408 {
1409         struct loop_info loopinfo;
1410         int fd, ffd, mode;
1411
1412         mode = *loopro ? O_RDONLY : O_RDWR;
1413         if ((ffd = open(file, mode)) < 0 && !*loopro
1414                 && (errno != EROFS || (ffd = open(file, mode = O_RDONLY)) < 0)) {
1415                 perror(file);
1416                 return 1;
1417         }
1418         if ((fd = open(device, mode)) < 0) {
1419                 close(ffd);
1420                 perror(device);
1421                 return 1;
1422         }
1423         *loopro = (mode == O_RDONLY);
1424
1425         memset(&loopinfo, 0, sizeof(loopinfo));
1426         strncpy(loopinfo.lo_name, file, LO_NAME_SIZE);
1427         loopinfo.lo_name[LO_NAME_SIZE - 1] = 0;
1428
1429         loopinfo.lo_offset = offset;
1430
1431         loopinfo.lo_encrypt_key_size = 0;
1432         if (ioctl(fd, LOOP_SET_FD, ffd) < 0) {
1433                 perror("ioctl: LOOP_SET_FD");
1434                 close(fd);
1435                 close(ffd);
1436                 return 1;
1437         }
1438         if (ioctl(fd, LOOP_SET_STATUS, &loopinfo) < 0) {
1439                 (void) ioctl(fd, LOOP_CLR_FD, 0);
1440                 perror("ioctl: LOOP_SET_STATUS");
1441                 close(fd);
1442                 close(ffd);
1443                 return 1;
1444         }
1445         close(fd);
1446         close(ffd);
1447         return 0;
1448 }
1449
1450 extern char *find_unused_loop_device(void)
1451 {
1452         char dev[20];
1453         int i, fd;
1454         struct stat statbuf;
1455         struct loop_info loopinfo;
1456
1457         for (i = 0; i <= 7; i++) {
1458                 sprintf(dev, "/dev/loop%d", i);
1459                 if (stat(dev, &statbuf) == 0 && S_ISBLK(statbuf.st_mode)) {
1460                         if ((fd = open(dev, O_RDONLY)) >= 0) {
1461                                 if (ioctl(fd, LOOP_GET_STATUS, &loopinfo) == -1) {
1462                                         if (errno == ENXIO) {   /* probably free */
1463                                                 close(fd);
1464                                                 return strdup(dev);
1465                                         }
1466                                 }
1467                                 close(fd);
1468                         }
1469                 }
1470         }
1471         return NULL;
1472 }
1473 #endif                                                  /* BB_FEATURE_MOUNT_LOOP */
1474
1475 #if defined BB_MOUNT || defined BB_DF
1476 extern int find_real_root_device_name(char* name)
1477 {
1478         DIR *dir;
1479         struct dirent *entry;
1480         struct stat statBuf, rootStat;
1481         char fileName[BUFSIZ];
1482
1483         if (stat("/", &rootStat) != 0) {
1484                 errorMsg("could not stat '/'\n");
1485                 return( FALSE);
1486         }
1487
1488         dir = opendir("/dev");
1489         if (!dir) {
1490                 errorMsg("could not open '/dev'\n");
1491                 return( FALSE);
1492         }
1493
1494         while((entry = readdir(dir)) != NULL) {
1495
1496                 /* Must skip ".." since that is "/", and so we 
1497                  * would get a false positive on ".."  */
1498                 if (strcmp(entry->d_name, "..") == 0)
1499                         continue;
1500
1501                 sprintf( fileName, "/dev/%s", entry->d_name);
1502
1503                 if (stat(fileName, &statBuf) != 0)
1504                         continue;
1505                 /* Some char devices have the same dev_t as block
1506                  * devices, so make sure this is a block device */
1507                 if (! S_ISBLK(statBuf.st_mode))
1508                         continue;
1509                 if (statBuf.st_rdev == rootStat.st_rdev) {
1510                         strcpy(name, fileName); 
1511                         return ( TRUE);
1512                 }
1513         }
1514
1515         return( FALSE);
1516 }
1517 #endif
1518
1519
1520 /* END CODE */
1521 /*
1522 Local Variables:
1523 c-file-style: "linux"
1524 c-basic-offset: 4
1525 tab-width: 4
1526 End:
1527 */