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