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