chiark / gitweb /
make: introduce --with-rootprefix=
[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 <unistd.h>
27 #include <syslog.h>
28 #include <grp.h>
29 #include <sys/signalfd.h>
30
31 #include "udev.h"
32
33 void udev_main_log(struct udev *udev, int priority,
34                    const char *file, int line, const char *fn,
35                    const char *format, va_list args) {}
36
37 int main(int argc, char *argv[])
38 {
39         struct udev *udev;
40         struct udev_event *event = NULL;
41         struct udev_device *dev = NULL;
42         struct udev_rules *rules = NULL;
43         char syspath[UTIL_PATH_SIZE];
44         const char *devpath;
45         const char *action;
46         const char *subsystem;
47         sigset_t mask, sigmask_orig;
48         int err = -EINVAL;
49
50         udev = udev_new();
51         if (udev == NULL)
52                 exit(1);
53         info(udev, "version %s\n", VERSION);
54         udev_selinux_init(udev);
55
56         sigprocmask(SIG_SETMASK, NULL, &sigmask_orig);
57
58         action = getenv("ACTION");
59         devpath = getenv("DEVPATH");
60         subsystem = getenv("SUBSYSTEM");
61
62         if (action == NULL || subsystem == NULL || devpath == NULL) {
63                 err(udev, "action, subsystem or devpath missing\n");
64                 goto out;
65         }
66
67         rules = udev_rules_new(udev, 1);
68
69         util_strscpyl(syspath, sizeof(syspath), udev_get_sys_path(udev), devpath, NULL);
70         dev = udev_device_new_from_syspath(udev, syspath);
71         if (dev == NULL) {
72                 info(udev, "unknown device '%s'\n", devpath);
73                 goto out;
74         }
75
76         /* skip reading of db, but read kernel parameters */
77         udev_device_set_info_loaded(dev);
78         udev_device_read_uevent_file(dev);
79
80         udev_device_set_action(dev, action);
81         event = udev_event_new(dev);
82
83         sigfillset(&mask);
84         sigprocmask(SIG_SETMASK, &mask, &sigmask_orig);
85         event->fd_signal = signalfd(-1, &mask, SFD_NONBLOCK|SFD_CLOEXEC);
86         if (event->fd_signal < 0) {
87                 fprintf(stderr, "error creating signalfd\n");
88                 goto out;
89         }
90
91         err = udev_event_execute_rules(event, rules, &sigmask_orig);
92         if (err == 0)
93                 udev_event_execute_run(event, NULL);
94 out:
95         if (event != NULL && event->fd_signal >= 0)
96                 close(event->fd_signal);
97         udev_event_unref(event);
98         udev_device_unref(dev);
99         udev_rules_unref(rules);
100         udev_selinux_exit(udev);
101         udev_unref(udev);
102         if (err != 0)
103                 return 1;
104         return 0;
105 }