forked from sleinen/samplicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
samplicate.c
565 lines (519 loc) · 13.6 KB
/
samplicate.c
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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
#include "config.h"
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <poll.h>
#ifdef HAVE_ARPA_INET_H
# include <arpa/inet.h>
#endif
#include <stdio.h>
#include <string.h>
#include <errno.h>
#if STDC_HEADERS
# define bzero(b,n) memset(b,0,n)
#else
# include <strings.h>
# ifndef HAVE_STRCHR
# define strchr index
# endif
# ifndef HAVE_MEMCPY
# define memcpy(d, s, n) bcopy ((s), (d), (n))
# define memmove(d, s, n) bcopy ((s), (d), (n))
# endif
#endif
#ifdef HAVE_CTYPE_H
# include <ctype.h>
#endif
#include "samplicator.h"
#include "read_config.h"
#include "rawsend.h"
#include "inet.h"
static int send_pdu_to_receiver (struct receiver *, const void *, size_t,
struct sockaddr *);
static int init_samplicator (struct samplicator_context *);
static int samplicate (struct samplicator_context *);
static int make_udp_socket (long, int, int);
static int make_recv_socket (struct samplicator_context *);
static int make_send_sockets (struct samplicator_context *);
int
main (argc, argv)
int argc;
const char **argv;
{
struct samplicator_context ctx;
if (parse_args (argc, (const char **) argv, &ctx) == -1)
{
exit (1);
}
if (init_samplicator (&ctx) == -1)
exit (1);
if (samplicate (&ctx) != 0) /* actually, samplicate() should never return. */
exit (1);
exit (0);
}
static int
daemonize (void)
{
pid_t pid;
pid = fork();
if (pid == -1)
{
fprintf (stderr, "failed to fork process\n");
exit (1);
}
else if (pid > 0)
{ /* kill the parent */
exit (0);
}
else
{ /* end interaction with shell */
fclose (stdin);
fclose (stdout);
fclose (stderr);
}
return 0;
}
static int
write_pid_file (const char *filename)
{
FILE *fp;
unlink (filename); /* Ignore results - the old file may not exist. */
if ((fp = fopen (filename, "w")) == 0)
{
fprintf (stderr, "Failed to create PID file %s: %s\n",
filename, strerror (errno));
return -1;
}
if (fprintf (fp, "%ld\n", (long) getpid ()) <= 0)
{
fprintf (stderr, "Failed to write PID to PID file %s: %s\n",
filename, strerror (errno));
return -1;
}
if (fclose (fp) == EOF)
{
fprintf (stderr, "Error closing PID file %s: %s\n",
filename, strerror (errno));
return -1;
}
return 0;
}
/*
make_recv_socket(ctx)
Create the socket on which samplicator receives its packets.
There can only be one. This will be either a wildcard socket
listening on a specific port on all interfaces, or a socket bound to
a specific address (and, thus, interface).
The creation of this socket is affected by the preferences in CTX:
CTX->faddr_spec
This is either a null pointer, meaning that a wildcard socket
should be created, or a hostname or address literal specifying
which address to listen on. If this maps to multiple addresses,
the socket will be bound to the first of those addresses that it
can be bound to, in the order returned by getaddrinfo().
CTX->fport_spec
This must be a string, and specifies the port number or service
name on which the socket will listen.
CTX->ipv4_only
If this is non-zero, the socket will be an IPv4 socket. An error
will be signaled if faddr_spec doesn't map to an IPv4 address.
CTX->ipv6_only
If non zero, only IPv6 addresses will be considered.
If ipv4_only and ipv6_only are both zero, and faddr_spec is also
null, then the receive socket will be an IPv6 socket bound to a
specific port on all interfaces. This socket will be able to receive
packets over both IPv6 and IPv4.
CTX->sockbuflen
If this is non-zero, the function will try to set the socket's
receiver buffer size to this many bytes. If setting the socket
buffer fails, a warning will be printed, but the socket will still
be created. The idea here is that a socket with an incorrect
buffer size is more useful than no socket at all, although some
people may differ.
RETURN VALUE
If a socket could be created and bound, this function will return
zero. If this was not possible, the function will produce an error
message and return -1.
*/
static int
make_recv_socket (ctx)
struct samplicator_context *ctx;
{
struct addrinfo hints, *res;
int result;
init_hints_from_preferences (&hints, ctx);
if ((result = getaddrinfo (ctx->faddr_spec, ctx->fport_spec, &hints, &res)) != 0)
{
fprintf (stderr, "Failed to resolve IP address/port (%s:%s): %s\n",
ctx->faddr_spec, ctx->fport_spec, gai_strerror (result));
return -1;
}
for (; res; res = res->ai_next)
{
if ((ctx->fsockfd = socket (res->ai_family, SOCK_DGRAM, 0)) < 0)
{
fprintf (stderr, "socket(): %s\n", strerror (errno));
break;
}
if (setsockopt (ctx->fsockfd, SOL_SOCKET, SO_RCVBUF,
(char *) &ctx->sockbuflen, sizeof ctx->sockbuflen) == -1)
{
fprintf (stderr, "Warning: setsockopt(SO_RCVBUF,%ld) failed: %s\n",
ctx->sockbuflen, strerror (errno));
}
if (bind (ctx->fsockfd,
(struct sockaddr*)res->ai_addr, res->ai_addrlen) < 0)
{
fprintf (stderr, "bind(): %s\n", strerror (errno));
break;
}
ctx->fsockaddrlen = res->ai_addrlen;
return 0;
}
return -1;
}
/* init_samplicator: prepares receiving socket */
static int
init_samplicator (ctx)
struct samplicator_context *ctx;
{
struct source_context *sctx;
int i;
if (make_recv_socket (ctx) != 0)
{
return -1;
}
/* check is there actually at least one configured data receiver */
for (i = 0, sctx = ctx->sources; sctx != NULL; sctx = sctx->next)
{
i += sctx->nreceivers;
}
if (i == 0)
{
fprintf(stderr, "You have to specify at least one receiver, exiting\n");
return -1;
}
if (make_send_sockets (ctx) != 0)
{
return -1;
}
if (ctx->fork == 1)
daemonize ();
if (ctx->pid_file != 0)
{
if (write_pid_file (ctx->pid_file) != 0)
{
return -1;
}
}
return 0;
}
static int
match_addr_p (struct sockaddr *input_generic,
struct sockaddr *addr_generic,
struct sockaddr *mask_generic)
{
#define SPECIALIZE(VAR, STRUCT) \
struct STRUCT *VAR = (struct STRUCT *) VAR ## _generic
if (addr_generic->sa_family == AF_INET)
{
SPECIALIZE (addr, sockaddr_in);
SPECIALIZE (mask, sockaddr_in);
if (addr->sin_addr.s_addr == 0)
return 1;
if (input_generic->sa_family == AF_INET)
{
SPECIALIZE (input, sockaddr_in);
if ((input->sin_addr.s_addr & mask->sin_addr.s_addr) == addr->sin_addr.s_addr)
return 1;
return 0;
}
else if (input_generic->sa_family == AF_INET6)
{
SPECIALIZE (input, sockaddr_in6);
if (IN6_IS_ADDR_V4MAPPED (&input->sin6_addr))
{
abort (); /* TODO */
}
else
{
return 0;
}
}
else
abort (); /* Unexpected address family */
}
else
{
SPECIALIZE (addr, sockaddr_in6);
SPECIALIZE (mask, sockaddr_in6);
if (IN6_IS_ADDR_UNSPECIFIED (&mask->sin6_addr))
{
return 1;
}
else if (input_generic->sa_family == AF_INET)
{
abort ();
}
else if (input_generic->sa_family == AF_INET6)
{
SPECIALIZE (input, sockaddr_in6);
unsigned k;
for (k = 0; k < 16; ++k)
{
if ((input->sin6_addr.s6_addr[k] & mask->sin6_addr.s6_addr[k])
!= addr->sin6_addr.s6_addr[k])
{
return 0;
}
return 1;
}
abort ();
}
else
abort (); /* Unexpected address family */
}
#undef SPECIALIZE
}
static int
samplicate (ctx)
struct samplicator_context *ctx;
{
unsigned char fpdu[ctx->pdulen];
struct sockaddr_storage remote_address;
struct source_context *sctx;
unsigned i;
int n;
socklen_t addrlen;
char host[INET6_ADDRSTRLEN];
char serv[6];
while (1)
{
if (ctx->timeout)
{
struct pollfd fds[1];
fds[0].fd=ctx->fsockfd;
fds[0].events=POLLIN;
int rc=poll(fds, 1, ctx->timeout);
if (!rc)
{
fprintf (stderr, "Timeout, no data received in %d milliseconds.\n",
ctx->timeout);
exit (5);
}
}
addrlen = sizeof remote_address;
if ((n = recvfrom (ctx->fsockfd, (char*)fpdu,
sizeof (fpdu), MSG_TRUNC,
(struct sockaddr *) &remote_address, &addrlen)) == -1)
{
fprintf (stderr, "recvfrom(): %s\n", strerror(errno));
exit (1);
}
if (n > ctx->pdulen)
{
fprintf (stderr, "Warning: %ld excess bytes discarded\n",
n-ctx->pdulen);
n = ctx->pdulen;
}
if (addrlen != ctx->fsockaddrlen)
{
fprintf (stderr, "recvfrom() return address length %lu - expected %lu\n",
(unsigned long) addrlen, (unsigned long) ctx->fsockaddrlen);
exit (1);
}
if (ctx->debug)
{
if (getnameinfo ((struct sockaddr *) &remote_address, addrlen,
host, INET6_ADDRSTRLEN,
serv, 6,
NI_NUMERICHOST|NI_NUMERICSERV) == -1)
{
strcpy (host, "???");
strcpy (serv, "?????");
}
fprintf (stderr, "received %d bytes from %s:%s\n", n, host, serv);
}
for (sctx = ctx->sources; sctx != NULL; sctx = sctx->next)
{
if (match_addr_p ((struct sockaddr *) &remote_address,
(struct sockaddr *) &sctx->source,
(struct sockaddr *) &sctx->mask))
{
sctx->matched_packets += 1;
sctx->matched_octets += n;
for (i = 0; i < sctx->nreceivers; ++i)
{
struct receiver *receiver = &(sctx->receivers[i]);
if (receiver->freqcount == 0)
{
if (send_pdu_to_receiver (receiver, fpdu, n, (struct sockaddr *) &remote_address)
== -1)
{
receiver->out_errors += 1;
if (getnameinfo ((struct sockaddr *) &receiver->addr,
receiver->addrlen,
host, INET6_ADDRSTRLEN,
serv, 6,
NI_NUMERICHOST|NI_NUMERICSERV)
== -1)
{
strcpy (host, "???");
strcpy (serv, "?????");
}
fprintf (stderr, "sending datagram to %s:%s failed: %s\n",
host, serv, strerror (errno));
}
else
{
receiver->out_packets += 1;
receiver->out_octets += n;
if (ctx->debug)
{
if (getnameinfo ((struct sockaddr *) &receiver->addr,
receiver->addrlen,
host, INET6_ADDRSTRLEN,
serv, 6,
NI_NUMERICHOST|NI_NUMERICSERV)
== -1)
{
strcpy (host, "???");
strcpy (serv, "?????");
}
fprintf (stderr, " sent to %s:%s\n", host, serv);
}
}
receiver->freqcount = receiver->freq-1;
}
else
{
receiver->freqcount -= 1;
}
if (sctx->tx_delay)
usleep (sctx->tx_delay);
}
}
else
{
if (ctx->debug)
{
if (getnameinfo ((struct sockaddr *) &sctx->source,
sctx->addrlen,
host, INET6_ADDRSTRLEN,
0, 0,
NI_NUMERICHOST|NI_NUMERICSERV)
== -1)
{
strcpy (host, "???");
}
fprintf (stderr, "Not matching %s/", host);
if (getnameinfo ((struct sockaddr *) &sctx->mask,
sctx->addrlen,
host, INET6_ADDRSTRLEN,
0, 0,
NI_NUMERICHOST|NI_NUMERICSERV)
== -1)
{
strcpy (host, "???");
}
fprintf (stderr, "%s\n", host);
}
}
}
}
}
static int
send_pdu_to_receiver (receiver, fpdu, length, source_addr)
struct receiver * receiver;
const void * fpdu;
size_t length;
struct sockaddr * source_addr;
{
if (receiver->flags & pf_SPOOF)
{
int rawsend_flags
= ((receiver->flags & pf_CHECKSUM) ? RAWSEND_COMPUTE_UDP_CHECKSUM : 0);
return raw_send_from_to (receiver->fd, fpdu, length,
(struct sockaddr *) source_addr,
(struct sockaddr *) &receiver->addr,
receiver->ttl, rawsend_flags);
}
else
{
return sendto (receiver->fd, (char*) fpdu, length, 0,
(struct sockaddr*) &receiver->addr, receiver->addrlen);
}
}
static int
make_cooked_udp_socket (long sockbuflen, int af)
{
int s;
if ((s = socket (af == AF_INET ? PF_INET : PF_INET6, SOCK_DGRAM, 0)) == -1)
return s;
if (sockbuflen != -1)
{
if (setsockopt (s, SOL_SOCKET, SO_SNDBUF,
(char *) &sockbuflen, sizeof sockbuflen) == -1)
{
fprintf (stderr, "setsockopt(SO_SNDBUF,%ld): %s\n",
sockbuflen, strerror (errno));
}
}
return s;
}
static int
make_udp_socket (long sockbuflen, int raw, int af)
{
return raw
? make_raw_udp_socket (sockbuflen, af)
: make_cooked_udp_socket (sockbuflen, af);
}
static int
make_send_sockets (struct samplicator_context *ctx)
{
/* Array of four sockets:
First index: cooked(0)/raw(1)
Second index: IPv4(0)/IPv6(1)
At a maximum, we need one socket of each kind. These sockets can
be used by multiple receivers of the same type.
*/
int socks[2][2] = { { -1, -1 }, { -1, -1 } };
struct source_context *sctx;
unsigned i;
for (sctx = ctx->sources; sctx != 0; sctx = sctx->next)
{
for (i = 0; i < sctx->nreceivers; ++i)
{
struct receiver *receiver = &sctx->receivers[i];
int af = receiver->addr.ss_family;
int af_index = af == AF_INET ? 0 : 1;
int spoof_p = receiver->flags & pf_SPOOF;
if (socks[spoof_p][af_index] == -1)
{
if ((socks[spoof_p][af_index] = make_udp_socket (ctx->sockbuflen, spoof_p, af)) < 0)
{
if (spoof_p && errno == EPERM)
{
fprintf (stderr, "Not enough privilege for -S option---try again as root.\n");
return -1;
}
else
{
fprintf (stderr, "Error creating%s socket: %s\n",
spoof_p ? " raw" : "", strerror (errno));
}
return -1;
}
}
receiver->fd = socks[spoof_p][af_index];
}
}
return 0;
}