chiark / gitweb /
[PATCH] 038 release
[elogind.git] / udevd.c
1 /*
2  * udevd.c - hotplug event serializer
3  *
4  * Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
5  * Copyright (C) 2004 Chris Friesen <chris_friesen@sympatico.ca>
6  *
7  *
8  *      This program is free software; you can redistribute it and/or modify it
9  *      under the terms of the GNU General Public License as published by the
10  *      Free Software Foundation version 2 of the License.
11  *
12  *      This program is distributed in the hope that it will be useful, but
13  *      WITHOUT ANY WARRANTY; without even the implied warranty of
14  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  *      General Public License for more details.
16  *
17  *      You should have received a copy of the GNU General Public License along
18  *      with this program; if not, write to the Free Software Foundation, Inc.,
19  *      675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #include <stddef.h>
24 #include <sys/wait.h>
25 #include <signal.h>
26 #include <unistd.h>
27 #include <errno.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <sys/time.h>
32 #include <sys/types.h>
33 #include <sys/socket.h>
34 #include <sys/un.h>
35 #include <fcntl.h>
36 #include "klibc_fixups.h"
37 #include <sys/sysinfo.h>
38 #include <sys/stat.h>
39
40 #include "list.h"
41 #include "udev.h"
42 #include "udev_lib.h"
43 #include "udev_version.h"
44 #include "udevd.h"
45 #include "logging.h"
46
47 static int pipefds[2];
48 static unsigned long long expected_seqnum = 0;
49 static volatile int children_waiting;
50 static volatile int run_msg_q;
51 static volatile int sig_flag;
52 static int run_exec_q;
53
54 static LIST_HEAD(msg_list);
55 static LIST_HEAD(exec_list);
56 static LIST_HEAD(running_list);
57
58 static void exec_queue_manager(void);
59 static void msg_queue_manager(void);
60 static void user_sighandler(void);
61 static void reap_kids(void);
62 char *udev_bin;
63
64 #ifdef LOG
65 unsigned char logname[LOGNAME_SIZE];
66 void log_message (int level, const char *format, ...)
67 {
68         va_list args;
69
70         va_start(args, format);
71         vsyslog(level, format, args);
72         va_end(args);
73 }
74 #endif
75
76 #define msg_dump(msg) \
77         dbg("msg_dump: sequence %llu, '%s', '%s', '%s'", \
78         msg->seqnum, msg->action, msg->devpath, msg->subsystem);
79
80 static void msg_dump_queue(void)
81 {
82 #ifdef DEBUG
83         struct hotplug_msg *msg;
84
85         list_for_each_entry(msg, &msg_list, list)
86                 dbg("sequence %llu in queue", msg->seqnum);
87 #endif
88 }
89
90 static struct hotplug_msg *msg_create(void)
91 {
92         struct hotplug_msg *new_msg;
93
94         new_msg = malloc(sizeof(struct hotplug_msg));
95         if (new_msg == NULL)
96                 dbg("error malloc");
97         return new_msg;
98 }
99
100 static void run_queue_delete(struct hotplug_msg *msg)
101 {
102         list_del(&msg->list);
103         free(msg);
104 }
105
106 /* orders the message in the queue by sequence number */
107 static void msg_queue_insert(struct hotplug_msg *msg)
108 {
109         struct hotplug_msg *loop_msg;
110         struct sysinfo info;
111
112         /* sort message by sequence number into list. events
113          * will tend to come in order, so scan the list backwards
114          */
115         list_for_each_entry_reverse(loop_msg, &msg_list, list)
116                 if (loop_msg->seqnum < msg->seqnum)
117                         break;
118
119         /* store timestamp of queuing */
120         sysinfo(&info);
121         msg->queue_time = info.uptime;
122
123         list_add(&msg->list, &loop_msg->list);
124         dbg("queued message seq %llu", msg->seqnum);
125
126         /* run msg queue manager */
127         run_msg_q = 1;
128
129         return ;
130 }
131
132 /* forks event and removes event from run queue when finished */
133 static void udev_run(struct hotplug_msg *msg)
134 {
135         pid_t pid;
136         char action[ACTION_SIZE];
137         char devpath[DEVPATH_SIZE];
138         char seqnum[SEQNUM_SIZE];
139         char *env[] = { action, devpath, seqnum, NULL };
140
141         snprintf(action, ACTION_SIZE-1, "ACTION=%s", msg->action);
142         action[ACTION_SIZE-1] = '\0';
143         snprintf(devpath, DEVPATH_SIZE-1, "DEVPATH=%s", msg->devpath);
144         devpath[DEVPATH_SIZE-1] = '\0';
145         sprintf(seqnum, "SEQNUM=%llu", msg->seqnum);
146
147         pid = fork();
148         switch (pid) {
149         case 0:
150                 /* child */
151                 execle(udev_bin, "udev", msg->subsystem, NULL, env);
152                 dbg("exec of child failed");
153                 exit(1);
154                 break;
155         case -1:
156                 dbg("fork of child failed");
157                 run_queue_delete(msg);
158                 /* note: we never managed to run, so we had no impact on 
159                  * running_with_devpath(), so don't bother setting run_exec_q
160                  */
161                 break;
162         default:
163                 /* get SIGCHLD in main loop */
164                 dbg("==> exec seq %llu [%d] working at '%s'", msg->seqnum, pid, msg->devpath);
165                 msg->pid = pid;
166         }
167 }
168
169 /* returns already running task with devpath */
170 static struct hotplug_msg *running_with_devpath(struct hotplug_msg *msg)
171 {
172         struct hotplug_msg *loop_msg;
173         list_for_each_entry(loop_msg, &running_list, list)
174                 if (strncmp(loop_msg->devpath, msg->devpath, sizeof(loop_msg->devpath)) == 0)
175                         return loop_msg;
176         return NULL;
177 }
178
179 /* exec queue management routine executes the events and delays events for the same devpath */
180 static void exec_queue_manager()
181 {
182         struct hotplug_msg *loop_msg;
183         struct hotplug_msg *tmp_msg;
184         struct hotplug_msg *msg;
185
186         list_for_each_entry_safe(loop_msg, tmp_msg, &exec_list, list) {
187                 msg = running_with_devpath(loop_msg);
188                 if (!msg) {
189                         /* move event to run list */
190                         list_move_tail(&loop_msg->list, &running_list);
191                         udev_run(loop_msg);
192                         dbg("moved seq %llu to running list", loop_msg->seqnum);
193                 } else {
194                         dbg("delay seq %llu, cause seq %llu already working on '%s'",
195                                 loop_msg->seqnum, msg->seqnum, msg->devpath);
196                 }
197         }
198 }
199
200 static void msg_move_exec(struct hotplug_msg *msg)
201 {
202         list_move_tail(&msg->list, &exec_list);
203         run_exec_q = 1;
204         expected_seqnum = msg->seqnum+1;
205         dbg("moved seq %llu to exec, next expected is %llu",
206                 msg->seqnum, expected_seqnum);
207 }
208
209 /* msg queue management routine handles the timeouts and dispatches the events */
210 static void msg_queue_manager()
211 {
212         struct hotplug_msg *loop_msg;
213         struct hotplug_msg *tmp_msg;
214         struct sysinfo info;
215         long msg_age = 0;
216
217         dbg("msg queue manager, next expected is %llu", expected_seqnum);
218 recheck:
219         list_for_each_entry_safe(loop_msg, tmp_msg, &msg_list, list) {
220                 /* move event with expected sequence to the exec list */
221                 if (loop_msg->seqnum == expected_seqnum) {
222                         msg_move_exec(loop_msg);
223                         continue;
224                 }
225
226                 /* move event with expired timeout to the exec list */
227                 sysinfo(&info);
228                 msg_age = info.uptime - loop_msg->queue_time;
229                 dbg("seq %llu is %li seconds old", loop_msg->seqnum, msg_age);
230                 if (msg_age > EVENT_TIMEOUT_SEC-1) {
231                         msg_move_exec(loop_msg);
232                         goto recheck;
233                 } else {
234                         break;
235                 }
236         }
237
238         msg_dump_queue();
239
240         /* set timeout for remaining queued events */
241         if (list_empty(&msg_list) == 0) {
242                 struct itimerval itv = {{0, 0}, {EVENT_TIMEOUT_SEC - msg_age, 0}};
243                 dbg("next event expires in %li seconds", EVENT_TIMEOUT_SEC - msg_age);
244                 setitimer(ITIMER_REAL, &itv, 0);
245         }
246 }
247
248 /* receive the msg, do some basic sanity checks, and queue it */
249 static void handle_msg(int sock)
250 {
251         struct hotplug_msg *msg;
252         int retval;
253         struct msghdr smsg;
254         struct cmsghdr *cmsg;
255         struct iovec iov;
256         struct ucred *cred;
257         char cred_msg[CMSG_SPACE(sizeof(struct ucred))];
258
259         msg = msg_create();
260         if (msg == NULL) {
261                 dbg("unable to store message");
262                 return;
263         }
264
265         iov.iov_base = msg;
266         iov.iov_len = sizeof(struct hotplug_msg);
267
268         memset(&smsg, 0x00, sizeof(struct msghdr));
269         smsg.msg_iov = &iov;
270         smsg.msg_iovlen = 1;
271         smsg.msg_control = cred_msg;
272         smsg.msg_controllen = sizeof(cred_msg);
273
274         retval = recvmsg(sock, &smsg, 0);
275         if (retval <  0) {
276                 if (errno != EINTR)
277                         dbg("unable to receive message");
278                 return;
279         }
280         cmsg = CMSG_FIRSTHDR(&smsg);
281         cred = (struct ucred *) CMSG_DATA(cmsg);
282
283         if (cmsg == NULL || cmsg->cmsg_type != SCM_CREDENTIALS) {
284                 dbg("no sender credentials received, message ignored");
285                 goto skip;
286         }
287
288         if (cred->uid != 0) {
289                 dbg("sender uid=%i, message ignored", cred->uid);
290                 goto skip;
291         }
292
293         if (strncmp(msg->magic, UDEV_MAGIC, sizeof(UDEV_MAGIC)) != 0 ) {
294                 dbg("message magic '%s' doesn't match, ignore it", msg->magic);
295                 goto skip;
296         }
297
298         /* if no seqnum is given, we move straight to exec queue */
299         if (msg->seqnum == 0) {
300                 list_add(&msg->list, &exec_list);
301                 run_exec_q = 1;
302         } else {
303                 msg_queue_insert(msg);
304         }
305         return;
306
307 skip:
308         free(msg);
309         return;
310 }
311
312 static void asmlinkage sig_handler(int signum)
313 {
314         int rc;
315
316         switch (signum) {
317                 case SIGINT:
318                 case SIGTERM:
319                         exit(20 + signum);
320                         break;
321                 case SIGALRM:
322                         /* set flag, then write to pipe if needed */
323                         run_msg_q = 1;
324                         goto do_write;
325                         break;
326                 case SIGCHLD:
327                         /* set flag, then write to pipe if needed */
328                         children_waiting = 1;
329                         goto do_write;
330                         break;
331                 default:
332                         dbg("unhandled signal %d", signum);
333                         return;
334         }
335         
336 do_write:
337         /* if pipe is empty, write to pipe to force select to return
338          * immediately when it gets called
339          */
340         if (!sig_flag) {
341                 rc = write(pipefds[1],&signum,sizeof(signum));
342                 if (rc < 0)
343                         dbg("unable to write to pipe");
344                 else
345                         sig_flag = 1;
346         }
347 }
348
349 static void udev_done(int pid)
350 {
351         /* find msg associated with pid and delete it */
352         struct hotplug_msg *msg;
353
354         list_for_each_entry(msg, &running_list, list) {
355                 if (msg->pid == pid) {
356                         dbg("<== exec seq %llu came back", msg->seqnum);
357                         run_queue_delete(msg);
358
359                         /* we want to run the exec queue manager since there may
360                          * be events waiting with the devpath of the one that
361                          * just finished
362                          */
363                         run_exec_q = 1;
364                         return;
365                 }
366         }
367 }
368
369 static void reap_kids()
370 {
371         /* reap all dead children */
372         while(1) {
373                 int pid = waitpid(-1, 0, WNOHANG);
374                 if ((pid == -1) || (pid == 0))
375                         break;
376                 udev_done(pid);
377         }
378 }
379
380 /* just read everything from the pipe and clear the flag,
381  * the useful flags were set in the signal handler
382  */
383 static void user_sighandler()
384 {
385         int sig;
386         while(1) {
387                 int rc = read(pipefds[0],&sig,sizeof(sig));
388                 if (rc < 0)
389                         break;
390
391                 sig_flag = 0;
392         }
393 }
394
395
396 int main(int argc, char *argv[])
397 {
398         int ssock, maxsockplus;
399         struct sockaddr_un saddr;
400         socklen_t addrlen;
401         int retval, fd;
402         const int on = 1;
403         struct sigaction act;
404         fd_set readfds;
405
406         init_logging("udevd");
407         dbg("version %s", UDEV_VERSION);
408
409         if (getuid() != 0) {
410                 dbg("need to be root, exit");
411                 exit(1);
412         }
413         /* make sure we are at top of dir */
414         chdir("/");
415         umask( umask( 077 ) | 022 );
416         /* Set fds to dev/null */
417         fd = open( "/dev/null", O_RDWR );
418         if ( fd < 0 ) {
419                 dbg("error opening /dev/null %s", strerror(errno));
420                 exit(1);
421         }
422         dup2(fd, 0);
423         dup2(fd, 1);
424         dup2(fd, 2);
425         if (fd > 2) 
426                 close(fd);
427         /* Get new session id so stray signals don't come our way. */
428         setsid();
429
430         /* setup signal handler pipe */
431         retval = pipe(pipefds);
432         if (retval < 0) {
433                 dbg("error getting pipes: %s", strerror(errno));
434                 exit(1);
435         }
436
437         retval = fcntl(pipefds[0], F_SETFL, O_NONBLOCK);
438         if (retval < 0) {
439                 dbg("error fcntl on read pipe: %s", strerror(errno));
440                 exit(1);
441         }
442         retval = fcntl(pipefds[0], F_SETFD, FD_CLOEXEC);
443         if (retval < 0) {
444                 dbg("error fcntl on read pipe: %s", strerror(errno));
445                 exit(1);
446         }
447
448         retval = fcntl(pipefds[1], F_SETFL, O_NONBLOCK);
449         if (retval < 0) {
450                 dbg("error fcntl on write pipe: %s", strerror(errno));
451                 exit(1);
452         }
453         retval = fcntl(pipefds[1], F_SETFD, FD_CLOEXEC);
454         if (retval < 0) {
455                 dbg("error fcntl on write pipe: %s", strerror(errno));
456                 exit(1);
457         }
458
459         
460         /* set signal handlers */
461         act.sa_handler = (void (*) (int))sig_handler;
462         sigemptyset(&act.sa_mask);
463         act.sa_flags = SA_RESTART;
464         sigaction(SIGINT, &act, NULL);
465         sigaction(SIGTERM, &act, NULL);
466         sigaction(SIGALRM, &act, NULL);
467         sigaction(SIGCHLD, &act, NULL);
468
469         memset(&saddr, 0x00, sizeof(saddr));
470         saddr.sun_family = AF_LOCAL;
471         /* use abstract namespace for socket path */
472         strcpy(&saddr.sun_path[1], UDEVD_SOCK_PATH);
473         addrlen = offsetof(struct sockaddr_un, sun_path) + strlen(saddr.sun_path+1) + 1;
474
475         ssock = socket(AF_LOCAL, SOCK_DGRAM, 0);
476         if (ssock == -1) {
477                 dbg("error getting socket, exit");
478                 exit(1);
479         }
480
481         set_cloexec_flag(ssock, 1);
482
483         /* the bind takes care of ensuring only one copy running */
484         retval = bind(ssock, (struct sockaddr *) &saddr, addrlen);
485         if (retval < 0) {
486                 dbg("bind failed, exit");
487                 goto exit;
488         }
489         retval = fcntl(ssock, F_SETFD, FD_CLOEXEC);
490         if (retval < 0) {
491                 dbg("error fcntl on ssock: %s", strerror(errno));
492                 exit(1);
493         }
494
495         /* enable receiving of the sender credentials */
496         setsockopt(ssock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
497
498         /* possible override of udev binary, used for testing */
499         udev_bin = getenv("UDEV_BIN");
500         if (udev_bin != NULL)
501                 dbg("udev binary is set to '%s'", udev_bin);
502         else
503                 udev_bin = UDEV_BIN;
504
505         FD_ZERO(&readfds);
506         FD_SET(ssock, &readfds);
507         FD_SET(pipefds[0], &readfds);
508         maxsockplus = ssock+1;
509         while (1) {
510                 fd_set workreadfds = readfds;
511                 retval = select(maxsockplus, &workreadfds, NULL, NULL, NULL);
512
513                 if (retval < 0) {
514                         if (errno != EINTR)
515                                 dbg("error in select: %s", strerror(errno));
516                         continue;
517                 }
518
519                 if (FD_ISSET(ssock, &workreadfds))
520                         handle_msg(ssock);
521
522                 if (FD_ISSET(pipefds[0], &workreadfds))
523                         user_sighandler();
524
525                 if (children_waiting) {
526                         children_waiting = 0;
527                         reap_kids();
528                 }
529
530                 if (run_msg_q) {
531                         run_msg_q = 0;
532                         msg_queue_manager();
533                 }
534
535                 if (run_exec_q) {
536                         /* this is tricky.  exec_queue_manager() loops over exec_list, and
537                          * calls running_with_devpath(), which loops over running_list. This gives
538                          * O(N*M), which can get *nasty*.  Clean up running_list before
539                          * calling exec_queue_manager().
540                          */
541                         if (children_waiting) {
542                                 children_waiting = 0;
543                                 reap_kids();
544                         }
545
546                         run_exec_q = 0;
547                         exec_queue_manager();
548                 }
549         }
550 exit:
551         close(ssock);
552         exit(1);
553 }