X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=udevsend.c;h=9f5059a4c806173d04025f296be6f79d63717839;hp=84c46bc0c286b3c117123d77c4ba27a6c702482c;hb=9571122e00f54b5d6e5accda4c431ac6ae5c4847;hpb=5cab7caa2a767b16211c15f0051a2e21a96ebfd9 diff --git a/udevsend.c b/udevsend.c index 84c46bc0c..9f5059a4c 100644 --- a/udevsend.c +++ b/udevsend.c @@ -1,12 +1,9 @@ /* * udevsend.c * - * Userspace devfs - * * Copyright (C) 2004 Ling, Xiaofeng * Copyright (C) 2004 Kay Sievers * - * * 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. @@ -22,197 +19,120 @@ * */ -#include -#include -#include -#include -#include -#include #include #include #include -#include #include -#include +#include +#include +#include +#include +#include +#include +#include #include "udev.h" -#include "udev_lib.h" -#include "udev_version.h" #include "udevd.h" -#include "logging.h" -#ifdef LOG -unsigned char logname[LOGNAME_SIZE]; -void log_message (int level, const char *format, ...) +/* global variables */ +static int sock = -1; + +#ifdef USE_LOG +void log_message (int priority, const char *format, ...) { - va_list args; + va_list args; + + if (priority > udev_log_priority) + return; va_start(args, format); - vsyslog(level, format, args); + vsyslog(priority, format, args); va_end(args); } #endif -static int start_daemon(void) -{ - pid_t pid; - pid_t child_pid; - - pid = fork(); - switch (pid) { - case 0: - /* helper child */ - child_pid = fork(); - switch (child_pid) { - case 0: - /* daemon */ - setsid(); - chdir("/"); - execl(UDEVD_BIN, "udevd", NULL); - dbg("exec of daemon failed"); - exit(1); - case -1: - dbg("fork of daemon failed"); - return -1; - default: - exit(0); - } - break; - case -1: - dbg("fork of helper failed"); - return -1; - default: - wait(NULL); - } - return 0; -} - -static void run_udev(const char *subsystem) +int main(int argc, char *argv[], char *envp[]) { - pid_t pid; - - pid = fork(); - switch (pid) { - case 0: - /* child */ - execl(UDEV_BIN, UDEV_BIN, subsystem, NULL); - dbg("exec of child failed"); - _exit(1); - break; - case -1: - dbg("fork of child failed"); - break; - default: - wait(NULL); - } -} - -int main(int argc, char* argv[]) -{ - struct hotplug_msg msg; - char *action; - char *devpath; - char *subsystem; - char *seqnum; - unsigned long long seq; - int retval = 1; - int loop; - int sock = -1; + static struct udevd_msg usend_msg; + int usend_msg_len; + int i; struct sockaddr_un saddr; socklen_t addrlen; - int started_daemon = 0; + int bufpos = 0; + int retval = 0; + const char *subsystem = NULL; logging_init("udevsend"); +#ifdef USE_LOG + udev_config_init(); +#endif dbg("version %s", UDEV_VERSION); - subsystem = get_subsystem(argv[1]); - if (subsystem == NULL) { - dbg("no subsystem"); - goto exit; - } - dbg("subsystem = '%s'", subsystem); - - devpath = get_devpath(); - if (devpath == NULL) { - dbg("no devpath"); - goto exit; - } - dbg("DEVPATH = '%s'", devpath); - - action = get_action(); - if (action == NULL) { - dbg("no action"); - goto exit; - } - dbg("ACTION = '%s'", action); - - seqnum = get_seqnum(); - if (seqnum == NULL) - seq = 0; - else - seq = strtoull(seqnum, NULL, 10); - dbg("SEQNUM = '%llu'", seq); - sock = socket(AF_LOCAL, SOCK_DGRAM, 0); - if (sock == -1) { - dbg("error getting socket"); - goto fallback; + if (sock < 0) { + err("error getting socket: %s", strerror(errno)); + retval = 1; + goto exit; } - set_cloexec_flag(sock, 1); - memset(&saddr, 0x00, sizeof(struct sockaddr_un)); saddr.sun_family = AF_LOCAL; /* use abstract namespace for socket path */ strcpy(&saddr.sun_path[1], UDEVD_SOCK_PATH); addrlen = offsetof(struct sockaddr_un, sun_path) + strlen(saddr.sun_path+1) + 1; - memset(&msg, 0x00, sizeof(struct hotplug_msg)); - strcpy(msg.magic, UDEV_MAGIC); - msg.seqnum = seq; - strfieldcpy(msg.action, action); - strfieldcpy(msg.devpath, devpath); - strfieldcpy(msg.subsystem, subsystem); - - /* If we can't send, try to start daemon and resend message */ - loop = SEND_WAIT_MAX_SECONDS * SEND_WAIT_LOOP_PER_SECOND; - while (--loop) { - retval = sendto(sock, &msg, sizeof(struct hotplug_msg), 0, - (struct sockaddr *)&saddr, addrlen); - if (retval != -1) { + memset(&usend_msg, 0x00, sizeof(struct udevd_msg)); + strcpy(usend_msg.magic, UDEV_MAGIC); + usend_msg.type = UDEVD_UEVENT_UDEVSEND; + + /* copy all keys to send buffer */ + for (i = 0; envp[i]; i++) { + const char *key; + int keylen; + + key = envp[i]; + keylen = strlen(key); + + /* ignore events which are already sent on the netlink socket */ + if (strncmp(key, "SEQNUM=", 7) == 0) { + dbg("ignoring event with SEQNUM set"); retval = 0; goto exit; } - if (errno != ECONNREFUSED) { - dbg("error sending message"); - goto fallback; + /* prevent loops in the scripts we execute */ + if (strncmp(key, "UDEVD_EVENT=", 12) == 0) { + err("event loop, already passed through the daemon, exit"); + retval = 2; + goto exit; } - if (!started_daemon) { - info("starting udevd daemon"); - retval = start_daemon(); - if (retval) { - info("error starting daemon"); - goto fallback; - } - dbg("daemon started"); - started_daemon = 1; - } else { - dbg("retry to connect %d", SEND_WAIT_MAX_SECONDS * SEND_WAIT_LOOP_PER_SECOND - loop); - usleep(1000 * 1000 / SEND_WAIT_LOOP_PER_SECOND); + if (bufpos + keylen >= UEVENT_BUFFER_SIZE-1) { + err("environment buffer too small, probably not called by the kernel"); + continue; } + + /* remember the SUBSYSTEM */ + if (strncmp(key, "SUBSYSTEM=", 10) == 0) + subsystem = &key[10]; + + dbg("add '%s' to env[%i] buffer", key, i); + strcpy(&usend_msg.envbuf[bufpos], key); + bufpos += keylen + 1; } -fallback: - info("unable to connect to event daemon, try to call udev directly"); - run_udev(subsystem); + usend_msg_len = offsetof(struct udevd_msg, envbuf) + bufpos; + dbg("usend_msg_len=%i", usend_msg_len); + + if (sendto(sock, &usend_msg, usend_msg_len, 0, (struct sockaddr *)&saddr, addrlen) < 0) { + retval = 3; + err("error sending message: %s", strerror(errno)); + } exit: if (sock != -1) close(sock); logging_close(); - return retval; }