initd: mount cgroup
[project/procd.git] / procd.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/wait.h>
16 #include <sys/types.h>
17 #include <sys/stat.h>
18 #include <sys/reboot.h>
19
20 #include <unistd.h>
21 #include <getopt.h>
22 #include <libgen.h>
23
24 #include "procd.h"
25 #include "watchdog.h"
26 #include "plug/hotplug.h"
27
28 unsigned int debug;
29
30 static int usage(const char *prog)
31 {
32         ERROR("Usage: %s [options]\n"
33                 "Options:\n"
34                 "\t-s <path>\tPath to ubus socket\n"
35                 "\t-h <path>\trun as hotplug daemon\n"
36                 "\t-d <level>\tEnable debug messages\n"
37                 "\n", prog);
38         return 1;
39 }
40
41 int main(int argc, char **argv)
42 {
43         int ch;
44         char *dbglvl = getenv("DBGLVL");
45
46         if (dbglvl) {
47                 debug = atoi(dbglvl);
48                 unsetenv("DBGLVL");
49         }
50
51         while ((ch = getopt(argc, argv, "d:s:h:")) != -1) {
52                 switch (ch) {
53                 case 'h':
54                         return hotplug_run(optarg);
55                 case 's':
56                         ubus_socket = optarg;
57                         break;
58                 case 'd':
59                         debug = atoi(optarg);
60                         break;
61                 default:
62                         return usage(argv[0]);
63                 }
64         }
65         setsid();
66         uloop_init();
67         procd_signal();
68         trigger_init();
69         if (getpid() != 1)
70                 procd_connect_ubus();
71         else
72                 procd_state_next();
73         uloop_run();
74         uloop_done();
75
76         return 0;
77 }