2 * Copyright (c) 1997-2007 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include "krb5_locl.h"
36 struct addr_operations
{
38 krb5_address_type atype
;
39 size_t max_sockaddr_size
;
40 krb5_error_code (*sockaddr2addr
)(const struct sockaddr
*, krb5_address
*);
41 krb5_error_code (*sockaddr2port
)(const struct sockaddr
*, int16_t *);
42 void (*addr2sockaddr
)(const krb5_address
*, struct sockaddr
*,
43 krb5_socklen_t
*sa_size
, int port
);
44 void (*h_addr2sockaddr
)(const char *, struct sockaddr
*, krb5_socklen_t
*, int);
45 krb5_error_code (*h_addr2addr
)(const char *, krb5_address
*);
46 krb5_boolean (*uninteresting
)(const struct sockaddr
*);
47 krb5_boolean (*is_loopback
)(const struct sockaddr
*);
48 void (*anyaddr
)(struct sockaddr
*, krb5_socklen_t
*, int);
49 int (*print_addr
)(const krb5_address
*, char *, size_t);
50 int (*parse_addr
)(krb5_context
, const char*, krb5_address
*);
51 int (*order_addr
)(krb5_context
, const krb5_address
*, const krb5_address
*);
52 int (*free_addr
)(krb5_context
, krb5_address
*);
53 int (*copy_addr
)(krb5_context
, const krb5_address
*, krb5_address
*);
54 int (*mask_boundary
)(krb5_context
, const krb5_address
*, unsigned long,
55 krb5_address
*, krb5_address
*);
59 * AF_INET - aka IPv4 implementation
62 static krb5_error_code
63 ipv4_sockaddr2addr (const struct sockaddr
*sa
, krb5_address
*a
)
65 const struct sockaddr_in
*sin4
= (const struct sockaddr_in
*)sa
;
68 a
->addr_type
= KRB5_ADDRESS_INET
;
69 memcpy (buf
, &sin4
->sin_addr
, 4);
70 return krb5_data_copy(&a
->address
, buf
, 4);
73 static krb5_error_code
74 ipv4_sockaddr2port (const struct sockaddr
*sa
, int16_t *port
)
76 const struct sockaddr_in
*sin4
= (const struct sockaddr_in
*)sa
;
78 *port
= sin4
->sin_port
;
83 ipv4_addr2sockaddr (const krb5_address
*a
,
85 krb5_socklen_t
*sa_size
,
88 struct sockaddr_in tmp
;
90 memset (&tmp
, 0, sizeof(tmp
));
91 tmp
.sin_family
= AF_INET
;
92 memcpy (&tmp
.sin_addr
, a
->address
.data
, 4);
94 memcpy(sa
, &tmp
, min(sizeof(tmp
), *sa_size
));
95 *sa_size
= sizeof(tmp
);
99 ipv4_h_addr2sockaddr(const char *addr
,
101 krb5_socklen_t
*sa_size
,
104 struct sockaddr_in tmp
;
106 memset (&tmp
, 0, sizeof(tmp
));
107 tmp
.sin_family
= AF_INET
;
109 tmp
.sin_addr
= *((const struct in_addr
*)addr
);
110 memcpy(sa
, &tmp
, min(sizeof(tmp
), *sa_size
));
111 *sa_size
= sizeof(tmp
);
114 static krb5_error_code
115 ipv4_h_addr2addr (const char *addr
,
118 unsigned char buf
[4];
120 a
->addr_type
= KRB5_ADDRESS_INET
;
121 memcpy(buf
, addr
, 4);
122 return krb5_data_copy(&a
->address
, buf
, 4);
126 * Are there any addresses that should be considered `uninteresting'?
130 ipv4_uninteresting (const struct sockaddr
*sa
)
132 const struct sockaddr_in
*sin4
= (const struct sockaddr_in
*)sa
;
134 if (sin4
->sin_addr
.s_addr
== INADDR_ANY
)
141 ipv4_is_loopback (const struct sockaddr
*sa
)
143 const struct sockaddr_in
*sin4
= (const struct sockaddr_in
*)sa
;
145 if ((ntohl(sin4
->sin_addr
.s_addr
) >> 24) == IN_LOOPBACKNET
)
152 ipv4_anyaddr (struct sockaddr
*sa
, krb5_socklen_t
*sa_size
, int port
)
154 struct sockaddr_in tmp
;
156 memset (&tmp
, 0, sizeof(tmp
));
157 tmp
.sin_family
= AF_INET
;
159 tmp
.sin_addr
.s_addr
= INADDR_ANY
;
160 memcpy(sa
, &tmp
, min(sizeof(tmp
), *sa_size
));
161 *sa_size
= sizeof(tmp
);
165 ipv4_print_addr (const krb5_address
*addr
, char *str
, size_t len
)
169 memcpy (&ia
, addr
->address
.data
, 4);
171 return snprintf (str
, len
, "IPv4:%s", inet_ntoa(ia
));
175 ipv4_parse_addr (krb5_context context
, const char *address
, krb5_address
*addr
)
180 p
= strchr(address
, ':');
183 if(strncasecmp(address
, "ip:", p
- address
) != 0 &&
184 strncasecmp(address
, "ip4:", p
- address
) != 0 &&
185 strncasecmp(address
, "ipv4:", p
- address
) != 0 &&
186 strncasecmp(address
, "inet:", p
- address
) != 0)
190 if(inet_aton(p
, &a
) == 0)
192 addr
->addr_type
= KRB5_ADDRESS_INET
;
193 if(krb5_data_alloc(&addr
->address
, 4) != 0)
195 _krb5_put_int(addr
->address
.data
, ntohl(a
.s_addr
), addr
->address
.length
);
200 ipv4_mask_boundary(krb5_context context
, const krb5_address
*inaddr
,
201 unsigned long len
, krb5_address
*low
, krb5_address
*high
)
204 uint32_t l
, h
, m
= 0xffffffff;
207 krb5_set_error_message(context
, KRB5_PROG_ATYPE_NOSUPP
,
208 N_("IPv4 prefix too large (%ld)", "len"), len
);
209 return KRB5_PROG_ATYPE_NOSUPP
;
213 _krb5_get_int(inaddr
->address
.data
, &ia
, inaddr
->address
.length
);
218 low
->addr_type
= KRB5_ADDRESS_INET
;
219 if(krb5_data_alloc(&low
->address
, 4) != 0)
221 _krb5_put_int(low
->address
.data
, l
, low
->address
.length
);
223 high
->addr_type
= KRB5_ADDRESS_INET
;
224 if(krb5_data_alloc(&high
->address
, 4) != 0) {
225 krb5_free_address(context
, low
);
228 _krb5_put_int(high
->address
.data
, h
, high
->address
.length
);
235 * AF_INET6 - aka IPv6 implementation
240 static krb5_error_code
241 ipv6_sockaddr2addr (const struct sockaddr
*sa
, krb5_address
*a
)
243 const struct sockaddr_in6
*sin6
= (const struct sockaddr_in6
*)sa
;
245 if (IN6_IS_ADDR_V4MAPPED(&sin6
->sin6_addr
)) {
246 unsigned char buf
[4];
248 a
->addr_type
= KRB5_ADDRESS_INET
;
249 #ifndef IN6_ADDR_V6_TO_V4
250 #ifdef IN6_EXTRACT_V4ADDR
251 #define IN6_ADDR_V6_TO_V4(x) (&IN6_EXTRACT_V4ADDR(x))
253 #define IN6_ADDR_V6_TO_V4(x) ((const struct in_addr *)&(x)->s6_addr[12])
256 memcpy (buf
, IN6_ADDR_V6_TO_V4(&sin6
->sin6_addr
), 4);
257 return krb5_data_copy(&a
->address
, buf
, 4);
259 a
->addr_type
= KRB5_ADDRESS_INET6
;
260 return krb5_data_copy(&a
->address
,
262 sizeof(sin6
->sin6_addr
));
266 static krb5_error_code
267 ipv6_sockaddr2port (const struct sockaddr
*sa
, int16_t *port
)
269 const struct sockaddr_in6
*sin6
= (const struct sockaddr_in6
*)sa
;
271 *port
= sin6
->sin6_port
;
276 ipv6_addr2sockaddr (const krb5_address
*a
,
278 krb5_socklen_t
*sa_size
,
281 struct sockaddr_in6 tmp
;
283 memset (&tmp
, 0, sizeof(tmp
));
284 tmp
.sin6_family
= AF_INET6
;
285 memcpy (&tmp
.sin6_addr
, a
->address
.data
, sizeof(tmp
.sin6_addr
));
286 tmp
.sin6_port
= port
;
287 memcpy(sa
, &tmp
, min(sizeof(tmp
), *sa_size
));
288 *sa_size
= sizeof(tmp
);
292 ipv6_h_addr2sockaddr(const char *addr
,
294 krb5_socklen_t
*sa_size
,
297 struct sockaddr_in6 tmp
;
299 memset (&tmp
, 0, sizeof(tmp
));
300 tmp
.sin6_family
= AF_INET6
;
301 tmp
.sin6_port
= port
;
302 tmp
.sin6_addr
= *((const struct in6_addr
*)addr
);
303 memcpy(sa
, &tmp
, min(sizeof(tmp
), *sa_size
));
304 *sa_size
= sizeof(tmp
);
307 static krb5_error_code
308 ipv6_h_addr2addr (const char *addr
,
311 a
->addr_type
= KRB5_ADDRESS_INET6
;
312 return krb5_data_copy(&a
->address
, addr
, sizeof(struct in6_addr
));
320 ipv6_uninteresting (const struct sockaddr
*sa
)
322 const struct sockaddr_in6
*sin6
= (const struct sockaddr_in6
*)sa
;
323 const struct in6_addr
*in6
= (const struct in6_addr
*)&sin6
->sin6_addr
;
325 return IN6_IS_ADDR_LINKLOCAL(in6
)
326 || IN6_IS_ADDR_V4COMPAT(in6
);
330 ipv6_is_loopback (const struct sockaddr
*sa
)
332 const struct sockaddr_in6
*sin6
= (const struct sockaddr_in6
*)sa
;
333 const struct in6_addr
*in6
= (const struct in6_addr
*)&sin6
->sin6_addr
;
335 return (IN6_IS_ADDR_LOOPBACK(in6
));
339 ipv6_anyaddr (struct sockaddr
*sa
, krb5_socklen_t
*sa_size
, int port
)
341 struct sockaddr_in6 tmp
;
343 memset (&tmp
, 0, sizeof(tmp
));
344 tmp
.sin6_family
= AF_INET6
;
345 tmp
.sin6_port
= port
;
346 tmp
.sin6_addr
= in6addr_any
;
347 *sa_size
= sizeof(tmp
);
351 ipv6_print_addr (const krb5_address
*addr
, char *str
, size_t len
)
353 char buf
[128], buf2
[3];
354 if(inet_ntop(AF_INET6
, addr
->address
.data
, buf
, sizeof(buf
)) == NULL
)
356 /* XXX this is pretty ugly, but better than abort() */
358 unsigned char *p
= addr
->address
.data
;
360 for(i
= 0; i
< addr
->address
.length
; i
++) {
361 snprintf(buf2
, sizeof(buf2
), "%02x", p
[i
]);
362 if(i
> 0 && (i
& 1) == 0)
363 strlcat(buf
, ":", sizeof(buf
));
364 strlcat(buf
, buf2
, sizeof(buf
));
367 return snprintf(str
, len
, "IPv6:%s", buf
);
371 ipv6_parse_addr (krb5_context context
, const char *address
, krb5_address
*addr
)
377 p
= strchr(address
, ':');
380 if(strncasecmp(address
, "ip6:", p
- address
) == 0 ||
381 strncasecmp(address
, "ipv6:", p
- address
) == 0 ||
382 strncasecmp(address
, "inet6:", p
- address
) == 0)
386 ret
= inet_pton(AF_INET6
, address
, &in6
.s6_addr
);
388 addr
->addr_type
= KRB5_ADDRESS_INET6
;
389 ret
= krb5_data_alloc(&addr
->address
, sizeof(in6
.s6_addr
));
392 memcpy(addr
->address
.data
, in6
.s6_addr
, sizeof(in6
.s6_addr
));
399 ipv6_mask_boundary(krb5_context context
, const krb5_address
*inaddr
,
400 unsigned long len
, krb5_address
*low
, krb5_address
*high
)
402 struct in6_addr addr
, laddr
, haddr
;
407 krb5_set_error_message(context
, KRB5_PROG_ATYPE_NOSUPP
,
408 N_("IPv6 prefix too large (%ld)", "length"), len
);
409 return KRB5_PROG_ATYPE_NOSUPP
;
412 if (inaddr
->address
.length
!= sizeof(addr
)) {
413 krb5_set_error_message(context
, KRB5_PROG_ATYPE_NOSUPP
,
414 N_("IPv6 addr bad length", ""));
415 return KRB5_PROG_ATYPE_NOSUPP
;
418 memcpy(&addr
, inaddr
->address
.data
, inaddr
->address
.length
);
420 for (i
= 0; i
< 16; i
++) {
421 sub_len
= min(8, len
);
423 m
= 0xff << (8 - sub_len
);
425 laddr
.s6_addr
[i
] = addr
.s6_addr
[i
] & m
;
426 haddr
.s6_addr
[i
] = (addr
.s6_addr
[i
] & m
) | ~m
;
434 low
->addr_type
= KRB5_ADDRESS_INET6
;
435 if (krb5_data_alloc(&low
->address
, sizeof(laddr
.s6_addr
)) != 0)
437 memcpy(low
->address
.data
, laddr
.s6_addr
, sizeof(laddr
.s6_addr
));
439 high
->addr_type
= KRB5_ADDRESS_INET6
;
440 if (krb5_data_alloc(&high
->address
, sizeof(haddr
.s6_addr
)) != 0) {
441 krb5_free_address(context
, low
);
444 memcpy(high
->address
.data
, haddr
.s6_addr
, sizeof(haddr
.s6_addr
));
451 #ifndef HEIMDAL_SMALLER
457 #define KRB5_ADDRESS_ARANGE (-100)
465 arange_parse_addr (krb5_context context
,
466 const char *address
, krb5_address
*addr
)
469 krb5_address low0
, high0
;
473 if(strncasecmp(address
, "RANGE:", 6) != 0)
478 p
= strrchr(address
, '/');
480 krb5_addresses addrmask
;
484 if (strlcpy(buf
, address
, sizeof(buf
)) > sizeof(buf
))
486 buf
[p
- address
] = '\0';
487 ret
= krb5_parse_address(context
, buf
, &addrmask
);
490 if(addrmask
.len
!= 1) {
491 krb5_free_addresses(context
, &addrmask
);
495 address
+= p
- address
+ 1;
497 num
= strtol(address
, &q
, 10);
498 if (q
== address
|| *q
!= '\0' || num
< 0) {
499 krb5_free_addresses(context
, &addrmask
);
503 ret
= krb5_address_prefixlen_boundary(context
, &addrmask
.val
[0], num
,
505 krb5_free_addresses(context
, &addrmask
);
510 krb5_addresses low
, high
;
512 strsep_copy(&address
, "-", buf
, sizeof(buf
));
513 ret
= krb5_parse_address(context
, buf
, &low
);
517 krb5_free_addresses(context
, &low
);
521 strsep_copy(&address
, "-", buf
, sizeof(buf
));
522 ret
= krb5_parse_address(context
, buf
, &high
);
524 krb5_free_addresses(context
, &low
);
528 if(high
.len
!= 1 && high
.val
[0].addr_type
!= low
.val
[0].addr_type
) {
529 krb5_free_addresses(context
, &low
);
530 krb5_free_addresses(context
, &high
);
534 ret
= krb5_copy_address(context
, &high
.val
[0], &high0
);
536 ret
= krb5_copy_address(context
, &low
.val
[0], &low0
);
538 krb5_free_address(context
, &high0
);
540 krb5_free_addresses(context
, &low
);
541 krb5_free_addresses(context
, &high
);
546 krb5_data_alloc(&addr
->address
, sizeof(*a
));
547 addr
->addr_type
= KRB5_ADDRESS_ARANGE
;
548 a
= addr
->address
.data
;
550 if(krb5_address_order(context
, &low0
, &high0
) < 0) {
561 arange_free (krb5_context context
, krb5_address
*addr
)
564 a
= addr
->address
.data
;
565 krb5_free_address(context
, &a
->low
);
566 krb5_free_address(context
, &a
->high
);
567 krb5_data_free(&addr
->address
);
573 arange_copy (krb5_context context
, const krb5_address
*inaddr
,
574 krb5_address
*outaddr
)
577 struct arange
*i
, *o
;
579 outaddr
->addr_type
= KRB5_ADDRESS_ARANGE
;
580 ret
= krb5_data_alloc(&outaddr
->address
, sizeof(*o
));
583 i
= inaddr
->address
.data
;
584 o
= outaddr
->address
.data
;
585 ret
= krb5_copy_address(context
, &i
->low
, &o
->low
);
587 krb5_data_free(&outaddr
->address
);
590 ret
= krb5_copy_address(context
, &i
->high
, &o
->high
);
592 krb5_free_address(context
, &o
->low
);
593 krb5_data_free(&outaddr
->address
);
600 arange_print_addr (const krb5_address
*addr
, char *str
, size_t len
)
604 size_t l
, size
, ret_len
;
606 a
= addr
->address
.data
;
608 l
= strlcpy(str
, "RANGE:", len
);
614 ret
= krb5_print_address (&a
->low
, str
+ size
, len
- size
, &l
);
623 l
= strlcat(str
+ size
, "-", len
- size
);
630 ret
= krb5_print_address (&a
->high
, str
+ size
, len
- size
, &l
);
639 arange_order_addr(krb5_context context
,
640 const krb5_address
*addr1
,
641 const krb5_address
*addr2
)
643 int tmp1
, tmp2
, sign
;
645 const krb5_address
*a2
;
647 if(addr1
->addr_type
== KRB5_ADDRESS_ARANGE
) {
648 a
= addr1
->address
.data
;
651 } else if(addr2
->addr_type
== KRB5_ADDRESS_ARANGE
) {
652 a
= addr2
->address
.data
;
658 if(a2
->addr_type
== KRB5_ADDRESS_ARANGE
) {
659 struct arange
*b
= a2
->address
.data
;
660 tmp1
= krb5_address_order(context
, &a
->low
, &b
->low
);
663 return sign
* krb5_address_order(context
, &a
->high
, &b
->high
);
664 } else if(a2
->addr_type
== a
->low
.addr_type
) {
665 tmp1
= krb5_address_order(context
, &a
->low
, a2
);
668 tmp2
= krb5_address_order(context
, &a
->high
, a2
);
673 return sign
* (addr1
->addr_type
- addr2
->addr_type
);
677 #endif /* HEIMDAL_SMALLER */
680 addrport_print_addr (const krb5_address
*addr
, char *str
, size_t len
)
683 krb5_address addr1
, addr2
;
685 size_t ret_len
= 0, l
, size
= 0;
688 sp
= krb5_storage_from_data((krb5_data
*)rk_UNCONST(&addr
->address
));
692 /* for totally obscure reasons, these are not in network byteorder */
693 krb5_storage_set_byteorder(sp
, KRB5_STORAGE_BYTEORDER_LE
);
695 krb5_storage_seek(sp
, 2, SEEK_CUR
); /* skip first two bytes */
696 krb5_ret_address(sp
, &addr1
);
698 krb5_storage_seek(sp
, 2, SEEK_CUR
); /* skip two bytes */
699 krb5_ret_address(sp
, &addr2
);
700 krb5_storage_free(sp
);
701 if(addr2
.addr_type
== KRB5_ADDRESS_IPPORT
&& addr2
.address
.length
== 2) {
703 _krb5_get_int(addr2
.address
.data
, &value
, 2);
706 l
= strlcpy(str
, "ADDRPORT:", len
);
713 ret
= krb5_print_address(&addr1
, str
+ size
, len
- size
, &l
);
722 ret
= snprintf(str
+ size
, len
- size
, ",PORT=%u", port
);
729 static struct addr_operations at
[] = {
731 AF_INET
, KRB5_ADDRESS_INET
, sizeof(struct sockaddr_in
),
735 ipv4_h_addr2sockaddr
,
749 AF_INET6
, KRB5_ADDRESS_INET6
, sizeof(struct sockaddr_in6
),
753 ipv6_h_addr2sockaddr
,
766 #ifndef HEIMDAL_SMALLER
767 /* fake address type */
769 KRB5_ADDRESS_ARANGE
, KRB5_ADDRESS_ARANGE
, sizeof(struct arange
),
787 KRB5_ADDRESS_ADDRPORT
, KRB5_ADDRESS_ADDRPORT
, 0,
804 static int num_addrs
= sizeof(at
) / sizeof(at
[0]);
806 static size_t max_sockaddr_size
= 0;
812 static struct addr_operations
*
815 struct addr_operations
*a
;
817 for (a
= at
; a
< at
+ num_addrs
; ++a
)
823 static struct addr_operations
*
824 find_atype(int atype
)
826 struct addr_operations
*a
;
828 for (a
= at
; a
< at
+ num_addrs
; ++a
)
829 if (atype
== a
->atype
)
835 * krb5_sockaddr2address stores a address a "struct sockaddr" sa in
836 * the krb5_address addr.
838 * @param context a Keberos context
839 * @param sa a struct sockaddr to extract the address from
840 * @param addr an Kerberos 5 address to store the address in.
842 * @return Return an error code or 0.
844 * @ingroup krb5_address
847 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
848 krb5_sockaddr2address (krb5_context context
,
849 const struct sockaddr
*sa
, krb5_address
*addr
)
851 struct addr_operations
*a
= find_af(sa
->sa_family
);
853 krb5_set_error_message (context
, KRB5_PROG_ATYPE_NOSUPP
,
854 N_("Address family %d not supported", ""),
856 return KRB5_PROG_ATYPE_NOSUPP
;
858 return (*a
->sockaddr2addr
)(sa
, addr
);
862 * krb5_sockaddr2port extracts a port (if possible) from a "struct
865 * @param context a Keberos context
866 * @param sa a struct sockaddr to extract the port from
867 * @param port a pointer to an int16_t store the port in.
869 * @return Return an error code or 0. Will return
870 * KRB5_PROG_ATYPE_NOSUPP in case address type is not supported.
872 * @ingroup krb5_address
875 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
876 krb5_sockaddr2port (krb5_context context
,
877 const struct sockaddr
*sa
, int16_t *port
)
879 struct addr_operations
*a
= find_af(sa
->sa_family
);
881 krb5_set_error_message (context
, KRB5_PROG_ATYPE_NOSUPP
,
882 N_("Address family %d not supported", ""),
884 return KRB5_PROG_ATYPE_NOSUPP
;
886 return (*a
->sockaddr2port
)(sa
, port
);
890 * krb5_addr2sockaddr sets the "struct sockaddr sockaddr" from addr
891 * and port. The argument sa_size should initially contain the size of
892 * the sa and after the call, it will contain the actual length of the
893 * address. In case of the sa is too small to fit the whole address,
894 * the up to *sa_size will be stored, and then *sa_size will be set to
895 * the required length.
897 * @param context a Keberos context
898 * @param addr the address to copy the from
899 * @param sa the struct sockaddr that will be filled in
900 * @param sa_size pointer to length of sa, and after the call, it will
901 * contain the actual length of the address.
902 * @param port set port in sa.
904 * @return Return an error code or 0. Will return
905 * KRB5_PROG_ATYPE_NOSUPP in case address type is not supported.
907 * @ingroup krb5_address
910 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
911 krb5_addr2sockaddr (krb5_context context
,
912 const krb5_address
*addr
,
914 krb5_socklen_t
*sa_size
,
917 struct addr_operations
*a
= find_atype(addr
->addr_type
);
920 krb5_set_error_message (context
, KRB5_PROG_ATYPE_NOSUPP
,
921 N_("Address type %d not supported",
922 "krb5_address type"),
924 return KRB5_PROG_ATYPE_NOSUPP
;
926 if (a
->addr2sockaddr
== NULL
) {
927 krb5_set_error_message (context
,
928 KRB5_PROG_ATYPE_NOSUPP
,
929 N_("Can't convert address type %d to sockaddr", ""),
931 return KRB5_PROG_ATYPE_NOSUPP
;
933 (*a
->addr2sockaddr
)(addr
, sa
, sa_size
, port
);
938 * krb5_max_sockaddr_size returns the max size of the .Li struct
939 * sockaddr that the Kerberos library will return.
941 * @return Return an size_t of the maximum struct sockaddr.
943 * @ingroup krb5_address
946 KRB5_LIB_FUNCTION
size_t KRB5_LIB_CALL
947 krb5_max_sockaddr_size (void)
949 if (max_sockaddr_size
== 0) {
950 struct addr_operations
*a
;
952 for(a
= at
; a
< at
+ num_addrs
; ++a
)
953 max_sockaddr_size
= max(max_sockaddr_size
, a
->max_sockaddr_size
);
955 return max_sockaddr_size
;
959 * krb5_sockaddr_uninteresting returns TRUE for all .Fa sa that the
960 * kerberos library thinks are uninteresting. One example are link
963 * @param sa pointer to struct sockaddr that might be interesting.
965 * @return Return a non zero for uninteresting addresses.
967 * @ingroup krb5_address
970 KRB5_LIB_FUNCTION krb5_boolean KRB5_LIB_CALL
971 krb5_sockaddr_uninteresting(const struct sockaddr
*sa
)
973 struct addr_operations
*a
= find_af(sa
->sa_family
);
974 if (a
== NULL
|| a
->uninteresting
== NULL
)
976 return (*a
->uninteresting
)(sa
);
979 KRB5_LIB_FUNCTION krb5_boolean KRB5_LIB_CALL
980 krb5_sockaddr_is_loopback(const struct sockaddr
*sa
)
982 struct addr_operations
*a
= find_af(sa
->sa_family
);
983 if (a
== NULL
|| a
->is_loopback
== NULL
)
985 return (*a
->is_loopback
)(sa
);
989 * krb5_h_addr2sockaddr initializes a "struct sockaddr sa" from af and
990 * the "struct hostent" (see gethostbyname(3) ) h_addr_list
991 * component. The argument sa_size should initially contain the size
992 * of the sa, and after the call, it will contain the actual length of
995 * @param context a Keberos context
996 * @param af addresses
997 * @param addr address
998 * @param sa returned struct sockaddr
999 * @param sa_size size of sa
1000 * @param port port to set in sa.
1002 * @return Return an error code or 0.
1004 * @ingroup krb5_address
1007 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1008 krb5_h_addr2sockaddr (krb5_context context
,
1010 const char *addr
, struct sockaddr
*sa
,
1011 krb5_socklen_t
*sa_size
,
1014 struct addr_operations
*a
= find_af(af
);
1016 krb5_set_error_message (context
, KRB5_PROG_ATYPE_NOSUPP
,
1017 "Address family %d not supported", af
);
1018 return KRB5_PROG_ATYPE_NOSUPP
;
1020 (*a
->h_addr2sockaddr
)(addr
, sa
, sa_size
, port
);
1025 * krb5_h_addr2addr works like krb5_h_addr2sockaddr with the exception
1026 * that it operates on a krb5_address instead of a struct sockaddr.
1028 * @param context a Keberos context
1029 * @param af address family
1030 * @param haddr host address from struct hostent.
1031 * @param addr returned krb5_address.
1033 * @return Return an error code or 0.
1035 * @ingroup krb5_address
1038 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1039 krb5_h_addr2addr (krb5_context context
,
1041 const char *haddr
, krb5_address
*addr
)
1043 struct addr_operations
*a
= find_af(af
);
1045 krb5_set_error_message (context
, KRB5_PROG_ATYPE_NOSUPP
,
1046 N_("Address family %d not supported", ""), af
);
1047 return KRB5_PROG_ATYPE_NOSUPP
;
1049 return (*a
->h_addr2addr
)(haddr
, addr
);
1053 * krb5_anyaddr fills in a "struct sockaddr sa" that can be used to
1054 * bind(2) to. The argument sa_size should initially contain the size
1055 * of the sa, and after the call, it will contain the actual length
1058 * @param context a Keberos context
1059 * @param af address family
1060 * @param sa sockaddr
1061 * @param sa_size lenght of sa.
1062 * @param port for to fill into sa.
1064 * @return Return an error code or 0.
1066 * @ingroup krb5_address
1069 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1070 krb5_anyaddr (krb5_context context
,
1072 struct sockaddr
*sa
,
1073 krb5_socklen_t
*sa_size
,
1076 struct addr_operations
*a
= find_af (af
);
1079 krb5_set_error_message (context
, KRB5_PROG_ATYPE_NOSUPP
,
1080 N_("Address family %d not supported", ""), af
);
1081 return KRB5_PROG_ATYPE_NOSUPP
;
1084 (*a
->anyaddr
)(sa
, sa_size
, port
);
1089 * krb5_print_address prints the address in addr to the string string
1090 * that have the length len. If ret_len is not NULL, it will be filled
1091 * with the length of the string if size were unlimited (not including
1094 * @param addr address to be printed
1095 * @param str pointer string to print the address into
1096 * @param len length that will fit into area pointed to by "str".
1097 * @param ret_len return length the str.
1099 * @return Return an error code or 0.
1101 * @ingroup krb5_address
1104 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1105 krb5_print_address (const krb5_address
*addr
,
1106 char *str
, size_t len
, size_t *ret_len
)
1108 struct addr_operations
*a
= find_atype(addr
->addr_type
);
1111 if (a
== NULL
|| a
->print_addr
== NULL
) {
1117 l
= snprintf(s
, len
, "TYPE_%d:", addr
->addr_type
);
1118 if (l
< 0 || l
>= len
)
1122 for(i
= 0; i
< addr
->address
.length
; i
++) {
1123 l
= snprintf(s
, len
, "%02x", ((char*)addr
->address
.data
)[i
]);
1124 if (l
< 0 || l
>= len
)
1133 ret
= (*a
->print_addr
)(addr
, str
, len
);
1142 * krb5_parse_address returns the resolved hostname in string to the
1143 * krb5_addresses addresses .
1145 * @param context a Keberos context
1149 * @return Return an error code or 0.
1151 * @ingroup krb5_address
1154 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1155 krb5_parse_address(krb5_context context
,
1157 krb5_addresses
*addresses
)
1160 struct addrinfo
*ai
, *a
;
1165 addresses
->val
= NULL
;
1167 for(i
= 0; i
< num_addrs
; i
++) {
1168 if(at
[i
].parse_addr
) {
1170 if((*at
[i
].parse_addr
)(context
, string
, &addr
) == 0) {
1171 ALLOC_SEQ(addresses
, 1);
1172 if (addresses
->val
== NULL
) {
1173 krb5_set_error_message(context
, ENOMEM
,
1174 N_("malloc: out of memory", ""));
1177 addresses
->val
[0] = addr
;
1183 error
= getaddrinfo (string
, NULL
, NULL
, &ai
);
1185 krb5_error_code ret2
;
1187 ret2
= krb5_eai_to_heim_errno(error
, save_errno
);
1188 krb5_set_error_message (context
, ret2
, "%s: %s",
1189 string
, gai_strerror(error
));
1194 for (a
= ai
; a
!= NULL
; a
= a
->ai_next
)
1197 ALLOC_SEQ(addresses
, n
);
1198 if (addresses
->val
== NULL
) {
1199 krb5_set_error_message(context
, ENOMEM
,
1200 N_("malloc: out of memory", ""));
1206 for (a
= ai
, i
= 0; a
!= NULL
; a
= a
->ai_next
) {
1207 if (krb5_sockaddr2address (context
, ai
->ai_addr
, &addresses
->val
[i
]))
1209 if(krb5_address_search(context
, &addresses
->val
[i
], addresses
)) {
1210 krb5_free_address(context
, &addresses
->val
[i
]);
1221 * krb5_address_order compares the addresses addr1 and addr2 so that
1222 * it can be used for sorting addresses. If the addresses are the same
1223 * address krb5_address_order will return 0. Behavies like memcmp(2).
1225 * @param context a Keberos context
1226 * @param addr1 krb5_address to compare
1227 * @param addr2 krb5_address to compare
1229 * @return < 0 if address addr1 in "less" then addr2. 0 if addr1 and
1230 * addr2 is the same address, > 0 if addr2 is "less" then addr1.
1232 * @ingroup krb5_address
1235 KRB5_LIB_FUNCTION
int KRB5_LIB_CALL
1236 krb5_address_order(krb5_context context
,
1237 const krb5_address
*addr1
,
1238 const krb5_address
*addr2
)
1240 /* this sucks; what if both addresses have order functions, which
1241 should we call? this works for now, though */
1242 struct addr_operations
*a
;
1243 a
= find_atype(addr1
->addr_type
);
1245 krb5_set_error_message (context
, KRB5_PROG_ATYPE_NOSUPP
,
1246 N_("Address family %d not supported", ""),
1248 return KRB5_PROG_ATYPE_NOSUPP
;
1250 if(a
->order_addr
!= NULL
)
1251 return (*a
->order_addr
)(context
, addr1
, addr2
);
1252 a
= find_atype(addr2
->addr_type
);
1254 krb5_set_error_message (context
, KRB5_PROG_ATYPE_NOSUPP
,
1255 N_("Address family %d not supported", ""),
1257 return KRB5_PROG_ATYPE_NOSUPP
;
1259 if(a
->order_addr
!= NULL
)
1260 return (*a
->order_addr
)(context
, addr1
, addr2
);
1262 if(addr1
->addr_type
!= addr2
->addr_type
)
1263 return addr1
->addr_type
- addr2
->addr_type
;
1264 if(addr1
->address
.length
!= addr2
->address
.length
)
1265 return addr1
->address
.length
- addr2
->address
.length
;
1266 return memcmp (addr1
->address
.data
,
1267 addr2
->address
.data
,
1268 addr1
->address
.length
);
1272 * krb5_address_compare compares the addresses addr1 and addr2.
1273 * Returns TRUE if the two addresses are the same.
1275 * @param context a Keberos context
1276 * @param addr1 address to compare
1277 * @param addr2 address to compare
1279 * @return Return an TRUE is the address are the same FALSE if not
1281 * @ingroup krb5_address
1284 KRB5_LIB_FUNCTION krb5_boolean KRB5_LIB_CALL
1285 krb5_address_compare(krb5_context context
,
1286 const krb5_address
*addr1
,
1287 const krb5_address
*addr2
)
1289 return krb5_address_order (context
, addr1
, addr2
) == 0;
1293 * krb5_address_search checks if the address addr is a member of the
1294 * address set list addrlist .
1296 * @param context a Keberos context.
1297 * @param addr address to search for.
1298 * @param addrlist list of addresses to look in for addr.
1300 * @return Return an error code or 0.
1302 * @ingroup krb5_address
1305 KRB5_LIB_FUNCTION krb5_boolean KRB5_LIB_CALL
1306 krb5_address_search(krb5_context context
,
1307 const krb5_address
*addr
,
1308 const krb5_addresses
*addrlist
)
1312 for (i
= 0; i
< addrlist
->len
; ++i
)
1313 if (krb5_address_compare (context
, addr
, &addrlist
->val
[i
]))
1319 * krb5_free_address frees the data stored in the address that is
1320 * alloced with any of the krb5_address functions.
1322 * @param context a Keberos context
1323 * @param address addresss to be freed.
1325 * @return Return an error code or 0.
1327 * @ingroup krb5_address
1330 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1331 krb5_free_address(krb5_context context
,
1332 krb5_address
*address
)
1334 struct addr_operations
*a
= find_atype (address
->addr_type
);
1335 if(a
!= NULL
&& a
->free_addr
!= NULL
)
1336 return (*a
->free_addr
)(context
, address
);
1337 krb5_data_free (&address
->address
);
1338 memset(address
, 0, sizeof(*address
));
1343 * krb5_free_addresses frees the data stored in the address that is
1344 * alloced with any of the krb5_address functions.
1346 * @param context a Keberos context
1347 * @param addresses addressses to be freed.
1349 * @return Return an error code or 0.
1351 * @ingroup krb5_address
1354 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1355 krb5_free_addresses(krb5_context context
,
1356 krb5_addresses
*addresses
)
1359 for(i
= 0; i
< addresses
->len
; i
++)
1360 krb5_free_address(context
, &addresses
->val
[i
]);
1361 free(addresses
->val
);
1363 addresses
->val
= NULL
;
1368 * krb5_copy_address copies the content of address
1369 * inaddr to outaddr.
1371 * @param context a Keberos context
1372 * @param inaddr pointer to source address
1373 * @param outaddr pointer to destination address
1375 * @return Return an error code or 0.
1377 * @ingroup krb5_address
1380 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1381 krb5_copy_address(krb5_context context
,
1382 const krb5_address
*inaddr
,
1383 krb5_address
*outaddr
)
1385 struct addr_operations
*a
= find_af (inaddr
->addr_type
);
1386 if(a
!= NULL
&& a
->copy_addr
!= NULL
)
1387 return (*a
->copy_addr
)(context
, inaddr
, outaddr
);
1388 return copy_HostAddress(inaddr
, outaddr
);
1392 * krb5_copy_addresses copies the content of addresses
1393 * inaddr to outaddr.
1395 * @param context a Keberos context
1396 * @param inaddr pointer to source addresses
1397 * @param outaddr pointer to destination addresses
1399 * @return Return an error code or 0.
1401 * @ingroup krb5_address
1404 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1405 krb5_copy_addresses(krb5_context context
,
1406 const krb5_addresses
*inaddr
,
1407 krb5_addresses
*outaddr
)
1410 ALLOC_SEQ(outaddr
, inaddr
->len
);
1411 if(inaddr
->len
> 0 && outaddr
->val
== NULL
)
1413 for(i
= 0; i
< inaddr
->len
; i
++)
1414 krb5_copy_address(context
, &inaddr
->val
[i
], &outaddr
->val
[i
]);
1419 * krb5_append_addresses adds the set of addresses in source to
1420 * dest. While copying the addresses, duplicates are also sorted out.
1422 * @param context a Keberos context
1423 * @param dest destination of copy operation
1424 * @param source adresses that are going to be added to dest
1426 * @return Return an error code or 0.
1428 * @ingroup krb5_address
1431 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1432 krb5_append_addresses(krb5_context context
,
1433 krb5_addresses
*dest
,
1434 const krb5_addresses
*source
)
1437 krb5_error_code ret
;
1439 if(source
->len
> 0) {
1440 tmp
= realloc(dest
->val
, (dest
->len
+ source
->len
) * sizeof(*tmp
));
1442 krb5_set_error_message (context
, ENOMEM
,
1443 N_("malloc: out of memory", ""));
1447 for(i
= 0; i
< source
->len
; i
++) {
1448 /* skip duplicates */
1449 if(krb5_address_search(context
, &source
->val
[i
], dest
))
1451 ret
= krb5_copy_address(context
,
1453 &dest
->val
[dest
->len
]);
1463 * Create an address of type KRB5_ADDRESS_ADDRPORT from (addr, port)
1465 * @param context a Keberos context
1466 * @param res built address from addr/port
1467 * @param addr address to use
1468 * @param port port to use
1470 * @return Return an error code or 0.
1472 * @ingroup krb5_address
1475 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1476 krb5_make_addrport (krb5_context context
,
1477 krb5_address
**res
, const krb5_address
*addr
, int16_t port
)
1479 krb5_error_code ret
;
1480 size_t len
= addr
->address
.length
+ 2 + 4 * 4;
1483 *res
= malloc (sizeof(**res
));
1485 krb5_set_error_message (context
, ENOMEM
,
1486 N_("malloc: out of memory", ""));
1489 (*res
)->addr_type
= KRB5_ADDRESS_ADDRPORT
;
1490 ret
= krb5_data_alloc (&(*res
)->address
, len
);
1492 krb5_set_error_message (context
, ret
,
1493 N_("malloc: out of memory", ""));
1498 p
= (*res
)->address
.data
;
1501 *p
++ = (addr
->addr_type
) & 0xFF;
1502 *p
++ = (addr
->addr_type
>> 8) & 0xFF;
1504 *p
++ = (addr
->address
.length
) & 0xFF;
1505 *p
++ = (addr
->address
.length
>> 8) & 0xFF;
1506 *p
++ = (addr
->address
.length
>> 16) & 0xFF;
1507 *p
++ = (addr
->address
.length
>> 24) & 0xFF;
1509 memcpy (p
, addr
->address
.data
, addr
->address
.length
);
1510 p
+= addr
->address
.length
;
1514 *p
++ = (KRB5_ADDRESS_IPPORT
) & 0xFF;
1515 *p
++ = (KRB5_ADDRESS_IPPORT
>> 8) & 0xFF;
1518 *p
++ = (2 >> 8) & 0xFF;
1519 *p
++ = (2 >> 16) & 0xFF;
1520 *p
++ = (2 >> 24) & 0xFF;
1522 memcpy (p
, &port
, 2);
1528 * Calculate the boundary addresses of `inaddr'/`prefixlen' and store
1529 * them in `low' and `high'.
1531 * @param context a Keberos context
1532 * @param inaddr address in prefixlen that the bondery searched
1533 * @param prefixlen width of boundery
1534 * @param low lowest address
1535 * @param high highest address
1537 * @return Return an error code or 0.
1539 * @ingroup krb5_address
1542 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1543 krb5_address_prefixlen_boundary(krb5_context context
,
1544 const krb5_address
*inaddr
,
1545 unsigned long prefixlen
,
1549 struct addr_operations
*a
= find_atype (inaddr
->addr_type
);
1550 if(a
!= NULL
&& a
->mask_boundary
!= NULL
)
1551 return (*a
->mask_boundary
)(context
, inaddr
, prefixlen
, low
, high
);
1552 krb5_set_error_message(context
, KRB5_PROG_ATYPE_NOSUPP
,
1553 N_("Address family %d doesn't support "
1554 "address mask operation", ""),
1556 return KRB5_PROG_ATYPE_NOSUPP
;