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