Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +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 __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 | |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 32 | #include <netdb.h> |
| 33 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 34 | #ifdef DMALLOC |
| 35 | #include "dmalloc.h" |
| 36 | #endif |
| 37 | |
| 38 | #include <features.h> |
Eric Andersen | b6b519b | 2001-04-09 23:52:18 +0000 | [diff] [blame] | 39 | |
Mark Whitley | c29c44c | 2001-04-25 18:06:21 +0000 | [diff] [blame] | 40 | #ifndef _BB_INTERNAL_H_ |
| 41 | #include "../busybox.h" |
| 42 | #endif |
| 43 | |
Eric Andersen | b6b519b | 2001-04-09 23:52:18 +0000 | [diff] [blame] | 44 | #if __GNU_LIBRARY__ < 5 |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 45 | /* libc5 doesn't define socklen_t */ |
| 46 | typedef unsigned int socklen_t; |
Eric Andersen | b2e3e9b | 2001-04-04 19:25:57 +0000 | [diff] [blame] | 47 | /* libc5 doesn't implement BSD 4.4 daemon() */ |
| 48 | extern int daemon (int nochdir, int noclose); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 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 | |
Eric Andersen | b5ec61e | 2001-04-18 20:17:05 +0000 | [diff] [blame] | 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')); } |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 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)); |
Eric Andersen | b183dfa | 2001-03-19 19:24:06 +0000 | [diff] [blame] | 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))); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 80 | extern void perror_msg(const char *s, ...); |
| 81 | extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn)); |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 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)); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 85 | |
Eric Andersen | b183dfa | 2001-03-19 19:24:06 +0000 | [diff] [blame] | 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 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 90 | const char *mode_string(int mode); |
| 91 | const char *time_string(time_t timeVal); |
Eric Andersen | 8cd16d8 | 2001-05-07 23:11:23 +0000 | [diff] [blame] | 92 | int is_directory(const char *name, int followLinks, struct stat *statBuf); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 93 | int isDevice(const char *name); |
| 94 | |
Matt Kraai | 8810bdb | 2001-04-24 20:04:18 +0000 | [diff] [blame] | 95 | int remove_file(const char *path, int flags); |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 96 | int copy_file(const char *source, const char *dest, int flags); |
Glenn L McGrath | c9cac5b | 2001-04-12 13:47:12 +0000 | [diff] [blame] | 97 | int copy_file_chunk(FILE *src_file, FILE *dst_file, unsigned long long chunksize); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 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 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 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); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 120 | extern long atoi_w_units (const char *cp); |
| 121 | extern pid_t* find_pid_by_name( char* pidName); |
Eric Andersen | c911a43 | 2001-05-15 17:42:16 +0000 | [diff] [blame] | 122 | extern char *find_real_root_device_name(const char* name); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 123 | extern char *get_line_from_file(FILE *file); |
| 124 | extern void print_file(FILE *file); |
Matt Kraai | d6ef074 | 2001-05-18 14:14:55 +0000 | [diff] [blame] | 125 | extern int copyfd(int fd1, int fd2); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 126 | extern int print_file_by_name(char *filename); |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 127 | extern char process_escape_sequence(const char **ptr); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 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 { |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 146 | const char *suffix; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 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 */ |
Matt Kraai | 5246225 | 2001-06-08 13:57:27 +0000 | [diff] [blame] | 192 | unsigned short pad; /* Padding needed for m68k */ |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 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 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 200 | enum { |
| 201 | KILOBYTE = 1024, |
| 202 | MEGABYTE = (KILOBYTE*1024), |
| 203 | GIGABYTE = (MEGABYTE*1024) |
| 204 | }; |
Eric Andersen | f429bac | 2001-06-13 08:02:45 +0000 | [diff] [blame] | 205 | const char *make_human_readable_str(unsigned long size, unsigned long block_size, unsigned long display_unit); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 206 | |
| 207 | int ask_confirmation(void); |
Eric Andersen | e76c3b0 | 2001-04-05 03:14:39 +0000 | [diff] [blame] | 208 | int klogctl(int type, char * b, int len); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 209 | |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 210 | char *xgetcwd(char *cwd); |
Mark Whitley | 8a63326 | 2001-04-30 18:17:00 +0000 | [diff] [blame] | 211 | char *xreadlink(const char *path); |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 212 | char *concat_path_file(const char *path, const char *filename); |
Eric Andersen | c911a43 | 2001-05-15 17:42:16 +0000 | [diff] [blame] | 213 | char *last_char_is(const char *s, int c); |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 214 | |
Eric Andersen | 5ef5614 | 2001-06-26 16:36:26 +0000 | [diff] [blame] | 215 | typedef struct file_headers_s { |
| 216 | char *name; |
| 217 | char *link_name; |
| 218 | off_t size; |
| 219 | uid_t uid; |
| 220 | gid_t gid; |
| 221 | mode_t mode; |
| 222 | time_t mtime; |
| 223 | dev_t device; |
| 224 | } file_header_t; |
| 225 | file_header_t *get_header_ar(FILE *in_file); |
| 226 | file_header_t *get_header_cpio(FILE *src_stream); |
| 227 | file_header_t *get_header_tar(FILE *tar_stream); |
Glenn L McGrath | 359c106 | 2001-04-12 10:19:08 +0000 | [diff] [blame] | 228 | |
Glenn L McGrath | 9aff903 | 2001-06-13 07:26:39 +0000 | [diff] [blame] | 229 | enum extract_functions_e { |
| 230 | extract_verbose_list = 1, |
| 231 | extract_list = 2, |
| 232 | extract_one_to_buffer = 4, |
| 233 | extract_to_stdout = 8, |
| 234 | extract_all_to_fs = 16, |
| 235 | extract_preserve_date = 32, |
| 236 | extract_data_tar_gz = 64, |
| 237 | extract_control_tar_gz = 128, |
Glenn L McGrath | eb1c940 | 2001-06-20 07:48:00 +0000 | [diff] [blame] | 238 | extract_unzip_only = 256, |
| 239 | extract_unconditional = 512, |
Glenn L McGrath | 3e94f72 | 2001-07-12 10:24:57 +0000 | [diff] [blame] | 240 | extract_create_leading_dirs = 1024, |
| 241 | extract_quiet = 2048 |
Glenn L McGrath | 9aff903 | 2001-06-13 07:26:39 +0000 | [diff] [blame] | 242 | }; |
Glenn L McGrath | c127008 | 2001-07-11 17:32:14 +0000 | [diff] [blame] | 243 | char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_header)(FILE *), |
Glenn L McGrath | eb1c940 | 2001-06-20 07:48:00 +0000 | [diff] [blame] | 244 | const int extract_function, const char *prefix, char **extract_names); |
| 245 | char *deb_extract(const char *package_filename, FILE *out_stream, const int extract_function, |
Glenn L McGrath | 9aff903 | 2001-06-13 07:26:39 +0000 | [diff] [blame] | 246 | const char *prefix, const char *filename); |
| 247 | char *read_package_field(const char *package_buffer); |
Glenn L McGrath | 9aff903 | 2001-06-13 07:26:39 +0000 | [diff] [blame] | 248 | char *fgets_str(FILE *file, const char *terminating_string); |
Glenn L McGrath | 359c106 | 2001-04-12 10:19:08 +0000 | [diff] [blame] | 249 | |
Glenn L McGrath | 7fd9294 | 2001-04-11 03:11:33 +0000 | [diff] [blame] | 250 | extern int unzip(FILE *l_in_file, FILE *l_out_file); |
| 251 | extern void gz_close(int gunzip_pid); |
Glenn L McGrath | eb1c940 | 2001-06-20 07:48:00 +0000 | [diff] [blame] | 252 | extern FILE *gz_open(FILE *compressed_file, int *pid); |
Glenn L McGrath | 4949faf | 2001-04-11 16:23:35 +0000 | [diff] [blame] | 253 | |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 254 | extern struct hostent *xgethostbyname(const char *name); |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 255 | extern int create_icmp_socket(void); |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 256 | |
Matt Kraai | ceeff73 | 2001-06-21 19:41:37 +0000 | [diff] [blame] | 257 | char *dirname (const char *path); |
Glenn L McGrath | 78b0e37 | 2001-06-26 02:06:08 +0000 | [diff] [blame] | 258 | |
Matt Kraai | ceeff73 | 2001-06-21 19:41:37 +0000 | [diff] [blame] | 259 | int make_directory (char *path, mode_t mode, int flags); |
| 260 | |
Glenn L McGrath | a283157 | 2001-04-12 00:49:26 +0000 | [diff] [blame] | 261 | #define CT_AUTO 0 |
| 262 | #define CT_UNIX2DOS 1 |
| 263 | #define CT_DOS2UNIX 2 |
Matt Kraai | 1e04ea3 | 2001-04-12 21:38:06 +0000 | [diff] [blame] | 264 | /* extern int convert(char *fn, int ConvType); */ |
Glenn L McGrath | a283157 | 2001-04-12 00:49:26 +0000 | [diff] [blame] | 265 | |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 266 | enum { |
Matt Kraai | 0144103 | 2001-04-24 01:30:02 +0000 | [diff] [blame] | 267 | FILEUTILS_PRESERVE_STATUS = 1, |
| 268 | FILEUTILS_PRESERVE_SYMLINKS = 2, |
| 269 | FILEUTILS_RECUR = 4, |
| 270 | FILEUTILS_FORCE = 8, |
| 271 | FILEUTILS_INTERACTIVE = 16 |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 272 | }; |
| 273 | |
Eric Andersen | 0e9aef3 | 2001-04-30 18:18:02 +0000 | [diff] [blame] | 274 | extern const char *applet_name; |
Eric Andersen | 6f34394 | 2001-04-30 18:08:03 +0000 | [diff] [blame] | 275 | extern const char * const full_version; |
| 276 | extern const char * const name_too_long; |
| 277 | extern const char * const omitting_directory; |
| 278 | extern const char * const not_a_directory; |
| 279 | extern const char * const memory_exhausted; |
| 280 | extern const char * const invalid_date; |
| 281 | extern const char * const invalid_option; |
| 282 | extern const char * const io_error; |
| 283 | extern const char * const dash_dash_help; |
| 284 | extern const char * const write_error; |
| 285 | extern const char * const too_few_args; |
| 286 | extern const char * const name_longer_than_foo; |
Eric Andersen | 5f265b7 | 2001-05-11 16:58:46 +0000 | [diff] [blame] | 287 | extern const char * const unknown; |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 288 | extern const char * const can_not_create_raw_socket; |
Matt Kraai | 9ff9325 | 2001-04-24 01:12:33 +0000 | [diff] [blame] | 289 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 290 | #endif /* __LIBBB_H__ */ |