chiark / gitweb /
extras: cdrom_id - create only /dev/cdrom
[elogind.git] / src / 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         sigset_t mask, sigmask_orig;
47         int err = -EINVAL;
48
49         udev = udev_new();
50         if (udev == NULL)
51                 exit(1);
52         info(udev, "version %s\n", VERSION);
53         udev_selinux_init(udev);
54
55         sigprocmask(SIG_SETMASK, NULL, &sigmask_orig);
56
57         action = argv[1];
58         if (action == NULL) {
59                 err(udev, "action missing\n");
60                 goto out;
61         }
62
63         devpath = argv[2];
64         if (devpath == NULL) {
65                 err(udev, "devpath missing\n");
66                 goto out;
67         }
68
69         rules = udev_rules_new(udev, 1);
70
71         util_strscpyl(syspath, sizeof(syspath), udev_get_sys_path(udev), devpath, NULL);
72         dev = udev_device_new_from_syspath(udev, syspath);
73         if (dev == NULL) {
74                 info(udev, "unknown device '%s'\n", devpath);
75                 goto out;
76         }
77
78         udev_device_set_action(dev, action);
79         event = udev_event_new(dev);
80
81         sigfillset(&mask);
82         sigprocmask(SIG_SETMASK, &mask, &sigmask_orig);
83         event->fd_signal = signalfd(-1, &mask, SFD_NONBLOCK|SFD_CLOEXEC);
84         if (event->fd_signal < 0) {
85                 fprintf(stderr, "error creating signalfd\n");
86                 goto out;
87         }
88
89         /* do what devtmpfs usually provides us */
90         if (udev_device_get_devnode(dev) != NULL) {
91                 mode_t mode;
92
93                 if (strcmp(udev_device_get_subsystem(dev), "block") == 0)
94                         mode |= S_IFBLK;
95                 else
96                         mode |= S_IFCHR;
97
98                 if (strcmp(action, "remove") != 0) {
99                         util_create_path(udev, udev_device_get_devnode(dev));
100                         mknod(udev_device_get_devnode(dev), mode, udev_device_get_devnum(dev));
101                 } else {
102                         unlink(udev_device_get_devnode(dev));
103                         util_delete_path(udev, udev_device_get_devnode(dev));
104                 }
105         }
106
107         err = udev_event_execute_rules(event, rules, &sigmask_orig);
108         if (err == 0)
109                 udev_event_execute_run(event, NULL);
110 out:
111         if (event != NULL && event->fd_signal >= 0)
112                 close(event->fd_signal);
113         udev_event_unref(event);
114         udev_device_unref(dev);
115         udev_rules_unref(rules);
116         udev_selinux_exit(udev);
117         udev_unref(udev);
118         if (err != 0)
119                 return 1;
120         return 0;
121 }