chiark / gitweb /
libudev: enumerate - accept list of subsystems to scan, or skip
[elogind.git] / udev / udevadm-test.c
index d06249c6c1d1f3e01d2b7e087932909e80aef672..ba0852871a9fa6520822ef1143cb71ee482b0789 100644 (file)
@@ -1,20 +1,19 @@
 /*
  * Copyright (C) 2003-2004 Greg Kroah-Hartman <greg@kroah.com>
- * Copyright (C) 2004-2006 Kay Sievers <kay.sievers@vrfy.org>
+ * Copyright (C) 2004-2008 Kay Sievers <kay.sievers@vrfy.org>
  *
- *     This program is free software; you can redistribute it and/or modify it
- *     under the terms of the GNU General Public License as published by the
- *     Free Software Foundation version 2 of the License.
- * 
- *     This program is distributed in the hope that it will be useful, but
- *     WITHOUT ANY WARRANTY; without even the implied warranty of
- *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- *     General Public License for more details.
- * 
- *     You should have received a copy of the GNU General Public License along
- *     with this program; if not, write to the Free Software Foundation, Inc.,
- *     51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
  *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <stdlib.h>
@@ -32,9 +31,9 @@
 #include "udev.h"
 #include "udev_rules.h"
 
-static int import_uevent_var(const char *devpath)
+static int import_uevent_var(struct udev *udev, const char *devpath)
 {
-       char path[PATH_SIZE];
+       char path[UTIL_PATH_SIZE];
        static char value[4096]; /* must stay, used with putenv */
        ssize_t size;
        int fd;
@@ -43,9 +42,9 @@ static int import_uevent_var(const char *devpath)
        int rc = -1;
 
        /* read uevent file */
-       strlcpy(path, sysfs_path, sizeof(path));
-       strlcat(path, devpath, sizeof(path));
-       strlcat(path, "/uevent", sizeof(path));
+       util_strlcpy(path, udev_get_sys_path(udev), sizeof(path));
+       util_strlcat(path, devpath, sizeof(path));
+       util_strlcat(path, "/uevent", sizeof(path));
        fd = open(path, O_RDONLY);
        if (fd < 0)
                goto out;
@@ -62,7 +61,7 @@ static int import_uevent_var(const char *devpath)
                if (next == NULL)
                        goto out;
                next[0] = '\0';
-               info("import into environment: '%s'\n", key);
+               info(udev, "import into environment: '%s'\n", key);
                putenv(key);
                key = &next[1];
        }
@@ -71,13 +70,13 @@ out:
        return rc;
 }
 
-int udevadm_test(int argc, char *argv[])
+int udevadm_test(struct udev *udev, int argc, char *argv[])
 {
        int force = 0;
        const char *action = "add";
        const char *subsystem = NULL;
        const char *devpath = NULL;
-       struct udevice *udev;
+       struct udevice *udevice;
        struct sysfs_device *dev;
        struct udev_rules rules = {};
        int retval;
@@ -91,12 +90,13 @@ int udevadm_test(int argc, char *argv[])
                {}
        };
 
