add support for alias devices, which are activated based on hotplug events containing...
[project/netifd.git] / netifd.h
1 #ifndef __NETIFD_H
2 #define __NETIFD_H
3
4 #include <sys/socket.h>
5 #include <net/if.h>
6
7 #include <stdbool.h>
8 #include <stdio.h>
9
10 #include <libubox/uloop.h>
11
12 #include <libubus.h>
13
14 #include "utils.h"
15
16 #ifdef DUMMY_MODE
17 #define DEFAULT_MAIN_PATH       "./dummy"
18 #define DEFAULT_HOTPLUG_PATH    "./scripts/hotplug-cmd"
19 #define DEFAULT_RESOLV_CONF     "./tmp/resolv.conf"
20 #else
21 #define DEFAULT_MAIN_PATH       "/lib/netifd"
22 #define DEFAULT_HOTPLUG_PATH    "/sbin/hotplug-cmd"
23 #define DEFAULT_RESOLV_CONF     "/tmp/resolv.conf.auto"
24 #endif
25
26 extern const char *resolv_conf;
27 extern char *hotplug_cmd_path;
28 extern unsigned int debug_mask;
29
30 enum {
31         DEBUG_SYSTEM    = 0,
32         DEBUG_DEVICE    = 1,
33         DEBUG_INTERFACE = 2,
34 };
35
36 #ifdef DEBUG
37 #define DPRINTF(format, ...) fprintf(stderr, "%s(%d): " format, __func__, __LINE__, ## __VA_ARGS__)
38 #define D(level, format, ...) do { \
39                 if (debug_mask & (1 << (DEBUG_ ## level))) \
40                                 DPRINTF(format, ##__VA_ARGS__); \
41         } while (0)
42 #else
43 #define DPRINTF(format, ...) no_debug(0, format, ## __VA_ARGS__)
44 #define D(level, format, ...) no_debug(DEBUG_ ## level, format, ## __VA_ARGS__)
45 #endif
46
47 #define LOG_BUF_SIZE    256
48
49 static inline void no_debug(int level, const char *fmt, ...)
50 {
51 }
52
53 struct netifd_fd {
54         struct list_head list;
55         struct netifd_process *proc;
56         int fd;
57 };
58
59 struct netifd_process {
60         struct list_head list;
61         struct uloop_process uloop;
62         void (*cb)(struct netifd_process *, int ret);
63         int dir_fd;
64
65         struct netifd_fd log_fd;
66         struct uloop_fd log_uloop;
67         const char *log_prefix;
68         char *log_buf;
69         int log_buf_ofs;
70         bool log_overflow;
71 };
72
73 void netifd_log_message(int priority, const char *format, ...);
74
75 int netifd_start_process(const char **argv, char **env, struct netifd_process *proc);
76 void netifd_kill_process(struct netifd_process *proc);
77
78 void netifd_fd_add(struct netifd_fd *fd);
79 void netifd_fd_delete(struct netifd_fd *fd);
80
81 struct device;
82 struct interface;
83
84 extern const char *main_path;
85 void netifd_restart(void);
86 void netifd_reload(void);
87
88 #endif