Rewrote dd.
[oweals/busybox.git] / busybox.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 _BB_INTERNAL_H_
25 #define _BB_INTERNAL_H_    1
26
27 #include "Config.h"
28
29 #ifdef DMALLOC
30 #include "dmalloc.h"
31 #endif
32
33 #include <stdlib.h>
34 #include <stdarg.h>
35 #include <string.h>
36 #include <unistd.h>
37 #include <errno.h>
38 #include <sys/stat.h>
39 #include <sys/param.h>
40 #include <mntent.h>
41 #include <regex.h>
42 /* for the _syscall() macros */
43 #include <sys/syscall.h>
44 #include <linux/unistd.h>
45
46
47 /* Some useful definitions */
48 #define FALSE   ((int) 0)
49 #define TRUE    ((int) 1)
50
51 /* for mtab.c */
52 #define MTAB_GETMOUNTPT '1'
53 #define MTAB_GETDEVICE  '2'
54
55 #define BUF_SIZE        8192
56 #define EXPAND_ALLOC    1024
57
58 static inline int is_decimal(ch) { return ((ch >= '0') && (ch <= '9')); }
59 static inline int is_octal(ch)   { return ((ch >= '0') && (ch <= '7')); }
60
61 /* Macros for min/max.  */
62 #ifndef MIN
63 #define MIN(a,b) (((a)<(b))?(a):(b))
64 #endif
65
66 #ifndef MAX
67 #define MAX(a,b) (((a)>(b))?(a):(b))
68 #endif
69
70
71 /* I don't like nested includes, but the string and io functions are used
72  * too often
73  */
74 #include <stdio.h>
75 #if !defined(NO_STRING_H) || defined(STDC_HEADERS)
76 #  include <string.h>
77 #  if !defined(STDC_HEADERS) && !defined(NO_MEMORY_H) && !defined(__GNUC__)
78 #    include <memory.h>
79 #  endif
80 #  define memzero(s, n)     memset ((void *)(s), 0, (n))
81 #else
82 #  include <strings.h>
83 #  define strchr            index
84 #  define strrchr           rindex
85 #  define memcpy(d, s, n)   bcopy((s), (d), (n))
86 #  define memcmp(s1, s2, n) bcmp((s1), (s2), (n))
87 #  define memzero(s, n)     bzero((s), (n))
88 #endif
89
90
91 enum Location {
92         _BB_DIR_ROOT = 0,
93         _BB_DIR_BIN,
94         _BB_DIR_SBIN,
95         _BB_DIR_USR_BIN,
96         _BB_DIR_USR_SBIN
97 };
98
99 struct BB_applet {
100         const   char*   name;
101         int     (*main)(int argc, char** argv);
102         enum    Location        location;
103         const   char*   usage;
104 };
105 /* From busybox.c */
106 extern const struct BB_applet applets[];
107
108 /* Automagically pull in all the applet function prototypes and
109  * applet usage strings.  These are all of the form:
110  *              extern int foo_main(int argc, char **argv);
111  *              extern const char foo_usage[];
112  * These are all autogenerated from the set of currently defined applets. 
113  */
114 #define PROTOTYPES
115 #include "applets.h"
116 #undef PROTOTYPES
117
118 extern const char *applet_name;
119 extern int applet_name_compare(const void *x, const void *y);
120
121 extern void usage(const char *usage) __attribute__ ((noreturn));
122 extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
123 extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
124 extern void perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
125 extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
126
127 const char *mode_string(int mode);
128 const char *time_string(time_t timeVal);
129 int is_directory(const char *name, const int followLinks, struct stat *statBuf);
130 int isDevice(const char *name);
131
132 typedef struct ino_dev_hash_bucket_struct {
133   struct ino_dev_hash_bucket_struct *next;
134   ino_t ino;
135   dev_t dev;
136   char name[1];
137 } ino_dev_hashtable_bucket_t;
138 int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name);
139 void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name);
140 void reset_ino_dev_hashtable(void);
141
142 int copy_file(const char *srcName, const char *destName,
143                  int setModes, int followLinks, int forceFlag);
144 int copy_file_chunk(int srcFd, int dstFd, size_t remaining);
145 char *buildName(const char *dirName, const char *fileName);
146 int makeString(int argc, const char **argv, char *buf, int bufLen);
147 char *getChunk(int size);
148 char *chunkstrdup(const char *str);
149 void freeChunks(void);
150 ssize_t safe_read(int fd, void *buf, size_t count);
151 int full_write(int fd, const char *buf, int len);
152 int full_read(int fd, char *buf, int len);
153 int recursive_action(const char *fileName, int recurse, int followLinks, int depthFirst,
154           int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData),
155           int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData),
156           void* userData);
157
158 extern int create_path (const char *name, int mode);
159 extern int parse_mode( const char* s, mode_t* theMode);
160
161 extern int get_kernel_revision(void);
162
163 extern int get_console_fd(char* tty_name);
164 extern struct mntent *find_mount_point(const char *name, const char *table);
165 extern void write_mtab(char* blockDevice, char* directory, 
166         char* filesystemType, long flags, char* string_flags);
167 extern void erase_mtab(const char * name);
168 extern void mtab_read(void);
169 extern char *mtab_first(void **iter);
170 extern char *mtab_next(void **iter);
171 extern char *mtab_getinfo(const char *match, const char which);
172 extern int check_wildcard_match(const char* text, const char* pattern);
173 extern long atoi_w_units (const char *cp);
174 extern pid_t* find_pid_by_name( char* pidName);
175 extern int find_real_root_device_name(char* name);
176 extern char *get_line_from_file(FILE *file);
177 extern void print_file(FILE *file);
178 extern int print_file_by_name(char *filename);
179 extern char process_escape_sequence(char **ptr);
180 extern char *get_last_path_component(char *path);
181 extern void xregcomp(regex_t *preg, const char *regex, int cflags);
182 extern FILE *wfopen(const char *path, const char *mode);
183 extern FILE *xfopen(const char *path, const char *mode);
184
185 #ifndef DMALLOC 
186 extern void *xmalloc (size_t size);
187 extern void *xrealloc(void *old, size_t size);
188 extern void *xcalloc(size_t nmemb, size_t size);
189 extern char *xstrdup (const char *s);
190 #endif
191 extern char *xstrndup (const char *s, int n);
192
193 struct suffix_mult {
194         char *suffix;
195         int mult;
196 };
197
198 extern unsigned long parse_number(const char *numstr, struct suffix_mult *suffixes);
199
200
201 /* These parse entries in /etc/passwd and /etc/group.  This is desirable
202  * for BusyBox since we want to avoid using the glibc NSS stuff, which
203  * increases target size and is often not needed embedded systems.  */
204 extern long my_getpwnam(char *name);
205 extern long my_getgrnam(char *name);
206 extern void my_getpwuid(char *name, long uid);
207 extern void my_getgrgid(char *group, long gid);
208 extern long my_getpwnamegid(char *name);
209
210 extern int device_open(char *device, int mode);
211
212 #if defined BB_FEATURE_MOUNT_LOOP
213 extern int del_loop(const char *device);
214 extern int set_loop(const char *device, const char *file, int offset, int *loopro);
215 extern char *find_unused_loop_device (void);
216 #endif
217
218
219 #if (__GLIBC__ < 2) && (defined BB_SYSLOGD || defined BB_INIT)
220 extern int vdprintf(int d, const char *format, va_list ap);
221 #endif
222
223 #if defined BB_NFSMOUNT
224 int nfsmount(const char *spec, const char *node, int *flags,
225              char **extra_opts, char **mount_opts, int running_bg);
226 #endif
227
228 #ifndef RB_POWER_OFF
229 /* Stop system and switch power off if possible.  */
230 #define RB_POWER_OFF   0x4321fedc
231 #endif
232
233 /* Include our own copy of struct sysinfo to avoid binary compatability
234  * problems with Linux 2.4, which changed things.  Grumble, grumble. */
235 struct sysinfo {
236         long uptime;                    /* Seconds since boot */
237         unsigned long loads[3];         /* 1, 5, and 15 minute load averages */
238         unsigned long totalram;         /* Total usable main memory size */
239         unsigned long freeram;          /* Available memory size */
240         unsigned long sharedram;        /* Amount of shared memory */
241         unsigned long bufferram;        /* Memory used by buffers */
242         unsigned long totalswap;        /* Total swap space size */
243         unsigned long freeswap;         /* swap space still available */
244         unsigned short procs;           /* Number of current processes */
245         unsigned long totalhigh;        /* Total high memory size */
246         unsigned long freehigh;         /* Available high memory size */
247         unsigned int mem_unit;          /* Memory unit size in bytes */
248         char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
249 };
250 extern int sysinfo (struct sysinfo* info);
251
252 /* Bit map related macros -- libc5 doens't provide these... sigh.  */
253 #ifndef setbit
254 #define NBBY            CHAR_BIT
255 #define setbit(a,i)     ((a)[(i)/NBBY] |= 1<<((i)%NBBY))
256 #define clrbit(a,i)     ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY)))
257 #define isset(a,i)      ((a)[(i)/NBBY] & (1<<((i)%NBBY)))
258 #define isclr(a,i)      (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
259 #endif
260
261 #endif /* _BB_INTERNAL_H_ */