]> git.ipfire.org Git - thirdparty/systemd.git/blame - udevd.c
[PATCH] remove some more KLIBC fixups that are no longer needed.
[thirdparty/systemd.git] / udevd.c
CommitLineData
7fafc032 1/*
53921bfa 2 * udevd.c - hotplug event serializer
7fafc032 3 *
7fafc032 4 * Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
2f6cbd19 5 * Copyright (C) 2004 Chris Friesen <chris_friesen@sympatico.ca>
7fafc032
KS
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
a695feae 23#include <stddef.h>
90c210eb 24#include <sys/wait.h>
7fafc032
KS
25#include <signal.h>
26#include <unistd.h>
27#include <errno.h>
28#include <stdio.h>
29#include <stdlib.h>
30#include <string.h>
a695feae 31#include <time.h>
53921bfa
KS
32#include <sys/types.h>
33#include <sys/socket.h>
34#include <sys/un.h>
2f6cbd19 35#include <sys/time.h>
7fafc032 36
a695feae 37#include "list.h"
7fafc032 38#include "udev.h"
35b7d88c 39#include "udev_version.h"
7fafc032
KS
40#include "udevd.h"
41#include "logging.h"
42
53921bfa 43static int expected_seqnum = 0;
2f6cbd19
KS
44volatile static int children_waiting;
45volatile static int msg_q_timeout;
7fafc032 46
a695feae 47LIST_HEAD(msg_list);
53921bfa 48LIST_HEAD(exec_list);
35b7d88c 49LIST_HEAD(running_list);
7fafc032 50
2f6cbd19
KS
51static void exec_queue_manager(void);
52static void msg_queue_manager(void);
7fafc032 53
51a8bb2f
GKH
54unsigned char logname[42];
55
56int log_ok(void)
57{
58 return 1;
59}
60
53921bfa 61static void msg_dump_queue(void)
7fafc032 62{
53921bfa 63 struct hotplug_msg *msg;
7fafc032 64
53921bfa
KS
65 list_for_each_entry(msg, &msg_list, list)
66 dbg("sequence %d in queue", msg->seqnum);
35b7d88c
KS
67}
68
53921bfa 69static void msg_dump(struct hotplug_msg *msg)
35b7d88c 70{
53921bfa
KS
71 dbg("sequence %d, '%s', '%s', '%s'",
72 msg->seqnum, msg->action, msg->devpath, msg->subsystem);
35b7d88c
KS
73}
74
53921bfa 75static struct hotplug_msg *msg_create(void)
35b7d88c 76{
53921bfa 77 struct hotplug_msg *new_msg;
35b7d88c 78
53921bfa 79 new_msg = malloc(sizeof(struct hotplug_msg));
2f6cbd19 80 if (new_msg == NULL)
53921bfa 81 dbg("error malloc");
53921bfa 82 return new_msg;
35b7d88c
KS
83}
84
2f6cbd19 85static void run_queue_delete(struct hotplug_msg *msg)
8e2229c4 86{
2f6cbd19
KS
87 list_del(&msg->list);
88 free(msg);
89 exec_queue_manager();
8e2229c4
KS
90}
91
53921bfa
KS
92/* orders the message in the queue by sequence number */
93static void msg_queue_insert(struct hotplug_msg *msg)
35b7d88c 94{
53921bfa 95 struct hotplug_msg *loop_msg;
35b7d88c 96
53921bfa
KS
97 /* sort message by sequence number into list*/
98 list_for_each_entry(loop_msg, &msg_list, list)
99 if (loop_msg->seqnum > msg->seqnum)
100 break;
101 list_add_tail(&msg->list, &loop_msg->list);
102 dbg("queued message seq %d", msg->seqnum);
35b7d88c 103
53921bfa
KS
104 /* store timestamp of queuing */
105 msg->queue_time = time(NULL);
35b7d88c 106
2f6cbd19
KS
107 /* run msg queue manager */
108 msg_queue_manager();
7fafc032 109
53921bfa 110 return ;
7fafc032
KS
111}
112
53921bfa 113/* forks event and removes event from run queue when finished */
2f6cbd19 114static void udev_run(struct hotplug_msg *msg)
7fafc032 115{
90c210eb 116 pid_t pid;
f8911dbb
KS
117 char action[32];
118 char devpath[256];
119 char *env[] = { action, devpath, NULL };
120
121 snprintf(action, sizeof(action), "ACTION=%s", msg->action);
122 snprintf(devpath, sizeof(devpath), "DEVPATH=%s", msg->devpath);
90c210eb
KS
123
124 pid = fork();
125 switch (pid) {
126 case 0:
33db4b8d 127 /* child */
f8911dbb 128 execle(UDEV_BIN, "udev", msg->subsystem, NULL, env);
33db4b8d
KS
129 dbg("exec of child failed");
130 exit(1);
90c210eb
KS
131 break;
132 case -1:
33db4b8d 133 dbg("fork of child failed");
2f6cbd19
KS
134 run_queue_delete(msg);
135 break;
90c210eb 136 default:
2f6cbd19
KS
137 /* get SIGCHLD in main loop */
138 dbg("==> exec seq %d [%d] working at '%s'", msg->seqnum, pid, msg->devpath);
139 msg->pid = pid;
90c210eb 140 }
7fafc032
KS
141}
142
53921bfa
KS
143/* returns already running task with devpath */
144static struct hotplug_msg *running_with_devpath(struct hotplug_msg *msg)
7fafc032 145{
53921bfa 146 struct hotplug_msg *loop_msg;
2f6cbd19 147 list_for_each_entry(loop_msg, &running_list, list)
53921bfa
KS
148 if (strncmp(loop_msg->devpath, msg->devpath, sizeof(loop_msg->devpath)) == 0)
149 return loop_msg;
150 return NULL;
7fafc032
KS
151}
152
2f6cbd19
KS
153/* exec queue management routine executes the events and delays events for the same devpath */
154static void exec_queue_manager()
7fafc032 155{
53921bfa
KS
156 struct hotplug_msg *loop_msg;
157 struct hotplug_msg *tmp_msg;
a695feae 158 struct hotplug_msg *msg;
53921bfa 159
2f6cbd19
KS
160 list_for_each_entry_safe(loop_msg, tmp_msg, &exec_list, list) {
161 msg = running_with_devpath(loop_msg);
162 if (!msg) {
163 /* move event to run list */
164 list_move_tail(&loop_msg->list, &running_list);
165 udev_run(loop_msg);
166 dbg("moved seq %d to running list", loop_msg->seqnum);
167 } else {
168 dbg("delay seq %d, cause seq %d already working on '%s'",
169 loop_msg->seqnum, msg->seqnum, msg->devpath);
53921bfa 170 }
53921bfa
KS
171 }
172}
173
2f6cbd19 174static void msg_move_exec(struct hotplug_msg *msg)
86590cd5 175{
2f6cbd19
KS
176 list_move_tail(&msg->list, &exec_list);
177 exec_queue_manager();
178 expected_seqnum = msg->seqnum+1;
179 dbg("moved seq %d to exec, next expected is %d",
180 msg->seqnum, expected_seqnum);
86590cd5
KS
181}
182
2f6cbd19
KS
183/* msg queue management routine handles the timeouts and dispatches the events */
184static void msg_queue_manager()
53921bfa
KS
185{
186 struct hotplug_msg *loop_msg;
a695feae 187 struct hotplug_msg *tmp_msg;
53921bfa 188 time_t msg_age = 0;
a695feae 189
2f6cbd19 190 dbg("msg queue manager, next expected is %d", expected_seqnum);
a695feae 191recheck:
2f6cbd19
KS
192 list_for_each_entry_safe(loop_msg, tmp_msg, &msg_list, list) {
193 /* move event with expected sequence to the exec list */
194 if (loop_msg->seqnum == expected_seqnum) {
195 msg_move_exec(loop_msg);
196 continue;
a695feae 197 }
35b7d88c 198
2f6cbd19
KS
199 /* move event with expired timeout to the exec list */
200 msg_age = time(NULL) - loop_msg->queue_time;
201 if (msg_age > EVENT_TIMEOUT_SEC-1) {
202 msg_move_exec(loop_msg);
203 goto recheck;
53921bfa 204 } else {
2f6cbd19 205 break;
53921bfa 206 }
2f6cbd19
KS
207 }
208
209 msg_dump_queue();
210
211 if (list_empty(&msg_list) == 0) {
212 /* set timeout for remaining queued events */
213 struct itimerval itv = {{0, 0}, {EVENT_TIMEOUT_SEC - msg_age, 0}};
214 dbg("next event expires in %li seconds",
215 EVENT_TIMEOUT_SEC - msg_age);
216 setitimer(ITIMER_REAL, &itv, 0);
7fafc032 217 }
7fafc032
KS
218}
219
2f6cbd19
KS
220/* receive the msg, do some basic sanity checks, and queue it */
221static void handle_msg(int sock)
7fafc032 222{
53921bfa
KS
223 struct hotplug_msg *msg;
224 int retval;
0028653c
KS
225 struct msghdr smsg;
226 struct cmsghdr *cmsg;
227 struct iovec iov;
228 struct ucred *cred;
229 char cred_msg[CMSG_SPACE(sizeof(struct ucred))];
a695feae 230
53921bfa
KS
231 msg = msg_create();
232 if (msg == NULL) {
233 dbg("unable to store message");
2f6cbd19 234 return;
7fafc032 235 }
7fafc032 236
0028653c
KS
237 iov.iov_base = msg;
238 iov.iov_len = sizeof(struct hotplug_msg);
239
240 memset(&smsg, 0x00, sizeof(struct msghdr));
241 smsg.msg_iov = &iov;
242 smsg.msg_iovlen = 1;
243 smsg.msg_control = cred_msg;
244 smsg.msg_controllen = sizeof(cred_msg);
245
246 retval = recvmsg(sock, &smsg, 0);
53921bfa 247 if (retval < 0) {
2f6cbd19
KS
248 if (errno != EINTR)
249 dbg("unable to receive message");
250 return;
53921bfa 251 }
0028653c
KS
252 cmsg = CMSG_FIRSTHDR(&smsg);
253 cred = (struct ucred *) CMSG_DATA(cmsg);
254
255 if (cred->uid != 0) {
256 dbg("sender uid=%i, message ignored", cred->uid);
257 free(msg);
258 return;
259 }
260
53921bfa
KS
261 if (strncmp(msg->magic, UDEV_MAGIC, sizeof(UDEV_MAGIC)) != 0 ) {
262 dbg("message magic '%s' doesn't match, ignore it", msg->magic);
2f6cbd19
KS
263 free(msg);
264 return;
53921bfa 265 }
a695feae 266
86590cd5 267 /* if no seqnum is given, we move straight to exec queue */
2f6cbd19 268 if (msg->seqnum == -1) {
86590cd5 269 list_add(&msg->list, &exec_list);
2f6cbd19 270 exec_queue_manager();
86590cd5 271 } else {
86590cd5 272 msg_queue_insert(msg);
86590cd5 273 }
a695feae 274}
1c5c245e 275
53921bfa 276static void sig_handler(int signum)
7fafc032 277{
53921bfa
KS
278 switch (signum) {
279 case SIGINT:
280 case SIGTERM:
53921bfa
KS
281 exit(20 + signum);
282 break;
2f6cbd19
KS
283 case SIGALRM:
284 msg_q_timeout = 1;
285 break;
286 case SIGCHLD:
287 children_waiting = 1;
288 break;
53921bfa
KS
289 default:
290 dbg("unhandled signal");
7fafc032 291 }
33db4b8d 292}
7fafc032 293
2f6cbd19
KS
294static void udev_done(int pid)
295{
296 /* find msg associated with pid and delete it */
297 struct hotplug_msg *msg;
298
299 list_for_each_entry(msg, &running_list, list) {
300 if (msg->pid == pid) {
301 dbg("<== exec seq %d came back", msg->seqnum);
302 run_queue_delete(msg);
303 return;
304 }
305 }
306}
307
33db4b8d
KS
308int main(int argc, char *argv[])
309{
53921bfa 310 int ssock;
53921bfa 311 struct sockaddr_un saddr;
1dadabd7 312 socklen_t addrlen;
53921bfa 313 int retval;
0028653c 314 const int on = 1;
f8911dbb 315 struct sigaction act;
53921bfa 316
95a6f4c8
GKH
317 init_logging("udevd");
318
f8911dbb
KS
319 /* set signal handler */
320 act.sa_handler = sig_handler;
321 sigemptyset (&act.sa_mask);
322 act.sa_flags = SA_RESTART;
323 sigaction(SIGINT, &act, NULL);
324 sigaction(SIGTERM, &act, NULL);
2f6cbd19
KS
325
326 /* we want these two to interrupt system calls */
f8911dbb
KS
327 act.sa_flags = 0;
328 sigaction(SIGALRM, &act, NULL);
329 sigaction(SIGCHLD, &act, NULL);
7fafc032 330
53921bfa
KS
331 memset(&saddr, 0x00, sizeof(saddr));
332 saddr.sun_family = AF_LOCAL;
872344c4
KS
333 /* use abstract namespace for socket path */
334 strcpy(&saddr.sun_path[1], UDEVD_SOCK_PATH);
1dadabd7 335 addrlen = offsetof(struct sockaddr_un, sun_path) + strlen(saddr.sun_path+1) + 1;
53921bfa 336
2f6cbd19 337 ssock = socket(AF_LOCAL, SOCK_DGRAM, 0);
53921bfa
KS
338 if (ssock == -1) {
339 dbg("error getting socket");
340 exit(1);
341 }
342
2f6cbd19 343 /* the bind takes care of ensuring only one copy running */
f8911dbb 344 retval = bind(ssock, (struct sockaddr *) &saddr, addrlen);
53921bfa
KS
345 if (retval < 0) {
346 dbg("bind failed\n");
347 goto exit;
348 }
349
0028653c
KS
350 /* enable receiving of the sender credentials */
351 setsockopt(ssock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
352
2f6cbd19
KS
353 while (1) {
354 handle_msg(ssock);
53921bfa 355
2f6cbd19
KS
356 while(msg_q_timeout) {
357 msg_q_timeout = 0;
358 msg_queue_manager();
359 }
53921bfa 360
2f6cbd19
KS
361 while(children_waiting) {
362 children_waiting = 0;
363 /* reap all dead children */
364 while(1) {
365 int pid = waitpid(-1, 0, WNOHANG);
366 if ((pid == -1) || (pid == 0))
367 break;
368 udev_done(pid);
369 }
53921bfa 370 }
53921bfa
KS
371 }
372exit:
373 close(ssock);
53921bfa 374 exit(1);
7fafc032 375}