chiark / gitweb /
add "Persistent Device Naming" rules file for disks
[elogind.git] / extras / run_directory / udev_run_devd.c
1 /*
2  * udev_run_devd.c - directory multiplexer
3  *
4  * Copyright (C) 2005 Kay Sievers <kay@vrfy.org>
5  *
6  *      This program is free software; you can redistribute it and/or modify it
7  *      under the terms of the GNU General Public License as published by the
8  *      Free Software Foundation version 2 of the License.
9  *
10  */
11
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #include <stddef.h>
16 #include <dirent.h>
17 #include <errno.h>
18 #include <unistd.h>
19 #include <fcntl.h>
20 #include <limits.h>
21 #include <sys/types.h>
22 #include <sys/wait.h>
23 #include <sys/stat.h>
24
25 #include "../../udev_utils.h"
26 #include "../../list.h"
27 #include "../../logging.h"
28 #include "run_directory.h"
29
30
31 #ifdef USE_LOG
32 void log_message (int priority, const char *format, ...)
33 {
34         va_list args;
35         static int udev_log = -1;
36
37         if (udev_log == -1) {
38                 const char *value;
39
40                 value = getenv("UDEV_LOG");
41                 if (value)
42                         udev_log = log_priority(value);
43                 else
44                         udev_log = LOG_ERR;
45         }
46
47         if (priority > udev_log)
48                 return;
49
50         va_start(args, format);
51         vsyslog(priority, format, args);
52         va_end(args);
53 }
54 #endif
55
56 int main(int argc, char *argv[], char *envp[])
57 {
58         char dirname[NAME_SIZE];
59         const char *devname;
60         const char *my_devname;
61         const char *subsystem;
62         int fd;
63
64         devname = getenv("DEVNAME");
65         if (devname == NULL)
66                 exit(0);
67         /*
68          * Hack, we are assuming that the device nodes are in /dev,
69          * if not, this will not work, but you should be using the
70          * RUN= rule anyway...
71          */
72         my_devname = strstr(devname, "/dev/");
73         if (my_devname != NULL)
74                 my_devname = &my_devname[5];
75         else
76                 my_devname = devname;
77
78         subsystem = argv[1];
79         logging_init("udev_run_devd");
80
81         fd = open("/dev/null", O_RDWR);
82         if (fd >= 0) {
83                 dup2(fd, STDOUT_FILENO);
84                 dup2(fd, STDIN_FILENO);
85                 dup2(fd, STDERR_FILENO);
86                 close(fd);
87         }
88         dbg("running dev.d directory");
89
90         sprintf(dirname, "/etc/dev.d/%s", my_devname);
91         run_directory(dirname, ".dev", subsystem);
92         sprintf(dirname, "/etc/dev.d/%s", subsystem);
93         run_directory(dirname, ".dev", subsystem);
94         run_directory("/etc/dev.d/default", ".dev", subsystem);
95
96         exit(0);
97 }