lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 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.\n" |
| 96 | //usage: "\n" |
| 97 | //usage: "If /dev/mdev.log file exists, debug log will be appended to it." |
| 98 | |
| 99 | #include "libbb.h" |
| 100 | #include "xregex.h" |
| 101 | |
| 102 | /* "mdev -s" scans /sys/class/xxx, looking for directories which have dev |
| 103 | * file (it is of the form "M:m\n"). Example: /sys/class/tty/tty0/dev |
| 104 | * contains "4:0\n". Directory name is taken as device name, path component |
| 105 | * directly after /sys/class/ as subsystem. In this example, "tty0" and "tty". |
| 106 | * Then mdev creates the /dev/device_name node. |
| 107 | * If /sys/class/.../dev file does not exist, mdev still may act |
| 108 | * on this device: see "@|$|*command args..." parameter in config file. |
| 109 | * |
| 110 | * mdev w/o parameters is called as hotplug helper. It takes device |
| 111 | * and subsystem names from $DEVPATH and $SUBSYSTEM, extracts |
| 112 | * maj,min from "/sys/$DEVPATH/dev" and also examines |
| 113 | * $ACTION ("add"/"delete") and $FIRMWARE. |
| 114 | * |
| 115 | * If action is "add", mdev creates /dev/device_name similarly to mdev -s. |
| 116 | * (todo: explain "delete" and $FIRMWARE) |
| 117 | * |
| 118 | * If /etc/mdev.conf exists, it may modify /dev/device_name's properties. |
| 119 | * |
| 120 | * Leading minus in 1st field means "don't stop on this line", otherwise |
| 121 | * search is stopped after the matching line is encountered. |
| 122 | * |
| 123 | * $envvar=regex format is useful for loading modules for hot-plugged devices |
| 124 | * which do not have driver loaded yet. In this case /sys/class/.../dev |
| 125 | * does not exist, but $MODALIAS is set to needed module's name |
| 126 | * (actually, an alias to it) by kernel. This rule instructs mdev |
| 127 | * to load the module and exit: |
| 128 | * $MODALIAS=.* 0:0 660 @modprobe "$MODALIAS" |
| 129 | * The kernel will generate another hotplug event when /sys/class/.../dev |
| 130 | * file appears. |
| 131 | * |
| 132 | * When line matches, the device node is created, chmod'ed and chown'ed, |
| 133 | * moved to path, and if >path, a symlink to moved node is created, |
| 134 | * all this if /sys/class/.../dev exists. |
| 135 | * Examples: |
| 136 | * =loop/ - moves to /dev/loop |
| 137 | * >disk/sda%1 - moves to /dev/disk/sdaN, makes /dev/sdaN a symlink |
| 138 | * |
| 139 | * Then "command args..." is executed (via sh -c 'command args...'). |
| 140 | * @:execute on creation, $:on deletion, *:on both. |
| 141 | * This happens regardless of /sys/class/.../dev existence. |
| 142 | */ |
| 143 | |
| 144 | /* Kernel's hotplug environment constantly changes. |
| 145 | * Here are new cases I observed on 3.1.0: |
| 146 | * |
| 147 | * Case with $DEVNAME and $DEVICE, not just $DEVPATH: |
| 148 | * ACTION=add |
| 149 | * BUSNUM=001 |
| 150 | * DEVICE=/proc/bus/usb/001/003 |
| 151 | * DEVNAME=bus/usb/001/003 |
| 152 | * DEVNUM=003 |
| 153 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5 |
| 154 | * DEVTYPE=usb_device |
| 155 | * MAJOR=189 |
| 156 | * MINOR=2 |
| 157 | * PRODUCT=18d1/4e12/227 |
| 158 | * SUBSYSTEM=usb |
| 159 | * TYPE=0/0/0 |
| 160 | * |
| 161 | * Case with $DEVICE, but no $DEVNAME - apparenty, usb iface notification? |
| 162 | * "Please load me a module" thing? |
| 163 | * ACTION=add |
| 164 | * DEVICE=/proc/bus/usb/001/003 |
| 165 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5/1-5:1.0 |
| 166 | * DEVTYPE=usb_interface |
| 167 | * INTERFACE=8/6/80 |
| 168 | * MODALIAS=usb:v18D1p4E12d0227dc00dsc00dp00ic08isc06ip50 |
| 169 | * PRODUCT=18d1/4e12/227 |
| 170 | * SUBSYSTEM=usb |
| 171 | * TYPE=0/0/0 |
| 172 | * |
| 173 | * ACTION=add |
| 174 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5/1-5:1.0/host5 |
| 175 | * DEVTYPE=scsi_host |
| 176 | * SUBSYSTEM=scsi |
| 177 | * |
| 178 | * ACTION=add |
| 179 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5/1-5:1.0/host5/scsi_host/host5 |
| 180 | * SUBSYSTEM=scsi_host |
| 181 | * |
| 182 | * ACTION=add |
| 183 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5/1-5:1.0/host5/target5:0:0 |
| 184 | * DEVTYPE=scsi_target |
| 185 | * SUBSYSTEM=scsi |
| 186 | * |
| 187 | * Case with strange $MODALIAS: |
| 188 | * ACTION=add |
| 189 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5/1-5:1.0/host5/target5:0:0/5:0:0:0 |
| 190 | * DEVTYPE=scsi_device |
| 191 | * MODALIAS=scsi:t-0x00 |
| 192 | * SUBSYSTEM=scsi |
| 193 | * |
| 194 | * ACTION=add |
| 195 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5/1-5:1.0/host5/target5:0:0/5:0:0:0/scsi_disk/5:0:0:0 |
| 196 | * SUBSYSTEM=scsi_disk |
| 197 | * |
| 198 | * ACTION=add |
| 199 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5/1-5:1.0/host5/target5:0:0/5:0:0:0/scsi_device/5:0:0:0 |
| 200 | * SUBSYSTEM=scsi_device |
| 201 | * |
| 202 | * Case with explicit $MAJOR/$MINOR (no need to read /sys/$DEVPATH/dev?): |
| 203 | * ACTION=add |
| 204 | * DEVNAME=bsg/5:0:0:0 |
| 205 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5/1-5:1.0/host5/target5:0:0/5:0:0:0/bsg/5:0:0:0 |
| 206 | * MAJOR=253 |
| 207 | * MINOR=1 |
| 208 | * SUBSYSTEM=bsg |
| 209 | * |
| 210 | * ACTION=add |
| 211 | * DEVPATH=/devices/virtual/bdi/8:16 |
| 212 | * SUBSYSTEM=bdi |
| 213 | * |
| 214 | * ACTION=add |
| 215 | * DEVNAME=sdb |
| 216 | * DEVPATH=/block/sdb |
| 217 | * DEVTYPE=disk |
| 218 | * MAJOR=8 |
| 219 | * MINOR=16 |
| 220 | * SUBSYSTEM=block |
| 221 | * |
| 222 | * Case with ACTION=change: |
| 223 | * ACTION=change |
| 224 | * DEVNAME=sdb |
| 225 | * DEVPATH=/block/sdb |
| 226 | * DEVTYPE=disk |
| 227 | * DISK_MEDIA_CHANGE=1 |
| 228 | * MAJOR=8 |
| 229 | * MINOR=16 |
| 230 | * SUBSYSTEM=block |
| 231 | */ |
| 232 | |
| 233 | static const char keywords[] ALIGN1 = "add\0remove\0change\0"; |
| 234 | enum { OP_add, OP_remove }; |
| 235 | |
| 236 | struct rule { |
| 237 | bool keep_matching; |
| 238 | bool regex_compiled; |
| 239 | mode_t mode; |
| 240 | int maj, min0, min1; |
| 241 | struct bb_uidgid_t ugid; |
| 242 | char *envvar; |
| 243 | char *ren_mov; |
| 244 | IF_FEATURE_MDEV_EXEC(char *r_cmd;) |
| 245 | regex_t match; |
| 246 | }; |
| 247 | |
| 248 | struct globals { |
| 249 | int root_major, root_minor; |
| 250 | smallint verbose; |
| 251 | char *subsystem; |
| 252 | #if ENABLE_FEATURE_MDEV_CONF |
| 253 | const char *filename; |
| 254 | parser_t *parser; |
| 255 | struct rule **rule_vec; |
| 256 | unsigned rule_idx; |
| 257 | #endif |
| 258 | struct rule cur_rule; |
| 259 | } FIX_ALIASING; |
| 260 | #define G (*(struct globals*)&bb_common_bufsiz1) |
| 261 | #define INIT_G() do { \ |
| 262 | IF_NOT_FEATURE_MDEV_CONF(G.cur_rule.maj = -1;) \ |
| 263 | IF_NOT_FEATURE_MDEV_CONF(G.cur_rule.mode = 0660;) \ |
| 264 | } while (0) |
| 265 | |
| 266 | |
| 267 | /* Prevent infinite loops in /sys symlinks */ |
| 268 | #define MAX_SYSFS_DEPTH 3 |
| 269 | |
| 270 | /* We use additional 64+ bytes in make_device() */ |
| 271 | #define SCRATCH_SIZE 80 |
| 272 | |
| 273 | #if 0 |
| 274 | # define dbg(...) bb_error_msg(__VA_ARGS__) |
| 275 | #else |
| 276 | # define dbg(...) ((void)0) |
| 277 | #endif |
| 278 | |
| 279 | |
| 280 | #if ENABLE_FEATURE_MDEV_CONF |
| 281 | |
| 282 | static void make_default_cur_rule(void) |
| 283 | { |
| 284 | memset(&G.cur_rule, 0, sizeof(G.cur_rule)); |
| 285 | G.cur_rule.maj = -1; /* "not a @major,minor rule" */ |
| 286 | G.cur_rule.mode = 0660; |
| 287 | } |
| 288 | |
| 289 | static void clean_up_cur_rule(void) |
| 290 | { |
| 291 | free(G.cur_rule.envvar); |
| 292 | if (G.cur_rule.regex_compiled) |
| 293 | regfree(&G.cur_rule.match); |
| 294 | free(G.cur_rule.ren_mov); |
| 295 | IF_FEATURE_MDEV_EXEC(free(G.cur_rule.r_cmd);) |
| 296 | make_default_cur_rule(); |
| 297 | } |
| 298 | |
| 299 | static void parse_next_rule(void) |
| 300 | { |
| 301 | /* Note: on entry, G.cur_rule is set to default */ |
| 302 | while (1) { |
| 303 | char *tokens[4]; |
| 304 | char *val; |
| 305 | |
| 306 | /* No PARSE_EOL_COMMENTS, because command may contain '#' chars */ |
| 307 | if (!config_read(G.parser, tokens, 4, 3, "# \t", PARSE_NORMAL & ~PARSE_EOL_COMMENTS)) |
| 308 | break; |
| 309 | |
| 310 | /* Fields: [-]regex uid:gid mode [alias] [cmd] */ |
| 311 | dbg("token1:'%s'", tokens[1]); |
| 312 | |
| 313 | /* 1st field */ |
| 314 | val = tokens[0]; |
| 315 | G.cur_rule.keep_matching = ('-' == val[0]); |
| 316 | val += G.cur_rule.keep_matching; /* swallow leading dash */ |
| 317 | if (val[0] == '@') { |
| 318 | /* @major,minor[-minor2] */ |
| 319 | /* (useful when name is ambiguous: |
| 320 | * "/sys/class/usb/lp0" and |
| 321 | * "/sys/class/printer/lp0") |
| 322 | */ |
| 323 | int sc = sscanf(val, "@%u,%u-%u", &G.cur_rule.maj, &G.cur_rule.min0, &G.cur_rule.min1); |
| 324 | if (sc < 2 || G.cur_rule.maj < 0) { |
| 325 | bb_error_msg("bad @maj,min on line %d", G.parser->lineno); |
| 326 | goto next_rule; |
| 327 | } |
| 328 | if (sc == 2) |
| 329 | G.cur_rule.min1 = G.cur_rule.min0; |
| 330 | } else { |
| 331 | if (val[0] == '$') { |
| 332 | char *eq = strchr(++val, '='); |
| 333 | if (!eq) { |
| 334 | bb_error_msg("bad $envvar=regex on line %d", G.parser->lineno); |
| 335 | goto next_rule; |
| 336 | } |
| 337 | G.cur_rule.envvar = xstrndup(val, eq - val); |
| 338 | val = eq + 1; |
| 339 | } |
| 340 | xregcomp(&G.cur_rule.match, val, REG_EXTENDED); |
| 341 | G.cur_rule.regex_compiled = 1; |
| 342 | } |
| 343 | |
| 344 | /* 2nd field: uid:gid - device ownership */ |
| 345 | if (get_uidgid(&G.cur_rule.ugid, tokens[1], /*allow_numeric:*/ 1) == 0) { |
| 346 | bb_error_msg("unknown user/group '%s' on line %d", tokens[1], G.parser->lineno); |
| 347 | goto next_rule; |
| 348 | } |
| 349 | |
| 350 | /* 3rd field: mode - device permissions */ |
| 351 | bb_parse_mode(tokens[2], &G.cur_rule.mode); |
| 352 | |
| 353 | /* 4th field (opt): ">|=alias" or "!" to not create the node */ |
| 354 | val = tokens[3]; |
| 355 | if (ENABLE_FEATURE_MDEV_RENAME && val && strchr(">=!", val[0])) { |
| 356 | char *s = skip_non_whitespace(val); |
| 357 | G.cur_rule.ren_mov = xstrndup(val, s - val); |
| 358 | val = skip_whitespace(s); |
| 359 | } |
| 360 | |
| 361 | if (ENABLE_FEATURE_MDEV_EXEC && val && val[0]) { |
| 362 | const char *s = "$@*"; |
| 363 | const char *s2 = strchr(s, val[0]); |
| 364 | if (!s2) { |
| 365 | bb_error_msg("bad line %u", G.parser->lineno); |
| 366 | goto next_rule; |
| 367 | } |
| 368 | IF_FEATURE_MDEV_EXEC(G.cur_rule.r_cmd = xstrdup(val);) |
| 369 | } |
| 370 | |
| 371 | return; |
| 372 | next_rule: |
| 373 | clean_up_cur_rule(); |
| 374 | } /* while (config_read) */ |
| 375 | |
| 376 | dbg("config_close(G.parser)"); |
| 377 | config_close(G.parser); |
| 378 | G.parser = NULL; |
| 379 | |
| 380 | return; |
| 381 | } |
| 382 | |
| 383 | /* If mdev -s, we remember rules in G.rule_vec[]. |
| 384 | * Otherwise, there is no point in doing it, and we just |
| 385 | * save only one parsed rule in G.cur_rule. |
| 386 | */ |
| 387 | static const struct rule *next_rule(void) |
| 388 | { |
| 389 | struct rule *rule; |
| 390 | |
| 391 | /* Open conf file if we didn't do it yet */ |
| 392 | if (!G.parser && G.filename) { |
| 393 | dbg("config_open('%s')", G.filename); |
| 394 | G.parser = config_open2(G.filename, fopen_for_read); |
| 395 | G.filename = NULL; |
| 396 | } |
| 397 | |
| 398 | if (G.rule_vec) { |
| 399 | /* mdev -s */ |
| 400 | /* Do we have rule parsed already? */ |
| 401 | if (G.rule_vec[G.rule_idx]) { |
| 402 | dbg("< G.rule_vec[G.rule_idx:%d]=%p", G.rule_idx, G.rule_vec[G.rule_idx]); |
| 403 | return G.rule_vec[G.rule_idx++]; |
| 404 | } |
| 405 | make_default_cur_rule(); |
| 406 | } else { |
| 407 | /* not mdev -s */ |
| 408 | clean_up_cur_rule(); |
| 409 | } |
| 410 | |
| 411 | /* Parse one more rule if file isn't fully read */ |
| 412 | rule = &G.cur_rule; |
| 413 | if (G.parser) { |
| 414 | parse_next_rule(); |
| 415 | if (G.rule_vec) { /* mdev -s */ |
| 416 | rule = memcpy(xmalloc(sizeof(G.cur_rule)), &G.cur_rule, sizeof(G.cur_rule)); |
| 417 | G.rule_vec = xrealloc_vector(G.rule_vec, 4, G.rule_idx); |
| 418 | G.rule_vec[G.rule_idx++] = rule; |
| 419 | dbg("> G.rule_vec[G.rule_idx:%d]=%p", G.rule_idx, G.rule_vec[G.rule_idx]); |
| 420 | } |
| 421 | } |
| 422 | |
| 423 | return rule; |
| 424 | } |
| 425 | |
| 426 | #else |
| 427 | |
| 428 | # define next_rule() (&G.cur_rule) |
| 429 | |
| 430 | #endif |
| 431 | |
| 432 | static void mkdir_recursive(char *name) |
| 433 | { |
| 434 | /* if name has many levels ("dir1/dir2"), |
| 435 | * bb_make_directory() will create dir1 according to umask, |
| 436 | * not according to its "mode" parameter. |
| 437 | * Since we run with umask=0, need to temporarily switch it. |
| 438 | */ |
| 439 | umask(022); /* "dir1" (if any) will be 0755 too */ |
| 440 | bb_make_directory(name, 0755, FILEUTILS_RECUR); |
| 441 | umask(0); |
| 442 | } |
| 443 | |
| 444 | /* Builds an alias path. |
| 445 | * This function potentionally reallocates the alias parameter. |
| 446 | * Only used for ENABLE_FEATURE_MDEV_RENAME |
| 447 | */ |
| 448 | static char *build_alias(char *alias, const char *device_name) |
| 449 | { |
| 450 | char *dest; |
| 451 | |
| 452 | /* ">bar/": rename to bar/device_name */ |
| 453 | /* ">bar[/]baz": rename to bar[/]baz */ |
| 454 | dest = strrchr(alias, '/'); |
| 455 | if (dest) { /* ">bar/[baz]" ? */ |
| 456 | *dest = '\0'; /* mkdir bar */ |
| 457 | mkdir_recursive(alias); |
| 458 | *dest = '/'; |
| 459 | if (dest[1] == '\0') { /* ">bar/" => ">bar/device_name" */ |
| 460 | dest = alias; |
| 461 | alias = concat_path_file(alias, device_name); |
| 462 | free(dest); |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | return alias; |
| 467 | } |
| 468 | |
| 469 | /* mknod in /dev based on a path like "/sys/block/hda/hda1" |
| 470 | * NB1: path parameter needs to have SCRATCH_SIZE scratch bytes |
| 471 | * after NUL, but we promise to not mangle (IOW: to restore if needed) |
| 472 | * path string. |
| 473 | * NB2: "mdev -s" may call us many times, do not leak memory/fds! |
| 474 | * |
| 475 | * device_name = $DEVNAME (may be NULL) |
| 476 | * path = /sys/$DEVPATH |
| 477 | */ |
| 478 | static void make_device(char *device_name, char *path, int operation) |
| 479 | { |
| 480 | int major, minor, type, len; |
| 481 | |
| 482 | if (G.verbose) |
| 483 | bb_error_msg("device: %s, %s", device_name, path); |
| 484 | |
| 485 | /* Try to read major/minor string. Note that the kernel puts \n after |
| 486 | * the data, so we don't need to worry about null terminating the string |
| 487 | * because sscanf() will stop at the first nondigit, which \n is. |
| 488 | * We also depend on path having writeable space after it. |
| 489 | */ |
| 490 | major = -1; |
| 491 | if (operation == OP_add) { |
| 492 | char *dev_maj_min = path + strlen(path); |
| 493 | |
| 494 | strcpy(dev_maj_min, "/dev"); |
| 495 | len = open_read_close(path, dev_maj_min + 1, 64); |
| 496 | *dev_maj_min = '\0'; |
| 497 | if (len < 1) { |
| 498 | if (!ENABLE_FEATURE_MDEV_EXEC) |
| 499 | return; |
| 500 | /* no "dev" file, but we can still run scripts |
| 501 | * based on device name */ |
| 502 | } else if (sscanf(++dev_maj_min, "%u:%u", &major, &minor) == 2) { |
| 503 | if (G.verbose) |
| 504 | bb_error_msg("maj,min: %u,%u", major, minor); |
| 505 | } else { |
| 506 | major = -1; |
| 507 | } |
| 508 | } |
| 509 | /* else: for delete, -1 still deletes the node, but < -1 suppresses that */ |
| 510 | |
| 511 | /* Determine device name, type, major and minor */ |
| 512 | if (!device_name) |
| 513 | device_name = (char*) bb_basename(path); |
| 514 | /* http://kernel.org/doc/pending/hotplug.txt says that only |
| 515 | * "/sys/block/..." is for block devices. "/sys/bus" etc is not. |
| 516 | * But since 2.6.25 block devices are also in /sys/class/block. |
| 517 | * We use strstr("/block/") to forestall future surprises. |
| 518 | */ |
| 519 | type = S_IFCHR; |
| 520 | if (strstr(path, "/block/") || (G.subsystem && strncmp(G.subsystem, "block", 5) == 0)) |
| 521 | type = S_IFBLK; |
| 522 | |
| 523 | #if ENABLE_FEATURE_MDEV_CONF |
| 524 | G.rule_idx = 0; /* restart from the beginning (think mdev -s) */ |
| 525 | #endif |
| 526 | for (;;) { |
| 527 | const char *str_to_match; |
| 528 | regmatch_t off[1 + 9 * ENABLE_FEATURE_MDEV_RENAME_REGEXP]; |
| 529 | char *command; |
| 530 | char *alias; |
| 531 | char aliaslink = aliaslink; /* for compiler */ |
| 532 | char *node_name; |
| 533 | const struct rule *rule; |
| 534 | |
| 535 | str_to_match = device_name; |
| 536 | |
| 537 | rule = next_rule(); |
| 538 | |
| 539 | #if ENABLE_FEATURE_MDEV_CONF |
| 540 | if (rule->maj >= 0) { /* @maj,min rule */ |
| 541 | if (major != rule->maj) |
| 542 | continue; |
| 543 | if (minor < rule->min0 || minor > rule->min1) |
| 544 | continue; |
| 545 | memset(off, 0, sizeof(off)); |
| 546 | goto rule_matches; |
| 547 | } |
| 548 | if (rule->envvar) { /* $envvar=regex rule */ |
| 549 | str_to_match = getenv(rule->envvar); |
| 550 | dbg("getenv('%s'):'%s'", rule->envvar, str_to_match); |
| 551 | if (!str_to_match) |
| 552 | continue; |
| 553 | } |
| 554 | /* else: str_to_match = device_name */ |
| 555 | |
| 556 | if (rule->regex_compiled) { |
| 557 | int regex_match = regexec(&rule->match, str_to_match, ARRAY_SIZE(off), off, 0); |
| 558 | dbg("regex_match for '%s':%d", str_to_match, regex_match); |
| 559 | //bb_error_msg("matches:"); |
| 560 | //for (int i = 0; i < ARRAY_SIZE(off); i++) { |
| 561 | // if (off[i].rm_so < 0) continue; |
| 562 | // bb_error_msg("match %d: '%.*s'\n", i, |
| 563 | // (int)(off[i].rm_eo - off[i].rm_so), |
| 564 | // device_name + off[i].rm_so); |
| 565 | //} |
| 566 | |
| 567 | if (regex_match != 0 |
| 568 | /* regexec returns whole pattern as "range" 0 */ |
| 569 | || off[0].rm_so != 0 |
| 570 | || (int)off[0].rm_eo != (int)strlen(str_to_match) |
| 571 | ) { |
| 572 | continue; /* this rule doesn't match */ |
| 573 | } |
| 574 | } |
| 575 | /* else: it's final implicit "match-all" rule */ |
| 576 | rule_matches: |
| 577 | #endif |
| 578 | dbg("rule matched"); |
| 579 | |
| 580 | /* Build alias name */ |
| 581 | alias = NULL; |
| 582 | if (ENABLE_FEATURE_MDEV_RENAME && rule->ren_mov) { |
| 583 | aliaslink = rule->ren_mov[0]; |
| 584 | if (aliaslink == '!') { |
| 585 | /* "!": suppress node creation/deletion */ |
| 586 | major = -2; |
| 587 | } |
| 588 | else if (aliaslink == '>' || aliaslink == '=') { |
| 589 | if (ENABLE_FEATURE_MDEV_RENAME_REGEXP) { |
| 590 | char *s; |
| 591 | char *p; |
| 592 | unsigned n; |
| 593 | |
| 594 | /* substitute %1..9 with off[1..9], if any */ |
| 595 | n = 0; |
| 596 | s = rule->ren_mov; |
| 597 | while (*s) |
| 598 | if (*s++ == '%') |
| 599 | n++; |
| 600 | |
| 601 | p = alias = xzalloc(strlen(rule->ren_mov) + n * strlen(str_to_match)); |
| 602 | s = rule->ren_mov + 1; |
| 603 | while (*s) { |
| 604 | *p = *s; |
| 605 | if ('%' == *s) { |
| 606 | unsigned i = (s[1] - '0'); |
| 607 | if (i <= 9 && off[i].rm_so >= 0) { |
| 608 | n = off[i].rm_eo - off[i].rm_so; |
| 609 | strncpy(p, str_to_match + off[i].rm_so, n); |
| 610 | p += n - 1; |
| 611 | s++; |
| 612 | } |
| 613 | } |
| 614 | p++; |
| 615 | s++; |
| 616 | } |
| 617 | } else { |
| 618 | alias = xstrdup(rule->ren_mov + 1); |
| 619 | } |
| 620 | } |
| 621 | } |
| 622 | dbg("alias:'%s'", alias); |
| 623 | |
| 624 | command = NULL; |
| 625 | IF_FEATURE_MDEV_EXEC(command = rule->r_cmd;) |
| 626 | if (command) { |
| 627 | const char *s = "$@*"; |
| 628 | const char *s2 = strchr(s, command[0]); |
| 629 | |
| 630 | /* Are we running this command now? |
| 631 | * Run $cmd on delete, @cmd on create, *cmd on both |
| 632 | */ |
| 633 | if (s2 - s != (operation == OP_remove) || *s2 == '*') { |
| 634 | /* We are here if: '*', |
| 635 | * or: '@' and delete = 0, |
| 636 | * or: '$' and delete = 1 |
| 637 | */ |
| 638 | command++; |
| 639 | } else { |
| 640 | command = NULL; |
| 641 | } |
| 642 | } |
| 643 | dbg("command:'%s'", command); |
| 644 | |
| 645 | /* "Execute" the line we found */ |
| 646 | node_name = device_name; |
| 647 | if (ENABLE_FEATURE_MDEV_RENAME && alias) { |
| 648 | node_name = alias = build_alias(alias, device_name); |
| 649 | dbg("alias2:'%s'", alias); |
| 650 | } |
| 651 | |
| 652 | if (operation == OP_add && major >= 0) { |
| 653 | char *slash = strrchr(node_name, '/'); |
| 654 | if (slash) { |
| 655 | *slash = '\0'; |
| 656 | mkdir_recursive(node_name); |
| 657 | *slash = '/'; |
| 658 | } |
| 659 | if (G.verbose) |
| 660 | bb_error_msg("mknod: %s (%d,%d) %o", node_name, major, minor, rule->mode | type); |
| 661 | if (mknod(node_name, rule->mode | type, makedev(major, minor)) && errno != EEXIST) |
| 662 | bb_perror_msg("can't create '%s'", node_name); |
| 663 | if (ENABLE_FEATURE_MDEV_CONF) { |
| 664 | chmod(node_name, rule->mode); |
| 665 | chown(node_name, rule->ugid.uid, rule->ugid.gid); |
| 666 | } |
| 667 | if (major == G.root_major && minor == G.root_minor) |
| 668 | symlink(node_name, "root"); |
| 669 | if (ENABLE_FEATURE_MDEV_RENAME && alias) { |
| 670 | if (aliaslink == '>') { |
| 671 | //TODO: on devtmpfs, device_name already exists and symlink() fails. |
| 672 | //End result is that instead of symlink, we have two nodes. |
| 673 | //What should be done? |
| 674 | if (G.verbose) |
| 675 | bb_error_msg("symlink: %s", device_name); |
| 676 | symlink(node_name, device_name); |
| 677 | } |
| 678 | } |
| 679 | } |
| 680 | |
| 681 | if (ENABLE_FEATURE_MDEV_EXEC && command) { |
| 682 | /* setenv will leak memory, use putenv/unsetenv/free */ |
| 683 | char *s = xasprintf("%s=%s", "MDEV", node_name); |
| 684 | char *s1 = xasprintf("%s=%s", "SUBSYSTEM", G.subsystem); |
| 685 | putenv(s); |
| 686 | putenv(s1); |
| 687 | if (G.verbose) |
| 688 | bb_error_msg("running: %s", command); |
| 689 | if (system(command) == -1) |
| 690 | bb_perror_msg("can't run '%s'", command); |
| 691 | bb_unsetenv_and_free(s1); |
| 692 | bb_unsetenv_and_free(s); |
| 693 | } |
| 694 | |
| 695 | if (operation == OP_remove && major >= -1) { |
| 696 | if (ENABLE_FEATURE_MDEV_RENAME && alias) { |
| 697 | if (aliaslink == '>') { |
| 698 | if (G.verbose) |
| 699 | bb_error_msg("unlink: %s", device_name); |
| 700 | unlink(device_name); |
| 701 | } |
| 702 | } |
| 703 | if (G.verbose) |
| 704 | bb_error_msg("unlink: %s", node_name); |
| 705 | unlink(node_name); |
| 706 | } |
| 707 | |
| 708 | if (ENABLE_FEATURE_MDEV_RENAME) |
| 709 | free(alias); |
| 710 | |
| 711 | /* We found matching line. |
| 712 | * Stop unless it was prefixed with '-' |
| 713 | */ |
| 714 | if (!ENABLE_FEATURE_MDEV_CONF || !rule->keep_matching) |
| 715 | break; |
| 716 | } /* for (;;) */ |
| 717 | } |
| 718 | |
| 719 | /* File callback for /sys/ traversal */ |
| 720 | static int FAST_FUNC fileAction(const char *fileName, |
| 721 | struct stat *statbuf UNUSED_PARAM, |
| 722 | void *userData, |
| 723 | int depth UNUSED_PARAM) |
| 724 | { |
| 725 | size_t len = strlen(fileName) - 4; /* can't underflow */ |
| 726 | char *scratch = userData; |
| 727 | |
| 728 | /* len check is for paranoid reasons */ |
| 729 | if (strcmp(fileName + len, "/dev") != 0 || len >= PATH_MAX) |
| 730 | return FALSE; |
| 731 | |
| 732 | strcpy(scratch, fileName); |
| 733 | scratch[len] = '\0'; |
| 734 | make_device(/*DEVNAME:*/ NULL, scratch, OP_add); |
| 735 | |
| 736 | return TRUE; |
| 737 | } |
| 738 | |
| 739 | /* Directory callback for /sys/ traversal */ |
| 740 | static int FAST_FUNC dirAction(const char *fileName UNUSED_PARAM, |
| 741 | struct stat *statbuf UNUSED_PARAM, |
| 742 | void *userData UNUSED_PARAM, |
| 743 | int depth) |
| 744 | { |
| 745 | /* Extract device subsystem -- the name of the directory |
| 746 | * under /sys/class/ */ |
| 747 | if (1 == depth) { |
| 748 | free(G.subsystem); |
| 749 | G.subsystem = strrchr(fileName, '/'); |
| 750 | if (G.subsystem) |
| 751 | G.subsystem = xstrdup(G.subsystem + 1); |
| 752 | } |
| 753 | |
| 754 | return (depth >= MAX_SYSFS_DEPTH ? SKIP : TRUE); |
| 755 | } |
| 756 | |
| 757 | /* For the full gory details, see linux/Documentation/firmware_class/README |
| 758 | * |
| 759 | * Firmware loading works like this: |
| 760 | * - kernel sets FIRMWARE env var |
| 761 | * - userspace checks /lib/firmware/$FIRMWARE |
| 762 | * - userspace waits for /sys/$DEVPATH/loading to appear |
| 763 | * - userspace writes "1" to /sys/$DEVPATH/loading |
| 764 | * - userspace copies /lib/firmware/$FIRMWARE into /sys/$DEVPATH/data |
| 765 | * - userspace writes "0" (worked) or "-1" (failed) to /sys/$DEVPATH/loading |
| 766 | * - kernel loads firmware into device |
| 767 | */ |
| 768 | static void load_firmware(const char *firmware, const char *sysfs_path) |
| 769 | { |
| 770 | int cnt; |
| 771 | int firmware_fd, loading_fd; |
| 772 | |
| 773 | /* check for /lib/firmware/$FIRMWARE */ |
| 774 | xchdir("/lib/firmware"); |
| 775 | firmware_fd = open(firmware, O_RDONLY); /* can fail */ |
| 776 | |
| 777 | /* check for /sys/$DEVPATH/loading ... give 30 seconds to appear */ |
| 778 | xchdir(sysfs_path); |
| 779 | for (cnt = 0; cnt < 30; ++cnt) { |
| 780 | loading_fd = open("loading", O_WRONLY); |
| 781 | if (loading_fd >= 0) |
| 782 | goto loading; |
| 783 | sleep(1); |
| 784 | } |
| 785 | goto out; |
| 786 | |
| 787 | loading: |
| 788 | cnt = 0; |
| 789 | if (firmware_fd >= 0) { |
| 790 | int data_fd; |
| 791 | |
| 792 | /* tell kernel we're loading by "echo 1 > /sys/$DEVPATH/loading" */ |
| 793 | if (full_write(loading_fd, "1", 1) != 1) |
| 794 | goto out; |
| 795 | |
| 796 | /* load firmware into /sys/$DEVPATH/data */ |
| 797 | data_fd = open("data", O_WRONLY); |
| 798 | if (data_fd < 0) |
| 799 | goto out; |
| 800 | cnt = bb_copyfd_eof(firmware_fd, data_fd); |
| 801 | if (ENABLE_FEATURE_CLEAN_UP) |
| 802 | close(data_fd); |
| 803 | } |
| 804 | |
| 805 | /* Tell kernel result by "echo [0|-1] > /sys/$DEVPATH/loading" |
| 806 | * Note: we emit -1 also if firmware file wasn't found. |
| 807 | * There are cases when otherwise kernel would wait for minutes |
| 808 | * before timing out. |
| 809 | */ |
| 810 | if (cnt > 0) |
| 811 | full_write(loading_fd, "0", 1); |
| 812 | else |
| 813 | full_write(loading_fd, "-1", 2); |
| 814 | |
| 815 | out: |
| 816 | if (ENABLE_FEATURE_CLEAN_UP) { |
| 817 | close(firmware_fd); |
| 818 | close(loading_fd); |
| 819 | } |
| 820 | } |
| 821 | |
| 822 | int mdev_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 823 | int mdev_main(int argc UNUSED_PARAM, char **argv) |
| 824 | { |
| 825 | RESERVE_CONFIG_BUFFER(temp, PATH_MAX + SCRATCH_SIZE); |
| 826 | |
| 827 | INIT_G(); |
| 828 | |
| 829 | #if ENABLE_FEATURE_MDEV_CONF |
| 830 | G.filename = "/etc/mdev.conf"; |
| 831 | #endif |
| 832 | |
| 833 | /* We can be called as hotplug helper */ |
| 834 | /* Kernel cannot provide suitable stdio fds for us, do it ourself */ |
| 835 | bb_sanitize_stdio(); |
| 836 | |
| 837 | /* Force the configuration file settings exactly */ |
| 838 | umask(0); |
| 839 | |
| 840 | xchdir("/dev"); |
| 841 | |
| 842 | if (argv[1] && strcmp(argv[1], "-s") == 0) { |
| 843 | /* Scan: |
| 844 | * mdev -s |
| 845 | */ |
| 846 | struct stat st; |
| 847 | |
| 848 | #if ENABLE_FEATURE_MDEV_CONF |
| 849 | /* Same as xrealloc_vector(NULL, 4, 0): */ |
| 850 | G.rule_vec = xzalloc((1 << 4) * sizeof(*G.rule_vec)); |
| 851 | #endif |
| 852 | xstat("/", &st); |
| 853 | G.root_major = major(st.st_dev); |
| 854 | G.root_minor = minor(st.st_dev); |
| 855 | |
| 856 | /* ACTION_FOLLOWLINKS is needed since in newer kernels |
| 857 | * /sys/block/loop* (for example) are symlinks to dirs, |
| 858 | * not real directories. |
| 859 | * (kernel's CONFIG_SYSFS_DEPRECATED makes them real dirs, |
| 860 | * but we can't enforce that on users) |
| 861 | */ |
| 862 | if (access("/sys/class/block", F_OK) != 0) { |
| 863 | /* Scan obsolete /sys/block only if /sys/class/block |
| 864 | * doesn't exist. Otherwise we'll have dupes. |
| 865 | * Also, do not complain if it doesn't exist. |
| 866 | * Some people configure kernel to have no blockdevs. |
| 867 | */ |
| 868 | recursive_action("/sys/block", |
| 869 | ACTION_RECURSE | ACTION_FOLLOWLINKS | ACTION_QUIET, |
| 870 | fileAction, dirAction, temp, 0); |
| 871 | } |
| 872 | recursive_action("/sys/class", |
| 873 | ACTION_RECURSE | ACTION_FOLLOWLINKS, |
| 874 | fileAction, dirAction, temp, 0); |
| 875 | } else { |
| 876 | char *fw; |
| 877 | char *seq; |
| 878 | char *action; |
| 879 | char *env_devname; |
| 880 | char *env_devpath; |
| 881 | smalluint op; |
| 882 | |
| 883 | /* Hotplug: |
| 884 | * env ACTION=... DEVPATH=... SUBSYSTEM=... [SEQNUM=...] mdev |
| 885 | * ACTION can be "add" or "remove" |
| 886 | * DEVPATH is like "/block/sda" or "/class/input/mice" |
| 887 | */ |
| 888 | action = getenv("ACTION"); |
| 889 | op = index_in_strings(keywords, action); |
| 890 | env_devname = getenv("DEVNAME"); /* can be NULL */ |
| 891 | env_devpath = getenv("DEVPATH"); |
| 892 | G.subsystem = getenv("SUBSYSTEM"); |
| 893 | if (!action || !env_devpath /*|| !G.subsystem*/) |
| 894 | bb_show_usage(); |
| 895 | fw = getenv("FIRMWARE"); |
| 896 | /* If it exists, does /dev/mdev.seq match $SEQNUM? |
| 897 | * If it does not match, earlier mdev is running |
| 898 | * in parallel, and we need to wait */ |
| 899 | seq = getenv("SEQNUM"); |
| 900 | if (seq) { |
| 901 | int timeout = 2000 / 32; /* 2000 msec */ |
| 902 | do { |
| 903 | int seqlen; |
| 904 | char seqbuf[sizeof(int)*3 + 2]; |
| 905 | |
| 906 | seqlen = open_read_close("mdev.seq", seqbuf, sizeof(seqbuf) - 1); |
| 907 | if (seqlen < 0) { |
| 908 | seq = NULL; |
| 909 | break; |
| 910 | } |
| 911 | seqbuf[seqlen] = '\0'; |
| 912 | if (seqbuf[0] == '\n' /* seed file? */ |
| 913 | || strcmp(seq, seqbuf) == 0 /* correct idx? */ |
| 914 | ) { |
| 915 | break; |
| 916 | } |
| 917 | usleep(32*1000); |
| 918 | } while (--timeout); |
| 919 | } |
| 920 | |
| 921 | { |
| 922 | int logfd = open("/dev/mdev.log", O_WRONLY | O_APPEND); |
| 923 | if (logfd >= 0) { |
| 924 | xmove_fd(logfd, STDERR_FILENO); |
| 925 | G.verbose = 1; |
| 926 | bb_error_msg("seq: %s action: %s", seq, action); |
| 927 | } |
| 928 | } |
| 929 | |
| 930 | snprintf(temp, PATH_MAX, "/sys%s", env_devpath); |
| 931 | if (op == OP_remove) { |
| 932 | /* Ignoring "remove firmware". It was reported |
| 933 | * to happen and to cause erroneous deletion |
| 934 | * of device nodes. */ |
| 935 | if (!fw) |
| 936 | make_device(env_devname, temp, op); |
| 937 | } |
| 938 | else if (op == OP_add) { |
| 939 | make_device(env_devname, temp, op); |
| 940 | if (ENABLE_FEATURE_MDEV_LOAD_FIRMWARE) { |
| 941 | if (fw) |
| 942 | load_firmware(fw, temp); |
| 943 | } |
| 944 | } |
| 945 | |
| 946 | if (seq) { |
| 947 | xopen_xwrite_close("mdev.seq", utoa(xatou(seq) + 1)); |
| 948 | } |
| 949 | } |
| 950 | |
| 951 | if (ENABLE_FEATURE_CLEAN_UP) |
| 952 | RELEASE_CONFIG_BUFFER(temp); |
| 953 | |
| 954 | return EXIT_SUCCESS; |
| 955 | } |