- typos: s/compatability/compatibility/g;s/compatable/compatible/g;
[oweals/busybox.git] / include / libbb.h
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Busybox main internal header file
4  *
5  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
6  *
7  * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
8  * Permission has been granted to redistribute this code under the GPL.
9  *
10  */
11 #ifndef __LIBBUSYBOX_H__
12 #define __LIBBUSYBOX_H__    1
13
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <stdarg.h>
17 #include <sys/types.h>
18 #include <sys/stat.h>
19 #include <termios.h>
20 #include <stdint.h>
21
22 #include <netdb.h>
23
24 #include <features.h>
25
26 #include "platform.h"
27 #include "bb_config.h"
28 #ifdef CONFIG_SELINUX
29 #include <selinux/selinux.h>
30 #endif
31
32 #include "pwd_.h"
33 #include "grp_.h"
34 #ifdef CONFIG_FEATURE_SHADOWPASSWDS
35 #include "shadow_.h"
36 #endif
37 #ifdef CONFIG_FEATURE_SHA1_PASSWORDS
38 # include "sha1.h"
39 #endif
40
41 /* Some useful definitions */
42 #define FALSE   ((int) 0)
43 #define TRUE    ((int) 1)
44 #define SKIP    ((int) 2)
45
46 /* for mtab.c */
47 #define MTAB_GETMOUNTPT '1'
48 #define MTAB_GETDEVICE  '2'
49
50 #define BUF_SIZE        8192
51 #define EXPAND_ALLOC    1024
52
53 /* Macros for min/max.  */
54 #ifndef MIN
55 #define MIN(a,b) (((a)<(b))?(a):(b))
56 #endif
57
58 #ifndef MAX
59 #define MAX(a,b) (((a)>(b))?(a):(b))
60 #endif
61
62 extern void bb_show_usage(void) ATTRIBUTE_NORETURN ATTRIBUTE_EXTERNALLY_VISIBLE;
63 extern void bb_error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
64 extern void bb_error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
65 extern void bb_perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
66 extern void bb_perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
67 extern void bb_vherror_msg(const char *s, va_list p);
68 extern void bb_herror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
69 extern void bb_herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
70
71 extern void bb_perror_nomsg_and_die(void) ATTRIBUTE_NORETURN;
72 extern void bb_perror_nomsg(void);
73
74 /* These two are used internally -- you shouldn't need to use them */
75 extern void bb_verror_msg(const char *s, va_list p) __attribute__ ((format (printf, 1, 0)));
76 extern void bb_vperror_msg(const char *s, va_list p)  __attribute__ ((format (printf, 1, 0)));
77
78 extern int bb_echo(int argc, char** argv);
79
80 extern const char *bb_mode_string(int mode);
81 extern int is_directory(const char *name, int followLinks, struct stat *statBuf);
82
83 extern int remove_file(const char *path, int flags);
84 extern int copy_file(const char *source, const char *dest, int flags);
85 extern ssize_t safe_read(int fd, void *buf, size_t count);
86 extern ssize_t bb_full_read(int fd, void *buf, size_t len);
87 extern ssize_t safe_write(int fd, const void *buf, size_t count);
88 extern ssize_t bb_full_write(int fd, const void *buf, size_t len);
89 extern int recursive_action(const char *fileName, int recurse,
90           int followLinks, int depthFirst,
91           int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData),
92           int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData),
93           void* userData);
94
95 extern int bb_parse_mode( const char* s, mode_t* theMode);
96 extern long bb_xgetlarg(const char *arg, int base, long lower, long upper);
97
98 extern unsigned long bb_baud_to_value(speed_t speed);
99 extern speed_t bb_value_to_baud(unsigned long value);
100
101 extern int get_kernel_revision(void);
102
103 extern int get_console_fd(void);
104 extern struct mntent *find_mount_point(const char *name, const char *table);
105 extern void erase_mtab(const char * name);
106 extern long *find_pid_by_name( const char* pidName);
107 extern long *pidlist_reverse(long *pidList);
108 extern char *find_block_device(char *path);
109 extern char *bb_get_line_from_file(FILE *file);
110 extern char *bb_get_chomped_line_from_file(FILE *file);
111 extern char *bb_get_chunk_from_file(FILE *file, int *end);
112 extern int bb_copyfd_size(int fd1, int fd2, const off_t size);
113 extern int bb_copyfd_eof(int fd1, int fd2);
114 extern void  bb_xprint_and_close_file(FILE *file);
115 extern int   bb_xprint_file_by_name(const char *filename);
116 extern char  bb_process_escape_sequence(const char **ptr);
117 extern char *bb_get_last_path_component(char *path);
118 extern FILE *bb_wfopen(const char *path, const char *mode);
119 extern FILE *bb_wfopen_input(const char *filename);
120 extern FILE *bb_xfopen(const char *path, const char *mode);
121
122 extern int   bb_fclose_nonstdin(FILE *f);
123 extern void  bb_fflush_stdout_and_exit(int retval) ATTRIBUTE_NORETURN;
124
125 extern void xstat(const char *filename, struct stat *buf);
126
127 #define BB_GETOPT_ERROR 0x80000000UL
128 extern const char *bb_opt_complementally;
129 extern const struct option *bb_applet_long_options;
130 extern unsigned long bb_getopt_ulflags(int argc, char **argv, const char *applet_opts, ...);
131
132 extern int bb_vfprintf(FILE * __restrict stream, const char * __restrict format,
133                                            va_list arg) __attribute__ ((format (printf, 2, 0)));
134 extern int bb_vprintf(const char * __restrict format, va_list arg)
135         __attribute__ ((format (printf, 1, 0)));
136 extern int bb_fprintf(FILE * __restrict stream, const char * __restrict format, ...)
137         __attribute__ ((format (printf, 2, 3)));
138 extern int bb_printf(const char * __restrict format, ...)
139         __attribute__ ((format (printf, 1, 2)));
140
141 //#warning rename to xferror_filename?
142 extern void bb_xferror(FILE *fp, const char *fn);
143 extern void bb_xferror_stdout(void);
144 extern void bb_xfflush_stdout(void);
145
146 extern void bb_warn_ignoring_args(int n);
147
148 extern void chomp(char *s);
149 extern void trim(char *s);
150 extern const char *bb_skip_whitespace(const char *);
151
152 extern struct BB_applet *find_applet_by_name(const char *name);
153 void run_applet_by_name(const char *name, int argc, char **argv);
154
155 /* dmalloc will redefine these to it's own implementation. It is safe
156  * to have the prototypes here unconditionally.  */
157 extern void *xmalloc(size_t size);
158 extern void *xrealloc(void *old, size_t size);
159 extern void *xcalloc(size_t nmemb, size_t size);
160
161 extern char *bb_xstrdup (const char *s);
162 extern char *bb_xstrndup (const char *s, int n);
163 extern char *safe_strncpy(char *dst, const char *src, size_t size);
164 extern int safe_strtoi(char *arg, int* value);
165 extern int safe_strtod(char *arg, double* value);
166 extern int safe_strtol(char *arg, long* value);
167 extern int safe_strtoul(char *arg, unsigned long* value);
168
169 struct suffix_mult {
170         const char *suffix;
171         unsigned int mult;
172 };
173
174 extern unsigned long bb_xgetularg_bnd_sfx(const char *arg, int base,
175                                                                                   unsigned long lower,
176                                                                                   unsigned long upper,
177                                                                                   const struct suffix_mult *suffixes);
178 extern unsigned long bb_xgetularg_bnd(const char *arg, int base,
179                                                                           unsigned long lower,
180                                                                           unsigned long upper);
181 extern unsigned long bb_xgetularg10_bnd(const char *arg,
182                                                                                 unsigned long lower,
183                                                                                 unsigned long upper);
184 extern unsigned long bb_xgetularg10(const char *arg);
185
186 extern long bb_xgetlarg_bnd_sfx(const char *arg, int base,
187                                                                 long lower,
188                                                                 long upper,
189                                                                 const struct suffix_mult *suffixes);
190 extern long bb_xgetlarg10_sfx(const char *arg, const struct suffix_mult *suffixes);
191
192
193 //#warning pitchable now?
194 extern unsigned long bb_xparse_number(const char *numstr,
195                 const struct suffix_mult *suffixes);
196
197
198 /* These parse entries in /etc/passwd and /etc/group.  This is desirable
199  * for BusyBox since we want to avoid using the glibc NSS stuff, which
200  * increases target size and is often not needed on embedded systems.  */
201 extern long bb_xgetpwnam(const char *name);
202 extern long bb_xgetgrnam(const char *name);
203 extern char * bb_getug(char *buffer, char *idname, long id, int bufsize, char prefix);
204 extern char * bb_getpwuid(char *name, long uid, int bufsize);
205 extern char * bb_getgrgid(char *group, long gid, int bufsize);
206 extern char *bb_askpass(int timeout, const char * prompt);
207
208 extern int device_open(const char *device, int mode);
209
210 extern char *query_loop(const char *device);
211 extern int del_loop(const char *device);
212 extern int set_loop(char **device, const char *file, int offset);
213
214 #if (__GLIBC__ < 2)
215 extern int vdprintf(int d, const char *format, va_list ap);
216 #endif
217
218 int nfsmount(const char *spec, const char *node, int *flags,
219              char **mount_opts, int running_bg);
220
221 /* Include our own copy of struct sysinfo to avoid binary compatibility
222  * problems with Linux 2.4, which changed things.  Grumble, grumble. */
223 struct sysinfo {
224         long uptime;                    /* Seconds since boot */
225         unsigned long loads[3];         /* 1, 5, and 15 minute load averages */
226         unsigned long totalram;         /* Total usable main memory size */
227         unsigned long freeram;          /* Available memory size */
228         unsigned long sharedram;        /* Amount of shared memory */
229         unsigned long bufferram;        /* Memory used by buffers */
230         unsigned long totalswap;        /* Total swap space size */
231         unsigned long freeswap;         /* swap space still available */
232         unsigned short procs;           /* Number of current processes */
233         unsigned short pad;                     /* Padding needed for m68k */
234         unsigned long totalhigh;        /* Total high memory size */
235         unsigned long freehigh;         /* Available high memory size */
236         unsigned int mem_unit;          /* Memory unit size in bytes */
237         char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
238 };
239 extern int sysinfo (struct sysinfo* info);
240
241 enum {
242         KILOBYTE = 1024,
243         MEGABYTE = (KILOBYTE*1024),
244         GIGABYTE = (MEGABYTE*1024)
245 };
246 const char *make_human_readable_str(unsigned long long size,
247                 unsigned long block_size, unsigned long display_unit);
248
249 int bb_ask_confirmation(void);
250 int klogctl(int type, char * b, int len);
251
252 char *xgetcwd(char *cwd);
253 char *xreadlink(const char *path);
254 char *concat_path_file(const char *path, const char *filename);
255 char *concat_subpath_file(const char *path, const char *filename);
256 char *last_char_is(const char *s, int c);
257
258 int read_package_field(const char *package_buffer, char **field_name, char **field_value);
259 //#warning yuk!
260 char *fgets_str(FILE *file, const char *terminating_string);
261
262 extern int uncompress(int fd_in, int fd_out);
263 extern int inflate(int in, int out);
264
265 extern struct hostent *xgethostbyname(const char *name);
266 extern struct hostent *xgethostbyname2(const char *name, int af);
267 extern int create_icmp_socket(void);
268 extern int create_icmp6_socket(void);
269 extern int xconnect(struct sockaddr_in *s_addr);
270 extern unsigned short bb_lookup_port(const char *port, const char *protocol, unsigned short default_port);
271 extern void bb_lookup_host(struct sockaddr_in *s_in, const char *host);
272
273 //#warning wrap this?
274 char *dirname (char *path);
275
276 int bb_make_directory (char *path, long mode, int flags);
277
278 const char *u_signal_names(const char *str_sig, int *signo, int startnum);
279 char *bb_simplify_path(const char *path);
280
281 enum {  /* DO NOT CHANGE THESE VALUES!  cp.c depends on them. */
282         FILEUTILS_PRESERVE_STATUS = 1,
283         FILEUTILS_DEREFERENCE = 2,
284         FILEUTILS_RECUR = 4,
285         FILEUTILS_FORCE = 8,
286         FILEUTILS_INTERACTIVE = 16
287 };
288
289 extern const char *bb_applet_name;
290
291 extern const char * const bb_msg_full_version;
292 extern const char * const bb_msg_memory_exhausted;
293 extern const char * const bb_msg_invalid_date;
294 extern const char * const bb_msg_io_error;
295 extern const char * const bb_msg_read_error;
296 extern const char * const bb_msg_write_error;
297 extern const char * const bb_msg_name_longer_than_foo;
298 extern const char * const bb_msg_unknown;
299 extern const char * const bb_msg_can_not_create_raw_socket;
300 extern const char * const bb_msg_perm_denied_are_you_root;
301 extern const char * const bb_msg_standard_input;
302 extern const char * const bb_msg_standard_output;
303
304 extern const char * const bb_path_nologin_file;
305 extern const char * const bb_path_passwd_file;
306 extern const char * const bb_path_shadow_file;
307 extern const char * const bb_path_gshadow_file;
308 extern const char * const bb_path_group_file;
309 extern const char * const bb_path_securetty_file;
310 extern const char * const bb_path_motd_file;
311 extern const char * const bb_dev_null;
312
313 #ifndef BUFSIZ
314 #define BUFSIZ 4096
315 #endif
316 extern char bb_common_bufsiz1[BUFSIZ+1];
317
318 /*
319  * You can change LIBBB_DEFAULT_LOGIN_SHELL, but don`t use,
320  * use bb_default_login_shell and next defines,
321  * if you LIBBB_DEFAULT_LOGIN_SHELL change,
322  * don`t lose change increment constant!
323  */
324 #define LIBBB_DEFAULT_LOGIN_SHELL      "-/bin/sh"
325
326 extern const char * const bb_default_login_shell;
327 /* "/bin/sh" */
328 #define DEFAULT_SHELL     (bb_default_login_shell+1)
329 /* "sh" */
330 #define DEFAULT_SHELL_SHORT_NAME     (bb_default_login_shell+6)
331
332
333 extern const char bb_path_mtab_file[];
334
335 extern int bb_default_error_retval;
336
337 #ifdef CONFIG_FEATURE_DEVFS
338 # define CURRENT_VC "/dev/vc/0"
339 # define VC_1 "/dev/vc/1"
340 # define VC_2 "/dev/vc/2"
341 # define VC_3 "/dev/vc/3"
342 # define VC_4 "/dev/vc/4"
343 # define VC_5 "/dev/vc/5"
344 #if defined(__sh__) || defined(__H8300H__) || defined(__H8300S__)
345 /* Yes, this sucks, but both SH (including sh64) and H8 have a SCI(F) for their
346    respective serial ports .. as such, we can't use the common device paths for
347    these. -- PFM */
348 #  define SC_0 "/dev/ttsc/0"
349 #  define SC_1 "/dev/ttsc/1"
350 #  define SC_FORMAT "/dev/ttsc/%d"
351 #else
352 #  define SC_0 "/dev/tts/0"
353 #  define SC_1 "/dev/tts/1"
354 #  define SC_FORMAT "/dev/tts/%d"
355 #endif
356 # define VC_FORMAT "/dev/vc/%d"
357 # define LOOP_FORMAT "/dev/loop/%d"
358 # define FB_0 "/dev/fb/0"
359 #else
360 # define CURRENT_VC "/dev/tty0"
361 # define VC_1 "/dev/tty1"
362 # define VC_2 "/dev/tty2"
363 # define VC_3 "/dev/tty3"
364 # define VC_4 "/dev/tty4"
365 # define VC_5 "/dev/tty5"
366 #if defined(__sh__) || defined(__H8300H__) || defined(__H8300S__)
367 #  define SC_0 "/dev/ttySC0"
368 #  define SC_1 "/dev/ttySC1"
369 #  define SC_FORMAT "/dev/ttySC%d"
370 #else
371 #  define SC_0 "/dev/ttyS0"
372 #  define SC_1 "/dev/ttyS1"
373 #  define SC_FORMAT "/dev/ttyS%d"
374 #endif
375 # define VC_FORMAT "/dev/tty%d"
376 # define LOOP_FORMAT "/dev/loop%d"
377 # define FB_0 "/dev/fb0"
378 #endif
379
380 //#warning put these in .o files
381
382 /* The following devices are the same on devfs and non-devfs systems.  */
383 #define CURRENT_TTY "/dev/tty"
384 #define CONSOLE_DEV "/dev/console"
385
386 int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name);
387 void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name);
388 void reset_ino_dev_hashtable(void);
389
390 /* Stupid gcc always includes its own builtin strlen()... */
391 extern size_t bb_strlen(const char *string);
392 #ifndef BB_STRLEN_IMPLEMENTATION
393 #define strlen(x)   bb_strlen(x)
394 #endif
395
396 char *bb_xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
397
398 #define FAIL_DELAY    3
399 extern void bb_do_delay(int seconds);
400 extern void change_identity ( const struct passwd *pw );
401 extern const char *change_identity_e2str ( const struct passwd *pw );
402 extern void run_shell ( const char *shell, int loginshell, const char *command, const char **additional_args);
403 #ifdef CONFIG_SELINUX
404 extern void renew_current_security_context(void);
405 extern void set_current_security_context(security_context_t sid);
406 #endif
407 extern int run_parts(char **args, const unsigned char test_mode, char **env);
408 extern int restricted_shell ( const char *shell );
409 extern void setup_environment ( const char *shell, int loginshell, int changeenv, const struct passwd *pw );
410 extern int correct_password ( const struct passwd *pw );
411 extern char *pw_encrypt(const char *clear, const char *salt);
412 extern struct spwd *pwd_to_spwd(const struct passwd *pw);
413 extern int obscure(const char *old, const char *newval, const struct passwd *pwdp);
414
415 extern int bb_xopen(const char *pathname, int flags);
416 extern ssize_t bb_xread(int fd, void *buf, size_t count);
417 extern void bb_xread_all(int fd, void *buf, size_t count);
418 extern unsigned char bb_xread_char(int fd);
419
420 #ifndef COMM_LEN
421 /*#include <sched.h> *//* Task command name length */
422 #ifdef TASK_COMM_LEN
423 #define COMM_LEN TASK_COMM_LEN
424 #else
425 #define COMM_LEN 16 /* synchronize with size of comm in struct task_struct
426                                                                   in /usr/include/linux/sched.h */
427 #endif
428 #endif
429 typedef struct {
430         int pid;
431         char user[9];
432         char state[4];
433         unsigned long rss;
434         int ppid;
435 #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
436         unsigned pcpu;
437         unsigned pscpu;
438         unsigned long stime, utime;
439 #endif
440         char *cmd;
441
442         /* basename of executable file in call to exec(2),
443                 size from kernel headers */
444         char short_cmd[COMM_LEN];
445 } procps_status_t;
446
447 extern procps_status_t * procps_scan(int save_user_arg0);
448 extern int compare_string_array(const char * const string_array[], const char *key);
449
450 extern int my_query_module(const char *name, int which, void **buf, size_t *bufsize, size_t *ret);
451
452 typedef struct llist_s {
453         char *data;
454         struct llist_s *link;
455 } llist_t;
456 extern llist_t *llist_add_to(llist_t *old_head, char *new_item);
457 extern llist_t *llist_add_to_end(llist_t *list_head, char *data);
458 extern llist_t *llist_free_one(llist_t *elm);
459 extern void llist_free(llist_t *elm);
460
461 extern void print_login_issue(const char *issue_file, const char *tty);
462 extern void print_login_prompt(void);
463
464 extern void vfork_daemon_rexec(int nochdir, int noclose,
465                 int argc, char **argv, char *foreground_opt);
466 extern int get_terminal_width_height(int fd, int *width, int *height);
467 extern unsigned long get_ug_id(const char *s, long (*__bb_getxxnam)(const char *));
468
469 typedef struct _sha1_ctx_t_ {
470         uint32_t count[2];
471         uint32_t hash[5];
472         uint32_t wbuf[16];
473 } sha1_ctx_t;
474
475 void sha1_begin(sha1_ctx_t *ctx);
476 void sha1_hash(const void *data, size_t length, sha1_ctx_t *ctx);
477 void *sha1_end(void *resbuf, sha1_ctx_t *ctx);
478
479 typedef struct _md5_ctx_t_ {
480         uint32_t A;
481         uint32_t B;
482         uint32_t C;
483         uint32_t D;
484         uint32_t total[2];
485         uint32_t buflen;
486         char buffer[128];
487 } md5_ctx_t;
488
489 void md5_begin(md5_ctx_t *ctx);
490 void md5_hash(const void *data, size_t length, md5_ctx_t *ctx);
491 void *md5_end(void *resbuf, md5_ctx_t *ctx);
492
493 /* busybox.h will include dmalloc later for us, else include it here.  */
494 #if !defined _BB_INTERNAL_H_ && defined DMALLOC
495 #include <dmalloc.h>
496 #endif
497
498 #endif /* __LIBBUSYBOX_H__ */