]> git.proxmox.com Git - mirror_frr.git/blame - lib/sockunion.c
lib: put route_types.txt to real use
[mirror_frr.git] / lib / sockunion.c
CommitLineData
718e3744 1/* Socket union related function.
2 * Copyright (c) 1997, 98 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22#include <zebra.h>
23
24#include "prefix.h"
25#include "vty.h"
26#include "sockunion.h"
27#include "memory.h"
28#include "str.h"
29#include "log.h"
30
31#ifndef HAVE_INET_ATON
32int
33inet_aton (const char *cp, struct in_addr *inaddr)
34{
35 int dots = 0;
36 register u_long addr = 0;
37 register u_long val = 0, base = 10;
38
39 do
40 {
41 register char c = *cp;
42
43 switch (c)
44 {
45 case '0': case '1': case '2': case '3': case '4': case '5':
46 case '6': case '7': case '8': case '9':
47 val = (val * base) + (c - '0');
48 break;
49 case '.':
50 if (++dots > 3)
51 return 0;
52 case '\0':
53 if (val > 255)
54 return 0;
55 addr = addr << 8 | val;
56 val = 0;
57 break;
58 default:
59 return 0;
60 }
61 } while (*cp++) ;
62
63 if (dots < 3)
64 addr <<= 8 * (3 - dots);
65 if (inaddr)
66 inaddr->s_addr = htonl (addr);
67 return 1;
68}
69#endif /* ! HAVE_INET_ATON */
70
71
72#ifndef HAVE_INET_PTON
73int
74inet_pton (int family, const char *strptr, void *addrptr)
75{
76 if (family == AF_INET)
77 {
78 struct in_addr in_val;
79
80 if (inet_aton (strptr, &in_val))
81 {
82 memcpy (addrptr, &in_val, sizeof (struct in_addr));
83 return 1;
84 }
85 return 0;
86 }
87 errno = EAFNOSUPPORT;
88 return -1;
89}
90#endif /* ! HAVE_INET_PTON */
91
92#ifndef HAVE_INET_NTOP
93const char *
94inet_ntop (int family, const void *addrptr, char *strptr, size_t len)
95{
96 unsigned char *p = (unsigned char *) addrptr;
97
98 if (family == AF_INET)
99 {
100 char temp[INET_ADDRSTRLEN];
101
102 snprintf(temp, sizeof(temp), "%d.%d.%d.%d", p[0], p[1], p[2], p[3]);
103
104 if (strlen(temp) >= len)
105 {
106 errno = ENOSPC;
107 return NULL;
108 }
109 strcpy(strptr, temp);
110 return strptr;
111 }
112
113 errno = EAFNOSUPPORT;
114 return NULL;
115}
116#endif /* ! HAVE_INET_NTOP */
117
118const char *
119inet_sutop (union sockunion *su, char *str)
120{
121 switch (su->sa.sa_family)
122 {
123 case AF_INET:
124 inet_ntop (AF_INET, &su->sin.sin_addr, str, INET_ADDRSTRLEN);
125 break;
126#ifdef HAVE_IPV6
127 case AF_INET6:
128 inet_ntop (AF_INET6, &su->sin6.sin6_addr, str, INET6_ADDRSTRLEN);
129 break;
130#endif /* HAVE_IPV6 */
131 }
132 return str;
133}
134
135int
a149411b 136str2sockunion (const char *str, union sockunion *su)
718e3744 137{
138 int ret;
139
140 memset (su, 0, sizeof (union sockunion));
141
142 ret = inet_pton (AF_INET, str, &su->sin.sin_addr);
143 if (ret > 0) /* Valid IPv4 address format. */
144 {
145 su->sin.sin_family = AF_INET;
6f0e3f6e 146#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
718e3744 147 su->sin.sin_len = sizeof(struct sockaddr_in);
6f0e3f6e 148#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
718e3744 149 return 0;
150 }
151#ifdef HAVE_IPV6
152 ret = inet_pton (AF_INET6, str, &su->sin6.sin6_addr);
153 if (ret > 0) /* Valid IPv6 address format. */
154 {
155 su->sin6.sin6_family = AF_INET6;
156#ifdef SIN6_LEN
157 su->sin6.sin6_len = sizeof(struct sockaddr_in6);
158#endif /* SIN6_LEN */
159 return 0;
160 }
161#endif /* HAVE_IPV6 */
162 return -1;
163}
164
165const char *
166sockunion2str (union sockunion *su, char *buf, size_t len)
167{
168 if (su->sa.sa_family == AF_INET)
169 return inet_ntop (AF_INET, &su->sin.sin_addr, buf, len);
170#ifdef HAVE_IPV6
171 else if (su->sa.sa_family == AF_INET6)
172 return inet_ntop (AF_INET6, &su->sin6.sin6_addr, buf, len);
173#endif /* HAVE_IPV6 */
174 return NULL;
175}
176
177union sockunion *
42d49865 178sockunion_str2su (const char *str)
718e3744 179{
180 int ret;
181 union sockunion *su;
182
393deb9b 183 su = XCALLOC (MTYPE_SOCKUNION, sizeof (union sockunion));
718e3744 184
185 ret = inet_pton (AF_INET, str, &su->sin.sin_addr);
186 if (ret > 0) /* Valid IPv4 address format. */
187 {
188 su->sin.sin_family = AF_INET;
6f0e3f6e 189#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
718e3744 190 su->sin.sin_len = sizeof(struct sockaddr_in);
6f0e3f6e 191#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
718e3744 192 return su;
193 }
194#ifdef HAVE_IPV6
195 ret = inet_pton (AF_INET6, str, &su->sin6.sin6_addr);
196 if (ret > 0) /* Valid IPv6 address format. */
197 {
198 su->sin6.sin6_family = AF_INET6;
199#ifdef SIN6_LEN
200 su->sin6.sin6_len = sizeof(struct sockaddr_in6);
201#endif /* SIN6_LEN */
202 return su;
203 }
204#endif /* HAVE_IPV6 */
205
206 XFREE (MTYPE_SOCKUNION, su);
207 return NULL;
208}
209
210char *
211sockunion_su2str (union sockunion *su)
212{
42d49865 213 char str[SU_ADDRSTRLEN];
718e3744 214
215 switch (su->sa.sa_family)
216 {
217 case AF_INET:
218 inet_ntop (AF_INET, &su->sin.sin_addr, str, sizeof (str));
219 break;
220#ifdef HAVE_IPV6
221 case AF_INET6:
222 inet_ntop (AF_INET6, &su->sin6.sin6_addr, str, sizeof (str));
223 break;
224#endif /* HAVE_IPV6 */
225 }
5a54df97 226 return XSTRDUP (MTYPE_TMP, str);
718e3744 227}
228
1a7dcf42
PJ
229/* Convert IPv4 compatible IPv6 address to IPv4 address. */
230static void
231sockunion_normalise_mapped (union sockunion *su)
232{
233 struct sockaddr_in sin;
234
235#ifdef HAVE_IPV6
236 if (su->sa.sa_family == AF_INET6
237 && IN6_IS_ADDR_V4MAPPED (&su->sin6.sin6_addr))
238 {
239 memset (&sin, 0, sizeof (struct sockaddr_in));
240 sin.sin_family = AF_INET;
3fa3f957 241 sin.sin_port = su->sin6.sin6_port;
1a7dcf42
PJ
242 memcpy (&sin.sin_addr, ((char *)&su->sin6.sin6_addr) + 12, 4);
243 memcpy (su, &sin, sizeof (struct sockaddr_in));
244 }
245#endif /* HAVE_IPV6 */
246}
247
718e3744 248/* Return socket of sockunion. */
249int
250sockunion_socket (union sockunion *su)
251{
252 int sock;
253
254 sock = socket (su->sa.sa_family, SOCK_STREAM, 0);
255 if (sock < 0)
256 {
6099b3b5 257 zlog (NULL, LOG_WARNING, "Can't make socket : %s", safe_strerror (errno));
718e3744 258 return -1;
259 }
260
261 return sock;
262}
263
264/* Return accepted new socket file descriptor. */
265int
266sockunion_accept (int sock, union sockunion *su)
267{
268 socklen_t len;
269 int client_sock;
270
271 len = sizeof (union sockunion);
272 client_sock = accept (sock, (struct sockaddr *) su, &len);
273
84152ee6 274 sockunion_normalise_mapped (su);
718e3744 275 return client_sock;
276}
277
278/* Return sizeof union sockunion. */
8cc4198f 279static int
718e3744 280sockunion_sizeof (union sockunion *su)
281{
282 int ret;
283
284 ret = 0;
285 switch (su->sa.sa_family)
286 {
287 case AF_INET:
288 ret = sizeof (struct sockaddr_in);
289 break;
290#ifdef HAVE_IPV6
291 case AF_INET6:
292 ret = sizeof (struct sockaddr_in6);
293 break;
294#endif /* AF_INET6 */
295 }
296 return ret;
297}
298
299/* return sockunion structure : this function should be revised. */
b24b19f7
SH
300static const char *
301sockunion_log (union sockunion *su, char *buf, size_t len)
718e3744 302{
718e3744 303 switch (su->sa.sa_family)
304 {
305 case AF_INET:
b24b19f7
SH
306 return inet_ntop(AF_INET, &su->sin.sin_addr, buf, len);
307
718e3744 308#ifdef HAVE_IPV6
309 case AF_INET6:
b24b19f7 310 return inet_ntop(AF_INET6, &(su->sin6.sin6_addr), buf, len);
718e3744 311 break;
312#endif /* HAVE_IPV6 */
b24b19f7 313
718e3744 314 default:
b24b19f7
SH
315 snprintf (buf, len, "af_unknown %d ", su->sa.sa_family);
316 return buf;
718e3744 317 }
718e3744 318}
319
320/* sockunion_connect returns
321 -1 : error occured
322 0 : connect success
323 1 : connect is in progress */
324enum connect_result
325sockunion_connect (int fd, union sockunion *peersu, unsigned short port,
326 unsigned int ifindex)
327{
328 int ret;
329 int val;
330 union sockunion su;
331
332 memcpy (&su, peersu, sizeof (union sockunion));
333
334 switch (su.sa.sa_family)
335 {
336 case AF_INET:
337 su.sin.sin_port = port;
338 break;
339#ifdef HAVE_IPV6
340 case AF_INET6:
341 su.sin6.sin6_port = port;
342#ifdef KAME
343 if (IN6_IS_ADDR_LINKLOCAL(&su.sin6.sin6_addr) && ifindex)
344 {
6f0e3f6e 345#ifdef HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID
718e3744 346 /* su.sin6.sin6_scope_id = ifindex; */
726f9b2b 347#ifdef MUSICA
348 su.sin6.sin6_scope_id = ifindex;
349#endif
6f0e3f6e 350#endif /* HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID */
726f9b2b 351#ifndef MUSICA
718e3744 352 SET_IN6_LINKLOCAL_IFINDEX (su.sin6.sin6_addr, ifindex);
726f9b2b 353#endif
718e3744 354 }
355#endif /* KAME */
356 break;
357#endif /* HAVE_IPV6 */
358 }
359
360 /* Make socket non-block. */
361 val = fcntl (fd, F_GETFL, 0);
362 fcntl (fd, F_SETFL, val|O_NONBLOCK);
363
364 /* Call connect function. */
365 ret = connect (fd, (struct sockaddr *) &su, sockunion_sizeof (&su));
366
367 /* Immediate success */
368 if (ret == 0)
369 {
370 fcntl (fd, F_SETFL, val);
371 return connect_success;
372 }
373
374 /* If connect is in progress then return 1 else it's real error. */
375 if (ret < 0)
376 {
377 if (errno != EINPROGRESS)
378 {
b24b19f7 379 char str[SU_ADDRSTRLEN];
718e3744 380 zlog_info ("can't connect to %s fd %d : %s",
b24b19f7
SH
381 sockunion_log (&su, str, sizeof str),
382 fd, safe_strerror (errno));
718e3744 383 return connect_error;
384 }
385 }
386
387 fcntl (fd, F_SETFL, val);
388
389 return connect_in_progress;
390}
391
392/* Make socket from sockunion union. */
393int
394sockunion_stream_socket (union sockunion *su)
395{
396 int sock;
397
398 if (su->sa.sa_family == 0)
399 su->sa.sa_family = AF_INET_UNION;
400
401 sock = socket (su->sa.sa_family, SOCK_STREAM, 0);
402
403 if (sock < 0)
404 zlog (NULL, LOG_WARNING, "can't make socket sockunion_stream_socket");
405
406 return sock;
407}
408
409/* Bind socket to specified address. */
410int
411sockunion_bind (int sock, union sockunion *su, unsigned short port,
412 union sockunion *su_addr)
413{
414 int size = 0;
415 int ret;
416
417 if (su->sa.sa_family == AF_INET)
418 {
419 size = sizeof (struct sockaddr_in);
420 su->sin.sin_port = htons (port);
6f0e3f6e 421#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
718e3744 422 su->sin.sin_len = size;
6f0e3f6e 423#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
718e3744 424 if (su_addr == NULL)
425 su->sin.sin_addr.s_addr = htonl (INADDR_ANY);
426 }
427#ifdef HAVE_IPV6
428 else if (su->sa.sa_family == AF_INET6)
429 {
430 size = sizeof (struct sockaddr_in6);
431 su->sin6.sin6_port = htons (port);
432#ifdef SIN6_LEN
433 su->sin6.sin6_len = size;
434#endif /* SIN6_LEN */
435 if (su_addr == NULL)
436 {
437#if defined(LINUX_IPV6) || defined(NRL)
438 memset (&su->sin6.sin6_addr, 0, sizeof (struct in6_addr));
439#else
440 su->sin6.sin6_addr = in6addr_any;
441#endif /* LINUX_IPV6 */
442 }
443 }
444#endif /* HAVE_IPV6 */
445
446
447 ret = bind (sock, (struct sockaddr *)su, size);
448 if (ret < 0)
6099b3b5 449 zlog (NULL, LOG_WARNING, "can't bind socket : %s", safe_strerror (errno));
718e3744 450
451 return ret;
452}
453
454int
455sockopt_reuseaddr (int sock)
456{
457 int ret;
458 int on = 1;
459
460 ret = setsockopt (sock, SOL_SOCKET, SO_REUSEADDR,
461 (void *) &on, sizeof (on));
462 if (ret < 0)
463 {
464 zlog (NULL, LOG_WARNING, "can't set sockopt SO_REUSEADDR to socket %d", sock);
465 return -1;
466 }
467 return 0;
468}
469
470#ifdef SO_REUSEPORT
471int
472sockopt_reuseport (int sock)
473{
474 int ret;
475 int on = 1;
476
477 ret = setsockopt (sock, SOL_SOCKET, SO_REUSEPORT,
478 (void *) &on, sizeof (on));
479 if (ret < 0)
480 {
e7fe8c88 481 zlog (NULL, LOG_WARNING, "can't set sockopt SO_REUSEPORT to socket %d", sock);
718e3744 482 return -1;
483 }
484 return 0;
485}
486#else
487int
488sockopt_reuseport (int sock)
489{
490 return 0;
491}
492#endif /* 0 */
493
494int
495sockopt_ttl (int family, int sock, int ttl)
496{
497 int ret;
498
499#ifdef IP_TTL
500 if (family == AF_INET)
501 {
502 ret = setsockopt (sock, IPPROTO_IP, IP_TTL,
503 (void *) &ttl, sizeof (int));
504 if (ret < 0)
505 {
506 zlog (NULL, LOG_WARNING, "can't set sockopt IP_TTL %d to socket %d", ttl, sock);
507 return -1;
508 }
509 return 0;
510 }
511#endif /* IP_TTL */
512#ifdef HAVE_IPV6
513 if (family == AF_INET6)
514 {
515 ret = setsockopt (sock, IPPROTO_IPV6, IPV6_UNICAST_HOPS,
516 (void *) &ttl, sizeof (int));
517 if (ret < 0)
518 {
519 zlog (NULL, LOG_WARNING, "can't set sockopt IPV6_UNICAST_HOPS %d to socket %d",
520 ttl, sock);
521 return -1;
522 }
523 return 0;
524 }
525#endif /* HAVE_IPV6 */
526 return 0;
527}
528
58192df7
SH
529int
530sockopt_cork (int sock, int onoff)
531{
532#ifdef TCP_CORK
533 return setsockopt (sock, IPPROTO_TCP, TCP_CORK, &onoff, sizeof(onoff));
534#else
535 return 0;
536#endif
537}
538
fa411a21
NH
539int
540sockopt_minttl (int family, int sock, int minttl)
541{
89b6d1f8 542#ifdef IP_MINTTL
d876bdf4 543 if (family == AF_INET)
fa411a21 544 {
d876bdf4
SH
545 int ret = setsockopt (sock, IPPROTO_IP, IP_MINTTL, &minttl, sizeof(minttl));
546 if (ret < 0)
547 zlog (NULL, LOG_WARNING,
548 "can't set sockopt IP_MINTTL to %d on socket %d: %s",
549 minttl, sock, safe_strerror (errno));
550 return ret;
fa411a21 551 }
d876bdf4
SH
552#endif /* IP_MINTTL */
553#ifdef IPV6_MINHOPCNT
554 if (family == AF_INET6)
555 {
556 int ret = setsockopt (sock, IPPROTO_IPV6, IPV6_MINHOPCNT, &minttl, sizeof(minttl));
557 if (ret < 0)
558 zlog (NULL, LOG_WARNING,
559 "can't set sockopt IPV6_MINHOPCNT to %d on socket %d: %s",
560 minttl, sock, safe_strerror (errno));
561 return ret;
562 }
563#endif
fa411a21 564
89b6d1f8
SH
565 errno = EOPNOTSUPP;
566 return -1;
fa411a21
NH
567}
568
718e3744 569/* If same family and same prefix return 1. */
570int
571sockunion_same (union sockunion *su1, union sockunion *su2)
572{
573 int ret = 0;
574
575 if (su1->sa.sa_family != su2->sa.sa_family)
576 return 0;
577
578 switch (su1->sa.sa_family)
579 {
580 case AF_INET:
581 ret = memcmp (&su1->sin.sin_addr, &su2->sin.sin_addr,
582 sizeof (struct in_addr));
583 break;
584#ifdef HAVE_IPV6
585 case AF_INET6:
586 ret = memcmp (&su1->sin6.sin6_addr, &su2->sin6.sin6_addr,
587 sizeof (struct in6_addr));
588 break;
589#endif /* HAVE_IPV6 */
590 }
591 if (ret == 0)
592 return 1;
593 else
594 return 0;
595}
596
597/* After TCP connection is established. Get local address and port. */
598union sockunion *
599sockunion_getsockname (int fd)
600{
601 int ret;
22528299 602 socklen_t len;
718e3744 603 union
604 {
605 struct sockaddr sa;
606 struct sockaddr_in sin;
607#ifdef HAVE_IPV6
608 struct sockaddr_in6 sin6;
609#endif /* HAVE_IPV6 */
610 char tmp_buffer[128];
611 } name;
612 union sockunion *su;
613
614 memset (&name, 0, sizeof name);
615 len = sizeof name;
616
617 ret = getsockname (fd, (struct sockaddr *)&name, &len);
618 if (ret < 0)
619 {
620 zlog_warn ("Can't get local address and port by getsockname: %s",
6099b3b5 621 safe_strerror (errno));
718e3744 622 return NULL;
623 }
624
625 if (name.sa.sa_family == AF_INET)
626 {
2ba9a37a 627 su = XCALLOC (MTYPE_SOCKUNION, sizeof (union sockunion));
718e3744 628 memcpy (su, &name, sizeof (struct sockaddr_in));
629 return su;
630 }
631#ifdef HAVE_IPV6
632 if (name.sa.sa_family == AF_INET6)
633 {
2ba9a37a 634 su = XCALLOC (MTYPE_SOCKUNION, sizeof (union sockunion));
718e3744 635 memcpy (su, &name, sizeof (struct sockaddr_in6));
1a7dcf42 636 sockunion_normalise_mapped (su);
718e3744 637 return su;
638 }
639#endif /* HAVE_IPV6 */
640 return NULL;
641}
642
643/* After TCP connection is established. Get remote address and port. */
644union sockunion *
645sockunion_getpeername (int fd)
646{
647 int ret;
22528299 648 socklen_t len;
718e3744 649 union
650 {
651 struct sockaddr sa;
652 struct sockaddr_in sin;
653#ifdef HAVE_IPV6
654 struct sockaddr_in6 sin6;
655#endif /* HAVE_IPV6 */
656 char tmp_buffer[128];
657 } name;
658 union sockunion *su;
659
660 memset (&name, 0, sizeof name);
661 len = sizeof name;
662 ret = getpeername (fd, (struct sockaddr *)&name, &len);
663 if (ret < 0)
664 {
665 zlog (NULL, LOG_WARNING, "Can't get remote address and port: %s",
6099b3b5 666 safe_strerror (errno));
718e3744 667 return NULL;
668 }
669
670 if (name.sa.sa_family == AF_INET)
671 {
2ba9a37a 672 su = XCALLOC (MTYPE_SOCKUNION, sizeof (union sockunion));
718e3744 673 memcpy (su, &name, sizeof (struct sockaddr_in));
674 return su;
675 }
676#ifdef HAVE_IPV6
677 if (name.sa.sa_family == AF_INET6)
678 {
2ba9a37a 679 su = XCALLOC (MTYPE_SOCKUNION, sizeof (union sockunion));
718e3744 680 memcpy (su, &name, sizeof (struct sockaddr_in6));
1a7dcf42 681 sockunion_normalise_mapped (su);
718e3744 682 return su;
683 }
684#endif /* HAVE_IPV6 */
685 return NULL;
686}
687
688/* Print sockunion structure */
8cc4198f 689static void __attribute__ ((unused))
718e3744 690sockunion_print (union sockunion *su)
691{
692 if (su == NULL)
693 return;
694
695 switch (su->sa.sa_family)
696 {
697 case AF_INET:
698 printf ("%s\n", inet_ntoa (su->sin.sin_addr));
699 break;
700#ifdef HAVE_IPV6
701 case AF_INET6:
702 {
42d49865 703 char buf [SU_ADDRSTRLEN];
718e3744 704
705 printf ("%s\n", inet_ntop (AF_INET6, &(su->sin6.sin6_addr),
706 buf, sizeof (buf)));
707 }
708 break;
709#endif /* HAVE_IPV6 */
710
711#ifdef AF_LINK
712 case AF_LINK:
713 {
714 struct sockaddr_dl *sdl;
715
716 sdl = (struct sockaddr_dl *)&(su->sa);
717 printf ("link#%d\n", sdl->sdl_index);
718 }
719 break;
720#endif /* AF_LINK */
721 default:
722 printf ("af_unknown %d\n", su->sa.sa_family);
723 break;
724 }
725}
726
727#ifdef HAVE_IPV6
8cc4198f 728static int
718e3744 729in6addr_cmp (struct in6_addr *addr1, struct in6_addr *addr2)
730{
8c328f11 731 unsigned int i;
718e3744 732 u_char *p1, *p2;
733
734 p1 = (u_char *)addr1;
735 p2 = (u_char *)addr2;
736
737 for (i = 0; i < sizeof (struct in6_addr); i++)
738 {
739 if (p1[i] > p2[i])
740 return 1;
741 else if (p1[i] < p2[i])
742 return -1;
743 }
744 return 0;
745}
746#endif /* HAVE_IPV6 */
747
748int
749sockunion_cmp (union sockunion *su1, union sockunion *su2)
750{
751 if (su1->sa.sa_family > su2->sa.sa_family)
752 return 1;
753 if (su1->sa.sa_family < su2->sa.sa_family)
754 return -1;
755
756 if (su1->sa.sa_family == AF_INET)
757 {
758 if (ntohl (su1->sin.sin_addr.s_addr) == ntohl (su2->sin.sin_addr.s_addr))
759 return 0;
760 if (ntohl (su1->sin.sin_addr.s_addr) > ntohl (su2->sin.sin_addr.s_addr))
761 return 1;
762 else
763 return -1;
764 }
765#ifdef HAVE_IPV6
766 if (su1->sa.sa_family == AF_INET6)
767 return in6addr_cmp (&su1->sin6.sin6_addr, &su2->sin6.sin6_addr);
768#endif /* HAVE_IPV6 */
769 return 0;
770}
771
772/* Duplicate sockunion. */
773union sockunion *
774sockunion_dup (union sockunion *su)
775{
776 union sockunion *dup = XCALLOC (MTYPE_SOCKUNION, sizeof (union sockunion));
777 memcpy (dup, su, sizeof (union sockunion));
778 return dup;
779}
780
781void
782sockunion_free (union sockunion *su)
783{
784 XFREE (MTYPE_SOCKUNION, su);
785}