libbb.h 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343
  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 GPL.
  7. *
  8. * Licensed under GPLv2, see file LICENSE in this source tree.
  9. */
  10. #ifndef LIBBB_H
  11. #define LIBBB_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 <paths.h>
  22. #if defined __UCLIBC__ /* TODO: and glibc? */
  23. /* use inlined versions of these: */
  24. # define sigfillset(s) __sigfillset(s)
  25. # define sigemptyset(s) __sigemptyset(s)
  26. # define sigisemptyset(s) __sigisemptyset(s)
  27. #endif
  28. #include <stdint.h>
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31. #include <stdarg.h>
  32. #include <stddef.h>
  33. #include <string.h>
  34. /* There are two incompatible basename's, let's not use them! */
  35. /* See the dirname/basename man page for details */
  36. #include <libgen.h> /* dirname,basename */
  37. #undef basename
  38. #define basename dont_use_basename
  39. #include <poll.h>
  40. #include <sys/ioctl.h>
  41. #include <sys/mman.h>
  42. #include <sys/resource.h>
  43. #include <sys/socket.h>
  44. #include <sys/stat.h>
  45. #include <sys/time.h>
  46. #include <sys/types.h>
  47. #if !defined(major) || defined(__GLIBC__)
  48. # include <sys/sysmacros.h>
  49. #endif
  50. #include <sys/wait.h>
  51. #include <termios.h>
  52. #include <time.h>
  53. #include <sys/param.h>
  54. #include <pwd.h>
  55. #include <grp.h>
  56. #if ENABLE_FEATURE_SHADOWPASSWDS
  57. # if !ENABLE_USE_BB_SHADOW
  58. /* If using busybox's shadow implementation, do not include the shadow.h
  59. * header as the toolchain may not provide it at all.
  60. */
  61. # include <shadow.h>
  62. # endif
  63. #endif
  64. #if defined(ANDROID) || defined(__ANDROID__)
  65. # define endpwent() ((void)0)
  66. # define endgrent() ((void)0)
  67. #endif
  68. #ifdef HAVE_MNTENT_H
  69. # include <mntent.h>
  70. #endif
  71. #ifdef HAVE_SYS_STATFS_H
  72. # include <sys/statfs.h>
  73. #endif
  74. /* Don't do this here:
  75. * #include <sys/sysinfo.h>
  76. * Some linux/ includes pull in conflicting definition
  77. * of struct sysinfo (only in some toolchanins), which breaks build.
  78. * Include sys/sysinfo.h only in those files which need it.
  79. */
  80. #if ENABLE_SELINUX
  81. # include <selinux/selinux.h>
  82. # include <selinux/context.h>
  83. #endif
  84. #if ENABLE_FEATURE_UTMP
  85. # if defined __UCLIBC__ && ( \
  86. (UCLIBC_VERSION >= KERNEL_VERSION(0, 9, 32) \
  87. && UCLIBC_VERSION < KERNEL_VERSION(0, 9, 34) \
  88. && defined __UCLIBC_HAS_UTMPX__ \
  89. ) || ( \
  90. UCLIBC_VERSION >= KERNEL_VERSION(0, 9, 34) \
  91. ) \
  92. )
  93. # include <utmpx.h>
  94. # elif defined __UCLIBC__
  95. # include <utmp.h>
  96. # define utmpx utmp
  97. # define setutxent setutent
  98. # define endutxent endutent
  99. # define getutxent getutent
  100. # define getutxid getutid
  101. # define getutxline getutline
  102. # define pututxline pututline
  103. # define utmpxname utmpname
  104. # define updwtmpx updwtmp
  105. # define _PATH_UTMPX _PATH_UTMP
  106. # else
  107. # include <utmp.h>
  108. # include <utmpx.h>
  109. # if defined _PATH_UTMP && !defined _PATH_UTMPX
  110. # define _PATH_UTMPX _PATH_UTMP
  111. # endif
  112. # endif
  113. #endif
  114. #if ENABLE_LOCALE_SUPPORT
  115. # include <locale.h>
  116. #else
  117. # define setlocale(x,y) ((void)0)
  118. #endif
  119. #ifdef DMALLOC
  120. # include <dmalloc.h>
  121. #endif
  122. /* Just in case libc doesn't define some of these... */
  123. #ifndef _PATH_PASSWD
  124. #define _PATH_PASSWD "/etc/passwd"
  125. #endif
  126. #ifndef _PATH_GROUP
  127. #define _PATH_GROUP "/etc/group"
  128. #endif
  129. #ifndef _PATH_SHADOW
  130. #define _PATH_SHADOW "/etc/shadow"
  131. #endif
  132. #ifndef _PATH_GSHADOW
  133. #define _PATH_GSHADOW "/etc/gshadow"
  134. #endif
  135. #if defined __FreeBSD__ || defined __OpenBSD__
  136. # include <netinet/in.h>
  137. # include <arpa/inet.h>
  138. #elif defined __APPLE__
  139. # include <netinet/in.h>
  140. #else
  141. # include <arpa/inet.h>
  142. //This breaks on bionic:
  143. //# if !defined(__socklen_t_defined) && !defined(_SOCKLEN_T_DECLARED)
  144. ///* We #define socklen_t *after* includes, otherwise we get
  145. // * typedef redefinition errors from system headers
  146. // * (in case "is it defined already" detection above failed)
  147. // */
  148. //# define socklen_t bb_socklen_t
  149. // typedef unsigned socklen_t;
  150. //# endif
  151. //if this is still needed, add a fix along the lines of
  152. // ifdef SPECIFIC_BROKEN_LIBC_CHECK / typedef socklen_t / endif
  153. //in platform.h instead!
  154. #endif
  155. #ifndef HAVE_CLEARENV
  156. # define clearenv() do { if (environ) environ[0] = NULL; } while (0)
  157. #endif
  158. #ifndef HAVE_FDATASYNC
  159. # define fdatasync fsync
  160. #endif
  161. #ifndef HAVE_XTABS
  162. # define XTABS TAB3
  163. #endif
  164. /*
  165. * Use '%m' to append error string on platforms that support it,
  166. * '%s' and strerror() on those that don't.
  167. */
  168. #ifdef HAVE_PRINTF_PERCENTM
  169. # define STRERROR_FMT "%m"
  170. # define STRERROR_ERRNO /*nothing*/
  171. #else
  172. # define STRERROR_FMT "%s"
  173. # define STRERROR_ERRNO ,strerror(errno)
  174. #endif
  175. /* Some libc's forget to declare these, do it ourself */
  176. extern char **environ;
  177. /* klogctl is in libc's klog.h, but we cheat and not #include that */
  178. int klogctl(int type, char *b, int len);
  179. #ifndef PATH_MAX
  180. # define PATH_MAX 256
  181. #endif
  182. #ifndef BUFSIZ
  183. # define BUFSIZ 4096
  184. #endif
  185. /* Busybox does not use threads, we can speed up stdio. */
  186. #ifdef HAVE_UNLOCKED_STDIO
  187. # undef getc
  188. # define getc(stream) getc_unlocked(stream)
  189. # undef getchar
  190. # define getchar() getchar_unlocked()
  191. # undef putc
  192. # define putc(c,stream) putc_unlocked(c,stream)
  193. # undef putchar
  194. # define putchar(c) putchar_unlocked(c)
  195. # undef fgetc
  196. # define fgetc(stream) getc_unlocked(stream)
  197. # undef fputc
  198. # define fputc(c,stream) putc_unlocked(c,stream)
  199. #endif
  200. /* Above functions are required by POSIX.1-2008, below ones are extensions */
  201. #ifdef HAVE_UNLOCKED_LINE_OPS
  202. # undef fgets
  203. # define fgets(s,n,stream) fgets_unlocked(s,n,stream)
  204. # undef fputs
  205. # define fputs(s,stream) fputs_unlocked(s,stream)
  206. /* musl <= 1.1.15 does not support fflush_unlocked(NULL) */
  207. //# undef fflush
  208. //# define fflush(stream) fflush_unlocked(stream)
  209. # undef feof
  210. # define feof(stream) feof_unlocked(stream)
  211. # undef ferror
  212. # define ferror(stream) ferror_unlocked(stream)
  213. # undef fileno
  214. # define fileno(stream) fileno_unlocked(stream)
  215. #endif
  216. /* Make all declarations hidden (-fvisibility flag only affects definitions) */
  217. /* (don't include system headers after this until corresponding pop!) */
  218. PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
  219. #if ENABLE_USE_BB_PWD_GRP
  220. # include "pwd_.h"
  221. # include "grp_.h"
  222. #endif
  223. #if ENABLE_FEATURE_SHADOWPASSWDS
  224. # if ENABLE_USE_BB_SHADOW
  225. # include "shadow_.h"
  226. # endif
  227. #endif
  228. /* Tested to work correctly with all int types (IIRC :]) */
  229. #define MAXINT(T) (T)( \
  230. ((T)-1) > 0 \
  231. ? (T)-1 \
  232. : (T)~((T)1 << (sizeof(T)*8-1)) \
  233. )
  234. #define MININT(T) (T)( \
  235. ((T)-1) > 0 \
  236. ? (T)0 \
  237. : ((T)1 << (sizeof(T)*8-1)) \
  238. )
  239. /* Large file support */
  240. /* Note that CONFIG_LFS=y forces bbox to be built with all common ops
  241. * (stat, lseek etc) mapped to "largefile" variants by libc.
  242. * Practically it means that open() automatically has O_LARGEFILE added
  243. * and all filesize/file_offset parameters and struct members are "large"
  244. * (in today's world - signed 64bit). For full support of large files,
  245. * we need a few helper #defines (below) and careful use of off_t
  246. * instead of int/ssize_t. No lseek64(), O_LARGEFILE etc necessary */
  247. #if ENABLE_LFS
  248. /* CONFIG_LFS is on */
  249. # if ULONG_MAX > 0xffffffff
  250. /* "long" is long enough on this system */
  251. typedef unsigned long uoff_t;
  252. # define XATOOFF(a) xatoul_range((a), 0, LONG_MAX)
  253. /* usage: sz = BB_STRTOOFF(s, NULL, 10); if (errno || sz < 0) die(); */
  254. # define BB_STRTOOFF bb_strtoul
  255. # define STRTOOFF strtoul
  256. /* usage: printf("size: %"OFF_FMT"d (%"OFF_FMT"x)\n", sz, sz); */
  257. # define OFF_FMT "l"
  258. # else
  259. /* "long" is too short, need "long long" */
  260. typedef unsigned long long uoff_t;
  261. # define XATOOFF(a) xatoull_range((a), 0, LLONG_MAX)
  262. # define BB_STRTOOFF bb_strtoull
  263. # define STRTOOFF strtoull
  264. # define OFF_FMT "ll"
  265. # endif
  266. #else
  267. /* CONFIG_LFS is off */
  268. # if UINT_MAX == 0xffffffff
  269. /* While sizeof(off_t) == sizeof(int), off_t is typedef'ed to long anyway.
  270. * gcc will throw warnings on printf("%d", off_t). Crap... */
  271. typedef unsigned long uoff_t;
  272. # define XATOOFF(a) xatoi_positive(a)
  273. # define BB_STRTOOFF bb_strtou
  274. # define STRTOOFF strtol
  275. # define OFF_FMT "l"
  276. # else
  277. typedef unsigned long uoff_t;
  278. # define XATOOFF(a) xatoul_range((a), 0, LONG_MAX)
  279. # define BB_STRTOOFF bb_strtoul
  280. # define STRTOOFF strtol
  281. # define OFF_FMT "l"
  282. # endif
  283. #endif
  284. /* scary. better ideas? (but do *test* them first!) */
  285. #define OFF_T_MAX ((off_t)~((off_t)1 << (sizeof(off_t)*8-1)))
  286. /* Users report bionic to use 32-bit off_t even if LARGEFILE support is requested.
  287. * We misdetected that. Don't let it build:
  288. */
  289. struct BUG_off_t_size_is_misdetected {
  290. char BUG_off_t_size_is_misdetected[sizeof(off_t) == sizeof(uoff_t) ? 1 : -1];
  291. };
  292. /* Some useful definitions */
  293. #undef FALSE
  294. #define FALSE ((int) 0)
  295. #undef TRUE
  296. #define TRUE ((int) 1)
  297. #undef SKIP
  298. #define SKIP ((int) 2)
  299. /* Macros for min/max. */
  300. #ifndef MIN
  301. #define MIN(a,b) (((a)<(b))?(a):(b))
  302. #endif
  303. #ifndef MAX
  304. #define MAX(a,b) (((a)>(b))?(a):(b))
  305. #endif
  306. /* buffer allocation schemes */
  307. #if ENABLE_FEATURE_BUFFERS_GO_ON_STACK
  308. #define RESERVE_CONFIG_BUFFER(buffer,len) char buffer[len]
  309. #define RESERVE_CONFIG_UBUFFER(buffer,len) unsigned char buffer[len]
  310. #define RELEASE_CONFIG_BUFFER(buffer) ((void)0)
  311. #else
  312. #if ENABLE_FEATURE_BUFFERS_GO_IN_BSS
  313. #define RESERVE_CONFIG_BUFFER(buffer,len) static char buffer[len]
  314. #define RESERVE_CONFIG_UBUFFER(buffer,len) static unsigned char buffer[len]
  315. #define RELEASE_CONFIG_BUFFER(buffer) ((void)0)
  316. #else
  317. #define RESERVE_CONFIG_BUFFER(buffer,len) char *buffer = xmalloc(len)
  318. #define RESERVE_CONFIG_UBUFFER(buffer,len) unsigned char *buffer = xmalloc(len)
  319. #define RELEASE_CONFIG_BUFFER(buffer) free(buffer)
  320. #endif
  321. #endif
  322. #if defined(__GLIBC__)
  323. /* glibc uses __errno_location() to get a ptr to errno */
  324. /* We can just memorize it once - no multithreading in busybox :) */
  325. extern int *const bb_errno;
  326. #undef errno
  327. #define errno (*bb_errno)
  328. #endif
  329. #if !(ULONG_MAX > 0xffffffff)
  330. /* Only 32-bit CPUs need this, 64-bit ones use inlined version */
  331. uint64_t bb_bswap_64(uint64_t x) FAST_FUNC;
  332. #endif
  333. unsigned long FAST_FUNC isqrt(unsigned long long N);
  334. unsigned long long monotonic_ns(void) FAST_FUNC;
  335. unsigned long long monotonic_us(void) FAST_FUNC;
  336. unsigned long long monotonic_ms(void) FAST_FUNC;
  337. unsigned monotonic_sec(void) FAST_FUNC;
  338. extern void chomp(char *s) FAST_FUNC;
  339. extern char *trim(char *s) FAST_FUNC;
  340. extern char *skip_whitespace(const char *) FAST_FUNC;
  341. extern char *skip_non_whitespace(const char *) FAST_FUNC;
  342. extern char *skip_dev_pfx(const char *tty_name) FAST_FUNC;
  343. extern char *strrstr(const char *haystack, const char *needle) FAST_FUNC;
  344. /* dmalloc will redefine these to it's own implementation. It is safe
  345. * to have the prototypes here unconditionally. */
  346. void *malloc_or_warn(size_t size) FAST_FUNC RETURNS_MALLOC;
  347. void *xmalloc(size_t size) FAST_FUNC RETURNS_MALLOC;
  348. void *xzalloc(size_t size) FAST_FUNC RETURNS_MALLOC;
  349. void *xrealloc(void *old, size_t size) FAST_FUNC;
  350. /* After v = xrealloc_vector(v, SHIFT, idx) it's ok to use
  351. * at least v[idx] and v[idx+1], for all idx values.
  352. * SHIFT specifies how many new elements are added (1:2, 2:4, ..., 8:256...)
  353. * when all elements are used up. New elements are zeroed out.
  354. * xrealloc_vector(v, SHIFT, idx) *MUST* be called with consecutive IDXs -
  355. * skipping an index is a bad bug - it may miss a realloc!
  356. */
  357. #define xrealloc_vector(vector, shift, idx) \
  358. xrealloc_vector_helper((vector), (sizeof((vector)[0]) << 8) + (shift), (idx))
  359. void* xrealloc_vector_helper(void *vector, unsigned sizeof_and_shift, int idx) FAST_FUNC;
  360. char *xstrdup(const char *s) FAST_FUNC RETURNS_MALLOC;
  361. char *xstrndup(const char *s, int n) FAST_FUNC RETURNS_MALLOC;
  362. void *xmemdup(const void *s, int n) FAST_FUNC RETURNS_MALLOC;
  363. //TODO: supply a pointer to char[11] buffer (avoid statics)?
  364. extern const char *bb_mode_string(mode_t mode) FAST_FUNC;
  365. extern int is_directory(const char *name, int followLinks) FAST_FUNC;
  366. enum { /* cp.c, mv.c, install.c depend on these values. CAREFUL when changing them! */
  367. FILEUTILS_PRESERVE_STATUS = 1 << 0, /* -p */
  368. FILEUTILS_DEREFERENCE = 1 << 1, /* !-d */
  369. FILEUTILS_RECUR = 1 << 2, /* -R */
  370. FILEUTILS_FORCE = 1 << 3, /* -f */
  371. FILEUTILS_INTERACTIVE = 1 << 4, /* -i */
  372. FILEUTILS_MAKE_HARDLINK = 1 << 5, /* -l */
  373. FILEUTILS_MAKE_SOFTLINK = 1 << 6, /* -s */
  374. FILEUTILS_DEREF_SOFTLINK = 1 << 7, /* -L */
  375. FILEUTILS_DEREFERENCE_L0 = 1 << 8, /* -H */
  376. /* -a = -pdR (mapped in cp.c) */
  377. /* -r = -dR (mapped in cp.c) */
  378. /* -P = -d (mapped in cp.c) */
  379. FILEUTILS_VERBOSE = (1 << 12) * ENABLE_FEATURE_VERBOSE, /* -v */
  380. FILEUTILS_UPDATE = 1 << 13, /* -u */
  381. FILEUTILS_NO_TARGET_DIR = 1 << 14, /* -T */
  382. #if ENABLE_SELINUX
  383. FILEUTILS_PRESERVE_SECURITY_CONTEXT = 1 << 15, /* -c */
  384. #endif
  385. FILEUTILS_RMDEST = 1 << (16 - !ENABLE_SELINUX), /* --remove-destination */
  386. /*
  387. * Hole. cp may have some bits set here,
  388. * they should not affect remove_file()/copy_file()
  389. */
  390. #if ENABLE_SELINUX
  391. FILEUTILS_SET_SECURITY_CONTEXT = 1 << 30,
  392. #endif
  393. FILEUTILS_IGNORE_CHMOD_ERR = 1 << 31,
  394. };
  395. #define FILEUTILS_CP_OPTSTR "pdRfilsLHarPvuT" IF_SELINUX("c")
  396. extern int remove_file(const char *path, int flags) FAST_FUNC;
  397. /* NB: without FILEUTILS_RECUR in flags, it will basically "cat"
  398. * the source, not copy (unless "source" is a directory).
  399. * This makes "cp /dev/null file" and "install /dev/null file" (!!!)
  400. * work coreutils-compatibly. */
  401. extern int copy_file(const char *source, const char *dest, int flags) FAST_FUNC;
  402. enum {
  403. ACTION_RECURSE = (1 << 0),
  404. ACTION_FOLLOWLINKS = (1 << 1),
  405. ACTION_FOLLOWLINKS_L0 = (1 << 2),
  406. ACTION_DEPTHFIRST = (1 << 3),
  407. /*ACTION_REVERSE = (1 << 4), - unused */
  408. ACTION_QUIET = (1 << 5),
  409. ACTION_DANGLING_OK = (1 << 6),
  410. };
  411. typedef uint8_t recurse_flags_t;
  412. extern int recursive_action(const char *fileName, unsigned flags,
  413. int FAST_FUNC (*fileAction)(const char *fileName, struct stat* statbuf, void* userData, int depth),
  414. int FAST_FUNC (*dirAction)(const char *fileName, struct stat* statbuf, void* userData, int depth),
  415. void* userData, unsigned depth) FAST_FUNC;
  416. extern int device_open(const char *device, int mode) FAST_FUNC;
  417. enum { GETPTY_BUFSIZE = 16 }; /* more than enough for "/dev/ttyXXX" */
  418. extern int xgetpty(char *line) FAST_FUNC;
  419. extern int get_console_fd_or_die(void) FAST_FUNC;
  420. extern void console_make_active(int fd, const int vt_num) FAST_FUNC;
  421. extern char *find_block_device(const char *path) FAST_FUNC;
  422. /* bb_copyfd_XX print read/write errors and return -1 if they occur */
  423. extern off_t bb_copyfd_eof(int fd1, int fd2) FAST_FUNC;
  424. extern off_t bb_copyfd_size(int fd1, int fd2, off_t size) FAST_FUNC;
  425. extern void bb_copyfd_exact_size(int fd1, int fd2, off_t size) FAST_FUNC;
  426. /* "short" copy can be detected by return value < size */
  427. /* this helper yells "short read!" if param is not -1 */
  428. extern void complain_copyfd_and_die(off_t sz) NORETURN FAST_FUNC;
  429. extern char bb_process_escape_sequence(const char **ptr) FAST_FUNC;
  430. char* strcpy_and_process_escape_sequences(char *dst, const char *src) FAST_FUNC;
  431. /* xxxx_strip version can modify its parameter:
  432. * "/" -> "/"
  433. * "abc" -> "abc"
  434. * "abc/def" -> "def"
  435. * "abc/def/" -> "def" !!
  436. */
  437. char *bb_get_last_path_component_strip(char *path) FAST_FUNC;
  438. /* "abc/def/" -> "" and it never modifies 'path' */
  439. char *bb_get_last_path_component_nostrip(const char *path) FAST_FUNC;
  440. /* Simpler version: does not special case "/" string */
  441. const char *bb_basename(const char *name) FAST_FUNC;
  442. /* NB: can violate const-ness (similarly to strchr) */
  443. char *last_char_is(const char *s, int c) FAST_FUNC;
  444. const char* endofname(const char *name) FAST_FUNC;
  445. char *is_prefixed_with(const char *string, const char *key) FAST_FUNC;
  446. char *is_suffixed_with(const char *string, const char *key) FAST_FUNC;
  447. int ndelay_on(int fd) FAST_FUNC;
  448. int ndelay_off(int fd) FAST_FUNC;
  449. void close_on_exec_on(int fd) FAST_FUNC;
  450. void xdup2(int, int) FAST_FUNC;
  451. void xmove_fd(int, int) FAST_FUNC;
  452. DIR *xopendir(const char *path) FAST_FUNC;
  453. DIR *warn_opendir(const char *path) FAST_FUNC;
  454. char *xmalloc_realpath(const char *path) FAST_FUNC RETURNS_MALLOC;
  455. char *xmalloc_realpath_coreutils(const char *path) FAST_FUNC RETURNS_MALLOC;
  456. char *xmalloc_readlink(const char *path) FAST_FUNC RETURNS_MALLOC;
  457. char *xmalloc_readlink_or_warn(const char *path) FAST_FUNC RETURNS_MALLOC;
  458. /* !RETURNS_MALLOC: it's a realloc-like function */
  459. char *xrealloc_getcwd_or_warn(char *cwd) FAST_FUNC;
  460. char *xmalloc_follow_symlinks(const char *path) FAST_FUNC RETURNS_MALLOC;
  461. enum {
  462. /* bb_signals(BB_FATAL_SIGS, handler) catches all signals which
  463. * otherwise would kill us, except for those resulting from bugs:
  464. * SIGSEGV, SIGILL, SIGFPE.
  465. * Other fatal signals not included (TODO?):
  466. * SIGBUS Bus error (bad memory access)
  467. * SIGPOLL Pollable event. Synonym of SIGIO
  468. * SIGPROF Profiling timer expired
  469. * SIGSYS Bad argument to routine
  470. * SIGTRAP Trace/breakpoint trap
  471. *
  472. * The only known arch with some of these sigs not fitting
  473. * into 32 bits is parisc (SIGXCPU=33, SIGXFSZ=34, SIGSTKFLT=36).
  474. * Dance around with long long to guard against that...
  475. */
  476. BB_FATAL_SIGS = (int)(0
  477. + (1LL << SIGHUP)
  478. + (1LL << SIGINT)
  479. + (1LL << SIGTERM)
  480. + (1LL << SIGPIPE) // Write to pipe with no readers
  481. + (1LL << SIGQUIT) // Quit from keyboard
  482. + (1LL << SIGABRT) // Abort signal from abort(3)
  483. + (1LL << SIGALRM) // Timer signal from alarm(2)
  484. + (1LL << SIGVTALRM) // Virtual alarm clock
  485. + (1LL << SIGXCPU) // CPU time limit exceeded
  486. + (1LL << SIGXFSZ) // File size limit exceeded
  487. + (1LL << SIGUSR1) // Yes kids, these are also fatal!
  488. + (1LL << SIGUSR2)
  489. + 0),
  490. };
  491. void bb_signals(int sigs, void (*f)(int)) FAST_FUNC;
  492. /* Unlike signal() and bb_signals, sets handler with sigaction()
  493. * and in a way that while signal handler is run, no other signals
  494. * will be blocked; syscalls will not be restarted: */
  495. void bb_signals_recursive_norestart(int sigs, void (*f)(int)) FAST_FUNC;
  496. /* syscalls like read() will be interrupted with EINTR: */
  497. void signal_no_SA_RESTART_empty_mask(int sig, void (*handler)(int)) FAST_FUNC;
  498. /* syscalls like read() won't be interrupted (though select/poll will be): */
  499. void signal_SA_RESTART_empty_mask(int sig, void (*handler)(int)) FAST_FUNC;
  500. void wait_for_any_sig(void) FAST_FUNC;
  501. void kill_myself_with_sig(int sig) NORETURN FAST_FUNC;
  502. void sig_block(int sig) FAST_FUNC;
  503. void sig_unblock(int sig) FAST_FUNC;
  504. /* Will do sigaction(signum, act, NULL): */
  505. int sigaction_set(int sig, const struct sigaction *act) FAST_FUNC;
  506. /* SIG_BLOCK/SIG_UNBLOCK all signals: */
  507. int sigprocmask_allsigs(int how) FAST_FUNC;
  508. /* Standard handler which just records signo */
  509. extern smallint bb_got_signal;
  510. void record_signo(int signo); /* not FAST_FUNC! */
  511. void xsetgid(gid_t gid) FAST_FUNC;
  512. void xsetuid(uid_t uid) FAST_FUNC;
  513. void xsetegid(gid_t egid) FAST_FUNC;
  514. void xseteuid(uid_t euid) FAST_FUNC;
  515. void xchdir(const char *path) FAST_FUNC;
  516. void xfchdir(int fd) FAST_FUNC;
  517. void xchroot(const char *path) FAST_FUNC;
  518. void xsetenv(const char *key, const char *value) FAST_FUNC;
  519. void bb_unsetenv(const char *key) FAST_FUNC;
  520. void bb_unsetenv_and_free(char *key) FAST_FUNC;
  521. void xunlink(const char *pathname) FAST_FUNC;
  522. void xstat(const char *pathname, struct stat *buf) FAST_FUNC;
  523. void xfstat(int fd, struct stat *buf, const char *errmsg) FAST_FUNC;
  524. int open3_or_warn(const char *pathname, int flags, int mode) FAST_FUNC;
  525. int open_or_warn(const char *pathname, int flags) FAST_FUNC;
  526. int xopen3(const char *pathname, int flags, int mode) FAST_FUNC;
  527. int xopen(const char *pathname, int flags) FAST_FUNC;
  528. int xopen_nonblocking(const char *pathname) FAST_FUNC;
  529. int xopen_as_uid_gid(const char *pathname, int flags, uid_t u, gid_t g) FAST_FUNC;
  530. int open_or_warn_stdin(const char *pathname) FAST_FUNC;
  531. int xopen_stdin(const char *pathname) FAST_FUNC;
  532. void xrename(const char *oldpath, const char *newpath) FAST_FUNC;
  533. int rename_or_warn(const char *oldpath, const char *newpath) FAST_FUNC;
  534. off_t xlseek(int fd, off_t offset, int whence) FAST_FUNC;
  535. int xmkstemp(char *template) FAST_FUNC;
  536. off_t fdlength(int fd) FAST_FUNC;
  537. uoff_t FAST_FUNC get_volume_size_in_bytes(int fd,
  538. const char *override,
  539. unsigned override_units,
  540. int extend);
  541. void xpipe(int filedes[2]) FAST_FUNC;
  542. /* In this form code with pipes is much more readable */
  543. struct fd_pair { int rd; int wr; };
  544. #define piped_pair(pair) pipe(&((pair).rd))
  545. #define xpiped_pair(pair) xpipe(&((pair).rd))
  546. /* Useful for having small structure members/global variables */
  547. typedef int8_t socktype_t;
  548. typedef int8_t family_t;
  549. struct BUG_too_small {
  550. char BUG_socktype_t_too_small[(0
  551. | SOCK_STREAM
  552. | SOCK_DGRAM
  553. | SOCK_RDM
  554. | SOCK_SEQPACKET
  555. | SOCK_RAW
  556. ) <= 127 ? 1 : -1];
  557. char BUG_family_t_too_small[(0
  558. | AF_UNSPEC
  559. | AF_INET
  560. | AF_INET6
  561. | AF_UNIX
  562. #ifdef AF_PACKET
  563. | AF_PACKET
  564. #endif
  565. #ifdef AF_NETLINK
  566. | AF_NETLINK
  567. #endif
  568. /* | AF_DECnet */
  569. /* | AF_IPX */
  570. ) <= 127 ? 1 : -1];
  571. };
  572. void parse_datestr(const char *date_str, struct tm *ptm) FAST_FUNC;
  573. time_t validate_tm_time(const char *date_str, struct tm *ptm) FAST_FUNC;
  574. char *strftime_HHMMSS(char *buf, unsigned len, time_t *tp) FAST_FUNC;
  575. char *strftime_YYYYMMDDHHMMSS(char *buf, unsigned len, time_t *tp) FAST_FUNC;
  576. int xsocket(int domain, int type, int protocol) FAST_FUNC;
  577. void xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen) FAST_FUNC;
  578. void xlisten(int s, int backlog) FAST_FUNC;
  579. void xconnect(int s, const struct sockaddr *s_addr, socklen_t addrlen) FAST_FUNC;
  580. ssize_t xsendto(int s, const void *buf, size_t len, const struct sockaddr *to,
  581. socklen_t tolen) FAST_FUNC;
  582. int setsockopt_int(int fd, int level, int optname, int optval) FAST_FUNC;
  583. int setsockopt_1(int fd, int level, int optname) FAST_FUNC;
  584. int setsockopt_SOL_SOCKET_int(int fd, int optname, int optval) FAST_FUNC;
  585. int setsockopt_SOL_SOCKET_1(int fd, int optname) FAST_FUNC;
  586. /* SO_REUSEADDR allows a server to rebind to an address that is already
  587. * "in use" by old connections to e.g. previous server instance which is
  588. * killed or crashed. Without it bind will fail until all such connections
  589. * time out. Linux does not allow multiple live binds on same ip:port
  590. * regardless of SO_REUSEADDR (unlike some other flavors of Unix).
  591. * Turn it on before you call bind(). */
  592. void setsockopt_reuseaddr(int fd) FAST_FUNC; /* On Linux this never fails. */
  593. int setsockopt_keepalive(int fd) FAST_FUNC;
  594. int setsockopt_broadcast(int fd) FAST_FUNC;
  595. int setsockopt_bindtodevice(int fd, const char *iface) FAST_FUNC;
  596. int bb_getsockname(int sockfd, void *addr, socklen_t addrlen) FAST_FUNC;
  597. /* NB: returns port in host byte order */
  598. unsigned bb_lookup_port(const char *port, const char *protocol, unsigned default_port) FAST_FUNC;
  599. #if ENABLE_FEATURE_ETC_SERVICES
  600. # define bb_lookup_std_port(portstr, protocol, portnum) bb_lookup_port(portstr, protocol, portnum)
  601. #else
  602. # define bb_lookup_std_port(portstr, protocol, portnum) (portnum)
  603. #endif
  604. typedef struct len_and_sockaddr {
  605. socklen_t len;
  606. union {
  607. struct sockaddr sa;
  608. struct sockaddr_in sin;
  609. #if ENABLE_FEATURE_IPV6
  610. struct sockaddr_in6 sin6;
  611. #endif
  612. } u;
  613. } len_and_sockaddr;
  614. enum {
  615. LSA_LEN_SIZE = offsetof(len_and_sockaddr, u),
  616. LSA_SIZEOF_SA = sizeof(
  617. union {
  618. struct sockaddr sa;
  619. struct sockaddr_in sin;
  620. #if ENABLE_FEATURE_IPV6
  621. struct sockaddr_in6 sin6;
  622. #endif
  623. }
  624. )
  625. };
  626. /* Create stream socket, and allocate suitable lsa.
  627. * (lsa of correct size and lsa->sa.sa_family (AF_INET/AF_INET6))
  628. * af == AF_UNSPEC will result in trying to create IPv6 socket,
  629. * and if kernel doesn't support it, fall back to IPv4.
  630. * This is useful if you plan to bind to resulting local lsa.
  631. */
  632. int xsocket_type(len_and_sockaddr **lsap, int af, int sock_type) FAST_FUNC;
  633. int xsocket_stream(len_and_sockaddr **lsap) FAST_FUNC;
  634. /* Create server socket bound to bindaddr:port. bindaddr can be NULL,
  635. * numeric IP ("N.N.N.N") or numeric IPv6 address,
  636. * and can have ":PORT" suffix (for IPv6 use "[X:X:...:X]:PORT").
  637. * Only if there is no suffix, port argument is used */
  638. /* NB: these set SO_REUSEADDR before bind */
  639. int create_and_bind_stream_or_die(const char *bindaddr, int port) FAST_FUNC;
  640. int create_and_bind_dgram_or_die(const char *bindaddr, int port) FAST_FUNC;
  641. /* Create client TCP socket connected to peer:port. Peer cannot be NULL.
  642. * Peer can be numeric IP ("N.N.N.N"), numeric IPv6 address or hostname,
  643. * and can have ":PORT" suffix (for IPv6 use "[X:X:...:X]:PORT").
  644. * If there is no suffix, port argument is used */
  645. int create_and_connect_stream_or_die(const char *peer, int port) FAST_FUNC;
  646. /* Connect to peer identified by lsa */
  647. int xconnect_stream(const len_and_sockaddr *lsa) FAST_FUNC;
  648. /* Get local address of bound or accepted socket */
  649. len_and_sockaddr *get_sock_lsa(int fd) FAST_FUNC RETURNS_MALLOC;
  650. /* Get remote address of connected or accepted socket */
  651. len_and_sockaddr *get_peer_lsa(int fd) FAST_FUNC RETURNS_MALLOC;
  652. /* Return malloc'ed len_and_sockaddr with socket address of host:port
  653. * Currently will return IPv4 or IPv6 sockaddrs only
  654. * (depending on host), but in theory nothing prevents e.g.
  655. * UNIX socket address being returned, IPX sockaddr etc...
  656. * On error does bb_error_msg and returns NULL */
  657. len_and_sockaddr* host2sockaddr(const char *host, int port) FAST_FUNC RETURNS_MALLOC;
  658. /* Version which dies on error */
  659. len_and_sockaddr* xhost2sockaddr(const char *host, int port) FAST_FUNC RETURNS_MALLOC;
  660. len_and_sockaddr* xdotted2sockaddr(const char *host, int port) FAST_FUNC RETURNS_MALLOC;
  661. /* Same, useful if you want to force family (e.g. IPv6) */
  662. #if !ENABLE_FEATURE_IPV6
  663. #define host_and_af2sockaddr(host, port, af) host2sockaddr((host), (port))
  664. #define xhost_and_af2sockaddr(host, port, af) xhost2sockaddr((host), (port))
  665. #else
  666. len_and_sockaddr* host_and_af2sockaddr(const char *host, int port, sa_family_t af) FAST_FUNC RETURNS_MALLOC;
  667. len_and_sockaddr* xhost_and_af2sockaddr(const char *host, int port, sa_family_t af) FAST_FUNC RETURNS_MALLOC;
  668. #endif
  669. /* Assign sin[6]_port member if the socket is an AF_INET[6] one,
  670. * otherwise no-op. Useful for ftp.
  671. * NB: does NOT do htons() internally, just direct assignment. */
  672. void set_nport(struct sockaddr *sa, unsigned port) FAST_FUNC;
  673. /* Retrieve sin[6]_port or return -1 for non-INET[6] lsa's */
  674. int get_nport(const struct sockaddr *sa) FAST_FUNC;
  675. /* Reverse DNS. Returns NULL on failure. */
  676. char* xmalloc_sockaddr2host(const struct sockaddr *sa) FAST_FUNC RETURNS_MALLOC;
  677. /* This one doesn't append :PORTNUM */
  678. char* xmalloc_sockaddr2host_noport(const struct sockaddr *sa) FAST_FUNC RETURNS_MALLOC;
  679. /* This one also doesn't fall back to dotted IP (returns NULL) */
  680. char* xmalloc_sockaddr2hostonly_noport(const struct sockaddr *sa) FAST_FUNC RETURNS_MALLOC;
  681. /* inet_[ap]ton on steroids */
  682. char* xmalloc_sockaddr2dotted(const struct sockaddr *sa) FAST_FUNC RETURNS_MALLOC;
  683. char* xmalloc_sockaddr2dotted_noport(const struct sockaddr *sa) FAST_FUNC RETURNS_MALLOC;
  684. // "old" (ipv4 only) API
  685. // users: traceroute.c hostname.c - use _list_ of all IPs
  686. struct hostent *xgethostbyname(const char *name) FAST_FUNC;
  687. // Also mount.c and inetd.c are using gethostbyname(),
  688. // + inet_common.c has additional IPv4-only stuff
  689. #define TLS_MAX_MAC_SIZE 32
  690. #define TLS_MAX_KEY_SIZE 32
  691. struct tls_handshake_data; /* opaque */
  692. typedef struct tls_state {
  693. int ofd;
  694. int ifd;
  695. unsigned min_encrypted_len_on_read;
  696. uint16_t cipher_id;
  697. uint8_t encrypt_on_write;
  698. unsigned MAC_size;
  699. unsigned key_size;
  700. uint8_t *outbuf;
  701. int outbuf_size;
  702. int inbuf_size;
  703. int ofs_to_buffered;
  704. int buffered_size;
  705. uint8_t *inbuf;
  706. struct tls_handshake_data *hsd;
  707. // RFC 5246
  708. // sequence number
  709. // Each connection state contains a sequence number, which is
  710. // maintained separately for read and write states. The sequence
  711. // number MUST be set to zero whenever a connection state is made the
  712. // active state. Sequence numbers are of type uint64 and may not
  713. // exceed 2^64-1.
  714. /*uint64_t read_seq64_be;*/
  715. uint64_t write_seq64_be;
  716. uint8_t *client_write_key;
  717. uint8_t *server_write_key;
  718. uint8_t client_write_MAC_key[TLS_MAX_MAC_SIZE];
  719. uint8_t server_write_MAC_k__[TLS_MAX_MAC_SIZE];
  720. uint8_t client_write_k__[TLS_MAX_KEY_SIZE];
  721. uint8_t server_write_k__[TLS_MAX_KEY_SIZE];
  722. } tls_state_t;
  723. static inline tls_state_t *new_tls_state(void)
  724. {
  725. tls_state_t *tls = xzalloc(sizeof(*tls));
  726. return tls;
  727. }
  728. void tls_handshake(tls_state_t *tls, const char *sni) FAST_FUNC;
  729. #define TLSLOOP_EXIT_ON_LOCAL_EOF (1 << 0)
  730. void tls_run_copy_loop(tls_state_t *tls, unsigned flags) FAST_FUNC;
  731. void socket_want_pktinfo(int fd) FAST_FUNC;
  732. ssize_t send_to_from(int fd, void *buf, size_t len, int flags,
  733. const struct sockaddr *to,
  734. const struct sockaddr *from,
  735. socklen_t tolen) FAST_FUNC;
  736. ssize_t recv_from_to(int fd, void *buf, size_t len, int flags,
  737. struct sockaddr *from,
  738. struct sockaddr *to,
  739. socklen_t sa_size) FAST_FUNC;
  740. uint16_t inet_cksum(uint16_t *addr, int len) FAST_FUNC;
  741. int parse_pasv_epsv(char *buf) FAST_FUNC;
  742. /* 0 if argv[0] is NULL: */
  743. unsigned string_array_len(char **argv) FAST_FUNC;
  744. void overlapping_strcpy(char *dst, const char *src) FAST_FUNC;
  745. char *safe_strncpy(char *dst, const char *src, size_t size) FAST_FUNC;
  746. char *strncpy_IFNAMSIZ(char *dst, const char *src) FAST_FUNC;
  747. unsigned count_strstr(const char *str, const char *sub) FAST_FUNC;
  748. char *xmalloc_substitute_string(const char *src, int count, const char *sub, const char *repl) FAST_FUNC;
  749. /* Guaranteed to NOT be a macro (smallest code). Saves nearly 2k on uclibc.
  750. * But potentially slow, don't use in one-billion-times loops */
  751. int bb_putchar(int ch) FAST_FUNC;
  752. /* Note: does not use stdio, writes to fd 2 directly */
  753. int bb_putchar_stderr(char ch) FAST_FUNC;
  754. char *xasprintf(const char *format, ...) __attribute__ ((format(printf, 1, 2))) FAST_FUNC RETURNS_MALLOC;
  755. char *auto_string(char *str) FAST_FUNC;
  756. // gcc-4.1.1 still isn't good enough at optimizing it
  757. // (+200 bytes compared to macro)
  758. //static ALWAYS_INLINE
  759. //int LONE_DASH(const char *s) { return s[0] == '-' && !s[1]; }
  760. //static ALWAYS_INLINE
  761. //int NOT_LONE_DASH(const char *s) { return s[0] != '-' || s[1]; }
  762. #define LONE_DASH(s) ((s)[0] == '-' && !(s)[1])
  763. #define NOT_LONE_DASH(s) ((s)[0] != '-' || (s)[1])
  764. #define LONE_CHAR(s,c) ((s)[0] == (c) && !(s)[1])
  765. #define NOT_LONE_CHAR(s,c) ((s)[0] != (c) || (s)[1])
  766. #define DOT_OR_DOTDOT(s) ((s)[0] == '.' && (!(s)[1] || ((s)[1] == '.' && !(s)[2])))
  767. typedef struct uni_stat_t {
  768. unsigned byte_count;
  769. unsigned unicode_count;
  770. unsigned unicode_width;
  771. } uni_stat_t;
  772. /* Returns a string with unprintable chars replaced by '?' or
  773. * SUBST_WCHAR. This function is unicode-aware. */
  774. const char* FAST_FUNC printable_string(uni_stat_t *stats, const char *str);
  775. /* Prints unprintable char ch as ^C or M-c to file
  776. * (M-c is used only if ch is ORed with PRINTABLE_META),
  777. * else it is printed as-is (except for ch = 0x9b) */
  778. enum { PRINTABLE_META = 0x100 };
  779. void fputc_printable(int ch, FILE *file) FAST_FUNC;
  780. /* Return a string that is the printable representation of character ch.
  781. * Buffer must hold at least four characters. */
  782. enum {
  783. VISIBLE_ENDLINE = 1 << 0,
  784. VISIBLE_SHOW_TABS = 1 << 1,
  785. };
  786. void visible(unsigned ch, char *buf, int flags) FAST_FUNC;
  787. extern ssize_t safe_read(int fd, void *buf, size_t count) FAST_FUNC;
  788. extern ssize_t nonblock_immune_read(int fd, void *buf, size_t count) FAST_FUNC;
  789. // NB: will return short read on error, not -1,
  790. // if some data was read before error occurred
  791. extern ssize_t full_read(int fd, void *buf, size_t count) FAST_FUNC;
  792. extern void xread(int fd, void *buf, size_t count) FAST_FUNC;
  793. extern unsigned char xread_char(int fd) FAST_FUNC;
  794. extern ssize_t read_close(int fd, void *buf, size_t maxsz) FAST_FUNC;
  795. extern ssize_t open_read_close(const char *filename, void *buf, size_t maxsz) FAST_FUNC;
  796. // Reads one line a-la fgets (but doesn't save terminating '\n').
  797. // Reads byte-by-byte. Useful when it is important to not read ahead.
  798. // Bytes are appended to pfx (which must be malloced, or NULL).
  799. extern char *xmalloc_reads(int fd, size_t *maxsz_p) FAST_FUNC;
  800. /* Reads block up to *maxsz_p (default: INT_MAX - 4095) */
  801. extern void *xmalloc_read(int fd, size_t *maxsz_p) FAST_FUNC RETURNS_MALLOC;
  802. /* Returns NULL if file can't be opened (default max size: INT_MAX - 4095) */
  803. extern void *xmalloc_open_read_close(const char *filename, size_t *maxsz_p) FAST_FUNC RETURNS_MALLOC;
  804. /* Never returns NULL */
  805. extern void *xmalloc_xopen_read_close(const char *filename, size_t *maxsz_p) FAST_FUNC RETURNS_MALLOC;
  806. #if defined(ARG_MAX) && (ARG_MAX >= 60*1024 || !defined(_SC_ARG_MAX))
  807. /* Use _constant_ maximum if: defined && (big enough || no variable one exists) */
  808. # define bb_arg_max() ((unsigned)ARG_MAX)
  809. #elif defined(_SC_ARG_MAX)
  810. /* Else use variable one (a bit more expensive) */
  811. unsigned bb_arg_max(void) FAST_FUNC;
  812. #else
  813. /* If all else fails */
  814. # define bb_arg_max() ((unsigned)(32 * 1024))
  815. #endif
  816. unsigned bb_clk_tck(void) FAST_FUNC;
  817. #define SEAMLESS_COMPRESSION (0 \
  818. || ENABLE_FEATURE_SEAMLESS_XZ \
  819. || ENABLE_FEATURE_SEAMLESS_LZMA \
  820. || ENABLE_FEATURE_SEAMLESS_BZ2 \
  821. || ENABLE_FEATURE_SEAMLESS_GZ \
  822. || ENABLE_FEATURE_SEAMLESS_Z)
  823. #if SEAMLESS_COMPRESSION
  824. /* Autodetects gzip/bzip2 formats. fd may be in the middle of the file! */
  825. int setup_unzip_on_fd(int fd, int fail_if_not_compressed) FAST_FUNC;
  826. /* Autodetects .gz etc */
  827. extern int open_zipped(const char *fname, int fail_if_not_compressed) FAST_FUNC;
  828. extern void *xmalloc_open_zipped_read_close(const char *fname, size_t *maxsz_p) FAST_FUNC RETURNS_MALLOC;
  829. #else
  830. # define setup_unzip_on_fd(...) (0)
  831. # define open_zipped(fname, fail_if_not_compressed) open((fname), O_RDONLY);
  832. # define xmalloc_open_zipped_read_close(fname, maxsz_p) xmalloc_open_read_close((fname), (maxsz_p))
  833. #endif
  834. /* lzma has no signature, need a little helper. NB: exist only for ENABLE_FEATURE_SEAMLESS_LZMA=y */
  835. void setup_lzma_on_fd(int fd) FAST_FUNC;
  836. extern ssize_t safe_write(int fd, const void *buf, size_t count) FAST_FUNC;
  837. // NB: will return short write on error, not -1,
  838. // if some data was written before error occurred
  839. extern ssize_t full_write(int fd, const void *buf, size_t count) FAST_FUNC;
  840. extern void xwrite(int fd, const void *buf, size_t count) FAST_FUNC;
  841. extern void xwrite_str(int fd, const char *str) FAST_FUNC;
  842. extern ssize_t full_write1_str(const char *str) FAST_FUNC;
  843. extern ssize_t full_write2_str(const char *str) FAST_FUNC;
  844. extern void xopen_xwrite_close(const char* file, const char *str) FAST_FUNC;
  845. /* Close fd, but check for failures (some types of write errors) */
  846. extern void xclose(int fd) FAST_FUNC;
  847. /* Reads and prints to stdout till eof, then closes FILE. Exits on error: */
  848. extern void xprint_and_close_file(FILE *file) FAST_FUNC;
  849. /* Reads a line from a text file, up to a newline or NUL byte, inclusive.
  850. * Returns malloc'ed char*. If end is NULL '\n' isn't considered
  851. * end of line. If end isn't NULL, length of the chunk is stored in it.
  852. * Returns NULL if EOF/error.
  853. */
  854. extern char *bb_get_chunk_from_file(FILE *file, size_t *end) FAST_FUNC;
  855. /* Reads up to (and including) TERMINATING_STRING: */
  856. extern char *xmalloc_fgets_str(FILE *file, const char *terminating_string) FAST_FUNC RETURNS_MALLOC;
  857. /* Same, with limited max size, and returns the length (excluding NUL): */
  858. extern char *xmalloc_fgets_str_len(FILE *file, const char *terminating_string, size_t *maxsz_p) FAST_FUNC RETURNS_MALLOC;
  859. /* Chops off TERMINATING_STRING from the end: */
  860. extern char *xmalloc_fgetline_str(FILE *file, const char *terminating_string) FAST_FUNC RETURNS_MALLOC;
  861. /* Reads up to (and including) "\n" or NUL byte: */
  862. extern char *xmalloc_fgets(FILE *file) FAST_FUNC RETURNS_MALLOC;
  863. /* Chops off '\n' from the end, unlike fgets: */
  864. extern char *xmalloc_fgetline(FILE *file) FAST_FUNC RETURNS_MALLOC;
  865. /* Same, but doesn't try to conserve space (may have some slack after the end) */
  866. /* extern char *xmalloc_fgetline_fast(FILE *file) FAST_FUNC RETURNS_MALLOC; */
  867. void die_if_ferror(FILE *file, const char *msg) FAST_FUNC;
  868. void die_if_ferror_stdout(void) FAST_FUNC;
  869. int fflush_all(void) FAST_FUNC;
  870. void fflush_stdout_and_exit(int retval) NORETURN FAST_FUNC;
  871. int fclose_if_not_stdin(FILE *file) FAST_FUNC;
  872. FILE* xfopen(const char *filename, const char *mode) FAST_FUNC;
  873. /* Prints warning to stderr and returns NULL on failure: */
  874. FILE* fopen_or_warn(const char *filename, const char *mode) FAST_FUNC;
  875. /* "Opens" stdin if filename is special, else just opens file: */
  876. FILE* xfopen_stdin(const char *filename) FAST_FUNC;
  877. FILE* fopen_or_warn_stdin(const char *filename) FAST_FUNC;
  878. FILE* fopen_for_read(const char *path) FAST_FUNC;
  879. FILE* xfopen_for_read(const char *path) FAST_FUNC;
  880. FILE* fopen_for_write(const char *path) FAST_FUNC;
  881. FILE* xfopen_for_write(const char *path) FAST_FUNC;
  882. FILE* xfdopen_for_read(int fd) FAST_FUNC;
  883. FILE* xfdopen_for_write(int fd) FAST_FUNC;
  884. int bb_pstrcmp(const void *a, const void *b) /* not FAST_FUNC! */;
  885. void qsort_string_vector(char **sv, unsigned count) FAST_FUNC;
  886. /* Wrapper which restarts poll on EINTR or ENOMEM.
  887. * On other errors complains [perror("poll")] and returns.
  888. * Warning! May take (much) longer than timeout_ms to return!
  889. * If this is a problem, use bare poll and open-code EINTR/ENOMEM handling */
  890. int safe_poll(struct pollfd *ufds, nfds_t nfds, int timeout_ms) FAST_FUNC;
  891. char *safe_gethostname(void) FAST_FUNC;
  892. /* Convert each alpha char in str to lower-case */
  893. char* str_tolower(char *str) FAST_FUNC;
  894. char *utoa(unsigned n) FAST_FUNC;
  895. char *itoa(int n) FAST_FUNC;
  896. /* Returns a pointer past the formatted number, does NOT null-terminate */
  897. char *utoa_to_buf(unsigned n, char *buf, unsigned buflen) FAST_FUNC;
  898. char *itoa_to_buf(int n, char *buf, unsigned buflen) FAST_FUNC;
  899. /* Intelligent formatters of bignums */
  900. char *smart_ulltoa4(unsigned long long ul, char buf[4], const char *scale) FAST_FUNC;
  901. char *smart_ulltoa5(unsigned long long ul, char buf[5], const char *scale) FAST_FUNC;
  902. /* If block_size == 0, display size without fractional part,
  903. * else display (size * block_size) with one decimal digit.
  904. * If display_unit == 0, show value no bigger than 1024 with suffix (K,M,G...),
  905. * else divide by display_unit and do not use suffix. */
  906. #define HUMAN_READABLE_MAX_WIDTH 7 /* "1024.0G" */
  907. #define HUMAN_READABLE_MAX_WIDTH_STR "7"
  908. //TODO: provide pointer to buf (avoid statics)?
  909. const char *make_human_readable_str(unsigned long long size,
  910. unsigned long block_size, unsigned long display_unit) FAST_FUNC;
  911. /* Put a string of hex bytes ("1b2e66fe"...), return advanced pointer */
  912. char *bin2hex(char *dst, const char *src, int count) FAST_FUNC;
  913. /* Reverse */
  914. char* hex2bin(char *dst, const char *src, int count) FAST_FUNC;
  915. /* Generate a UUID */
  916. void generate_uuid(uint8_t *buf) FAST_FUNC;
  917. /* Last element is marked by mult == 0 */
  918. struct suffix_mult {
  919. char suffix[4];
  920. unsigned mult;
  921. };
  922. extern const struct suffix_mult bkm_suffixes[];
  923. #define km_suffixes (bkm_suffixes + 1)
  924. extern const struct suffix_mult cwbkMG_suffixes[];
  925. #define kMG_suffixes (cwbkMG_suffixes + 3)
  926. extern const struct suffix_mult kmg_i_suffixes[];
  927. #include "xatonum.h"
  928. /* Specialized: */
  929. /* Using xatoi() instead of naive atoi() is not always convenient -
  930. * in many places people want *non-negative* values, but store them
  931. * in signed int. Therefore we need this one:
  932. * dies if input is not in [0, INT_MAX] range. Also will reject '-0' etc.
  933. * It should really be named xatoi_nonnegative (since it allows 0),
  934. * but that would be too long.
  935. */
  936. int xatoi_positive(const char *numstr) FAST_FUNC;
  937. /* Useful for reading port numbers */
  938. uint16_t xatou16(const char *numstr) FAST_FUNC;
  939. /* These parse entries in /etc/passwd and /etc/group. This is desirable
  940. * for BusyBox since we want to avoid using the glibc NSS stuff, which
  941. * increases target size and is often not needed on embedded systems. */
  942. long xuname2uid(const char *name) FAST_FUNC;
  943. long xgroup2gid(const char *name) FAST_FUNC;
  944. /* wrapper: allows string to contain numeric uid or gid */
  945. unsigned long get_ug_id(const char *s, long FAST_FUNC (*xname2id)(const char *)) FAST_FUNC;
  946. struct bb_uidgid_t {
  947. uid_t uid;
  948. gid_t gid;
  949. };
  950. /* always sets uid and gid; returns 0 on failure */
  951. int get_uidgid(struct bb_uidgid_t*, const char*) FAST_FUNC;
  952. /* always sets uid and gid; exits on failure */
  953. void xget_uidgid(struct bb_uidgid_t*, const char*) FAST_FUNC;
  954. /* chown-like handling of "user[:[group]" */
  955. void parse_chown_usergroup_or_die(struct bb_uidgid_t *u, char *user_group) FAST_FUNC;
  956. struct passwd* xgetpwnam(const char *name) FAST_FUNC;
  957. struct group* xgetgrnam(const char *name) FAST_FUNC;
  958. struct passwd* xgetpwuid(uid_t uid) FAST_FUNC;
  959. struct group* xgetgrgid(gid_t gid) FAST_FUNC;
  960. char* xuid2uname(uid_t uid) FAST_FUNC;
  961. char* xgid2group(gid_t gid) FAST_FUNC;
  962. char* uid2uname(uid_t uid) FAST_FUNC;
  963. char* gid2group(gid_t gid) FAST_FUNC;
  964. char* uid2uname_utoa(uid_t uid) FAST_FUNC;
  965. char* gid2group_utoa(gid_t gid) FAST_FUNC;
  966. /* versions which cache results (useful for ps, ls etc) */
  967. const char* get_cached_username(uid_t uid) FAST_FUNC;
  968. const char* get_cached_groupname(gid_t gid) FAST_FUNC;
  969. void clear_username_cache(void) FAST_FUNC;
  970. /* internally usernames are saved in fixed-sized char[] buffers */
  971. enum { USERNAME_MAX_SIZE = 32 - sizeof(uid_t) };
  972. #if ENABLE_FEATURE_CHECK_NAMES
  973. void die_if_bad_username(const char* name) FAST_FUNC;
  974. #else
  975. #define die_if_bad_username(name) ((void)(name))
  976. #endif
  977. /*
  978. * Returns (-1) terminated malloced result of getgroups().
  979. * Reallocs group_array (useful for repeated calls).
  980. * ngroups is an initial size of array. It is rounded up to 32 for realloc.
  981. * ngroups is updated on return.
  982. * ngroups can be NULL: bb_getgroups(NULL, NULL) is valid usage.
  983. * Dies on errors (on Linux, only xrealloc can cause this, not internal getgroups call).
  984. */
  985. gid_t *bb_getgroups(int *ngroups, gid_t *group_array) FAST_FUNC;
  986. #if ENABLE_FEATURE_UTMP
  987. void FAST_FUNC write_new_utmp(pid_t pid, int new_type, const char *tty_name, const char *username, const char *hostname);
  988. void FAST_FUNC update_utmp(pid_t pid, int new_type, const char *tty_name, const char *username, const char *hostname);
  989. void FAST_FUNC update_utmp_DEAD_PROCESS(pid_t pid);
  990. #else
  991. # define write_new_utmp(pid, new_type, tty_name, username, hostname) ((void)0)
  992. # define update_utmp(pid, new_type, tty_name, username, hostname) ((void)0)
  993. # define update_utmp_DEAD_PROCESS(pid) ((void)0)
  994. #endif
  995. int file_is_executable(const char *name) FAST_FUNC;
  996. char *find_executable(const char *filename, char **PATHp) FAST_FUNC;
  997. int executable_exists(const char *filename) FAST_FUNC;
  998. /* BB_EXECxx always execs (it's not doing NOFORK/NOEXEC stuff),
  999. * but it may exec busybox and call applet instead of searching PATH.
  1000. */
  1001. #if ENABLE_FEATURE_PREFER_APPLETS
  1002. int BB_EXECVP(const char *file, char *const argv[]) FAST_FUNC;
  1003. #define BB_EXECLP(prog,cmd,...) \
  1004. do { \
  1005. if (find_applet_by_name(prog) >= 0) \
  1006. execlp(bb_busybox_exec_path, cmd, __VA_ARGS__); \
  1007. execlp(prog, cmd, __VA_ARGS__); \
  1008. } while (0)
  1009. #else
  1010. #define BB_EXECVP(prog,cmd) execvp(prog,cmd)
  1011. #define BB_EXECLP(prog,cmd,...) execlp(prog,cmd,__VA_ARGS__)
  1012. #endif
  1013. void BB_EXECVP_or_die(char **argv) NORETURN FAST_FUNC;
  1014. void exec_prog_or_SHELL(char **argv) NORETURN FAST_FUNC;
  1015. /* xvfork() can't be a _function_, return after vfork in child mangles stack
  1016. * in the parent. It must be a macro. */
  1017. #define xvfork() \
  1018. ({ \
  1019. pid_t bb__xvfork_pid = vfork(); \
  1020. if (bb__xvfork_pid < 0) \
  1021. bb_perror_msg_and_die("vfork"); \
  1022. bb__xvfork_pid; \
  1023. })
  1024. #if BB_MMU
  1025. pid_t xfork(void) FAST_FUNC;
  1026. #endif
  1027. void xvfork_parent_waits_and_exits(void) FAST_FUNC;
  1028. /* NOMMU friendy fork+exec: */
  1029. pid_t spawn(char **argv) FAST_FUNC;
  1030. pid_t xspawn(char **argv) FAST_FUNC;
  1031. pid_t safe_waitpid(pid_t pid, int *wstat, int options) FAST_FUNC;
  1032. pid_t wait_any_nohang(int *wstat) FAST_FUNC;
  1033. /* wait4pid: unlike waitpid, waits ONLY for one process.
  1034. * Returns sig + 0x180 if child is killed by signal.
  1035. * It's safe to pass negative 'pids' from failed [v]fork -
  1036. * wait4pid will return -1 (and will not clobber [v]fork's errno).
  1037. * IOW: rc = wait4pid(spawn(argv));
  1038. * if (rc < 0) bb_perror_msg("%s", argv[0]);
  1039. * if (rc > 0) bb_error_msg("exit code: %d", rc & 0xff);
  1040. */
  1041. int wait4pid(pid_t pid) FAST_FUNC;
  1042. int wait_for_exitstatus(pid_t pid) FAST_FUNC;
  1043. /************************************************************************/
  1044. /* spawn_and_wait/run_nofork_applet/run_applet_no_and_exit need to work */
  1045. /* carefully together to reinit some global state while not disturbing */
  1046. /* other. Be careful if you change them. Consult docs/nofork_noexec.txt */
  1047. /************************************************************************/
  1048. /* Same as wait4pid(spawn(argv)), but with NOFORK/NOEXEC if configured: */
  1049. int spawn_and_wait(char **argv) FAST_FUNC;
  1050. /* Does NOT check that applet is NOFORK, just blindly runs it */
  1051. int run_nofork_applet(int applet_no, char **argv) FAST_FUNC;
  1052. void run_noexec_applet_and_exit(int a, const char *name, char **argv) NORETURN FAST_FUNC;
  1053. #ifndef BUILD_INDIVIDUAL
  1054. int find_applet_by_name(const char *name) FAST_FUNC;
  1055. void run_applet_no_and_exit(int a, const char *name, char **argv) NORETURN FAST_FUNC;
  1056. #endif
  1057. #if defined(__linux__)
  1058. void set_task_comm(const char *comm) FAST_FUNC;
  1059. #else
  1060. # define set_task_comm(name) ((void)0)
  1061. #endif
  1062. /* Helpers for daemonization.
  1063. *
  1064. * bb_daemonize(flags) = daemonize, does not compile on NOMMU
  1065. *
  1066. * bb_daemonize_or_rexec(flags, argv) = daemonizes on MMU (and ignores argv),
  1067. * rexec's itself on NOMMU with argv passed as command line.
  1068. * Thus bb_daemonize_or_rexec may cause your <applet>_main() to be re-executed
  1069. * from the start. (It will detect it and not reexec again second time).
  1070. * You have to audit carefully that you don't do something twice as a result
  1071. * (opening files/sockets, parsing config files etc...)!
  1072. *
  1073. * Both of the above will redirect fd 0,1,2 to /dev/null and drop ctty
  1074. * (will do setsid()).
  1075. *
  1076. * fork_or_rexec(argv) = bare-bones fork on MMU,
  1077. * "vfork + re-exec ourself" on NOMMU. No fd redirection, no setsid().
  1078. * On MMU ignores argv.
  1079. *
  1080. * Helper for network daemons in foreground mode:
  1081. *
  1082. * bb_sanitize_stdio() = make sure that fd 0,1,2 are opened by opening them
  1083. * to /dev/null if they are not.
  1084. */
  1085. enum {
  1086. DAEMON_CHDIR_ROOT = 1,
  1087. DAEMON_DEVNULL_STDIO = 2,
  1088. DAEMON_CLOSE_EXTRA_FDS = 4,
  1089. DAEMON_ONLY_SANITIZE = 8, /* internal use */
  1090. DAEMON_DOUBLE_FORK = 16, /* double fork to avoid controlling tty */
  1091. };
  1092. #if BB_MMU
  1093. enum { re_execed = 0 };
  1094. # define fork_or_rexec(argv) xfork()
  1095. # define bb_daemonize_or_rexec(flags, argv) bb_daemonize_or_rexec(flags)
  1096. # define bb_daemonize(flags) bb_daemonize_or_rexec(flags, bogus)
  1097. #else
  1098. extern bool re_execed;
  1099. /* Note: re_exec() and fork_or_rexec() do argv[0][0] |= 0x80 on NOMMU!
  1100. * _Parent_ needs to undo it if it doesn't want to have argv[0] mangled.
  1101. */
  1102. void re_exec(char **argv) NORETURN FAST_FUNC;
  1103. pid_t fork_or_rexec(char **argv) FAST_FUNC;
  1104. int BUG_fork_is_unavailable_on_nommu(void) FAST_FUNC;
  1105. int BUG_daemon_is_unavailable_on_nommu(void) FAST_FUNC;
  1106. void BUG_bb_daemonize_is_unavailable_on_nommu(void) FAST_FUNC;
  1107. # define fork() BUG_fork_is_unavailable_on_nommu()
  1108. # define xfork() BUG_fork_is_unavailable_on_nommu()
  1109. # define daemon(a,b) BUG_daemon_is_unavailable_on_nommu()
  1110. # define bb_daemonize(a) BUG_bb_daemonize_is_unavailable_on_nommu()
  1111. #endif
  1112. void bb_daemonize_or_rexec(int flags, char **argv) FAST_FUNC;
  1113. void bb_sanitize_stdio(void) FAST_FUNC;
  1114. #define bb_daemon_helper(arg) bb_daemonize_or_rexec((arg) | DAEMON_ONLY_SANITIZE, NULL)
  1115. /* Clear dangerous stuff, set PATH. Return 1 if was run by different user. */
  1116. int sanitize_env_if_suid(void) FAST_FUNC;
  1117. /* For top, ps. Some argv[i] are replaced by malloced "-opt" strings */
  1118. void make_all_argv_opts(char **argv) FAST_FUNC;
  1119. char* single_argv(char **argv) FAST_FUNC;
  1120. extern const char *const bb_argv_dash[]; /* { "-", NULL } */
  1121. extern uint32_t option_mask32;
  1122. uint32_t getopt32(char **argv, const char *applet_opts, ...) FAST_FUNC;
  1123. # define No_argument "\0"
  1124. # define Required_argument "\001"
  1125. # define Optional_argument "\002"
  1126. #if ENABLE_LONG_OPTS
  1127. uint32_t getopt32long(char **argv, const char *optstring, const char *longopts, ...) FAST_FUNC;
  1128. #else
  1129. #define getopt32long(argv,optstring,longopts,...) \
  1130. getopt32(argv,optstring,##__VA_ARGS__)
  1131. #endif
  1132. /* BSD-derived getopt() functions require that optind be set to 1 in
  1133. * order to reset getopt() state. This used to be generally accepted
  1134. * way of resetting getopt(). However, glibc's getopt()
  1135. * has additional getopt() state beyond optind (specifically, glibc
  1136. * extensions such as '+' and '-' at the start of the string), and requires
  1137. * that optind be set to zero to reset its state. BSD-derived versions
  1138. * of getopt() misbehaved if optind is set to 0 in order to reset getopt(),
  1139. * and glibc's getopt() used to coredump if optind is set 1 in order
  1140. * to reset getopt().
  1141. * Then BSD introduced additional variable "optreset" which should be
  1142. * set to 1 in order to reset getopt(). Sigh. Standards, anyone?
  1143. *
  1144. * By ~2008, OpenBSD 3.4 was changed to survive glibc-like optind = 0
  1145. * (to interpret it as if optreset was set).
  1146. */
  1147. #if 1 /*def __GLIBC__*/
  1148. #define GETOPT_RESET() (optind = 0)
  1149. #else /* BSD style */
  1150. #define GETOPT_RESET() (optind = 1)
  1151. #endif
  1152. /* Having next pointer as a first member allows easy creation
  1153. * of "llist-compatible" structs, and using llist_FOO functions
  1154. * on them.
  1155. */
  1156. typedef struct llist_t {
  1157. struct llist_t *link;
  1158. char *data;
  1159. } llist_t;
  1160. void llist_add_to(llist_t **old_head, void *data) FAST_FUNC;
  1161. void llist_add_to_end(llist_t **list_head, void *data) FAST_FUNC;
  1162. void *llist_pop(llist_t **elm) FAST_FUNC;
  1163. void llist_unlink(llist_t **head, llist_t *elm) FAST_FUNC;
  1164. void llist_free(llist_t *elm, void (*freeit)(void *data)) FAST_FUNC;
  1165. llist_t *llist_rev(llist_t *list) FAST_FUNC;
  1166. llist_t *llist_find_str(llist_t *first, const char *str) FAST_FUNC;
  1167. /* BTW, surprisingly, changing API to
  1168. * llist_t *llist_add_to(llist_t *old_head, void *data)
  1169. * etc does not result in smaller code... */
  1170. /* start_stop_daemon and udhcpc are special - they want
  1171. * to create pidfiles regardless of FEATURE_PIDFILE */
  1172. #if ENABLE_FEATURE_PIDFILE || defined(WANT_PIDFILE)
  1173. /* True only if we created pidfile which is *file*, not /dev/null etc */
  1174. extern smallint wrote_pidfile;
  1175. void write_pidfile(const char *path) FAST_FUNC;
  1176. #define remove_pidfile(path) do { if (wrote_pidfile) unlink(path); } while (0)
  1177. #else
  1178. enum { wrote_pidfile = 0 };
  1179. #define write_pidfile(path) ((void)0)
  1180. #define remove_pidfile(path) ((void)0)
  1181. #endif
  1182. enum {
  1183. LOGMODE_NONE = 0,
  1184. LOGMODE_STDIO = (1 << 0),
  1185. LOGMODE_SYSLOG = (1 << 1) * ENABLE_FEATURE_SYSLOG,
  1186. LOGMODE_BOTH = LOGMODE_SYSLOG + LOGMODE_STDIO,
  1187. };
  1188. extern const char *msg_eol;
  1189. extern smallint syslog_level;
  1190. extern smallint logmode;
  1191. extern uint8_t xfunc_error_retval;
  1192. extern void (*die_func)(void);
  1193. void xfunc_die(void) NORETURN FAST_FUNC;
  1194. void bb_show_usage(void) NORETURN FAST_FUNC;
  1195. void bb_error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))) FAST_FUNC;
  1196. void bb_error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))) FAST_FUNC;
  1197. void bb_perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))) FAST_FUNC;
  1198. void bb_simple_perror_msg(const char *s) FAST_FUNC;
  1199. void bb_perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))) FAST_FUNC;
  1200. void bb_simple_perror_msg_and_die(const char *s) NORETURN FAST_FUNC;
  1201. void bb_herror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))) FAST_FUNC;
  1202. void bb_herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))) FAST_FUNC;
  1203. void bb_perror_nomsg_and_die(void) NORETURN FAST_FUNC;
  1204. void bb_perror_nomsg(void) FAST_FUNC;
  1205. void bb_verror_msg(const char *s, va_list p, const char *strerr) FAST_FUNC;
  1206. void bb_die_memory_exhausted(void) NORETURN FAST_FUNC;
  1207. void bb_logenv_override(void) FAST_FUNC;
  1208. /* We need to export XXX_main from libbusybox
  1209. * only if we build "individual" binaries
  1210. */
  1211. #if ENABLE_FEATURE_INDIVIDUAL
  1212. #define MAIN_EXTERNALLY_VISIBLE EXTERNALLY_VISIBLE
  1213. #else
  1214. #define MAIN_EXTERNALLY_VISIBLE
  1215. #endif
  1216. /* Applets which are useful from another applets */
  1217. int bb_cat(char** argv) FAST_FUNC;
  1218. /* If shell needs them, they exist even if not enabled as applets */
  1219. int echo_main(int argc, char** argv) IF_ECHO(MAIN_EXTERNALLY_VISIBLE);
  1220. int printf_main(int argc, char **argv) IF_PRINTF(MAIN_EXTERNALLY_VISIBLE);
  1221. int test_main(int argc, char **argv)
  1222. #if ENABLE_TEST || ENABLE_TEST1 || ENABLE_TEST2
  1223. MAIN_EXTERNALLY_VISIBLE
  1224. #endif
  1225. ;
  1226. int kill_main(int argc, char **argv)
  1227. #if ENABLE_KILL || ENABLE_KILLALL || ENABLE_KILLALL5
  1228. MAIN_EXTERNALLY_VISIBLE
  1229. #endif
  1230. ;
  1231. /* Similar, but used by chgrp, not shell */
  1232. int chown_main(int argc, char **argv) IF_CHOWN(MAIN_EXTERNALLY_VISIBLE);
  1233. /* Used by ftpd */
  1234. int ls_main(int argc, char **argv) IF_LS(MAIN_EXTERNALLY_VISIBLE);
  1235. /* Don't need IF_xxx() guard for these */
  1236. int gunzip_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  1237. int bunzip2_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  1238. #if ENABLE_ROUTE
  1239. void bb_displayroutes(int noresolve, int netstatfmt) FAST_FUNC;
  1240. #endif
  1241. struct number_state {
  1242. unsigned width;
  1243. unsigned start;
  1244. unsigned inc;
  1245. const char *sep;
  1246. const char *empty_str;
  1247. smallint all, nonempty;
  1248. };
  1249. void print_numbered_lines(struct number_state *ns, const char *filename) FAST_FUNC;
  1250. /* Networking */
  1251. /* This structure defines protocol families and their handlers. */
  1252. struct aftype {
  1253. const char *name;
  1254. const char *title;
  1255. int af;
  1256. int alen;
  1257. char* FAST_FUNC (*print)(unsigned char *);
  1258. const char* FAST_FUNC (*sprint)(struct sockaddr *, int numeric);
  1259. int FAST_FUNC (*input)(/*int type,*/ const char *bufp, struct sockaddr *);
  1260. void FAST_FUNC (*herror)(char *text);
  1261. int FAST_FUNC (*rprint)(int options);
  1262. int FAST_FUNC (*rinput)(int typ, int ext, char **argv);
  1263. /* may modify src */
  1264. int FAST_FUNC (*getmask)(char *src, struct sockaddr *mask, char *name);
  1265. };
  1266. /* This structure defines hardware protocols and their handlers. */
  1267. struct hwtype {
  1268. const char *name;
  1269. const char *title;
  1270. int type;
  1271. int alen;
  1272. char* FAST_FUNC (*print)(unsigned char *);
  1273. int FAST_FUNC (*input)(const char *, struct sockaddr *);
  1274. int FAST_FUNC (*activate)(int fd);
  1275. int suppress_null_addr;
  1276. };
  1277. #define IFNAME_SHOW_DOWNED_TOO ((char*)(intptr_t)1)
  1278. int display_interfaces(char *ifname) FAST_FUNC;
  1279. int in_ether(const char *bufp, struct sockaddr *sap) FAST_FUNC;
  1280. #if ENABLE_FEATURE_HWIB
  1281. int in_ib(const char *bufp, struct sockaddr *sap) FAST_FUNC;
  1282. #else
  1283. #define in_ib(a, b) 1 /* fail */
  1284. #endif
  1285. const struct aftype *get_aftype(const char *name) FAST_FUNC;
  1286. const struct hwtype *get_hwtype(const char *name) FAST_FUNC;
  1287. const struct hwtype *get_hwntype(int type) FAST_FUNC;
  1288. extern int fstype_matches(const char *fstype, const char *comma_list) FAST_FUNC;
  1289. #ifdef HAVE_MNTENT_H
  1290. extern struct mntent *find_mount_point(const char *name, int subdir_too) FAST_FUNC;
  1291. #endif
  1292. extern void erase_mtab(const char * name) FAST_FUNC;
  1293. extern unsigned int tty_baud_to_value(speed_t speed) FAST_FUNC;
  1294. extern speed_t tty_value_to_baud(unsigned int value) FAST_FUNC;
  1295. #if ENABLE_DESKTOP
  1296. extern void bb_warn_ignoring_args(char *arg) FAST_FUNC;
  1297. #else
  1298. # define bb_warn_ignoring_args(arg) ((void)0)
  1299. #endif
  1300. extern int get_linux_version_code(void) FAST_FUNC;
  1301. extern char *query_loop(const char *device) FAST_FUNC;
  1302. extern int del_loop(const char *device) FAST_FUNC;
  1303. /*
  1304. * If *devname is not NULL, use that name, otherwise try to find free one,
  1305. * malloc and return it in *devname.
  1306. * return value is the opened fd to the loop device, or < on error
  1307. */
  1308. extern int set_loop(char **devname, const char *file, unsigned long long offset, unsigned flags) FAST_FUNC;
  1309. /* These constants match linux/loop.h (without BB_ prefix): */
  1310. #define BB_LO_FLAGS_READ_ONLY 1
  1311. #define BB_LO_FLAGS_AUTOCLEAR 4
  1312. /* Returns malloced str */
  1313. char *bb_ask_noecho(int fd, int timeout, const char *prompt) FAST_FUNC;
  1314. /* Like bb_ask_noecho, but asks on stdin with no timeout. */
  1315. char *bb_ask_noecho_stdin(const char *prompt) FAST_FUNC;
  1316. int bb_ask_y_confirmation_FILE(FILE *fp) FAST_FUNC;
  1317. int bb_ask_y_confirmation(void) FAST_FUNC;
  1318. /* Returns -1 if input is invalid. current_mode is a base for e.g. "u+rw" */
  1319. int bb_parse_mode(const char* s, unsigned cur_mode) FAST_FUNC;
  1320. /*
  1321. * Config file parser
  1322. */
  1323. enum {
  1324. PARSE_COLLAPSE = 0x00010000, // treat consecutive delimiters as one
  1325. PARSE_TRIM = 0x00020000, // trim leading and trailing delimiters
  1326. // TODO: COLLAPSE and TRIM seem to always go in pair
  1327. PARSE_GREEDY = 0x00040000, // last token takes entire remainder of the line
  1328. PARSE_MIN_DIE = 0x00100000, // die if < min tokens found
  1329. // keep a copy of current line
  1330. PARSE_KEEP_COPY = 0x00200000 * ENABLE_FEATURE_CROND_D,
  1331. PARSE_EOL_COMMENTS = 0x00400000, // comments are recognized even if they aren't the first char
  1332. PARSE_ALT_COMMENTS = 0x00800000, // delim[0] and delim[1] are two different allowed comment chars
  1333. // (so far, delim[0] will only work as comment char for full-line comment)
  1334. // (IOW: it works as if PARSE_EOL_COMMENTS is not set. sysctl applet is okay with this)
  1335. PARSE_WS_COMMENTS = 0x01000000, // comments are recognized even if there is whitespace before
  1336. // ("line start><space><tab><space>#comment" is also comment, not only "line start>#comment")
  1337. // NORMAL is:
  1338. // * remove leading and trailing delimiters and collapse
  1339. // multiple delimiters into one
  1340. // * warn and continue if less than mintokens delimiters found
  1341. // * grab everything into last token
  1342. // * comments are recognized even if they aren't the first char
  1343. PARSE_NORMAL = PARSE_COLLAPSE | PARSE_TRIM | PARSE_GREEDY | PARSE_EOL_COMMENTS,
  1344. };
  1345. typedef struct parser_t {
  1346. FILE *fp;
  1347. char *data;
  1348. char *line, *nline;
  1349. size_t line_alloc, nline_alloc;
  1350. int lineno;
  1351. } parser_t;
  1352. parser_t* config_open(const char *filename) FAST_FUNC;
  1353. parser_t* config_open2(const char *filename, FILE* FAST_FUNC (*fopen_func)(const char *path)) FAST_FUNC;
  1354. /* delims[0] is a comment char (use '\0' to disable), the rest are token delimiters */
  1355. int config_read(parser_t *parser, char **tokens, unsigned flags, const char *delims) FAST_FUNC;
  1356. #define config_read(parser, tokens, max, min, str, flags) \
  1357. config_read(parser, tokens, ((flags) | (((min) & 0xFF) << 8) | ((max) & 0xFF)), str)
  1358. void config_close(parser_t *parser) FAST_FUNC;
  1359. /* Concatenate path and filename to new allocated buffer.
  1360. * Add "/" only as needed (no duplicate "//" are produced).
  1361. * If path is NULL, it is assumed to be "/".
  1362. * filename should not be NULL. */
  1363. char *concat_path_file(const char *path, const char *filename) FAST_FUNC;
  1364. /* Returns NULL on . and .. */
  1365. char *concat_subpath_file(const char *path, const char *filename) FAST_FUNC;
  1366. int bb_make_directory(char *path, long mode, int flags) FAST_FUNC;
  1367. int get_signum(const char *name) FAST_FUNC;
  1368. const char *get_signame(int number) FAST_FUNC;
  1369. void print_signames(void) FAST_FUNC;
  1370. char *bb_simplify_path(const char *path) FAST_FUNC;
  1371. /* Returns ptr to NUL */
  1372. char *bb_simplify_abs_path_inplace(char *path) FAST_FUNC;
  1373. #ifndef LOGIN_FAIL_DELAY
  1374. #define LOGIN_FAIL_DELAY 3
  1375. #endif
  1376. extern void bb_do_delay(int seconds) FAST_FUNC;
  1377. extern void change_identity(const struct passwd *pw) FAST_FUNC;
  1378. extern void run_shell(const char *shell, int loginshell, const char **args) NORETURN FAST_FUNC;
  1379. /* Returns $SHELL, getpwuid(getuid())->pw_shell, or DEFAULT_SHELL.
  1380. * Note that getpwuid result might need xstrdup'ing
  1381. * if there is a possibility of intervening getpwxxx() calls.
  1382. */
  1383. const char *get_shell_name(void) FAST_FUNC;
  1384. #if ENABLE_FEATURE_SETPRIV_CAPABILITIES || ENABLE_RUN_INIT
  1385. unsigned cap_name_to_number(const char *cap) FAST_FUNC;
  1386. void printf_cap(const char *pfx, unsigned cap_no) FAST_FUNC;
  1387. void drop_capability(int cap_ordinal) FAST_FUNC;
  1388. /* Structures inside "struct caps" are Linux-specific and libcap-specific: */
  1389. #define DEFINE_STRUCT_CAPS \
  1390. struct caps { \
  1391. struct __user_cap_header_struct header; \
  1392. unsigned u32s; \
  1393. struct __user_cap_data_struct data[2]; \
  1394. }
  1395. void getcaps(void *caps) FAST_FUNC;
  1396. #endif
  1397. #if ENABLE_SELINUX
  1398. extern void renew_current_security_context(void) FAST_FUNC;
  1399. extern void set_current_security_context(security_context_t sid) FAST_FUNC;
  1400. extern context_t set_security_context_component(security_context_t cur_context,
  1401. char *user, char *role, char *type, char *range) FAST_FUNC;
  1402. extern void setfscreatecon_or_die(security_context_t scontext) FAST_FUNC;
  1403. extern void selinux_preserve_fcontext(int fdesc) FAST_FUNC;
  1404. #else
  1405. #define selinux_preserve_fcontext(fdesc) ((void)0)
  1406. #endif
  1407. extern void selinux_or_die(void) FAST_FUNC;
  1408. /* setup_environment:
  1409. * if chdir pw->pw_dir: ok: else if to_tmp == 1: goto /tmp else: goto / or die
  1410. * if clear_env = 1: cd(pw->pw_dir), clear environment, then set
  1411. * TERM=(old value)
  1412. * USER=pw->pw_name, LOGNAME=pw->pw_name
  1413. * PATH=bb_default_[root_]path
  1414. * HOME=pw->pw_dir
  1415. * SHELL=shell
  1416. * else if change_env = 1:
  1417. * if not root (if pw->pw_uid != 0):
  1418. * USER=pw->pw_name, LOGNAME=pw->pw_name
  1419. * HOME=pw->pw_dir
  1420. * SHELL=shell
  1421. * else does nothing
  1422. *
  1423. * NB: CHANGEENV and CLEARENV use setenv() - this leaks memory!
  1424. * If setup_environment() is used is vforked child, this leaks memory _in parent too_!
  1425. */
  1426. #define SETUP_ENV_CHANGEENV (1 << 0)
  1427. #define SETUP_ENV_CLEARENV (1 << 1)
  1428. #define SETUP_ENV_TO_TMP (1 << 2)
  1429. #define SETUP_ENV_NO_CHDIR (1 << 4)
  1430. void setup_environment(const char *shell, int flags, const struct passwd *pw) FAST_FUNC;
  1431. void nuke_str(char *str) FAST_FUNC;
  1432. #if ENABLE_FEATURE_SECURETTY && !ENABLE_PAM
  1433. int is_tty_secure(const char *short_tty) FAST_FUNC;
  1434. #else
  1435. static ALWAYS_INLINE int is_tty_secure(const char *short_tty UNUSED_PARAM) { return 1; }
  1436. #endif
  1437. #define CHECKPASS_PW_HAS_EMPTY_PASSWORD 2
  1438. int check_password(const struct passwd *pw, const char *plaintext) FAST_FUNC;
  1439. int ask_and_check_password_extended(const struct passwd *pw, int timeout, const char *prompt) FAST_FUNC;
  1440. int ask_and_check_password(const struct passwd *pw) FAST_FUNC;
  1441. /* Returns a malloced string */
  1442. #if !ENABLE_USE_BB_CRYPT
  1443. #define pw_encrypt(clear, salt, cleanup) pw_encrypt(clear, salt)
  1444. #endif
  1445. extern char *pw_encrypt(const char *clear, const char *salt, int cleanup) FAST_FUNC;
  1446. extern int obscure(const char *old, const char *newval, const struct passwd *pwdp) FAST_FUNC;
  1447. /*
  1448. * rnd is additional random input. New one is returned.
  1449. * Useful if you call crypt_make_salt many times in a row:
  1450. * rnd = crypt_make_salt(buf1, 4, 0);
  1451. * rnd = crypt_make_salt(buf2, 4, rnd);
  1452. * rnd = crypt_make_salt(buf3, 4, rnd);
  1453. * (otherwise we risk having same salt generated)
  1454. */
  1455. extern int crypt_make_salt(char *p, int cnt /*, int rnd*/) FAST_FUNC;
  1456. /* "$N$" + sha_salt_16_bytes + NUL */
  1457. #define MAX_PW_SALT_LEN (3 + 16 + 1)
  1458. extern char* crypt_make_pw_salt(char p[MAX_PW_SALT_LEN], const char *algo) FAST_FUNC;
  1459. /* Returns number of lines changed, or -1 on error */
  1460. #if !(ENABLE_FEATURE_ADDUSER_TO_GROUP || ENABLE_FEATURE_DEL_USER_FROM_GROUP)
  1461. #define update_passwd(filename, username, data, member) \
  1462. update_passwd(filename, username, data)
  1463. #endif
  1464. extern int update_passwd(const char *filename,
  1465. const char *username,
  1466. const char *data,
  1467. const char *member) FAST_FUNC;
  1468. int index_in_str_array(const char *const string_array[], const char *key) FAST_FUNC;
  1469. int index_in_strings(const char *strings, const char *key) FAST_FUNC;
  1470. int index_in_substr_array(const char *const string_array[], const char *key) FAST_FUNC;
  1471. int index_in_substrings(const char *strings, const char *key) FAST_FUNC;
  1472. const char *nth_string(const char *strings, int n) FAST_FUNC;
  1473. extern void print_login_issue(const char *issue_file, const char *tty) FAST_FUNC;
  1474. extern void print_login_prompt(void) FAST_FUNC;
  1475. char *xmalloc_ttyname(int fd) FAST_FUNC RETURNS_MALLOC;
  1476. /* NB: typically you want to pass fd 0, not 1. Think 'applet | grep something' */
  1477. int get_terminal_width_height(int fd, unsigned *width, unsigned *height) FAST_FUNC;
  1478. int get_terminal_width(int fd) FAST_FUNC;
  1479. int tcsetattr_stdin_TCSANOW(const struct termios *tp) FAST_FUNC;
  1480. #define TERMIOS_CLEAR_ISIG (1 << 0)
  1481. #define TERMIOS_RAW_CRNL_INPUT (1 << 1)
  1482. #define TERMIOS_RAW_CRNL_OUTPUT (1 << 2)
  1483. #define TERMIOS_RAW_CRNL (TERMIOS_RAW_CRNL_INPUT|TERMIOS_RAW_CRNL_OUTPUT)
  1484. #define TERMIOS_RAW_INPUT (1 << 3)
  1485. int get_termios_and_make_raw(int fd, struct termios *newterm, struct termios *oldterm, int flags) FAST_FUNC;
  1486. int set_termios_to_raw(int fd, struct termios *oldterm, int flags) FAST_FUNC;
  1487. /* NB: "unsigned request" is crucial! "int request" will break some arches! */
  1488. int ioctl_or_perror(int fd, unsigned request, void *argp, const char *fmt,...) __attribute__ ((format (printf, 4, 5))) FAST_FUNC;
  1489. int ioctl_or_perror_and_die(int fd, unsigned request, void *argp, const char *fmt,...) __attribute__ ((format (printf, 4, 5))) FAST_FUNC;
  1490. #if ENABLE_IOCTL_HEX2STR_ERROR
  1491. int bb_ioctl_or_warn(int fd, unsigned request, void *argp, const char *ioctl_name) FAST_FUNC;
  1492. int bb_xioctl(int fd, unsigned request, void *argp, const char *ioctl_name) FAST_FUNC;
  1493. #define ioctl_or_warn(fd,request,argp) bb_ioctl_or_warn(fd,request,argp,#request)
  1494. #define xioctl(fd,request,argp) bb_xioctl(fd,request,argp,#request)
  1495. #else
  1496. int bb_ioctl_or_warn(int fd, unsigned request, void *argp) FAST_FUNC;
  1497. int bb_xioctl(int fd, unsigned request, void *argp) FAST_FUNC;
  1498. #define ioctl_or_warn(fd,request,argp) bb_ioctl_or_warn(fd,request,argp)
  1499. #define xioctl(fd,request,argp) bb_xioctl(fd,request,argp)
  1500. #endif
  1501. char *is_in_ino_dev_hashtable(const struct stat *statbuf) FAST_FUNC;
  1502. void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name) FAST_FUNC;
  1503. void reset_ino_dev_hashtable(void) FAST_FUNC;
  1504. #ifdef __GLIBC__
  1505. /* At least glibc has horrendously large inline for this, so wrap it */
  1506. unsigned long long bb_makedev(unsigned major, unsigned minor) FAST_FUNC;
  1507. #undef makedev
  1508. #define makedev(a,b) bb_makedev(a,b)
  1509. #endif
  1510. /* "Keycodes" that report an escape sequence.
  1511. * We use something which fits into signed char,
  1512. * yet doesn't represent any valid Unicode character.
  1513. * Also, -1 is reserved for error indication and we don't use it. */
  1514. enum {
  1515. KEYCODE_UP = -2,
  1516. KEYCODE_DOWN = -3,
  1517. KEYCODE_RIGHT = -4,
  1518. KEYCODE_LEFT = -5,
  1519. KEYCODE_HOME = -6,
  1520. KEYCODE_END = -7,
  1521. KEYCODE_INSERT = -8,
  1522. KEYCODE_DELETE = -9,
  1523. KEYCODE_PAGEUP = -10,
  1524. KEYCODE_PAGEDOWN = -11,
  1525. KEYCODE_BACKSPACE = -12, /* Used only if Alt/Ctrl/Shifted */
  1526. KEYCODE_D = -13, /* Used only if Alted */
  1527. #if 0
  1528. KEYCODE_FUN1 = ,
  1529. KEYCODE_FUN2 = ,
  1530. KEYCODE_FUN3 = ,
  1531. KEYCODE_FUN4 = ,
  1532. KEYCODE_FUN5 = ,
  1533. KEYCODE_FUN6 = ,
  1534. KEYCODE_FUN7 = ,
  1535. KEYCODE_FUN8 = ,
  1536. KEYCODE_FUN9 = ,
  1537. KEYCODE_FUN10 = ,
  1538. KEYCODE_FUN11 = ,
  1539. KEYCODE_FUN12 = ,
  1540. #endif
  1541. /* ^^^^^ Be sure that last defined value is small enough.
  1542. * Current read_key() code allows going up to -32 (0xfff..fffe0).
  1543. * This gives three upper bits in LSB to play with:
  1544. * KEYCODE_foo values are 0xfff..fffXX, lowest XX bits are: scavvvvv,
  1545. * s=0 if SHIFT, c=0 if CTRL, a=0 if ALT,
  1546. * vvvvv bits are the same for same key regardless of "shift bits".
  1547. */
  1548. //KEYCODE_SHIFT_... = KEYCODE_... & ~0x80,
  1549. KEYCODE_CTRL_RIGHT = KEYCODE_RIGHT & ~0x40,
  1550. KEYCODE_CTRL_LEFT = KEYCODE_LEFT & ~0x40,
  1551. KEYCODE_ALT_RIGHT = KEYCODE_RIGHT & ~0x20,
  1552. KEYCODE_ALT_LEFT = KEYCODE_LEFT & ~0x20,
  1553. KEYCODE_ALT_BACKSPACE = KEYCODE_BACKSPACE & ~0x20,
  1554. KEYCODE_ALT_D = KEYCODE_D & ~0x20,
  1555. KEYCODE_CURSOR_POS = -0x100, /* 0xfff..fff00 */
  1556. /* How long is the longest ESC sequence we know?
  1557. * We want it big enough to be able to contain
  1558. * cursor position sequence "ESC [ 9999 ; 9999 R"
  1559. */
  1560. KEYCODE_BUFFER_SIZE = 16
  1561. };
  1562. /* Note: fd may be in blocking or non-blocking mode, both make sense.
  1563. * For one, less uses non-blocking mode.
  1564. * Only the first read syscall inside read_key may block indefinitely
  1565. * (unless fd is in non-blocking mode),
  1566. * subsequent reads will time out after a few milliseconds.
  1567. * Return of -1 means EOF or error (errno == 0 on EOF).
  1568. * buffer[0] is used as a counter of buffered chars and must be 0
  1569. * on first call.
  1570. * timeout:
  1571. * -2: do not poll(-1) for input - read() it, return on EAGAIN at once
  1572. * -1: poll(-1) (i.e. block even on NONBLOCKed fd)
  1573. * >=0: poll() for TIMEOUT milliseconds, return -1/EAGAIN on timeout
  1574. */
  1575. int64_t read_key(int fd, char *buffer, int timeout) FAST_FUNC;
  1576. void read_key_ungets(char *buffer, const char *str, unsigned len) FAST_FUNC;
  1577. #if ENABLE_FEATURE_EDITING
  1578. /* It's NOT just ENABLEd or disabled. It's a number: */
  1579. # if defined CONFIG_FEATURE_EDITING_HISTORY && CONFIG_FEATURE_EDITING_HISTORY > 0
  1580. # define MAX_HISTORY (CONFIG_FEATURE_EDITING_HISTORY + 0)
  1581. unsigned size_from_HISTFILESIZE(const char *hp) FAST_FUNC;
  1582. # else
  1583. # define MAX_HISTORY 0
  1584. # endif
  1585. typedef struct line_input_t {
  1586. int flags;
  1587. int timeout;
  1588. const char *path_lookup;
  1589. # if MAX_HISTORY
  1590. int cnt_history;
  1591. int cur_history;
  1592. int max_history; /* must never be <= 0 */
  1593. # if ENABLE_FEATURE_EDITING_SAVEHISTORY
  1594. /* meaning of this field depends on FEATURE_EDITING_SAVE_ON_EXIT:
  1595. * if !FEATURE_EDITING_SAVE_ON_EXIT: "how many lines are
  1596. * in on-disk history"
  1597. * if FEATURE_EDITING_SAVE_ON_EXIT: "how many in-memory lines are
  1598. * also in on-disk history (and thus need to be skipped on save)"
  1599. */
  1600. unsigned cnt_history_in_file;
  1601. const char *hist_file;
  1602. # endif
  1603. char *history[MAX_HISTORY + 1];
  1604. # endif
  1605. } line_input_t;
  1606. enum {
  1607. DO_HISTORY = 1 * (MAX_HISTORY > 0),
  1608. TAB_COMPLETION = 2 * ENABLE_FEATURE_TAB_COMPLETION,
  1609. USERNAME_COMPLETION = 4 * ENABLE_FEATURE_USERNAME_COMPLETION,
  1610. VI_MODE = 8 * ENABLE_FEATURE_EDITING_VI,
  1611. WITH_PATH_LOOKUP = 0x10,
  1612. FOR_SHELL = DO_HISTORY | TAB_COMPLETION | USERNAME_COMPLETION,
  1613. };
  1614. line_input_t *new_line_input_t(int flags) FAST_FUNC;
  1615. /* So far static: void free_line_input_t(line_input_t *n) FAST_FUNC; */
  1616. /*
  1617. * maxsize must be >= 2.
  1618. * Returns:
  1619. * -1 on read errors or EOF, or on bare Ctrl-D,
  1620. * 0 on ctrl-C (the line entered is still returned in 'command'),
  1621. * >0 length of input string, including terminating '\n'
  1622. */
  1623. int read_line_input(line_input_t *st, const char *prompt, char *command, int maxsize) FAST_FUNC;
  1624. void show_history(const line_input_t *st) FAST_FUNC;
  1625. # if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
  1626. void save_history(line_input_t *st);
  1627. # endif
  1628. #else
  1629. #define MAX_HISTORY 0
  1630. int read_line_input(const char* prompt, char* command, int maxsize) FAST_FUNC;
  1631. #define read_line_input(state, prompt, command, maxsize) \
  1632. read_line_input(prompt, command, maxsize)
  1633. #endif
  1634. #ifndef COMM_LEN
  1635. # ifdef TASK_COMM_LEN
  1636. enum { COMM_LEN = TASK_COMM_LEN };
  1637. # else
  1638. /* synchronize with sizeof(task_struct.comm) in /usr/include/linux/sched.h */
  1639. enum { COMM_LEN = 16 };
  1640. # endif
  1641. #endif
  1642. struct smaprec {
  1643. unsigned long mapped_rw;
  1644. unsigned long mapped_ro;
  1645. unsigned long shared_clean;
  1646. unsigned long shared_dirty;
  1647. unsigned long private_clean;
  1648. unsigned long private_dirty;
  1649. unsigned long stack;
  1650. unsigned long smap_pss, smap_swap;
  1651. unsigned long smap_size;
  1652. unsigned long smap_start;
  1653. char smap_mode[5];
  1654. char *smap_name;
  1655. };
  1656. #if !ENABLE_PMAP
  1657. #define procps_read_smaps(pid, total, cb, data) \
  1658. procps_read_smaps(pid, total)
  1659. #endif
  1660. int FAST_FUNC procps_read_smaps(pid_t pid, struct smaprec *total,
  1661. void (*cb)(struct smaprec *, void *), void *data);
  1662. typedef struct procps_status_t {
  1663. DIR *dir;
  1664. IF_FEATURE_SHOW_THREADS(DIR *task_dir;)
  1665. uint8_t shift_pages_to_bytes;
  1666. uint8_t shift_pages_to_kb;
  1667. /* Fields are set to 0/NULL if failed to determine (or not requested) */
  1668. uint16_t argv_len;
  1669. char *argv0;
  1670. char *exe;
  1671. IF_SELINUX(char *context;)
  1672. IF_FEATURE_SHOW_THREADS(unsigned main_thread_pid;)
  1673. /* Everything below must contain no ptrs to malloc'ed data:
  1674. * it is memset(0) for each process in procps_scan() */
  1675. unsigned long vsz, rss; /* we round it to kbytes */
  1676. unsigned long stime, utime;
  1677. unsigned long start_time;
  1678. unsigned pid;
  1679. unsigned ppid;
  1680. unsigned pgid;
  1681. unsigned sid;
  1682. unsigned uid;
  1683. unsigned gid;
  1684. #if ENABLE_FEATURE_PS_ADDITIONAL_COLUMNS
  1685. unsigned ruid;
  1686. unsigned rgid;
  1687. int niceness;
  1688. #endif
  1689. unsigned tty_major,tty_minor;
  1690. #if ENABLE_FEATURE_TOPMEM
  1691. struct smaprec smaps;
  1692. #endif
  1693. char state[4];
  1694. /* basename of executable in exec(2), read from /proc/N/stat
  1695. * (if executable is symlink or script, it is NOT replaced
  1696. * by link target or interpreter name) */
  1697. char comm[COMM_LEN];
  1698. /* user/group? - use passwd/group parsing functions */
  1699. #if ENABLE_FEATURE_TOP_SMP_PROCESS
  1700. int last_seen_on_cpu;
  1701. #endif
  1702. } procps_status_t;
  1703. /* flag bits for procps_scan(xx, flags) calls */
  1704. enum {
  1705. PSSCAN_PID = 1 << 0,
  1706. PSSCAN_PPID = 1 << 1,
  1707. PSSCAN_PGID = 1 << 2,
  1708. PSSCAN_SID = 1 << 3,
  1709. PSSCAN_UIDGID = 1 << 4,
  1710. PSSCAN_COMM = 1 << 5,
  1711. /* PSSCAN_CMD = 1 << 6, - use read_cmdline instead */
  1712. PSSCAN_ARGV0 = 1 << 7,
  1713. PSSCAN_EXE = 1 << 8,
  1714. PSSCAN_STATE = 1 << 9,
  1715. PSSCAN_VSZ = 1 << 10,
  1716. PSSCAN_RSS = 1 << 11,
  1717. PSSCAN_STIME = 1 << 12,
  1718. PSSCAN_UTIME = 1 << 13,
  1719. PSSCAN_TTY = 1 << 14,
  1720. PSSCAN_SMAPS = (1 << 15) * ENABLE_FEATURE_TOPMEM,
  1721. /* NB: used by find_pid_by_name(). Any applet using it
  1722. * needs to be mentioned here. */
  1723. PSSCAN_ARGVN = (1 << 16) * (ENABLE_KILLALL
  1724. || ENABLE_PGREP || ENABLE_PKILL
  1725. || ENABLE_PIDOF
  1726. || ENABLE_SESTATUS
  1727. ),
  1728. PSSCAN_CONTEXT = (1 << 17) * ENABLE_SELINUX,
  1729. PSSCAN_START_TIME = 1 << 18,
  1730. PSSCAN_CPU = (1 << 19) * ENABLE_FEATURE_TOP_SMP_PROCESS,
  1731. PSSCAN_NICE = (1 << 20) * ENABLE_FEATURE_PS_ADDITIONAL_COLUMNS,
  1732. PSSCAN_RUIDGID = (1 << 21) * ENABLE_FEATURE_PS_ADDITIONAL_COLUMNS,
  1733. PSSCAN_TASKS = (1 << 22) * ENABLE_FEATURE_SHOW_THREADS,
  1734. };
  1735. //procps_status_t* alloc_procps_scan(void) FAST_FUNC;
  1736. void free_procps_scan(procps_status_t* sp) FAST_FUNC;
  1737. procps_status_t* procps_scan(procps_status_t* sp, int flags) FAST_FUNC;
  1738. /* Format cmdline (up to col chars) into char buf[size] */
  1739. /* Puts [comm] if cmdline is empty (-> process is a kernel thread) */
  1740. void read_cmdline(char *buf, int size, unsigned pid, const char *comm) FAST_FUNC;
  1741. pid_t *find_pid_by_name(const char* procName) FAST_FUNC;
  1742. pid_t *pidlist_reverse(pid_t *pidList) FAST_FUNC;
  1743. int starts_with_cpu(const char *str) FAST_FUNC;
  1744. unsigned get_cpu_count(void) FAST_FUNC;
  1745. /* Use strict=1 if you process input from untrusted source:
  1746. * it will return NULL on invalid %xx (bad hex chars)
  1747. * and str + 1 if decoded char is / or NUL.
  1748. * In non-strict mode, it always succeeds (returns str),
  1749. * and also it additionally decoded '+' to space.
  1750. */
  1751. char *percent_decode_in_place(char *str, int strict) FAST_FUNC;
  1752. extern const char bb_uuenc_tbl_base64[] ALIGN1;
  1753. extern const char bb_uuenc_tbl_std[] ALIGN1;
  1754. void bb_uuencode(char *store, const void *s, int length, const char *tbl) FAST_FUNC;
  1755. enum {
  1756. BASE64_FLAG_UU_STOP = 0x100,
  1757. /* Sign-extends to a value which never matches fgetc result: */
  1758. BASE64_FLAG_NO_STOP_CHAR = 0x80,
  1759. };
  1760. const char *decode_base64(char **pp_dst, const char *src) FAST_FUNC;
  1761. void read_base64(FILE *src_stream, FILE *dst_stream, int flags) FAST_FUNC;
  1762. typedef struct md5_ctx_t {
  1763. uint8_t wbuffer[64]; /* always correctly aligned for uint64_t */
  1764. void (*process_block)(struct md5_ctx_t*) FAST_FUNC;
  1765. uint64_t total64; /* must be directly before hash[] */
  1766. uint32_t hash[8]; /* 4 elements for md5, 5 for sha1, 8 for sha256 */
  1767. } md5_ctx_t;
  1768. typedef struct md5_ctx_t sha1_ctx_t;
  1769. typedef struct md5_ctx_t sha256_ctx_t;
  1770. typedef struct sha512_ctx_t {
  1771. uint64_t total64[2]; /* must be directly before hash[] */
  1772. uint64_t hash[8];
  1773. uint8_t wbuffer[128]; /* always correctly aligned for uint64_t */
  1774. } sha512_ctx_t;
  1775. typedef struct sha3_ctx_t {
  1776. uint64_t state[25];
  1777. unsigned bytes_queued;
  1778. unsigned input_block_bytes;
  1779. } sha3_ctx_t;
  1780. void md5_begin(md5_ctx_t *ctx) FAST_FUNC;
  1781. void md5_hash(md5_ctx_t *ctx, const void *buffer, size_t len) FAST_FUNC;
  1782. unsigned md5_end(md5_ctx_t *ctx, void *resbuf) FAST_FUNC;
  1783. void sha1_begin(sha1_ctx_t *ctx) FAST_FUNC;
  1784. #define sha1_hash md5_hash
  1785. unsigned sha1_end(sha1_ctx_t *ctx, void *resbuf) FAST_FUNC;
  1786. void sha256_begin(sha256_ctx_t *ctx) FAST_FUNC;
  1787. #define sha256_hash md5_hash
  1788. #define sha256_end sha1_end
  1789. void sha512_begin(sha512_ctx_t *ctx) FAST_FUNC;
  1790. void sha512_hash(sha512_ctx_t *ctx, const void *buffer, size_t len) FAST_FUNC;
  1791. unsigned sha512_end(sha512_ctx_t *ctx, void *resbuf) FAST_FUNC;
  1792. void sha3_begin(sha3_ctx_t *ctx) FAST_FUNC;
  1793. void sha3_hash(sha3_ctx_t *ctx, const void *buffer, size_t len) FAST_FUNC;
  1794. unsigned sha3_end(sha3_ctx_t *ctx, void *resbuf) FAST_FUNC;
  1795. /* TLS benefits from knowing that sha1 and sha256 share these. Give them "agnostic" names too */
  1796. typedef struct md5_ctx_t md5sha_ctx_t;
  1797. #define md5sha_hash md5_hash
  1798. #define sha_end sha1_end
  1799. extern uint32_t *global_crc32_table;
  1800. uint32_t *crc32_filltable(uint32_t *tbl256, int endian) FAST_FUNC;
  1801. uint32_t *crc32_new_table_le(void) FAST_FUNC;
  1802. uint32_t *global_crc32_new_table_le(void) FAST_FUNC;
  1803. uint32_t crc32_block_endian1(uint32_t val, const void *buf, unsigned len, uint32_t *crc_table) FAST_FUNC;
  1804. uint32_t crc32_block_endian0(uint32_t val, const void *buf, unsigned len, uint32_t *crc_table) FAST_FUNC;
  1805. typedef struct masks_labels_t {
  1806. const char *labels;
  1807. const int masks[];
  1808. } masks_labels_t;
  1809. int print_flags_separated(const int *masks, const char *labels,
  1810. int flags, const char *separator) FAST_FUNC;
  1811. int print_flags(const masks_labels_t *ml, int flags) FAST_FUNC;
  1812. typedef struct bb_progress_t {
  1813. unsigned last_size;
  1814. unsigned last_update_sec;
  1815. unsigned last_change_sec;
  1816. unsigned start_sec;
  1817. /*unsigned last_eta;*/
  1818. const char *curfile;
  1819. } bb_progress_t;
  1820. #define is_bb_progress_inited(p) ((p)->curfile != NULL)
  1821. #define bb_progress_free(p) do { \
  1822. if (ENABLE_UNICODE_SUPPORT) free((char*)((p)->curfile)); \
  1823. (p)->curfile = NULL; \
  1824. } while (0)
  1825. void bb_progress_init(bb_progress_t *p, const char *curfile) FAST_FUNC;
  1826. void bb_progress_update(bb_progress_t *p,
  1827. uoff_t beg_range,
  1828. uoff_t transferred,
  1829. uoff_t totalsize) FAST_FUNC;
  1830. unsigned ubi_devnum_from_devname(const char *str) FAST_FUNC;
  1831. int ubi_get_volid_by_name(unsigned ubi_devnum, const char *vol_name) FAST_FUNC;
  1832. extern const char *applet_name;
  1833. /* Some older linkers don't perform string merging, we used to have common strings
  1834. * as global arrays to do it by hand. But:
  1835. * (1) newer linkers do it themselves,
  1836. * (2) however, they DONT merge string constants with global arrays,
  1837. * even if the value is the same (!). Thus global arrays actually
  1838. * increased size a bit: for example, "/etc/passwd" string from libc
  1839. * wasn't merged with bb_path_passwd_file[] array!
  1840. * Therefore now we use #defines.
  1841. */
  1842. /* "BusyBox vN.N.N (timestamp or extra_version)" */
  1843. extern const char bb_banner[] ALIGN1;
  1844. extern const char bb_msg_memory_exhausted[] ALIGN1;
  1845. extern const char bb_msg_invalid_date[] ALIGN1;
  1846. #define bb_msg_read_error "read error"
  1847. #define bb_msg_write_error "write error"
  1848. extern const char bb_msg_unknown[] ALIGN1;
  1849. extern const char bb_msg_can_not_create_raw_socket[] ALIGN1;
  1850. extern const char bb_msg_perm_denied_are_you_root[] ALIGN1;
  1851. extern const char bb_msg_you_must_be_root[] ALIGN1;
  1852. extern const char bb_msg_requires_arg[] ALIGN1;
  1853. extern const char bb_msg_invalid_arg_to[] ALIGN1;
  1854. extern const char bb_msg_standard_input[] ALIGN1;
  1855. extern const char bb_msg_standard_output[] ALIGN1;
  1856. /* NB: (bb_hexdigits_upcase[i] | 0x20) -> lowercase hex digit */
  1857. extern const char bb_hexdigits_upcase[] ALIGN1;
  1858. extern const char bb_path_wtmp_file[] ALIGN1;
  1859. /* Busybox mount uses either /proc/mounts or /etc/mtab to
  1860. * get the list of currently mounted filesystems */
  1861. #define bb_path_mtab_file IF_FEATURE_MTAB_SUPPORT("/etc/mtab")IF_NOT_FEATURE_MTAB_SUPPORT("/proc/mounts")
  1862. #define bb_path_passwd_file _PATH_PASSWD
  1863. #define bb_path_group_file _PATH_GROUP
  1864. #define bb_path_shadow_file _PATH_SHADOW
  1865. #define bb_path_gshadow_file _PATH_GSHADOW
  1866. #define bb_path_motd_file "/etc/motd"
  1867. #define bb_dev_null "/dev/null"
  1868. extern const char bb_busybox_exec_path[] ALIGN1;
  1869. /* allow default system PATH to be extended via CFLAGS */
  1870. #ifndef BB_ADDITIONAL_PATH
  1871. #define BB_ADDITIONAL_PATH ""
  1872. #endif
  1873. #define BB_PATH_ROOT_PATH "PATH=/sbin:/usr/sbin:/bin:/usr/bin" BB_ADDITIONAL_PATH
  1874. extern const char bb_PATH_root_path[] ALIGN1; /* BB_PATH_ROOT_PATH */
  1875. #define bb_default_root_path (bb_PATH_root_path + sizeof("PATH"))
  1876. /* util-linux manpage says /sbin:/bin:/usr/sbin:/usr/bin,
  1877. * but I want to save a few bytes here:
  1878. */
  1879. #define bb_default_path (bb_PATH_root_path + sizeof("PATH=/sbin:/usr/sbin"))
  1880. extern const int const_int_0;
  1881. //extern const int const_int_1;
  1882. /* This struct is deliberately not defined. */
  1883. /* See docs/keep_data_small.txt */
  1884. struct globals;
  1885. /* '*const' ptr makes gcc optimize code much better.
  1886. * Magic prevents ptr_to_globals from going into rodata.
  1887. * If you want to assign a value, use SET_PTR_TO_GLOBALS(x) */
  1888. extern struct globals *const ptr_to_globals;
  1889. /* At least gcc 3.4.6 on mipsel system needs optimization barrier */
  1890. #define barrier() __asm__ __volatile__("":::"memory")
  1891. #define SET_PTR_TO_GLOBALS(x) do { \
  1892. (*(struct globals**)&ptr_to_globals) = (void*)(x); \
  1893. barrier(); \
  1894. } while (0)
  1895. #define FREE_PTR_TO_GLOBALS() do { \
  1896. if (ENABLE_FEATURE_CLEAN_UP) { \
  1897. free(ptr_to_globals); \
  1898. } \
  1899. } while (0)
  1900. /* You can change LIBBB_DEFAULT_LOGIN_SHELL, but don't use it,
  1901. * use bb_default_login_shell and following defines.
  1902. * If you change LIBBB_DEFAULT_LOGIN_SHELL,
  1903. * don't forget to change increment constant. */
  1904. #define LIBBB_DEFAULT_LOGIN_SHELL "-/bin/sh"
  1905. extern const char bb_default_login_shell[] ALIGN1;
  1906. /* "/bin/sh" */
  1907. #define DEFAULT_SHELL (bb_default_login_shell+1)
  1908. /* "sh" */
  1909. #define DEFAULT_SHELL_SHORT_NAME (bb_default_login_shell+6)
  1910. /* The following devices are the same on all systems. */
  1911. #define CURRENT_TTY "/dev/tty"
  1912. #define DEV_CONSOLE "/dev/console"
  1913. #if defined(__FreeBSD_kernel__)
  1914. # define CURRENT_VC CURRENT_TTY
  1915. # define VC_1 "/dev/ttyv0"
  1916. # define VC_2 "/dev/ttyv1"
  1917. # define VC_3 "/dev/ttyv2"
  1918. # define VC_4 "/dev/ttyv3"
  1919. # define VC_5 "/dev/ttyv4"
  1920. # define VC_FORMAT "/dev/ttyv%d"
  1921. #elif defined(__GNU__)
  1922. # define CURRENT_VC CURRENT_TTY
  1923. # define VC_1 "/dev/tty1"
  1924. # define VC_2 "/dev/tty2"
  1925. # define VC_3 "/dev/tty3"
  1926. # define VC_4 "/dev/tty4"
  1927. # define VC_5 "/dev/tty5"
  1928. # define VC_FORMAT "/dev/tty%d"
  1929. #elif ENABLE_FEATURE_DEVFS
  1930. /*Linux, obsolete devfs names */
  1931. # define CURRENT_VC "/dev/vc/0"
  1932. # define VC_1 "/dev/vc/1"
  1933. # define VC_2 "/dev/vc/2"
  1934. # define VC_3 "/dev/vc/3"
  1935. # define VC_4 "/dev/vc/4"
  1936. # define VC_5 "/dev/vc/5"
  1937. # define VC_FORMAT "/dev/vc/%d"
  1938. # define LOOP_FORMAT "/dev/loop/%u"
  1939. # define LOOP_NAMESIZE (sizeof("/dev/loop/") + sizeof(int)*3 + 1)
  1940. # define LOOP_NAME "/dev/loop/"
  1941. # define FB_0 "/dev/fb/0"
  1942. #else
  1943. /*Linux, normal names */
  1944. # define CURRENT_VC "/dev/tty0"
  1945. # define VC_1 "/dev/tty1"
  1946. # define VC_2 "/dev/tty2"
  1947. # define VC_3 "/dev/tty3"
  1948. # define VC_4 "/dev/tty4"
  1949. # define VC_5 "/dev/tty5"
  1950. # define VC_FORMAT "/dev/tty%d"
  1951. # define LOOP_FORMAT "/dev/loop%u"
  1952. # define LOOP_NAMESIZE (sizeof("/dev/loop") + sizeof(int)*3 + 1)
  1953. # define LOOP_NAME "/dev/loop"
  1954. # define FB_0 "/dev/fb0"
  1955. #endif
  1956. #define ARRAY_SIZE(x) ((unsigned)(sizeof(x) / sizeof((x)[0])))
  1957. #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  1958. /* We redefine ctype macros. Unicode-correct handling of char types
  1959. * can't be done with such byte-oriented operations anyway,
  1960. * we don't lose anything.
  1961. */
  1962. #undef isalnum
  1963. #undef isalpha
  1964. #undef isascii
  1965. #undef isblank
  1966. #undef iscntrl
  1967. #undef isdigit
  1968. #undef isgraph
  1969. #undef islower
  1970. #undef isprint
  1971. #undef ispunct
  1972. #undef isspace
  1973. #undef isupper
  1974. #undef isxdigit
  1975. #undef toupper
  1976. #undef tolower
  1977. /* We save ~500 bytes on isdigit alone.
  1978. * BTW, x86 likes (unsigned char) cast more than (unsigned). */
  1979. /* These work the same for ASCII and Unicode,
  1980. * assuming no one asks "is this a *Unicode* letter?" using isalpha(letter) */
  1981. #define isascii(a) ((unsigned char)(a) <= 0x7f)
  1982. #define isdigit(a) ((unsigned char)((a) - '0') <= 9)
  1983. #define isupper(a) ((unsigned char)((a) - 'A') <= ('Z' - 'A'))
  1984. #define islower(a) ((unsigned char)((a) - 'a') <= ('z' - 'a'))
  1985. #define isalpha(a) ((unsigned char)(((a)|0x20) - 'a') <= ('z' - 'a'))
  1986. #define isblank(a) ({ unsigned char bb__isblank = (a); bb__isblank == ' ' || bb__isblank == '\t'; })
  1987. #define iscntrl(a) ({ unsigned char bb__iscntrl = (a); bb__iscntrl < ' ' || bb__iscntrl == 0x7f; })
  1988. /* In POSIX/C locale isspace is only these chars: "\t\n\v\f\r" and space.
  1989. * "\t\n\v\f\r" happen to have ASCII codes 9,10,11,12,13.
  1990. */
  1991. #define isspace(a) ({ unsigned char bb__isspace = (a) - 9; bb__isspace == (' ' - 9) || bb__isspace <= (13 - 9); })
  1992. // Unsafe wrt NUL: #define ispunct(a) (strchr("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~", (a)) != NULL)
  1993. #define ispunct(a) (strchrnul("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~", (a))[0])
  1994. // Bigger code: #define isalnum(a) ({ unsigned char bb__isalnum = (a) - '0'; bb__isalnum <= 9 || ((bb__isalnum - ('A' - '0')) & 0xdf) <= 25; })
  1995. #define isalnum(a) bb_ascii_isalnum(a)
  1996. static ALWAYS_INLINE int bb_ascii_isalnum(unsigned char a)
  1997. {
  1998. unsigned char b = a - '0';
  1999. if (b <= 9)
  2000. return (b <= 9);
  2001. b = (a|0x20) - 'a';
  2002. return b <= 'z' - 'a';
  2003. }
  2004. #define isxdigit(a) bb_ascii_isxdigit(a)
  2005. static ALWAYS_INLINE int bb_ascii_isxdigit(unsigned char a)
  2006. {
  2007. unsigned char b = a - '0';
  2008. if (b <= 9)
  2009. return (b <= 9);
  2010. b = (a|0x20) - 'a';
  2011. return b <= 'f' - 'a';
  2012. }
  2013. #define toupper(a) bb_ascii_toupper(a)
  2014. static ALWAYS_INLINE unsigned char bb_ascii_toupper(unsigned char a)
  2015. {
  2016. unsigned char b = a - 'a';
  2017. if (b <= ('z' - 'a'))
  2018. a -= 'a' - 'A';
  2019. return a;
  2020. }
  2021. #define tolower(a) bb_ascii_tolower(a)
  2022. static ALWAYS_INLINE unsigned char bb_ascii_tolower(unsigned char a)
  2023. {
  2024. unsigned char b = a - 'A';
  2025. if (b <= ('Z' - 'A'))
  2026. a += 'a' - 'A';
  2027. return a;
  2028. }
  2029. /* In ASCII and Unicode, these are likely to be very different.
  2030. * Let's prevent ambiguous usage from the start */
  2031. #define isgraph(a) isgraph_is_ambiguous_dont_use(a)
  2032. #define isprint(a) isprint_is_ambiguous_dont_use(a)
  2033. /* NB: must not treat EOF as isgraph or isprint */
  2034. #define isgraph_asciionly(a) ((unsigned)((a) - 0x21) <= 0x7e - 0x21)
  2035. #define isprint_asciionly(a) ((unsigned)((a) - 0x20) <= 0x7e - 0x20)
  2036. /* Simple unit-testing framework */
  2037. typedef void (*bbunit_testfunc)(void);
  2038. struct bbunit_listelem {
  2039. const char* name;
  2040. bbunit_testfunc testfunc;
  2041. };
  2042. void bbunit_registertest(struct bbunit_listelem* test);
  2043. void bbunit_settestfailed(void);
  2044. #define BBUNIT_DEFINE_TEST(NAME) \
  2045. static void bbunit_##NAME##_test(void); \
  2046. static struct bbunit_listelem bbunit_##NAME##_elem = { \
  2047. .name = #NAME, \
  2048. .testfunc = bbunit_##NAME##_test, \
  2049. }; \
  2050. static void INIT_FUNC bbunit_##NAME##_register(void) \
  2051. { \
  2052. bbunit_registertest(&bbunit_##NAME##_elem); \
  2053. } \
  2054. static void bbunit_##NAME##_test(void)
  2055. /*
  2056. * Both 'goto bbunit_end' and 'break' are here only to get rid
  2057. * of compiler warnings.
  2058. */
  2059. #define BBUNIT_ENDTEST \
  2060. do { \
  2061. goto bbunit_end; \
  2062. bbunit_end: \
  2063. break; \
  2064. } while (0)
  2065. #define BBUNIT_PRINTASSERTFAIL \
  2066. do { \
  2067. bb_error_msg( \
  2068. "[ERROR] Assertion failed in file %s, line %d", \
  2069. __FILE__, __LINE__); \
  2070. } while (0)
  2071. #define BBUNIT_ASSERTION_FAILED \
  2072. do { \
  2073. bbunit_settestfailed(); \
  2074. goto bbunit_end; \
  2075. } while (0)
  2076. /*
  2077. * Assertions.
  2078. * For now we only offer assertions which cause tests to fail
  2079. * immediately. In the future 'expects' might be added too -
  2080. * similar to those offered by the gtest framework.
  2081. */
  2082. #define BBUNIT_ASSERT_EQ(EXPECTED, ACTUAL) \
  2083. do { \
  2084. if ((EXPECTED) != (ACTUAL)) { \
  2085. BBUNIT_PRINTASSERTFAIL; \
  2086. bb_error_msg("[ERROR] '%s' isn't equal to '%s'", \
  2087. #EXPECTED, #ACTUAL); \
  2088. BBUNIT_ASSERTION_FAILED; \
  2089. } \
  2090. } while (0)
  2091. #define BBUNIT_ASSERT_NOTEQ(EXPECTED, ACTUAL) \
  2092. do { \
  2093. if ((EXPECTED) == (ACTUAL)) { \
  2094. BBUNIT_PRINTASSERTFAIL; \
  2095. bb_error_msg("[ERROR] '%s' is equal to '%s'", \
  2096. #EXPECTED, #ACTUAL); \
  2097. BBUNIT_ASSERTION_FAILED; \
  2098. } \
  2099. } while (0)
  2100. #define BBUNIT_ASSERT_NOTNULL(PTR) \
  2101. do { \
  2102. if ((PTR) == NULL) { \
  2103. BBUNIT_PRINTASSERTFAIL; \
  2104. bb_error_msg("[ERROR] '%s' is NULL!", #PTR); \
  2105. BBUNIT_ASSERTION_FAILED; \
  2106. } \
  2107. } while (0)
  2108. #define BBUNIT_ASSERT_NULL(PTR) \
  2109. do { \
  2110. if ((PTR) != NULL) { \
  2111. BBUNIT_PRINTASSERTFAIL; \
  2112. bb_error_msg("[ERROR] '%s' is not NULL!", #PTR); \
  2113. BBUNIT_ASSERTION_FAILED; \
  2114. } \
  2115. } while (0)
  2116. #define BBUNIT_ASSERT_FALSE(STATEMENT) \
  2117. do { \
  2118. if ((STATEMENT)) { \
  2119. BBUNIT_PRINTASSERTFAIL; \
  2120. bb_error_msg("[ERROR] Statement '%s' evaluated to true!", \
  2121. #STATEMENT); \
  2122. BBUNIT_ASSERTION_FAILED; \
  2123. } \
  2124. } while (0)
  2125. #define BBUNIT_ASSERT_TRUE(STATEMENT) \
  2126. do { \
  2127. if (!(STATEMENT)) { \
  2128. BBUNIT_PRINTASSERTFAIL; \
  2129. bb_error_msg("[ERROR] Statement '%s' evaluated to false!", \
  2130. #STATEMENT); \
  2131. BBUNIT_ASSERTION_FAILED; \
  2132. } \
  2133. } while (0)
  2134. #define BBUNIT_ASSERT_STREQ(STR1, STR2) \
  2135. do { \
  2136. if (strcmp(STR1, STR2) != 0) { \
  2137. BBUNIT_PRINTASSERTFAIL; \
  2138. bb_error_msg("[ERROR] Strings '%s' and '%s' " \
  2139. "are not the same", STR1, STR2); \
  2140. BBUNIT_ASSERTION_FAILED; \
  2141. } \
  2142. } while (0)
  2143. #define BBUNIT_ASSERT_STRNOTEQ(STR1, STR2) \
  2144. do { \
  2145. if (strcmp(STR1, STR2) == 0) { \
  2146. BBUNIT_PRINTASSERTFAIL; \
  2147. bb_error_msg("[ERROR] Strings '%s' and '%s' " \
  2148. "are the same, but were " \
  2149. "expected to differ", STR1, STR2); \
  2150. BBUNIT_ASSERTION_FAILED; \
  2151. } \
  2152. } while (0)
  2153. POP_SAVED_FUNCTION_VISIBILITY
  2154. #endif