blob: 057b9e4ff87f4ffd020c5a1e2033e7a22e4f9ff3 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
2/*
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00003 *
Rob Landley70f7ef72005-12-13 08:21:33 +00004 * mdev - Mini udev for busybox
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00005 *
Rob Landley70f7ef72005-12-13 08:21:33 +00006 * Copyright 2005 Rob Landley <rob@landley.net>
7 * Copyright 2005 Frank Sorenson <frank@tuxrocks.com>
8 *
Rob Landleye9a7a622006-09-22 02:52:41 +00009 * Licensed under GPL version 2, see file LICENSE in this tarball for details.
Rob Landley70f7ef72005-12-13 08:21:33 +000010 */
11
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000012#include "libbb.h"
Rob Landleyb56c2852005-12-17 10:52:30 +000013#include "xregex.h"
Rob Landley70f7ef72005-12-13 08:21:33 +000014
Denis Vlasenko4e5f82c2007-06-03 22:30:22 +000015struct globals {
Rob Landley5cd1ccd2006-05-21 18:33:27 +000016 int root_major, root_minor;
Denis Vlasenko4e5f82c2007-06-03 22:30:22 +000017};
18#define G (*(struct globals*)&bb_common_bufsiz1)
19#define root_major (G.root_major)
20#define root_minor (G.root_minor)
Rob Landleya7e3d052006-02-21 06:11:13 +000021
Mike Frysingerb51fd352007-06-13 09:24:50 +000022#define MAX_SYSFS_DEPTH 3 /* prevent infinite loops in /sys symlinks */
23
Denis Vlasenkocf26ab72008-03-27 22:45:44 +000024/* We use additional 64+ bytes in make_device() */
25#define SCRATCH_SIZE 80
26
Denis Vlasenko44615642008-03-29 13:10:57 +000027static char *next_field(char *s)
28{
29 char *end = skip_non_whitespace(s);
30 s = skip_whitespace(end);
31 *end = '\0';
32 if (*s == '\0')
33 s = NULL;
34 return s;
35}
36
Rob Landley70f7ef72005-12-13 08:21:33 +000037/* mknod in /dev based on a path like "/sys/block/hda/hda1" */
Denis Vlasenkocf26ab72008-03-27 22:45:44 +000038/* NB: "mdev -s" may call us many times, do not leak memory/fds! */
Rob Landleyef10d522006-06-26 14:11:33 +000039static void make_device(char *path, int delete)
Rob Landley70f7ef72005-12-13 08:21:33 +000040{
Denis Vlasenkodc757aa2007-06-30 08:04:05 +000041 const char *device_name;
Denis Vlasenkof46be092006-10-16 19:39:37 +000042 int major, minor, type, len;
Mike Frysingera421ba82006-02-03 00:25:37 +000043 int mode = 0660;
44 uid_t uid = 0;
45 gid_t gid = 0;
Denis Vlasenkocf26ab72008-03-27 22:45:44 +000046 char *dev_maj_min = path + strlen(path);
Rob Landleyef10d522006-06-26 14:11:33 +000047 char *command = NULL;
Mike Frysingerf0044c42008-02-01 06:53:50 +000048 char *alias = NULL;
Denis Vlasenkoa959a2a2008-05-22 21:35:16 +000049 char aliaslink = aliaslink; /* for compiler */
Mike Frysingerf0044c42008-02-01 06:53:50 +000050
51 /* Force the configuration file settings exactly. */
52 umask(0);
Rob Landley70f7ef72005-12-13 08:21:33 +000053
Rob Landley15fe2e12006-05-08 02:53:23 +000054 /* Try to read major/minor string. Note that the kernel puts \n after
55 * the data, so we don't need to worry about null terminating the string
56 * because sscanf() will stop at the first nondigit, which \n is. We
Mike Frysingerc881c732007-11-19 09:04:22 +000057 * also depend on path having writeable space after it.
58 */
Rob Landley10b36f92006-08-10 01:09:37 +000059 if (!delete) {
Denis Vlasenkocf26ab72008-03-27 22:45:44 +000060 strcpy(dev_maj_min, "/dev");
61 len = open_read_close(path, dev_maj_min + 1, 64);
62 *dev_maj_min++ = '\0';
Mike Frysingerae86a332008-02-20 18:31:36 +000063 if (len < 1) {
Denis Vlasenkocf26ab72008-03-27 22:45:44 +000064 if (!ENABLE_FEATURE_MDEV_EXEC)
Mike Frysingerae86a332008-02-20 18:31:36 +000065 return;
Denis Vlasenkocf26ab72008-03-27 22:45:44 +000066 /* no "dev" file, so just try to run script */
67 *dev_maj_min = '\0';
Mike Frysingerae86a332008-02-20 18:31:36 +000068 }
Rob Landley10b36f92006-08-10 01:09:37 +000069 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000070
Rob Landley70f7ef72005-12-13 08:21:33 +000071 /* Determine device name, type, major and minor */
Denis Vlasenkodc757aa2007-06-30 08:04:05 +000072 device_name = bb_basename(path);
Denis Vlasenkoaa8a6012008-03-29 16:07:46 +000073 /* http://kernel.org/doc/pending/hotplug.txt says that only
Denis Vlasenko4579e9c2008-05-08 21:49:28 +000074 * "/sys/block/..." is for block devices. "/sys/bus" etc is not!
75 * Since kernel 2.6.25 block devices are also in /sys/class/block. */
76 /* TODO: would it be acceptable to just use strstr(path, "/block/")? */
77 if (strncmp(&path[5], "class/block/"+6, 6) != 0
78 && strncmp(&path[5], "class/block/", 12) != 0)
79 type = S_IFCHR;
80 else
81 type = S_IFBLK;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000082
Rob Landleyb56c2852005-12-17 10:52:30 +000083 if (ENABLE_FEATURE_MDEV_CONF) {
Mike Frysingerc881c732007-11-19 09:04:22 +000084 FILE *fp;
Denis Vlasenko44615642008-03-29 13:10:57 +000085 char *line, *val, *next;
Denis Vlasenkoee87ebf2007-12-21 22:18:16 +000086 unsigned lineno = 0;
Rob Landleyb56c2852005-12-17 10:52:30 +000087
Denis Vlasenko44615642008-03-29 13:10:57 +000088 /* If we have config file, look up user settings */
Mike Frysingerc881c732007-11-19 09:04:22 +000089 fp = fopen_or_warn("/etc/mdev.conf", "r");
90 if (!fp)
Denis Vlasenkof46be092006-10-16 19:39:37 +000091 goto end_parse;
Rob Landleyb56c2852005-12-17 10:52:30 +000092
Denis Vlasenko44615642008-03-29 13:10:57 +000093 while ((line = xmalloc_fgetline(fp)) != NULL) {
Denis Vlasenkof2f38682008-03-29 17:26:10 +000094 regmatch_t off[1+9*ENABLE_FEATURE_MDEV_RENAME_REGEXP];
95
Mike Frysingerc881c732007-11-19 09:04:22 +000096 ++lineno;
Denis Vlasenko44615642008-03-29 13:10:57 +000097 trim(line);
98 if (!line[0])
99 goto next_line;
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000100
101 /* Fields: regex uid:gid mode [alias] [cmd] */
Mike Frysingerc881c732007-11-19 09:04:22 +0000102
Denis Vlasenko44615642008-03-29 13:10:57 +0000103 /* 1st field: regex to match this device */
104 next = next_field(line);
105 {
106 regex_t match;
Denis Vlasenko44615642008-03-29 13:10:57 +0000107 int result;
Mike Frysingera421ba82006-02-03 00:25:37 +0000108
Denis Vlasenko44615642008-03-29 13:10:57 +0000109 /* Is this it? */
110 xregcomp(&match, line, REG_EXTENDED);
Denis Vlasenkof2f38682008-03-29 17:26:10 +0000111 result = regexec(&match, device_name, ARRAY_SIZE(off), off, 0);
Denis Vlasenko44615642008-03-29 13:10:57 +0000112 regfree(&match);
Rob Landleyb56c2852005-12-17 10:52:30 +0000113
Denis Vlasenkof2f38682008-03-29 17:26:10 +0000114 //bb_error_msg("matches:");
115 //for (int i = 0; i < ARRAY_SIZE(off); i++) {
116 // if (off[i].rm_so < 0) continue;
117 // bb_error_msg("match %d: '%.*s'\n", i,
118 // (int)(off[i].rm_eo - off[i].rm_so),
119 // device_name + off[i].rm_so);
120 //}
121
Denis Vlasenko44615642008-03-29 13:10:57 +0000122 /* If not this device, skip rest of line */
Denis Vlasenkof2f38682008-03-29 17:26:10 +0000123 /* (regexec returns whole pattern as "range" 0) */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000124 if (result || off[0].rm_so
125 || ((int)off[0].rm_eo != (int)strlen(device_name))
126 ) {
Denis Vlasenko44615642008-03-29 13:10:57 +0000127 goto next_line;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000128 }
Denis Vlasenko44615642008-03-29 13:10:57 +0000129 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000130
Denis Vlasenko44615642008-03-29 13:10:57 +0000131 /* This line matches: stop parsing the file
132 * after parsing the rest of fields */
Rob Landleyb56c2852005-12-17 10:52:30 +0000133
Denis Vlasenko44615642008-03-29 13:10:57 +0000134 /* 2nd field: uid:gid - device ownership */
135 if (!next) /* field must exist */
Denis Vlasenkoee87ebf2007-12-21 22:18:16 +0000136 bb_error_msg_and_die("bad line %u", lineno);
Denis Vlasenko44615642008-03-29 13:10:57 +0000137 val = next;
138 next = next_field(val);
139 {
140 struct passwd *pass;
141 struct group *grp;
142 char *str_uid = val;
143 char *str_gid = strchrnul(val, ':');
Denis Vlasenkof46be092006-10-16 19:39:37 +0000144
Denis Vlasenko44615642008-03-29 13:10:57 +0000145 if (*str_gid)
146 *str_gid++ = '\0';
147 /* Parse UID */
148 pass = getpwnam(str_uid);
149 if (pass)
150 uid = pass->pw_uid;
151 else
152 uid = strtoul(str_uid, NULL, 10);
153 /* Parse GID */
154 grp = getgrnam(str_gid);
155 if (grp)
156 gid = grp->gr_gid;
157 else
158 gid = strtoul(str_gid, NULL, 10);
159 }
160
161 /* 3rd field: mode - device permissions */
162 if (!next) /* field must exist */
163 bb_error_msg_and_die("bad line %u", lineno);
164 val = next;
165 next = next_field(val);
166 mode = strtoul(val, NULL, 8);
167
168 /* 4th field (opt): >alias */
Denis Vlasenko32dcc532008-05-02 13:21:24 +0000169#if ENABLE_FEATURE_MDEV_RENAME
170 if (!next)
171 break;
Denis Vlasenko48014412008-05-22 17:49:58 +0000172 if (*next == '>' || *next == '=') {
Denis Vlasenko32dcc532008-05-02 13:21:24 +0000173#if ENABLE_FEATURE_MDEV_RENAME_REGEXP
174 char *s, *p;
175 unsigned i, n;
176
Denis Vlasenkoa959a2a2008-05-22 21:35:16 +0000177 aliaslink = *next;
Denis Vlasenko44615642008-03-29 13:10:57 +0000178 val = next;
179 next = next_field(val);
Denis Vlasenko32dcc532008-05-02 13:21:24 +0000180 /* substitute %1..9 with off[1..9], if any */
181 n = 0;
182 s = val;
Denis Vlasenkoe94a8712008-05-24 16:46:13 +0000183 while (*s)
184 if (*s++ == '%')
185 n++;
Denis Vlasenkof2f38682008-03-29 17:26:10 +0000186
Denis Vlasenko32dcc532008-05-02 13:21:24 +0000187 p = alias = xzalloc(strlen(val) + n * strlen(device_name));
188 s = val + 1;
189 while (*s) {
190 *p = *s;
191 if ('%' == *s) {
192 i = (s[1] - '0');
193 if (i <= 9 && off[i].rm_so >= 0) {
194 n = off[i].rm_eo - off[i].rm_so;
195 strncpy(p, device_name + off[i].rm_so, n);
196 p += n - 1;
197 s++;
Denis Vlasenkof2f38682008-03-29 17:26:10 +0000198 }
Denis Vlasenkof2f38682008-03-29 17:26:10 +0000199 }
Denis Vlasenko32dcc532008-05-02 13:21:24 +0000200 p++;
201 s++;
Denis Vlasenko44615642008-03-29 13:10:57 +0000202 }
Denis Vlasenko32dcc532008-05-02 13:21:24 +0000203#else
Denis Vlasenkoa959a2a2008-05-22 21:35:16 +0000204 aliaslink = *next;
Denis Vlasenko32dcc532008-05-02 13:21:24 +0000205 val = next;
206 next = next_field(val);
207 alias = xstrdup(val + 1);
208#endif
Denis Vlasenko44615642008-03-29 13:10:57 +0000209 }
Denis Vlasenko32dcc532008-05-02 13:21:24 +0000210#endif /* ENABLE_FEATURE_MDEV_RENAME */
Denis Vlasenko44615642008-03-29 13:10:57 +0000211
212 /* The rest (opt): command to run */
213 if (!next)
214 break;
215 val = next;
216 if (ENABLE_FEATURE_MDEV_EXEC) {
217 const char *s = "@$*";
218 const char *s2 = strchr(s, *val);
219
220 if (!s2)
221 bb_error_msg_and_die("bad line %u", lineno);
222
223 /* Correlate the position in the "@$*" with the delete
224 * step so that we get the proper behavior:
225 * @cmd: run on create
226 * $cmd: run on delete
227 * *cmd: run on both
228 */
229 if ((s2 - s + 1) /*1/2/3*/ & /*1/2*/ (1 + delete)) {
230 command = xstrdup(val + 1);
231 }
232 }
233 /* end of field parsing */
234 break; /* we found matching line, stop */
Mike Frysingerc881c732007-11-19 09:04:22 +0000235 next_line:
236 free(line);
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000237 } /* end of "while line is read from /etc/mdev.conf" */
Mike Frysingerc881c732007-11-19 09:04:22 +0000238
Denis Vlasenko44615642008-03-29 13:10:57 +0000239 free(line); /* in case we used "break" to get here */
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000240 fclose(fp);
Rob Landleyb56c2852005-12-17 10:52:30 +0000241 }
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000242 end_parse:
Rob Landley70f7ef72005-12-13 08:21:33 +0000243
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000244 if (!delete && sscanf(dev_maj_min, "%u:%u", &major, &minor) == 2) {
Mike Frysingerf0044c42008-02-01 06:53:50 +0000245
246 if (ENABLE_FEATURE_MDEV_RENAME)
247 unlink(device_name);
248
Rob Landleyef10d522006-06-26 14:11:33 +0000249 if (mknod(device_name, mode | type, makedev(major, minor)) && errno != EEXIST)
Denis Vlasenkof46be092006-10-16 19:39:37 +0000250 bb_perror_msg_and_die("mknod %s", device_name);
Rob Landley70f7ef72005-12-13 08:21:33 +0000251
Denis Vlasenko4e5f82c2007-06-03 22:30:22 +0000252 if (major == root_major && minor == root_minor)
Rob Landleyef10d522006-06-26 14:11:33 +0000253 symlink(device_name, "root");
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000254
Mike Frysingerf0044c42008-02-01 06:53:50 +0000255 if (ENABLE_FEATURE_MDEV_CONF) {
Mike Frysingerc881c732007-11-19 09:04:22 +0000256 chown(device_name, uid, gid);
Mike Frysingerf0044c42008-02-01 06:53:50 +0000257
258 if (ENABLE_FEATURE_MDEV_RENAME && alias) {
259 char *dest;
260
Denis Vlasenkocae11b52008-03-29 15:11:07 +0000261 /* ">bar/": rename to bar/device_name */
262 /* ">bar[/]baz": rename to bar[/]baz */
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000263 dest = strrchr(alias, '/');
Denis Vlasenkocae11b52008-03-29 15:11:07 +0000264 if (dest) { /* ">bar/[baz]" ? */
265 *dest = '\0'; /* mkdir bar */
Mike Frysingerf0044c42008-02-01 06:53:50 +0000266 bb_make_directory(alias, 0755, FILEUTILS_RECUR);
Denis Vlasenkocae11b52008-03-29 15:11:07 +0000267 *dest = '/';
268 if (dest[1] == '\0') { /* ">bar/" => ">bar/device_name" */
269 dest = alias;
270 alias = concat_path_file(alias, device_name);
271 free(dest);
272 }
273 }
Mike Frysingerf0044c42008-02-01 06:53:50 +0000274
Denis Vlasenkoa959a2a2008-05-22 21:35:16 +0000275 /* move the device, and optionally
276 * make a symlink to moved device node */
Denis Vlasenkoff923492008-05-23 20:36:33 +0000277 if (rename(device_name, alias) == 0 && aliaslink == '>')
Denis Vlasenkocae11b52008-03-29 15:11:07 +0000278 symlink(alias, device_name);
Mike Frysingerf0044c42008-02-01 06:53:50 +0000279
Denis Vlasenkocae11b52008-03-29 15:11:07 +0000280 free(alias);
Mike Frysingerf0044c42008-02-01 06:53:50 +0000281 }
282 }
Rob Landleyef10d522006-06-26 14:11:33 +0000283 }
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000284
Mike Frysingerf0044c42008-02-01 06:53:50 +0000285 if (ENABLE_FEATURE_MDEV_EXEC && command) {
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000286 /* setenv will leak memory, use putenv/unsetenv/free */
Denis Vlasenkod6766c72007-06-08 16:18:15 +0000287 char *s = xasprintf("MDEV=%s", device_name);
Rob Landleyef10d522006-06-26 14:11:33 +0000288 putenv(s);
Denis Vlasenkod6766c72007-06-08 16:18:15 +0000289 if (system(command) == -1)
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000290 bb_perror_msg_and_die("can't run '%s'", command);
Denis Vlasenkod6766c72007-06-08 16:18:15 +0000291 s[4] = '\0';
292 unsetenv(s);
Rob Landleyef10d522006-06-26 14:11:33 +0000293 free(s);
294 free(command);
Rob Landleyef10d522006-06-26 14:11:33 +0000295 }
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000296
Mike Frysingerc881c732007-11-19 09:04:22 +0000297 if (delete)
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000298 unlink(device_name);
Rob Landley70f7ef72005-12-13 08:21:33 +0000299}
300
Mike Frysingerb51fd352007-06-13 09:24:50 +0000301/* File callback for /sys/ traversal */
Denis Vlasenko68404f12008-03-17 09:00:54 +0000302static int fileAction(const char *fileName,
303 struct stat *statbuf ATTRIBUTE_UNUSED,
304 void *userData,
305 int depth ATTRIBUTE_UNUSED)
Rob Landley70f7ef72005-12-13 08:21:33 +0000306{
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000307 size_t len = strlen(fileName) - 4; /* can't underflow */
Mike Frysingerb51fd352007-06-13 09:24:50 +0000308 char *scratch = userData;
Rob Landley70f7ef72005-12-13 08:21:33 +0000309
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000310 /* len check is for paranoid reasons */
311 if (strcmp(fileName + len, "/dev") || len >= PATH_MAX)
Mike Frysingerb51fd352007-06-13 09:24:50 +0000312 return FALSE;
Rob Landley70f7ef72005-12-13 08:21:33 +0000313
Mike Frysingerb51fd352007-06-13 09:24:50 +0000314 strcpy(scratch, fileName);
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000315 scratch[len] = '\0';
Mike Frysingerb51fd352007-06-13 09:24:50 +0000316 make_device(scratch, 0);
Rob Landley70f7ef72005-12-13 08:21:33 +0000317
Mike Frysingerb51fd352007-06-13 09:24:50 +0000318 return TRUE;
319}
Rob Landley70f7ef72005-12-13 08:21:33 +0000320
Mike Frysingerb51fd352007-06-13 09:24:50 +0000321/* Directory callback for /sys/ traversal */
Denis Vlasenko68404f12008-03-17 09:00:54 +0000322static int dirAction(const char *fileName ATTRIBUTE_UNUSED,
323 struct stat *statbuf ATTRIBUTE_UNUSED,
324 void *userData ATTRIBUTE_UNUSED,
325 int depth)
Mike Frysingerb51fd352007-06-13 09:24:50 +0000326{
327 return (depth >= MAX_SYSFS_DEPTH ? SKIP : TRUE);
Rob Landley70f7ef72005-12-13 08:21:33 +0000328}
329
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000330/* For the full gory details, see linux/Documentation/firmware_class/README
331 *
332 * Firmware loading works like this:
333 * - kernel sets FIRMWARE env var
334 * - userspace checks /lib/firmware/$FIRMWARE
335 * - userspace waits for /sys/$DEVPATH/loading to appear
336 * - userspace writes "1" to /sys/$DEVPATH/loading
337 * - userspace copies /lib/firmware/$FIRMWARE into /sys/$DEVPATH/data
338 * - userspace writes "0" (worked) or "-1" (failed) to /sys/$DEVPATH/loading
339 * - kernel loads firmware into device
340 */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000341static void load_firmware(const char *const firmware, const char *const sysfs_path)
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000342{
343 int cnt;
344 int firmware_fd, loading_fd, data_fd;
345
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000346 /* check for /lib/firmware/$FIRMWARE */
347 xchdir("/lib/firmware");
Mike Frysinger0e0639b2007-06-14 09:29:48 +0000348 firmware_fd = xopen(firmware, O_RDONLY);
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000349
350 /* in case we goto out ... */
351 data_fd = -1;
352
353 /* check for /sys/$DEVPATH/loading ... give 30 seconds to appear */
354 xchdir(sysfs_path);
355 for (cnt = 0; cnt < 30; ++cnt) {
356 loading_fd = open("loading", O_WRONLY);
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000357 if (loading_fd != -1)
358 goto loading;
359 sleep(1);
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000360 }
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000361 goto out;
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000362
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000363 loading:
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000364 /* tell kernel we're loading by `echo 1 > /sys/$DEVPATH/loading` */
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000365 if (full_write(loading_fd, "1", 1) != 1)
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000366 goto out;
367
368 /* load firmware by `cat /lib/firmware/$FIRMWARE > /sys/$DEVPATH/data */
369 data_fd = open("data", O_WRONLY);
370 if (data_fd == -1)
371 goto out;
372 cnt = bb_copyfd_eof(firmware_fd, data_fd);
373
374 /* tell kernel result by `echo [0|-1] > /sys/$DEVPATH/loading` */
375 if (cnt > 0)
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000376 full_write(loading_fd, "0", 1);
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000377 else
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000378 full_write(loading_fd, "-1", 2);
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000379
380 out:
381 if (ENABLE_FEATURE_CLEAN_UP) {
382 close(firmware_fd);
383 close(loading_fd);
384 close(data_fd);
385 }
386}
387
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000388int mdev_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +0000389int mdev_main(int argc, char **argv)
Rob Landley70f7ef72005-12-13 08:21:33 +0000390{
Rob Landley29e08ff2006-01-12 06:13:50 +0000391 char *action;
392 char *env_path;
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000393 RESERVE_CONFIG_BUFFER(temp, PATH_MAX + SCRATCH_SIZE);
Rob Landley29e08ff2006-01-12 06:13:50 +0000394
Denis Vlasenkof4e6bd02008-05-31 18:27:58 +0000395#ifdef YOU_WANT_TO_DEBUG_HOTPLUG_EVENTS
396 /* Kernel cannot provide suitable stdio fds for us, do it ourself */
397 /* Replace LOGFILE by other file or device name if you need */
398#define LOGFILE "/dev/console"
399 xmove_fd(xopen("/dev/null", O_RDONLY), STDIN_FILENO);
400 xmove_fd(xopen(LOGFILE, O_WRONLY|O_APPEND), STDOUT_FILENO);
401 xmove_fd(xopen(LOGFILE, O_WRONLY|O_APPEND), STDERR_FILENO);
402#endif
403
Denis Vlasenko4e5f82c2007-06-03 22:30:22 +0000404 xchdir("/dev");
Rob Landley15fe2e12006-05-08 02:53:23 +0000405
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000406 if (argc == 2 && !strcmp(argv[1], "-s")) {
Mike Frysingerc881c732007-11-19 09:04:22 +0000407 /* Scan:
408 * mdev -s
409 */
Rob Landleya7e3d052006-02-21 06:11:13 +0000410 struct stat st;
411
Denis Vlasenkof46be092006-10-16 19:39:37 +0000412 xstat("/", &st);
Denis Vlasenko4e5f82c2007-06-03 22:30:22 +0000413 root_major = major(st.st_dev);
414 root_minor = minor(st.st_dev);
Mike Frysingerb51fd352007-06-13 09:24:50 +0000415
416 recursive_action("/sys/block",
417 ACTION_RECURSE | ACTION_FOLLOWLINKS,
418 fileAction, dirAction, temp, 0);
419
420 recursive_action("/sys/class",
421 ACTION_RECURSE | ACTION_FOLLOWLINKS,
422 fileAction, dirAction, temp, 0);
Rob Landley29e08ff2006-01-12 06:13:50 +0000423
Rob Landley29e08ff2006-01-12 06:13:50 +0000424 } else {
Mike Frysingerc881c732007-11-19 09:04:22 +0000425 /* Hotplug:
426 * env ACTION=... DEVPATH=... mdev
427 * ACTION can be "add" or "remove"
428 * DEVPATH is like "/block/sda" or "/class/input/mice"
429 */
Rob Landley29e08ff2006-01-12 06:13:50 +0000430 action = getenv("ACTION");
431 env_path = getenv("DEVPATH");
Denis Vlasenko92758142006-10-03 19:56:34 +0000432 if (!action || !env_path)
Mike Frysingera421ba82006-02-03 00:25:37 +0000433 bb_show_usage();
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000434
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000435 snprintf(temp, PATH_MAX, "/sys%s", env_path);
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000436 if (!strcmp(action, "remove"))
437 make_device(temp, 1);
438 else if (!strcmp(action, "add")) {
439 make_device(temp, 0);
440
Denis Vlasenkocf26ab72008-03-27 22:45:44 +0000441 if (ENABLE_FEATURE_MDEV_LOAD_FIRMWARE) {
442 char *fw = getenv("FIRMWARE");
443 if (fw)
444 load_firmware(fw, temp);
445 }
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000446 }
Rob Landley29e08ff2006-01-12 06:13:50 +0000447 }
448
Mike Frysingerc881c732007-11-19 09:04:22 +0000449 if (ENABLE_FEATURE_CLEAN_UP)
450 RELEASE_CONFIG_BUFFER(temp);
451
Rob Landley70f7ef72005-12-13 08:21:33 +0000452 return 0;
453}