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