blob: 39dcfb0f87cbaae17f9941e2fde6d7818ff0c4da [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
5 * Copyright (C) tons of folks. Tracking down who wrote what
6 * isn't something I'm going to worry about... If you wrote something
7 * here, please feel free to acknowledge your work.
8 *
Glenn L McGrath2faee7b2003-05-26 14:09:12 +00009 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
Eric Andersenaad1a882001-03-16 22:47:14 +000010 * Permission has been granted to redistribute this code under the GPL.
11 *
Rob Landley73f54702006-05-01 00:53:40 +000012 * Licensed under GPLv2 or later, see file License in this tarball for details.
Eric Andersenaad1a882001-03-16 22:47:14 +000013 */
14
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000015#include "busybox.h"
Robert Grieblc9aca452002-06-04 20:06:25 +000016#include <unistd.h>
Eric Andersen08ff8a42001-03-23 17:02:05 +000017#include <string.h>
Manuel Novoa III 31b98dd2004-02-01 10:03:05 +000018#include <assert.h>
Eric Andersenaad1a882001-03-16 22:47:14 +000019
Rob Landley7e21d5f2006-04-27 23:34:46 +000020#if ENABLE_SHOW_USAGE && !ENABLE_FEATURE_COMPRESS_USAGE
21static const char usage_messages[] =
Eric Andersen674b08a2004-04-06 14:28:35 +000022#define MAKE_USAGE
23#include "usage.h"
Eric Andersen674b08a2004-04-06 14:28:35 +000024#include "applets.h"
Eric Andersen674b08a2004-04-06 14:28:35 +000025;
Eric Andersen674b08a2004-04-06 14:28:35 +000026#undef MAKE_USAGE
Rob Landley73f54702006-05-01 00:53:40 +000027#else
28#define usage_messages 0
Bernhard Reutner-Fischer81901a02006-03-31 18:43:55 +000029#endif /* ENABLE_SHOW_USAGE */
Rob Landley7e21d5f2006-04-27 23:34:46 +000030
Eric Andersen2ccfef22001-03-19 19:30:24 +000031#undef APPLET
32#undef APPLET_NOUSAGE
33#undef PROTOTYPES
34#include "applets.h"
35
Glenn L McGrath7fc504c2004-02-22 11:13:28 +000036static struct BB_applet *applet_using;
Eric Andersenaad1a882001-03-16 22:47:14 +000037
Eric Andersen2ccfef22001-03-19 19:30:24 +000038/* The -1 arises because of the {0,NULL,0,-1} entry above. */
39const size_t NUM_APPLETS = (sizeof (applets) / sizeof (struct BB_applet) - 1);
40
Robert Grieblc9aca452002-06-04 20:06:25 +000041
Robert Grieblc9aca452002-06-04 20:06:25 +000042#ifdef CONFIG_FEATURE_SUID_CONFIG
43
Robert Grieblc9aca452002-06-04 20:06:25 +000044#include <ctype.h>
Eric Andersen887ca792002-07-03 23:19:26 +000045#include "pwd_.h"
46#include "grp_.h"
Robert Grieblc9aca452002-06-04 20:06:25 +000047
Robert Grieblc9aca452002-06-04 20:06:25 +000048#define CONFIG_FILE "/etc/busybox.conf"
49
Glenn L McGrathb37367a2002-08-22 13:12:40 +000050/* applets [] is const, so we have to define this "override" structure */
Bernhard Reutner-Fischer6973abc2005-10-28 09:45:07 +000051static struct BB_suid_config
Glenn L McGrath2faee7b2003-05-26 14:09:12 +000052{
53 struct BB_applet *m_applet;
Robert Grieblc9aca452002-06-04 20:06:25 +000054
Glenn L McGrath2faee7b2003-05-26 14:09:12 +000055 uid_t m_uid;
56 gid_t m_gid;
57 mode_t m_mode;
Glenn L McGrathb37367a2002-08-22 13:12:40 +000058
Glenn L McGrath2faee7b2003-05-26 14:09:12 +000059 struct BB_suid_config *m_next;
Bernhard Reutner-Fischer6973abc2005-10-28 09:45:07 +000060} *suid_config;
Robert Grieblc9aca452002-06-04 20:06:25 +000061
Manuel Novoa III 7b565a02004-02-17 10:16:21 +000062static int suid_cfg_readable;
Robert Grieblc9aca452002-06-04 20:06:25 +000063
Glenn L McGrathb37367a2002-08-22 13:12:40 +000064/* check if u is member of group g */
Rob Landley8a7a6782005-09-05 04:13:33 +000065static int ingroup (uid_t u, gid_t g)
Robert Grieblc9aca452002-06-04 20:06:25 +000066{
Glenn L McGrath2faee7b2003-05-26 14:09:12 +000067 struct group *grp = getgrgid (g);
Glenn L McGrathb37367a2002-08-22 13:12:40 +000068
Glenn L McGrath2faee7b2003-05-26 14:09:12 +000069 if (grp) {
70 char **mem;
Glenn L McGrathb37367a2002-08-22 13:12:40 +000071
Glenn L McGrath2faee7b2003-05-26 14:09:12 +000072 for (mem = grp->gr_mem; *mem; mem++) {
73 struct passwd *pwd = getpwnam (*mem);
Glenn L McGrathb37367a2002-08-22 13:12:40 +000074
Glenn L McGrath2faee7b2003-05-26 14:09:12 +000075 if (pwd && (pwd->pw_uid == u))
76 return 1;
Robert Grieblc9aca452002-06-04 20:06:25 +000077 }
Glenn L McGrath2faee7b2003-05-26 14:09:12 +000078 }
79 return 0;
Robert Grieblc9aca452002-06-04 20:06:25 +000080}
81
Manuel Novoa III 31b98dd2004-02-01 10:03:05 +000082/* This should probably be a libbb routine. In that case,
83 * I'd probably rename it to something like bb_trimmed_slice.
84 */
85static char *get_trimmed_slice(char *s, char *e)
86{
87 /* First, consider the value at e to be nul and back up until we
88 * reach a non-space char. Set the char after that (possibly at
89 * the original e) to nul. */
90 while (e-- > s) {
91 if (!isspace(*e)) {
92 break;
93 }
94 }
95 e[1] = 0;
96
97 /* Next, advance past all leading space and return a ptr to the
98 * first non-space char; possibly the terminating nul. */
Rob Landleyea224be2006-06-18 20:20:07 +000099 return skip_whitespace(s);
Manuel Novoa III 31b98dd2004-02-01 10:03:05 +0000100}
101
Glenn L McGrath2faee7b2003-05-26 14:09:12 +0000102
103#define parse_error(x) { err=x; goto pe_label; }
104
Manuel Novoa III 31b98dd2004-02-01 10:03:05 +0000105/* Don't depend on the tools to combine strings. */
106static const char config_file[] = CONFIG_FILE;
Glenn L McGrath2faee7b2003-05-26 14:09:12 +0000107
Manuel Novoa III 31b98dd2004-02-01 10:03:05 +0000108/* There are 4 chars + 1 nul for each of user/group/other. */
109static const char mode_chars[] = "Ssx-\0Ssx-\0Ttx-";
110
111/* We don't supply a value for the nul, so an index adjustment is
112 * necessary below. Also, we use unsigned short here to save some
113 * space even though these are really mode_t values. */
114static const unsigned short mode_mask[] = {
115 /* SST sst xxx --- */
116 S_ISUID, S_ISUID|S_IXUSR, S_IXUSR, 0, /* user */
117 S_ISGID, S_ISGID|S_IXGRP, S_IXGRP, 0, /* group */
118 0, S_IXOTH, S_IXOTH, 0 /* other */
119};
120
121static void parse_config_file(void)
Glenn L McGrath2faee7b2003-05-26 14:09:12 +0000122{
Manuel Novoa III 31b98dd2004-02-01 10:03:05 +0000123 struct BB_suid_config *sct_head;
124 struct BB_suid_config *sct;
125 struct BB_applet *applet;
126 FILE *f;
127 char *err;
128 char *s;
129 char *e;
130 int i, lc, section;
131 char buffer[256];
132 struct stat st;
Glenn L McGrath2faee7b2003-05-26 14:09:12 +0000133
Manuel Novoa III 31b98dd2004-02-01 10:03:05 +0000134 assert(!suid_config); /* Should be set to NULL by bss init. */
Glenn L McGrath2faee7b2003-05-26 14:09:12 +0000135
Manuel Novoa III 31b98dd2004-02-01 10:03:05 +0000136 if ((stat(config_file, &st) != 0) /* No config file? */
137 || !S_ISREG(st.st_mode) /* Not a regular file? */
138 || (st.st_uid != 0) /* Not owned by root? */
139 || (st.st_mode & (S_IWGRP | S_IWOTH)) /* Writable by non-root? */
140 || !(f = fopen(config_file, "r")) /* Can not open? */
141 ) {
142 return;
Robert Grieblc9aca452002-06-04 20:06:25 +0000143 }
Glenn L McGrathb37367a2002-08-22 13:12:40 +0000144
Manuel Novoa III 7b565a02004-02-17 10:16:21 +0000145 suid_cfg_readable = 1;
Manuel Novoa III 31b98dd2004-02-01 10:03:05 +0000146 sct_head = NULL;
147 section = lc = 0;
Robert Grieblc9aca452002-06-04 20:06:25 +0000148
Manuel Novoa III 31b98dd2004-02-01 10:03:05 +0000149 do {
150 s = buffer;
151
152 if (!fgets(s, sizeof(buffer), f)) { /* Are we done? */
153 if (ferror(f)) { /* Make sure it wasn't a read error. */
154 parse_error("reading");
155 }
156 fclose(f);
157 suid_config = sct_head; /* Success, so set the pointer. */
158 return;
159 }
160
161 lc++; /* Got a (partial) line. */
162
163 /* If a line is too long for our buffer, we consider it an error.
164 * The following test does mistreat one corner case though.
165 * If the final line of the file does not end with a newline and
166 * yet exactly fills the buffer, it will be treated as too long
167 * even though there isn't really a problem. But it isn't really
168 * worth adding code to deal with such an unlikely situation, and
169 * we do err on the side of caution. Besides, the line would be
170 * too long if it did end with a newline. */
171 if (!strchr(s, '\n') && !feof(f)) {
172 parse_error("line too long");
173 }
174
175 /* Trim leading and trailing whitespace, ignoring comments, and
176 * check if the resulting string is empty. */
177 if (!*(s = get_trimmed_slice(s, strchrnul(s, '#')))) {
178 continue;
179 }
180
181 /* Check for a section header. */
182
183 if (*s == '[') {
184 /* Unlike the old code, we ignore leading and trailing
185 * whitespace for the section name. We also require that
186 * there are no stray characters after the closing bracket. */
187 if (!(e = strchr(s, ']')) /* Missing right bracket? */
188 || e[1] /* Trailing characters? */
189 || !*(s = get_trimmed_slice(s+1, e)) /* Missing name? */
190 ) {
191 parse_error("section header");
192 }
193 /* Right now we only have one section so just check it.
194 * If more sections are added in the future, please don't
195 * resort to cascading ifs with multiple strcasecmp calls.
196 * That kind of bloated code is all too common. A loop
197 * and a string table would be a better choice unless the
198 * number of sections is very small. */
199 if (strcasecmp(s, "SUID") == 0) {
200 section = 1;
201 continue;
202 }
203 section = -1; /* Unknown section so set to skip. */
204 continue;
205 }
206
207 /* Process sections. */
208
209 if (section == 1) { /* SUID */
210 /* Since we trimmed leading and trailing space above, we're
211 * now looking for strings of the form
212 * <key>[::space::]*=[::space::]*<value>
213 * where both key and value could contain inner whitespace. */
214
215 /* First get the key (an applet name in our case). */
216 if (!!(e = strchr(s, '='))) {
217 s = get_trimmed_slice(s, e);
218 }
219 if (!e || !*s) { /* Missing '=' or empty key. */
220 parse_error("keyword");
221 }
222
223 /* Ok, we have an applet name. Process the rhs if this
224 * applet is currently built in and ignore it otherwise.
225 * Note: This can hide config file bugs which only pop
226 * up when the busybox configuration is changed. */
227 if ((applet = find_applet_by_name(s))) {
228 /* Note: We currently don't check for duplicates!
229 * The last config line for each applet will be the
230 * one used since we insert at the head of the list.
231 * I suppose this could be considered a feature. */
232 sct = xmalloc(sizeof(struct BB_suid_config));
233 sct->m_applet = applet;
234 sct->m_mode = 0;
235 sct->m_next = sct_head;
236 sct_head = sct;
237
238 /* Get the specified mode. */
239
Rob Landleyea224be2006-06-18 20:20:07 +0000240 e = skip_whitespace(e+1);
Manuel Novoa III 31b98dd2004-02-01 10:03:05 +0000241
242 for (i=0 ; i < 3 ; i++) {
243 const char *q;
244 if (!*(q = strchrnul(mode_chars + 5*i, *e++))) {
245 parse_error("mode");
246 }
247 /* Adjust by -i to account for nul. */
248 sct->m_mode |= mode_mask[(q - mode_chars) - i];
249 }
250
251 /* Now get the the user/group info. */
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000252
Rob Landleyea224be2006-06-18 20:20:07 +0000253 s = skip_whitespace(e);
Manuel Novoa III 31b98dd2004-02-01 10:03:05 +0000254
255 /* Note: We require whitespace between the mode and the
256 * user/group info. */
257 if ((s == e) || !(e = strchr(s, '.'))) {
258 parse_error("<uid>.<gid>");
259 }
260 *e++ = 0;
261
262 /* We can't use get_ug_id here since it would exit()
263 * if a uid or gid was not found. Oh well... */
264 {
265 char *e2;
266
267 sct->m_uid = strtoul(s, &e2, 10);
268 if (*e2 || (s == e2)) {
269 struct passwd *pwd;
270 if (!(pwd = getpwnam(s))) {
271 parse_error("user");
272 }
273 sct->m_uid = pwd->pw_uid;
274 }
275
276 sct->m_gid = strtoul(e, &e2, 10);
277 if (*e2 || (e == e2)) {
278 struct group *grp;
279 if (!(grp = getgrnam(e))) {
280 parse_error("group");
281 }
282 sct->m_gid = grp->gr_gid;
283 }
284 }
285 }
286 continue;
287 }
288
289 /* Unknown sections are ignored. */
290
291 /* Encountering configuration lines prior to seeing a
292 * section header is treated as an error. This is how
Eric Andersenaff114c2004-04-14 17:51:38 +0000293 * the old code worked, but it may not be desirable.
Manuel Novoa III 31b98dd2004-02-01 10:03:05 +0000294 * We may want to simply ignore such lines in case they
295 * are used in some future version of busybox. */
296 if (!section) {
297 parse_error("keyword outside section");
298 }
299
300 } while (1);
301
302 pe_label:
303 fprintf(stderr, "Parse error in %s, line %d: %s\n",
304 config_file, lc, err);
305
306 fclose(f);
307 /* Release any allocated memory before returning. */
308 while (sct_head) {
309 sct = sct_head->m_next;
310 free(sct_head);
311 sct_head = sct;
312 }
313 return;
Robert Grieblc9aca452002-06-04 20:06:25 +0000314}
315
Rob Landley8a7a6782005-09-05 04:13:33 +0000316#else
Rob Landleycc59aae2005-12-07 23:17:28 +0000317#define parse_config_file()
Rob Landley8a7a6782005-09-05 04:13:33 +0000318#endif /* CONFIG_FEATURE_SUID_CONFIG */
319
320#ifdef CONFIG_FEATURE_SUID
321static void check_suid (struct BB_applet *applet)
322{
323 uid_t ruid = getuid (); /* real [ug]id */
324 uid_t rgid = getgid ();
325
326#ifdef CONFIG_FEATURE_SUID_CONFIG
327 if (suid_cfg_readable) {
328 struct BB_suid_config *sct;
329
330 for (sct = suid_config; sct; sct = sct->m_next) {
331 if (sct->m_applet == applet)
332 break;
333 }
334 if (sct) {
335 mode_t m = sct->m_mode;
336
337 if (sct->m_uid == ruid) /* same uid */
338 m >>= 6;
339 else if ((sct->m_gid == rgid) || ingroup (ruid, sct->m_gid)) /* same group / in group */
340 m >>= 3;
341
342 if (!(m & S_IXOTH)) /* is x bit not set ? */
343 bb_error_msg_and_die ("You have no permission to run this applet!");
344
345 if ((sct->m_mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) { /* *both* have to be set for sgid */
Rob Landley53437472006-07-16 08:14:35 +0000346 xsetgid(sct->m_gid);
347 } else xsetgid(rgid); /* no sgid -> drop */
Rob Landley8a7a6782005-09-05 04:13:33 +0000348
Rob Landley53437472006-07-16 08:14:35 +0000349 if (sct->m_mode & S_ISUID) xsetuid(sct->m_uid);
350 else xsetuid(ruid); /* no suid -> drop */
Rob Landley8a7a6782005-09-05 04:13:33 +0000351 } else {
Bernhard Reutner-Fischere0fe9372006-03-23 16:52:59 +0000352 /* default: drop all privileges */
Rob Landley53437472006-07-16 08:14:35 +0000353 xsetgid(rgid);
354 xsetuid(ruid);
Rob Landley8a7a6782005-09-05 04:13:33 +0000355 }
356 return;
357 } else {
358#ifndef CONFIG_FEATURE_SUID_CONFIG_QUIET
359 static int onetime = 0;
360
361 if (!onetime) {
362 onetime = 1;
363 fprintf (stderr, "Using fallback suid method\n");
364 }
365#endif
366 }
Robert Grieblc9aca452002-06-04 20:06:25 +0000367#endif
368
Rob Landley8a7a6782005-09-05 04:13:33 +0000369 if (applet->need_suid == _BB_SUID_ALWAYS) {
Rob Landley53437472006-07-16 08:14:35 +0000370 if (geteuid()) bb_error_msg_and_die("Applet requires root privileges!");
Rob Landley8a7a6782005-09-05 04:13:33 +0000371 } else if (applet->need_suid == _BB_SUID_NEVER) {
Rob Landley53437472006-07-16 08:14:35 +0000372 xsetgid(rgid); /* drop all privileges */
373 xsetuid(ruid);
Rob Landley8a7a6782005-09-05 04:13:33 +0000374 }
375}
376#else
377#define check_suid(x)
378#endif /* CONFIG_FEATURE_SUID */
379
380
381
Rob Landleye1a0f532006-07-26 15:38:46 +0000382#ifdef CONFIG_FEATURE_COMPRESS_USAGE
Rob Landley8a7a6782005-09-05 04:13:33 +0000383
Rob Landley7e21d5f2006-04-27 23:34:46 +0000384#include "usage_compressed.h"
385#include "unarchive.h"
386
387static const char *unpack_usage_messages(void)
388{
389 int input[2], output[2], pid;
390 char *buf;
391
392 if(pipe(input) < 0 || pipe(output) < 0)
393 exit(1);
394
395 pid = fork();
396 switch (pid) {
397 case -1: /* error */
398 exit(1);
399 case 0: /* child */
400 close(input[1]);
401 close(output[0]);
402 uncompressStream(input[0], output[1]);
403 exit(0);
404 }
405 /* parent */
406
407 close(input[0]);
408 close(output[1]);
409 pid = fork();
410 switch (pid) {
411 case -1: /* error */
412 exit(1);
413 case 0: /* child */
Rob Landley53437472006-07-16 08:14:35 +0000414 full_write(input[1], packed_usage, sizeof(packed_usage));
Rob Landley7e21d5f2006-04-27 23:34:46 +0000415 exit(0);
416 }
417 /* parent */
418 close(input[1]);
419
420 buf = xmalloc(SIZEOF_usage_messages);
Rob Landley53437472006-07-16 08:14:35 +0000421 full_read(output[0], buf, SIZEOF_usage_messages);
Rob Landley7e21d5f2006-04-27 23:34:46 +0000422 return buf;
423}
424
425#else
Rob Landley1801e9c2006-05-03 20:19:14 +0000426#define unpack_usage_messages() usage_messages
Rob Landley7e21d5f2006-04-27 23:34:46 +0000427#endif /* ENABLE_FEATURE_COMPRESS_USAGE */
Rob Landley8a7a6782005-09-05 04:13:33 +0000428
Rob Landleydfba7412006-03-06 20:47:33 +0000429void bb_show_usage (void)
Rob Landley8a7a6782005-09-05 04:13:33 +0000430{
Rob Landley7e21d5f2006-04-27 23:34:46 +0000431 if (ENABLE_SHOW_USAGE) {
432 const char *format_string;
433 const char *usage_string = unpack_usage_messages();
434 int i;
Rob Landley8a7a6782005-09-05 04:13:33 +0000435
Rob Landley7e21d5f2006-04-27 23:34:46 +0000436 for (i = applet_using - applets; i > 0;)
437 if (!*usage_string++) --i;
438
439 format_string = "%s\n\nUsage: %s %s\n\n";
440 if (*usage_string == '\b')
441 format_string = "%s\n\nNo help available.\n\n";
442 fprintf (stderr, format_string, bb_msg_full_version,
443 applet_using->name, usage_string);
Rob Landley8a7a6782005-09-05 04:13:33 +0000444 }
Rob Landley8a7a6782005-09-05 04:13:33 +0000445
Rob Landley046d6e72005-10-12 21:50:02 +0000446 exit (bb_default_error_retval);
Rob Landley8a7a6782005-09-05 04:13:33 +0000447}
448
Rob Landley53437472006-07-16 08:14:35 +0000449static int applet_name_compare(const void *name, const void *vapplet)
Rob Landley8a7a6782005-09-05 04:13:33 +0000450{
Rob Landley53437472006-07-16 08:14:35 +0000451 const struct BB_applet *applet = vapplet;
Rob Landley8a7a6782005-09-05 04:13:33 +0000452
Rob Landley53437472006-07-16 08:14:35 +0000453 return strcmp(name, applet->name);
Rob Landley8a7a6782005-09-05 04:13:33 +0000454}
455
456extern const size_t NUM_APPLETS;
457
Rob Landley53437472006-07-16 08:14:35 +0000458struct BB_applet *find_applet_by_name(const char *name)
Rob Landley8a7a6782005-09-05 04:13:33 +0000459{
Rob Landley53437472006-07-16 08:14:35 +0000460 return bsearch(name, applets, NUM_APPLETS, sizeof(struct BB_applet),
Rob Landley8a7a6782005-09-05 04:13:33 +0000461 applet_name_compare);
462}
463
Rob Landley53437472006-07-16 08:14:35 +0000464void run_applet_by_name(const char *name, int argc, char **argv)
Rob Landley8a7a6782005-09-05 04:13:33 +0000465{
Rob Landley53437472006-07-16 08:14:35 +0000466 if (ENABLE_FEATURE_SUID_CONFIG) parse_config_file();
Rob Landley8a7a6782005-09-05 04:13:33 +0000467
Rob Landley53437472006-07-16 08:14:35 +0000468 if (!strncmp(name, "busybox", 7)) busybox_main(argc, argv);
Rob Landley8a7a6782005-09-05 04:13:33 +0000469 /* Do a binary search to find the applet entry given the name. */
470 applet_using = find_applet_by_name(name);
Rob Landley53437472006-07-16 08:14:35 +0000471 if (applet_using) {
Rob Landley8a7a6782005-09-05 04:13:33 +0000472 bb_applet_name = applet_using->name;
Rob Landley53437472006-07-16 08:14:35 +0000473 if(argc==2 && !strcmp(argv[1], "--help")) bb_show_usage();
474 if(ENABLE_FEATURE_SUID) check_suid(applet_using);
475 exit((*(applet_using->main))(argc, argv));
Rob Landley8a7a6782005-09-05 04:13:33 +0000476 }
477}