2 * Copyright (C) 2003-2004 Greg Kroah-Hartman <greg@kroah.com>
3 * Copyright (C) 2004-2006 Kay Sievers <kay.sievers@vrfy.org>
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.
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.
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.
31 #include "udev_rules.h"
35 void log_message (int priority, const char *format, ...)
39 if (priority > udev_log_priority)
42 va_start(args, format);
43 vprintf(format, args);
45 if (format[strlen(format)-1] != '\n')
50 int main(int argc, char *argv[], char *envp[])
52 struct udev_rules rules = {};
55 struct sysfs_device *dev;
60 info("version %s", UDEV_VERSION);
62 if (udev_log_priority < LOG_INFO)
63 udev_log_priority = LOG_INFO;
65 for (i = 1 ; i < argc; i++) {
68 if (strcmp(arg, "--help") == 0 || strcmp(arg, "-h") == 0) {
69 printf("Usage: udevtest [--help] <devpath>\n");
75 if (devpath == NULL) {
76 fprintf(stderr, "devpath parameter missing\n");
82 udev_rules_init(&rules, 0);
84 /* remove /sys if given */
85 if (strncmp(devpath, sysfs_path, strlen(sysfs_path)) == 0)
86 devpath = &devpath[strlen(sysfs_path)];
88 dev = sysfs_device_get(devpath);
90 fprintf(stderr, "unable to open device '%s'\n", devpath);
95 udev = udev_device_init();
97 fprintf(stderr, "error initializing device\n");
102 /* override built-in sysfs device */
104 strcpy(udev->action, "add");
105 udev->devt = udev_device_get_devt(udev);
107 /* simulate node creation with test flag */
110 setenv("DEVPATH", udev->dev->devpath, 1);
111 setenv("SUBSYSTEM", udev->dev->subsystem, 1);
112 setenv("ACTION", "add", 1);
114 printf("This program is for debugging only, it does not create any node,\n"
115 "or run any program specified by a RUN key. It may show incorrect results,\n"
116 "if rules match against subsystem specfic kernel event variables.\n"
119 info("looking at device '%s' from subsystem '%s'", udev->dev->devpath, udev->dev->subsystem);
120 retval = udev_device_event(&rules, udev);
121 if (retval == 0 && !udev->ignore_device && udev_run) {
122 struct name_entry *name_loop;
124 list_for_each_entry(name_loop, &udev->run_list, node) {
125 char program[PATH_SIZE];
127 strlcpy(program, name_loop->name, sizeof(program));
128 udev_rules_apply_format(udev, program, sizeof(program));
129 info("run: '%s'", program);
134 udev_rules_cleanup(&rules);