chiark / gitweb /
volume_id: respect LDFLAGS
[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 static int import_uevent_var(const char *devpath)
36 {
37         char path[PATH_SIZE];
38         static char value[4096]; /* must stay, used with putenv */
39         ssize_t size;
40         int fd;
41         char *key;
42         char *next;
43         int rc = -1;
44
45         /* read uevent file */
46         strlcpy(path, sysfs_path, sizeof(path));
47         strlcat(path, devpath, sizeof(path));
48         strlcat(path, "/uevent", sizeof(path));
49         fd = open(path, O_RDONLY);
50         if (fd < 0)
51                 goto out;
52         size = read(fd, value, sizeof(value));
53         close(fd);
54         if (size < 0)
55                 goto out;
56         value[size] = '\0';
57
58         /* import keys into environment */
59         key = value;
60         while (key[0] != '\0') {
61                 next = strchr(key, '\n');
62                 if (next == NULL)
63                         goto out;
64                 next[0] = '\0';
65                 info("import into environment: '%s'", key);
66                 putenv(key);
67                 key = &next[1];
68         }
69         rc = 0;
70 out:
71         return rc;
72 }
73
74 int udevtest(int argc, char *argv[], char *envp[])
75 {
76         int force = 0;
77         const char *action = "add";
78         const char *subsystem = NULL;
79         const char *devpath = NULL;
80         struct udevice *udev;
81         struct sysfs_device *dev;
82         struct udev_rules rules = {};
83         int retval;
84         int rc = 0;
85
86         static const struct option options[] = {
87                 { "action", 1, NULL, 'a' },
88                 { "subsystem", 1, NULL, 's' },
89                 { "force", 0, NULL, 'f' },
90                 { "help", 0, NULL, 'h' },
91                 {}
92         };
93
94         info("version %s", UDEV_VERSION);
95         udev_config_init();
96         if (udev_log_priority < LOG_INFO) {
97                 char priority[32];
98
99                 udev_log_priority = LOG_INFO;
100                 sprintf(priority, "%i", udev_log_priority);
101                 setenv("UDEV_LOG", priority, 1);
102         }
103
104         while (1) {
105                 int option;
106
107                 option = getopt_long(argc, argv, "a:s:fh", options, NULL);
108                 if (option == -1)
109                         break;
110
111                 dbg("option '%c'", option);
112                 switch (option) {
113                 case 'a':
114                         action = optarg;
115                         break;
116                 case 's':
117                         subsystem = optarg;
118                         break;
119                 case 'f':
120                         force = 1;
121                         break;
122                 case 'h':
123                         printf("Usage: udevadm test OPTIONS <devpath>\n"
124                                "  --action=<string>     set action string\n"
125                                "  --subsystem=<string>  set subsystem string\n"
126                                "  --force               don't skip node/link creation\n"
127                                "  --help                print this help text\n\n");
128                         exit(0);
129                 default:
130                         exit(1);
131                 }
132         }
133         devpath = argv[optind];
134
135         if (devpath == NULL) {
136                 fprintf(stderr, "devpath parameter missing\n");
137                 rc = 1;
138                 goto exit;
139         }
140
141         printf("This program is for debugging only, it does not run any program,\n"
142                "specified by a RUN key. It may show incorrect results, because\n"
143                "some values may be different, or not available at a simulation run.\n"
144                "\n");
145
146         sysfs_init();
147         udev_rules_init(&rules, 0);
148
149         /* remove /sys if given */
150         if (strncmp(devpath, sysfs_path, strlen(sysfs_path)) == 0)
151                 devpath = &devpath[strlen(sysfs_path)];
152
153         dev = sysfs_device_get(devpath);
154         if (dev == NULL) {
155                 fprintf(stderr, "unable to open device '%s'\n", devpath);
156                 rc = 2;
157                 goto exit;
158         }
159
160         udev = udev_device_init(NULL);
161         if (udev == NULL) {
162                 fprintf(stderr, "error initializing device\n");
163                 rc = 3;
164                 goto exit;
165         }
166
167         if (subsystem != NULL)
168                 strlcpy(dev->subsystem, subsystem, sizeof(dev->subsystem));
169
170         /* override built-in sysfs device */
171         udev->dev = dev;
172         strlcpy(udev->action, action, sizeof(udev->action));
173         udev->devt = udev_device_get_devt(udev);
174
175         /* simulate node creation with test flag */
176         if (!force)
177                 udev->test_run = 1;
178
179         setenv("DEVPATH", udev->dev->devpath, 1);
180         setenv("SUBSYSTEM", udev->dev->subsystem, 1);
181         setenv("ACTION", udev->action, 1);
182         import_uevent_var(udev->dev->devpath);
183
184         info("looking at device '%s' from subsystem '%s'", udev->dev->devpath, udev->dev->subsystem);
185         retval = udev_device_event(&rules, udev);
186         if (retval == 0 && !udev->ignore_device && udev_run) {
187                 struct name_entry *name_loop;
188
189                 list_for_each_entry(name_loop, &udev->run_list, node) {
190                         char program[PATH_SIZE];
191
192                         strlcpy(program, name_loop->name, sizeof(program));
193                         udev_rules_apply_format(udev, program, sizeof(program));
194                         info("run: '%s'", program);
195                 }
196         }
197         udev_device_cleanup(udev);
198
199 exit:
200         udev_rules_cleanup(&rules);
201         sysfs_cleanup();
202         return rc;
203 }