2004-02-13 10:48:07 +07:00
|
|
|
/*
|
2005-07-22 23:35:58 +07:00
|
|
|
* Copyright (C) 2003-2004 Greg Kroah-Hartman <greg@kroah.com>
|
2006-08-21 07:38:20 +07:00
|
|
|
* Copyright (C) 2004-2006 Kay Sievers <kay.sievers@vrfy.org>
|
2004-02-13 10:48:07 +07: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 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.,
|
2006-08-28 05:29:11 +07:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2004-02-13 10:48:07 +07:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
2006-01-10 03:18:00 +07:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <unistd.h>
|
2004-02-13 10:48:07 +07:00
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <signal.h>
|
2005-03-27 06:11:03 +07:00
|
|
|
#include <syslog.h>
|
2007-03-21 17:55:26 +07:00
|
|
|
#include <getopt.h>
|
2004-02-13 10:48:07 +07:00
|
|
|
|
|
|
|
#include "udev.h"
|
2005-03-13 04:36:32 +07:00
|
|
|
#include "udev_rules.h"
|
2004-02-13 10:48:07 +07:00
|
|
|
|
2004-03-23 13:18:34 +07:00
|
|
|
|
2005-03-06 16:15:51 +07:00
|
|
|
#ifdef USE_LOG
|
2005-03-27 06:11:03 +07:00
|
|
|
void log_message (int priority, const char *format, ...)
|
2004-02-13 10:48:07 +07:00
|
|
|
{
|
2004-03-04 15:57:29 +07:00
|
|
|
va_list args;
|
2004-02-13 10:48:07 +07:00
|
|
|
|
2005-03-27 06:11:03 +07:00
|
|
|
if (priority > udev_log_priority)
|
|
|
|
return;
|
|
|
|
|
2004-02-13 10:48:07 +07:00
|
|
|
va_start(args, format);
|
2004-02-13 11:19:21 +07:00
|
|
|
vprintf(format, args);
|
2004-02-13 10:48:07 +07:00
|
|
|
va_end(args);
|
2004-02-13 11:19:21 +07:00
|
|
|
if (format[strlen(format)-1] != '\n')
|
|
|
|
printf("\n");
|
2004-02-13 10:48:07 +07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-03-23 13:18:34 +07:00
|
|
|
int main(int argc, char *argv[], char *envp[])
|
2004-02-13 10:48:07 +07:00
|
|
|
{
|
2007-03-21 17:55:26 +07:00
|
|
|
int force = 0;
|
|
|
|
char *action = "add";
|
2006-08-21 07:38:20 +07:00
|
|
|
struct udev_rules rules = {};
|
|
|
|
char *devpath = NULL;
|
2006-01-10 03:18:00 +07:00
|
|
|
struct udevice *udev;
|
|
|
|
struct sysfs_device *dev;
|
|
|
|
int retval;
|
|
|
|
int rc = 0;
|
2004-03-23 13:18:34 +07:00
|
|
|
|
2007-03-21 17:55:26 +07:00
|
|
|
static const struct option options[] = {
|
|
|
|
{ "action", 1, NULL, 'a' },
|
|
|
|
{ "force", 0, NULL, 'f' },
|
|
|
|
{ "help", 0, NULL, 'h' },
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2004-03-23 13:18:34 +07:00
|
|
|
info("version %s", UDEV_VERSION);
|
2006-01-10 03:18:00 +07:00
|
|
|
udev_config_init();
|
2007-03-16 07:09:47 +07:00
|
|
|
if (udev_log_priority < LOG_INFO) {
|
|
|
|
char priority[32];
|
|
|
|
|
2005-03-27 06:11:03 +07:00
|
|
|
udev_log_priority = LOG_INFO;
|
2007-03-16 07:09:47 +07:00
|
|
|
sprintf(priority, "%i", udev_log_priority);
|
|
|
|
setenv("UDEV_LOG", priority, 1);
|
|
|
|
}
|
2004-11-28 19:41:15 +07:00
|
|
|
|
2007-03-21 17:55:26 +07:00
|
|
|
while (1) {
|
|
|
|
int option;
|
|
|
|
|
|
|
|
option = getopt_long(argc, argv, "a:fh", options, NULL);
|
|
|
|
if (option == -1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
dbg("option '%c'", option);
|
|
|
|
switch (option) {
|
|
|
|
case 'a':
|
|
|
|
action = optarg;
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
force = 1;
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
printf("Usage: udevtest [--action=<string>] [--force] [--help] <devpath>\n"
|
|
|
|
" --action=<string> set action string\n"
|
|
|
|
" --force don't skip node/link creation\n"
|
|
|
|
" --help print this help text\n\n");
|
|
|
|
exit(0);
|
|
|
|
default:
|
|
|
|
exit(1);
|
|
|
|
}
|
2006-08-21 07:38:20 +07:00
|
|
|
}
|
2007-03-21 17:55:26 +07:00
|
|
|
devpath = argv[optind];
|
2006-08-21 07:38:20 +07:00
|
|
|
|
|
|
|
if (devpath == NULL) {
|
|
|
|
fprintf(stderr, "devpath parameter missing\n");
|
|
|
|
rc = 1;
|
|
|
|
goto exit;
|
2005-03-29 16:30:51 +07:00
|
|
|
}
|
|
|
|
|
2006-08-18 07:33:46 +07:00
|
|
|
sysfs_init();
|
2006-08-21 07:38:20 +07:00
|
|
|
udev_rules_init(&rules, 0);
|
2006-08-18 07:33:46 +07:00
|
|
|
|
|
|
|
/* remove /sys if given */
|
2006-08-21 07:38:20 +07:00
|
|
|
if (strncmp(devpath, sysfs_path, strlen(sysfs_path)) == 0)
|
|
|
|
devpath = &devpath[strlen(sysfs_path)];
|
2004-02-13 10:48:07 +07:00
|
|
|
|
2006-01-10 03:18:00 +07:00
|
|
|
dev = sysfs_device_get(devpath);
|
|
|
|
if (dev == NULL) {
|
2006-08-21 07:38:20 +07:00
|
|
|
fprintf(stderr, "unable to open device '%s'\n", devpath);
|
2006-01-10 03:18:00 +07:00
|
|
|
rc = 2;
|
|
|
|
goto exit;
|
|
|
|
}
|
2004-10-19 09:11:51 +07:00
|
|
|
|
2007-03-17 16:08:25 +07:00
|
|
|
udev = udev_device_init(NULL);
|
2006-01-10 03:18:00 +07:00
|
|
|
if (udev == NULL) {
|
2006-08-21 07:38:20 +07:00
|
|
|
fprintf(stderr, "error initializing device\n");
|
2006-01-10 03:18:00 +07:00
|
|
|
rc = 3;
|
|
|
|
goto exit;
|
2004-10-30 18:44:46 +07:00
|
|
|
}
|
2004-10-19 09:11:51 +07:00
|
|
|
|
2006-01-10 03:18:00 +07:00
|
|
|
/* override built-in sysfs device */
|
|
|
|
udev->dev = dev;
|
2007-03-21 17:55:26 +07:00
|
|
|
strcpy(udev->action, action);
|
2006-01-10 03:18:00 +07:00
|
|
|
udev->devt = udev_device_get_devt(udev);
|
2005-06-22 06:31:24 +07:00
|
|
|
|
2004-10-19 09:28:39 +07:00
|
|
|
/* simulate node creation with test flag */
|
2007-03-21 17:55:26 +07:00
|
|
|
if (!force)
|
|
|
|
udev->test_run = 1;
|
2006-01-10 03:18:00 +07:00
|
|
|
|
|
|
|
setenv("DEVPATH", udev->dev->devpath, 1);
|
|
|
|
setenv("SUBSYSTEM", udev->dev->subsystem, 1);
|
|
|
|
setenv("ACTION", "add", 1);
|
|
|
|
|
2007-03-21 17:55:26 +07:00
|
|
|
printf("This program is for debugging only, it does not run any program,\n"
|
|
|
|
"specified by a RUN key. It may show incorrect results, if rules\n"
|
|
|
|
"match against subsystem specfic kernel event variables.\n"
|
2006-08-28 07:38:53 +07:00
|
|
|
"\n");
|
|
|
|
|
2006-01-10 03:18:00 +07:00
|
|
|
info("looking at device '%s' from subsystem '%s'", udev->dev->devpath, udev->dev->subsystem);
|
|
|
|
retval = udev_device_event(&rules, udev);
|
2006-01-25 08:18:13 +07:00
|
|
|
if (retval == 0 && !udev->ignore_device && udev_run) {
|
2006-01-10 03:18:00 +07:00
|
|
|
struct name_entry *name_loop;
|
|
|
|
|
2006-01-25 08:18:13 +07:00
|
|
|
list_for_each_entry(name_loop, &udev->run_list, node) {
|
|
|
|
char program[PATH_SIZE];
|
|
|
|
|
|
|
|
strlcpy(program, name_loop->name, sizeof(program));
|
|
|
|
udev_rules_apply_format(udev, program, sizeof(program));
|
|
|
|
info("run: '%s'", program);
|
|
|
|
}
|
2006-01-10 03:18:00 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
udev_rules_cleanup(&rules);
|
|
|
|
sysfs_cleanup();
|
|
|
|
return rc;
|
2004-02-13 10:48:07 +07:00
|
|
|
}
|