chiark / gitweb /
allow to overwrite the configured udev_root by exporting UDEV_ROOT
[elogind.git] / udev.c
1 /*
2  * udev.c
3  *
4  * Copyright (C) 2003-2004 Greg Kroah-Hartman <greg@kroah.com>
5  * Copyright (C) 2004-2005 Kay Sievers <kay.sievers@vrfy.org>
6  *
7  *      This program is free software; you can redistribute it and/or modify it
8  *      under the terms of the GNU General Public License as published by the
9  *      Free Software Foundation version 2 of the License.
10  * 
11  *      This program is distributed in the hope that it will be useful, but
12  *      WITHOUT ANY WARRANTY; without even the implied warranty of
13  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  *      General Public License for more details.
15  * 
16  *      You should have received a copy of the GNU General Public License along
17  *      with this program; if not, write to the Free Software Foundation, Inc.,
18  *      675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  */
21
22 #include <stdio.h>
23 #include <stddef.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <fcntl.h>
27 #include <ctype.h>
28 #include <errno.h>
29 #include <signal.h>
30 #include <unistd.h>
31 #include <syslog.h>
32
33 #include "libsysfs/sysfs/libsysfs.h"
34 #include "udev_libc_wrapper.h"
35 #include "udev.h"
36 #include "udev_utils.h"
37 #include "udev_version.h"
38 #include "udev_rules.h"
39 #include "logging.h"
40
41 #ifdef USE_LOG
42 void log_message(int priority, const char *format, ...)
43 {
44         va_list args;
45
46         if (priority > udev_log_priority)
47                 return;
48
49         va_start(args, format);
50         vsyslog(priority, format, args);
51         va_end(args);
52 }
53 #endif
54
55 static void asmlinkage sig_handler(int signum)
56 {
57         switch (signum) {
58                 case SIGALRM:
59                         exit(1);
60                 case SIGINT:
61                 case SIGTERM:
62                         exit(20 + signum);
63         }
64 }
65
66 int main(int argc, char *argv[], char *envp[])
67 {
68         struct udevice udev;
69         struct udev_rules rules;
70         const char *action;
71         const char *devpath;
72         const char *subsystem;
73         struct sigaction act;
74         int devnull;
75         int retval = -EINVAL;
76
77         if (argc == 2 && strcmp(argv[1], "-V") == 0) {
78                 printf("%s\n", UDEV_VERSION);
79                 exit(0);
80         }
81
82         /* set std fd's to /dev/null, if the kernel forks us, we don't have them at all */
83         devnull = open("/dev/null", O_RDWR);
84         if (devnull >= 0)  {
85                 if (devnull != STDIN_FILENO)
86                         dup2(devnull, STDIN_FILENO);
87                 if (devnull != STDOUT_FILENO)
88                         dup2(devnull, STDOUT_FILENO);
89                 if (devnull != STDERR_FILENO)
90                         dup2(devnull, STDERR_FILENO);
91                 if (devnull > STDERR_FILENO)
92                         close(devnull);
93         }
94
95         logging_init("udev");
96         if (devnull < 0)
97                 err("fatal, could not open /dev/null: %s", strerror(errno));
98         udev_init_config();
99         dbg("version %s", UDEV_VERSION);
100
101         /* set signal handlers */
102         memset(&act, 0x00, sizeof(act));
103         act.sa_handler = (void (*)(int)) sig_handler;
104         sigemptyset (&act.sa_mask);
105         act.sa_flags = 0;
106         sigaction(SIGALRM, &act, NULL);
107         sigaction(SIGINT, &act, NULL);
108         sigaction(SIGTERM, &act, NULL);
109
110         /* trigger timeout to prevent hanging processes */
111         alarm(UDEV_ALARM_TIMEOUT);
112
113         action = getenv("ACTION");
114         devpath = getenv("DEVPATH");
115         subsystem = getenv("SUBSYSTEM");
116         /* older kernels passed the SUBSYSTEM only as argument */
117         if (!subsystem && argc == 2)
118                 subsystem = argv[1];
119
120         if (!action || !subsystem || !devpath) {
121                 err("action, subsystem or devpath missing");
122                 goto exit;
123         }
124
125         /* export log_priority , as called programs may want to do the same as udev */
126         if (udev_log_priority) {
127                 char priority[32];
128
129                 sprintf(priority, "%i", udev_log_priority);
130                 setenv("UDEV_LOG", priority, 1);
131         }
132
133         udev_init_device(&udev, devpath, subsystem, action);
134         udev_rules_init(&rules, 0);
135
136         retval = udev_process_event(&rules, &udev);
137
138         if (!retval && udev_run && !list_empty(&udev.run_list)) {
139                 struct name_entry *name_loop;
140
141                 dbg("executing run list");
142                 list_for_each_entry(name_loop, &udev.run_list, node) {
143                         if (strncmp(name_loop->name, "socket:", strlen("socket:")) == 0)
144                                 pass_env_to_socket(&name_loop->name[strlen("socket:")], devpath, action);
145                         else
146                                 run_program(name_loop->name, udev.subsystem, NULL, 0, NULL, (udev_log_priority >= LOG_INFO));
147                 }
148         }
149
150         udev_rules_close(&rules);
151         udev_cleanup_device(&udev);
152
153 exit:
154         logging_close();
155         return retval;
156 }