chiark / gitweb /
allow logging of all output from executed tools
[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_sysfs.h"
38 #include "udev_version.h"
39 #include "udev_rules.h"
40 #include "logging.h"
41
42 #ifdef USE_LOG
43 void log_message(int priority, const char *format, ...)
44 {
45         va_list args;
46
47         if (priority > udev_log_priority)
48                 return;
49
50         va_start(args, format);
51         vsyslog(priority, format, args);
52         va_end(args);
53 }
54 #endif
55
56 static void asmlinkage sig_handler(int signum)
57 {
58         switch (signum) {
59                 case SIGALRM:
60                         exit(1);
61                 case SIGINT:
62                 case SIGTERM:
63                         exit(20 + signum);
64         }
65 }
66
67 int main(int argc, char *argv[], char *envp[])
68 {
69         struct udevice udev;
70         struct udev_rules rules;
71         const char *action;
72         const char *devpath;
73         const char *subsystem;
74         struct sigaction act;
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         logging_init("udev");
83         udev_init_config();
84         dbg("version %s", UDEV_VERSION);
85
86         /* set signal handlers */
87         memset(&act, 0x00, sizeof(act));
88         act.sa_handler = (void (*)(int)) sig_handler;
89         sigemptyset (&act.sa_mask);
90         act.sa_flags = 0;
91         sigaction(SIGALRM, &act, NULL);
92         sigaction(SIGINT, &act, NULL);
93         sigaction(SIGTERM, &act, NULL);
94
95         /* trigger timeout to prevent hanging processes */
96         alarm(UDEV_ALARM_TIMEOUT);
97
98         action = getenv("ACTION");
99         devpath = getenv("DEVPATH");
100         subsystem = getenv("SUBSYSTEM");
101         /* older kernels passed the SUBSYSTEM only as argument */
102         if (!subsystem && argc == 2)
103                 subsystem = argv[1];
104
105         if (!action || !subsystem || !devpath) {
106                 err("action, subsystem or devpath missing");
107                 goto exit;
108         }
109
110         /* export log_priority , as called programs may want to do the same as udev */
111         if (udev_log_priority) {
112                 char priority[32];
113
114                 sprintf(priority, "%i", udev_log_priority);
115                 setenv("UDEV_LOG", priority, 1);
116         }
117
118         udev_init_device(&udev, devpath, subsystem, action);
119         udev_rules_init(&rules, 1, 0);
120
121         retval = udev_process_event(&rules, &udev);
122
123         if (!retval && udev_run && !list_empty(&udev.run_list)) {
124                 struct name_entry *name_loop;
125
126                 dbg("executing run list");
127                 list_for_each_entry(name_loop, &udev.run_list, node) {
128                         if (strncmp(name_loop->name, "socket:", strlen("socket:")) == 0)
129                                 pass_env_to_socket(&name_loop->name[strlen("socket:")], devpath, action);
130                         else
131                                 run_program(name_loop->name, udev.subsystem, NULL, 0, NULL, (udev_log_priority >= LOG_DEBUG));
132                 }
133         }
134
135         udev_rules_close(&rules);
136         udev_cleanup_device(&udev);
137
138 exit:
139         logging_close();
140         return retval;
141 }