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