Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 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 | |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 29 | #include <stdio.h> |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 30 | #include <stdarg.h> |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 31 | #include <sys/stat.h> |
Eric Andersen | 01bda5d | 2001-01-02 01:16:38 +0000 | [diff] [blame] | 32 | #include <sys/types.h> |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 33 | |
Eric Andersen | 01bda5d | 2001-01-02 01:16:38 +0000 | [diff] [blame] | 34 | #ifdef DMALLOC |
| 35 | #include "dmalloc.h" |
| 36 | #endif |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 37 | |
Eric Andersen | c319601 | 2001-03-14 01:15:06 +0000 | [diff] [blame^] | 38 | /* Stupid libc doesn't have a reliable way for use to know |
| 39 | * that libc5 is being used. Assume this is good enough */ |
| 40 | #if ! defined __GLIBC__ || ! defined __UCLIBC__ |
| 41 | /* libc5 doesn't define socklen_t */ |
| 42 | typedef unsigned int socklen_t; |
| 43 | #endif |
| 44 | |
| 45 | |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 46 | /* Some useful definitions */ |
Eric Andersen | 2187adc | 2000-12-04 20:31:45 +0000 | [diff] [blame] | 47 | #define FALSE ((int) 0) |
| 48 | #define TRUE ((int) 1) |
Matt Kraai | a1f9775 | 2000-12-19 06:24:08 +0000 | [diff] [blame] | 49 | #define SKIP ((int) 2) |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 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 | |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 58 | static inline int is_decimal(ch) { return ((ch >= '0') && (ch <= '9')); } |
| 59 | static inline int is_octal(ch) { return ((ch >= '0') && (ch <= '7')); } |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 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 | |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 71 | enum Location { |
| 72 | _BB_DIR_ROOT = 0, |
| 73 | _BB_DIR_BIN, |
| 74 | _BB_DIR_SBIN, |
| 75 | _BB_DIR_USR_BIN, |
| 76 | _BB_DIR_USR_SBIN |
| 77 | }; |
| 78 | |
| 79 | struct BB_applet { |
| 80 | const char* name; |
| 81 | int (*main)(int argc, char** argv); |
| 82 | enum Location location; |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 83 | }; |
| 84 | /* From busybox.c */ |
| 85 | extern const struct BB_applet applets[]; |
| 86 | |
Eric Andersen | 8c725e6 | 2000-11-30 00:27:06 +0000 | [diff] [blame] | 87 | /* Automagically pull in all the applet function prototypes and |
Eric Andersen | 8755982 | 2000-12-01 19:02:24 +0000 | [diff] [blame] | 88 | * applet usage strings. These are all of the form: |
Eric Andersen | 8c725e6 | 2000-11-30 00:27:06 +0000 | [diff] [blame] | 89 | * extern int foo_main(int argc, char **argv); |
| 90 | * extern const char foo_usage[]; |
| 91 | * These are all autogenerated from the set of currently defined applets. |
| 92 | */ |
| 93 | #define PROTOTYPES |
| 94 | #include "applets.h" |
| 95 | #undef PROTOTYPES |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 96 | |
| 97 | extern const char *applet_name; |
| 98 | |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 99 | extern void show_usage(void) __attribute__ ((noreturn)); |
Eric Andersen | c163e51 | 2001-02-22 23:38:48 +0000 | [diff] [blame] | 100 | extern void error_msg(const char *s, ...); |
| 101 | extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn)); |
| 102 | extern void perror_msg(const char *s, ...); |
| 103 | extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn)); |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 104 | |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 105 | const char *mode_string(int mode); |
| 106 | const char *time_string(time_t timeVal); |
| 107 | int is_directory(const char *name, const int followLinks, struct stat *statBuf); |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 108 | int isDevice(const char *name); |
| 109 | |
| 110 | typedef struct ino_dev_hash_bucket_struct { |
| 111 | struct ino_dev_hash_bucket_struct *next; |
| 112 | ino_t ino; |
| 113 | dev_t dev; |
| 114 | char name[1]; |
| 115 | } ino_dev_hashtable_bucket_t; |
| 116 | int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name); |
| 117 | void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name); |
| 118 | void reset_ino_dev_hashtable(void); |
| 119 | |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 120 | int copy_file(const char *srcName, const char *destName, |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 121 | int setModes, int followLinks, int forceFlag); |
Mark Whitley | 4758368 | 2000-12-05 20:03:17 +0000 | [diff] [blame] | 122 | int copy_file_chunk(int srcFd, int dstFd, size_t remaining); |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 123 | char *buildName(const char *dirName, const char *fileName); |
| 124 | int makeString(int argc, const char **argv, char *buf, int bufLen); |
| 125 | char *getChunk(int size); |
| 126 | char *chunkstrdup(const char *str); |
| 127 | void freeChunks(void); |
Matt Kraai | bfa7967 | 2000-12-15 22:34:34 +0000 | [diff] [blame] | 128 | ssize_t safe_read(int fd, void *buf, size_t count); |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 129 | int full_write(int fd, const char *buf, int len); |
| 130 | int full_read(int fd, char *buf, int len); |
| 131 | int recursive_action(const char *fileName, int recurse, int followLinks, int depthFirst, |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 132 | int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData), |
| 133 | int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData), |
| 134 | void* userData); |
| 135 | |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 136 | extern int create_path (const char *name, int mode); |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 137 | extern int parse_mode( const char* s, mode_t* theMode); |
| 138 | |
| 139 | extern int get_kernel_revision(void); |
| 140 | |
| 141 | extern int get_console_fd(char* tty_name); |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 142 | extern struct mntent *find_mount_point(const char *name, const char *table); |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 143 | extern void write_mtab(char* blockDevice, char* directory, |
| 144 | char* filesystemType, long flags, char* string_flags); |
| 145 | extern void erase_mtab(const char * name); |
| 146 | extern void mtab_read(void); |
| 147 | extern char *mtab_first(void **iter); |
| 148 | extern char *mtab_next(void **iter); |
| 149 | extern char *mtab_getinfo(const char *match, const char which); |
| 150 | extern int check_wildcard_match(const char* text, const char* pattern); |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 151 | extern long atoi_w_units (const char *cp); |
| 152 | extern pid_t* find_pid_by_name( char* pidName); |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 153 | extern int find_real_root_device_name(char* name); |
| 154 | extern char *get_line_from_file(FILE *file); |
| 155 | extern void print_file(FILE *file); |
| 156 | extern int print_file_by_name(char *filename); |
| 157 | extern char process_escape_sequence(char **ptr); |
| 158 | extern char *get_last_path_component(char *path); |
Matt Kraai | c0321f9 | 2000-09-27 04:09:22 +0000 | [diff] [blame] | 159 | extern FILE *wfopen(const char *path, const char *mode); |
Matt Kraai | e0bcce0 | 2000-09-27 02:29:39 +0000 | [diff] [blame] | 160 | extern FILE *xfopen(const char *path, const char *mode); |
Matt Kraai | 05e782d | 2001-02-01 16:49:30 +0000 | [diff] [blame] | 161 | extern void chomp(char *s); |
Eric Andersen | 13d1fa1 | 2001-03-08 23:59:45 +0000 | [diff] [blame] | 162 | extern void trim(char *s); |
Matt Kraai | f2cc276 | 2001-02-01 19:21:20 +0000 | [diff] [blame] | 163 | extern struct BB_applet *find_applet_by_name(const char *name); |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 164 | void run_applet_by_name(const char *name, int argc, char **argv); |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 165 | |
Eric Andersen | 01bda5d | 2001-01-02 01:16:38 +0000 | [diff] [blame] | 166 | #ifndef DMALLOC |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 167 | extern void *xmalloc (size_t size); |
| 168 | extern void *xrealloc(void *old, size_t size); |
| 169 | extern void *xcalloc(size_t nmemb, size_t size); |
| 170 | extern char *xstrdup (const char *s); |
| 171 | #endif |
| 172 | extern char *xstrndup (const char *s, int n); |
Eric Andersen | ec45595 | 2001-02-14 08:11:27 +0000 | [diff] [blame] | 173 | extern char * safe_strncpy(char *dst, const char *src, size_t size); |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 174 | |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 175 | struct suffix_mult { |
| 176 | char *suffix; |
| 177 | int mult; |
| 178 | }; |
| 179 | |
Matt Kraai | a164c64 | 2001-02-05 17:50:03 +0000 | [diff] [blame] | 180 | extern unsigned long parse_number(const char *numstr, |
| 181 | const struct suffix_mult *suffixes); |
Matt Kraai | 24ac017 | 2000-12-18 21:38:57 +0000 | [diff] [blame] | 182 | |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 183 | |
| 184 | /* These parse entries in /etc/passwd and /etc/group. This is desirable |
| 185 | * for BusyBox since we want to avoid using the glibc NSS stuff, which |
| 186 | * increases target size and is often not needed embedded systems. */ |
Eric Andersen | 4142d4d | 2001-02-27 18:22:03 +0000 | [diff] [blame] | 187 | extern long my_getpwnam(const char *name); |
| 188 | extern long my_getgrnam(const char *name); |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 189 | extern void my_getpwuid(char *name, long uid); |
| 190 | extern void my_getgrgid(char *group, long gid); |
Eric Andersen | 4142d4d | 2001-02-27 18:22:03 +0000 | [diff] [blame] | 191 | extern long my_getpwnamegid(const char *name); |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 192 | |
| 193 | extern int device_open(char *device, int mode); |
| 194 | |
| 195 | #if defined BB_FEATURE_MOUNT_LOOP |
| 196 | extern int del_loop(const char *device); |
| 197 | extern int set_loop(const char *device, const char *file, int offset, int *loopro); |
| 198 | extern char *find_unused_loop_device (void); |
| 199 | #endif |
| 200 | |
| 201 | |
| 202 | #if (__GLIBC__ < 2) && (defined BB_SYSLOGD || defined BB_INIT) |
| 203 | extern int vdprintf(int d, const char *format, va_list ap); |
| 204 | #endif |
| 205 | |
| 206 | #if defined BB_NFSMOUNT |
| 207 | int nfsmount(const char *spec, const char *node, int *flags, |
| 208 | char **extra_opts, char **mount_opts, int running_bg); |
| 209 | #endif |
| 210 | |
| 211 | #ifndef RB_POWER_OFF |
| 212 | /* Stop system and switch power off if possible. */ |
| 213 | #define RB_POWER_OFF 0x4321fedc |
| 214 | #endif |
| 215 | |
Mark Whitley | 6317c4b | 2001-03-12 22:51:50 +0000 | [diff] [blame] | 216 | #if defined(BB_KLOGD) || defined(BB_LOGGER) |
| 217 | void syslog_msg_with_name(const char *name, int facility, int pri, const char *msg); |
| 218 | void syslog_msg(int facility, int pri, const char *msg); |
| 219 | #endif |
| 220 | |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 221 | /* Include our own copy of struct sysinfo to avoid binary compatability |
| 222 | * problems with Linux 2.4, which changed things. Grumble, grumble. */ |
| 223 | struct sysinfo { |
| 224 | long uptime; /* Seconds since boot */ |
| 225 | unsigned long loads[3]; /* 1, 5, and 15 minute load averages */ |
| 226 | unsigned long totalram; /* Total usable main memory size */ |
| 227 | unsigned long freeram; /* Available memory size */ |
| 228 | unsigned long sharedram; /* Amount of shared memory */ |
| 229 | unsigned long bufferram; /* Memory used by buffers */ |
| 230 | unsigned long totalswap; /* Total swap space size */ |
| 231 | unsigned long freeswap; /* swap space still available */ |
| 232 | unsigned short procs; /* Number of current processes */ |
| 233 | unsigned long totalhigh; /* Total high memory size */ |
| 234 | unsigned long freehigh; /* Available high memory size */ |
| 235 | unsigned int mem_unit; /* Memory unit size in bytes */ |
| 236 | char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */ |
| 237 | }; |
| 238 | extern int sysinfo (struct sysinfo* info); |
| 239 | |
| 240 | /* Bit map related macros -- libc5 doens't provide these... sigh. */ |
| 241 | #ifndef setbit |
| 242 | #define NBBY CHAR_BIT |
| 243 | #define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY)) |
| 244 | #define clrbit(a,i) ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY))) |
| 245 | #define isset(a,i) ((a)[(i)/NBBY] & (1<<((i)%NBBY))) |
| 246 | #define isclr(a,i) (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0) |
| 247 | #endif |
| 248 | |
Richard June | 6d0921c | 2001-01-22 22:35:38 +0000 | [diff] [blame] | 249 | #ifdef BB_FEATURE_HUMAN_READABLE |
Mark Whitley | ae5612c | 2001-03-07 17:42:07 +0000 | [diff] [blame] | 250 | const char *make_human_readable_str(unsigned long val, unsigned long hr); |
Mark Whitley | 39842de | 2001-03-01 18:51:33 +0000 | [diff] [blame] | 251 | #endif |
Mark Whitley | 4cc8f31 | 2001-03-07 18:00:44 +0000 | [diff] [blame] | 252 | enum { |
| 253 | KILOBYTE = 1024, |
| 254 | MEGABYTE = (KILOBYTE*1024), |
| 255 | GIGABYTE = (MEGABYTE*1024) |
| 256 | }; |
Richard June | 6d0921c | 2001-01-22 22:35:38 +0000 | [diff] [blame] | 257 | |
Eric Andersen | d35c215 | 2001-01-25 23:49:09 +0000 | [diff] [blame] | 258 | #ifdef BB_FEATURE_BUFFERS_GO_ON_STACK |
| 259 | #define RESERVE_BB_BUFFER(buffer,len) char buffer[len] |
| 260 | #define RESERVE_BB_UBUFFER(buffer,len) unsigned char buffer[len] |
| 261 | #else |
| 262 | #define RESERVE_BB_BUFFER(buffer,len) char *buffer=xmalloc(len) |
| 263 | #define RESERVE_BB_UBUFFER(buffer,len) unsigned char *buffer=xmalloc(len) |
| 264 | #endif |
| 265 | |
Mark Whitley | e0bf91d | 2001-03-13 00:40:19 +0000 | [diff] [blame] | 266 | #if defined(BB_FEATURE_RM_INTERACTIVE) && defined(BB_RM) |
| 267 | int ask_confirmation(void); |
| 268 | #endif |
| 269 | |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 270 | #endif /* _BB_INTERNAL_H_ */ |