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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
|
/* $OpenBSD: relay_udp.c,v 1.1 2007/09/10 11:59:22 reyk Exp $ */
/*
* Copyright (c) 2007 Reyk Floeter <reyk@openbsd.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/queue.h>
#include <sys/param.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/tree.h>
#include <sys/hash.h>
#include <netinet/in_systm.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/tcp.h>
#include <net/if.h>
#include <arpa/inet.h>
#include <errno.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <stdio.h>
#include <err.h>
#include <pwd.h>
#include <event.h>
#include <fnmatch.h>
#include <openssl/ssl.h>
#include "hoststated.h"
extern volatile sig_atomic_t relay_sessions;
extern objid_t relay_conid;
extern int proc_id;
extern struct imsgbuf *ibuf_pfe;
extern int debug;
extern void relay_close(struct session *, const char *);
extern void relay_natlook(int, short, void *);
extern void relay_session(struct session *);
extern int relay_from_table(struct session *);
extern int relay_socket_af(struct sockaddr_storage *, in_port_t);
extern int relay_cmp_af(struct sockaddr_storage *,
struct sockaddr_storage *);
struct hoststated *env = NULL;
int relay_udp_socket(struct sockaddr_storage *, in_port_t,
struct protocol *);
void relay_udp_request(struct session *);
void relay_udp_timeout(int, short, void *);
void relay_dns_log(struct session *, u_int8_t *);
int relay_dns_validate(struct relay *, struct sockaddr_storage *,
u_int8_t *, size_t, u_int32_t *);
int relay_dns_request(struct session *);
void relay_dns_response(struct session *, u_int8_t *, size_t);
int relay_dns_cmp(struct session *, struct session *);
void
relay_udp_privinit(struct hoststated *x_env, struct relay *rlay)
{
struct protocol *proto = rlay->proto;
if (env == NULL)
env = x_env;
if (rlay->conf.flags & F_SSL)
fatalx("ssl over udp is not supported");
rlay->conf.flags |= F_UDP;
switch (proto->type) {
case RELAY_PROTO_DNS:
proto->validate = relay_dns_validate;
proto->request = relay_dns_request;
proto->cmp = relay_dns_cmp;
break;
default:
fatalx("unsupported udp protocol");
break;
}
}
int
relay_udp_bind(struct sockaddr_storage *ss, in_port_t port,
struct protocol *proto)
{
int s;
if ((s = relay_udp_socket(ss, port, proto)) == -1)
return (-1);
if (bind(s, (struct sockaddr *)ss, ss->ss_len) == -1)
goto bad;
return (s);
bad:
close(s);
return (-1);
}
int
relay_udp_socket(struct sockaddr_storage *ss, in_port_t port,
struct protocol *proto)
{
int s = -1, val;
if (relay_socket_af(ss, port) == -1)
goto bad;
if ((s = socket(ss->ss_family, SOCK_DGRAM, IPPROTO_UDP)) == -1)
goto bad;
/*
* Socket options
*/
if (fcntl(s, F_SETFL, O_NONBLOCK) == -1)
goto bad;
if (proto->tcpflags & TCPFLAG_BUFSIZ) {
val = proto->tcpbufsiz;
if (setsockopt(s, SOL_SOCKET, SO_RCVBUF,
&val, sizeof(val)) == -1)
goto bad;
val = proto->tcpbufsiz;
if (setsockopt(s, SOL_SOCKET, SO_SNDBUF,
&val, sizeof(val)) == -1)
goto bad;
}
/*
* IP options
*/
if (proto->tcpflags & TCPFLAG_IPTTL) {
val = (int)proto->tcpipttl;
if (setsockopt(s, IPPROTO_IP, IP_TTL,
&val, sizeof(val)) == -1)
goto bad;
}
if (proto->tcpflags & TCPFLAG_IPMINTTL) {
val = (int)proto->tcpipminttl;
if (setsockopt(s, IPPROTO_IP, IP_MINTTL,
&val, sizeof(val)) == -1)
goto bad;
}
return (s);
bad:
if (s != -1)
close(s);
return (-1);
}
void
relay_udp_server(int fd, short sig, void *arg)
{
struct relay *rlay = (struct relay *)arg;
struct protocol *proto = rlay->proto;
struct session *con = NULL;
struct ctl_natlook *cnl = NULL;
socklen_t slen;
struct timeval tv;
struct sockaddr_storage ss;
u_int8_t buf[READ_BUF_SIZE];
u_int32_t key = 0;
ssize_t len;
if (relay_sessions >= RELAY_MAX_SESSIONS ||
rlay->conf.flags & F_DISABLE)
return;
slen = sizeof(ss);
if ((len = recvfrom(fd, buf, sizeof(buf), 0,
(struct sockaddr*)&ss, &slen)) < 1)
return;
/* Parse and validate the packet header */
if (proto->validate != NULL &&
(*proto->validate)(rlay, &ss, buf, len, &key) != 0)
return;
if ((con = (struct session *)
calloc(1, sizeof(struct session))) == NULL)
return;
con->key = key;
con->in.s = -1;
con->out.s = -1;
con->in.dst = &con->out;
con->out.dst = &con->in;
con->in.con = con;
con->out.con = con;
con->relay = rlay;
con->id = ++relay_conid;
con->outkey = rlay->dstkey;
con->in.tree = &proto->request_tree;
con->out.tree = &proto->response_tree;
con->in.dir = RELAY_DIR_REQUEST;
con->out.dir = RELAY_DIR_RESPONSE;
con->retry = rlay->conf.dstretry;
gettimeofday(&con->tv_start, NULL);
bcopy(&con->tv_start, &con->tv_last, sizeof(con->tv_last));
bcopy(&ss, &con->in.ss, sizeof(con->in.ss));
con->out.port = rlay->conf.dstport;
switch (ss.ss_family) {
case AF_INET:
con->in.port = ((struct sockaddr_in *)&ss)->sin_port;
break;
case AF_INET6:
con->in.port = ((struct sockaddr_in6 *)&ss)->sin6_port;
break;
}
relay_sessions++;
SPLAY_INSERT(session_tree, &rlay->sessions, con);
/* Increment the per-relay session counter */
rlay->stats[proc_id].last++;
/* Pre-allocate output buffer */
con->out.output = evbuffer_new();
if (con->out.output == NULL) {
relay_close(con, "failed to allocate output buffer");
return;
}
/* Pre-allocate log buffer */
con->log = evbuffer_new();
if (con->log == NULL) {
relay_close(con, "failed to allocate log buffer");
return;
}
if (rlay->conf.flags & F_NATLOOK) {
if ((cnl = (struct ctl_natlook *)
calloc(1, sizeof(struct ctl_natlook))) == NULL) {
relay_close(con, "failed to allocate natlookup");
return;
}
}
/* Save the received data */
if (evbuffer_add(con->out.output, buf, len) == -1) {
relay_close(con, "failed to store buffer");
return;
}
if (rlay->conf.flags & F_NATLOOK && cnl != NULL) {
con->cnl = cnl;;
bzero(cnl, sizeof(*cnl));
cnl->in = -1;
cnl->id = con->id;
cnl->proc = proc_id;
bcopy(&con->in.ss, &cnl->src, sizeof(cnl->src));
bcopy(&rlay->conf.ss, &cnl->dst, sizeof(cnl->dst));
imsg_compose(ibuf_pfe, IMSG_NATLOOK, 0, 0, -1, cnl,
sizeof(*cnl));
/* Schedule timeout */
evtimer_set(&con->ev, relay_natlook, con);
bcopy(&rlay->conf.timeout, &tv, sizeof(tv));
evtimer_add(&con->ev, &tv);
return;
}
relay_session(con);
}
void
relay_udp_timeout(int fd, short sig, void *arg)
{
struct session *con = (struct session *)arg;
if (sig != EV_TIMEOUT)
fatalx("invalid timeout event");
relay_close(con, "udp timeout");
}
/*
* Domain Name System support
*/
struct relay_dnshdr {
u_int16_t dns_id;
u_int8_t dns_flags0;
#define DNS_F0_QR 0x80 /* response flag */
#define DNS_F0_OPCODE 0x78 /* message type */
#define DNS_F0_AA 0x04 /* authorative answer */
#define DNS_F0_TC 0x02 /* truncated message */
#define DNS_F0_RD 0x01 /* recursion desired */
u_int8_t dns_flags1;
#define DNS_F1_RA 0x80 /* recursion available */
#define DNS_F1_RES 0x40 /* reserved */
#define DNS_F1_AD 0x20 /* authentic data */
#define DNS_F1_CD 0x10 /* checking disabled */
#define DNS_F1_RCODE 0x0f /* response code */
u_int16_t dns_qdcount;
u_int16_t dns_ancount;
u_int16_t dns_nscount;
u_int16_t dns_arcount;
} __packed;
void
relay_dns_log(struct session *con, u_int8_t *buf)
{
struct relay_dnshdr *hdr = (struct relay_dnshdr *)buf;
log_debug("relay_dns_log: session %d: %s id 0x%x "
"flags 0x%x:0x%x qd %u an %u ns %u ar %u",
con->id,
hdr->dns_flags0 & DNS_F0_QR ? "response" : "request",
ntohs(hdr->dns_id),
hdr->dns_flags0,
hdr->dns_flags1,
ntohs(hdr->dns_qdcount),
ntohs(hdr->dns_ancount),
ntohs(hdr->dns_nscount),
ntohs(hdr->dns_arcount));
}
int
relay_dns_validate(struct relay *rlay, struct sockaddr_storage *ss,
u_int8_t *buf, size_t len, u_int32_t *key)
{
struct relay_dnshdr *hdr = (struct relay_dnshdr *)buf;
struct session *con, lookup;
/* Validate the header length */
if (len < sizeof(*hdr))
return (-1);
*key = ntohs(hdr->dns_id);
/*
* Check if the header has the response flag set, otherwise
* return 0 to tell the UDP server to create a new session.
*/
if ((hdr->dns_flags0 & DNS_F0_QR) == 0)
return (0);
/*
* Lookup if this response is for a known session and if the
* remote host matches the original destination of the request.
*/
lookup.key = *key;
if ((con = SPLAY_FIND(session_tree,
&rlay->sessions, &lookup)) != NULL &&
relay_cmp_af(ss, &con->out.ss) == 0)
relay_dns_response(con, buf, len);
/*
* This is not a new session, ignore it in the UDP server.
*/
return (-1);
}
int
relay_dns_request(struct session *con)
{
struct relay *rlay = (struct relay *)con->relay;
u_int8_t *buf = EVBUFFER_DATA(con->out.output);
size_t len = EVBUFFER_LENGTH(con->out.output);
struct relay_dnshdr *hdr;
socklen_t slen;
if (buf == NULL || len < 1)
return (-1);
if (debug)
relay_dns_log(con, buf);
if (gettimeofday(&con->tv_start, NULL))
return (-1);
if (rlay->dsttable != NULL) {
if (relay_from_table(con) != 0)
return (-1);
} else if (con->out.ss.ss_family == AF_UNSPEC) {
bcopy(&rlay->conf.dstss, &con->out.ss, sizeof(con->out.ss));
con->out.port = rlay->conf.dstport;
}
if (relay_socket_af(&con->out.ss, con->out.port) == -1)
return (-1);
slen = con->out.ss.ss_len;
/*
* Replace the DNS request Id with a random Id.
*/
hdr = (struct relay_dnshdr *)buf;
con->outkey = con->key;
con->key = arc4random() & 0xffff;
hdr->dns_id = htons(con->key);
retry:
if (sendto(rlay->s, buf, len, 0,
(struct sockaddr *)&con->out.ss, slen) == -1) {
if (con->retry) {
con->retry--;
log_debug("relay_dns_request: session %d: "
"forward failed: %s, %s",
con->id, strerror(errno),
con->retry ? "next retry" : "last retry");
goto retry;
}
log_debug("relay_dns_request: session %d: forward failed: %s",
con->id, strerror(errno));
return (-1);
}
event_again(&con->ev, con->out.s, EV_TIMEOUT,
relay_udp_timeout, &con->tv_start, &env->timeout, con);
return (0);
}
void
relay_dns_response(struct session *con, u_int8_t *buf, size_t len)
{
struct relay *rlay = (struct relay *)con->relay;
struct relay_dnshdr *hdr;
socklen_t slen;
if (debug)
relay_dns_log(con, buf);
/*
* Replace the random DNS request Id with the original Id
*/
hdr = (struct relay_dnshdr *)buf;
hdr->dns_id = htons(con->outkey);
slen = con->out.ss.ss_len;
if (sendto(rlay->s, buf, len, 0,
(struct sockaddr *)&con->in.ss, slen) == -1) {
relay_close(con, "response failed");
return;
}
relay_close(con, "session closed");
}
int
relay_dns_cmp(struct session *a, struct session *b)
{
return (memcmp(&a->key, &b->key, sizeof(a->key)));
}
|