Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 1 | How to Add a New Applet to BusyBox |
| 2 | ================================== |
| 3 | |
| 4 | This document details the steps you must take to add a new applet to BusyBox. |
| 5 | |
| 6 | Credits: |
| 7 | Matt Kraai - initial writeup |
| 8 | Mark Whitley - the remix |
Denis Vlasenko | 7e84e53 | 2007-05-08 17:52:17 +0000 | [diff] [blame] | 9 | Thomas Lundquist - Trying to keep it updated. |
| 10 | |
| 11 | When doing this you should consider using the latest svn trunk. |
| 12 | This is a good thing if you plan to getting it commited into mainline. |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 13 | |
| 14 | Initial Write |
| 15 | ------------- |
| 16 | |
Mike Frysinger | 9754b91 | 2005-09-02 23:06:30 +0000 | [diff] [blame] | 17 | First, write your applet. Be sure to include copyright information at the top, |
| 18 | such as who you stole the code from and so forth. Also include the mini-GPL |
| 19 | boilerplate. Be sure to name the main function <applet>_main instead of main. |
| 20 | And be sure to put it in <applet>.c. Usage does not have to be taken care of by |
| 21 | your applet. |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 22 | Make sure to #include "libbb.h" as the first include file in your applet so |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 23 | the bb_config.h and appropriate platform specific files are included properly. |
Glenn L McGrath | 9c91e41 | 2003-10-01 11:33:46 +0000 | [diff] [blame] | 24 | |
| 25 | For a new applet mu, here is the code that would go in mu.c: |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 26 | |
Denis Vlasenko | 7e84e53 | 2007-05-08 17:52:17 +0000 | [diff] [blame] | 27 | (busybox.h already includes most usual header files. You do not need |
| 28 | #include <stdio.h> etc...) |
| 29 | |
| 30 | |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 31 | ----begin example code------ |
| 32 | |
| 33 | /* vi: set sw=4 ts=4: */ |
| 34 | /* |
| 35 | * Mini mu implementation for busybox |
| 36 | * |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 37 | * Copyright (C) [YEAR] by [YOUR NAME] <YOUR EMAIL> |
| 38 | * |
Bernhard Reutner-Fischer | dac7ff1 | 2006-04-12 17:55:51 +0000 | [diff] [blame] | 39 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 40 | */ |
| 41 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 42 | #include "libbb.h" |
Denis Vlasenko | 7e84e53 | 2007-05-08 17:52:17 +0000 | [diff] [blame] | 43 | #include "other.h" |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 44 | |
Denis Vlasenko | 06af216 | 2007-02-03 17:28:39 +0000 | [diff] [blame] | 45 | int mu_main(int argc, char **argv); |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 46 | int mu_main(int argc, char **argv) |
| 47 | { |
| 48 | int fd; |
| 49 | char mu; |
| 50 | |
Bernhard Reutner-Fischer | 8c1eda5 | 2006-08-28 23:39:36 +0000 | [diff] [blame] | 51 | fd = xopen("/dev/random", O_RDONLY); |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 52 | |
| 53 | if ((n = safe_read(fd, &mu, 1)) < 1) |
Mike Frysinger | 0ea3a6f | 2005-04-23 01:43:45 +0000 | [diff] [blame] | 54 | bb_perror_msg_and_die("/dev/random"); |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 55 | |
| 56 | return mu; |
| 57 | } |
| 58 | |
| 59 | ----end example code------ |
| 60 | |
Mark Whitley | 8a6b619 | 2000-12-19 17:54:38 +0000 | [diff] [blame] | 61 | |
| 62 | Coding Style |
| 63 | ------------ |
| 64 | |
| 65 | Before you submit your applet for inclusion in BusyBox, (or better yet, before |
| 66 | you _write_ your applet) please read through the style guide in the docs |
| 67 | directory and make your program compliant. |
| 68 | |
| 69 | |
Glenn L McGrath | 2e6d3cf | 2001-06-24 12:36:54 +0000 | [diff] [blame] | 70 | Some Words on libbb |
| 71 | ------------------- |
Mark Whitley | 8a6b619 | 2000-12-19 17:54:38 +0000 | [diff] [blame] | 72 | |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 73 | As you are writing your applet, please be aware of the body of pre-existing |
Glenn L McGrath | 2e6d3cf | 2001-06-24 12:36:54 +0000 | [diff] [blame] | 74 | useful functions in libbb. Use these instead of reinventing the wheel. |
Mark Whitley | 8a6b619 | 2000-12-19 17:54:38 +0000 | [diff] [blame] | 75 | |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 76 | Additionally, if you have any useful, general-purpose functions in your |
Mike Frysinger | 9754b91 | 2005-09-02 23:06:30 +0000 | [diff] [blame] | 77 | applet that could be useful in other applets, consider putting them in libbb. |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 78 | |
Denis Vlasenko | 7e84e53 | 2007-05-08 17:52:17 +0000 | [diff] [blame] | 79 | And it may be possible that some of the other applets uses functions you |
| 80 | could use. If so, you have to rip the function out of the applet and make |
| 81 | a libbb function out of it. |
| 82 | |
| 83 | Adding a libbb function: |
| 84 | ------------------------ |
| 85 | |
| 86 | Make a new file named <function_name>.c |
| 87 | |
| 88 | ----start example code------ |
| 89 | |
| 90 | #include "libbb.h" |
| 91 | #include "other.h" |
| 92 | |
| 93 | int function(char *a) |
| 94 | { |
| 95 | return *a; |
| 96 | } |
| 97 | |
| 98 | ----end example code------ |
| 99 | |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 100 | Add <function_name>.o in the right alphabetically sorted place |
| 101 | in libbb/Kbuild. You should look at the conditional part of |
Denis Vlasenko | 7e84e53 | 2007-05-08 17:52:17 +0000 | [diff] [blame] | 102 | libbb/Kbuild aswell. |
| 103 | |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 104 | You should also try to find a suitable place in include/libbb.h for |
Denis Vlasenko | 7e84e53 | 2007-05-08 17:52:17 +0000 | [diff] [blame] | 105 | the function declaration. If not, add it somewhere anyway, with or without |
| 106 | ifdefs to include or not. |
| 107 | |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 108 | You can look at libbb/Config.in and try to find out if the function is |
Denis Vlasenko | 7e84e53 | 2007-05-08 17:52:17 +0000 | [diff] [blame] | 109 | tuneable and add it there if it is. |
| 110 | |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 111 | |
Matt Kraai | 3b1cbd7 | 2002-03-18 16:03:00 +0000 | [diff] [blame] | 112 | Placement / Directory |
| 113 | --------------------- |
| 114 | |
| 115 | Find the appropriate directory for your new applet. |
| 116 | |
Glenn L McGrath | 9c91e41 | 2003-10-01 11:33:46 +0000 | [diff] [blame] | 117 | Make sure you find the appropriate places in the files, the applets are |
| 118 | sorted alphabetically. |
| 119 | |
Denis Vlasenko | 7e84e53 | 2007-05-08 17:52:17 +0000 | [diff] [blame] | 120 | Add the applet to Kbuild in the chosen directory: |
Matt Kraai | 3b1cbd7 | 2002-03-18 16:03:00 +0000 | [diff] [blame] | 121 | |
Denis Vlasenko | 7e84e53 | 2007-05-08 17:52:17 +0000 | [diff] [blame] | 122 | lib-$(CONFIG_MU) += mu.o |
Matt Kraai | 3b1cbd7 | 2002-03-18 16:03:00 +0000 | [diff] [blame] | 123 | |
Mike Frysinger | 9754b91 | 2005-09-02 23:06:30 +0000 | [diff] [blame] | 124 | Add the applet to Config.in in the chosen directory: |
Matt Kraai | 3b1cbd7 | 2002-03-18 16:03:00 +0000 | [diff] [blame] | 125 | |
Glenn L McGrath | 9c91e41 | 2003-10-01 11:33:46 +0000 | [diff] [blame] | 126 | config CONFIG_MU |
| 127 | bool "MU" |
| 128 | default n |
| 129 | help |
| 130 | Returns an indeterminate value. |
Matt Kraai | 3b1cbd7 | 2002-03-18 16:03:00 +0000 | [diff] [blame] | 131 | |
| 132 | |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 133 | Usage String(s) |
| 134 | --------------- |
| 135 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 136 | Next, add usage information for you applet to include/usage.h. |
Matt Kraai | 3b1cbd7 | 2002-03-18 16:03:00 +0000 | [diff] [blame] | 137 | This should look like the following: |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 138 | |
Glenn L McGrath | 2e6d3cf | 2001-06-24 12:36:54 +0000 | [diff] [blame] | 139 | #define mu_trivial_usage \ |
| 140 | "-[abcde] FILES" |
| 141 | #define mu_full_usage \ |
| 142 | "Returns an indeterminate value.\n\n" \ |
| 143 | "Options:\n" \ |
| 144 | "\t-a\t\tfirst function\n" \ |
| 145 | "\t-b\t\tsecond function\n" \ |
Mike Frysinger | 9754b91 | 2005-09-02 23:06:30 +0000 | [diff] [blame] | 146 | ... |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 147 | |
| 148 | If your program supports flags, the flags should be mentioned on the first |
Glenn L McGrath | 2e6d3cf | 2001-06-24 12:36:54 +0000 | [diff] [blame] | 149 | line (-[abcde]) and a detailed description of each flag should go in the |
| 150 | mu_full_usage section, one flag per line. (Numerous examples of this |
| 151 | currently exist in usage.h.) |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 152 | |
| 153 | |
| 154 | Header Files |
| 155 | ------------ |
| 156 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 157 | Next, add an entry to include/applets.h. Be *sure* to keep the list |
| 158 | in alphabetical order, or else it will break the binary-search lookup |
Matt Kraai | 3b1cbd7 | 2002-03-18 16:03:00 +0000 | [diff] [blame] | 159 | algorithm in busybox.c and the Gods of BusyBox smite you. Yea, verily: |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 160 | |
Denis Vlasenko | 7e84e53 | 2007-05-08 17:52:17 +0000 | [diff] [blame] | 161 | Be sure to read the top of applets.h before adding your applet. |
| 162 | |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 163 | /* all programs above here are alphabetically "less than" 'mu' */ |
Denis Vlasenko | 7e84e53 | 2007-05-08 17:52:17 +0000 | [diff] [blame] | 164 | USE_MU(APPLET(mu, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 165 | /* all programs below here are alphabetically "greater than" 'mu' */ |
| 166 | |
| 167 | |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 168 | The Grand Announcement |
| 169 | ---------------------- |
| 170 | |
Denis Vlasenko | 7e84e53 | 2007-05-08 17:52:17 +0000 | [diff] [blame] | 171 | Then create a diff by adding the new files with svn (remember your libbb files) |
| 172 | svn add <where you put it>/mu.c |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 173 | eventually also: |
Denis Vlasenko | 7e84e53 | 2007-05-08 17:52:17 +0000 | [diff] [blame] | 174 | svn add libbb/function.c |
| 175 | then |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 176 | svn diff |
Glenn L McGrath | 9c91e41 | 2003-10-01 11:33:46 +0000 | [diff] [blame] | 177 | and send it to the mailing list: |
Mike Frysinger | 9754b91 | 2005-09-02 23:06:30 +0000 | [diff] [blame] | 178 | busybox@busybox.net |
| 179 | http://busybox.net/mailman/listinfo/busybox |
Mark Whitley | eac2636 | 2000-12-19 17:35:24 +0000 | [diff] [blame] | 180 | |
Glenn L McGrath | 9c91e41 | 2003-10-01 11:33:46 +0000 | [diff] [blame] | 181 | Sending patches as attachments is preferred, but not required. |