-       info("version %s\n", VERSION);
-       if (udev_log_priority < LOG_INFO) {
+       info(udev, "version %s\n", VERSION);
+
+       /* export log priority to executed programs */
+       if (udev_get_log_priority(udev) > 0) {
                char priority[32];
 
-               udev_log_priority = LOG_INFO;
-               sprintf(priority, "%i", udev_log_priority);
+               sprintf(priority, "%i", udev_get_log_priority(udev));
                setenv("UDEV_LOG", priority, 1);
        }
 
@@ -107,7 +107,7 @@ int udevadm_test(int argc, char *argv[])
                if (option == -1)
                        break;
 
-               dbg("option '%c'\n", option);
+               dbg(udev, "option '%c'\n", option);
                switch (option) {
                case 'a':
                        action = optarg;
@@ -142,61 +142,61 @@ int udevadm_test(int argc, char *argv[])
               "some values may be different, or not available at a simulation run.\n"
               "\n");
 
-       udev_rules_init(&rules, 0);
+       udev_rules_init(udev, &rules, 0);
 
        /* remove /sys if given */
-       if (strncmp(devpath, sysfs_path, strlen(sysfs_path)) == 0)
-               devpath = &devpath[strlen(sysfs_path)];
+       if (strncmp(devpath, udev_get_sys_path(udev), strlen(udev_get_sys_path(udev))) == 0)
+               devpath = &devpath[strlen(udev_get_sys_path(udev))];
 
-       dev = sysfs_device_get(devpath);
+       dev = sysfs_device_get(udev, devpath);
        if (dev == NULL) {
                fprintf(stderr, "unable to open device '%s'\n", devpath);
                rc = 2;
                goto exit;
        }
 
-       udev = udev_device_init();
-       if (udev == NULL) {
+       udevice = udev_device_init(udev);
+       if (udevice == NULL) {
                fprintf(stderr, "error initializing device\n");
                rc = 3;
                goto exit;
        }
 
        if (subsystem != NULL)
-               strlcpy(dev->subsystem, subsystem, sizeof(dev->subsystem));
+               util_strlcpy(dev->subsystem, subsystem, sizeof(dev->subsystem));
 
        /* override built-in sysfs device */
-       udev->dev = dev;
-       strlcpy(udev->action, action, sizeof(udev->action));
-       udev->devt = udev_device_get_devt(udev);
+       udevice->dev = dev;
+       util_strlcpy(udevice->action, action, sizeof(udevice->action));
+       udevice->devt = udev_device_get_devt(udevice);
 
        /* simulate node creation with test flag */
        if (!force)
-               udev->test_run = 1;
+               udevice->test_run = 1;
 
-       setenv("DEVPATH", udev->dev->devpath, 1);
-       setenv("SUBSYSTEM", udev->dev->subsystem, 1);
-       setenv("ACTION", udev->action, 1);
-       import_uevent_var(udev->dev->devpath);
+       setenv("DEVPATH", udevice->dev->devpath, 1);
+       setenv("SUBSYSTEM", udevice->dev->subsystem, 1);
+       setenv("ACTION", udevice->action, 1);
+       import_uevent_var(udev, udevice->dev->devpath);
 
-       info("looking at device '%s' from subsystem '%s'\n", udev->dev->devpath, udev->dev->subsystem);
-       retval = udev_device_event(&rules, udev);
+       info(udev, "looking at device '%s' from subsystem '%s'\n", udevice->dev->devpath, udevice->dev->subsystem);
+       retval = udev_device_event(&rules, udevice);
 
-       if (udev->event_timeout >= 0)
-               info("custom event timeout: %i\n", udev->event_timeout);
+       if (udevice->event_timeout >= 0)
+               info(udev, "custom event timeout: %i\n", udevice->event_timeout);
 
-       if (retval == 0 && !udev->ignore_device && udev_run) {
+       if (retval == 0 && !udevice->ignore_device && udev_get_run(udev)) {
                struct name_entry *name_loop;
 
-               list_for_each_entry(name_loop, &udev->run_list, node) {
-                       char program[PATH_SIZE];
+               list_for_each_entry(name_loop, &udevice->run_list, node) {
+                       char program[UTIL_PATH_SIZE];
 
-                       strlcpy(program, name_loop->name, sizeof(program));
-                       udev_rules_apply_format(udev, program, sizeof(program));
-                       info("run: '%s'\n", program);
+                       util_strlcpy(program, name_loop->name, sizeof(program));
+                       udev_rules_apply_format(udevice, program, sizeof(program));
+                       info(udev, "run: '%s'\n", program);
                }
        }
-       udev_device_cleanup(udev);
+       udev_device_cleanup(udevice);
 
 exit:
        udev_rules_cleanup(&rules);