Systemd/udev/udevadm-test.c

146 lines
3.8 KiB
C
Raw Normal View History

/*
* Copyright (C) 2003-2004 Greg Kroah-Hartman <greg@kroah.com>
2008-09-10 02:40:42 +02:00
* Copyright (C) 2004-2008 Kay Sievers <kay.sievers@vrfy.org>
*
2008-09-10 02:40:42 +02:00
* 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.
*
2008-09-10 02:40:42 +02:00
* 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>
#include <string.h>
#include <stdio.h>
#include <stddef.h>
#include <unistd.h>
#include <errno.h>
#include <ctype.h>
#include <fcntl.h>
#include <signal.h>
#include <syslog.h>
2007-03-21 11:55:26 +01:00
#include <getopt.h>
#include "udev.h"
int udevadm_test(struct udev *udev, int argc, char *argv[])
{
2008-10-16 17:16:58 +02:00
char filename[UTIL_PATH_SIZE];
2007-03-21 11:55:26 +01:00
int force = 0;
const char *action = "add";
2008-10-16 17:16:58 +02:00
const char *syspath = NULL;
struct udev_event *event;
struct udev_device *dev;
2008-10-18 15:02:01 +02:00
struct udev_rules *rules = NULL;
2008-10-16 17:16:58 +02:00
int err;
int rc = 0;
2007-03-21 11:55:26 +01:00
static const struct option options[] = {
{ "action", required_argument, NULL, 'a' },
{ "force", no_argument, NULL, 'f' },
{ "help", no_argument, NULL, 'h' },
2007-03-21 11:55:26 +01:00
{}
};
info(udev, "version %s\n", VERSION);
2007-03-21 11:55:26 +01:00
while (1) {
int option;
2007-06-02 10:14:50 +02:00
option = getopt_long(argc, argv, "a:s:fh", options, NULL);
2007-03-21 11:55:26 +01:00
if (option == -1)
break;
dbg(udev, "option '%c'\n", option);
2007-03-21 11:55:26 +01:00
switch (option) {
case 'a':
action = optarg;
break;
case 'f':
force = 1;
break;
case 'h':
2008-10-16 17:16:58 +02:00
printf("Usage: udevadm test OPTIONS <syspath>\n"
2007-06-02 10:14:50 +02:00
" --action=<string> set action string\n"
" --force don't skip node/link creation\n"
" --help print this help text\n\n");
2007-03-21 11:55:26 +01:00
exit(0);
default:
exit(1);
}
}
2008-10-16 17:16:58 +02:00
syspath = argv[optind];
2008-10-16 17:16:58 +02:00
if (syspath == NULL) {
fprintf(stderr, "syspath parameter missing\n");
rc = 1;
goto exit;
}
printf("This program is for debugging only, it does not run any program,\n"
"specified by a RUN key. It may show incorrect results, because\n"
"some values may be different, or not available at a simulation run.\n"
"\n");
2008-10-18 15:02:01 +02:00
rules = udev_rules_new(udev, 0);
if (rules == NULL) {
fprintf(stderr, "error reading rules\n");
rc = 1;
goto exit;
}
2008-10-16 17:16:58 +02:00
/* add /sys if needed */
if (strncmp(syspath, udev_get_sys_path(udev), strlen(udev_get_sys_path(udev))) != 0) {
util_strlcpy(filename, udev_get_sys_path(udev), sizeof(filename));
util_strlcat(filename, syspath, sizeof(filename));
syspath = filename;
}
2008-10-16 17:16:58 +02:00
dev = udev_device_new_from_syspath(udev, syspath);
if (dev == NULL) {
2008-10-16 17:16:58 +02:00
fprintf(stderr, "unable to open device '%s'\n", syspath);
rc = 2;
goto exit;
}
2008-10-16 17:16:58 +02:00
/* skip reading of db, but read kernel parameters */
udev_device_set_info_loaded(dev);
udev_device_read_uevent_file(dev);
2008-10-16 17:16:58 +02:00
udev_device_set_action(dev, action);
event = udev_event_new(dev);
/* simulate node creation with test flag */
2007-03-21 11:55:26 +01:00
if (!force)
2008-10-16 17:16:58 +02:00
event->test = 1;
err = udev_event_execute_rules(event, rules);
2008-04-21 19:00:54 +02:00
2008-10-16 17:16:58 +02:00
if (udev_device_get_event_timeout(dev) >= 0)
info(udev, "custom event timeout: %i\n", udev_device_get_event_timeout(dev));
2008-04-21 19:00:54 +02:00
2008-10-16 17:16:58 +02:00
if (err == 0 && !event->ignore_device && udev_get_run(udev)) {
struct udev_list_entry *entry;
2008-10-16 17:16:58 +02:00
udev_list_entry_foreach(entry, udev_list_get_entry(&event->run_list)) {
2008-09-10 21:50:21 +02:00
char program[UTIL_PATH_SIZE];
2008-10-16 17:16:58 +02:00
util_strlcpy(program, udev_list_entry_get_name(entry), sizeof(program));
udev_event_apply_format(event, program, sizeof(program));
info(udev, "run: '%s'\n", program);
}
}
2008-10-16 17:16:58 +02:00
udev_event_unref(event);
udev_device_unref(dev);
exit:
2008-10-18 15:02:01 +02:00
udev_rules_unref(rules);
return rc;
}