make_directory used mode as if it were an signed entity, but in fact
[oweals/busybox.git] / libbb / 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 __LIBBB_H__
25 #define __LIBBB_H__    1
26
27 #include <stdio.h>
28 #include <stdarg.h>
29 #include <sys/stat.h>
30 #include <sys/types.h>
31
32 #include <netdb.h>
33
34 #ifdef DMALLOC
35 #include "dmalloc.h"
36 #endif
37
38 #include <features.h>
39
40 #ifndef _BB_INTERNAL_H_
41 #include "../busybox.h"
42 #endif
43
44 #if (__GNU_LIBRARY__ < 5) && (!defined __dietlibc__)
45 /* libc5 doesn't define socklen_t */
46 typedef unsigned int socklen_t;
47 /* libc5 doesn't implement BSD 4.4 daemon() */
48 extern int daemon (int nochdir, int noclose);
49 #endif  
50
51 /* Some useful definitions */
52 #define FALSE   ((int) 0)
53 #define TRUE    ((int) 1)
54 #define SKIP    ((int) 2)
55
56 /* for mtab.c */
57 #define MTAB_GETMOUNTPT '1'
58 #define MTAB_GETDEVICE  '2'
59
60 #define BUF_SIZE        8192
61 #define EXPAND_ALLOC    1024
62
63 static inline int is_decimal(int ch) { return ((ch >= '0') && (ch <= '9')); }
64 static inline int is_octal(int ch)   { return ((ch >= '0') && (ch <= '7')); }
65
66 /* Macros for min/max.  */
67 #ifndef MIN
68 #define MIN(a,b) (((a)<(b))?(a):(b))
69 #endif
70
71 #ifndef MAX
72 #define MAX(a,b) (((a)>(b))?(a):(b))
73 #endif
74
75
76
77 extern void show_usage(void) __attribute__ ((noreturn));
78 extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
79 extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
80 extern void perror_msg(const char *s, ...);
81 extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
82 extern void vherror_msg(const char *s, va_list p);
83 extern void herror_msg(const char *s, ...);
84 extern void herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn));
85
86 /* These two are used internally -- you shouldn't need to use them */
87 extern void verror_msg(const char *s, va_list p);
88 extern void vperror_msg(const char *s, va_list p);
89
90 const char *mode_string(int mode);
91 const char *time_string(time_t timeVal);
92 int is_directory(const char *name, int followLinks, struct stat *statBuf);
93 int isDevice(const char *name);
94
95 int remove_file(const char *path, int flags);
96 int copy_file(const char *source, const char *dest, int flags);
97 int copy_file_chunk(FILE *src_file, FILE *dst_file, unsigned long long chunksize);
98 char *buildName(const char *dirName, const char *fileName);
99 int makeString(int argc, const char **argv, char *buf, int bufLen);
100 char *getChunk(int size);
101 char *chunkstrdup(const char *str);
102 void freeChunks(void);
103 ssize_t safe_read(int fd, void *buf, size_t count);
104 int full_write(int fd, const char *buf, int len);
105 int full_read(int fd, char *buf, int len);
106 int recursive_action(const char *fileName, int recurse, int followLinks, int depthFirst,
107           int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData),
108           int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData),
109           void* userData);
110
111 extern int parse_mode( const char* s, mode_t* theMode);
112
113 extern int get_kernel_revision(void);
114
115 extern int get_console_fd(char* tty_name);
116 extern struct mntent *find_mount_point(const char *name, const char *table);
117 extern void write_mtab(char* blockDevice, char* directory, 
118         char* filesystemType, long flags, char* string_flags);
119 extern void erase_mtab(const char * name);
120 extern long atoi_w_units (const char *cp);
121 extern pid_t* find_pid_by_name( char* pidName);
122 extern char *find_real_root_device_name(const char* name);
123 extern char *get_line_from_file(FILE *file);
124 extern void print_file(FILE *file);
125 extern int copyfd(int fd1, int fd2);
126 extern int print_file_by_name(char *filename);
127 extern char process_escape_sequence(const char **ptr);
128 extern char *get_last_path_component(char *path);
129 extern FILE *wfopen(const char *path, const char *mode);
130 extern FILE *xfopen(const char *path, const char *mode);
131 extern void chomp(char *s);
132 extern void trim(char *s);
133 extern struct BB_applet *find_applet_by_name(const char *name);
134 void run_applet_by_name(const char *name, int argc, char **argv);
135
136 #ifndef DMALLOC
137 extern void *xmalloc (size_t size);
138 extern void *xrealloc(void *old, size_t size);
139 extern void *xcalloc(size_t nmemb, size_t size);
140 extern char *xstrdup (const char *s);
141 #endif
142 extern char *xstrndup (const char *s, int n);
143 extern char * safe_strncpy(char *dst, const char *src, size_t size);
144
145 struct suffix_mult {
146         const char *suffix;
147         int mult;
148 };
149
150 extern unsigned long parse_number(const char *numstr,
151                 const struct suffix_mult *suffixes);
152
153
154 /* These parse entries in /etc/passwd and /etc/group.  This is desirable
155  * for BusyBox since we want to avoid using the glibc NSS stuff, which
156  * increases target size and is often not needed embedded systems.  */
157 extern long my_getpwnam(const char *name);
158 extern long my_getgrnam(const char *name);
159 extern void my_getpwuid(char *name, long uid);
160 extern void my_getgrgid(char *group, long gid);
161 extern long my_getpwnamegid(const char *name);
162
163 extern int device_open(char *device, int mode);
164
165 extern int del_loop(const char *device);
166 extern int set_loop(const char *device, const char *file, int offset, int *loopro);
167 extern char *find_unused_loop_device (void);
168
169
170 #if (__GLIBC__ < 2)
171 extern int vdprintf(int d, const char *format, va_list ap);
172 #endif
173
174 int nfsmount(const char *spec, const char *node, int *flags,
175              char **extra_opts, char **mount_opts, int running_bg);
176
177 void syslog_msg_with_name(const char *name, int facility, int pri, const char *msg);
178 void syslog_msg(int facility, int pri, const char *msg);
179
180 /* Include our own copy of struct sysinfo to avoid binary compatability
181  * problems with Linux 2.4, which changed things.  Grumble, grumble. */
182 struct sysinfo {
183         long uptime;                    /* Seconds since boot */
184         unsigned long loads[3];         /* 1, 5, and 15 minute load averages */
185         unsigned long totalram;         /* Total usable main memory size */
186         unsigned long freeram;          /* Available memory size */
187         unsigned long sharedram;        /* Amount of shared memory */
188         unsigned long bufferram;        /* Memory used by buffers */
189         unsigned long totalswap;        /* Total swap space size */
190         unsigned long freeswap;         /* swap space still available */
191         unsigned short procs;           /* Number of current processes */
192         unsigned short pad;                     /* Padding needed for m68k */
193         unsigned long totalhigh;        /* Total high memory size */
194         unsigned long freehigh;         /* Available high memory size */
195         unsigned int mem_unit;          /* Memory unit size in bytes */
196         char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
197 };
198 extern int sysinfo (struct sysinfo* info);
199
200 enum {
201         KILOBYTE = 1024,
202         MEGABYTE = (KILOBYTE*1024),
203         GIGABYTE = (MEGABYTE*1024)
204 };
205 const char *make_human_readable_str(unsigned long size, unsigned long block_size, unsigned long display_unit);
206
207 int ask_confirmation(void);
208 int klogctl(int type, char * b, int len);
209
210 char *xgetcwd(char *cwd);
211 char *xreadlink(const char *path);
212 char *concat_path_file(const char *path, const char *filename);
213 char *last_char_is(const char *s, int c);
214
215 extern long arith (const char *startbuf, int *errcode);
216
217 typedef struct file_headers_s {
218         char *name;
219         char *link_name;
220         off_t size;
221         uid_t uid;
222         gid_t gid;
223         mode_t mode;
224         time_t mtime;
225         dev_t device;
226 } file_header_t;
227 file_header_t *get_header_ar(FILE *in_file);
228 file_header_t *get_header_cpio(FILE *src_stream);
229 file_header_t *get_header_tar(FILE *tar_stream);
230
231 enum extract_functions_e {
232         extract_verbose_list = 1,
233         extract_list = 2,
234         extract_one_to_buffer = 4,
235         extract_to_stdout = 8,
236         extract_all_to_fs = 16,
237         extract_preserve_date = 32,
238         extract_data_tar_gz = 64,
239         extract_control_tar_gz = 128,
240         extract_unzip_only = 256,
241         extract_unconditional = 512,
242         extract_create_leading_dirs = 1024,
243         extract_quiet = 2048,
244         extract_exclude_list = 4096
245 };
246 char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_header)(FILE *),
247         const int extract_function, const char *prefix, char **extract_names);
248 char *deb_extract(const char *package_filename, FILE *out_stream, const int extract_function,
249         const char *prefix, const char *filename);
250 int read_package_field(const char *package_buffer, char **field_name, char **field_value);
251 char *fgets_str(FILE *file, const char *terminating_string);
252
253 extern int unzip(FILE *l_in_file, FILE *l_out_file);
254 extern void gz_close(int gunzip_pid);
255 extern FILE *gz_open(FILE *compressed_file, int *pid);
256
257 extern struct hostent *xgethostbyname(const char *name);
258 extern int create_icmp_socket(void);
259
260 char *dirname (const char *path);
261
262 int make_directory (char *path, long mode, int flags);
263
264 const char *u_signal_names(const char *str_sig, int *signo, int startnum);
265
266 #define CT_AUTO 0
267 #define CT_UNIX2DOS     1
268 #define CT_DOS2UNIX     2
269 /* extern int convert(char *fn, int ConvType); */
270
271 enum {
272         FILEUTILS_PRESERVE_STATUS = 1,
273         FILEUTILS_PRESERVE_SYMLINKS = 2,
274         FILEUTILS_RECUR = 4,
275         FILEUTILS_FORCE = 8,
276         FILEUTILS_INTERACTIVE = 16
277 };
278
279 extern const char *applet_name;
280 extern const char * const full_version;
281 extern const char * const name_too_long;
282 extern const char * const omitting_directory;
283 extern const char * const not_a_directory;
284 extern const char * const memory_exhausted;
285 extern const char * const invalid_date;
286 extern const char * const invalid_option;
287 extern const char * const io_error;
288 extern const char * const dash_dash_help;
289 extern const char * const write_error;
290 extern const char * const too_few_args;
291 extern const char * const name_longer_than_foo;
292 extern const char * const unknown;
293 extern const char * const can_not_create_raw_socket;
294
295 #ifdef BB_FEATURE_DEVFS
296 # define CURRENT_VC "/dev/vc/0"
297 # define VC_1 "/dev/vc/1"
298 # define VC_2 "/dev/vc/2"
299 # define VC_3 "/dev/vc/3"
300 # define VC_4 "/dev/vc/4"
301 # define VC_5 "/dev/vc/5"
302 # define SC_0 "/dev/tts/0"
303 # define SC_1 "/dev/tts/1"
304 # define VC_FORMAT "/dev/vc/%d"
305 # define SC_FORMAT "/dev/tts/%d"
306 #else
307 # define CURRENT_VC "/dev/tty0"
308 # define VC_1 "/dev/tty1"
309 # define VC_2 "/dev/tty2"
310 # define VC_3 "/dev/tty3"
311 # define VC_4 "/dev/tty4"
312 # define VC_5 "/dev/tty5"
313 # define SC_0 "/dev/ttyS0"
314 # define SC_1 "/dev/ttyS1"
315 # define VC_FORMAT "/dev/tty%d"
316 # define SC_FORMAT "/dev/ttyS%d"
317 #endif
318
319 /* The following devices are the same on devfs and non-devfs systems.  */
320 #define CURRENT_TTY "/dev/tty"
321 #define CONSOLE_DEV "/dev/console"
322
323 #endif /* __LIBBB_H__ */