utils.h: Avoid name clashes for setbit/delbit/hasbit
[project/firewall3.git] / utils.h
1 /*
2  * firewall3 - 3rd OpenWrt UCI firewall implementation
3  *
4  *   Copyright (C) 2013 Jo-Philipp Wich <jo@mein.io>
5  *
6  * Permission to use, copy, modify, and/or distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18
19 #ifndef __FW3_UTILS_H
20 #define __FW3_UTILS_H
21
22 #include <stdlib.h>
23 #include <stdbool.h>
24 #include <unistd.h>
25 #include <signal.h>
26 #include <fcntl.h>
27 #include <limits.h>
28 #include <sys/stat.h>
29 #include <sys/wait.h>
30 #include <sys/file.h>
31 #include <sys/types.h>
32 #include <ifaddrs.h>
33
34 #include <libubox/list.h>
35 #include <uci.h>
36
37
38 #define FW3_STATEFILE   "/var/run/fw3.state"
39 #define FW3_LOCKFILE    "/var/run/fw3.lock"
40 #define FW3_HOTPLUG     "/sbin/hotplug-call"
41
42 extern bool fw3_pr_debug;
43
44 void warn_elem(struct uci_element *e, const char *format, ...);
45 void warn(const char *format, ...);
46 void error(const char *format, ...);
47 void info(const char *format, ...);
48
49 #define fw3_setbit(field, flag) field |= (1 << (flag))
50 #define fw3_delbit(field, flag) field &= ~(1 << (flag))
51 #define fw3_hasbit(field, flag) (field & (1 << (flag)))
52
53 #define set(field, family, flag) fw3_setbit(field[family == FW3_FAMILY_V6], flag)
54 #define del(field, family, flag) fw3_delbit(field[family == FW3_FAMILY_V6], flag)
55 #define has(field, family, flag) fw3_hasbit(field[family == FW3_FAMILY_V6], flag)
56
57 #define fw3_foreach(p, h)                                                  \
58         for (p = list_empty(h) ? NULL : list_first_entry(h, typeof(*p), list); \
59          list_empty(h) ? (p == NULL) : (&p->list != (h));                  \
60              p = list_empty(h) ? list_first_entry(h, typeof(*p), list)         \
61                            : list_entry(p->list.next, typeof(*p), list))
62
63 #define fw3_is_family(p, f)                                                \
64         (!p || (p)->family == FW3_FAMILY_ANY || (p)->family == f)
65
66 #define fw3_no_family(flags)                                               \
67         (!(flags & ((1 << FW3_FAMILY_V4) | (1 << FW3_FAMILY_V6))))
68
69 #define fw3_no_table(flags)                                                \
70     (!(flags & ((1<<FW3_TABLE_FILTER)|(1<<FW3_TABLE_NAT)|                  \
71                 (1<<FW3_TABLE_MANGLE)|(1<<FW3_TABLE_RAW))))
72
73
74 void * fw3_alloc(size_t size);
75 char * fw3_strdup(const char *s);
76
77 const char * fw3_find_command(const char *cmd);
78
79 bool fw3_stdout_pipe(void);
80 bool __fw3_command_pipe(bool silent, const char *command, ...);
81 #define fw3_command_pipe(...) __fw3_command_pipe(__VA_ARGS__, NULL)
82
83 void fw3_command_close(void);
84 void fw3_pr(const char *fmt, ...);
85
86 bool fw3_has_table(bool ipv6, const char *table);
87
88 bool fw3_lock(void);
89 void fw3_unlock(void);
90
91
92 void fw3_write_statefile(void *state);
93
94 void fw3_free_object(void *obj, const void *opts);
95
96 void fw3_free_list(struct list_head *head);
97
98 bool fw3_hotplug(bool add, void *zone, void *device);
99
100 int fw3_netmask2bitlen(int family, void *mask);
101
102 bool fw3_bitlen2netmask(int family, int bits, void *mask);
103
104 void fw3_flush_conntrack(void *zone);
105
106 #endif