Convert log calls to ulog() api
[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 ulog_open(ULOG_KMSG, LOG_DAEMON, "procd");
47
48 if (dbglvl) {
49 debug = atoi(dbglvl);
50 unsetenv("DBGLVL");
51 }
52
53 while ((ch = getopt(argc, argv, "d:s:h:")) != -1) {
54 switch (ch) {
55 case 'h':
56 return hotplug_run(optarg);
57 case 's':
58 ubus_socket = optarg;
59 break;
60 case 'd':
61 debug = atoi(optarg);
62 break;
63 default:
64 return usage(argv[0]);
65 }
66 }
67 setsid();
68 uloop_init();
69 procd_signal();
70 trigger_init();
71 if (getpid() != 1)
72 procd_connect_ubus();
73 else
74 procd_state_next();
75 uloop_run();
76 uloop_done();
77
78 return 0;
79 }