1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
|
/* $OpenBSD: pfe_filter.c,v 1.11 2007/02/07 14:45:12 reyk Exp $ */
/*
* Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <sys/queue.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/param.h>
#include <net/if.h>
#include <net/pfvar.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <limits.h>
#include <fcntl.h>
#include <event.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <openssl/ssl.h>
#include "hoststated.h"
struct pfdata {
int dev;
struct pf_anchor *anchor;
struct pfioc_trans pft;
struct pfioc_trans_e pfte;
};
int transaction_init(struct hoststated *, const char *);
int transaction_commit(struct hoststated *);
void kill_tables(struct hoststated *);
void
init_filter(struct hoststated *env)
{
struct pf_status status;
if ((env->pf = calloc(1, sizeof(*(env->pf)))) == NULL)
fatal("calloc");
if ((env->pf->dev = open(PF_SOCKET, O_RDWR)) == -1)
fatal("init_filter: cannot open pf socket");
if (ioctl(env->pf->dev, DIOCGETSTATUS, &status) == -1)
fatal("init_filter: DIOCGETSTATUS");
if (!status.running)
fatalx("init_filter: pf is disabled");
log_debug("init_filter: filter init done");
}
void
init_tables(struct hoststated *env)
{
int i;
struct service *service;
struct pfr_table *tables;
struct pfioc_table io;
if ((tables = calloc(env->servicecount, sizeof(*tables))) == NULL)
fatal("calloc");
i = 0;
TAILQ_FOREACH(service, &env->services, entry) {
(void)strlcpy(tables[i].pfrt_anchor, HOSTSTATED_ANCHOR "/",
sizeof(tables[i].pfrt_anchor));
(void)strlcat(tables[i].pfrt_anchor, service->name,
sizeof(tables[i].pfrt_anchor));
(void)strlcpy(tables[i].pfrt_name, service->name,
sizeof(tables[i].pfrt_name));
tables[i].pfrt_flags |= PFR_TFLAG_PERSIST;
i++;
}
if (i != env->servicecount)
fatalx("init_tables: table count modified");
memset(&io, 0, sizeof(io));
io.pfrio_size = env->servicecount;
io.pfrio_esize = sizeof(*tables);
io.pfrio_buffer = tables;
if (ioctl(env->pf->dev, DIOCRADDTABLES, &io) == -1)
fatal("init_tables: cannot create tables");
log_debug("init_tables: created %d tables", io.pfrio_nadd);
free(tables);
if (io.pfrio_nadd == env->servicecount)
return;
/*
* clear all tables, since some already existed
*/
TAILQ_FOREACH(service, &env->services, entry)
flush_table(env, service);
}
void
kill_tables(struct hoststated *env) {
struct pfioc_table io;
struct service *service;
memset(&io, 0, sizeof(io));
TAILQ_FOREACH(service, &env->services, entry) {
(void)strlcpy(io.pfrio_table.pfrt_anchor, HOSTSTATED_ANCHOR "/",
sizeof(io.pfrio_table.pfrt_anchor));
(void)strlcat(io.pfrio_table.pfrt_anchor, service->name,
sizeof(io.pfrio_table.pfrt_anchor));
if (ioctl(env->pf->dev, DIOCRCLRTABLES, &io) == -1)
fatal("kill_tables: ioctl faile: ioctl failed");
}
log_debug("kill_tables: deleted %d tables", io.pfrio_ndel);
}
void
sync_table(struct hoststated *env, struct service *service, struct table *table)
{
int i;
struct pfioc_table io;
struct pfr_addr *addlist;
struct sockaddr_in *sain;
struct sockaddr_in6 *sain6;
struct host *host;
if (table == NULL)
return;
if (table->up == 0) {
flush_table(env, service);
return;
}
if ((addlist = calloc(table->up, sizeof(*addlist))) == NULL)
fatal("calloc");
memset(&io, 0, sizeof(io));
io.pfrio_esize = sizeof(struct pfr_addr);
io.pfrio_size = table->up;
io.pfrio_size2 = 0;
io.pfrio_buffer = addlist;
(void)strlcpy(io.pfrio_table.pfrt_anchor, HOSTSTATED_ANCHOR "/",
sizeof(io.pfrio_table.pfrt_anchor));
(void)strlcat(io.pfrio_table.pfrt_anchor, service->name,
sizeof(io.pfrio_table.pfrt_anchor));
(void)strlcpy(io.pfrio_table.pfrt_name, service->name,
sizeof(io.pfrio_table.pfrt_name));
i = 0;
TAILQ_FOREACH(host, &table->hosts, entry) {
if (host->up != 1)
continue;
memset(&(addlist[i]), 0, sizeof(addlist[i]));
switch (host->ss.ss_family) {
case AF_INET:
sain = (struct sockaddr_in *)&host->ss;
addlist[i].pfra_af = AF_INET;
memcpy(&(addlist[i].pfra_ip4addr), &sain->sin_addr,
sizeof(sain->sin_addr));
addlist[i].pfra_net = 32;
break;
case AF_INET6:
sain6 = (struct sockaddr_in6 *)&host->ss;
addlist[i].pfra_af = AF_INET6;
memcpy(&(addlist[i].pfra_ip6addr), &sain6->sin6_addr,
sizeof(sain6->sin6_addr));
addlist[i].pfra_net = 128;
break;
default:
fatalx("sync_table: unknown address family");
break;
}
i++;
}
if (i != table->up)
fatalx("sync_table: desynchronized");
if (ioctl(env->pf->dev, DIOCRSETADDRS, &io) == -1)
fatal("sync_table: cannot set address list");
free(addlist);
log_debug("sync_table: table %s: %d added, %d deleted, %d changed",
io.pfrio_table.pfrt_name,
io.pfrio_nadd, io.pfrio_ndel, io.pfrio_nchange);
}
void
flush_table(struct hoststated *env, struct service *service)
{
struct pfioc_table io;
memset(&io, 0, sizeof(io));
(void)strlcpy(io.pfrio_table.pfrt_anchor, HOSTSTATED_ANCHOR "/",
sizeof(io.pfrio_table.pfrt_anchor));
(void)strlcat(io.pfrio_table.pfrt_anchor, service->name,
sizeof(io.pfrio_table.pfrt_anchor));
(void)strlcpy(io.pfrio_table.pfrt_name, service->name,
sizeof(io.pfrio_table.pfrt_name));
if (ioctl(env->pf->dev, DIOCRCLRADDRS, &io) == -1)
fatal("flush_table: cannot flush table");
log_debug("flush_table: flushed table %s", service->name);
return;
}
int
transaction_init(struct hoststated *env, const char *anchor)
{
env->pf->pft.size = 1;
env->pf->pft.esize = sizeof env->pf->pfte;
env->pf->pft.array = &env->pf->pfte;
memset(&env->pf->pfte, 0, sizeof env->pf->pfte);
strlcpy(env->pf->pfte.anchor, anchor, PF_ANCHOR_NAME_SIZE);
env->pf->pfte.rs_num = PF_RULESET_RDR;
if (ioctl(env->pf->dev, DIOCXBEGIN, &env->pf->pft) == -1)
return (-1);
return (0);
}
int
transaction_commit(struct hoststated *env)
{
if (ioctl(env->pf->dev, DIOCXCOMMIT, &env->pf->pft) == -1)
return (-1);
return (0);
}
void
sync_ruleset(struct hoststated *env, struct service *service, int enable)
{
struct pfioc_rule rio;
struct pfioc_pooladdr pio;
struct sockaddr_in *sain;
struct sockaddr_in6 *sain6;
struct address *address;
char anchor[PF_ANCHOR_NAME_SIZE];
bzero(anchor, sizeof(anchor));
(void)strlcpy(anchor, HOSTSTATED_ANCHOR "/", sizeof(anchor));
(void)strlcat(anchor, service->name, sizeof(anchor));
transaction_init(env, anchor);
if (!enable) {
transaction_commit(env);
log_debug("sync_ruleset: rules removed");
return;
}
TAILQ_FOREACH(address, &service->virts, entry) {
memset(&rio, 0, sizeof(rio));
memset(&pio, 0, sizeof(pio));
(void)strlcpy(rio.anchor, anchor, sizeof(rio.anchor));
rio.ticket = env->pf->pfte.ticket;
if (ioctl(env->pf->dev, DIOCBEGINADDRS, &pio) == -1)
fatal("sync_ruleset: cannot initialise address pool");
rio.pool_ticket = pio.ticket;
rio.rule.af = address->ss.ss_family;
rio.rule.proto = IPPROTO_TCP;
rio.rule.src.addr.type = PF_ADDR_ADDRMASK;
rio.rule.dst.addr.type = PF_ADDR_ADDRMASK;
rio.rule.dst.port_op = PF_OP_EQ;
rio.rule.dst.port[0] = address->port;
rio.rule.rtableid = -1; /* stay in the main routing table */
rio.rule.action = PF_RDR;
if (strlen(service->tag))
(void)strlcpy(rio.rule.tagname, service->tag,
sizeof(rio.rule.tagname));
if (strlen(address->ifname))
(void)strlcpy(rio.rule.ifname, address->ifname,
sizeof(rio.rule.ifname));
if (address->ss.ss_family == AF_INET) {
sain = (struct sockaddr_in *)&address->ss;
rio.rule.dst.addr.v.a.addr.addr32[0] =
sain->sin_addr.s_addr;
rio.rule.dst.addr.v.a.mask.addr32[0] = 0xffffffff;
} else {
sain6 = (struct sockaddr_in6 *)&address->ss;
memcpy(&rio.rule.dst.addr.v.a.addr.v6,
&sain6->sin6_addr.s6_addr,
sizeof(sain6->sin6_addr.s6_addr));
memset(&rio.rule.dst.addr.v.a.mask.addr8, 0xff, 16);
}
pio.addr.addr.type = PF_ADDR_TABLE;
(void)strlcpy(pio.addr.addr.v.tblname, service->name,
sizeof(pio.addr.addr.v.tblname));
if (ioctl(env->pf->dev, DIOCADDADDR, &pio) == -1)
fatal("sync_ruleset: cannot add address to pool");
rio.rule.rpool.proxy_port[0] = ntohs(service->table->port);
rio.rule.rpool.port_op = PF_OP_EQ;
rio.rule.rpool.opts = PF_POOL_ROUNDROBIN;
if (service->flags & F_STICKY)
rio.rule.rpool.opts |= PF_POOL_STICKYADDR;
if (ioctl(env->pf->dev, DIOCADDRULE, &rio) == -1)
fatal("cannot add rule");
log_debug("sync_ruleset: rule added");
}
transaction_commit(env);
}
void
flush_rulesets(struct hoststated *env)
{
struct service *service;
char anchor[PF_ANCHOR_NAME_SIZE];
kill_tables(env);
TAILQ_FOREACH(service, &env->services, entry) {
strlcpy(anchor, HOSTSTATED_ANCHOR "/", sizeof(anchor));
strlcat(anchor, service->name, sizeof(anchor));
transaction_init(env, anchor);
transaction_commit(env);
}
strlcpy(anchor, HOSTSTATED_ANCHOR, sizeof(anchor));
transaction_init(env, anchor);
transaction_commit(env);
log_debug("flush_rulesets: flushed rules");
}
|