firewall3: check the return value of fw3_parse_options()
[project/firewall3.git] / forwards.c
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 #include "forwards.h"
20
21
22 const struct fw3_option fw3_forward_opts[] = {
23         FW3_OPT("enabled",             bool,     forward,     enabled),
24
25         FW3_OPT("name",                string,   forward,     name),
26         FW3_OPT("family",              family,   forward,     family),
27
28         FW3_OPT("src",                 device,   forward,     src),
29         FW3_OPT("dest",                device,   forward,     dest),
30
31         { }
32 };
33
34
35 void
36 fw3_load_forwards(struct fw3_state *state, struct uci_package *p)
37 {
38         struct uci_section *s;
39         struct uci_element *e;
40         struct fw3_forward *forward;
41
42         INIT_LIST_HEAD(&state->forwards);
43
44         uci_foreach_element(&p->sections, e)
45         {
46                 s = uci_to_section(e);
47
48                 if (strcmp(s->type, "forwarding"))
49                         continue;
50
51                 forward = calloc(1, sizeof(*forward));
52                 if (!forward)
53                         continue;
54
55                 forward->enabled = true;
56
57                 if (!fw3_parse_options(forward, fw3_forward_opts, s))
58                         warn_elem(e, "has invalid options");
59
60                 if (!forward->enabled)
61                 {
62                         fw3_free_forward(forward);
63                         continue;
64                 }
65
66                 if (forward->src.invert || forward->dest.invert)
67                 {
68                         warn_elem(e, "must not have inverted 'src' or 'dest' options");
69                         fw3_free_forward(forward);
70                         continue;
71                 }
72                 else if (forward->src.set && !forward->src.any &&
73                          !(forward->_src = fw3_lookup_zone(state, forward->src.name)))
74                 {
75                         warn_elem(e, "refers to not existing zone '%s'", forward->src.name);
76                         fw3_free_forward(forward);
77                         continue;
78                 }
79                 else if (forward->dest.set && !forward->dest.any &&
80                          !(forward->_dest = fw3_lookup_zone(state, forward->dest.name)))
81                 {
82                         warn_elem(e, "refers to not existing zone '%s'", forward->dest.name);
83                         fw3_free_forward(forward);
84                         continue;
85                 }
86
87                 list_add_tail(&forward->list, &state->forwards);
88                 continue;
89         }
90
91         list_for_each_entry(forward, &state->forwards, list)
92         {
93                 /* NB: forward family... */
94                 if (forward->_dest)
95                 {
96                         fw3_setbit(forward->_dest->flags[0], FW3_FLAG_ACCEPT);
97                         fw3_setbit(forward->_dest->flags[1], FW3_FLAG_ACCEPT);
98                 }
99         }
100 }
101
102
103 static void
104 append_chain(struct fw3_ipt_rule *r, struct fw3_forward *forward)
105 {
106         if (forward->src.any || !forward->src.set)
107                 fw3_ipt_rule_append(r, "FORWARD");
108         else
109                 fw3_ipt_rule_append(r, "zone_%s_forward", forward->src.name);
110 }
111
112 static void set_target(struct fw3_ipt_rule *r, struct fw3_forward *forward)
113 {
114         if (forward->dest.any || !forward->dest.set)
115                 fw3_ipt_rule_target(r, "ACCEPT");
116         else
117                 fw3_ipt_rule_target(r, "zone_%s_dest_ACCEPT", forward->dest.name);
118 }
119
120 static void
121 print_forward(struct fw3_ipt_handle *handle, struct fw3_forward *forward)
122 {
123         const char *s, *d;
124         struct fw3_ipt_rule *r;
125
126         if (handle->table != FW3_TABLE_FILTER)
127                 return;
128
129         if (!fw3_is_family(forward, handle->family))
130                 return;
131
132         s = forward->_src  ? forward->_src->name  : "*";
133         d = forward->_dest ? forward->_dest->name : "*";
134
135         info("   * Forward '%s' -> '%s'", s, d);
136
137         if (!fw3_is_family(forward->_src, handle->family) ||
138             !fw3_is_family(forward->_dest, handle->family))
139         {
140                 info("     ! Skipping due to different family of zone");
141                 return;
142         }
143
144         r = fw3_ipt_rule_new(handle);
145         fw3_ipt_rule_comment(r, "forwarding %s -> %s", s, d);
146         set_target(r, forward);
147         append_chain(r, forward);
148 }
149
150 void
151 fw3_print_forwards(struct fw3_ipt_handle *handle, struct fw3_state *state)
152 {
153         struct fw3_forward *forward;
154
155         list_for_each_entry(forward, &state->forwards, list)
156                 print_forward(handle, forward);
157 }