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.
17 #include <sys/socket.h>
23 #include <libubox/uloop.h>
24 #include <libubox/ustream.h>
25 #include <libubox/utils.h>
32 #define DEFAULT_MAIN_PATH "./examples"
33 #define DEFAULT_CONFIG_PATH "./config"
34 #define DEFAULT_HOTPLUG_PATH "./examples/hotplug-cmd"
35 #define DEFAULT_RESOLV_CONF "./tmp/resolv.conf"
37 #define DEFAULT_MAIN_PATH "/lib/netifd"
38 #define DEFAULT_CONFIG_PATH NULL /* use the default set in libuci */
39 #define DEFAULT_HOTPLUG_PATH "/sbin/hotplug-call"
40 #define DEFAULT_RESOLV_CONF "/tmp/resolv.conf.auto"
43 extern const char *resolv_conf;
44 extern char *hotplug_cmd_path;
45 extern unsigned int debug_mask;
63 #define DPRINTF(format, ...) fprintf(stderr, "%s(%d): " format, __func__, __LINE__, ## __VA_ARGS__)
64 #define D(level, format, ...) do { \
65 if (debug_mask & (1 << (DEBUG_ ## level))) \
66 DPRINTF(format, ##__VA_ARGS__); \
69 #define DPRINTF(format, ...) no_debug(0, format, ## __VA_ARGS__)
70 #define D(level, format, ...) no_debug(DEBUG_ ## level, format, ## __VA_ARGS__)
73 #define LOG_BUF_SIZE 256
75 static inline void no_debug(int level, const char *fmt, ...)
79 struct netifd_process {
80 struct list_head list;
81 struct uloop_process uloop;
82 void (*cb)(struct netifd_process *, int ret);
85 struct ustream_fd log;
86 const char *log_prefix;
90 void netifd_log_message(int priority, const char *format, ...);
92 int netifd_start_process(const char **argv, char **env, struct netifd_process *proc);
93 void netifd_kill_process(struct netifd_process *proc);
98 extern const char *main_path;
99 extern const char *config_path;
100 void netifd_restart(void);
101 void netifd_reload(void);