X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=udevtest.c;h=1be3fa951578dd70021fefa2b655f1c625e0dce7;hp=95b85dd8bed607170e690c8c8dd752e3a9aa60e0;hb=caa4fd85aeff9c40897d34fba09b4fb7c18d2198;hpb=8a0acf85f25d2fb4659aafbad7db2fe48a58307d diff --git a/udevtest.c b/udevtest.c index 95b85dd8b..1be3fa951 100644 --- a/udevtest.c +++ b/udevtest.c @@ -1,9 +1,7 @@ /* - * udev.c + * udevtest.c * - * Userspace devfs - * - * Copyright (C) 2003,2004 Greg Kroah-Hartman + * Copyright (C) 2003-2004 Greg Kroah-Hartman * * 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 @@ -26,24 +24,24 @@ #include #include #include +#include #include "libsysfs/sysfs/libsysfs.h" #include "udev.h" +#include "udev_utils.h" #include "udev_version.h" +#include "udev_rules.h" #include "logging.h" -#include "namedev.h" - -/* global variables */ -char **main_argv; -char **main_envp; -#ifdef LOG -unsigned char logname[LOGNAME_SIZE]; -void log_message (int level, const char *format, ...) +#ifdef USE_LOG +void log_message (int priority, const char *format, ...) { va_list args; + if (priority > udev_log_priority) + return; + va_start(args, format); vprintf(format, args); va_end(args); @@ -54,52 +52,71 @@ void log_message (int level, const char *format, ...) int main(int argc, char *argv[], char *envp[]) { + struct udev_rules rules; + struct sysfs_class_device *class_dev; char *devpath; - char temp[NAME_SIZE]; - char subsystem[] = ""; - const int fake = 1; - - main_argv = argv; - main_envp = envp; + char path[PATH_SIZE]; + char temp[PATH_SIZE]; + struct udevice udev; + char *subsystem = NULL; info("version %s", UDEV_VERSION); - if (argv[1] == NULL) { - info("udevinfo expects the DEVPATH of the sysfs device as a argument"); - goto exit; - } - /* initialize our configuration */ udev_init_config(); + if (udev_log_priority < LOG_INFO) + udev_log_priority = LOG_INFO; + + if (argc != 3) { + info("Usage: udevtest "); + return 1; + } /* remove sysfs_path if given */ if (strncmp(argv[1], sysfs_path, strlen(sysfs_path)) == 0) - devpath = argv[1] + strlen(sysfs_path); + devpath = &argv[1][strlen(sysfs_path)] ; else if (argv[1][0] != '/') { /* prepend '/' if missing */ - strfieldcpy(temp, "/"); - strfieldcat(temp, argv[1]); + snprintf(temp, sizeof(temp), "/%s", argv[1]); + temp[sizeof(temp)-1] = '\0'; devpath = temp; - } else { + } else devpath = argv[1]; - } - info("looking at '%s'", devpath); + subsystem = argv[2]; + setenv("DEVPATH", devpath, 1); + setenv("SUBSYSTEM", subsystem, 1); + setenv("ACTION", "add", 1); + info("looking at device '%s' from subsystem '%s'", devpath, subsystem); - /* we only care about class devices and block stuff */ - if (!strstr(devpath, "class") && - !strstr(devpath, "block")) { - info("not a block or class device"); - goto exit; + /* initialize the naming deamon */ + udev_rules_init(&rules, 0); + + /* fill in values and test_run flag*/ + udev_init_device(&udev, devpath, subsystem, "add"); + + /* open the device */ + snprintf(path, sizeof(path), "%s%s", sysfs_path, udev.devpath); + path[sizeof(path)-1] = '\0'; + class_dev = sysfs_open_class_device_path(path); + if (class_dev == NULL) { + info("sysfs_open_class_device_path failed"); + return 1; } + info("opened class_dev->name='%s'", class_dev->name); - /* initialize the naming deamon */ - namedev_init(); + if (udev.type == DEV_BLOCK || udev.type == DEV_CLASS) + udev.devt = get_devt(class_dev); - /* simulate node creation with fake flag */ - udev_add_device(devpath, subsystem, fake); + /* simulate node creation with test flag */ + udev.test_run = 1; + if (udev.type == DEV_NET || udev.devt) { + udev_rules_get_name(&rules, &udev, class_dev); + udev_add_device(&udev, class_dev); + } else + info("only char and block devices with a dev-file are supported by this test program"); + sysfs_close_class_device(class_dev); -exit: return 0; }