blob: 54cba750e05df552233f4bf949e311e2cae408e4 [file] [log] [blame]
Mark Whitley3b565cd2001-03-02 19:14:25 +00001Contributing To Busybox
2=======================
3
4This document describes what you need to do to contribute to Busybox, where
5you can help, guidelines on testing, and how to submit a well-formed patch
6that is more likely to be accepted.
7
Eric Andersen2423b122001-12-08 01:56:15 +00008The Busybox home page is at: http://busybox.net/
Mark Whitley3b565cd2001-03-02 19:14:25 +00009
10
11
12Pre-Contribution Checklist
13--------------------------
14
15So you want to contribute to Busybox, eh? Great, wonderful, glad you want to
16help. However, before you dive in, headlong and hotfoot, there are some things
17you need to do:
18
19
Denys Vlasenkodc2bbb92009-06-03 15:19:03 +020020Checkout the Latest Code
21~~~~~~~~~~~~~~~~~~~~~~~~
Mark Whitley3b565cd2001-03-02 19:14:25 +000022
23This is a necessary first step. Please do not try to work with the last
Mark Whitley0b4d73a2001-03-22 22:59:33 +000024released version, as there is a good chance that somebody has already fixed
25the bug you found. Somebody might have even added the feature you had in mind.
26Don't make your work obsolete before you start!
Mark Whitley3b565cd2001-03-02 19:14:25 +000027
Denys Vlasenkodc2bbb92009-06-03 15:19:03 +020028For information on how to check out Busybox development tree, please look at the
Mark Whitley3b565cd2001-03-02 19:14:25 +000029following links:
30
Denys Vlasenkodc2bbb92009-06-03 15:19:03 +020031 http://busybox.net/source.html
Mark Whitley3b565cd2001-03-02 19:14:25 +000032
33
34Read the Mailing List
35~~~~~~~~~~~~~~~~~~~~~
36
37No one is required to read the entire archives of the mailing list, but you
38should at least read up on what people have been talking about lately. If
39you've recently discovered a problem, chances are somebody else has too. If
40you're the first to discover a problem, post a message and let the rest of us
41know.
42
43Archives can be found here:
44
Eric Andersen2423b122001-12-08 01:56:15 +000045 http://busybox.net/lists/busybox/
Mark Whitley3b565cd2001-03-02 19:14:25 +000046
Eric Andersen77d92682001-05-23 20:32:09 +000047If you have a serious interest in Busybox, i.e., you are using it day-to-day or
Mark Whitley0b4d73a2001-03-22 22:59:33 +000048as part of an embedded project, it would be a good idea to join the mailing
49list.
Mark Whitley3b565cd2001-03-02 19:14:25 +000050
51A web-based sign-up form can be found here:
52
Eric Andersen2423b122001-12-08 01:56:15 +000053 http://busybox.net/mailman/listinfo/busybox
Mark Whitley3b565cd2001-03-02 19:14:25 +000054
55
56Coordinate with the Applet Maintainer
57~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
58
59Some (not all) of the applets in Busybox are "owned" by a maintainer who has
60put significant effort into it and is probably more familiar with it than
61others. To find the maintainer of an applet, look at the top of the .c file
Mark Whitley0b4d73a2001-03-22 22:59:33 +000062for a name following the word 'Copyright' or 'Written by' or 'Maintainer'.
Mark Whitley3b565cd2001-03-02 19:14:25 +000063
64Before plunging ahead, it's a good idea to send a message to the mailing list
65that says: "Hey, I was thinking about adding the 'transmogrify' feature to the
66'foo' applet. Would this be useful? Is anyone else working on it?" You might
67want to CC the maintainer (if any) with your question.
68
69
70
71Areas Where You Can Help
72------------------------
73
74Busybox can always use improvement! If you're looking for ways to help, there
Eric Andersen449f2bc2004-07-14 10:01:04 +000075are a variety of areas where you could help.
Mark Whitley3b565cd2001-03-02 19:14:25 +000076
77
78What Busybox Doesn't Need
79~~~~~~~~~~~~~~~~~~~~~~~~~
80
81Before listing the areas where you _can_ help, it's worthwhile to mention the
82areas where you shouldn't bother. While Busybox strives to be the "Swiss Army
83Knife" of embedded Linux, there are some applets that will not be accepted:
84
85 - Any filesystem manipulation tools: Busybox is filesystem independent and
86 we do not want to start adding mkfs/fsck tools for every (or any)
87 filesystem under the sun. (fsck_minix.c and mkfs_minix.c are living on
Mark Whitley0b4d73a2001-03-22 22:59:33 +000088 borrowed time.) There are far too many of these tools out there. Use
Denys Vlasenkodc2bbb92009-06-03 15:19:03 +020089 the upstream version. Rationale: bugs in these tools can destroy
90 vast amounts of data. Keeping up with filesystem format development
91 is impractical (especially in the area of keeping fsck tool safe
92 and up-to-date).
Mark Whitley3b565cd2001-03-02 19:14:25 +000093
94 - Any disk, device, or media-specific tools: Use the -utils or -tools package
95 that was designed for your device; don't try to shoehorn them into Busybox.
96
97 - Any architecture specific tools: Busybox is (or should be) architecture
98 independent. Do not send us tools that cannot be used across multiple
99 platforms / arches.
100
101
102Bug Reporting
103~~~~~~~~~~~~~
104
Eric Andersencb81e642003-07-14 21:21:08 +0000105If you find bugs, please submit a detailed bug report to the busybox mailing
106list at busybox@busybox.net. A well-written bug report should include a
107transcript of a shell session that demonstrates the bad behavior and enables
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000108anyone else to duplicate the bug on their own machine. The following is such
Eric Andersencb81e642003-07-14 21:21:08 +0000109an example:
Mark Whitley3b565cd2001-03-02 19:14:25 +0000110
Eric Andersencb81e642003-07-14 21:21:08 +0000111 To: busybox@busybox.net
112 From: diligent@testing.linux.org
113 Subject: /bin/date doesn't work
Mark Whitley3b565cd2001-03-02 19:14:25 +0000114
Eric Andersencb81e642003-07-14 21:21:08 +0000115 Package: busybox
116 Version: 1.00
Mark Whitley0b4d73a2001-03-22 22:59:33 +0000117
Eric Andersencb81e642003-07-14 21:21:08 +0000118 When I execute Busybox 'date' it produces unexpected results.
119 With GNU date I get the following output:
Mark Whitley0b4d73a2001-03-22 22:59:33 +0000120
Mark Whitley0b4d73a2001-03-22 22:59:33 +0000121 $ date
122 Wed Mar 21 14:19:41 MST 2001
123
Eric Andersencb81e642003-07-14 21:21:08 +0000124 But when I use BusyBox date I get this instead:
125
Mark Whitley0b4d73a2001-03-22 22:59:33 +0000126 $ date
Eric Andersencb81e642003-07-14 21:21:08 +0000127 llegal instruction
Mark Whitley3b565cd2001-03-02 19:14:25 +0000128
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000129 I am using Debian unstable, kernel version 2.4.19-rmk1 on an Netwinder,
Denys Vlasenkodc2bbb92009-06-03 15:19:03 +0200130 and the latest uClibc from CVS.
Mark Whitley3b565cd2001-03-02 19:14:25 +0000131
Eric Andersencb81e642003-07-14 21:21:08 +0000132 -Diligent
Mark Whitley3b565cd2001-03-02 19:14:25 +0000133
Eric Andersencb81e642003-07-14 21:21:08 +0000134Note the careful description and use of examples showing not only what BusyBox
135does, but also a counter example showing what an equivalent GNU app does. Bug
136reports lacking such detail may never be fixed... Thanks for understanding.
Mark Whitley3b565cd2001-03-02 19:14:25 +0000137
Mark Whitley3b565cd2001-03-02 19:14:25 +0000138
139
140Write Documentation
141~~~~~~~~~~~~~~~~~~~
142
143Chances are, documentation in Busybox is either missing or needs improvement.
144Either way, help is welcome.
145
146Work is being done to automatically generate documentation from sources,
147especially from the usage.h file. If you want to correct the documentation,
148please make changes to the pre-generation parts, rather than the generated
149documentation. [More to come on this later...]
150
151It is preferred that modifications to documentation be submitted in patch
152format (more on this below), but we're a little more lenient when it comes to
153docs. You could, for example, just say "after the listing of the mount
154options, the following example would be helpful..."
155
156
157Consult Existing Sources
158~~~~~~~~~~~~~~~~~~~~~~~~
159
160For a quick listing of "needs work" spots in the sources, cd into the Busybox
161directory and run the following:
162
Glenn L McGrath4636aa92003-10-29 03:40:47 +0000163 for i in TODO FIXME XXX; do find -name '*.[ch]'|xargs grep $i; done
Mark Whitley3b565cd2001-03-02 19:14:25 +0000164
165This will show all of the trouble spots or 'questionable' code. Pick a spot,
166any spot, these are all invitations for you to contribute.
167
168
Mark Whitley3b565cd2001-03-02 19:14:25 +0000169Add a New Applet
170~~~~~~~~~~~~~~~~
171
172If you want to add a new applet to Busybox, we'd love to see it. However,
173before you write any code, please ask beforehand on the mailing list something
174like "Do you think applet 'foo' would be useful in Busybox?" or "Would you
175guys accept applet 'foo' into Busybox if I were to write it?" If the answer is
176"no" by the folks on the mailing list, then you've saved yourself some time.
177Conversely, you could get some positive responses from folks who might be
178interested in helping you implement it, or can recommend the best approach.
179Perhaps most importantly, this is your way of calling "dibs" on something and
180avoiding duplication of effort.
181
182Also, before you write a line of code, please read the 'new-applet-HOWTO.txt'
183file in the docs/ directory.
184
185
186Janitorial Work
187~~~~~~~~~~~~~~~
188
189These are dirty jobs, but somebody's gotta do 'em.
190
Mark Whitley3b565cd2001-03-02 19:14:25 +0000191 - Security audits:
Glenn L McGrath4636aa92003-10-29 03:40:47 +0000192 http://www.securityfocus.com/popups/forums/secprog/intro.shtml
Mark Whitley3b565cd2001-03-02 19:14:25 +0000193
194 - Synthetic code removal: http://www.perl.com/pub/2000/06/commify.html - This
195 is very Perl-specific, but the advice given in here applies equally well to
196 C.
197
Eric Andersen449f2bc2004-07-14 10:01:04 +0000198 - C library function use audits: Verifying that functions are being used
Mark Whitley3b565cd2001-03-02 19:14:25 +0000199 properly (called with the right args), replacing unsafe library functions
200 with safer versions, making sure return codes are being checked, etc.
201
202 - Where appropriate, replace preprocessor defined macros and values with
203 compile-time equivalents.
204
Mark Whitley0b4d73a2001-03-22 22:59:33 +0000205 - Style guide compliance. See: docs/style-guide.txt
206
207 - Add testcases to tests/testcases.
208
Mark Whitley3b565cd2001-03-02 19:14:25 +0000209 - Makefile improvements:
210 http://www.canb.auug.org.au/~millerp/rmch/recu-make-cons-harm.html
211 (I think the recursive problems are pretty much taken care of at this point, non?)
212
213 - "Ten Commandments" compliance: (this is a "maybe", certainly not as
214 important as any of the previous items.)
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000215 http://www.lysator.liu.se/c/ten-commandments.html
Mark Whitley3b565cd2001-03-02 19:14:25 +0000216
217Other useful links:
218
219 - the comp.lang.c FAQ: http://web.onetelnet.ch/~twolf/tw/c/index.html#Sources
220
221
222
223Submitting Patches To Busybox
224-----------------------------
225
226Here are some guidelines on how to submit a patch to Busybox.
227
228
229Making A Patch
230~~~~~~~~~~~~~~
231
232If you've got anonymous CVS access set up, making a patch is simple. Just make
233sure you're in the busybox/ directory and type 'cvs diff -bwu > mychanges.patch'.
234You can send the resulting .patch file to the mailing list with a description
235of what it does. (But not before you test it! See the next section for some
236guidelines.) It is preferred that patches be sent as attachments, but it is
237not required.
238
239Also, feel free to help test other people's patches and reply to them with
240comments. You can apply a patch by saving it into your busybox/ directory and
241typing 'patch < mychanges.patch'. Then you can recompile, see if it runs, test
242if it works as advertised, and post your findings to the mailing list.
243
244NOTE: Please do not include extraneous or irrelevant changes in your patches.
245Please do not try to "bundle" two patches together into one. Make single,
246discreet changes on a per-patch basis. Sometimes you need to make a patch that
247touches code in many places, but these kind of patches are rare and should be
248coordinated with a maintainer.
249
250
251Testing Guidelines
252~~~~~~~~~~~~~~~~~~
253
254It's considered good form to test your new feature before you submit a patch
255to the mailing list, and especially before you commit a change to CVS. Here
256are some guidelines on how to test your changes.
257
258 - Always test Busybox applets against GNU counterparts and make sure the
259 behavior / output is identical between the two.
260
261 - Try several different permutations and combinations of the features you're
Eric Andersen77d92682001-05-23 20:32:09 +0000262 adding (i.e., different combinations of command-line switches) and make sure
Mark Whitley3b565cd2001-03-02 19:14:25 +0000263 they all work; make sure one feature does not interfere with another.
264
265 - Make sure you test compiling against the source both with the feature
266 turned on and turned off in Config.h and make sure Busybox compiles cleanly
267 both ways.
268
269 - Run the multibuild.pl script in the tests directory and make sure
270 everything checks out OK. (Do this from within the busybox/ directory by
271 typing: 'tests/multibuild.pl'.)
272
273
274Making Sure Your Patch Doesn't Get Lost
275~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
276
Eric Andersencb81e642003-07-14 21:21:08 +0000277If you don't want your patch to be lost or forgotten, send it to the busybox
278mailing list with a subject line something like this:
Mark Whitley3b565cd2001-03-02 19:14:25 +0000279
280 [PATCH] - Adds "transmogrify" feature to "foo"
281
282In the body, you should have a pseudo-header that looks like the following:
283
284 Package: busybox
Eric Andersencb81e642003-07-14 21:21:08 +0000285 Version: v1.01pre (or whatever the current version is)
Mark Whitley3b565cd2001-03-02 19:14:25 +0000286 Severity: wishlist
287
288The remainder of the body should read along these lines:
289
290 This patch adds the "transmogrify" feature to the "foo" applet. I have
291 tested this on [arch] system(s) and it works. I have tested it against the
292 GNU counterparts and the outputs are identical. I have run the scripts in
293 the 'tests' directory and nothing breaks.
294
Mark Whitley3b565cd2001-03-02 19:14:25 +0000295
296
297Improving Your Chances of Patch Acceptance
298------------------------------------------
299
300Even after you send a brilliant patch to the mailing list, sometimes it can go
301unnoticed, un-replied-to, and sometimes (sigh) even lost. This is an
302unfortunate fact of life, but there are steps you can take to help your patch
303get noticed and convince a maintainer that it should be added:
304
305
306Be Succinct
307~~~~~~~~~~~
308
309A patch that includes small, isolated, obvious changes is more likely to be
310accepted than a patch that touches code in lots of different places or makes
311sweeping, dubious changes.
312
313
314Back It Up
315~~~~~~~~~~
316
317Hard facts on why your patch is better than the existing code will go a long
318way toward convincing maintainers that your patch should be included.
319Specifically, patches are more likely to be accepted if they are provably more
320correct, smaller, faster, simpler, or more maintainable than the existing
321code.
322
323Conversely, any patch that is supported with nothing more than "I think this
324would be cool" or "this patch is good because I say it is and I've got a Phd
325in Computer Science" will likely be ignored.
326
327
328Follow The Style Guide
329~~~~~~~~~~~~~~~~~~~~~~
330
331It's considered good form to abide by the established coding style used in a
332project; Busybox is no exception. We have gone so far as to delineate the
333"elements of Busybox style" in the file docs/style-guide.txt. Please follow
334them.
335
336
337Work With Someone Else
338~~~~~~~~~~~~~~~~~~~~~~
339
340Working on a patch in isolation is less effective than working with someone
341else for a variety of reasons. If another Busybox user is interested in what
342you're doing, then it's two (or more) voices instead of one that can petition
343for inclusion of the patch. You'll also have more people that can test your
344changes, or even offer suggestions on better approaches you could take.
345
346Getting other folks interested follows as a natural course if you've received
347responses from queries to applet maintainer or positive responses from folks
348on the mailing list.
349
350We've made strident efforts to put a useful "collaboration" infrastructure in
351place in the form of mailing lists, the bug tracking system, and CVS. Please
352use these resources.
353
354
Mark Whitley5b8939b2001-03-27 21:20:05 +0000355Send Patches to the Bug Tracking System
356~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
357
358This was mentioned above in the "Making Sure Your Patch Doesn't Get Lost"
359section, but it is worth mentioning again. A patch sent to the mailing list
360might be unnoticed and forgotten. A patch sent to the bug tracking system will
361be stored and closely connected to the bug it fixes.
362
363
Mark Whitley3b565cd2001-03-02 19:14:25 +0000364Be Polite
365~~~~~~~~~
366
367The old saying "You'll catch more flies with honey than you will with vinegar"
368applies when submitting patches to the mailing list for approval. The way you
369present your patch is sometimes just as important as the actual patch itself
370(if not more so). Being rude to the maintainers is not an effective way to
371convince them that your patch should be included; it will likely have the
372opposite effect.
373
374
375
Mark Whitley0b4d73a2001-03-22 22:59:33 +0000376Committing Changes to CVS
377-------------------------
378
379If you submit several patches that demonstrate that you are a skilled and wise
380coder, you may be invited to become a committer, thus enabling you to commit
381changes directly to CVS. This is nice because you don't have to wait for
382someone else to commit your change for you, you can just do it yourself.
383
Bernhard Reutner-Fischere0fe9372006-03-23 16:52:59 +0000384But note that this is a privilege that comes with some responsibilities. You
Mark Whitley0b4d73a2001-03-22 22:59:33 +0000385should test your changes before you commit them. You should also talk to an
386applet maintainer before you make any kind of sweeping changes to somebody
387else's code. Big changes should still go to the mailing list first. Remember,
388being wise, polite, and discreet is more important than being clever.
389
390
391When To Commit
392~~~~~~~~~~~~~~
393
394Generally, you should feel free to commit a change if:
395
396 - Your changes are small and don't touch many files
397 - You are fixing a bug
398 - Somebody has told you that it's okay
399 - It's obviously the Right Thing
400
401The more of the above are true, the better it is to just commit a change
402directly to CVS.
403
404
405When Not To Commit
406~~~~~~~~~~~~~~~~~~
407
408Even if you have commit rights, you should probably still post a patch to the
409mailing list if:
410
411 - Your changes are broad and touch many different files
412 - You are adding a feature
Eric Andersen77d92682001-05-23 20:32:09 +0000413 - Your changes are speculative or experimental (i.e., trying a new algorithm)
Mark Whitley0b4d73a2001-03-22 22:59:33 +0000414 - You are not the maintainer and your changes make the maintainer cringe
415
416The more of the above are true, the better it is to post a patch to the
417mailing list instead of committing.
418
419
420
Mark Whitley3b565cd2001-03-02 19:14:25 +0000421Final Words
422-----------
423
424If all of this seems complicated, don't panic, it's really not that tough. If
425you're having difficulty following some of the steps outlined in this
426document don't worry, the folks on the Busybox mailing list are a fairly
427good-natured bunch and will work with you to help get your patches into shape
428or help you make contributions.
429
Mark Whitley3b565cd2001-03-02 19:14:25 +0000430