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