chiark / gitweb /
[PATCH] remove archive file if we changed something
[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         memset(&act, 0x00, sizeof(act));
112         act.sa_handler = (void (*) (int))sig_handler;
113         sigemptyset (&act.sa_mask);
114         act.sa_flags = 0;
115         /* alarm must not restart syscalls*/
116         sigaction(SIGALRM, &act, NULL);
117         sigaction(SIGINT, &act, NULL);
118         sigaction(SIGTERM, &act, NULL);
119
120         /* trigger timeout to interrupt blocking syscalls */
121         alarm(ALARM_TIMEOUT);
122
123         udev_set_values(&udev, devpath, subsystem, action);
124
125         if (strstr(argv[0], "udevstart") || (argv[1] != NULL && strstr(argv[1], "udevstart"))) {
126                 dbg("udevstart");
127
128                 /* disable all logging, as it's much too slow on some facilities */
129                 udev_log = 0;
130
131                 namedev_init();
132                 retval = udev_start();
133                 goto exit;
134         }
135
136         if (!action) {
137                 dbg("no action");
138                 goto hotplug;
139         }
140
141         if (!subsystem) {
142                 dbg("no subsystem");
143                 goto hotplug;
144         }
145
146         if (!devpath) {
147                 dbg("no devpath");
148                 goto hotplug;
149         }
150
151         /* export logging flag, as called scripts may want to do the same as udev */
152         if (udev_log)
153                 setenv("UDEV_LOG", "1", 1);
154
155         if ((strncmp(devpath, "/block/", 7) == 0) || (strncmp(devpath, "/class/", 7) == 0)) {
156                 if (strcmp(action, "add") == 0) {
157                         /* wait for sysfs and possibly add node */
158                         dbg("udev add");
159
160                         /* skip blacklisted subsystems */
161                         if (udev.type != 'n' && subsystem_expect_no_dev(udev.subsystem)) {
162                                 dbg("don't care about '%s' devices", udev.subsystem);
163                                 goto hotplug;
164                         };
165
166                         snprintf(path, SYSFS_PATH_MAX, "%s%s", sysfs_path, udev.devpath);
167                         class_dev = wait_class_device_open(path);
168                         if (class_dev == NULL) {
169                                 dbg ("open class device failed");
170                                 goto hotplug;
171                         }
172                         dbg("opened class_dev->name='%s'", class_dev->name);
173
174                         wait_for_class_device(class_dev, &error);
175
176                         /* init rules, permissions */
177                         namedev_init();
178
179                         /* name, create node, store in db */
180                         retval = udev_add_device(&udev, class_dev);
181
182                         /* run dev.d/ scripts if we created a node or changed a netif name */
183                         if (udev.devname[0] != '\0') {
184                                 setenv("DEVNAME", udev.devname, 1);
185                                 udev_multiplex_directory(&udev, DEVD_DIR, DEVD_SUFFIX);
186                         }
187
188                         sysfs_close_class_device(class_dev);
189                 } else if (strcmp(action, "remove") == 0) {
190                         /* possibly remove a node */
191                         dbg("udev remove");
192
193                         /* get node from db, remove db-entry, delete created node */
194                         retval = udev_remove_device(&udev);
195
196                         /* Set the DEVNAME if known */
197                         if (udev.devname[0] != '\0') {
198                                 setenv("DEVNAME", udev.devname, 1);
199                         }
200                         /* run dev.d/ scripts if we're not instructed to ignore the event */
201                         if (udev.devname[0] != '\0') {
202                                 setenv("DEVNAME", udev.devname, 1);
203                                 udev_multiplex_directory(&udev, DEVD_DIR, DEVD_SUFFIX);
204                         }
205
206                 }
207         } else if ((strncmp(devpath, "/devices/", 9) == 0)) {
208                 if (strcmp(action, "add") == 0) {
209                         /* wait for sysfs */
210                         dbg("devices add");
211
212                         snprintf(path, SYSFS_PATH_MAX, "%s%s", sysfs_path, devpath);
213                         devices_dev = wait_devices_device_open(path);
214                         if (!devices_dev) {
215                                 dbg("devices device unavailable (probably remove has beaten us)");
216                                 goto hotplug;
217                         }
218                         dbg("devices device opened '%s'", path);
219
220                         wait_for_devices_device(devices_dev, &error);
221
222                         sysfs_close_device(devices_dev);
223                 } else if (strcmp(action, "remove") == 0) {
224                         dbg("devices remove");
225                 }
226         } else {
227                 dbg("unhandled");
228         }
229
230 hotplug:
231         if (manage_hotplug_event())
232                 udev_multiplex_directory(&udev, HOTPLUGD_DIR, HOTPLUG_SUFFIX);
233
234 exit:
235         logging_close();
236         return retval;
237 }