2 * netifd - network interface daemon
3 * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2
7 * as published by the Free Software Foundation
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.
26 #include "interface.h"
30 unsigned int debug_mask = 0;
31 const char *main_path = DEFAULT_MAIN_PATH;
32 const char *config_path = DEFAULT_CONFIG_PATH;
33 const char *resolv_conf = DEFAULT_RESOLV_CONF;
34 static char **global_argv;
36 static struct list_head process_list = LIST_HEAD_INIT(process_list);
38 #define DEFAULT_LOG_LEVEL L_NOTICE
40 static int log_level = DEFAULT_LOG_LEVEL;
41 static const int log_class[] = {
43 [L_WARNING] = LOG_WARNING,
44 [L_NOTICE] = LOG_NOTICE,
50 #define use_syslog false
52 static bool use_syslog = true;
57 netifd_delete_process(struct netifd_process *proc)
59 list_del(&proc->list);
60 ustream_free(&proc->log.stream);
61 close(proc->log.fd.fd);
65 netifd_log_message(int priority, const char *format, ...)
69 if (priority > log_level)
74 vsyslog(log_class[priority], format, vl);
76 vfprintf(stderr, format, vl);
81 netifd_process_log_read_cb(struct ustream *s, int bytes)
83 struct netifd_process *proc;
84 const char *log_prefix;
88 proc = container_of(s, struct netifd_process, log.stream);
89 log_prefix = proc->log_prefix;
91 log_prefix = "process";
96 data = ustream_get_read_buf(s, &len);
100 newline = strchr(data, '\n');
102 if (proc->log_overflow) {
104 len = newline + 1 - data;
105 proc->log_overflow = false;
107 } else if (newline) {
109 len = newline + 1 - data;
110 netifd_log_message(L_NOTICE, "%s (%d): %s\n",
111 log_prefix, proc->uloop.pid, data);
112 } else if (len == s->r.buffer_len) {
113 netifd_log_message(L_NOTICE, "%s (%d): %s [...]\n",
114 log_prefix, proc->uloop.pid, data);
115 proc->log_overflow = true;
119 ustream_consume(s, len);
124 netifd_process_cb(struct uloop_process *proc, int ret)
126 struct netifd_process *np;
127 np = container_of(proc, struct netifd_process, uloop);
129 while (ustream_poll(&np->log.stream));
130 netifd_delete_process(np);
131 return np->cb(np, ret);
135 netifd_start_process(const char **argv, char **env, struct netifd_process *proc)
140 netifd_kill_process(proc);
145 if ((pid = fork()) < 0)
157 if (proc->dir_fd >= 0)
158 if (fchdir(proc->dir_fd)) {}
162 for (i = 0; i <= 2; i++) {
172 execvp(argv[0], (char **) argv);
177 proc->uloop.cb = netifd_process_cb;
178 proc->uloop.pid = pid;
179 uloop_process_add(&proc->uloop);
180 list_add_tail(&proc->list, &process_list);
182 system_fd_set_cloexec(pfds[0]);
183 proc->log.stream.string_data = true;
184 proc->log.stream.notify_read = netifd_process_log_read_cb;
185 ustream_fd_init(&proc->log, pfds[0]);
196 netifd_kill_process(struct netifd_process *proc)
198 if (!proc->uloop.pending)
201 kill(proc->uloop.pid, SIGKILL);
202 uloop_process_delete(&proc->uloop);
203 netifd_delete_process(proc);
206 static void netifd_do_restart(struct uloop_timeout *timeout)
208 execvp(global_argv[0], global_argv);
211 int netifd_reload(void)
213 return config_init_all();
216 void netifd_restart(void)
218 static struct uloop_timeout main_timer = {
219 .cb = netifd_do_restart
222 interface_set_down(NULL);
223 uloop_timeout_set(&main_timer, 1000);
226 static int usage(const char *progname)
228 fprintf(stderr, "Usage: %s [options]\n"
230 " -d <mask>: Mask for debug messages\n"
231 " -s <path>: Path to the ubus socket\n"
232 " -p <path>: Path to netifd addons (default: %s)\n"
233 " -c <path>: Path to UCI configuration\n"
234 " -h <path>: Path to the hotplug script\n"
235 " -r <path>: Path to resolv.conf\n"
236 " -l <level>: Log output level (default: %d)\n"
237 " -S: Use stderr instead of syslog for log messages\n"
238 " (default: "DEFAULT_HOTPLUG_PATH")\n"
239 "\n", progname, main_path, DEFAULT_LOG_LEVEL);
245 netifd_handle_signal(int signo)
251 netifd_setup_signals(void)
255 memset(&s, 0, sizeof(s));
256 s.sa_handler = netifd_handle_signal;
258 sigaction(SIGINT, &s, NULL);
259 sigaction(SIGTERM, &s, NULL);
260 sigaction(SIGUSR1, &s, NULL);
261 sigaction(SIGUSR2, &s, NULL);
263 s.sa_handler = SIG_IGN;
264 sigaction(SIGPIPE, &s, NULL);
268 netifd_kill_processes(void)
270 struct netifd_process *proc, *tmp;
272 list_for_each_entry_safe(proc, tmp, &process_list, list)
273 netifd_kill_process(proc);
276 int main(int argc, char **argv)
278 const char *socket = NULL;
283 while ((ch = getopt(argc, argv, "d:s:p:c:h:r:l:S")) != -1) {
286 debug_mask = strtoul(optarg, NULL, 0);
295 config_path = optarg;
298 hotplug_cmd_path = optarg;
301 resolv_conf = optarg;
304 log_level = atoi(optarg);
305 if (log_level >= ARRAY_SIZE(log_class))
306 log_level = ARRAY_SIZE(log_class) - 1;
314 return usage(argv[0]);
319 openlog("netifd", 0, LOG_DAEMON);
321 netifd_setup_signals();
322 if (netifd_ubus_init(socket) < 0) {
323 fprintf(stderr, "Failed to connect to ubus\n");
331 fprintf(stderr, "Failed to initialize system control\n");
338 netifd_kill_processes();