DPRINTF no longer exists
[project/procd.git] / coldplug.c
1 /*
2  * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
3  * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU Lesser General Public License version 2.1
7  * as published by the Free Software Foundation
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include <sys/stat.h>
16 #include <sys/types.h>
17 #include <sys/mount.h>
18
19 #include <unistd.h>
20 #include <unistd.h>
21
22 #include "procd.h"
23 #include "hotplug.h"
24
25 static struct uloop_process udevtrigger;
26
27 static void coldplug_complete(struct uloop_timeout *t)
28 {
29         DEBUG(2, "Coldplug complete\n");
30         hotplug_last_event(NULL);
31         procd_state_next();
32 }
33
34 static void udevtrigger_complete(struct uloop_process *proc, int ret)
35 {
36         DEBUG(2, "Finished udevtrigger\n");
37 }
38
39 void procd_coldplug(void)
40 {
41         char *argv[] = { "udevtrigger", NULL };
42
43         umount2("/dev/pts", MNT_DETACH);
44         umount2("/dev/", MNT_DETACH);
45         mount("tmpfs", "/dev", "tmpfs", 0, "mode=0755,size=512K");
46         mkdir("/dev/shm", 0755);
47         mkdir("/dev/pts", 0755);
48         mount("devpts", "/dev/pts", "devpts", 0, 0);
49         udevtrigger.cb = udevtrigger_complete;
50         udevtrigger.pid = fork();
51         if (!udevtrigger.pid) {
52                 execvp(argv[0], argv);
53                 ERROR("Failed to start coldplug\n");
54                 exit(-1);
55         }
56
57         if (udevtrigger.pid <= 0) {
58                 ERROR("Failed to start new coldplug instance\n");
59                 return;
60         }
61
62         hotplug_last_event(coldplug_complete);
63         uloop_process_add(&udevtrigger);
64
65         DEBUG(2, "Launched coldplug instance, pid=%d\n", (int) udevtrigger.pid);
66 }