cttyhack: add missing ';'
[oweals/busybox.git] / include / libbb.h
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Busybox main internal header file
4  *
5  * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
6  * Permission has been granted to redistribute this code under the GPL.
7  *
8  * Licensed under the GPL version 2, see the file LICENSE in this tarball.
9  */
10 #ifndef __LIBBUSYBOX_H__
11 #define __LIBBUSYBOX_H__    1
12
13 #include "platform.h"
14
15 #include <ctype.h>
16 #include <dirent.h>
17 #include <errno.h>
18 #include <fcntl.h>
19 #include <inttypes.h>
20 #include <mntent.h>
21 #include <netdb.h>
22 #include <setjmp.h>
23 #include <signal.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <stdarg.h>
27 #include <stddef.h>
28 #include <string.h>
29 #include <sys/poll.h>
30 #include <sys/ioctl.h>
31 #include <sys/mman.h>
32 #include <sys/socket.h>
33 #include <sys/stat.h>
34 #include <sys/statfs.h>
35 #include <sys/time.h>
36 #include <sys/types.h>
37 #include <sys/wait.h>
38 #include <termios.h>
39 #include <time.h>
40 #include <unistd.h>
41 #include <utime.h>
42 /* Try to pull in PATH_MAX */
43 #include <limits.h>
44 #include <sys/param.h>
45 #ifndef PATH_MAX
46 #define PATH_MAX 256
47 #endif
48
49 #if ENABLE_SELINUX
50 #include <selinux/selinux.h>
51 #include <selinux/context.h>
52 #include <selinux/flask.h>
53 #include <selinux/av_permissions.h>
54 #endif
55
56 #if ENABLE_LOCALE_SUPPORT
57 #include <locale.h>
58 #else
59 #define setlocale(x,y) ((void)0)
60 #endif
61
62 #include "pwd_.h"
63 #include "grp_.h"
64 /* ifdef it out, because it may include <shadow.h> */
65 /* and we may not even _have_ <shadow.h>! */
66 #if ENABLE_FEATURE_SHADOWPASSWDS
67 #include "shadow_.h"
68 #endif
69
70 #if defined(__GLIBC__) && __GLIBC__ < 2
71 int vdprintf(int d, const char *format, va_list ap);
72 #endif
73 /* klogctl is in libc's klog.h, but we cheat and not #include that */
74 int klogctl(int type, char *b, int len);
75 /* This is declared here rather than #including <libgen.h> in order to avoid
76  * confusing the two versions of basename.  See the dirname/basename man page
77  * for details. */
78 char *dirname(char *path);
79 /* Include our own copy of struct sysinfo to avoid binary compatibility
80  * problems with Linux 2.4, which changed things.  Grumble, grumble. */
81 struct sysinfo {
82         long uptime;                    /* Seconds since boot */
83         unsigned long loads[3];         /* 1, 5, and 15 minute load averages */
84         unsigned long totalram;         /* Total usable main memory size */
85         unsigned long freeram;          /* Available memory size */
86         unsigned long sharedram;        /* Amount of shared memory */
87         unsigned long bufferram;        /* Memory used by buffers */
88         unsigned long totalswap;        /* Total swap space size */
89         unsigned long freeswap;         /* swap space still available */
90         unsigned short procs;           /* Number of current processes */
91         unsigned short pad;                     /* Padding needed for m68k */
92         unsigned long totalhigh;        /* Total high memory size */
93         unsigned long freehigh;         /* Available high memory size */
94         unsigned int mem_unit;          /* Memory unit size in bytes */
95         char _f[20 - 2*sizeof(long) - sizeof(int)]; /* Padding: libc5 uses this.. */
96 };
97 int sysinfo(struct sysinfo* info);
98
99
100 /* Tested to work correctly with all int types (IIRC :]) */
101 #define MAXINT(T) (T)( \
102         ((T)-1) > 0 \
103         ? (T)-1 \
104         : (T)~((T)1 << (sizeof(T)*8-1)) \
105         )
106
107 #define MININT(T) (T)( \
108         ((T)-1) > 0 \
109         ? (T)0 \
110         : ((T)1 << (sizeof(T)*8-1)) \
111         )
112
113 /* Large file support */
114 /* Note that CONFIG_LFS=y forces bbox to be built with all common ops
115  * (stat, lseek etc) mapped to "largefile" variants by libc.
116  * Practically it means that open() automatically has O_LARGEFILE added
117  * and all filesize/file_offset parameters and struct members are "large"
118  * (in today's world - signed 64bit). For full support of large files,
119  * we need a few helper #defines (below) and careful use of off_t
120  * instead of int/ssize_t. No lseek64(), O_LARGEFILE etc necessary */
121 #if ENABLE_LFS
122 /* CONFIG_LFS is on */
123 # if ULONG_MAX > 0xffffffff
124 /* "long" is long enough on this system */
125 #  define XATOOFF(a) xatoul_range(a, 0, LONG_MAX)
126 /* usage: sz = BB_STRTOOFF(s, NULL, 10); if (errno || sz < 0) die(); */
127 #  define BB_STRTOOFF bb_strtoul
128 #  define STRTOOFF strtoul
129 /* usage: printf("size: %"OFF_FMT"d (%"OFF_FMT"x)\n", sz, sz); */
130 #  define OFF_FMT "l"
131 # else
132 /* "long" is too short, need "long long" */
133 #  define XATOOFF(a) xatoull_range(a, 0, LLONG_MAX)
134 #  define BB_STRTOOFF bb_strtoull
135 #  define STRTOOFF strtoull
136 #  define OFF_FMT "ll"
137 # endif
138 #else
139 /* CONFIG_LFS is off */
140 # if UINT_MAX == 0xffffffff
141 /* While sizeof(off_t) == sizeof(int), off_t is typedef'ed to long anyway.
142  * gcc will throw warnings on printf("%d", off_t). Crap... */
143 #  define XATOOFF(a) xatoi_u(a)
144 #  define BB_STRTOOFF bb_strtou
145 #  define STRTOOFF strtol
146 #  define OFF_FMT "l"
147 # else
148 #  define XATOOFF(a) xatoul_range(a, 0, LONG_MAX)
149 #  define BB_STRTOOFF bb_strtoul
150 #  define STRTOOFF strtol
151 #  define OFF_FMT "l"
152 # endif
153 #endif
154 /* scary. better ideas? (but do *test* them first!) */
155 #define OFF_T_MAX  ((off_t)~((off_t)1 << (sizeof(off_t)*8-1)))
156
157 /* Some useful definitions */
158 #undef FALSE
159 #define FALSE   ((int) 0)
160 #undef TRUE
161 #define TRUE    ((int) 1)
162 #undef SKIP
163 #define SKIP    ((int) 2)
164
165 /* for mtab.c */
166 #define MTAB_GETMOUNTPT '1'
167 #define MTAB_GETDEVICE  '2'
168
169 #define BUF_SIZE        8192
170 #define EXPAND_ALLOC    1024
171
172 /* Macros for min/max.  */
173 #ifndef MIN
174 #define MIN(a,b) (((a)<(b))?(a):(b))
175 #endif
176
177 #ifndef MAX
178 #define MAX(a,b) (((a)>(b))?(a):(b))
179 #endif
180
181 /* buffer allocation schemes */
182 #if ENABLE_FEATURE_BUFFERS_GO_ON_STACK
183 #define RESERVE_CONFIG_BUFFER(buffer,len)  char buffer[len]
184 #define RESERVE_CONFIG_UBUFFER(buffer,len) unsigned char buffer[len]
185 #define RELEASE_CONFIG_BUFFER(buffer)      ((void)0)
186 #else
187 #if ENABLE_FEATURE_BUFFERS_GO_IN_BSS
188 #define RESERVE_CONFIG_BUFFER(buffer,len)  static          char buffer[len]
189 #define RESERVE_CONFIG_UBUFFER(buffer,len) static unsigned char buffer[len]
190 #define RELEASE_CONFIG_BUFFER(buffer)      ((void)0)
191 #else
192 #define RESERVE_CONFIG_BUFFER(buffer,len)  char *buffer = xmalloc(len)
193 #define RESERVE_CONFIG_UBUFFER(buffer,len) unsigned char *buffer = xmalloc(len)
194 #define RELEASE_CONFIG_BUFFER(buffer)      free(buffer)
195 #endif
196 #endif
197
198 #if defined(__GLIBC__)
199 /* glibc uses __errno_location() to get a ptr to errno */
200 /* We can just memorize it once - no multithreading in busybox :) */
201 extern int *const bb_errno;
202 #undef errno
203 #define errno (*bb_errno)
204 #endif
205
206 unsigned long long monotonic_us(void);
207 unsigned monotonic_sec(void);
208
209 extern void chomp(char *s);
210 extern void trim(char *s);
211 extern char *skip_whitespace(const char *);
212 extern char *skip_non_whitespace(const char *);
213
214 //TODO: supply a pointer to char[11] buffer (avoid statics)?
215 extern const char *bb_mode_string(mode_t mode);
216 extern int is_directory(const char *name, int followLinks, struct stat *statBuf);
217 extern int remove_file(const char *path, int flags);
218 extern int copy_file(const char *source, const char *dest, int flags);
219 enum {
220         ACTION_RECURSE        = (1 << 0),
221         ACTION_FOLLOWLINKS    = (1 << 1),
222         ACTION_FOLLOWLINKS_L0 = (1 << 2),
223         ACTION_DEPTHFIRST     = (1 << 3),
224         /*ACTION_REVERSE      = (1 << 4), - unused */
225 };
226 extern int recursive_action(const char *fileName, unsigned flags,
227         int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData, int depth),
228         int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData, int depth),
229         void* userData, unsigned depth);
230 extern int device_open(const char *device, int mode);
231 extern int get_console_fd(void);
232 extern char *find_block_device(const char *path);
233 /* bb_copyfd_XX print read/write errors and return -1 if they occur */
234 extern off_t bb_copyfd_eof(int fd1, int fd2);
235 extern off_t bb_copyfd_size(int fd1, int fd2, off_t size);
236 extern void bb_copyfd_exact_size(int fd1, int fd2, off_t size);
237 /* "short" copy can be detected by return value < size */
238 /* this helper yells "short read!" if param is not -1 */
239 extern void complain_copyfd_and_die(off_t sz) ATTRIBUTE_NORETURN;
240 extern char bb_process_escape_sequence(const char **ptr);
241 /* xxxx_strip version can modify its parameter:
242  * "/"        -> "/"
243  * "abc"      -> "abc"
244  * "abc/def"  -> "def"
245  * "abc/def/" -> "def" !!
246  */
247 extern char *bb_get_last_path_component_strip(char *path);
248 /* "abc/def/" -> "" and it never modifies 'path' */
249 extern char *bb_get_last_path_component_nostrip(const char *path);
250
251 int ndelay_on(int fd);
252 int ndelay_off(int fd);
253 int close_on_exec_on(int fd);
254 void xdup2(int, int);
255 void xmove_fd(int, int);
256
257
258 DIR *xopendir(const char *path);
259 DIR *warn_opendir(const char *path);
260
261 /* UNUSED: char *xmalloc_realpath(const char *path); */
262 char *xmalloc_readlink(const char *path);
263 char *xmalloc_readlink_or_warn(const char *path);
264 char *xrealloc_getcwd_or_warn(char *cwd);
265
266 char *xmalloc_follow_symlinks(const char *path);
267
268 //TODO: signal(sid, f) is the same? then why?
269 extern void sig_catch(int,void (*)(int));
270 //#define sig_ignore(s) (sig_catch((s), SIG_IGN))
271 //#define sig_uncatch(s) (sig_catch((s), SIG_DFL))
272 extern void sig_block(int);
273 extern void sig_unblock(int);
274 /* UNUSED: extern void sig_blocknone(void); */
275 extern void sig_pause(void);
276
277
278 void xsetgid(gid_t gid);
279 void xsetuid(uid_t uid);
280 void xchdir(const char *path);
281 void xsetenv(const char *key, const char *value);
282 void xunlink(const char *pathname);
283 void xstat(const char *pathname, struct stat *buf);
284 int xopen(const char *pathname, int flags);
285 int xopen3(const char *pathname, int flags, int mode);
286 int open_or_warn(const char *pathname, int flags);
287 int open3_or_warn(const char *pathname, int flags, int mode);
288 void xpipe(int filedes[2]);
289 off_t xlseek(int fd, off_t offset, int whence);
290 off_t fdlength(int fd);
291
292 /* Useful for having small structure members/global variables */
293 typedef int8_t socktype_t;
294 typedef int8_t family_t;
295 struct BUG_too_small {
296         char BUG_socktype_t_too_small[(0
297                         | SOCK_STREAM
298                         | SOCK_DGRAM
299                         | SOCK_RDM
300                         | SOCK_SEQPACKET
301                         | SOCK_RAW
302                         ) <= 127 ? 1 : -1];
303         char BUG_family_t_too_small[(0
304                         | AF_UNSPEC
305                         | AF_INET
306                         | AF_INET6
307                         | AF_UNIX
308                         | AF_PACKET
309                         | AF_NETLINK
310                         /* | AF_DECnet */
311                         /* | AF_IPX */
312                         ) <= 127 ? 1 : -1];
313 };
314
315
316 int xsocket(int domain, int type, int protocol);
317 void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen);
318 void xlisten(int s, int backlog);
319 void xconnect(int s, const struct sockaddr *s_addr, socklen_t addrlen);
320 ssize_t xsendto(int s, const void *buf, size_t len, const struct sockaddr *to,
321                                 socklen_t tolen);
322 /* SO_REUSEADDR allows a server to rebind to an address that is already
323  * "in use" by old connections to e.g. previous server instance which is
324  * killed or crashed. Without it bind will fail until all such connections
325  * time out. Linux does not allow multiple live binds on same ip:port
326  * regardless of SO_REUSEADDR (unlike some other flavors of Unix).
327  * Turn it on before you call bind(). */
328 void setsockopt_reuseaddr(int fd); /* On Linux this never fails. */
329 int setsockopt_broadcast(int fd);
330 /* NB: returns port in host byte order */
331 unsigned bb_lookup_port(const char *port, const char *protocol, unsigned default_port);
332 typedef struct len_and_sockaddr {
333         socklen_t len;
334         union {
335                 struct sockaddr sa;
336                 struct sockaddr_in sin;
337 #if ENABLE_FEATURE_IPV6
338                 struct sockaddr_in6 sin6;
339 #endif
340         };
341 } len_and_sockaddr;
342 enum {
343         LSA_SIZEOF_SA = sizeof(
344                 union {
345                         struct sockaddr sa;
346                         struct sockaddr_in sin;
347 #if ENABLE_FEATURE_IPV6
348                         struct sockaddr_in6 sin6;
349 #endif
350                 }
351         )
352 };
353 /* Create stream socket, and allocate suitable lsa.
354  * (lsa of correct size and lsa->sa.sa_family (AF_INET/AF_INET6))
355  * af == AF_UNSPEC will result in trying to create IPv6 socket,
356  * and if kernel doesn't support it, IPv4.
357  */
358 int xsocket_type(len_and_sockaddr **lsap, USE_FEATURE_IPV6(int af,) int sock_type);
359 int xsocket_stream(len_and_sockaddr **lsap);
360 /* Create server socket bound to bindaddr:port. bindaddr can be NULL,
361  * numeric IP ("N.N.N.N") or numeric IPv6 address,
362  * and can have ":PORT" suffix (for IPv6 use "[X:X:...:X]:PORT").
363  * Only if there is no suffix, port argument is used */
364 /* NB: these set SO_REUSEADDR before bind */
365 int create_and_bind_stream_or_die(const char *bindaddr, int port);
366 int create_and_bind_dgram_or_die(const char *bindaddr, int port);
367 /* Create client TCP socket connected to peer:port. Peer cannot be NULL.
368  * Peer can be numeric IP ("N.N.N.N"), numeric IPv6 address or hostname,
369  * and can have ":PORT" suffix (for IPv6 use "[X:X:...:X]:PORT").
370  * If there is no suffix, port argument is used */
371 int create_and_connect_stream_or_die(const char *peer, int port);
372 /* Connect to peer identified by lsa */
373 int xconnect_stream(const len_and_sockaddr *lsa);
374 /* Return malloc'ed len_and_sockaddr with socket address of host:port
375  * Currently will return IPv4 or IPv6 sockaddrs only
376  * (depending on host), but in theory nothing prevents e.g.
377  * UNIX socket address being returned, IPX sockaddr etc...
378  * On error does bb_error_msg and returns NULL */
379 len_and_sockaddr* host2sockaddr(const char *host, int port);
380 /* Version which dies on error */
381 len_and_sockaddr* xhost2sockaddr(const char *host, int port);
382 len_and_sockaddr* xdotted2sockaddr(const char *host, int port);
383 #if ENABLE_FEATURE_IPV6
384 /* Same, useful if you want to force family (e.g. IPv6) */
385 len_and_sockaddr* host_and_af2sockaddr(const char *host, int port, sa_family_t af);
386 len_and_sockaddr* xhost_and_af2sockaddr(const char *host, int port, sa_family_t af);
387 #else
388 /* [we evaluate af: think about "host_and_af2sockaddr(..., af++)"] */
389 #define host_and_af2sockaddr(host, port, af) ((void)(af), host2sockaddr((host), (port)))
390 #define xhost_and_af2sockaddr(host, port, af) ((void)(af), xhost2sockaddr((host), (port)))
391 #endif
392 /* Assign sin[6]_port member if the socket is an AF_INET[6] one,
393  * otherwise no-op. Useful for ftp.
394  * NB: does NOT do htons() internally, just direct assignment. */
395 void set_nport(len_and_sockaddr *lsa, unsigned port);
396 /* Retrieve sin[6]_port or return -1 for non-INET[6] lsa's */
397 int get_nport(const struct sockaddr *sa);
398 /* Reverse DNS. Returns NULL on failure. */
399 char* xmalloc_sockaddr2host(const struct sockaddr *sa);
400 /* This one doesn't append :PORTNUM */
401 char* xmalloc_sockaddr2host_noport(const struct sockaddr *sa);
402 /* This one also doesn't fall back to dotted IP (returns NULL) */
403 char* xmalloc_sockaddr2hostonly_noport(const struct sockaddr *sa);
404 /* inet_[ap]ton on steroids */
405 char* xmalloc_sockaddr2dotted(const struct sockaddr *sa);
406 char* xmalloc_sockaddr2dotted_noport(const struct sockaddr *sa);
407 // "old" (ipv4 only) API
408 // users: traceroute.c hostname.c - use _list_ of all IPs
409 struct hostent *xgethostbyname(const char *name);
410 // Also mount.c and inetd.c are using gethostbyname(),
411 // + inet_common.c has additional IPv4-only stuff
412
413
414 void socket_want_pktinfo(int fd);
415 ssize_t send_to_from(int fd, void *buf, size_t len, int flags,
416                 const struct sockaddr *from, const struct sockaddr *to,
417                 socklen_t tolen);
418 ssize_t recv_from_to(int fd, void *buf, size_t len, int flags,
419                 struct sockaddr *from, struct sockaddr *to,
420                 socklen_t sa_size);
421
422 char *xstrdup(const char *s);
423 char *xstrndup(const char *s, int n);
424 char *safe_strncpy(char *dst, const char *src, size_t size);
425 /* Guaranteed to NOT be a macro (smallest code). Saves nearly 2k on uclibc.
426  * But potentially slow, don't use in one-billion-times loops */
427 int bb_putchar(int ch);
428 char *xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
429 // gcc-4.1.1 still isn't good enough at optimizing it
430 // (+200 bytes compared to macro)
431 //static ALWAYS_INLINE
432 //int LONE_DASH(const char *s) { return s[0] == '-' && !s[1]; }
433 //static ALWAYS_INLINE
434 //int NOT_LONE_DASH(const char *s) { return s[0] != '-' || s[1]; }
435 #define LONE_DASH(s)     ((s)[0] == '-' && !(s)[1])
436 #define NOT_LONE_DASH(s) ((s)[0] != '-' || (s)[1])
437 #define LONE_CHAR(s,c)     ((s)[0] == (c) && !(s)[1])
438 #define NOT_LONE_CHAR(s,c) ((s)[0] != (c) || (s)[1])
439 #define DOT_OR_DOTDOT(s) ((s)[0] == '.' && (!(s)[1] || ((s)[1] == '.' && !(s)[2])))
440
441 /* dmalloc will redefine these to it's own implementation. It is safe
442  * to have the prototypes here unconditionally.  */
443 extern void *malloc_or_warn(size_t size);
444 extern void *xmalloc(size_t size);
445 extern void *xzalloc(size_t size);
446 extern void *xrealloc(void *old, size_t size);
447
448 extern ssize_t safe_read(int fd, void *buf, size_t count);
449 extern ssize_t full_read(int fd, void *buf, size_t count);
450 extern void xread(int fd, void *buf, size_t count);
451 extern unsigned char xread_char(int fd);
452 // Read one line a-la fgets. Uses one read(), works only on seekable streams
453 extern char *reads(int fd, char *buf, size_t count);
454 // Read one line a-la fgets. Reads byte-by-byte.
455 // Useful when it is important to not read ahead.
456 extern char *xmalloc_reads(int fd, char *pfx);
457 extern ssize_t read_close(int fd, void *buf, size_t count);
458 extern ssize_t open_read_close(const char *filename, void *buf, size_t count);
459 extern void *xmalloc_open_read_close(const char *filename, size_t *sizep);
460
461 extern ssize_t safe_write(int fd, const void *buf, size_t count);
462 extern ssize_t full_write(int fd, const void *buf, size_t count);
463 extern void xwrite(int fd, const void *buf, size_t count);
464
465 /* Reads and prints to stdout till eof, then closes FILE. Exits on error: */
466 extern void xprint_and_close_file(FILE *file);
467 extern char *xmalloc_fgets(FILE *file);
468 /* Read up to (and including) TERMINATING_STRING: */
469 extern char *xmalloc_fgets_str(FILE *file, const char *terminating_string);
470 /* Chops off '\n' from the end, unlike fgets: */
471 extern char *xmalloc_getline(FILE *file);
472 extern char *bb_get_chunk_from_file(FILE *file, int *end);
473 extern void die_if_ferror(FILE *file, const char *msg);
474 extern void die_if_ferror_stdout(void);
475 extern void xfflush_stdout(void);
476 extern void fflush_stdout_and_exit(int retval) ATTRIBUTE_NORETURN;
477 extern int fclose_if_not_stdin(FILE *file);
478 extern FILE *xfopen(const char *filename, const char *mode);
479 /* Prints warning to stderr and returns NULL on failure: */
480 extern FILE *fopen_or_warn(const char *filename, const char *mode);
481 /* "Opens" stdin if filename is special, else just opens file: */
482 extern FILE *fopen_or_warn_stdin(const char *filename);
483
484 /* Wrapper which restarts poll on EINTR or ENOMEM.
485  * On other errors complains [perror("poll")] and returns.
486  * Warning! May take (much) longer than timeout_ms to return!
487  * If this is a problem, use bare poll and open-code EINTR/ENOMEM handling */
488 int safe_poll(struct pollfd *ufds, nfds_t nfds, int timeout_ms);
489
490 /* Convert each alpha char in str to lower-case */
491 char* str_tolower(char *str);
492
493 char *utoa(unsigned n);
494 char *itoa(int n);
495 /* Returns a pointer past the formatted number, does NOT null-terminate */
496 char *utoa_to_buf(unsigned n, char *buf, unsigned buflen);
497 char *itoa_to_buf(int n, char *buf, unsigned buflen);
498 void smart_ulltoa5(unsigned long long ul, char buf[5]);
499 //TODO: provide pointer to buf (avoid statics)?
500 const char *make_human_readable_str(unsigned long long size,
501                 unsigned long block_size, unsigned long display_unit);
502 /* Put a string of hex bytes ("1b2e66fe"...), return advanced pointer */
503 char *bin2hex(char *buf, const char *cp, int count);
504
505 /* Last element is marked by mult == 0 */
506 struct suffix_mult {
507         char suffix[4];
508         unsigned mult;
509 };
510 #include "xatonum.h"
511 /* Specialized: */
512 /* Using xatoi() instead of naive atoi() is not always convenient -
513  * in many places people want *non-negative* values, but store them
514  * in signed int. Therefore we need this one:
515  * dies if input is not in [0, INT_MAX] range. Also will reject '-0' etc */
516 int xatoi_u(const char *numstr);
517 /* Useful for reading port numbers */
518 uint16_t xatou16(const char *numstr);
519
520
521 /* These parse entries in /etc/passwd and /etc/group.  This is desirable
522  * for BusyBox since we want to avoid using the glibc NSS stuff, which
523  * increases target size and is often not needed on embedded systems.  */
524 long xuname2uid(const char *name);
525 long xgroup2gid(const char *name);
526 /* wrapper: allows string to contain numeric uid or gid */
527 unsigned long get_ug_id(const char *s, long (*xname2id)(const char *));
528 /* from chpst. Does not die, returns 0 on failure */
529 struct bb_uidgid_t {
530         uid_t uid;
531         gid_t gid;
532 };
533 /* always sets uid and gid */
534 int get_uidgid(struct bb_uidgid_t*, const char*, int numeric_ok);
535 /* chown-like handling of "user[:[group]" */
536 void parse_chown_usergroup_or_die(struct bb_uidgid_t *u, char *user_group);
537 /* bb_getpwuid, bb_getgrgid:
538  * bb_getXXXid(buf, bufsz, id) - copy user/group name or id
539  *              as a string to buf, return user/group name or NULL
540  * bb_getXXXid(NULL, 0, id) - return user/group name or NULL
541  * bb_getXXXid(NULL, -1, id) - return user/group name or exit
542 */
543 char *bb_getpwuid(char *name, int bufsize, long uid);
544 char *bb_getgrgid(char *group, int bufsize, long gid);
545 /* versions which cache results (useful for ps, ls etc) */
546 const char* get_cached_username(uid_t uid);
547 const char* get_cached_groupname(gid_t gid);
548 void clear_username_cache(void);
549 /* internally usernames are saved in fixed-sized char[] buffers */
550 enum { USERNAME_MAX_SIZE = 16 - sizeof(int) };
551
552
553 int execable_file(const char *name);
554 char *find_execable(const char *filename);
555 int exists_execable(const char *filename);
556
557 /* BB_EXECxx always execs (it's not doing NOFORK/NOEXEC stuff),
558  * but it may exec busybox and call applet instead of searching PATH.
559  */
560 #if ENABLE_FEATURE_PREFER_APPLETS
561 int bb_execvp(const char *file, char *const argv[]);
562 #define BB_EXECVP(prog,cmd) bb_execvp(prog,cmd)
563 #define BB_EXECLP(prog,cmd,...) \
564         execlp((find_applet_by_name(prog) >= 0) ? CONFIG_BUSYBOX_EXEC_PATH : prog, \
565                 cmd, __VA_ARGS__)
566 #else
567 #define BB_EXECVP(prog,cmd)     execvp(prog,cmd)
568 #define BB_EXECLP(prog,cmd,...) execlp(prog,cmd, __VA_ARGS__)
569 #endif
570
571 /* NOMMU friendy fork+exec */
572 pid_t spawn(char **argv);
573 pid_t xspawn(char **argv);
574
575 /* Unlike waitpid, waits ONLY for one process,
576  * It's safe to pass negative 'pids' from failed [v]fork -
577  * wait4pid will return -1 (and will not clobber [v]fork's errno).
578  * IOW: rc = wait4pid(spawn(argv));
579  *      if (rc < 0) bb_perror_msg("%s", argv[0]);
580  *      if (rc > 0) bb_error_msg("exit code: %d", rc);
581  */
582 int wait4pid(int pid);
583 int wait_pid(int *wstat, int pid);
584 int wait_nohang(int *wstat);
585 #define wait_crashed(w) ((w) & 127)
586 #define wait_exitcode(w) ((w) >> 8)
587 #define wait_stopsig(w) ((w) >> 8)
588 #define wait_stopped(w) (((w) & 127) == 127)
589 /* wait4pid(spawn(argv)) + NOFORK/NOEXEC (if configured) */
590 int spawn_and_wait(char **argv);
591 struct nofork_save_area {
592         jmp_buf die_jmp;
593         const char *applet_name;
594         int xfunc_error_retval;
595         uint32_t option_mask32;
596         int die_sleep;
597         smallint saved;
598 };
599 void save_nofork_data(struct nofork_save_area *save);
600 void restore_nofork_data(struct nofork_save_area *save);
601 /* Does NOT check that applet is NOFORK, just blindly runs it */
602 int run_nofork_applet(int applet_no, char **argv);
603 int run_nofork_applet_prime(struct nofork_save_area *old, int applet_no, char **argv);
604
605 /* Helpers for daemonization.
606  *
607  * bb_daemonize(flags) = daemonize, does not compile on NOMMU
608  *
609  * bb_daemonize_or_rexec(flags, argv) = daemonizes on MMU (and ignores argv),
610  *      rexec's itself on NOMMU with argv passed as command line.
611  * Thus bb_daemonize_or_rexec may cause your <applet>_main() to be re-executed
612  * from the start. (It will detect it and not reexec again second time).
613  * You have to audit carefully that you don't do something twice as a result
614  * (opening files/sockets, parsing config files etc...)!
615  *
616  * Both of the above will redirect fd 0,1,2 to /dev/null and drop ctty
617  * (will do setsid()).
618  *
619  * forkexit_or_rexec(argv) = bare-bones "fork + parent exits" on MMU,
620  *      "vfork + re-exec ourself" on NOMMU. No fd redirection, no setsid().
621  *      Currently used for openvt. On MMU ignores argv.
622  *
623  * Helper for network daemons in foreground mode:
624  *
625  * bb_sanitize_stdio() = make sure that fd 0,1,2 are opened by opening them
626  * to /dev/null if they are not.
627  */
628 enum {
629         DAEMON_CHDIR_ROOT = 1,
630         DAEMON_DEVNULL_STDIO = 2,
631         DAEMON_CLOSE_EXTRA_FDS = 4,
632         DAEMON_ONLY_SANITIZE = 8, /* internal use */
633 };
634 #if BB_MMU
635   void forkexit_or_rexec(void);
636   enum { re_execed = 0 };
637 # define forkexit_or_rexec(argv)            forkexit_or_rexec()
638 # define bb_daemonize_or_rexec(flags, argv) bb_daemonize_or_rexec(flags)
639 # define bb_daemonize(flags)                bb_daemonize_or_rexec(flags, bogus)
640 #else
641   void re_exec(char **argv) ATTRIBUTE_NORETURN;
642   void forkexit_or_rexec(char **argv);
643   extern bool re_execed;
644 # define fork()          BUG_fork_is_unavailable_on_nommu()
645 # define daemon(a,b)     BUG_daemon_is_unavailable_on_nommu()
646 # define bb_daemonize(a) BUG_bb_daemonize_is_unavailable_on_nommu()
647 #endif
648 void bb_daemonize_or_rexec(int flags, char **argv);
649 void bb_sanitize_stdio(void);
650 /* Clear dangerous stuff, set PATH */
651 void sanitize_env_for_suid(void);
652
653
654 extern const char *opt_complementary;
655 #if ENABLE_GETOPT_LONG
656 #define No_argument "\0"
657 #define Required_argument "\001"
658 #define Optional_argument "\002"
659 extern const char *applet_long_options;
660 #endif
661 extern uint32_t option_mask32;
662 extern uint32_t getopt32(char **argv, const char *applet_opts, ...);
663
664
665 typedef struct llist_t {
666         char *data;
667         struct llist_t *link;
668 } llist_t;
669 void llist_add_to(llist_t **old_head, void *data);
670 void llist_add_to_end(llist_t **list_head, void *data);
671 void *llist_pop(llist_t **elm);
672 void llist_unlink(llist_t **head, llist_t *elm);
673 void llist_free(llist_t *elm, void (*freeit)(void *data));
674 llist_t *llist_rev(llist_t *list);
675 /* BTW, surprisingly, changing API to
676  *   llist_t *llist_add_to(llist_t *old_head, void *data)
677  * etc does not result in smaller code... */
678
679 /* start_stop_daemon and udhcpc are special - they want
680  * to create pidfiles regardless of FEATURE_PIDFILE */
681 #if ENABLE_FEATURE_PIDFILE || defined(WANT_PIDFILE)
682 /* True only if we created pidfile which is *file*, not /dev/null etc */
683 extern smallint wrote_pidfile;
684 void write_pidfile(const char *path);
685 #define remove_pidfile(path) do { if (wrote_pidfile) unlink(path); } while (0)
686 #else
687 enum { wrote_pidfile = 0 };
688 #define write_pidfile(path)  ((void)0)
689 #define remove_pidfile(path) ((void)0)
690 #endif
691
692 enum {
693         LOGMODE_NONE = 0,
694         LOGMODE_STDIO = (1 << 0),
695         LOGMODE_SYSLOG = (1 << 1) * ENABLE_FEATURE_SYSLOG,
696         LOGMODE_BOTH = LOGMODE_SYSLOG + LOGMODE_STDIO,
697 };
698 extern const char *msg_eol;
699 extern smallint logmode;
700 extern int die_sleep;
701 extern int xfunc_error_retval;
702 extern jmp_buf die_jmp;
703 extern void xfunc_die(void) ATTRIBUTE_NORETURN;
704 extern void bb_show_usage(void) ATTRIBUTE_NORETURN;
705 extern void bb_error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
706 extern void bb_error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
707 extern void bb_perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
708 extern void bb_simple_perror_msg(const char *s);
709 extern void bb_perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
710 extern void bb_simple_perror_msg_and_die(const char *s) __attribute__ ((noreturn));
711 extern void bb_herror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
712 extern void bb_herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
713 extern void bb_perror_nomsg_and_die(void) ATTRIBUTE_NORETURN;
714 extern void bb_perror_nomsg(void);
715 extern void bb_info_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
716 extern void bb_verror_msg(const char *s, va_list p, const char *strerr);
717
718 /* We need to export XXX_main from libbusybox
719  * only if we build "individual" binaries
720  */
721 #if ENABLE_FEATURE_INDIVIDUAL
722 #define MAIN_EXTERNALLY_VISIBLE EXTERNALLY_VISIBLE
723 #else
724 #define MAIN_EXTERNALLY_VISIBLE
725 #endif
726
727
728 /* applets which are useful from another applets */
729 int bb_cat(char** argv);
730 int echo_main(int argc, char** argv) MAIN_EXTERNALLY_VISIBLE;
731 int test_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
732 int kill_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
733 #if ENABLE_ROUTE
734 void bb_displayroutes(int noresolve, int netstatfmt);
735 #endif
736 int chown_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
737 #if ENABLE_GUNZIP
738 int gunzip_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
739 #endif
740 #if ENABLE_BUNZIP2
741 int bunzip2_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
742 #endif
743 int bbunpack(char **argv,
744         char* (*make_new_name)(char *filename),
745         USE_DESKTOP(long long) int (*unpacker)(void)
746 );
747
748
749 /* Networking */
750 int create_icmp_socket(void);
751 int create_icmp6_socket(void);
752 /* interface.c */
753 /* This structure defines protocol families and their handlers. */
754 struct aftype {
755         const char *name;
756         const char *title;
757         int af;
758         int alen;
759         char *(*print) (unsigned char *);
760         const char *(*sprint) (struct sockaddr *, int numeric);
761         int (*input) (/*int type,*/ const char *bufp, struct sockaddr *);
762         void (*herror) (char *text);
763         int (*rprint) (int options);
764         int (*rinput) (int typ, int ext, char **argv);
765
766         /* may modify src */
767         int (*getmask) (char *src, struct sockaddr * mask, char *name);
768 };
769 /* This structure defines hardware protocols and their handlers. */
770 struct hwtype {
771         const char *name;
772         const char *title;
773         int type;
774         int alen;
775         char *(*print) (unsigned char *);
776         int (*input) (const char *, struct sockaddr *);
777         int (*activate) (int fd);
778         int suppress_null_addr;
779 };
780 extern smallint interface_opt_a;
781 int display_interfaces(char *ifname);
782 const struct aftype *get_aftype(const char *name);
783 const struct hwtype *get_hwtype(const char *name);
784 const struct hwtype *get_hwntype(int type);
785
786
787 #ifndef BUILD_INDIVIDUAL
788 extern int find_applet_by_name(const char *name);
789 /* Returns only if applet is not found. */
790 extern void run_applet_and_exit(const char *name, char **argv);
791 extern void run_applet_no_and_exit(int a, char **argv) ATTRIBUTE_NORETURN;
792 #endif
793
794 extern int match_fstype(const struct mntent *mt, const char *fstypes);
795 extern struct mntent *find_mount_point(const char *name, const char *table);
796 extern void erase_mtab(const char * name);
797 extern unsigned int tty_baud_to_value(speed_t speed);
798 extern speed_t tty_value_to_baud(unsigned int value);
799 extern void bb_warn_ignoring_args(int n);
800
801 extern int get_linux_version_code(void);
802
803 extern char *query_loop(const char *device);
804 extern int del_loop(const char *device);
805 /* If *devname is not NULL, use that name, otherwise try to find free one,
806  * malloc and return it in *devname.
807  * return value: 1: read-only loopdev was setup, 0: rw, < 0: error */
808 extern int set_loop(char **devname, const char *file, unsigned long long offset);
809
810
811 //TODO: pass buf pointer or return allocated buf (avoid statics)?
812 char *bb_askpass(int timeout, const char * prompt);
813 int bb_ask_confirmation(void);
814
815 extern int bb_parse_mode(const char* s, mode_t* theMode);
816
817 char *concat_path_file(const char *path, const char *filename);
818 char *concat_subpath_file(const char *path, const char *filename);
819 const char *bb_basename(const char *name);
820 /* NB: can violate const-ness (similarly to strchr) */
821 char *last_char_is(const char *s, int c);
822
823
824 USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out);
825 int inflate(int in, int out);
826
827
828 int bb_make_directory(char *path, long mode, int flags);
829
830 int get_signum(const char *name);
831 const char *get_signame(int number);
832 void print_signames(void);
833
834 char *bb_simplify_path(const char *path);
835
836 #define FAIL_DELAY 3
837 extern void bb_do_delay(int seconds);
838 extern void change_identity(const struct passwd *pw);
839 extern const char *change_identity_e2str(const struct passwd *pw);
840 extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args) ATTRIBUTE_NORETURN;
841 extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args);
842 #if ENABLE_SELINUX
843 extern void renew_current_security_context(void);
844 extern void set_current_security_context(security_context_t sid);
845 extern context_t set_security_context_component(security_context_t cur_context,
846                                                 char *user, char *role, char *type, char *range);
847 extern void setfscreatecon_or_die(security_context_t scontext);
848 extern void selinux_preserve_fcontext(int fdesc);
849 #else
850 #define selinux_preserve_fcontext(fdesc) ((void)0)
851 #endif
852 extern void selinux_or_die(void);
853 extern int restricted_shell(const char *shell);
854
855 /* setup_environment:
856  * if loginshell = 1: cd(pw->pw_dir), clear environment, then set
857  *   TERM=(old value)
858  *   USER=pw->pw_name, LOGNAME=pw->pw_name
859  *   PATH=bb_default_[root_]path
860  *   HOME=pw->pw_dir
861  *   SHELL=shell
862  * else if changeenv = 1:
863  *   if not root (if pw->pw_uid != 0):
864  *     USER=pw->pw_name, LOGNAME=pw->pw_name
865  *   HOME=pw->pw_dir
866  *   SHELL=shell
867  * else does nothing
868  */
869 extern void setup_environment(const char *shell, int loginshell, int changeenv, const struct passwd *pw);
870 extern int correct_password(const struct passwd *pw);
871 /* Returns a ptr to static storage */
872 extern char *pw_encrypt(const char *clear, const char *salt);
873 extern int obscure(const char *old, const char *newval, const struct passwd *pwdp);
874
875 int index_in_str_array(const char *const string_array[], const char *key);
876 int index_in_strings(const char *strings, const char *key);
877 int index_in_substr_array(const char *const string_array[], const char *key);
878 int index_in_substrings(const char *strings, const char *key);
879 const char *nth_string(const char *strings, int n);
880
881 extern void print_login_issue(const char *issue_file, const char *tty);
882 extern void print_login_prompt(void);
883
884 /* rnd is additional random input. New one is returned.
885  * Useful if you call crypt_make_salt many times in a row:
886  * rnd = crypt_make_salt(buf1, 4, 0);
887  * rnd = crypt_make_salt(buf2, 4, rnd);
888  * rnd = crypt_make_salt(buf3, 4, rnd);
889  * (otherwise we risk having same salt generated)
890  */
891 extern int crypt_make_salt(char *p, int cnt, int rnd);
892
893 /* Returns number of lines changed, or -1 on error */
894 extern int update_passwd(const char *filename, const char *username,
895                         const char *new_pw);
896
897 /* NB: typically you want to pass fd 0, not 1. Think 'applet | grep something' */
898 int get_terminal_width_height(int fd, int *width, int *height);
899
900 int ioctl_or_perror(int fd, int request, void *argp, const char *fmt,...) __attribute__ ((format (printf, 4, 5)));
901 void ioctl_or_perror_and_die(int fd, int request, void *argp, const char *fmt,...) __attribute__ ((format (printf, 4, 5)));
902 #if ENABLE_IOCTL_HEX2STR_ERROR
903 int bb_ioctl_or_warn(int fd, int request, void *argp, const char *ioctl_name);
904 void bb_xioctl(int fd, int request, void *argp, const char *ioctl_name);
905 #define ioctl_or_warn(fd,request,argp) bb_ioctl_or_warn(fd,request,argp,#request)
906 #define xioctl(fd,request,argp)        bb_xioctl(fd,request,argp,#request)
907 #else
908 int bb_ioctl_or_warn(int fd, int request, void *argp);
909 void bb_xioctl(int fd, int request, void *argp);
910 #define ioctl_or_warn(fd,request,argp) bb_ioctl_or_warn(fd,request,argp)
911 #define xioctl(fd,request,argp)        bb_xioctl(fd,request,argp)
912 #endif
913
914 char *is_in_ino_dev_hashtable(const struct stat *statbuf);
915 void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name);
916 void reset_ino_dev_hashtable(void);
917 #ifdef __GLIBC__
918 /* At least glibc has horrendously large inline for this, so wrap it */
919 unsigned long long bb_makedev(unsigned int major, unsigned int minor);
920 #undef makedev
921 #define makedev(a,b) bb_makedev(a,b)
922 #endif
923
924
925 #if ENABLE_FEATURE_EDITING
926 /* It's NOT just ENABLEd or disabled. It's a number: */
927 #ifdef CONFIG_FEATURE_EDITING_HISTORY
928 #define MAX_HISTORY (CONFIG_FEATURE_EDITING_HISTORY + 0)
929 #else
930 #define MAX_HISTORY 0
931 #endif
932 typedef struct line_input_t {
933         int flags;
934         const char *path_lookup;
935 #if MAX_HISTORY
936         int cnt_history;
937         int cur_history;
938         USE_FEATURE_EDITING_SAVEHISTORY(const char *hist_file;)
939         char *history[MAX_HISTORY + 1];
940 #endif
941 } line_input_t;
942 enum {
943         DO_HISTORY = 1 * (MAX_HISTORY > 0),
944         SAVE_HISTORY = 2 * (MAX_HISTORY > 0) * ENABLE_FEATURE_EDITING_SAVEHISTORY,
945         TAB_COMPLETION = 4 * ENABLE_FEATURE_TAB_COMPLETION,
946         USERNAME_COMPLETION = 8 * ENABLE_FEATURE_USERNAME_COMPLETION,
947         VI_MODE = 0x10 * ENABLE_FEATURE_EDITING_VI,
948         WITH_PATH_LOOKUP = 0x20,
949         FOR_SHELL = DO_HISTORY | SAVE_HISTORY | TAB_COMPLETION | USERNAME_COMPLETION,
950 };
951 line_input_t *new_line_input_t(int flags);
952 /* Returns:
953  * -1 on read errors or EOF, or on bare Ctrl-D.
954  * 0  on ctrl-C,
955  * >0 length of input string, including terminating '\n'
956  * [is this true? stores "" in 'command' if return value is 0 or -1]
957  */
958 int read_line_input(const char* prompt, char* command, int maxsize, line_input_t *state);
959 #else
960 int read_line_input(const char* prompt, char* command, int maxsize);
961 #define read_line_input(prompt, command, maxsize, state) \
962         read_line_input(prompt, command, maxsize)
963 #endif
964
965
966 #ifndef COMM_LEN
967 #ifdef TASK_COMM_LEN
968 enum { COMM_LEN = TASK_COMM_LEN };
969 #else
970 /* synchronize with sizeof(task_struct.comm) in /usr/include/linux/sched.h */
971 enum { COMM_LEN = 16 };
972 #endif
973 #endif
974 typedef struct procps_status_t {
975         DIR *dir;
976         uint8_t shift_pages_to_bytes;
977         uint8_t shift_pages_to_kb;
978 /* Fields are set to 0/NULL if failed to determine (or not requested) */
979         char *argv0;
980         USE_SELINUX(char *context;)
981         /* Everything below must contain no ptrs to malloc'ed data:
982          * it is memset(0) for each process in procps_scan() */
983         unsigned long vsz, rss; /* we round it to kbytes */
984         unsigned long stime, utime;
985         unsigned pid;
986         unsigned ppid;
987         unsigned pgid;
988         unsigned sid;
989         unsigned uid;
990         unsigned gid;
991         unsigned tty_major,tty_minor;
992 #if ENABLE_FEATURE_TOPMEM
993         unsigned long mapped_rw;
994         unsigned long mapped_ro;
995         unsigned long shared_clean;
996         unsigned long shared_dirty;
997         unsigned long private_clean;
998         unsigned long private_dirty;
999         unsigned long stack;
1000 #endif
1001         char state[4];
1002         /* basename of executable in exec(2), read from /proc/N/stat
1003          * (if executable is symlink or script, it is NOT replaced
1004          * by link target or interpreter name) */
1005         char comm[COMM_LEN];
1006         /* user/group? - use passwd/group parsing functions */
1007 } procps_status_t;
1008 enum {
1009         PSSCAN_PID      = 1 << 0,
1010         PSSCAN_PPID     = 1 << 1,
1011         PSSCAN_PGID     = 1 << 2,
1012         PSSCAN_SID      = 1 << 3,
1013         PSSCAN_UIDGID   = 1 << 4,
1014         PSSCAN_COMM     = 1 << 5,
1015         /* PSSCAN_CMD      = 1 << 6, - use read_cmdline instead */
1016         PSSCAN_ARGV0    = 1 << 7,
1017         /* PSSCAN_EXE      = 1 << 8, - not implemented */
1018         PSSCAN_STATE    = 1 << 9,
1019         PSSCAN_VSZ      = 1 << 10,
1020         PSSCAN_RSS      = 1 << 11,
1021         PSSCAN_STIME    = 1 << 12,
1022         PSSCAN_UTIME    = 1 << 13,
1023         PSSCAN_TTY      = 1 << 14,
1024         PSSCAN_SMAPS    = (1 << 15) * ENABLE_FEATURE_TOPMEM,
1025         PSSCAN_ARGVN    = (1 << 16) * (ENABLE_PGREP | ENABLE_PKILL),
1026         USE_SELINUX(PSSCAN_CONTEXT = 1 << 17,)
1027         /* These are all retrieved from proc/NN/stat in one go: */
1028         PSSCAN_STAT     = PSSCAN_PPID | PSSCAN_PGID | PSSCAN_SID
1029                         | PSSCAN_COMM | PSSCAN_STATE
1030                         | PSSCAN_VSZ | PSSCAN_RSS
1031                         | PSSCAN_STIME | PSSCAN_UTIME
1032                         | PSSCAN_TTY,
1033 };
1034 procps_status_t* alloc_procps_scan(int flags);
1035 void free_procps_scan(procps_status_t* sp);
1036 procps_status_t* procps_scan(procps_status_t* sp, int flags);
1037 /* Format cmdline (up to col chars) into char buf[col+1] */
1038 /* Puts [comm] if cmdline is empty (-> process is a kernel thread) */
1039 void read_cmdline(char *buf, int col, unsigned pid, const char *comm);
1040 pid_t *find_pid_by_name(const char* procName);
1041 pid_t *pidlist_reverse(pid_t *pidList);
1042
1043
1044 extern const char bb_uuenc_tbl_base64[];
1045 extern const char bb_uuenc_tbl_std[];
1046 void bb_uuencode(char *store, const void *s, int length, const char *tbl);
1047
1048 typedef struct sha1_ctx_t {
1049         uint32_t count[2];
1050         uint32_t hash[5];
1051         uint32_t wbuf[16];
1052 } sha1_ctx_t;
1053 void sha1_begin(sha1_ctx_t *ctx);
1054 void sha1_hash(const void *data, size_t length, sha1_ctx_t *ctx);
1055 void *sha1_end(void *resbuf, sha1_ctx_t *ctx);
1056
1057 typedef struct md5_ctx_t {
1058         uint32_t A;
1059         uint32_t B;
1060         uint32_t C;
1061         uint32_t D;
1062         uint64_t total;
1063         uint32_t buflen;
1064         char buffer[128];
1065 } md5_ctx_t;
1066 void md5_begin(md5_ctx_t *ctx);
1067 void md5_hash(const void *data, size_t length, md5_ctx_t *ctx);
1068 void *md5_end(void *resbuf, md5_ctx_t *ctx);
1069
1070 uint32_t *crc32_filltable(uint32_t *tbl256, int endian);
1071
1072
1073 enum {  /* DO NOT CHANGE THESE VALUES!  cp.c, mv.c, install.c depend on them. */
1074         FILEUTILS_PRESERVE_STATUS = 1,
1075         FILEUTILS_DEREFERENCE = 2,
1076         FILEUTILS_RECUR = 4,
1077         FILEUTILS_FORCE = 8,
1078         FILEUTILS_INTERACTIVE = 0x10,
1079         FILEUTILS_MAKE_HARDLINK = 0x20,
1080         FILEUTILS_MAKE_SOFTLINK = 0x40,
1081 #if ENABLE_SELINUX
1082         FILEUTILS_PRESERVE_SECURITY_CONTEXT = 0x80,
1083         FILEUTILS_SET_SECURITY_CONTEXT = 0x100
1084 #endif
1085 };
1086
1087 #define FILEUTILS_CP_OPTSTR "pdRfils" USE_SELINUX("c")
1088 extern const char *applet_name;
1089 /* "BusyBox vN.N.N (timestamp or extra_vestion)" */
1090 extern const char bb_banner[];
1091 extern const char bb_msg_memory_exhausted[];
1092 extern const char bb_msg_invalid_date[];
1093 extern const char bb_msg_read_error[];
1094 extern const char bb_msg_write_error[];
1095 extern const char bb_msg_unknown[];
1096 extern const char bb_msg_can_not_create_raw_socket[];
1097 extern const char bb_msg_perm_denied_are_you_root[];
1098 extern const char bb_msg_requires_arg[];
1099 extern const char bb_msg_invalid_arg[];
1100 extern const char bb_msg_standard_input[];
1101 extern const char bb_msg_standard_output[];
1102
1103 extern const char bb_str_default[];
1104 /* NB: (bb_hexdigits_upcase[i] | 0x20) -> lowercase hex digit */
1105 extern const char bb_hexdigits_upcase[];
1106
1107 extern const char bb_path_mtab_file[];
1108 extern const char bb_path_passwd_file[];
1109 extern const char bb_path_shadow_file[];
1110 extern const char bb_path_gshadow_file[];
1111 extern const char bb_path_group_file[];
1112 extern const char bb_path_motd_file[];
1113 extern const char bb_path_wtmp_file[];
1114 extern const char bb_dev_null[];
1115 extern const char bb_busybox_exec_path[];
1116 /* util-linux manpage says /sbin:/bin:/usr/sbin:/usr/bin,
1117  * but I want to save a few bytes here */
1118 extern const char bb_PATH_root_path[]; /* "PATH=/sbin:/usr/sbin:/bin:/usr/bin" */
1119 #define bb_default_root_path (bb_PATH_root_path + sizeof("PATH"))
1120 #define bb_default_path      (bb_PATH_root_path + sizeof("PATH=/sbin:/usr/sbin"))
1121
1122 extern const int const_int_0;
1123 extern const int const_int_1;
1124
1125
1126 #ifndef BUFSIZ
1127 #define BUFSIZ 4096
1128 #endif
1129 /* Providing hard guarantee on minimum size (think of BUFSIZ == 128) */
1130 enum { COMMON_BUFSIZE = (BUFSIZ >= 256*sizeof(void*) ? BUFSIZ+1 : 256*sizeof(void*)) };
1131 extern char bb_common_bufsiz1[COMMON_BUFSIZE];
1132 /* This struct is deliberately not defined. */
1133 /* See docs/keep_data_small.txt */
1134 struct globals;
1135 /* '*const' ptr makes gcc optimize code much better.
1136  * Magic prevents ptr_to_globals from going into rodata.
1137  * If you want to assign a value, use PTR_TO_GLOBALS = xxx */
1138 extern struct globals *const ptr_to_globals;
1139 #define PTR_TO_GLOBALS (*(struct globals**)&ptr_to_globals)
1140
1141
1142 /* You can change LIBBB_DEFAULT_LOGIN_SHELL, but don't use it,
1143  * use bb_default_login_shell and following defines.
1144  * If you change LIBBB_DEFAULT_LOGIN_SHELL,
1145  * don't forget to change increment constant. */
1146 #define LIBBB_DEFAULT_LOGIN_SHELL      "-/bin/sh"
1147 extern const char bb_default_login_shell[];
1148 /* "/bin/sh" */
1149 #define DEFAULT_SHELL     (bb_default_login_shell+1)
1150 /* "sh" */
1151 #define DEFAULT_SHELL_SHORT_NAME     (bb_default_login_shell+6)
1152
1153
1154 #if ENABLE_FEATURE_DEVFS
1155 # define CURRENT_VC "/dev/vc/0"
1156 # define VC_1 "/dev/vc/1"
1157 # define VC_2 "/dev/vc/2"
1158 # define VC_3 "/dev/vc/3"
1159 # define VC_4 "/dev/vc/4"
1160 # define VC_5 "/dev/vc/5"
1161 #if defined(__sh__) || defined(__H8300H__) || defined(__H8300S__)
1162 /* Yes, this sucks, but both SH (including sh64) and H8 have a SCI(F) for their
1163    respective serial ports .. as such, we can't use the common device paths for
1164    these. -- PFM */
1165 #  define SC_0 "/dev/ttsc/0"
1166 #  define SC_1 "/dev/ttsc/1"
1167 #  define SC_FORMAT "/dev/ttsc/%d"
1168 #else
1169 #  define SC_0 "/dev/tts/0"
1170 #  define SC_1 "/dev/tts/1"
1171 #  define SC_FORMAT "/dev/tts/%d"
1172 #endif
1173 # define VC_FORMAT "/dev/vc/%d"
1174 # define LOOP_FORMAT "/dev/loop/%d"
1175 # define LOOP_NAMESIZE (sizeof("/dev/loop/") + sizeof(int)*3 + 1)
1176 # define LOOP_NAME "/dev/loop/"
1177 # define FB_0 "/dev/fb/0"
1178 #else
1179 # define CURRENT_VC "/dev/tty0"
1180 # define VC_1 "/dev/tty1"
1181 # define VC_2 "/dev/tty2"
1182 # define VC_3 "/dev/tty3"
1183 # define VC_4 "/dev/tty4"
1184 # define VC_5 "/dev/tty5"
1185 #if defined(__sh__) || defined(__H8300H__) || defined(__H8300S__)
1186 #  define SC_0 "/dev/ttySC0"
1187 #  define SC_1 "/dev/ttySC1"
1188 #  define SC_FORMAT "/dev/ttySC%d"
1189 #else
1190 #  define SC_0 "/dev/ttyS0"
1191 #  define SC_1 "/dev/ttyS1"
1192 #  define SC_FORMAT "/dev/ttyS%d"
1193 #endif
1194 # define VC_FORMAT "/dev/tty%d"
1195 # define LOOP_FORMAT "/dev/loop%d"
1196 # define LOOP_NAMESIZE (sizeof("/dev/loop") + sizeof(int)*3 + 1)
1197 # define LOOP_NAME "/dev/loop"
1198 # define FB_0 "/dev/fb0"
1199 #endif
1200
1201 /* The following devices are the same on devfs and non-devfs systems.  */
1202 #define CURRENT_TTY "/dev/tty"
1203 #define DEV_CONSOLE "/dev/console"
1204
1205
1206 #ifndef RB_POWER_OFF
1207 /* Stop system and switch power off if possible.  */
1208 #define RB_POWER_OFF   0x4321fedc
1209 #endif
1210
1211 /* Make sure we call functions instead of macros.  */
1212 #undef isalnum
1213 #undef isalpha
1214 #undef isascii
1215 #undef isblank
1216 #undef iscntrl
1217 #undef isgraph
1218 #undef islower
1219 #undef isprint
1220 #undef ispunct
1221 #undef isspace
1222 #undef isupper
1223 #undef isxdigit
1224
1225 /* This one is more efficient - we save ~400 bytes */
1226 #undef isdigit
1227 #define isdigit(a) ((unsigned)((a) - '0') <= 9)
1228
1229
1230 #ifdef DMALLOC
1231 #include <dmalloc.h>
1232 #endif
1233
1234 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
1235
1236 #endif /* __LIBBUSYBOX_H__ */