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