c6be1b872772a6ca34ac93add75ca10a9646c0cd
[oweals/busybox.git] / util-linux / mdev.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * mdev - Mini udev for busybox
4  *
5  * Copyright 2005 Rob Landley <rob@landley.net>
6  * Copyright 2005 Frank Sorenson <frank@tuxrocks.com>
7  *
8  * Licensed under GPLv2, see file LICENSE in this source tree.
9  */
10
11 //config:config MDEV
12 //config:       bool "mdev"
13 //config:       default y
14 //config:       select PLATFORM_LINUX
15 //config:       help
16 //config:         mdev is a mini-udev implementation for dynamically creating device
17 //config:         nodes in the /dev directory.
18 //config:
19 //config:         For more information, please see docs/mdev.txt
20 //config:
21 //config:config FEATURE_MDEV_CONF
22 //config:       bool "Support /etc/mdev.conf"
23 //config:       default y
24 //config:       depends on MDEV
25 //config:       help
26 //config:         Add support for the mdev config file to control ownership and
27 //config:         permissions of the device nodes.
28 //config:
29 //config:         For more information, please see docs/mdev.txt
30 //config:
31 //config:config FEATURE_MDEV_RENAME
32 //config:       bool "Support subdirs/symlinks"
33 //config:       default y
34 //config:       depends on FEATURE_MDEV_CONF
35 //config:       help
36 //config:         Add support for renaming devices and creating symlinks.
37 //config:
38 //config:         For more information, please see docs/mdev.txt
39 //config:
40 //config:config FEATURE_MDEV_RENAME_REGEXP
41 //config:       bool "Support regular expressions substitutions when renaming device"
42 //config:       default y
43 //config:       depends on FEATURE_MDEV_RENAME
44 //config:       help
45 //config:         Add support for regular expressions substitutions when renaming
46 //config:         device.
47 //config:
48 //config:config FEATURE_MDEV_EXEC
49 //config:       bool "Support command execution at device addition/removal"
50 //config:       default y
51 //config:       depends on FEATURE_MDEV_CONF
52 //config:       help
53 //config:         This adds support for an optional field to /etc/mdev.conf for
54 //config:         executing commands when devices are created/removed.
55 //config:
56 //config:         For more information, please see docs/mdev.txt
57 //config:
58 //config:config FEATURE_MDEV_LOAD_FIRMWARE
59 //config:       bool "Support loading of firmwares"
60 //config:       default y
61 //config:       depends on MDEV
62 //config:       help
63 //config:         Some devices need to load firmware before they can be usable.
64 //config:
65 //config:         These devices will request userspace look up the files in
66 //config:         /lib/firmware/ and if it exists, send it to the kernel for
67 //config:         loading into the hardware.
68
69 //applet:IF_MDEV(APPLET(mdev, BB_DIR_SBIN, BB_SUID_DROP))
70
71 //kbuild:lib-$(CONFIG_MDEV) += mdev.o
72
73 //usage:#define mdev_trivial_usage
74 //usage:       "[-s]"
75 //usage:#define mdev_full_usage "\n\n"
76 //usage:       "mdev -s is to be run during boot to scan /sys and populate /dev.\n"
77 //usage:       "\n"
78 //usage:       "Bare mdev is a kernel hotplug helper. To activate it:\n"
79 //usage:       "        echo /sbin/mdev >/proc/sys/kernel/hotplug\n"
80 //usage:        IF_FEATURE_MDEV_CONF(
81 //usage:       "\n"
82 //usage:       "It uses /etc/mdev.conf with lines\n"
83 //usage:       "        [-]DEVNAME UID:GID PERM"
84 //usage:                        IF_FEATURE_MDEV_RENAME(" [>|=PATH]|[!]")
85 //usage:                        IF_FEATURE_MDEV_EXEC(" [@|$|*PROG]")
86 //usage:       "\n"
87 //usage:       "where DEVNAME is device name regex, @major,minor[-minor2], or\n"
88 //usage:       "environment variable regex. A common use of the latter is\n"
89 //usage:       "to load modules for hotplugged devices:\n"
90 //usage:       "        $MODALIAS=.* 0:0 660 @modprobe \"$MODALIAS\"\n"
91 //usage:        )
92 //usage:       "\n"
93 //usage:       "If /dev/mdev.seq file exists, mdev will wait for its value\n"
94 //usage:       "to match $SEQNUM variable. This prevents plug/unplug races.\n"
95 //usage:       "To activate this feature, create empty /dev/mdev.seq at boot."
96
97 #include "libbb.h"
98 #include "xregex.h"
99
100 /* "mdev -s" scans /sys/class/xxx, looking for directories which have dev
101  * file (it is of the form "M:m\n"). Example: /sys/class/tty/tty0/dev
102  * contains "4:0\n". Directory name is taken as device name, path component
103  * directly after /sys/class/ as subsystem. In this example, "tty0" and "tty".
104  * Then mdev creates the /dev/device_name node.
105  * If /sys/class/.../dev file does not exist, mdev still may act
106  * on this device: see "@|$|*command args..." parameter in config file.
107  *
108  * mdev w/o parameters is called as hotplug helper. It takes device
109  * and subsystem names from $DEVPATH and $SUBSYSTEM, extracts
110  * maj,min from "/sys/$DEVPATH/dev" and also examines
111  * $ACTION ("add"/"delete") and $FIRMWARE.
112  *
113  * If action is "add", mdev creates /dev/device_name similarly to mdev -s.
114  * (todo: explain "delete" and $FIRMWARE)
115  *
116  * If /etc/mdev.conf exists, it may modify /dev/device_name's properties.
117  *
118  * Leading minus in 1st field means "don't stop on this line", otherwise
119  * search is stopped after the matching line is encountered.
120  *
121  * $envvar=regex format is useful for loading modules for hot-plugged devices
122  * which do not have driver loaded yet. In this case /sys/class/.../dev
123  * does not exist, but $MODALIAS is set to needed module's name
124  * (actually, an alias to it) by kernel. This rule instructs mdev
125  * to load the module and exit:
126  *    $MODALIAS=.* 0:0 660 @modprobe "$MODALIAS"
127  * The kernel will generate another hotplug event when /sys/class/.../dev
128  * file appears.
129  *
130  * When line matches, the device node is created, chmod'ed and chown'ed,
131  * moved to path, and if >path, a symlink to moved node is created,
132  * all this if /sys/class/.../dev exists.
133  *    Examples:
134  *    =loop/      - moves to /dev/loop
135  *    >disk/sda%1 - moves to /dev/disk/sdaN, makes /dev/sdaN a symlink
136  *
137  * Then "command args..." is executed (via sh -c 'command args...').
138  * @:execute on creation, $:on deletion, *:on both.
139  * This happens regardless of /sys/class/.../dev existence.
140  */
141
142 struct rule {
143         bool keep_matching;
144         bool regex_compiled;
145         bool regex_has_slash;
146         mode_t mode;
147         int maj, min0, min1;
148         struct bb_uidgid_t ugid;
149         char *envvar;
150         char *ren_mov;
151         IF_FEATURE_MDEV_EXEC(char *r_cmd;)
152         regex_t match;
153 };
154
155 struct globals {
156         int root_major, root_minor;
157         char *subsystem;
158 #if ENABLE_FEATURE_MDEV_CONF
159         const char *filename;
160         parser_t *parser;
161         struct rule **rule_vec;
162         unsigned rule_idx;
163 #endif
164         struct rule cur_rule;
165 } FIX_ALIASING;
166 #define G (*(struct globals*)&bb_common_bufsiz1)
167 #define INIT_G() do { } while (0)
168
169
170 /* Prevent infinite loops in /sys symlinks */
171 #define MAX_SYSFS_DEPTH 3
172
173 /* We use additional 64+ bytes in make_device() */
174 #define SCRATCH_SIZE 80
175
176 #if 0
177 # define dbg(...) bb_error_msg(__VA_ARGS__)
178 #else
179 # define dbg(...) ((void)0)
180 #endif
181
182
183 #if ENABLE_FEATURE_MDEV_CONF
184
185 static void make_default_cur_rule(void)
186 {
187         memset(&G.cur_rule, 0, sizeof(G.cur_rule));
188         G.cur_rule.maj = -1; /* "not a @major,minor rule" */
189         G.cur_rule.mode = 0660;
190 }
191
192 static void clean_up_cur_rule(void)
193 {
194         free(G.cur_rule.envvar);
195         if (G.cur_rule.regex_compiled)
196                 regfree(&G.cur_rule.match);
197         free(G.cur_rule.ren_mov);
198         IF_FEATURE_MDEV_EXEC(free(G.cur_rule.r_cmd);)
199         make_default_cur_rule();
200 }
201
202 static void parse_next_rule(void)
203 {
204         /* Note: on entry, G.cur_rule is set to default */
205         while (1) {
206                 char *tokens[4];
207                 char *val;
208
209                 if (!config_read(G.parser, tokens, 4, 3, "# \t", PARSE_NORMAL))
210                         break;
211
212                 /* Fields: [-]regex uid:gid mode [alias] [cmd] */
213                 dbg("token1:'%s'", tokens[1]);
214
215                 /* 1st field */
216                 val = tokens[0];
217                 G.cur_rule.keep_matching = ('-' == val[0]);
218                 val += G.cur_rule.keep_matching; /* swallow leading dash */
219                 if (val[0] == '@') {
220                         /* @major,minor[-minor2] */
221                         /* (useful when name is ambiguous:
222                          * "/sys/class/usb/lp0" and
223                          * "/sys/class/printer/lp0")
224                          */
225                         int sc = sscanf(val, "@%u,%u-%u", &G.cur_rule.maj, &G.cur_rule.min0, &G.cur_rule.min1);
226                         if (sc < 2 || G.cur_rule.maj < 0) {
227                                 bb_error_msg("bad @maj,min on line %d", G.parser->lineno);
228                                 goto next_rule;
229                         }
230                         if (sc == 2)
231                                 G.cur_rule.min1 = G.cur_rule.min0;
232                 } else {
233                         if (val[0] == '$') {
234                                 char *eq = strchr(++val, '=');
235                                 if (!eq) {
236                                         bb_error_msg("bad $envvar=regex on line %d", G.parser->lineno);
237                                         goto next_rule;
238                                 }
239                                 G.cur_rule.envvar = xstrndup(val, eq - val);
240                                 val = eq + 1;
241                         }
242                         xregcomp(&G.cur_rule.match, val, REG_EXTENDED);
243                         G.cur_rule.regex_compiled = 1;
244                         G.cur_rule.regex_has_slash = (strchr(val, '/') != NULL);
245                 }
246
247                 /* 2nd field: uid:gid - device ownership */
248                 if (get_uidgid(&G.cur_rule.ugid, tokens[1], /*allow_numeric:*/ 1) == 0) {
249                         bb_error_msg("unknown user/group '%s' on line %d", tokens[1], G.parser->lineno);
250                         goto next_rule;
251                 }
252
253                 /* 3rd field: mode - device permissions */
254                 bb_parse_mode(tokens[2], &G.cur_rule.mode);
255
256                 /* 4th field (opt): ">|=alias" or "!" to not create the node */
257                 val = tokens[3];
258                 if (ENABLE_FEATURE_MDEV_RENAME && val && strchr(">=!", val[0])) {
259                         char *s = skip_non_whitespace(val);
260                         G.cur_rule.ren_mov = xstrndup(val, s - val);
261                         val = skip_whitespace(s);
262                 }
263
264                 if (ENABLE_FEATURE_MDEV_EXEC && val && val[0]) {
265                         const char *s = "$@*";
266                         const char *s2 = strchr(s, val[0]);
267                         if (!s2) {
268                                 bb_error_msg("bad line %u", G.parser->lineno);
269                                 goto next_rule;
270                         }
271                         IF_FEATURE_MDEV_EXEC(G.cur_rule.r_cmd = xstrdup(val);)
272                 }
273
274                 return;
275  next_rule:
276                 clean_up_cur_rule();
277         } /* while (config_read) */
278
279         dbg("config_close(G.parser)");
280         config_close(G.parser);
281         G.parser = NULL;
282
283         return;
284 }
285
286 /* If mdev -s, we remember rules in G.rule_vec[].
287  * Otherwise, there is no point in doing it, and we just
288  * save only one parsed rule in G.cur_rule.
289  */
290 static const struct rule *next_rule(void)
291 {
292         struct rule *rule;
293
294         /* Open conf file if we didn't do it yet */
295         if (!G.parser && G.filename) {
296                 dbg("config_open('%s')", G.filename);
297                 G.parser = config_open2(G.filename, fopen_for_read);
298                 G.filename = NULL;
299         }
300
301         if (G.rule_vec) {
302                 /* mdev -s */
303                 /* Do we have rule parsed already? */
304                 if (G.rule_vec[G.rule_idx]) {
305                         dbg("< G.rule_vec[G.rule_idx:%d]=%p", G.rule_idx, G.rule_vec[G.rule_idx]);
306                         return G.rule_vec[G.rule_idx++];
307                 }
308                 make_default_cur_rule();
309         } else {
310                 /* not mdev -s */
311                 clean_up_cur_rule();
312         }
313
314         /* Parse one more rule if file isn't fully read */
315         rule = &G.cur_rule;
316         if (G.parser) {
317                 parse_next_rule();
318                 if (G.rule_vec) { /* mdev -s */
319                         rule = memcpy(xmalloc(sizeof(G.cur_rule)), &G.cur_rule, sizeof(G.cur_rule));
320                         G.rule_vec = xrealloc_vector(G.rule_vec, 4, G.rule_idx);
321                         G.rule_vec[G.rule_idx++] = rule;
322                         dbg("> G.rule_vec[G.rule_idx:%d]=%p", G.rule_idx, G.rule_vec[G.rule_idx]);
323                 }
324         }
325
326         return rule;
327 }
328
329 #else
330
331 # define next_rule() (&G.cur_rule)
332
333 #endif
334
335 /* Builds an alias path.
336  * This function potentionally reallocates the alias parameter.
337  * Only used for ENABLE_FEATURE_MDEV_RENAME
338  */
339 static char *build_alias(char *alias, const char *device_name)
340 {
341         char *dest;
342
343         /* ">bar/": rename to bar/device_name */
344         /* ">bar[/]baz": rename to bar[/]baz */
345         dest = strrchr(alias, '/');
346         if (dest) { /* ">bar/[baz]" ? */
347                 *dest = '\0'; /* mkdir bar */
348                 bb_make_directory(alias, 0755, FILEUTILS_RECUR);
349                 *dest = '/';
350                 if (dest[1] == '\0') { /* ">bar/" => ">bar/device_name" */
351                         dest = alias;
352                         alias = concat_path_file(alias, device_name);
353                         free(dest);
354                 }
355         }
356
357         return alias;
358 }
359
360 /* mknod in /dev based on a path like "/sys/block/hda/hda1"
361  * NB1: path parameter needs to have SCRATCH_SIZE scratch bytes
362  * after NUL, but we promise to not mangle (IOW: to restore if needed)
363  * path string.
364  * NB2: "mdev -s" may call us many times, do not leak memory/fds!
365  */
366 static void make_device(char *path, int delete)
367 {
368         char *device_name, *subsystem_slash_devname;
369         int major, minor, type, len;
370
371         dbg("%s('%s', delete:%d)", __func__, path, delete);
372
373         /* Try to read major/minor string.  Note that the kernel puts \n after
374          * the data, so we don't need to worry about null terminating the string
375          * because sscanf() will stop at the first nondigit, which \n is.
376          * We also depend on path having writeable space after it.
377          */
378         major = -1;
379         if (!delete) {
380                 char *dev_maj_min = path + strlen(path);
381
382                 strcpy(dev_maj_min, "/dev");
383                 len = open_read_close(path, dev_maj_min + 1, 64);
384                 *dev_maj_min = '\0';
385                 if (len < 1) {
386                         if (!ENABLE_FEATURE_MDEV_EXEC)
387                                 return;
388                         /* no "dev" file, but we can still run scripts
389                          * based on device name */
390                 } else if (sscanf(++dev_maj_min, "%u:%u", &major, &minor) != 2) {
391                         major = -1;
392                 }
393         }
394         /* else: for delete, -1 still deletes the node, but < -1 suppresses that */
395
396         /* Determine device name, type, major and minor */
397         device_name = (char*) bb_basename(path);
398         /* http://kernel.org/doc/pending/hotplug.txt says that only
399          * "/sys/block/..." is for block devices. "/sys/bus" etc is not.
400          * But since 2.6.25 block devices are also in /sys/class/block.
401          * We use strstr("/block/") to forestall future surprises. */
402         type = S_IFCHR;
403         if (strstr(path, "/block/") || (G.subsystem && strncmp(G.subsystem, "block", 5) == 0))
404                 type = S_IFBLK;
405
406         /* Make path point to "subsystem/device_name" */
407         subsystem_slash_devname = NULL;
408         /* Check for coldplug invocations first */
409         if (strncmp(path, "/sys/block/", 11) == 0) /* legacy case */
410                 path += sizeof("/sys/") - 1;
411         else if (strncmp(path, "/sys/class/", 11) == 0)
412                 path += sizeof("/sys/class/") - 1;
413         else {
414                 /* Example of a hotplug invocation:
415                  * SUBSYSTEM="block"
416                  * DEVPATH="/sys" + "/devices/virtual/mtd/mtd3/mtdblock3"
417                  * ("/sys" is added by mdev_main)
418                  * - path does not contain subsystem
419                  */
420                 subsystem_slash_devname = concat_path_file(G.subsystem, device_name);
421                 path = subsystem_slash_devname;
422         }
423
424 #if ENABLE_FEATURE_MDEV_CONF
425         G.rule_idx = 0; /* restart from the beginning (think mdev -s) */
426 #endif
427         for (;;) {
428                 const char *str_to_match;
429                 regmatch_t off[1 + 9 * ENABLE_FEATURE_MDEV_RENAME_REGEXP];
430                 char *command;
431                 char *alias;
432                 char aliaslink = aliaslink; /* for compiler */
433                 const char *node_name;
434                 const struct rule *rule;
435
436                 str_to_match = "";
437
438                 rule = next_rule();
439
440 #if ENABLE_FEATURE_MDEV_CONF
441                 if (rule->maj >= 0) {  /* @maj,min rule */
442                         if (major != rule->maj)
443                                 continue;
444                         if (minor < rule->min0 || minor > rule->min1)
445                                 continue;
446                         memset(off, 0, sizeof(off));
447                         goto rule_matches;
448                 }
449                 if (rule->envvar) { /* $envvar=regex rule */
450                         str_to_match = getenv(rule->envvar);
451                         dbg("getenv('%s'):'%s'", rule->envvar, str_to_match);
452                         if (!str_to_match)
453                                 continue;
454                 } else {
455                         /* regex to match [subsystem/]device_name */
456                         str_to_match = (rule->regex_has_slash ? path : device_name);
457                 }
458
459                 if (rule->regex_compiled) {
460                         int regex_match = regexec(&rule->match, str_to_match, ARRAY_SIZE(off), off, 0);
461                         dbg("regex_match for '%s':%d", str_to_match, regex_match);
462                         //bb_error_msg("matches:");
463                         //for (int i = 0; i < ARRAY_SIZE(off); i++) {
464                         //      if (off[i].rm_so < 0) continue;
465                         //      bb_error_msg("match %d: '%.*s'\n", i,
466                         //              (int)(off[i].rm_eo - off[i].rm_so),
467                         //              device_name + off[i].rm_so);
468                         //}
469
470                         if (regex_match != 0
471                         /* regexec returns whole pattern as "range" 0 */
472                          || off[0].rm_so != 0
473                          || (int)off[0].rm_eo != (int)strlen(str_to_match)
474                         ) {
475                                 continue; /* this rule doesn't match */
476                         }
477                 }
478                 /* else: it's final implicit "match-all" rule */
479 #endif
480
481  rule_matches:
482                 dbg("rule matched");
483
484                 /* Build alias name */
485                 alias = NULL;
486                 if (ENABLE_FEATURE_MDEV_RENAME && rule->ren_mov) {
487                         aliaslink = rule->ren_mov[0];
488                         if (aliaslink == '!') {
489                                 /* "!": suppress node creation/deletion */
490                                 major = -2;
491                         }
492                         else if (aliaslink == '>' || aliaslink == '=') {
493                                 if (ENABLE_FEATURE_MDEV_RENAME_REGEXP) {
494                                         char *s;
495                                         char *p;
496                                         unsigned n;
497
498                                         /* substitute %1..9 with off[1..9], if any */
499                                         n = 0;
500                                         s = rule->ren_mov;
501                                         while (*s)
502                                                 if (*s++ == '%')
503                                                         n++;
504
505                                         p = alias = xzalloc(strlen(rule->ren_mov) + n * strlen(str_to_match));
506                                         s = rule->ren_mov + 1;
507                                         while (*s) {
508                                                 *p = *s;
509                                                 if ('%' == *s) {
510                                                         unsigned i = (s[1] - '0');
511                                                         if (i <= 9 && off[i].rm_so >= 0) {
512                                                                 n = off[i].rm_eo - off[i].rm_so;
513                                                                 strncpy(p, str_to_match + off[i].rm_so, n);
514                                                                 p += n - 1;
515                                                                 s++;
516                                                         }
517                                                 }
518                                                 p++;
519                                                 s++;
520                                         }
521                                 } else {
522                                         alias = xstrdup(rule->ren_mov + 1);
523                                 }
524                         }
525                 }
526                 dbg("alias:'%s'", alias);
527
528                 command = NULL;
529                 IF_FEATURE_MDEV_EXEC(command = rule->r_cmd;)
530                 if (command) {
531                         const char *s = "$@*";
532                         const char *s2 = strchr(s, command[0]);
533
534                         /* Are we running this command now?
535                          * Run $cmd on delete, @cmd on create, *cmd on both
536                          */
537                         if (s2 - s != delete) {
538                                 /* We are here if: '*',
539                                  * or: '@' and delete = 0,
540                                  * or: '$' and delete = 1
541                                  */
542                                 command++;
543                         } else {
544                                 command = NULL;
545                         }
546                 }
547                 dbg("command:'%s'", command);
548
549                 /* "Execute" the line we found */
550                 node_name = device_name;
551                 if (ENABLE_FEATURE_MDEV_RENAME && alias) {
552                         node_name = alias = build_alias(alias, device_name);
553                         dbg("alias2:'%s'", alias);
554                 }
555
556                 if (!delete && major >= 0) {
557                         dbg("mknod('%s',%o,(%d,%d))", node_name, rule->mode | type, major, minor);
558                         if (mknod(node_name, rule->mode | type, makedev(major, minor)) && errno != EEXIST)
559                                 bb_perror_msg("can't create '%s'", node_name);
560                         if (major == G.root_major && minor == G.root_minor)
561                                 symlink(node_name, "root");
562                         if (ENABLE_FEATURE_MDEV_CONF) {
563                                 chmod(node_name, rule->mode);
564                                 chown(node_name, rule->ugid.uid, rule->ugid.gid);
565                         }
566                         if (ENABLE_FEATURE_MDEV_RENAME && alias) {
567                                 if (aliaslink == '>')
568                                         symlink(node_name, device_name);
569                         }
570                 }
571
572                 if (ENABLE_FEATURE_MDEV_EXEC && command) {
573                         /* setenv will leak memory, use putenv/unsetenv/free */
574                         char *s = xasprintf("%s=%s", "MDEV", node_name);
575                         char *s1 = xasprintf("%s=%s", "SUBSYSTEM", G.subsystem);
576                         putenv(s);
577                         putenv(s1);
578                         if (system(command) == -1)
579                                 bb_perror_msg("can't run '%s'", command);
580                         bb_unsetenv_and_free(s1);
581                         bb_unsetenv_and_free(s);
582                 }
583
584                 if (delete && major >= -1) {
585                         if (ENABLE_FEATURE_MDEV_RENAME && alias) {
586                                 if (aliaslink == '>')
587                                         unlink(device_name);
588                         }
589                         unlink(node_name);
590                 }
591
592                 if (ENABLE_FEATURE_MDEV_RENAME)
593                         free(alias);
594
595                 /* We found matching line.
596                  * Stop unless it was prefixed with '-'
597                  */
598                 if (!ENABLE_FEATURE_MDEV_CONF || !rule->keep_matching)
599                         break;
600         } /* for (;;) */
601
602         free(subsystem_slash_devname);
603 }
604
605 /* File callback for /sys/ traversal */
606 static int FAST_FUNC fileAction(const char *fileName,
607                 struct stat *statbuf UNUSED_PARAM,
608                 void *userData,
609                 int depth UNUSED_PARAM)
610 {
611         size_t len = strlen(fileName) - 4; /* can't underflow */
612         char *scratch = userData;
613
614         /* len check is for paranoid reasons */
615         if (strcmp(fileName + len, "/dev") != 0 || len >= PATH_MAX)
616                 return FALSE;
617
618         strcpy(scratch, fileName);
619         scratch[len] = '\0';
620         make_device(scratch, /*delete:*/ 0);
621
622         return TRUE;
623 }
624
625 /* Directory callback for /sys/ traversal */
626 static int FAST_FUNC dirAction(const char *fileName UNUSED_PARAM,
627                 struct stat *statbuf UNUSED_PARAM,
628                 void *userData UNUSED_PARAM,
629                 int depth)
630 {
631         /* Extract device subsystem -- the name of the directory
632          * under /sys/class/ */
633         if (1 == depth) {
634                 free(G.subsystem);
635                 G.subsystem = strrchr(fileName, '/');
636                 if (G.subsystem)
637                         G.subsystem = xstrdup(G.subsystem + 1);
638         }
639
640         return (depth >= MAX_SYSFS_DEPTH ? SKIP : TRUE);
641 }
642
643 /* For the full gory details, see linux/Documentation/firmware_class/README
644  *
645  * Firmware loading works like this:
646  * - kernel sets FIRMWARE env var
647  * - userspace checks /lib/firmware/$FIRMWARE
648  * - userspace waits for /sys/$DEVPATH/loading to appear
649  * - userspace writes "1" to /sys/$DEVPATH/loading
650  * - userspace copies /lib/firmware/$FIRMWARE into /sys/$DEVPATH/data
651  * - userspace writes "0" (worked) or "-1" (failed) to /sys/$DEVPATH/loading
652  * - kernel loads firmware into device
653  */
654 static void load_firmware(const char *firmware, const char *sysfs_path)
655 {
656         int cnt;
657         int firmware_fd, loading_fd, data_fd;
658
659         /* check for /lib/firmware/$FIRMWARE */
660         xchdir("/lib/firmware");
661         firmware_fd = xopen(firmware, O_RDONLY);
662
663         /* in case we goto out ... */
664         data_fd = -1;
665
666         /* check for /sys/$DEVPATH/loading ... give 30 seconds to appear */
667         xchdir(sysfs_path);
668         for (cnt = 0; cnt < 30; ++cnt) {
669                 loading_fd = open("loading", O_WRONLY);
670                 if (loading_fd != -1)
671                         goto loading;
672                 sleep(1);
673         }
674         goto out;
675
676  loading:
677         /* tell kernel we're loading by "echo 1 > /sys/$DEVPATH/loading" */
678         if (full_write(loading_fd, "1", 1) != 1)
679                 goto out;
680
681         /* load firmware into /sys/$DEVPATH/data */
682         data_fd = open("data", O_WRONLY);
683         if (data_fd == -1)
684                 goto out;
685         cnt = bb_copyfd_eof(firmware_fd, data_fd);
686
687         /* tell kernel result by "echo [0|-1] > /sys/$DEVPATH/loading" */
688         if (cnt > 0)
689                 full_write(loading_fd, "0", 1);
690         else
691                 full_write(loading_fd, "-1", 2);
692
693  out:
694         if (ENABLE_FEATURE_CLEAN_UP) {
695                 close(firmware_fd);
696                 close(loading_fd);
697                 close(data_fd);
698         }
699 }
700
701 int mdev_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
702 int mdev_main(int argc UNUSED_PARAM, char **argv)
703 {
704         RESERVE_CONFIG_BUFFER(temp, PATH_MAX + SCRATCH_SIZE);
705
706         INIT_G();
707
708 #if ENABLE_FEATURE_MDEV_CONF
709         G.filename = "/etc/mdev.conf";
710 #endif
711
712         /* We can be called as hotplug helper */
713         /* Kernel cannot provide suitable stdio fds for us, do it ourself */
714         bb_sanitize_stdio();
715
716         /* Force the configuration file settings exactly */
717         umask(0);
718
719         xchdir("/dev");
720
721         if (argv[1] && strcmp(argv[1], "-s") == 0) {
722                 /* Scan:
723                  * mdev -s
724                  */
725                 struct stat st;
726
727 #if ENABLE_FEATURE_MDEV_CONF
728                 /* Same as xrealloc_vector(NULL, 4, 0): */
729                 G.rule_vec = xzalloc((1 << 4) * sizeof(*G.rule_vec));
730 #endif
731                 xstat("/", &st);
732                 G.root_major = major(st.st_dev);
733                 G.root_minor = minor(st.st_dev);
734
735                 /* ACTION_FOLLOWLINKS is needed since in newer kernels
736                  * /sys/block/loop* (for example) are symlinks to dirs,
737                  * not real directories.
738                  * (kernel's CONFIG_SYSFS_DEPRECATED makes them real dirs,
739                  * but we can't enforce that on users)
740                  */
741                 if (access("/sys/class/block", F_OK) != 0) {
742                         /* Scan obsolete /sys/block only if /sys/class/block
743                          * doesn't exist. Otherwise we'll have dupes.
744                          * Also, do not complain if it doesn't exist.
745                          * Some people configure kernel to have no blockdevs.
746                          */
747                         recursive_action("/sys/block",
748                                 ACTION_RECURSE | ACTION_FOLLOWLINKS | ACTION_QUIET,
749                                 fileAction, dirAction, temp, 0);
750                 }
751                 recursive_action("/sys/class",
752                         ACTION_RECURSE | ACTION_FOLLOWLINKS,
753                         fileAction, dirAction, temp, 0);
754         } else {
755                 char *fw;
756                 char *seq;
757                 char *action;
758                 char *env_path;
759                 static const char keywords[] ALIGN1 = "remove\0add\0";
760                 enum { OP_remove = 0, OP_add };
761                 smalluint op;
762
763                 /* Hotplug:
764                  * env ACTION=... DEVPATH=... SUBSYSTEM=... [SEQNUM=...] mdev
765                  * ACTION can be "add" or "remove"
766                  * DEVPATH is like "/block/sda" or "/class/input/mice"
767                  */
768                 action = getenv("ACTION");
769                 env_path = getenv("DEVPATH");
770                 G.subsystem = getenv("SUBSYSTEM");
771                 if (!action || !env_path /*|| !G.subsystem*/)
772                         bb_show_usage();
773                 fw = getenv("FIRMWARE");
774                 op = index_in_strings(keywords, action);
775                 /* If it exists, does /dev/mdev.seq match $SEQNUM?
776                  * If it does not match, earlier mdev is running
777                  * in parallel, and we need to wait */
778                 seq = getenv("SEQNUM");
779                 if (seq) {
780                         int timeout = 2000 / 32; /* 2000 msec */
781                         do {
782                                 int seqlen;
783                                 char seqbuf[sizeof(int)*3 + 2];
784
785                                 seqlen = open_read_close("mdev.seq", seqbuf, sizeof(seqbuf-1));
786                                 if (seqlen < 0) {
787                                         seq = NULL;
788                                         break;
789                                 }
790                                 seqbuf[seqlen] = '\0';
791                                 if (seqbuf[0] == '\n' /* seed file? */
792                                  || strcmp(seq, seqbuf) == 0 /* correct idx? */
793                                 ) {
794                                         break;
795                                 }
796                                 usleep(32*1000);
797                         } while (--timeout);
798                 }
799
800                 snprintf(temp, PATH_MAX, "/sys%s", env_path);
801                 if (op == OP_remove) {
802                         /* Ignoring "remove firmware". It was reported
803                          * to happen and to cause erroneous deletion
804                          * of device nodes. */
805                         if (!fw)
806                                 make_device(temp, /*delete:*/ 1);
807                 }
808                 else if (op == OP_add) {
809                         make_device(temp, /*delete:*/ 0);
810                         if (ENABLE_FEATURE_MDEV_LOAD_FIRMWARE) {
811                                 if (fw)
812                                         load_firmware(fw, temp);
813                         }
814                 }
815
816                 if (seq) {
817                         xopen_xwrite_close("mdev.seq", utoa(xatou(seq) + 1));
818                 }
819         }
820
821         if (ENABLE_FEATURE_CLEAN_UP)
822                 RELEASE_CONFIG_BUFFER(temp);
823
824         return EXIT_SUCCESS;
825 }