use ustream for process message logging
[project/netifd.git] / netifd.h
1 /*
2  * netifd - network interface daemon
3  * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
4  *
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
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 #ifndef __NETIFD_H
15 #define __NETIFD_H
16
17 #include <sys/socket.h>
18 #include <net/if.h>
19
20 #include <stdbool.h>
21 #include <stdio.h>
22
23 #include <libubox/uloop.h>
24 #include <libubox/ustream.h>
25
26 #include <libubus.h>
27
28 #include "utils.h"
29
30 #ifdef DUMMY_MODE
31 #define DEFAULT_MAIN_PATH       "./dummy"
32 #define DEFAULT_HOTPLUG_PATH    "./scripts/hotplug-cmd"
33 #define DEFAULT_RESOLV_CONF     "./tmp/resolv.conf"
34 #else
35 #define DEFAULT_MAIN_PATH       "/lib/netifd"
36 #define DEFAULT_HOTPLUG_PATH    "/sbin/hotplug-call"
37 #define DEFAULT_RESOLV_CONF     "/tmp/resolv.conf.auto"
38 #endif
39
40 extern const char *resolv_conf;
41 extern char *hotplug_cmd_path;
42 extern unsigned int debug_mask;
43
44 enum {
45         L_CRIT,
46         L_WARNING,
47         L_NOTICE,
48         L_INFO,
49         L_DEBUG
50 };
51
52 enum {
53         DEBUG_SYSTEM    = 0,
54         DEBUG_DEVICE    = 1,
55         DEBUG_INTERFACE = 2,
56 };
57
58 #ifdef DEBUG
59 #define DPRINTF(format, ...) fprintf(stderr, "%s(%d): " format, __func__, __LINE__, ## __VA_ARGS__)
60 #define D(level, format, ...) do { \
61                 if (debug_mask & (1 << (DEBUG_ ## level))) \
62                                 DPRINTF(format, ##__VA_ARGS__); \
63         } while (0)
64 #else
65 #define DPRINTF(format, ...) no_debug(0, format, ## __VA_ARGS__)
66 #define D(level, format, ...) no_debug(DEBUG_ ## level, format, ## __VA_ARGS__)
67 #endif
68
69 #define LOG_BUF_SIZE    256
70
71 static inline void no_debug(int level, const char *fmt, ...)
72 {
73 }
74
75 struct netifd_process {
76         struct list_head list;
77         struct uloop_process uloop;
78         void (*cb)(struct netifd_process *, int ret);
79         int dir_fd;
80
81         struct ustream_fd log;
82         const char *log_prefix;
83         bool log_overflow;
84 };
85
86 void netifd_log_message(int priority, const char *format, ...);
87
88 int netifd_start_process(const char **argv, char **env, struct netifd_process *proc);
89 void netifd_kill_process(struct netifd_process *proc);
90
91 struct device;
92 struct interface;
93
94 extern const char *main_path;
95 void netifd_restart(void);
96 void netifd_reload(void);
97
98 #endif