blob: fbaec0410b3c79ee8eadb872c0d57c1d26b469ee [file] [log] [blame]
Eric Andersen6c4a6b12004-10-08 10:50:08 +00001<!--#include file="header.html" -->
2
Eric Andersen6c4a6b12004-10-08 10:50:08 +00003<h3>Frequently Asked Questions</h3>
4
5This is a collection of some of the more frequently asked questions
6about BusyBox. Some of the questions even have answers. If you
7have additions to this FAQ document, we would love to add them,
8
Rob Landleyb73d2bf2006-05-11 15:00:32 +00009<h2>General questions</h2>
Eric Andersen6c4a6b12004-10-08 10:50:08 +000010<ol>
Rob Landleyac4c92d2006-05-11 17:21:13 +000011<li><a href="#getting_started">How can I get started using BusyBox?</a></li>
12<li><a href="#configure">How do I configure busybox?</a></li>
Bernhard Reutner-Fischer8936a192007-06-08 07:19:06 +000013<li><a href="#build">How do I build BusyBox with a cross-compiler?</a></li>
Rob Landleyac4c92d2006-05-11 17:21:13 +000014<li><a href="#build_system">How do I build a BusyBox-based system?</a></li>
15<li><a href="#kernel">Which Linux kernel versions are supported?</a></li>
16<li><a href="#arch">Which architectures does BusyBox run on?</a></li>
17<li><a href="#libc">Which C libraries are supported?</a></li>
18<li><a href="#commercial">Can I include BusyBox as part of the software on my device?</a></li>
Bernhard Reutner-Fischerbeea4b82008-08-21 12:42:39 +000019<li><a href="#external">Where can I find other small utilities since busybox does not include the features I want?</a></li>
Rob Landleyac4c92d2006-05-11 17:21:13 +000020<li><a href="#demanding">I demand that you to add &lt;favorite feature&gt; right now! How come you don't answer all my questions on the mailing list instantly? I demand that you help me with all of my problems <em>Right Now</em>!</a></li>
21<li><a href="#helpme">I need help with BusyBox! What should I do?</a></li>
22<li><a href="#contracts">I need you to add &lt;favorite feature&gt;! Are the BusyBox developers willing to be paid in order to fix bugs or add in &lt;favorite feature&gt;? Are you willing to provide support contracts?</a></li>
Rob Landleyb73d2bf2006-05-11 15:00:32 +000023</ol>
Rob Landleyde7f9b72005-07-31 04:27:19 +000024
Rob Landleyb73d2bf2006-05-11 15:00:32 +000025<h2>Troubleshooting</h2>
26<ol>
27<li><a href="#bugs">I think I found a bug in BusyBox! What should I do?!</a></li>
Rob Landley95718b32006-08-16 22:13:56 +000028<li><a href="#backporting">I'm using an ancient version from the dawn of time and something's broken. Can you backport fixes for free?</a></li>
Rob Landleyb73d2bf2006-05-11 15:00:32 +000029<li><a href="#init">Busybox init isn't working!</a></li>
30<li><a href="#sed">I can't configure busybox on my system.</a></li>
31<li><a href="#job_control">Why do I keep getting "sh: can't access tty; job control turned off" errors? Why doesn't Control-C work within my shell?</a></li>
32</ol>
33
Denis Vlasenko153cd692007-07-13 15:26:53 +000034<h2>Misc. questions</h2>
35<ol>
36 <li><a href="#tz">How do I change the time zone in busybox?</a></li>
37</ol>
38
Rob Landleyb73d2bf2006-05-11 15:00:32 +000039<h2>Programming questions</h2>
40<ol>
41 <li><a href="#goals">What are the goals of busybox?</a></li>
42 <li><a href="#design">What is the design of busybox?</a></li>
Bernhard Reutner-Fischerbeea4b82008-08-21 12:42:39 +000043 <li><a href="#source">How is the source code organized?</a>
44 <ul>
Rob Landleyb73d2bf2006-05-11 15:00:32 +000045 <li><a href="#source_applets">The applet directories.</a></li>
46 <li><a href="#source_libbb">The busybox shared library (libbb)</a></li>
Bernhard Reutner-Fischerbeea4b82008-08-21 12:42:39 +000047 </ul>
48 </li>
Rob Landleyb73d2bf2006-05-11 15:00:32 +000049 <li><a href="#optimize">I want to make busybox even smaller, how do I go about it?</a></li>
50 <li><a href="#adding">Adding an applet to busybox</a></li>
51 <li><a href="#standards">What standards does busybox adhere to?</a></li>
52 <li><a href="#portability">Portability.</a></li>
Bernhard Reutner-Fischerbeea4b82008-08-21 12:42:39 +000053 <li><a href="#tips">Tips and tricks.</a>
54 <ul>
Rob Landleyb73d2bf2006-05-11 15:00:32 +000055 <li><a href="#tips_encrypted_passwords">Encrypted Passwords</a></li>
56 <li><a href="#tips_vfork">Fork and vfork</a></li>
57 <li><a href="#tips_short_read">Short reads and writes</a></li>
58 <li><a href="#tips_memory">Memory used by relocatable code, PIC, and static linking.</a></li>
59 <li><a href="#tips_kernel_headers">Including Linux kernel headers.</a></li>
Bernhard Reutner-Fischerbeea4b82008-08-21 12:42:39 +000060 </ul>
61 </li>
Bernhard Reutner-Fischer20a55b72008-08-21 13:32:14 +000062 <li><a href="#who">Who are the BusyBox developers?</a></li>
Eric Andersen6c4a6b12004-10-08 10:50:08 +000063</ol>
64
Denis Vlasenko153cd692007-07-13 15:26:53 +000065
66<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +000067<h1>General questions</h1>
68
Rob Landley380ad122005-09-23 16:52:09 +000069<hr />
Rob Landley380ad122005-09-23 16:52:09 +000070<h2><a name="getting_started">How can I get started using BusyBox?</a></h2>
Denis Vlasenko153cd692007-07-13 15:26:53 +000071
Rob Landley380ad122005-09-23 16:52:09 +000072<p> If you just want to try out busybox without installing it, download the
Rob Landleyac4c92d2006-05-11 17:21:13 +000073 tarball, extract it, run "make defconfig", and then run "make".
Rob Landley380ad122005-09-23 16:52:09 +000074</p>
75<p>
Rob Landleyac4c92d2006-05-11 17:21:13 +000076 This will create a busybox binary with almost all features enabled. To try
Rob Landley380ad122005-09-23 16:52:09 +000077 out a busybox applet, type "./busybox [appletname] [options]", for
78 example "./busybox ls -l" or "./busybox cat LICENSE". Type "./busybox"
79 to see a command list, and "busybox appletname --help" to see a brief
80 usage message for a given applet.
81</p>
82<p>
83 BusyBox uses the name it was invoked under to determine which applet is
84 being invoked. (Try "mv busybox ls" and then "./ls -l".) Installing
85 busybox consists of creating symlinks (or hardlinks) to the busybox
Rob Landley3d283dd2005-11-03 22:11:00 +000086 binary for each applet in busybox, and making sure these links are in
87 the shell's command $PATH. The special applet name "busybox" (or with
88 any optional suffix, such as "busybox-static") uses the first argument
89 to determine which applet to run, as shown above.
Rob Landley380ad122005-09-23 16:52:09 +000090</p>
91<p>
Denis Vlasenkof7996f32007-01-11 17:20:00 +000092 BusyBox also has a feature called the
Bernhard Reutner-Fischer32f3ebf2006-12-10 13:40:16 +000093 <a name="standalone_shell">"standalone shell"</a>, where the busybox
Rob Landley380ad122005-09-23 16:52:09 +000094 shell runs any built-in applets before checking the command path. This
95 feature is also enabled by "make allyesconfig", and to try it out run
96 the command line "PATH= ./busybox ash". This will blank your command path
97 and run busybox as your command shell, so the only commands it can find
98 (without an explicit path such as /bin/ls) are the built-in busybox ones.
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +000099 This is another good way to see what's built into busybox.
100 Note that the standalone shell requires CONFIG_BUSYBOX_EXEC_PATH
101 to be set appropriately, depending on whether or not /proc/self/exe is
102 available or not. If you do not have /proc, then point that config option
103 to the location of your busybox binary, usually /bin/busybox.
104 (So if you set it to /proc/self/exe, and happen to be able to chroot into
105 your rootfs, you must mount /proc beforehand.)
Rob Landley380ad122005-09-23 16:52:09 +0000106</p>
Bernhard Reutner-Fischer32f3ebf2006-12-10 13:40:16 +0000107<p>
108 A typical indication that you set CONFIG_BUSYBOX_EXEC_PATH to proc but
109 forgot to mount proc is:
110<pre>
111$ /bin/echo $PATH
112/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11
113$ echo $PATH
114/bin/sh: echo: not found
115</pre>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000116
Rob Landleyac4c92d2006-05-11 17:21:13 +0000117<hr />
Rob Landleyac4c92d2006-05-11 17:21:13 +0000118<h2><a name="configure">How do I configure busybox?</a></h2>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000119
Rob Landleyac4c92d2006-05-11 17:21:13 +0000120<p> Busybox is configured similarly to the linux kernel. Create a default
121 configuration and then run "make menuconfig" to modify it. The end
122 result is a .config file that tells the busybox build process what features
123 to include. So instead of "./configure; make; make install" the equivalent
124 busybox build would be "make defconfig; make; make install".
125</p>
126
127<p> Busybox configured with all features enabled is a little under a megabyte
128 dynamically linked on x86. To create a smaller busybox, configure it with
129 fewer features. Individual busybox applets cost anywhere from a few
130 hundred bytes to tens of kilobytes. Disable unneeded applets to save,
131 space, using menuconfig.
132</p>
133
134<p>The most important busybox configurators are:</p>
135
136<ul>
137<li><p>make <b>defconfig</b> - Create the maximum "sane" configuration. This
138enables almost all features, minus things like debugging options and features
139that require changes to the rest of the system to work (such as selinux or
140devfs device names). Use this if you want to start from a full-featured
141busybox and remove features until it's small enough.</p></li>
142<li><p>make <b>allnoconfig</b> - Disable everything. This creates a tiny version
143of busybox that doesn't do anything. Start here if you know exactly what
144you want and would like to select only those features.</p></li>
145<li><p>make <b>menuconfig</b> - Interactively modify a .config file through a
146multi-level menu interface. Use this after one of the previous two.</p></li>
147</ul>
148
149<p>Some other configuration options are:</p>
150<ul>
151<li><p>make <b>oldconfig</b> - Update an old .config file for a newer version
152of busybox.</p></li>
153<li><p>make <b>allyesconfig</b> - Select absolutely everything. This creates
154a statically linked version of busybox full of debug code, with dependencies on
155selinux, using devfs names... This makes sure everything compiles. Whether
156or not the result would do anything useful is an open question.</p></li>
157<li><p>make <b>allbareconfig</b> - Select all applets but disable all sub-features
158within each applet. More build coverage testing.</p></li>
159<li><p>make <b>randconfig</b> - Create a random configuration for test purposes.</p></li>
160</ul>
161
162<p> Menuconfig modifies your .config file through an interactive menu where you can enable or disable
163 busybox features, and get help about each feature.
164
Rob Landley380ad122005-09-23 16:52:09 +0000165<p>
166 To build a smaller busybox binary, run "make menuconfig" and disable the
167 features you don't need. (Or run "make allnoconfig" and then use
168 menuconfig to add just the features you need. Don't forget to recompile
169 with "make" once you've finished configuring.)
170</p>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000171
172<hr />
Bernhard Reutner-Fischer8936a192007-06-08 07:19:06 +0000173<h2><a name="build">How do I build BusyBox with a cross-compiler?</a></h2>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000174
Bernhard Reutner-Fischer8936a192007-06-08 07:19:06 +0000175<p>
176 To build busybox with a cross-compiler, specify CROSS_COMPILE=&lt;prefix&gt;.
177</p>
178<p>
179 CROSS_COMPILE specifies the prefix used for all executables used
180 during compilation. Only gcc and related binutils executables
181 are prefixed with $(CROSS_COMPILE) in the makefiles.
182 CROSS_COMPILE can be set on the command line:
Bernhard Reutner-Fischer6887e772008-08-21 13:37:47 +0000183</p>
Bernhard Reutner-Fischer8936a192007-06-08 07:19:06 +0000184<pre>
185 make CROSS_COMPILE=arm-linux-uclibcgnueabi-
186</pre>
Bernhard Reutner-Fischer6887e772008-08-21 13:37:47 +0000187<p>
Bernhard Reutner-Fischer8936a192007-06-08 07:19:06 +0000188 Alternatively CROSS_COMPILE can be set in the environment.
189 Default value for CROSS_COMPILE is not to prefix executables.
190</p>
Bernhard Reutner-Fischer6887e772008-08-21 13:37:47 +0000191<p>
192 To store the cross-compiler in your .config, set the variable
193 CONFIG_CROSS_COMPILER_PREFIX accordingly in menuconfig or by
194 editing the .config file.
195</p>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000196
197<hr />
Rob Landley380ad122005-09-23 16:52:09 +0000198<h2><a name="build_system">How do I build a BusyBox-based system?</a></h2>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000199
Rob Landley380ad122005-09-23 16:52:09 +0000200<p>
201 BusyBox is a package that replaces a dozen standard packages, but it is
202 not by itself a complete bootable system. Building an entire Linux
203 distribution from source is a bit beyond the scope of this FAQ, but it
204 understandably keeps cropping up on the mailing list, so here are some
205 pointers.
206</p>
207<p>
208 Start by learning how to strip a working system down to the bare essentials
209 needed to run one or two commands, so you know what it is you actually
210 need. An excellent practical place to do
211 this is the <a href="http://www.tldp.org/HOWTO/Bootdisk-HOWTO/">Linux
212 BootDisk Howto</a>, or for a more theoretical approach try
213 <a href="http://www.tldp.org/HOWTO/From-PowerUp-To-Bash-Prompt-HOWTO.html">From
214 PowerUp to Bash Prompt</a>.
215</p>
216<p>
217 To learn how to build a working Linux system entirely from source code,
Bernhard Reutner-Fischer5f521502008-08-21 11:52:12 +0000218 the place to go is the <a href="http://www.linuxfromscratch.org/">Linux
Rob Landley380ad122005-09-23 16:52:09 +0000219 From Scratch</a> project. They have an entire book of step-by-step
220 instructions you can
221 <a href="http://www.linuxfromscratch.org/lfs/view/stable/">read online</a>
222 or
223 <a href="http://www.linuxfromscratch.org/lfs/downloads/stable/">download</a>.
224 Be sure to check out the other sections of their main page, including
225 Beyond Linux From Scratch, Hardened Linux From Scratch, their Hints
226 directory, and their LiveCD project. (They also have mailing lists which
227 are better sources of answers to Linux-system building questions than
228 the busybox list.)
229</p>
230<p>
231 If you want an automated yet customizable system builder which produces
232 a BusyBox and uClibc based system, try
Bernhard Reutner-Fischer5f521502008-08-21 11:52:12 +0000233 <a href="http://buildroot.uclibc.org/">buildroot</a>, which is
Rob Landleya253e732006-02-14 08:29:48 +0000234 another project by the maintainer of the uClibc (Erik Andersen).
235 Download the tarball, extract it, unset CC, make.
Rob Landley380ad122005-09-23 16:52:09 +0000236 For more instructions, see the website.
237</p>
238
Rob Landleyd48633f2006-03-09 18:03:21 +0000239<hr />
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000240<h2><a name="kernel">Which Linux kernel versions are supported?</a></h2>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000241
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000242<p>
Rob Landley380ad122005-09-23 16:52:09 +0000243 Full functionality requires Linux 2.4.x or better. (Earlier versions may
244 still work, but are no longer regularly tested.) A large fraction of the
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000245 code should run on just about anything. While the current code is fairly
246 Linux specific, it should be fairly easy to port the majority of the code
247 to support, say, FreeBSD or Solaris, or Mac OS X, or even Windows (if you
248 are into that sort of thing).
Rob Landley380ad122005-09-23 16:52:09 +0000249</p>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000250
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000251<hr />
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000252<h2><a name="arch">Which architectures does BusyBox run on?</a></h2>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000253
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000254<p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000255 BusyBox in general will build on any architecture supported by gcc.
Rob Landley380ad122005-09-23 16:52:09 +0000256 Kernel module loading for 2.4 Linux kernels is currently
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000257 limited to ARM, CRIS, H8/300, x86, ia64, x86_64, m68k, MIPS, PowerPC,
258 S390, SH3/4/5, Sparc, v850e, and x86_64 for 2.4.x kernels.
Rob Landley380ad122005-09-23 16:52:09 +0000259</p>
260<p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000261 With 2.6.x kernels, module loading support should work on all architectures.
Rob Landley380ad122005-09-23 16:52:09 +0000262</p>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000263
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000264<hr />
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000265<h2><a name="libc">Which C libraries are supported?</a></h2>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000266
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000267<p>
Rob Landley380ad122005-09-23 16:52:09 +0000268 On Linux, BusyBox releases are tested against uClibc (0.9.27 or later) and
269 glibc (2.2 or later). Both should provide full functionality with busybox,
270 and if you find a bug we want to hear about it.
271</p>
Mike Frysingerd505e3e2005-10-29 08:03:54 +0000272<p>
Rob Landley380ad122005-09-23 16:52:09 +0000273 Linux-libc5 is no longer maintained (and has no known advantages over
274 uClibc), dietlibc is known to have numerous unfixed bugs, and klibc is
275 missing too many features to build BusyBox. If you require a small C
276 library for Linux, the busybox developers recommend uClibc.
277</p>
278<p>
279 Some BusyBox applets have been built and run under a combination
280 of newlib and libgloss (see
281 <a href="http://www.busybox.net/lists/busybox/2005-March/013759.html">this thread</a>).
282 This is still experimental, but may be supported in a future release.
283</p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000284
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000285<hr />
Mike Frysinger86097b32005-09-15 01:37:36 +0000286<h2><a name="commercial">Can I include BusyBox as part of the software on my device?</a></h2>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000287
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000288<p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000289 Yes. As long as you <a href="http://busybox.net/license.html">fully comply
290 with the generous terms of the GPL BusyBox license</a> you can ship BusyBox
291 as part of the software on your device.
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000292</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000293
294<hr />
Denis Vlasenko153cd692007-07-13 15:26:53 +0000295<h2><a name="external">Where can I find other small utilities since busybox
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000296 does not include the features i want?</a></h2>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000297
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000298<p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000299 we maintain such a <a href="tinyutils.html">list</a> on this site!
300</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000301
302<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000303<h2><a name="demanding">I demand that you to add &lt;favorite feature&gt; right now! How come you don't answer all my questions on the mailing list instantly? I demand that you help me with all of my problems <em>Right Now</em>!</a></h2>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000304
Denis Vlasenko153cd692007-07-13 15:26:53 +0000305<p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000306 You have not paid us a single cent and yet you still have the product of
307 many years of our work. We are not your slaves! We work on BusyBox
308 because we find it useful and interesting. If you go off flaming us, we
309 will ignore you.
310
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000311<hr />
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000312<h2><a name="helpme">I need help with BusyBox! What should I do?</a></h2>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000313
Denis Vlasenko153cd692007-07-13 15:26:53 +0000314<p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000315 If you find that you need help with BusyBox, you can ask for help on the
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000316 BusyBox mailing list at busybox@busybox.net.</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000317
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000318<p> In addition to the mailing list, Erik Andersen (andersee), Manuel Nova
319 (mjn3), Rob Landley (landley), Mike Frysinger (SpanKY), Bernhard Fischer
320 (blindvt), and other long-time BusyBox developers are known to hang out
321 on the uClibc IRC channel: #uclibc on irc.freenode.net. There is a
322 <a href="http://ibot.Rikers.org/%23uclibc/">web archive of
323 daily logs of the #uclibc IRC channel</a> going back to 2002.
324</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000325
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000326<p>
Rob Landleya253e732006-02-14 08:29:48 +0000327 <b>Please do not send private email to Rob, Erik, Manuel, or the other
328 BusyBox contributors asking for private help unless you are planning on
329 paying for consulting services.</b>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000330</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000331
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000332<p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000333 When we answer questions on the BusyBox mailing list, it helps everyone
334 since people with similar problems in the future will be able to get help
335 by searching the mailing list archives. Private help is reserved as a paid
336 service. If you need to use private communication, or if you are serious
337 about getting timely assistance with BusyBox, you should seriously consider
338 paying for consulting services.
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000339</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000340
341<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000342<h2><a name="contracts">I need you to add &lt;favorite feature&gt;! Are the BusyBox developers willing to be paid in order to fix bugs or add in &lt;favorite feature&gt;? Are you willing to provide support contracts?</a></h2>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000343
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000344<p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000345 Yes we are. The easy way to sponsor a new feature is to post an offer on
346 the mailing list to see who's interested. You can also email the project's
347 maintainer and ask them to recommend someone.
348</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000349
Denis Vlasenko153cd692007-07-13 15:26:53 +0000350<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000351<h1>Troubleshooting</h1>
352
353<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000354<h2><a name="bugs">I think I found a bug in BusyBox! What should I do?</a></h2>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000355
356<p>
357 If you simply need help with using or configuring BusyBox, please submit a
358 detailed description of your problem to the BusyBox mailing list at <a
Bernhard Reutner-Fischer557f9c42008-08-21 11:54:23 +0000359 href="mailto:busybox@busybox.net">busybox@busybox.net</a>.
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000360 Please do not send email to individual developers asking
361 for private help unless you are planning on paying for consulting services.
362 When we answer questions on the BusyBox mailing list, it helps everyone,
363 while private answers help only you...
364</p>
365
366<p>
Rob Landley95718b32006-08-16 22:13:56 +0000367 Bug reports and new feature patches sometimes get lost when posted to the
368 mailing list, because the developers of BusyBox are busy people and have
369 only so much they can keep in their brains at a time. You can post a
370 polite reminder after 2-3 days without offending anybody. If that doesn't
371 result in a solution, please use the
372 <a href="http://bugs.busybox.net/">BusyBox Bug
373 and Patch Tracking System</a> to submit a detailed explanation and we'll
374 get to it as soon as we can.
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000375</p>
376
Rob Landley95718b32006-08-16 22:13:56 +0000377<p>
378 Note that bugs entered into the bug system without being mentioned on the
379 mailing list first may languish there for months before anyone even notices
380 them. We generally go through the bug system when preparing for new
381 development releases, to see what fell through the cracks while we were
382 off writing new features. (It's a fast/unreliable vs slow/reliable thing.
383 Saves retransits, but the latency sucks.)
384</p>
385
386<hr />
Bernhard Reutner-Fischerbeea4b82008-08-21 12:42:39 +0000387<h2><a name="backporting">I'm using an ancient version from the dawn of time and something's broken. Can you backport fixes for free?</a></h2>
Rob Landley95718b32006-08-16 22:13:56 +0000388
389<p>Variants of this one get asked a lot.</p>
390
391<p>The purpose of the BusyBox mailing list is to develop and improve BusyBox,
392and we're happy to respond to our users' needs. But if you're coming to the
393list for free tech support we're going to ask you to upgrade to a current
394version before we try to diagnose your problem.</p>
395
Bernhard Reutner-Fischerbeea4b82008-08-21 12:42:39 +0000396<p>If you're building BusyBox 0.50 with uClibc 0.9.19 and gcc 1.27 there's a
Rob Landley95718b32006-08-16 22:13:56 +0000397fairly large chance that whatever problem you're seeing has already been fixed.
398To get that fix, all you have to do is upgrade to a newer version. If you
399don't at least _try_ that, you're wasting our time.</p>
400
401<p>The volunteers are happy to fix any bugs you point out in the current
402versions because doing so helps everybody and makes the project better. We
403want to make the current version work for you. But diagnosing, debugging, and
404backporting fixes to old versions isn't something we do for free, because it
405doesn't help anybody but you. The cost of volunteer tech support is using a
406reasonably current version of the project.</p>
407
408<p>If you don't want to upgrade, you have the complete source code and thus
409the ability to fix it yourself, or hire a consultant to do it for you. If you
410got your version from a vendor who still supports the older version, they can
411help you. But there are limits as to what the volunteers will feel obliged to
412do for you.</p>
413
414<p>As a rule of thumb, volunteers will generally answer polite questions about
415a given version for about three years after its release before it's so old
416we don't remember the answer off the top of our head. And if you want us to
417put any _effort_ into tracking it down, we want you to put in a little effort
418of your own by confirming it's still a problem with the current version. It's
419also hard for us to fix a problem of yours if we can't reproduce it because
420we don't have any systems running an environment that old.</p>
421
422<p>A consultant will happily set up a special environment just to reproduce
423your problem, and you can always ask on the list if any of the developers
424have consulting rates.</p>
425
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000426<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000427<h2><a name="init">Busybox init isn't working!</a></h2>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000428
Mike Frysinger77dbe732005-04-17 04:32:22 +0000429<p>
Rob Landleyc5e4ab72006-06-29 04:59:11 +0000430 Init is the first program that runs, so it might be that no programs are
431 working on your new system because of a problem with your cross-compiler,
432 kernel, console settings, shared libraries, root filesystem... To rule all
433 that out, first build a statically linked version of the following "hello
434 world" program with your cross compiler toolchain:
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000435</p>
436<pre>
437#include &lt;stdio.h&gt;
Mike Frysinger77dbe732005-04-17 04:32:22 +0000438
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000439int main(int argc, char *argv)
440{
441 printf("Hello world!\n");
442 sleep(999999999);
443}
444</pre>
445
446<p>
447 Now try to boot your device with an "init=" argument pointing to your
448 hello world program. Did you see the hello world message? Until you
449 do, don't bother messing with busybox init.
450</p>
451
452<p>
453 Once you've got it working statically linked, try getting it to work
454 dynamically linked. Then read the FAQ entry <a href="#build_system">How
Rob Landleyc5e4ab72006-06-29 04:59:11 +0000455 do I build a BusyBox-based system?</a>, and the
456 <a href="/downloads/BusyBox.html#item_init">documentation for BusyBox
457 init</a>.
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000458</p>
Mike Frysinger77dbe732005-04-17 04:32:22 +0000459
460<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000461<h2><a name="sed">I can't configure busybox on my system.</a></h2>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000462
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000463<p>
464 Configuring Busybox depends on a recent version of sed. Older
465 distributions (Red Hat 7.2, Debian 3.0) may not come with a
466 usable version. Luckily BusyBox can use its own sed to configure itself,
467 although this leads to a bit of a chicken and egg problem.
468 You can work around this by hand-configuring busybox to build with just
469 sed, then putting that sed in your path to configure the rest of busybox
470 with, like so:
471</p>
472
473<pre>
474 tar xvjf sources/busybox-x.x.x.tar.bz2
475 cd busybox-x.x.x
476 make allnoconfig
477 make include/bb_config.h
478 echo "CONFIG_SED=y" >> .config
479 echo "#undef ENABLE_SED" >> include/bb_config.h
480 echo "#define ENABLE_SED 1" >> include/bb_config.h
481 make
482 mv busybox sed
483 export PATH=`pwd`:"$PATH"
484</pre>
485
486<p>Then you can run "make defconfig" or "make menuconfig" normally.</p>
487
488<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000489<h2><a name="job_control">Why do I keep getting "sh: can't access tty; job control turned off" errors? Why doesn't Control-C work within my shell?</a></h2>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000490
Denis Vlasenko153cd692007-07-13 15:26:53 +0000491<p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000492 Job control will be turned off since your shell can not obtain a controlling
493 terminal. This typically happens when you run your shell on /dev/console.
494 The kernel will not provide a controlling terminal on the /dev/console
495 device. Your should run your shell on a normal tty such as tty1 or ttyS0
496 and everything will work perfectly. If you <em>REALLY</em> want your shell
497 to run on /dev/console, then you can hack your kernel (if you are into that
498 sortof thing) by changing drivers/char/tty_io.c to change the lines where
499 it sets "noctty = 1;" to instead set it to "0". I recommend you instead
500 run your shell on a real console...
501</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000502
Denis Vlasenko153cd692007-07-13 15:26:53 +0000503<hr />
504<h1>Misc. questions</h1>
505
506<hr />
507<h2><a name="tz">How do I change the time zone in busybox?</a></h2>
508
509<p>Busybox has nothing to do with the timezone. Please consult your libc
Bernhard Reutner-Fischer5f521502008-08-21 11:52:12 +0000510documentation. (<a href="http://google.com/search?q=uclibc+glibc+timezone">http://google.com/search?q=uclibc+glibc+timezone</a>).</p>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000511
512<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000513<h1>Development</h1>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000514
Denis Vlasenko153cd692007-07-13 15:26:53 +0000515<hr />
516<h2><a name="goals">What are the goals of busybox?</a></h2>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000517
518<p>Busybox aims to be the smallest and simplest correct implementation of the
519standard Linux command line tools. First and foremost, this means the
520smallest executable size we can manage. We also want to have the simplest
521and cleanest implementation we can manage, be <a href="#standards">standards
522compliant</a>, minimize run-time memory usage (heap and stack), run fast, and
523take over the world.</p>
524
Denis Vlasenko153cd692007-07-13 15:26:53 +0000525<hr />
526<h2><a name="design">What is the design of busybox?</a></h2>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000527
528<p>Busybox is like a swiss army knife: one thing with many functions.
529The busybox executable can act like many different programs depending on
530the name used to invoke it. Normal practice is to create a bunch of symlinks
531pointing to the busybox binary, each of which triggers a different busybox
532function. (See <a href="FAQ.html#getting_started">getting started</a> in the
533FAQ for more information on usage, and <a href="BusyBox.html">the
534busybox documentation</a> for a list of symlink names and what they do.)
535
536<p>The "one binary to rule them all" approach is primarily for size reasons: a
537single multi-purpose executable is smaller then many small files could be.
538This way busybox only has one set of ELF headers, it can easily share code
539between different apps even when statically linked, it has better packing
540efficiency by avoding gaps between files or compression dictionary resets,
541and so on.</p>
542
543<p>Work is underway on new options such as "make standalone" to build separate
544binaries for each applet, and a "libbb.so" to make the busybox common code
545available as a shared library. Neither is ready yet at the time of this
546writing.</p>
547
548<a name="source"></a>
549
Denis Vlasenko153cd692007-07-13 15:26:53 +0000550<hr />
551<h2><a name="source_applets">The applet directories</a></h2>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000552
553<p>The directory "applets" contains the busybox startup code (applets.c and
554busybox.c), and several subdirectories containing the code for the individual
555applets.</p>
556
557<p>Busybox execution starts with the main() function in applets/busybox.c,
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000558which sets the global variable applet_name to argv[0] and calls
Denis Vlasenkoe4f2d062007-04-11 17:03:19 +0000559run_applet_and_exit() in applets/applets.c. That uses the applets[] array
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000560(defined in include/busybox.h and filled out in include/applets.h) to
561transfer control to the appropriate APPLET_main() function (such as
562cat_main() or sed_main()). The individual applet takes it from there.</p>
563
564<p>This is why calling busybox under a different name triggers different
565functionality: main() looks up argv[0] in applets[] to get a function pointer
566to APPLET_main().</p>
567
568<p>Busybox applets may also be invoked through the multiplexor applet
Denis Vlasenko82d38da2007-10-10 14:38:47 +0000569"busybox" (see busybox_main() in libbb/appletlib.c), and through the
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000570standalone shell (grep for STANDALONE_SHELL in applets/shell/*.c).
571See <a href="FAQ.html#getting_started">getting started</a> in the
572FAQ for more information on these alternate usage mechanisms, which are
573just different ways to reach the relevant APPLET_main() function.</p>
574
575<p>The applet subdirectories (archival, console-tools, coreutils,
576debianutils, e2fsprogs, editors, findutils, init, loginutils, miscutils,
577modutils, networking, procps, shell, sysklogd, and util-linux) correspond
578to the configuration sub-menus in menuconfig. Each subdirectory contains the
579code to implement the applets in that sub-menu, as well as a Config.in
580file defining that configuration sub-menu (with dependencies and help text
581for each applet), and the makefile segment (Makefile.in) for that
582subdirectory.</p>
583
584<p>The run-time --help is stored in usage_messages[], which is initialized at
585the start of applets/applets.c and gets its help text from usage.h. During the
586build this help text is also used to generate the BusyBox documentation (in
587html, txt, and man page formats) in the docs directory. See
588<a href="#adding">adding an applet to busybox</a> for more
589information.</p>
590
Denis Vlasenko153cd692007-07-13 15:26:53 +0000591<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000592<h2><a name="source_libbb"><b>libbb</b></a></h2>
593
594<p>Most non-setup code shared between busybox applets lives in the libbb
595directory. It's a mess that evolved over the years without much auditing
596or cleanup. For anybody looking for a great project to break into busybox
597development with, documenting libbb would be both incredibly useful and good
598experience.</p>
599
600<p>Common themes in libbb include allocation functions that test
601for failure and abort the program with an error message so the caller doesn't
602have to test the return value (xmalloc(), xstrdup(), etc), wrapped versions
603of open(), close(), read(), and write() that test for their own failures
604and/or retry automatically, linked list management functions (llist.c),
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000605command line argument parsing (getopt32.c), and a whole lot more.</p>
Eric Andersen6c4a6b12004-10-08 10:50:08 +0000606
607<hr />
Rob Landleyc7a3e1b2005-07-31 04:25:00 +0000608<h2><a name="optimize">I want to make busybox even smaller, how do I go about it?</a></h2>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000609
Rob Landleyc7a3e1b2005-07-31 04:25:00 +0000610<p>
611 To conserve bytes it's good to know where they're being used, and the
612 size of the final executable isn't always a reliable indicator of
613 the size of the components (since various structures are rounded up,
614 so a small change may not even be visible by itself, but many small
615 savings add up).
616</p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000617
618<p> The busybox Makefile builds two versions of busybox, one of which
619 (busybox_unstripped) has extra information that various analysis tools
620 can use. (This has nothing to do with CONFIG_DEBUG, leave that off
621 when trying to optimize for size.)
622</p>
623
624<p> The <b>"make bloatcheck"</b> option uses Matt Mackall's bloat-o-meter
625 script to compare two versions of busybox (busybox_unstripped vs
626 busybox_old), and report which symbols changed size and by how much.
Rob Landleyd244bc12006-05-27 21:30:34 +0000627 To use it, first build a base version with <b>"make baseline"</b>.
628 (This creates busybox_old, which should have the original sizes for
629 comparison purposes.) Then build the new version with your changes
630 and run "make bloatcheck" to see the size differences from the old
631 version.
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000632</p>
Rob Landleyc7a3e1b2005-07-31 04:25:00 +0000633<p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000634 The first line of output has totals: how many symbols were added or
635 removed, how many symbols grew or shrank, the number of bytes added
636 and number of bytes removed by these changes, and finally the total
637 number of bytes difference between the two files. The remaining
638 lines show each individual symbol, the old and new sizes, and the
639 increase or decrease in size (which results are sorted by).
640</p>
641<p>
642 The <b>"make sizes"</b> option produces raw symbol size information for
643 busybox_unstripped. This is the output from the "nm --size-sort"
644 command (see "man nm" for more information), and is the information
645 bloat-o-meter parses to produce the comparison report above. For
646 defconfig, this is a good way to find the largest symbols in the tree
647 (which is a good place to start when trying to shrink the code). To
648 take a closer look at individual applets, configure busybox with just
649 one applet (run "make allnoconfig" and then switch on a single applet
650 with menuconfig), and then use "make sizes" to see the size of that
651 applet's components.
652</p>
653<p>
654 The "showasm" command (in the scripts directory) produces an assembly
655 dump of a function, providing a closer look at what changed. Try
656 "scripts/showasm busybox_unstripped" to list available symbols, and
657 "scripts/showasm busybox_unstripped symbolname" to see the assembly
658 for a sepecific symbol.
Rob Landleyc7a3e1b2005-07-31 04:25:00 +0000659</p>
Denis Vlasenko153cd692007-07-13 15:26:53 +0000660
Rob Landleyc7a3e1b2005-07-31 04:25:00 +0000661<hr />
Denis Vlasenko153cd692007-07-13 15:26:53 +0000662<h2><a name="adding">Adding an applet to busybox</a></h2>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000663
664<p>To add a new applet to busybox, first pick a name for the applet and
665a corresponding CONFIG_NAME. Then do this:</p>
666
667<ul>
668<li>Figure out where in the busybox source tree your applet best fits,
669and put your source code there. Be sure to use APPLET_main() instead
670of main(), where APPLET is the name of your applet.</li>
671
672<li>Add your applet to the relevant Config.in file (which file you add
673it to determines where it shows up in "make menuconfig"). This uses
674the same general format as the linux kernel's configuration system.</li>
675
676<li>Add your applet to the relevant Makefile.in file (in the same
677directory as the Config.in you chose), using the existing entries as a
678template and the same CONFIG symbol as you used for Config.in. (Don't
679forget "needlibm" or "needcrypt" if your applet needs libm or
680libcrypt.)</li>
681
682<li>Add your applet to "include/applets.h", using one of the existing
683entries as a template. (Note: this is in alphabetical order. Applets
684are found via binary search, and if you add an applet out of order it
685won't work.)</li>
686
687<li>Add your applet's runtime help text to "include/usage.h". You need
688at least appname_trivial_usage (the minimal help text, always included
689in the busybox binary when this applet is enabled) and appname_full_usage
690(extra help text included in the busybox binary with
691CONFIG_FEATURE_VERBOSE_USAGE is enabled), or it won't compile.
692The other two help entry types (appname_example_usage and
693appname_notes_usage) are optional. They don't take up space in the binary,
694but instead show up in the generated documentation (BusyBox.html,
695BusyBox.txt, and the man page BusyBox.1).</li>
696
697<li>Run menuconfig, switch your applet on, compile, test, and fix the
698bugs. Be sure to try both "allyesconfig" and "allnoconfig" (and
699"allbareconfig" if relevant).</li>
700
701</ul>
702
Denis Vlasenko153cd692007-07-13 15:26:53 +0000703<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000704<h2><a name="standards">What standards does busybox adhere to?</a></h2>
705
706<p>The standard we're paying attention to is the "Shell and Utilities"
707portion of the <a href="http://www.opengroup.org/onlinepubs/009695399/">Open
708Group Base Standards</a> (also known as the Single Unix Specification version
7093 or SUSv3). Note that paying attention isn't necessarily the same thing as
710following it.</p>
711
712<p>SUSv3 doesn't even mention things like init, mount, tar, or losetup, nor
713commonly used options like echo's '-e' and '-n', or sed's '-i'. Busybox is
714driven by what real users actually need, not the fact the standard believes
715we should implement ed or sccs. For size reasons, we're unlikely to include
716much internationalization support beyond UTF-8, and on top of all that, our
717configuration menu lets developers chop out features to produce smaller but
718very non-standard utilities.</p>
719
720<p>Also, Busybox is aimed primarily at Linux. Unix standards are interesting
721because Linux tries to adhere to them, but portability to dozens of platforms
722is only interesting in terms of offering a restricted feature set that works
723everywhere, not growing dozens of platform-specific extensions. Busybox
724should be portable to all hardware platforms Linux supports, and any other
725similar operating systems that are easy to do and won't require much
726maintenance.</p>
727
728<p>In practice, standards compliance tends to be a clean-up step once an
729applet is otherwise finished. When polishing and testing a busybox applet,
730we ensure we have at least the option of full standards compliance, or else
731document where we (intentionally) fall short.</p>
732
Denis Vlasenko153cd692007-07-13 15:26:53 +0000733<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000734<h2><a name="portability">Portability.</a></h2>
735
736<p>Busybox is a Linux project, but that doesn't mean we don't have to worry
737about portability. First of all, there are different hardware platforms,
738different C library implementations, different versions of the kernel and
739build toolchain... The file "include/platform.h" exists to centralize and
740encapsulate various platform-specific things in one place, so most busybox
741code doesn't have to care where it's running.</p>
742
743<p>To start with, Linux runs on dozens of hardware platforms. We try to test
744each release on x86, x86-64, arm, power pc, and mips. (Since qemu can handle
745all of these, this isn't that hard.) This means we have to care about a number
746of portability issues like endianness, word size, and alignment, all of which
747belong in platform.h. That header handles conditional #includes and gives
748us macros we can use in the rest of our code. At some point in the future
749we might grow a platform.c, possibly even a platform subdirectory. As long
750as the applets themselves don't have to care.</p>
751
752<p>On a related note, we made the "default signedness of char varies" problem
753go away by feeding the compiler -funsigned-char. This gives us consistent
754behavior on all platforms, and defaults to 8-bit clean text processing (which
755gets us halfway to UTF-8 support). NOMMU support is less easily separated
756(see the tips section later in this document), but we're working on it.</p>
757
758<p>Another type of portability is build environments: we unapologetically use
759a number of gcc and glibc extensions (as does the Linux kernel), but these have
760been picked up by packages like uClibc, TCC, and Intel's C Compiler. As for
761gcc, we take advantage of newer compiler optimizations to get the smallest
762possible size, but we also regression test against an older build environment
763using the Red Hat 9 image at "http://busybox.net/downloads/qemu". This has a
7642.4 kernel, gcc 3.2, make 3.79.1, and glibc 2.3, and is the oldest
765build/deployment environment we still put any effort into maintaining. (If
766anyone takes an interest in older kernels you're welcome to submit patches,
767but the effort would probably be better spent
768<a href="http://www.selenic.com/linux-tiny/">trimming
769down the 2.6 kernel</a>.) Older gcc versions than that are uninteresting since
770we now use c99 features, although
771<a href="http://fabrice.bellard.free.fr/tcc/">tcc</a> might be worth a
772look.</p>
773
774<p>We also test busybox against the current release of uClibc. Older versions
775of uClibc aren't very interesting (they were buggy, and uClibc wasn't really
776usable as a general-purpose C library before version 0.9.26 anyway).</p>
777
778<p>Other unix implementations are mostly uninteresting, since Linux binaries
779have become the new standard for portable Unix programs. Specifically,
780the ubiquity of Linux was cited as the main reason the Intel Binary
781Compatability Standard 2 died, by the standards group organized to name a
782successor to ibcs2: <a href="http://www.telly.org/86open/">the 86open
783project</a>. That project disbanded in 1999 with the endorsement of an
784existing standard: Linux ELF binaries. Since then, the major players at the
785time (such as <a
Bernhard Reutner-Fischerbeea4b82008-08-21 12:42:39 +0000786href="http://www-03.ibm.com/servers/aix/products/aixos/linux/index.html">AIX</a>, <a
787href="http://www.sun.com/software/solaris/ds/linux_interop.jsp#3">Solaris</a>, and
788<a href="http://www.onlamp.com/pub/a/bsd/2000/03/17/linuxapps.html">FreeBSD</a>)
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000789have all either grown Linux support or folded.</p>
790
791<p>The major exceptions are newcomer MacOS X, some embedded environments
792(such as newlib+libgloss) which provide a posix environment but not a full
793Linux environment, and environments like Cygwin that provide only partial Linux
794emulation. Also, some embedded Linux systems run a Linux kernel but amputate
795things like the /proc directory to save space.</p>
796
797<p>Supporting these systems is largely a question of providing a clean subset
798of BusyBox's functionality -- whichever applets can easily be made to
799work in that environment. Annotating the configuration system to
800indicate which applets require which prerequisites (such as procfs) is
801also welcome. Other efforts to support these systems (swapping #include
802files to build in different environments, adding adapter code to platform.h,
803adding more extensive special-case supporting infrastructure such as mount's
804legacy mtab support) are handled on a case-by-case basis. Support that can be
805cleanly hidden in platform.h is reasonably attractive, and failing that
806support that can be cleanly separated into a separate conditionally compiled
807file is at least worth a look. Special-case code in the body of an applet is
808something we're trying to avoid.</p>
809
Denis Vlasenko153cd692007-07-13 15:26:53 +0000810<hr />
Bernhard Reutner-Fischerb5d701d2008-08-21 12:52:45 +0000811<h2><a name="tips">Programming tips and tricks.</a></h2>
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000812
813<p>Various things busybox uses that aren't particularly well documented
814elsewhere.</p>
815
Denis Vlasenko153cd692007-07-13 15:26:53 +0000816<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000817<h2><a name="tips_encrypted_passwords">Encrypted Passwords</a></h2>
818
819<p>Password fields in /etc/passwd and /etc/shadow are in a special format.
820If the first character isn't '$', then it's an old DES style password. If
821the first character is '$' then the password is actually three fields
822separated by '$' characters:</p>
823<pre>
824 <b>$type$salt$encrypted_password</b>
825</pre>
826
827<p>The "type" indicates which encryption algorithm to use: 1 for MD5 and 2 for SHA1.</p>
828
829<p>The "salt" is a bunch of ramdom characters (generally 8) the encryption
830algorithm uses to perturb the password in a known and reproducible way (such
831as by appending the random data to the unencrypted password, or combining
832them with exclusive or). Salt is randomly generated when setting a password,
833and then the same salt value is re-used when checking the password. (Salt is
834thus stored unencrypted.)</p>
835
836<p>The advantage of using salt is that the same cleartext password encrypted
837with a different salt value produces a different encrypted value.
838If each encrypted password uses a different salt value, an attacker is forced
839to do the cryptographic math all over again for each password they want to
840check. Without salt, they could simply produce a big dictionary of commonly
841used passwords ahead of time, and look up each password in a stolen password
842file to see if it's a known value. (Even if there are billions of possible
843passwords in the dictionary, checking each one is just a binary search against
844a file only a few gigabytes long.) With salt they can't even tell if two
845different users share the same password without guessing what that password
846is and decrypting it. They also can't precompute the attack dictionary for
847a specific password until they know what the salt value is.</p>
848
849<p>The third field is the encrypted password (plus the salt). For md5 this
850is 22 bytes.</p>
851
852<p>The busybox function to handle all this is pw_encrypt(clear, salt) in
853"libbb/pw_encrypt.c". The first argument is the clear text password to be
854encrypted, and the second is a string in "$type$salt$password" format, from
855which the "type" and "salt" fields will be extracted to produce an encrypted
856value. (Only the first two fields are needed, the third $ is equivalent to
857the end of the string.) The return value is an encrypted password in
858/etc/passwd format, with all three $ separated fields. It's stored in
859a static buffer, 128 bytes long.</p>
860
861<p>So when checking an existing password, if pw_encrypt(text,
862old_encrypted_password) returns a string that compares identical to
863old_encrypted_password, you've got the right password. When setting a new
864password, generate a random 8 character salt string, put it in the right
865format with sprintf(buffer, "$%c$%s", type, salt), and feed buffer as the
866second argument to pw_encrypt(text,buffer).</p>
867
Denis Vlasenko153cd692007-07-13 15:26:53 +0000868<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000869<h2><a name="tips_vfork">Fork and vfork</a></h2>
870
871<p>On systems that haven't got a Memory Management Unit, fork() is unreasonably
872expensive to implement (and sometimes even impossible), so a less capable
873function called vfork() is used instead. (Using vfork() on a system with an
874MMU is like pounding a nail with a wrench. Not the best tool for the job, but
875it works.)</p>
876
877<p>Busybox hides the difference between fork() and vfork() in
878libbb/bb_fork_exec.c. If you ever want to fork and exec, use bb_fork_exec()
879(which returns a pid and takes the same arguments as execve(), although in
880this case envp can be NULL) and don't worry about it. This description is
881here in case you want to know why that does what it does.</p>
882
883<p>Implementing fork() depends on having a Memory Management Unit. With an
884MMU then you can simply set up a second set of page tables and share the
885physical memory via copy-on-write. So a fork() followed quickly by exec()
886only copies a few pages of the parent's memory, just the ones it changes
887before freeing them.</p>
888
889<p>With a very primitive MMU (using a base pointer plus length instead of page
890tables, which can provide virtual addresses and protect processes from each
891other, but no copy on write) you can still implement fork. But it's
892unreasonably expensive, because you have to copy all the parent process'
893memory into the new process (which could easily be several megabytes per fork).
894And you have to do this even though that memory gets freed again as soon as the
895exec happens. (This is not just slow and a waste of space but causes memory
896usage spikes that can easily cause the system to run out of memory.)</p>
897
898<p>Without even a primitive MMU, you have no virtual addresses. Every process
899can reach out and touch any other process' memory, because all pointers are to
900physical addresses with no protection. Even if you copy a process' memory to
901new physical addresses, all of its pointers point to the old objects in the
902old process. (Searching through the new copy's memory for pointers and
903redirect them to the new locations is not an easy problem.)</p>
904
905<p>So with a primitive or missing MMU, fork() is just not a good idea.</p>
906
907<p>In theory, vfork() is just a fork() that writeably shares the heap and stack
908rather than copying it (so what one process writes the other one sees). In
909practice, vfork() has to suspend the parent process until the child does exec,
910at which point the parent wakes up and resumes by returning from the call to
911vfork(). All modern kernel/libc combinations implement vfork() to put the
912parent to sleep until the child does its exec. There's just no other way to
913make it work: the parent has to know the child has done its exec() or exit()
914before it's safe to return from the function it's in, so it has to block
915until that happens. In fact without suspending the parent there's no way to
916even store separate copies of the return value (the pid) from the vfork() call
917itself: both assignments write into the same memory location.</p>
918
919<p>One way to understand (and in fact implement) vfork() is this: imagine
920the parent does a setjmp and then continues on (pretending to be the child)
921until the exec() comes around, then the _exec_ does the actual fork, and the
922parent does a longjmp back to the original vfork call and continues on from
923there. (It thus becomes obvious why the child can't return, or modify
924local variables it doesn't want the parent to see changed when it resumes.)
925
926<p>Note a common mistake: the need for vfork doesn't mean you can't have two
927processes running at the same time. It means you can't have two processes
928sharing the same memory without stomping all over each other. As soon as
929the child calls exec(), the parent resumes.</p>
930
931<p>If the child's attempt to call exec() fails, the child should call _exit()
932rather than a normal exit(). This avoids any atexit() code that might confuse
933the parent. (The parent should never call _exit(), only a vforked child that
934failed to exec.)</p>
935
936<p>(Now in theory, a nommu system could just copy the _stack_ when it forks
937(which presumably is much shorter than the heap), and leave the heap shared.
938Even with no MMU at all
939In practice, you've just wound up in a multi-threaded situation and you can't
940do a malloc() or free() on your heap without freeing the other process' memory
941(and if you don't have the proper locking for being threaded, corrupting the
942heap if both of you try to do it at the same time and wind up stomping on
943each other while traversing the free memory lists). The thing about vfork is
944that it's a big red flag warning "there be dragons here" rather than
945something subtle and thus even more dangerous.)</p>
946
Denis Vlasenko153cd692007-07-13 15:26:53 +0000947<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000948<h2><a name="tips_sort_read">Short reads and writes</a></h2>
949
950<p>Busybox has special functions, bb_full_read() and bb_full_write(), to
951check that all the data we asked for got read or written. Is this a real
952world consideration? Try the following:</p>
953
954<pre>while true; do echo hello; sleep 1; done | tee out.txt</pre>
955
956<p>If tee is implemented with bb_full_read(), tee doesn't display output
957in real time but blocks until its entire input buffer (generally a couple
958kilobytes) is read, then displays it all at once. In that case, we _want_
959the short read, for user interface reasons. (Note that read() should never
960return 0 unless it has hit the end of input, and an attempt to write 0
961bytes should be ignored by the OS.)</p>
962
963<p>As for short writes, play around with two processes piping data to each
964other on the command line (cat bigfile | gzip &gt; out.gz) and suspend and
965resume a few times (ctrl-z to suspend, "fg" to resume). The writer can
966experience short writes, which are especially dangerous because if you don't
967notice them you'll discard data. They can also happen when a system is under
968load and a fast process is piping to a slower one. (Such as an xterm waiting
969on x11 when the scheduler decides X is being a CPU hog with all that
970text console scrolling...)</p>
971
972<p>So will data always be read from the far end of a pipe at the
973same chunk sizes it was written in? Nope. Don't rely on that. For one
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000974counterexample, see <a href="http://www.faqs.org/rfcs/rfc896.html">rfc 896
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000975for Nagle's algorithm</a>, which waits a fraction of a second or so before
976sending out small amounts of data through a TCP/IP connection in case more
977data comes in that can be merged into the same packet. (In case you were
978wondering why action games that use TCP/IP set TCP_NODELAY to lower the latency
979on their their sockets, now you know.)</p>
980
Denis Vlasenko153cd692007-07-13 15:26:53 +0000981<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +0000982<h2><a name="tips_memory">Memory used by relocatable code, PIC, and static linking.</a></h2>
983
984<p>The downside of standard dynamic linking is that it results in self-modifying
985code. Although each executable's pages are mmaped() into a process' address
986space from the executable file and are thus naturally shared between processes
987out of the page cache, the library loader (ld-linux.so.2 or ld-uClibc.so.0)
988writes to these pages to supply addresses for relocatable symbols. This
989dirties the pages, triggering copy-on-write allocation of new memory for each
990processes' dirtied pages.</p>
991
992<p>One solution to this is Position Independent Code (PIC), a way of linking
993a file so all the relocations are grouped together. This dirties fewer
994pages (often just a single page) for each process' relocations. The down
995side is this results in larger executables, which take up more space on disk
996(and a correspondingly larger space in memory). But when many copies of the
997same program are running, PIC dynamic linking trades a larger disk footprint
998for a smaller memory footprint, by sharing more pages.</p>
999
1000<p>A third solution is static linking. A statically linked program has no
1001relocations, and thus the entire executable is shared between all running
1002instances. This tends to have a significantly larger disk footprint, but
1003on a system with only one or two executables, shared libraries aren't much
1004of a win anyway.</p>
1005
1006<p>You can tell the glibc linker to display debugging information about its
1007relocations with the environment variable "LD_DEBUG". Try
1008"LD_DEBUG=help /bin/true" for a list of commands. Learning to interpret
1009"LD_DEBUG=statistics cat /proc/self/statm" could be interesting.</p>
1010
1011<p>For more on this topic, here's Rich Felker:</p>
1012<blockquote>
1013<p>Dynamic linking (without fixed load addresses) fundamentally requires
1014at least one dirty page per dso that uses symbols. Making calls (but
1015never taking the address explicitly) to functions within the same dso
1016does not require a dirty page by itself, but will with ELF unless you
1017use -Bsymbolic or hidden symbols when linking.</p>
1018
1019<p>ELF uses significant additional stack space for the kernel to pass all
1020the ELF data structures to the newly created process image. These are
1021located above the argument list and environment. This normally adds 1
1022dirty page to the process size.</p>
1023
1024<p>The ELF dynamic linker has its own data segment, adding one or more
1025dirty pages. I believe it also performs relocations on itself.</p>
1026
1027<p>The ELF dynamic linker makes significant dynamic allocations to manage
1028the global symbol table and the loaded dso's. This data is never
1029freed. It will be needed again if libdl is used, so unconditionally
1030freeing it is not possible, but normal programs do not use libdl. Of
1031course with glibc all programs use libdl (due to nsswitch) so the
1032issue was never addressed.</p>
1033
1034<p>ELF also has the issue that segments are not page-aligned on disk.
1035This saves up to 4k on disk, but at the expense of using an additional
1036dirty page in most cases, due to a large portion of the first data
1037page being filled with a duplicate copy of the last text page.</p>
1038
1039<p>The above is just a partial list of the tiny memory penalties of ELF
1040dynamic linking, which eventually add up to quite a bit. The smallest
1041I've been able to get a process down to is 8 dirty pages, and the
1042above factors seem to mostly account for it (but some were difficult
1043to measure).</p>
1044</blockquote>
1045
Denis Vlasenko153cd692007-07-13 15:26:53 +00001046<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +00001047<h2><a name="tips_kernel_headers"></a>Including kernel headers</h2>
1048
Bernhard Reutner-Fischerb5d701d2008-08-21 12:52:45 +00001049<p>The &quot;linux&quot; or &quot;asm&quot; directories of /usr/include
1050contain Linux kernel
Rob Landleyb73d2bf2006-05-11 15:00:32 +00001051headers, so that the C library can talk directly to the Linux kernel. In
1052a perfect world, applications shouldn't include these headers directly, but
1053we don't live in a perfect world.</p>
1054
1055<p>For example, Busybox's losetup code wants linux/loop.c because nothing else
1056#defines the structures to call the kernel's loopback device setup ioctls.
1057Attempts to cut and paste the information into a local busybox header file
1058proved incredibly painful, because portions of the loop_info structure vary by
1059architecture, namely the type __kernel_dev_t has different sizes on alpha,
Bernhard Reutner-Fischerb5d701d2008-08-21 12:52:45 +00001060arm, x86, and so on. Meaning we either #include &lt;linux/posix_types.h&gt; or
Rob Landleyb73d2bf2006-05-11 15:00:32 +00001061we hardwire #ifdefs to check what platform we're building on and define this
1062type appropriately for every single hardware architecture supported by
1063Linux, which is simply unworkable.</p>
1064
1065<p>This is aside from the fact that the relevant type defined in
1066posix_types.h was renamed to __kernel_old_dev_t during the 2.5 series, so
1067to cut and paste the structure into our header we have to #include
Bernhard Reutner-Fischerb5d701d2008-08-21 12:52:45 +00001068&lt;linux/version.h&gt; to figure out which name to use. (What we actually
1069do is
Rob Landleyb73d2bf2006-05-11 15:00:32 +00001070check if we're building on 2.6, and if so just use the new 64 bit structure
1071instead to avoid the rename entirely.) But we still need the version
1072check, since 2.4 didn't have the 64 bit structure.</p>
1073
1074<p>The BusyBox developers spent <u>two years</u> trying to figure
1075out a clean way to do all this. There isn't one. The losetup in the
1076util-linux package from kernel.org isn't doing it cleanly either, they just
1077hide the ugliness by nesting #include files. Their mount/loop.h
Bernhard Reutner-Fischerb5d701d2008-08-21 12:52:45 +00001078#includes &quot;my_dev_t.h&quot;, which #includes &lt;linux/posix_types.h&gt;
1079and &lt;linux/version.h&gt; just like we do. There simply is no alternative.
1080</p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +00001081
1082<p>Just because directly #including kernel headers is sometimes
1083unavoidable doesn't me we should include them when there's a better
1084way to do it. However, block copying information out of the kernel headers
1085is not a better way.</p>
1086
Denis Vlasenko153cd692007-07-13 15:26:53 +00001087<hr />
Rob Landleyb73d2bf2006-05-11 15:00:32 +00001088<h2><a name="who">Who are the BusyBox developers?</a></h2>
1089
1090<p>The following login accounts currently exist on busybox.net. (I.E. these
Bernhard Reutner-Fischer5f521502008-08-21 11:52:12 +00001091people can commit <a href="http://busybox.net/downloads/patches/">patches</a>
Rob Landleyb73d2bf2006-05-11 15:00:32 +00001092into subversion for the BusyBox, uClibc, and buildroot projects.)</p>
1093
1094<pre>
Bernhard Reutner-Fischer5f521502008-08-21 11:52:12 +00001095aldot :Bernhard Reutner-Fischer
Denis Vlasenkoabfc4cf2006-11-18 16:30:04 +00001096andersen :Erik Andersen - uClibc and BuildRoot maintainer.
Rob Landleyb73d2bf2006-05-11 15:00:32 +00001097bug1 :Glenn McGrath
1098davidm :David McCullough
Denis Vlasenkoabfc4cf2006-11-18 16:30:04 +00001099gkajmowi :Garrett Kajmowicz - uClibc++ maintainer
Rob Landleyb73d2bf2006-05-11 15:00:32 +00001100jbglaw :Jan-Benedict Glaw
1101jocke :Joakim Tjernlund
Bernhard Reutner-Fischer5f521502008-08-21 11:52:12 +00001102landley :Rob Landley
Rob Landleyb73d2bf2006-05-11 15:00:32 +00001103lethal :Paul Mundt
1104mjn3 :Manuel Novoa III
1105osuadmin :osuadmin
1106pgf :Paul Fox
1107pkj :Peter Kjellerstedt
1108prpplague :David Anders
1109psm :Peter S. Mazinger
1110russ :Russ Dill
1111sandman :Robert Griebl
1112sjhill :Steven J. Hill
1113solar :Ned Ludd
1114timr :Tim Riker
1115tobiasa :Tobias Anderberg
1116vapier :Mike Frysinger
Bernhard Reutner-Fischer5f521502008-08-21 11:52:12 +00001117vda :Denys Vlasenko - BusyBox maintainer
Rob Landleyb73d2bf2006-05-11 15:00:32 +00001118</pre>
1119
1120<p>The following accounts used to exist on busybox.net, but don't anymore so
Bernhard Reutner-Fischerb5d701d2008-08-21 12:52:45 +00001121I can't ask /etc/passwd for their names. Rob Wentworth
1122&lt;robwen at gmail.com&gt; asked Google and recovered the names:</p>
Rob Landleyb73d2bf2006-05-11 15:00:32 +00001123
1124<pre>
Denis Vlasenkoabfc4cf2006-11-18 16:30:04 +00001125aaronl :Aaron Lehmann
1126beppu :John Beppu
1127dwhedon :David Whedon
1128erik :Erik Andersen
Denis Vlasenkof7996f32007-01-11 17:20:00 +00001129gfeldman :Gennady Feldman
Denis Vlasenkoabfc4cf2006-11-18 16:30:04 +00001130jimg :Jim Gleason
1131kraai :Matt Kraai
1132markw :Mark Whitley
1133miles :Miles Bader
1134proski :Pavel Roskin
1135rjune :Richard June
1136tausq :Randolph Chung
1137vodz :Vladimir N. Oleynik
Rob Landleyb73d2bf2006-05-11 15:00:32 +00001138</pre>
1139
1140
Eric Andersen6c4a6b12004-10-08 10:50:08 +00001141<br>
1142<br>
1143<br>
1144
1145<!--#include file="footer.html" -->