chiark / gitweb /
volume_id: use md native uuid format
[elogind.git] / udevtest.c
1 /*
2  * Copyright (C) 2003-2004 Greg Kroah-Hartman <greg@kroah.com>
3  * Copyright (C) 2004-2006 Kay Sievers <kay.sievers@vrfy.org>
4  *
5  *      This program is free software; you can redistribute it and/or modify it
6  *      under the terms of the GNU General Public License as published by the
7  *      Free Software Foundation version 2 of the License.
8  * 
9  *      This program is distributed in the hope that it will be useful, but
10  *      WITHOUT ANY WARRANTY; without even the implied warranty of
11  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  *      General Public License for more details.
13  * 
14  *      You should have received a copy of the GNU General Public License along
15  *      with this program; if not, write to the Free Software Foundation, Inc.,
16  *      51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  *
18  */
19
20 #include <stdlib.h>
21 #include <string.h>
22 #include <stdio.h>
23 #include <stddef.h>
24 #include <unistd.h>
25 #include <errno.h>
26 #include <ctype.h>
27 #include <fcntl.h>
28 #include <signal.h>
29 #include <syslog.h>
30 #include <getopt.h>
31
32 #include "udev.h"
33 #include "udev_rules.h"
34
35
36 #ifdef USE_LOG
37 void log_message (int priority, const char *format, ...)
38 {
39         va_list args;
40
41         if (priority > udev_log_priority)
42                 return;
43
44         va_start(args, format);
45         vprintf(format, args);
46         va_end(args);
47         if (format[strlen(format)-1] != '\n')
48                 printf("\n");
49 }
50 #endif
51
52 static int import_uevent_var(const char *devpath)
53 {
54         char path[PATH_SIZE];
55         static char value[4096]; /* must stay, used with putenv */
56         ssize_t size;
57         int fd;
58         char *key;
59         char *next;
60         int rc = -1;
61
62         /* read uevent file */
63         strlcpy(path, sysfs_path, sizeof(path));
64         strlcat(path, devpath, sizeof(path));
65         strlcat(path, "/uevent", sizeof(path));
66         fd = open(path, O_RDONLY);
67         if (fd < 0)
68                 goto out;
69         size = read(fd, value, sizeof(value));
70         close(fd);
71         if (size < 0)
72                 goto out;
73         value[size] = '\0';
74
75         /* import keys into environment */
76         key = value;
77         while (key[0] != '\0') {
78                 next = strchr(key, '\n');
79                 if (next == NULL)
80                         goto out;
81                 next[0] = '\0';
82                 info("import into environment: '%s'", key);
83                 putenv(key);
84                 key = &next[1];
85         }
86         rc = 0;
87 out:
88         return rc;
89 }
90
91 int main(int argc, char *argv[], char *envp[])
92 {
93         int force = 0;
94         char *action = "add";
95         struct udev_rules rules = {};
96         char *devpath = NULL;
97         struct udevice *udev;
98         struct sysfs_device *dev;
99         int retval;
100         int rc = 0;
101
102         static const struct option options[] = {
103                 { "action", 1, NULL, 'a' },
104                 { "force", 0, NULL, 'f' },
105                 { "help", 0, NULL, 'h' },
106                 {}
107         };
108
109         info("version %s", UDEV_VERSION);
110         udev_config_init();
111         if (udev_log_priority < LOG_INFO) {
112                 char priority[32];
113
114                 udev_log_priority = LOG_INFO;
115                 sprintf(priority, "%i", udev_log_priority);
116                 setenv("UDEV_LOG", priority, 1);
117         }
118
119         while (1) {
120                 int option;
121
122                 option = getopt_long(argc, argv, "a:fh", options, NULL);
123                 if (option == -1)
124                         break;
125
126                 dbg("option '%c'", option);
127                 switch (option) {
128                 case 'a':
129                         action = optarg;
130                         break;
131                 case 'f':
132                         force = 1;
133                         break;
134                 case 'h':
135                         printf("Usage: udevtest [--action=<string>] [--force] [--help] <devpath>\n"
136                                "  --action=<string>   set action string\n"
137                                "  --force             don't skip node/link creation\n"
138                                "  --help              print this help text\n\n");
139                         exit(0);
140                 default:
141                         exit(1);
142                 }
143         }
144         devpath = argv[optind];
145
146         if (devpath == NULL) {
147                 fprintf(stderr, "devpath parameter missing\n");
148                 rc = 1;
149                 goto exit;
150         }
151
152         sysfs_init();
153         udev_rules_init(&rules, 0);
154
155         /* remove /sys if given */
156         if (strncmp(devpath, sysfs_path, strlen(sysfs_path)) == 0)
157                 devpath = &devpath[strlen(sysfs_path)];
158
159         dev = sysfs_device_get(devpath);
160         if (dev == NULL) {
161                 fprintf(stderr, "unable to open device '%s'\n", devpath);
162                 rc = 2;
163                 goto exit;
164         }
165
166         udev = udev_device_init(NULL);
167         if (udev == NULL) {
168                 fprintf(stderr, "error initializing device\n");
169                 rc = 3;
170                 goto exit;
171         }
172
173         /* override built-in sysfs device */
174         udev->dev = dev;
175         strcpy(udev->action, action);
176         udev->devt = udev_device_get_devt(udev);
177
178         /* simulate node creation with test flag */
179         if (!force)
180                 udev->test_run = 1;
181
182         setenv("DEVPATH", udev->dev->devpath, 1);
183         setenv("SUBSYSTEM", udev->dev->subsystem, 1);
184         setenv("ACTION", udev->action, 1);
185         import_uevent_var(udev->dev->devpath);
186
187         printf("This program is for debugging only, it does not run any program,\n"
188                "specified by a RUN key. It may show incorrect results, because\n"
189                "some values may be different, or not available at a simulation run.\n"
190                "\n");
191
192         info("looking at device '%s' from subsystem '%s'", udev->dev->devpath, udev->dev->subsystem);
193         retval = udev_device_event(&rules, udev);
194         if (retval == 0 && !udev->ignore_device && udev_run) {
195                 struct name_entry *name_loop;
196
197                 list_for_each_entry(name_loop, &udev->run_list, node) {
198                         char program[PATH_SIZE];
199
200                         strlcpy(program, name_loop->name, sizeof(program));
201                         udev_rules_apply_format(udev, program, sizeof(program));
202                         info("run: '%s'", program);
203                 }
204         }
205
206 exit:
207         udev_rules_cleanup(&rules);
208         sysfs_cleanup();
209         return rc;
210 }