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 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Based in part on code from sash, Copyright (c) 1999 by David I. Bell |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 6 | * Permission has been granted to redistribute this code under the GPL. |
Rob Landley | eb84a42 | 2006-09-20 21:41:13 +0000 | [diff] [blame] | 7 | * |
| 8 | * Licensed under the GPL version 2, see the file LICENSE in this tarball. |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 9 | */ |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 10 | #ifndef __LIBBUSYBOX_H__ |
| 11 | #define __LIBBUSYBOX_H__ 1 |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 12 | |
Denis Vlasenko | b79b87a | 2006-10-19 22:17:44 +0000 | [diff] [blame] | 13 | //Ok to remove? #include "bb_config.h" |
Bernhard Reutner-Fischer | 781e42d | 2006-05-26 14:41:40 +0000 | [diff] [blame] | 14 | #include "platform.h" |
| 15 | |
Rob Landley | 5d9c42a | 2006-06-24 17:55:02 +0000 | [diff] [blame] | 16 | #include <ctype.h> |
Rob Landley | b623a54 | 2006-05-31 22:09:03 +0000 | [diff] [blame] | 17 | #include <dirent.h> |
Rob Landley | c9c1a41 | 2006-07-12 19:17:55 +0000 | [diff] [blame] | 18 | #include <errno.h> |
Rob Landley | 5d9c42a | 2006-06-24 17:55:02 +0000 | [diff] [blame] | 19 | #include <fcntl.h> |
Rob Landley | b623a54 | 2006-05-31 22:09:03 +0000 | [diff] [blame] | 20 | #include <inttypes.h> |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 21 | #include <malloc.h> |
Rob Landley | b623a54 | 2006-05-31 22:09:03 +0000 | [diff] [blame] | 22 | #include <netdb.h> |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 23 | #include <setjmp.h> |
Rob Landley | 1cca948 | 2006-07-10 19:45:20 +0000 | [diff] [blame] | 24 | #include <signal.h> |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 25 | #include <stdio.h> |
Manuel Novoa III | 68474f3 | 2004-02-05 14:45:58 +0000 | [diff] [blame] | 26 | #include <stdlib.h> |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 27 | #include <stdarg.h> |
Rob Landley | 5d9c42a | 2006-06-24 17:55:02 +0000 | [diff] [blame] | 28 | #include <string.h> |
| 29 | #include <strings.h> |
Rob Landley | c9c1a41 | 2006-07-12 19:17:55 +0000 | [diff] [blame] | 30 | #include <sys/ioctl.h> |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 31 | #include <sys/mman.h> |
Rob Landley | 5d9c42a | 2006-06-24 17:55:02 +0000 | [diff] [blame] | 32 | #include <sys/socket.h> |
"Vladimir N. Oleynik" | 7fe6520 | 2005-09-20 10:02:36 +0000 | [diff] [blame] | 33 | #include <sys/stat.h> |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 34 | #include <sys/statfs.h> |
Rob Landley | 299a6b4 | 2006-05-27 21:42:58 +0000 | [diff] [blame] | 35 | #include <sys/time.h> |
Rob Landley | b623a54 | 2006-05-31 22:09:03 +0000 | [diff] [blame] | 36 | #include <sys/types.h> |
Rob Landley | c9c1a41 | 2006-07-12 19:17:55 +0000 | [diff] [blame] | 37 | #include <sys/wait.h> |
Rob Landley | b623a54 | 2006-05-31 22:09:03 +0000 | [diff] [blame] | 38 | #include <termios.h> |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 39 | #include <time.h> |
Rob Landley | b13fee4 | 2006-06-20 22:38:00 +0000 | [diff] [blame] | 40 | #include <unistd.h> |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 41 | #include <utime.h> |
Rob Landley | 299a6b4 | 2006-05-27 21:42:58 +0000 | [diff] [blame] | 42 | |
Eric Andersen | 9e48045 | 2003-07-03 10:07:04 +0000 | [diff] [blame] | 43 | #ifdef CONFIG_SELINUX |
Bernhard Reutner-Fischer | d4cffd1 | 2005-09-21 17:38:30 +0000 | [diff] [blame] | 44 | #include <selinux/selinux.h> |
Eric Andersen | 9e48045 | 2003-07-03 10:07:04 +0000 | [diff] [blame] | 45 | #endif |
Robert Griebl | c9aca45 | 2002-06-04 20:06:25 +0000 | [diff] [blame] | 46 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 47 | #ifdef CONFIG_LOCALE_SUPPORT |
| 48 | #include <locale.h> |
Rob Landley | eb84a42 | 2006-09-20 21:41:13 +0000 | [diff] [blame] | 49 | #else |
| 50 | #define setlocale(x,y) |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 51 | #endif |
| 52 | |
Eric Andersen | 887ca79 | 2002-07-03 23:19:26 +0000 | [diff] [blame] | 53 | #include "pwd_.h" |
| 54 | #include "grp_.h" |
Eric Andersen | 27f64e1 | 2002-06-23 04:24:25 +0000 | [diff] [blame] | 55 | #include "shadow_.h" |
Eric Andersen | 27f64e1 | 2002-06-23 04:24:25 +0000 | [diff] [blame] | 56 | |
Rob Landley | 362dc2b | 2006-06-05 17:35:24 +0000 | [diff] [blame] | 57 | /* Try to pull in PATH_MAX */ |
| 58 | #include <limits.h> |
| 59 | #include <sys/param.h> |
| 60 | #ifndef PATH_MAX |
| 61 | #define PATH_MAX 256 |
| 62 | #endif |
| 63 | |
Denis Vlasenko | 7039a66 | 2006-10-08 17:54:47 +0000 | [diff] [blame] | 64 | /* Not (yet) used, but tested to work correctly |
| 65 | #define MAXINT(T) (T)( \ |
| 66 | ((T)-1) > 0 \ |
| 67 | ? (T)-1 \ |
| 68 | : (T)~((T)1 << (sizeof(T)*8-1)) \ |
| 69 | ) |
| 70 | |
| 71 | #define MININT(T) (T)( \ |
| 72 | ((T)-1) > 0 \ |
| 73 | ? (T)0 \ |
| 74 | : ((T)1 << (sizeof(T)*8-1)) \ |
| 75 | ) |
| 76 | */ |
| 77 | |
Denis Vlasenko | 5625415 | 2006-10-07 16:24:46 +0000 | [diff] [blame] | 78 | /* Large file support */ |
Denis Vlasenko | 7039a66 | 2006-10-08 17:54:47 +0000 | [diff] [blame] | 79 | /* Note that CONFIG_LFS forces bbox to be built with all common ops |
| 80 | * (stat, lseek etc) mapped to "largefile" variants by libc. |
| 81 | * Practically it means that open() automatically has O_LARGEFILE added |
| 82 | * and all filesize/file_offset parameters and struct members are "large" |
| 83 | * (in today's world - signed 64bit). For full support of large files, |
| 84 | * we need a few helper #defines (below) and careful use of off_t |
| 85 | * instead of int/ssize_t. No lseek64(), O_LARGEFILE etc necessary */ |
| 86 | #if ENBALE_LFS |
| 87 | /* CONFIG_LFS is on */ |
| 88 | # if ULONG_MAX > 0xffffffff |
| 89 | /* "long" is long enough on this system */ |
| 90 | # define STRTOOFF strtol |
| 91 | # define SAFE_STRTOOFF safe_strtol |
Denis Vlasenko | cba9ef5 | 2006-10-10 21:00:47 +0000 | [diff] [blame] | 92 | # define XSTRTOUOFF xstrtoul |
Denis Vlasenko | 7039a66 | 2006-10-08 17:54:47 +0000 | [diff] [blame] | 93 | # define OFF_FMT "%ld" |
| 94 | # else |
Denis Vlasenko | cba9ef5 | 2006-10-10 21:00:47 +0000 | [diff] [blame] | 95 | /* "long" is too short, need "long long" */ |
Denis Vlasenko | 7039a66 | 2006-10-08 17:54:47 +0000 | [diff] [blame] | 96 | # define STRTOOFF strtoll |
| 97 | # define SAFE_STRTOOFF safe_strtoll |
Denis Vlasenko | cba9ef5 | 2006-10-10 21:00:47 +0000 | [diff] [blame] | 98 | # define XSTRTOUOFF xstrtoull |
Denis Vlasenko | 7039a66 | 2006-10-08 17:54:47 +0000 | [diff] [blame] | 99 | # define OFF_FMT "%lld" |
| 100 | # endif |
Denis Vlasenko | 5625415 | 2006-10-07 16:24:46 +0000 | [diff] [blame] | 101 | #else |
Denis Vlasenko | cba9ef5 | 2006-10-10 21:00:47 +0000 | [diff] [blame] | 102 | # if 0 /* #if UINT_MAX == 0xffffffff */ |
Denis Vlasenko | 7039a66 | 2006-10-08 17:54:47 +0000 | [diff] [blame] | 103 | /* Doesn't work. off_t is a long. gcc will throw warnings on printf("%d", off_t) |
| 104 | * even if long==int on this arch. Crap... */ |
| 105 | # define STRTOOFF strtol |
| 106 | # define SAFE_STRTOOFF safe_strtoi |
Denis Vlasenko | cba9ef5 | 2006-10-10 21:00:47 +0000 | [diff] [blame] | 107 | # define XSTRTOUOFF xstrtou |
Denis Vlasenko | 7039a66 | 2006-10-08 17:54:47 +0000 | [diff] [blame] | 108 | # define OFF_FMT "%d" |
| 109 | # else |
| 110 | # define STRTOOFF strtol |
| 111 | # define SAFE_STRTOOFF safe_strtol |
Denis Vlasenko | cba9ef5 | 2006-10-10 21:00:47 +0000 | [diff] [blame] | 112 | # define XSTRTOUOFF xstrtoul |
Denis Vlasenko | 7039a66 | 2006-10-08 17:54:47 +0000 | [diff] [blame] | 113 | # define OFF_FMT "%ld" |
| 114 | # endif |
Denis Vlasenko | 5625415 | 2006-10-07 16:24:46 +0000 | [diff] [blame] | 115 | #endif |
| 116 | /* scary. better ideas? (but do *test* them first!) */ |
Denis Vlasenko | 7039a66 | 2006-10-08 17:54:47 +0000 | [diff] [blame] | 117 | #define OFF_T_MAX ((off_t)~((off_t)1 << (sizeof(off_t)*8-1))) |
Denis Vlasenko | 5625415 | 2006-10-07 16:24:46 +0000 | [diff] [blame] | 118 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 119 | /* Some useful definitions */ |
Bernhard Reutner-Fischer | 781e42d | 2006-05-26 14:41:40 +0000 | [diff] [blame] | 120 | #undef FALSE |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 121 | #define FALSE ((int) 0) |
Bernhard Reutner-Fischer | 781e42d | 2006-05-26 14:41:40 +0000 | [diff] [blame] | 122 | #undef TRUE |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 123 | #define TRUE ((int) 1) |
Bernhard Reutner-Fischer | 781e42d | 2006-05-26 14:41:40 +0000 | [diff] [blame] | 124 | #undef SKIP |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 125 | #define SKIP ((int) 2) |
| 126 | |
| 127 | /* for mtab.c */ |
| 128 | #define MTAB_GETMOUNTPT '1' |
| 129 | #define MTAB_GETDEVICE '2' |
| 130 | |
| 131 | #define BUF_SIZE 8192 |
| 132 | #define EXPAND_ALLOC 1024 |
| 133 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 134 | /* Macros for min/max. */ |
| 135 | #ifndef MIN |
| 136 | #define MIN(a,b) (((a)<(b))?(a):(b)) |
| 137 | #endif |
| 138 | |
| 139 | #ifndef MAX |
| 140 | #define MAX(a,b) (((a)>(b))?(a):(b)) |
| 141 | #endif |
| 142 | |
Bernhard Reutner-Fischer | 421d9e5 | 2006-04-03 16:39:31 +0000 | [diff] [blame] | 143 | /* buffer allocation schemes */ |
| 144 | #ifdef CONFIG_FEATURE_BUFFERS_GO_ON_STACK |
| 145 | #define RESERVE_CONFIG_BUFFER(buffer,len) char buffer[len] |
| 146 | #define RESERVE_CONFIG_UBUFFER(buffer,len) unsigned char buffer[len] |
| 147 | #define RELEASE_CONFIG_BUFFER(buffer) ((void)0) |
| 148 | #else |
| 149 | #ifdef CONFIG_FEATURE_BUFFERS_GO_IN_BSS |
| 150 | #define RESERVE_CONFIG_BUFFER(buffer,len) static char buffer[len] |
| 151 | #define RESERVE_CONFIG_UBUFFER(buffer,len) static unsigned char buffer[len] |
| 152 | #define RELEASE_CONFIG_BUFFER(buffer) ((void)0) |
| 153 | #else |
| 154 | #define RESERVE_CONFIG_BUFFER(buffer,len) char *buffer=xmalloc(len) |
| 155 | #define RESERVE_CONFIG_UBUFFER(buffer,len) unsigned char *buffer=xmalloc(len) |
| 156 | #define RELEASE_CONFIG_BUFFER(buffer) free (buffer) |
| 157 | #endif |
| 158 | #endif |
| 159 | |
| 160 | |
Bernhard Reutner-Fischer | 8379053 | 2006-05-26 13:54:07 +0000 | [diff] [blame] | 161 | typedef struct llist_s { |
| 162 | char *data; |
| 163 | struct llist_s *link; |
| 164 | } llist_t; |
Rob Landley | 8bb5078 | 2006-05-26 23:44:51 +0000 | [diff] [blame] | 165 | extern void llist_add_to(llist_t **old_head, void *data); |
| 166 | extern void llist_add_to_end(llist_t **list_head, void *data); |
Bernhard Reutner-Fischer | 8379053 | 2006-05-26 13:54:07 +0000 | [diff] [blame] | 167 | extern void *llist_pop(llist_t **elm); |
| 168 | extern void llist_free(llist_t *elm, void (*freeit)(void *data)); |
Denis Vlasenko | c8400a2 | 2006-10-25 00:33:44 +0000 | [diff] [blame] | 169 | extern llist_t* rev_llist(llist_t *list); |
Bernhard Reutner-Fischer | 8379053 | 2006-05-26 13:54:07 +0000 | [diff] [blame] | 170 | |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 171 | enum { |
| 172 | LOGMODE_NONE = 0, |
| 173 | LOGMODE_STDIO = 1<<0, |
| 174 | LOGMODE_SYSLOG = 1<<1, |
| 175 | LOGMODE_BOTH = LOGMODE_SYSLOG + LOGMODE_STDIO, |
| 176 | }; |
Denis Vlasenko | a980165 | 2006-09-07 16:20:03 +0000 | [diff] [blame] | 177 | extern const char *msg_eol; |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 178 | extern int logmode; |
Denis Vlasenko | a980165 | 2006-09-07 16:20:03 +0000 | [diff] [blame] | 179 | extern int die_sleep; |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 180 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 181 | extern void bb_show_usage(void) ATTRIBUTE_NORETURN ATTRIBUTE_EXTERNALLY_VISIBLE; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 182 | extern void bb_error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); |
| 183 | extern void bb_error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); |
| 184 | extern void bb_perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); |
| 185 | extern void bb_perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); |
| 186 | extern void bb_vherror_msg(const char *s, va_list p); |
| 187 | extern void bb_herror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); |
| 188 | extern void bb_herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); |
| 189 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 190 | extern void bb_perror_nomsg_and_die(void) ATTRIBUTE_NORETURN; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 191 | extern void bb_perror_nomsg(void); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 192 | |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 193 | extern void bb_info_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); |
| 194 | |
Eric Andersen | b183dfa | 2001-03-19 19:24:06 +0000 | [diff] [blame] | 195 | /* These two are used internally -- you shouldn't need to use them */ |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 196 | extern void bb_verror_msg(const char *s, va_list p, const char *strerr) __attribute__ ((format (printf, 1, 0))); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 197 | extern void bb_vperror_msg(const char *s, va_list p) __attribute__ ((format (printf, 1, 0))); |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 198 | extern void bb_vinfo_msg(const char *s, va_list p) __attribute__ ((format (printf, 1, 0))); |
Eric Andersen | b183dfa | 2001-03-19 19:24:06 +0000 | [diff] [blame] | 199 | |
Paul Fox | 0b62158 | 2005-08-09 19:38:05 +0000 | [diff] [blame] | 200 | extern int bb_echo(int argc, char** argv); |
Paul Fox | 6ab0378 | 2006-06-08 21:37:26 +0000 | [diff] [blame] | 201 | extern int bb_test(int argc, char** argv); |
Paul Fox | 0b62158 | 2005-08-09 19:38:05 +0000 | [diff] [blame] | 202 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 203 | extern const char *bb_mode_string(int mode); |
| 204 | extern int is_directory(const char *name, int followLinks, struct stat *statBuf); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 205 | extern DIR *warn_opendir(const char *path); |
| 206 | extern DIR *xopendir(const char *path); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 207 | |
Denis Vlasenko | ea62077 | 2006-10-14 02:23:43 +0000 | [diff] [blame] | 208 | extern ssize_t safe_read(int fd, void *buf, size_t count); |
| 209 | extern ssize_t full_read(int fd, void *buf, size_t count); |
| 210 | extern void xread(int fd, void *buf, size_t count); |
| 211 | extern unsigned char xread_char(int fd); |
| 212 | extern char *reads(int fd, char *buf, size_t count); |
| 213 | ssize_t read_close(int fd, void *buf, size_t count); |
| 214 | ssize_t open_read_close(const char *filename, void *buf, size_t count); |
| 215 | void *xmalloc_open_read_close(const char *filename, size_t *sizep); |
| 216 | |
| 217 | extern ssize_t safe_write(int fd, const void *buf, size_t count); |
| 218 | extern ssize_t full_write(int fd, const void *buf, size_t count); |
| 219 | extern void xwrite(int fd, void *buf, size_t count); |
| 220 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 221 | extern int remove_file(const char *path, int flags); |
| 222 | extern int copy_file(const char *source, const char *dest, int flags); |
Denis Vlasenko | ea62077 | 2006-10-14 02:23:43 +0000 | [diff] [blame] | 223 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 224 | extern int recursive_action(const char *fileName, int recurse, |
| 225 | int followLinks, int depthFirst, |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 226 | int (*fileAction) (const char *fileName, struct stat* statbuf, void* userData), |
| 227 | int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData), |
| 228 | void* userData); |
| 229 | |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 230 | extern int bb_parse_mode(const char* s, mode_t* theMode); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 231 | |
Rob Landley | 290fcb4 | 2006-06-18 23:59:03 +0000 | [diff] [blame] | 232 | extern unsigned int tty_baud_to_value(speed_t speed); |
| 233 | extern speed_t tty_value_to_baud(unsigned int value); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 234 | |
Bernhard Reutner-Fischer | e2e56c7 | 2006-05-19 11:54:02 +0000 | [diff] [blame] | 235 | extern int get_linux_version_code(void); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 236 | |
Eric Andersen | c38678d | 2002-09-16 06:22:25 +0000 | [diff] [blame] | 237 | extern int get_console_fd(void); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 238 | extern struct mntent *find_mount_point(const char *name, const char *table); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 239 | extern void erase_mtab(const char * name); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 240 | extern long *find_pid_by_name( const char* pidName); |
Bernhard Reutner-Fischer | 56b2171 | 2005-10-06 12:10:48 +0000 | [diff] [blame] | 241 | extern long *pidlist_reverse(long *pidList); |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 242 | extern char *find_block_device(char *path); |
Denis Vlasenko | 7039a66 | 2006-10-08 17:54:47 +0000 | [diff] [blame] | 243 | extern off_t bb_copyfd_size(int fd1, int fd2, off_t size); |
| 244 | extern off_t bb_copyfd_eof(int fd1, int fd2); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 245 | extern char bb_process_escape_sequence(const char **ptr); |
| 246 | extern char *bb_get_last_path_component(char *path); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 247 | |
Denis Vlasenko | ddec5af | 2006-10-26 23:25:17 +0000 | [diff] [blame^] | 248 | /* Prints to stdout closes entire FILE. Exits on error: */ |
| 249 | extern void xprint_and_close_file(FILE *file); |
| 250 | extern char *xmalloc_fgets(FILE *file); |
| 251 | /* /* Read up to (and including) TERMINATING_STRING: */ |
| 252 | extern char *xmalloc_fgets_str(FILE *file, const char *terminating_string); |
| 253 | /* Chops off '\n' from the end, unlike fgets: */ |
| 254 | extern char *xmalloc_getline(FILE *file); |
| 255 | extern char *bb_get_chunk_from_file(FILE *file, int *end); |
| 256 | extern void die_if_ferror(FILE *file, const char *msg); |
| 257 | extern void die_if_ferror_stdout(void); |
| 258 | extern void xfflush_stdout(void); |
Denis Vlasenko | f0ed376 | 2006-10-26 23:21:47 +0000 | [diff] [blame] | 259 | extern void fflush_stdout_and_exit(int retval) ATTRIBUTE_NORETURN; |
Denis Vlasenko | ddec5af | 2006-10-26 23:25:17 +0000 | [diff] [blame^] | 260 | extern int fclose_if_not_stdin(FILE *file); |
| 261 | extern FILE *xfopen(const char *filename, const char *mode); |
| 262 | /* Prints warning to stderr and returns NULL on failure: */ |
| 263 | extern FILE *fopen_or_warn(const char *filename, const char *mode); |
| 264 | /* "Opens" stdin if filename is special, else just opens file: */ |
| 265 | extern FILE *fopen_or_warn_stdin(const char *filename); |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 266 | |
Rob Landley | 20cc6d5 | 2006-09-12 21:42:17 +0000 | [diff] [blame] | 267 | extern void xstat(char *filename, struct stat *buf); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 268 | extern int xsocket(int domain, int type, int protocol); |
| 269 | extern pid_t spawn(char **argv); |
| 270 | extern pid_t xspawn(char **argv); |
Rob Landley | c7ddefc | 2006-06-14 01:24:33 +0000 | [diff] [blame] | 271 | extern int wait4pid(int pid); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 272 | extern void xdaemon(int nochdir, int noclose); |
| 273 | extern void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen); |
| 274 | extern void xlisten(int s, int backlog); |
| 275 | extern void xchdir(const char *path); |
Rob Landley | c9c1a41 | 2006-07-12 19:17:55 +0000 | [diff] [blame] | 276 | extern void utoa_to_buf(unsigned n, char *buf, unsigned buflen); |
| 277 | extern char *utoa(unsigned n); |
| 278 | extern void itoa_to_buf(int n, char *buf, unsigned buflen); |
| 279 | extern char *itoa(int n); |
Rob Landley | df822f2 | 2006-07-15 23:00:46 +0000 | [diff] [blame] | 280 | extern void xsetgid(gid_t gid); |
| 281 | extern void xsetuid(uid_t uid); |
Rob Landley | 5343747 | 2006-07-16 08:14:35 +0000 | [diff] [blame] | 282 | extern off_t fdlength(int fd); |
Rob Landley | c5b1d4d | 2006-03-13 15:45:16 +0000 | [diff] [blame] | 283 | |
Denis Vlasenko | c12f530 | 2006-10-06 09:49:47 +0000 | [diff] [blame] | 284 | enum { BB_GETOPT_ERROR = 0x80000000 }; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 285 | extern const char *opt_complementary; |
| 286 | extern const struct option *applet_long_options; |
Denis Vlasenko | c12f530 | 2006-10-06 09:49:47 +0000 | [diff] [blame] | 287 | extern uint32_t option_mask32; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 288 | extern uint32_t getopt32(int argc, char **argv, const char *applet_opts, ...); |
Eric Andersen | a3bb3e6 | 2003-06-26 09:05:32 +0000 | [diff] [blame] | 289 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 290 | extern void bb_warn_ignoring_args(int n); |
| 291 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 292 | extern void chomp(char *s); |
| 293 | extern void trim(char *s); |
Rob Landley | ea224be | 2006-06-18 20:20:07 +0000 | [diff] [blame] | 294 | extern char *skip_whitespace(const char *); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 295 | |
Rob Landley | 519d7df | 2006-08-09 20:56:23 +0000 | [diff] [blame] | 296 | #ifndef BUILD_INDIVIDUAL |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 297 | extern struct BB_applet *find_applet_by_name(const char *name); |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 298 | extern void run_applet_by_name(const char *name, int argc, char **argv); |
Rob Landley | 519d7df | 2006-08-09 20:56:23 +0000 | [diff] [blame] | 299 | #endif |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 300 | |
Bernhard Reutner-Fischer | d4cffd1 | 2005-09-21 17:38:30 +0000 | [diff] [blame] | 301 | /* dmalloc will redefine these to it's own implementation. It is safe |
| 302 | * to have the prototypes here unconditionally. */ |
| 303 | extern void *xmalloc(size_t size); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 304 | extern void *xrealloc(void *old, size_t size); |
Rob Landley | 80b8ff0 | 2006-05-19 20:36:49 +0000 | [diff] [blame] | 305 | extern void *xzalloc(size_t size); |
Bernhard Reutner-Fischer | d4cffd1 | 2005-09-21 17:38:30 +0000 | [diff] [blame] | 306 | |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 307 | extern char *xstrdup(const char *s); |
| 308 | extern char *xstrndup(const char *s, int n); |
Eric Andersen | 3cac0c7 | 2004-03-12 22:08:13 +0000 | [diff] [blame] | 309 | extern char *safe_strncpy(char *dst, const char *src, size_t size); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 310 | // FIXME: the prototype doesn't match libc strtoXX -> confusion |
| 311 | // FIXME: alot of unchecked strtoXXX are still in tree |
| 312 | // FIXME: atoi_or_else(str, N)? |
| 313 | extern int safe_strtoi(const char *arg, int* value); |
| 314 | extern int safe_strtou(const char *arg, unsigned* value); |
| 315 | extern int safe_strtod(const char *arg, double* value); |
| 316 | extern int safe_strtol(const char *arg, long* value); |
| 317 | extern int safe_strtoll(const char *arg, long long* value); |
| 318 | extern int safe_strtoul(const char *arg, unsigned long* value); |
| 319 | extern int safe_strtoull(const char *arg, unsigned long long* value); |
| 320 | extern int safe_strtou32(const char *arg, uint32_t* value); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 321 | |
| 322 | struct suffix_mult { |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 323 | const char *suffix; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 324 | unsigned int mult; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 325 | }; |
| 326 | |
Denis Vlasenko | cba9ef5 | 2006-10-10 21:00:47 +0000 | [diff] [blame] | 327 | unsigned long long xstrtoull(const char *numstr, int base); |
| 328 | unsigned long long xatoull(const char *numstr); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 329 | unsigned long xstrtoul_range_sfx(const char *numstr, int base, |
Denis Vlasenko | cf94446 | 2006-10-03 19:02:20 +0000 | [diff] [blame] | 330 | unsigned long lower, |
| 331 | unsigned long upper, |
| 332 | const struct suffix_mult *suffixes); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 333 | unsigned long xstrtoul_range(const char *numstr, int base, |
Denis Vlasenko | cf94446 | 2006-10-03 19:02:20 +0000 | [diff] [blame] | 334 | unsigned long lower, |
| 335 | unsigned long upper); |
Denis Vlasenko | 1114de7 | 2006-10-10 23:26:05 +0000 | [diff] [blame] | 336 | unsigned long xstrtoul_sfx(const char *numstr, int base, |
| 337 | const struct suffix_mult *suffixes); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 338 | unsigned long xstrtoul(const char *numstr, int base); |
| 339 | unsigned long xatoul_range_sfx(const char *numstr, |
| 340 | unsigned long lower, |
| 341 | unsigned long upper, |
| 342 | const struct suffix_mult *suffixes); |
| 343 | unsigned long xatoul_sfx(const char *numstr, |
| 344 | const struct suffix_mult *suffixes); |
| 345 | unsigned long xatoul_range(const char *numstr, |
Denis Vlasenko | cf94446 | 2006-10-03 19:02:20 +0000 | [diff] [blame] | 346 | unsigned long lower, |
| 347 | unsigned long upper); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 348 | unsigned long xatoul(const char *numstr); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 349 | long xstrtol_range_sfx(const char *numstr, int base, |
Denis Vlasenko | cf94446 | 2006-10-03 19:02:20 +0000 | [diff] [blame] | 350 | long lower, |
| 351 | long upper, |
| 352 | const struct suffix_mult *suffixes); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 353 | long xstrtol_range(const char *numstr, int base, long lower, long upper); |
| 354 | long xatol_range_sfx(const char *numstr, |
| 355 | long lower, |
| 356 | long upper, |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 357 | const struct suffix_mult *suffixes); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 358 | long xatol_range(const char *numstr, long lower, long upper); |
| 359 | long xatol_sfx(const char *numstr, const struct suffix_mult *suffixes); |
| 360 | long xatol(const char *numstr); |
| 361 | /* Specialized: */ |
| 362 | unsigned xatou(const char *numstr); |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 363 | int xatoi_range(const char *numstr, int lower, int upper); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 364 | int xatoi(const char *numstr); |
| 365 | /* Using xatoi() instead of naive atoi() is not always convenient - |
| 366 | * in many places people want *non-negative* values, but store them |
| 367 | * in signed int. Therefore we need this one: |
| 368 | * dies if input is not in [0, INT_MAX] range. Also will reject '-0' etc */ |
| 369 | int xatoi_u(const char *numstr); |
| 370 | uint32_t xatou32(const char *numstr); |
| 371 | /* Useful for reading port numbers */ |
| 372 | uint16_t xatou16(const char *numstr); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 373 | |
| 374 | /* These parse entries in /etc/passwd and /etc/group. This is desirable |
| 375 | * for BusyBox since we want to avoid using the glibc NSS stuff, which |
Bernhard Reutner-Fischer | d5bd137 | 2005-09-20 21:06:17 +0000 | [diff] [blame] | 376 | * increases target size and is often not needed on embedded systems. */ |
| 377 | extern long bb_xgetpwnam(const char *name); |
| 378 | extern long bb_xgetgrnam(const char *name); |
Denis Vlasenko | cf94446 | 2006-10-03 19:02:20 +0000 | [diff] [blame] | 379 | extern char *bb_getug(char *buffer, char *idname, long id, int bufsize, char prefix); |
| 380 | extern char *bb_getpwuid(char *name, long uid, int bufsize); |
| 381 | extern char *bb_getgrgid(char *group, long gid, int bufsize); |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 382 | extern char *bb_askpass(int timeout, const char * prompt); |
Denis Vlasenko | de59c0f | 2006-10-05 22:50:22 +0000 | [diff] [blame] | 383 | /* from chpst */ |
| 384 | struct bb_uidgid_t { |
| 385 | uid_t uid; |
| 386 | gid_t gid; |
| 387 | }; |
| 388 | extern unsigned uidgid_get(struct bb_uidgid_t*, const char* /*, unsigned*/); |
| 389 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 390 | |
Glenn L McGrath | b4a1baa | 2003-01-13 22:09:50 +0000 | [diff] [blame] | 391 | extern int device_open(const char *device, int mode); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 392 | |
Rob Landley | 1d589b2 | 2005-11-29 23:47:10 +0000 | [diff] [blame] | 393 | extern char *query_loop(const char *device); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 394 | extern int del_loop(const char *device); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 395 | extern int set_loop(char **device, const char *file, unsigned long long offset); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 396 | |
| 397 | #if (__GLIBC__ < 2) |
| 398 | extern int vdprintf(int d, const char *format, va_list ap); |
| 399 | #endif |
| 400 | |
Bernhard Reutner-Fischer | a1bccc0 | 2006-04-02 20:17:55 +0000 | [diff] [blame] | 401 | /* Include our own copy of struct sysinfo to avoid binary compatibility |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 402 | * problems with Linux 2.4, which changed things. Grumble, grumble. */ |
| 403 | struct sysinfo { |
| 404 | long uptime; /* Seconds since boot */ |
| 405 | unsigned long loads[3]; /* 1, 5, and 15 minute load averages */ |
| 406 | unsigned long totalram; /* Total usable main memory size */ |
| 407 | unsigned long freeram; /* Available memory size */ |
| 408 | unsigned long sharedram; /* Amount of shared memory */ |
| 409 | unsigned long bufferram; /* Memory used by buffers */ |
| 410 | unsigned long totalswap; /* Total swap space size */ |
| 411 | unsigned long freeswap; /* swap space still available */ |
| 412 | unsigned short procs; /* Number of current processes */ |
Matt Kraai | 5246225 | 2001-06-08 13:57:27 +0000 | [diff] [blame] | 413 | unsigned short pad; /* Padding needed for m68k */ |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 414 | unsigned long totalhigh; /* Total high memory size */ |
| 415 | unsigned long freehigh; /* Available high memory size */ |
| 416 | unsigned int mem_unit; /* Memory unit size in bytes */ |
| 417 | char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */ |
| 418 | }; |
| 419 | extern int sysinfo (struct sysinfo* info); |
| 420 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 421 | enum { |
| 422 | KILOBYTE = 1024, |
| 423 | MEGABYTE = (KILOBYTE*1024), |
| 424 | GIGABYTE = (MEGABYTE*1024) |
| 425 | }; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 426 | const char *make_human_readable_str(unsigned long long size, |
Eric Andersen | 97e2426 | 2003-08-22 23:08:37 +0000 | [diff] [blame] | 427 | unsigned long block_size, unsigned long display_unit); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 428 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 429 | int bb_ask_confirmation(void); |
Eric Andersen | e76c3b0 | 2001-04-05 03:14:39 +0000 | [diff] [blame] | 430 | int klogctl(int type, char * b, int len); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 431 | |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 432 | char *xgetcwd(char *cwd); |
Mark Whitley | 8a63326 | 2001-04-30 18:17:00 +0000 | [diff] [blame] | 433 | char *xreadlink(const char *path); |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 434 | char *concat_path_file(const char *path, const char *filename); |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 435 | char *concat_subpath_file(const char *path, const char *filename); |
Eric Andersen | c911a43 | 2001-05-15 17:42:16 +0000 | [diff] [blame] | 436 | char *last_char_is(const char *s, int c); |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 437 | |
Denis Vlasenko | f6f43df | 2006-10-11 22:16:56 +0000 | [diff] [blame] | 438 | int execable_file(const char *name); |
| 439 | char *find_execable(const char *filename); |
| 440 | int exists_execable(const char *filename); |
| 441 | |
Denis Vlasenko | 97a8dd3 | 2006-10-01 15:55:11 +0000 | [diff] [blame] | 442 | extern USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 443 | extern int inflate(int in, int out); |
Glenn L McGrath | 4949faf | 2001-04-11 16:23:35 +0000 | [diff] [blame] | 444 | |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 445 | extern struct hostent *xgethostbyname(const char *name); |
Eric Andersen | 51b8bd6 | 2002-07-03 11:46:38 +0000 | [diff] [blame] | 446 | extern struct hostent *xgethostbyname2(const char *name, int af); |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 447 | extern int create_icmp_socket(void); |
Eric Andersen | 51b8bd6 | 2002-07-03 11:46:38 +0000 | [diff] [blame] | 448 | extern int create_icmp6_socket(void); |
Denis Vlasenko | 1457915 | 2006-10-26 01:09:46 +0000 | [diff] [blame] | 449 | extern void xconnect(int s, const struct sockaddr *s_addr, socklen_t addrlen); |
| 450 | extern int xconnect_tcp_v4(struct sockaddr_in *s_addr); |
| 451 | |
Glenn L McGrath | 036dbaa | 2004-01-17 05:03:31 +0000 | [diff] [blame] | 452 | extern unsigned short bb_lookup_port(const char *port, const char *protocol, unsigned short default_port); |
Glenn L McGrath | ffccf6e | 2003-12-20 01:47:18 +0000 | [diff] [blame] | 453 | extern void bb_lookup_host(struct sockaddr_in *s_in, const char *host); |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 454 | |
Rob Landley | 69115c6 | 2006-09-15 04:01:03 +0000 | [diff] [blame] | 455 | // This is declared here rather than #including <libgen.h> in order to avoid |
| 456 | // confusing the two versions of basename. See the dirname/basename man page |
| 457 | // for details. |
Denis Vlasenko | 97a8dd3 | 2006-10-01 15:55:11 +0000 | [diff] [blame] | 458 | char *dirname(char *path); |
Glenn L McGrath | 78b0e37 | 2001-06-26 02:06:08 +0000 | [diff] [blame] | 459 | |
Denis Vlasenko | 97a8dd3 | 2006-10-01 15:55:11 +0000 | [diff] [blame] | 460 | int bb_make_directory(char *path, long mode, int flags); |
Matt Kraai | ceeff73 | 2001-06-21 19:41:37 +0000 | [diff] [blame] | 461 | |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 462 | int get_signum(const char *name); |
| 463 | const char *get_signame(int number); |
Rob Landley | c9c1a41 | 2006-07-12 19:17:55 +0000 | [diff] [blame] | 464 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 465 | char *bb_simplify_path(const char *path); |
Eric Andersen | 3450636 | 2001-08-02 05:02:46 +0000 | [diff] [blame] | 466 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 467 | enum { /* DO NOT CHANGE THESE VALUES! cp.c depends on them. */ |
Matt Kraai | 0144103 | 2001-04-24 01:30:02 +0000 | [diff] [blame] | 468 | FILEUTILS_PRESERVE_STATUS = 1, |
Matt Kraai | 4c557bf | 2001-10-05 01:35:10 +0000 | [diff] [blame] | 469 | FILEUTILS_DEREFERENCE = 2, |
Matt Kraai | 0144103 | 2001-04-24 01:30:02 +0000 | [diff] [blame] | 470 | FILEUTILS_RECUR = 4, |
| 471 | FILEUTILS_FORCE = 8, |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 472 | FILEUTILS_INTERACTIVE = 0x10, |
| 473 | FILEUTILS_MAKE_HARDLINK = 0x20, |
| 474 | FILEUTILS_MAKE_SOFTLINK = 0x40, |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 475 | }; |
Denis Vlasenko | f24e1f4 | 2006-10-21 23:40:20 +0000 | [diff] [blame] | 476 | #define FILEUTILS_CP_OPTSTR "pdRfils" |
Matt Kraai | 91b2855 | 2001-04-23 18:53:07 +0000 | [diff] [blame] | 477 | |
Denis Vlasenko | 8f8f268 | 2006-10-03 21:00:43 +0000 | [diff] [blame] | 478 | extern const char *applet_name; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 479 | |
Denis Vlasenko | 0b5fd45 | 2006-09-19 09:55:09 +0000 | [diff] [blame] | 480 | extern const char bb_msg_full_version[]; |
| 481 | extern const char bb_msg_memory_exhausted[]; |
| 482 | extern const char bb_msg_invalid_date[]; |
Denis Vlasenko | 0b5fd45 | 2006-09-19 09:55:09 +0000 | [diff] [blame] | 483 | extern const char bb_msg_read_error[]; |
| 484 | extern const char bb_msg_write_error[]; |
| 485 | extern const char bb_msg_name_longer_than_foo[]; |
| 486 | extern const char bb_msg_unknown[]; |
| 487 | extern const char bb_msg_can_not_create_raw_socket[]; |
| 488 | extern const char bb_msg_perm_denied_are_you_root[]; |
| 489 | extern const char bb_msg_requires_arg[]; |
| 490 | extern const char bb_msg_invalid_arg[]; |
| 491 | extern const char bb_msg_standard_input[]; |
| 492 | extern const char bb_msg_standard_output[]; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 493 | |
Denis Vlasenko | 0b5fd45 | 2006-09-19 09:55:09 +0000 | [diff] [blame] | 494 | extern const char bb_path_nologin_file[]; |
| 495 | extern const char bb_path_passwd_file[]; |
| 496 | extern const char bb_path_shadow_file[]; |
| 497 | extern const char bb_path_gshadow_file[]; |
| 498 | extern const char bb_path_group_file[]; |
| 499 | extern const char bb_path_securetty_file[]; |
| 500 | extern const char bb_path_motd_file[]; |
| 501 | extern const char bb_path_wtmp_file[]; |
| 502 | extern const char bb_dev_null[]; |
"Vladimir N. Oleynik" | 6f347ef | 2005-10-15 10:23:55 +0000 | [diff] [blame] | 503 | |
| 504 | #ifndef BUFSIZ |
| 505 | #define BUFSIZ 4096 |
| 506 | #endif |
| 507 | extern char bb_common_bufsiz1[BUFSIZ+1]; |
| 508 | |
Glenn L McGrath | dc4e75e | 2003-09-02 02:36:18 +0000 | [diff] [blame] | 509 | /* |
| 510 | * You can change LIBBB_DEFAULT_LOGIN_SHELL, but don`t use, |
| 511 | * use bb_default_login_shell and next defines, |
| 512 | * if you LIBBB_DEFAULT_LOGIN_SHELL change, |
| 513 | * don`t lose change increment constant! |
| 514 | */ |
| 515 | #define LIBBB_DEFAULT_LOGIN_SHELL "-/bin/sh" |
| 516 | |
Denis Vlasenko | 0b5fd45 | 2006-09-19 09:55:09 +0000 | [diff] [blame] | 517 | extern const char bb_default_login_shell[]; |
Glenn L McGrath | dc4e75e | 2003-09-02 02:36:18 +0000 | [diff] [blame] | 518 | /* "/bin/sh" */ |
| 519 | #define DEFAULT_SHELL (bb_default_login_shell+1) |
| 520 | /* "sh" */ |
| 521 | #define DEFAULT_SHELL_SHORT_NAME (bb_default_login_shell+6) |
| 522 | |
| 523 | |
Denis Vlasenko | 0b5fd45 | 2006-09-19 09:55:09 +0000 | [diff] [blame] | 524 | extern const char bb_path_mtab_file[]; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 525 | |
Denis Vlasenko | 4092082 | 2006-10-03 20:28:06 +0000 | [diff] [blame] | 526 | extern int xfunc_error_retval; |
Matt Kraai | 9ff9325 | 2001-04-24 01:12:33 +0000 | [diff] [blame] | 527 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 528 | #ifdef CONFIG_FEATURE_DEVFS |
Matt Kraai | 439e3df | 2001-07-23 14:52:08 +0000 | [diff] [blame] | 529 | # define CURRENT_VC "/dev/vc/0" |
| 530 | # define VC_1 "/dev/vc/1" |
| 531 | # define VC_2 "/dev/vc/2" |
| 532 | # define VC_3 "/dev/vc/3" |
| 533 | # define VC_4 "/dev/vc/4" |
| 534 | # define VC_5 "/dev/vc/5" |
Eric Andersen | 592ebd5 | 2003-07-22 07:33:14 +0000 | [diff] [blame] | 535 | #if defined(__sh__) || defined(__H8300H__) || defined(__H8300S__) |
| 536 | /* Yes, this sucks, but both SH (including sh64) and H8 have a SCI(F) for their |
| 537 | respective serial ports .. as such, we can't use the common device paths for |
| 538 | these. -- PFM */ |
| 539 | # define SC_0 "/dev/ttsc/0" |
| 540 | # define SC_1 "/dev/ttsc/1" |
| 541 | # define SC_FORMAT "/dev/ttsc/%d" |
| 542 | #else |
| 543 | # define SC_0 "/dev/tts/0" |
| 544 | # define SC_1 "/dev/tts/1" |
| 545 | # define SC_FORMAT "/dev/tts/%d" |
| 546 | #endif |
Matt Kraai | 439e3df | 2001-07-23 14:52:08 +0000 | [diff] [blame] | 547 | # define VC_FORMAT "/dev/vc/%d" |
Eric Andersen | c7a3fb9 | 2002-03-20 15:25:25 +0000 | [diff] [blame] | 548 | # define LOOP_FORMAT "/dev/loop/%d" |
Denis Vlasenko | 0b193a7 | 2006-09-29 21:47:11 +0000 | [diff] [blame] | 549 | # define LOOP_NAME "/dev/loop/" |
Eric Andersen | 5f28455 | 2003-11-14 03:11:29 +0000 | [diff] [blame] | 550 | # define FB_0 "/dev/fb/0" |
Matt Kraai | 439e3df | 2001-07-23 14:52:08 +0000 | [diff] [blame] | 551 | #else |
| 552 | # define CURRENT_VC "/dev/tty0" |
| 553 | # define VC_1 "/dev/tty1" |
| 554 | # define VC_2 "/dev/tty2" |
| 555 | # define VC_3 "/dev/tty3" |
| 556 | # define VC_4 "/dev/tty4" |
| 557 | # define VC_5 "/dev/tty5" |
Eric Andersen | 592ebd5 | 2003-07-22 07:33:14 +0000 | [diff] [blame] | 558 | #if defined(__sh__) || defined(__H8300H__) || defined(__H8300S__) |
| 559 | # define SC_0 "/dev/ttySC0" |
| 560 | # define SC_1 "/dev/ttySC1" |
| 561 | # define SC_FORMAT "/dev/ttySC%d" |
| 562 | #else |
| 563 | # define SC_0 "/dev/ttyS0" |
| 564 | # define SC_1 "/dev/ttyS1" |
| 565 | # define SC_FORMAT "/dev/ttyS%d" |
| 566 | #endif |
Matt Kraai | 439e3df | 2001-07-23 14:52:08 +0000 | [diff] [blame] | 567 | # define VC_FORMAT "/dev/tty%d" |
Eric Andersen | c7a3fb9 | 2002-03-20 15:25:25 +0000 | [diff] [blame] | 568 | # define LOOP_FORMAT "/dev/loop%d" |
Denis Vlasenko | 0b193a7 | 2006-09-29 21:47:11 +0000 | [diff] [blame] | 569 | # define LOOP_NAME "/dev/loop" |
Eric Andersen | 5f28455 | 2003-11-14 03:11:29 +0000 | [diff] [blame] | 570 | # define FB_0 "/dev/fb0" |
Matt Kraai | 439e3df | 2001-07-23 14:52:08 +0000 | [diff] [blame] | 571 | #endif |
| 572 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 573 | |
Matt Kraai | 439e3df | 2001-07-23 14:52:08 +0000 | [diff] [blame] | 574 | /* The following devices are the same on devfs and non-devfs systems. */ |
| 575 | #define CURRENT_TTY "/dev/tty" |
| 576 | #define CONSOLE_DEV "/dev/console" |
| 577 | |
Matt Kraai | ace02dc | 2001-12-17 15:26:36 +0000 | [diff] [blame] | 578 | int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name); |
| 579 | void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name); |
| 580 | void reset_ino_dev_hashtable(void); |
| 581 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 582 | char *xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2))); |
Eric Andersen | 27f64e1 | 2002-06-23 04:24:25 +0000 | [diff] [blame] | 583 | |
| 584 | #define FAIL_DELAY 3 |
Rob Landley | 84cb767 | 2006-01-06 20:59:09 +0000 | [diff] [blame] | 585 | extern void bb_do_delay(int seconds); |
Denis Vlasenko | 2e50291 | 2006-09-08 17:22:45 +0000 | [diff] [blame] | 586 | extern void change_identity(const struct passwd *pw); |
| 587 | extern const char *change_identity_e2str(const struct passwd *pw); |
| 588 | extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args); |
Eric Andersen | 9e48045 | 2003-07-03 10:07:04 +0000 | [diff] [blame] | 589 | #ifdef CONFIG_SELINUX |
Rob Landley | 60158cb | 2005-05-03 06:25:50 +0000 | [diff] [blame] | 590 | extern void renew_current_security_context(void); |
| 591 | extern void set_current_security_context(security_context_t sid); |
Bernhard Reutner-Fischer | d4cffd1 | 2005-09-21 17:38:30 +0000 | [diff] [blame] | 592 | #endif |
Eric Andersen | 2a18689 | 2003-07-29 07:05:40 +0000 | [diff] [blame] | 593 | extern int run_parts(char **args, const unsigned char test_mode, char **env); |
Denis Vlasenko | fe54458 | 2006-10-03 15:57:40 +0000 | [diff] [blame] | 594 | extern int restricted_shell(const char *shell); |
| 595 | extern void setup_environment(const char *shell, int loginshell, int changeenv, const struct passwd *pw); |
| 596 | extern int correct_password(const struct passwd *pw); |
Eric Andersen | 27f64e1 | 2002-06-23 04:24:25 +0000 | [diff] [blame] | 597 | extern char *pw_encrypt(const char *clear, const char *salt); |
Eric Andersen | 27f64e1 | 2002-06-23 04:24:25 +0000 | [diff] [blame] | 598 | extern int obscure(const char *old, const char *newval, const struct passwd *pwdp); |
| 599 | |
Denis Vlasenko | fe54458 | 2006-10-03 15:57:40 +0000 | [diff] [blame] | 600 | extern void xsetenv(const char *key, const char *value); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 601 | extern int xopen(const char *pathname, int flags); |
| 602 | extern int xopen3(const char *pathname, int flags, int mode); |
Denis Vlasenko | ea62077 | 2006-10-14 02:23:43 +0000 | [diff] [blame] | 603 | extern off_t xlseek(int fd, off_t offset, int whence); |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 604 | |
Denis Vlasenko | 21afc7d | 2006-09-03 15:49:40 +0000 | [diff] [blame] | 605 | extern const char bb_uuenc_tbl_base64[]; |
| 606 | extern const char bb_uuenc_tbl_std[]; |
| 607 | extern void bb_uuencode(const unsigned char *s, char *store, const int length, const char *tbl); |
| 608 | |
Bernhard Reutner-Fischer | 56b2171 | 2005-10-06 12:10:48 +0000 | [diff] [blame] | 609 | #ifndef COMM_LEN |
Bernhard Reutner-Fischer | 56b2171 | 2005-10-06 12:10:48 +0000 | [diff] [blame] | 610 | #ifdef TASK_COMM_LEN |
| 611 | #define COMM_LEN TASK_COMM_LEN |
| 612 | #else |
Rob Landley | 362dc2b | 2006-06-05 17:35:24 +0000 | [diff] [blame] | 613 | /* synchronize with sizeof(task_struct.comm) in /usr/include/linux/sched.h */ |
| 614 | #define COMM_LEN 16 |
Bernhard Reutner-Fischer | 56b2171 | 2005-10-06 12:10:48 +0000 | [diff] [blame] | 615 | #endif |
| 616 | #endif |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 617 | typedef struct { |
| 618 | int pid; |
| 619 | char user[9]; |
| 620 | char state[4]; |
| 621 | unsigned long rss; |
| 622 | int ppid; |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 623 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 624 | unsigned pcpu; |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 625 | unsigned pscpu; |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 626 | unsigned long stime, utime; |
| 627 | #endif |
| 628 | char *cmd; |
| 629 | |
| 630 | /* basename of executable file in call to exec(2), |
| 631 | size from kernel headers */ |
Bernhard Reutner-Fischer | 56b2171 | 2005-10-06 12:10:48 +0000 | [diff] [blame] | 632 | char short_cmd[COMM_LEN]; |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 633 | } procps_status_t; |
| 634 | |
Rob Landley | 60158cb | 2005-05-03 06:25:50 +0000 | [diff] [blame] | 635 | extern procps_status_t * procps_scan(int save_user_arg0); |
"Vladimir N. Oleynik" | 2f0a5f9 | 2005-12-06 12:00:39 +0000 | [diff] [blame] | 636 | extern int compare_string_array(const char * const string_array[], const char *key); |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 637 | |
Eric Andersen | 8efe967 | 2003-09-15 08:33:45 +0000 | [diff] [blame] | 638 | extern void print_login_issue(const char *issue_file, const char *tty); |
| 639 | extern void print_login_prompt(void); |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 640 | |
Bernhard Reutner-Fischer | c418d48 | 2006-05-31 10:19:51 +0000 | [diff] [blame] | 641 | #ifdef BB_NOMMU |
Mike Frysinger | 2e7dfc1 | 2006-06-07 21:58:57 +0000 | [diff] [blame] | 642 | extern void vfork_daemon(int nochdir, int noclose); |
Russ Dill | a1fece2 | 2003-12-15 21:57:44 +0000 | [diff] [blame] | 643 | extern void vfork_daemon_rexec(int nochdir, int noclose, |
| 644 | int argc, char **argv, char *foreground_opt); |
Mike Frysinger | f785255 | 2006-04-11 04:04:40 +0000 | [diff] [blame] | 645 | #endif |
| 646 | |
Rob Landley | e0537f6 | 2005-09-01 02:57:45 +0000 | [diff] [blame] | 647 | extern int get_terminal_width_height(int fd, int *width, int *height); |
Bernhard Reutner-Fischer | d5bd137 | 2005-09-20 21:06:17 +0000 | [diff] [blame] | 648 | extern unsigned long get_ug_id(const char *s, long (*__bb_getxxnam)(const char *)); |
Glenn L McGrath | d2a897a | 2003-11-10 04:33:55 +0000 | [diff] [blame] | 649 | |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 650 | typedef struct _sha1_ctx_t_ { |
| 651 | uint32_t count[2]; |
| 652 | uint32_t hash[5]; |
| 653 | uint32_t wbuf[16]; |
| 654 | } sha1_ctx_t; |
| 655 | |
| 656 | void sha1_begin(sha1_ctx_t *ctx); |
| 657 | void sha1_hash(const void *data, size_t length, sha1_ctx_t *ctx); |
| 658 | void *sha1_end(void *resbuf, sha1_ctx_t *ctx); |
| 659 | |
| 660 | typedef struct _md5_ctx_t_ { |
| 661 | uint32_t A; |
| 662 | uint32_t B; |
| 663 | uint32_t C; |
| 664 | uint32_t D; |
Rob Landley | 34b5319 | 2006-05-16 02:38:26 +0000 | [diff] [blame] | 665 | uint64_t total; |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 666 | uint32_t buflen; |
| 667 | char buffer[128]; |
| 668 | } md5_ctx_t; |
| 669 | |
| 670 | void md5_begin(md5_ctx_t *ctx); |
| 671 | void md5_hash(const void *data, size_t length, md5_ctx_t *ctx); |
| 672 | void *md5_end(void *resbuf, md5_ctx_t *ctx); |
Glenn L McGrath | d2a897a | 2003-11-10 04:33:55 +0000 | [diff] [blame] | 673 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 674 | extern uint32_t *crc32_filltable (int endian); |
Rob Landley | c57ec37 | 2006-04-10 17:07:15 +0000 | [diff] [blame] | 675 | |
Rob Landley | b623a54 | 2006-05-31 22:09:03 +0000 | [diff] [blame] | 676 | #ifndef RB_POWER_OFF |
| 677 | /* Stop system and switch power off if possible. */ |
| 678 | #define RB_POWER_OFF 0x4321fedc |
| 679 | #endif |
| 680 | |
Rob Landley | b623a54 | 2006-05-31 22:09:03 +0000 | [diff] [blame] | 681 | extern const char BB_BANNER[]; |
| 682 | |
Rob Landley | 4ae905a | 2006-07-06 17:22:54 +0000 | [diff] [blame] | 683 | // Make sure we call functions instead of macros. |
| 684 | #undef isalnum |
| 685 | #undef isalpha |
| 686 | #undef isascii |
| 687 | #undef isblank |
| 688 | #undef iscntrl |
| 689 | #undef isdigit |
| 690 | #undef isgraph |
| 691 | #undef islower |
| 692 | #undef isprint |
| 693 | #undef ispunct |
| 694 | #undef isspace |
| 695 | #undef isupper |
| 696 | #undef isxdigit |
| 697 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 698 | #ifdef DMALLOC |
| 699 | #include <dmalloc.h> |
| 700 | #endif |
| 701 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 702 | #endif /* __LIBBUSYBOX_H__ */ |