chiark / gitweb /
ca79bb4ec0e37812770ceaea2b76acf901d9e438
[elogind.git] / udev.c
1 /*
2  * udev.c
3  *
4  * Userspace devfs
5  *
6  * Copyright (C) 2003,2004 Greg Kroah-Hartman <greg@kroah.com>
7  * Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
8  *
9  *      This program is free software; you can redistribute it and/or modify it
10  *      under the terms of the GNU General Public License as published by the
11  *      Free Software Foundation version 2 of the License.
12  * 
13  *      This program is distributed in the hope that it will be useful, but
14  *      WITHOUT ANY WARRANTY; without even the implied warranty of
15  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  *      General Public License for more details.
17  * 
18  *      You should have received a copy of the GNU General Public License along
19  *      with this program; if not, write to the Free Software Foundation, Inc.,
20  *      675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  */
23
24 #include <stdio.h>
25 #include <stddef.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <fcntl.h>
29 #include <ctype.h>
30 #include <errno.h>
31 #include <signal.h>
32 #include <unistd.h>
33
34 #include "libsysfs/sysfs/libsysfs.h"
35 #include "udev.h"
36 #include "udev_utils.h"
37 #include "udev_sysfs.h"
38 #include "udev_version.h"
39 #include "namedev.h"
40 #include "logging.h"
41
42
43 #ifdef LOG
44 unsigned char logname[LOGNAME_SIZE];
45 void log_message(int level, const char *format, ...)
46 {
47         va_list args;
48
49         if (!udev_log)
50                 return;
51
52         va_start(args, format);
53         vsyslog(level, format, args);
54         va_end(args);
55 }
56 #endif
57
58 /* (for now) true if udevsend is the helper */
59 static int manage_hotplug_event(void) {
60         char helper[256];
61         int fd;
62         int len;
63
64         fd = open("/proc/sys/kernel/hotplug", O_RDONLY);
65         if (fd < 0)
66                 goto exit;
67
68         len = read(fd, helper, 256);
69         close(fd);
70
71         if (len < 0)
72                 goto exit;
73         helper[len] = '\0';
74
75         if (strstr(helper, "udevsend"))
76                 return 1;
77
78 exit:
79         return 0;
80 }
81
82 static void asmlinkage sig_handler(int signum)
83 {
84         switch (signum) {
85                 case SIGALRM:
86                         exit(1);
87                 case SIGINT:
88                 case SIGTERM:
89                         exit(20 + signum);
90         }
91 }
92
93 int main(int argc, char *argv[], char *envp[])
94 {
95         struct sigaction act;
96         struct sysfs_class_device *class_dev;
97         struct sysfs_device *devices_dev;
98         struct udevice udev;
99         char path[SYSFS_PATH_MAX];
100         int retval = -EINVAL;
101         const char *error;
102         const char *action = getenv("ACTION");
103         const char *devpath = getenv("DEVPATH");
104         const char *subsystem = argv[1];
105
106         dbg("version %s", UDEV_VERSION);
107         logging_init("udev");
108         udev_init_config();
109
110         /* set signal handlers */
111         act.sa_handler = (void (*) (int))sig_handler;
112         sigemptyset (&act.sa_mask);
113         act.sa_flags = 0;
114         sigaction(SIGALRM, &act, NULL);
115         sigaction(SIGINT, &act, NULL);
116         sigaction(SIGTERM, &act, NULL);
117
118         /* trigger timeout to prevent hanging processes */
119         alarm(ALARM_TIMEOUT);
120
121         action = getenv("ACTION");
122         devpath = getenv("DEVPATH");
123         subsystem = getenv("SUBSYSTEM");
124         /* older kernels passed the SUBSYSTEM only as argument */
125         if (!subsystem && argc == 2)
126                 subsystem = argv[1];
127         udev_init_device(&udev, devpath, subsystem);
128
129         if (strstr(argv[0], "udevstart") || (argc == 2 && strstr(argv[1], "udevstart"))) {
130                 dbg("udevstart");
131
132                 /* disable all logging, as it's much too slow on some facilities */
133                 udev_log = 0;
134
135                 namedev_init();
136                 retval = udev_start();
137                 goto exit;
138         }
139
140         if (!action) {
141                 dbg("no action");
142                 goto hotplug;
143         }
144
145         if (!subsystem) {
146                 dbg("no subsystem");
147                 goto hotplug;
148         }
149
150         if (!devpath) {
151                 dbg("no devpath");
152                 goto hotplug;
153         }
154
155         /* export logging flag, as called scripts may want to do the same as udev */
156         if (udev_log)
157                 setenv("UDEV_LOG", "1", 1);
158
159         if ((strncmp(devpath, "/block/", 7) == 0) || (strncmp(devpath, "/class/", 7) == 0)) {
160                 if (strcmp(action, "add") == 0) {
161                         /* wait for sysfs and possibly add node */
162                         dbg("udev add");
163
164                         /* skip subsystems without "dev", but handle net devices */
165                         if (udev.type != 'n' && subsystem_expect_no_dev(udev.subsystem)) {
166                                 dbg("don't care about '%s' devices", udev.subsystem);
167                                 goto hotplug;
168                         }
169
170                         snprintf(path, SYSFS_PATH_MAX, "%s%s", sysfs_path, udev.devpath);
171                         class_dev = wait_class_device_open(path);
172                         if (class_dev == NULL) {
173                                 dbg ("open class device failed");
174                                 goto hotplug;
175                         }
176                         dbg("opened class_dev->name='%s'", class_dev->name);
177
178                         wait_for_class_device(class_dev, &error);
179
180                         /* init rules, permissions */
181                         namedev_init();
182
183                         /* name, create node, store in db */
184                         retval = udev_add_device(&udev, class_dev);
185
186                         sysfs_close_class_device(class_dev);
187                 } else if (strcmp(action, "remove") == 0) {
188                         /* possibly remove a node */
189                         dbg("udev remove");
190
191                         /* skip subsystems without "dev" */
192                         if (subsystem_expect_no_dev(udev.subsystem)) {
193                                 dbg("don't care about '%s' devices", udev.subsystem);
194                                 goto hotplug;
195                         }
196
197                         /* get node from db, remove db-entry, delete created node */
198                         retval = udev_remove_device(&udev);
199                 }
200
201                 /* run dev.d/ scripts if we created/deleted a node or changed a netif name */
202                 if (udev_dev_d && udev.devname[0] != '\0') {
203                         setenv("DEVNAME", udev.devname, 1);
204                         udev_multiplex_directory(&udev, DEVD_DIR, DEVD_SUFFIX);
205                 }
206         } else if ((strncmp(devpath, "/devices/", 9) == 0)) {
207                 if (strcmp(action, "add") == 0) {
208                         /* wait for sysfs */
209                         dbg("devices add");
210
211                         snprintf(path, SYSFS_PATH_MAX, "%s%s", sysfs_path, devpath);
212                         devices_dev = wait_devices_device_open(path);
213                         if (!devices_dev) {
214                                 dbg("devices device unavailable (probably remove has beaten us)");
215                                 goto hotplug;
216                         }
217                         dbg("devices device opened '%s'", path);
218
219                         wait_for_devices_device(devices_dev, &error);
220
221                         sysfs_close_device(devices_dev);
222                 } else if (strcmp(action, "remove") == 0) {
223                         dbg("devices remove");
224                 }
225         } else {
226                 dbg("unhandled");
227         }
228
229 hotplug:
230         if (udev_hotplug_d && manage_hotplug_event())
231                 udev_multiplex_directory(&udev, HOTPLUGD_DIR, HOTPLUG_SUFFIX);
232
233 exit:
234         logging_close();
235         return retval;
236 }