chiark / gitweb /
libudev: device - read "uevent" only if info is not already loaded
[elogind.git] / udev / test-udev.c
1 /*
2  * Copyright (C) 2003-2004 Greg Kroah-Hartman <greg@kroah.com>
3  * Copyright (C) 2004-2008 Kay Sievers <kay.sievers@vrfy.org>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include <stdio.h>
20 #include <stddef.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <fcntl.h>
24 #include <ctype.h>
25 #include <errno.h>
26 #include <signal.h>
27 #include <unistd.h>
28 #include <syslog.h>
29 #include <grp.h>
30
31 #include "udev.h"
32
33 static void asmlinkage sig_handler(int signum)
34 {
35         switch (signum) {
36                 case SIGALRM:
37                         exit(1);
38                 case SIGINT:
39                 case SIGTERM:
40                         exit(20 + signum);
41         }
42 }
43
44 int main(int argc, char *argv[])
45 {
46         struct udev *udev;
47         struct udev_event *event;
48         struct udev_device *dev;
49         struct udev_rules *rules;
50         char syspath[UTIL_PATH_SIZE];
51         const char *devpath;
52         const char *action;
53         const char *subsystem;
54         struct sigaction act;
55         int err = -EINVAL;
56
57         udev = udev_new();
58         if (udev == NULL)
59                 exit(1);
60         info(udev, "version %s\n", VERSION);
61         udev_selinux_init(udev);
62
63         /* set signal handlers */
64         memset(&act, 0x00, sizeof(act));
65         act.sa_handler = (void (*)(int)) sig_handler;
66         sigemptyset (&act.sa_mask);
67         act.sa_flags = 0;
68         sigaction(SIGALRM, &act, NULL);
69         sigaction(SIGINT, &act, NULL);
70         sigaction(SIGTERM, &act, NULL);
71
72         /* trigger timeout to prevent hanging processes */
73         alarm(UDEV_EVENT_TIMEOUT);
74
75         action = getenv("ACTION");
76         devpath = getenv("DEVPATH");
77         subsystem = getenv("SUBSYSTEM");
78
79         if (action == NULL || subsystem == NULL || devpath == NULL) {
80                 err(udev, "action, subsystem or devpath missing\n");
81                 goto exit;
82         }
83
84         rules = udev_rules_new(udev, 1);
85
86         util_strlcpy(syspath, udev_get_sys_path(udev), sizeof(syspath));
87         util_strlcat(syspath, devpath, sizeof(syspath));
88         dev = udev_device_new_from_syspath(udev, syspath);
89         if (dev == NULL) {
90                 info(udev, "unknown device '%s'\n", devpath);
91                 goto fail;
92         }
93
94         /* skip reading of db, but read kernel parameters */
95         udev_device_set_info_loaded(dev);
96         udev_device_read_uevent_file(dev);
97
98         udev_device_set_action(dev, action);
99         event = udev_event_new(dev);
100         err = udev_event_execute_rules(event, rules);
101
102         /* rules may change/disable the timeout */
103         if (udev_device_get_event_timeout(dev) >= 0)
104                 alarm(udev_device_get_event_timeout(dev));
105
106         if (err == 0 && !event->ignore_device && udev_get_run(udev))
107                 udev_event_execute_run(event);
108
109         udev_event_unref(event);
110         udev_device_unref(dev);
111 fail:
112         udev_rules_unref(rules);
113 exit:
114         udev_selinux_exit(udev);
115         udev_unref(udev);
116         if (err != 0)
117                 return 1;
118         return 0;
119 }