-
-
Notifications
You must be signed in to change notification settings - Fork 764
Expand file tree
/
Copy pathutils.c
More file actions
1401 lines (1183 loc) · 32.8 KB
/
utils.c
File metadata and controls
1401 lines (1183 loc) · 32.8 KB
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
/*
* Soft: Keepalived is a failover program for the LVS project
* <www.linuxvirtualserver.org>. It monitor & manipulate
* a loadbalanced server pool using multi-layer checks.
*
* Part: General program utils.
*
* Author: Alexandre Cassen, <acassen@linux-vs.org>
*
* 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.
*
* 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.
*
* Copyright (C) 2001-2017 Alexandre Cassen, <acassen@gmail.com>
*/
#include "config.h"
/* System includes */
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdlib.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <sys/utsname.h>
#include <sys/stat.h>
#include <stdint.h>
#include <errno.h>
#include <time.h>
#include <stdbool.h>
#include <sys/prctl.h>
#include <sys/resource.h>
#if defined _WITH_LVS_ || defined _HAVE_LIBIPSET_
#include <sys/wait.h>
#endif
#ifdef _WITH_PERF_
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/epoll.h>
#include <sys/inotify.h>
#endif
#ifdef _WITH_STACKTRACE_
#include <sys/stat.h>
#include <execinfo.h>
#include <memory.h>
#endif
#ifdef _HAVE_LIBKMOD_
#include <libkmod.h>
#endif
/* Local includes */
#include "utils.h"
#include "memory.h"
#include "utils.h"
#include "signals.h"
#include "bitops.h"
#include "parser.h"
#include "logger.h"
#include "process.h"
#include "timer.h"
/* global vars */
unsigned long debug = 0;
mode_t umask_val = S_IXUSR | S_IRWXG | S_IRWXO;
const char *tmp_dir;
#ifdef _EINTR_DEBUG_
bool do_eintr_debug;
#endif
/* Display a buffer into a HEXA formated output */
void
dump_buffer(const char *buff, size_t count, FILE* fp, int indent)
{
size_t i, j, c;
bool printnext = true;
if (count % 16)
c = count + (16 - count % 16);
else
c = count;
for (i = 0; i < c; i++) {
if (printnext) {
printnext = false;
fprintf(fp, "%*s%.4zu ", indent, "", i & 0xffff);
}
if (i < count)
fprintf(fp, "%3.2x", (unsigned char)buff[i] & 0xff);
else
fprintf(fp, " ");
if (!((i + 1) % 8)) {
if ((i + 1) % 16)
fprintf(fp, " -");
else {
fprintf(fp, " ");
for (j = i - 15; j <= i; j++)
if (j < count) {
if ((buff[j] & 0xff) >= 0x20
&& (buff[j] & 0xff) <= 0x7e)
fprintf(fp, "%c",
buff[j] & 0xff);
else
fprintf(fp, ".");
} else
fprintf(fp, " ");
fprintf(fp, "\n");
printnext = true;
}
}
}
}
#if defined _CHECKSUM_DEBUG_ || defined _RECVMSG_DEBUG_
void
log_buffer(const char *msg, const void *buff, size_t count)
{
char op_buf[60]; // Probably 56 really
const unsigned char *bufp = buff;
char *ptr;
size_t offs = 0;
unsigned i;
log_message(LOG_INFO, "%s - len %zu", msg, count);
while (offs < count) {
ptr = op_buf;
ptr += snprintf(ptr, op_buf + sizeof(op_buf) - ptr, "%4.4zx ", offs);
for (i = 0; i < 16 && offs < count; i++) {
if (i == 8)
*ptr++ = ' ';
ptr += snprintf(ptr, op_buf + sizeof(op_buf) - ptr, " %2.2x", bufp[offs++]);
}
log_message(LOG_INFO, "%s", op_buf);
}
}
#endif
#ifdef _WITH_STACKTRACE_
void
write_stacktrace(const char *file_name, const char *str)
{
int fd;
void *buffer[100];
unsigned int nptrs;
unsigned int i;
char **strs;
char *cmd;
const char *tmp_filename = NULL;
nptrs = backtrace(buffer, 100);
if (file_name) {
fd = open(file_name, O_WRONLY | O_APPEND | O_CREAT | O_NOFOLLOW, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
if (str)
dprintf(fd, "%s\n", str);
backtrace_symbols_fd(buffer, nptrs, fd);
if (write(fd, "\n", 1) != 1) {
/* We don't care, but this stops a warning on Ubuntu */
}
close(fd);
} else {
if (str)
log_message(LOG_INFO, "%s", str);
strs = backtrace_symbols(buffer, nptrs);
if (strs == NULL) {
log_message(LOG_INFO, "Unable to get stack backtrace");
return;
}
/* We don't need the call to this function, or the first two entries on the stack */
nptrs -= 2;
for (i = 1; i < nptrs; i++)
log_message(LOG_INFO, " %s", strs[i]);
free(strs); /* malloc'd by backtrace_symbols */
}
/* gstack() gives a more detailed stacktrace, using gdb and the bt command */
if (!file_name)
tmp_filename = make_tmp_filename("keepalived.stack");
else if (file_name[0] != '/')
tmp_filename = make_tmp_filename(file_name);
cmd = MALLOC(6 + 1 + PID_MAX_DIGITS + 1 + 2 + ( tmp_filename ? strlen(tmp_filename) : strlen(file_name)) + 1);
sprintf(cmd, "gstack %d >>%s", getpid(), tmp_filename ? tmp_filename : file_name);
i = system(cmd); /* We don't care about return value but gcc thinks we should */
FREE(cmd);
FREE_CONST_PTR(tmp_filename);
}
#endif
const char *
make_file_name(const char *name, const char *prog, const char *namespace, const char *instance)
{
const char *extn_start;
const char *dir_end;
size_t len;
char *file_name;
if (!name)
return NULL;
if (name[0] != '/')
len = strlen(tmp_dir) + 1;
else
len = 0;
len += strlen(name);
if (prog)
len += strlen(prog) + 1;
if (namespace)
len += strlen(namespace) + 1;
if (instance)
len += strlen(instance) + 1;
file_name = MALLOC(len + 1);
dir_end = strrchr(name, '/');
extn_start = strrchr(dir_end ? dir_end : name, '.');
if (name[0] != '/') {
strcpy(file_name, tmp_dir);
strcat(file_name, "/");
} else
file_name[0] = '\0';
strncat(file_name, name, extn_start ? (size_t)(extn_start - name) : len);
if (prog) {
strcat(file_name, "_");
strcat(file_name, prog);
}
if (namespace) {
strcat(file_name, "_");
strcat(file_name, namespace);
}
if (instance) {
strcat(file_name, "_");
strcat(file_name, instance);
}
if (extn_start)
strcat(file_name, extn_start);
return file_name;
}
void
set_process_name(const char *name)
{
if (!name)
name = "keepalived";
if (prctl(PR_SET_NAME, name))
log_message(LOG_INFO, "Failed to set process name '%s'", name);
}
#ifdef _WITH_PERF_
void
run_perf(const char *process, const char *network_namespace, const char *instance_name)
{
int ret;
pid_t pid;
char *orig_name = NULL;
const char *new_name;
const char *perf_name = "perf.data";
int in = -1;
int ep = -1;
do {
orig_name = MALLOC(PATH_MAX);
if (!getcwd(orig_name, PATH_MAX)) {
log_message(LOG_INFO, "Unable to get cwd");
break;
}
in = inotify_init1(IN_CLOEXEC | IN_NONBLOCK);
if (in == -1) {
log_message(LOG_INFO, "inotify_init failed %d - %m", errno);
break;
}
if (inotify_add_watch(in, orig_name, IN_CREATE) == -1) {
log_message(LOG_INFO, "inotify_add_watch of %s failed %d - %m", orig_name, errno);
break;
}
pid = fork();
if (pid == -1) {
log_message(LOG_INFO, "fork() for perf failed");
break;
}
/* Child */
if (!pid) {
char buf[PID_MAX_DIGITS + 1];
snprintf(buf, sizeof buf, "%d", getppid());
execlp("perf", "perf", "record", "-p", buf, "-q", "-g", "--call-graph", "fp", NULL);
exit(0);
}
/* Parent */
char buf[sizeof(struct inotify_event) + NAME_MAX + 1] __attribute__((aligned(__alignof__(struct inotify_event))));
struct inotify_event *ie = PTR_CAST(struct inotify_event, buf);
struct epoll_event ee = { .events = EPOLLIN, .data.fd = in };
if ((ep = epoll_create(1)) == -1) {
log_message(LOG_INFO, "perf epoll_create failed errno %d - %m", errno);
break;
}
if (epoll_ctl(ep, EPOLL_CTL_ADD, in, &ee) == -1) {
log_message(LOG_INFO, "perf epoll_ctl failed errno %d - %m", errno);
break;
}
do {
ret = epoll_wait(ep, &ee, 1, 1000);
if (ret == 0) {
log_message(LOG_INFO, "Timed out waiting for creation of %s", perf_name);
break;
}
else if (ret == -1) {
if (check_EINTR(errno))
continue;
log_message(LOG_INFO, "perf epoll returned errno %d - %m", errno);
break;
}
ret = read(in, buf, sizeof(buf));
if (ret == -1) {
if (check_EINTR(errno))
continue;
log_message(LOG_INFO, "perf inotify read returned errno %d %m", errno);
break;
}
if (ret < (int)sizeof(*ie)) {
log_message(LOG_INFO, "read returned %d", ret);
break;
}
if (!(ie->mask & IN_CREATE)) {
log_message(LOG_INFO, "mask is 0x%x", ie->mask);
continue;
}
if (!ie->len) {
log_message(LOG_INFO, "perf inotify read returned no len");
continue;
}
if (strcmp(ie->name, perf_name))
continue;
/* Rename the /perf.data file */
strcat(orig_name, perf_name);
new_name = make_file_name(orig_name, process,
network_namespace,
instance_name);
if (rename(orig_name, new_name))
log_message(LOG_INFO, "Rename %s to %s failed - %m (%d)", orig_name, new_name, errno);
FREE_CONST(new_name);
} while (false);
} while (false);
if (ep != -1)
close(ep);
if (in != -1)
close(in);
if (orig_name)
FREE(orig_name);
}
#endif
/* Compute a checksum */
#ifdef USE_MEMCPY_FOR_ALIASING
uint16_t
in_csum(const void *addr, size_t len, uint32_t csum, uint32_t *acc)
{
size_t nleft = len;
uint16_t w16;
const unsigned char *b_addr = addr;
/*
* Our algorithm is simple, using a 32 bit accumulator (sum),
* we add sequential 16 bit words to it, and at the end, fold
* back all the carry bits from the top 16 bits into the lower
* 16 bits.
*/
/* What is not so simple is dealing with strict aliasing. We can only
* access the data via a char/unsigned char pointer, since that is the
* only type of pointer that can be used for aliasing.
* The trick here is we use memcpy to copy the uint16_t via an unsigned
* char *. The memcpy doesn't actually happen since the compiler sees
* what is happening, optimizes it out and accesses the original memory,
* but since the code is written to only access the original memory via
* the unsigned char *, the compiler knows this might be aliasing.
*/
while (nleft > 1) {
memcpy(&w16, b_addr, sizeof(w16));
csum += w16;
b_addr += sizeof(w16);
nleft -= sizeof(w16);
}
/* mop up an odd byte, if necessary */
if (nleft == 1)
csum += htons(*b_addr << 8);
if (acc)
*acc = csum;
/*
* add back carry outs from top 16 bits to low 16 bits
*/
csum = (csum >> 16) + (csum & 0xffff); /* add hi 16 to low 16 */
csum += (csum >> 16); /* add carry */
return ~csum & 0xffff; /* truncate to 16 bits */
}
#else
typedef uint16_t __attribute__((may_alias)) uint16_t_a;
uint16_t
in_csum(const void *addr, size_t len, uint32_t csum, uint32_t *acc)
{
size_t nleft = len;
const uint16_t_a *w = addr;
uint16_t answer;
uint32_t sum = csum;
/*
* Our algorithm is simple, using a 32 bit accumulator (sum),
* we add sequential 16 bit words to it, and at the end, fold
* back all the carry bits from the top 16 bits into the lower
* 16 bits.
*/
while (nleft > 1) {
sum += *w++;
nleft -= 2;
}
/* mop up an odd byte, if necessary */
if (nleft == 1)
sum += htons(*PTR_CAST_CONST(u_char, w) << 8);
if (acc)
*acc = sum;
/*
* add back carry outs from top 16 bits to low 16 bits
*/
sum = (sum >> 16) + (sum & 0xffff); /* add hi 16 to low 16 */
sum += (sum >> 16); /* add carry */
answer = (~sum & 0xffff); /* truncate to 16 bits */
return (answer);
}
#endif
/* IP network to ascii representation - address is in network byte order */
const char *
inet_ntop2(uint32_t ip)
{
static char buf[16];
const unsigned char (*bytep)[4] = (const unsigned char (*)[4])&ip;
sprintf(buf, "%d.%d.%d.%d", (*bytep)[0], (*bytep)[1], (*bytep)[2], (*bytep)[3]);
return buf;
}
#ifdef _INCLUDE_UNUSED_CODE_
/*
* IP network to ascii representation. To use
* for multiple IP address convertion into the same call.
*/
char *
inet_ntoa2(uint32_t ip, char *buf)
{
const unsigned char *bytep;
bytep = PTR_CAST_CONST(unsigned char, &ip);
sprintf(buf, "%d.%d.%d.%d", bytep[0], bytep[1], bytep[2], bytep[3]);
return buf;
}
#endif
/* IP string to network range representation. */
bool
inet_stor(const char *addr, uint32_t *range_end)
{
const char *cp;
char *endptr;
unsigned long range;
int family = strchr(addr, ':') ? AF_INET6 : AF_INET;
const char *warn = "";
#ifndef _STRICT_CONFIG_
if (!__test_bit(CONFIG_TEST_BIT, &debug))
warn = "WARNING - ";
#endif
/* Return UINT32_MAX to indicate no range */
if (!(cp = strchr(addr, '-'))) {
*range_end = UINT32_MAX;
return true;
}
errno = 0;
range = strtoul(cp + 1, &endptr, family == AF_INET6 ? 16 : 10);
*range_end = range;
if (*endptr)
report_config_error(CONFIG_INVALID_NUMBER, "%sVirtual server group range '%s' has extra characters at end '%s'", warn, addr, endptr);
else if (errno == ERANGE ||
(family == AF_INET6 && range > 0xffff) ||
(family == AF_INET && range > 255)) {
report_config_error(CONFIG_INVALID_NUMBER, "Virtual server group range '%s' end '%s' too large", addr, cp + 1);
/* Indicate error */
return false;
}
else
return true;
#ifdef _STRICT_CONFIG_
return false;
#else
return !__test_bit(CONFIG_TEST_BIT, &debug);
#endif
}
/* Domain to sockaddr_ka */
int
domain_stosockaddr(const char *domain, const char *port, sockaddr_t *addr)
{
struct addrinfo *res = NULL;
unsigned port_num;
if (port) {
if (!read_unsigned(port, &port_num, 1, 65535, true)) {
addr->ss_family = AF_UNSPEC;
return -1;
}
}
if (getaddrinfo(domain, NULL, NULL, &res) != 0 || !res) {
addr->ss_family = AF_UNSPEC;
return -1;
}
addr->ss_family = (sa_family_t)res->ai_family;
/* Tempting as it is to do something like:
* *(struct sockaddr_in6 *)addr = *(struct sockaddr_in6 *)res->ai_addr;
* the alignment of struct sockaddr (short int) is less than the alignment of
* sockaddr_t (long).
*/
memcpy(addr, res->ai_addr, res->ai_addrlen);
if (port) {
if (addr->ss_family == AF_INET6)
PTR_CAST(struct sockaddr_in6, addr)->sin6_port = htons(port_num);
else
PTR_CAST(struct sockaddr_in, addr)->sin_port = htons(port_num);
}
freeaddrinfo(res);
return 0;
}
/* IP string to sockaddr_ka
* return value is "error". */
bool
inet_stosockaddr(const char *ip, const char *port, sockaddr_t *addr)
{
void *addr_ip;
const char *cp;
char *ip_str = NULL;
unsigned port_num;
int res;
addr->ss_family = (strchr(ip, ':')) ? AF_INET6 : AF_INET;
if (port) {
if (!read_unsigned(port, &port_num, 1, 65535, true)) {
addr->ss_family = AF_UNSPEC;
return true;
}
}
if (addr->ss_family == AF_INET6) {
struct sockaddr_in6 *addr6 = PTR_CAST(struct sockaddr_in6, addr);
if (port)
addr6->sin6_port = htons(port_num);
addr_ip = &addr6->sin6_addr;
} else {
struct sockaddr_in *addr4 = PTR_CAST(struct sockaddr_in, addr);
if (port)
addr4->sin_port = htons(port_num);
addr_ip = &addr4->sin_addr;
}
/* remove range and mask stuff */
if ((cp = strchr(ip, '-')) ||
(cp = strchr(ip, '/')))
ip_str = STRNDUP(ip, cp - ip);
res = inet_pton(addr->ss_family, ip_str ? ip_str : ip, addr_ip);
if (ip_str)
FREE(ip_str);
if (!res) {
addr->ss_family = AF_UNSPEC;
return true;
}
return false;
}
/* IPv4 to sockaddr_ka */
void
inet_ip4tosockaddr(const struct in_addr *sin_addr, sockaddr_t *addr)
{
struct sockaddr_in *addr4 = PTR_CAST(struct sockaddr_in, addr);
addr4->sin_family = AF_INET;
addr4->sin_addr = *sin_addr;
}
/* IPv6 to sockaddr_ka */
void
inet_ip6tosockaddr(const struct in6_addr *sin_addr, sockaddr_t *addr)
{
struct sockaddr_in6 *addr6 = PTR_CAST(struct sockaddr_in6, addr);
addr6->sin6_family = AF_INET6;
addr6->sin6_addr = *sin_addr;
}
/* Check address, possibly with mask, is valid */
bool
check_valid_ipaddress(const char *str, bool allow_subnet_mask)
{
int family;
unsigned long prefixlen;
const char *p;
char *endptr;
union {
struct in_addr in;
struct in6_addr in6;
} addr;
int res;
const char *str_dup = NULL;
if (!strchr(str, ':') && !strchr(str, '.'))
return false;
family = (strchr(str, ':')) ? AF_INET6 : AF_INET;
if (allow_subnet_mask)
p = strchr(str, '/');
else
p = NULL;
if (p) {
if (!p[1])
return false;
prefixlen = strtoul(p + 1, &endptr, 10);
if (*endptr || prefixlen > (family == AF_INET6 ? 128 : 32))
return false;
str_dup = STRNDUP(str, p - str);
}
res = inet_pton(family, str_dup ? str_dup : str, &addr);
if (str_dup)
FREE_CONST(str_dup);
return res;
}
/* IP network to string representation */
static char *
inet_sockaddrtos2(const sockaddr_t *addr, char *addr_str)
{
const void *addr_ip;
if (addr->ss_family == AF_INET6) {
const struct sockaddr_in6 *addr6 = PTR_CAST_CONST(struct sockaddr_in6, addr);
addr_ip = &addr6->sin6_addr;
} else {
const struct sockaddr_in *addr4 = PTR_CAST_CONST(struct sockaddr_in, addr);
addr_ip = &addr4->sin_addr;
}
if (!inet_ntop(addr->ss_family, addr_ip, addr_str, INET6_ADDRSTRLEN))
return NULL;
return addr_str;
}
const char *
inet_sockaddrtos(const sockaddr_t *addr)
{
static char addr_str[INET6_ADDRSTRLEN];
inet_sockaddrtos2(addr, addr_str);
return addr_str;
}
uint16_t __attribute__ ((pure))
inet_sockaddrport(const sockaddr_t *addr)
{
if (addr->ss_family == AF_INET6) {
const struct sockaddr_in6 *addr6 = PTR_CAST_CONST(struct sockaddr_in6, addr);
return addr6->sin6_port;
}
/* Note: this might be AF_UNSPEC if it is the sequence number of
* a virtual server in a virtual server group */
const struct sockaddr_in *addr4 = PTR_CAST_CONST(struct sockaddr_in, addr);
return addr4->sin_port;
}
void
inet_set_sockaddrport(sockaddr_t *addr, uint16_t port)
{
if (addr->ss_family == AF_INET6) {
struct sockaddr_in6 *addr6 = PTR_CAST(struct sockaddr_in6, addr);
addr6->sin6_port = port;
} else {
struct sockaddr_in *addr4 = PTR_CAST(struct sockaddr_in, addr);
addr4->sin_port = port;
}
}
const char *
inet_sockaddrtopair(const sockaddr_t *addr)
{
char addr_str[INET6_ADDRSTRLEN];
static char ret[sizeof(addr_str) + 8]; /* '[' + addr_str + ']' + ':' + 'nnnnn' */
inet_sockaddrtos2(addr, addr_str);
snprintf(ret, sizeof(ret), "[%s]:%d"
, addr_str
, ntohs(inet_sockaddrport(addr)));
return ret;
}
char *
inet_sockaddrtotrio_r(const sockaddr_t *addr, uint16_t proto, char *buf)
{
char addr_str[INET6_ADDRSTRLEN];
const char *proto_str =
proto == IPPROTO_TCP ? "tcp" :
proto == IPPROTO_UDP ? "udp" :
proto == IPPROTO_SCTP ? "sctp" :
proto == 0 ? "none" : "?";
inet_sockaddrtos2(addr, addr_str);
snprintf(buf, SOCKADDRTRIO_STR_LEN, "[%s]:%s:%d", addr_str, proto_str,
ntohs(inet_sockaddrport(addr)));
return buf;
}
const char *
inet_sockaddrtotrio(const sockaddr_t *addr, uint16_t proto)
{
static char ret[SOCKADDRTRIO_STR_LEN];
inet_sockaddrtotrio_r(addr, proto, ret);
return ret;
}
uint32_t __attribute__ ((pure))
inet_sockaddrip4(const sockaddr_t *addr)
{
if (addr->ss_family != AF_INET)
return 0xffffffff;
return PTR_CAST_CONST(struct sockaddr_in, addr)->sin_addr.s_addr;
}
int
inet_sockaddrip6(const sockaddr_t *addr, struct in6_addr *ip6)
{
if (addr->ss_family != AF_INET6)
return -1;
*ip6 = PTR_CAST_CONST(struct sockaddr_in6, addr)->sin6_addr;
return 0;
}
/* IPv6 address compare */
int __attribute__ ((pure))
inet_inaddrcmp(const int family, const void *a, const void *b)
{
int64_t addr_diff;
if (family == AF_INET) {
addr_diff = (int64_t)ntohl(*PTR_CAST_CONST(uint32_t, a)) - (int64_t)ntohl(*PTR_CAST_CONST(uint32_t, b));
if (addr_diff > 0)
return 1;
if (addr_diff < 0)
return -1;
return 0;
}
if (family == AF_INET6) {
int i;
for (i = 0; i < 4; i++ ) {
addr_diff = (int64_t)ntohl(PTR_CAST_CONST(uint32_t, (a))[i]) - (int64_t)ntohl(PTR_CAST_CONST(uint32_t, (b))[i]);
if (addr_diff > 0)
return 1;
if (addr_diff < 0)
return -1;
}
return 0;
}
return -2;
}
/* inet_sockaddcmp is similar to sockstorage_equal except the latter also compares the port */
int __attribute__ ((pure))
inet_sockaddrcmp(const sockaddr_t *a, const sockaddr_t *b)
{
if (a->ss_family != b->ss_family)
return -2;
if (a->ss_family == AF_INET)
return inet_inaddrcmp(a->ss_family,
&PTR_CAST_CONST(struct sockaddr_in, a)->sin_addr,
&PTR_CAST_CONST(struct sockaddr_in, b)->sin_addr);
if (a->ss_family == AF_INET6)
return inet_inaddrcmp(a->ss_family,
&PTR_CAST_CONST(struct sockaddr_in6, a)->sin6_addr,
&PTR_CAST_CONST(struct sockaddr_in6, b)->sin6_addr);
return 0;
}
#ifdef _INCLUDE_UNUSED_CODE_
/*
* IP string to network representation
* Highly inspired from Paul Vixie code.
*/
int
inet_ston(const char *addr, uint32_t *dst)
{
static char digits[] = "0123456789";
int saw_digit, octets, ch;
u_char tmp[INADDRSZ], *tp;
saw_digit = 0;
octets = 0;
*(tp = tmp) = 0;
while ((ch = *addr++) != '\0' && ch != '/' && ch != '-') {
const char *pch;
if ((pch = strchr(digits, ch)) != NULL) {
u_int new = *tp * 10 + (pch - digits);
if (new > 255)
return 0;
*tp = new;
if (!saw_digit) {
if (++octets > 4)
return 0;
saw_digit = 1;
}
} else if (ch == '.' && saw_digit) {
if (octets == 4)
return 0;
*++tp = 0;
saw_digit = 0;
} else
return 0;
}
if (octets < 4)
return 0;
memcpy(dst, tmp, INADDRSZ);
return 1;
}
/*
* Return broadcast address from network and netmask.
*/
uint32_t
inet_broadcast(uint32_t network, uint32_t netmask)
{
return 0xffffffff - netmask + network;
}
/*
* Convert CIDR netmask notation to long notation.
*/
uint32_t
inet_cidrtomask(uint8_t cidr)
{
uint32_t mask = 0;
int b;
for (b = 0; b < cidr; b++)
mask |= (1 << (31 - b));
return ntohl(mask);
}
#endif
void
format_mac_buf(char *op, size_t op_len, const unsigned char *addr, size_t addr_len)
{
size_t i;
char *buf_end = op + op_len;
/* If there is no address, clear the op buffer */
if (!addr_len && op_len) {
op[0] = '\0';
return;
}
for (i = 0; i < addr_len; i++) {
op += snprintf(op, buf_end - op, "%.2x%s",
addr[i], i < addr_len -1 ? ":" : "");
if (op >= buf_end - 1)
break;
}
}
const char *
format_decimal(unsigned long val, int dp)
{
static char buf[22]; /* Sufficient for 2^64 as decimal plus decimal point */
unsigned dp_factor = 1;
int i;
for (i = 0; i < dp; i++)
dp_factor *= 10;
snprintf(buf, sizeof(buf), "%lu.%*.*lu", val / dp_factor, dp, dp, val % dp_factor);
return buf;
}
/* Getting localhost official canonical name */
const char * __attribute__((malloc))
get_local_name(void)
{
struct utsname name;
struct addrinfo hints, *res = NULL;
char *canonname = NULL;
memset(&hints, 0, sizeof(struct addrinfo));
hints.ai_flags = AI_CANONNAME;
if (uname(&name) < 0)
return NULL;
if (getaddrinfo(name.nodename, NULL, &hints, &res) != 0)
return NULL;
if (res && res->ai_canonname)
canonname = STRDUP(res->ai_canonname);
freeaddrinfo(res);
return canonname;
}
/* String compare with NULL string handling */
bool __attribute__ ((pure))
string_equal(const char *str1, const char *str2)
{
if (!str1 && !str2)
return true;
if (!str1 != !str2)
return false;
return !strcmp(str1, str2);
}
/* Convert an integer into a string */
int
integer_to_string(const int value, char *str, size_t size)
{
int i, len = 0, t = value, s = size;