blob: 74df632b9a7cf1ce9c71ad1b00ab55e9c60adf9a [file] [log] [blame]
Eric Andersencc8ed391999-10-05 16:24:54 +00001/*
2 * Utility routines.
3 *
Eric Andersenc4996011999-10-20 22:08:37 +00004 * Copyright (C) tons of folks. Tracking down who wrote what
5 * isn't something I'm going to worry about... If you wrote something
6 * here, please feel free to acknowledge your work.
Eric Andersencc8ed391999-10-05 16:24:54 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
23 * Permission has been granted to redistribute this code under the GPL.
24 *
25 */
26
Eric Andersen2b69c401999-10-05 22:58:32 +000027#include "internal.h"
28#include <stdio.h>
29#include <string.h>
30#include <errno.h>
31#include <fcntl.h>
Eric Andersen2b69c401999-10-05 22:58:32 +000032#include <dirent.h>
33#include <time.h>
34#include <utime.h>
Eric Andersenf811e071999-10-09 00:25:00 +000035#include <sys/stat.h>
36#include <unistd.h>
Eric Andersence8f3b91999-10-20 07:03:36 +000037#include <ctype.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000038
Eric Andersend0246fb1999-11-04 21:18:07 +000039#if defined BB_MOUNT || defined BB_UMOUNT || defined BB_DF
Eric Andersen0ecb54a1999-12-05 23:24:55 +000040# if defined BB_FEATURE_USE_PROCFS
Eric Andersend0246fb1999-11-04 21:18:07 +000041const char mtab_file[] = "/proc/mounts";
Eric Andersen0ecb54a1999-12-05 23:24:55 +000042# else
43# if defined BB_MTAB
44const char mtab_file[] = "/etc/mtab";
45# else
46# error With (BB_MOUNT||BB_UMOUNT||BB_DF) defined, you must define either BB_MTAB or BB_FEATURE_USE_PROCFS
47# endif
48# endif
Eric Andersend0246fb1999-11-04 21:18:07 +000049#endif
50
51
Eric Andersend73dc5b1999-11-10 23:13:02 +000052extern void usage(const char *usage)
Eric Andersenb0e9a701999-10-18 22:28:26 +000053{
Eric Andersena07f0b01999-10-22 19:49:09 +000054 fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n\n", BB_VER, BB_BT);
Eric Andersenb0e9a701999-10-18 22:28:26 +000055 fprintf(stderr, "Usage: %s\n", usage);
56 exit(FALSE);
57}
58
59
Eric Andersend23f9ba1999-10-20 19:18:15 +000060#if defined (BB_INIT) || defined (BB_PS)
61
Eric Andersen0ecb54a1999-12-05 23:24:55 +000062#if ! defined BB_FEATURE_USE_PROCFS
63#error Sorry, I depend on the /proc filesystem right now.
64#endif
Eric Andersend23f9ba1999-10-20 19:18:15 +000065/* Returns kernel version encoded as major*65536 + minor*256 + patch,
66 * so, for example, to check if the kernel is greater than 2.2.11:
67 * if (get_kernel_revision() <= 2*65536+2*256+11) { <stuff> }
68 */
69int
70get_kernel_revision()
71{
Eric Andersenaa0765e1999-10-22 04:30:20 +000072 FILE *file;
Eric Andersend23f9ba1999-10-20 19:18:15 +000073 int major=0, minor=0, patch=0;
Eric Andersenaa0765e1999-10-22 04:30:20 +000074 char* filename="/proc/sys/kernel/osrelease";
Eric Andersend23f9ba1999-10-20 19:18:15 +000075
Eric Andersenaa0765e1999-10-22 04:30:20 +000076 file = fopen(filename,"r");
77 if (file == NULL) {
Eric Andersen2f6c04f1999-11-01 23:59:44 +000078 /* bummer, /proc must not be mounted... */
Eric Andersenaa0765e1999-10-22 04:30:20 +000079 return( 0);
80 }
81 fscanf(file,"%d.%d.%d",&major,&minor,&patch);
82 fclose(file);
Eric Andersend23f9ba1999-10-20 19:18:15 +000083 return major*65536 + minor*256 + patch;
84}
85
86#endif
87
88
Eric Andersenc6cb79d1999-10-13 18:01:10 +000089
90#if defined (BB_CP) || defined (BB_MV)
91/*
92 * Return TRUE if a fileName is a directory.
93 * Nonexistant files return FALSE.
94 */
95int isDirectory(const char *name)
Eric Andersencc8ed391999-10-05 16:24:54 +000096{
Eric Andersenc6cb79d1999-10-13 18:01:10 +000097 struct stat statBuf;
Eric Andersencc8ed391999-10-05 16:24:54 +000098
Eric Andersenc6cb79d1999-10-13 18:01:10 +000099 if (stat(name, &statBuf) < 0)
100 return FALSE;
Eric Andersen9b587181999-10-17 05:43:39 +0000101 if (S_ISDIR(statBuf.st_mode))
102 return TRUE;
103 return(FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000104}
105
Eric Andersenc6cb79d1999-10-13 18:01:10 +0000106
107/*
108 * Copy one file to another, while possibly preserving its modes, times,
109 * and modes. Returns TRUE if successful, or FALSE on a failure with an
110 * error message output. (Failure is not indicted if the attributes cannot
111 * be set.)
Eric Andersenc4996011999-10-20 22:08:37 +0000112 * -Erik Andersen
Eric Andersenc6cb79d1999-10-13 18:01:10 +0000113 */
114int
Eric Andersen3c163821999-10-14 22:16:57 +0000115copyFile( const char *srcName, const char *destName,
116 int setModes, int followLinks)
Eric Andersenc6cb79d1999-10-13 18:01:10 +0000117{
118 int rfd;
119 int wfd;
120 int rcc;
121 int result;
122 char buf[BUF_SIZE];
123 struct stat srcStatBuf;
124 struct stat dstStatBuf;
125 struct utimbuf times;
126
127 if (followLinks == FALSE)
128 result = stat(srcName, &srcStatBuf);
129 else
130 result = lstat(srcName, &srcStatBuf);
Eric Andersenc6cb79d1999-10-13 18:01:10 +0000131 if (result < 0) {
132 perror(srcName);
133 return FALSE;
134 }
135
136 if (followLinks == FALSE)
137 result = stat(destName, &dstStatBuf);
138 else
139 result = lstat(destName, &dstStatBuf);
140 if (result < 0) {
141 dstStatBuf.st_ino = -1;
142 dstStatBuf.st_dev = -1;
143 }
144
145 if ((srcStatBuf.st_dev == dstStatBuf.st_dev) &&
146 (srcStatBuf.st_ino == dstStatBuf.st_ino)) {
147 fprintf(stderr, "Copying file \"%s\" to itself\n", srcName);
148 return FALSE;
149 }
150
151 if (S_ISDIR(srcStatBuf.st_mode)) {
152 //fprintf(stderr, "copying directory %s to %s\n", srcName, destName);
153 /* Make sure the directory is writable */
154 if (mkdir(destName, 0777777 ^ umask(0))) {
155 perror(destName);
156 return (FALSE);
157 }
158 } else if (S_ISLNK(srcStatBuf.st_mode)) {
159 char *link_val;
160 int link_size;
161
162 //fprintf(stderr, "copying link %s to %s\n", srcName, destName);
163 link_val = (char *) alloca(PATH_MAX + 2);
164 link_size = readlink(srcName, link_val, PATH_MAX + 1);
165 if (link_size < 0) {
166 perror(srcName);
167 return (FALSE);
168 }
169 link_val[link_size] = '\0';
Eric Andersen3c163821999-10-14 22:16:57 +0000170 link_size = symlink(link_val, destName);
171 if (link_size != 0) {
Eric Andersenc6cb79d1999-10-13 18:01:10 +0000172 perror(destName);
173 return (FALSE);
174 }
175 } else if (S_ISFIFO(srcStatBuf.st_mode)) {
176 //fprintf(stderr, "copying fifo %s to %s\n", srcName, destName);
177 if (mkfifo(destName, 644)) {
178 perror(destName);
179 return (FALSE);
180 }
181 } else if (S_ISBLK(srcStatBuf.st_mode) || S_ISCHR(srcStatBuf.st_mode)
182 || S_ISSOCK (srcStatBuf.st_mode)) {
183 //fprintf(stderr, "copying soc, blk, or chr %s to %s\n", srcName, destName);
184 if (mknod(destName, srcStatBuf.st_mode, srcStatBuf.st_rdev)) {
185 perror(destName);
186 return (FALSE);
187 }
188 } else if (S_ISREG(srcStatBuf.st_mode)) {
189 //fprintf(stderr, "copying regular file %s to %s\n", srcName, destName);
190 rfd = open(srcName, O_RDONLY);
191 if (rfd < 0) {
192 perror(srcName);
193 return FALSE;
194 }
195
196 wfd = creat(destName, srcStatBuf.st_mode);
197 if (wfd < 0) {
198 perror(destName);
199 close(rfd);
200 return FALSE;
201 }
202
203 while ((rcc = read(rfd, buf, sizeof(buf))) > 0) {
204 if (fullWrite(wfd, buf, rcc) < 0)
205 goto error_exit;
206 }
207 if (rcc < 0) {
208 goto error_exit;
209 }
210
211 close(rfd);
212 if (close(wfd) < 0) {
213 return FALSE;
214 }
215 }
216
217 if (setModes == TRUE) {
218 //fprintf(stderr, "Setting permissions for %s\n", destName);
219 chmod(destName, srcStatBuf.st_mode);
220 if (followLinks == TRUE)
221 chown(destName, srcStatBuf.st_uid, srcStatBuf.st_gid);
222 else
223 lchown(destName, srcStatBuf.st_uid, srcStatBuf.st_gid);
224
225 times.actime = srcStatBuf.st_atime;
226 times.modtime = srcStatBuf.st_mtime;
227
228 utime(destName, &times);
229 }
230
231 return TRUE;
232
233
234 error_exit:
Eric Andersenc6cb79d1999-10-13 18:01:10 +0000235 perror(destName);
236 close(rfd);
237 close(wfd);
238
239 return FALSE;
240}
Eric Andersencc8ed391999-10-05 16:24:54 +0000241#endif
242
243
244
Eric Andersen3d8dbe11999-11-09 01:51:02 +0000245#if defined BB_TAR || defined BB_LS
246
247#define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
248#define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
249
250/* The special bits. If set, display SMODE0/1 instead of MODE0/1 */
251static const mode_t SBIT[] = {
252 0, 0, S_ISUID,
253 0, 0, S_ISGID,
254 0, 0, S_ISVTX
255};
256
257/* The 9 mode bits to test */
258static const mode_t MBIT[] = {
259 S_IRUSR, S_IWUSR, S_IXUSR,
260 S_IRGRP, S_IWGRP, S_IXGRP,
261 S_IROTH, S_IWOTH, S_IXOTH
262};
263
264#define MODE1 "rwxrwxrwx"
265#define MODE0 "---------"
266#define SMODE1 "..s..s..t"
267#define SMODE0 "..S..S..T"
268
Eric Andersencc8ed391999-10-05 16:24:54 +0000269/*
270 * Return the standard ls-like mode string from a file mode.
271 * This is static and so is overwritten on each call.
272 */
Eric Andersenf811e071999-10-09 00:25:00 +0000273const char *modeString(int mode)
Eric Andersencc8ed391999-10-05 16:24:54 +0000274{
Eric Andersenf811e071999-10-09 00:25:00 +0000275 static char buf[12];
Eric Andersencc8ed391999-10-05 16:24:54 +0000276
Eric Andersen3d8dbe11999-11-09 01:51:02 +0000277 int i;
278 buf[0] = TYPECHAR(mode);
279 for (i=0; i<9; i++) {
280 if (mode & SBIT[i])
281 buf[i+1] = (mode & MBIT[i])?
282 SMODE1[i] : SMODE0[i];
283 else
284 buf[i+1] = (mode & MBIT[i])?
285 MODE1[i] : MODE0[i];
286 }
Eric Andersenf811e071999-10-09 00:25:00 +0000287 return buf;
Eric Andersencc8ed391999-10-05 16:24:54 +0000288}
Eric Andersen3d8dbe11999-11-09 01:51:02 +0000289#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000290
291
Eric Andersen1792f8c1999-12-09 06:11:36 +0000292#if defined BB_TAR
Eric Andersencc8ed391999-10-05 16:24:54 +0000293/*
Eric Andersen3d8dbe11999-11-09 01:51:02 +0000294 * Return the standard ls-like time string from a time_t
295 * This is static and so is overwritten on each call.
Eric Andersen17d49ef1999-10-06 20:25:32 +0000296 */
Eric Andersenf811e071999-10-09 00:25:00 +0000297const char *timeString(time_t timeVal)
Eric Andersen17d49ef1999-10-06 20:25:32 +0000298{
Eric Andersenf811e071999-10-09 00:25:00 +0000299 time_t now;
300 char *str;
301 static char buf[26];
Eric Andersen17d49ef1999-10-06 20:25:32 +0000302
Eric Andersenf811e071999-10-09 00:25:00 +0000303 time(&now);
Eric Andersen17d49ef1999-10-06 20:25:32 +0000304
Eric Andersenf811e071999-10-09 00:25:00 +0000305 str = ctime(&timeVal);
Eric Andersen17d49ef1999-10-06 20:25:32 +0000306
Eric Andersenf811e071999-10-09 00:25:00 +0000307 strcpy(buf, &str[4]);
308 buf[12] = '\0';
Eric Andersen17d49ef1999-10-06 20:25:32 +0000309
Eric Andersenf811e071999-10-09 00:25:00 +0000310 if ((timeVal > now) || (timeVal < now - 365 * 24 * 60 * 60L)) {
311 strcpy(&buf[7], &str[20]);
312 buf[11] = '\0';
313 }
Eric Andersen17d49ef1999-10-06 20:25:32 +0000314
Eric Andersenf811e071999-10-09 00:25:00 +0000315 return buf;
Eric Andersen17d49ef1999-10-06 20:25:32 +0000316}
317
Eric Andersen17d49ef1999-10-06 20:25:32 +0000318/*
Eric Andersencc8ed391999-10-05 16:24:54 +0000319 * Write all of the supplied buffer out to a file.
320 * This does multiple writes as necessary.
321 * Returns the amount written, or -1 on an error.
322 */
Eric Andersenf811e071999-10-09 00:25:00 +0000323int fullWrite(int fd, const char *buf, int len)
Eric Andersencc8ed391999-10-05 16:24:54 +0000324{
Eric Andersenf811e071999-10-09 00:25:00 +0000325 int cc;
326 int total;
Eric Andersencc8ed391999-10-05 16:24:54 +0000327
Eric Andersenf811e071999-10-09 00:25:00 +0000328 total = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000329
Eric Andersenf811e071999-10-09 00:25:00 +0000330 while (len > 0) {
331 cc = write(fd, buf, len);
Eric Andersencc8ed391999-10-05 16:24:54 +0000332
Eric Andersenf811e071999-10-09 00:25:00 +0000333 if (cc < 0)
334 return -1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000335
Eric Andersenf811e071999-10-09 00:25:00 +0000336 buf += cc;
337 total += cc;
338 len -= cc;
339 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000340
Eric Andersenf811e071999-10-09 00:25:00 +0000341 return total;
Eric Andersencc8ed391999-10-05 16:24:54 +0000342}
Eric Andersen1792f8c1999-12-09 06:11:36 +0000343#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000344
345
Eric Andersen1792f8c1999-12-09 06:11:36 +0000346#if defined BB_TAR || defined BB_TAIL
Eric Andersencc8ed391999-10-05 16:24:54 +0000347/*
348 * Read all of the supplied buffer from a file.
349 * This does multiple reads as necessary.
350 * Returns the amount read, or -1 on an error.
351 * A short read is returned on an end of file.
352 */
Eric Andersenf811e071999-10-09 00:25:00 +0000353int fullRead(int fd, char *buf, int len)
Eric Andersencc8ed391999-10-05 16:24:54 +0000354{
Eric Andersenf811e071999-10-09 00:25:00 +0000355 int cc;
356 int total;
Eric Andersencc8ed391999-10-05 16:24:54 +0000357
Eric Andersenf811e071999-10-09 00:25:00 +0000358 total = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000359
Eric Andersenf811e071999-10-09 00:25:00 +0000360 while (len > 0) {
361 cc = read(fd, buf, len);
Eric Andersencc8ed391999-10-05 16:24:54 +0000362
Eric Andersenf811e071999-10-09 00:25:00 +0000363 if (cc < 0)
364 return -1;
Eric Andersencc8ed391999-10-05 16:24:54 +0000365
Eric Andersenf811e071999-10-09 00:25:00 +0000366 if (cc == 0)
367 break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000368
Eric Andersenf811e071999-10-09 00:25:00 +0000369 buf += cc;
370 total += cc;
371 len -= cc;
372 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000373
Eric Andersenf811e071999-10-09 00:25:00 +0000374 return total;
Eric Andersencc8ed391999-10-05 16:24:54 +0000375}
Eric Andersenc6cb79d1999-10-13 18:01:10 +0000376#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000377
378
Eric Andersenc6cb79d1999-10-13 18:01:10 +0000379#if defined (BB_CHOWN) || defined (BB_CP) || defined (BB_FIND) || defined (BB_LS)
Eric Andersencc8ed391999-10-05 16:24:54 +0000380/*
Eric Andersen2b69c401999-10-05 22:58:32 +0000381 * Walk down all the directories under the specified
382 * location, and do something (something specified
383 * by the fileAction and dirAction function pointers).
Eric Andersenb7a1a751999-10-19 23:37:14 +0000384 *
Eric Andersen63a0e531999-10-22 05:12:14 +0000385 * Unfortunatly, while nftw(3) could replace this and reduce
386 * code size a bit, nftw() wasn't supported before GNU libc 2.1,
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000387 * and so isn't sufficiently portable to take over since glibc2.1
388 * is so stinking huge.
Eric Andersencc8ed391999-10-05 16:24:54 +0000389 */
390int
Eric Andersen63a0e531999-10-22 05:12:14 +0000391recursiveAction(const char *fileName, int recurse, int followLinks, int depthFirst,
Eric Andersen9b587181999-10-17 05:43:39 +0000392 int (*fileAction) (const char *fileName, struct stat* statbuf),
393 int (*dirAction) (const char *fileName, struct stat* statbuf))
Eric Andersencc8ed391999-10-05 16:24:54 +0000394{
Eric Andersenf811e071999-10-09 00:25:00 +0000395 int status;
396 struct stat statbuf;
397 struct dirent *next;
Eric Andersen9d3aba71999-10-06 09:04:55 +0000398
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000399 if (followLinks == TRUE)
Eric Andersenf811e071999-10-09 00:25:00 +0000400 status = stat(fileName, &statbuf);
Eric Andersen3c163821999-10-14 22:16:57 +0000401 else
402 status = lstat(fileName, &statbuf);
403
Eric Andersencc8ed391999-10-05 16:24:54 +0000404 if (status < 0) {
405 perror(fileName);
Eric Andersenf811e071999-10-09 00:25:00 +0000406 return (FALSE);
407 }
408
Eric Andersen50d63601999-11-09 01:47:36 +0000409 if ( (followLinks == FALSE) && (S_ISLNK(statbuf.st_mode)) ) {
410 if (fileAction == NULL)
411 return (TRUE);
412 else
413 return (fileAction(fileName, &statbuf));
414 }
Eric Andersencf8c9cf1999-11-05 00:31:46 +0000415
Eric Andersenf811e071999-10-09 00:25:00 +0000416 if (recurse == FALSE) {
417 if (S_ISDIR(statbuf.st_mode)) {
Eric Andersen3c163821999-10-14 22:16:57 +0000418 if (dirAction != NULL)
Eric Andersen9b587181999-10-17 05:43:39 +0000419 return (dirAction(fileName, &statbuf));
Eric Andersenf811e071999-10-09 00:25:00 +0000420 else
Eric Andersen3c163821999-10-14 22:16:57 +0000421 return (TRUE);
422 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000423 }
424
Eric Andersen2b69c401999-10-05 22:58:32 +0000425 if (S_ISDIR(statbuf.st_mode)) {
426 DIR *dir;
427 dir = opendir(fileName);
428 if (!dir) {
429 perror(fileName);
Eric Andersenf811e071999-10-09 00:25:00 +0000430 return (FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000431 }
Eric Andersen63a0e531999-10-22 05:12:14 +0000432 if (dirAction != NULL && depthFirst == FALSE) {
Eric Andersen9b587181999-10-17 05:43:39 +0000433 status = dirAction(fileName, &statbuf);
Eric Andersenf811e071999-10-09 00:25:00 +0000434 if (status == FALSE) {
Eric Andersenc6cb79d1999-10-13 18:01:10 +0000435 perror(fileName);
Eric Andersenf811e071999-10-09 00:25:00 +0000436 return (FALSE);
437 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000438 }
Eric Andersenf811e071999-10-09 00:25:00 +0000439 while ((next = readdir(dir)) != NULL) {
440 char nextFile[NAME_MAX];
441 if ((strcmp(next->d_name, "..") == 0)
442 || (strcmp(next->d_name, ".") == 0)) {
443 continue;
444 }
445 sprintf(nextFile, "%s/%s", fileName, next->d_name);
446 status =
Eric Andersen63a0e531999-10-22 05:12:14 +0000447 recursiveAction(nextFile, TRUE, followLinks, depthFirst,
Eric Andersenbed30e91999-10-18 19:02:32 +0000448 fileAction, dirAction);
Eric Andersenf811e071999-10-09 00:25:00 +0000449 if (status < 0) {
450 closedir(dir);
451 return (FALSE);
452 }
453 }
454 status = closedir(dir);
Eric Andersen2b69c401999-10-05 22:58:32 +0000455 if (status < 0) {
456 perror(fileName);
Eric Andersenf811e071999-10-09 00:25:00 +0000457 return (FALSE);
Eric Andersen2b69c401999-10-05 22:58:32 +0000458 }
Eric Andersen63a0e531999-10-22 05:12:14 +0000459 if (dirAction != NULL && depthFirst == TRUE) {
Eric Andersenbed30e91999-10-18 19:02:32 +0000460 status = dirAction(fileName, &statbuf);
461 if (status == FALSE) {
462 perror(fileName);
463 return (FALSE);
464 }
465 }
Eric Andersenf811e071999-10-09 00:25:00 +0000466 } else {
Eric Andersenf811e071999-10-09 00:25:00 +0000467 if (fileAction == NULL)
468 return (TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000469 else
Eric Andersen9b587181999-10-17 05:43:39 +0000470 return (fileAction(fileName, &statbuf));
Eric Andersencc8ed391999-10-05 16:24:54 +0000471 }
Eric Andersenf811e071999-10-09 00:25:00 +0000472 return (TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000473}
474
Eric Andersenc6cb79d1999-10-13 18:01:10 +0000475#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000476
Eric Andersenf6be9441999-10-13 21:12:06 +0000477
478
479#if defined (BB_TAR) || defined (BB_MKDIR)
480/*
481 * Attempt to create the directories along the specified path, except for
482 * the final component. The mode is given for the final directory only,
483 * while all previous ones get default protections. Errors are not reported
484 * here, as failures to restore files can be reported later.
485 */
486extern void createPath (const char *name, int mode)
487{
488 char *cp;
489 char *cpOld;
490 char buf[NAME_MAX];
491
Eric Andersencb41c2e1999-11-22 07:41:00 +0000492 strcpy( buf, name);
Eric Andersenf6be9441999-10-13 21:12:06 +0000493 cp = strchr (buf, '/');
Eric Andersenf6be9441999-10-13 21:12:06 +0000494 while (cp) {
495 cpOld = cp;
496 cp = strchr (cp + 1, '/');
Eric Andersenf6be9441999-10-13 21:12:06 +0000497 *cpOld = '\0';
Eric Andersenb6a44b81999-11-13 04:47:09 +0000498 mkdir (buf, cp ? 0777 : mode);
Eric Andersenf6be9441999-10-13 21:12:06 +0000499 *cpOld = '/';
500 }
501}
502#endif
503
504
505
506#if defined (BB_CHMOD_CHOWN_CHGRP) || defined (BB_MKDIR)
Eric Andersence8f3b91999-10-20 07:03:36 +0000507/* [ugoa]{+|-|=}[rwxst] */
508
509
510
511extern int
512parse_mode( const char* s, mode_t* theMode)
Eric Andersenf6be9441999-10-13 21:12:06 +0000513{
Eric Andersence8f3b91999-10-20 07:03:36 +0000514 mode_t andMode = S_ISVTX|S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO;
515 mode_t orMode = 0;
Eric Andersenf6be9441999-10-13 21:12:06 +0000516 mode_t mode = 0;
Eric Andersence8f3b91999-10-20 07:03:36 +0000517 mode_t groups = 0;
Eric Andersenf6be9441999-10-13 21:12:06 +0000518 char type;
519 char c;
520
521 do {
522 for ( ; ; ) {
523 switch ( c = *s++ ) {
524 case '\0':
Eric Andersence8f3b91999-10-20 07:03:36 +0000525 return -1;
Eric Andersenf6be9441999-10-13 21:12:06 +0000526 case 'u':
527 groups |= S_ISUID|S_IRWXU;
528 continue;
529 case 'g':
530 groups |= S_ISGID|S_IRWXG;
531 continue;
532 case 'o':
533 groups |= S_IRWXO;
534 continue;
535 case 'a':
536 groups |= S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO;
537 continue;
538 case '+':
539 case '=':
540 case '-':
541 type = c;
Eric Andersence8f3b91999-10-20 07:03:36 +0000542 if ( groups == 0 ) /* The default is "all" */
Eric Andersenf6be9441999-10-13 21:12:06 +0000543 groups |= S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO;
544 break;
545 default:
Eric Andersenfa0540f1999-10-22 18:18:31 +0000546 if ( isdigit(c) && c >= '0' && c <= '7' &&
547 mode == 0 && groups == 0 ) {
548 *theMode = strtol(--s, NULL, 8);
Eric Andersenf6be9441999-10-13 21:12:06 +0000549 return (TRUE);
550 }
551 else
552 return (FALSE);
553 }
554 break;
555 }
556
557 while ( (c = *s++) != '\0' ) {
558 switch ( c ) {
559 case ',':
560 break;
561 case 'r':
562 mode |= S_IRUSR|S_IRGRP|S_IROTH;
563 continue;
564 case 'w':
565 mode |= S_IWUSR|S_IWGRP|S_IWOTH;
566 continue;
567 case 'x':
568 mode |= S_IXUSR|S_IXGRP|S_IXOTH;
569 continue;
570 case 's':
571 mode |= S_IXGRP|S_ISUID|S_ISGID;
572 continue;
573 case 't':
Eric Andersence8f3b91999-10-20 07:03:36 +0000574 mode |= 0;
Eric Andersenf6be9441999-10-13 21:12:06 +0000575 continue;
576 default:
Eric Andersence8f3b91999-10-20 07:03:36 +0000577 *theMode &= andMode;
578 *theMode |= orMode;
579 return( TRUE);
Eric Andersenf6be9441999-10-13 21:12:06 +0000580 }
581 break;
582 }
583 switch ( type ) {
584 case '=':
Eric Andersence8f3b91999-10-20 07:03:36 +0000585 andMode &= ~(groups);
Eric Andersenf6be9441999-10-13 21:12:06 +0000586 /* fall through */
587 case '+':
Eric Andersence8f3b91999-10-20 07:03:36 +0000588 orMode |= mode & groups;
Eric Andersenf6be9441999-10-13 21:12:06 +0000589 break;
590 case '-':
Eric Andersence8f3b91999-10-20 07:03:36 +0000591 andMode &= ~(mode & groups);
592 orMode &= andMode;
Eric Andersenf6be9441999-10-13 21:12:06 +0000593 break;
594 }
595 } while ( c == ',' );
Eric Andersence8f3b91999-10-20 07:03:36 +0000596 *theMode &= andMode;
597 *theMode |= orMode;
Eric Andersenf6be9441999-10-13 21:12:06 +0000598 return (TRUE);
599}
Eric Andersence8f3b91999-10-20 07:03:36 +0000600
601
Eric Andersenf6be9441999-10-13 21:12:06 +0000602#endif
603
Eric Andersene674eb71999-10-19 20:52:57 +0000604
605
Eric Andersend23f9ba1999-10-20 19:18:15 +0000606
607
608
609
610#if defined (BB_CHMOD_CHOWN_CHGRP) || defined (BB_PS)
611
612/* Use this to avoid needing the glibc NSS stuff
613 * This uses storage buf to hold things.
614 * */
615uid_t
616my_getid(const char *filename, char *name, uid_t id)
617{
Eric Andersenaa0765e1999-10-22 04:30:20 +0000618 FILE *file;
Eric Andersend23f9ba1999-10-20 19:18:15 +0000619 char *rname, *start, *end, buf[128];
620 uid_t rid;
621
Eric Andersenaa0765e1999-10-22 04:30:20 +0000622 file=fopen(filename,"r");
623 if (file == NULL) {
624 perror(filename);
625 return (-1);
626 }
Eric Andersend23f9ba1999-10-20 19:18:15 +0000627
Eric Andersenaa0765e1999-10-22 04:30:20 +0000628 while (fgets (buf, 128, file) != NULL) {
Eric Andersend23f9ba1999-10-20 19:18:15 +0000629 if (buf[0] == '#')
630 continue;
631
632 start = buf;
633 end = strchr (start, ':');
634 if (end == NULL)
635 continue;
636 *end = '\0';
637 rname = start;
638
639 start = end + 1;
640 end = strchr (start, ':');
641 if (end == NULL)
642 continue;
643
644 start = end + 1;
645 rid = (uid_t) strtol (start, &end, 10);
646 if (end == start)
647 continue;
648
649 if (name) {
Eric Andersen48091fb1999-12-09 01:15:52 +0000650 if (0 == strcmp(rname, name)) {
651 fclose( file);
Eric Andersend23f9ba1999-10-20 19:18:15 +0000652 return( rid);
Eric Andersen48091fb1999-12-09 01:15:52 +0000653 }
Eric Andersend23f9ba1999-10-20 19:18:15 +0000654 }
655 if ( id != -1 && id == rid ) {
656 strncpy(name, rname, 8);
Eric Andersen48091fb1999-12-09 01:15:52 +0000657 fclose( file);
Eric Andersend23f9ba1999-10-20 19:18:15 +0000658 return( TRUE);
659 }
660 }
Eric Andersenaa0765e1999-10-22 04:30:20 +0000661 fclose(file);
Eric Andersend23f9ba1999-10-20 19:18:15 +0000662 return (-1);
663}
664
665uid_t
666my_getpwnam(char *name)
667{
668 return my_getid("/etc/passwd", name, -1);
669}
670
671gid_t
672my_getgrnam(char *name)
673{
674 return my_getid("/etc/group", name, -1);
675}
676
677void
678my_getpwuid(char* name, uid_t uid)
679{
680 my_getid("/etc/passwd", name, uid);
681}
682
683void
684my_getgrgid(char* group, gid_t gid)
685{
686 my_getid("/etc/group", group, gid);
687}
688
689
690#endif
691
692
Eric Andersenaa0765e1999-10-22 04:30:20 +0000693
Eric Andersen0460ff21999-10-25 23:32:44 +0000694
695#if (defined BB_CHVT) || (defined BB_DEALLOCVT)
696
697
698#include <linux/kd.h>
699#include <sys/ioctl.h>
700
701int is_a_console(int fd)
702{
703 char arg;
704
705 arg = 0;
706 return (ioctl(fd, KDGKBTYPE, &arg) == 0
707 && ((arg == KB_101) || (arg == KB_84)));
708}
709
710static int open_a_console(char *fnam)
711{
712 int fd;
713
714 /* try read-only */
715 fd = open(fnam, O_RDWR);
716
717 /* if failed, try read-only */
718 if (fd < 0 && errno == EACCES)
719 fd = open(fnam, O_RDONLY);
720
721 /* if failed, try write-only */
722 if (fd < 0 && errno == EACCES)
723 fd = open(fnam, O_WRONLY);
724
725 /* if failed, fail */
726 if (fd < 0)
727 return -1;
728
729 /* if not a console, fail */
730 if (! is_a_console(fd))
731 {
732 close(fd);
733 return -1;
734 }
735
736 /* success */
737 return fd;
738}
739
740/*
741 * Get an fd for use with kbd/console ioctls.
742 * We try several things because opening /dev/console will fail
743 * if someone else used X (which does a chown on /dev/console).
744 *
745 * if tty_name is non-NULL, try this one instead.
746 */
747
748int get_console_fd(char* tty_name)
749{
750 int fd;
751
752 if (tty_name)
753 {
754 if (-1 == (fd = open_a_console(tty_name)))
755 return -1;
756 else
757 return fd;
758 }
759
760 fd = open_a_console("/dev/tty");
761 if (fd >= 0)
762 return fd;
763
764 fd = open_a_console("/dev/tty0");
765 if (fd >= 0)
766 return fd;
767
768 fd = open_a_console("/dev/console");
769 if (fd >= 0)
770 return fd;
771
772 for (fd = 0; fd < 3; fd++)
773 if (is_a_console(fd))
774 return fd;
775
776 fprintf(stderr,
777 "Couldnt get a file descriptor referring to the console\n");
778 return -1; /* total failure */
779}
780
781
782#endif
783
784
Eric Andersenb186d981999-12-03 09:19:54 +0000785#if !defined BB_REGEXP && (defined BB_GREP || defined BB_SED)
Eric Andersen24d8e7d1999-10-29 06:50:17 +0000786
787/* Do a case insensitive strstr() */
788char* stristr(char *haystack, const char *needle)
789{
790 int len = strlen( needle );
791 while( *haystack ) {
792 if( !strncasecmp( haystack, needle, len ) )
793 break;
794 haystack++;
795 }
796
797 if( !(*haystack) )
798 haystack = NULL;
799
800 return haystack;
801}
802
Eric Andersenc1525e81999-10-29 00:07:31 +0000803/* This tries to find a needle in a haystack, but does so by
804 * only trying to match literal strings (look 'ma, no regexps!)
805 * This is short, sweet, and carries _very_ little baggage,
Eric Andersen24d8e7d1999-10-29 06:50:17 +0000806 * unlike its beefier cousin in regexp.c
Eric Andersenc1525e81999-10-29 00:07:31 +0000807 * -Erik Andersen
808 */
809extern int find_match(char *haystack, char *needle, int ignoreCase)
810{
811
Eric Andersen24d8e7d1999-10-29 06:50:17 +0000812 if (ignoreCase == FALSE)
Eric Andersenc1525e81999-10-29 00:07:31 +0000813 haystack = strstr (haystack, needle);
Eric Andersen24d8e7d1999-10-29 06:50:17 +0000814 else
815 haystack = stristr (haystack, needle);
816 if (haystack == NULL)
817 return FALSE;
818 return TRUE;
Eric Andersenc1525e81999-10-29 00:07:31 +0000819}
820
821
Eric Andersen24d8e7d1999-10-29 06:50:17 +0000822/* This performs substitutions after a string match has been found. */
Eric Andersenc1525e81999-10-29 00:07:31 +0000823extern int replace_match(char *haystack, char *needle, char *newNeedle, int ignoreCase)
824{
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000825 int foundOne=0;
Eric Andersen24d8e7d1999-10-29 06:50:17 +0000826 char *where, *slider, *slider1, *oldhayStack;
Eric Andersenc1525e81999-10-29 00:07:31 +0000827
Eric Andersen24d8e7d1999-10-29 06:50:17 +0000828 if (ignoreCase == FALSE)
Eric Andersenc1525e81999-10-29 00:07:31 +0000829 where = strstr (haystack, needle);
Eric Andersen24d8e7d1999-10-29 06:50:17 +0000830 else
831 where = stristr (haystack, needle);
832
833 if (strcmp(needle, newNeedle)==0)
834 return FALSE;
835
836 oldhayStack = (char*)malloc((unsigned)(strlen(haystack)));
837 while(where!=NULL) {
838 foundOne++;
839 strcpy(oldhayStack, haystack);
840#if 0
841 if ( strlen(newNeedle) > strlen(needle)) {
Eric Andersenc1525e81999-10-29 00:07:31 +0000842 haystack = (char *)realloc(haystack, (unsigned)(strlen(haystack) -
843 strlen(needle) + strlen(newNeedle)));
Eric Andersenc1525e81999-10-29 00:07:31 +0000844 }
Eric Andersen24d8e7d1999-10-29 06:50:17 +0000845#endif
846 for(slider=haystack,slider1=oldhayStack;slider!=where;slider++,slider1++);
847 *slider=0;
848 haystack=strcat(haystack, newNeedle);
849 slider1+=strlen(needle);
850 haystack = strcat(haystack, slider1);
851 where = strstr (slider, needle);
Eric Andersenc1525e81999-10-29 00:07:31 +0000852 }
Eric Andersen24d8e7d1999-10-29 06:50:17 +0000853 free( oldhayStack);
854
Eric Andersen7f1acfd1999-10-29 23:09:13 +0000855 if (foundOne > 0)
Eric Andersenc1525e81999-10-29 00:07:31 +0000856 return TRUE;
857 else
858 return FALSE;
859}
860
Eric Andersen24d8e7d1999-10-29 06:50:17 +0000861
Eric Andersenc1525e81999-10-29 00:07:31 +0000862#endif
Eric Andersen29d2e361999-11-06 06:07:27 +0000863
864
Eric Andersenb186d981999-12-03 09:19:54 +0000865#if defined BB_FIND
866/*
867 * Routine to see if a text string is matched by a wildcard pattern.
868 * Returns TRUE if the text is matched, or FALSE if it is not matched
869 * or if the pattern is invalid.
870 * * matches zero or more characters
871 * ? matches a single character
872 * [abc] matches 'a', 'b' or 'c'
873 * \c quotes character c
874 * Adapted from code written by Ingo Wilken, and
875 * then taken from sash, Copyright (c) 1999 by David I. Bell
876 * Permission is granted to use, distribute, or modify this source,
877 * provided that this copyright notice remains intact.
878 * Permission to distribute this code under the GPL has been granted.
879 */
880extern int
881check_wildcard_match(const char* text, const char* pattern)
882{
883 const char* retryPat;
884 const char* retryText;
885 int ch;
886 int found;
887
888 retryPat = NULL;
889 retryText = NULL;
890
891 while (*text || *pattern)
892 {
893 ch = *pattern++;
894
895 switch (ch)
896 {
897 case '*':
898 retryPat = pattern;
899 retryText = text;
900 break;
901
902 case '[':
903 found = FALSE;
904
905 while ((ch = *pattern++) != ']')
906 {
907 if (ch == '\\')
908 ch = *pattern++;
909
910 if (ch == '\0')
911 return FALSE;
912
913 if (*text == ch)
914 found = TRUE;
915 }
916
917 //if (!found)
918 if (found==TRUE)
919 {
920 pattern = retryPat;
921 text = ++retryText;
922 }
923
924 /* fall into next case */
925
926 case '?':
927 if (*text++ == '\0')
928 return FALSE;
929
930 break;
931
932 case '\\':
933 ch = *pattern++;
934
935 if (ch == '\0')
936 return FALSE;
937
938 /* fall into next case */
939
940 default:
941 if (*text == ch)
942 {
943 if (*text)
944 text++;
945 break;
946 }
947
948 if (*text)
949 {
950 pattern = retryPat;
951 text = ++retryText;
952 break;
953 }
954
955 return FALSE;
956 }
957
958 if (pattern == NULL)
959 return FALSE;
960 }
961
962 return TRUE;
963}
964#endif
965
966
Eric Andersen29d2e361999-11-06 06:07:27 +0000967
968
969#if defined BB_DF | defined BB_MTAB
970/*
971 * Given a block device, find the mount table entry if that block device
972 * is mounted.
973 *
974 * Given any other file (or directory), find the mount table entry for its
975 * filesystem.
976 */
977extern struct mntent *findMountPoint(const char *name, const char *table)
978{
979 struct stat s;
980 dev_t mountDevice;
981 FILE *mountTable;
982 struct mntent *mountEntry;
983
984 if (stat(name, &s) != 0)
985 return 0;
986
987 if ((s.st_mode & S_IFMT) == S_IFBLK)
988 mountDevice = s.st_rdev;
989 else
990 mountDevice = s.st_dev;
991
992
993 if ((mountTable = setmntent(table, "r")) == 0)
994 return 0;
995
996 while ((mountEntry = getmntent(mountTable)) != 0) {
997 if (strcmp(name, mountEntry->mnt_dir) == 0
998 || strcmp(name, mountEntry->mnt_fsname) == 0) /* String match. */
999 break;
1000 if (stat(mountEntry->mnt_fsname, &s) == 0 && s.st_rdev == mountDevice) /* Match the device. */
1001 break;
1002 if (stat(mountEntry->mnt_dir, &s) == 0 && s.st_dev == mountDevice) /* Match the directory's mount point. */
1003 break;
1004 }
1005 endmntent(mountTable);
1006 return mountEntry;
1007}
1008
1009#endif
1010
1011
1012
1013#if !defined BB_MTAB && (defined BB_MOUNT || defined BB_DF )
1014extern void whine_if_fstab_is_missing()
1015{
1016 struct stat statBuf;
1017 if (stat("/etc/fstab", &statBuf) < 0)
1018 fprintf(stderr, "/etc/fstab file missing -- install one to name /dev/root.\n\n");
1019}
1020#endif
1021
1022
Eric Andersen1792f8c1999-12-09 06:11:36 +00001023#if defined BB_DD || defined BB_TAIL
1024/*
1025 * Read a number with a possible multiplier.
1026 * Returns -1 if the number format is illegal.
1027 */
1028extern long getNum (const char *cp)
1029{
1030 long value;
1031
1032 if (!isDecimal (*cp))
1033 return -1;
1034
1035 value = 0;
1036
1037 while (isDecimal (*cp))
1038 value = value * 10 + *cp++ - '0';
1039
1040 switch (*cp++) {
1041 case 'm':
1042 value *= 1048576;
1043 break;
1044
1045 case 'k':
1046 value *= 1024;
1047 break;
1048
1049 case 'b':
1050 value *= 512;
1051 break;
1052
1053 case 'w':
1054 value *= 2;
1055 break;
1056
1057 case '\0':
1058 return value;
1059
1060 default:
1061 return -1;
1062 }
1063
1064 if (*cp)
1065 return -1;
1066
1067 return value;
1068}
1069#endif
1070
Eric Andersen6805d5d1999-12-09 22:39:55 +00001071
1072#if defined BB_INIT || defined BB_HALT || defined BB_REBOOT
1073
1074#if ! defined BB_FEATURE_USE_PROCFS
1075#error Sorry, I depend on the /proc filesystem right now.
1076#endif
John Beppuf95ca971999-12-09 22:10:18 +00001077/* findInitPid()
1078 *
1079 * This finds the pid of init (which is not always 1).
1080 * Currently, it's implemented by rummaging through the proc filesystem.
1081 *
1082 * [return]
1083 * 0 failure
1084 * pid when init's pid is found.
1085 */
1086extern pid_t
1087findInitPid()
1088{
1089 pid_t init_pid;
1090 char filename[256];
1091 char buffer[256];
1092
1093 /* no need to opendir ;) */
1094 for (init_pid = 1; init_pid < 65536; init_pid++) {
1095 FILE *status;
1096
1097 sprintf(filename, "/proc/%d/status", init_pid);
1098 status = fopen(filename, "r");
1099 if (!status) { continue; }
1100 fgets(buffer, 256, status);
1101 fclose(status);
1102
Eric Andersen6805d5d1999-12-09 22:39:55 +00001103 if ( (strstr(buffer, "init\n") != NULL )) {
John Beppuf95ca971999-12-09 22:10:18 +00001104 return init_pid;
1105 }
1106 }
1107 return 0;
1108}
1109#endif
Eric Andersen1792f8c1999-12-09 06:11:36 +00001110
Eric Andersencc8ed391999-10-05 16:24:54 +00001111/* END CODE */