chiark / gitweb /
let udevsend ignore events with SEQNUM set
[elogind.git] / udevsend.c
index bdc8293df7a2d495d63071469b605240942fdd82..b67df9720b0e81b97ff811046e3a60881b947a70 100644 (file)
@@ -1,12 +1,9 @@
 /*
  * udevsend.c
  *
- * Userspace devfs
- *
  * Copyright (C) 2004 Ling, Xiaofeng <xiaofeng.ling@intel.com>
  * Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
  *
- *
  *     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.
  *
  */
 
-#include <sys/types.h>
-#include <sys/ipc.h>
-#include <sys/msg.h>
-#include <errno.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <string.h>
+#include <stddef.h>
 #include <unistd.h>
+#include <string.h>
 #include <time.h>
-#include <wait.h>
+#include <errno.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <sys/wait.h>
+#include <sys/un.h>
+#include <linux/stddef.h>
 
 #include "udev.h"
+#include "udev_version.h"
 #include "udevd.h"
 #include "logging.h"
 
-static inline char *get_action(void)
-{
-       char *action;
-
-       action = getenv("ACTION");
-       return action;
-}
+/* global variables */
+static int sock = -1;
 
-static inline char *get_devpath(void)
+#ifdef USE_LOG
+void log_message (int priority, const char *format, ...)
 {
-       char *devpath;
+       va_list args;
 
-       devpath = getenv("DEVPATH");
-       return devpath;
-}
-
-static inline char *get_seqnum(void)
-{
-       char *seqnum;
-
-       seqnum = getenv("SEQNUM");
-       return seqnum;
-}
+       if (priority > udev_log_priority)
+               return;
 
-static int build_hotplugmsg(struct hotplug_msg *msg, char *action,
-                           char *devpath, char *subsystem, int seqnum)
-{
-       msg->mtype = HOTPLUGMSGTYPE;
-       msg->seqnum = seqnum;
-       strncpy(msg->action, action, 8);
-       strncpy(msg->devpath, devpath, 128);
-       strncpy(msg->subsystem, subsystem, 16);
-       return sizeof(struct hotplug_msg);
-}
-
-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 */
-                       execl(DEFAULT_UDEVD_EXEC, 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(0);
-       }
-       return 0;
+       va_start(args, format);
+       vsyslog(priority, format, args);
+       va_end(args);
 }
+#endif
 
-
-int main(int argc, char* argv[])
+int main(int argc, char *argv[], char *envp[])
 {
-       int msgid;
-       key_t key;
-       struct msqid_ds msg_queue;
-       struct hotplug_msg message;
-       char *action;
-       char *devpath;
-       char *subsystem;
-       char *seqnum;
-       int seq;
-       int retval = -EINVAL;
-       int size;
-       int loop;
-       struct timespec tspec;
-
-       subsystem = argv[1];
-       if (subsystem == NULL) {
-               dbg("no subsystem");
+       static struct udevd_msg usend_msg;
+       int usend_msg_len;
+       int i;
+       struct sockaddr_un saddr;
+       socklen_t addrlen;
+       int bufpos = 0;
+       int retval = 0;
+       const char *subsystem = NULL;
+
+       logging_init("udevsend");
+#ifdef USE_LOG
+       udev_init_config();
+#endif
+       dbg("version %s", UDEV_VERSION);
+
+       sock = socket(AF_LOCAL, SOCK_DGRAM, 0);
+       if (sock < 0) {
+               err("error getting socket: %s", strerror(errno));
+               retval = 1;
                goto exit;
        }
 
-       devpath = get_devpath();
-       if (devpath == NULL) {
-               dbg("no devpath");
-               goto exit;
-       }
+       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;
 
-       action = get_action();
-       if (action == NULL) {
-               dbg("no action");
-               goto exit;
-       }
+       memset(&usend_msg, 0x00, sizeof(struct udevd_msg));
+       strcpy(usend_msg.magic, UDEV_MAGIC);
+       usend_msg.type = UDEVD_UEVENT_UDEVSEND;
 
-       seqnum = get_seqnum();
-       if (seqnum == NULL) {
-               dbg("no seqnum");
-               goto exit;
-       }
-       seq = atoi(seqnum);
-
-       /* create ipc message queue or get id of our existing one */
-       key = ftok(DEFAULT_UDEVD_EXEC, IPC_KEY_ID);
-       size =  build_hotplugmsg(&message, action, devpath, subsystem, seq);
-       msgid = msgget(key, IPC_CREAT);
-       if (msgid == -1) {
-               dbg("error open ipc queue");
-               goto exit;
-       }
+       /* copy all keys to send buffer */
+       for (i = 0; envp[i]; i++) {
+               const char *key;
+               int keylen;
 
-       /* send ipc message to the daemon */
-       retval = msgsnd(msgid, &message, size, 0);
-       if (retval == -1) {
-               dbg("error sending ipc message");
-               goto exit;
-       }
+               key = envp[i];
+               keylen = strlen(key);
 
-       /* get state of ipc queue */
-       tspec.tv_sec = 0;
-       tspec.tv_nsec = 10000000;  /* 10 millisec */
-       loop = 20;
-       while (loop--) {
-               retval = msgctl(msgid, IPC_STAT, &msg_queue);
-               if (retval == -1) {
-                       dbg("error getting info on ipc queue");
+               /* 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 (msg_queue.msg_qnum == 0)
+
+               /* 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;
-               nanosleep(&tspec, NULL);
+               }
+
+               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;
        }
 
-       info("message is still in the ipc queue, starting daemon...");
-       retval = start_daemon();
+       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;
 }