7b3ac4b85783894ff284e17fd826fb405f0f21f7
[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 <stdarg.h>
29 #include <sys/stat.h>
30 #include <sys/types.h>
31 #include <termios.h>
32
33 #include <netdb.h>
34
35 #ifdef DMALLOC
36 #include <dmalloc.h>
37 #endif
38
39 #include <features.h>
40
41 #include "config.h"
42
43 #include "pwd_.h"
44 #include "grp_.h"
45 #ifdef CONFIG_FEATURE_SHADOWPASSWDS
46 #include "shadow_.h"
47 #endif
48 #ifdef CONFIG_FEATURE_SHA1_PASSWORDS
49 # include "sha1.h"
50 #endif
51
52 /* Compatability with ANSI C */
53 #ifndef inline
54 # define inline
55 #endif
56
57 #if (__GNU_LIBRARY__ < 5) && (!defined __dietlibc__)
58 /* libc5 doesn't define socklen_t */
59 #ifndef _SOCKLEN_T
60 #define _SOCKLEN_T
61 typedef unsigned int socklen_t;
62 #endif
63 /* libc5 doesn't implement BSD 4.4 daemon() */
64 extern int daemon (int nochdir, int noclose);
65 /* libc5 doesn't implement strtok_r */
66 char *strtok_r(char *s, const char *delim, char **ptrptr);
67 #endif  
68
69 /* Convenience macros to test the version of gcc. */
70 #if defined __GNUC__ && defined __GNUC_MINOR__
71 # define __GNUC_PREREQ(maj, min) \
72         ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
73 #else
74 # define __GNUC_PREREQ(maj, min) 0
75 #endif
76
77 /* __restrict is known in EGCS 1.2 and above. */
78 #if !__GNUC_PREREQ (2,92)
79 # define __restrict     /* Ignore */
80 #endif
81
82 /* Some useful definitions */
83 #define FALSE   ((int) 0)
84 #define TRUE    ((int) 1)
85 #define SKIP    ((int) 2)
86
87 /* for mtab.c */
88 #define MTAB_GETMOUNTPT '1'
89 #define MTAB_GETDEVICE  '2'
90
91 #define BUF_SIZE        8192
92 #define EXPAND_ALLOC    1024
93
94 /* Macros for min/max.  */
95 #ifndef MIN
96 #define MIN(a,b) (((a)<(b))?(a):(b))
97 #endif
98
99 #ifndef MAX
100 #define MAX(a,b) (((a)>(b))?(a):(b))
101 #endif
102
103 extern void bb_show_usage(void) __attribute__ ((noreturn));
104 extern void bb_error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
105 extern void bb_error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
106 extern void bb_perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
107 extern void bb_perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
108 extern void bb_vherror_msg(const char *s, va_list p);
109 extern void bb_herror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
110 extern void bb_herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
111
112 extern void bb_perror_nomsg_and_die(void) __attribute__ ((noreturn));
113 extern void bb_perror_nomsg(void);
114
115 /* These two are used internally -- you shouldn't need to use them */
116 extern void bb_verror_msg(const char *s, va_list p) __attribute__ ((format (printf, 1, 0)));
117 extern void bb_vperror_msg(const char *s, va_list p)  __attribute__ ((format (printf, 1, 0)));
118
119 extern const char *bb_mode_string(int mode);
120 extern int is_directory(const char *name, int followLinks, struct stat *statBuf);
121
122 extern int remove_file(const char *path, int flags);
123 extern int copy_file(const char *source, const char *dest, int flags);
124 extern ssize_t safe_read(int fd, void *buf, size_t count);
125 extern ssize_t bb_full_write(int fd, const void *buf, size_t len);
126 extern ssize_t bb_full_read(int fd, void *buf, size_t len);
127 extern int recursive_action(const char *fileName, int recurse,
128           int followLinks, int depthFirst,
129           int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData),
130           int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData),
131           void* userData);
132
133 extern int bb_parse_mode( const char* s, mode_t* theMode);
134 extern long bb_xgetlarg(const char *arg, int base, long lower, long upper);
135
136 extern unsigned long bb_baud_to_value(speed_t speed);
137 extern speed_t bb_value_to_baud(unsigned long value);
138
139 extern int get_kernel_revision(void);
140
141 extern int get_console_fd(void);
142 extern struct mntent *find_mount_point(const char *name, const char *table);
143 extern void write_mtab(char* blockDevice, char* directory, 
144                                            char* filesystemType, long flags, char* string_flags);
145 extern void erase_mtab(const char * name);
146 extern long *find_pid_by_name( const char* pidName);
147 extern char *find_real_root_device_name(const char* name);
148 extern char *bb_get_line_from_file(FILE *file);
149 extern char *bb_get_chomped_line_from_file(FILE *file);
150 extern int   bb_copyfd(int fd1, int fd2, const off_t chunksize);
151 extern void  bb_xprint_and_close_file(FILE *file);
152 extern int   bb_xprint_file_by_name(const char *filename);
153 extern char  bb_process_escape_sequence(const char **ptr);
154 extern char *bb_get_last_path_component(char *path);
155 extern FILE *bb_wfopen(const char *path, const char *mode);
156 extern FILE *bb_xfopen(const char *path, const char *mode);
157
158 //#warning rename?
159 extern int   bb_fclose_nonstdin(FILE *f);
160 extern void  bb_fflush_stdout_and_exit(int retval) __attribute__ ((noreturn));
161
162 extern const char *bb_opt_complementaly;
163 extern const struct option *bb_applet_long_options;
164 extern unsigned long bb_getopt_ulflags(int argc, char **argv, const char *applet_opts, ...);
165
166 //#warning rename?
167 extern FILE *bb_wfopen_input(const char *filename);
168
169 extern int bb_vfprintf(FILE * __restrict stream, const char * __restrict format,
170                                            va_list arg) __attribute__ ((format (printf, 2, 0)));
171 extern int bb_vprintf(const char * __restrict format, va_list arg)
172         __attribute__ ((format (printf, 1, 0)));
173 extern int bb_fprintf(FILE * __restrict stream, const char * __restrict format, ...)
174         __attribute__ ((format (printf, 2, 3)));
175 extern int bb_printf(const char * __restrict format, ...)
176         __attribute__ ((format (printf, 1, 2)));
177
178 //#warning rename to xferror_filename?
179 extern void bb_xferror(FILE *fp, const char *fn);
180 extern void bb_xferror_stdout(void);
181 extern void bb_xfflush_stdout(void);
182
183 extern void bb_warn_ignoring_args(int n);
184
185 extern void chomp(char *s);
186 extern void trim(char *s);
187 extern const char *bb_skip_whitespace(const char *);
188
189 extern struct BB_applet *find_applet_by_name(const char *name);
190 void run_applet_by_name(const char *name, int argc, char **argv);
191
192 //#warning is this needed anymore?
193 #ifndef DMALLOC
194 extern void *xmalloc (size_t size);
195 extern void *xrealloc(void *old, size_t size);
196 extern void *xcalloc(size_t nmemb, size_t size);
197 extern char *bb_xstrdup (const char *s);
198 #endif
199 extern char *bb_xstrndup (const char *s, int n);
200 extern char * safe_strncpy(char *dst, const char *src, size_t size);
201
202 struct suffix_mult {
203         const char *suffix;
204         unsigned int mult;
205 };
206
207 extern unsigned long bb_xgetularg_bnd_sfx(const char *arg, int base,
208                                                                                   unsigned long lower,
209                                                                                   unsigned long upper,
210                                                                                   const struct suffix_mult *suffixes);
211 extern unsigned long bb_xgetularg_bnd(const char *arg, int base,
212                                                                           unsigned long lower,
213                                                                           unsigned long upper);
214 extern unsigned long bb_xgetularg10_bnd(const char *arg,
215                                                                                 unsigned long lower,
216                                                                                 unsigned long upper);
217 extern unsigned long bb_xgetularg10(const char *arg);
218
219 extern long bb_xgetlarg_bnd_sfx(const char *arg, int base,
220                                                                 long lower,
221                                                                 long upper,
222                                                                 const struct suffix_mult *suffixes);
223 extern long bb_xgetlarg10_sfx(const char *arg, const struct suffix_mult *suffixes);
224
225
226 //#warning pitchable now?
227 extern unsigned long bb_xparse_number(const char *numstr,
228                 const struct suffix_mult *suffixes);
229
230
231 //#warning change names?
232
233 /* These parse entries in /etc/passwd and /etc/group.  This is desirable
234  * for BusyBox since we want to avoid using the glibc NSS stuff, which
235  * increases target size and is often not needed embedded systems.  */
236 extern long my_getpwnam(const char *name);
237 extern long my_getgrnam(const char *name);
238 extern char * my_getpwuid(char *name, long uid);
239 extern char * my_getgrgid(char *group, long gid);
240 extern long my_getpwnamegid(const char *name);
241
242 extern int device_open(const char *device, int mode);
243
244 extern int del_loop(const char *device);
245 extern int set_loop(const char *device, const char *file, int offset, int *loopro);
246 extern char *find_unused_loop_device (void);
247
248
249 #if (__GLIBC__ < 2)
250 extern int vdprintf(int d, const char *format, va_list ap);
251 #endif
252
253 int nfsmount(const char *spec, const char *node, int *flags,
254              char **extra_opts, char **mount_opts, int running_bg);
255
256 void syslog_msg_with_name(const char *name, int facility, int pri, const char *msg);
257 void syslog_msg(int facility, int pri, const char *msg);
258
259 /* Include our own copy of struct sysinfo to avoid binary compatability
260  * problems with Linux 2.4, which changed things.  Grumble, grumble. */
261 struct sysinfo {
262         long uptime;                    /* Seconds since boot */
263         unsigned long loads[3];         /* 1, 5, and 15 minute load averages */
264         unsigned long totalram;         /* Total usable main memory size */
265         unsigned long freeram;          /* Available memory size */
266         unsigned long sharedram;        /* Amount of shared memory */
267         unsigned long bufferram;        /* Memory used by buffers */
268         unsigned long totalswap;        /* Total swap space size */
269         unsigned long freeswap;         /* swap space still available */
270         unsigned short procs;           /* Number of current processes */
271         unsigned short pad;                     /* Padding needed for m68k */
272         unsigned long totalhigh;        /* Total high memory size */
273         unsigned long freehigh;         /* Available high memory size */
274         unsigned int mem_unit;          /* Memory unit size in bytes */
275         char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
276 };
277 extern int sysinfo (struct sysinfo* info);
278
279 enum {
280         KILOBYTE = 1024,
281         MEGABYTE = (KILOBYTE*1024),
282         GIGABYTE = (MEGABYTE*1024)
283 };
284 const char *make_human_readable_str(unsigned long size, unsigned long block_size, unsigned long display_unit);
285
286 int bb_ask_confirmation(void);
287 int klogctl(int type, char * b, int len);
288
289 char *xgetcwd(char *cwd);
290 char *xreadlink(const char *path);
291 char *concat_path_file(const char *path, const char *filename);
292 char *concat_subpath_file(const char *path, const char *filename);
293 char *last_char_is(const char *s, int c);
294
295 extern long arith (const char *startbuf, int *errcode);
296
297 int read_package_field(const char *package_buffer, char **field_name, char **field_value);
298 //#warning yuk!
299 char *fgets_str(FILE *file, const char *terminating_string);
300
301 extern int uncompress(int fd_in, int fd_out);
302 extern int inflate(int in, int out);
303
304 extern struct hostent *xgethostbyname(const char *name);
305 extern struct hostent *xgethostbyname2(const char *name, int af);
306 extern int create_icmp_socket(void);
307 extern int create_icmp6_socket(void);
308 extern int xconnect(const char *host, const char *port);
309
310 //#warning wrap this?
311 char *dirname (char *path);
312
313 int bb_make_directory (char *path, long mode, int flags);
314
315 const char *u_signal_names(const char *str_sig, int *signo, int startnum);
316 char *bb_simplify_path(const char *path);
317
318 enum {  /* DO NOT CHANGE THESE VALUES!  cp.c depends on them. */
319         FILEUTILS_PRESERVE_STATUS = 1,
320         FILEUTILS_DEREFERENCE = 2,
321         FILEUTILS_RECUR = 4,
322         FILEUTILS_FORCE = 8,
323         FILEUTILS_INTERACTIVE = 16
324 };
325
326 extern const char *bb_applet_name;
327
328 extern const char * const bb_msg_full_version;
329 extern const char * const bb_msg_memory_exhausted;
330 extern const char * const bb_msg_invalid_date;
331 extern const char * const bb_msg_io_error;
332 extern const char * const bb_msg_write_error;
333 extern const char * const bb_msg_name_longer_than_foo;
334 extern const char * const bb_msg_unknown;
335 extern const char * const bb_msg_can_not_create_raw_socket;
336 extern const char * const bb_msg_perm_denied_are_you_root;
337 extern const char * const bb_msg_standard_input;
338 extern const char * const bb_msg_standard_output;
339
340 extern const char * const bb_path_nologin_file;
341 extern const char * const bb_path_passwd_file;
342 extern const char * const bb_path_shadow_file;
343 extern const char * const bb_path_gshadow_file;
344 extern const char * const bb_path_group_file;
345 extern const char * const bb_path_securetty_file;
346 extern const char * const bb_path_motd_file;
347
348 extern const char bb_path_mtab_file[];
349
350 extern int bb_default_error_retval;
351
352 #ifdef CONFIG_FEATURE_DEVFS
353 # define CURRENT_VC "/dev/vc/0"
354 # define VC_1 "/dev/vc/1"
355 # define VC_2 "/dev/vc/2"
356 # define VC_3 "/dev/vc/3"
357 # define VC_4 "/dev/vc/4"
358 # define VC_5 "/dev/vc/5"
359 # define SC_0 "/dev/tts/0"
360 # define SC_1 "/dev/tts/1"
361 # define VC_FORMAT "/dev/vc/%d"
362 # define SC_FORMAT "/dev/tts/%d"
363 # define LOOP_FORMAT "/dev/loop/%d"
364 #else
365 # define CURRENT_VC "/dev/tty0"
366 # define VC_1 "/dev/tty1"
367 # define VC_2 "/dev/tty2"
368 # define VC_3 "/dev/tty3"
369 # define VC_4 "/dev/tty4"
370 # define VC_5 "/dev/tty5"
371 # define SC_0 "/dev/ttyS0"
372 # define SC_1 "/dev/ttyS1"
373 # define VC_FORMAT "/dev/tty%d"
374 # define SC_FORMAT "/dev/ttyS%d"
375 # define LOOP_FORMAT "/dev/loop%d"
376 #endif
377
378 //#warning put these in .o files
379
380 /* The following devices are the same on devfs and non-devfs systems.  */
381 #define CURRENT_TTY "/dev/tty"
382 #define CONSOLE_DEV "/dev/console"
383
384 int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name);
385 void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name);
386 void reset_ino_dev_hashtable(void);
387
388 /* Stupid gcc always includes its own builtin strlen()... */
389 extern size_t bb_strlen(const char *string);
390 #define strlen(x)   bb_strlen(x)
391
392 void bb_xasprintf(char **string_ptr, const char *format, ...) __attribute__ ((format (printf, 2, 3)));
393
394
395 #define FAIL_DELAY    3
396 extern void change_identity ( const struct passwd *pw );
397 extern void run_shell ( const char *shell, int loginshell, const char *command, const char **additional_args );
398 extern int run_parts(char **args, const unsigned char test_mode);
399 extern int restricted_shell ( const char *shell );
400 extern void setup_environment ( const char *shell, int loginshell, int changeenv, const struct passwd *pw );
401 extern int correct_password ( const struct passwd *pw );
402 extern char *pw_encrypt(const char *clear, const char *salt);
403 extern struct spwd *pwd_to_spwd(const struct passwd *pw);
404 extern int obscure(const char *old, const char *newval, const struct passwd *pwdp);
405
406 extern int bb_xopen(const char *pathname, int flags);
407 extern ssize_t bb_xread(int fd, void *buf, size_t count);
408 extern void bb_xread_all(int fd, void *buf, size_t count);
409 extern unsigned char bb_xread_char(int fd);
410
411 typedef struct {
412         int pid;
413         char user[9];
414         char state[4];
415         unsigned long rss;
416         int ppid;
417 #ifdef FEATURE_CPU_USAGE_PERCENTAGE
418         unsigned pcpu;
419         unsigned long stime, utime;
420 #endif
421         char *cmd;
422
423         /* basename of executable file in call to exec(2),
424                 size from kernel headers */
425         char short_cmd[16];
426 } procps_status_t;
427
428 extern procps_status_t * procps_scan(int save_user_arg0);
429 extern unsigned short compare_string_array(const char *string_array[], const char *key);
430
431 extern int my_query_module(const char *name, int which, void **buf, size_t *bufsize, size_t *ret);
432
433 typedef struct llist_s {
434         char *data;
435         struct llist_s *link;
436 } llist_t;
437 extern llist_t *llist_add_to(llist_t *old_head, char *new_item);
438
439 void print_login_issue(const char *issue_file, const char *tty);
440 void print_login_prompt(void);
441
442 #endif /* __LIBCONFIG_H__ */