-
Notifications
You must be signed in to change notification settings - Fork 27
/
util.c
1302 lines (1157 loc) · 41 KB
/
util.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
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*****************************************************************************
* util.c: Utils for the multicat suite
*****************************************************************************
* Copyright (C) 2004, 2009, 2011, 2015-2016 VideoLAN
* $Id$
*
* Authors: Christophe Massiot <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#include <inttypes.h>
#include <string.h>
#include <errno.h>
#include <stdarg.h>
#include <sys/time.h>
#include <time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <unistd.h>
#include <sys/mman.h>
#include <netdb.h>
#include <syslog.h>
#include "util.h"
#define DEBUG_SOCKET
/*****************************************************************************
* Local declarations
*****************************************************************************/
#define MAX_MSG 1024
#define PSZ_AUX_EXT "aux"
#define PSZ_TS_EXT "ts"
int i_verbose = VERB_DBG;
static int b_syslog = 0;
/*****************************************************************************
* msg_Openlog
*****************************************************************************/
void msg_Openlog( const char *ident, int option, int facility )
{
openlog(ident, option, facility);
b_syslog = 1;
}
/*****************************************************************************
* msg_Closelog
*****************************************************************************/
void msg_Closelog( void )
{
closelog();
b_syslog = 0;
}
/*****************************************************************************
* msg_Info
*****************************************************************************/
void msg_Info( void *_unused, const char *psz_format, ... )
{
if ( i_verbose < VERB_INFO )
return;
va_list args;
va_start( args, psz_format );
if ( !b_syslog )
{
char psz_fmt[MAX_MSG];
snprintf( psz_fmt, MAX_MSG, "info: %s\n", psz_format );
vfprintf( stderr, psz_fmt, args );
}
else
{
vsyslog( LOG_INFO, psz_format, args );
}
va_end( args );
}
/*****************************************************************************
* msg_Err
*****************************************************************************/
void msg_Err( void *_unused, const char *psz_format, ... )
{
va_list args;
va_start( args, psz_format );
if ( !b_syslog )
{
char psz_fmt[MAX_MSG];
snprintf( psz_fmt, MAX_MSG, "error: %s\n", psz_format );
vfprintf( stderr, psz_fmt, args );
}
else
{
vsyslog( LOG_ERR, psz_format, args );
}
va_end( args );
}
/*****************************************************************************
* msg_Warn
*****************************************************************************/
void msg_Warn( void *_unused, const char *psz_format, ... )
{
if ( i_verbose < VERB_WARN )
return;
va_list args;
va_start( args, psz_format );
if ( !b_syslog )
{
char psz_fmt[MAX_MSG];
snprintf( psz_fmt, MAX_MSG, "warning: %s\n", psz_format );
vfprintf( stderr, psz_fmt, args );
}
else
{
vsyslog( LOG_WARNING, psz_format, args );
}
va_end( args );
}
/*****************************************************************************
* msg_Dbg
*****************************************************************************/
void msg_Dbg( void *_unused, const char *psz_format, ... )
{
if ( i_verbose < VERB_DBG )
return;
va_list args;
va_start( args, psz_format );
if ( !b_syslog )
{
char psz_fmt[MAX_MSG];
snprintf( psz_fmt, MAX_MSG, "debug: %s\n", psz_format );
vfprintf( stderr, psz_fmt, args );
}
else
{
vsyslog( LOG_DEBUG, psz_format, args );
}
va_end( args );
}
/*****************************************************************************
* msg_Raw: only used for usage()
*****************************************************************************/
void msg_Raw( void *_unused, const char *psz_format, ... )
{
va_list args;
char psz_fmt[MAX_MSG];
va_start( args, psz_format );
snprintf( psz_fmt, MAX_MSG, "%s\n", psz_format );
vfprintf( stderr, psz_fmt, args );
va_end( args );
}
/*****************************************************************************
* wall_Date/real_Date: returns a 27 MHz timestamp
*****************************************************************************/
static uint64_t _wall_Date( bool b_realtime )
{
#if defined (HAVE_CLOCK_NANOSLEEP)
struct timespec ts;
/* Try to use POSIX monotonic clock if available */
if( b_realtime || clock_gettime( CLOCK_MONOTONIC, &ts ) == -1 )
/* Run-time fallback to real-time clock (always available) */
(void)clock_gettime( CLOCK_REALTIME, &ts );
return ((uint64_t)ts.tv_sec * (uint64_t)27000000)
+ ((uint64_t)ts.tv_nsec * 27 / 1000);
#else
struct timeval tv_date;
/* gettimeofday() could return an error, and should be tested. However, the
* only possible error, according to 'man', is EFAULT, which can not happen
* here, since tv is a local variable. */
gettimeofday( &tv_date, NULL );
return( (uint64_t) tv_date.tv_sec * 27000000 + (uint64_t) tv_date.tv_usec * 27 );
#endif
}
uint64_t wall_Date( void )
{
return _wall_Date( false );
}
uint64_t real_Date( void )
{
return _wall_Date( true );
}
/*****************************************************************************
* wall_Sleep/real_Sleep
*****************************************************************************/
static void _wall_Sleep( uint64_t i_delay, bool b_realtime )
{
struct timespec ts;
ts.tv_sec = i_delay / 27000000;
ts.tv_nsec = (i_delay % 27000000) * 1000 / 27;
#if defined( HAVE_CLOCK_NANOSLEEP )
int val = EINVAL;
if ( !b_realtime )
while ( ( val = clock_nanosleep( CLOCK_MONOTONIC, 0, &ts, &ts ) ) == EINTR );
if( val == EINVAL )
{
ts.tv_sec = i_delay / 27000000;
ts.tv_nsec = (i_delay % 27000000) * 1000 / 27;
while ( clock_nanosleep( CLOCK_REALTIME, 0, &ts, &ts ) == EINTR );
}
#else
while ( nanosleep( &ts, &ts ) && errno == EINTR );
#endif
}
void wall_Sleep( uint64_t i_delay )
{
_wall_Sleep( i_delay, false );
}
void real_Sleep( uint64_t i_delay )
{
_wall_Sleep( i_delay, true );
}
/*****************************************************************************
* GetInterfaceIndex: returns the index of an interface
*****************************************************************************/
static int GetInterfaceIndex( const char *psz_name )
{
#if !defined(__APPLE__)
int i_fd;
struct ifreq ifr;
if ( (i_fd = socket( AF_INET, SOCK_DGRAM, 0 )) < 0 )
{
msg_Err( NULL, "unable to open socket (%s)", strerror(errno) );
exit(EXIT_FAILURE);
}
strncpy( ifr.ifr_name, psz_name, IFNAMSIZ );
ifr.ifr_name[IFNAMSIZ-1] = '\0';
if ( ioctl( i_fd, SIOCGIFINDEX, &ifr ) < 0 )
{
msg_Err( NULL, "unable to get interface index (%s)", strerror(errno) );
exit(EXIT_FAILURE);
}
close( i_fd );
#if defined(__FreeBSD__)
return ifr.ifr_index;
#else
return ifr.ifr_ifindex;
#endif
#else
return 0;
#endif
}
/*****************************************************************************
* PrintSocket: print socket characteristics for debug purposes
*****************************************************************************/
static void PrintSocket( const char *psz_text, sockaddr_t *p_bind,
sockaddr_t *p_connect )
{
if ( p_bind->ss.ss_family == AF_INET )
{
msg_Dbg( NULL, "%s bind:%s:%u", psz_text,
inet_ntoa(p_bind->sin.sin_addr), ntohs(p_bind->sin.sin_port) );
}
else if ( p_bind->ss.ss_family == AF_INET6 )
{
char buf[INET6_ADDRSTRLEN];
msg_Dbg( NULL, "%s bind:[%s]:%u", psz_text,
inet_ntop(AF_INET6, &p_bind->sin6.sin6_addr, buf, sizeof(buf)),
ntohs(p_bind->sin6.sin6_port) );
}
if ( p_connect->ss.ss_family == AF_INET )
{
msg_Dbg( NULL, "%s connect:%s:%u", psz_text,
inet_ntoa(p_connect->sin.sin_addr),
ntohs(p_connect->sin.sin_port) );
}
else if ( p_connect->ss.ss_family == AF_INET6 )
{
char buf[INET6_ADDRSTRLEN];
msg_Dbg( NULL, "%s connect:[%s]:%u", psz_text,
inet_ntop(AF_INET6, &p_connect->sin6.sin6_addr, buf,
sizeof(buf)),
ntohs(p_connect->sin6.sin6_port) );
}
}
/*****************************************************************************
* ParseNodeService: parse a host:port string
*****************************************************************************/
static struct addrinfo *ParseNodeService( char *_psz_string, char **ppsz_end,
uint16_t i_default_port,
int *pi_if_index )
{
int i_family = AF_INET;
char psz_port_buffer[6];
char *psz_string = strdup( _psz_string );
char *psz_node, *psz_port = NULL, *psz_end;
struct addrinfo *p_res;
struct addrinfo hint;
int i_ret;
if ( psz_string[0] == '[' )
{
i_family = AF_INET6;
psz_node = psz_string + 1;
psz_end = strchr( psz_node, ']' );
if ( psz_end == NULL )
{
msg_Warn( NULL, "invalid IPv6 address %s", _psz_string );
free( psz_string );
return NULL;
}
*psz_end++ = '\0';
char *psz_intf = strrchr( psz_node, '%' );
if ( psz_intf != NULL )
{
*psz_intf++ = '\0';
if ( pi_if_index != NULL )
*pi_if_index = GetInterfaceIndex( psz_intf );
}
}
else
{
psz_node = psz_string;
psz_end = strpbrk( psz_string, "@:,/" );
}
if ( psz_end != NULL && psz_end[0] == ':' )
{
*psz_end++ = '\0';
psz_port = psz_end;
psz_end = strpbrk( psz_port, "@:,/" );
}
if ( psz_end != NULL )
{
*psz_end = '\0';
if ( ppsz_end != NULL )
*ppsz_end = _psz_string + (psz_end - psz_string);
}
else if ( ppsz_end != NULL )
*ppsz_end = _psz_string + strlen(_psz_string);
if ( i_default_port != 0 && (psz_port == NULL || !*psz_port) )
{
sprintf( psz_port_buffer, "%u", i_default_port );
psz_port = psz_port_buffer;
}
if ( psz_node[0] == '\0' )
psz_node = "0.0.0.0";
if ( i_family != AF_INET6 )
{
/* Give a try to inet_aton because experience shows that getaddrinfo()
* fails in certain cases, like when network is down. */
struct in_addr addr;
if ( inet_aton( psz_node, &addr ) != 0 )
{
uint8_t *p_buffer = malloc( sizeof(struct addrinfo) +
sizeof(struct sockaddr_in) );
p_res = (struct addrinfo *)p_buffer;
struct sockaddr_in *p_sin =
(struct sockaddr_in *)(p_buffer + sizeof(struct addrinfo));
p_sin->sin_family = AF_INET;
if ( psz_port != NULL )
p_sin->sin_port = ntohs( atoi( psz_port ) );
else
p_sin->sin_port = 0;
p_sin->sin_addr = addr;
p_res->ai_family = AF_INET;
p_res->ai_socktype = SOCK_DGRAM;
p_res->ai_protocol = 0;
p_res->ai_addrlen = sizeof(struct sockaddr_in);
p_res->ai_addr = (struct sockaddr *)p_sin;
p_res->ai_canonname = NULL;
p_res->ai_next = NULL;
free( psz_string );
return p_res;
}
}
memset( &hint, 0, sizeof(hint) );
hint.ai_family = i_family;
hint.ai_socktype = SOCK_DGRAM;
hint.ai_protocol = 0;
hint.ai_flags = AI_PASSIVE | AI_NUMERICHOST | AI_NUMERICSERV | AI_ADDRCONFIG;
if ( (i_ret = getaddrinfo( psz_node, psz_port, &hint, &p_res )) != 0 )
{
//msg_Warn( NULL, "getaddrinfo error: %s", gai_strerror(i_ret) );
free( psz_string );
return NULL;
}
free( psz_string );
return p_res;
}
/*****************************************************************************
* RawFillHeaders - fill ip/udp headers for RAW socket
*****************************************************************************/
static void RawFillHeaders(struct udprawpkt *dgram,
in_addr_t ipsrc, in_addr_t ipdst,
uint16_t portsrc, uint16_t portdst,
uint8_t ttl, uint8_t tos, uint16_t len)
{
#ifndef __APPLE__
#if defined(__FreeBSD__)
struct ip *iph = &(dgram->iph);
#else
struct iphdr *iph = &(dgram->iph);
#endif
struct udphdr *udph = &(dgram->udph);
#ifdef DEBUG_SOCKET
char ipsrc_str[16], ipdst_str[16];
struct in_addr insrc, indst;
insrc.s_addr = ipsrc;
indst.s_addr = ipdst;
strncpy(ipsrc_str, inet_ntoa(insrc), 16);
strncpy(ipdst_str, inet_ntoa(indst), 16);
printf("Filling raw header (%p) (%s:%u -> %s:%u)\n", dgram, ipsrc_str, portsrc, ipdst_str, portdst);
#endif
#if defined(__FreeBSD__)
// Fill ip header
iph->ip_hl = 5; // ip header with no specific option
iph->ip_v = 4;
iph->ip_tos = tos;
iph->ip_len = sizeof(struct udprawpkt) + len; // auto-htoned ?
iph->ip_id = htons(0); // auto-generated if frag_off (flags) = 0 ?
iph->ip_off = 0;
iph->ip_ttl = ttl;
iph->ip_p = IPPROTO_UDP;
iph->ip_sum = 0;
iph->ip_src.s_addr = ipsrc;
iph->ip_dst.s_addr = ipdst;
// Fill udp header
udph->uh_sport = htons(portsrc);
udph->uh_dport = htons(portdst);
udph->uh_ulen = htons(sizeof(struct udphdr) + len);
udph->uh_sum = 0;
#else
// Fill ip header
iph->ihl = 5; // ip header with no specific option
iph->version = 4;
iph->tos = tos;
iph->tot_len = sizeof(struct udprawpkt) + len; // auto-htoned ?
iph->id = htons(0); // auto-generated if frag_off (flags) = 0 ?
iph->frag_off = 0;
iph->ttl = ttl;
iph->protocol = IPPROTO_UDP;
iph->check = 0;
iph->saddr = ipsrc;
iph->daddr = ipdst;
// Fill udp header
udph->source = htons(portsrc);
udph->dest = htons(portdst);
udph->len = htons(sizeof(struct udphdr) + len);
udph->check = 0;
#endif
// Compute ip header checksum. Computed by kernel when frag_off = 0 ?
//iph->check = csum((unsigned short *)iph, sizeof(struct iphdr));
#endif
}
/*****************************************************************************
* OpenSocket: parse argv and open IPv4 & IPv6 sockets
*****************************************************************************/
static char *config_stropt( char *psz_string )
{
char *ret, *tmp;
if ( !psz_string || strlen( psz_string ) == 0 )
return NULL;
ret = tmp = strdup( psz_string );
while (*tmp) {
if (*tmp == '_')
*tmp = ' ';
if (*tmp == '/') {
*tmp = '\0';
break;
}
tmp++;
}
return ret;
}
int OpenSocketSafe( const char *_psz_arg, int i_ttl, uint16_t i_bind_port,
uint16_t i_connect_port, unsigned int *pi_weight, bool *pb_tcp,
struct opensocket_opt *p_opt)
{
sockaddr_t bind_addr, connect_addr;
int i_fd = -1, i;
char *psz_arg = strdup(_psz_arg);
char *psz_token = psz_arg;
char *psz_token2 = NULL;
int i_bind_if_index = 0, i_connect_if_index = 0;
in_addr_t i_if_addr = INADDR_ANY;
int i_tos = 0;
bool b_tcp;
struct addrinfo *p_ai;
int i_family;
socklen_t i_sockaddr_len;
bool b_host = false;
bool b_raw_packets = false;
in_addr_t i_raw_srcaddr = INADDR_ANY;
int i_raw_srcport = 0;
char *psz_ifname = NULL;
#ifdef __FreeBSD__
int hincl = 1;
#endif
bind_addr.ss.ss_family = AF_UNSPEC;
connect_addr.ss.ss_family = AF_UNSPEC;
if ( pb_tcp == NULL )
pb_tcp = &b_tcp;
*pb_tcp = false;
if ( p_opt )
{
if ( p_opt->pb_multicast )
*p_opt->pb_multicast = false;
if ( p_opt->pb_raw_packets )
*p_opt->pb_raw_packets = false;
if ( p_opt->pb_udp )
*p_opt->pb_udp = false;
}
psz_token2 = strrchr( psz_arg, ',' );
if ( psz_token2 )
{
*psz_token2++ = '\0';
if ( pi_weight )
*pi_weight = strtoul( psz_token2, NULL, 0 );
}
else if ( pi_weight )
*pi_weight = 1;
psz_token2 = strchr( psz_arg, '/' );
if ( psz_token2 )
*psz_token2 = '\0';
if ( *psz_token == '\0' )
return -1;
/* Hosts */
if ( psz_token[0] != '@' )
{
b_host = true;
p_ai = ParseNodeService( psz_token, &psz_token, i_connect_port,
&i_connect_if_index );
if ( p_ai == NULL )
return -1;
memcpy( &connect_addr.ss, p_ai->ai_addr, p_ai->ai_addrlen );
freeaddrinfo( p_ai );
}
if ( psz_token[0] == '@' )
{
psz_token++;
p_ai = ParseNodeService( psz_token, &psz_token, i_bind_port,
&i_bind_if_index );
if ( p_ai == NULL )
return -1;
memcpy( &bind_addr.ss, p_ai->ai_addr, p_ai->ai_addrlen );
freeaddrinfo( p_ai );
}
if ( bind_addr.ss.ss_family == AF_UNSPEC &&
connect_addr.ss.ss_family == AF_UNSPEC )
return -1;
#ifdef DEBUG_SOCKET
PrintSocket( "socket definition:", &bind_addr, &connect_addr );
#endif
/* opensocket optional struct */
if (p_opt) {
if (p_opt->p_raw_pktheader) {
memset(p_opt->p_raw_pktheader, 0, sizeof(struct udprawpkt));
b_raw_packets = true;
}
}
/* Weights and options */
if ( psz_token2 )
{
do
{
*psz_token2++ = '\0';
#define IS_OPTION( option ) (!strncasecmp( psz_token2, option, strlen(option) ))
#define ARG_OPTION( option ) (psz_token2 + strlen(option))
if ( IS_OPTION("ifindex=") )
i_bind_if_index = i_connect_if_index =
strtol( ARG_OPTION("ifindex="), NULL, 0 );
else if ( IS_OPTION("ifaddr=") )
{
char *option = config_stropt( ARG_OPTION("ifaddr=") );
i_if_addr = inet_addr( option );
free( option );
}
else if ( IS_OPTION("ifname=") )
{
psz_ifname = config_stropt( ARG_OPTION("ifname=") );
if (strlen(psz_ifname) >= IFNAMSIZ) {
psz_ifname[IFNAMSIZ-1] = '\0';
}
}
else if ( IS_OPTION("ttl=") )
i_ttl = strtol( ARG_OPTION("ttl="), NULL, 0 );
else if ( IS_OPTION("tos=") )
i_tos = strtol( ARG_OPTION("tos="), NULL, 0 );
else if ( IS_OPTION("tcp") )
*pb_tcp = true;
else if ( IS_OPTION("udp") )
{
if ( p_opt && p_opt->pb_udp )
*p_opt->pb_udp = true;
}
else if ( IS_OPTION("srcaddr=") )
{
char *option = config_stropt( ARG_OPTION("srcaddr=") );
i_raw_srcaddr = inet_addr( option );
free( option );
}
else if ( IS_OPTION("srcport=") )
i_raw_srcport = strtol( ARG_OPTION("srcport="), NULL, 0 );
else if ( IS_OPTION("fd=") )
i_fd = strtol( ARG_OPTION("fd="), NULL, 0 );
else
msg_Warn( NULL, "unrecognized option %s", psz_token2 );
#undef IS_OPTION
#undef ARG_OPTION
}
while ( (psz_token2 = strchr( psz_token2, '/' )) != NULL );
}
free( psz_arg );
/* Sanity checks */
if ( bind_addr.ss.ss_family != AF_UNSPEC
&& connect_addr.ss.ss_family != AF_UNSPEC
&& bind_addr.ss.ss_family != connect_addr.ss.ss_family )
{
msg_Err( NULL, "incompatible address types" );
return -2;
}
if ( bind_addr.ss.ss_family != AF_UNSPEC )
i_family = bind_addr.ss.ss_family;
else if ( connect_addr.ss.ss_family != AF_UNSPEC )
i_family = connect_addr.ss.ss_family;
else
{
msg_Err( NULL, "ambiguous address declaration" );
return -2;
}
i_sockaddr_len = (i_family == AF_INET) ? sizeof(struct sockaddr_in) :
sizeof(struct sockaddr_in6);
if ( i_bind_if_index && i_connect_if_index
&& i_bind_if_index != i_connect_if_index )
{
msg_Err( NULL, "incompatible bind and connect interfaces" );
return -2;
}
if ( i_connect_if_index ) i_bind_if_index = i_connect_if_index;
else i_connect_if_index = i_bind_if_index;
/* Socket configuration */
if ( i_fd < 0 )
{
if (b_raw_packets && i_raw_srcaddr != INADDR_ANY && b_host)
{
RawFillHeaders(p_opt->p_raw_pktheader,
i_raw_srcaddr, connect_addr.sin.sin_addr.s_addr, i_raw_srcport,
ntohs(connect_addr.sin.sin_port), i_ttl, i_tos, 0);
i_fd = socket( AF_INET, SOCK_RAW, IPPROTO_RAW );
if ( p_opt->pb_raw_packets != NULL )
*p_opt->pb_raw_packets = true;
#ifdef __FreeBSD__
if ( setsockopt( i_fd, IPPROTO_IP, IP_HDRINCL, &hincl, sizeof(hincl)) == -1 )
{
msg_Err( NULL, "unable to set socket (%s)", strerror(errno) );
close(i_fd);
return -2;
}
#endif
} else
i_fd = socket( i_family, *pb_tcp ? SOCK_STREAM : SOCK_DGRAM, 0);
if ( i_fd < 0 )
{
msg_Err( NULL, "unable to open socket (%s)", strerror(errno) );
close(i_fd);
return -2;
}
i = 1;
if ( setsockopt( i_fd, SOL_SOCKET, SO_REUSEADDR, (void *)&i,
sizeof(i) ) == -1 )
{
msg_Err( NULL, "unable to set socket (%s)", strerror(errno) );
close(i_fd);
return -2;
}
if ( i_family == AF_INET6 )
{
if ( i_bind_if_index
&& setsockopt( i_fd, IPPROTO_IPV6, IPV6_MULTICAST_IF,
(void *)&i_bind_if_index, sizeof(i_bind_if_index) ) < 0 )
{
msg_Err( NULL, "couldn't set interface index" );
PrintSocket( "socket definition:", &bind_addr, &connect_addr );
close(i_fd);
return -2;
}
if ( bind_addr.ss.ss_family != AF_UNSPEC )
{
#if !defined(__APPLE__) && !defined(__FreeBSD__)
if ( IN6_IS_ADDR_MULTICAST( &bind_addr.sin6.sin6_addr ) )
{
struct ipv6_mreq imr;
sockaddr_t bind_addr_any = bind_addr;
bind_addr_any.sin6.sin6_addr = in6addr_any;
if ( bind( i_fd, &bind_addr_any.so,
sizeof(bind_addr_any) ) < 0 )
{
msg_Err( NULL, "couldn't bind" );
PrintSocket( "socket definition:", &bind_addr,
&connect_addr );
close(i_fd);
return -2;
}
imr.ipv6mr_multiaddr = bind_addr.sin6.sin6_addr;
imr.ipv6mr_interface = i_bind_if_index;
/* Join Multicast group without source filter */
if ( setsockopt( i_fd, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP,
(char *)&imr, sizeof(struct ipv6_mreq) ) < 0 )
{
msg_Err( NULL, "couldn't join multicast group" );
PrintSocket( "socket definition:", &bind_addr,
&connect_addr );
close( i_fd );
return -2;
}
if ( p_opt != NULL && p_opt->pb_multicast != NULL )
*p_opt->pb_multicast = true;
}
else
#endif
goto normal_bind;
}
}
else if ( bind_addr.ss.ss_family != AF_UNSPEC )
{
normal_bind:
if ( bind( i_fd, &bind_addr.so, i_sockaddr_len ) < 0 )
{
msg_Err( NULL, "couldn't bind" );
PrintSocket( "socket definition:", &bind_addr, &connect_addr );
close( i_fd );
return -2;
}
}
}
if ( !*pb_tcp )
{
/* Increase the receive buffer size to 1/2MB (8Mb/s during 1/2s) to
* avoid packet loss caused by scheduling problems */
i = 0x80000;
setsockopt( i_fd, SOL_SOCKET, SO_RCVBUF, (void *) &i, sizeof( i ) );
/* Join the multicast group if the socket is a multicast address */
if ( bind_addr.ss.ss_family == AF_INET
&& IN_MULTICAST( ntohl(bind_addr.sin.sin_addr.s_addr)) )
{
#ifdef IP_ADD_SOURCE_MEMBERSHIP /* unavailable on GNU Hurd */
if ( connect_addr.ss.ss_family != AF_UNSPEC )
{
/* Source-specific multicast */
struct ip_mreq_source imr;
imr.imr_multiaddr = bind_addr.sin.sin_addr;
imr.imr_interface.s_addr = i_if_addr;
imr.imr_sourceaddr = connect_addr.sin.sin_addr;
if ( i_bind_if_index )
msg_Warn( NULL, "ignoring ifindex option in SSM" );
if ( setsockopt( i_fd, IPPROTO_IP, IP_ADD_SOURCE_MEMBERSHIP,
(char *)&imr, sizeof(struct ip_mreq_source) ) < 0 )
{
msg_Err( NULL, "couldn't join multicast group (%s)",
strerror(errno) );
PrintSocket( "socket definition:", &bind_addr,
&connect_addr );
close( i_fd );
return -2;
}
}
else
#endif
#ifndef __FreeBSD__
if ( i_bind_if_index )
{
/* Linux-specific interface-bound multicast */
struct ip_mreqn imr;
imr.imr_multiaddr = bind_addr.sin.sin_addr;
imr.imr_address.s_addr = i_if_addr;
imr.imr_ifindex = i_bind_if_index;
if ( setsockopt( i_fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
(char *)&imr, sizeof(struct ip_mreqn) ) < 0 )
{
msg_Err( NULL, "couldn't join multicast group (%s)",
strerror(errno) );
PrintSocket( "socket definition:", &bind_addr,
&connect_addr );
close( i_fd );
return -2;
}
}
else
#endif
{
/* Regular multicast */
struct ip_mreq imr;
imr.imr_multiaddr = bind_addr.sin.sin_addr;
imr.imr_interface.s_addr = i_if_addr;
if ( setsockopt( i_fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
(char *)&imr, sizeof(struct ip_mreq) ) < 0 )
{
msg_Err( NULL, "couldn't join multicast group (%s)",
strerror(errno) );
PrintSocket( "socket definition:", &bind_addr,
&connect_addr );
close( i_fd );
return -2;
}
}
#ifdef SO_BINDTODEVICE
if (psz_ifname) {
if ( setsockopt( i_fd, SOL_SOCKET, SO_BINDTODEVICE,
psz_ifname, strlen(psz_ifname)+1 ) < 0 ) {
msg_Err( NULL, "couldn't bind to device %s (%s)",
psz_ifname, strerror(errno) );
close( i_fd );
return -2;
}
free(psz_ifname);
psz_ifname = NULL;
}
#endif
if ( p_opt != NULL && p_opt->pb_multicast != NULL )
*p_opt->pb_multicast = true;
}
}
if ( connect_addr.ss.ss_family != AF_UNSPEC )
{
if ( connect( i_fd, &connect_addr.so, i_sockaddr_len ) < 0 )
{
msg_Err( NULL, "cannot connect socket (%s)",
strerror(errno) );
PrintSocket( "socket definition:", &bind_addr, &connect_addr );
close( i_fd );
return -2;
}
if ( !*pb_tcp )
{
if ( i_family == AF_INET
&& IN_MULTICAST(ntohl(connect_addr.sin.sin_addr.s_addr)) )
{
if ( p_opt != NULL && p_opt->pb_multicast != NULL )
*p_opt->pb_multicast = true;
if ( i_ttl &&
setsockopt( i_fd, IPPROTO_IP, IP_MULTICAST_TTL,
(void *)&i_ttl, sizeof(i_ttl) ) == -1 )
{
msg_Err( NULL, "couldn't set TTL (%s)",
strerror(errno) );
PrintSocket( "socket definition:", &bind_addr,
&connect_addr );
close( i_fd );
return -2;
}
}
if ( i_family == AF_INET6
&& IN6_IS_ADDR_MULTICAST(&connect_addr.sin6.sin6_addr) )
{
if ( p_opt != NULL && p_opt->pb_multicast != NULL )
*p_opt->pb_multicast = true;
if ( i_ttl &&
setsockopt( i_fd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS,
(void *)&i_ttl, sizeof(i_ttl) ) == -1 )
{
msg_Err( NULL, "couldn't set TTL (%s)",
strerror(errno) );
PrintSocket( "socket definition:", &bind_addr,
&connect_addr );
close( i_fd );
return -2;
}
}
if ( i_tos )
{
if ( setsockopt( i_fd, IPPROTO_IP, IP_TOS,
(void *)&i_tos, sizeof(i_tos) ) == -1 )
{
msg_Err( NULL, "couldn't set TOS (%s)", strerror(errno) );
PrintSocket( "socket definition:", &bind_addr,
&connect_addr );
close( i_fd );
return -2;
}
}
}
}
else if ( *pb_tcp )
{
/* Open in listen mode - wait for an incoming connection */
int i_new_fd;
if ( listen( i_fd, 1 ) < 0 )
{
msg_Err( NULL, "couldn't listen (%s)", strerror(errno) );
PrintSocket( "socket definition:", &bind_addr, &connect_addr );
close( i_fd );
return -2;
}
while ( (i_new_fd = accept( i_fd, NULL, NULL )) < 0 )
{
if ( errno != EINTR )