libbb.h 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Busybox main internal header file
  4. *
  5. * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
  6. * Permission has been granted to redistribute this code under the GPL.
  7. *
  8. * Licensed under the GPL version 2, see the file LICENSE in this tarball.
  9. */
  10. #ifndef __LIBBUSYBOX_H__
  11. #define __LIBBUSYBOX_H__ 1
  12. #include "platform.h"
  13. #include <ctype.h>
  14. #include <dirent.h>
  15. #include <errno.h>
  16. #include <fcntl.h>
  17. #include <inttypes.h>
  18. #include <netdb.h>
  19. #include <setjmp.h>
  20. #include <signal.h>
  21. #include <stdio.h>
  22. #include <stdlib.h>
  23. #include <stdarg.h>
  24. #include <stddef.h>
  25. #include <string.h>
  26. #include <sys/poll.h>
  27. #include <sys/ioctl.h>
  28. #include <sys/mman.h>
  29. #include <sys/socket.h>
  30. #include <sys/stat.h>
  31. #include <sys/time.h>
  32. #include <sys/types.h>
  33. #include <sys/wait.h>
  34. #include <termios.h>
  35. #include <time.h>
  36. #include <unistd.h>
  37. #include <utime.h>
  38. /* Try to pull in PATH_MAX */
  39. #include <limits.h>
  40. #include <sys/param.h>
  41. #ifndef PATH_MAX
  42. #define PATH_MAX 256
  43. #endif
  44. #ifdef HAVE_MNTENT_H
  45. #include <mntent.h>
  46. #endif
  47. #ifdef HAVE_SYS_STATFS_H
  48. #include <sys/statfs.h>
  49. #endif
  50. #if ENABLE_SELINUX
  51. #include <selinux/selinux.h>
  52. #include <selinux/context.h>
  53. #include <selinux/flask.h>
  54. #include <selinux/av_permissions.h>
  55. #endif
  56. #if ENABLE_LOCALE_SUPPORT
  57. #include <locale.h>
  58. #else
  59. #define setlocale(x,y) ((void)0)
  60. #endif
  61. #ifdef DMALLOC
  62. #include <dmalloc.h>
  63. #endif
  64. #if !ENABLE_USE_BB_PWD_GRP
  65. # include <pwd.h>
  66. # include <grp.h>
  67. #endif
  68. #if ENABLE_FEATURE_SHADOWPASSWDS
  69. # if !ENABLE_USE_BB_SHADOW
  70. # include <shadow.h>
  71. # endif
  72. #endif
  73. /* Some libc's forget to declare these, do it ourself */
  74. extern char **environ;
  75. /* Set the group set for the current user to GROUPS (N of them). */
  76. int setgroups(size_t n, const gid_t *groups);
  77. #if defined(__GLIBC__) && __GLIBC__ < 2
  78. int vdprintf(int d, const char *format, va_list ap);
  79. #endif
  80. /* klogctl is in libc's klog.h, but we cheat and not #include that */
  81. int klogctl(int type, char *b, int len);
  82. /* This is declared here rather than #including <libgen.h> in order to avoid
  83. * confusing the two versions of basename. See the dirname/basename man page
  84. * for details. */
  85. char *dirname(char *path);
  86. /* Include our own copy of struct sysinfo to avoid binary compatibility
  87. * problems with Linux 2.4, which changed things. Grumble, grumble. */
  88. struct sysinfo {
  89. long uptime; /* Seconds since boot */
  90. unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
  91. unsigned long totalram; /* Total usable main memory size */
  92. unsigned long freeram; /* Available memory size */
  93. unsigned long sharedram; /* Amount of shared memory */
  94. unsigned long bufferram; /* Memory used by buffers */
  95. unsigned long totalswap; /* Total swap space size */
  96. unsigned long freeswap; /* swap space still available */
  97. unsigned short procs; /* Number of current processes */
  98. unsigned short pad; /* Padding needed for m68k */
  99. unsigned long totalhigh; /* Total high memory size */
  100. unsigned long freehigh; /* Available high memory size */
  101. unsigned int mem_unit; /* Memory unit size in bytes */
  102. char _f[20 - 2*sizeof(long) - sizeof(int)]; /* Padding: libc5 uses this.. */
  103. };
  104. int sysinfo(struct sysinfo* info);
  105. /* Make all declarations hidden (-fvisibility flag only affects definitions) */
  106. /* (don't include system headers after this until corresponding pop!) */
  107. #if __GNUC_PREREQ(4,1)
  108. # pragma GCC visibility push(hidden)
  109. #endif
  110. #if ENABLE_USE_BB_PWD_GRP
  111. # include "pwd_.h"
  112. # include "grp_.h"
  113. #endif
  114. #if ENABLE_FEATURE_SHADOWPASSWDS
  115. # if ENABLE_USE_BB_SHADOW
  116. # include "shadow_.h"
  117. # endif
  118. #endif
  119. /* Tested to work correctly with all int types (IIRC :]) */
  120. #define MAXINT(T) (T)( \
  121. ((T)-1) > 0 \
  122. ? (T)-1 \
  123. : (T)~((T)1 << (sizeof(T)*8-1)) \
  124. )
  125. #define MININT(T) (T)( \
  126. ((T)-1) > 0 \
  127. ? (T)0 \
  128. : ((T)1 << (sizeof(T)*8-1)) \
  129. )
  130. /* Large file support */
  131. /* Note that CONFIG_LFS=y forces bbox to be built with all common ops
  132. * (stat, lseek etc) mapped to "largefile" variants by libc.
  133. * Practically it means that open() automatically has O_LARGEFILE added
  134. * and all filesize/file_offset parameters and struct members are "large"
  135. * (in today's world - signed 64bit). For full support of large files,
  136. * we need a few helper #defines (below) and careful use of off_t
  137. * instead of int/ssize_t. No lseek64(), O_LARGEFILE etc necessary */
  138. #if ENABLE_LFS
  139. /* CONFIG_LFS is on */
  140. # if ULONG_MAX > 0xffffffff
  141. /* "long" is long enough on this system */
  142. # define XATOOFF(a) xatoul_range(a, 0, LONG_MAX)
  143. /* usage: sz = BB_STRTOOFF(s, NULL, 10); if (errno || sz < 0) die(); */
  144. # define BB_STRTOOFF bb_strtoul
  145. # define STRTOOFF strtoul
  146. /* usage: printf("size: %"OFF_FMT"d (%"OFF_FMT"x)\n", sz, sz); */
  147. # define OFF_FMT "l"
  148. # else
  149. /* "long" is too short, need "long long" */
  150. # define XATOOFF(a) xatoull_range(a, 0, LLONG_MAX)
  151. # define BB_STRTOOFF bb_strtoull
  152. # define STRTOOFF strtoull
  153. # define OFF_FMT "ll"
  154. # endif
  155. #else
  156. /* CONFIG_LFS is off */
  157. # if UINT_MAX == 0xffffffff
  158. /* While sizeof(off_t) == sizeof(int), off_t is typedef'ed to long anyway.
  159. * gcc will throw warnings on printf("%d", off_t). Crap... */
  160. # define XATOOFF(a) xatoi_u(a)
  161. # define BB_STRTOOFF bb_strtou
  162. # define STRTOOFF strtol
  163. # define OFF_FMT "l"
  164. # else
  165. # define XATOOFF(a) xatoul_range(a, 0, LONG_MAX)
  166. # define BB_STRTOOFF bb_strtoul
  167. # define STRTOOFF strtol
  168. # define OFF_FMT "l"
  169. # endif
  170. #endif
  171. /* scary. better ideas? (but do *test* them first!) */
  172. #define OFF_T_MAX ((off_t)~((off_t)1 << (sizeof(off_t)*8-1)))
  173. /* Some useful definitions */
  174. #undef FALSE
  175. #define FALSE ((int) 0)
  176. #undef TRUE
  177. #define TRUE ((int) 1)
  178. #undef SKIP
  179. #define SKIP ((int) 2)
  180. /* for mtab.c */
  181. #define MTAB_GETMOUNTPT '1'
  182. #define MTAB_GETDEVICE '2'
  183. #define BUF_SIZE 8192
  184. #define EXPAND_ALLOC 1024
  185. /* Macros for min/max. */
  186. #ifndef MIN
  187. #define MIN(a,b) (((a)<(b))?(a):(b))
  188. #endif
  189. #ifndef MAX
  190. #define MAX(a,b) (((a)>(b))?(a):(b))
  191. #endif
  192. /* buffer allocation schemes */
  193. #if ENABLE_FEATURE_BUFFERS_GO_ON_STACK
  194. #define RESERVE_CONFIG_BUFFER(buffer,len) char buffer[len]
  195. #define RESERVE_CONFIG_UBUFFER(buffer,len) unsigned char buffer[len]
  196. #define RELEASE_CONFIG_BUFFER(buffer) ((void)0)
  197. #else
  198. #if ENABLE_FEATURE_BUFFERS_GO_IN_BSS
  199. #define RESERVE_CONFIG_BUFFER(buffer,len) static char buffer[len]
  200. #define RESERVE_CONFIG_UBUFFER(buffer,len) static unsigned char buffer[len]
  201. #define RELEASE_CONFIG_BUFFER(buffer) ((void)0)
  202. #else
  203. #define RESERVE_CONFIG_BUFFER(buffer,len) char *buffer = xmalloc(len)
  204. #define RESERVE_CONFIG_UBUFFER(buffer,len) unsigned char *buffer = xmalloc(len)
  205. #define RELEASE_CONFIG_BUFFER(buffer) free(buffer)
  206. #endif
  207. #endif
  208. #if defined(__GLIBC__)
  209. /* glibc uses __errno_location() to get a ptr to errno */
  210. /* We can just memorize it once - no multithreading in busybox :) */
  211. extern int *const bb_errno;
  212. #undef errno
  213. #define errno (*bb_errno)
  214. #endif
  215. unsigned long long monotonic_ns(void) FAST_FUNC;
  216. unsigned long long monotonic_us(void) FAST_FUNC;
  217. unsigned monotonic_sec(void) FAST_FUNC;
  218. extern void chomp(char *s) FAST_FUNC;
  219. extern void trim(char *s) FAST_FUNC;
  220. extern char *skip_whitespace(const char *) FAST_FUNC;
  221. extern char *skip_non_whitespace(const char *) FAST_FUNC;
  222. extern char *strrstr(const char *haystack, const char *needle) FAST_FUNC;
  223. //TODO: supply a pointer to char[11] buffer (avoid statics)?
  224. extern const char *bb_mode_string(mode_t mode) FAST_FUNC;
  225. extern int is_directory(const char *name, int followLinks, struct stat *statBuf) FAST_FUNC;
  226. enum { /* DO NOT CHANGE THESE VALUES! cp.c, mv.c, install.c depend on them. */
  227. FILEUTILS_PRESERVE_STATUS = 1,
  228. FILEUTILS_DEREFERENCE = 2,
  229. FILEUTILS_RECUR = 4,
  230. FILEUTILS_FORCE = 8,
  231. FILEUTILS_INTERACTIVE = 0x10,
  232. FILEUTILS_MAKE_HARDLINK = 0x20,
  233. FILEUTILS_MAKE_SOFTLINK = 0x40,
  234. FILEUTILS_DEREF_SOFTLINK = 0x80,
  235. #if ENABLE_SELINUX
  236. FILEUTILS_PRESERVE_SECURITY_CONTEXT = 0x100,
  237. FILEUTILS_SET_SECURITY_CONTEXT = 0x200
  238. #endif
  239. };
  240. #define FILEUTILS_CP_OPTSTR "pdRfilsL" USE_SELINUX("c")
  241. extern int remove_file(const char *path, int flags) FAST_FUNC;
  242. /* NB: without FILEUTILS_RECUR in flags, it will basically "cat"
  243. * the source, not copy (unless "source" is a directory).
  244. * This makes "cp /dev/null file" and "install /dev/null file" (!!!)
  245. * work coreutils-compatibly. */
  246. extern int copy_file(const char *source, const char *dest, int flags) FAST_FUNC;
  247. enum {
  248. ACTION_RECURSE = (1 << 0),
  249. ACTION_FOLLOWLINKS = (1 << 1),
  250. ACTION_FOLLOWLINKS_L0 = (1 << 2),
  251. ACTION_DEPTHFIRST = (1 << 3),
  252. /*ACTION_REVERSE = (1 << 4), - unused */
  253. ACTION_QUIET = (1 << 5),
  254. };
  255. extern int recursive_action(const char *fileName, unsigned flags,
  256. int FAST_FUNC (*fileAction)(const char *fileName, struct stat* statbuf, void* userData, int depth),
  257. int FAST_FUNC (*dirAction)(const char *fileName, struct stat* statbuf, void* userData, int depth),
  258. void* userData, unsigned depth) FAST_FUNC;
  259. extern int device_open(const char *device, int mode) FAST_FUNC;
  260. enum { GETPTY_BUFSIZE = 16 }; /* more than enough for "/dev/ttyXXX" */
  261. extern int xgetpty(char *line) FAST_FUNC;
  262. extern int get_console_fd_or_die(void) FAST_FUNC;
  263. extern void console_make_active(int fd, const int vt_num) FAST_FUNC;
  264. extern char *find_block_device(const char *path) FAST_FUNC;
  265. /* bb_copyfd_XX print read/write errors and return -1 if they occur */
  266. extern off_t bb_copyfd_eof(int fd1, int fd2) FAST_FUNC;
  267. extern off_t bb_copyfd_size(int fd1, int fd2, off_t size) FAST_FUNC;
  268. extern void bb_copyfd_exact_size(int fd1, int fd2, off_t size) FAST_FUNC;
  269. /* "short" copy can be detected by return value < size */
  270. /* this helper yells "short read!" if param is not -1 */
  271. extern void complain_copyfd_and_die(off_t sz) NORETURN FAST_FUNC;
  272. extern char bb_process_escape_sequence(const char **ptr) FAST_FUNC;
  273. /* xxxx_strip version can modify its parameter:
  274. * "/" -> "/"
  275. * "abc" -> "abc"
  276. * "abc/def" -> "def"
  277. * "abc/def/" -> "def" !!
  278. */
  279. extern char *bb_get_last_path_component_strip(char *path) FAST_FUNC;
  280. /* "abc/def/" -> "" and it never modifies 'path' */
  281. extern char *bb_get_last_path_component_nostrip(const char *path) FAST_FUNC;
  282. int ndelay_on(int fd) FAST_FUNC;
  283. int ndelay_off(int fd) FAST_FUNC;
  284. int close_on_exec_on(int fd) FAST_FUNC;
  285. void xdup2(int, int) FAST_FUNC;
  286. void xmove_fd(int, int) FAST_FUNC;
  287. DIR *xopendir(const char *path) FAST_FUNC;
  288. DIR *warn_opendir(const char *path) FAST_FUNC;
  289. /* UNUSED: char *xmalloc_realpath(const char *path) FAST_FUNC; */
  290. char *xmalloc_readlink(const char *path) FAST_FUNC;
  291. char *xmalloc_readlink_or_warn(const char *path) FAST_FUNC;
  292. char *xrealloc_getcwd_or_warn(char *cwd) FAST_FUNC;
  293. char *xmalloc_follow_symlinks(const char *path) FAST_FUNC;
  294. enum {
  295. /* bb_signals(BB_FATAL_SIGS, handler) catches all signals which
  296. * otherwise would kill us, except for those resulting from bugs:
  297. * SIGSEGV, SIGILL, SIGFPE.
  298. * Other fatal signals not included (TODO?):
  299. * SIGBUS Bus error (bad memory access)
  300. * SIGPOLL Pollable event. Synonym of SIGIO
  301. * SIGPROF Profiling timer expired
  302. * SIGSYS Bad argument to routine
  303. * SIGTRAP Trace/breakpoint trap
  304. *
  305. * The only known arch with some of these sigs not fitting
  306. * into 32 bits is parisc (SIGXCPU=33, SIGXFSZ=34, SIGSTKFLT=36).
  307. * Dance around with long long to guard against that...
  308. */
  309. BB_FATAL_SIGS = (int)(0
  310. + (1LL << SIGHUP)
  311. + (1LL << SIGINT)
  312. + (1LL << SIGTERM)
  313. + (1LL << SIGPIPE) // Write to pipe with no readers
  314. + (1LL << SIGQUIT) // Quit from keyboard
  315. + (1LL << SIGABRT) // Abort signal from abort(3)
  316. + (1LL << SIGALRM) // Timer signal from alarm(2)
  317. + (1LL << SIGVTALRM) // Virtual alarm clock
  318. + (1LL << SIGXCPU) // CPU time limit exceeded
  319. + (1LL << SIGXFSZ) // File size limit exceeded
  320. + (1LL << SIGUSR1) // Yes kids, these are also fatal!
  321. + (1LL << SIGUSR2)
  322. + 0),
  323. };
  324. void bb_signals(int sigs, void (*f)(int)) FAST_FUNC;
  325. /* Unlike signal() and bb_signals, sets handler with sigaction()
  326. * and in a way that while signal handler is run, no other signals
  327. * will be blocked: */
  328. void bb_signals_recursive(int sigs, void (*f)(int)) FAST_FUNC;
  329. /* syscalls like read() will be interrupted with EINTR: */
  330. void signal_no_SA_RESTART_empty_mask(int sig, void (*handler)(int)) FAST_FUNC;
  331. /* syscalls like read() won't be interrupted (though select/poll will be): */
  332. void signal_SA_RESTART_empty_mask(int sig, void (*handler)(int)) FAST_FUNC;
  333. void wait_for_any_sig(void) FAST_FUNC;
  334. void kill_myself_with_sig(int sig) NORETURN FAST_FUNC;
  335. void sig_block(int sig) FAST_FUNC;
  336. void sig_unblock(int sig) FAST_FUNC;
  337. /* Will do sigaction(signum, act, NULL): */
  338. int sigaction_set(int sig, const struct sigaction *act) FAST_FUNC;
  339. /* SIG_BLOCK/SIG_UNBLOCK all signals: */
  340. int sigprocmask_allsigs(int how) FAST_FUNC;
  341. void xsetgid(gid_t gid) FAST_FUNC;
  342. void xsetuid(uid_t uid) FAST_FUNC;
  343. void xchdir(const char *path) FAST_FUNC;
  344. void xchroot(const char *path) FAST_FUNC;
  345. void xsetenv(const char *key, const char *value) FAST_FUNC;
  346. void xunlink(const char *pathname) FAST_FUNC;
  347. void xstat(const char *pathname, struct stat *buf) FAST_FUNC;
  348. int xopen(const char *pathname, int flags) FAST_FUNC FAST_FUNC;
  349. int xopen3(const char *pathname, int flags, int mode) FAST_FUNC;
  350. int open_or_warn(const char *pathname, int flags) FAST_FUNC;
  351. int open3_or_warn(const char *pathname, int flags, int mode) FAST_FUNC;
  352. int open_or_warn_stdin(const char *pathname) FAST_FUNC;
  353. void xrename(const char *oldpath, const char *newpath) FAST_FUNC;
  354. int rename_or_warn(const char *oldpath, const char *newpath) FAST_FUNC;
  355. off_t xlseek(int fd, off_t offset, int whence) FAST_FUNC;
  356. off_t fdlength(int fd) FAST_FUNC;
  357. void xpipe(int filedes[2]) FAST_FUNC;
  358. /* In this form code with pipes is much more readable */
  359. struct fd_pair { int rd; int wr; };
  360. #define piped_pair(pair) pipe(&((pair).rd))
  361. #define xpiped_pair(pair) xpipe(&((pair).rd))
  362. /* Useful for having small structure members/global variables */
  363. typedef int8_t socktype_t;
  364. typedef int8_t family_t;
  365. struct BUG_too_small {
  366. char BUG_socktype_t_too_small[(0
  367. | SOCK_STREAM
  368. | SOCK_DGRAM
  369. | SOCK_RDM
  370. | SOCK_SEQPACKET
  371. | SOCK_RAW
  372. ) <= 127 ? 1 : -1];
  373. char BUG_family_t_too_small[(0
  374. | AF_UNSPEC
  375. | AF_INET
  376. | AF_INET6
  377. | AF_UNIX
  378. #ifdef AF_PACKET
  379. | AF_PACKET
  380. #endif
  381. #ifdef AF_NETLINK
  382. | AF_NETLINK
  383. #endif
  384. /* | AF_DECnet */
  385. /* | AF_IPX */
  386. ) <= 127 ? 1 : -1];
  387. };
  388. int xsocket(int domain, int type, int protocol) FAST_FUNC;
  389. void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen) FAST_FUNC;
  390. void xlisten(int s, int backlog) FAST_FUNC;
  391. void xconnect(int s, const struct sockaddr *s_addr, socklen_t addrlen) FAST_FUNC;
  392. ssize_t xsendto(int s, const void *buf, size_t len, const struct sockaddr *to,
  393. socklen_t tolen) FAST_FUNC;
  394. /* SO_REUSEADDR allows a server to rebind to an address that is already
  395. * "in use" by old connections to e.g. previous server instance which is
  396. * killed or crashed. Without it bind will fail until all such connections
  397. * time out. Linux does not allow multiple live binds on same ip:port
  398. * regardless of SO_REUSEADDR (unlike some other flavors of Unix).
  399. * Turn it on before you call bind(). */
  400. void setsockopt_reuseaddr(int fd) FAST_FUNC; /* On Linux this never fails. */
  401. int setsockopt_broadcast(int fd) FAST_FUNC;
  402. /* NB: returns port in host byte order */
  403. unsigned bb_lookup_port(const char *port, const char *protocol, unsigned default_port) FAST_FUNC;
  404. typedef struct len_and_sockaddr {
  405. socklen_t len;
  406. union {
  407. struct sockaddr sa;
  408. struct sockaddr_in sin;
  409. #if ENABLE_FEATURE_IPV6
  410. struct sockaddr_in6 sin6;
  411. #endif
  412. } u;
  413. } len_and_sockaddr;
  414. enum {
  415. LSA_LEN_SIZE = offsetof(len_and_sockaddr, u),
  416. LSA_SIZEOF_SA = sizeof(
  417. union {
  418. struct sockaddr sa;
  419. struct sockaddr_in sin;
  420. #if ENABLE_FEATURE_IPV6
  421. struct sockaddr_in6 sin6;
  422. #endif
  423. }
  424. )
  425. };
  426. /* Create stream socket, and allocate suitable lsa.
  427. * (lsa of correct size and lsa->sa.sa_family (AF_INET/AF_INET6))
  428. * af == AF_UNSPEC will result in trying to create IPv6 socket,
  429. * and if kernel doesn't support it, IPv4.
  430. */
  431. #if ENABLE_FEATURE_IPV6
  432. int xsocket_type(len_and_sockaddr **lsap, int af, int sock_type) FAST_FUNC;
  433. #else
  434. int xsocket_type(len_and_sockaddr **lsap, int sock_type) FAST_FUNC;
  435. #define xsocket_type(lsap, af, sock_type) xsocket_type((lsap), (sock_type))
  436. #endif
  437. int xsocket_stream(len_and_sockaddr **lsap) FAST_FUNC;
  438. /* Create server socket bound to bindaddr:port. bindaddr can be NULL,
  439. * numeric IP ("N.N.N.N") or numeric IPv6 address,
  440. * and can have ":PORT" suffix (for IPv6 use "[X:X:...:X]:PORT").
  441. * Only if there is no suffix, port argument is used */
  442. /* NB: these set SO_REUSEADDR before bind */
  443. int create_and_bind_stream_or_die(const char *bindaddr, int port) FAST_FUNC;
  444. int create_and_bind_dgram_or_die(const char *bindaddr, int port) FAST_FUNC;
  445. /* Create client TCP socket connected to peer:port. Peer cannot be NULL.
  446. * Peer can be numeric IP ("N.N.N.N"), numeric IPv6 address or hostname,
  447. * and can have ":PORT" suffix (for IPv6 use "[X:X:...:X]:PORT").
  448. * If there is no suffix, port argument is used */
  449. int create_and_connect_stream_or_die(const char *peer, int port) FAST_FUNC;
  450. /* Connect to peer identified by lsa */
  451. int xconnect_stream(const len_and_sockaddr *lsa) FAST_FUNC;
  452. /* Return malloc'ed len_and_sockaddr with socket address of host:port
  453. * Currently will return IPv4 or IPv6 sockaddrs only
  454. * (depending on host), but in theory nothing prevents e.g.
  455. * UNIX socket address being returned, IPX sockaddr etc...
  456. * On error does bb_error_msg and returns NULL */
  457. len_and_sockaddr* host2sockaddr(const char *host, int port) FAST_FUNC;
  458. /* Version which dies on error */
  459. len_and_sockaddr* xhost2sockaddr(const char *host, int port) FAST_FUNC;
  460. len_and_sockaddr* xdotted2sockaddr(const char *host, int port) FAST_FUNC;
  461. /* Same, useful if you want to force family (e.g. IPv6) */
  462. #if !ENABLE_FEATURE_IPV6
  463. #define host_and_af2sockaddr(host, port, af) host2sockaddr((host), (port))
  464. #define xhost_and_af2sockaddr(host, port, af) xhost2sockaddr((host), (port))
  465. #else
  466. len_and_sockaddr* host_and_af2sockaddr(const char *host, int port, sa_family_t af) FAST_FUNC;
  467. len_and_sockaddr* xhost_and_af2sockaddr(const char *host, int port, sa_family_t af) FAST_FUNC;
  468. #endif
  469. /* Assign sin[6]_port member if the socket is an AF_INET[6] one,
  470. * otherwise no-op. Useful for ftp.
  471. * NB: does NOT do htons() internally, just direct assignment. */
  472. void set_nport(len_and_sockaddr *lsa, unsigned port) FAST_FUNC;
  473. /* Retrieve sin[6]_port or return -1 for non-INET[6] lsa's */
  474. int get_nport(const struct sockaddr *sa) FAST_FUNC;
  475. /* Reverse DNS. Returns NULL on failure. */
  476. char* xmalloc_sockaddr2host(const struct sockaddr *sa) FAST_FUNC;
  477. /* This one doesn't append :PORTNUM */
  478. char* xmalloc_sockaddr2host_noport(const struct sockaddr *sa) FAST_FUNC;
  479. /* This one also doesn't fall back to dotted IP (returns NULL) */
  480. char* xmalloc_sockaddr2hostonly_noport(const struct sockaddr *sa) FAST_FUNC;
  481. /* inet_[ap]ton on steroids */
  482. char* xmalloc_sockaddr2dotted(const struct sockaddr *sa) FAST_FUNC;
  483. char* xmalloc_sockaddr2dotted_noport(const struct sockaddr *sa) FAST_FUNC;
  484. // "old" (ipv4 only) API
  485. // users: traceroute.c hostname.c - use _list_ of all IPs
  486. struct hostent *xgethostbyname(const char *name) FAST_FUNC;
  487. // Also mount.c and inetd.c are using gethostbyname(),
  488. // + inet_common.c has additional IPv4-only stuff
  489. void socket_want_pktinfo(int fd) FAST_FUNC;
  490. ssize_t send_to_from(int fd, void *buf, size_t len, int flags,
  491. const struct sockaddr *to,
  492. const struct sockaddr *from,
  493. socklen_t tolen) FAST_FUNC;
  494. ssize_t recv_from_to(int fd, void *buf, size_t len, int flags,
  495. struct sockaddr *from,
  496. struct sockaddr *to,
  497. socklen_t sa_size) FAST_FUNC;
  498. char *xstrdup(const char *s) FAST_FUNC;
  499. char *xstrndup(const char *s, int n) FAST_FUNC;
  500. void overlapping_strcpy(char *dst, const char *src) FAST_FUNC;
  501. char *safe_strncpy(char *dst, const char *src, size_t size) FAST_FUNC;
  502. /* Guaranteed to NOT be a macro (smallest code). Saves nearly 2k on uclibc.
  503. * But potentially slow, don't use in one-billion-times loops */
  504. int bb_putchar(int ch) FAST_FUNC;
  505. char *xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2))) FAST_FUNC;
  506. /* Prints unprintable chars ch as ^C or M-c to file
  507. * (M-c is used only if ch is ORed with PRINTABLE_META),
  508. * else it is printed as-is (except for ch = 0x9b) */
  509. enum { PRINTABLE_META = 0x100 };
  510. void fputc_printable(int ch, FILE *file) FAST_FUNC;
  511. // gcc-4.1.1 still isn't good enough at optimizing it
  512. // (+200 bytes compared to macro)
  513. //static ALWAYS_INLINE
  514. //int LONE_DASH(const char *s) { return s[0] == '-' && !s[1]; }
  515. //static ALWAYS_INLINE
  516. //int NOT_LONE_DASH(const char *s) { return s[0] != '-' || s[1]; }
  517. #define LONE_DASH(s) ((s)[0] == '-' && !(s)[1])
  518. #define NOT_LONE_DASH(s) ((s)[0] != '-' || (s)[1])
  519. #define LONE_CHAR(s,c) ((s)[0] == (c) && !(s)[1])
  520. #define NOT_LONE_CHAR(s,c) ((s)[0] != (c) || (s)[1])
  521. #define DOT_OR_DOTDOT(s) ((s)[0] == '.' && (!(s)[1] || ((s)[1] == '.' && !(s)[2])))
  522. /* dmalloc will redefine these to it's own implementation. It is safe
  523. * to have the prototypes here unconditionally. */
  524. void *malloc_or_warn(size_t size) FAST_FUNC;
  525. void *xmalloc(size_t size) FAST_FUNC;
  526. void *xzalloc(size_t size) FAST_FUNC;
  527. void *xrealloc(void *old, size_t size) FAST_FUNC;
  528. /* After xrealloc_vector(v, 4, idx) it's ok to use
  529. * at least v[idx] and v[idx+1], for all idx values.
  530. * shift specifies how many new elements are added (1: 2, 2: 4... 8: 256...)
  531. * when all elements are used up. New elements are zeroed out. */
  532. #define xrealloc_vector(vector, shift, idx) \
  533. xrealloc_vector_helper((vector), (sizeof((vector)[0]) << 8) + (shift), (idx))
  534. void* xrealloc_vector_helper(void *vector, unsigned sizeof_and_shift, int idx) FAST_FUNC;
  535. extern ssize_t safe_read(int fd, void *buf, size_t count) FAST_FUNC;
  536. extern ssize_t nonblock_safe_read(int fd, void *buf, size_t count) FAST_FUNC;
  537. // NB: will return short read on error, not -1,
  538. // if some data was read before error occurred
  539. extern ssize_t full_read(int fd, void *buf, size_t count) FAST_FUNC;
  540. extern void xread(int fd, void *buf, size_t count) FAST_FUNC;
  541. extern unsigned char xread_char(int fd) FAST_FUNC;
  542. extern ssize_t read_close(int fd, void *buf, size_t maxsz) FAST_FUNC;
  543. extern ssize_t open_read_close(const char *filename, void *buf, size_t maxsz) FAST_FUNC;
  544. // Reads one line a-la fgets (but doesn't save terminating '\n').
  545. // Reads byte-by-byte. Useful when it is important to not read ahead.
  546. // Bytes are appended to pfx (which must be malloced, or NULL).
  547. extern char *xmalloc_reads(int fd, char *pfx, size_t *maxsz_p) FAST_FUNC;
  548. /* Reads block up to *maxsz_p (default: MAX_INT(ssize_t)) */
  549. extern void *xmalloc_read(int fd, size_t *maxsz_p) FAST_FUNC;
  550. /* Returns NULL if file can't be opened */
  551. extern void *xmalloc_open_read_close(const char *filename, size_t *maxsz_p) FAST_FUNC;
  552. /* Autodetects .gz etc */
  553. extern int open_zipped(const char *fname) FAST_FUNC;
  554. extern void *xmalloc_open_zipped_read_close(const char *fname, size_t *maxsz_p) FAST_FUNC;
  555. /* Never returns NULL */
  556. extern void *xmalloc_xopen_read_close(const char *filename, size_t *maxsz_p) FAST_FUNC;
  557. extern ssize_t safe_write(int fd, const void *buf, size_t count) FAST_FUNC;
  558. // NB: will return short write on error, not -1,
  559. // if some data was written before error occurred
  560. extern ssize_t full_write(int fd, const void *buf, size_t count) FAST_FUNC;
  561. extern void xwrite(int fd, const void *buf, size_t count) FAST_FUNC;
  562. extern void xopen_xwrite_close(const char* file, const char *str) FAST_FUNC;
  563. /* Reads and prints to stdout till eof, then closes FILE. Exits on error: */
  564. extern void xprint_and_close_file(FILE *file) FAST_FUNC;
  565. extern char *bb_get_chunk_from_file(FILE *file, int *end) FAST_FUNC;
  566. extern char *bb_get_chunk_with_continuation(FILE *file, int *end, int *lineno) FAST_FUNC;
  567. /* Reads up to (and including) TERMINATING_STRING: */
  568. extern char *xmalloc_fgets_str(FILE *file, const char *terminating_string) FAST_FUNC;
  569. /* Chops off TERMINATING_STRING from the end: */
  570. extern char *xmalloc_fgetline_str(FILE *file, const char *terminating_string) FAST_FUNC;
  571. /* Reads up to (and including) "\n" or NUL byte: */
  572. extern char *xmalloc_fgets(FILE *file) FAST_FUNC;
  573. /* Chops off '\n' from the end, unlike fgets: */
  574. extern char *xmalloc_fgetline(FILE *file) FAST_FUNC;
  575. /* Same, but doesn't try to conserve space (may have some slack after the end) */
  576. /* extern char *xmalloc_fgetline_fast(FILE *file) FAST_FUNC; */
  577. extern void die_if_ferror(FILE *file, const char *msg) FAST_FUNC;
  578. extern void die_if_ferror_stdout(void) FAST_FUNC;
  579. extern void xfflush_stdout(void) FAST_FUNC;
  580. extern void fflush_stdout_and_exit(int retval) NORETURN FAST_FUNC;
  581. extern int fclose_if_not_stdin(FILE *file) FAST_FUNC;
  582. extern FILE *xfopen(const char *filename, const char *mode) FAST_FUNC;
  583. /* Prints warning to stderr and returns NULL on failure: */
  584. extern FILE *fopen_or_warn(const char *filename, const char *mode) FAST_FUNC;
  585. /* "Opens" stdin if filename is special, else just opens file: */
  586. extern FILE *xfopen_stdin(const char *filename) FAST_FUNC;
  587. extern FILE *fopen_or_warn_stdin(const char *filename) FAST_FUNC;
  588. extern FILE* fopen_for_read(const char *path) FAST_FUNC;
  589. extern FILE* xfopen_for_read(const char *path) FAST_FUNC;
  590. extern FILE* fopen_for_write(const char *path) FAST_FUNC;
  591. extern FILE* xfopen_for_write(const char *path) FAST_FUNC;
  592. int bb_pstrcmp(const void *a, const void *b) /* not FAST_FUNC! */;
  593. void qsort_string_vector(char **sv, unsigned count) FAST_FUNC;
  594. /* Wrapper which restarts poll on EINTR or ENOMEM.
  595. * On other errors complains [perror("poll")] and returns.
  596. * Warning! May take (much) longer than timeout_ms to return!
  597. * If this is a problem, use bare poll and open-code EINTR/ENOMEM handling */
  598. int safe_poll(struct pollfd *ufds, nfds_t nfds, int timeout_ms) FAST_FUNC;
  599. char *safe_gethostname(void) FAST_FUNC;
  600. char *safe_getdomainname(void) FAST_FUNC;
  601. /* Convert each alpha char in str to lower-case */
  602. char* str_tolower(char *str) FAST_FUNC;
  603. char *utoa(unsigned n) FAST_FUNC;
  604. char *itoa(int n) FAST_FUNC;
  605. /* Returns a pointer past the formatted number, does NOT null-terminate */
  606. char *utoa_to_buf(unsigned n, char *buf, unsigned buflen) FAST_FUNC;
  607. char *itoa_to_buf(int n, char *buf, unsigned buflen) FAST_FUNC;
  608. /* Intelligent formatters of bignums */
  609. void smart_ulltoa4(unsigned long long ul, char buf[5], const char *scale) FAST_FUNC;
  610. void smart_ulltoa5(unsigned long long ul, char buf[5], const char *scale) FAST_FUNC;
  611. //TODO: provide pointer to buf (avoid statics)?
  612. const char *make_human_readable_str(unsigned long long size,
  613. unsigned long block_size, unsigned long display_unit) FAST_FUNC;
  614. /* Put a string of hex bytes ("1b2e66fe"...), return advanced pointer */
  615. char *bin2hex(char *buf, const char *cp, int count) FAST_FUNC;
  616. /* Last element is marked by mult == 0 */
  617. struct suffix_mult {
  618. char suffix[4];
  619. unsigned mult;
  620. };
  621. #include "xatonum.h"
  622. /* Specialized: */
  623. /* Using xatoi() instead of naive atoi() is not always convenient -
  624. * in many places people want *non-negative* values, but store them
  625. * in signed int. Therefore we need this one:
  626. * dies if input is not in [0, INT_MAX] range. Also will reject '-0' etc */
  627. int xatoi_u(const char *numstr) FAST_FUNC;
  628. /* Useful for reading port numbers */
  629. uint16_t xatou16(const char *numstr) FAST_FUNC;
  630. /* These parse entries in /etc/passwd and /etc/group. This is desirable
  631. * for BusyBox since we want to avoid using the glibc NSS stuff, which
  632. * increases target size and is often not needed on embedded systems. */
  633. long xuname2uid(const char *name) FAST_FUNC;
  634. long xgroup2gid(const char *name) FAST_FUNC;
  635. /* wrapper: allows string to contain numeric uid or gid */
  636. unsigned long get_ug_id(const char *s, long FAST_FUNC (*xname2id)(const char *)) FAST_FUNC;
  637. /* from chpst. Does not die, returns 0 on failure */
  638. struct bb_uidgid_t {
  639. uid_t uid;
  640. gid_t gid;
  641. };
  642. /* always sets uid and gid */
  643. int get_uidgid(struct bb_uidgid_t*, const char*, int numeric_ok) FAST_FUNC;
  644. /* always sets uid and gid, allows numeric; exits on failure */
  645. void xget_uidgid(struct bb_uidgid_t*, const char*) FAST_FUNC;
  646. /* chown-like handling of "user[:[group]" */
  647. void parse_chown_usergroup_or_die(struct bb_uidgid_t *u, char *user_group) FAST_FUNC;
  648. /* bb_getpwuid, bb_getgrgid:
  649. * bb_getXXXid(buf, bufsz, id) - copy user/group name or id
  650. * as a string to buf, return user/group name or NULL
  651. * bb_getXXXid(NULL, 0, id) - return user/group name or NULL
  652. * bb_getXXXid(NULL, -1, id) - return user/group name or exit
  653. */
  654. char *bb_getpwuid(char *name, int bufsize, long uid) FAST_FUNC;
  655. char *bb_getgrgid(char *group, int bufsize, long gid) FAST_FUNC;
  656. /* versions which cache results (useful for ps, ls etc) */
  657. const char* get_cached_username(uid_t uid) FAST_FUNC;
  658. const char* get_cached_groupname(gid_t gid) FAST_FUNC;
  659. void clear_username_cache(void) FAST_FUNC;
  660. /* internally usernames are saved in fixed-sized char[] buffers */
  661. enum { USERNAME_MAX_SIZE = 16 - sizeof(int) };
  662. #if ENABLE_FEATURE_CHECK_NAMES
  663. void die_if_bad_username(const char* name) FAST_FUNC;
  664. #else
  665. #define die_if_bad_username(name) ((void)(name))
  666. #endif
  667. int execable_file(const char *name) FAST_FUNC;
  668. char *find_execable(const char *filename, char **PATHp) FAST_FUNC;
  669. int exists_execable(const char *filename) FAST_FUNC;
  670. /* BB_EXECxx always execs (it's not doing NOFORK/NOEXEC stuff),
  671. * but it may exec busybox and call applet instead of searching PATH.
  672. */
  673. #if ENABLE_FEATURE_PREFER_APPLETS
  674. int bb_execvp(const char *file, char *const argv[]) FAST_FUNC;
  675. #define BB_EXECVP(prog,cmd) bb_execvp(prog,cmd)
  676. #define BB_EXECLP(prog,cmd,...) \
  677. execlp((find_applet_by_name(prog) >= 0) ? CONFIG_BUSYBOX_EXEC_PATH : prog, \
  678. cmd, __VA_ARGS__)
  679. #else
  680. #define BB_EXECVP(prog,cmd) execvp(prog,cmd)
  681. #define BB_EXECLP(prog,cmd,...) execlp(prog,cmd, __VA_ARGS__)
  682. #endif
  683. /* NOMMU friendy fork+exec */
  684. pid_t spawn(char **argv) FAST_FUNC;
  685. pid_t xspawn(char **argv) FAST_FUNC;
  686. int safe_waitpid(int pid, int *wstat, int options) FAST_FUNC;
  687. /* Unlike waitpid, waits ONLY for one process.
  688. * It's safe to pass negative 'pids' from failed [v]fork -
  689. * wait4pid will return -1 (and will not clobber [v]fork's errno).
  690. * IOW: rc = wait4pid(spawn(argv));
  691. * if (rc < 0) bb_perror_msg("%s", argv[0]);
  692. * if (rc > 0) bb_error_msg("exit code: %d", rc);
  693. */
  694. int wait4pid(int pid) FAST_FUNC;
  695. int wait_any_nohang(int *wstat) FAST_FUNC;
  696. #define wait_crashed(w) ((w) & 127)
  697. #define wait_exitcode(w) ((w) >> 8)
  698. #define wait_stopsig(w) ((w) >> 8)
  699. #define wait_stopped(w) (((w) & 127) == 127)
  700. /* wait4pid(spawn(argv)) + NOFORK/NOEXEC (if configured) */
  701. int spawn_and_wait(char **argv) FAST_FUNC;
  702. struct nofork_save_area {
  703. jmp_buf die_jmp;
  704. const char *applet_name;
  705. int xfunc_error_retval;
  706. uint32_t option_mask32;
  707. int die_sleep;
  708. smallint saved;
  709. };
  710. void save_nofork_data(struct nofork_save_area *save) FAST_FUNC;
  711. void restore_nofork_data(struct nofork_save_area *save) FAST_FUNC;
  712. /* Does NOT check that applet is NOFORK, just blindly runs it */
  713. int run_nofork_applet(int applet_no, char **argv) FAST_FUNC;
  714. int run_nofork_applet_prime(struct nofork_save_area *old, int applet_no, char **argv) FAST_FUNC;
  715. /* Helpers for daemonization.
  716. *
  717. * bb_daemonize(flags) = daemonize, does not compile on NOMMU
  718. *
  719. * bb_daemonize_or_rexec(flags, argv) = daemonizes on MMU (and ignores argv),
  720. * rexec's itself on NOMMU with argv passed as command line.
  721. * Thus bb_daemonize_or_rexec may cause your <applet>_main() to be re-executed
  722. * from the start. (It will detect it and not reexec again second time).
  723. * You have to audit carefully that you don't do something twice as a result
  724. * (opening files/sockets, parsing config files etc...)!
  725. *
  726. * Both of the above will redirect fd 0,1,2 to /dev/null and drop ctty
  727. * (will do setsid()).
  728. *
  729. * forkexit_or_rexec(argv) = bare-bones "fork + parent exits" on MMU,
  730. * "vfork + re-exec ourself" on NOMMU. No fd redirection, no setsid().
  731. * Currently used for openvt and setsid. On MMU ignores argv.
  732. *
  733. * Helper for network daemons in foreground mode:
  734. *
  735. * bb_sanitize_stdio() = make sure that fd 0,1,2 are opened by opening them
  736. * to /dev/null if they are not.
  737. */
  738. enum {
  739. DAEMON_CHDIR_ROOT = 1,
  740. DAEMON_DEVNULL_STDIO = 2,
  741. DAEMON_CLOSE_EXTRA_FDS = 4,
  742. DAEMON_ONLY_SANITIZE = 8, /* internal use */
  743. };
  744. #if BB_MMU
  745. void forkexit_or_rexec(void) FAST_FUNC;
  746. enum { re_execed = 0 };
  747. # define forkexit_or_rexec(argv) forkexit_or_rexec()
  748. # define bb_daemonize_or_rexec(flags, argv) bb_daemonize_or_rexec(flags)
  749. # define bb_daemonize(flags) bb_daemonize_or_rexec(flags, bogus)
  750. #else
  751. void re_exec(char **argv) NORETURN FAST_FUNC;
  752. void forkexit_or_rexec(char **argv) FAST_FUNC;
  753. extern bool re_execed;
  754. int BUG_fork_is_unavailable_on_nommu(void) FAST_FUNC;
  755. int BUG_daemon_is_unavailable_on_nommu(void) FAST_FUNC;
  756. void BUG_bb_daemonize_is_unavailable_on_nommu(void) FAST_FUNC;
  757. # define fork() BUG_fork_is_unavailable_on_nommu()
  758. # define daemon(a,b) BUG_daemon_is_unavailable_on_nommu()
  759. # define bb_daemonize(a) BUG_bb_daemonize_is_unavailable_on_nommu()
  760. #endif
  761. void bb_daemonize_or_rexec(int flags, char **argv) FAST_FUNC;
  762. void bb_sanitize_stdio(void) FAST_FUNC;
  763. /* Clear dangerous stuff, set PATH. Return 1 if was run by different user. */
  764. int sanitize_env_if_suid(void) FAST_FUNC;
  765. extern const char *const bb_argv_dash[]; /* "-", NULL */
  766. extern const char *opt_complementary;
  767. #if ENABLE_GETOPT_LONG
  768. #define No_argument "\0"
  769. #define Required_argument "\001"
  770. #define Optional_argument "\002"
  771. extern const char *applet_long_options;
  772. #endif
  773. extern uint32_t option_mask32;
  774. extern uint32_t getopt32(char **argv, const char *applet_opts, ...) FAST_FUNC;
  775. typedef struct llist_t {
  776. char *data;
  777. struct llist_t *link;
  778. } llist_t;
  779. void llist_add_to(llist_t **old_head, void *data) FAST_FUNC;
  780. void llist_add_to_end(llist_t **list_head, void *data) FAST_FUNC;
  781. void *llist_pop(llist_t **elm) FAST_FUNC;
  782. void llist_unlink(llist_t **head, llist_t *elm) FAST_FUNC;
  783. void llist_free(llist_t *elm, void (*freeit)(void *data)) FAST_FUNC;
  784. llist_t *llist_rev(llist_t *list) FAST_FUNC;
  785. /* BTW, surprisingly, changing API to
  786. * llist_t *llist_add_to(llist_t *old_head, void *data)
  787. * etc does not result in smaller code... */
  788. /* start_stop_daemon and udhcpc are special - they want
  789. * to create pidfiles regardless of FEATURE_PIDFILE */
  790. #if ENABLE_FEATURE_PIDFILE || defined(WANT_PIDFILE)
  791. /* True only if we created pidfile which is *file*, not /dev/null etc */
  792. extern smallint wrote_pidfile;
  793. void write_pidfile(const char *path) FAST_FUNC;
  794. #define remove_pidfile(path) do { if (wrote_pidfile) unlink(path); } while (0)
  795. #else
  796. enum { wrote_pidfile = 0 };
  797. #define write_pidfile(path) ((void)0)
  798. #define remove_pidfile(path) ((void)0)
  799. #endif
  800. enum {
  801. LOGMODE_NONE = 0,
  802. LOGMODE_STDIO = (1 << 0),
  803. LOGMODE_SYSLOG = (1 << 1) * ENABLE_FEATURE_SYSLOG,
  804. LOGMODE_BOTH = LOGMODE_SYSLOG + LOGMODE_STDIO,
  805. };
  806. extern const char *msg_eol;
  807. extern smallint logmode;
  808. extern int die_sleep;
  809. extern int xfunc_error_retval;
  810. extern jmp_buf die_jmp;
  811. extern void xfunc_die(void) NORETURN FAST_FUNC;
  812. extern void bb_show_usage(void) NORETURN FAST_FUNC;
  813. extern void bb_error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))) FAST_FUNC;
  814. extern void bb_error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))) FAST_FUNC;
  815. extern void bb_perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))) FAST_FUNC;
  816. extern void bb_simple_perror_msg(const char *s) FAST_FUNC;
  817. extern void bb_perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))) FAST_FUNC;
  818. extern void bb_simple_perror_msg_and_die(const char *s) __attribute__ ((noreturn)) FAST_FUNC;
  819. extern void bb_herror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))) FAST_FUNC;
  820. extern void bb_herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))) FAST_FUNC;
  821. extern void bb_perror_nomsg_and_die(void) NORETURN FAST_FUNC;
  822. extern void bb_perror_nomsg(void) FAST_FUNC;
  823. extern void bb_info_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))) FAST_FUNC;
  824. extern void bb_verror_msg(const char *s, va_list p, const char *strerr) FAST_FUNC;
  825. /* We need to export XXX_main from libbusybox
  826. * only if we build "individual" binaries
  827. */
  828. #if ENABLE_FEATURE_INDIVIDUAL
  829. #define MAIN_EXTERNALLY_VISIBLE EXTERNALLY_VISIBLE
  830. #else
  831. #define MAIN_EXTERNALLY_VISIBLE
  832. #endif
  833. /* Applets which are useful from another applets */
  834. int bb_cat(char** argv);
  835. /* If shell needs them, they exist even if not enabled as applets */
  836. int echo_main(int argc, char** argv) USE_ECHO(MAIN_EXTERNALLY_VISIBLE);
  837. int printf_main(int argc, char **argv) USE_PRINTF(MAIN_EXTERNALLY_VISIBLE);
  838. int test_main(int argc, char **argv) USE_TEST(MAIN_EXTERNALLY_VISIBLE);
  839. int kill_main(int argc, char **argv) USE_KILL(MAIN_EXTERNALLY_VISIBLE);
  840. /* Similar, but used by chgrp, not shell */
  841. int chown_main(int argc, char **argv) USE_CHOWN(MAIN_EXTERNALLY_VISIBLE);
  842. /* Don't need USE_xxx() guard for these */
  843. int gunzip_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  844. int bunzip2_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  845. int bbunpack(char **argv,
  846. char* (*make_new_name)(char *filename),
  847. USE_DESKTOP(long long) int (*unpacker)(void)
  848. ) FAST_FUNC;
  849. #if ENABLE_ROUTE
  850. void bb_displayroutes(int noresolve, int netstatfmt) FAST_FUNC;
  851. #endif
  852. /* Networking */
  853. int create_icmp_socket(void) FAST_FUNC;
  854. int create_icmp6_socket(void) FAST_FUNC;
  855. /* interface.c */
  856. /* This structure defines protocol families and their handlers. */
  857. struct aftype {
  858. const char *name;
  859. const char *title;
  860. int af;
  861. int alen;
  862. char* FAST_FUNC (*print)(unsigned char *);
  863. const char* FAST_FUNC (*sprint)(struct sockaddr *, int numeric);
  864. int FAST_FUNC (*input)(/*int type,*/ const char *bufp, struct sockaddr *);
  865. void FAST_FUNC (*herror)(char *text);
  866. int FAST_FUNC (*rprint)(int options);
  867. int FAST_FUNC (*rinput)(int typ, int ext, char **argv);
  868. /* may modify src */
  869. int FAST_FUNC (*getmask)(char *src, struct sockaddr *mask, char *name);
  870. };
  871. /* This structure defines hardware protocols and their handlers. */
  872. struct hwtype {
  873. const char *name;
  874. const char *title;
  875. int type;
  876. int alen;
  877. char* FAST_FUNC (*print)(unsigned char *);
  878. int FAST_FUNC (*input)(const char *, struct sockaddr *);
  879. int FAST_FUNC (*activate)(int fd);
  880. int suppress_null_addr;
  881. };
  882. extern smallint interface_opt_a;
  883. int display_interfaces(char *ifname) FAST_FUNC;
  884. #if ENABLE_FEATURE_HWIB
  885. int in_ib(const char *bufp, struct sockaddr *sap) FAST_FUNC;
  886. #else
  887. #define in_ib(a, b) 1 /* fail */
  888. #endif
  889. const struct aftype *get_aftype(const char *name) FAST_FUNC;
  890. const struct hwtype *get_hwtype(const char *name) FAST_FUNC;
  891. const struct hwtype *get_hwntype(int type) FAST_FUNC;
  892. #ifndef BUILD_INDIVIDUAL
  893. extern int find_applet_by_name(const char *name) FAST_FUNC;
  894. /* Returns only if applet is not found. */
  895. extern void run_applet_and_exit(const char *name, char **argv) FAST_FUNC;
  896. extern void run_applet_no_and_exit(int a, char **argv) NORETURN FAST_FUNC;
  897. #endif
  898. #ifdef HAVE_MNTENT_H
  899. extern int match_fstype(const struct mntent *mt, const char *fstypes) FAST_FUNC;
  900. extern struct mntent *find_mount_point(const char *name, const char *table) FAST_FUNC;
  901. #endif
  902. extern void erase_mtab(const char * name) FAST_FUNC;
  903. extern unsigned int tty_baud_to_value(speed_t speed) FAST_FUNC;
  904. extern speed_t tty_value_to_baud(unsigned int value) FAST_FUNC;
  905. extern void bb_warn_ignoring_args(int n) FAST_FUNC;
  906. extern int get_linux_version_code(void) FAST_FUNC;
  907. extern char *query_loop(const char *device) FAST_FUNC;
  908. extern int del_loop(const char *device) FAST_FUNC;
  909. /* If *devname is not NULL, use that name, otherwise try to find free one,
  910. * malloc and return it in *devname.
  911. * return value: 1: read-only loopdev was setup, 0: rw, < 0: error */
  912. extern int set_loop(char **devname, const char *file, unsigned long long offset) FAST_FUNC;
  913. //TODO: pass buf pointer or return allocated buf (avoid statics)?
  914. char *bb_askpass(int timeout, const char * prompt) FAST_FUNC;
  915. int bb_ask_confirmation(void) FAST_FUNC;
  916. int bb_parse_mode(const char* s, mode_t* theMode) FAST_FUNC;
  917. /*
  918. * Config file parser
  919. */
  920. enum {
  921. PARSE_COLLAPSE = 0x00010000, // treat consecutive delimiters as one
  922. PARSE_TRIM = 0x00020000, // trim leading and trailing delimiters
  923. // TODO: COLLAPSE and TRIM seem to always go in pair
  924. PARSE_GREEDY = 0x00040000, // last token takes entire remainder of the line
  925. PARSE_MIN_DIE = 0x00100000, // die if < min tokens found
  926. // keep a copy of current line
  927. PARSE_KEEP_COPY = 0x00200000 * ENABLE_DEBUG_CROND_OPTION,
  928. // PARSE_ESCAPE = 0x00400000, // process escape sequences in tokens
  929. // NORMAL is:
  930. // * remove leading and trailing delimiters and collapse
  931. // multiple delimiters into one
  932. // * warn and continue if less than mintokens delimiters found
  933. // * grab everything into last token
  934. PARSE_NORMAL = PARSE_COLLAPSE | PARSE_TRIM | PARSE_GREEDY,
  935. };
  936. typedef struct parser_t {
  937. FILE *fp;
  938. char *line;
  939. char *data;
  940. int lineno;
  941. } parser_t;
  942. parser_t* config_open(const char *filename) FAST_FUNC;
  943. parser_t* config_open2(const char *filename, FILE* FAST_FUNC (*fopen_func)(const char *path)) FAST_FUNC;
  944. int config_read(parser_t *parser, char **tokens, unsigned flags, const char *delims) FAST_FUNC;
  945. #define config_read(parser, tokens, max, min, str, flags) \
  946. config_read(parser, tokens, ((flags) | (((min) & 0xFF) << 8) | ((max) & 0xFF)), str)
  947. void config_close(parser_t *parser) FAST_FUNC;
  948. /* Concatenate path and filename to new allocated buffer.
  949. * Add "/" only as needed (no duplicate "//" are produced).
  950. * If path is NULL, it is assumed to be "/".
  951. * filename should not be NULL. */
  952. char *concat_path_file(const char *path, const char *filename) FAST_FUNC;
  953. char *concat_subpath_file(const char *path, const char *filename) FAST_FUNC;
  954. const char *bb_basename(const char *name) FAST_FUNC;
  955. /* NB: can violate const-ness (similarly to strchr) */
  956. char *last_char_is(const char *s, int c) FAST_FUNC;
  957. int bb_make_directory(char *path, long mode, int flags) FAST_FUNC;
  958. int get_signum(const char *name) FAST_FUNC;
  959. const char *get_signame(int number) FAST_FUNC;
  960. void print_signames(void) FAST_FUNC;
  961. char *bb_simplify_path(const char *path) FAST_FUNC;
  962. #define FAIL_DELAY 3
  963. extern void bb_do_delay(int seconds) FAST_FUNC;
  964. extern void change_identity(const struct passwd *pw) FAST_FUNC;
  965. extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args) NORETURN FAST_FUNC;
  966. extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args) FAST_FUNC;
  967. #if ENABLE_SELINUX
  968. extern void renew_current_security_context(void) FAST_FUNC;
  969. extern void set_current_security_context(security_context_t sid) FAST_FUNC;
  970. extern context_t set_security_context_component(security_context_t cur_context,
  971. char *user, char *role, char *type, char *range) FAST_FUNC;
  972. extern void setfscreatecon_or_die(security_context_t scontext) FAST_FUNC;
  973. extern void selinux_preserve_fcontext(int fdesc) FAST_FUNC;
  974. #else
  975. #define selinux_preserve_fcontext(fdesc) ((void)0)
  976. #endif
  977. extern void selinux_or_die(void) FAST_FUNC;
  978. extern int restricted_shell(const char *shell) FAST_FUNC;
  979. /* setup_environment:
  980. * if clear_env = 1: cd(pw->pw_dir), clear environment, then set
  981. * TERM=(old value)
  982. * USER=pw->pw_name, LOGNAME=pw->pw_name
  983. * PATH=bb_default_[root_]path
  984. * HOME=pw->pw_dir
  985. * SHELL=shell
  986. * else if change_env = 1:
  987. * if not root (if pw->pw_uid != 0):
  988. * USER=pw->pw_name, LOGNAME=pw->pw_name
  989. * HOME=pw->pw_dir
  990. * SHELL=shell
  991. * else does nothing
  992. */
  993. extern void setup_environment(const char *shell, int clear_env, int change_env, const struct passwd *pw) FAST_FUNC;
  994. extern int correct_password(const struct passwd *pw) FAST_FUNC;
  995. /* Returns a malloced string */
  996. #if !ENABLE_USE_BB_CRYPT
  997. #define pw_encrypt(clear, salt, cleanup) pw_encrypt(clear, salt)
  998. #endif
  999. extern char *pw_encrypt(const char *clear, const char *salt, int cleanup) FAST_FUNC;
  1000. extern int obscure(const char *old, const char *newval, const struct passwd *pwdp) FAST_FUNC;
  1001. /* rnd is additional random input. New one is returned.
  1002. * Useful if you call crypt_make_salt many times in a row:
  1003. * rnd = crypt_make_salt(buf1, 4, 0);
  1004. * rnd = crypt_make_salt(buf2, 4, rnd);
  1005. * rnd = crypt_make_salt(buf3, 4, rnd);
  1006. * (otherwise we risk having same salt generated)
  1007. */
  1008. extern int crypt_make_salt(char *p, int cnt, int rnd) FAST_FUNC;
  1009. /* Returns number of lines changed, or -1 on error */
  1010. extern int update_passwd(const char *filename, const char *username,
  1011. const char *new_pw) FAST_FUNC;
  1012. int index_in_str_array(const char *const string_array[], const char *key) FAST_FUNC;
  1013. int index_in_strings(const char *strings, const char *key) FAST_FUNC;
  1014. int index_in_substr_array(const char *const string_array[], const char *key) FAST_FUNC;
  1015. int index_in_substrings(const char *strings, const char *key) FAST_FUNC;
  1016. const char *nth_string(const char *strings, int n) FAST_FUNC;
  1017. extern void print_login_issue(const char *issue_file, const char *tty) FAST_FUNC;
  1018. extern void print_login_prompt(void) FAST_FUNC;
  1019. /* NB: typically you want to pass fd 0, not 1. Think 'applet | grep something' */
  1020. int get_terminal_width_height(int fd, unsigned *width, unsigned *height) FAST_FUNC;
  1021. /* NB: "unsigned request" is crucial! "int request" will break some arches! */
  1022. int ioctl_or_perror(int fd, unsigned request, void *argp, const char *fmt,...) __attribute__ ((format (printf, 4, 5))) FAST_FUNC;
  1023. int ioctl_or_perror_and_die(int fd, unsigned request, void *argp, const char *fmt,...) __attribute__ ((format (printf, 4, 5))) FAST_FUNC;
  1024. #if ENABLE_IOCTL_HEX2STR_ERROR
  1025. int bb_ioctl_or_warn(int fd, unsigned request, void *argp, const char *ioctl_name) FAST_FUNC;
  1026. int bb_xioctl(int fd, unsigned request, void *argp, const char *ioctl_name) FAST_FUNC;
  1027. #define ioctl_or_warn(fd,request,argp) bb_ioctl_or_warn(fd,request,argp,#request)
  1028. #define xioctl(fd,request,argp) bb_xioctl(fd,request,argp,#request)
  1029. #else
  1030. int bb_ioctl_or_warn(int fd, unsigned request, void *argp) FAST_FUNC;
  1031. int bb_xioctl(int fd, unsigned request, void *argp) FAST_FUNC;
  1032. #define ioctl_or_warn(fd,request,argp) bb_ioctl_or_warn(fd,request,argp)
  1033. #define xioctl(fd,request,argp) bb_xioctl(fd,request,argp)
  1034. #endif
  1035. char *is_in_ino_dev_hashtable(const struct stat *statbuf) FAST_FUNC;
  1036. void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name) FAST_FUNC;
  1037. void reset_ino_dev_hashtable(void) FAST_FUNC;
  1038. #ifdef __GLIBC__
  1039. /* At least glibc has horrendously large inline for this, so wrap it */
  1040. unsigned long long bb_makedev(unsigned int major, unsigned int minor) FAST_FUNC;
  1041. #undef makedev
  1042. #define makedev(a,b) bb_makedev(a,b)
  1043. #endif
  1044. #if ENABLE_FEATURE_EDITING
  1045. /* It's NOT just ENABLEd or disabled. It's a number: */
  1046. #ifdef CONFIG_FEATURE_EDITING_HISTORY
  1047. #define MAX_HISTORY (CONFIG_FEATURE_EDITING_HISTORY + 0)
  1048. #else
  1049. #define MAX_HISTORY 0
  1050. #endif
  1051. typedef struct line_input_t {
  1052. int flags;
  1053. const char *path_lookup;
  1054. #if MAX_HISTORY
  1055. int cnt_history;
  1056. int cur_history;
  1057. USE_FEATURE_EDITING_SAVEHISTORY(const char *hist_file;)
  1058. char *history[MAX_HISTORY + 1];
  1059. #endif
  1060. } line_input_t;
  1061. enum {
  1062. DO_HISTORY = 1 * (MAX_HISTORY > 0),
  1063. SAVE_HISTORY = 2 * (MAX_HISTORY > 0) * ENABLE_FEATURE_EDITING_SAVEHISTORY,
  1064. TAB_COMPLETION = 4 * ENABLE_FEATURE_TAB_COMPLETION,
  1065. USERNAME_COMPLETION = 8 * ENABLE_FEATURE_USERNAME_COMPLETION,
  1066. VI_MODE = 0x10 * ENABLE_FEATURE_EDITING_VI,
  1067. WITH_PATH_LOOKUP = 0x20,
  1068. FOR_SHELL = DO_HISTORY | SAVE_HISTORY | TAB_COMPLETION | USERNAME_COMPLETION,
  1069. };
  1070. line_input_t *new_line_input_t(int flags) FAST_FUNC;
  1071. /* Returns:
  1072. * -1 on read errors or EOF, or on bare Ctrl-D,
  1073. * 0 on ctrl-C (the line entered is still returned in 'command'),
  1074. * >0 length of input string, including terminating '\n'
  1075. */
  1076. int read_line_input(const char* prompt, char* command, int maxsize, line_input_t *state) FAST_FUNC;
  1077. #else
  1078. int read_line_input(const char* prompt, char* command, int maxsize) FAST_FUNC;
  1079. #define read_line_input(prompt, command, maxsize, state) \
  1080. read_line_input(prompt, command, maxsize)
  1081. #endif
  1082. #ifndef COMM_LEN
  1083. #ifdef TASK_COMM_LEN
  1084. enum { COMM_LEN = TASK_COMM_LEN };
  1085. #else
  1086. /* synchronize with sizeof(task_struct.comm) in /usr/include/linux/sched.h */
  1087. enum { COMM_LEN = 16 };
  1088. #endif
  1089. #endif
  1090. typedef struct procps_status_t {
  1091. DIR *dir;
  1092. uint8_t shift_pages_to_bytes;
  1093. uint8_t shift_pages_to_kb;
  1094. /* Fields are set to 0/NULL if failed to determine (or not requested) */
  1095. uint16_t argv_len;
  1096. char *argv0;
  1097. USE_SELINUX(char *context;)
  1098. /* Everything below must contain no ptrs to malloc'ed data:
  1099. * it is memset(0) for each process in procps_scan() */
  1100. unsigned long vsz, rss; /* we round it to kbytes */
  1101. unsigned long stime, utime;
  1102. unsigned long start_time;
  1103. unsigned pid;
  1104. unsigned ppid;
  1105. unsigned pgid;
  1106. unsigned sid;
  1107. unsigned uid;
  1108. unsigned gid;
  1109. unsigned tty_major,tty_minor;
  1110. #if ENABLE_FEATURE_TOPMEM
  1111. unsigned long mapped_rw;
  1112. unsigned long mapped_ro;
  1113. unsigned long shared_clean;
  1114. unsigned long shared_dirty;
  1115. unsigned long private_clean;
  1116. unsigned long private_dirty;
  1117. unsigned long stack;
  1118. #endif
  1119. char state[4];
  1120. /* basename of executable in exec(2), read from /proc/N/stat
  1121. * (if executable is symlink or script, it is NOT replaced
  1122. * by link target or interpreter name) */
  1123. char comm[COMM_LEN];
  1124. /* user/group? - use passwd/group parsing functions */
  1125. } procps_status_t;
  1126. enum {
  1127. PSSCAN_PID = 1 << 0,
  1128. PSSCAN_PPID = 1 << 1,
  1129. PSSCAN_PGID = 1 << 2,
  1130. PSSCAN_SID = 1 << 3,
  1131. PSSCAN_UIDGID = 1 << 4,
  1132. PSSCAN_COMM = 1 << 5,
  1133. /* PSSCAN_CMD = 1 << 6, - use read_cmdline instead */
  1134. PSSCAN_ARGV0 = 1 << 7,
  1135. /* PSSCAN_EXE = 1 << 8, - not implemented */
  1136. PSSCAN_STATE = 1 << 9,
  1137. PSSCAN_VSZ = 1 << 10,
  1138. PSSCAN_RSS = 1 << 11,
  1139. PSSCAN_STIME = 1 << 12,
  1140. PSSCAN_UTIME = 1 << 13,
  1141. PSSCAN_TTY = 1 << 14,
  1142. PSSCAN_SMAPS = (1 << 15) * ENABLE_FEATURE_TOPMEM,
  1143. PSSCAN_ARGVN = (1 << 16) * (ENABLE_PGREP || ENABLE_PKILL || ENABLE_PIDOF),
  1144. USE_SELINUX(PSSCAN_CONTEXT = 1 << 17,)
  1145. PSSCAN_START_TIME = 1 << 18,
  1146. /* These are all retrieved from proc/NN/stat in one go: */
  1147. PSSCAN_STAT = PSSCAN_PPID | PSSCAN_PGID | PSSCAN_SID
  1148. | PSSCAN_COMM | PSSCAN_STATE
  1149. | PSSCAN_VSZ | PSSCAN_RSS
  1150. | PSSCAN_STIME | PSSCAN_UTIME | PSSCAN_START_TIME
  1151. | PSSCAN_TTY,
  1152. };
  1153. //procps_status_t* alloc_procps_scan(void) FAST_FUNC;
  1154. void free_procps_scan(procps_status_t* sp) FAST_FUNC;
  1155. procps_status_t* procps_scan(procps_status_t* sp, int flags) FAST_FUNC;
  1156. /* Format cmdline (up to col chars) into char buf[col+1] */
  1157. /* Puts [comm] if cmdline is empty (-> process is a kernel thread) */
  1158. void read_cmdline(char *buf, int col, unsigned pid, const char *comm) FAST_FUNC;
  1159. pid_t *find_pid_by_name(const char* procName) FAST_FUNC;
  1160. pid_t *pidlist_reverse(pid_t *pidList) FAST_FUNC;
  1161. extern const char bb_uuenc_tbl_base64[];
  1162. extern const char bb_uuenc_tbl_std[];
  1163. void bb_uuencode(char *store, const void *s, int length, const char *tbl) FAST_FUNC;
  1164. typedef struct sha1_ctx_t {
  1165. uint32_t count[2];
  1166. uint32_t hash[5];
  1167. uint32_t wbuf[16];
  1168. } sha1_ctx_t;
  1169. void sha1_begin(sha1_ctx_t *ctx) FAST_FUNC;
  1170. void sha1_hash(const void *data, size_t length, sha1_ctx_t *ctx) FAST_FUNC;
  1171. void *sha1_end(void *resbuf, sha1_ctx_t *ctx) FAST_FUNC;
  1172. typedef struct md5_ctx_t {
  1173. uint32_t A;
  1174. uint32_t B;
  1175. uint32_t C;
  1176. uint32_t D;
  1177. uint64_t total;
  1178. uint32_t buflen;
  1179. char buffer[128];
  1180. } md5_ctx_t;
  1181. void md5_begin(md5_ctx_t *ctx) FAST_FUNC;
  1182. void md5_hash(const void *data, size_t length, md5_ctx_t *ctx) FAST_FUNC;
  1183. void *md5_end(void *resbuf, md5_ctx_t *ctx) FAST_FUNC;
  1184. uint32_t *crc32_filltable(uint32_t *tbl256, int endian) FAST_FUNC;
  1185. typedef struct masks_labels_t {
  1186. const char *labels;
  1187. const int masks[];
  1188. } masks_labels_t;
  1189. int print_flags_separated(const int *masks, const char *labels,
  1190. int flags, const char *separator) FAST_FUNC;
  1191. int print_flags(const masks_labels_t *ml, int flags) FAST_FUNC;
  1192. extern const char *applet_name;
  1193. /* "BusyBox vN.N.N (timestamp or extra_version)" */
  1194. extern const char bb_banner[];
  1195. extern const char bb_msg_memory_exhausted[];
  1196. extern const char bb_msg_invalid_date[];
  1197. extern const char bb_msg_read_error[];
  1198. extern const char bb_msg_write_error[];
  1199. extern const char bb_msg_unknown[];
  1200. extern const char bb_msg_can_not_create_raw_socket[];
  1201. extern const char bb_msg_perm_denied_are_you_root[];
  1202. extern const char bb_msg_requires_arg[];
  1203. extern const char bb_msg_invalid_arg[];
  1204. extern const char bb_msg_standard_input[];
  1205. extern const char bb_msg_standard_output[];
  1206. extern const char bb_str_default[];
  1207. /* NB: (bb_hexdigits_upcase[i] | 0x20) -> lowercase hex digit */
  1208. extern const char bb_hexdigits_upcase[];
  1209. extern const char bb_path_mtab_file[];
  1210. extern const char bb_path_passwd_file[];
  1211. extern const char bb_path_shadow_file[];
  1212. extern const char bb_path_gshadow_file[];
  1213. extern const char bb_path_group_file[];
  1214. extern const char bb_path_motd_file[];
  1215. extern const char bb_path_wtmp_file[];
  1216. extern const char bb_dev_null[];
  1217. extern const char bb_busybox_exec_path[];
  1218. /* util-linux manpage says /sbin:/bin:/usr/sbin:/usr/bin,
  1219. * but I want to save a few bytes here */
  1220. extern const char bb_PATH_root_path[]; /* "PATH=/sbin:/usr/sbin:/bin:/usr/bin" */
  1221. #define bb_default_root_path (bb_PATH_root_path + sizeof("PATH"))
  1222. #define bb_default_path (bb_PATH_root_path + sizeof("PATH=/sbin:/usr/sbin"))
  1223. extern const int const_int_0;
  1224. extern const int const_int_1;
  1225. #ifndef BUFSIZ
  1226. #define BUFSIZ 4096
  1227. #endif
  1228. /* Providing hard guarantee on minimum size (think of BUFSIZ == 128) */
  1229. enum { COMMON_BUFSIZE = (BUFSIZ >= 256*sizeof(void*) ? BUFSIZ+1 : 256*sizeof(void*)) };
  1230. extern char bb_common_bufsiz1[COMMON_BUFSIZE];
  1231. /* This struct is deliberately not defined. */
  1232. /* See docs/keep_data_small.txt */
  1233. struct globals;
  1234. /* '*const' ptr makes gcc optimize code much better.
  1235. * Magic prevents ptr_to_globals from going into rodata.
  1236. * If you want to assign a value, use SET_PTR_TO_GLOBALS(x) */
  1237. extern struct globals *const ptr_to_globals;
  1238. /* At least gcc 3.4.6 on mipsel system needs optimization barrier */
  1239. #define barrier() __asm__ __volatile__("":::"memory")
  1240. #define SET_PTR_TO_GLOBALS(x) do { \
  1241. (*(struct globals**)&ptr_to_globals) = (x); \
  1242. barrier(); \
  1243. } while (0)
  1244. /* You can change LIBBB_DEFAULT_LOGIN_SHELL, but don't use it,
  1245. * use bb_default_login_shell and following defines.
  1246. * If you change LIBBB_DEFAULT_LOGIN_SHELL,
  1247. * don't forget to change increment constant. */
  1248. #define LIBBB_DEFAULT_LOGIN_SHELL "-/bin/sh"
  1249. extern const char bb_default_login_shell[];
  1250. /* "/bin/sh" */
  1251. #define DEFAULT_SHELL (bb_default_login_shell+1)
  1252. /* "sh" */
  1253. #define DEFAULT_SHELL_SHORT_NAME (bb_default_login_shell+6)
  1254. #if ENABLE_FEATURE_DEVFS
  1255. # define CURRENT_VC "/dev/vc/0"
  1256. # define VC_1 "/dev/vc/1"
  1257. # define VC_2 "/dev/vc/2"
  1258. # define VC_3 "/dev/vc/3"
  1259. # define VC_4 "/dev/vc/4"
  1260. # define VC_5 "/dev/vc/5"
  1261. #if defined(__sh__) || defined(__H8300H__) || defined(__H8300S__)
  1262. /* Yes, this sucks, but both SH (including sh64) and H8 have a SCI(F) for their
  1263. respective serial ports .. as such, we can't use the common device paths for
  1264. these. -- PFM */
  1265. # define SC_0 "/dev/ttsc/0"
  1266. # define SC_1 "/dev/ttsc/1"
  1267. # define SC_FORMAT "/dev/ttsc/%d"
  1268. #else
  1269. # define SC_0 "/dev/tts/0"
  1270. # define SC_1 "/dev/tts/1"
  1271. # define SC_FORMAT "/dev/tts/%d"
  1272. #endif
  1273. # define VC_FORMAT "/dev/vc/%d"
  1274. # define LOOP_FORMAT "/dev/loop/%d"
  1275. # define LOOP_NAMESIZE (sizeof("/dev/loop/") + sizeof(int)*3 + 1)
  1276. # define LOOP_NAME "/dev/loop/"
  1277. # define FB_0 "/dev/fb/0"
  1278. #else
  1279. # define CURRENT_VC "/dev/tty0"
  1280. # define VC_1 "/dev/tty1"
  1281. # define VC_2 "/dev/tty2"
  1282. # define VC_3 "/dev/tty3"
  1283. # define VC_4 "/dev/tty4"
  1284. # define VC_5 "/dev/tty5"
  1285. #if defined(__sh__) || defined(__H8300H__) || defined(__H8300S__)
  1286. # define SC_0 "/dev/ttySC0"
  1287. # define SC_1 "/dev/ttySC1"
  1288. # define SC_FORMAT "/dev/ttySC%d"
  1289. #else
  1290. # define SC_0 "/dev/ttyS0"
  1291. # define SC_1 "/dev/ttyS1"
  1292. # define SC_FORMAT "/dev/ttyS%d"
  1293. #endif
  1294. # define VC_FORMAT "/dev/tty%d"
  1295. # define LOOP_FORMAT "/dev/loop%d"
  1296. # define LOOP_NAMESIZE (sizeof("/dev/loop") + sizeof(int)*3 + 1)
  1297. # define LOOP_NAME "/dev/loop"
  1298. # define FB_0 "/dev/fb0"
  1299. #endif
  1300. /* The following devices are the same on devfs and non-devfs systems. */
  1301. #define CURRENT_TTY "/dev/tty"
  1302. #define DEV_CONSOLE "/dev/console"
  1303. #ifndef RB_POWER_OFF
  1304. /* Stop system and switch power off if possible. */
  1305. #define RB_POWER_OFF 0x4321fedc
  1306. #endif
  1307. /* Make sure we call functions instead of macros. */
  1308. #undef isalnum
  1309. #undef isalpha
  1310. #undef isascii
  1311. #undef isblank
  1312. #undef iscntrl
  1313. #undef isgraph
  1314. #undef islower
  1315. #undef isprint
  1316. #undef ispunct
  1317. #undef isspace
  1318. #undef isupper
  1319. #undef isxdigit
  1320. /* This one is more efficient - we save ~400 bytes */
  1321. #undef isdigit
  1322. #define isdigit(a) ((unsigned)((a) - '0') <= 9)
  1323. #define ARRAY_SIZE(x) ((unsigned)(sizeof(x) / sizeof((x)[0])))
  1324. #if __GNUC_PREREQ(4,1)
  1325. # pragma GCC visibility pop
  1326. #endif
  1327. #endif /* __LIBBUSYBOX_H__ */