blob: 33dc5d38f627b4da4c87952f404cc99e3fdc7656 [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
Rob Landley70f7ef72005-12-13 08:21:33 +000024/* mknod in /dev based on a path like "/sys/block/hda/hda1" */
Rob Landleyef10d522006-06-26 14:11:33 +000025static void make_device(char *path, int delete)
Rob Landley70f7ef72005-12-13 08:21:33 +000026{
Denis Vlasenkodc757aa2007-06-30 08:04:05 +000027 const char *device_name;
Denis Vlasenkof46be092006-10-16 19:39:37 +000028 int major, minor, type, len;
Mike Frysingera421ba82006-02-03 00:25:37 +000029 int mode = 0660;
30 uid_t uid = 0;
31 gid_t gid = 0;
Rob Landley15fe2e12006-05-08 02:53:23 +000032 char *temp = path + strlen(path);
Rob Landleyef10d522006-06-26 14:11:33 +000033 char *command = NULL;
Rob Landley70f7ef72005-12-13 08:21:33 +000034
Rob Landley15fe2e12006-05-08 02:53:23 +000035 /* Try to read major/minor string. Note that the kernel puts \n after
36 * the data, so we don't need to worry about null terminating the string
37 * because sscanf() will stop at the first nondigit, which \n is. We
38 * also depend on path having writeable space after it. */
Rob Landley70f7ef72005-12-13 08:21:33 +000039
Rob Landley10b36f92006-08-10 01:09:37 +000040 if (!delete) {
41 strcat(path, "/dev");
Denis Vlasenkoea620772006-10-14 02:23:43 +000042 len = open_read_close(path, temp + 1, 64);
Rob Landley10b36f92006-08-10 01:09:37 +000043 *temp++ = 0;
Rob Landley10b36f92006-08-10 01:09:37 +000044 if (len < 1) return;
45 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000046
Rob Landley70f7ef72005-12-13 08:21:33 +000047 /* Determine device name, type, major and minor */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000048
Denis Vlasenkodc757aa2007-06-30 08:04:05 +000049 device_name = bb_basename(path);
Rob Landley15fe2e12006-05-08 02:53:23 +000050 type = path[5]=='c' ? S_IFCHR : S_IFBLK;
Rob Landley70f7ef72005-12-13 08:21:33 +000051
Rob Landleyb56c2852005-12-17 10:52:30 +000052 /* If we have a config file, look up permissions for this device */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000053
Rob Landleyb56c2852005-12-17 10:52:30 +000054 if (ENABLE_FEATURE_MDEV_CONF) {
Mike Frysingera421ba82006-02-03 00:25:37 +000055 char *conf, *pos, *end;
Denis Vlasenkof46be092006-10-16 19:39:37 +000056 int line, fd;
Rob Landleyb56c2852005-12-17 10:52:30 +000057
58 /* mmap the config file */
Denis Vlasenkof46be092006-10-16 19:39:37 +000059 fd = open("/etc/mdev.conf", O_RDONLY);
60 if (fd < 0)
61 goto end_parse;
62 len = xlseek(fd, 0, SEEK_END);
63 conf = mmap(NULL, len, PROT_READ, MAP_PRIVATE, fd, 0);
64 close(fd);
65 if (!conf)
66 goto end_parse;
Rob Landleyb56c2852005-12-17 10:52:30 +000067
Denis Vlasenkof46be092006-10-16 19:39:37 +000068 line = 0;
69 /* Loop through lines in mmaped file*/
70 for (pos=conf; pos-conf<len;) {
71 int field;
72 char *end2;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000073
Denis Vlasenkof46be092006-10-16 19:39:37 +000074 line++;
75 /* find end of this line */
Denis Vlasenkocf749bc2006-11-26 15:45:17 +000076 for (end=pos; end-conf<len && *end!='\n'; end++)
Denis Vlasenkof46be092006-10-16 19:39:37 +000077 ;
Rob Landleyb56c2852005-12-17 10:52:30 +000078
Denis Vlasenkof46be092006-10-16 19:39:37 +000079 /* Three fields: regex, uid:gid, mode */
80 for (field=0; field < (3 + ENABLE_FEATURE_MDEV_EXEC);
81 field++)
82 {
83 /* Skip whitespace */
84 while (pos<end && isspace(*pos)) pos++;
85 if (pos==end || *pos=='#') break;
86 for (end2=pos;
87 end2<end && !isspace(*end2) && *end2!='#'; end2++)
88 ;
Mike Frysingera421ba82006-02-03 00:25:37 +000089
Denis Vlasenkof46be092006-10-16 19:39:37 +000090 if (field == 0) {
91 /* Regex to match this device */
Rob Landleyb56c2852005-12-17 10:52:30 +000092
Bernhard Reutner-Fischerbb0baed2007-06-20 09:56:47 +000093 char *regex = xstrndup(pos, end2-pos);
Denis Vlasenkof46be092006-10-16 19:39:37 +000094 regex_t match;
95 regmatch_t off;
96 int result;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000097
Denis Vlasenkof46be092006-10-16 19:39:37 +000098 /* Is this it? */
99 xregcomp(&match,regex, REG_EXTENDED);
100 result = regexec(&match, device_name, 1, &off, 0);
101 regfree(&match);
Bernhard Reutner-Fischerbb0baed2007-06-20 09:56:47 +0000102 free(regex);
Rob Landleyb56c2852005-12-17 10:52:30 +0000103
Denis Vlasenkof46be092006-10-16 19:39:37 +0000104 /* If not this device, skip rest of line */
105 if (result || off.rm_so
106 || off.rm_eo != strlen(device_name))
107 break;
Rob Landleyb56c2852005-12-17 10:52:30 +0000108 }
Denis Vlasenkof46be092006-10-16 19:39:37 +0000109 if (field == 1) {
110 /* uid:gid */
111
112 char *s, *s2;
113
114 /* Find : */
Denis Vlasenkocf749bc2006-11-26 15:45:17 +0000115 for (s=pos; s<end2 && *s!=':'; s++)
Denis Vlasenkof46be092006-10-16 19:39:37 +0000116 ;
117 if (s == end2) break;
118
119 /* Parse UID */
120 uid = strtoul(pos, &s2, 10);
121 if (s != s2) {
122 struct passwd *pass;
Bernhard Reutner-Fischerbb0baed2007-06-20 09:56:47 +0000123 char *_unam = xstrndup(pos, s-pos);
124 pass = getpwnam(_unam);
125 free(_unam);
Denis Vlasenkof46be092006-10-16 19:39:37 +0000126 if (!pass) break;
127 uid = pass->pw_uid;
128 }
129 s++;
130 /* parse GID */
131 gid = strtoul(s, &s2, 10);
132 if (end2 != s2) {
133 struct group *grp;
Bernhard Reutner-Fischerbb0baed2007-06-20 09:56:47 +0000134 char *_grnam = xstrndup(s, end2-s);
135 grp = getgrnam(_grnam);
136 free(_grnam);
Denis Vlasenkof46be092006-10-16 19:39:37 +0000137 if (!grp) break;
138 gid = grp->gr_gid;
139 }
140 }
141 if (field == 2) {
142 /* mode */
143
144 mode = strtoul(pos, &pos, 8);
145 if (pos != end2) break;
146 }
147 if (ENABLE_FEATURE_MDEV_EXEC && field == 3) {
148 // Command to run
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000149 const char *s = "@$*";
150 const char *s2;
Denis Vlasenkof46be092006-10-16 19:39:37 +0000151 s2 = strchr(s, *pos++);
152 if (!s2) {
153 // Force error
154 field = 1;
155 break;
156 }
157 if ((s2-s+1) & (1<<delete))
158 command = xstrndup(pos, end-pos);
159 }
160
161 pos = end2;
Rob Landleyb56c2852005-12-17 10:52:30 +0000162 }
Denis Vlasenkof46be092006-10-16 19:39:37 +0000163
164 /* Did everything parse happily? */
165
166 if (field > 2) break;
167 if (field) bb_error_msg_and_die("bad line %d",line);
168
169 /* Next line */
170 pos = ++end;
Rob Landleyb56c2852005-12-17 10:52:30 +0000171 }
Denis Vlasenkof46be092006-10-16 19:39:37 +0000172 munmap(conf, len);
173 end_parse: /* nothing */ ;
Rob Landleyb56c2852005-12-17 10:52:30 +0000174 }
Rob Landley70f7ef72005-12-13 08:21:33 +0000175
Rob Landleyb56c2852005-12-17 10:52:30 +0000176 umask(0);
Rob Landleyef10d522006-06-26 14:11:33 +0000177 if (!delete) {
Rob Landley10b36f92006-08-10 01:09:37 +0000178 if (sscanf(temp, "%d:%d", &major, &minor) != 2) return;
Rob Landleyef10d522006-06-26 14:11:33 +0000179 if (mknod(device_name, mode | type, makedev(major, minor)) && errno != EEXIST)
Denis Vlasenkof46be092006-10-16 19:39:37 +0000180 bb_perror_msg_and_die("mknod %s", device_name);
Rob Landley70f7ef72005-12-13 08:21:33 +0000181
Denis Vlasenko4e5f82c2007-06-03 22:30:22 +0000182 if (major == root_major && minor == root_minor)
Rob Landleyef10d522006-06-26 14:11:33 +0000183 symlink(device_name, "root");
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000184
Rob Landleyef10d522006-06-26 14:11:33 +0000185 if (ENABLE_FEATURE_MDEV_CONF) chown(device_name, uid, gid);
186 }
187 if (command) {
Denis Vlasenkod6766c72007-06-08 16:18:15 +0000188 /* setenv will leak memory, so use putenv */
189 char *s = xasprintf("MDEV=%s", device_name);
Rob Landleyef10d522006-06-26 14:11:33 +0000190 putenv(s);
Denis Vlasenkod6766c72007-06-08 16:18:15 +0000191 if (system(command) == -1)
192 bb_perror_msg_and_die("cannot run %s", command);
193 s[4] = '\0';
194 unsetenv(s);
Rob Landleyef10d522006-06-26 14:11:33 +0000195 free(s);
196 free(command);
Rob Landleyef10d522006-06-26 14:11:33 +0000197 }
198 if (delete) unlink(device_name);
Rob Landley70f7ef72005-12-13 08:21:33 +0000199}
200
Mike Frysingerb51fd352007-06-13 09:24:50 +0000201/* File callback for /sys/ traversal */
202static int fileAction(const char *fileName, struct stat *statbuf,
203 void *userData, int depth)
Rob Landley70f7ef72005-12-13 08:21:33 +0000204{
Mike Frysingerb51fd352007-06-13 09:24:50 +0000205 size_t len = strlen(fileName) - 4;
206 char *scratch = userData;
Rob Landley70f7ef72005-12-13 08:21:33 +0000207
Mike Frysingerb51fd352007-06-13 09:24:50 +0000208 if (strcmp(fileName + len, "/dev"))
209 return FALSE;
Rob Landley70f7ef72005-12-13 08:21:33 +0000210
Mike Frysingerb51fd352007-06-13 09:24:50 +0000211 strcpy(scratch, fileName);
212 scratch[len] = 0;
213 make_device(scratch, 0);
Rob Landley70f7ef72005-12-13 08:21:33 +0000214
Mike Frysingerb51fd352007-06-13 09:24:50 +0000215 return TRUE;
216}
Rob Landley70f7ef72005-12-13 08:21:33 +0000217
Mike Frysingerb51fd352007-06-13 09:24:50 +0000218/* Directory callback for /sys/ traversal */
219static int dirAction(const char *fileName, struct stat *statbuf,
220 void *userData, int depth)
221{
222 return (depth >= MAX_SYSFS_DEPTH ? SKIP : TRUE);
Rob Landley70f7ef72005-12-13 08:21:33 +0000223}
224
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000225/* For the full gory details, see linux/Documentation/firmware_class/README
226 *
227 * Firmware loading works like this:
228 * - kernel sets FIRMWARE env var
229 * - userspace checks /lib/firmware/$FIRMWARE
230 * - userspace waits for /sys/$DEVPATH/loading to appear
231 * - userspace writes "1" to /sys/$DEVPATH/loading
232 * - userspace copies /lib/firmware/$FIRMWARE into /sys/$DEVPATH/data
233 * - userspace writes "0" (worked) or "-1" (failed) to /sys/$DEVPATH/loading
234 * - kernel loads firmware into device
235 */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000236static void load_firmware(const char *const firmware, const char *const sysfs_path)
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000237{
238 int cnt;
239 int firmware_fd, loading_fd, data_fd;
240
241 /* check for $FIRMWARE from kernel */
242 /* XXX: dont bother: open(NULL) works same as open("no-such-file")
243 * if (!firmware)
244 * return;
245 */
246
247 /* check for /lib/firmware/$FIRMWARE */
248 xchdir("/lib/firmware");
Mike Frysinger0e0639b2007-06-14 09:29:48 +0000249 firmware_fd = xopen(firmware, O_RDONLY);
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000250
251 /* in case we goto out ... */
252 data_fd = -1;
253
254 /* check for /sys/$DEVPATH/loading ... give 30 seconds to appear */
255 xchdir(sysfs_path);
256 for (cnt = 0; cnt < 30; ++cnt) {
257 loading_fd = open("loading", O_WRONLY);
258 if (loading_fd == -1)
259 sleep(1);
260 else
261 break;
262 }
263 if (loading_fd == -1)
264 goto out;
265
266 /* tell kernel we're loading by `echo 1 > /sys/$DEVPATH/loading` */
267 if (write(loading_fd, "1", 1) != 1)
268 goto out;
269
270 /* load firmware by `cat /lib/firmware/$FIRMWARE > /sys/$DEVPATH/data */
271 data_fd = open("data", O_WRONLY);
272 if (data_fd == -1)
273 goto out;
274 cnt = bb_copyfd_eof(firmware_fd, data_fd);
275
276 /* tell kernel result by `echo [0|-1] > /sys/$DEVPATH/loading` */
277 if (cnt > 0)
278 write(loading_fd, "0", 1);
279 else
280 write(loading_fd, "-1", 2);
281
282 out:
283 if (ENABLE_FEATURE_CLEAN_UP) {
284 close(firmware_fd);
285 close(loading_fd);
286 close(data_fd);
287 }
288}
289
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +0000290int mdev_main(int argc, char **argv);
291int mdev_main(int argc, char **argv)
Rob Landley70f7ef72005-12-13 08:21:33 +0000292{
Rob Landley29e08ff2006-01-12 06:13:50 +0000293 char *action;
294 char *env_path;
295 RESERVE_CONFIG_BUFFER(temp,PATH_MAX);
296
Denis Vlasenko4e5f82c2007-06-03 22:30:22 +0000297 xchdir("/dev");
Rob Landley15fe2e12006-05-08 02:53:23 +0000298
Rob Landley29e08ff2006-01-12 06:13:50 +0000299 /* Scan */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000300
Rob Landley29e08ff2006-01-12 06:13:50 +0000301 if (argc == 2 && !strcmp(argv[1],"-s")) {
Rob Landleya7e3d052006-02-21 06:11:13 +0000302 struct stat st;
303
Denis Vlasenkof46be092006-10-16 19:39:37 +0000304 xstat("/", &st);
Denis Vlasenko4e5f82c2007-06-03 22:30:22 +0000305 root_major = major(st.st_dev);
306 root_minor = minor(st.st_dev);
Mike Frysingerb51fd352007-06-13 09:24:50 +0000307
308 recursive_action("/sys/block",
309 ACTION_RECURSE | ACTION_FOLLOWLINKS,
310 fileAction, dirAction, temp, 0);
311
312 recursive_action("/sys/class",
313 ACTION_RECURSE | ACTION_FOLLOWLINKS,
314 fileAction, dirAction, temp, 0);
Rob Landley29e08ff2006-01-12 06:13:50 +0000315
316 /* Hotplug */
317
318 } else {
319 action = getenv("ACTION");
320 env_path = getenv("DEVPATH");
Denis Vlasenko92758142006-10-03 19:56:34 +0000321 if (!action || !env_path)
Mike Frysingera421ba82006-02-03 00:25:37 +0000322 bb_show_usage();
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000323
Rob Landleyef10d522006-06-26 14:11:33 +0000324 sprintf(temp, "/sys%s", env_path);
Mike Frysingera78ef2c2007-06-13 07:34:15 +0000325 if (!strcmp(action, "remove"))
326 make_device(temp, 1);
327 else if (!strcmp(action, "add")) {
328 make_device(temp, 0);
329
330 if (ENABLE_FEATURE_MDEV_LOAD_FIRMWARE)
331 load_firmware(getenv("FIRMWARE"), temp);
332 }
Rob Landley29e08ff2006-01-12 06:13:50 +0000333 }
334
Mike Frysingera421ba82006-02-03 00:25:37 +0000335 if (ENABLE_FEATURE_CLEAN_UP) RELEASE_CONFIG_BUFFER(temp);
Rob Landley70f7ef72005-12-13 08:21:33 +0000336 return 0;
337}