chiark / gitweb /
059 release
[elogind.git] / udevd.c
1 /*
2  * udevd.c - hotplug event serializer
3  *
4  * Copyright (C) 2004-2005 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 <signal.h>
25 #include <unistd.h>
26 #include <errno.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <ctype.h>
31 #include <dirent.h>
32 #include <fcntl.h>
33 #include <sys/select.h>
34 #include <sys/wait.h>
35 #include <sys/time.h>
36 #include <sys/types.h>
37 #include <sys/socket.h>
38 #include <sys/un.h>
39 #include <sys/sysinfo.h>
40 #include <sys/stat.h>
41 #include <linux/netlink.h>
42
43 #include "list.h"
44 #include "udev_libc_wrapper.h"
45 #include "udev.h"
46 #include "udev_version.h"
47 #include "udev_utils.h"
48 #include "udevd.h"
49 #include "logging.h"
50
51 /* global variables*/
52 static int udevd_sock;
53 static int uevent_netlink_sock;
54 static pid_t sid;
55
56 static int pipefds[2];
57 static volatile int sigchilds_waiting;
58 static volatile int run_msg_q;
59 static volatile int sig_flag;
60 static int init_phase = 1;
61 static int run_exec_q;
62 static int stop_exec_q;
63
64 static LIST_HEAD(msg_list);
65 static LIST_HEAD(exec_list);
66 static LIST_HEAD(running_list);
67
68 static void exec_queue_manager(void);
69 static void msg_queue_manager(void);
70 static void user_sighandler(void);
71 static void reap_sigchilds(void);
72
73 static char *udev_bin;
74 static unsigned long long expected_seqnum;
75 static int event_timeout;
76 static int max_childs;
77 static int max_childs_running;
78
79
80 #ifdef USE_LOG
81 void log_message (int priority, const char *format, ...)
82 {
83         va_list args;
84
85         if (priority > udev_log_priority)
86                 return;
87
88         va_start(args, format);
89         vsyslog(priority, format, args);
90         va_end(args);
91 }
92 #endif
93
94 static void msg_dump_queue(void)
95 {
96 #ifdef DEBUG
97         struct uevent_msg *msg;
98
99         list_for_each_entry(msg, &msg_list, node)
100                 dbg("sequence %llu in queue", msg->seqnum);
101 #endif
102 }
103
104 static void run_queue_delete(struct uevent_msg *msg)
105 {
106         list_del(&msg->node);
107         free(msg);
108 }
109
110 /* orders the message in the queue by sequence number */
111 static void msg_queue_insert(struct uevent_msg *msg)
112 {
113         struct uevent_msg *loop_msg;
114         struct sysinfo info;
115
116         if (msg->seqnum == 0) {
117                 dbg("no SEQNUM, move straight to the exec queue");
118                 list_add(&msg->node, &exec_list);
119                 run_exec_q = 1;
120                 return;
121         }
122
123         /* store timestamp of queuing */
124         sysinfo(&info);
125         msg->queue_time = info.uptime;
126
127         /* with the first event we provide a phase of shorter timeout */
128         if (init_phase) {
129                 static long init_time;
130
131                 if (init_time == 0)
132                         init_time = info.uptime;
133                 if (info.uptime - init_time >= UDEVD_INIT_TIME)
134                         init_phase = 0;
135         }
136
137         /* don't delay messages with timeout set */
138         if (msg->timeout) {
139                 dbg("move seq %llu with timeout %u to exec queue", msg->seqnum, msg->timeout);
140                 list_add(&msg->node, &exec_list);
141                 run_exec_q = 1;
142                 return;
143         }
144
145         /* sort message by sequence number into list */
146         list_for_each_entry_reverse(loop_msg, &msg_list, node) {
147                 if (loop_msg->seqnum < msg->seqnum)
148                         break;
149
150                 if (loop_msg->seqnum == msg->seqnum) {
151                         dbg("ignoring duplicate message seq %llu", msg->seqnum);
152                         free(msg);
153                         return;
154                 }
155         }
156         list_add(&msg->node, &loop_msg->node);
157         info("seq %llu queued, devpath '%s'", msg->seqnum, msg->devpath);
158
159         /* run msg queue manager */
160         run_msg_q = 1;
161
162         return;
163 }
164
165 /* forks event and removes event from run queue when finished */
166 static void execute_udev(struct uevent_msg *msg)
167 {
168         char *const argv[] = { "udev", msg->subsystem, NULL };
169         pid_t pid;
170         struct sysinfo info;
171
172         pid = fork();
173         switch (pid) {
174         case 0:
175                 /* child */
176                 if (uevent_netlink_sock != -1)
177                         close(uevent_netlink_sock);
178                 close(udevd_sock);
179                 logging_close();
180
181                 setpriority(PRIO_PROCESS, 0, UDEV_PRIORITY);
182                 execve(udev_bin, argv, msg->envp);
183                 err("exec of child failed");
184                 _exit(1);
185                 break;
186         case -1:
187                 err("fork of child failed");
188                 run_queue_delete(msg);
189                 break;
190         default:
191                 /* get SIGCHLD in main loop */
192                 sysinfo(&info);
193                 info("seq %llu forked, pid %d, %ld seconds old",
194                      msg->seqnum, pid, info.uptime - msg->queue_time);
195                 msg->pid = pid;
196         }
197 }
198
199 static int running_processes(void)
200 {
201         int f;
202         static char buf[4096];
203         int len;
204         int running;
205         const char *pos;
206
207         f = open("/proc/stat", O_RDONLY);
208         if (f == -1)
209                 return -1;
210
211         len = read(f, buf, sizeof(buf));
212         close(f);
213
214         if (len <= 0)
215                 return -1;
216         else
217                 buf[len] = '\0';
218
219         pos = strstr(buf, "procs_running ");
220         if (pos == NULL)
221                 return -1;
222
223         if (sscanf(pos, "procs_running %u", &running) != 1)
224                 return -1;
225
226         return running;
227 }
228
229 /* return the number of process es in our session, count only until limit */
230 static int running_processes_in_session(pid_t session, int limit)
231 {
232         DIR *dir;
233         struct dirent *dent;
234         int running = 0;
235
236         dir = opendir("/proc");
237         if (!dir)
238                 return -1;
239
240         /* read process info from /proc */
241         for (dent = readdir(dir); dent != NULL; dent = readdir(dir)) {
242                 int f;
243                 char procdir[64];
244                 char line[256];
245                 const char *pos;
246                 char state;
247                 pid_t ppid, pgrp, sess;
248                 int len;
249
250                 if (!isdigit(dent->d_name[0]))
251                         continue;
252
253                 snprintf(procdir, sizeof(procdir), "/proc/%s/stat", dent->d_name);
254                 procdir[sizeof(procdir)-1] = '\0';
255
256                 f = open(procdir, O_RDONLY);
257                 if (f == -1)
258                         continue;
259
260                 len = read(f, line, sizeof(line));
261                 close(f);
262
263                 if (len <= 0)
264                         continue;
265                 else
266                         line[len] = '\0';
267
268                 /* skip ugly program name */
269                 pos = strrchr(line, ')') + 2;
270                 if (pos == NULL)
271                         continue;
272
273                 if (sscanf(pos, "%c %d %d %d ", &state, &ppid, &pgrp, &sess) != 4)
274                         continue;
275
276                 /* count only processes in our session */
277                 if (sess != session)
278                         continue;
279
280                 /* count only running, no sleeping processes */
281                 if (state != 'R')
282                         continue;
283
284                 running++;
285                 if (limit > 0 && running >= limit)
286                         break;
287         }
288         closedir(dir);
289
290         return running;
291 }
292
293 static int compare_devpath(const char *running, const char *waiting)
294 {
295         int i;
296
297         for (i = 0; i < PATH_SIZE; i++) {
298                 /* identical device event found */
299                 if (running[i] == '\0' && waiting[i] == '\0')
300                         return 1;
301
302                 /* parent device event found */
303                 if (running[i] == '\0' && waiting[i] == '/')
304                         return 2;
305
306                 /* child device event found */
307                 if (running[i] == '/' && waiting[i] == '\0')
308                         return 3;
309
310                 /* no matching event */
311                 if (running[i] != waiting[i])
312                         break;
313         }
314
315         return 0;
316 }
317
318 /* returns still running task for the same device, its parent or its physical device */
319 static int running_with_devpath(struct uevent_msg *msg, int limit)
320 {
321         struct uevent_msg *loop_msg;
322         int childs_count = 0;
323
324         if (msg->devpath == NULL)
325                 return 0;
326
327         /* skip any events with a timeout set */
328         if (msg->timeout != 0)
329                 return 0;
330
331         list_for_each_entry(loop_msg, &running_list, node) {
332                 if (limit && childs_count++ > limit) {
333                         dbg("%llu, maximum number (%i) of child reached", msg->seqnum, childs_count);
334                         return 1;
335                 }
336                 if (loop_msg->devpath == NULL)
337                         continue;
338
339                 /* return running parent/child device event */
340                 if (compare_devpath(loop_msg->devpath, msg->devpath) != 0) {
341                         dbg("%llu, child device event still running %llu (%s)",
342                             msg->seqnum, loop_msg->seqnum, loop_msg->devpath);
343                         return 2;
344                 }
345
346                 /* return running physical device event */
347                 if (msg->physdevpath && msg->action && strcmp(msg->action, "add") == 0)
348                         if (compare_devpath(loop_msg->devpath, msg->physdevpath) != 0) {
349                                 dbg("%llu, physical device event still running %llu (%s)",
350                                     msg->seqnum, loop_msg->seqnum, loop_msg->devpath);
351                                 return 3;
352                         }
353         }
354
355         return 0;
356 }
357
358 /* exec queue management routine executes the events and serializes events in the same sequence */
359 static void exec_queue_manager(void)
360 {
361         struct uevent_msg *loop_msg;
362         struct uevent_msg *tmp_msg;
363         int running;
364
365         if (list_empty(&exec_list))
366                 return;
367
368         running = running_processes();
369         dbg("%d processes runnning on system", running);
370         if (running < 0)
371                 running = max_childs_running;
372
373         list_for_each_entry_safe(loop_msg, tmp_msg, &exec_list, node) {
374                 /* check running processes in our session and possibly throttle */
375                 if (running >= max_childs_running) {
376                         running = running_processes_in_session(sid, max_childs_running+10);
377                         dbg("at least %d processes running in session", running);
378                         if (running >= max_childs_running) {
379                                 dbg("delay seq %llu, cause too many processes already running",
380                                     loop_msg->seqnum);
381                                 return;
382                         }
383                 }
384
385                 if (running_with_devpath(loop_msg, max_childs) == 0) {
386                         /* move event to run list */
387                         list_move_tail(&loop_msg->node, &running_list);
388                         execute_udev(loop_msg);
389                         running++;
390                         dbg("moved seq %llu to running list", loop_msg->seqnum);
391                 } else
392                         dbg("delay seq %llu (%s)", loop_msg->seqnum, loop_msg->devpath);
393         }
394 }
395
396 static void msg_move_exec(struct uevent_msg *msg)
397 {
398         list_move_tail(&msg->node, &exec_list);
399         run_exec_q = 1;
400         expected_seqnum = msg->seqnum+1;
401         dbg("moved seq %llu to exec, next expected is %llu",
402                 msg->seqnum, expected_seqnum);
403 }
404
405 /* msg queue management routine handles the timeouts and dispatches the events */
406 static void msg_queue_manager(void)
407 {
408         struct uevent_msg *loop_msg;
409         struct uevent_msg *tmp_msg;
410         struct sysinfo info;
411         long msg_age = 0;
412         int timeout = event_timeout;
413
414         dbg("msg queue manager, next expected is %llu", expected_seqnum);
415 recheck:
416         sysinfo(&info);
417         list_for_each_entry_safe(loop_msg, tmp_msg, &msg_list, node) {
418                 /* move event with expected sequence to the exec list */
419                 if (loop_msg->seqnum == expected_seqnum) {
420                         msg_move_exec(loop_msg);
421                         continue;
422                 }
423
424                 /* limit timeout during initialization phase */
425                 if (init_phase) {
426                         timeout = UDEVD_INIT_EVENT_TIMEOUT;
427                         dbg("initialization phase, limit timeout to %i seconds", UDEVD_INIT_EVENT_TIMEOUT);
428                 }
429
430                 /* move event with expired timeout to the exec list */
431                 msg_age = info.uptime - loop_msg->queue_time;
432                 dbg("seq %llu is %li seconds old", loop_msg->seqnum, msg_age);
433                 if (msg_age >= timeout) {
434                         msg_move_exec(loop_msg);
435                         goto recheck;
436                 } else {
437                         break;
438                 }
439         }
440
441         msg_dump_queue();
442
443         /* set timeout for remaining queued events */
444         if (list_empty(&msg_list) == 0) {
445                 struct itimerval itv = {{0, 0}, {timeout - msg_age, 0}};
446                 dbg("next event expires in %li seconds", timeout - msg_age);
447                 setitimer(ITIMER_REAL, &itv, NULL);
448         }
449 }
450
451 static struct uevent_msg *get_msg_from_envbuf(const char *buf, int buf_size)
452 {
453         int bufpos;
454         int i;
455         struct uevent_msg *msg;
456
457         msg = malloc(sizeof(struct uevent_msg) + buf_size);
458         if (msg == NULL)
459                 return NULL;
460         memset(msg, 0x00, sizeof(struct uevent_msg) + buf_size);
461
462         /* copy environment buffer and reconstruct envp */
463         memcpy(msg->envbuf, buf, buf_size);
464         bufpos = 0;
465         for (i = 0; (bufpos < buf_size) && (i < UEVENT_NUM_ENVP-2); i++) {
466                 int keylen;
467                 char *key;
468
469                 key = &msg->envbuf[bufpos];
470                 keylen = strlen(key);
471                 msg->envp[i] = key;
472                 bufpos += keylen + 1;
473                 dbg("add '%s' to msg.envp[%i]", msg->envp[i], i);
474
475                 /* remember some keys for further processing */
476                 if (strncmp(key, "ACTION=", 7) == 0)
477                         msg->action = &key[7];
478
479                 if (strncmp(key, "DEVPATH=", 8) == 0)
480                         msg->devpath = &key[8];
481
482                 if (strncmp(key, "SUBSYSTEM=", 10) == 0)
483                         msg->subsystem = &key[10];
484
485                 if (strncmp(key, "SEQNUM=", 7) == 0)
486                         msg->seqnum = strtoull(&key[7], NULL, 10);
487
488                 if (strncmp(key, "PHYSDEVPATH=", 12) == 0)
489                         msg->physdevpath = &key[12];
490
491                 if (strncmp(key, "TIMEOUT=", 8) == 0)
492                         msg->timeout = strtoull(&key[8], NULL, 10);
493         }
494         msg->envp[i++] = "UDEVD_EVENT=1";
495         msg->envp[i] = NULL;
496
497         return msg;
498 }
499
500 /* receive the udevd message from userspace */
501 static struct uevent_msg *get_udevd_msg(void)
502 {
503         static struct udevd_msg usend_msg;
504         struct uevent_msg *msg;
505         ssize_t size;
506         struct msghdr smsg;
507         struct cmsghdr *cmsg;
508         struct iovec iov;
509         struct ucred *cred;
510         char cred_msg[CMSG_SPACE(sizeof(struct ucred))];
511         int envbuf_size;
512         int *intval;
513
514         memset(&usend_msg, 0x00, sizeof(struct udevd_msg));
515         iov.iov_base = &usend_msg;
516         iov.iov_len = sizeof(struct udevd_msg);
517
518         memset(&smsg, 0x00, sizeof(struct msghdr));
519         smsg.msg_iov = &iov;
520         smsg.msg_iovlen = 1;
521         smsg.msg_control = cred_msg;
522         smsg.msg_controllen = sizeof(cred_msg);
523
524         size = recvmsg(udevd_sock, &smsg, 0);
525         if (size <  0) {
526                 if (errno != EINTR)
527                         dbg("unable to receive udevd message");
528                 return NULL;
529         }
530         cmsg = CMSG_FIRSTHDR(&smsg);
531         cred = (struct ucred *) CMSG_DATA(cmsg);
532
533         if (cmsg == NULL || cmsg->cmsg_type != SCM_CREDENTIALS) {
534                 info("no sender credentials received, message ignored");
535                 return NULL;
536         }
537
538         if (cred->uid != 0) {
539                 info("sender uid=%i, message ignored", cred->uid);
540                 return NULL;
541         }
542
543         if (strncmp(usend_msg.magic, UDEV_MAGIC, sizeof(UDEV_MAGIC)) != 0 ) {
544                 info("message magic '%s' doesn't match, ignore it", usend_msg.magic);
545                 return NULL;
546         }
547
548         switch (usend_msg.type) {
549         case UDEVD_UEVENT_UDEVSEND:
550         case UDEVD_UEVENT_INITSEND:
551                 info("udevd event message received");
552                 envbuf_size = size - offsetof(struct udevd_msg, envbuf);
553                 dbg("envbuf_size=%i", envbuf_size);
554                 msg = get_msg_from_envbuf(usend_msg.envbuf, envbuf_size);
555                 if (msg == NULL)
556                         return NULL;
557                 msg->type = usend_msg.type;
558                 return msg;
559         case UDEVD_STOP_EXEC_QUEUE:
560                 info("udevd message (STOP_EXEC_QUEUE) received");
561                 stop_exec_q = 1;
562                 break;
563         case UDEVD_START_EXEC_QUEUE:
564                 info("udevd message (START_EXEC_QUEUE) received");
565                 stop_exec_q = 0;
566                 exec_queue_manager();
567                 break;
568         case UDEVD_SET_LOG_LEVEL:
569                 intval = (int *) usend_msg.envbuf;
570                 info("udevd message (SET_LOG_PRIORITY) received, udev_log_priority=%i", *intval);
571                 udev_log_priority = *intval;
572                 break;
573         case UDEVD_SET_MAX_CHILDS:
574                 intval = (int *) usend_msg.envbuf;
575                 info("udevd message (UDEVD_SET_MAX_CHILDS) received, max_childs=%i", *intval);
576                 max_childs = *intval;
577                 break;
578         default:
579                 dbg("unknown message type");
580         }
581         return NULL;
582 }
583
584 /* receive the kernel user event message and do some sanity checks */
585 static struct uevent_msg *get_netlink_msg(void)
586 {
587         struct uevent_msg *msg;
588         int bufpos;
589         ssize_t size;
590         static char buffer[UEVENT_BUFFER_SIZE + 512];
591         char *pos;
592
593         size = recv(uevent_netlink_sock, &buffer, sizeof(buffer), 0);
594         if (size <  0) {
595                 if (errno != EINTR)
596                         dbg("unable to receive udevd message");
597                 return NULL;
598         }
599
600         if ((size_t)size > sizeof(buffer)-1)
601                 size = sizeof(buffer)-1;
602         buffer[size] = '\0';
603         dbg("uevent_size=%li", (long)size);
604
605         /* start of event payload */
606         bufpos = strlen(buffer)+1;
607         msg = get_msg_from_envbuf(&buffer[bufpos], size-bufpos);
608         if (msg == NULL)
609                 return NULL;
610         msg->type = UDEVD_UEVENT_NETLINK;
611
612         /* validate message */
613         pos = strchr(buffer, '@');
614         if (pos == NULL) {
615                 dbg("invalid uevent '%s'", buffer);
616                 free(msg);
617                 return NULL;
618         }
619         pos[0] = '\0';
620
621         if (msg->action == NULL) {
622                 dbg("no ACTION in payload found, skip event '%s'", buffer);
623                 free(msg);
624                 return NULL;
625         }
626
627         if (strcmp(msg->action, buffer) != 0) {
628                 dbg("ACTION in payload does not match uevent, skip event '%s'", buffer);
629                 free(msg);
630                 return NULL;
631         }
632
633         return msg;
634 }
635
636 static void asmlinkage sig_handler(int signum)
637 {
638         int rc;
639
640         switch (signum) {
641                 case SIGINT:
642                 case SIGTERM:
643                         exit(20 + signum);
644                         break;
645                 case SIGALRM:
646                         /* set flag, then write to pipe if needed */
647                         run_msg_q = 1;
648                         goto do_write;
649                         break;
650                 case SIGCHLD:
651                         /* set flag, then write to pipe if needed */
652                         sigchilds_waiting = 1;
653                         goto do_write;
654                         break;
655         }
656
657 do_write:
658         /* if pipe is empty, write to pipe to force select to return
659          * immediately when it gets called
660          */
661         if (!sig_flag) {
662                 rc = write(pipefds[1],&signum,sizeof(signum));
663                 if (rc >= 0)
664                         sig_flag = 1;
665         }
666 }
667
668 static void udev_done(int pid)
669 {
670         /* find msg associated with pid and delete it */
671         struct uevent_msg *msg;
672         struct sysinfo info;
673
674         list_for_each_entry(msg, &running_list, node) {
675                 if (msg->pid == pid) {
676                         sysinfo(&info);
677                         info("seq %llu exit, %ld seconds old", msg->seqnum, info.uptime - msg->queue_time);
678                         run_queue_delete(msg);
679
680                         /* we want to run the exec queue manager since there may
681                          * be events waiting with the devpath of the one that
682                          * just finished
683                          */
684                         run_exec_q = 1;
685                         return;
686                 }
687         }
688 }
689
690 static void reap_sigchilds(void)
691 {
692         while(1) {
693                 int pid = waitpid(-1, NULL, WNOHANG);
694                 if ((pid == -1) || (pid == 0))
695                         break;
696                 udev_done(pid);
697         }
698 }
699
700 /* just read everything from the pipe and clear the flag,
701  * the flags was set in the signal handler
702  */
703 static void user_sighandler(void)
704 {
705         int sig;
706
707         while(1) {
708                 int rc = read(pipefds[0], &sig, sizeof(sig));
709                 if (rc < 0)
710                         break;
711
712                 sig_flag = 0;
713         }
714 }
715
716 static int init_udevd_socket(void)
717 {
718         struct sockaddr_un saddr;
719         socklen_t addrlen;
720         const int feature_on = 1;
721         int retval;
722
723         memset(&saddr, 0x00, sizeof(saddr));
724         saddr.sun_family = AF_LOCAL;
725         /* use abstract namespace for socket path */
726         strcpy(&saddr.sun_path[1], UDEVD_SOCK_PATH);
727         addrlen = offsetof(struct sockaddr_un, sun_path) + strlen(saddr.sun_path+1) + 1;
728
729         udevd_sock = socket(AF_LOCAL, SOCK_DGRAM, 0);
730         if (udevd_sock == -1) {
731                 err("error getting socket, %s", strerror(errno));
732                 return -1;
733         }
734
735         /* the bind takes care of ensuring only one copy running */
736         retval = bind(udevd_sock, (struct sockaddr *) &saddr, addrlen);
737         if (retval < 0) {
738                 err("bind failed, %s", strerror(errno));
739                 close(udevd_sock);
740                 return -1;
741         }
742
743         /* enable receiving of the sender credentials */
744         setsockopt(udevd_sock, SOL_SOCKET, SO_PASSCRED, &feature_on, sizeof(feature_on));
745
746         return 0;
747 }
748
749 static int init_uevent_netlink_sock(void)
750 {
751         struct sockaddr_nl snl;
752         int retval;
753
754         memset(&snl, 0x00, sizeof(struct sockaddr_nl));
755         snl.nl_family = AF_NETLINK;
756         snl.nl_pid = getpid();
757         snl.nl_groups = 0xffffffff;
758
759         uevent_netlink_sock = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
760         if (uevent_netlink_sock == -1) {
761                 dbg("error getting socket, %s", strerror(errno));
762                 return -1;
763         }
764
765         retval = bind(uevent_netlink_sock, (struct sockaddr *) &snl,
766                       sizeof(struct sockaddr_nl));
767         if (retval < 0) {
768                 dbg("bind failed, %s", strerror(errno));
769                 close(uevent_netlink_sock);
770                 uevent_netlink_sock = -1;
771                 return -1;
772         }
773
774         return 0;
775 }
776
777 int main(int argc, char *argv[], char *envp[])
778 {
779         int maxsockplus;
780         int retval;
781         int fd;
782         struct sigaction act;
783         fd_set readfds;
784         const char *value;
785         int uevent_netlink_active = 0;
786         int daemonize = 0;
787         int i;
788
789         logging_init("udevd");
790         udev_init_config();
791         dbg("version %s", UDEV_VERSION);
792
793         if (getuid() != 0) {
794                 err("need to be root, exit");
795                 goto exit;
796         }
797
798         for (i = 1 ; i < argc; i++) {
799                 char *arg = argv[i];
800                 if (strcmp(arg, "--daemon") == 0 || strcmp(arg, "-d") == 0) {
801                         info("will daemonize");
802                         daemonize = 1;
803                 }
804                 if (strcmp(arg, "--stop-exec-queue") == 0) {
805                         info("will not execute events until START_EXEC_QUEUE is received");
806                         stop_exec_q = 1;
807                 }
808         }
809         if (daemonize) {
810                 pid_t pid;
811
812                 pid = fork();
813                 switch (pid) {
814                 case 0:
815                         dbg("damonized fork running");
816                         break;
817                 case -1:
818                         err("fork of daemon failed");
819                         goto exit;
820                 default:
821                         logging_close();
822                         exit(0);
823                 }
824         }
825
826         /* become session leader */
827         sid = setsid();
828         dbg("our session is %d", sid);
829
830         chdir("/");
831         umask(umask(077) | 022);
832
833         /*set a reasonable scheduling priority for the daemon */
834         setpriority(PRIO_PROCESS, 0, UDEVD_PRIORITY);
835
836         /* Set fds to dev/null */
837         fd = open( "/dev/null", O_RDWR );
838         if (fd >= 0)  {
839                 dup2(fd, 0);
840                 dup2(fd, 1);
841                 dup2(fd, 2);
842                 if (fd > 2)
843                         close(fd);
844         } else
845                 err("error opening /dev/null %s", strerror(errno));
846
847         /* setup signal handler pipe */
848         retval = pipe(pipefds);
849         if (retval < 0) {
850                 err("error getting pipes: %s", strerror(errno));
851                 goto exit;
852         }
853
854         retval = fcntl(pipefds[0], F_SETFL, O_NONBLOCK);
855         if (retval < 0) {
856                 err("error fcntl on read pipe: %s", strerror(errno));
857                 goto exit;
858         }
859         retval = fcntl(pipefds[0], F_SETFD, FD_CLOEXEC);
860         if (retval < 0)
861                 err("error fcntl on read pipe: %s", strerror(errno));
862
863         retval = fcntl(pipefds[1], F_SETFL, O_NONBLOCK);
864         if (retval < 0) {
865                 err("error fcntl on write pipe: %s", strerror(errno));
866                 goto exit;
867         }
868         retval = fcntl(pipefds[1], F_SETFD, FD_CLOEXEC);
869         if (retval < 0)
870                 err("error fcntl on write pipe: %s", strerror(errno));
871
872         /* set signal handlers */
873         memset(&act, 0x00, sizeof(struct sigaction));
874         act.sa_handler = (void (*)(int)) sig_handler;
875         sigemptyset(&act.sa_mask);
876         act.sa_flags = SA_RESTART;
877         sigaction(SIGINT, &act, NULL);
878         sigaction(SIGTERM, &act, NULL);
879         sigaction(SIGALRM, &act, NULL);
880         sigaction(SIGCHLD, &act, NULL);
881
882         if (init_uevent_netlink_sock() < 0) {
883                 dbg("uevent socket not available");
884         }
885
886         if (init_udevd_socket() < 0) {
887                 if (errno == EADDRINUSE)
888                         dbg("another udevd running, exit");
889                 else
890                         dbg("error initialising udevd socket: %s", strerror(errno));
891
892                 goto exit;
893         }
894
895         /* override of forked udev binary, used for testing */
896         udev_bin = getenv("UDEV_BIN");
897         if (udev_bin != NULL)
898                 info("udev binary is set to '%s'", udev_bin);
899         else
900                 udev_bin = UDEV_BIN;
901
902         /* init of expected_seqnum value */
903         value = getenv("UDEVD_EXPECTED_SEQNUM");
904         if (value) {
905                 expected_seqnum = strtoull(value, NULL, 10);
906                 info("initialize expected_seqnum to %llu", expected_seqnum);
907         }
908
909         /* timeout to wait for missing events */
910         value = getenv("UDEVD_EVENT_TIMEOUT");
911         if (value)
912                 event_timeout = strtoul(value, NULL, 10);
913         else
914                 event_timeout = UDEVD_EVENT_TIMEOUT;
915         info("initialize event_timeout to %u", event_timeout);
916
917         /* maximum limit of forked childs */
918         value = getenv("UDEVD_MAX_CHILDS");
919         if (value)
920                 max_childs = strtoul(value, NULL, 10);
921         else
922                 max_childs = UDEVD_MAX_CHILDS;
923         info("initialize max_childs to %u", max_childs);
924
925         /* start to throttle forking if maximum number of _running_ childs is reached */
926         value = getenv("UDEVD_MAX_CHILDS_RUNNING");
927         if (value)
928                 max_childs_running = strtoull(value, NULL, 10);
929         else
930                 max_childs_running = UDEVD_MAX_CHILDS_RUNNING;
931         info("initialize max_childs_running to %u", max_childs_running);
932
933         FD_ZERO(&readfds);
934         FD_SET(udevd_sock, &readfds);
935         if (uevent_netlink_sock != -1)
936                 FD_SET(uevent_netlink_sock, &readfds);
937         FD_SET(pipefds[0], &readfds);
938         maxsockplus = udevd_sock+1;
939         while (1) {
940                 struct uevent_msg *msg;
941
942                 fd_set workreadfds = readfds;
943                 retval = select(maxsockplus, &workreadfds, NULL, NULL, NULL);
944
945                 if (retval < 0) {
946                         if (errno != EINTR)
947                                 dbg("error in select: %s", strerror(errno));
948                         continue;
949                 }
950
951                 if (FD_ISSET(udevd_sock, &workreadfds)) {
952                         msg = get_udevd_msg();
953                         if (msg) {
954                                 /* discard kernel messages if netlink is active */
955                                 if (uevent_netlink_active && msg->type == UDEVD_UEVENT_UDEVSEND && msg->seqnum != 0) {
956                                         dbg("skip uevent_helper message, netlink is active");
957                                         free(msg);
958                                         continue;
959                                 }
960                                 msg_queue_insert(msg);
961                         }
962                 }
963
964                 if (FD_ISSET(uevent_netlink_sock, &workreadfds)) {
965                         msg = get_netlink_msg();
966                         if (msg) {
967                                 msg_queue_insert(msg);
968                                 /* disable udevsend with first netlink message */
969                                 if (!uevent_netlink_active) {
970                                         info("uevent_nl message received, disable udevsend messages");
971                                         uevent_netlink_active = 1;
972                                 }
973                         }
974                 }
975
976                 if (FD_ISSET(pipefds[0], &workreadfds))
977                         user_sighandler();
978
979                 if (sigchilds_waiting) {
980                         sigchilds_waiting = 0;
981                         reap_sigchilds();
982                 }
983
984                 if (run_msg_q) {
985                         run_msg_q = 0;
986                         msg_queue_manager();
987                 }
988
989                 if (run_exec_q) {
990                          /* clean up running_list before calling exec_queue_manager() */
991                         if (sigchilds_waiting) {
992                                 sigchilds_waiting = 0;
993                                 reap_sigchilds();
994                         }
995
996                         run_exec_q = 0;
997                         if (!stop_exec_q)
998                                 exec_queue_manager();
999                 }
1000         }
1001
1002 exit:
1003         logging_close();
1004         return 1;
1005 }