new libbb func: xmalloc_realpath (+ use it where makes sense)
[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 <malloc.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 <string.h>
28 #include <strings.h>
29 #include <sys/ioctl.h>
30 #include <sys/mman.h>
31 #include <sys/socket.h>
32 #include <sys/stat.h>
33 #include <sys/statfs.h>
34 #include <sys/time.h>
35 #include <sys/types.h>
36 #include <sys/wait.h>
37 #include <termios.h>
38 #include <time.h>
39 #include <unistd.h>
40 #include <utime.h>
41
42 #if ENABLE_SELINUX
43 #include <selinux/selinux.h>
44 #endif
45
46 #if ENABLE_LOCALE_SUPPORT
47 #include <locale.h>
48 #else
49 #define setlocale(x,y) ((void)0)
50 #endif
51
52 #include "pwd_.h"
53 #include "grp_.h"
54 /* ifdef it out, because it may include <shadow.h> */
55 /* and we may not even _have_ <shadow.h>! */
56 #if ENABLE_FEATURE_SHADOWPASSWDS
57 #include "shadow_.h"
58 #endif
59
60 /* Try to pull in PATH_MAX */
61 #include <limits.h>
62 #include <sys/param.h>
63 #ifndef PATH_MAX
64 #define PATH_MAX 256
65 #endif
66
67 /* Tested to work correctly (IIRC :]) */
68 #define MAXINT(T) (T)( \
69         ((T)-1) > 0 \
70         ? (T)-1 \
71         : (T)~((T)1 << (sizeof(T)*8-1)) \
72         )
73
74 #define MININT(T) (T)( \
75         ((T)-1) > 0 \
76         ? (T)0 \
77         : ((T)1 << (sizeof(T)*8-1)) \
78         )
79
80 /* Large file support */
81 /* Note that CONFIG_LFS forces bbox to be built with all common ops
82  * (stat, lseek etc) mapped to "largefile" variants by libc.
83  * Practically it means that open() automatically has O_LARGEFILE added
84  * and all filesize/file_offset parameters and struct members are "large"
85  * (in today's world - signed 64bit). For full support of large files,
86  * we need a few helper #defines (below) and careful use of off_t
87  * instead of int/ssize_t. No lseek64(), O_LARGEFILE etc necessary */
88 #if ENABLE_LFS
89 /* CONFIG_LFS is on */
90 # if ULONG_MAX > 0xffffffff
91 /* "long" is long enough on this system */
92 #  define XATOOFF(a) xatoul_range(a, 0, LONG_MAX)
93 /* usage: sz = BB_STRTOOFF(s, NULL, 10); if (errno || sz < 0) die(); */
94 #  define BB_STRTOOFF bb_strtoul
95 #  define STRTOOFF strtoul
96 /* usage: printf("size: %"OFF_FMT"d (%"OFF_FMT"x)\n", sz, sz); */
97 #  define OFF_FMT "l"
98 # else
99 /* "long" is too short, need "long long" */
100 #  define XATOOFF(a) xatoull_range(a, 0, LLONG_MAX)
101 #  define BB_STRTOOFF bb_strtoull
102 #  define STRTOOFF strtoull
103 #  define OFF_FMT "ll"
104 # endif
105 #else
106 /* CONFIG_LFS is off */
107 # if UINT_MAX == 0xffffffff
108 /* While sizeof(off_t) == sizeof(int), off_t is typedef'ed to long anyway.
109  * gcc will throw warnings on printf("%d", off_t). Crap... */
110 #  define XATOOFF(a) xatoi_u(a)
111 #  define BB_STRTOOFF bb_strtou
112 #  define STRTOOFF strtol
113 #  define OFF_FMT "l"
114 # else
115 #  define XATOOFF(a) xatoul_range(a, 0, LONG_MAX)
116 #  define BB_STRTOOFF bb_strtoul
117 #  define STRTOOFF strtol
118 #  define OFF_FMT "l"
119 # endif
120 #endif
121 /* scary. better ideas? (but do *test* them first!) */
122 #define OFF_T_MAX  ((off_t)~((off_t)1 << (sizeof(off_t)*8-1)))
123
124 /* Some useful definitions */
125 #undef FALSE
126 #define FALSE   ((int) 0)
127 #undef TRUE
128 #define TRUE    ((int) 1)
129 #undef SKIP
130 #define SKIP    ((int) 2)
131
132 /* for mtab.c */
133 #define MTAB_GETMOUNTPT '1'
134 #define MTAB_GETDEVICE  '2'
135
136 #define BUF_SIZE        8192
137 #define EXPAND_ALLOC    1024
138
139 /* Macros for min/max.  */
140 #ifndef MIN
141 #define MIN(a,b) (((a)<(b))?(a):(b))
142 #endif
143
144 #ifndef MAX
145 #define MAX(a,b) (((a)>(b))?(a):(b))
146 #endif
147
148 /* buffer allocation schemes */
149 #if ENABLE_FEATURE_BUFFERS_GO_ON_STACK
150 #define RESERVE_CONFIG_BUFFER(buffer,len)           char buffer[len]
151 #define RESERVE_CONFIG_UBUFFER(buffer,len) unsigned char buffer[len]
152 #define RELEASE_CONFIG_BUFFER(buffer)      ((void)0)
153 #else
154 #if ENABLE_FEATURE_BUFFERS_GO_IN_BSS
155 #define RESERVE_CONFIG_BUFFER(buffer,len)  static          char buffer[len]
156 #define RESERVE_CONFIG_UBUFFER(buffer,len) static unsigned char buffer[len]
157 #define RELEASE_CONFIG_BUFFER(buffer)      ((void)0)
158 #else
159 #define RESERVE_CONFIG_BUFFER(buffer,len)           char *buffer=xmalloc(len)
160 #define RESERVE_CONFIG_UBUFFER(buffer,len) unsigned char *buffer=xmalloc(len)
161 #define RELEASE_CONFIG_BUFFER(buffer)      free (buffer)
162 #endif
163 #endif
164
165
166 #if defined(__GLIBC__) && __GLIBC__ < 2
167 int vdprintf(int d, const char *format, va_list ap);
168 #endif
169 // This is declared here rather than #including <libgen.h> in order to avoid
170 // confusing the two versions of basename.  See the dirname/basename man page
171 // for details.
172 char *dirname(char *path);
173 /* Include our own copy of struct sysinfo to avoid binary compatibility
174  * problems with Linux 2.4, which changed things.  Grumble, grumble. */
175 struct sysinfo {
176         long uptime;                    /* Seconds since boot */
177         unsigned long loads[3];         /* 1, 5, and 15 minute load averages */
178         unsigned long totalram;         /* Total usable main memory size */
179         unsigned long freeram;          /* Available memory size */
180         unsigned long sharedram;        /* Amount of shared memory */
181         unsigned long bufferram;        /* Memory used by buffers */
182         unsigned long totalswap;        /* Total swap space size */
183         unsigned long freeswap;         /* swap space still available */
184         unsigned short procs;           /* Number of current processes */
185         unsigned short pad;                     /* Padding needed for m68k */
186         unsigned long totalhigh;        /* Total high memory size */
187         unsigned long freehigh;         /* Available high memory size */
188         unsigned int mem_unit;          /* Memory unit size in bytes */
189         char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
190 };
191 extern int sysinfo(struct sysinfo* info);
192
193
194 /* Size-saving "small" ints (arch-dependent) */
195 #if defined(i386) || defined (__mips__)
196 /* add other arches which benefit from this... */
197 typedef signed char smallint;
198 typedef unsigned char smalluint;
199 #else
200 /* for arches where byte accesses generate larger code: */
201 typedef int smallint;
202 typedef unsigned smalluint;
203 #endif
204
205
206 extern void chomp(char *s);
207 extern void trim(char *s);
208 extern char *skip_whitespace(const char *);
209 extern char *skip_non_whitespace(const char *);
210
211 extern const char *bb_mode_string(int mode);
212 extern int is_directory(const char *name, int followLinks, struct stat *statBuf);
213 extern int remove_file(const char *path, int flags);
214 extern int copy_file(const char *source, const char *dest, int flags);
215 extern int recursive_action(const char *fileName, int recurse,
216         int followLinks, int depthFirst,
217         int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData, int depth),
218         int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData, int depth),
219         void* userData, int depth);
220 extern int device_open(const char *device, int mode);
221 extern int get_console_fd(void);
222 extern char *find_block_device(char *path);
223 /* bb_copyfd_XX print read/write errors and return -1 if they occur */
224 extern off_t bb_copyfd_eof(int fd1, int fd2);
225 extern off_t bb_copyfd_size(int fd1, int fd2, off_t size);
226 extern void bb_copyfd_exact_size(int fd1, int fd2, off_t size);
227 /* "short" copy can be detected by return value < size */
228 /* this helper yells "short read!" if param is not -1 */
229 extern void complain_copyfd_and_die(off_t sz) ATTRIBUTE_NORETURN;
230 extern char bb_process_escape_sequence(const char **ptr);
231 extern char *bb_get_last_path_component(char *path);
232 extern int ndelay_on(int fd);
233 extern int ndelay_off(int fd);
234
235
236 extern DIR *xopendir(const char *path);
237 extern DIR *warn_opendir(const char *path);
238
239 char *xgetcwd(char *cwd);
240 char *xreadlink(const char *path);
241 char *xmalloc_realpath(const char *path);
242 extern void xstat(char *filename, struct stat *buf);
243 extern pid_t spawn(char **argv);
244 extern pid_t xspawn(char **argv);
245 extern int wait4pid(int pid);
246 extern void xsetgid(gid_t gid);
247 extern void xsetuid(uid_t uid);
248 extern void xdaemon(int nochdir, int noclose);
249 extern void xchdir(const char *path);
250 extern void xsetenv(const char *key, const char *value);
251 extern int xopen(const char *pathname, int flags);
252 extern int xopen3(const char *pathname, int flags, int mode);
253 extern off_t xlseek(int fd, off_t offset, int whence);
254 extern off_t fdlength(int fd);
255
256
257 extern int xsocket(int domain, int type, int protocol);
258 extern void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen);
259 extern void xlisten(int s, int backlog);
260 extern void xconnect(int s, const struct sockaddr *s_addr, socklen_t addrlen);
261 extern int xconnect_tcp_v4(struct sockaddr_in *s_addr);
262 extern struct hostent *xgethostbyname(const char *name);
263 extern struct hostent *xgethostbyname2(const char *name, int af);
264 extern int xsocket_stream_ip4or6(sa_family_t *fp);
265 typedef union {
266         struct sockaddr sa;
267         struct sockaddr_in sin;
268 #if ENABLE_FEATURE_IPV6
269         struct sockaddr_in6 sin6;
270 #endif
271 } sockaddr_inet;
272 extern int dotted2sockaddr(const char *dotted, struct sockaddr* sp, int socklen);
273 extern int create_and_bind_socket_ip4or6(const char *hostaddr, int port);
274 extern int setsockopt_reuseaddr(int fd);
275 extern int setsockopt_broadcast(int fd);
276
277
278 extern char *xstrdup(const char *s);
279 extern char *xstrndup(const char *s, int n);
280 extern char *safe_strncpy(char *dst, const char *src, size_t size);
281 extern char *xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
282 // gcc-4.1.1 still isn't good enough at optimizing it
283 // (+200 bytes compared to macro)
284 //static ATTRIBUTE_ALWAYS_INLINE
285 //int LONE_DASH(const char *s) { return s[0] == '-' && !s[1]; }
286 //static ATTRIBUTE_ALWAYS_INLINE
287 //int NOT_LONE_DASH(const char *s) { return s[0] != '-' || s[1]; }
288 #define LONE_DASH(s) ((s)[0] == '-' && !(s)[1])
289 #define NOT_LONE_DASH(s) ((s)[0] != '-' || (s)[1])
290 #define LONE_CHAR(s,c) ((s)[0] == (c) && !(s)[1])
291 #define NOT_LONE_CHAR(s,c) ((s)[0] != (c) || (s)[1])
292
293 /* dmalloc will redefine these to it's own implementation. It is safe
294  * to have the prototypes here unconditionally.  */
295 extern void *xmalloc(size_t size);
296 extern void *xrealloc(void *old, size_t size);
297 extern void *xzalloc(size_t size);
298
299 extern ssize_t safe_read(int fd, void *buf, size_t count);
300 extern ssize_t full_read(int fd, void *buf, size_t count);
301 extern void xread(int fd, void *buf, size_t count);
302 extern unsigned char xread_char(int fd);
303 extern char *reads(int fd, char *buf, size_t count);
304 extern ssize_t read_close(int fd, void *buf, size_t count);
305 extern ssize_t open_read_close(const char *filename, void *buf, size_t count);
306 extern void *xmalloc_open_read_close(const char *filename, size_t *sizep);
307
308 extern ssize_t safe_write(int fd, const void *buf, size_t count);
309 extern ssize_t full_write(int fd, const void *buf, size_t count);
310 extern void xwrite(int fd, const void *buf, size_t count);
311
312 /* Reads and prints to stdout till eof, then closes FILE. Exits on error: */
313 extern void xprint_and_close_file(FILE *file);
314 extern char *xmalloc_fgets(FILE *file);
315 /* Read up to (and including) TERMINATING_STRING: */
316 extern char *xmalloc_fgets_str(FILE *file, const char *terminating_string);
317 /* Chops off '\n' from the end, unlike fgets: */
318 extern char *xmalloc_getline(FILE *file);
319 extern char *bb_get_chunk_from_file(FILE *file, int *end);
320 extern void die_if_ferror(FILE *file, const char *msg);
321 extern void die_if_ferror_stdout(void);
322 extern void xfflush_stdout(void);
323 extern void fflush_stdout_and_exit(int retval) ATTRIBUTE_NORETURN;
324 extern int fclose_if_not_stdin(FILE *file);
325 extern FILE *xfopen(const char *filename, const char *mode);
326 /* Prints warning to stderr and returns NULL on failure: */
327 extern FILE *fopen_or_warn(const char *filename, const char *mode);
328 /* "Opens" stdin if filename is special, else just opens file: */
329 extern FILE *fopen_or_warn_stdin(const char *filename);
330
331
332 extern void smart_ulltoa5(unsigned long long ul, char buf[5]);
333 extern void utoa_to_buf(unsigned n, char *buf, unsigned buflen);
334 extern char *utoa(unsigned n);
335 extern void itoa_to_buf(int n, char *buf, unsigned buflen);
336 extern char *itoa(int n);
337
338 struct suffix_mult {
339         const char *suffix;
340         unsigned mult;
341 };
342 #include "xatonum.h"
343 /* Specialized: */
344 /* Using xatoi() instead of naive atoi() is not always convenient -
345  * in many places people want *non-negative* values, but store them
346  * in signed int. Therefore we need this one:
347  * dies if input is not in [0, INT_MAX] range. Also will reject '-0' etc */
348 int xatoi_u(const char *numstr);
349 /* Useful for reading port numbers */
350 uint16_t xatou16(const char *numstr);
351
352
353 /* These parse entries in /etc/passwd and /etc/group.  This is desirable
354  * for BusyBox since we want to avoid using the glibc NSS stuff, which
355  * increases target size and is often not needed on embedded systems.  */
356 extern long xuname2uid(const char *name);
357 extern long xgroup2gid(const char *name);
358 /* wrapper: allows string to contain numeric uid or gid */
359 extern unsigned long get_ug_id(const char *s, long (*xname2id)(const char *));
360 /* from chpst. Does not die, returns 0 on failure */
361 struct bb_uidgid_t {
362         uid_t uid;
363         gid_t gid;
364 };
365 extern int get_uidgid(struct bb_uidgid_t*, const char*, int numeric_ok);
366 /* what is this? */
367 /*extern char *bb_getug(char *buffer, char *idname, long id, int bufsize, char prefix);*/
368 extern char *bb_getpwuid(char *name, long uid, int bufsize);
369 extern char *bb_getgrgid(char *group, long gid, int bufsize);
370
371
372 enum { BB_GETOPT_ERROR = 0x80000000 };
373 extern const char *opt_complementary;
374 #if ENABLE_GETOPT_LONG
375 extern const struct option *applet_long_options;
376 #endif
377 extern uint32_t option_mask32;
378 extern uint32_t getopt32(int argc, char **argv, const char *applet_opts, ...);
379
380
381 typedef struct llist_s {
382         char *data;
383         struct llist_s *link;
384 } llist_t;
385 extern void llist_add_to(llist_t **old_head, void *data);
386 extern void llist_add_to_end(llist_t **list_head, void *data);
387 extern void *llist_pop(llist_t **elm);
388 extern void llist_free(llist_t *elm, void (*freeit)(void *data));
389 extern llist_t* rev_llist(llist_t *list);
390
391 enum {
392         LOGMODE_NONE = 0,
393         LOGMODE_STDIO = 1<<0,
394         LOGMODE_SYSLOG = 1<<1,
395         LOGMODE_BOTH = LOGMODE_SYSLOG + LOGMODE_STDIO,
396 };
397 extern const char *msg_eol;
398 extern int logmode;
399 extern int die_sleep;
400 extern int xfunc_error_retval;
401 extern void sleep_and_die(void) ATTRIBUTE_NORETURN;
402 extern void bb_show_usage(void) ATTRIBUTE_NORETURN ATTRIBUTE_EXTERNALLY_VISIBLE;
403 extern void bb_error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
404 extern void bb_error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
405 extern void bb_perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
406 extern void bb_perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
407 extern void bb_vherror_msg(const char *s, va_list p);
408 extern void bb_herror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
409 extern void bb_herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
410 extern void bb_perror_nomsg_and_die(void) ATTRIBUTE_NORETURN;
411 extern void bb_perror_nomsg(void);
412 extern void bb_info_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
413 /* These are used internally -- you shouldn't need to use them */
414 extern void bb_verror_msg(const char *s, va_list p, const char *strerr);
415 extern void bb_vperror_msg(const char *s, va_list p);
416 extern void bb_vinfo_msg(const char *s, va_list p);
417
418
419 /* applets which are useful from another applets */
420 extern int bb_cat(char** argv);
421 extern int bb_echo(char** argv);
422 extern int bb_test(int argc, char** argv);
423
424
425 /* Networking */
426 int create_icmp_socket(void);
427 int create_icmp6_socket(void);
428 /* interface.c */
429 extern int interface_opt_a;
430 int display_interfaces(char *ifname);
431
432
433 #ifndef BUILD_INDIVIDUAL
434 extern struct BB_applet *find_applet_by_name(const char *name);
435 extern void run_applet_by_name(const char *name, int argc, char **argv);
436 #endif
437
438 extern struct mntent *find_mount_point(const char *name, const char *table);
439 extern void erase_mtab(const char * name);
440 extern unsigned int tty_baud_to_value(speed_t speed);
441 extern speed_t tty_value_to_baud(unsigned int value);
442 extern void bb_warn_ignoring_args(int n);
443
444 extern int get_linux_version_code(void);
445
446 extern char *query_loop(const char *device);
447 extern int del_loop(const char *device);
448 extern int set_loop(char **device, const char *file, unsigned long long offset);
449
450
451 const char *make_human_readable_str(unsigned long long size,
452                 unsigned long block_size, unsigned long display_unit);
453
454 char *bb_askpass(int timeout, const char * prompt);
455 int bb_ask_confirmation(void);
456 int klogctl(int type, char * b, int len);
457
458 extern int bb_parse_mode(const char* s, mode_t* theMode);
459
460 char *concat_path_file(const char *path, const char *filename);
461 char *concat_subpath_file(const char *path, const char *filename);
462 char *last_char_is(const char *s, int c);
463
464 int execable_file(const char *name);
465 char *find_execable(const char *filename);
466 int exists_execable(const char *filename);
467
468 USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out);
469 int inflate(int in, int out);
470
471
472 unsigned short bb_lookup_port(const char *port, const char *protocol, unsigned short default_port);
473 void bb_lookup_host(struct sockaddr_in *s_in, const char *host);
474
475 int bb_make_directory(char *path, long mode, int flags);
476
477 int get_signum(const char *name);
478 const char *get_signame(int number);
479
480 char *bb_simplify_path(const char *path);
481
482 #define FAIL_DELAY 3
483 extern void bb_do_delay(int seconds);
484 extern void change_identity(const struct passwd *pw);
485 extern const char *change_identity_e2str(const struct passwd *pw);
486 extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args);
487 #if ENABLE_SELINUX
488 extern void renew_current_security_context(void);
489 extern void set_current_security_context(security_context_t sid);
490 #endif
491 extern int restricted_shell(const char *shell);
492 extern void setup_environment(const char *shell, int loginshell, int changeenv, const struct passwd *pw);
493 extern int correct_password(const struct passwd *pw);
494 extern char *pw_encrypt(const char *clear, const char *salt);
495 extern int obscure(const char *old, const char *newval, const struct passwd *pwdp);
496 extern int index_in_str_array(const char * const string_array[], const char *key);
497 extern int index_in_substr_array(const char * const string_array[], const char *key);
498 extern void print_login_issue(const char *issue_file, const char *tty);
499 extern void print_login_prompt(void);
500 #ifdef BB_NOMMU
501 extern void vfork_daemon(int nochdir, int noclose);
502 extern void vfork_daemon_rexec(int nochdir, int noclose,
503                 int argc, char **argv, char *foreground_opt);
504 #endif
505 extern int get_terminal_width_height(int fd, int *width, int *height);
506
507 int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name);
508 void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name);
509 void reset_ino_dev_hashtable(void);
510 #ifdef __GLIBC__
511 /* At least glibc has horrendously large inline for this, so wrap it */
512 extern unsigned long long bb_makedev(unsigned int major, unsigned int minor);
513 #undef makedev
514 #define makedev(a,b) bb_makedev(a,b)
515 #endif
516
517
518 #ifndef COMM_LEN
519 #ifdef TASK_COMM_LEN
520 enum { COMM_LEN = TASK_COMM_LEN };
521 #else
522 /* synchronize with sizeof(task_struct.comm) in /usr/include/linux/sched.h */
523 enum { COMM_LEN = 16 };
524 #endif
525 #endif
526 typedef struct {
527         DIR *dir;
528 /* Fields are set to 0/NULL if failed to determine (or not requested) */
529         char *cmd;
530         unsigned long rss;
531         unsigned long stime, utime;
532         unsigned pid;
533         unsigned ppid;
534         unsigned pgid;
535         unsigned sid;
536         unsigned uid;
537         unsigned gid;
538         /* basename of executable file in call to exec(2), size from */
539         /* sizeof(task_struct.comm) in /usr/include/linux/sched.h */
540         char state[4];
541         char comm[COMM_LEN];
542 //      user/group? - use passwd/group parsing functions
543 } procps_status_t;
544 enum {
545         PSSCAN_PID      = 1 << 0,
546         PSSCAN_PPID     = 1 << 1,
547         PSSCAN_PGID     = 1 << 2,
548         PSSCAN_SID      = 1 << 3,
549         PSSCAN_UIDGID   = 1 << 4,
550         PSSCAN_COMM     = 1 << 5,
551         PSSCAN_CMD      = 1 << 6,
552         PSSCAN_STATE    = 1 << 7,
553         PSSCAN_RSS      = 1 << 8,
554         PSSCAN_STIME    = 1 << 9,
555         PSSCAN_UTIME    = 1 << 10,
556         /* These are all retrieved from proc/NN/stat in one go: */
557         PSSCAN_STAT     = PSSCAN_PPID | PSSCAN_PGID | PSSCAN_SID
558                         | PSSCAN_COMM | PSSCAN_STATE
559                         | PSSCAN_RSS | PSSCAN_STIME | PSSCAN_UTIME,
560 };
561 procps_status_t* alloc_procps_scan(int flags);
562 void free_procps_scan(procps_status_t* sp);
563 procps_status_t* procps_scan(procps_status_t* sp, int flags);
564 pid_t *find_pid_by_name(const char* procName);
565 pid_t *pidlist_reverse(pid_t *pidList);
566 void clear_username_cache(void);
567 const char* get_cached_username(uid_t uid);
568 const char* get_cached_groupname(gid_t gid);
569
570
571 extern const char bb_uuenc_tbl_base64[];
572 extern const char bb_uuenc_tbl_std[];
573 void bb_uuencode(const unsigned char *s, char *store, const int length, const char *tbl);
574
575 typedef struct sha1_ctx_t {
576         uint32_t count[2];
577         uint32_t hash[5];
578         uint32_t wbuf[16];
579 } sha1_ctx_t;
580 void sha1_begin(sha1_ctx_t *ctx);
581 void sha1_hash(const void *data, size_t length, sha1_ctx_t *ctx);
582 void *sha1_end(void *resbuf, sha1_ctx_t *ctx);
583
584 typedef struct md5_ctx_t {
585         uint32_t A;
586         uint32_t B;
587         uint32_t C;
588         uint32_t D;
589         uint64_t total;
590         uint32_t buflen;
591         char buffer[128];
592 } md5_ctx_t;
593 void md5_begin(md5_ctx_t *ctx);
594 void md5_hash(const void *data, size_t length, md5_ctx_t *ctx);
595 void *md5_end(void *resbuf, md5_ctx_t *ctx);
596
597 uint32_t *crc32_filltable(int endian);
598
599
600 enum {  /* DO NOT CHANGE THESE VALUES!  cp.c depends on them. */
601         FILEUTILS_PRESERVE_STATUS = 1,
602         FILEUTILS_DEREFERENCE = 2,
603         FILEUTILS_RECUR = 4,
604         FILEUTILS_FORCE = 8,
605         FILEUTILS_INTERACTIVE = 0x10,
606         FILEUTILS_MAKE_HARDLINK = 0x20,
607         FILEUTILS_MAKE_SOFTLINK = 0x40,
608 };
609 #define FILEUTILS_CP_OPTSTR "pdRfils"
610
611 extern const char *applet_name;
612 extern const char BB_BANNER[];
613
614 extern const char bb_msg_full_version[];
615 extern const char bb_msg_memory_exhausted[];
616 extern const char bb_msg_invalid_date[];
617 extern const char bb_msg_read_error[];
618 extern const char bb_msg_write_error[];
619 extern const char bb_msg_unknown[];
620 extern const char bb_msg_can_not_create_raw_socket[];
621 extern const char bb_msg_perm_denied_are_you_root[];
622 extern const char bb_msg_requires_arg[];
623 extern const char bb_msg_invalid_arg[];
624 extern const char bb_msg_standard_input[];
625 extern const char bb_msg_standard_output[];
626
627 extern const char bb_str_default[];
628
629 extern const char bb_path_mtab_file[];
630 extern const char bb_path_nologin_file[];
631 extern const char bb_path_passwd_file[];
632 extern const char bb_path_shadow_file[];
633 extern const char bb_path_gshadow_file[];
634 extern const char bb_path_group_file[];
635 extern const char bb_path_securetty_file[];
636 extern const char bb_path_motd_file[];
637 extern const char bb_path_wtmp_file[];
638 extern const char bb_dev_null[];
639
640 #ifndef BUFSIZ
641 #define BUFSIZ 4096
642 #endif
643 extern char bb_common_bufsiz1[BUFSIZ+1];
644
645 /* You can change LIBBB_DEFAULT_LOGIN_SHELL, but don't use it,
646  * use bb_default_login_shell and following defines.
647  * If you change LIBBB_DEFAULT_LOGIN_SHELL,
648  * don't forget to change increment constant. */
649 #define LIBBB_DEFAULT_LOGIN_SHELL      "-/bin/sh"
650 extern const char bb_default_login_shell[];
651 /* "/bin/sh" */
652 #define DEFAULT_SHELL     (bb_default_login_shell+1)
653 /* "sh" */
654 #define DEFAULT_SHELL_SHORT_NAME     (bb_default_login_shell+6)
655
656
657 #if ENABLE_FEATURE_DEVFS
658 # define CURRENT_VC "/dev/vc/0"
659 # define VC_1 "/dev/vc/1"
660 # define VC_2 "/dev/vc/2"
661 # define VC_3 "/dev/vc/3"
662 # define VC_4 "/dev/vc/4"
663 # define VC_5 "/dev/vc/5"
664 #if defined(__sh__) || defined(__H8300H__) || defined(__H8300S__)
665 /* Yes, this sucks, but both SH (including sh64) and H8 have a SCI(F) for their
666    respective serial ports .. as such, we can't use the common device paths for
667    these. -- PFM */
668 #  define SC_0 "/dev/ttsc/0"
669 #  define SC_1 "/dev/ttsc/1"
670 #  define SC_FORMAT "/dev/ttsc/%d"
671 #else
672 #  define SC_0 "/dev/tts/0"
673 #  define SC_1 "/dev/tts/1"
674 #  define SC_FORMAT "/dev/tts/%d"
675 #endif
676 # define VC_FORMAT "/dev/vc/%d"
677 # define LOOP_FORMAT "/dev/loop/%d"
678 # define LOOP_NAME "/dev/loop/"
679 # define FB_0 "/dev/fb/0"
680 #else
681 # define CURRENT_VC "/dev/tty0"
682 # define VC_1 "/dev/tty1"
683 # define VC_2 "/dev/tty2"
684 # define VC_3 "/dev/tty3"
685 # define VC_4 "/dev/tty4"
686 # define VC_5 "/dev/tty5"
687 #if defined(__sh__) || defined(__H8300H__) || defined(__H8300S__)
688 #  define SC_0 "/dev/ttySC0"
689 #  define SC_1 "/dev/ttySC1"
690 #  define SC_FORMAT "/dev/ttySC%d"
691 #else
692 #  define SC_0 "/dev/ttyS0"
693 #  define SC_1 "/dev/ttyS1"
694 #  define SC_FORMAT "/dev/ttyS%d"
695 #endif
696 # define VC_FORMAT "/dev/tty%d"
697 # define LOOP_FORMAT "/dev/loop%d"
698 # define LOOP_NAME "/dev/loop"
699 # define FB_0 "/dev/fb0"
700 #endif
701
702 /* The following devices are the same on devfs and non-devfs systems.  */
703 #define CURRENT_TTY "/dev/tty"
704 #define CONSOLE_DEV "/dev/console"
705
706
707 #ifndef RB_POWER_OFF
708 /* Stop system and switch power off if possible.  */
709 #define RB_POWER_OFF   0x4321fedc
710 #endif
711
712 /* Make sure we call functions instead of macros.  */
713 #undef isalnum
714 #undef isalpha
715 #undef isascii
716 #undef isblank
717 #undef iscntrl
718 #undef isgraph
719 #undef islower
720 #undef isprint
721 #undef ispunct
722 #undef isspace
723 #undef isupper
724 #undef isxdigit
725
726 /* This one is more efficient - we save ~400 bytes */
727 #undef isdigit
728 #define isdigit(a) ((unsigned)((a) - '0') <= 9)
729
730
731 #ifdef DMALLOC
732 #include <dmalloc.h>
733 #endif
734
735 #endif /* __LIBBUSYBOX_H__ */