"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 3 | * mdev - Mini udev for busybox |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 4 | * |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 5 | * Copyright 2005 Rob Landley <rob@landley.net> |
| 6 | * Copyright 2005 Frank Sorenson <frank@tuxrocks.com> |
| 7 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 8 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 9 | */ |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 10 | |
Denys Vlasenko | 5c6ba6c | 2011-09-19 12:18:11 +0200 | [diff] [blame] | 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 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 73 | //usage:#define mdev_trivial_usage |
| 74 | //usage: "[-s]" |
| 75 | //usage:#define mdev_full_usage "\n\n" |
Denys Vlasenko | 5c6ba6c | 2011-09-19 12:18:11 +0200 | [diff] [blame] | 76 | //usage: "mdev -s is to be run during boot to scan /sys and populate /dev.\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 77 | //usage: "\n" |
Denys Vlasenko | 5c6ba6c | 2011-09-19 12:18:11 +0200 | [diff] [blame] | 78 | //usage: "Bare mdev is a kernel hotplug helper. To activate it:\n" |
| 79 | //usage: " echo /sbin/mdev >/proc/sys/kernel/hotplug\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 80 | //usage: IF_FEATURE_MDEV_CONF( |
Denys Vlasenko | 5c6ba6c | 2011-09-19 12:18:11 +0200 | [diff] [blame] | 81 | //usage: "\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 82 | //usage: "It uses /etc/mdev.conf with lines\n" |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 83 | //usage: " [-][ENV=regex;]...DEVNAME UID:GID PERM" |
Denys Vlasenko | 5c6ba6c | 2011-09-19 12:18:11 +0200 | [diff] [blame] | 84 | //usage: IF_FEATURE_MDEV_RENAME(" [>|=PATH]|[!]") |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 85 | //usage: IF_FEATURE_MDEV_EXEC(" [@|$|*PROG]") |
Denys Vlasenko | 5c6ba6c | 2011-09-19 12:18:11 +0200 | [diff] [blame] | 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" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 91 | //usage: ) |
Denys Vlasenko | 5c6ba6c | 2011-09-19 12:18:11 +0200 | [diff] [blame] | 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" |
Denys Vlasenko | 8d11854 | 2012-05-18 04:47:18 +0200 | [diff] [blame] | 95 | //usage: "To activate this feature, create empty /dev/mdev.seq at boot.\n" |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 96 | //usage: "\n" |
Denys Vlasenko | 8d11854 | 2012-05-18 04:47:18 +0200 | [diff] [blame] | 97 | //usage: "If /dev/mdev.log file exists, debug log will be appended to it." |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 98 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 99 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 100 | #include "common_bufsiz.h" |
Rob Landley | b56c285 | 2005-12-17 10:52:30 +0000 | [diff] [blame] | 101 | #include "xregex.h" |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 102 | |
Denis Vlasenko | 5ff9629 | 2009-04-17 00:01:04 +0000 | [diff] [blame] | 103 | /* "mdev -s" scans /sys/class/xxx, looking for directories which have dev |
| 104 | * file (it is of the form "M:m\n"). Example: /sys/class/tty/tty0/dev |
| 105 | * contains "4:0\n". Directory name is taken as device name, path component |
| 106 | * directly after /sys/class/ as subsystem. In this example, "tty0" and "tty". |
| 107 | * Then mdev creates the /dev/device_name node. |
Denis Vlasenko | 11c17f7 | 2009-04-19 23:38:08 +0000 | [diff] [blame] | 108 | * If /sys/class/.../dev file does not exist, mdev still may act |
| 109 | * on this device: see "@|$|*command args..." parameter in config file. |
Denis Vlasenko | 5ff9629 | 2009-04-17 00:01:04 +0000 | [diff] [blame] | 110 | * |
| 111 | * mdev w/o parameters is called as hotplug helper. It takes device |
| 112 | * and subsystem names from $DEVPATH and $SUBSYSTEM, extracts |
| 113 | * maj,min from "/sys/$DEVPATH/dev" and also examines |
| 114 | * $ACTION ("add"/"delete") and $FIRMWARE. |
| 115 | * |
| 116 | * If action is "add", mdev creates /dev/device_name similarly to mdev -s. |
| 117 | * (todo: explain "delete" and $FIRMWARE) |
| 118 | * |
| 119 | * If /etc/mdev.conf exists, it may modify /dev/device_name's properties. |
Denis Vlasenko | 5ff9629 | 2009-04-17 00:01:04 +0000 | [diff] [blame] | 120 | * |
| 121 | * Leading minus in 1st field means "don't stop on this line", otherwise |
| 122 | * search is stopped after the matching line is encountered. |
| 123 | * |
Denys Vlasenko | 45f0a11 | 2011-09-22 04:55:47 +0200 | [diff] [blame] | 124 | * $envvar=regex format is useful for loading modules for hot-plugged devices |
Denis Vlasenko | 11c17f7 | 2009-04-19 23:38:08 +0000 | [diff] [blame] | 125 | * which do not have driver loaded yet. In this case /sys/class/.../dev |
| 126 | * does not exist, but $MODALIAS is set to needed module's name |
| 127 | * (actually, an alias to it) by kernel. This rule instructs mdev |
| 128 | * to load the module and exit: |
| 129 | * $MODALIAS=.* 0:0 660 @modprobe "$MODALIAS" |
| 130 | * The kernel will generate another hotplug event when /sys/class/.../dev |
| 131 | * file appears. |
| 132 | * |
| 133 | * When line matches, the device node is created, chmod'ed and chown'ed, |
| 134 | * moved to path, and if >path, a symlink to moved node is created, |
| 135 | * all this if /sys/class/.../dev exists. |
Denis Vlasenko | 5ff9629 | 2009-04-17 00:01:04 +0000 | [diff] [blame] | 136 | * Examples: |
| 137 | * =loop/ - moves to /dev/loop |
| 138 | * >disk/sda%1 - moves to /dev/disk/sdaN, makes /dev/sdaN a symlink |
Denis Vlasenko | 11c17f7 | 2009-04-19 23:38:08 +0000 | [diff] [blame] | 139 | * |
| 140 | * Then "command args..." is executed (via sh -c 'command args...'). |
Denis Vlasenko | 5ff9629 | 2009-04-17 00:01:04 +0000 | [diff] [blame] | 141 | * @:execute on creation, $:on deletion, *:on both. |
Denis Vlasenko | 11c17f7 | 2009-04-19 23:38:08 +0000 | [diff] [blame] | 142 | * This happens regardless of /sys/class/.../dev existence. |
Denis Vlasenko | 5ff9629 | 2009-04-17 00:01:04 +0000 | [diff] [blame] | 143 | */ |
| 144 | |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 145 | /* Kernel's hotplug environment constantly changes. |
| 146 | * Here are new cases I observed on 3.1.0: |
| 147 | * |
| 148 | * Case with $DEVNAME and $DEVICE, not just $DEVPATH: |
| 149 | * ACTION=add |
| 150 | * BUSNUM=001 |
| 151 | * DEVICE=/proc/bus/usb/001/003 |
| 152 | * DEVNAME=bus/usb/001/003 |
| 153 | * DEVNUM=003 |
| 154 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5 |
| 155 | * DEVTYPE=usb_device |
| 156 | * MAJOR=189 |
| 157 | * MINOR=2 |
| 158 | * PRODUCT=18d1/4e12/227 |
| 159 | * SUBSYSTEM=usb |
| 160 | * TYPE=0/0/0 |
| 161 | * |
| 162 | * Case with $DEVICE, but no $DEVNAME - apparenty, usb iface notification? |
| 163 | * "Please load me a module" thing? |
| 164 | * ACTION=add |
| 165 | * DEVICE=/proc/bus/usb/001/003 |
| 166 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5/1-5:1.0 |
| 167 | * DEVTYPE=usb_interface |
| 168 | * INTERFACE=8/6/80 |
| 169 | * MODALIAS=usb:v18D1p4E12d0227dc00dsc00dp00ic08isc06ip50 |
| 170 | * PRODUCT=18d1/4e12/227 |
| 171 | * SUBSYSTEM=usb |
| 172 | * TYPE=0/0/0 |
| 173 | * |
| 174 | * ACTION=add |
| 175 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5/1-5:1.0/host5 |
| 176 | * DEVTYPE=scsi_host |
| 177 | * SUBSYSTEM=scsi |
| 178 | * |
| 179 | * ACTION=add |
| 180 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5/1-5:1.0/host5/scsi_host/host5 |
| 181 | * SUBSYSTEM=scsi_host |
| 182 | * |
| 183 | * ACTION=add |
| 184 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5/1-5:1.0/host5/target5:0:0 |
| 185 | * DEVTYPE=scsi_target |
| 186 | * SUBSYSTEM=scsi |
| 187 | * |
| 188 | * Case with strange $MODALIAS: |
| 189 | * ACTION=add |
| 190 | * DEVPATH=/devices/pci0000:00/0000:00:02.1/usb1/1-5/1-5:1.0/host5/target5:0:0/5:0:0:0 |
| 191 | * DEVTYPE=scsi_device |
| 192 | * MODALIAS=scsi:t-0x00 |
| 193 | * SUBSYSTEM=scsi |
| 194 | * |
| 195 | * ACTION=add |
| 196 | * 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 |
| 197 | * SUBSYSTEM=scsi_disk |
| 198 | * |
| 199 | * ACTION=add |
| 200 | * 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 |
| 201 | * SUBSYSTEM=scsi_device |
| 202 | * |
| 203 | * Case with explicit $MAJOR/$MINOR (no need to read /sys/$DEVPATH/dev?): |
| 204 | * ACTION=add |
| 205 | * DEVNAME=bsg/5:0:0:0 |
| 206 | * 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 |
| 207 | * MAJOR=253 |
| 208 | * MINOR=1 |
| 209 | * SUBSYSTEM=bsg |
| 210 | * |
| 211 | * ACTION=add |
| 212 | * DEVPATH=/devices/virtual/bdi/8:16 |
| 213 | * SUBSYSTEM=bdi |
| 214 | * |
| 215 | * ACTION=add |
| 216 | * DEVNAME=sdb |
| 217 | * DEVPATH=/block/sdb |
| 218 | * DEVTYPE=disk |
| 219 | * MAJOR=8 |
| 220 | * MINOR=16 |
| 221 | * SUBSYSTEM=block |
| 222 | * |
| 223 | * Case with ACTION=change: |
| 224 | * ACTION=change |
| 225 | * DEVNAME=sdb |
| 226 | * DEVPATH=/block/sdb |
| 227 | * DEVTYPE=disk |
| 228 | * DISK_MEDIA_CHANGE=1 |
| 229 | * MAJOR=8 |
| 230 | * MINOR=16 |
| 231 | * SUBSYSTEM=block |
| 232 | */ |
| 233 | |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 234 | #define DEBUG_LVL 2 |
| 235 | |
| 236 | #if DEBUG_LVL >= 1 |
| 237 | # define dbg1(...) do { if (G.verbose) bb_error_msg(__VA_ARGS__); } while(0) |
| 238 | #else |
| 239 | # define dbg1(...) ((void)0) |
| 240 | #endif |
| 241 | #if DEBUG_LVL >= 2 |
| 242 | # define dbg2(...) do { if (G.verbose >= 2) bb_error_msg(__VA_ARGS__); } while(0) |
| 243 | #else |
| 244 | # define dbg2(...) ((void)0) |
| 245 | #endif |
| 246 | #if DEBUG_LVL >= 3 |
| 247 | # define dbg3(...) do { if (G.verbose >= 3) bb_error_msg(__VA_ARGS__); } while(0) |
| 248 | #else |
| 249 | # define dbg3(...) ((void)0) |
| 250 | #endif |
| 251 | |
| 252 | |
| 253 | static const char keywords[] ALIGN1 = "add\0remove\0"; // "change\0" |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 254 | enum { OP_add, OP_remove }; |
| 255 | |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 256 | struct envmatch { |
| 257 | struct envmatch *next; |
| 258 | char *envname; |
| 259 | regex_t match; |
| 260 | }; |
| 261 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 262 | struct rule { |
| 263 | bool keep_matching; |
| 264 | bool regex_compiled; |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 265 | mode_t mode; |
| 266 | int maj, min0, min1; |
| 267 | struct bb_uidgid_t ugid; |
| 268 | char *envvar; |
| 269 | char *ren_mov; |
| 270 | IF_FEATURE_MDEV_EXEC(char *r_cmd;) |
| 271 | regex_t match; |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 272 | struct envmatch *envmatch; |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 273 | }; |
| 274 | |
Denis Vlasenko | 4e5f82c | 2007-06-03 22:30:22 +0000 | [diff] [blame] | 275 | struct globals { |
Rob Landley | 5cd1ccd | 2006-05-21 18:33:27 +0000 | [diff] [blame] | 276 | int root_major, root_minor; |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 277 | smallint verbose; |
Denis Vlasenko | 065c714 | 2009-04-13 22:23:02 +0000 | [diff] [blame] | 278 | char *subsystem; |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 279 | char *subsys_env; /* for putenv("SUBSYSTEM=subsystem") */ |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 280 | #if ENABLE_FEATURE_MDEV_CONF |
| 281 | const char *filename; |
| 282 | parser_t *parser; |
| 283 | struct rule **rule_vec; |
| 284 | unsigned rule_idx; |
| 285 | #endif |
| 286 | struct rule cur_rule; |
Denys Vlasenko | bd77e9d | 2015-04-19 18:54:49 +0200 | [diff] [blame] | 287 | char timestr[sizeof("HH:MM:SS.123456")]; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 288 | } FIX_ALIASING; |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 289 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denys Vlasenko | c966563 | 2012-04-21 14:35:32 +0200 | [diff] [blame] | 290 | #define INIT_G() do { \ |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 291 | setup_common_bufsiz(); \ |
Denys Vlasenko | c966563 | 2012-04-21 14:35:32 +0200 | [diff] [blame] | 292 | IF_NOT_FEATURE_MDEV_CONF(G.cur_rule.maj = -1;) \ |
| 293 | IF_NOT_FEATURE_MDEV_CONF(G.cur_rule.mode = 0660;) \ |
| 294 | } while (0) |
Denys Vlasenko | 1671424 | 2011-09-21 01:59:15 +0200 | [diff] [blame] | 295 | |
Rob Landley | a7e3d05 | 2006-02-21 06:11:13 +0000 | [diff] [blame] | 296 | |
Denis Vlasenko | d48e81f | 2008-07-06 07:00:11 +0000 | [diff] [blame] | 297 | /* Prevent infinite loops in /sys symlinks */ |
| 298 | #define MAX_SYSFS_DEPTH 3 |
Mike Frysinger | b51fd35 | 2007-06-13 09:24:50 +0000 | [diff] [blame] | 299 | |
Nikolaus Voss | c3cf1e3 | 2013-05-13 03:55:11 +0200 | [diff] [blame] | 300 | /* We use additional bytes in make_device() */ |
| 301 | #define SCRATCH_SIZE 128 |
Denis Vlasenko | cf26ab7 | 2008-03-27 22:45:44 +0000 | [diff] [blame] | 302 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 303 | #if ENABLE_FEATURE_MDEV_CONF |
| 304 | |
| 305 | static void make_default_cur_rule(void) |
| 306 | { |
| 307 | memset(&G.cur_rule, 0, sizeof(G.cur_rule)); |
| 308 | G.cur_rule.maj = -1; /* "not a @major,minor rule" */ |
| 309 | G.cur_rule.mode = 0660; |
| 310 | } |
| 311 | |
| 312 | static void clean_up_cur_rule(void) |
| 313 | { |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 314 | struct envmatch *e; |
| 315 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 316 | free(G.cur_rule.envvar); |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 317 | free(G.cur_rule.ren_mov); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 318 | if (G.cur_rule.regex_compiled) |
| 319 | regfree(&G.cur_rule.match); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 320 | IF_FEATURE_MDEV_EXEC(free(G.cur_rule.r_cmd);) |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 321 | e = G.cur_rule.envmatch; |
| 322 | while (e) { |
| 323 | free(e->envname); |
| 324 | regfree(&e->match); |
| 325 | e = e->next; |
| 326 | } |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 327 | make_default_cur_rule(); |
| 328 | } |
| 329 | |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 330 | static char *parse_envmatch_pfx(char *val) |
| 331 | { |
| 332 | struct envmatch **nextp = &G.cur_rule.envmatch; |
| 333 | |
| 334 | for (;;) { |
| 335 | struct envmatch *e; |
| 336 | char *semicolon; |
| 337 | char *eq = strchr(val, '='); |
| 338 | if (!eq /* || eq == val? */) |
| 339 | return val; |
| 340 | if (endofname(val) != eq) |
| 341 | return val; |
| 342 | semicolon = strchr(eq, ';'); |
| 343 | if (!semicolon) |
| 344 | return val; |
| 345 | /* ENVVAR=regex;... */ |
| 346 | *nextp = e = xzalloc(sizeof(*e)); |
| 347 | nextp = &e->next; |
| 348 | e->envname = xstrndup(val, eq - val); |
| 349 | *semicolon = '\0'; |
| 350 | xregcomp(&e->match, eq + 1, REG_EXTENDED); |
| 351 | *semicolon = ';'; |
| 352 | val = semicolon + 1; |
| 353 | } |
| 354 | } |
| 355 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 356 | static void parse_next_rule(void) |
| 357 | { |
| 358 | /* Note: on entry, G.cur_rule is set to default */ |
| 359 | while (1) { |
| 360 | char *tokens[4]; |
| 361 | char *val; |
| 362 | |
Denys Vlasenko | 499597d | 2012-01-11 00:37:17 +0100 | [diff] [blame] | 363 | /* No PARSE_EOL_COMMENTS, because command may contain '#' chars */ |
| 364 | if (!config_read(G.parser, tokens, 4, 3, "# \t", PARSE_NORMAL & ~PARSE_EOL_COMMENTS)) |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 365 | break; |
| 366 | |
| 367 | /* Fields: [-]regex uid:gid mode [alias] [cmd] */ |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 368 | dbg3("token1:'%s'", tokens[1]); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 369 | |
| 370 | /* 1st field */ |
| 371 | val = tokens[0]; |
| 372 | G.cur_rule.keep_matching = ('-' == val[0]); |
| 373 | val += G.cur_rule.keep_matching; /* swallow leading dash */ |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 374 | val = parse_envmatch_pfx(val); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 375 | if (val[0] == '@') { |
| 376 | /* @major,minor[-minor2] */ |
| 377 | /* (useful when name is ambiguous: |
| 378 | * "/sys/class/usb/lp0" and |
| 379 | * "/sys/class/printer/lp0") |
| 380 | */ |
| 381 | int sc = sscanf(val, "@%u,%u-%u", &G.cur_rule.maj, &G.cur_rule.min0, &G.cur_rule.min1); |
| 382 | if (sc < 2 || G.cur_rule.maj < 0) { |
| 383 | bb_error_msg("bad @maj,min on line %d", G.parser->lineno); |
| 384 | goto next_rule; |
| 385 | } |
| 386 | if (sc == 2) |
| 387 | G.cur_rule.min1 = G.cur_rule.min0; |
| 388 | } else { |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 389 | char *eq = strchr(val, '='); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 390 | if (val[0] == '$') { |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 391 | /* $ENVVAR=regex ... */ |
| 392 | val++; |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 393 | if (!eq) { |
| 394 | bb_error_msg("bad $envvar=regex on line %d", G.parser->lineno); |
| 395 | goto next_rule; |
| 396 | } |
| 397 | G.cur_rule.envvar = xstrndup(val, eq - val); |
| 398 | val = eq + 1; |
| 399 | } |
| 400 | xregcomp(&G.cur_rule.match, val, REG_EXTENDED); |
| 401 | G.cur_rule.regex_compiled = 1; |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | /* 2nd field: uid:gid - device ownership */ |
Denys Vlasenko | 526d858 | 2015-10-19 04:27:17 +0200 | [diff] [blame] | 405 | if (get_uidgid(&G.cur_rule.ugid, tokens[1]) == 0) { |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 406 | bb_error_msg("unknown user/group '%s' on line %d", tokens[1], G.parser->lineno); |
| 407 | goto next_rule; |
| 408 | } |
| 409 | |
| 410 | /* 3rd field: mode - device permissions */ |
Denys Vlasenko | 5711a2a | 2015-10-07 17:55:33 +0200 | [diff] [blame] | 411 | G.cur_rule.mode = bb_parse_mode(tokens[2], G.cur_rule.mode); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 412 | |
| 413 | /* 4th field (opt): ">|=alias" or "!" to not create the node */ |
| 414 | val = tokens[3]; |
| 415 | if (ENABLE_FEATURE_MDEV_RENAME && val && strchr(">=!", val[0])) { |
| 416 | char *s = skip_non_whitespace(val); |
| 417 | G.cur_rule.ren_mov = xstrndup(val, s - val); |
| 418 | val = skip_whitespace(s); |
| 419 | } |
| 420 | |
| 421 | if (ENABLE_FEATURE_MDEV_EXEC && val && val[0]) { |
| 422 | const char *s = "$@*"; |
| 423 | const char *s2 = strchr(s, val[0]); |
| 424 | if (!s2) { |
| 425 | bb_error_msg("bad line %u", G.parser->lineno); |
| 426 | goto next_rule; |
| 427 | } |
| 428 | IF_FEATURE_MDEV_EXEC(G.cur_rule.r_cmd = xstrdup(val);) |
| 429 | } |
| 430 | |
| 431 | return; |
| 432 | next_rule: |
| 433 | clean_up_cur_rule(); |
| 434 | } /* while (config_read) */ |
| 435 | |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 436 | dbg3("config_close(G.parser)"); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 437 | config_close(G.parser); |
| 438 | G.parser = NULL; |
| 439 | |
| 440 | return; |
| 441 | } |
| 442 | |
| 443 | /* If mdev -s, we remember rules in G.rule_vec[]. |
| 444 | * Otherwise, there is no point in doing it, and we just |
| 445 | * save only one parsed rule in G.cur_rule. |
| 446 | */ |
| 447 | static const struct rule *next_rule(void) |
| 448 | { |
| 449 | struct rule *rule; |
| 450 | |
| 451 | /* Open conf file if we didn't do it yet */ |
| 452 | if (!G.parser && G.filename) { |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 453 | dbg3("config_open('%s')", G.filename); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 454 | G.parser = config_open2(G.filename, fopen_for_read); |
| 455 | G.filename = NULL; |
| 456 | } |
| 457 | |
| 458 | if (G.rule_vec) { |
| 459 | /* mdev -s */ |
| 460 | /* Do we have rule parsed already? */ |
| 461 | if (G.rule_vec[G.rule_idx]) { |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 462 | dbg3("< G.rule_vec[G.rule_idx:%d]=%p", G.rule_idx, G.rule_vec[G.rule_idx]); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 463 | return G.rule_vec[G.rule_idx++]; |
| 464 | } |
| 465 | make_default_cur_rule(); |
| 466 | } else { |
| 467 | /* not mdev -s */ |
| 468 | clean_up_cur_rule(); |
| 469 | } |
| 470 | |
| 471 | /* Parse one more rule if file isn't fully read */ |
| 472 | rule = &G.cur_rule; |
| 473 | if (G.parser) { |
| 474 | parse_next_rule(); |
| 475 | if (G.rule_vec) { /* mdev -s */ |
Ron Yorston | d840c5d | 2015-07-19 23:05:20 +0200 | [diff] [blame] | 476 | rule = xmemdup(&G.cur_rule, sizeof(G.cur_rule)); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 477 | G.rule_vec = xrealloc_vector(G.rule_vec, 4, G.rule_idx); |
| 478 | G.rule_vec[G.rule_idx++] = rule; |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 479 | dbg3("> G.rule_vec[G.rule_idx:%d]=%p", G.rule_idx, G.rule_vec[G.rule_idx]); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 480 | } |
| 481 | } |
| 482 | |
| 483 | return rule; |
| 484 | } |
| 485 | |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 486 | static int env_matches(struct envmatch *e) |
| 487 | { |
| 488 | while (e) { |
| 489 | int r; |
| 490 | char *val = getenv(e->envname); |
| 491 | if (!val) |
| 492 | return 0; |
| 493 | r = regexec(&e->match, val, /*size*/ 0, /*range[]*/ NULL, /*eflags*/ 0); |
| 494 | if (r != 0) /* no match */ |
| 495 | return 0; |
| 496 | e = e->next; |
| 497 | } |
| 498 | return 1; |
| 499 | } |
| 500 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 501 | #else |
| 502 | |
| 503 | # define next_rule() (&G.cur_rule) |
| 504 | |
| 505 | #endif |
Denys Vlasenko | 1671424 | 2011-09-21 01:59:15 +0200 | [diff] [blame] | 506 | |
Denys Vlasenko | 4609f47 | 2013-01-21 01:22:12 +0100 | [diff] [blame] | 507 | static void mkdir_recursive(char *name) |
| 508 | { |
| 509 | /* if name has many levels ("dir1/dir2"), |
| 510 | * bb_make_directory() will create dir1 according to umask, |
| 511 | * not according to its "mode" parameter. |
| 512 | * Since we run with umask=0, need to temporarily switch it. |
| 513 | */ |
| 514 | umask(022); /* "dir1" (if any) will be 0755 too */ |
| 515 | bb_make_directory(name, 0755, FILEUTILS_RECUR); |
| 516 | umask(0); |
| 517 | } |
| 518 | |
Denis Vlasenko | d986048 | 2008-07-12 10:23:16 +0000 | [diff] [blame] | 519 | /* Builds an alias path. |
| 520 | * This function potentionally reallocates the alias parameter. |
Denis Vlasenko | c7cc5a9 | 2009-04-19 01:27:20 +0000 | [diff] [blame] | 521 | * Only used for ENABLE_FEATURE_MDEV_RENAME |
Denis Vlasenko | d986048 | 2008-07-12 10:23:16 +0000 | [diff] [blame] | 522 | */ |
| 523 | static char *build_alias(char *alias, const char *device_name) |
| 524 | { |
| 525 | char *dest; |
| 526 | |
| 527 | /* ">bar/": rename to bar/device_name */ |
| 528 | /* ">bar[/]baz": rename to bar[/]baz */ |
| 529 | dest = strrchr(alias, '/'); |
| 530 | if (dest) { /* ">bar/[baz]" ? */ |
| 531 | *dest = '\0'; /* mkdir bar */ |
Denys Vlasenko | 4609f47 | 2013-01-21 01:22:12 +0100 | [diff] [blame] | 532 | mkdir_recursive(alias); |
Denis Vlasenko | d986048 | 2008-07-12 10:23:16 +0000 | [diff] [blame] | 533 | *dest = '/'; |
| 534 | if (dest[1] == '\0') { /* ">bar/" => ">bar/device_name" */ |
| 535 | dest = alias; |
| 536 | alias = concat_path_file(alias, device_name); |
| 537 | free(dest); |
| 538 | } |
| 539 | } |
| 540 | |
| 541 | return alias; |
| 542 | } |
| 543 | |
Denys Vlasenko | 76f5e38 | 2009-05-04 21:59:05 +0200 | [diff] [blame] | 544 | /* mknod in /dev based on a path like "/sys/block/hda/hda1" |
| 545 | * NB1: path parameter needs to have SCRATCH_SIZE scratch bytes |
Denys Vlasenko | 20a3262 | 2016-09-07 14:09:01 +0200 | [diff] [blame] | 546 | * after NUL, but we promise to not mangle it (IOW: to restore NUL if needed). |
Denys Vlasenko | 76f5e38 | 2009-05-04 21:59:05 +0200 | [diff] [blame] | 547 | * NB2: "mdev -s" may call us many times, do not leak memory/fds! |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 548 | * |
| 549 | * device_name = $DEVNAME (may be NULL) |
| 550 | * path = /sys/$DEVPATH |
Denys Vlasenko | 76f5e38 | 2009-05-04 21:59:05 +0200 | [diff] [blame] | 551 | */ |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 552 | static void make_device(char *device_name, char *path, int operation) |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 553 | { |
Denis Vlasenko | f46be09 | 2006-10-16 19:39:37 +0000 | [diff] [blame] | 554 | int major, minor, type, len; |
Nikolaus Voss | c3cf1e3 | 2013-05-13 03:55:11 +0200 | [diff] [blame] | 555 | char *path_end = path + strlen(path); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 556 | |
Rob Landley | 15fe2e1 | 2006-05-08 02:53:23 +0000 | [diff] [blame] | 557 | /* Try to read major/minor string. Note that the kernel puts \n after |
| 558 | * the data, so we don't need to worry about null terminating the string |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 559 | * because sscanf() will stop at the first nondigit, which \n is. |
| 560 | * We also depend on path having writeable space after it. |
Mike Frysinger | c881c73 | 2007-11-19 09:04:22 +0000 | [diff] [blame] | 561 | */ |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 562 | major = -1; |
Denys Vlasenko | ea57f51 | 2012-05-18 11:39:57 +0200 | [diff] [blame] | 563 | if (operation == OP_add) { |
Nikolaus Voss | c3cf1e3 | 2013-05-13 03:55:11 +0200 | [diff] [blame] | 564 | strcpy(path_end, "/dev"); |
| 565 | len = open_read_close(path, path_end + 1, SCRATCH_SIZE - 1); |
| 566 | *path_end = '\0'; |
Mike Frysinger | ae86a33 | 2008-02-20 18:31:36 +0000 | [diff] [blame] | 567 | if (len < 1) { |
Denis Vlasenko | cf26ab7 | 2008-03-27 22:45:44 +0000 | [diff] [blame] | 568 | if (!ENABLE_FEATURE_MDEV_EXEC) |
Mike Frysinger | ae86a33 | 2008-02-20 18:31:36 +0000 | [diff] [blame] | 569 | return; |
Denis Vlasenko | 3798db5 | 2009-04-19 21:37:07 +0000 | [diff] [blame] | 570 | /* no "dev" file, but we can still run scripts |
| 571 | * based on device name */ |
Nikolaus Voss | c3cf1e3 | 2013-05-13 03:55:11 +0200 | [diff] [blame] | 572 | } else if (sscanf(path_end + 1, "%u:%u", &major, &minor) == 2) { |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 573 | dbg1("dev %u,%u", major, minor); |
Denys Vlasenko | ea57f51 | 2012-05-18 11:39:57 +0200 | [diff] [blame] | 574 | } else { |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 575 | major = -1; |
Mike Frysinger | ae86a33 | 2008-02-20 18:31:36 +0000 | [diff] [blame] | 576 | } |
Rob Landley | 10b36f9 | 2006-08-10 01:09:37 +0000 | [diff] [blame] | 577 | } |
Denys Vlasenko | f2860bf | 2010-08-16 14:26:15 +0200 | [diff] [blame] | 578 | /* else: for delete, -1 still deletes the node, but < -1 suppresses that */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 579 | |
Nikolaus Voss | c3cf1e3 | 2013-05-13 03:55:11 +0200 | [diff] [blame] | 580 | /* Determine device name */ |
| 581 | if (!device_name) { |
| 582 | /* |
| 583 | * There was no $DEVNAME envvar (for example, mdev -s never has). |
| 584 | * But it is very useful: it contains the *path*, not only basename, |
| 585 | * Thankfully, uevent file has it. |
| 586 | * Example of .../sound/card0/controlC0/uevent file on Linux-3.7.7: |
| 587 | * MAJOR=116 |
| 588 | * MINOR=7 |
| 589 | * DEVNAME=snd/controlC0 |
| 590 | */ |
| 591 | strcpy(path_end, "/uevent"); |
| 592 | len = open_read_close(path, path_end + 1, SCRATCH_SIZE - 1); |
| 593 | if (len < 0) |
| 594 | len = 0; |
| 595 | *path_end = '\0'; |
| 596 | path_end[1 + len] = '\0'; |
| 597 | device_name = strstr(path_end + 1, "\nDEVNAME="); |
| 598 | if (device_name) { |
| 599 | device_name += sizeof("\nDEVNAME=")-1; |
| 600 | strchrnul(device_name, '\n')[0] = '\0'; |
| 601 | } else { |
| 602 | /* Fall back to just basename */ |
| 603 | device_name = (char*) bb_basename(path); |
| 604 | } |
| 605 | } |
| 606 | /* Determine device type */ |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 607 | /* |
| 608 | * http://kernel.org/doc/pending/hotplug.txt says that only |
Denis Vlasenko | a87045c | 2008-07-12 10:28:41 +0000 | [diff] [blame] | 609 | * "/sys/block/..." is for block devices. "/sys/bus" etc is not. |
Denys Vlasenko | 64bb95a | 2010-02-24 10:39:47 +0100 | [diff] [blame] | 610 | * But since 2.6.25 block devices are also in /sys/class/block. |
Denys Vlasenko | ea57f51 | 2012-05-18 11:39:57 +0200 | [diff] [blame] | 611 | * We use strstr("/block/") to forestall future surprises. |
| 612 | */ |
Denis Vlasenko | 9504e44 | 2008-10-29 01:19:15 +0000 | [diff] [blame] | 613 | type = S_IFCHR; |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 614 | if (strstr(path, "/block/") || (G.subsystem && is_prefixed_with(G.subsystem, "block"))) |
Denis Vlasenko | 9504e44 | 2008-10-29 01:19:15 +0000 | [diff] [blame] | 615 | type = S_IFBLK; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 616 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 617 | #if ENABLE_FEATURE_MDEV_CONF |
| 618 | G.rule_idx = 0; /* restart from the beginning (think mdev -s) */ |
| 619 | #endif |
| 620 | for (;;) { |
| 621 | const char *str_to_match; |
| 622 | regmatch_t off[1 + 9 * ENABLE_FEATURE_MDEV_RENAME_REGEXP]; |
| 623 | char *command; |
| 624 | char *alias; |
Denis Vlasenko | f2b39e0 | 2009-04-13 23:18:52 +0000 | [diff] [blame] | 625 | char aliaslink = aliaslink; /* for compiler */ |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 626 | char *node_name; |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 627 | const struct rule *rule; |
Denis Vlasenko | c7cc5a9 | 2009-04-19 01:27:20 +0000 | [diff] [blame] | 628 | |
Denys Vlasenko | b6beada | 2012-05-18 15:11:16 +0200 | [diff] [blame] | 629 | str_to_match = device_name; |
Denis Vlasenko | f2b39e0 | 2009-04-13 23:18:52 +0000 | [diff] [blame] | 630 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 631 | rule = next_rule(); |
Denis Vlasenko | 3798db5 | 2009-04-19 21:37:07 +0000 | [diff] [blame] | 632 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 633 | #if ENABLE_FEATURE_MDEV_CONF |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 634 | if (!env_matches(rule->envmatch)) |
| 635 | continue; |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 636 | if (rule->maj >= 0) { /* @maj,min rule */ |
| 637 | if (major != rule->maj) |
| 638 | continue; |
| 639 | if (minor < rule->min0 || minor > rule->min1) |
| 640 | continue; |
| 641 | memset(off, 0, sizeof(off)); |
| 642 | goto rule_matches; |
| 643 | } |
| 644 | if (rule->envvar) { /* $envvar=regex rule */ |
| 645 | str_to_match = getenv(rule->envvar); |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 646 | dbg3("getenv('%s'):'%s'", rule->envvar, str_to_match); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 647 | if (!str_to_match) |
| 648 | continue; |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 649 | } |
Denys Vlasenko | b6beada | 2012-05-18 15:11:16 +0200 | [diff] [blame] | 650 | /* else: str_to_match = device_name */ |
Denis Vlasenko | f2b39e0 | 2009-04-13 23:18:52 +0000 | [diff] [blame] | 651 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 652 | if (rule->regex_compiled) { |
| 653 | int regex_match = regexec(&rule->match, str_to_match, ARRAY_SIZE(off), off, 0); |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 654 | dbg3("regex_match for '%s':%d", str_to_match, regex_match); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 655 | //bb_error_msg("matches:"); |
| 656 | //for (int i = 0; i < ARRAY_SIZE(off); i++) { |
| 657 | // if (off[i].rm_so < 0) continue; |
| 658 | // bb_error_msg("match %d: '%.*s'\n", i, |
| 659 | // (int)(off[i].rm_eo - off[i].rm_so), |
| 660 | // device_name + off[i].rm_so); |
| 661 | //} |
Denis Vlasenko | cf26ab7 | 2008-03-27 22:45:44 +0000 | [diff] [blame] | 662 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 663 | if (regex_match != 0 |
| 664 | /* regexec returns whole pattern as "range" 0 */ |
| 665 | || off[0].rm_so != 0 |
| 666 | || (int)off[0].rm_eo != (int)strlen(str_to_match) |
| 667 | ) { |
| 668 | continue; /* this rule doesn't match */ |
Denis Vlasenko | 3798db5 | 2009-04-19 21:37:07 +0000 | [diff] [blame] | 669 | } |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 670 | } |
| 671 | /* else: it's final implicit "match-all" rule */ |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 672 | rule_matches: |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 673 | dbg2("rule matched, line %d", G.parser ? G.parser->lineno : -1); |
Denys Vlasenko | 4424dfd | 2013-03-17 23:01:17 +0100 | [diff] [blame] | 674 | #endif |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 675 | /* Build alias name */ |
| 676 | alias = NULL; |
| 677 | if (ENABLE_FEATURE_MDEV_RENAME && rule->ren_mov) { |
| 678 | aliaslink = rule->ren_mov[0]; |
| 679 | if (aliaslink == '!') { |
| 680 | /* "!": suppress node creation/deletion */ |
| 681 | major = -2; |
Denis Vlasenko | 3798db5 | 2009-04-19 21:37:07 +0000 | [diff] [blame] | 682 | } |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 683 | else if (aliaslink == '>' || aliaslink == '=') { |
| 684 | if (ENABLE_FEATURE_MDEV_RENAME_REGEXP) { |
| 685 | char *s; |
| 686 | char *p; |
| 687 | unsigned n; |
Denis Vlasenko | 3798db5 | 2009-04-19 21:37:07 +0000 | [diff] [blame] | 688 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 689 | /* substitute %1..9 with off[1..9], if any */ |
| 690 | n = 0; |
| 691 | s = rule->ren_mov; |
| 692 | while (*s) |
| 693 | if (*s++ == '%') |
| 694 | n++; |
Mike Frysinger | c881c73 | 2007-11-19 09:04:22 +0000 | [diff] [blame] | 695 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 696 | p = alias = xzalloc(strlen(rule->ren_mov) + n * strlen(str_to_match)); |
| 697 | s = rule->ren_mov + 1; |
| 698 | while (*s) { |
| 699 | *p = *s; |
| 700 | if ('%' == *s) { |
| 701 | unsigned i = (s[1] - '0'); |
| 702 | if (i <= 9 && off[i].rm_so >= 0) { |
| 703 | n = off[i].rm_eo - off[i].rm_so; |
| 704 | strncpy(p, str_to_match + off[i].rm_so, n); |
| 705 | p += n - 1; |
| 706 | s++; |
Denis Vlasenko | c7cc5a9 | 2009-04-19 01:27:20 +0000 | [diff] [blame] | 707 | } |
Denis Vlasenko | c7cc5a9 | 2009-04-19 01:27:20 +0000 | [diff] [blame] | 708 | } |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 709 | p++; |
| 710 | s++; |
Denis Vlasenko | f2f3868 | 2008-03-29 17:26:10 +0000 | [diff] [blame] | 711 | } |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 712 | } else { |
| 713 | alias = xstrdup(rule->ren_mov + 1); |
Denys Vlasenko | b38af7b | 2010-04-02 06:47:14 +0200 | [diff] [blame] | 714 | } |
Denis Vlasenko | 4461564 | 2008-03-29 13:10:57 +0000 | [diff] [blame] | 715 | } |
Denis Vlasenko | df96df9 | 2008-07-26 18:35:10 +0000 | [diff] [blame] | 716 | } |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 717 | dbg3("alias:'%s'", alias); |
Denis Vlasenko | c7cc5a9 | 2009-04-19 01:27:20 +0000 | [diff] [blame] | 718 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 719 | command = NULL; |
| 720 | IF_FEATURE_MDEV_EXEC(command = rule->r_cmd;) |
| 721 | if (command) { |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 722 | /* Are we running this command now? |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 723 | * Run @cmd on create, $cmd on delete, *cmd on any |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 724 | */ |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 725 | if ((command[0] == '@' && operation == OP_add) |
| 726 | || (command[0] == '$' && operation == OP_remove) |
| 727 | || (command[0] == '*') |
| 728 | ) { |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 729 | command++; |
| 730 | } else { |
| 731 | command = NULL; |
| 732 | } |
| 733 | } |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 734 | dbg3("command:'%s'", command); |
Denis Vlasenko | f2b39e0 | 2009-04-13 23:18:52 +0000 | [diff] [blame] | 735 | |
| 736 | /* "Execute" the line we found */ |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 737 | node_name = device_name; |
| 738 | if (ENABLE_FEATURE_MDEV_RENAME && alias) { |
| 739 | node_name = alias = build_alias(alias, device_name); |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 740 | dbg3("alias2:'%s'", alias); |
Denis Vlasenko | f2b39e0 | 2009-04-13 23:18:52 +0000 | [diff] [blame] | 741 | } |
| 742 | |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 743 | if (operation == OP_add && major >= 0) { |
| 744 | char *slash = strrchr(node_name, '/'); |
| 745 | if (slash) { |
| 746 | *slash = '\0'; |
Denys Vlasenko | 4609f47 | 2013-01-21 01:22:12 +0100 | [diff] [blame] | 747 | mkdir_recursive(node_name); |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 748 | *slash = '/'; |
| 749 | } |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 750 | if (ENABLE_FEATURE_MDEV_CONF) { |
| 751 | dbg1("mknod %s (%d,%d) %o" |
| 752 | " %u:%u", |
| 753 | node_name, major, minor, rule->mode | type, |
| 754 | rule->ugid.uid, rule->ugid.gid |
| 755 | ); |
| 756 | } else { |
| 757 | dbg1("mknod %s (%d,%d) %o", |
| 758 | node_name, major, minor, rule->mode | type |
| 759 | ); |
| 760 | } |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 761 | if (mknod(node_name, rule->mode | type, makedev(major, minor)) && errno != EEXIST) |
| 762 | bb_perror_msg("can't create '%s'", node_name); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 763 | if (ENABLE_FEATURE_MDEV_CONF) { |
| 764 | chmod(node_name, rule->mode); |
| 765 | chown(node_name, rule->ugid.uid, rule->ugid.gid); |
| 766 | } |
Denys Vlasenko | ea57f51 | 2012-05-18 11:39:57 +0200 | [diff] [blame] | 767 | if (major == G.root_major && minor == G.root_minor) |
| 768 | symlink(node_name, "root"); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 769 | if (ENABLE_FEATURE_MDEV_RENAME && alias) { |
Denys Vlasenko | 638dbc3 | 2012-02-06 01:00:00 +0100 | [diff] [blame] | 770 | if (aliaslink == '>') { |
| 771 | //TODO: on devtmpfs, device_name already exists and symlink() fails. |
| 772 | //End result is that instead of symlink, we have two nodes. |
| 773 | //What should be done? |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 774 | dbg1("symlink: %s", device_name); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 775 | symlink(node_name, device_name); |
Denys Vlasenko | 638dbc3 | 2012-02-06 01:00:00 +0100 | [diff] [blame] | 776 | } |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 777 | } |
| 778 | } |
| 779 | |
| 780 | if (ENABLE_FEATURE_MDEV_EXEC && command) { |
| 781 | /* setenv will leak memory, use putenv/unsetenv/free */ |
| 782 | char *s = xasprintf("%s=%s", "MDEV", node_name); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 783 | putenv(s); |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 784 | dbg1("running: %s", command); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 785 | if (system(command) == -1) |
| 786 | bb_perror_msg("can't run '%s'", command); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 787 | bb_unsetenv_and_free(s); |
| 788 | } |
| 789 | |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 790 | if (operation == OP_remove && major >= -1) { |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 791 | if (ENABLE_FEATURE_MDEV_RENAME && alias) { |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 792 | if (aliaslink == '>') { |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 793 | dbg1("unlink: %s", device_name); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 794 | unlink(device_name); |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 795 | } |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 796 | } |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 797 | dbg1("unlink: %s", node_name); |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 798 | unlink(node_name); |
| 799 | } |
| 800 | |
| 801 | if (ENABLE_FEATURE_MDEV_RENAME) |
| 802 | free(alias); |
| 803 | |
Denis Vlasenko | f2b39e0 | 2009-04-13 23:18:52 +0000 | [diff] [blame] | 804 | /* We found matching line. |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 805 | * Stop unless it was prefixed with '-' |
| 806 | */ |
| 807 | if (!ENABLE_FEATURE_MDEV_CONF || !rule->keep_matching) |
Denis Vlasenko | f2b39e0 | 2009-04-13 23:18:52 +0000 | [diff] [blame] | 808 | break; |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 809 | } /* for (;;) */ |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 810 | } |
| 811 | |
Denys Vlasenko | 20a3262 | 2016-09-07 14:09:01 +0200 | [diff] [blame] | 812 | /* File callback for /sys/ traversal. |
| 813 | * We act only on "/sys/.../dev" (pseudo)file |
| 814 | */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 815 | static int FAST_FUNC fileAction(const char *fileName, |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 816 | struct stat *statbuf UNUSED_PARAM, |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 817 | void *userData, |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 818 | int depth UNUSED_PARAM) |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 819 | { |
Denis Vlasenko | cf26ab7 | 2008-03-27 22:45:44 +0000 | [diff] [blame] | 820 | size_t len = strlen(fileName) - 4; /* can't underflow */ |
Denys Vlasenko | 20a3262 | 2016-09-07 14:09:01 +0200 | [diff] [blame] | 821 | char *path = userData; /* char array[PATH_MAX + SCRATCH_SIZE] */ |
| 822 | char subsys[PATH_MAX]; |
| 823 | int res; |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 824 | |
Denys Vlasenko | 20a3262 | 2016-09-07 14:09:01 +0200 | [diff] [blame] | 825 | /* Is it a ".../dev" file? (len check is for paranoid reasons) */ |
| 826 | if (strcmp(fileName + len, "/dev") != 0 || len >= PATH_MAX - 32) |
| 827 | return FALSE; /* not .../dev */ |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 828 | |
Denys Vlasenko | 20a3262 | 2016-09-07 14:09:01 +0200 | [diff] [blame] | 829 | strcpy(path, fileName); |
| 830 | path[len] = '\0'; |
| 831 | |
| 832 | /* Read ".../subsystem" symlink in the same directory where ".../dev" is */ |
| 833 | strcpy(subsys, path); |
| 834 | strcpy(subsys + len, "/subsystem"); |
| 835 | res = readlink(subsys, subsys, sizeof(subsys)-1); |
| 836 | if (res > 0) { |
| 837 | subsys[res] = '\0'; |
| 838 | free(G.subsystem); |
| 839 | if (G.subsys_env) { |
| 840 | bb_unsetenv_and_free(G.subsys_env); |
| 841 | G.subsys_env = NULL; |
| 842 | } |
| 843 | /* Set G.subsystem and $SUBSYSTEM from symlink's last component */ |
| 844 | G.subsystem = strrchr(subsys, '/'); |
| 845 | if (G.subsystem) { |
| 846 | G.subsystem = xstrdup(G.subsystem + 1); |
| 847 | G.subsys_env = xasprintf("%s=%s", "SUBSYSTEM", G.subsystem); |
| 848 | putenv(G.subsys_env); |
| 849 | } |
| 850 | } |
| 851 | |
| 852 | make_device(/*DEVNAME:*/ NULL, path, OP_add); |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 853 | |
Mike Frysinger | b51fd35 | 2007-06-13 09:24:50 +0000 | [diff] [blame] | 854 | return TRUE; |
| 855 | } |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 856 | |
Mike Frysinger | b51fd35 | 2007-06-13 09:24:50 +0000 | [diff] [blame] | 857 | /* Directory callback for /sys/ traversal */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 858 | static int FAST_FUNC dirAction(const char *fileName UNUSED_PARAM, |
| 859 | struct stat *statbuf UNUSED_PARAM, |
| 860 | void *userData UNUSED_PARAM, |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 861 | int depth) |
Mike Frysinger | b51fd35 | 2007-06-13 09:24:50 +0000 | [diff] [blame] | 862 | { |
| 863 | return (depth >= MAX_SYSFS_DEPTH ? SKIP : TRUE); |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 864 | } |
| 865 | |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 866 | /* For the full gory details, see linux/Documentation/firmware_class/README |
| 867 | * |
| 868 | * Firmware loading works like this: |
| 869 | * - kernel sets FIRMWARE env var |
| 870 | * - userspace checks /lib/firmware/$FIRMWARE |
| 871 | * - userspace waits for /sys/$DEVPATH/loading to appear |
| 872 | * - userspace writes "1" to /sys/$DEVPATH/loading |
| 873 | * - userspace copies /lib/firmware/$FIRMWARE into /sys/$DEVPATH/data |
| 874 | * - userspace writes "0" (worked) or "-1" (failed) to /sys/$DEVPATH/loading |
| 875 | * - kernel loads firmware into device |
| 876 | */ |
Denis Vlasenko | c7cc5a9 | 2009-04-19 01:27:20 +0000 | [diff] [blame] | 877 | static void load_firmware(const char *firmware, const char *sysfs_path) |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 878 | { |
| 879 | int cnt; |
Christoph Lohmann | 25cb5aa | 2012-05-19 23:39:45 +0200 | [diff] [blame] | 880 | int firmware_fd, loading_fd; |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 881 | |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 882 | /* check for /lib/firmware/$FIRMWARE */ |
Denys Vlasenko | 20a3262 | 2016-09-07 14:09:01 +0200 | [diff] [blame] | 883 | firmware_fd = -1; |
| 884 | if (chdir("/lib/firmware") == 0) |
| 885 | firmware_fd = open(firmware, O_RDONLY); /* can fail */ |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 886 | |
| 887 | /* check for /sys/$DEVPATH/loading ... give 30 seconds to appear */ |
| 888 | xchdir(sysfs_path); |
| 889 | for (cnt = 0; cnt < 30; ++cnt) { |
| 890 | loading_fd = open("loading", O_WRONLY); |
Christoph Lohmann | 25cb5aa | 2012-05-19 23:39:45 +0200 | [diff] [blame] | 891 | if (loading_fd >= 0) |
Denis Vlasenko | cf26ab7 | 2008-03-27 22:45:44 +0000 | [diff] [blame] | 892 | goto loading; |
| 893 | sleep(1); |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 894 | } |
Denis Vlasenko | cf26ab7 | 2008-03-27 22:45:44 +0000 | [diff] [blame] | 895 | goto out; |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 896 | |
Denis Vlasenko | cf26ab7 | 2008-03-27 22:45:44 +0000 | [diff] [blame] | 897 | loading: |
Christoph Lohmann | 25cb5aa | 2012-05-19 23:39:45 +0200 | [diff] [blame] | 898 | cnt = 0; |
| 899 | if (firmware_fd >= 0) { |
| 900 | int data_fd; |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 901 | |
Christoph Lohmann | 25cb5aa | 2012-05-19 23:39:45 +0200 | [diff] [blame] | 902 | /* tell kernel we're loading by "echo 1 > /sys/$DEVPATH/loading" */ |
| 903 | if (full_write(loading_fd, "1", 1) != 1) |
| 904 | goto out; |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 905 | |
Christoph Lohmann | 25cb5aa | 2012-05-19 23:39:45 +0200 | [diff] [blame] | 906 | /* load firmware into /sys/$DEVPATH/data */ |
| 907 | data_fd = open("data", O_WRONLY); |
| 908 | if (data_fd < 0) |
| 909 | goto out; |
| 910 | cnt = bb_copyfd_eof(firmware_fd, data_fd); |
| 911 | if (ENABLE_FEATURE_CLEAN_UP) |
| 912 | close(data_fd); |
| 913 | } |
| 914 | |
| 915 | /* Tell kernel result by "echo [0|-1] > /sys/$DEVPATH/loading" |
| 916 | * Note: we emit -1 also if firmware file wasn't found. |
| 917 | * There are cases when otherwise kernel would wait for minutes |
| 918 | * before timing out. |
| 919 | */ |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 920 | if (cnt > 0) |
Denis Vlasenko | cf26ab7 | 2008-03-27 22:45:44 +0000 | [diff] [blame] | 921 | full_write(loading_fd, "0", 1); |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 922 | else |
Denis Vlasenko | cf26ab7 | 2008-03-27 22:45:44 +0000 | [diff] [blame] | 923 | full_write(loading_fd, "-1", 2); |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 924 | |
| 925 | out: |
Denys Vlasenko | ba76b7a | 2013-02-04 23:35:27 +0100 | [diff] [blame] | 926 | xchdir("/dev"); |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 927 | if (ENABLE_FEATURE_CLEAN_UP) { |
| 928 | close(firmware_fd); |
| 929 | close(loading_fd); |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 930 | } |
| 931 | } |
| 932 | |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 933 | static char *curtime(void) |
| 934 | { |
| 935 | struct timeval tv; |
| 936 | gettimeofday(&tv, NULL); |
Denys Vlasenko | bd77e9d | 2015-04-19 18:54:49 +0200 | [diff] [blame] | 937 | sprintf( |
| 938 | strftime_HHMMSS(G.timestr, sizeof(G.timestr), &tv.tv_sec), |
| 939 | ".%06u", |
| 940 | (unsigned)tv.tv_usec |
| 941 | ); |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 942 | return G.timestr; |
| 943 | } |
| 944 | |
| 945 | static void open_mdev_log(const char *seq, unsigned my_pid) |
| 946 | { |
| 947 | int logfd = open("mdev.log", O_WRONLY | O_APPEND); |
| 948 | if (logfd >= 0) { |
| 949 | xmove_fd(logfd, STDERR_FILENO); |
| 950 | G.verbose = 2; |
| 951 | applet_name = xasprintf("%s[%s]", applet_name, seq ? seq : utoa(my_pid)); |
| 952 | } |
| 953 | } |
| 954 | |
| 955 | /* If it exists, does /dev/mdev.seq match $SEQNUM? |
| 956 | * If it does not match, earlier mdev is running |
| 957 | * in parallel, and we need to wait. |
| 958 | * Active mdev pokes us with SIGCHLD to check the new file. |
| 959 | */ |
| 960 | static int |
Denys Vlasenko | ad79551 | 2015-04-19 18:55:12 +0200 | [diff] [blame] | 961 | wait_for_seqfile(unsigned expected_seq) |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 962 | { |
| 963 | /* We time out after 2 sec */ |
| 964 | static const struct timespec ts = { 0, 32*1000*1000 }; |
| 965 | int timeout = 2000 / 32; |
| 966 | int seq_fd = -1; |
| 967 | int do_once = 1; |
| 968 | sigset_t set_CHLD; |
| 969 | |
| 970 | sigemptyset(&set_CHLD); |
| 971 | sigaddset(&set_CHLD, SIGCHLD); |
| 972 | sigprocmask(SIG_BLOCK, &set_CHLD, NULL); |
| 973 | |
| 974 | for (;;) { |
| 975 | int seqlen; |
Denys Vlasenko | ad79551 | 2015-04-19 18:55:12 +0200 | [diff] [blame] | 976 | char seqbuf[sizeof(long)*3 + 2]; |
| 977 | unsigned seqbufnum; |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 978 | |
| 979 | if (seq_fd < 0) { |
| 980 | seq_fd = open("mdev.seq", O_RDWR); |
| 981 | if (seq_fd < 0) |
| 982 | break; |
Denys Vlasenko | ad79551 | 2015-04-19 18:55:12 +0200 | [diff] [blame] | 983 | close_on_exec_on(seq_fd); |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 984 | } |
| 985 | seqlen = pread(seq_fd, seqbuf, sizeof(seqbuf) - 1, 0); |
| 986 | if (seqlen < 0) { |
| 987 | close(seq_fd); |
| 988 | seq_fd = -1; |
| 989 | break; |
| 990 | } |
| 991 | seqbuf[seqlen] = '\0'; |
Denys Vlasenko | 26a8b9f | 2014-09-08 18:19:15 +0200 | [diff] [blame] | 992 | if (seqbuf[0] == '\n' || seqbuf[0] == '\0') { |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 993 | /* seed file: write out seq ASAP */ |
Denys Vlasenko | ad79551 | 2015-04-19 18:55:12 +0200 | [diff] [blame] | 994 | xwrite_str(seq_fd, utoa(expected_seq)); |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 995 | xlseek(seq_fd, 0, SEEK_SET); |
| 996 | dbg2("first seq written"); |
| 997 | break; |
| 998 | } |
Denys Vlasenko | ad79551 | 2015-04-19 18:55:12 +0200 | [diff] [blame] | 999 | seqbufnum = atoll(seqbuf); |
| 1000 | if (seqbufnum == expected_seq) { |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 1001 | /* correct idx */ |
| 1002 | break; |
| 1003 | } |
Denys Vlasenko | ad79551 | 2015-04-19 18:55:12 +0200 | [diff] [blame] | 1004 | if (seqbufnum > expected_seq) { |
| 1005 | /* a later mdev runs already (this was seen by users to happen) */ |
| 1006 | /* do not overwrite seqfile on exit */ |
| 1007 | close(seq_fd); |
| 1008 | seq_fd = -1; |
| 1009 | break; |
| 1010 | } |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 1011 | if (do_once) { |
Denys Vlasenko | ad79551 | 2015-04-19 18:55:12 +0200 | [diff] [blame] | 1012 | dbg2("%s mdev.seq='%s', need '%u'", curtime(), seqbuf, expected_seq); |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 1013 | do_once = 0; |
| 1014 | } |
| 1015 | if (sigtimedwait(&set_CHLD, NULL, &ts) >= 0) { |
| 1016 | dbg3("woken up"); |
| 1017 | continue; /* don't decrement timeout! */ |
| 1018 | } |
| 1019 | if (--timeout == 0) { |
Denys Vlasenko | bd77e9d | 2015-04-19 18:54:49 +0200 | [diff] [blame] | 1020 | dbg1("%s mdev.seq='%s'", "timed out", seqbuf); |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 1021 | break; |
| 1022 | } |
| 1023 | } |
| 1024 | sigprocmask(SIG_UNBLOCK, &set_CHLD, NULL); |
| 1025 | return seq_fd; |
| 1026 | } |
| 1027 | |
| 1028 | static void signal_mdevs(unsigned my_pid) |
| 1029 | { |
| 1030 | procps_status_t* p = NULL; |
| 1031 | while ((p = procps_scan(p, PSSCAN_ARGV0)) != NULL) { |
| 1032 | if (p->pid != my_pid |
| 1033 | && p->argv0 |
| 1034 | && strcmp(bb_basename(p->argv0), "mdev") == 0 |
| 1035 | ) { |
| 1036 | kill(p->pid, SIGCHLD); |
| 1037 | } |
| 1038 | } |
| 1039 | } |
| 1040 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 1041 | int mdev_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | d986048 | 2008-07-12 10:23:16 +0000 | [diff] [blame] | 1042 | int mdev_main(int argc UNUSED_PARAM, char **argv) |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 1043 | { |
Denis Vlasenko | cf26ab7 | 2008-03-27 22:45:44 +0000 | [diff] [blame] | 1044 | RESERVE_CONFIG_BUFFER(temp, PATH_MAX + SCRATCH_SIZE); |
Rob Landley | 29e08ff | 2006-01-12 06:13:50 +0000 | [diff] [blame] | 1045 | |
Denys Vlasenko | 1671424 | 2011-09-21 01:59:15 +0200 | [diff] [blame] | 1046 | INIT_G(); |
| 1047 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 1048 | #if ENABLE_FEATURE_MDEV_CONF |
| 1049 | G.filename = "/etc/mdev.conf"; |
| 1050 | #endif |
| 1051 | |
Denis Vlasenko | d48e81f | 2008-07-06 07:00:11 +0000 | [diff] [blame] | 1052 | /* We can be called as hotplug helper */ |
Denis Vlasenko | f4e6bd0 | 2008-05-31 18:27:58 +0000 | [diff] [blame] | 1053 | /* Kernel cannot provide suitable stdio fds for us, do it ourself */ |
Denis Vlasenko | d48e81f | 2008-07-06 07:00:11 +0000 | [diff] [blame] | 1054 | bb_sanitize_stdio(); |
Denis Vlasenko | f4e6bd0 | 2008-05-31 18:27:58 +0000 | [diff] [blame] | 1055 | |
Denis Vlasenko | 3798db5 | 2009-04-19 21:37:07 +0000 | [diff] [blame] | 1056 | /* Force the configuration file settings exactly */ |
| 1057 | umask(0); |
| 1058 | |
Denis Vlasenko | 4e5f82c | 2007-06-03 22:30:22 +0000 | [diff] [blame] | 1059 | xchdir("/dev"); |
Rob Landley | 15fe2e1 | 2006-05-08 02:53:23 +0000 | [diff] [blame] | 1060 | |
Denis Vlasenko | aafbae6 | 2009-04-13 13:33:02 +0000 | [diff] [blame] | 1061 | if (argv[1] && strcmp(argv[1], "-s") == 0) { |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 1062 | /* |
| 1063 | * Scan: mdev -s |
Mike Frysinger | c881c73 | 2007-11-19 09:04:22 +0000 | [diff] [blame] | 1064 | */ |
Rob Landley | a7e3d05 | 2006-02-21 06:11:13 +0000 | [diff] [blame] | 1065 | struct stat st; |
| 1066 | |
Denys Vlasenko | 3eccd7e | 2011-09-22 03:46:30 +0200 | [diff] [blame] | 1067 | #if ENABLE_FEATURE_MDEV_CONF |
| 1068 | /* Same as xrealloc_vector(NULL, 4, 0): */ |
| 1069 | G.rule_vec = xzalloc((1 << 4) * sizeof(*G.rule_vec)); |
| 1070 | #endif |
Denis Vlasenko | f46be09 | 2006-10-16 19:39:37 +0000 | [diff] [blame] | 1071 | xstat("/", &st); |
Denys Vlasenko | 64bb95a | 2010-02-24 10:39:47 +0100 | [diff] [blame] | 1072 | G.root_major = major(st.st_dev); |
| 1073 | G.root_minor = minor(st.st_dev); |
Mike Frysinger | b51fd35 | 2007-06-13 09:24:50 +0000 | [diff] [blame] | 1074 | |
Denys Vlasenko | 40b97fb | 2013-02-26 00:40:46 +0100 | [diff] [blame] | 1075 | putenv((char*)"ACTION=add"); |
| 1076 | |
Denys Vlasenko | 20a3262 | 2016-09-07 14:09:01 +0200 | [diff] [blame] | 1077 | /* Create all devices from /sys/dev hierarchy */ |
| 1078 | recursive_action("/sys/dev", |
| 1079 | ACTION_RECURSE | ACTION_FOLLOWLINKS, |
| 1080 | fileAction, dirAction, temp, 0); |
Rob Landley | 29e08ff | 2006-01-12 06:13:50 +0000 | [diff] [blame] | 1081 | } else { |
Denis Vlasenko | 1fb26da | 2009-04-13 02:15:57 +0000 | [diff] [blame] | 1082 | char *fw; |
Denis Vlasenko | 018bee6 | 2008-07-15 22:33:13 +0000 | [diff] [blame] | 1083 | char *seq; |
| 1084 | char *action; |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 1085 | char *env_devname; |
| 1086 | char *env_devpath; |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 1087 | unsigned my_pid; |
Denys Vlasenko | ad79551 | 2015-04-19 18:55:12 +0200 | [diff] [blame] | 1088 | unsigned seqnum = seqnum; /* for compiler */ |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 1089 | int seq_fd; |
Bernhard Reutner-Fischer | 6531f09 | 2009-10-26 23:27:04 +0100 | [diff] [blame] | 1090 | smalluint op; |
Denis Vlasenko | 018bee6 | 2008-07-15 22:33:13 +0000 | [diff] [blame] | 1091 | |
Mike Frysinger | c881c73 | 2007-11-19 09:04:22 +0000 | [diff] [blame] | 1092 | /* Hotplug: |
Denis Vlasenko | 065c714 | 2009-04-13 22:23:02 +0000 | [diff] [blame] | 1093 | * env ACTION=... DEVPATH=... SUBSYSTEM=... [SEQNUM=...] mdev |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 1094 | * ACTION can be "add", "remove", "change" |
Mike Frysinger | c881c73 | 2007-11-19 09:04:22 +0000 | [diff] [blame] | 1095 | * DEVPATH is like "/block/sda" or "/class/input/mice" |
| 1096 | */ |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 1097 | env_devname = getenv("DEVNAME"); /* can be NULL */ |
Denys Vlasenko | 64bb95a | 2010-02-24 10:39:47 +0100 | [diff] [blame] | 1098 | G.subsystem = getenv("SUBSYSTEM"); |
Denys Vlasenko | d35cbad | 2013-04-02 14:37:06 +0200 | [diff] [blame] | 1099 | action = getenv("ACTION"); |
| 1100 | env_devpath = getenv("DEVPATH"); |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 1101 | if (!action || !env_devpath /*|| !G.subsystem*/) |
Mike Frysinger | a421ba8 | 2006-02-03 00:25:37 +0000 | [diff] [blame] | 1102 | bb_show_usage(); |
Denis Vlasenko | 1fb26da | 2009-04-13 02:15:57 +0000 | [diff] [blame] | 1103 | fw = getenv("FIRMWARE"); |
Denis Vlasenko | 018bee6 | 2008-07-15 22:33:13 +0000 | [diff] [blame] | 1104 | seq = getenv("SEQNUM"); |
Denys Vlasenko | d35cbad | 2013-04-02 14:37:06 +0200 | [diff] [blame] | 1105 | op = index_in_strings(keywords, action); |
Denis Vlasenko | 1fb26da | 2009-04-13 02:15:57 +0000 | [diff] [blame] | 1106 | |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 1107 | my_pid = getpid(); |
| 1108 | open_mdev_log(seq, my_pid); |
Denis Vlasenko | 018bee6 | 2008-07-15 22:33:13 +0000 | [diff] [blame] | 1109 | |
Denys Vlasenko | ad79551 | 2015-04-19 18:55:12 +0200 | [diff] [blame] | 1110 | seq_fd = -1; |
| 1111 | if (seq) { |
| 1112 | seqnum = atoll(seq); |
| 1113 | seq_fd = wait_for_seqfile(seqnum); |
| 1114 | } |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 1115 | |
| 1116 | dbg1("%s " |
| 1117 | "ACTION:%s SUBSYSTEM:%s DEVNAME:%s DEVPATH:%s" |
| 1118 | "%s%s", |
| 1119 | curtime(), |
| 1120 | action, G.subsystem, env_devname, env_devpath, |
| 1121 | fw ? " FW:" : "", fw ? fw : "" |
| 1122 | ); |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 1123 | |
| 1124 | snprintf(temp, PATH_MAX, "/sys%s", env_devpath); |
Bernhard Reutner-Fischer | 6531f09 | 2009-10-26 23:27:04 +0100 | [diff] [blame] | 1125 | if (op == OP_remove) { |
Denis Vlasenko | 1fb26da | 2009-04-13 02:15:57 +0000 | [diff] [blame] | 1126 | /* Ignoring "remove firmware". It was reported |
| 1127 | * to happen and to cause erroneous deletion |
| 1128 | * of device nodes. */ |
| 1129 | if (!fw) |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 1130 | make_device(env_devname, temp, op); |
Denis Vlasenko | 1fb26da | 2009-04-13 02:15:57 +0000 | [diff] [blame] | 1131 | } |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 1132 | else { |
Denys Vlasenko | 516530c | 2012-05-18 04:45:35 +0200 | [diff] [blame] | 1133 | make_device(env_devname, temp, op); |
Denis Vlasenko | cf26ab7 | 2008-03-27 22:45:44 +0000 | [diff] [blame] | 1134 | if (ENABLE_FEATURE_MDEV_LOAD_FIRMWARE) { |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 1135 | if (op == OP_add && fw) |
Denis Vlasenko | cf26ab7 | 2008-03-27 22:45:44 +0000 | [diff] [blame] | 1136 | load_firmware(fw, temp); |
| 1137 | } |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 1138 | } |
Denis Vlasenko | 018bee6 | 2008-07-15 22:33:13 +0000 | [diff] [blame] | 1139 | |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 1140 | dbg1("%s exiting", curtime()); |
| 1141 | if (seq_fd >= 0) { |
Denys Vlasenko | ad79551 | 2015-04-19 18:55:12 +0200 | [diff] [blame] | 1142 | xwrite_str(seq_fd, utoa(seqnum + 1)); |
Denys Vlasenko | 5bce135 | 2013-02-27 10:51:41 +0100 | [diff] [blame] | 1143 | signal_mdevs(my_pid); |
Denis Vlasenko | 018bee6 | 2008-07-15 22:33:13 +0000 | [diff] [blame] | 1144 | } |
Rob Landley | 29e08ff | 2006-01-12 06:13:50 +0000 | [diff] [blame] | 1145 | } |
| 1146 | |
Mike Frysinger | c881c73 | 2007-11-19 09:04:22 +0000 | [diff] [blame] | 1147 | if (ENABLE_FEATURE_CLEAN_UP) |
| 1148 | RELEASE_CONFIG_BUFFER(temp); |
| 1149 | |
Denis Vlasenko | aafbae6 | 2009-04-13 13:33:02 +0000 | [diff] [blame] | 1150 | return EXIT_SUCCESS; |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 1151 | } |