blob: 442352537956a9b3cf98d97aee086d4a63055373 [file] [log] [blame]
Eric Andersenf6b71392000-09-26 01:09:18 +00001/* 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 */
Eric Andersen2187adc2000-12-04 20:31:45 +000048#define FALSE ((int) 0)
49#define TRUE ((int) 1)
Eric Andersenf6b71392000-09-26 01:09:18 +000050
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
Mark Whitleyf57c9442000-12-07 19:56:48 +000058static inline int is_decimal(ch) { return ((ch >= '0') && (ch <= '9')); }
59static inline int is_octal(ch) { return ((ch >= '0') && (ch <= '7')); }
Eric Andersenf6b71392000-09-26 01:09:18 +000060
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
91enum 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
99struct 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 */
106extern const struct BB_applet applets[];
107
Eric Andersen8c725e62000-11-30 00:27:06 +0000108/* Automagically pull in all the applet function prototypes and
Eric Andersen87559822000-12-01 19:02:24 +0000109 * applet usage strings. These are all of the form:
Eric Andersen8c725e62000-11-30 00:27:06 +0000110 * 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
Eric Andersenf6b71392000-09-26 01:09:18 +0000117
118extern const char *applet_name;
Eric Andersen8c725e62000-11-30 00:27:06 +0000119extern int applet_name_compare(const void *x, const void *y);
Eric Andersenf6b71392000-09-26 01:09:18 +0000120
121extern void usage(const char *usage) __attribute__ ((noreturn));
Mark Whitleyf57c9442000-12-07 19:56:48 +0000122extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
123extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
124extern void perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
125extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2)));
Eric Andersenf6b71392000-09-26 01:09:18 +0000126
Mark Whitleyf57c9442000-12-07 19:56:48 +0000127const char *mode_string(int mode);
128const char *time_string(time_t timeVal);
129int is_directory(const char *name, const int followLinks, struct stat *statBuf);
Eric Andersenf6b71392000-09-26 01:09:18 +0000130int isDevice(const char *name);
131
132typedef 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;
138int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name);
139void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name);
140void reset_ino_dev_hashtable(void);
141
Mark Whitleyf57c9442000-12-07 19:56:48 +0000142int copy_file(const char *srcName, const char *destName,
Eric Andersenf6b71392000-09-26 01:09:18 +0000143 int setModes, int followLinks, int forceFlag);
Mark Whitley47583682000-12-05 20:03:17 +0000144int copy_file_chunk(int srcFd, int dstFd, size_t remaining);
Eric Andersenf6b71392000-09-26 01:09:18 +0000145char *buildName(const char *dirName, const char *fileName);
146int makeString(int argc, const char **argv, char *buf, int bufLen);
147char *getChunk(int size);
148char *chunkstrdup(const char *str);
149void freeChunks(void);
Matt Kraaibfa79672000-12-15 22:34:34 +0000150ssize_t safe_read(int fd, void *buf, size_t count);
Mark Whitleyf57c9442000-12-07 19:56:48 +0000151int full_write(int fd, const char *buf, int len);
152int full_read(int fd, char *buf, int len);
153int recursive_action(const char *fileName, int recurse, int followLinks, int depthFirst,
Eric Andersenf6b71392000-09-26 01:09:18 +0000154 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
Mark Whitleyf57c9442000-12-07 19:56:48 +0000158extern int create_path (const char *name, int mode);
Eric Andersenf6b71392000-09-26 01:09:18 +0000159extern int parse_mode( const char* s, mode_t* theMode);
160
161extern int get_kernel_revision(void);
162
163extern int get_console_fd(char* tty_name);
Mark Whitleyf57c9442000-12-07 19:56:48 +0000164extern struct mntent *find_mount_point(const char *name, const char *table);
Eric Andersenf6b71392000-09-26 01:09:18 +0000165extern void write_mtab(char* blockDevice, char* directory,
166 char* filesystemType, long flags, char* string_flags);
167extern void erase_mtab(const char * name);
168extern void mtab_read(void);
169extern char *mtab_first(void **iter);
170extern char *mtab_next(void **iter);
171extern char *mtab_getinfo(const char *match, const char which);
172extern int check_wildcard_match(const char* text, const char* pattern);
Mark Whitleyf57c9442000-12-07 19:56:48 +0000173extern long atoi_w_units (const char *cp);
174extern pid_t* find_pid_by_name( char* pidName);
Eric Andersenf6b71392000-09-26 01:09:18 +0000175extern int find_real_root_device_name(char* name);
176extern char *get_line_from_file(FILE *file);
177extern void print_file(FILE *file);
178extern int print_file_by_name(char *filename);
179extern char process_escape_sequence(char **ptr);
180extern char *get_last_path_component(char *path);
181extern void xregcomp(regex_t *preg, const char *regex, int cflags);
Matt Kraaic0321f92000-09-27 04:09:22 +0000182extern FILE *wfopen(const char *path, const char *mode);
Matt Kraaie0bcce02000-09-27 02:29:39 +0000183extern FILE *xfopen(const char *path, const char *mode);
Eric Andersenf6b71392000-09-26 01:09:18 +0000184
185#ifndef DMALLOC
186extern void *xmalloc (size_t size);
187extern void *xrealloc(void *old, size_t size);
188extern void *xcalloc(size_t nmemb, size_t size);
189extern char *xstrdup (const char *s);
190#endif
191extern char *xstrndup (const char *s, int n);
192
Matt Kraai24ac0172000-12-18 21:38:57 +0000193struct suffix_mult {
194 char *suffix;
195 int mult;
196};
197
198extern unsigned long parse_number(const char *numstr, struct suffix_mult *suffixes);
199
Eric Andersenf6b71392000-09-26 01:09:18 +0000200
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. */
204extern long my_getpwnam(char *name);
205extern long my_getgrnam(char *name);
206extern void my_getpwuid(char *name, long uid);
207extern void my_getgrgid(char *group, long gid);
208extern long my_getpwnamegid(char *name);
209
210extern int device_open(char *device, int mode);
211
212#if defined BB_FEATURE_MOUNT_LOOP
213extern int del_loop(const char *device);
214extern int set_loop(const char *device, const char *file, int offset, int *loopro);
215extern char *find_unused_loop_device (void);
216#endif
217
218
219#if (__GLIBC__ < 2) && (defined BB_SYSLOGD || defined BB_INIT)
220extern int vdprintf(int d, const char *format, va_list ap);
221#endif
222
223#if defined BB_NFSMOUNT
224int 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. */
235struct 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};
250extern 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_ */