X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=udev.c;h=eb21f7546104b0b287afdaaffe7857205a749665;hb=16ddbbe10a6484daf63596818a19890225388a71;hp=bf18a568eaae06b7ce09b3ea0ca79ddde3be0434;hpb=3836a3c49a72b9ee0b092725628f30839f100c4f;p=elogind.git diff --git a/udev.c b/udev.c index bf18a568e..eb21f7546 100644 --- a/udev.c +++ b/udev.c @@ -3,8 +3,7 @@ * * Userspace devfs * - * Copyright (C) 2003 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 @@ -21,70 +20,81 @@ * */ +#include +#include #include #include -#include -#include -#include -#include #include +#include +#include +#include "libsysfs/sysfs/libsysfs.h" #include "udev.h" +#include "udev_lib.h" #include "udev_version.h" +#include "logging.h" #include "namedev.h" #include "udevdb.h" -#include "libsysfs/libsysfs.h" /* global variables */ char **main_argv; char **main_envp; -static inline char *get_action(void) +#ifdef LOG +unsigned char logname[LOGNAME_SIZE]; +void log_message(int level, const char *format, ...) { - char *action; + va_list args; - action = getenv("ACTION"); - return action; -} + if (!udev_log) + return; -static inline char *get_devpath(void) -{ - char *devpath; - - devpath = getenv("DEVPATH"); - return devpath; + va_start(args, format); + vsyslog(level, format, args); + va_end(args); } +#endif -static inline char *get_seqnum(void) +__attribute__((regparm(0))) static void sig_handler(int signum) { - char *seqnum; - - seqnum = getenv("SEQNUM"); - return seqnum; + switch (signum) { + case SIGINT: + case SIGTERM: + udevdb_exit(); + exit(20 + signum); + default: + dbg("unhandled signal %d", signum); + } } -int main(int argc, char **argv, char **envp) +static char *subsystem_blacklist[] = { + "scsi_host", + "scsi_device", + "usb_host", + "pci_bus", + "pcmcia_socket", + "" +}; + +static int udev_hotplug(void) { char *action; char *devpath; char *subsystem; int retval = -EINVAL; - - main_argv = argv; - main_envp = envp; - - dbg("version %s", UDEV_VERSION); + int i; + struct sigaction act; + const int nofake = 0; - if (argc != 2) { - dbg ("unknown number of arguments"); + action = get_action(); + if (!action) { + dbg("no action?"); goto exit; } - subsystem = argv[1]; - devpath = get_devpath(); if (!devpath) { - dbg ("no devpath?"); + dbg("no devpath?"); goto exit; } dbg("looking at '%s'", devpath); @@ -96,21 +106,21 @@ int main(int argc, char **argv, char **envp) goto exit; } - /* but we don't care about net class devices */ - if (strcmp(subsystem, "net") == 0) { - dbg("don't care about net devices"); + /* skip blacklisted subsystems */ + subsystem = get_subsystem(main_argv[1]); + if (!subsystem) { + dbg("no subsystem?"); goto exit; } - - action = get_action(); - if (!action) { - dbg ("no action?"); - goto exit; + i = 0; + while (subsystem_blacklist[i][0] != '\0') { + if (strcmp(subsystem, subsystem_blacklist[i]) == 0) { + dbg("don't care about '%s' devices", subsystem); + goto exit; + } + i++; } - /* initialize our configuration */ - udev_init_config(); - /* initialize udev database */ retval = udevdb_init(UDEVDB_DEFAULT); if (retval != 0) { @@ -118,21 +128,45 @@ int main(int argc, char **argv, char **envp) goto exit; } - /* initialize the naming deamon */ - namedev_init(); - - if (strcmp(action, "add") == 0) - retval = udev_add_device(devpath, subsystem); + /* set signal handlers */ + act.sa_handler = sig_handler; + sigemptyset (&act.sa_mask); + act.sa_flags = SA_RESTART; + sigaction(SIGINT, &act, NULL); + sigaction(SIGTERM, &act, NULL); + + if (strcmp(action, "add") == 0) { + namedev_init(); + retval = udev_add_device(devpath, subsystem, nofake); + goto action_done; + } - else if (strcmp(action, "remove") == 0) + if (strcmp(action, "remove") == 0) { retval = udev_remove_device(devpath, subsystem); - - else { - dbg("unknown action '%s'", action); - retval = -EINVAL; + goto action_done; } + + dbg("unknown action '%s'", action); + retval = -EINVAL; + +action_done: udevdb_exit(); -exit: +exit: return retval; } + +int main(int argc, char *argv[], char *envp[]) +{ + main_argv = argv; + main_envp = envp; + + init_logging("udev"); + + /* initialize our configuration */ + udev_init_config(); + + dbg("version %s", UDEV_VERSION); + + return udev_hotplug(); +}