news.html 244 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533
  1. <html><head><title>toybox news</title>
  2. <!--#include file="header.html" -->
  3. <p>Toybox combines the most common Linux command line utilities together
  4. into a single BSD-licensed executable that's simple, small, fast,
  5. reasonably standards-compliant, and powerful enough to turn Android into
  6. a development environment. See the links on the left for details.</p>
  7. <h2>News</h2>
  8. <a name="10-01-2023" /><a href="#10-01-2023"><hr><h2><b>January 10, 2023</b></h2></a>
  9. <blockquote>
  10. <p>"Why," Arthur said, "is there a sofa in that field?"</br>
  11. "I told you!" shouted Ford, leaping to his feet. "Eddies in the space-time
  12. continuum!"</br>
  13. "And this is his sofa, is it?"</p>
  14. <p>- The Hitchhiker's Guide to the Galaxy</p>
  15. </p></blockquote>
  16. <p><a href=downloads/toybox-0.8.9.tar.gz>Toybox 0.8.9</a>
  17. (<a href=https://github.com/landley/toybox/releases/tag/0.8.9>git commit</a>)
  18. is out, with prebuilt <a href=downloads/binaries/0.8.9>static binaries</a> and
  19. <a href=downloads/binaries/mkroot/0.8.9>mkroot images</a>
  20. bootable under QEMU (built using a <a href=https://github.com/landley/linux/tree/mkroot-6.1>lightly patched</a> linux-6.1).</p>
  21. <p>The new <b>nbd-server</b> command interoperates with nbd-client to serve
  22. network block devices (using the v1 protocol), and Moritz Weber contributed a read-only <b>git</b>
  23. implementation to pending.</p>
  24. <p><u>Features</u>: New <b>grep</b> fast path for fixed or simple patterns that
  25. don't need the full regex engine (I.E. "^", ".", "$" but not "*" or "[]")
  26. most noticeable when searching for many patterns at once.
  27. Improved <b>tar --xform</b> support parsing flags= and trailing s/// scope
  28. flags (but using --xform now requires toybox sed in the $PATH).</p>
  29. <p>Added <b>sort -C</b>, <b>lsusb -i</b>, <b>netcat -n</b>,
  30. <b>swapoff -a -v</b>, <b>httpd -v</b>, <b>nbd-client -b</b>,
  31. a <b>uname -p</b> stub to mollify package builds,
  32. <b>sleep</b> accepts multiple arguments,
  33. <b>sed</b> now parses interlaced -e and -f arguments in order,
  34. several new options in <b>readlink</b> and <b>realpath</b> (and better
  35. handling of relative paths), and UDP mode in netcat is more useful now:
  36. <b>netcat -u -s 127.0.0.1 -p 9876 -l</b> can type at <b>netcat -u 127.0.0.1 9876</b>
  37. in both directions. (Figuring out when the other side hangs up is an unsolved
  38. problem, but that's UDP for you.)
  39. Elliott added <b>ls -N</b>.</p>
  40. <p><u>Bugfixes</u>: Fixed off by one error in <b>sort -c</b> output,
  41. fixed <b>sed -z</b> and other sed cases where Linux has never obeyed
  42. Posix (N at EOF does a default print, l escapes \n),
  43. <b>patch --dry-run</b> should no longer create or delete files,
  44. <b>gzip</b>/<b>zcat</b> couldn't handle concatenated archives,
  45. the ./configure of gmake 4.3 depends on <b>test</b> treating one argument -a as a synonym for -e,
  46. autodetectiong compression types in <b>tar</b> should be more reliable now
  47. and sanitize weird path corner cases (like .. past /) better,
  48. <b>scripts/make.sh</b> (and thus "make toybox") should no longer truncate log
  49. files stderr is redirected to,
  50. <b>httpd</b> now handles ? and # in URLs,
  51. <b>xxd</b> disables columns for -c 0 and groups for -g 0 (so you can get
  52. a long interrupted string of hex digits out of it), two fixes to
  53. <b>mountpoint</b> (the conversion to same_file() was inappropriate because
  54. the logic isn't quite the same, and -q should also quiet "not found" errors),
  55. fixed <b>httpd</b> not always displaying index.html files instead of directory
  56. contents, fixed <b>comm -</b> not recognizing it as stdin, and multiple fixes to
  57. <b>timeout</b> which now kills process group and thus child processes,
  58. isn't suspended by SIGTTIN, and recursive commands it calls don't
  59. inherit an inappropriate SIGCHLD handler.</p>
  60. <p>Yi-Yo Chiang fixed loopback <b>mount</b> (the recent switch to xrunread()
  61. kept the newline from losetup's output) and added <b>tail +123</b>
  62. (old-style synonym for tail -n +123).
  63. Daniel Mentz added scmversion to the <b>modinfo</b> tag list (Android uses
  64. it for external modules). Alexander Holler fixed <b>su</b> to not require
  65. /etc/shadow when run as root, and nomas2000 reported an inverted test in
  66. <b>date</b>'s check for trailing rubbish. Daniel Mentz fixed an off by
  67. one in <b>grep -f</b> that discarded the last character of the pattern file's
  68. contents. Kelvin Zhang made <b>modinfo</b> better at handling symlinks.
  69. Antoni Villalonga fixed <b>fmt</b> on 64 bit big endian systems (like s390x and
  70. powerpc). Li Cheng fixed <b>mount</b>'s type detection not autodetecting
  71. the need to bind mount files when type "none" was specified in fstab.
  72. Tomasz Sterna reported that <b>modprobe</b> resolving dependencies shouldn't
  73. feed a NULL pointer to the syscall's options arguments (the kernel goes -EWTF),
  74. and Vincent Donnefort made modprobe work when /proc/modules isn't available.</p>
  75. <p><u>Library</u>:
  76. The TOYFLAG_ARGFAIL() exit value is now the default <b>error_msg()</b> sets,
  77. <b>sendfile()</b> now falls back to the read/write loop for any error (not just
  78. EINVAL, the kernel sends ENOSYS and EXDEV and who knows what else),
  79. <b>xgetrandom()</b> can now return arbitrary amounts of data (looping internally
  80. as necessary),
  81. <b>xwaitpid()</b> returns status 127 for cases (like bad PID) which don't
  82. return a status for the PID,
  83. several fixes to <b>xabspath()</b> as part of the readlink/realpath work,
  84. new <b>octal_deslash()</b> to remove octal escapes common in kernel strings
  85. (ala /proc/mounts),
  86. the <b>FLAG_x</b> macros always use a 64 bit type now (so you don't have to
  87. worry about toys.optflags &= ~FLAG_x; blanking the top 32 bits),
  88. replaced memcmp() with new library function <b>smemcmp()</b> to placate ASAN
  89. when returning first difference in known differing arguments of unequal length.
  90. Elliott added three more filesystem types to <b>fs_type_name()</b> which is
  91. used by <b>stat -f</b> and friends.</p>
  92. <p><u>Mkroot</u>:
  93. New <b>scripts/test_mkroot.sh</b> runs each target under qemu to confirm
  94. 1) it boots, 2) the block device works, 3) networking works, and 4) the clock is set
  95. reasonably. It runs them in parallel, with an httpd instance on the host to
  96. fetch a file from, and a timeout to detect hangs.
  97. New <b>scripts/root/overlay</b> package copies $OVERLAY directory into
  98. target filesystem, ala <b>scripts/mkroot.sh overlay OVERLAY=$PWD/blah</b>
  99. The init script now mounts any /dev/?da on /mnt and when /mnt/init exists
  100. sets $HANDOFF to that instead of running a shell prompt, so you can provide
  101. automated control images that run code in the emulator automatically. (The
  102. emulator process still when whatever $HANDOFF called exits.)</p>
  103. <p>Some kernel changes finally made it upstream so we can drop workarounds
  104. for them, such as kernel commit
  105. <a href=https://github.com/torvalds/linux/commit/f8f0d06438e5>f8f0d06438e5</a>
  106. fixing the <a href=https://landley.net/notes-2014.html#13-08-2014>longstanding</a>
  107. "allnoconfig has =y" issue so miniconfig doesn't need to add a magic #comment
  108. line forcing a symbol OFF anymore. The remaining kernel patches (including
  109. several maintained locally but hadn't merged into mkroot) moved to a
  110. <a href=https://github.com/landley/linux/tree/mkroot-6.1>seperate repository</a>
  111. so mkroot.sh doesn't have to call sed on the build snapshot. (They're are also
  112. included in the mkroot binary release directory, and were all submitted to lkml
  113. months if not years ago.)</p>
  114. <p>The host airlock setup (creating the temporary restricted environment
  115. mkroot builds packages in both so they don't pick up strange dependencies from
  116. the host, and to prove the build can use the toybox commands)
  117. removed a bunch of commands (dd, diff, vi, xzcat, ar, nm) no longer
  118. needed by the linux-6.1 build. The kernel patches also remove the need
  119. for gcc (it can use the "cc" symlink all modern distros install, and
  120. autodetects whether that points to gcc or clang) and bc (which is just
  121. <a href=https://landley.net/notes-2013.html#18-05-2013>generally obsolete</a>).
  122. Left those two in for one more release, but NEXT time building a vanilla
  123. kernel without the <a href=https://landley.net/toybox/downloads/binaries/mkroot/0.8.9/linux-patches/0001-try-generic-compiler-name-cc-before-falling-back-to-.patch>gcc removal patch</a>
  124. and <a href=https://landley.net/toybox/downloads/binaries/mkroot/0.8.9/linux-patches/0004-Replace-timeconst.bc-with-mktimeconst.c.patch>bc removal patch</a>
  125. may require you to add <b>HOST_EXTRA="gcc bc"</b> to the mkroot command line
  126. for the airlock build to add extra symlinks to root/build/airlock.</p>
  127. <p>Added a kernel build for powerpc64 big endian,
  128. m68k and powerpc now support "run-qemu.sh -hda file.img", and m68k only
  129. has one /dev/?db (disabled Apple Desktop Bus in the config).
  130. Added basic module support (the kernel build saves modules in modules.cpio.gz
  131. so it can extract them when you rebuild the root filesystem but not the kernel)
  132. and added <b>scripts/root/tests</b> which (among other things) builds two
  133. innocuous modules that depend on each other (fscache and cachefiles) for
  134. modprobe/insmod testing that hopefully won't break anything else. (If
  135. there was a scripts/root/pending/ tests would be in it: it does not actually
  136. run the test suite under mkroot yet, because toysh needs work.)</p>
  137. <p><u>Pending</u>: Elliott made <b>strace</b> build on 32-bit x86.
  138. James Farrell added <b>diff -f</b>.
  139. Alexander Holler fixed two parameter substitution bugs in <b>toysh</b>.
  140. Rob fixed assignment suppression, &amp;&amp; and || parsing, math
  141. priority, a number of ASAN test failures, untangled and commented the
  142. brace expansion logic, and other ongoing shell work.</p>
  143. <p>A large rewrite of diff happened but couldn't be checked in unfinished
  144. because if people are using stuff out of pending, how do you do a pending for
  145. pending? (Meta-pending?)</p>
  146. <p><u>Cleanup</u>:
  147. <b>cksum</b>, <b>od</b>, <b>file</b>, <b>getopt</b>, <b>gpiod</b>,
  148. <b>nbd-client</b>, better output messages for <b>host</b>,
  149. and make <b>base64</b> use line buffering.
  150. Moved -Wno-string-plus-int into portability.sh and had it only apply to
  151. clang. Moved num_cache() out of lib into netstat (its only user).</p>
  152. <p>In the test suite plumbing, $SKIPNEXT was replaced by <b>$SKIP</b> holding
  153. a count that counts down with each test (so you can easily skip a block of
  154. tests). Fixed <b>txpect</b> to actually listen to error code (oops) and to not
  155. complain about multiple X. The old dochroot() and mkchroot() shell functions were removed from
  156. scripts/runtest.sh because they required root access to use (which mkroot
  157. does not). More conversion to use <b>testcmd</b> in individual command.tests
  158. (both to remove workarounds for shell builtins, and to be more concise).
  159. Remove redundant cleanup from several tests (which run as proper child processes
  160. now, and the work directory is deleted and recreated between each, so
  161. individual tests need less cleanup).</p>
  162. <p><u>Portability</u>: More tests now pass on MacOS and FreeBSD
  163. (weird filesystems, root vs wheel group name, dealing with headers that
  164. define stdin as a macro and don't define PATH_MAX, the ancient bash in MacOS
  165. doesn't understand &amp;&gt;&gt;, won't let normal users use "chmod +s",
  166. symlinks don't have all permission bits set, no O_PATH and the Linux definition
  167. is used for something else, and so on), at least half of which Elliott did.
  168. Not sure we've quite got Mac and BSD
  169. doing "gmake test_singlecommand" right yet, but it's a lot closer.
  170. Added all the commands to <b>make bsd_defconfig</b> that compile on FreeBSD 13
  171. (which is no guarantee they WORK).
  172. ASAN=1 should work in more places now, including <b>make_test_command</b>.
  173. The build uses $CC insted of cc in more places, and doesn't apply $ASAN
  174. for $HOSTCC (the legacy kconfig/ directory stands no chance).</p>
  175. Fedora inexplicably sticks \x09 style hex escapes into the dmesg output and
  176. expects them to be parsed.
  177. Android is still running the test suite under mksh which doesn't
  178. understand bashisms like &lt;(command). LLVM insisted that "ptr - 1" could
  179. never be NULL (demonstrably untrue) and needed some (unsigned long) typecasts
  180. to force it to actually do the math.
  181. Khem Raj aliased timer_settime to timer_settime64 when the first isn't
  182. available. Antoni Villalonga debianized some install paths and added
  183. a bunch of --longopt synonyms for existing options that package builds
  184. use.</p>
  185. <p><u>Documentation</u>: The <a href=help.html>help page</a>
  186. generation logic (toybox help -av) now filter out invisible aliases and
  187. outputs "See command" for visible aliases, plus fixes for broken corner
  188. cases like <b>nohup --help</b>.
  189. The <a href=https://landley.net/toybox/git>local git repo</a>
  190. now has a simple index.html generated by a
  191. <a href=https://github.com/landley/toybox/blob/0.8.9/scripts/git-static-index.sh>small shell script</a>,
  192. linking to the <b>git format-patch</b> files for
  193. each commit, applicable via <b>git am</b>.</p>
  194. <p>There was a
  195. <a href=https://github.com/landley/toybox/pull/244>bug report</a> that specifying the cross compiler prefix twice
  196. includes the prefix twice (ala CROSS_COMPILE=prefix- CC=prefix-cc results in
  197. prefix-prefix-cc) which is what happens when you ask it to do that, yes. It's now
  198. <a href=faq.html#cross>better documented</a>. (See also
  199. <a href=https://lkml.iu.edu/hypermail/linux/kernel/2202.0/01505.html>this kernel patch</a>.)</p>
  200. <p>Yi-Yo Chiang's losetup fix spawned an email thread where the
  201. android developers <a href=http://lists.landley.net/pipermail/toybox-landley.net/2022-August/029139.html>explained</a> why Android doesn't (and can't)
  202. use devtmpfs. Rob forwarded a link to linux weekly news to see if he could get
  203. any attention from the kernel guys, but they didn't reply.</p>
  204. <a name="12-08-2022" /><a href="#12-08-2022"><hr><h2><b>August 12, 2022</b></h2></a>
  205. <blockquote><p>
  206. Huge as office blocks, silent as birds. They hung in the air exactly the same
  207. way that bricks don't.</p>
  208. <p>- The Hitchhiker's Guide to the Galaxy</p>
  209. </p></blockquote>
  210. <p><a href=downloads/toybox-0.8.8.tar.gz>Toybox 0.8.8</a>
  211. (<a href=https://github.com/landley/toybox/releases/tag/0.8.8>git commit</a>)
  212. is out, with prebuilt <a href=downloads/binaries/0.8.8>static binaries</a> and
  213. <a href=downloads/binaries/mkroot/0.8.8>mkroot images</a>
  214. bootable under QEMU (built using vanilla linux-5.19).</p>
  215. <p>No new or promoted commands this time. (Time based releases mean NOT
  216. holding the release to wait for things like that.)</p>
  217. <p>Thanks to Google for sponsoring the project's maintainer to focus on toybox
  218. for a while. (They want a hermetic build, I want Android to build under
  219. Android. Working on it...)</p>
  220. <p><u>Features</u>:
  221. The new <b>timeout -i</b> option kills a command for inactivity (output
  222. to stdout resets the timer).
  223. Basic support for <b>tar --xform</b> (but not yet the special tar-only s///x
  224. options).
  225. --long options now support unambigous abbrevations by default, so you can
  226. go "ls --col" and it'll figure out you mean --color.
  227. Added <b>blkid -o</b> understanding "full", "value", and "export" output
  228. formats. Added <b>nsenter -C</b> (cgroup namespace) and <b>-a</b> (enable all
  229. supported namespaces).
  230. Added <b>mount -R</b> and switched the bind mount default to be recursive
  231. (it still autodetects --bind and --loop mounts based on the source/target type,
  232. all --bind or --rbind do is switch the recursive flag on and off).</p>
  233. <p>Elliott implemented <b>tar --null</b>,
  234. and taught <b>file</b> to recognize some Linux kernel images, and
  235. binaries for Linux's <a href=https://github.com/torvalds/linux/commit/fa96b57c1490>newly merged</a>
  236. arch/loongarch (a <a href=https://linleygroup.com/newsletters/newsletter_detail.php?num=4623>mips64 variant</a>
  237. from <a href=https://phoronix.com/news/LoongArch-MIPS-Copy-Kernel>china</a>).</p>
  238. <p><u>Bugfixes</u>:
  239. Several cleanups to taskset, mostly due to reviewing it before making
  240. an explainer video, but the review found an inappropriate use of
  241. TOYFLAG_STAYROOT that got fixed.
  242. Argument parsing for <b>unshare</b> and <b>nsenter</b> should now match
  243. debian's (I.E. "unshare -npu" works the same as "unshare -n -p -u" not
  244. "unshare --net=pu").
  245. <b>kill 1</b> no longer says "unknown pid 1: not permitted" (it
  246. says "bad pid" like everywhere else).
  247. <b>test -x</b> and friends now test live access, not permission bits.
  248. (Root ignores a lot of permissions, chmod u-x blocks you from executing your
  249. own file even if g+x and o+x should let you access it, things like selinux can
  250. further break the unix permission model, etc).
  251. <p>In lib/ a fencepost error in <b>chomp()</b> could read one byte past the start of the string, and
  252. <b>xpclose_both()</b> no longer closes the parent's stdin and stdout
  253. when they're explicitly passed through to the child.
  254. In scripts/runtest.sh, moving tests into subshells broke failure reporting with VERBOSE=all.
  255. While "make install" was creating directories when $PREFIX pointed to a
  256. nonexistent directory, "make toybox" didn't even though it tried to place the
  257. output file there.</p>
  258. <p>James Farrell switched the test suite from detecting root via $UID to
  259. $(id -u). (It's not a security issue, this just controls which tests we attempt.
  260. It's another workaround for missing features in mksh.)
  261. Taolaw spotted that httpd could segfault when xabspath() returns NULL
  262. (for error conditions such as infinitely looping symlinks
  263. or "." not resolving when the current directory was deleted).</p>
  264. <p><u>Documentation</u>:
  265. We <a href=design.html>recorded</a> the
  266. move from C99 to the C11 standard, which was actually made a while ago:
  267. the typecast constants we've
  268. been using for a while are a 2011 feature not available in the 1999 edition
  269. of the C standard. (This came up when we had to move to C11's "_Noreturn" to work around a compiler bug in llvm.
  270. Yes __attribute__((__noreturn__)) should be identical, that's the bug part.)</p>
  271. <p>The website's nav bar got updated (among other things, linking to
  272. our <a href=https://www.youtube.com/channel/UC4VFy3wc1nzq5tUHhiti6fw>youtube
  273. channel</a>), and the FAQ entry on cross compiling got
  274. expanded.
  275. The toys/example commands moved from "make list" to "make list_example"
  276. (since they're not enabled in defconfig either).
  277. The cross compiling example command line in "make help" now sets
  278. LDFLAGS=--static instead of putting that in CFLAGS.</p>
  279. <p>The web archive is back, and since the missing messages were
  280. never delivered (the mailserver trying to deliver them timed out and bounced
  281. them back after a couple days) this means unlike previous failures the web
  282. archive isn't out of sync with reality: the hole was the list actually being
  283. down until Dreamhost tech support figured out what they broke this time.</p>
  284. <p><u>Pending</u>:
  285. More work on toysh: case/esac was confused by nested flow control blocks,
  286. support for [[ &lt; &gt; =~ ]] tests, implemented the rest of the $((math))
  287. operators and support for ((math)) tests and "for ((math;math;math))" loops,
  288. and so on. (The next toysh goal is to get the test suite running under mkroot, but
  289. other stuff keeps coming up.)
  290. James Farrell upgraded diff, adding three line format options and support
  291. for diffing FIFOs.
  292. Rob did several rounds of dd cleanup, then got distracted by diff cleanup
  293. which turned into a complete rewrite of diff.
  294. Neither was ready to promote in time for this release though (although the release
  295. got delayed almost a week before Rob admitted that).</p>
  296. <p><u>Library</u>:
  297. The <b>lib/args.c</b> command line parser now has two optional modifiers
  298. (" " and ";") for each argument type, providing 4 combinations (both unset,
  299. both set, one of each set), and all 4 now have defined semantics and
  300. tests/skeleton.test exercises them. (This was motivated by <b>unshare</b>
  301. needing a new combination to match the debian behavior.)
  302. <b>lib/args.c</b> also added "~" to collate bare longopts (so multiple bare
  303. longopts can be synonyms setting the same flag or argument variable).</p>
  304. <p>New function <b>xrunread()</b> which launches a child function, writes a
  305. string to its stdin, and returns everything the child wrote to stdout as another
  306. string (or NULL if it couldn't run or exited with an error), leaving
  307. stderr alone (so it goes to the same place the parent's goes).</p>
  308. <p>New functions <b>same_file()</b> and <b>same_def_ino()</b> to simplify
  309. file metadata comparisons. (If you're wondering why something so simple should
  310. have a function encapsulating the logic, this release also has at least 3
  311. different bugfix commits for thinkos from switching all the commands over
  312. to use them instead of doing the test ourselves. All missing/extra ! or
  313. && vs || level stuff.)</p>
  314. <p>The <b>exit_signal()</b> handler now blocks signals so <b>sigatexit()</b> won't
  315. re-enter the list when it receives two different killer signals. (Since
  316. <b>xexit()</b> capture uses siglongjmp() this should clean itself up
  317. when not actually exiting.)</p>
  318. <p><u>Plumbing</u>:
  319. Several warning suppressions due to things like llvm's fortify finding
  320. false positives, gcc's "int and long are identical on 32 bits!" warnings
  321. (yes... they are), the MacOS build being crotchety about vfork()... All verified
  322. non-issues at present.</p>
  323. <p>The build plumbing now puts more effort into resolving dependencies and figuring
  324. out when stuff needs to be rebuilt. This includes noticing when the
  325. toolchain we're building with changes flags, and outputting a warning
  326. when it detects the need to run "make oldconfig" again. (At the moment
  327. calling kconfig/ from scripts/ would be a layering violation: I need to
  328. rewrite kconfig from scratch before it can do that automatically.).</p>
  329. <p>Removed most compile time probes from <b>scripts/genconfig.sh</b>,
  330. replaced with things like #ifdef (_NR_syscall) and
  331. #if __has_include(&lt;utmpx.h&gt;), or acknowledging when a probe is a bug
  332. workaround for a specific libc version and testing for that instead,
  333. plus simply deleting some config options due to the 7 year horizon expiring
  334. so we can trust it to be there now.</p>
  335. <p>Usual batch of musl workarounds for behavior that
  336. <a href=https://github.com/landley/toybox/commit/9a5d7a063c8c>doesn't match</a>
  337. glibc and bionic or where they've been
  338. <a href=https://www.openwall.com/lists/musl/2022/07/27/5>arguing about</a>
  339. stuff for years without actually fixing it.
  340. Ed Maste of FreeBSD added some FreeBSD checks/cases to
  341. lib/portability.[hc], mostly in places we already supported Apple or
  342. OpenBSD.
  343. The top level "configure" is now re-entrant (shouldn't append stuff
  344. to enviornment varibles like $CFLAGS twice when read twice).
  345. The MacOS defconfig now includes a lot more commands.</p>
  346. <p><u>Test suite</u>:
  347. The diff for failing tests is now output after the FAIL line instead
  348. of before, "make tests" now runs tar.test by default,
  349. a new skeleton.test uses toys/example/skeleton.c to exercise the
  350. lib/args.c command line parsing plumbing,
  351. scripts/runtest.sh now uses do_pass and do_fail consistently,
  352. and Rob keeps accidentally checking in bashisms and Elliott keeps submitting
  353. patches to remove them because android runs the tests under mksh and
  354. toysh isn't ready yet.</p>
  355. <p>Work in progress to make TEST_HOST=1 pass on newer debian, which is a moving
  356. target. (The tests didn't change, but the behavior of the gnu utilities
  357. is not consistent. Or standardized. Or coherent. Or predictable. Or sane.)
  358. Some minor changes to commands like <b>xxd</b> and <b>cmp</b> to
  359. make their output look more like what debian's currently producing.</p>
  360. <p>Making the tests pass on MacOS is harder: that calls group 0 "wheel"
  361. instead of "root" (so things like "tar.test" don't get the same result),
  362. stuff like "du" or "ls" often cares what filesystem you're mounted on
  363. (and MacOS hasn't even got the same ones _available_),
  364. and we even found a mac kernel bug where extending a sparse
  365. file sparsely allocates the previous length as actual zeroed disk space
  366. (ala "truncate -s 3m file; truncate -s 5m file; du file" says it's using
  367. 3 megabytes of disk space). There's probably more but
  368. that's where we stopped looking for now: since Rob doesn't have a mac
  369. to test on and the github tests don't reliably run when new commits are
  370. pushed (skipped when the servers are busy), fixing this hasn't
  371. been a priority. Lots of little red X in the github history because of this,
  372. though...</p>
  373. <p><u>Mkroot</u>:
  374. The output file names are now consistent across architectures: each
  375. root/$TARGET directory now contains an <b>fs</b> subdirectory with the
  376. expanded root filesystem, packaged into <b>initramfs.cpio.gz</b>,
  377. a <b>linux-kernel</b> built from <b>linux-fullconfig</b> which is built
  378. from <b>linux-miniconfig</b>, and a <b>run-qemu.sh</b> script to launch
  379. it under qemu. No more architecture name in the filenames (that's what
  380. the directory name is for), and no more "bzImage" or "vmlinux" depending
  381. on what filename the kernel build produced.</p>
  382. <p>The fs/init script has better chroot support (not warning about /dev/shm and
  383. /dev/pts already existing).
  384. The airlock build no longer includes ftpd (you can use
  385. httpd and wget, scp out of dropbear, mount a network filesystem from the
  386. host, or if you really want to still use ftp can match ftpget and ftpput).
  387. When mkroot is downloading extra packages (for example in the dropbear build),
  388. it falls back to the host wget if it can't fetch with toybox's version.
  389. (This is because toybox hasn't got built-in https support yet, it's on the
  390. todo list.)
  391. Updated the dropbear build to the current version and fixed a compiler
  392. path issue.
  393. Fixed version skew in the <a href=http://lkml.iu.edu/hypermail/linux/kernel/2110.3/00278.html>workaround</a>
  394. so the Linux kernel build doesn't require a third ELF package (but only
  395. for x86, not for any other architecture).</p>
  396. <a name="23-07-2022" /><a href="#23-07-2022"><hr><h2><b>July 23, 2022</b></h2></a>
  397. <p>Sorry the mailing list has been down since the 19th, Dreamhost
  398. <a href=https://landley.net/notes-2022.html#22-07-2022>happened
  399. again</a>. (First the web archive was empty, then it was down, then it was
  400. restored from a backup taken before the "upgrade" but was not updating with
  401. new messages, which they denied was an actual problem but now timeout bounce
  402. messages from all the attempts to send to it since it broke have started
  403. coming back saying a path doesn't exist on their server...)</p>
  404. <p>Dreamhost tech support has been informed of the issue a half-dozen times,
  405. and did at least replace the "Currently there are no messages" page with a
  406. backup from before they broke it on the first day. Unfortunately they have yet
  407. to acknowledge anything else is wrong with it since then, and don't seem to
  408. have support staff working over the weekend. This used to be an
  409. <a href=https://landley.net/dreamhost.txt>annual</a>
  410. <a href=https://landley.net/dreamhost2.txt>event</a> for them,
  411. but they hadn't done a truly major breakage in
  412. <a href=#12-21-2015>a while</a>. I _think_ the 11 month gap that last link
  413. mentions is still missing, but the server's down again (or at least timing
  414. out) so I can't check.</p>
  415. </span>
  416. <a name="06-05-2022" /><a href="#06-05-2022"><hr><h2><b>May 6, 2022</b></h2></a>
  417. <blockquote><p>
  418. The mighty ships tore across the empty wastes of space and
  419. finally dived screaming on to the first planet they came across - which
  420. happened to be the Earth - where due to a terrible miscalculation of scale
  421. the entire battle fleet was accidentally swallowed by a small dog.</p>
  422. <p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  423. <p><a href=downloads/toybox-0.8.7.tar.gz>Toybox 0.8.7</a>
  424. (<a href=https://github.com/landley/toybox/releases/tag/0.8.7>git commit</a>)
  425. is out, with prebuilt <a href=downloads/binaries/0.8.7>static binaries</a> and
  426. <a href=downloads/binaries/mkroot/0.8.7>mkroot images</a>
  427. bootable under QEMU (using vanilla linux-5.17).</p>
  428. <p>Rob also <a href=downloads/binaries/toolchains/latest>uploaded</a>
  429. the prebuilt binary cross and native compilers used to build those
  430. mkroot images (there's a <a href=downloads/binaries/toolchains/latest/README>README</a>
  431. in there), and started producing
  432. <a href=https://www.youtube.com/channel/UC4VFy3wc1nzq5tUHhiti6fw>tutorial videos</a> explaining the
  433. toybox commands, their implementation, toybox's infrastructure...</p>
  434. <p>The commands <b>host</b>, <b>wget</b>, <b>openvt</b>, and
  435. <b>deallocvt</b> were cleaned up and promoted.
  436. Elliott contributed the new commands <b>uclampset</b>, <b>gpiodetect</b>,
  437. <b>gpioinfo</b>, <b>gpioiget</b>, <b>gpiofind</b>, and <b>gpioset</b>,
  438. and Rob wrote a simple <b>httpd</b> (largely to give wget.test something to
  439. talk to).</p>
  440. <p>One command was removed: <b>catv</b> didn't really serve a purpose
  441. (everybody just uses <b>cat -v</b>).</p>
  442. <p><u>Features</u>:
  443. <b>top</b> can now move the list with the LEFT/RIGHT cursor keys (changing the
  444. sort field is now SHIFT LEFT/RIGHT). Added <b>find -samefile</b>,
  445. <b>cmp -n</b> (and wired up skip1 skip2),
  446. <b>tar --strip components</b> (and tar --owner and --group can now specify :UID and :GID making tar.test more portable),
  447. <b>lsusb</b> and </b>lspci</b> now read /etc/{usb,pci}.ids[.gz] (when
  448. available) to provide human readable device descriptions,
  449. <b>ifconfig</b> can now rename interfaces.
  450. Moritz Weber added <b>wget</b> post support for form data.
  451. In toysh, <b>cd</b> got updated ("cd -" jumps to $OLDPWD,
  452. and cd can now handle deleted directories).</p>
  453. <p><u>Bugfixes</u>:
  454. <b>cp --preserve xattr,context</b> work together now, and
  455. Dario Freni fixed <b>cp --xattr</b> to avoid copying selinux context.
  456. The <b>sort -u</b> option now implies -s, <b>wget -O -</b> now writes to stdout,
  457. <b>pwget -B</b> removes more characters other implementations don't emit,
  458. </b>time</b>'s realtime output was not properly zero padding the fractional
  459. part, and <b>sed</b> now works with multiple w to the same file.
  460. Fixed <b>nl -E</b>, <b>realpath -e</b>, <b>find</b> -newerXY and @time.nanosecond parsing,
  461. Various <b>sh</b> (it handles ${X: -1:1} properly now,
  462. which is not the same as ${X:-1:1} because :- has special meaning).
  463. The <b>hello</b> command in the examples directory now wait for a keypress before
  464. exiting when run as PID 1 (because calling wait() returned "No child process"
  465. immediately.)
  466. The multiplexer's <b>toybox command --help</b> once again shows the command's
  467. help (not toybox --help).
  468. Elliott fixed a strip bug in the MacOS build, taught <b>file</b> not to be confused
  469. by ELF BSS sections but to otherwise detect more invalid ELF files,
  470. and fixed an <b>xargs</b> bug where stdin was inappropriately O_CLOEXEC.
  471. Github user hg42 reported a bug where <b>tar</b> was looping trying to remove ".."
  472. at the start of names.</p>
  473. <p><u>Library</u>:
  474. Taught flags.h to #define its own CLEANUP macros so switching FLAG()
  475. contexts requires fewer steps.
  476. When args.c is just enforcing max/min argument count but collecting no
  477. options, imply "?" so "command -123" isn't an unknown option.
  478. Moved lib/help.c into main.c (nothing else in lib/ had to rebuild
  479. when the config changes which commands are enabled).
  480. The remains of linestack.c were renamed utf8.c, and
  481. toys.h now includes sys/syscall.h so commands don't have to.</p>
  482. <p>Yank things with only one remaining user: moved get_line()
  483. to patch.c, struct str_len to bc.c, and struct ptr_len to ps.c
  484. Removed tty_esc() and tty_jump() wrappers.
  485. Various cleanups to lib/password.c and lib/tty.c.
  486. Removed the PEDANTIC_ARGS config option which just set a macro that was never
  487. used, xsignal_all_killers() now takes SIG_DFL as the reset value instead
  488. of explicitly checking for NULL,
  489. chomp() now removes any number of trailing \r\n, and it's now safe to
  490. llist_pop(0) just like dlist_pop(0).
  491. LongPing Wei improved support for copy_file_range().</p>
  492. <p><u>Build</u>:
  493. If you don't set $PREFIX, <b>make install</b> now defaults to $PWD/install
  494. (which does not require root access to write to, and you can tar up your
  495. pile of symlinks from there).
  496. More command sub-options removed (NETCAT_LISTEN and CAT_V).</p>
  497. <p>Some of the uglier scripts/make.sh plumbing moved into scripts/portability.sh
  498. (which should now be safe to source twice),
  499. and moved almost all config varible definitions to "configure" now. The
  500. new $GENDIR variable theoretically lets the "generated" directory live
  501. somewhere else (not very tested yet).
  502. Various tweaks to scripts/make.sh to try to avoid unnecessary rebuilds
  503. and library probes when toolchain and config haven't changed.
  504. Added -Wno-pointer-sign to $CFLAGS because passing an unsigned char * to a
  505. function that expects char * is not a problem.
  506. <p>The airlock install in scripts/install.sh had the $PENDING items sorted
  507. into "started" and "not started". Add git and bash to $PENDING (used
  508. out of $PATH by --version and the powerpc64le build, respectively).</p>
  509. <p><u>Cleanup</u>:
  510. Removed the lib/linestack.c plumbing (which was never finished and hadn't
  511. been touched in years).
  512. Merged lspci.c into lsusb.c (so they can share config file reading
  513. infrastructure), and merged chvt/deallocvt into openvt.c.
  514. Minor cleanups to ping, fsync, ionice, pmap, truncate, timeout, tty,
  515. factor, mount.
  516. Went through and replaced \033 with \e in strings (since clang supports
  517. it and \033 is just awkward). Added LL to constant 0 in the FLAG macros
  518. to prevent gcc from warning that 0<<32 might produce 0.
  519. Moved llvm's -Wno-string-plus-int into configure instead of probing
  520. for it, since gcc no longer dies when asked to suppress an unknown warning.</p>
  521. <p><u>mkroot</u>:
  522. the ANSI escape to undo QEMU's wordwrap bug is now in both the init script
  523. and launch wrapper script (so wordwrap isn't broken while running the
  524. emulated system, nor if the emulated system fails to run).
  525. If devtmpfs was already mounted on /dev, we still need to create dev/pts.
  526. The init script now includes the linux kernel bug workaround to enable ping
  527. support. The armv7 target enabled CONFIG_ARM_LPAE in the kernel to work around
  528. around <a href=https://bugs.launchpad.net/qemu/+bug/1790975>a QEMU bug</a>
  529. that's gone unfixed for 4 years. Enable network support in m68k target.
  530. The mcm-buildall.sh script got some minor updates, and the resulting
  531. cross and native compiler binaries are now downloadable so you don't have
  532. to run the build if you don't want to.</p>
  533. <p><u>Docs</u>:
  534. "toybox --help" no longer says "see toybox --help".
  535. There's an ANSI escape cheat sheet at the start of lib/tty.c.
  536. Reworded some command directory READMEs, and tweaked menuconfig display.
  537. Converted www/doc/mount.html and www/doc/ext2.html from text to html.
  538. Freshened up design.html a little (and fixed some typos pointed out by
  539. Peter Ennis).
  540. Replaced the git internals video URL in roadmap.html with a different
  541. performance of the same talk that hasn't been made private.
  542. Added the kconfig-language.txt from Linux-2.6.12 to the kconfig/ directory.</p>
  543. <a name="30-11-2021" /><a href="#30-11-2021"><hr><h2><b>November 30, 2021</b></h2></a>
  544. <blockquote><p>
  545. Busy? We'll I've just got this bulldozer to lie in front of or otherwise it'll
  546. knock my house down but otherwise no, not especially, why?</p>
  547. <p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  548. <p><a href=downloads/toybox-0.8.6.tar.gz>Toybox 0.8.6</a>
  549. (<a href=https://github.com/landley/toybox/releases/tag/0.8.6>git commit</a>)
  550. is out, with prebuilt <a href=downloads/binaries/0.8.6>static binaries</a> and
  551. <a href=downloads/binaries/mkroot/0.8.6>mkroot images</a>
  552. bootable under QEMU (using vanilla linux-5.15).</p>
  553. <p><u>Make root</u>: The <a href=faq.html#mkroot>system builder</a> got upgraded, with better
  554. logging and layout of the output directory, plus <a href=https://github.com/landley/toybox/blob/0.8.6/scripts/mkroot.sh>scripts/mkroot.sh</a>
  555. should be easier to read and understand now.
  556. (Also added basic support for the <a href=http://lists.landley.net/pipermail/toybox-landley.net/2021-August/012497.html>qualcomm hexagon</a>,
  557. although it just builds a chroot filesystem, you can't boot a hexagon kernel under qemu
  558. <a href=https://lists.nongnu.org/archive/html/qemu-devel/2021-07/msg06430.html>quite yet</a>.)</p>
  559. </p>
  560. <p><u>New commands</u>: Rob added <b>linux32</b>.
  561. Dan Brown added <b>sha256sum</b> (and the related 224/384/512 variants).
  562. In pending, Elliott contributed <b>strace</b> and
  563. Moritz Röhrich contributed <b>hexdump</b>.</p>
  564. <p><u>Features</u>:
  565. Elliott added <b>date -s</b>, <b>pmap -p</b>, <b>tail -F -s</b>, <b>kill -0</b>,
  566. <b>reboot/halt/poweroff -d</b>, taught <b>file</b> to
  567. recognize Mach-o universal binaries, made Android's <b>log</b>
  568. take input from stdin when it has no arguments, added <b>tail --bytes --lines</b>
  569. (the --long synonyms for -c and -n),
  570. added <b>i2cdetect -q</b>, taught <b>i2cdump</b> to write XX for
  571. read failures, made <b>timeout</b> use the monotonic clock,
  572. and modernized the output of <b>uptime</b>.</p>
  573. <p>Rob added <b>find -quit -lname -ilname</b> and <b>-d</b> as a synonym for -depth,
  574. taught <b>cut -d $'\n'</b>
  575. to cut by line and added posix <b>cut -nb</b> (which wraps to the start of -c
  576. utf8 characters), added <b>cpio --ignore-devno --renumber-inodes</b>,
  577. taught <b>cal</b> to use 3 arguments (day month year), added <b>tar --selinux</b>
  578. support and a "had errors" message at the end, made <b>uname -o</b>
  579. say "Toybox", and fixed the <b>grep -Fw</b> combination (used by the 64 bit
  580. powerpc kernel build).</p>
  581. <p>Ella-0 added <b>split -n</b>. Peter Collingbourne added <b>grep -L</b>.</p>
  582. <p><u>Outside world</u>: The 0BSD license is <a href=https://lwn.net/Articles/868882/>now part</a> of the
  583. <a href=https://standards.iso.org/ittf/PubliclyAvailableStandards/>ISO-5962</a>
  584. standard. Of the currently <a href=https://github.com/search?q=license%3A0bsd&type=Repositories&ref=advsearch>38k 0BSD licensed projects on github</a> toybox
  585. isn't even the most popular, it's fourth.</p>
  586. <p>Elliott asked that toybox's <b>cut -DF</b> feature (a cheaper
  587. alternative to <b>awk '{print $3}'</b> be supported by other packages so
  588. it might someday make it into posix, so Rob
  589. <a href=http://lists.busybox.net/pipermail/busybox/2021-June/088886.html>submitted it to busybox</a>
  590. where it was <a href=https://git.busybox.net/busybox/commit/?id=0068ce2fa0e3>eventually merged</a>.</p>
  591. <p>Added a local <a href=https://landley.net/toybox/git>git mirror</a> for
  592. those reluctant to trust Microsoft Github.</p>
  593. <p>In the web nav bar, our <a href=https://isfreenodedeadyet.com/>freenode</a>
  594. channel moved to libera.chat
  595. (like <a href=https://boingboing.net/2021/05/19/freenode-irc-staff-quit-after-new-owner-seizes-control.html>everyone else's</a>;
  596. <a href=https://lwn.net/Articles/856543/>there</a>
  597. <a href=https://hackaday.com/2021/05/20/freenode-debacle-prompts-staff-exodus-new-network/>was</a>
  598. <a href=https://twitter.com/marcan42/status/1396280769778098185>a</a>
  599. <a href=https://twitter.com/mjg59/status/1396237336988446722>certain</a>
  600. <a href=https://www.devever.net/~hl/freenode_abuse>amount</a>
  601. <a href=https://twitter.com/TwitchiH/status/1395756163527028739>of</a>
  602. <a href=https://twitter.com/joepie91/status/1395364883303182339>drama</a>
  603. <a href=https://twitter.com/RichFelker/status/1404816846734385164>involved</a>).</p>
  604. <p><u>Pending</u>: lots more work on <b>toysh</b>: it has basic $((math)) support
  605. now, += assignment, the "declare" command and corresponding variable
  606. types (declare -i, declare -u, etc), several bugfixes, greatly
  607. improved support for background processes on NOMMU systems, and a bunch
  608. more sh.test entries.</p>
  609. <p>Elliott fixed <b>modprobe</b>'s parsing of short lines. Rob fixed a
  610. division by zero error when <b>vi</b> tries to edit a zero length file.
  611. Anqi Dong made sure that syslogd messages sent to sockets end with a
  612. newline. Eric Molitor significantly upgrade <b>wget</b> with http 1.1,
  613. chunked encoding, and (external library) https (TLS 1.2) support,
  614. plus several bugfixes. Michael Hope fixed <b>tftpd</b>'s option parsing.</p>
  615. <p><u>Documentation</u>: The roadmap.html and status.html pages
  616. got noticeable updates. (status.html is now directly generated by
  617. scripts/mkstatus.py, the old status.html wrapper that server-side-included
  618. status.gen has been removed).
  619. The <a href=design.html>design</a>
  620. page provides better links to the LP64 documentation, and the
  621. <a href=code.html>code</a> page explains a corner case where the filename
  622. and first command name expect to match (and how to work around it if they don't).
  623. Some website files weren't in the repository: two jpegs linked from html
  624. files, and the www/.htaccess file that triggers the server side includes
  625. in the navigation menu is now checked in. Johannes Schmitz fixed a
  626. typo in about.html.</p>
  627. <p>The <b>shred</b> usage line now includes all options.
  628. The <b>logwrapper</b> command now warns when it isn't built standalone.
  629. The <b>help</b> command no longer shows a header line about toybox unless
  630. it's called with no arguments. (It still shows it for command --help.)
  631. The --help option no longer needs to be the first option, and is
  632. checked before the "Not root" error message for restricted commands.</p>
  633. <p><u>Bugfixes</u>:
  634. Elliott made <b>ps</b> exit with status 1 if no processes were shown (for LTP),
  635. fixed an off-by-one in <b>dmesg</b> and a bounds check in <b>netstat</b>,
  636. fixed <b>pidof -s</b>, and taught <b>rmmod</b> to handle multiple arguments.
  637. Denys Vlasenko pointed out that <b>free -t</b> is "total" not "terabytes".
  638. Samanta Navarro pointed out a leftover 32 bit limitation in argument groups.
  639. Mikhail Kashkarov fixed mkdir's error handling for existing directories
  640. without -p.
  641. Rob fixed the 32 bit <b>readelf</b> build on Android, fixed a race condition
  642. in <b>tar</b> leading
  643. to the occasional spurious archiver warning,
  644. <a href=https://github.com/landley/toybox/commit/127cff38809e>changed cp</a>
  645. to work around a posix violation in the kernel, made xparsedate() handle more
  646. whitespace and ignore trailing + or - (a NOP timezone), made <b>su</b> log the
  647. right username, switched getuid() checks to geteuid() in <b>df</b> and <b>ping</b>,
  648. fixed a place in the test suite where do_test()
  649. could get confused by symlinks in the $PATH (calling realpath too early
  650. and losing the name of the command being run),
  651. made <b>env -i</b> use the old $PATH to run its command,
  652. and made <b>grep --color</b> highlight all matches.</p>
  653. <p>Worked around a bug in glibc+gcc 9.3 where linking against librt.a
  654. (for things like timer_create()) pulls in libgcc_eh.a which uses
  655. threads, meaning you can't statically link against librt.a from
  656. a non-threaded app. (I hadn't noticed because it works fine with the musl
  657. and llvm/bionic toolchains, only fails statically linking on e.g. debian.)
  658. The <a href=https://github.com/torvalds/linux/commit/d18760560593>kernel fix</a> for the cpio encrypted filesystem issue worked around in 0.8.5 made
  659. it in. Similarly, the
  660. FS_IOC_{GET,SET}{VERSION,FLAGS} ioctl family are <a href=https://www.spinics.net/lists/linux-api/msg49101.html>historically broken</a>
  661. (taking an unsigned int argument while advertising signed long),
  662. which <a href=https://github.com/landley/toybox/commit/dcfac5c983ad>we fixed</a> and reported upstream to a long
  663. round of bikeshedding (sadly
  664. the result seems to have been the man page maintainer
  665. <a href=https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/commit/man2?id=3de87d46840d>giving up</a>
  666. on documenting ioctls at all.</p>
  667. <p><u>Cleanups</u>:
  668. <b>cut</b> switched to FLAG() macros and no longer allows -f with -F,
  669. <b>eject</b> uses FLAG() macros and the linux/eject.h header,
  670. prettycool@protonmail added tabs to <b>time</b>'s output, and Rob removed
  671. the floating point dependency from time. Minor cleanups
  672. to lsattr, lspci, nsenter, xxd, file, insmod, modprobe, arp, bootchartd, pmap,
  673. comm, lsof, blkid, crond, init, userdel, makedevs, and scripts/make.sh.
  674. The "int fd = fd;"
  675. initialization hack to shut up gcc's "may be used uninitalized, but isn't" false
  676. positive warning has been replaced by a QUIET macro that resolves
  677. to nothing on llvm (which doesn't have the gcc bug).
  678. Ryan Pritchard reported a bug where <b>alias ls="ls --color"</b> would prevent
  679. --help or --version from being the first argument to the command, which was
  680. a pain to fix without breaking things like <b>echo -- --version</b> and
  681. <b>basename -s --help file--help</b>.
  682. (Both toy_singleinit() in main.c _and_ get_optflags() in lib/args.c now
  683. check for those.)</p>
  684. <p><u>Infrastructure</u>:
  685. xabspath() now has a more granular (flag based) control interface.</p>
  686. <p><b>scripts/make.sh</b> now uses wait -n (available since bash 4.3 in February 2014)
  687. to keep the processors busier during a parallel build.
  688. Tests are now running in a subshell, which means functions and local
  689. variables defined in one don't pollute others during "make tests".
  690. <p>Guo Chuang reported that lsattr won't build on an 8 year old version of
  691. <a href=https://github.com/landley/toybox/pull/292#issuecomment-899895909>centos</a>,
  692. which is still supported for 2 more years because Red Hat can
  693. be paid to have a 10 year support horizon, longer than toybox's 7. Rob
  694. fixed it (and merged a similarly ancient compilation failure fix when
  695. building pending/ip.c against a 3.10 kernel),
  696. but the <a href=http://lists.landley.net/pipermail/toybox-landley.net/2021-August/012537.html>philosophal argument</a>
  697. remains <a href=http://lists.landley.net/pipermail/toybox-landley.net/2021-September/012603.html>unresolved</a>.</p>
  698. <p>Standalone builds can now override the .config file location with
  699. KCONFIG_CONFIG same as the multiplexer build. scripts/single.sh can
  700. now cope with a missing .config file (it uses the defconfig values
  701. for the CONFIG_TOYBOX_* global symbols).
  702. "make install_airlock" no longer needs host versions of sha256sum and sha512sum.</p>
  703. <p>In the test suite, <b>VERBOSE=spam</b> now shows expands successful tests
  704. like it would for errors.</p>
  705. <p><b>scripts/record-commands</b> got updated and logwrapper got renamed <b>logpath</b>.</p>
  706. <a name="19-05-2021" /><a href="#19-05-2021"><hr><h2><b>May 19, 2021</b></h2></a>
  707. <blockquote><p>It was of course a descendant of these eccentric poets
  708. who invented the spurious tales of impending doom which enabled the people of
  709. Golgafrincham to rid themselves of the useless third of their population.
  710. The other two-thirds stayed firmly at home and lived full, rich and happy lives
  711. until they were all suddenly wiped out by a virulent disease contracted from
  712. a dirty telephone.</p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  713. <p><a href=downloads/toybox-0.8.5.tar.gz>Toybox 0.8.5</a>
  714. (<a href=https://github.com/landley/toybox/releases/tag/0.8.5>git commit</a>)
  715. is out, with prebuilt <a href=downloads/binaries/0.8.5>static binaries</a> and
  716. <a href=downloads/binaries/mkroot/0.8.5>mkroot images</a>
  717. bootable under QEMU (using vanilla linux-5.12, except that s390 needed another
  718. <a href=http://lkml.iu.edu/hypermail/linux/kernel/2105.2/02904.html>perl
  719. removal patch</a>).</p>
  720. <p>This development cycle had thirty commits to sh.c fixing bugs and adding
  721. features to <b>toysh</b>. Shell functions and local variables are now implemented,
  722. along with the "set" builtin and trace support, and job control is
  723. about halfway in. The shell as a whole is <a href=https://en.wikipedia.org/wiki/Ninety%E2%80%93ninety_rule>maybe 80% done</a>, but still
  724. has some obvious gaps like $((math)) and interactive command line
  725. history/editing, plus a bunch of testing.</p>
  726. <p><u>New commands</u>:
  727. Moritz Röhrich added <b>pwgen</b> and <b>base32</b>, and
  728. Elliott Hughes added <b>unicode</b>. The
  729. <b>readelf</b> command got promoted out of pending, and
  730. <b>sha3sum</b> is now switched on in defconfig.</p>
  731. <p>Michael Christensen added <b>chsh</b> to pending, which hasn't been promoted
  732. yet because it's part of a group of commands (useradd, userdel, groupadd,
  733. groupdel) that should all be promoted together at some point
  734. (and depend on lib/passwd.c, which could use some more work).</p>
  735. <p><u>Upgrades</u>:
  736. <b>cpio</b> now supports extracting multiple concatenated archives.
  737. <b>file</b> now recognizes android's new XML binary format.
  738. <b>devmem</b> now works on nommu, can handle 0x prefxes on the address,
  739. and prints
  740. hex or decimal output to match the address type.
  741. <b>df</b> -a now shows overmounted filesystems.
  742. <b>test</b> -k checks the sticky bit.
  743. Added -t to <b>install</b>, <b>cp</b>, and <b>mv</b>, and -u to <b>cp</b>
  744. and <b>cpio</b>.
  745. <b>find</b> -executable checks that _we_ can execute them (u+x could be owned
  746. by a different user or have selinux weirdness).</p>
  747. <p>Elliott added several features to <b>date</b> (--iso, %:z output format, and
  748. --utc as a synonym for -u), added a <b>sed</b> s///x option,
  749. added units to <b>ulimit</b> output, and
  750. made several UI changes to <b>hexedit</b> including a color
  751. mode (which is now the default, press x to toggle between old and new
  752. display), masked out the file type in <b>chmod</b> error messages and
  753. taught it to handle complex modes (like u+s+s),
  754. hardened <b>file</b> and <b>readelf</b> against invalid input,
  755. added a portability.h workaround for macos statvfs for <b>df</b>,
  756. enabled line buffering in <b>echo</b> and <b>yes</b>,
  757. and significatly sped up <b>tr</b>. Rob similarly optimized <b>seq</b>
  758. and <b>count</b>.</p>
  759. <p><b>make tests</b> now defaults to VERBOSE=fail (and now has VERBOSE=all to
  760. continue after failure, and VERBOSE=quiet to show FAIL: lines without
  761. diff -u output).
  762. Cleanups to tee, netstat, file, and df. Added "static" annotations in a
  763. lot of commands, made more things use FLAG() macros. Ethan Sommer pointed out
  764. an unnecessary wrapper function in chgrp.
  765. In pending, Elliott did some cleanups and bugfixes to gettty, telnet, telnetd,
  766. tftpd, init, modprobe, and dd, and added more features to vi.
  767. Rob did some cleanup on modprobe.</p>
  768. <p><u>Bugfixes</u>:
  769. Yi-Yo Chiang fixed a <b>rm</b> bug where -f could get confused by read
  770. only filesystems and produce an error trying to unlink a nonexistent
  771. file, pointed out <b>install</b> -D was broken when the target file
  772. already exists, pointed out a <b>cpio</b> interaction with certain encrypted
  773. filesystems where readlink() wouldn't write as much payload as the header
  774. promised (corrupting the archive) and fixed another cpio bug where -t test
  775. mode would chown() files, and fixed quoting in mount.test.
  776. Elliott fixed a sequencing issue in <b>setsid</b>'s system calls,
  777. fixed some <b>sed</b> tests (sed's lie-to-autoconf --version
  778. output was preventing toyonly tests from triggering) and
  779. fixed <b>tar</b>'s base 256 output for very large files.
  780. Nir Lichtman pointed out that <b>rm</b> -p shouldn't try to rmdir / at the end,
  781. Luke Frankart pointed out a typo that broke <b>test</b> checking file modes,
  782. Firas Khalil Khana fixed a duplicate entry in the roadmap,
  783. Ethan Sommer fixed <b>install</b> -Dt,
  784. Andy Hu requested that <b>mount</b> handle mixed options like
  785. -tnomsdos,smbfs.
  786. Denys Nykula reported a <b>chmod</b> regression,
  787. asm89 pointed out a <b>netcat</b> bug writing transactions larger than
  788. 4k,
  789. Daniel Santana fixed <b>df</b> combining -P and -k,
  790. Robin Hsu fixed <b>grep</b> getting confused by libc setting errno when
  791. a library function call succeeded.
  792. Puck Meerburg taught the <b>gunzip</b> code not to be confused by FEXTRA entries
  793. (as described in RFC 1952) and added a test suite entry for that.</p>
  794. <p><b>find</b> handles empty arguments properly now (with test), <b>date</b>
  795. -I with no arguments no longer segfaults, <b>grep</b> -f /dev/null no
  796. longer adds a "" regex matching everything, -z no longer splits patterns
  797. on \n, and -o can print zero length matches,
  798. <b>cp</b> -t works with one argument and with --parents.
  799. <b>readelf</b> displays properly in 80 columns and doesn't reject .bss
  800. off end of file, and <b>sed</b> s///2 now works when there isn't more than one
  801. match.
  802. <b>tar</b> now removes empty directories where it wants to put a non-directory.
  803. <b>microcom</b> sets serial device terminal attributes correctly.</p>
  804. <p>The prebuilt x86-64 binaries shouldn't segfault on older x86-64 processors
  805. anymore (workaround for gcc bug).
  806. Cross compiling was sometimes confusing install.sh because it created
  807. a hyphenated "toybox-$TARGET" and then tried to make symlinks to just "toybox".</p>
  808. <p><u>Build</u>:
  809. CONFIG_TOYBOX_I18N went away: toybox builds always support utf8 now.
  810. Ella-0 added OpenBSD support (but not a separate defconfig, try
  811. "make freebsd_defconfig").</p>
  812. <p><u>Library</u>:
  813. utf8towc() is now unsigned instead of wchar_t, matching wctoutf8().
  814. xclose() tests if fd is -1 so the caller doesn't have to.
  815. txpect (the test suite's built-in "expect", implemented in shell) can
  816. now do regex matches, and sh.test uses this.</p>
  817. <p>Elliott added the failing regex to the xregcomp() error message, and
  818. made multiple portability tweaks (header tweaks to build in more
  819. environments, running tests on Raspberry Pi OS and under mksh,
  820. fix utf8 locale selection on macos).</p>
  821. <p><u>Docs</u>:
  822. <b>chmod</b>'s help text explains why o+s doesn't set +t (and has a
  823. test for it). The <b>echo</b> help text is more compact.
  824. Checked in a better conversion of <a href=https://landley.net/toybox/toycans.png>toycans.png</a>.</p>
  825. <a name="24-10-2020" /><a href="#24-10-2020"><hr><h2><b>October 24, 2020</b></h2></a>
  826. <blockquote><p>
  827. "We are now cruising at a level of two to the power of twenty-five thousand to
  828. one against and falling, and we will be restoring normality just as soon as we
  829. are sure what is normal anyway."</p>
  830. <p>- The Hitchhiker's Guide to the Galaxy</p>
  831. </blockquote>
  832. <p>After a longer and slightly more
  833. <a href=https://github.com/landley/toybox/commit/07a896862ddf>turbulent</a>
  834. development cycle than some,
  835. <a href=downloads/toybox-0.8.4.tar.gz>Toybox 0.8.4</a>
  836. (<a href=https://github.com/landley/toybox/releases/tag/0.8.4>git commit</a>)
  837. is out with new commands <b>sha3sum</b> and <b><a href=https://github.com/landley/toybox/commit/6b4c32ae3986>watchdog</a></b>.</p>
  838. <p>There are <a href=downloads/binaries/mkroot/0.8.4>prebuilt mkroot binaries</a>
  839. now, tiny toybox linux systems for a dozen architectures, all bootable under
  840. qemu. (The vmlinux in each tarball is a vanilla linux-5.9 kernel built
  841. from the included config file.)</p>
  842. <p>The FAQ got <a href=faq.html>noticeably larger</a>, and the README has
  843. more links. New command features include the <b>sed -s</b> flag,
  844. <b>cpio --no-preserve-owner</b> now affects archive creation,
  845. Elliott added <b>tar -I</b> and multi-type
  846. <b>find -type a,b,c</b> support, Mark Salyzyn added <b>xargs -P</b> to
  847. run parallel jobs, the <b>ps</b> and <b>top</b> commands
  848. now autodetect pid length, and <b>top</b> adjusts units for memory display based on
  849. system size.</p>
  850. <p><u>Toysh and toyroot</u>:
  851. lots of new work on <b>toysh</b>: 29 commits to sh.c since last release, adding 1500
  852. lines and deleting 700, plus a bunch of sh.tests entries). Since last release
  853. we implemented wildcards, case/esac and select, brace expansion sequences
  854. (ala {1..10..2} and {a..z}),
  855. the remaining variable slice types ${a#y} ${a%y} ${a^y} ${a,y}
  856. ${a/search/replace}, the "<b>source</b>" shell builtin,
  857. the start of job control, and several bugfixes.
  858. Plus the standalone "<b>make sh</b>" build understands MAYFORK now. It's
  859. still missing features like functions() and $((math)) but it's getting
  860. close to usable now.</p>
  861. <p><u>Documentation</u>:
  862. Some of the README contents moved to the FAQ, and the README's "presentations"
  863. section got some new links. Several new <a href=faq.html>FAQ</a> entries explaining things like
  864. mkroot ("how do I build a working Linux system
  865. with toybox"), cross compiling (how to get/setup the 2 compilers and
  866. 3 libc we regression test against), and "where does toybox fit into the
  867. linux/android ecosystem".
  868. The "toybox --help" output now lists the project's web page (<a href=https://github.com/landley/toybox/issues/50>by request</a>).
  869. Elliott removed
  870. getevent (an android board bringup/hardware debugging tool built by running
  871. a python script against kernel headers, not really in scope for toybox),
  872. fixed xargs help formatting, and taught the toybox multiplexer's
  873. command list output (and "kill -l") to measure the current the terminal width
  874. when wordwrapping (previously hardwired to 80 columns).
  875. If you're curious, I checked in my <a href=www/release.txt>release procedure
  876. checklist</a>, and
  877. fixed a stale link in the nav bar on the left ("statistics" changed domains).
  878. Firas Khalil Khana fixed some issues in the roadmap, and Rob
  879. tweaked the roadmap so status.html is slightly more current.</p>
  880. <p><u>Tests</u>:
  881. The "make tests" target now fails if any of the tests it ran failed.
  882. Lots of TEST_HOST tests got fixed (checking for specific error messages exposes
  883. TEST_HOST to version skew, and scripts/test.sh will now skip TEST_HOST
  884. commands that aren't installed) and added toyonly annotations as necessary
  885. (replacing most uses of SKIP_HOST).
  886. Eric Molitor added automated github tests on MacOS and Ubuntu using their
  887. "workflows" thing.
  888. The clang asan plumbing slows some code down more than 10 times, so some testing timeouts were expanded.
  889. <p><u>Pending</u>:
  890. Eric Molitor did a bunch of work on route: moved it to sbin, added xsend and
  891. xrecv, taught display_routes() and setroute to use the rtnetlink API and
  892. do hostname lookups, added support for mss, win, and irtt, merged ipv6 and ipv4
  893. codepaths with autodetection of address type, implemented RTA_CACHEINFO
  894. support, switched exit paths to perror_exit(), and removed unused code.
  895. Ethan Sommer fixed warnings in dhcpd, removed a bunch of unnecessary
  896. ; after GLOBALS() blocks and an unnecessary return in df.
  897. Erik Moqvist fixed dns setting in the dhcp client.
  898. Rob did some cleanup on bootchartd, traceroute, getty...
  899. Elliott fixed getty to reliably update utmp.
  900. Chris Sarra added ipv6 support to wget.
  901. Ariadne Conill submitted several small fixes from testing Alpine Linux with
  902. toybox, and Antoni Villalonga i Noceras fixed typos in error messages.</p>
  903. <p><u>Bugfixes</u>:
  904. Elliott avoided sign extension in devmem, and Ethan Sommer switched it from
  905. getpagesize() to posix sysconf(_SC_PAGESIZE).
  906. Elliott fixed chmod -R
  907. ignoring dangling symlinks, fixed stty <a href=https://github.com/landley/toybox/issues/251>misparsing c_iflags</a>, fixed the chattr f2fs test with
  908. compression enabled, taught blkid not to show empty tags, taught xparsedate()
  909. to read date's default output format, fixed a recent echo -e \0 regression,
  910. changed cpio -p parsing to match a <a href=http://lists.landley.net/pipermail/toybox-landley.net/2020-August/011955.html>bug</a> in the gnu version
  911. which an existing script <a href=https://github.com/landley/toybox/commit/fa1af3b085cc>depended on</a>,
  912. and switched hwclock back to looking
  913. only at /dev/rtc0 for <a href=https://github.com/landley/toybox/commit/70e2232ce61c>reasons</a> involving kernel version skew and vendor bug reports.</p>
  914. <p>David Legault pointed out that unescape2() (and thus echo -e) wasn't handling
  915. \0 right.
  916. Khem Raj reported that mips glibc doesn't have SIGSTKFLT, leading to
  917. a build break if we assume glibc behaves consistently, which led to a bunch of
  918. macos signal portability cleanups from Elliott.
  919. William Djupström fixed tar extracting long file paths, adding hardlinks
  920. to an archive, and reported that --exclude wasn't working.
  921. Peter McConalogue pointed out that cp/mv -i prompt should
  922. default N, and mv should only prompt when stdin is a tty.
  923. Patrick Oppenlander made rtcwake and hwclock default to UTC if /dev/adjtime
  924. isn't available, suggested watchdog catch SIGINT, and caught an
  925. uninitialized offset in blkdiscard which gcc apparently didn't.
  926. Ryan Pritchard reported that <b>file</b> wasn't getting gif heights right,
  927. and Elliott added gif version output so TEST_HOST provided similar output.
  928. Martin Stjernholm fixed <b>cp -P</b> to not follow symlinks and updated
  929. the help text to say it's not the default.
  930. Antoni Villalonga added more --long asiases to <b>chgrp/chown/rmdir</b>.
  931. <p>The symlink indirection code subtly broke xexec() so it would still try to call
  932. a builtin when given a path to a command (fixed now).
  933. The code to trip \n off xgetline() was using the length of the allocation
  934. instead of the length of the read.
  935. Netcat no longer leaks sockfd into child processes.
  936. Patch "fuzz" support was outputting context lines from the hunk, not the
  937. file. Chrisrfq fixed i2cdetect parameter reading.
  938. Chris Sarra taught dd not to throw an error trying to truncate device files,
  939. added a misshing fflush() to lib/password.c, fixed a parse error in logger
  940. preventing local facility logging from working right, taught init
  941. to reload inittab when it receives SIGHUP, and fixed a memory leak in tar.</p>
  942. <p><u>Library</u>:
  943. New xvdaemon() function daemonizing on nommu systems, to wean commands
  944. off daemon() which requires TOYBOX_FORK.
  945. Teach sendfile_len() to use copy_file_range() when available, with compile
  946. time probe. Fix xsignal_all_killers() to install the correct handler.
  947. Rob switched dirtree_path() to a non-recursive implementation, and
  948. taught dirtree that a top level entry named "" is equivalent to
  949. "." but should not show up in dirtree_path(),
  950. read_password() now reads from tty device rather than stdin, and handles ctrl-c and ctrl-d, and
  951. human_readable() now has HR_NODOT so it can print single digit numbers without going "0.0".
  952. Petri Gynther increased the vmstat column sizes so it didn't fit
  953. in 80 columns anymore.
  954. Elliott added UTC offset support to xparsedate().</p>
  955. <p><u>Infrastructure</u>:
  956. mkroot now only passes --no-preserve-owner to cpio (so initramfs files
  957. belong to root rather than whichever user ran the build) when using toybox's
  958. version, because the other one is brain-damaged and errors out not
  959. understanding it. (It understands it for extract, but not create. Yes really.)
  960. New PENDING variable you can set to enable more than just sh and route out
  961. of pending.
  962. The "make distclean" no longer deletes root_download (where mkroot's "extra plumbing"
  963. file saves source code downloads it tarballs, such as dropbear).</p>
  964. <p><u>Cleanup</u>:
  965. Cleanup openvt (35 lines added, 78 lines removed)
  966. Cleanup blkdiscard so lib/args.c parses the -o and -l numbers, which means
  967. 32 bit systems are limited to 2 gigabyte sizes which is a TODO item systemwide.
  968. oneit now uses flag macros and mentions -rn in the help. demo-utf8towc
  969. now has main.c call setlocale for it.
  970. Some cleanup on stty.</p>
  971. <a name="11-05-2020" /><a href="#11-05-2020"><hr><h2><b>May 11, 2020</b></h2></a>
  972. <blockquote>
  973. <p>Ford: Ah. A
  974. <a href=https://www.youtube.com/watch?v=WSsR419HBpQ>towel</a>.
  975. Keep this and guard it with your life.</p>
  976. <p>Arthur: Huh?</p>
  977. <p>Ford: Listen, it's a tough universe. There's all sorts of people and things
  978. trying to do you, kill you, rip you off, everything. If you're going to
  979. survive out there, you've really got to know where your
  980. <a href=towel.jpg>towel</a> is.</p>
  981. <p>- The Hitchhiker's Guide to the Galaxy</p>
  982. </blockquote>
  983. <p>Despite everything <a href=downloads/toybox-0.8.3.tar.gz>Toybox 0.8.3</a>
  984. (<a href=https://github.com/landley/toybox/releases/tag/0.8.3>git commit</a>)
  985. is finally out, with new commands <b>rtcwake</b> from Elliott Hughes and
  986. <b>blkdiscard</b> from Patrick Oppenlander.
  987. The big news is "<b>make root</b>" now boots to a shell prompt,
  988. with toysh making it all the way through toyroot's init script.
  989. (Some people were looking forward to <b>patch --fuzz</b> support too.)</p>
  990. <p><u>Toyroot</u>: <b>make root</b> now does what it says on the tin, it
  991. builds a bootable toybox-based Linux system using two source
  992. packages (toybox and linux). The trivial version is "make root && sudo chroot
  993. root/host/fs /init". Here's
  994. a <a href=http://lists.landley.net/pipermail/toybox-landley.net/2020-April/011667.html>post with instructions</a> if you want to know how to build the
  995. cross compilers for testing the various architectures. The self-contained
  996. <a href=https://github.com/landley/toybox/blob/0.8.3/scripts/mkroot.sh>script
  997. that builds a simple bootable Linux system</a> is 250 lines long, and
  998. should be easy to read if you want to know how it works.</p>
  999. <p>It also has basic module support, meaning arguments that aren't X=Y variable
  1000. assignments are the names of scripts to run to build more
  1001. packages at the end of the build. I checked in an <a href=https://github.com/landley/toybox/blob/master/scripts/root/dropbear>example package</a>,
  1002. and there's generic "download and extract source tarballs"
  1003. <a href=https://github.com/landley/toybox/blob/master/scripts/root/plumbing>plumbing</a> available to such modules.
  1004. (The Makefile doesn't know how to pass module names through to the script,
  1005. so instead of "make root" you have to
  1006. call the script directly, ala "scripts/mkroot.sh CROSS=sh4 LINUX=~/linux dropbear".)</p>
  1007. <p>The resulting root filesystem now uses /root as the home
  1008. dir for UID 0, and creates /dev/fd and /dev/shm in devtmpfs. The build works
  1009. around a kernel
  1010. build bug where "make distclean" doesn't work in a "cp -sfR" symlink
  1011. directory. (The bug meant if you pointed LINUX= at unclean source, it was
  1012. unhappy, so now it distcleans the source directory before copying it. This
  1013. modifies said source directory, which is not ideal, but as usual the kernel guys
  1014. <a href=http://lkml.iu.edu/hypermail/linux/kernel/2002.2/00083.html>ignored
  1015. the bug report</a>, so a workaround was required.)
  1016. The CROSS=all build announces each target in the title bar, puts
  1017. its logs into root/log, and has better trap handling to stop with one
  1018. ctrl-c.
  1019. Since last release it uses a more concise config format for the various kernel
  1020. arch targets (which shrank the script by about 50%), and merged
  1021. the old (now removed) scripts/cross.sh into the main script so
  1022. "make CROSS=armv7l LINUX=~/linux" is
  1023. literally just a call to "scripts/mkroot.sh CROSS=armv7l LINUX=~/linux" now.</p>
  1024. <p>As for <b>scripts/mcm-buildall.sh</b> building cross compilers,
  1025. of COURSE gcc 8.3 requires a different configuration to build the same
  1026. toolchain as previous versions, it's gcc. It now builds a proper
  1027. nommu libc for sh2eb without a broken fork() call in it that can never
  1028. be used but prevents compile-time probes from detecting nommu,
  1029. and checks that the cross compiler completed before trying to build
  1030. the native compiler.</p>
  1031. <p>This was all tested with a recent
  1032. <a href=https://github.com/richfelker/musl-cross-make/commit/5086175f2902>version</a>
  1033. of musl-cross-make with the top level Makefile
  1034. edited to use BINUTILS_VER = 2.32 because the newer one
  1035. <a href=https://www.spinics.net/lists/linux-sh/msg56844.html>breaks the kernel
  1036. build</a>
  1037. and LINUX_VER = 4.19.90 because the default musl-cross-make config uses an
  1038. out-of-tree headers package for some reason (those who forget history are
  1039. <a href=https://lkml.org/lkml/2006/4/28/194>doomed to repeat it</a>) which
  1040. breaks m68k and s390x. I won't post binaries of the resulting toolchains
  1041. because they're GPLv3, but <a href=https://musl.cc/>Thalheim might</a>.
  1042. (I've also <a href=http://lists.landley.net/pipermail/toybox-landley.net/2020-May/011673.html>test built</a>
  1043. with the Android NDK, but bionic's startup code currently segfaults before
  1044. calling main() if it can't open /dev/null, and the kernel guys
  1045. <a href=https://lkml.org/lkml/2017/9/13/651>ignored my patches</a> to
  1046. make CONFIG_DEVTMPFS_MOUNT work in initramfs.)</p>
  1047. <p>At the moment toyroot cheats and uses two commands out of pending: toysh
  1048. is about 80% of the way to being useful but still missing some
  1049. obvious features like function support, job and terminal control, command
  1050. history, $((math)), wildcard expansion... plus a lot of bash features like array
  1051. variables, so it isn't out of pending yet. And route needs to be redone to use the
  1052. netlink interface that can handle multiple routing tables. For the moment
  1053. scripts/mkroot.sh adds both of them to defconfig if you haven't already
  1054. got a .config when you run it. (If you build and can't boot, your .config
  1055. probably hasn't got CONFIG_SH switched on. Fix it in menuconfig, or
  1056. rm .config and try gain.)</p>
  1057. <p><u>New toybox features</u>:
  1058. Elliott taught <b>patch</b> to understand [FILE [PATCH]] arguments, made
  1059. <b>cal</b> highlight the current day, added -T to <b>cp</b>/<b>mv</b>,
  1060. did a lot of work on <b>lsattr</b>/<b>chattr</b> (including adding -p
  1061. and "chattr ="), added tar --absolute-names, taught <b>id</b> to
  1062. support numeric lookup and handle unknown groups, made -G show all
  1063. groups, and removed context= from -Z.
  1064. Rob added <b>patch -F</b> (fuzz factor) support and <b>help -u</b> (usage only),
  1065. taught <b>echo -e</b> about bash extensions like \uXXXX unicode escapes,
  1066. <b>netcat -L</b> no longer automatically includes stderr (new -E
  1067. option does that),
  1068. <b>setsid</b> now uses -c (like the man page says) instead of -t, and added
  1069. -w (wait) and -d (detach from tty).
  1070. Andrew Ilijic added <b>ls -w</b>, removed trailing whitespace on output,
  1071. and added tests for -C and -x.</p>
  1072. <p><u>Library</u>:
  1073. another fix to 32 bit option parsing of long long optflag values,
  1074. remove getdirname() and just use the libc function (which modifies
  1075. its argument, but we don't have to free a malloc),
  1076. dlist_terminate() can now be called repeatedly on the same list,
  1077. new relative_path() function finds path from one directory to another,
  1078. and readfd() works like readfile() but on an already open fd.
  1079. Use MPATH macros in mkpathat(). Elliott added macOS versions of
  1080. dev_minor()/dev_major()/makedev() to portability.c,
  1081. implemented posix_fallocate() for macOS, removed a
  1082. leftover uClibc workaround in fallocate that was breaking macOS,
  1083. and moved the table of ELF architectures from file to lib/lib.c (so
  1084. readelf can share).
  1085. Park Ju Hyung pointed out the fast path of fdlength() was commented out,
  1086. and we switched it to the 64 bit API while we were there (and then Elliott
  1087. added macOS support).
  1088. Joeky taught file to recognize 7z archives.</p>
  1089. <p><u>Pending</u>:
  1090. The shell got a bunch of work: standalone "make sh" now includes the
  1091. multiplexer for builtin commands like "exit" and "cd". Added MAYFORK annotation
  1092. for commands that exist in the $PATH but can also be run within the shell
  1093. process (and sometimes have different behavior within the shell):
  1094. currently applied to help, echo, false, kill, printf, pwd, test, time, and
  1095. true.</p>
  1096. <p>Elliott added new commands <b>getopt</b> and <b>readelf</b>.
  1097. Jarno Mäkipää taught wget how to follow http 301 and 302 redirects,
  1098. and did lots of work on vi. (Elliott also did work on vi.)
  1099. Gavin Howard fixed a comparison bug in bc.
  1100. Ethan Sommer fixed numerous small issues (including several build
  1101. warnings and FLAG() macro conversions).</p>
  1102. <p><u>Bugfixes</u>:
  1103. <b>tar</b> extract now deletes files and symlinks where it's making a directory,
  1104. <b>find -L -type -l</b> now finds dangling symlinks, extra #ifdefs in
  1105. portability.h prevent old gcc versions from barfing on __has_include(),
  1106. xgetline() now returns NULL at EOF, tee with no arguments was
  1107. writing to stdout twice, setsid works on nommu (I.E. vfork) now,
  1108. <b>netcat -L</b> no longer accumulates zombie processes,
  1109. <b>sntp</b> now uses adjtimex instead of adjtime (to build on bionic).
  1110. xcreate_stdio() was checking WARN_ONLY in the wrong field (and tar was
  1111. passing it in the wrong field, so it worked there).
  1112. Several people wrestled with the <b>xargs</b> "argument too long" problem.
  1113. Alessio Balsini fixed memory leaks in loopback_setup() and "wayling"
  1114. added a missing continue to losetup.
  1115. Elliott fixed xargs -E, various things in modinfo,
  1116. added an error check to gzip when using zlib (which copies non-gzip data to
  1117. the output verbatim for some reason),
  1118. found an case where dirtree could use
  1119. uninitialized data and silenced "Invalid argument" warnings (triggered by
  1120. Android's selinux policies making stat() and readlink() fail),
  1121. fixed locale support in macOS (both in iconv
  1122. and in main.c), taught stat to show filesystem time on macOS,
  1123. fixed a 32 bit truncation in sntp, fixed a memory access one byte outside
  1124. of its array in patch.c, removed the cpio --trailer option,
  1125. and widened the pid display fields in ps to
  1126. 6 digits. Rich Felker fixed find.c assuming
  1127. time_t is a long (y2038 issue on 32 bit).
  1128. Greg Kaiser fixed a thinko in get_block_device_size().
  1129. Jarno Mäkipää fixed utf8 support in cut -C, and cp --parents.
  1130. David Legault complained that dir/.* tells rm to delete dir/.. and we'd do it.
  1131. JakeSFR pointed out a bug in file's identification of broken symlinks.
  1132. William Haddon fixed cp to treat a directory with a trailing slash
  1133. teh same as one without.
  1134. Denys Nykula fixed rm -i not to prompt for an empty "" argument.
  1135. SebiderSushi reported that chmod g+s wasn't working.
  1136. The linux kernel doesn't let an O_PATH fd work with fgetxattr(), so
  1137. Elliott switched <b>ls</b> to use the path-based functions now (which is racy,
  1138. it means you can stat() one inode and get the xattrs for a different one,
  1139. but nobody in kernel land seems to use xattrs much so they're not fully
  1140. supported by the API, and who's crazy enough to use xattrs for security
  1141. anyway). Derick Pallas pointed out an xclearenv() bug.
  1142. Atatsulo (or possibly luolongjuna) did a lot of work on the <b>ping</b>
  1143. command: pointed out min/range/max were out of order,
  1144. that we shouldn't print a summary unless we received at least one
  1145. reply packet, and implemented ttl support.</p>
  1146. <p><u>Build plumbing</u>:
  1147. The "make root CROSS=all" build announces each target in the title bar, puts
  1148. its logs into root/log, and has better trap handling to stop with one
  1149. ctrl-c.</p>
  1150. <p>Fixed scripts/single.sh to work when PREFIX has no trailing slash,
  1151. make silentoldconfig no longer feeds "y" to kconfig (which puts menus in a
  1152. loop) and instead just feeds in newlines to accept whatever the default is.
  1153. The non-git version number I keep forgetting to update each release moved
  1154. from main.c to toys.h.
  1155. Fixed a couple different errors in mkflags.c (one of which caused ls --color
  1156. to set all the other flags).</p>
  1157. <p>Elliott added more macos support and tests, and added
  1158. fallocate, cp, mktemp, and mv to the macOS defconfig.</p>
  1159. <p><u>Cleanup</u>:
  1160. Rob did some cleanup on xargs, ls, md5sum, and sort, tidied up main.c a bit,
  1161. made cp, base64, dmesg, and free use FLAG macros,
  1162. and switched fallocate to new style global names.
  1163. Elliott Hughes switched rfkill from the old byte at a time get_line()
  1164. to libc getline(), made du use FLAG() macros, and mad chattr use
  1165. standard toybox argument parsing for -v and -p.
  1166. Several commands (help, cp) had sub-options removed from menuconfig.
  1167. Merged realpath into readlink.c, and use xabspath() instead of libc realpath().</p>
  1168. <p><u>Documentation</u>:
  1169. New roadmap section about <a href=roadmap.html#packages>other packages</a>
  1170. that toybox can (eventually) replace.</p>
  1171. <p>Update roadmap to note that posix-2008 moved to a different URL (content
  1172. at the old URL undergoes random changes), and link to the IETF RFCs.
  1173. design.html explains more of the history of environment sizes on links
  1174. and has a #bits anchor tag.</p>
  1175. <p>Update the <a href=design.html#bits>LP64 section</a> of design.html to
  1176. fish the documents out of archive.org now that unix.org is gone,
  1177. and show the actual size table locally.</p>
  1178. <p>Elliott improved the help of <b>date</b> and <b>chattr</b>, and
  1179. made the usage: lines in the posix directory more consistent.</p>
  1180. <p>Shrank the sed help from 150 lines to 90-ish.</p>
  1181. <p><u>Tests</u>:
  1182. New "txpect" performs interactive tests, running through a sequence of
  1183. writes to a command's stdin and reads from stdout and stderr, when failing it
  1184. reports the first non-matching step. (This for example lets sh.test check
  1185. the shell line continuation logic prompts with $PS1 and $PS2 appropriately
  1186. with various unfinished input lines, and that "echo hello; if" doesn't
  1187. output hello before prompting for the next line of input.) Added
  1188. VERBOSE=xpect to print out each read and write successfully performed by txpect.</p>
  1189. <p>runtest.sh only creates an "input" file when the input argument isn't empty,
  1190. EVAL doesn't supply -- (you have to provide your own if you want that).</p>
  1191. <p>Rob added basic <b>stat</b>, <b>patch</b>, and <b>tee</b> tests.
  1192. Jarno added a bunch of <b>vi</b> tests.
  1193. Elliott fixed tests for <b>ifconfig</b>, <b>lsattr</b>, <b>chattr</b>,
  1194. and <b>date</b>, added tests for find, id, xargs, and made
  1195. the id, iconv, env, file, printf and cat tests work on macOS (and skipped
  1196. the du tests there). Rob cleaned up chmod tests.</p>
  1197. <p><u>Sheer pedantry</u>:
  1198. true and false now have usage: lines (which you have to "help false" to see
  1199. because they (intentionally!) don't support --help.
  1200. Renamed get_chunk()/dump_chunk() to read_chunk()/write_chunk() in tail.c
  1201. Elliott fixed some typos.</p>
  1202. <a name="18-10-2019" /><a href="#18-10-2019"><hr><h2><b>October 18, 2019</b></h2></a>
  1203. <blockquote>
  1204. <p>"In those days spirits were brave, the stakes were high, men were real
  1205. men, women were real women and small furry creatures from Alpha Centauri
  1206. were real small furry creatures from Alpha Centauri."
  1207. </p> <p>- The Hitchhiker's Guide to the Galaxy</p>
  1208. </blockquote>
  1209. <p><a href=downloads/toybox-0.8.2.tar.gz>Toybox 0.8.2</a>
  1210. (<a href=https://github.com/landley/toybox/releases/tag/0.8.2>git commit</a>)
  1211. is finally out (only two months late).</p>
  1212. <p>The new commands this time are minor variants of existing ones
  1213. (<b>dnsdomainname</b> is hostname -d, <b>arch</b> is uname -m), but about
  1214. 1/3 of toysh got implemented in pending, <a href=https://github.com/landley/mkroot>mkroot</a> got merged as a "make root" target (see Build),
  1215. and Android's <a href=http://lists.landley.net/pipermail/toybox-landley.net/2019-August/010845.html>hermetic build</a>
  1216. work continued resulting in a lot of fixes.</p>
  1217. <p>The android-specific <b>getprop</b>, <b>setprop</b>, <b>start</b>, and <b>stop</b>
  1218. commands were removed from toybox because they grew dependencies on android
  1219. libraries, and since toybox tries to avoid mandatory external dependencies
  1220. they moved to another package.</p>
  1221. <p><u>Build</u>:
  1222. The new "make root" target builds a simple toybox root filesystem,
  1223. using scripts/mkroot.sh which is a stripped
  1224. down version of the external <a href=https://github.com/landley/mkroot>mkroot</a>
  1225. project merged into toybox. (Alas, at the moment it wants sh and route out
  1226. of pending, which aren't quite load bearing yet.)</p>
  1227. <p>The new "scripts/mcm-buildall.sh" convenience script builds cross
  1228. compilers based on gcc+musl multiple targets (arm, x86, mips, m68k, s390,
  1229. microblaze...)
  1230. using <a href=https://github.com/richfelker/musl-cross-make>musl-cross-make</a>,
  1231. and a new scripts/cross.sh to easily cross compile for one or more targets
  1232. using the resulting compilers. (This works with "make root", "make
  1233. toybox", and other builds understanding the CROSS_COMPILE environment variable.)</p>
  1234. <p>Setting the environment variable ASAN=1 enables the
  1235. llvm address sanitizer. (You may need to
  1236. export ASAN_SYMBOLIZER_PATH on debian to use it, they add the version number to
  1237. the filename in /usr/bin which confuses llvm.)</p>
  1238. <p>Patrick Oppenlander fixed make -j (our make is a wrapper around
  1239. scripts/make.sh which was already doing a parallel build, but if you called
  1240. make with -j it wouldn't wait for make.sh to finish and the build broke).</b>
  1241. <p>Lots of fixes for the MacOS build.</p>
  1242. <p><u>New options</u>:
  1243. We upgraded <b>tar</b> to extract some older tarballs, <b>file</b> added -b and -s
  1244. options and can also recognize older tarballs,
  1245. some xz archives, .otf fonts, perf/simpleperf data files,
  1246. android boot images, and dtb files. Upgraded <b>file</b> to show the device type
  1247. for block and char devices, the target for symlinks, and it says _why_ it can't
  1248. open a file.</p>
  1249. <p>Several commands ignore some options rather than erroring on them:
  1250. <b>patch</b> ignores the -f -g# and --no-backup-if-mismatch options
  1251. (all of which we were already doing by default anyway), and <b>xargs</b>
  1252. ignores -P# (which requests parallel execution, maybe add it later but
  1253. single threading works), and Denys Nykula made <b>wget</b> ignore
  1254. --no-check-ceritificate and <b>gzip</b> ignore -n (again, we weren't doing
  1255. either anyway) to satisfy pkgsrc.</p>
  1256. <p>William Haddon taught <b>diff</b> and <b>patch</b> to support special characters in path
  1257. names (via quoting) and more timestamp formats.
  1258. Eric Molitor implemented <b>nl</b> -v (with negative and zero starting values),
  1259. and fixed a MacOS compatibility issue in the build scripts.
  1260. Tom Cherry added <b>netcat</b> -U (UNIX domain socket support).
  1261. Denys Nykula taught <b>wget</b> to call ftpget for ftp:// URLs.
  1262. Ethan Sommer added ln -t and rmdir --ignore-fail-on-non-empty.
  1263. Elliott Hughes added <b>grep</b> -R, <b>killall</b> -w, tar --mode,
  1264. fixed <b>ls</b> -Z and spacing in -lZ and --full-time,
  1265. added <b>xargs</b> --max-args and removed xargs -I (which we never actually
  1266. supported) and tweaked the size calculation to more closely match other
  1267. versions,
  1268. added xargs -o and made -p read from /dev/tty, added <b>blkid</b> -s, SEC_TYPE for ext3,
  1269. msdos, and ntfs, f2fs and ntfs LABEL, fixed vfat/ntfs UUID, and switched
  1270. the endianness for UUID of msdos/ntfs/vfat, simplified the octal mode
  1271. display in <b>lsof</b>, added <b>pidof</b> -x (thus making the default behavior _not_
  1272. be -x).</p>
  1273. <p>When readdir() succeeds but stat() fails, <b>ls</b> now prints "??? ? ? filename"
  1274. entries instead of "cannot access" errors. (Still trying to make ls / on
  1275. android work more gracefully with the SELinux weirdness they added in 9.)</p>
  1276. <p>Added %C to <b>stat</b> and made it show device type in its default output,
  1277. <b>cmp</b> now works
  1278. with 1 argument (implicit - as second argument reading from stdin).
  1279. <b>sed</b> added exit codes to the q command (q123), added Q, and fixed a
  1280. bad error message with "!".
  1281. Removed TAIL_SEEK config option (it just always does that now),
  1282. <b>find</b> grew several new options (%Z, -true, -false, and -newerXY), <b>ln</b> added -T.
  1283. The argument to <b>mktmp</b> --tmpdir is now optional.</p>
  1284. <p><u>Bugfixes</u>:
  1285. The unshare probe bit-rotted so it was impossible to build <b>unshare</b>
  1286. and <b>nsenter</b> on some distros.
  1287. Commit 771e94e2a08 broke toybox's ability to say "unknown command" when
  1288. you pointed a symlink at it that it that didn't correspond to a command,
  1289. pointing a symlink at another symlink
  1290. to make toybox run a command under a name it doesn't recognize
  1291. (ln -s toybox sh; ln -s sh ash) had an off by one error,
  1292. <b>ifconfig</b> no longer error_exits if the "read mac address" ioctl fails (Android N
  1293. and later block that for non-root users to prevent device tracking).
  1294. When the libcrypto library was disabled, md5sum was building commands it
  1295. hasn't got built-in support for yet (like sha3sum) which acted like redundant
  1296. copies of md5sum,
  1297. <b>tar</b> wasn't correctly reading or writing sparse files with a hole at
  1298. the end, and tar tzf blah.tar.xz was calling xz when it meant xzcat,
  1299. <b>xargs</b> would spuriously fail on large memory systems (due to a missing
  1300. "unsigned" in a typecast),
  1301. <b>basename</b> can now remove suffixes starting with a dash,
  1302. <b>cp</b> -r unlinks() an existing symlink before trying to
  1303. recreate the symlink (otherwise cp -r into an existing directory will
  1304. try to follow the existing symlink and create another symlink at its
  1305. destination, failing if a file already exists there, which
  1306. was confusing gentoo's package manager), <b>timeout</b> now produces the
  1307. right exit code when the timed command intercepts the exit signal,
  1308. and <b>hostname</b> -d no longer segfaults on machines with no domain name.</p>
  1309. <p>Denys Nykula fixed the <b>ftpget</b> freeze (it was sending REST instead
  1310. of RETR), made <b>mv</b> work with a trailing slash in the source,
  1311. fixed a <b>find</b> segfault,
  1312. and made <b>env</b> always exec rather than recursing to a builtin
  1313. (on the theory #!/usr/bin/env is expected to search the $PATH).</p>
  1314. <p>Elliott improved <b>killall</b>'s handling of long filenames, made <b>kill</b> work
  1315. when killall5 is disabled (missing FORCE_FLAGS), fixed error reporting in
  1316. <b>hostname</b>, fixed several things in <b>xargs</b>,
  1317. made <b>printf</b> \c and \0 octal escapes work, fixed a <b>find</b> -name corner
  1318. case (find src/*.c -name file.c) and find dangling symlink behavior,
  1319. made some <b>rm</b> error messages consistent, fixed \x behavior in echo and
  1320. printf, fixed linestack.c's buffer length for utf8 U+XXXX escape printing,
  1321. fixed a race in <b>losetup</b>, fixed <b>grep</b> -F with multiple matches on the same
  1322. line and an -I failure in the existing grep tests, made <b>readlink</b> notice
  1323. when it has more than one argument, and made various
  1324. fixes to <b>modinfo</b>.</p>
  1325. <p>Ethan Sommer reported that <b>stat</b> of an suid/sticky file output 5 digits of
  1326. octal stat date instead of 4.
  1327. Rob fixed an unaligned access in <b>grep</b>. Alessio Balsini removed an incorrect
  1328. null termination in <b>losetup</b>.
  1329. Jarno Mäkipää fixed <b>hexedit</b>
  1330. scrolling up and down on older terminals, and fixed <b>ls</b> segfaulting with a broken
  1331. (non-UTF8) locale (didn't expect wcrtomb to return -1).
  1332. Andrew Ilijic made ls put 2 spaces between columns like other implementations
  1333. (which helps when terminals get confused and apply UTF8 combining characters
  1334. to the space after a filename).
  1335. </p>
  1336. <p><u>Library</u>:
  1337. Added dlist_lpop() to use a dlist as a stack (it removes the last entry
  1338. instead of the first), and dlist_pop() now works on a dlist_terminate()d list.
  1339. DIRTREE_STATLESS returns entries we couldn't stat() (with a zeroed ->st
  1340. field, and ->again |= 2), but filling in the file type from readdir().
  1341. Coversions between signal names and numbers now include all the Linux signals,
  1342. not just posix ones. The functions sig_to_num() and num_to_sig() moved into
  1343. lib/portability.h, because MacOS has different signals.
  1344. TOYFLAG_MAYFORK allows commands to run in toysh's process without forking,
  1345. but also makes them accessable from the toybox multiplexer or standalone.
  1346. A MAYFORK command has to clean up after itself (even in error paths) and
  1347. can't discard anything we need to keep (such as closing stdout).</p>
  1348. <p>Elliott did a big xbind/xconnect cleanup (adding xbindany and xconnectany),
  1349. taught xregcomp that an empty regex matches the whole line
  1350. (because FreeBSD, and thus MacOS, doesn't already do that), and
  1351. replaced several uses of get_line() (which does single byte reads)
  1352. with getline() (which doesn't).</p>
  1353. <p><u>Plumbing</u>:
  1354. "make clean" doesn't produce a screenful of unnecessary output now,
  1355. rm, ln, cp, kill, and netcat use the FLAG() macros now, makedevs uses the new
  1356. GLOBALS naming format, timeout now uses xwaitpid(), and we fixed an
  1357. off by one error in xwaitpid().</p>
  1358. <p>Elliott removed a workaround for old NDK versions from getconf and
  1359. moved sort off of get_rawline() (which let us remove it).
  1360. Rob undid some loop unrolling in md5sum/sha1sum (we have libcrypto if you want
  1361. an assembly optimized version instead of an understandable version).</p>
  1362. <p>Android ndk-r20 doesn't define the __ANDROID_NDK__ symbol, so we switched
  1363. to using clang's __has_include() (which is an undefined macro and thus a NOP
  1364. resolving to false on gcc).</p>
  1365. <p><u>Pending</u>:
  1366. Rob did a lot of work on toysh: continuation support works (it knows when to ask
  1367. for another line of text and when to run what it's got), as do
  1368. nested if/else/elif statements, and while and for loops (supporting "for i"
  1369. and "for i in", but not for ((;;)) yet).
  1370. It parses pipes and redirections but doesn't perform them yet.
  1371. The next big todo chunk is environment variable resolution.
  1372. </p>
  1373. <p>Gavin Howard fixed some bugs in bc, such as not returning error when raising
  1374. zero to a negative power.
  1375. Jarno Mäkipää continues to extend vi, adding yank and push, support for tabs,
  1376. rewriting delete, changing the drawing code, etc. Elliott also added several
  1377. fixes and features to vi,
  1378. fixed host to cope with large DNS responses, switched crontab to
  1379. use getline(), did work on man, fixed fixed several things in dd,
  1380. implemented diff --strip-trailing-cr and made diff not need /tmp.
  1381. Mike Bennett added extended attribute support to ip.c's route change.</p>
  1382. <p><u>Test suite</u>: The killall and pgrep tests were having occasional
  1383. spurious failures due to a race condition (the test script would fork()
  1384. to call sleep and for just a moment there were two instances of the test
  1385. script, reporting an extra process if killall or pgrep ran then).
  1386. <p>Elliott Hughes did a lot of work on the test suite: add kill -l tests,
  1387. make losetup.test notice (and skip) if loopback
  1388. devices area already in use, blkid.test can TEST_HOST e2fsprogs blkid now,
  1389. modinfo.test notices (and skips) if there's no /proc/modules or modules
  1390. directory, ifconfig.test skips if "dummy0 up" fails and disabled the
  1391. pointtopoint tests entirely (the kernel never supported it?),
  1392. truncate.test is less
  1393. confused by SELinux, hostname.test can run some tests as non-root,
  1394. addressed a race condition in killall.test on slow systems,
  1395. made chgrp.test, chown.test, and tar.test handle an empty /etc/passwd or /etc/group
  1396. (we were checking whether they were _there_ but some android devics have
  1397. empty ones),
  1398. fixed a couple things in env.test, extended killall.test to explicitly cover
  1399. long and short names (and not assume the shell is /bin/sh), taught split.test not to rely on bash process substitution,
  1400. added missing TZ=utc to touch.test, fixed cp.test to pass for root
  1401. or with a restrictive umask, and fixed the FAILCOUNT arithmetic to use more portable
  1402. $(()). Elliott also made some tests more flexible (find.test can handle any
  1403. error message about symlink loops, etc), and disabled others (such as du)
  1404. when SELinux is enabled.</p>
  1405. <p>Rob taught testcmd not to use the shell builtin for TEST_HOST unless there
  1406. isn't one in the $PATH, work if $PWD has a space in it,
  1407. and make kill.test stop testing the shell builtin
  1408. insead of the command, quieted tests that were producing output
  1409. other than their PASS/FAIL line, and made NOSPACE tests ignore the
  1410. presence/absence of leading/trailing whitespace as well as differences
  1411. in the amount of space.</p>
  1412. <p><u>Documentation</u>:
  1413. The <a href=roadmap.html>roadmap</a> got freshened up a bit, with updates
  1414. for android from Elliott.
  1415. In <a href=design.html>the design page</a> the Features section starts with
  1416. 4 new paragraphs about the scope of toybox, and a new License section talks
  1417. about 0BSD.
  1418. The "./toybox --help" output now explains how to do install_flat by hand.</p>
  1419. <p><u>Sheer pedantry</u>:
  1420. Elliott fixed a double close in loopfiles_lines() so strace doesn't
  1421. have an EBADF in it, and added a missing "static" in lib/net.c.</p>
  1422. <a name="21-05-2019" /><a href="#21-05-2019"><hr><h2><b>May 21, 2019</b></h2></a>
  1423. <blockquote>
  1424. <p>"I like the cover," he said. "'Don't Panic.' It's the first helpful or intelligible thing anybody's said to me all day."</p> <p>- The Hitchhiker's Guide to the Galaxy</p>
  1425. </blockquote>
  1426. <p><a href=downloads/toybox-0.8.1.tar.gz>Toybox 0.8.1</a>
  1427. (<a href=https://github.com/landley/toybox/releases/tag/0.8.1>git commit</a>)
  1428. is out.</p>
  1429. <p>Android is now using toybox as part of a <a href=http://lists.landley.net/pipermail/toybox-landley.net/2018-November/009824.html>"hermetic" build</a>
  1430. (meaning Android is building under toybox, which is halfway to Android
  1431. building under Android). See Android's <a href=https://android.googlesource.com/platform/prebuilts/build-tools/+log>build-tools</a> and <a href=https://android.googlesource.com/platform/build/soong/+log>soong</a> repositories to follow along with development, or check the list for the <a href=http://lists.landley.net/pipermail/toybox-landley.net/2019-May/010485.html>current status</a>.</p>
  1432. <p><u>New commands</u>: Isaac Dunham added <b>mcookie</b>, which is used by
  1433. X11. Elliott Hughes added <b>devmem</b>, which replaces toolbox's "r".</p>
  1434. <p><u>Promoted</u>: <b>tar</b>, <b>gunzip</b>, and <b>zcat</b> were cleaned
  1435. up and moved out of pending.
  1436. Tar is a near-rewrite with support for --owner --group and --sparse,
  1437. capable of autodetecting "wget blah.tar.bz2 -O - | tar xv", a --restrict option
  1438. that only allows files to extract into a single subdirectory, and so on.</p>
  1439. <p><u>Added to pending</u>:
  1440. Jarno Mäkipää contributed a new <b>vi</b> implementation. Makepost added
  1441. <b>man</b>.</p>
  1442. <p><u>Updates</u>: Elliott added <b>find</b> -wholename/-iwholename, -printf,
  1443. and -context, <b>grep</b> --exclude-dir, and <b>echo</b> -E.
  1444. Rob added <b>blkid</b> -U and -L, <b>mount</b> now has UUID= support via blkid -U,
  1445. you can now specify TZ="blah" in the <b>date</b> -d input string (although
  1446. why the double quotes are required is an open question), and <b>sed</b> now
  1447. understands ,+N relative ranges. Makepost added <b>rm</b> -v.
  1448. The human_readable fields in <b>ps</b>/<b>top</b>/<b>iotop</b> now use all
  1449. available space to show more precision, <b>iotop</b> displays swap bandwidth
  1450. properly (it was showing a signed field as unsigned), and
  1451. <b>touch</b> -t and -d autodetect the time format.</p>
  1452. <p><u>Cleanups</u>: In pending Rob did some bc cleanup,
  1453. Colin Davidson did some arp cleanup,
  1454. Uros Prestor fixed route argument parsing, and
  1455. in bc Daniel Rosenberg fixed bc_vec_concat()'s allocation and
  1456. Gavin Howard fixed an overflow bug in bc_num_ulong().</p>
  1457. <p>Elliott made scan_key() detect cursor keys and such with several more
  1458. terminal types, made more better about directories and non-tty output,
  1459. cleaned up inconsistent uses of ARRAY_LEN(), taught file
  1460. to recognize a c-sky ELF machine, and fixed timezone and daylight
  1461. savings time issues in date and its tests.
  1462. Rob simplified netcat and ping using new lib/net.c infrastructure.
  1463. When run as non-PID 1 (for a chroot) oneit's exit code now indicates
  1464. which signal it's exiting due to.
  1465. Hadrian Węgrzynowski #defined constants for mkpathat.
  1466. Date now uses the current time for unspecified fields (instead of zeroing
  1467. them), and should set the weekday properly.
  1468. Sort's -k2.3,4.5 syntax is now documented and behaves more closely to
  1469. other implementations (silly as that behavior is).
  1470. Significant speedup to sed s/a/b/g on a megabyte long line (it was
  1471. O(n^2) and now it's quite snappy).</p>
  1472. <p>Several cases of warning about stdout failing to write were silenced
  1473. because things like piping the output to head means stdout is a special
  1474. case: its output is often discarded and that's fine. And xprintf()
  1475. and friends only checks stdout for errors so it can exit early ("yes | head"
  1476. should not spin endlessly) without actually flushing anything.
  1477. There's an ongoing design debate about line buffering stdin and stdout
  1478. that'll have to be resolved next dev cycle.</p>
  1479. <p><u>Bugs</u>:
  1480. Elliott sent in a lot of fixes for building AOSP with toybox:
  1481. support for more date formats, sed substitution of empty capture groups
  1482. and an endless loop with -EPIPE, fixed find -path/-ipath, made loggit()
  1483. only feed LOG_AUTH to syslog when we have a tty, gave grep a bunch
  1484. of --longname synonyms for short options, added getfattr --only-values,
  1485. and timeout --foreground --preserve-status and --signal.</p>
  1486. <p>Top got a lot of tweaks: it no longer collates thread's CPU usage into the
  1487. parent thread (in -H mode), hides the cursor in interactive mode, updates the
  1488. display properly in batch mode, and accepts ENTER
  1489. as a synonym for SPACE when refreshing the display. The header lines
  1490. now abbreviate long numbers with units (via human_readable()),
  1491. more reliably spans the terminal width, and says "Thread" instead
  1492. of "Task" when it's showing threads. The task/thread count now adds up
  1493. (understanding more kernel states and treating unknown ones as "sleeping").
  1494. Top now treats -o "" as an error (previously it displayed an empty screen).</p>
  1495. <p>William Djupström pointed out login needs to chown() the tty, and made it
  1496. clear the environment when -p is absent.
  1497. Vidar Holen fixed inverted find -exec exit status.
  1498. Rob made chgrp() stop relying on libc's printf("%s", NULL) printing "(null)"
  1499. because a <a href=https://github.com/varnishcache/varnish-cache/issues/2879>newly added gcc bug</a> turns that into a build break, and
  1500. fixed an outright embarassing xstrndup() bug.
  1501. Liwugang fixed a segfault when stat's format string had a trailing %.
  1502. A missing else in grep meant -x was sometimes ignored.</p>
  1503. <p><u>Infrastructure</u>:
  1504. in the build scripts/portability.sh now tests that the compiler it's trying
  1505. to use exists up front. We no longer link against librt because on glibc that's
  1506. pulling in libpthread for some unknown reason.</p>
  1507. <p>TOYFLAG_ARGFAIL() lets commands return custom exit values when option parsing
  1508. fails (because AOSP build scripts cared), so timeout --unknown returns 125
  1509. and so on: chroot, diff, cmp, env, grep, nohup, and sort also use it now with
  1510. various values.</p>
  1511. <p>New FLAG() macros: FLAG(x) expands to (toys.optflags&FLAG_x) and returns
  1512. zero if the command line argument's bit isn't set and nonzero if it is
  1513. (meaning -x was or wasn't encountered on the command line this time by
  1514. lib/args.c). Lots of commands got converted to use them.</p>
  1515. <p>New lib/env.c with reset_env(), xsetenv(), and xunsetenv() which frees
  1516. the old environment variable when it wasn't inherited from exec(). This
  1517. lets long-running loops reset environment variables without memory leaks.</p>
  1518. <p>New xnotify() plumbing in lib/portability.c with Linux and Mac versions
  1519. (which should also work on BSD).</p>
  1520. <p>New xparsedate() and xvali_date() functions allow date, tar --mtime, and
  1521. touch to understand the same date formats,
  1522. xpopen_both() now knows how to use existing filehandles for the child's
  1523. stdin/stdout, and no longer redirects stderr (which hides errors),
  1524. new nanomove(), nanodiff(), union socksaddr, xrecvwait(),
  1525. and human_readable_long() to show more than 3 digits of output.</p>
  1526. <p>Taught xgetaddrinfo() to return a wildcard address for a NULL host,
  1527. xconnbind() sets SO_REUSEADDR by default,
  1528. fileunderdir() returns the abspath to the file now (since we had to work
  1529. it out anyway), and
  1530. xabspath() uses O_PATH now (because Android's SELinux rules got more aggressive).</p>
  1531. <p>Several new xsendfile() variants, including sendfile_len() to copy
  1532. a specific amount of data and xsendfile_pad() to append zeroes to the
  1533. output when there isn't enough input.</p>
  1534. <p>regexec0() is now using libc's REG_STARTEND supported by every libc out
  1535. there _except_ musl. (It originated in BSD and was adopted by glibc, bionic,
  1536. and uClibc 15 years ago, and is also supported in macosx. Musl's maintainer
  1537. <a href=https://www.openwall.com/lists/musl/2013/01/15/26>turned down</a>
  1538. the feature request as an invalid use case he didn't think they should
  1539. be trying to do.)</p>
  1540. <p><u>Docs</u>:
  1541. the <a href=license.html>license page</a> now has an SPDX identifier, and links to more
  1542. history/context. The actual LICENSE file had its title line removed
  1543. so <a href=https://github.com/github/choosealicense.com/pull/643#issuecomment-463746027>github could recognize it</a> as 0BSD. (We're still waiting for
  1544. "<a href=https://github.com/github/choosealicense.com/pull/643#issuecomment-464380789>a while</a>" to pass before github actually does, though.)</p>
  1545. <p>A new www/doc/mount.txt file describes how mount works under the covers.</p>
  1546. <p>Rob consistently misspelled "canonical" and "millisecond", mountpoint
  1547. has a synopsis now,
  1548. Kevin van der Kamp fixed a typo in netstat's help text, and Elliott
  1549. Hughes fixed typos everywhere and made the tense, capitalization, and
  1550. punctuation of help text more consistent.</p>
  1551. <p>New paragraph in the code style part of design.html explaining that
  1552. "char* a, b;" is not how C works, and since you wind up with "char *a, b;"
  1553. anyway you might as well say that.</p>
  1554. <p>Given dreamhost's tendency to repeatedly delete the mailing list
  1555. archive, the nav bar on the left links to a backup web archive now too.</p>
  1556. <p>The FAQ now says why we do time based releases.</p>
  1557. <p><u>Testing</u>: Added VERBOSE=nopass to not show passing tests.
  1558. The test suite now does an rm -rf on testdir between each command so
  1559. debris files don't accumulate.
  1560. New skipnot function skips the next test if a command line fails, and
  1561. toyonly function only runs command when we're testing the toybox version
  1562. of command. (This isn't the same as TEST_HOST, the host version could be
  1563. toybox.)
  1564. The find -newer test calls "sleep .1" to avoid intermittently failing with an
  1565. identical timestamp.
  1566. Elliott added the start of a file.test rogues gallery.
  1567. No longer call lsattr in "make tests" because the behavior differs by
  1568. filesystem and it needs fixing somehow.</p>
  1569. <a name="08-02-2019" /><a href="#08-02-2019"><hr><h2><b>February 8, 2019</b></h2></a>
  1570. <blockquote>
  1571. <p>"Most readers get as far as the Future Semiconditionally Modified
  1572. Subinverted Plagal Past Subjunctive Intentional before giving up; and
  1573. in fact in later editions of the book all pages beyond this point have
  1574. been left blank to save on printing costs."</p>
  1575. <p>- The Hitchhiker's Guide to the Galaxy</p>
  1576. </blockquote>
  1577. <p><a href=downloads/toybox-0.8.0.tar.gz>Toybox 0.8.0</a>
  1578. (<a href=https://github.com/landley/toybox/releases/tag/0.8.0>git commit</a>)
  1579. is out.</p>
  1580. <p>Toybox now builds on MacOS and FreeBSD, thanks to the efforts of Elliott
  1581. Hughes and Ed Maste respectively. Use the "make macos_defconfig" and "make
  1582. freebsd_defconfig" targets to enable the set of commands that compile on
  1583. each so far.</p>
  1584. <p><u>New commands</u>: Added an <b>sntp</b> client/server (RFC 4330 Simple Network Time
  1585. Protocol, a compatible subset of ntp). The <b>test</b> command was rewritten
  1586. and promoted out of pending.</p>
  1587. <p><u>New options</u>: <b>grep</b> now has --color, supports embedded NUL bytes in its input,
  1588. recognizes binary files, and passes all of grep.test (in case you
  1589. needed the middle numerical field of -bB, etc).
  1590. Josh Gao added ipv6 and UDP support to <b>netcat</b>.
  1591. Volodymyr Medvid reported that install -d doesn't honor -o or -g.
  1592. Elliott Hughes did a lot of work to support hermetic Android/AOSP builds:
  1593. <b>mkdir</b> accepts both --parent and --parents as synonyms for -p, <b>touch</b> ignores -f,
  1594. <b>basename</b> added -s to remove a trailing suffix, <b>dirname</b> now supports multiple
  1595. arguments, <b>cmp</b> accepts --quiet and --silent as synonyms for -s, <b>hostname</b>
  1596. added -sfd, <b>head</b> added --bytes as a synonym for -c and --lines as a synonym
  1597. for -n, <b>mktemp</b> added -t and fixed -u, <b>sed</b> added -z and -iEXT to keep backup files,
  1598. <b>md5sum</b> and sha1sum added --status and --check as synonyms -s and -c,
  1599. <b>readlink</b> added --canonicalize as a synonym for -f, <b>sort</b> grew -V,
  1600. <b>patch</b> added -s its synonym --quiet, <b>stat</b> added --format as
  1601. a synonym for -c, <b>xargs</b> added -p -t -r,
  1602. Eduardas Meile asked
  1603. that <b>umount</b> ignore -c. Reverend Homer added a small optimization to file.c,
  1604. and Elliott taught <b>file</b> to recognize riscv ELF binaries. Peter Collingbourne
  1605. taught <b>ls</b> -t to use the nanoseconds field.
  1606. <b>patch</b> has better support for patching a file with a tab in the name.</p>
  1607. <p><u>Bugfixes</u>:
  1608. <b>cp</b> --preserve was segfaulting when you didn't specify _what_ to
  1609. preserve (it now correctly defaults to "mot") and didn't get the permissions
  1610. right when copying a symlink's contents as a regular file,
  1611. <b>sort</b> -x didn't work when
  1612. attached to a key, <b>host</b> didn't allocate a big enough buffer for worst
  1613. case ipv6 address size, <b>sed</b> needed a ; between b and } when other
  1614. implementations don't (we're already well past what posix says but a script
  1615. out in the field broke...),
  1616. and several fixes to <b>hostname</b> in a container, <b>ps</b>/<b>top</b> were
  1617. misreading the VIRT and SHM fields.</p>
  1618. <p><u>Pending</u>: Gavin Howard updated <b>bc</b> and added more tests,
  1619. Marius Adaskevicius pointed out <b>mdev</b> -s should follow symlinks,
  1620. Yangchun Fu reported a <b>dhcp</b> checksum bug, <b>modprobe</b> needed errno reset
  1621. to avoid reporting spurious errors in verbose mode and no longer
  1622. exits with status 1 if it can't find /etc/modprobe.conf, the <b>more</b> command
  1623. wasn't always flushing stdout when it exited.</p>
  1624. <p><u>Build</u>:
  1625. <b>chrt</b> no longer #warns about the musl sched_get_priority_min() bug, but
  1626. instead works around it.
  1627. We were mixing setjmp/siglongjmp (harmless in some contexts but it kind
  1628. of annoyed FreeBSD), and
  1629. make install_airlock now adds sha256sum (because the Linux 4.20 build now
  1630. needs that for the s390x target).</p>
  1631. <p><u>Coding style</u>:
  1632. Rob converted the rest of the option GLOBALS() to the new single letter
  1633. coding style, and the new FLAG(x) macro is a slightly tidier way to say
  1634. "toys.optflags&FLAG_x".
  1635. Removed CFG_SORT_BIG (the sort command always
  1636. has the full functionality now. The general future direction or toybox
  1637. is to either have a command or not have it; multiple versions of the
  1638. same command aren't worth the complexity in testing, documentation,
  1639. or system adminstration).</p>
  1640. <p><u>Library code</u>:
  1641. The mkflags plumbing can now support arbitrary punctuation as option
  1642. names via an escape syntax (because mkfs.vfat specifies an offset with -@),
  1643. and lib/args.c now only sets FLAGS_NODASH when the first argument
  1644. didn't have a dash (allowing "ps ax" and "ps -ax" to behave differently).</p>
  1645. <p>Added an xrename() function,
  1646. xchdir() has better error reporting, xconnect()/xbind() had their
  1647. implementations merged, xsendto() moved from ping to lib, xpoll() now
  1648. measures elapsed time and only waits for the remaining period when restarted,
  1649. and Eduardas Meile converted several error_exit() to error_exit_raw() (because
  1650. yocto 2.6 buils with -Werror=format-security by default).</p>
  1651. <p>There's a scripts/portability.sh now which lets the build use gsed and gmake
  1652. (when available) in more places to avoid broken host versions on MacOS and FreeBSD.
  1653. The syntax of the "noreturn" attribute
  1654. changed slightly, some calls to strnstr() were replaced with strcasestr(),
  1655. we work around MacOS' lack of features.h, portability.h can now do Apple's
  1656. endianness macros, and so on.</p>
  1657. <p>Following the <a href=faq.html#support_horizon>seven year rule</a>
  1658. Elliott removed support or glibc 2.10, and also
  1659. reformatted a lot of --help text for consistency (removing trailing
  1660. periods and such).</p>
  1661. <p><u>Test suite</u>:
  1662. The test suite now has its own version of "pending", specifically "make tests"
  1663. skips test files without the executable bit set (unless you export $TEST_ALL).
  1664. This eliminates "expected failures" (I.E. files with unresolved todo items)
  1665. from the global regression test. Additional tests can be added to the global
  1666. regression test with chmod +x as the todo items they document get resolved.</p>
  1667. <p>Several places the test suite got fluffed out, including guards to skip
  1668. root-only tests when run as a normal user. The testcmd function prints the
  1669. short name instead of the full path to the command.
  1670. The tests for the test command
  1671. ("test.test") no longer test the shell builtin but correctly test the
  1672. toybox command. (Now say that ten times fast.)</p>
  1673. <p>Bash version skew required replacing "continue" with "return" to stop
  1674. tests early in bash 4.4 (for VERBOSE=fail).</p>
  1675. <a name="31-10-2018" /><a href="#31-10-2018"><hr><h2><b>October 31, 2018</b></h2></a>
  1676. <blockquote><p>
  1677. "In the beginning the Universe was created.
  1678. This has made a lot of people very angry and been widely regarded as a bad move."</p><p>- The Hitchhiker's Guide to the Galaxy
  1679. </p>
  1680. </blockquote>
  1681. <p><a href=downloads/toybox-0.7.8.tar.gz>Toybox 0.7.8</a>
  1682. (<a href=https://github.com/landley/toybox/releases/tag/0.7.8>git commit</a>)
  1683. is out (a month late).</p>
  1684. <p>Toybox <a href=http://lists.landley.net/pipermail/toybox-landley.net/2018-October/009769.html>now builds</a> with the Android NDK (r18 release), almost out of the box.
  1685. You have to add an "llvm-cc" symlink to "clang", then use CROSS_COMPILE=llvm-
  1686. with the appropriate $PATH (or absolute path in CROSS_COMPILE) for the
  1687. target you want to build for. (To run it on a non-android host, you probably
  1688. want "LDFLAGS=--static" too.)</p>
  1689. <p><u>New commands</u>: <b>i2cdetect</b>, <b>i2cdump</b>, <b>i2cget</b>, and <b>i2cset</b>
  1690. courtesy of Elliott/Android. The <b>watch</b> command got a complete (tty-aware)
  1691. rewrite, and was promoted out of pending. The <b>prlimit</b> command is back
  1692. (a configuration bug was always disabling it), and <b>ascii</b> now defaults y
  1693. in defconfig (an oversight).</p>
  1694. <p><u>New options</u>:
  1695. The <b>ifconfig</b> command added -S (short view) giving one line of
  1696. information per interface, in "name ipv4/mask macaddr [ipv6/mask@type...]"
  1697. format. <b>grep</b> grew binary file detection, with -I and -a options to
  1698. ignore them or force treating them as ascii (really utf8).
  1699. Zach Van Rijn asked for <b>find -empty</b>.
  1700. In the <b>file</b> command, Elliott improved java
  1701. .class support and added .wav, .bmp, and android .dex.
  1702. Elliott also added "getconf -a" and a lot of missing getconf symbols the
  1703. AOSP build uses, including support for pathconf(3) symbols requiring two
  1704. arguments. This means getconf's arguments work more like ubuntu's
  1705. now (one or two arguments, not iterating through the supplied list and
  1706. processing each like last release), and -l grew section identifiers (so
  1707. the "getconf -l" output is no longer a directly consumable list of symbols
  1708. it takes).
  1709. Command line options specifying durations (like top -d or ping -i) can
  1710. now use fractions and units, like "1.5" and ".1m". See "toybox --help" for
  1711. details.
  1712. Toybox now dereferences one layer of symlinks if it doesn't recognize the
  1713. name it's called under (so if you "ln -s $(which sleep) blah" and then
  1714. "./blah 30", it should figure out you mean sleep 30).</p>
  1715. <p><u>Pending</u>:
  1716. Gavin Howard contributed a large new <b>bc</b> implementation to pending,
  1717. which covers everything the kernel build needs (and more) but is going to
  1718. take a while to review.
  1719. In <b>diff</b> the android guys added --color and timestamps on the
  1720. +++/--- lines. In <b>mdev</b> Faustas Azuolas Bagdonas added support
  1721. for mdev.conf's fourth field. Reverend Homer suggested an error message
  1722. improvement in <b>wget</b>, Kevin Spiteri did a cleanup pass on test.c,
  1723. and there was a cleanup pass on the passwd command.</p>
  1724. <p><u>Bugfixes</u>:
  1725. Elliott responded to a bug in <b>getconf</b>'s sed-based header generation by
  1726. replacing it with a more conventional array of #defined symbols, with #ifdefs
  1727. for missing symbols on the three libc implementations (glibc, bionic, musl)
  1728. we've tested so far. (This requires portability.h work to add new supported
  1729. build environments, but at least it works on bionic now.)
  1730. The <b>file</b> command now fails gracefully when reading pathologically
  1731. broken ELF files (the tests for integer overflow missed one), and
  1732. <b>date</b> no longer shows a meaningless errno when it can't parse the
  1733. date format.
  1734. Several fixes in <b>ping</b> (-w and -W didn't work, -c kept sending packets
  1735. while waiting for replies, and when no reply packets were received the summary
  1736. data was printed twice).
  1737. Elliott fixed <b>wc</b> column widths (traditional reality doesn't match
  1738. posix), fixed <b>modprobe</b>'s error handling (reported by Wen Xie), and
  1739. also fixed the units on blockdev --blkraget (reported by Martijn Coenen).
  1740. Several small fixes to the <b>stat</b> command's output (help text, quoting
  1741. style, leading zeroes, switch -f from %t to %T), <b>oneit</b> no longer
  1742. reboots the system when it's not called as PID 1.
  1743. Last release's commit letting $STRIP be redefined had a typo.
  1744. Nick Kralevich added an istty() check before calling TIOCGWINSZ (which
  1745. triggered Android's strict ioctl filtering on non-filesystem fifos).
  1746. An unstripped build (where the "strip" command fails for a given
  1747. CROSS_COMPILE) will now overwrite the (read-only) output file instead of
  1748. failing a rebuild. The dirtree plumbing no longer prints a "No" on front
  1749. of the filename in error messages (such as "permission denied").</p>
  1750. <p><u>Docmentation</u>
  1751. Elliott updated the roadmap with Android AOSP status, towards turning that
  1752. into a hermetic build (hopefully with an eventual self-hosting option, work
  1753. is <a href=b33d37d6f735>already underway</a> on the airlock step).
  1754. Rob added a little more context for LSB and described the move from Aboriginal
  1755. Linux to mkroot.
  1756. The <b>ps</b> help text changed: now "ps -o help" shows the fields and the normal
  1757. --help is much more manageable. Ifconfig's --help text also got tidied up.
  1758. Our LICENSE file has the SPDX identifier (0BSD) now, and the note about
  1759. the kconfig/ subdirectory still having (build only, non-shipping) GPL code
  1760. in it moved into the kconfig subdirectory.</p>
  1761. <p><u>Coding style change:</u>
  1762. GLOBALS() now uses the argument letter as the variable
  1763. name for variables automatically set by command line arguments via lib/args.c,
  1764. and no longer requires they be one per line.
  1765. Removed use of the gcc
  1766. \e extension in string constants, replacing it with \033.</p>
  1767. <p><u>Library code:</u>
  1768. lib/interestingtimes.c was renamed to lib/tty.c.
  1769. The deflate code from toys/pending/compress.c moved to lib/deflate.c,
  1770. which gunzip.c now uses when it's not configured to use zlib. (This reduces
  1771. the bootstrap dependencies for the "airlock" step of a hermetic build.)
  1772. The compression side remains a todo item.
  1773. Added "%" to lib/args.c reading seconds (including fractions/units) into a
  1774. long milliseconds argument. Redid xparsetime() to not need floating point,
  1775. added xparsemillitime() for milliseconds common case, and
  1776. parsetime() now treats leading garbage as an error instead of returning zero.
  1777. The bufgetpwuid()/pufgetgrgid() functons can now handle more than 4k of group
  1778. data. The set_terminal() function can now set serial speed, and microcom.c
  1779. uses it. Added xsignal_flags(), and more consistently use xsignal() (which wraps
  1780. sigaction()) instead of signal().
  1781. A new xgetrandom() function calls the new getrandom() system call, falling
  1782. back to /dev/urandom on older kernel/libc (made to actually _work_ by
  1783. Patrick Oppenlander).</p>
  1784. <p><u>Build infrastructure:</u>
  1785. Updated dependency detection so "make distclean defconfig toybox" now works
  1786. all on the same command line. (This is nice when $CROSS_COMPILE changes).
  1787. scripts/config2help.c no longer includes parts of lib/ and just copies what
  1788. it needs into itself, improving build portability.
  1789. The build now checks the specified cross compiler exists, hopefully providing
  1790. a more informative error message when it doesn't. Similarly, when .config is
  1791. missing the error message suggests running make defconfig.</p>
  1792. <a name="23-06-2018" /><a href="#23-06-2018"><hr><h2><b>June 23, 2018</b></h2></a>
  1793. <blockquote>
  1794. <p>There is a theory which states that if ever anyone discovers exactly what
  1795. the Universe is for and why it is here, it will instantly disappear and be
  1796. replaced by something even more bizarre and inexplicable. There is another
  1797. theory which states that this has already happened.</p>
  1798. <p> - The Hitchhiker's Guide to the Galaxy</p>
  1799. </blockquote>
  1800. <p><a href=downloads/toybox-0.7.7.tar.gz>Toybox 0.7.7</a>
  1801. (<a href=https://github.com/landley/toybox/releases/tag/0.7.7>git commit</a>)
  1802. is out.</p>
  1803. <p><u>New commands</u>: Rob Landley added <b>getconf</b>, Elliott Hughes added
  1804. <b>uuidgen</b>, and <b>ping</b> and <b>fmt</b> were promoted out of pending.</p>
  1805. <p><u>New options</u>: The <b>cp</b> command added the --parents option,
  1806. <b>readlink</b> now has -m to show where a missing path would be,
  1807. <b>netstat</b> got some updates (better nommu support, it can use /etc/services
  1808. names, more command line options are bounds checked),
  1809. Ng Zhi An added --getra and --setra (get/set readahead) to <b>blockdev</b>,
  1810. Elliott Hughes added <b>xxd</b> -o and made <b>top</b> -d understand fractional
  1811. sections (because the Linux Test Project uses that), and
  1812. Minghui Liu added <b>watch</b> -b.</p>
  1813. <p><u>Bugfixes</u>: Several fixes to <b>vmstat</b>: Elliott Hughes made it work on a
  1814. 48-core machine
  1815. and fixed a glitch with -n, Haroon Maqsood pointed out "vmstat 1 1" didn't
  1816. stop and "vmstat -n" didn't print the first theader line.
  1817. Minghui Liu fixed a bug where <b>cp</b> -p didn't preserve
  1818. timestamps, and pointed out the b, c, and d suffixes on numbers weren't
  1819. working. Ryan Pritchard pointed out that <b>du</b> -d0 should act like du -s.
  1820. Filip Perich made an RFC2347 OACK compliance fix to <b>tftp</b> in pending.
  1821. Zach van Rijn fixed a bug in <b>xxd</b> causing incorrect translation of
  1822. uppercase characters.
  1823. Elliott fixed several things in <b>top</b> (removed spurious '\r' characters from -b
  1824. output, removed interactive flicker, made running processes bold), and
  1825. pushed Rob to make <b>file</b> work better recognizing things on stdin
  1826. ("cat /bin/ls | file -" still won't work but "file - < /bin/ls" should).
  1827. Rob fixed a bug in <b>netstat</b> on 64 bit big endian systems,
  1828. and fixed <b>cut</b> -DF
  1829. (a posix compliance fix broke its ability to act as a decent awk replacment
  1830. because outputting all delimiterless lines isn't what you want there, -D
  1831. now disables that too).</p>
  1832. </u></p>
  1833. <p><u>Documentation</u>: Rob added a buildroot section to the roadmap with the
  1834. prequisites that needs to run, and reformatted more of the ps --help text
  1835. to two columns.</p>
  1836. <p><u>Library</u>:
  1837. FLAGS_NODASH is now set in toys.optargs when an optstring starting
  1838. with & has no dash in its first argument. (This lets "ps -ax" and "ps ax"
  1839. behave differently.) Factored out xtestfile() into lib/.
  1840. The comma-separated-list parsing infrastructure moved to lib/commas.c.
  1841. Added mkpath() for the common case of mkpathat() and #defined MKPATHAT_*
  1842. constants for the uncommon cases. Elliott added better error checking
  1843. to xparsetime() and fixed a bug in names_to_pid() (used in <b>pidof</b>
  1844. and <b>killall</b> and such).
  1845. Rob inlined the old toys/e2fs.h into pending's mke2fs,
  1846. and removed a rogue semicolon from the WOULD_EXIT() macro that screwed
  1847. up if() statement levels. The do_lines() semantics changed adding a
  1848. callback(0,0) at the end of each file.</p>
  1849. <p><u>Tests</u>:
  1850. The test_* commands under toys/example were all renamed demo_* so
  1851. they don't share a namespace with running a standalone command
  1852. through the test suite (ala "make test_sed"), then
  1853. demo_human_readable became demo_number so it can also test atolx()
  1854. suffixes. The readlink.test was getting confused by a
  1855. behavior difference between toybox and ubuntu (Ubuntu's ln -sf wouldn't
  1856. replace a symlink that pointed to itself, toybox's would), now there's
  1857. an explicit rm so it works on ubuntu too. The test suite plumbing's
  1858. error message for a test with the wrong number of arguments now
  1859. correctly identifies which test it's complaining about, and it can now
  1860. run a test on a command name beginning with "-" (none yet but it
  1861. comes up in toysh).</p>
  1862. <p><u>Building</u>: You can now override strip with $STRIP. The set of
  1863. "make install_airlock" commands got tweaked for the 4.17 kernel (which
  1864. needs bison and flex because the new kconfig plumbing doesn't have _shipped
  1865. versions of those generated files like the old kconfig did), and for
  1866. the new release (remove ping, toybox provides it now).
  1867. $LDFLAGS now applies to library probing (the android NDK provides
  1868. dynamic libraries without corresponding --static versions).
  1869. Elliott took a CFG_TOYBOX_DEBUG check out of an error_exit() to make
  1870. clang stop complaining about an error that should never happen.</p>
  1871. <a name="24-02-2018" /><a href="#24-02-2018"><hr><h2><b>February 24, 2018</b></h2></a>
  1872. <blockquote><p>
  1873. "Arthur," said Ford.<br />
  1874. "Hello? Yes?" said Arthur.<br />
  1875. "Just believe everything I tell you, and it will all be very, very simple."<br />
  1876. "Ah, well, I'm not sure I believe that."<br />
  1877. </p>
  1878. <p> - The Hitchhiker's Guide to the Galaxy</p>
  1879. </blockquote>
  1880. <p><a href=downloads/toybox-0.7.6.tar.gz>Toybox 0.7.6</a>
  1881. (<a href=https://github.com/landley/toybox/releases/tag/0.7.6>git commit</a>)
  1882. is out, a month and change late.</p>
  1883. <p>This release adds a <b>crc32</b> command and
  1884. cleans up and promotes <b>iconv</b>, <b>logger</b>, and <b>setfattr</b>.
  1885. Pending added <b>stty</b> and <b>fmt</b>, the other half of <b>ping</b>,
  1886. and got a lot of cleanup on <b>gzip</b>/<b>gunzip</b>/<b>zcat</b>.</p>
  1887. <p>The <b>cut</b> command got a complete rewrite adding support for multiple
  1888. ranges, utf8/unicode characters, and new -CDFO options. Use -C to measure
  1889. columns rather than characters (for double width chars), and "cut -DF 3-5"
  1890. selects words (like "awk '{print $3 $4 $5}'").</p>
  1891. <p>This release adds <b>top -m</b> and <b>iotop -H</b> (and fixed top width truncating for narrow terminal windows),
  1892. added <b>iconv -c</b>, fixed <b>ps -T 1234</b> to show threads belonging to
  1893. that PID, improved <b>file</b>'s executable identification (properly recognizing
  1894. both endiannesses and adding sh/frv fdpic, bpf, and new microblaze
  1895. identifiers), and <b>blkid</b> now only shows LABEL= when it isn't blank.</p>
  1896. <p>Running ./configure now does "make defconfig", help_exit() now shows the
  1897. "See %s --help" message on the same line, and several web pages
  1898. (about, code, roadmap, cleanup) got updates.</p>
  1899. <p>Elliott and the Android devs added <b>df -i</b>, <b>uptime -p</b>,
  1900. <b>time -v</b>, and <b>xxd -i -ri</b>,
  1901. fixed <b>id -G</b> to only output the group IDs, fixed the <b>xargs -0 -n</b>
  1902. combination, made <b>find -exec +</b> obey ARG_MAX (just like xargs), made
  1903. <b>killall</b> kill scripts too, fixed an off by one error in <b>pidof</b>
  1904. that could cause false positive matches in 15 character names, added
  1905. gzip/gunzip/zcat tests, and taught <b>file</b> to identify more stuff
  1906. (ogg, TrueType font, LLVM bitcode, PEM certs, and PE executables), and
  1907. for some reason needed TOYBOX_VENDOR in the version stuff.
  1908. Android <b>getprop</b>/<b>setprop</b> now allows ro. properties to have
  1909. arbitrary lengths, <b>losetup</b> can now find loop devices under /dev/block (where android puts
  1910. them for historical reasons), and Andreas Gampe pointed out a thinko in
  1911. <b>top</b> that triggered llvm's address sanitizer checks.</p>
  1912. <p>Gael PORTAY asked for mdev to work when Linux has the
  1913. block layer configured out, Patrick Oppenlander pointed out a problem
  1914. with make bloatcheck's build dependencies, and
  1915. xuphung on github fixed config2help building on MacOS X.</p>
  1916. <p>Commands with locale support now setlocale(LC_TYPE, "C.UTF-8") for more
  1917. targeted locale support (enable character parsing with
  1918. utf8 support, use "C" semantics otherwise). The toys/example/test_*.c
  1919. commands got renamed demo_*.c.</p>
  1920. <p>In lib.c the millitime() function returns current unix time in milliseconds
  1921. (which as a 64 bit number is good for + or - 292 million years from
  1922. midnight Jan 1 1970), and the old xgetty() function became tty_fd() returning
  1923. -1 instead of erroring out.</p>
  1924. <p>The "make help" text moved from the Makefile to scripts/help.txt,
  1925. ls.c now lists some of its deviations from posix, and work is underway
  1926. to make ps.c more intelligible (and figure out how to break it up into
  1927. multiple files).</p>
  1928. <a name="12-10-2017" /><a href="#12-10-2017"><hr><h2><b>October 12, 2017</b></h2></a>
  1929. <blockquote><p>Would it save you a lot of time if I just gave up and went
  1930. mad now?</p>
  1931. <p> - The Hitchhiker's Guide to the Galaxy</p>
  1932. </blockquote>
  1933. <p><a href=downloads/toybox-0.7.5.tar.gz>Toybox 0.7.5</a>
  1934. (<a href=https://github.com/landley/toybox/releases/tag/0.7.5>git commit</a>)
  1935. is out.</p>
  1936. <p>This is another <b>mostly bugfix release</b>. I delayed it a bit trying to get some
  1937. of the many half-finished projects (dd, ping, lsof, iconv, cut, sysconf,
  1938. the cp --parents option...) finished/promoted/tested, but decided adding big
  1939. things at the end of the dev cycle would be too destabilizing.</p>
  1940. <p>A couple <b>new features</b> slipped in anyway. Ilya Kuzmich added head -c
  1941. and strings -t (and corrected strings' output in a couple places). Elliott
  1942. Hughes taught file to recognize Macintosh (Mach-O) binaries.</p>
  1943. <p><b>NOTE</b>: the chrt command is broken when built against musl-libc
  1944. because that project's maintainer decided he didn't like the system calls
  1945. it depends on, so he
  1946. <a href=https://git.musl-libc.org/cgit/musl/commit/?id=1e21e78bf7a5>removed
  1947. them from his libc</a>. The prebuilt binaries are built against musl,
  1948. so the chrt command there will always say -ENOSYS. (It works fine built against
  1949. glibc, and presumably bionic or uClibc.)</p>
  1950. <p><b>Bugfixes</b>: Remounting (mount -o remount,rw) should work properly now,
  1951. and we fixed another place ps was segfaulting when /proc
  1952. entries vanished out from under us (a hard to hit race condition
  1953. mostly noticeable in long-running "top" exiting; error value was treated
  1954. as a pointer). Elliott Hughes fixed a -Wformat warning in expr.c,
  1955. and made xargs split the command
  1956. line at ARG_MAX (which is 1/4 the stack size ulimit, which normal users
  1957. can arbitrarily increase but execve() will complain if they don't).
  1958. Josh Gao made netcat -l exit after handling a request, and reported a
  1959. seq bug (seq "1000000 10000001" output 1e+06, fixed now). Zach Riggle fixed a
  1960. broken URL in the README. Rob fixed env -0 checking the flag wrong so
  1961. it didn't work in combination with other flags (typo).</p>
  1962. <p><b>Plumbing</b>:
  1963. Replaced mbrtowc() with a new utf8towc() that doesn't have a context
  1964. struct or care about locale. A bugfix in comma_scan() (wasn't removing an entry at the end
  1965. of the list) is why remount _sometimes_ worked (depending on argument
  1966. order), xgetaddrinfo() is now separate from xconnect(),
  1967. atolx_range() learned the w (word=2) suffix, and b is now (block=512) instead
  1968. of (byte=1).</p>
  1969. <p><b>Build</b>: Patrick Oppenlander added a workaround for a bug in config2help.c
  1970. that resulted in segfaults on newer toolchains. (It was actually a use
  1971. after free error; the build infrastructure isn't nearly as heavily audited as
  1972. code that gets installed on the target; oops.) A new GITHASH
  1973. environment variable can force the build version from
  1974. the command line, and the build checks for .git in the top directory
  1975. before asking git what our version is (so it isn't confused by ../../.git
  1976. in an enclosing directory). Added a build #warning about musl intentionally
  1977. breaking chrt (as with nommu fork() musl now provides a broken
  1978. stub function so compile-time probes for its existence think it's there, and
  1979. you can't run the result to test behavior when cross compiling).</p>
  1980. <a name="19-06-2017" /><a href="#19-06-2017"><hr><h2><b>June 19, 2017</b></h2></a>
  1981. <blockquote><p>It is a well-known fact that those people who most want to rule people are, ipso facto, those least suited to do it.
  1982. To summarize the summary: anyone who is capable of getting themselves made President should on no account be allowed to do the job.</p>
  1983. <p>- The Hitchhiker's Guide to the Galaxy</p>
  1984. </blockquote>
  1985. <p><a href=downloads/toybox-0.7.4.tar.gz>Toybox 0.7.4</a>
  1986. (<a href=https://github.com/landley/toybox/releases/tag/0.7.4>git commit</a>)
  1987. is out. No new commands this time, but
  1988. <b>chrt</b> and <b>dmesg</b> got promoted out of pending.</p>
  1989. <p><u>New features</u>:
  1990. Rob rewrote paste, which should work much better now, and added grep
  1991. -M and -S to match and skip wildcards respectively (useful with -r).
  1992. Elliott's updated dmesg has -T and --color. The file
  1993. command can recognize gzip now, uptime grew -s, date grew %N, env knows - as a first argument
  1994. means -i (posix!) and grew -0, ls defaults to -b
  1995. instead of -q now when there's a tty, and ls has a new -ll option (with
  1996. --full-time as a compatibility synonym) showing nanoseconds and (for some
  1997. reason) timezone. (Why do individual files have timezones?) Elliott added
  1998. "uudecode -o -" support. Illya Kuzmich taught head -v and -q. The cpio
  1999. code no longer adds the "TRAILER!!!" entry by default (initramfs extractor
  2000. doesn't care) without which you can concatenate cpio archives with "cat".
  2001. (Use the new --trailer option if you want the legacy behavior.)
  2002. In pending, fdisk compiles now and tar understands bzip2.</p>
  2003. <p><u>Build</u>:
  2004. The "make install_airlock" target now symlinks bc from the host because
  2005. the kernel <a href=https://landley.net/notes-2013.html#28-03-2013>inexplicably</a>
  2006. needs that to build. This was motivated by
  2007. <a href=https://github.com/landley/mkroot>mkroot</a>, which builds under
  2008. a toybox airlock directory.</p>
  2009. <p>Lots of work on the test suite, mostly from the Android guys who are now
  2010. running it under Android. This fixed several existing tests that didn't
  2011. pass, made more tests run on a toybox-only system, and so on. The test suite
  2012. infrastructure now has a second testing function,
  2013. "testcmd", which supplies the command name being tested (bypassing
  2014. shell builtins).</p>
  2015. <p>Various android build and config fixes, getting closer to being able
  2016. to let android someday use scripts/make.sh instead of generated/* snapshots.
  2017. Also more work into building under android's NDK; not quite there yet
  2018. but much closer.
  2019. Use nproc in scripts/make.sh detect available processors (so you can control the SMP level with taskset).
  2020. Removed the old uClibc compatibility glue, it's been 5 years since their
  2021. <a href=http://lists.busybox.net/pipermail/buildroot/2016-December/180102.html>last release</a>.</p>
  2022. <p>The new config option TOYBOX_PEDANTIC_ARGS checks arguments when there
  2023. are no arguments, so things like "uptime" no longer silently ignore arguments
  2024. you pass but instead refuse to run.</p>
  2025. <p><u>Docs</u>:
  2026. The FAQ now has more than one entry. Commands no longer output the full
  2027. help text for argument errors but instead just say "See %s --help" with the
  2028. command name (in addition to the actual error message).
  2029. Elliott did a big period-ectomy on all the --help text, and
  2030. we cleaned up some tab/space inconsistency. The
  2031. non-html help -a output now has separators with the command name.
  2032. The top/iotop and pkill/pgrep help text now describe a lot more of what
  2033. the commands can do. Twitter's code of conduct page went down so we
  2034. mirrored the text locally.</p>
  2035. <p><u>Bugfixes</u>:
  2036. Fixed a race condition in ps/top where a process that exited right as we
  2037. read its data returned a different error value than we were expecting (which
  2038. was causing long-running top instances to occasionally exit),
  2039. mount now gives an error if it can't autodetect the filesystem
  2040. type, ps no longer queries the terminal size when output isn't to a tty
  2041. (so "ps -A | cat" doesn't vary), date's chkmktime() was replaced with
  2042. simple range checks for fields (to avoid false positives from things like
  2043. timezones and daylight savings time), removed %s from date's help (we
  2044. didn't implement it, we have @seconds[.nanoseconds] instead), fixed
  2045. zcat's buffer flush logic (which was always failing on files larger
  2046. than 32k), and factor now detects requests for numbers >64 bits and fails
  2047. loudly instead of producing incorrect answers.
  2048. Elliott fixed touch -a/-m (they were backwards), and allowed ':' in
  2049. setprop's property names. Grep now exits with 2 for errors (so -q can
  2050. distinguish "didn't find" from "didn't work"), doesn't stop on symlinks
  2051. that point nowhere (there was an error_exit() that should just be a warning),
  2052. and provides error messages for files we could open but not read.</p>
  2053. <p><u>Library</u>:
  2054. New library functions: strend() complements strstart(), minof()/maxof()
  2055. are min/max macros that evalute arguments once and autodetect type (why
  2056. isn't this in libc?), xmmap() checks MAP_FAILED (which is not NULL).</p>
  2057. <a name="21-02-2017" /><a href="#21-02-2017"><hr><h2><b>February 21, 2017</b></h2></a>
  2058. <blockquote><p>Only six people in the Galaxy knew that the job of the
  2059. Galactic President was not to wield power but to attract attention
  2060. away from it. Zaphod Beeblebrox was amazingly good at his job.</p>
  2061. <p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  2062. <p>Despite everything, <a href=downloads/toybox-0.7.3.tar.gz>Toybox 0.7.3</a>
  2063. (<a href=https://github.com/landley/toybox/releases/tag/0.7.3>git commit</a>)
  2064. is out. The <u>new commands</u> this time are <b>ftpget</b>, <b>ftpput</b>, <b>microcom</b>, and <b>ascii</b>.<p>
  2065. <p>We also had two command _demotions_ out of defconfig:
  2066. <b>hostid</b> got moved to toys/example and
  2067. switched to "default n" because despite <a href=http://pubs.opengroup.org/onlinepubs/9699919799/functions/gethostid.html>still being in posix</a>
  2068. the concept of a unique 32 bit number identifying a system is something
  2069. Linux outgrew about the time Pauline Middelink wrote the first IP
  2070. Masquerading code. And Elliott did a complete rewrite of <b>dmesg</b> introducing
  2071. two codepaths that I didn't get a chance to unify and didn't want to
  2072. hold up the release for, so that's back in pending.</p>
  2073. <p><u>New features</u>: Rob added units to <b>find</b> -atime and friends
  2074. (with the legacy -amin alias). Elliott added color and -w to dmesg, fallocate
  2075. -o, and improved file's ELF parsing. Steve Muckle added -d and finit_module
  2076. support to modprobe. Rob and Elliott tweaked the
  2077. ps/top display format a bit more (extending the USER field from 8 to 18 chars
  2078. and putting + at the end of string fields that got truncated).
  2079. df -a isn't entirely new, but wasn't documented and needed a bugfix.</p>
  2080. <p><u>Bugfixes</u>:
  2081. Last release broke oneit because -c didn't get moved to xopen_stdio() (oops).
  2082. Rob and Elliott simultaneously spotted ps padding each line to 99999
  2083. chars when there's no tty (serial console or adb); now it pads to 80 in
  2084. that case but also switches on -w to avoid field truncation. The "tty"
  2085. field also sometimes had trailing debris (that's fixed now). And "top" was
  2086. endlessly redrawing with out tty because receipt of the ANSI size probe
  2087. results would set SIGWINCH, and handling that sent another ansi probe. (Sigh.)
  2088. And while we're there, replace "ADDR" with "BIT" in ps -l so there are
  2089. more than 4 chars left for the "CMD" field on 64 bit systems.</p>
  2090. <p>Izabera pointed out that split -b and -l can't mix, and suggested seq should
  2091. multiply to avoid accumulating rounding errors from repeated fractional
  2092. increments. Wang Xiao Jian fixed a bug in sort -k.
  2093. Elliott let getprop use the @ character in property names, and
  2094. Dimitry Ivanov removed the name length limit for system properties.
  2095. Elliott also improved some error reporting and improved top -H's display
  2096. of thread names.
  2097. <p>Josh Gao pointed out that recursive operations on . and .. could be ignored
  2098. in chmod -R (and the resulting generic fix to dirtree_notdotdot() fixed
  2099. it in several other places).</p>
  2100. <p>Justin Cormack caught tar producing a warning to stdout that screwed up
  2101. "tar c" to stdout.
  2102. Rob fixed an option parsing bug (where switching off a --longopt in menuconfig
  2103. confused the parser), and another one where an option excluding itself
  2104. (ala "abc[-ab][!abc]" with "command -a -b") would segfault.</p>
  2105. <p>There's some sort of gcc stack over-optimization bug where musl-libc's
  2106. version of vfork() doesn't get marked with attribute(returns_twice) so
  2107. stack varabiles in the same function after that get semi-randomly overwritten
  2108. when the optimizer decides to reclaim the space. So add the attribute
  2109. to the function the XVFORK() wrapper macro calls. (It's a nommu thing.)</p>
  2110. <p>Fixed a couple variable size mismatch bugs that were only tested on 64 bit
  2111. (printf %x 64) or only tested on 32 bit (modprobe), removed some
  2112. unnecessary casts in stat.</p>
  2113. <p>Continuing attempts to build under Android NDK brought up that posix
  2114. defines the global 'stdout' as a macro, which older versions of bionic
  2115. turned into an array member, but a function was using it as an argument
  2116. name. (This worked in the AOSP build because it only builds against current
  2117. bionic, where there's a global 'stdout'.)</p>
  2118. <p>Several commits argued with clang's warning generation, eventually
  2119. settling on a variant of __attribute__((__shut_up__)).</p>
  2120. <p>Android should no longer give spurious error messages
  2121. when you "ps -A | head" about EPIPE on output. (Older versions of bionic
  2122. set an error handler on SIGPIPE, but it shouldn't do that now. More recent
  2123. versions of adb set the SIGPIPE handler to SIGIGN instead of SIGDFL,
  2124. leading to write returning an error message instead of silently killing
  2125. the program. So we set it back to the default.)</p>
  2126. <p><u>Docs</u>:
  2127. Removed website link to the gmane archive (which didn't survive gmane's
  2128. change of ownership). The FAQ now answers a _second_ question. (Woo!)
  2129. Some roadmap updates.</p>
  2130. <p><u>Build tweaks</u>:
  2131. Upgraded "make install_airlock" target to only warn about missing
  2132. commands (unless $PEDANTIC is set) when it sets up the hermetic build
  2133. path. (The plan is still to implement everything but the toolchain
  2134. binaries in toybox, but in the meantime we're symlinking other stuff from
  2135. the $HOST that isn't ready yet. See
  2136. <a href=https://github.com/landley/mkroot>mkroot</a> for an example using
  2137. this.)</p>
  2138. <p>Elliott and Rob continue to poke at building toybox with Android's NDK,
  2139. but it's a work in progress (<a href=http://lists.landley.net/pipermail/toybox-landley.net/2016-December/008767.html>thread</a>). Various changes
  2140. removing libcutils dependencies and adding an selinux dependency to getprop
  2141. are fallout from this.</p>
  2142. <p>Cross-compiling from Macs needs to use "gsed" instead of apple's
  2143. version, so teach the build to use that name if it exists in the $PATH.
  2144. If you try to build without running config first, you should get better
  2145. error reporting now. Added a workaround for Centos' broken "which" command
  2146. producing output when it _can't_ find a name in the $PATH.</p>
  2147. <p><u>Library</u>:
  2148. The new dirtree flag DIRTREE_PROC skips non-numeric entries so things
  2149. like ps and top can scan /proc more efficiently.</p>
  2150. <a name="21-10-2016" /><a href="#21-10-2016"><hr><h2><b>October 21, 2016</b></h2></a>
  2151. <blockquote><p>Probability factor of one to one. We have normality. I repeat,
  2152. we have normality. Anything you still can't cope with is therefore your
  2153. own problem.</p><p> - The Hitchhiker's Guide to the Galaxy</p></blockquote>
  2154. <p><a href=downloads/toybox-0.7.2.tar.gz>Toybox 0.7.2</a>
  2155. (<a href=https://github.com/landley/toybox/releases/tag/0.7.2>git commit</a>)
  2156. is out.</p>
  2157. <p>During this development cycle, Elliott Hughes <a href=http://androidbackstage.blogspot.com/2016/07/episode-53-adb-on-adb.html>got interviewed
  2158. on the ADB podcast</a>
  2159. and Rob Landley <a href=http://linuxluddites.com/shows/episode-88/>got interviewed on Linux Luddites</a> (<a href=http://linuxluddites.com/shows/episode-11/>again</a>).
  2160. Both talk about toybox and many other things.
  2161. The web page also grew a new <a href=faq.html>FAQ page</a>, currently with
  2162. just the one.</p>
  2163. <p>New comands added to defconfig are <b>tunctl</b>,
  2164. <b>log</b>, <b>start</b>, <b>stop</b>, and <b>sendevent</b>.
  2165. The commands <b>file</b> and <b>netstat</b> got promoted out of pending.
  2166. Pending added <b>chrt</b>, <b>setfattr</b>, and <b>getfattr</b>, and saw
  2167. a lot of cleanups to diffstat and dd but not enough to promote them to
  2168. defconfig yet. A new toys/net directory was added, moving ifconfig, netcat,
  2169. netstat, rfkill, and tunctl there so far.</p>
  2170. <p><b>Upgrades</b>: All commands now parse --version when they understand
  2171. --help, but "true" and "false" should now ignore their arguments entirely.
  2172. We taught stat to handle "%12x" and "%.12x" printf-style escapes, which
  2173. apparently other versions do. The ifconfig output now shows the interface's
  2174. device driver. Added patch -d and --dry-run, wc can now do -cm together,
  2175. find has a NOP -noleaf so scripts that use that don't break, add -c to md5sum
  2176. and sha1sum. Elliott taught ps to treat extra aguments as additional -p
  2177. pids, implemented xxd -s, did a number of upgrades to file (added -HL,
  2178. support for ar files, improved ELF support to report android API level
  2179. and stripped/not stripped and it no longer prints a guessed build ID type).
  2180. Elliott also added optional build-time support for using openssl's
  2181. assembly-optimized md5sum/sha1sum implementations (leading to a new
  2182. <a href=design.html>design</a> policy on shared libraries).</p>
  2183. <p><b>Bugfixes</b>: Too many fixes to "ps" and "touch" to list, from both
  2184. Elliott and Rob. Rob taught sed to handle s/[[:space:]/]// type sequences
  2185. properly, switched grep to a better
  2186. workaround for <a href=https://sourceware.org/bugzilla/show_bug.cgi?id=17829>glibc bug 17829</a>, made sed -i preserve ownership when run as root,
  2187. made du max out at 2 terabytes instead of 2 gigabytes on 32-bit systems
  2188. (it was always designed to, but was missing a typecast),
  2189. fixed the option parsing infrastructure (config options that remove command
  2190. line options got the placeholders wrong), fix to printf for printing
  2191. octal digits and handling the (posix-mandated) difference between %b and
  2192. non-%b octal output, reading from "-" no longer closes stdin when done,
  2193. netcat -L works with nommu (although it may need more portability work),
  2194. and you can now "make test_scankey" if you want to. Several commands
  2195. (stat, makedeves, chgrp, cp, find) handled user name lookup failure badly
  2196. (stat was segfaulting if you interrogated a file belonging to a nonexistent
  2197. user, "chown 12345 file" errored out if you didn't have that user
  2198. in /etc/passwd... now they should all print/accept the number when
  2199. appropriate). "LC_ALL=C ls -Cs --color" produces the same output
  2200. as other versions (two spaces padding, -k hardwired on).<p>
  2201. <p>Kyungsik Lee fixed a bug
  2202. in cp (readlink() doesn't actually null terminate the string it reads in),
  2203. Elliott Hughes made pgrep/pkill return success/failure, fixed trailing
  2204. whitespace in netstat, fixed a SMACK symbol conflict due to linux/xattr.h
  2205. changing, fixed ls -sh, and added a lot of
  2206. stuff to the <a href=roadmap.html>roadmap page</a>.
  2207. Izabera pointed out cmp -l and -s can't be selected at the same time,
  2208. that timeout was never actually checking -v, that ls should default to -q
  2209. when output is to a tty, and that "file -" would sometimes try to open "-"
  2210. instead of stdin.
  2211. Usischev Yury pointed out a use after free error, and that id shouldn't
  2212. call exit() directly. Matthias Urhahn pointed out that stat(2) returns
  2213. hardwired 512-byte units, so stat.c was wrong. David Hedges pointed out
  2214. that route could only handle 10 character interface names when the kernel
  2215. can do 15 (it's still in pending for a reason, but fixed). Evgenii
  2216. Stepanov found and helped diagnose one of the more subtle ps bugs fixed
  2217. this time around.</p>
  2218. <p>Calling "make test_blah" no longer causes make to error out if the last
  2219. test fails (and thus returns a nonzero error code).
  2220. Building single commands and the multiplexer used to require a "make clean"
  2221. between them (because they had different config files both of which were older
  2222. than generated/config.h so it didn't get rebuilt; now it just always
  2223. rebuilds it).</p>
  2224. <p>The defconfig build is now slightly less broken on older centos versions
  2225. (although <a href=http://lists.landley.net/pipermail/toybox-landley.net/2016-September/008664.html>the consensus</a> is that Centos is just generally broken).<p>
  2226. <p>Several commands were over-using xprintf(), which flushes its output
  2227. to check for error (something you only need to do maybe once per line,
  2228. and even then maybe only in loops because xexit() flushes and checks
  2229. ferror() for you and adjusts the exit code if we wrote stuff to stdout
  2230. that couldn't be printed). Lots of little flushes are inefficient,
  2231. so most things can use normal printf(). (Retransmission
  2232. of short writes is presumably libc's problem since it's buffering the
  2233. output and all.)</p>
  2234. <p><b>Library:</b>
  2235. New library functions readlink0() and readlinkat0() which properly null
  2236. terminates the symlink value (which the stock libc function inexplicably
  2237. doesn't).
  2238. The new do_lines() function interates reading lines from a filehandle
  2239. and calling a function on each line.
  2240. New function pollinate() factoring out netcat's poll() loop so things
  2241. like telnet can use it.
  2242. New functions getusername() and getgroupname() return a
  2243. char * given a uid/gid (and return a string representation of the number
  2244. if the lookup fails), and xgetpwnamid/xgetgrnamid were renamed to
  2245. xgetuid/xgetgid and now return an integer instead of a struct (also helping
  2246. handle lookup failures, you can still return the uid/get for "12345").</p>
  2247. <p>Switched atolx() to use long long internally.
  2248. Renamed xopen() to xopen_stdio() and made a new xopen() that never returns
  2249. stdin, stdout, or stderr (duping /dev/null into the filehandles as necessary).
  2250. New function xopenro() opens a file read only with one less argument, and
  2251. understands that "-" means stdin. New flag WARN_ONLY tells these functions
  2252. to just print a warning on failure, and return -1 instead of exiting.
  2253. Misc new functions like openro() which defaults to the WARN_ONLY behavior
  2254. and notstdio() which dup()s a filehandle up beyond stdin/out/err backfilling
  2255. with /dev/null as necessary. The WARN_ONLY flag let us remove the failok
  2256. argument from loopfiles().</p>
  2257. <p>New TOYFLAG_NOHELP disables --help processing (which "true" and "false"
  2258. should not do).</b>
  2259. <p>The test suite now has NOSPACE=1 to ignore whitespace (using diff -b to
  2260. check results), which helps TEST_HOST pass the same tests as toybox.
  2261. Fixes to chattr and date tests. It also has a new variable $C with the
  2262. absolute path to the command being tested (bypassing shell builtins),
  2263. and a function testcmd() which is just like testing() except it prepends
  2264. the command name ($C) to the test command line as well as the test
  2265. description.</p>
  2266. <a name="02-06-2016" /><a href="#02-06-2016"><hr><h2><b>June 2, 2016</b></h2></a>
  2267. <blockquote><p>When the 'Drink' button is pressed it makes an instant but
  2268. highly detailed examination of the subject's taste buds, a spectroscopic
  2269. analysis of the subject's metabolism, and then sends tiny experimental
  2270. signals down the neural pathways to the taste centres of the subject's
  2271. brain to see what is likely to be well received. However, no-one knows
  2272. quite why it does this because it then invariably delivers a cupful of
  2273. liquid that is almost, but not quite, entirely unlike tea.</p>
  2274. <p> - The Hitchhiker's Guide to the Galaxy</p></blockquote>
  2275. <p><a href=downloads/toybox-0.7.1.tar.gz>Toybox 0.7.1</a>
  2276. (<a href=https://github.com/landley/toybox/releases/tag/0.7.1>git commit</a>)
  2277. is out. (Yes, I forgot to update the --version string, but I already
  2278. uploaded the <a href=downloads/binaries/0.7.1>binaries</a>.)</p>
  2279. <p>The website has https support now, you can "make cat ps ls"
  2280. to get standalone commands (and "make list list_pending" to see what's
  2281. available), and a whole lot of bugfixes and new options to existing
  2282. commands.</p>
  2283. <h2>New Commands</h2>
  2284. <p>Rob implemented <b>ulimit</b>. In pending, Elliott Hughes implemented
  2285. file. and Lipi Lee implemented a simple wget. (Pending also had minor
  2286. cleanups to more and lsof, but no promotions this time around.)</p>
  2287. <h2>New Options</h2>
  2288. <p>Izabera implemented env -u, suggested adding seq -w, made factor
  2289. use full unsigned 64 bit math even on 32 bit platforms, pointed out base64
  2290. -w0 should disable wrapping, and sped up wc -c.
  2291. Elliott Hughes added mount -o relatime, xxd -p -r, and od -w.
  2292. Sameer Pradhan (or possibly Bilal Qureshi) suggested adding stat -tL -c %m%t%T.
  2293. Tom Cherry added getprop -Z. Paul Barker added hostname -b and -F.
  2294. Rob added ls -b, made ls -q work with utf8,
  2295. made sed -f - read from stdin, and added top -O (like ps -O).</p>
  2296. <p>Elliott and Rob <b>added Thread support to ps and top</b>,
  2297. with -o TID, TNAME. We also added -o PCY (android scheduling policy),
  2298. -o BIT (process is 32 or 64 bit), and -o TNAME now shows the parent
  2299. command name for threads.</p>
  2300. <h2>Documentation</h2>
  2301. <p>Rob added the sed invocations to convert tabs/spaces and back to
  2302. design.html. Isaac Dunham updated hexedit's help text.
  2303. Jakob Flierl pointed out a broken URL in the README.</p>
  2304. <p>Rob also redid the naming scheme of sed's pattern manipulation code to
  2305. remove the gratuitous references to Roger Zelazny's "Amber" series, since it
  2306. was confusing people.</p>
  2307. <h2>Bugfixes</h2>
  2308. <p>Grep -H and -n should now work properly with -ABC. Andy Chu pointed out an
  2309. out of bounds access for zero length lines in rev, fixed a buffer overflow
  2310. in diff -r, and fixed operator precedence in expr (although Rob is rewriting
  2311. chunks of expr so toysh can use its plumbing for $(( )) ).
  2312. Patrick Ohly fixed the too-aggressive suid permission dropping logic.
  2313. Josh Gao fixed a segfault when find -iname got no argument, and
  2314. made tail -f work right with just one file argument.
  2315. Tom Marshall cleaned up tar's long filename support and improved
  2316. the tar tests, and reported another find bug (with -iname -o -iname not
  2317. tracking copy lifetimes properly) that got fixed.</p>
  2318. <p>Elliott Hughes fixed wc -c to not trust zero length files to actually be
  2319. zero length (/proc does that), fixed "mount -o rw,remount /system" on
  2320. Android, removed trailing spaces on ps -o cmdline, fixed pkill -9 and
  2321. the corresponding tests, made "insmod -" work, fixed top -b and tail -NUM,
  2322. pointed out that ps shouldn't trim numeric fields for display size limits,
  2323. and added some more
  2324. explicit "sort" calls to make pipelines so build tempfiles are easier to cache.
  2325. Rob <a href=https://github.com/landley/toybox/commit/32b3587af261>fixed an insane sed thing</a> the perl 5.22 build was doing.
  2326. Fixed mount -o to properly pass in leftover string data, and
  2327. <a href=http://lists.landley.net/pipermail/toybox-landley.net/2016-March/004790.html>documented how to use toybox to mount nfs</a> (warning: kernel patch
  2328. to fix some bitrot in the kernel NFS driver's string parsing attached
  2329. to that message).</p>
  2330. <p>George Burgess IV corrected some variable types in traceroute.
  2331. Base64 now wraps == properly. Fixed two bzcat segfaults reported by
  2332. John Regehr. Andy Chu found a segfault in "sed -e 'c\'" with no trailing
  2333. line, and implemented mv -n and cp -n. The cyanogenmod guys pointed out that
  2334. cp -a shouldn't complain if a non-root user can't chown, and we added
  2335. the output path to cp -r error messages while we were there (before was just
  2336. the filename).</p>
  2337. <p>Samuel Holland fixed blkid's handling of vfat labels, and
  2338. fixed a segfault when basename was passed an empty string and an empty
  2339. suffix. Davis Mosenkovs fixed touch -t seconds parsing.
  2340. Rob fixed a bunzip bug reported by John Regehr (the bad CRC
  2341. error message was printing a NUL argument).</p>
  2342. <p>Not all of the commands build standalone, but more of them do now;
  2343. scripts/single.sh can now build a "mv" that isn't actually "cp".
  2344. The dependencies are more granualr, so "make top; make ps" no longer
  2345. produces a broken ps that ignores -A (because ps.o wasn't getting rebuilt
  2346. even though top had the FLAG macros for -A zeroed).</p>
  2347. <h2>Build</h2>
  2348. <p>Rob added a <b>warning when building commands out of
  2349. pending</b>. (The pending directory is full of code that hasn't been
  2350. properly vetted. Use at your own risk.)</p>
  2351. <p><b>New build targets let you build individual commands by name</b>, ala
  2352. "make ls cat ps", and you can run the test suite for each standalone
  2353. command with "make test_ls" and such.
  2354. "make list" shows all such standalone commands in defconfig, and
  2355. "make list_pending" shows unfinished commands from toys/pending
  2356. ("make list list_pending" shows both together). "make clean" now deletes
  2357. these filenames at the top level, and the corresponding unstripped files
  2358. live in the directory generated/unstripped.</p>
  2359. <p>Nicholas Boichat suggested switching make.sh to use $! for process
  2360. enumeration during parallel builds (which is both more efficient and more
  2361. portable), and suggested shell builtin replacements for wc/awk/sed so the
  2362. build loop has fewer forks now.</p>
  2363. <p>Lots of work on the test suite, much of it due to Andy Chu. It now
  2364. consistently prints the name of the command being tested at the start of each
  2365. test (and the common infrastructure does that, not each individual test), and
  2366. "make tests" actually runs all the available tests now.
  2367. Seperated pgrep and pkill tests, split lsattr/chattr, added fstype and base64
  2368. tests. The "tests/files" directory now collects files for tests to
  2369. use, with blkid, bzcat, and utf8 subdirectories: the $FILES variable
  2370. gives a path to it, so "$FILES/blkid/ext2.bz2" and so on.
  2371. The testsuite now has test files with 3 different types of "not utf8 output"
  2372. sequences that require escaping, plus some combining character torture
  2373. tests, direction reversals, and so on.</p>
  2374. <p>Added dependencies on TOYBOX_FORK to various pending commands that need
  2375. nommu conversion (which should fix the allyesconfig build).</p>
  2376. <p>Static builds with selinux should work again.</p>
  2377. <h2>Library</h2>
  2378. <p>New bufgetgrgid() and bufgetpwuid() functions cache previous lookup info
  2379. rather than repeatedly traversing /etc/passwd and /etc/group (which is slow).
  2380. Added xpipe() to lib to catch pipe creation failure.
  2381. The HELP_ macros generated by config2help.c now use a capital prefix
  2382. to avoid collicing with help_exit() and such.</p>
  2383. <p>The dirtree infrastructure got a cleanup pass in preparation for adding
  2384. infinite recursion depth support (needed by rm -r), updated the
  2385. <a href=code.html#ib_dirtree>documentation</a> to describe the new
  2386. semantics (removing dirtree_start() and adding dirtree_flagread()).
  2387. Now dirtree_recurse() takes the new dirfd as an argument.</p>
  2388. <p>Split out _xexit() from xexit() and let sigatexit() set multiple
  2389. callbacks.</p>
  2390. <p>For years the man pages have said to #include <sys/types.h> to get
  2391. major/minor/makedev but now that glibc
  2392. <a href=https://sourceware.org/ml/libc-alpha/2015-11/msg00253.html>has vowed
  2393. to break existing programs</a> and replace it with another nonstandard header
  2394. not in posix or lsb, we added our own functions to lib/ to do the transform
  2395. ourselves (based on what the kernel actually expects).</p>
  2396. <h2>Portability</h2>
  2397. <p>Debian unstable started needing an extra header #include for some reason, and
  2398. although printf("%.*s", INT_MAX, s) worked fine on Ubuntu 12.04 it
  2399. didn't on 14.04, so added a workaround for that. Typecast a printf because
  2400. wchar_t isn't a rigidly defined size. RLIMIT_RTTIME was
  2401. added to the kernel in 2008 but you can't expect uClibc to have noticed yet,
  2402. nor did it #define MS_RELATIME (added in 2006), or prlimit (2010)...
  2403. (Given the improvements in musl and bionic, uClibc support may be dropped
  2404. in a future release.) Given that the xattr functions were added during
  2405. linux 2.5, we can #include its header unconditionally.</p>
  2406. <p>Renamed basename_r() to something else to avoid conflicting with freebsd's
  2407. libc, and both scripts/install.h and scripts/config2help.c no longer include
  2408. toys.h (to make cross-compiling from systems we don't run on easier).</p>
  2409. <p>Debian bug 635570 did something unspeakably nonportable, depending on
  2410. "sed -e 'a\'" (with no next line of the pattern, so an unterminated
  2411. continuation) to add a newline to the last line of input if and only if
  2412. that last line of the input didn't have a newline, and to take no other
  2413. action. This is well into "depending on a bug" territory, but we implemented
  2414. it because otherwise Debian's install broke. (Of course this behavior
  2415. is undocumented, non-obvious, and doesn't really make logical sense.)</p>
  2416. <p>CONFIG_TOYBOX_NORECURSE now disables the stack measuring logic (which
  2417. was giving some "security" code fits). Also we typecast pointers to (long)
  2418. before comparing them to avoid spurious compiler "optimizations" that
  2419. break the code.</p>
  2420. <a name="02-02-2016" /><a href="#02-02-2016"><hr><h2><b>February 2, 2016</b></h2></a>
  2421. <blockquote><p>"I checked it very thoroughly," said the computer, "and that
  2422. quite definitely is the answer. I think the problem, to be quite honest with
  2423. you, is that you've never actually known what the question is."
  2424. </p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  2425. <p><a href=downloads/toybox-0.7.0.tar.gz>Toybox 0.7.0</a>
  2426. (<a href=https://github.com/landley/toybox/releases/tag/0.7.0>git commit</a>)
  2427. is out.</p>
  2428. <p>The new commands in defconfig are <b>iotop</b>, <b>top</b>, <b>pgrep</b>,
  2429. and <b>pkill</b>
  2430. (most replacing corresponding versions from pending). Added grep -ABC,
  2431. swapon -d (discard), mkswap -L (label) and UUID support, and find -delete.
  2432. Izabera added free -h and unshare -f. Josh Gao implemented tail -f.
  2433. Jose Bollo submitted cp --preserve=context,attr. Kylie McClain added
  2434. mktemp -u.</p>
  2435. <p>In pending there's the start of a vi command, and Sameer Pradhan contributed
  2436. a new dhcp6. This cycle saw several rounds of route cleanup and a little dhcp
  2437. cleanup, but neither are complete yet. Lipi Lee did some cleanup to netstat.c
  2438. and Elliott Hughes removed warnings from traceroute.</p>
  2439. <p>Lots of updates to ps: several new -o options, -k (--sort) -O and -M,
  2440. improved compatibility with Android's historical behavior, and
  2441. extensive internal code cleanup (including the removal of all
  2442. the magic constants).</p>
  2443. <h3><b>Website</b></h3>
  2444. <p>Dreamhost restored the <a href="#12-21-2015">missing 11 months</a>
  2445. to the mailing list archive, in the process deleting the month after
  2446. that. Now they've asked if I have mbox files archiving the new
  2447. gap (between December 20, 2015 to January 21, 2016, and presumably they
  2448. could also fill in the gap from December 14, 2014 to January 3, 2015 that's
  2449. been there since the last time they did this),
  2450. but due to some gmail filtering I've
  2451. <a href=http://landley.net/notes-2012.html#15-10-2012>never
  2452. been able to disable</a>, my copy of those files is spread among 3 different
  2453. mbox files I'd have to sort/filter/collate. (It's on the todo list.)</p>
  2454. <p>Added a code of conduct to the README (we're
  2455. <a href=https://engineering.twitter.com/opensource/code-of-conduct>borrowing twitter's</a>) because somebody
  2456. made it necessary.</p>
  2457. <h3><b>Bugfixes</b></h3>
  2458. <p>Fixed another sed bug where any ] right after [ was skipped (not just the
  2459. first one in the range, so [[] didn't terminate). Fixed sort -f and added test cases.
  2460. Assume 80 columns in "ls -m | cat", ls -L is no longer backwards,
  2461. and ls of files with no paths no longer uses an uninitialized (zero) dirfd.
  2462. Several bugfixes
  2463. to find (Gilad Arnold fixed -perm, Daniel K. Levy fixed "find . -exec echo {}",
  2464. and while we're there I fixed find --prune, made "find . -execdir
  2465. echo {} + -execdir ls {} +" work, and ripped out the environment size
  2466. measuring code that checked for a 128k limit removed back in linux 2.6.22).
  2467. Elliott Hughes fixed the date command's parsing of 4 digit
  2468. years and documented the %s escape, fixed hwclock -u, and pointed out
  2469. that runcon needs to exec to do its job (not recursively call another
  2470. command_main() in the same process). Tom Marshall reported that blkid was
  2471. handling ext2 wrong. Mike Moreton corrected cpio extraction's uid and gid
  2472. values, and added a --no-preserve-owner option. Fixed the SUID permission
  2473. dropping logic (which was a bit over-zealous, preventing some commands from
  2474. running at all).</p>
  2475. <p>I'm told that debian-testing broke its libc so the nsenter build breaks,
  2476. but my attempts to install the debian-testing network cd image under
  2477. qemu keep breaking. Maybe someday they'll fix it enough I can actually
  2478. reproduce the problem. (Debootstrap under unbuntu builds an ubuntu-flavored
  2479. chroot in which toybox builds fine.)</p>
  2480. <h3><b>Documentation</b></h3>
  2481. <p>Rewrite of the about.html page, tweaks to design.html, and a re-triage of
  2482. sbase in roadmap.html. Update to mkstatus.py to collate multiple span
  2483. tags with the same id, resulting in a larger status.html page (which
  2484. was previously ignoring some commands in the roadmap).</p>
  2485. <p>Expanded the defconfig/allyesconfig/allnoconfighelp text in "make help"
  2486. to explain what they're for.</p>
  2487. <h3><b>infrastructure</b></h3>
  2488. <ul>
  2489. <li><p>Expanded toys.optargs to 64 bits so a command can have more than 32 options.</p></li>
  2490. <li><p>Added NOEXIT() wrapper to turn xwrap() functions into warning versions
  2491. using the existing longjump(toys.rebound) infrastructure.</p></li>
  2492. <li><p>Renamed dirtree->data to dirfd and stopped storing symlink length
  2493. into it (this fixed a bug where following symlinks to directories
  2494. didn't give a valid directory filehandle, noticeable with ls -Z).</p></li>
  2495. <li><p>New TAGGED_ARRAY() infrastructure generates index and bitmask macros
  2496. for arrays of structures starting with a name string.</p></li>
  2497. <li><p>New lib/linestack.c for utf8 fontmetrics (draw_str() and utf8len()
  2498. and so on), and for tracking multiple lines of text
  2499. (vi, less, shell history) that need wordwrapping and scrolling up/down.</p></li>
  2500. <li><p>Upgrades to lib/interestingtimes.c: scan_key() now has a timeout
  2501. in milliseconds and recognizes more sequences including ANSI
  2502. window size probes. New utf8 test files in tests/files/utf8 including
  2503. sequence reversing, stacked combining chars, and all three types of
  2504. unprintable sequences (low ascii <32 ala ^X, invalid utf8 sequences ala
  2505. <AB><CD>, and invalid unicode code points ala U+1234).</p></li>
  2506. <li><p>More comma handling code in lib.c: comma_args()</p></li>
  2507. <li><p>Added error_msg_raw() to shut up fortify's endless static checking false
  2508. positives.</p></li>
  2509. <li><p>readfileat() can now realloc() in a loop to read long files
  2510. ("zcat | insmod" needed it).</p></li>
  2511. </ul>
  2512. <h3><b>Roadmap</b></h3>
  2513. <p>We're getting close to having a self-hosting development environment
  2514. using toybox for the command line. The remaining busybox commands in
  2515. <a href=http://landley.net/aboriginal/about.html>Aboriginal Linux</a> are:</p>
  2516. <blockquote><p><b>
  2517. awk bunzip2 bzcat bzip2 dd diff expr fdisk ftpd ftpget ftpput gunzip gzip
  2518. less ping route sh sha512sum tar test tr unxz vi wget xzcat zcat
  2519. </b></p></blockquote>
  2520. <p>And the remaining non-busybox commands in Aboriginal Linux's build/host
  2521. directory (from the distcc, genext2fs, e2fsprogs, zlib, and squashfs packagesi)
  2522. are:</p>
  2523. <blockquote><p><b>
  2524. mke2fs fsck.ext2 resize2fs distcc genext2fs unsquashfs distccd mksquashfs tune2fs
  2525. </b></p></blockquote>
  2526. <p>Squashfs and distcc are probably out of scope for toybox, but mke2fs,
  2527. fsck.ext2, resize2fs, genext2fs, and tune2fs should all be added to the
  2528. above "busybox" replacement list.</p>
  2529. <p>Remind me to include this countdown in future releases. Once they've all
  2530. been replaced, the next goal is <a href=http://landley.net/aboriginal/about.html#selfhost>building AOSP under itself</a>.</p>
  2531. <p>See the full <a href=roadmap.html>roadmap</a> and <a href=status.html>status</a>
  2532. pages for more details.</p>
  2533. <a name="12-21-2015" /><a href="#12-21-2015"><hr><h2><b>December 21, 2015</b></h2></a>
  2534. <p>Yes, 11 months have gone missing from the mailing list web archive.</p>
  2535. <p>Yesterday evening Dreamhost's mailman server went down (timing out trying
  2536. to connect). I poked them about it, they
  2537. <a href=https://twitter.com/landley/status/678781271670149121>blamed
  2538. DNS</a>, I explained that the hang was _after_ the DNS lookup and
  2539. entered the dig info into the trouble ticket showing the IPs the DNS
  2540. queries were returning, they reinstalled the server at that IP from what I
  2541. assume was their most recent backup, and that's how 11 months of messages
  2542. vanished out of the archive.</p>
  2543. <p>I've <a href=https://twitter.com/landley/status/679114451975467008>continued to poke them about it</a> but I honestly believe that's the best they
  2544. can do. <a href=http://landley.net/dreamhost.txt>Last time</a>
  2545. this sort of thing <a href=http://landley.net/dreamhost2.txt>happened</a>
  2546. we went back and forth for months, so I added a link to a backup web
  2547. archive (in the nav bar on the left) that isn't controlled by dreamhost,
  2548. and thus doesn't gratuitously lose data on a regular basis. (I note
  2549. the earlier hole in Dreamhost's archive was never fixed either. That
  2550. was data never getting archived, this is a year's worth of data that
  2551. was in the archive until yesterday vanishing after the fact.)</p>
  2552. <p>If you're wondering why the <a href=http://lists.landley.net>top level</a>
  2553. list page has been "temporarily disabled" for multiple years now... you'd have
  2554. to ask Dreamhost. I know I have. More than a dozen times.</p>
  2555. <a name="03-11-2015" /><a href="#03-11-2015"><hr><h2><b>November 3, 2015</b></h2></a>
  2556. <blockquote><p>"Alright," said Ford. "How would you react if I said that I'm
  2557. not from Guildford after all, but from a small planet somewhere in the vicinity
  2558. of Betelgeuse?" Arthur shrugged in a so-so sort of way. "I don't know," he
  2559. said, taking a pull of beer. "Why - do you think it's the sort of thing you're
  2560. likely to say?"</p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  2561. <p><a href=downloads/toybox-0.6.1.tar.gz>Toybox 0.6.1</a>
  2562. (<a href=https://github.com/landley/toybox/releases/tag/0.6.1>git commit</a>)
  2563. is out.</p>
  2564. <p>We have a new <b>ps</b> command with all the -o fields posix wants (although
  2565. it doesn't accept BSD non-dash option syntax yet), and <b>bunzip2</b> (not just
  2566. bzcat but the proper extract-in-place command).
  2567. Sameer Pradhan added <b>hostid</b> and <b>fsync</b>.
  2568. Elliott Hughes added <b>flock</b>.
  2569. <p>The people waiting for <b>human readable number support</b> (du -hH, ls -h,
  2570. and so on) can thank Elliott Hughes for implementing it. (Our output doesn't
  2571. exactly match others' because we our "binary" mode will say 1.0G instead of
  2572. 1024M, which is a bug in the other one we didn't emulate.)</p>
  2573. <p>The other big news is <b>nommu support</b>, tested on the new
  2574. <a href=http://nommu.org/jcore>jcore</a> processor but presumaby working
  2575. on any nommu system. A few commands don't support nommu yet, but those
  2576. are disabled by dependencies on TOYBOX_FORK in menuconfig when building
  2577. for nommu. The roadmap now has a large section analyzing the uClinux
  2578. project (note that <a href=http://nommu.org>nommu.org</a> is slowly replacing
  2579. <a href=http://uclinux.org>uclinux.org</a> as the standard repository of
  2580. all knowledge and wisdom about nommu. The old site <a href=#12-02-2012>contains
  2581. much that is apocryphal</a>, or at least wildly inaccurate, and the new one
  2582. is trying to improve on that).</p>
  2583. <p>Both "make change" and scripts/single.sh (for building standalone commands
  2584. without the multiplexer logic) now use the top level .config
  2585. for toybox global settings such as Linux Security Blanket Module selection,
  2586. (so make defconfig before change now).</p>
  2587. <p>Documentation updates to the <a href=code.html>code</a> and
  2588. <a href=roadmap.html>roadmap</a> pages.</p>
  2589. <h3>pending</h3>
  2590. <p>In the pending directory Sameer Pradhan added tftp,
  2591. and Elliott Hughes sent lsof. Isaac Dunham upgraded mdev,
  2592. reboot, init, login, and modprobe, and fixed a distro-specific build break in
  2593. scripts/mkflags.h. Elliott Hughes and Lipi Lee made netstat -p handle
  2594. command lines longer than 21 characters, and Elliott fixed netstat -e and
  2595. some build warnings. Yeongdeok Suh fixed a warning in dhcpd.
  2596. I started cleanup on pgrep/pkill.</p>
  2597. <h3>Command updates, bugfixes, and infrastructure</h3>
  2598. <p>The multiplexer's "command not found" error exit is now 127, so now you can't
  2599. distinguish between a command not being found in the multiplexer and
  2600. the multiplexer itself not being found by the shell, because people wanted
  2601. that for some reason.</p>
  2602. <p>Elliott Hughes made date reject invalid dates rather
  2603. than set the clock to something weird (setting the clock 100 years into the
  2604. future makes most Linux desktops surprisingly unhappy, and ntpdate won't fix it
  2605. either), fixed several ls -l display issues (user/group field ordering,
  2606. make user/group/lsmcontext left aligned), did the aforementioned
  2607. extensive work on human readable number output, fixed ionice's default
  2608. class, fixed a mv overwrite bug, made df's columns auto-size, added
  2609. --ppid and -Z to ps, and teamed up with Daniel K. Levy to fix
  2610. a segfault in find's handling of -newer -group or -user.</p>
  2611. <p>Hyejin Kim added stat -c %T support. Colin Cross worked
  2612. on vmstat fixing
  2613. a header printing bug and calculating the bi and bo columns in the right
  2614. units. Isabella Parakiss reported that sed -e "/x/c\" -e "y" added an extra
  2615. newline and that grep -w '\(x\)\1' didn't work, both now fixed.
  2616. Alistair Strachan fixed several problems with switch_root. Kylie McClain
  2617. pointed out env should be able to clear variables via NAME= syntax.
  2618. Dima Krasner added support for running blkid without a partition (so it shows
  2619. all partitions). Hyejin Kim sent in a bunch of static analysis bug reports.</p>
  2620. <p>Isabella Parakiss reported that sed -e "/x/c\" -e "y" added an extra
  2621. newline and that grep -w '\(x\)\1' didn't work, both now fixed.
  2622. Alistair Strachan fixed several problems with switch_root. Kylie McClain
  2623. pointed out env should be able to clear variables via NAME= syntax.
  2624. Dima Krasner added support for running blkid without a partition (so it shows
  2625. all partitions). Hyejin Kim sent in a bunch of static analysis bug reports.</p>
  2626. <p>Two large thinko fixes in oneit: -3 was always enabled (which would
  2627. eventually block if the child never read the exiting PID numbers from its file
  2628. descriptor #3 until the pipe filled up), and the signal handlers weren't
  2629. set up right (for requesting semi-graceful halt/poweroff/reboot).
  2630. Calling install without a mode is now 0755, and install -g 0 no longer clashes
  2631. with cp --preserve. Better error message for ls -r on unreadable
  2632. directories, and ls -Z now uses O_PATH (with the /proc/self/fd/%d
  2633. workaround for kernel stupidity as necessary).</p>
  2634. <p>Date now understands @unixtime[.fraction] and uses -D for
  2635. the set-side format (matching busybox's extension for this). The seq -f
  2636. string now checks that it's got exactly one %f escape with the correct
  2637. attributes (and a whole bunch of test cases for it). Fixed a bug
  2638. in od that screwed up the position indicator on arm and mips.
  2639. In stat the d/h units moved from %d %D to the default string.
  2640. And patch can now correctly apply hunks with trailing context to the start of
  2641. the file.</p>
  2642. <p>The prompt argument moved out of yesno() (the caller can print the prompt
  2643. themselves). Replaced toys.exithelp with help_exit(). Added new
  2644. XVFORK() macro, and xpopen_both() calls /proc/self/exe when passed
  2645. a NULL argv (see cpio -p for example usage). Replaced toys.recurse
  2646. with toys.stacktop so the recurse or re-exec decision is now based
  2647. on bytes of stack space used. Marked a bunch of command-local functions
  2648. static.</p>
  2649. <p>New additions to lib/ include strlower(), xconnect(), and the
  2650. aforementioned help_exit().
  2651. The testsuite now has some infrastructure tests based on "example"
  2652. commands such as toys/examples/test_human_readable.c.
  2653. The login command finally got a long-overdue cleanup (it's one of the
  2654. commands that predate the "pending" directory but were part of the reason
  2655. for it). Hexedit had an
  2656. uninitialized variable (of course gcc didn't spot it, it was too busy
  2657. warning about "may be used uninitialized but never actually is" variables).</p>
  2658. <p>Tweaked makefile so
  2659. "make CROSS_COMPILE=prefix-" (as well as "CROSS_COMPILE=prefix- make",
  2660. which still works). Toybox is now installed chmod -w so broken installers
  2661. (like the bunzip2 package's) that try to overwrite existing binaries won't
  2662. knock out the whole of toybox.
  2663. GCC 5.2.0 stopped being able to compile Linux 2.6.12's kconfig, but
  2664. we added a workaround. You can now build uptime without utmpx.h.
  2665. Alejandro Joya pointed out that enabling smack required smack on the host
  2666. as well as target when cross compiling, which is now fixed.</p>
  2667. <p>Note: toybox can autodetect nommu support when building with a uClibc
  2668. toolchain such as <a href=http://landley.net/aboriginal/downloads/binaries/old/1.4.3/cross-compiler-sh2eb.tar.gz>the one from Aboriginal Linux</a>,
  2669. but <a href=http://github.com/richfelker/musl-cross-make>with musl-libc</a>
  2670. you'll have to enable CONFIG_TOYBOX_MUSL_NOMMU_IS_BROKEN to work around the
  2671. fact they provide a non-functional fork() implementation that always returns
  2672. -ENOSYS, to prevent you from compile-time probing for nommu support when
  2673. cross-compiling. Unfortunately "preventing you from probing" seems to be
  2674. an explicit policy with musl, they also don't provide an "#ifdef __MUSL__"
  2675. because their library is perfect and you're only ever allowed to work around
  2676. other people's bugs, not theirs. So we have to use menuconfig to manually
  2677. enable musl-specific bug workarounds.</p>
  2678. <a name="23-07-2015" /><a href="#23-07-2015"><hr><h2><b>July 23, 2015</b></h2></a>
  2679. <p>I recreated the <a href=downloads/toybox-0.6.0.tar.gz>0.6.0 source tarball</a>
  2680. (new sha1sum 08fb1c23f520c25a15f262a8a95ea5b676a98d54)
  2681. because I forgot to add --prefix to the git archive command when I updated
  2682. my release script from mercurial, so the files weren't in an enclosing
  2683. directory. (Ooops.)</p>
  2684. <a name="19-07-2015" /><a href="#19-07-2015"><hr><h2><b>July 19, 2015</b></h2></a>
  2685. <blockquote><p>
  2686. The reason why it was published in the form of a micro sub meson electronic
  2687. component is that if it were printed in normal book form, an interstellar
  2688. hitchhiker would require several inconveniently large buildings to carry it
  2689. around in.</p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  2690. <p><a href=downloads/toybox-0.6.0.tar.gz>Toybox 0.6.0</a>
  2691. (<a href=https://github.com/landley/toybox/releases/tag/0.6.0>git commit</a>)
  2692. is out. (Yes, git. See the <a href=#05-04-2015>previous news entry</a>.)</p>
  2693. <p>Sorry for the unusually long gap between releases. Since last release Ye
  2694. Olde Project Maintainer traveled to japan twice and had two more "once
  2695. a century" floods at home. (Probably a coincidence.) Still catching up.</p>
  2696. <h3><b>CELF/ELC talk and Wikipedia[citation needed] article</b></h3>
  2697. <p>I gave another State Of The Toybox talk
  2698. (<a href=https://www.youtube.com/watch?v=04XwAbtPmAg>video</a>
  2699. <a href=http://landley.net/talks/celf-2015.txt>outline</a>), in which I
  2700. repeat my <a href=http://landley.net/notes-2013.html#07-11-2013>perennial</a>
  2701. <a href=https://twitter.com/landley/status/557309224535851009>complaint</a>
  2702. that Wikipedia[citation needed]
  2703. <a href=http://en.wikipedia.org/wiki/Toybox>still</a>
  2704. <a href=https://en.wikipedia.org/wiki/BusyBox#Controversy_over_Toybox>says</a>
  2705. toybox was relicensed before its hiatus, when relicensing was why
  2706. the hiatus ended.</p>
  2707. <p>Since Wikipedia[citation needed] seems unable to do the
  2708. <a href=#15-11-2011>most</a>
  2709. <a href=http://landley.net/hg/toybox/log/tip/LICENSE>basic</a>
  2710. <a href=http://landley.net/notes-2011.html#13-11-2011>research</a> on
  2711. this point, and has stuck to an incorrect sequence of events for years,
  2712. I've been gradually escalating my attempts to correct them. Toybox
  2713. came out of mothballs in November 2011 <b>because</b> it could be
  2714. relicensed. That's what opened up a new niche busybox wasn't already
  2715. filling with a 10 year headstart.</p>
  2716. <a name="asterisk_back" />
  2717. <p>The article has plenty of smaller issues<a href=#asterisk>*</a>, but
  2718. given that I gave an entire talk at Ohio LinuxFest in 2013
  2719. (<a href=http://landley.net/talks/ohio-2013.txt>outline</a>,
  2720. <a href=https://archive.org/download/OhioLinuxfest2013/24-Rob_Landley-The_Rise_and_Fall_of_Copyleft.mp3>audio</a>) on why I switched away from GPL for
  2721. my projects, that one bugs me.</p>
  2722. <h3><b>New stuff this release</b></h3>
  2723. <p>There's a new android menu in menuconfig, and rather a lot of Linux
  2724. Security Module support (Smack for Tizen from Xavier Roche and José Bollo,
  2725. and SELinux for Android from Elliott Hughes; see
  2726. the Security Blanket menu under global settings in menuconfig) has
  2727. trickled in, although there's still more to come.</p>
  2728. <p><b>New commands:</b> Added reset, nproc, ionice, and iorenice.
  2729. Elliott Hughes contributed xxd, runcon,
  2730. restorecon, load_policy, getenforce, setenforce, getprop, and setprop.
  2731. Promoted shred, nsenter, and hwclock.</p>
  2732. <p>You can once again build catv now the flag infrastructure's been updated to
  2733. let it coexist with cat -v.
  2734. And on a long plane flight I wrote
  2735. hexedit, an interactive hex editor that implements the start of
  2736. cursor control infrastructure (for eventual use by less and vi and shell
  2737. command history and so on).</p>
  2738. <p><b>New options:</b> Added sed -E as a BSD-compatible synonym for -r.
  2739. Upgraded oneit with -r (restart), -3 (send exiting PID values to child),
  2740. and signal handling. Added -v option to timeout, -m to mknod, -u to shred,
  2741. -t to dmesg, and -123 to head and tail. Added implicit "." to grep -r without
  2742. any files to work on. Hyejin Kim requested prefix support for truncate -s.
  2743. Greg Hackman added -inum to find.
  2744. Jan Cybulski added the smack side of ls -Z support. Various patches also
  2745. added -Z to mkdir, mknod, and mkfifo.
  2746. Basic cp --preserve support went in, but not yet the xattr/LSM parts.</p>
  2747. <p>The toybox command now has a --version option,
  2748. which uses "git describe" if available.</p>
  2749. <p><b>Build infrastructure:</b>
  2750. The "make change" target now saves the output of each failed standalone
  2751. command build in a .bad file, and "make defconfig" is quieter now.</p>
  2752. <p>Paul Barker submitted a large patch changing command install paths so
  2753. "toybox can be installed alongside busybox without confusing
  2754. update-alternatives". (There's some argument over
  2755. what the right paths should be, and I'm waiting for
  2756. people to tell me what else needs fixing because I have no idea. I've
  2757. been symlinking /bin to /usr/bin since 2002
  2758. <a href=http://landley.net/writing/hackermonthly-issue022-pg33.pdf>for
  2759. historical reasons</a>.)</p>
  2760. <p><b>Docs:</b> The repository link now goes to github, with another link
  2761. to the commit rss feed.</p>
  2762. <p>Elliott Hughes updated the Android section of the roadmap
  2763. (and he would know). Redid bits of scripts/mkstatus.py to make updating
  2764. status.html easier, and the README is larger.</p>
  2765. <p>More description of option parsing in code.html, which now describes the
  2766. FLAG_x macros, switching flag macro sets with FOR_newcommand, how
  2767. configuration zeroes flag macros and using FORCE_FLAGS to suppress the
  2768. zeroing of options shared between commands. Also added description of ";"
  2769. to make --longopts take an optional =value part, and more about TOYBOX_DEBUG
  2770. to check NEWTOY() option strings (otherwise a bad option string makes
  2771. lib/args.c obviously segfault, but doesn't explain why).</p>
  2772. <p>Added a "Why 0BSD?" section to license.html when submitting zero clause bsd
  2773. to SPDX (according to the pending license spreadsheet, it's been approved for
  2774. SPDX 2.2).</p>
  2775. <p>The old list of commands needing cleanup but not in pending was
  2776. removed from toys/pending/README and instead the issues were added
  2777. as TODO comments in the individual commands.</p>
  2778. <p><b>Bugfixes:</b>
  2779. Fixed mount -a segfaulting without -O (reported by Janus Troelsen),
  2780. and made it try a "become rw" ioctl() on the block device before falling
  2781. back to mounting read only (because Android expects that).
  2782. Fixed printf -- and printf ---. Lots of tweaks to ls -l spacing with
  2783. different options. Make touch -d and -t actually set time when you don't
  2784. specify nanoseconds.
  2785. Fixed a subtle bug where recursive calls (toybox commands that run other
  2786. toybox commands) weren't resetting all their state. (This manifested as
  2787. a "no }" error from "find | xargs sed", but could cause other problems.)
  2788. And David Halls reported another sed bug trying to compile libiconv (which
  2789. left extra \ at the start of lines in a generated shell script, breaking
  2790. the build). Output an error message for "cat /mnt".</p>
  2791. <p>Kylie McClain reported that mktemp broke when $TMPDIR was set to an empty
  2792. string (which is not the same as unset), that install/find didn't support
  2793. numeric uid/gids, and that sort -z affects both input and output.
  2794. Isabella Parakiss fixed a printf.c bug.
  2795. David Halls fixed bugs in install -D and find -exec. Samuel Holland
  2796. fixed unshare -r. Hyejin Kim fixed makedevs with a count of 1, fold -w
  2797. range checking, an error path in scripts/mkflags.c, added -i to dhcpd,
  2798. and stopped su from prompting the root user for the new user's password.
  2799. Jan Cybulski spotted wrong indentation when combining ls -s and -i with -C and
  2800. -x. José Bollo fixed stat %G. Sameer Pradhan fixed a bug in mkfifo -Z.</p>
  2801. <p>Elliott Hughes asked for a default SIGPIPE handler to disable
  2802. the signal handler bionic's dynamic loader installs (yes really). Still not
  2803. 100% sure what the correct behavior is there. (Posix is
  2804. (<a href=http://permalink.gmane.org/gmane.comp.standards.posix.austin.general/10915>actively unhelpful</a>, but at least they're taking
  2805. <a href=http://austingroupbugs.net/view.php?id=789#c1976>years to
  2806. make up their mind</a>. Elliott also sent patches to fix a typo in
  2807. useradd.test, add missing arguments to error_exit() calls and clean up
  2808. printf() format strings, fix an off by one error in human_readable(),
  2809. fix dmesg -c error reporting, fix a segfault in comma_scan where the option
  2810. was the last item in optlist (triggered by mount -o ro,remount), fix
  2811. hwclock -w, made ifconfig print lowercase MAC addresses (it was bothering
  2812. him), and make terminal_size() read the right environment variable
  2813. (LINES, not ROWS). And he suggested the test suite notice high command exit
  2814. values (corresponding to segfault or other signals).</p>
  2815. <p>People are apparently using toys/pending commands, despite the police tape
  2816. and flashing lights, so added louder warnings to toys/pending/README.
  2817. Elliott Hughes fixed various problems with tar, dd, more, and top.
  2818. Hyejin Kim cleaned up syslogd and dumpleases. Isaac Dunham added hotplug
  2819. support to mdev. Yeongdeok Suh added RFC-3315 ipv6 support to dhcpd.</p>
  2820. <p>I rewrote ps.c from scratch (in pending), but it's not ready for real use
  2821. yet.</p>
  2822. <p><b>Portability:</b>
  2823. On the portability front Bernhard Rosenkranzer fixed a problem where the
  2824. menuconfig code wouldn't compile in C99 mode. (This led to me documenting
  2825. the craptacular nature of kconfig in a README, and the plan to replace it
  2826. sometime before 1.0.) Some extra flags to shut up overzealous llvm warnings
  2827. were added (and have to be probed for because gcc complains about
  2828. arguments it doesn't recognize even when they switch stuff _off_ using
  2829. a standard syntax). Don't depend on malloc(0) to return non-null in ls.
  2830. David Halls fixed some mac/ios portability issues,
  2831. implying somebody's built at least part of toybox on a mac.</p>
  2832. <p>Added basename_r() to lib/lib.c because the posix semantics for basename()
  2833. are stupid but what the gnu guys did to it was appalling.
  2834. Turns out bionic already had a basename_r(), but posix still doesn't.
  2835. Fixed it up in portability.h, but this
  2836. could break more stuff in future. (Correct fix is to lobby posix to add it,
  2837. which would probably take about 15 years...)</p>
  2838. <p><b>Infrastructure:</b>
  2839. The build now checks $LDFLAGS for linker-only flags, and allows the strip
  2840. command to fail (binflt toolchains provide a strip that doesn't work).
  2841. Since time.c uses floating point, added TOYBOX_FLOAT dependency in config.</p>
  2842. <p>There's a lib/lsm.h defining varous inline functions for linux
  2843. security modules stuff, if (lsm_enabled()) should turn into a compile-time
  2844. constant 0 and let code drop out when TOYBOX_LSM_NONE selected, but
  2845. testing against CFG_TOYBOX_LSM_NONE or derived symbols is still useful
  2846. becuase when it _is_ enabled the probe turns into a system call you
  2847. don't want to repeat too much.</p>
  2848. <p>Switched a bunch of commands from signal() to xsignal(). Factored out
  2849. xgetgrnamid() and xgetpwnamid() into xwrap.c. Make time.c depend on
  2850. TOYBOX_FLOAT (since it always uses float so shouldn't be available on
  2851. build targets without even software float). Added readfileat() to lib/lib.c.</p>
  2852. <p>The dirtree infrastructure now passes in full flags for the old symlink
  2853. field, and the new DIRTREE_SHUTUP flag disables warnings if a file vanishes
  2854. out from under you during traverse. New dirtree_start() wrapper to
  2855. create dirtree root with only two arguments.</p>
  2856. <p>The not-curses infrastructure introduced by hexedit mostly moved to
  2857. lib/interestingtimes.c.</p>
  2858. <a name="asterisk" />
  2859. <a href="#asterisk_back" />Asterisk:</a> such when
  2860. Tim contacted me (my blog says a couple days before nov 13, 2011, I.E.
  2861. 11/11/11 not some specific day 2 months later) to ask if I wanted to work
  2862. on a new project he was proposing called
  2863. <a href=http://www.elinux.org/Busybox_replacement_project>BentoBox</a>
  2864. (because I used to do busybox, he'd forgotten toybox existed
  2865. until I brought it up). And don't ask me what "focuses not on compatibility
  2866. with its GNU counterparts" means when CP_MORE adds 7 non-posix options
  2867. and toys/other has 84 commands in neither posix nor LSB. I think they're
  2868. struggling to explain the difference having dismissed "licensing" as being
  2869. the reason it started up again after a long hiatus? The reason I don't think
  2870. GNU is special is there are a half-dozen other independent
  2871. implementations of the same unix command tools out there (AT&amp;T,
  2872. BSD, Coherent, Minix, plan 9, busybox, toybox, and several more analyzed in
  2873. the <a href=roadmap.html>roadmap</a>, and that's ignoring the implementations
  2874. written for DOS or in assembly over the years). But I do care what
  2875. Linux From Scratch expects, and if it's
  2876. <a href=http://archive.linuxfromscratch.org/lfs-museum/7.6/LFS-BOOK-7.6-NOCHUNKS.html#ch-tools-gcc-pass1>calling mv -v</a>
  2877. then I impelement mv -v
  2878. even if <a href=http://landley.net/toybox/roadmap.html>posix hasn't got
  2879. it</a>. And I don't know why "gnu counterparts" would describe this when
  2880. util-linux isn't a gnu package, nor are info-zip, e2fsprogs, kmod, less,
  2881. procps, shadow, sysklogd, vim, zlib, sudo, dhcpcd...</p>
  2882. <a name="05-04-2015" /><a href="#05-04-2015"><hr><h2><b>April 5, 2015</b></h2></a>
  2883. <p>Since <a href=https://android.googlesource.com/platform/external/toybox/>android</a> and
  2884. <a href=https://git.tizen.org/cgit/platform/upstream/toybox.git>tizen</a>
  2885. and <a href=https://github.com/kraj/meta-musl/tree/master/recipes-core/toybox>openembedded</a>
  2886. and <a href=https://packages.gentoo.org/package/sys-apps/toybox>gentoo</a>
  2887. and so on have all been using Georgi Chorbadzhiyski's git mirror rather
  2888. than the mercurial repository, I bit the bullet and switched the project's repo
  2889. <a href=https://github.com/landley/toybox>to git</a>. Georgi's
  2890. <a href=https://github.com/gfto/toybox>mirror</a> is now pulling from that.</p>
  2891. <a name="25-02-2015" /><a href="#25-02-2015"><hr><h2><b>February 25, 2015</b></h2></a>
  2892. <blockquote><p>"A common mistake that people make when trying to design
  2893. something completely foolproof is to underestimate the ingenuity of
  2894. complete fools."</p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  2895. <p><a href=downloads/toybox-0.5.2.tar.gz>Toybox 0.5.2</a>
  2896. (<a href=/hg/toybox/shortlog/1702>commit 1702</a>) is out.</p>
  2897. <p>New promoted commands: sed (finally fixed enough it builds Linux From
  2898. Scratch), printf (cleaned up and promoted), shred and
  2899. base64 (the Tizen guys wanted them), getenforce, setenforce, and chcon (android),
  2900. mix (promoted with fixes from Isaac Dunham), nsenter (from
  2901. Andy Lutomirski, merged into unshare).</p>
  2902. <p>Elliott Hughes submited a bunch of patches to support Android (to
  2903. both toybox and Bionic libc, which he maintains). On toybox's end this
  2904. involved a lot of fixups to portability.[ch] and fixes to over a dozen
  2905. commands, plus several new ones. Other portability fixes included working
  2906. with buildroot's uclibc fork and building for nommu targets.</p>
  2907. <p>The new "make change" target builds each toybox command as a standalone
  2908. binary. Rather a lot of commands that didn't build by themselves (mv depending
  2909. on cp and so on) were hit with a large rock until they built standalone.
  2910. This involved rewriting bits of option parsing, more elaborate dependency
  2911. generation, making each command have its own config
  2912. symbol and main() function (even when it's just a wrapper calling another
  2913. command's main()), and so on. Also, some commands can't be built standalone
  2914. at a conceptual level: "help" describes other enabled commands and "sh"
  2915. has a number of bulitin commands (cd, exit, set) that require the
  2916. multiplexer infrastructure, so "make change" filters them out.</p>
  2917. <p>The mailing list's web archive is still screwed up. Dreamhost has
  2918. been trying to fix it since approximately September. There are
  2919. <a href=http://www.mail-archive.com/[email protected]/>two</a>
  2920. <a href=http://news.gmane.org/gmane.linux.toybox>other</a> less broken
  2921. archives, but neither has quite the same UI as mailman.</p>
  2922. <h3>Bugfixes and tweaks</h3>
  2923. <p>Cynt Rynt sent in tests for ifconfig,
  2924. Robert Thompson taught factor to accept whitespace separated arguments,
  2925. Hyejin Kim pointed out that some of mktemp's longopts were attached to
  2926. the wrong short options,
  2927. Luis Felipe Strano Moraes fixed a wrong free() call in bootchartd in pending.
  2928. Patches from Ashwini Sharma to make "df /dev/node" work, prevent du from
  2929. looping endlessly following symlinks, and to make expr.c
  2930. (in pending) understand == and regex matches. (Speaking of expr, it gets
  2931. priority groupings wrong but the bug was actually in the posix spec's
  2932. HTML conversion. They fixed the posix spec upstream for us. Still need
  2933. to fix the expr code, but it's in pending for a reason...)</p>
  2934. <p>Some commands grew new option flags, such as cp --remove-destination
  2935. and touch -h.</p>
  2936. <p>The parallel build has better error reporting now. When toybox needs to
  2937. re-exec itself to regain suid root permissions and hasn't got the suid bit,
  2938. it now gives the right error message ("not root" instead of "no such command").
  2939. <p>Added a test to "mount" to not mount the same device/directory combination
  2940. over itself (the OS catches this for block devices, but not for tmpfs).
  2941. Make blkid distinguish ext3 from ext4. Added catv back into cat (because
  2942. the Android guys wanted it, and they have historical usage on their side,
  2943. so...). Handle nanoseconds in touch.</p>
  2944. <p>Fixed a segfault when CP_MORE was disabled (the resulting option flag list
  2945. no longer defined -d but still had it in option groups at the end).
  2946. Workaround for glibc redefining dirname() and basename() to random non-posix
  2947. semantics because gnu. (They could have created dirname_r() but didn't want
  2948. to.)</p>
  2949. <p>Fix an ifconfig test that was preventing assigning an ipv4 address to
  2950. interface aliases. Several cleanup passes on hwclock but not quite
  2951. promoted out of pending yet.<p>
  2952. <p>Fixed a wrong error message in rm (if you had a chmod 000 directory and
  2953. did rm -r on it without -f, after the prompt it would complain it was a
  2954. directory, which was not the problem).</p>
  2955. <p>The gzip compression code now does "store only" output to stdout, for
  2956. what that's worth.</p>
  2957. <p>Cleanup mountpoint and expand, and remove them from toys/pending/README
  2958. (a list of commands that predate the toys/pending directory but needed
  2959. another pass).</p>
  2960. <h3>Library and infrastructure:</h3>
  2961. <p>Reworked the option parsing infrastructure so more commands build
  2962. standalone (via scripts/single.sh or "make change"). The option flag bit
  2963. values are no longer packed, it leaves spaces where currently disabled
  2964. flags go, and you can #define FORCE_FLAGS so disabled flags aren't zeroed.
  2965. This allows multiple commands to more easily share infrastructure, even if
  2966. your current flag context is for a disabled command (switched off in config),
  2967. you can force them to stay on and as long as the flags read the same right
  2968. to left they'll have the same values.</p>
  2969. <p>We've started removing use of strncpy() because it's a hugely broken
  2970. standard C function: the length is the maximum length to _append_, not
  2971. the size of the destination buffer. It memsets the remaining space it didn't
  2972. copy ala "memset(dest+strlen(dest), 0, len);" so
  2973. if you think len is the size of dest you're guaranteed to stomp memory off the
  2974. end). And if it runs out of space it won't null terminate because reasons.
  2975. (Meanwhile sprintf("%*s", len, str) is counting wide characters in your current
  2976. locale, so if you set a locale other than "C" it will also go past your
  2977. allocated buffer size. Whoever is maintining the C library standards is really
  2978. bad at strings.)
  2979. Instead we have xstrncat() which will error_exit() if src+dest+1 doesn't
  2980. fit in the buffer. (Because randomly truncating input data isn't necessarily
  2981. an improvement.) And there's always xmprintf().</p>
  2982. <p>Similarly, strtol() doesn't return an error indicator on overflow,
  2983. you have to clear and then check errno. So new xstrtol() that cares
  2984. about overflow.</p>
  2985. <p>The bionic and musl guys agree faccessat(AT_SYMLINK_NOFOLLOW) is not
  2986. supported, so stop using it.</p>
  2987. <p>Fixed toy_exec() to detect when argc is in optargs, so we don't
  2988. need a separate xexec_optargs().</p>
  2989. <a name="18-02-2015" /><a href="#18-02-2015"><hr><h2><b>February 18, 2015</b></h2></a>
  2990. <p>Dreamhost continues to be unable to make mailing list archives work, so
  2991. here's <a href=http://www.mail-archive.com/[email protected]/>another
  2992. list archive</a> with a less awkward interface than gmane.</p>
  2993. <p>(Neither gives you the convenient historical monthly views of mailman,
  2994. but I still have hopes dreamhost will someday figure out what they're doing
  2995. wrong. They've only been trying since October. Last month they did a
  2996. <a href=http://www.dreamhoststatus.com/2015/01/14/discussion-list-hardware-maintenance/>hardware upgrade to fix a software problem</a>, and the stale
  2997. data loads much faster now, so that's something.)</p>
  2998. <p>Update (Feb 19): the archive started updating again, by discarding
  2999. all the pending data. So there are now _two_ giant holes in Dreamhost's
  3000. web archive, from Dec 15-Jan 3, and then another hole from Jan 16-Feb 18.
  3001. The relevant messages are in both of the other archives. Here's hoping
  3002. the chronic archive constipation problem won't happen a sixth time.</p>
  3003. <a name="30-12-2014" /><a href="#30-12-2014"><hr><h2><b>December 30, 2014</b></h2></a>
  3004. <p>Due to Dreamhost's <a href=http://landley.net/dreamhost.txt>ongoing</a>
  3005. <a href=http://landley.net/dreamhost2.txt>inability</a> to make mailman
  3006. work reliably, I've added a link to a backup web archive at
  3007. <a href=http://news.gmane.org/gmane.linux.toybox>gmane</a> to the nav bar
  3008. on the left.</p>
  3009. <p>You still subscribe to the list through
  3010. <a href=http://lists.landley.net/listinfo.cgi/toybox-landley.net>the first link</a>.</p>
  3011. <p>Update (January 27, 2015): they're <a href=https://twitter.com/landley/status/558428839462703104>still working on it</a>.</p>
  3012. <a name="19-11-2014" /><a href="#19-11-2014"><hr><h2><b>November 19, 2014</b></h2></a>
  3013. <blockquote><p>"This time it was right, it would work, and no one would have to get nailed to anything."</p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  3014. <p><a href=downloads/toybox-0.5.1.tar.bz2>Toybox 0.5.1</a>
  3015. (<a href=/hg/toybox/shortlog/1566>commit 1566</a>) is out.</p>
  3016. <p>It's an interim release, mostly bugfixes. There are several new commands,
  3017. but they're all in pending.</p>
  3018. <h3>Development</h3>
  3019. <p>Finally implemented sed, which is still in pending because although
  3020. it's feature complete according to posix, and even passes the parts of
  3021. Busybox's sed test suite that aren't explicitly testing for gnu bugs we
  3022. don't want to copy, it's not yet good enough to build Linux From Scratch.
  3023. (The ./configure stages use very long sed scripts. 20 commits worth of
  3024. implementation and debugging, just under 1000 lines of code, and there's
  3025. still more to do. We're definitely up to some of the "fiddly" commands now.
  3026. Did you know "echo hello | sed p - -" segfaults gnu sed in Ubuntu 12.04?
  3027. Yeah...)</p>
  3028. <p>Talked with the Tizen developers to follow up on their desire to
  3029. make toybox a part of the base Tizen system, and got a list of commands
  3030. to add to the roadmap. The tizen todo list is:</p>
  3031. <blockquote><p>
  3032. wget, sha256*, gzip, gunzip, bunzip2, rsync, zdiff*,
  3033. less, ar, arch, base64, csplit, dir, fmt, join,
  3034. nproc, shred, shuf, stdbuf, stty, test, tr, unexpand,
  3035. users, vdir, diff3, sdiff, dosfsck (fsck.vfat), awk, fdisk
  3036. </p></blockquote>
  3037. <p>(Most of which was already on the todo list, but it helps prioritize.)</p>
  3038. <p>Fixed md5sum and sha1sum on big endian systems (reported by James McMechan).
  3039. Andy Lutomirski fixed unshare's help text and option parsing,
  3040. and submitted nsenter (a tool to use setns(2)) to pending.
  3041. Isaac Dunham implemented acpi -ctV options, and spotted the bug that ls -d
  3042. was inappropraitely following command line symlinks without -H or -L (it
  3043. should act like ls -l does), and ls -F handles symlinks wrong too.
  3044. Lukasz Szpakowski sent in two bugfixes to tail.c. Cynt Rynt spotted an
  3045. unnecessary assignment in lib/password.c.</p>
  3046. <p>Ashwini Sharma's team was as busy as usual, submitting tr, crontab, and
  3047. ipcrm, and hwclock to pending, more features to the pending ip.c, and a
  3048. pile of bugfixes (to chgrp, killall, ifconfig, insmod,
  3049. losetup, comm, cp, id, xwrap, netcat, modprobe, nohup...) mostly found by
  3050. static analysis. (These fixes are mostly to seldom-used codepaths like the
  3051. TOYBOX_FREE config option, but test coverage is always appreciated.) Ashwini
  3052. also suggested upgrading ln -f to leave the original target alone if link
  3053. creation fails, and reported that mv -f and -i weren't implemented (now fixed).</p>
  3054. <p>New config option: TOYBOX_NORECURSE prevents xexec() from making internal
  3055. function calls (for nommu systems with a finite stack).</p>
  3056. <p>The "toybox" multiplexer command no longer adds a trailing space to each
  3057. line of command names, so things like "./toybox | tr ' \n' '|'" to create
  3058. a grep pattern snippet are easier to do. (Why you'd want to is your business,
  3059. but the output is tidier now.)</p>
  3060. <h3>Infrastructure</h3>
  3061. <p>Isaac Dunham added Android support to portability.h, including compile
  3062. probes for functions missing from bionic-libc, and annotated the commands that
  3063. use those functions. We haven't really tested building against bionic,
  3064. but in theory it's possible now.</p>
  3065. <p>Running the test suite now color codes the PASS/SKIP/FAIL notifications
  3066. if output is to a tty. (And in case you missed it last time, VERBOSE=fail
  3067. to stop at the first failure is really useful.)</p>
  3068. <p>In loopfiles_rw() use O_CLOEXEC instead of O_RDONLY to request the loop
  3069. function close filehandles for us. (Otherwise the callback function must
  3070. close each supplied filehandle itself.)</p>
  3071. <p>The printf-style escape parsing ("\n" and friends) got factored out into
  3072. a new unescape() function.</p>
  3073. <a name="02-10-2014" /><a href="#02-10-2014"><hr><h2><b>October 2, 2014</b></h2></a>
  3074. <blockquote><p>"There is an art, it says, or rather, a knack to flying.
  3075. The knack lies in learning how to throw yourself at the ground and miss...
  3076. Clearly, it is this second part, the missing, which presents the
  3077. difficulties."</p><p>- The Hitchhiker's Guide to the Galaxy<p></blockquote>
  3078. <p><a href=downloads/toybox-0.5.0.tar.bz2>Toybox 0.5.0</a>
  3079. (<a href=/hg/toybox/shortlog/1512>commit 1512</a>) is out.</p>
  3080. <h3>New commands</h3>
  3081. <p>The new commands are find, install, factor, and mount. Promoted commands
  3082. (cleaned up and moved out of "pending") are lspci, inotifyd, and blockdev.</p>
  3083. <p>cp now implements -HL and -F to force delete of pending files, cpio now
  3084. ignores -m and implements -p, ls -C now has utf8 support (using wcwidth
  3085. instead of strlen), and umount got a number of upgrades involving
  3086. looking things up in /proc/mounts. Other minor cleanups happend to
  3087. cut, touch, free, and id.</p>
  3088. <p>In pending: Bradley Controy submitted mix (adjusts OSS sound volume). Ashwini
  3089. Sharma submitted diff, userdel, blockdev, ipcs, and crond, upgraded
  3090. fdisk, fsck, and ftpget, and ran a static analyzer on a lot of other code.
  3091. Partial cleanup was done to useradd, userdel, groupadd, and groupdel.</p>
  3092. <h3>Build infrastructure</h3>
  3093. <p><b>Parallel builds</b></p>
  3094. <p>The build now takes advantage of SMP, autodetecting the number of
  3095. processors. (Export the environment variable CPUS to pick a specific number.)
  3096. Other build changes: split out $LDOPTIMIZE because old compilers complain
  3097. about linker options passed with -c, and the entire "generated" directory now
  3098. gets deleted by clean (the README that was in there got merged into code.html).</p>
  3099. <p><b>Standalone builds</b></p>
  3100. <p>The standalone build infrastructure (scripts/single.sh) got upgraded to
  3101. build more commands as standalone executables. In make.sh the source file
  3102. selection uses a regex to find the source files with the NEWTOY/OLDTOY macro
  3103. for the command. It enables each command's
  3104. sub-options (so CP has CP_MORE), enables I18N and FLOAT support to build
  3105. full-featured commands, and includes --help text (at least when
  3106. the command doesn't use another command's help). The OLDTOY() macro
  3107. now produces (redundant) function prototypes so you can build an OLDTOY
  3108. without the NEWTOY</p>
  3109. <p>It doesn't quite have complete coverage yet, the defconfig entries that
  3110. aren't building standalone yet are:</p>
  3111. <blockquote><p>chown, egrep, fgrep, fstype, halt, mv, nc, poweroff, unix2dos,
  3112. whoami</p></blockquote>
  3113. <p>The main reason for standalone build failures is NEWTOY() or OLDTOY()
  3114. entries that don't have their own config symbol. Another problem is entries
  3115. that depend on another entry in kconfig, usually because common infrastructure
  3116. is using one command's flags (which the other commands copy): if that command
  3117. is disabled, the FLAG macros become 0 so dead code elimination can remove the
  3118. code. It's <a href=http://landley.net/hg/toybox/rev/1503>possible
  3119. to untangle</a> this, but a bit awkward. (It boils down to conflicting
  3120. design goals in the two contexts.)</p>
  3121. <p>Standalone builds are used by the test suite when testing individual
  3122. commands.
  3123. <p><b>Snapshot builds</b></p>
  3124. <p>A new addition to the "generated" directory is generated/build.sh
  3125. containing a single compiler command line to build toybox in its current
  3126. configuration. Combined with the generated/*.{h,sh} files from an
  3127. exisiting build, this may let you build on a new system that hasn't quite
  3128. got enough OS bits working to run a full configureand make.</p>
  3129. <h3>Internals</h3>
  3130. <p>Library code: xcreate/xopen now O_CLOEXEC by default to avoid leaking
  3131. filehandles to child processes. DIRTREE_COMEAGAIN's second callback is now
  3132. done with the directory filehandle still open (new dir->again variable added
  3133. to distinguish first from second callback, and requesting DIRTREE_RECURSE now
  3134. requires passing in the specific macro value, not just a true/false).
  3135. Use daemon() out of libc instead of hand-rolled daemonize() in various
  3136. pending commands. string_to_mode() now passes through type bits so you can
  3137. use it to more easily modify a file's existing mode.
  3138. Split xpopen() into xpopen_both(), xopen(), and xrun() depending on whether
  3139. we want to redirect both, one, or neither of stdin/stdout.</p>
  3140. <p>Bugfixes: Better error message when TOYBOX_SUID option can't drop priviliges
  3141. (which happens when you suid something _other_ than root).
  3142. The old pending version of nbd_client.c wasn't deleted when the
  3143. command was promoted (and the build would break if both were enabled),
  3144. toy_exec() sometimes needs to re-exec from $PATH rather than recurse
  3145. internally (to gain dropped root permissions or limit stack depth),
  3146. always call setlocale() when I18N is enabled to switch it back _off_ when
  3147. we run commands that expect sscanf("%n") to return bytes,
  3148. dirtree() had a memory leak in an error path, patch.c had some bugs in
  3149. error paths (didn't report problem clearly). Ashwini Sharma spotted an
  3150. option parsing bug where [-abc] would forget _all_ command line arguments
  3151. saved in the GLOBALS() block (not just the ones for options being switched
  3152. off), plus various minor fixes to nbd_client and cpio.
  3153. Lukasz Szpakowski fixed rm -f on a broken symlink (failed), and killall
  3154. with no arguments (segfaulted).</p>
  3155. <p><b>Portability</b></p>
  3156. <p>A somewhat fiddly fix to rm -rf (which needs to chmod directories to u+rwx
  3157. to descend into them) which hit a musl bug in faccessat() which the musl
  3158. maintainer refuses to fix. (He literally wants the man page changed
  3159. instead, despite other libcs working.) Added an #ifdef __MUSL__ section
  3160. to portability.h with a workaround, you may need CFLAGS=-D__MUSL__ in your
  3161. build if your musl build's features.h doesn't #define that. (I may do
  3162. a different workaround in future, but sometimes you've just got to make
  3163. it work so you can ship. Also, toybox grep with multiple patterns
  3164. requires <a href=http://landley.net/hg/aboriginal/rev/1692>a patch
  3165. to musl's regex engine</a>, which applies to 1.1.4 but not to the current
  3166. musl source control.)</p>
  3167. <p>More portability.h fixes for uClibc too. (I don't expect that to ever have
  3168. another release, so locally patching around posix-2008 violations is silly).</p>
  3169. <p><b>Change to username filtering</b></p>
  3170. <p>Posix recommends the username creation logic filter usernames to a small
  3171. allowed set of characters (which even Red Hat breaks by explicitly allowing
  3172. "$" at the end), but this prevents UTF-8 usernames. Posix' stated logic
  3173. is to allow filesystems to create the user's home directory, but Linux
  3174. filesystems can accept any character but NUL and "/". The only characters
  3175. we actually _need_ to filter out are ":" (field separator in passwd),
  3176. newline (line separator in passwd), and "/" (directory separator in
  3177. filesystem).</p>
  3178. <h3>Documentation</h3>
  3179. <p>Web pages updated: cleanup.html documents more cleanup, code.html
  3180. documents more code, and about.html now capitalizes "toybox" consistently
  3181. (it's just a word, capitalize at start of sentence).</p>
  3182. <p>The pending/README file now lists commands that needed review/cleanup
  3183. before the pending directory was added.</p>
  3184. <h3>Test Suite</h3>
  3185. <p>Moved out of scripts/test into top level "tests" directory, and the
  3186. testing.sh script is now in scripts rather than mixed into the *.test files.</p>
  3187. <p>Johan Bergström requested VERBOSE=fail to make tests (telling it to
  3188. stop at the first failure), and spotted a build bug where using gnu
  3189. sort on the host broke in non-C locales.</p>
  3190. <p>Divya Kothari submitted tests for chmod, link, tar, bzcat, xzcat, zcat,
  3191. and hostname. (And more, but that's all that's merged so far.)</p>
  3192. <a name="07-07-2014" /><a href="#07-07-2014"><hr><h2><b>July 7, 2014</b></h2></a>
  3193. <blockquote><p>"This planet has - or rather had - a problem, which was this:
  3194. most of the people living on it were unhappy for pretty much of the time. Many
  3195. solutions were suggested for this problem, but most of these were largely
  3196. concerned with the movement of small green pieces of paper, which was odd
  3197. because on the whole it wasn't the small green pieces of paper that were
  3198. unhappy."</p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  3199. <p><a href=downloads/toybox-0.4.9.tar.bz2>Toybox 0.4.9</a> (<a href=/hg/toybox/shortlog/1385>commit 1385</a>) is out.</p>
  3200. <p><b>New commands</b> added to pending include:
  3201. lsattr, chattr, inotifyd, rfkill, sulogin, strings, makedevs,
  3202. killall5, and tar from Ashwini Sharma, arp from Kyungwan Han,
  3203. sysctl by Bilal Qureshi, partprobe from Bertold Van den Bergh,
  3204. host from Rich felker, and I did nbd-client and the first 2/3 of mount.</p>
  3205. <p>Finished cleanups (commands promoted out of pending):
  3206. sysctl, rfkill, strings, mkpasswd, makedevs, partprobe, killall5,
  3207. fallocate, and nbd-client.</p>
  3208. <p>(Along the way partial cleanups got made to: last, fold, lspci, ps,
  3209. bootchartd, init, fsck, telnetd, telnet, vconfig, toysh, iconv, useradd,
  3210. login, host, openvt, deallocvt, getty, tftpd, and modprobe. But there's
  3211. still more to do on all of those.)</p>
  3212. <p>This time around the <a href=bin>static binaries</a> are linked against
  3213. musl instead of uClibc. (That's why there's no sparc version, musl doesn't
  3214. support that target yet.)</p>
  3215. <p><b>Documentation:</b></p>
  3216. <p>The help text parser expects lower case "usage:" lines with
  3217. a blank line after them, so go through and regularize those. Expand the
  3218. "coding style" section in the docs and move it to design.html. (Not a show
  3219. stopper for incoming
  3220. contributions, just an explanation of some of the things I'll do to them
  3221. during cleanup.) The help text for the "toybox" command now includes
  3222. the shell script snippet to install symlinks to the toybox binary.</p>
  3223. <p>The <a href=cleanup.html>cleanup page</a> now has descriptions for the
  3224. full ifconfig cleanup series, among others.</p>
  3225. <p>The new toys/examples directory contains hello.c and skeleton.c. The first is
  3226. a simple hello world program in toybox style, the second is a much more
  3227. elaborate example program using showing how to use the command line option
  3228. parsing and how to provide multiple commands in the same C file.</p>
  3229. <p><b>Fixes</b>:</p>
  3230. <p>Fix od bug reported by Samuel Holland ("od -v -b" was appending the default
  3231. output type even though an output type was specified). Ashwini Sharma reported
  3232. bugs where readfile() was incorrectly freeing its buffer, and where toy_init()
  3233. was zeroing the wrong data because the field it was using to measure (rebound)
  3234. had moved (when I moved it back I added a comment why the field needs to be
  3235. there), fixed a segfault in the dhcp client, and made a 0 length read at
  3236. the start of password entry count as EOF. Make the "we are not root" test
  3237. in the init code show the help text. Posix implies that fflush() can return
  3238. success even when the stream's error bit is set, so call both fflush() and
  3239. ferror() from xprintf().</p>
  3240. <p>Isaac Dunham pointed out that bloatcheck couldn't deal with diff
  3241. implementations that only implement "unified diff" format, and that some
  3242. diff implementations can't handle nonseekable input (I.E. reading from
  3243. a pipe). Bugfix so "help -a" works again. Option parsing on nohup now stops
  3244. at first nonoption argument. Fix segfault in "which" if PATH wasn't set,
  3245. which was actually a bug in lib function find_in_path(). Made rm -rf of
  3246. chmod 000 directories actually remove them.</p>
  3247. <p>The build now passes the same $CFLAGS to the library probe as the final
  3248. build, because arch linux is so broken it provides different sets of
  3249. libraries for static and dynamic linking.</p>
  3250. <p>It turns out sprintf("%.123s", str) is counting characters, not bytes,
  3251. so globally enabling locale support opens stack smashing vulnerabilities.
  3252. So there's a new TOYFLAGS_LOCALE you set in toyflags when you want the
  3253. setup code to setlocale().</p>
  3254. <p><b>Upgrades:</b></p>
  3255. <p>Isaac Dunham extended cpio to archive unreadable empty files, and I taught it
  3256. to set uid/gid and timestamp when extracting archives. Isaac also
  3257. added tests for cpio, link, and du, added lspci -i, made the pci database
  3258. parsing skip # comment lines, merged logname and whoami into id.</p>
  3259. <p>Daniel Verkamp sped up md5sum about 30% with some loop unrolling, making
  3260. it actually smaller in the process. I added -b flags to md5sum and sha1sum
  3261. for "brief" output that's just the hash with no filename. (I'm aware other
  3262. implementations use that for MSDOS "binary" mode, and don't care.)</p>
  3263. <p>When building standalone commands (scripts/singleconfig.sh commandname),
  3264. the build now switches on all the sub-options of the command so we get
  3265. a standalone version with all the bells and whistles enabled.</p>
  3266. <p>Add -ds flags to date and document +FORMAT escapes. Add the shell NOP
  3267. command ":" as an alias for true (for toysh).</p>
  3268. <p>Add uClibc probe for iconv() and fallocate. (The fact it didn't always
  3269. build against uClibc is why fallocate wasn't enabled in defconfig before.)</p>
  3270. <p>The umount command now does an losetup -d on the device by default, so
  3271. we don't leak loopback devices. Bugfix to losetup so "losetup /dev/loop0
  3272. filename" actually works again.</p>
  3273. <p>Divya Kothari sent in test suite entries for ls, ln, rm, mv, printf, dd,
  3274. and renice. Then a second round for lsattr/chattr, mount, chmod, pgrep/pkill,
  3275. groupadd, groupdel, and useradd. Several of these uncovered bugs, still
  3276. working to fix them.</p>
  3277. <p>There are now free() functions for the predefined llist types and a
  3278. dlist_terminate() function to break doubly linked lists. The new
  3279. generic_signal() handler either sets "toys.signal" or writes a byte
  3280. to toys.signalfd with the signal number if signalfd isn't -1 (which it's
  3281. initialized to in toy_init).</p>
  3282. <p>The option parsing logic can now detect when a double fits in a long and
  3283. use the more precise type for floating point arguments (the FLOAT macro
  3284. contains the type used). The human_readable() function now just outputs
  3285. decimal kilo/mega/gigabytes (so when du -u says 5.0G it means 5.0 billion
  3286. bytes). The build infrastructure now notices duplicate commands (so if you
  3287. cp toys/pending/command.c toys/other/command.c and forget to delete the
  3288. first one, the build break is now more informative).</p>
  3289. <a name="20-04-2014" /><a href="#20-04-2014"><hr><h2><b>April 20, 2014</b></h2></a>
  3290. <blockquote><p>And to this end they built themselves a stupendous supercomputer
  3291. which was so amazingly intelligent that even before the data banks
  3292. had been connected up it had started from "I think therefore I am" and got as
  3293. far as the existence of rice pudding and income tax before anyone managed to
  3294. turn it off.</p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  3295. <p><a href=downloads/toybox-0.4.8.tar.bz2>Toybox 0.4.8</a> is based on
  3296. <a href=http://landley.net/hg/toybox/shortlog/1262>commit 1262</a>. And
  3297. about time too.</p>
  3298. <p>The big news is that the build no longer needs python to generate help.h,
  3299. that's now done in C. The help text generation is also collating help text
  3300. from multiple options, merging command line option blocks and usage: lines.
  3301. There's even a new <a href=help.html>help web page</a>.</p>
  3302. <p><b>New commands:</b> Ifconfig, cpio, and su were cleaned up the rest of the
  3303. way and promoted out of pending. That saga is mostly explained on the
  3304. <a href=cleanup.html>cleanup page</a>. Vivek Bhagat's freeramdisk,
  3305. Isaac Dunham's fsfreeze, and Felix Janda's iconv are also new.</p>
  3306. <p><b>In pending:</b>
  3307. Ashwini Sharma's team submitted tcpsvd, udpsvd, telnet, telnetd, last, more,
  3308. groupdel/delgroup, arping, brctl, ftpget, ftpput, printf, reset, and added
  3309. ipv6 support to traceroute. Kyungwan Han's team submitted modprobe and getty.
  3310. Vivek Bhagat submitted openvt and deacllocvt. Samuel Holland submitted fold.
  3311. I wrote a new inflate (zip/zlib/gzip decompression) implementation in
  3312. compress.c, and still need to do a corresponding deflate (compression-side)
  3313. and plug them into gzip and zip and so on. (Right now it does zcat.)</p>
  3314. <p>Several commands (vmstat, login, du, vconfig, mountpoint, free, chroot,
  3315. cut, touch, modinfo, expand) predate the "pending" directory, and are thus
  3316. in other directories but still need cleanup. Of these, vmstat got some
  3317. work this time (which would be much easier other vmstat implementations
  3318. documented what their output actually meant).</p>
  3319. <p><b>Upgrades:</b> Ifconfig grew /prefix netmask support (ala 1.2.3.4/24). Grep now has -zZ to
  3320. handle null terminated data, cksum grew -H for hex output. Upgraded od so the
  3321. fields align better when producing multiple output types. Help has -a and -h
  3322. options (all commands, html output).
  3323. Bugfix to blkid building for a 32 bit target. The date command can actually
  3324. set dates now. The O_NOFOLLOW compile time probe didn't work with cross
  3325. compiling, so it's back to an #ifdef test in portability.h. Nathan McSween
  3326. sent in a bugfix to od and a portability fix in the common library code.
  3327. Ashwini Sharma spotted a bug in pidof -o, and added verbose (-v) options
  3328. to mkdir and ln, and suggested killall should have an -s option and
  3329. allow -l to take zero arguments. Ashwini Sharma and Felix Janda upgraded
  3330. tftpd. Fixed dumpleases still using toynet.h after
  3331. that was removed. Corrected killall return code and error reporting.
  3332. Isacc Dunham fixed bugs all over the tree, did cleanup on a bunch of
  3333. pending commands (getty, ftpget, init, openvt, modprobe...), and clarified
  3334. find's help text. Tom Sparrow ran three different static analyzers on
  3335. the code, which resulted in a few cleanups. The peek()/poke() functions
  3336. now use "volatile" to prevent broken compiler "optimizations" to do with
  3337. aliasing.</p>
  3338. <p><b>Build stuff:</b> Each FOR_xxxx macro now has a complementary CLEANUP_xxxx macro, so you
  3339. can put multiple commands with different command line options in the same
  3340. .c file, so they can share infrastructure outside of lib. (This let the
  3341. bunzip logic move out of lib into bzcat.c.) See XXX for example.
  3342. i
  3343. <p>The headers #included in toys.h are now grouped by standard, and headers
  3344. not listed in Posix or LSB were moved to portability.h. The old xregcomp.h
  3345. was folded into lib.h because it's posix (and supporting oddball uClibc
  3346. configurations isn't as important as it once was).</p>
  3347. <p>Regression tested against Ubuntu 8.04 to fix up bit-rot in defconfig
  3348. build on older systems. (We depend on Posix-2008, but not necessarily
  3349. the absolute latest build environment.)</p>
  3350. <p><b>In lib</b>: lib/xwrap.c added xgetpwnam(), xchroot(), and lib/lib.c now has names_to_pid().
  3351. xsetuid() was replaced with xsetuser() which takes a struct passwd
  3352. and sets both gid and uid, mkpathat() got factored out into a library command,
  3353. get_int_value() became atolx_range(), and
  3354. xmsprintf() is now just xmprintf(). The bunzip2 logic moved from lib into
  3355. bzcat.c.</p>
  3356. <p><b>Documentation</b>: new <a href=help.html>help page</a> with the
  3357. help text for all the defconfig commands, using the new help -ah output.
  3358. The <a href=code.html>source code walkthrough</a> now says more about
  3359. #including header files, and how the generated/* directory works. The
  3360. <a href=design.html>design page</a> has some new paragraphs about trading
  3361. of different kinds of simplicity, and why comments aren't a substitute for
  3362. good code. The README no longer trails off into obvious unfinished confusion
  3363. at the end. Each page on the website should now have its own title.</p>
  3364. <a name="18-11-2013" /><a href="#18-11-2013"><hr><h2><b>November 18, 2013</b></h2></a>
  3365. <blockquote><p>"Space," it says, "is big. Really big. You just won't believe how vastly, hugely, mindbogglingly big it is. I mean, you may think it's a long way down the street to the chemist's, but that's just peanuts to space."</p><p>-
  3366. The Hitchhiker's Guide to the Galaxy</p></blockquote>
  3367. <p><a href=downloads/toybox-0.4.7.tar.bz2>Toybox 0.4.7</a> is based on
  3368. <a href=http://landley.net/hg/toybox/shortlog/1122>commit 1122</a>.</p>
  3369. <p>New commands: Brad Conroy submitted blkid. Elie De Brauwer submitted
  3370. reboot, halt, and poweroff. Strake's nl got cleaned up and promoted from
  3371. pending to posix. In addition, the existing chvt and vconfig got some
  3372. cleanup.</p>
  3373. <p>That said, I haven't nearly kept up with the flood of new commands going
  3374. into pending: Ashwini Sharma's team submitted
  3375. dd, dumpleases, traceroute, top, useradd, groupadd, mkpasswd, tftpd, and
  3376. an fsck wrapper (with no filesystem drivers yet). Isaac Dunham sent in cpio.</p>
  3377. <p>Bugfixes: Jeroen van Rijn added a user count to uptime. Elie De Brauwer
  3378. added -e to watch, removed a memory leak, and fixed a terminal size problem.
  3379. William Haddon made xargs call its command line once even with blank input
  3380. (the standard is vague, but builds expect it), and fixed an off by one bug
  3381. where grep didn't malloc enough space with -E (leading to a segfault).
  3382. I fixed a glitch in bunzip2 (same one as went into busybox since they're using
  3383. the code I wrote), in od to fix -t co, -J, and -c options. Add uname -o as a
  3384. synonym for -s. Build fix to never use $CC without prefixing it with
  3385. $CROSS_COMPILE (since $HOSTCC could be different). Anca Emanuel spotted
  3386. a typo in the web page.</p>
  3387. <p>The compile-time command line option parsing got rewritten (ported from
  3388. bash to C), which should speed up builds a bit and allow code controlled by
  3389. --longopts to drop out properly when disabled in the configuration. Terminal
  3390. querying got refactored. Patch's -x option is now more informative (a
  3391. debug thing if you're trying to figure out why a patch didn't apply).
  3392. The "toynet.h" file got folded into toys.h since musl supports it and
  3393. micromanging uClibc options isn't very interesting anymore. The test suite
  3394. now uses scripts/single.sh when testing a single command.</p>
  3395. <a name="17-09-2013" /><a href="#17-09-2013"><hr><h2><b>September 17, 2013</b></h2></a>
  3396. <blockquote><p>"Think of a number," said the computer, "any number."
  3397. Arthur told the computer the telephone number of King's Cross railway
  3398. station passenger inquiries, on the grounds that it must have some function,
  3399. and this might turn out to be it.</p><p>- The Hitchhiker's Guide to the Galaxy</p>
  3400. </blockquote>
  3401. <p><a href=downloads/toybox-0.4.6.tar.bz2>Toybox 0.4.6</a> is based on
  3402. <a href=http://landley.net/hg/toybox/shortlog/1068>commit 1068</a>.</p>
  3403. <p>This release adds
  3404. several new commands: Felix Janda wrote paste and fallocate, Kyungwan Han
  3405. submitted eject, Strake contributed grep, Ashwini Sharma added pmap (and
  3406. a testsuite entry for grep), Lukasz Skalski sent pwdx, Isaac Dunham posted
  3407. acpi, and I did timeout and umount.</p>
  3408. <p>The ls command now has a --color=auto option (suggested by Rich Felker).
  3409. The multiplexer now has a --help option so you can say "./toybox --help blah"
  3410. instead of using the built-in "help" command. (Which is a shell built-in.
  3411. Try it on your command line, it's like man for shell builtins. But a certain
  3412. other project has conditioned people to expect --help, so...) I forget who
  3413. heehooman at gmail is but they pointed out unshare needed PID and UID
  3414. namespace support.</p>
  3415. <h3>Pending</h3>
  3416. <p>A lot of new commands in toys/pending, to the point the next release should
  3417. probably just focus on cleanup and review of this backlog. We've got klogd,
  3418. dhcp, dhcpd, watch, route, and ps from
  3419. Ashwini Sharma (and an fsck wrapper but no fsck.fstype engines yet),
  3420. syslogd, pgrep, and pkill from Madhur Verma, netstat by Ranjan Kumar,
  3421. test by Felix Janda, lspci by Isaac Dunham, nl, su, and renice by strake (I.E.
  3422. M. Farkas-Dyck), and sysvinit by Kyungwan Han.</p>
  3423. <p>Some cleanup work on existing pending commands that aren't
  3424. ready to promote yet: I did a few more rounds on ifconfig
  3425. and Isaac Dunham's did several cleanups to xzcat, Felix Janda cleaned up
  3426. logger and syslogd...</p>
  3427. <p>Also some cleanup work on commands that predate the pending directory,
  3428. but weren't quite polished when they went in, most prominently du,
  3429. expand, and touch.</p>
  3430. <h3>Infrastructure</h3>
  3431. <p>The new scripts/single.sh builds a standalone command without the
  3432. multiplexer, although not all commands can be built that way yet (NEWTOY yes,
  3433. OLDTOY no) and the space savings aren't anything to write home about. (If a
  3434. command needs the option parsing logic at all, it needs all of it.) If
  3435. you're curious, you can do:</p>
  3436. <blockquote><pre>
  3437. make defconfig
  3438. make
  3439. mkdir singles
  3440. for i in $(./toybox)
  3441. do
  3442. echo $i
  3443. PREFIX=singles/ scripts/single.sh $i || break
  3444. done
  3445. </pre>
  3446. <p>(And then wait a long time and watch almost half the builds fail.)</p>
  3447. </blockquote>
  3448. <p>There is now libbuf analogous to toybuf, another global 4k buffer this
  3449. time for use by lib/ code instead of command code.</p>
  3450. <p>The lib directory got split up a bit, lib/pending.c contains functions
  3451. not yet used by anything outside of toys/pending/*, and lib/xwrap.c contains
  3452. functions that wrap other functions and handle failures (via error_exit).
  3453. This leaves lib/lib.c containing actual new functions.</p>
  3454. <p>General improvements and bug fixes to argument parsing. The [-abc] exclude
  3455. logic should now clear arguments slots when disabling options. Bare --longopts
  3456. should work now and be able to report errors using their name, the new ;
  3457. option allows optional arguments to longopts only suppliable with = (I.E.
  3458. --color and --color=auto but not --color auto).</p>
  3459. <p>I'm gradually weaning the code off of itoa()/utoa() because sprintf
  3460. does this already. In this case "simple" probably means "let libc do it
  3461. for us".</p>
  3462. <p>Rewrote for_each_pid_with_name_in() and renamed it to just names_to_pid().
  3463. It shouldn't get confused trying to compare absolute and relative paths quite
  3464. so much anymore.</p>
  3465. <p>lib/llist.c grew a new dlist_pop() function for removing a doubly
  3466. linked list entry while maintaining a circular list; tail and patch are
  3467. using it now.</p>
  3468. <p>The musl guys suggested a new optimization flag
  3469. (-fno-asynchronous-unwind-tables)
  3470. that shaves about 10% off the binary size by removing a C++ism that crept
  3471. into gcc's idea of C. While I don't normally try to micromanage the compiler,
  3472. "-fstop-being-stupid" is a thing you have to hit gcc with from time to time.</p>
  3473. <h3>Bugfixes</h3>
  3474. <p>Felix Janda and I did a largeish rewrite of tail to
  3475. finally make it work right (we think). Still need to implement tail -f
  3476. someday (the tricky bit is making -f follow multiple files at once).
  3477. Felix also reported a bug in xpidfile.</p>
  3478. <p>Juhani Haverinen pointed out that
  3479. python 3 doesn't work with config2help.py, so the detection logic looks
  3480. for python2 (until I get around to rewriting that in C). Elie De Brauwer
  3481. then fixed our first attempt at this, and also fixed uname's help string.</p>
  3482. <p>Ashwini Sharma
  3483. pointed out the build was making a FLAG_ macro for " " which broke some
  3484. configurations. (That's a control character, not a command line option.)</p>
  3485. <p>Jacek Bukarewicz pointed out a bug in chdir permission handling, and
  3486. a way to make env segfault. Both should be fixed now.</p>
  3487. <p>The new function xexec_optargs()
  3488. replaces calls to xexec(toys.optargs) to avoid freeing and reusing optargs
  3489. during option parsing screwing stuff up (such as netcat's exec mode).</p>
  3490. <p>The stat command's %a output was padded with leading zeroes, which
  3491. didn't match anybody else's behavior and thus made the test suite hiccup
  3492. between TEST_HOST and testing toybox. (If you go "TEST_HOST=1 scripts/test.sh
  3493. command" it sanity checks the tests against the host implementation.)</p>
  3494. <p>Last release, "mkdir sub/sub && chmod 007 sub/sub && rm -rf sub" didn't
  3495. delete sub and didn't exit with an error either. Neither was correct, rm
  3496. should now be fixed.</p>
  3497. <p>
  3498. <a name="26-07-2013" /><a href="#26-07-2013"><hr><h2><b>July 26, 2013</b></h2></a>
  3499. <p>Georgi Chorbadzhiyski maintains a <a href=https://github.com/gfto/toybox>git
  3500. mirror</a> of the repository on github, automatically updated from the
  3501. mercurial every 6 hours. The mirror is read only, but you can generate patches
  3502. against it and post them to the list.</p>
  3503. <a name="02-07-2013" /><a href="#02-07-2013"><hr><h2><b>July 2, 2013</b></h2></a>
  3504. <blockquote><p>"Time is an illusion. Lunchtime doubly so." "Very deep. You
  3505. should send that in to the Reader's Digest. They've got a page for people
  3506. like you."</p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  3507. <p><a href=downloads/toybox-0.4.5.tar.bz2>Toybox 0.4.5</a> is based on
  3508. <a href=http://landley.net/hg/toybox/shortlog/941>commit 941</a>. It adds
  3509. uuencode and uudecode from Erich Plondke, and enables Luis Morales' "who" by
  3510. default. Felix Janda and I cleaned up last year's "stat" submission and
  3511. enabled it. Ivo van Poorten added "groups".
  3512. Andre Renaud added "lsusb". I implemented "split", "pivot_root", and "mv".
  3513. </p>
  3514. <p>The "help" command is implemented differently now (lib/help.c) and
  3515. each command can now understand --help (including both "toybox --help"
  3516. and "toybox --help command" in the multiplexer).</p>
  3517. <p>The "pending" directory has several commands (find, xzcat, nbd-client,
  3518. logger, expr) which work but are not enabled by default pending further cleanup.
  3519. Ifconfig is enabled, but still in pending because it's only 2/3 cleaned up.
  3520. (It's an awkward halfway state but I'm not holding up the release for it.)</p>
  3521. <p>I'm <a href=cleanup.html>documenting the cleanups</a> to teach
  3522. more people to do it, but the writeups aren't caught up yet. The
  3523. <a href=roadmap.html>roadmap</a> also got updated a bit with further analysis
  3524. of other projects, and the README and about pages got updated.</p>
  3525. <p>Fixed _another_ "ls -C" segfault when terminal size can't be detected,
  3526. condensed the ls help text to fit on one page, implented --color, and taught
  3527. -l to print the major, minor numbers when showing block/char devices.
  3528. Argument parsing now handles "--" properly (to end option checking),
  3529. and the infrastructure can now handle bare --longopts that have no
  3530. corresponding short option (both were implemented before but didn't work).
  3531. Fixed an old bug in "patch", chmod grew -f, who grew -a. Isaac Dunham
  3532. fixed "-" vs "_" handling in modinfo, added a "firmware" output
  3533. field, added -b and -k support, and taught it that the ".ko" extension means
  3534. to look for the file at the specified path instead of under /lib. Felix Janda
  3535. moved file permission display code to lib so ls and
  3536. stat could share it. Ashwini Sharma spotted a bug in xabspath when the
  3537. last path component exists but we haven't got permissions to open it
  3538. (ala readlink -f /dev/sda as a normal user).
  3539. </p>
  3540. <p>In the build infrastructure, scripts/findglobals.sh finds leaked global
  3541. variables. (Leaked means they aren't part of the global union: Other than glibc
  3542. debris, toybox should define "this", "toy_list", "toybuf", and "toys", and
  3543. that's it; the rest add memory footprint to every command for the benefit of
  3544. just one command; use GLOBALS() to stick 'em in the union.) Static linking
  3545. against libraries other than the host's libc now applies to feature probes
  3546. for unshare and such. Neuter stupid internationalization support that makes
  3547. various host "sort" commands put things in an order other than alphabetical
  3548. (breaking the multiplexer's binary search on command names).
  3549. <p>You should now be able to build from a source control snapshot on a build
  3550. system that hasn't got python: if you disable CONFIG_TOYBOX_HELP. (The
  3551. release tarballs ship generated/help.h, but it's not in source control.
  3552. Eventually I should rewrite that python script in C.)</p>
  3553. </p>
  3554. <p><b>LICENSE TWEAK</b>: After <a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-March/000794.html>discussion</a> on the mailing list the "2 clause
  3555. BSD" <a href=license.html>license</a> got slightly simplified so the first
  3556. paragraph now says:</p>
  3557. <blockquote><p>Permission to use, copy, modify, and/or distribute this
  3558. software for any purpose with or without fee is hereby granted.</p></blockquote>
  3559. <p>It used to continue "provided that the above copyright notice and this
  3560. permission notice appear in all copies", but A) what's the point? B) does "all
  3561. copies" mean binaries, or just source code, or what? C) lots of projects
  3562. that consider BSD and GPL compatible have <a href=https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/crypto/aes_generic.c>files with
  3563. both license notices</a> on them (sometimes at <a href=http://git.busybox.net/busybox/tree/shell/ash.c>opposite ends of the file</a> to make the conflict
  3564. less obvious) because "all copies must include this function" would violate
  3565. the GPL but "all copies must include this magic text blob" somehow don't?</p>
  3566. <p>I don't want to have to care about this anymore. The tweaked version is more
  3567. or less public domain with a liability disclaimer, but we're still calling it
  3568. BSD (sometimes "0 clause BSD") to avoid explaining.</p>
  3569. <a name="21-03-2013" /><a href="#21-03-2013"><hr><h2><b>March 21, 2013</b></h2></a>
  3570. <p>Video of my ELC talk
  3571. "<a href=http://youtu.be/SGmtP5Lg_t0>Why is Toybox?</a>"
  3572. is up on youtube. Related materials include the
  3573. <a href=http://landley.net/talks/celf-2013.txt>talk outline</a> and an
  3574. <a href=/aboriginal/about.html#selfhost>android self-hosting writeup</a>.</p>
  3575. <p>[Updated June 4] The following links jump to specific topics in the video. (Sorry about
  3576. the ads, it's The Linux Foundation.)</p>
  3577. <ul>
  3578. <li>0m29s <a href=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=0m29s>The smartphone is replacing the PC</a></li>
  3579. <ul>
  3580. <li>4m22s <a href=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=4m22s>Software needed to become self-hosting</a></li>
  3581. <li>6m20s <a href=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=6m20s>Do we care if android or iphone wins?</a></li>
  3582. </ul>
  3583. <li>9m45s <a href=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=9m45s>Android not vanilla: oppose or accept?</a></li>
  3584. <ul>
  3585. <li>11m30s <a href=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=11m30s>Open source can't do User Interfaces</a></li>
  3586. </ul>
  3587. <li>15m09s <a href=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=15m09s>Android is not copyleft: oppose or accept?</a></li>
  3588. <li>18m23s <a href=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=18m23s>Security issues</a></li>
  3589. <li>21m15s <a href=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=21m15s>Solutions to the software problems</a></li>
  3590. <ul>
  3591. <li>22m55s <a href=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=22m55s>What toybox needs to be/do</a></li>
  3592. <li>28m17s <a href=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=28m17s>What is toybox?</a></li>
  3593. <ul>
  3594. <li>28m58s <a href=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=28m58s>Why toybox started...</a></li>
  3595. <li>37m50s <a href=http://www.youtube.com/watch?v=SGmtP5Lg_t0#t=37m50s>What does toybox actually implement?</a></li>
  3596. </ul>
  3597. </ul>
  3598. </ul>
  3599. </span>
  3600. <a name="14-03-2013" /><a href="#14-03-2013"><hr><h2><b>March 14, 2013</b></h2></a>
  3601. <blockquote><p>"Ford, you're turning into a penguin. Stop it." -
  3602. </p><p>The Hitchhiker's Guide to the Galaxy</p></blockquote>
  3603. <p><a href=downloads/toybox-0.4.4.tar.bz2>Toybox 0.4.4</a> is based on
  3604. <a href=http://landley.net/hg/toybox/shortlog/813>commit 813</a>, adding
  3605. the "time" and "readahead" commands, plus some bugfixes.</p>
  3606. <p>The "cp" command now implements the -s symlink option, plus bugfixes
  3607. getting various corner cases right as used in actual package builds.
  3608. "id -Gn root" should now print root's groups
  3609. instead of the current user's. Several build fixes so toybox builds under
  3610. Ubuntu 8.04 again (which is about as old a build environment as you
  3611. can expect to find posix-2008 features in).</p>
  3612. <p>Unfinished commands have generally been moved to "toys/pending".
  3613. Everything else should "default y" to participate in make defconfig.
  3614. Several of those pending commands got some basic cleanup so allyesconfig
  3615. should at least compile (although defconfig is still what's useful).</p>
  3616. <p>Significant roadmap updates, checking several other multicall binaries
  3617. (klibc, sash, sbase, s6...) to see what commands they include.</p>
  3618. <a name="18-01-2013" /><a href="#18-01-2013"><hr><h2><b>January 18, 2013</b></h2></a>
  3619. <blockquote><p>This must be Thursday. I never could get the hang of Thursdays.</p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  3620. <p><a href=downloads/toybox-0.4.3.tar.bz2>Toybox 0.4.3</a> is based on
  3621. <a href=http://landley.net/hg/toybox/shortlog/793>commit 793</a>. There
  3622. are now exactly 100 commands in defconfig (of a little over 220 on the
  3623. <a href=roadmap.html>todo list</a>).</p>
  3624. <p>Elie De Brauwer added the rev command, cleaned up tac, implemented the -s
  3625. and -f flags for seq, added -v and -i to killall (and fixed killall not to
  3626. kill itself before finishing its pid list), and added to the test suite.
  3627. Felix Janda added -m to mkdir, pwd -L and -P, and more test suite entries.</p>
  3628. <p>Rob Landley added the losetup command, and fixed the existing ls, cp, and
  3629. readlink commands. The segfault in ls
  3630. happened when it couldn't determine the screen size (last release changed the
  3631. default to -C and a screen size of 0 made column view unhappy), and cp got an
  3632. extensive rewrite bringing it up to date with the dirtree changes and fixing
  3633. a number of things it never did right in the first place. The xabspath()
  3634. code in the library now handles a symlink after ".." properly (and the test
  3635. suite checks for it).</p>
  3636. <p>Infrastructure-wise the code is better about automatically setting the
  3637. error return code properly. Now error_msg() sets the exit code to 1 if it's
  3638. still defaulting to 0, and the global exit path does a fflush(NULL) with error
  3639. bit check rather than trying to be quite so granular about flushing. (That
  3640. means if we use printf() instead of xprintf() it still exits with the right
  3641. error code, it just doesn't end the program early on an output error.)
  3642. Minor bugfix so TOYBOX_DEBUG
  3643. doesn't always warn about the lack of suid bit when toybox is built with
  3644. at least one STAYROOT command. Bugfix for the option [grouping] logic
  3645. (and then further fixes to the error reporting pointed out by Ashwini Sharma).
  3646. dirtree_handle_callback() now has a prefix like the rest of the dirtree
  3647. functions. A lot of stuff doing manual path handling was switched to using
  3648. libc basename() (including, embarassingly, the basename command), which means
  3649. it now correctly detects "/trailing/slash/" which the previous code didn't.</p>
  3650. <p>Also, last release included some accidentally checked in debug code that
  3651. disabled compiler optimization, so the binary size bloated a bit. It's back
  3652. to -Os by default now.</p>
  3653. <a name="15-12-2012" /><a href="#15-12-2012"><hr><h2><b>December 15, 2012</b></h2></a>
  3654. <blockquote><p>"The major difference between a thing that might go wrong and a
  3655. thing that cannot possibly go wrong is that when a thing that cannot possibly
  3656. go wrong goes wrong it usually turns out to be impossible to get at or repair."
  3657. </p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  3658. <p><a href=downloads/toybox-0.4.2.tar.bz2>Toybox 0.4.2</a> is based on
  3659. <a href=http://landley.net/hg/toybox/shortlog/749>commit 749</a> and is
  3660. just a resync. Linux 3.7 came out, meaning it's time to do an Aboriginal
  3661. Linux release, and that should use a stable version of toybox. So here's
  3662. a new stable version.</p>
  3663. <p>The new commands are cut (from Jason Kyungwan Han), touch
  3664. (from Choubey Ji), expand (from Jonathan Clairembault, and he fixed a
  3665. bug in login), and rm (from Rob Landley). Felix Janda added UTF-8
  3666. support infrastructure (for non-ascii character sets) with a config option.
  3667. Elie De Brauwer added tests for cat and sha1sum, and -so options to pidof.
  3668. The "ls" command defaults to -C (column view) now, and "readlink" now supports
  3669. -fenq.</p>
  3670. <p>Portability work: toybox should now build against the musl C library,
  3671. and against older glibc versions (circa 2008, much before that and kernel
  3672. features we depend on start to drop out).</p>
  3673. <p>The whole codebase got reindented from "one tab" to "two spaces" per
  3674. level. The option parsing logic now understands [groups] of commands (when more
  3675. than one in a group is selected it can switch the others off, or error out,
  3676. or other things). The error_exit() infrastructure can now longjmp back to an
  3677. earlier point instead of exiting. Each toys/* directory now has a README,
  3678. the first line of which is the fancy name menuconfig uses for the directory
  3679. (so no more hardwired directory list in scripts/genconfig.sh).</p>
  3680. <p>Fixed a filehandle leak in getmountlist().
  3681. Pass parent pointer to dirtree_add_node() so it can give error messages with
  3682. full path. The yesno() function now always reads from stdin and writes to
  3683. stderr (we can retry tty checking complexity once we've got commands needing
  3684. it).</p>
  3685. <p>The open group broke their website so the
  3686. <a href=http://opengroup.org/onlinepubs/9699919799>old links</a> to POSIX 2008
  3687. now <a href=http://pubs.opengroup.org/onlinepubs/9699919799>need to start with
  3688. pubs</a>. Some of the links in the tree have been updated, others haven't while
  3689. I wait to see if their webmaster notices and fixes it.</p>
  3690. <p>(I note that the current rm implementation is not technically posix compliant
  3691. because the standard requires infinite recursion depth and the current
  3692. implementation uses one filehandle per level. I can add a config option
  3693. to do it Posix's way, which is more brittle and needs extra security checks,
  3694. but am waiting for somebody to complain first. The default "ulimit -n" is 1024
  3695. filehandles, so drilling down over 1000 nested subdirectories).</p>
  3696. <a name="13-11-2012" /><a href="#13-11-2012"><hr><h2><b>November 13, 2012</b></h2></a>
  3697. <blockquote><p>"Rule Six: The winning team shall be the first team that wins."
  3698. </p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  3699. <p><a href=downloads/toybox-0.4.1.tar.bz2>Toybox 0.4.1</a> is based on
  3700. <a href=http://landley.net/hg/toybox/shortlog/691>commit 691</a>.</p>
  3701. <p>Elie De Brauwer contributed usleep, Ashwini Kumar contributed du, and
  3702. Kyungwan Han contributed vconfig. Other new commands include switch_root and
  3703. md5sum, and the remaining shell wrappers are now proper commands (dos2unix,
  3704. unix2dos).</p>
  3705. <p>The patch command now supports -l, and gethostname is now enabled by
  3706. default. The df command follows symlinks to get the actual device name.
  3707. Felix Janda added -m support to wc (for utf8).</p>
  3708. <p>On the infrastructure side, the commands have now been grouped into
  3709. "posix", "lsb", and "other" subdirectories (for things required by Posix-2008,
  3710. the Linux Standard Base 4.1, and commands in neither). This affects menuconfig
  3711. and the actual source layout (toys/cp.c is now toys/posix/cp.c, and so on).
  3712. An android directory is planned (see the updated
  3713. <a href=roadmap.html#android>android roadmap analysis</a>).</p>
  3714. <p>The FLAG_ macros for command option parsing and TT alias for the command's
  3715. global block are now automatically generated, commands should
  3716. #define FOR_commandname before #including <toys.h> to get the macros for that
  3717. command.</p>
  3718. <p>An upgrade to the build infrastructure now allows commands with _ and -
  3719. in them, such as switch_root.</p>
  3720. <p>Bugfixes: Avery Pennarun spotted a case where ls showed uid twice instead of
  3721. uid and gid, and that nice was using the wrong range of numbers.
  3722. The ls command also recursed inappropriately last time (not quite
  3723. properly converted for the dirtree changes last release), and now it's
  3724. fixed. Roy Tam pointed out a glitch in sh, and fixed df's percentage
  3725. calculation to match the POSIX spec. The kernel build didn't like our mktemp
  3726. and it does now. The wc command wasn't quite posix compliant (trailing spaces
  3727. break stuff). The ls command recursed inappropriately last time (not quite
  3728. properly converted for the dirtree changes last release), and now it's
  3729. fixed. The catv command wasn't displaying byte 255 correctly. Some lib
  3730. fixes (thinko in xpidfile). Fixed uname -m when running a 32 bit x86 binary
  3731. on an x86-64 host (it lies and says the system is i686, i586, or i486 depending
  3732. on what the toolchain that built the binary supported. This makes builds in
  3733. a 32 bit chroot on a 64 bit kernel break less.) The df command was checking
  3734. partitions in the wrong order (displaying undermounts instead of overmounts:
  3735. this used to work but some library code changed out from under it and it
  3736. wasn't updated to match until now). Felix Janda filled out the test suite
  3737. some more. The patch file creation logic got tweaked several times to
  3738. successfully apply more patches. Support for older (pre 2.10) glibc
  3739. versions was added to portability.h.</p>
  3740. <p>Miscelaneous cleanups all around (mknod, sha1sum, logname), including a
  3741. rewrite of taskset to be less dependent on libc getting the headers right. All
  3742. the command headers should now point to the current relevant standards
  3743. document, where applicable.</p>
  3744. <p>This news page had old news entries from before the relaunch moved into
  3745. a separate <a href=oldnews.html>oldnews</a> page.</p>
  3746. <p>I forgot to create <a href=bin>static binaries</a> last time, but they're
  3747. back now.</p>
  3748. </span>
  3749. <a name="23-07-2012" /><a href="#23-07-2012"><hr><h2><b>July 23, 2012</b></h2></a>
  3750. <blockquote><p>"Ford", Arthur said. "There's an infinite number of monkeys
  3751. out here who want to talk to us about this script for Hamlet they've worked
  3752. out."</p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  3753. <p><a href=downloads/toybox-0.4.0.tar.bz2>Toybox 0.4.0</a> is based on
  3754. <a href=http://landley.net/hg/toybox/shortlog/640>commit 640</a>.</p>
  3755. <p>The new <a href=status.html>status page</a> is calculated from
  3756. the roadmap info, and should be easier to keep up to date in future.</p>
  3757. <p>Andre Renaud contributed od and modinfo. Elie De Brauwer contributed
  3758. taskset, bugfixes to cmp and tail, and tests for sort and tail. Kyungwan Han
  3759. contributed passwd. Gaurang Shastri contributed w. Ashwini Sharma spotted a
  3760. case where dirtree was adding extra slashes to a path.</p>
  3761. <p>I rewrote od, cleaned up comm, documented the
  3762. <a href=code.html#lib_llist>llist</a> and
  3763. <a href=code.html#lib_dirtree>dirtree</a> infrastructure, added an -r option
  3764. to date (and fixed a bug where -u wouldn't override /etc/localtime),
  3765. fixed bugs in chmod +stw, fixed ls to show suid bits properly when the
  3766. corresponding executable bit wasn't set, and worked around a longstanding
  3767. glibc bug where static linking prevents stdout from automatically flushing
  3768. pending output on exit.</p>
  3769. <a name="25-06-2012" /><a href="#25-06-2012"><hr><h2><b>June 25, 2012</b></h2></a>
  3770. <blockquote><p>"For a moment, nothing happened. Then, after a second or so, nothing continued to happen."</p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  3771. <p><a href=downloads/toybox-0.3.1.tar.bz2>Toybox 0.3.1</a> is based on commit
  3772. <a href=http://landley.net/hg/toybox/shortlog/607>commit 607</a>. It's
  3773. mostly a bugfix release for ls -l (which was unhappy on targets other than
  3774. x86-64), plus a new "date" from Andre Renaud and rewritten chgrp/chown which
  3775. now support the full set of posix flags, plus a little work on the test
  3776. suite and some more header tweaks towards eventual compatability with the
  3777. musl libc.</p>
  3778. <p>The todo list runneth over, but "release early, release often", so here
  3779. it is. The roadmap and documentation are a bit behind, and I've got ~40
  3780. pending submissions to review. I need to catch up...</p>
  3781. </span>
  3782. <a name="12-06-2012" /><a href="#12-06-2012"><hr><h2><b>June 12, 2012</b></h2></a>
  3783. <blockquote><p>"For instance, on the planet Earth, man had always assumed that
  3784. he was more intelligent than dolphins because he had achieved so much - the
  3785. wheel, New York, wars and so on - whilst all the dolphins had ever done was
  3786. muck about in the water having a good time. But conversely, the dolphins had
  3787. always believed that they were far more intelligent than man - for precisely
  3788. the same reasons."</p><p>- The Hitchhiker's Guide to the Galaxy</p></blockquote>
  3789. <p>It's well past time for <a href=downloads/toybox-0.3.0.tar.bz2>toybox 0.3.0</a>,
  3790. so here it is, based
  3791. on <a href=http://landley.net/hg/toybox/shortlog/595>commit 595</a>, and the
  3792. statically linked <a href=downloads/binaries>prebuilt binaries</a> should
  3793. actually be statically linked this time (thanks Ashwini Sharma for spotting
  3794. that).</p>
  3795. <p>It's hard to figure out where to cut a release, because development
  3796. doesn't stop. "Long before now" is the obviuos answer, of course.
  3797. The project's maintainer also moved house during this development cycle, which
  3798. threw things off for a bit (so many boxes). Releases should hopefully be a bit
  3799. more frequent from here on.</p>
  3800. <p>The big things Rob worked on this time were the new dirtree (directory
  3801. tree traversal) infrastructure, and a complete rewrite of ls using that
  3802. which should now implement all 26 posix options.</p>
  3803. <p>Georgi Chorbadzhiyski added printenv, whoami, mkdir, mkfifo, chmod, chown,
  3804. chgrp, and uniq. He also added fraction and extension support to sleep (so if
  3805. you need a quarter-second sleep, it can do that now), and fixed a build bug
  3806. on slackware.</p>
  3807. <p>Daniel Walter contributed a string to mode_t parser (in use by chmod and
  3808. mkdir -m). Ilya Kuzmich contributed comm. Elie De Brauwer added mountpoint,
  3809. vmstat, logname, login, and mktemp. Kevin Chase did some portability cleanups.
  3810. Pere Orga fixed some documentation.</p>
  3811. <p>The "tac" and "clear" commands are now normal commands instead of shell
  3812. wrappers, and the header #includes have been cleaned up a bit to remove
  3813. deprecated functions and attempt to increase compatability with the bionic and
  3814. musl C libraries, "tail" should now use lseek() for large files, and "id" got
  3815. some cleanups and bugfixes.</p>
  3816. <p>The new TOYBOX_FLOAT configuration option selects whether or not
  3817. to include floating point support (for embedded targets where that's
  3818. problematic).</p>
  3819. <p>Several random bugfixes: unshare() might actually build portably now,
  3820. yes 'n' | cp -i should no longer bypass stdin and prompt via the tty, the
  3821. SUID support no longer drops permissions going through the toybox
  3822. multiplexer command, and a bugfix to xargs -0 means it should no longer
  3823. segfault. (I have a pending bug report about xargs not doing the full
  3824. posix whitespace handling that -0 obsoleted, but I'll deal with that next
  3825. release.)</p>
  3826. <p>The build infrastructure is now automatically generating FLAG_ macros
  3827. for the options, but currently with the wrong names. Some more macro glue
  3828. is necessary, which I haven't quite figured out how to do yet.</p>
  3829. <p>A defconfig toybox at the start of the $PATH has successfully built
  3830. Linux From Scratch (in my Aboriginal Linux project). The commands that
  3831. 'default n' in the config are often still broken, cleanup is ongoing.
  3832. (The new dirtree stuff broke several of them that haven't been converted
  3833. yet, but if I wait until everything works we won't have a release before
  3834. 1.0, so here's a checkpoint.)</p>
  3835. <a name="03-03-2012" /><a href="#03-03-2012"><hr><h2><b>March 3, 2012</b></h2></a>
  3836. <blockquote><p>"They went unnoticed at Goonhilly, passed over Cape Canaveral
  3837. without a blip, and Woomera and Jodrell Bank looked straight through them.
  3838. Which was a pity, because it was exactly the sort of thing they'd been looking
  3839. for all these years."</p><p>- The Hitchhiker's Guide to the Galaxy</p>
  3840. </p></blockquote>
  3841. <p>Here's <a href=downloads/toybox-0.2.1.tar.bz2>toybox 0.2.1</a> based
  3842. on <a href=http://landley.net/hg/toybox/shortlog/512>commit 512</a>. This
  3843. time around, there are statically linked <a href=downloads/binaries>prebuilt
  3844. binaries</a> for various embedded targets.</p>
  3845. <p>It's been a busy few weeks, almost entirely due to new contributors. (I
  3846. have not quite been keeping up.)</p>
  3847. <p>Elie De Brauwer contributed free, uptime, swapon, swapoff, lsmod, mknod,
  3848. insmod, rmmod, and fixed a bug in basename. Andre Renaud contributed ls, ln,
  3849. realpath, and hostname. Andres Heck contributed pidof and killall. Daniel
  3850. Walter wrote kill and extended id. Timothy Elliott contributed tail and tests
  3851. for cmp. Frank Bergmann sent a warning fix. Bryce Fricke added -i to cp.
  3852. Nathan McSween pointed out an optimization. Georgi Chorbadzhiyski fixed
  3853. cross compiling to work more reliably.</p>
  3854. <p>(My own contribution this time around was just tightening up other people's
  3855. code, a build fix to unshare, some random bugfixes, and so on. My only new
  3856. code this time around was writing a bash replacement for the existing python
  3857. bloat-o-meter.)</p>
  3858. <p>Last time (the 0.2.0 release) included the first pass at an id command from
  3859. Tim Bird, env and basename from Tryn Mirell, cmp and head from Timothy Elliott,
  3860. more bugfixes from Nathan McSween and Elie De Brauwer, and Luis Felipe Strano
  3861. Moraes did a first pass at the who command plus other bugfixes and
  3862. optimizations.</p>
  3863. <p>(For that release I did xargs, cal, truncate, unlink, nohup, tty, wc, link,
  3864. dirname, unshare, and various infrastructure tweaks, but it took me 3 months
  3865. and those guys did their stuff in a week or so.)</p>
  3866. <a name="12-02-2012" /><a href="#12-02-2012"><hr><h2><b>February 12, 2012</b></h2></a>
  3867. <blockquote><p>
  3868. "for though it has many omissions and contains much that is apocryphal, or at
  3869. least wildly inaccurate, it scores over the older, more pedestrian work in two
  3870. important respects..."</p>
  3871. <p> - The Hitchhiker's Guide to the Galaxy</p></blockquote>
  3872. <p>Here's the first BSD licensed release,
  3873. <a href=downloads/toybox-0.2.0.tar.bz2>toybox-0.2.0</a>, more a synchronization
  3874. point than anything particularly useful. 47 commands in a reasonably
  3875. ready-to-use state (what "make defconfig" builds), another ten or so partially
  3876. finished stubs ("make allyesconfig"), and several
  3877. patches pending on the mailing list I need to review and merge.</p>
  3878. <p>More to come...</p>
  3879. <hr>
  3880. <a name="15-11-2011" /><a href="#15-11-2011"><hr><h2><b>November 15, 2011</b></h2></a>
  3881. - Back from the dead, Toybox is now under a 2
  3882. clause BSD license, and aiming to become the default command line
  3883. implementation of Android systems everywhere.</p>
  3884. <p>More to come...</p>
  3885. <hr>
  3886. <p><a href=oldnews.html>Old news</a> from before the relaunch.</p>
  3887. <!--#include file="footer.html" -->