libbb.h 99 KB

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