2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#)linkaddr.c 8.1 (Berkeley) 6/4/93
30 * $FreeBSD: head/lib/libc/net/linkaddr.c 309688 2016-12-07 23:18:00Z glebius $
33 #include <sys/types.h>
34 #include <sys/socket.h>
36 #include <net/if_dl.h>
51 link_addr(const char *addr
, struct sockaddr_dl
*sdl
)
53 char *cp
= sdl
->sdl_data
;
54 char *cplim
= sdl
->sdl_len
+ (char *)sdl
;
55 int byte
= 0, state
= NAMING
, new;
57 bzero((char *)&sdl
->sdl_family
, sdl
->sdl_len
- 1);
58 sdl
->sdl_family
= AF_LINK
;
61 if ((*addr
>= '0') && (*addr
<= '9')) {
63 } else if ((*addr
>= 'a') && (*addr
<= 'f')) {
64 new = *addr
- 'a' + 10;
65 } else if ((*addr
>= 'A') && (*addr
<= 'F')) {
66 new = *addr
- 'A' + 10;
67 } else if (*addr
== 0) {
69 } else if (state
== NAMING
&&
70 (((*addr
>= 'A') && (*addr
<= 'Z')) ||
71 ((*addr
>= 'a') && (*addr
<= 'z'))))
76 switch (state
/* | INPUT */) {
83 sdl
->sdl_nlen
= cp
- sdl
->sdl_data
;
94 byte
= new + (byte
<< 4);
96 default: /* | DELIM */
109 } while (cp
< cplim
);
110 sdl
->sdl_alen
= cp
- LLADDR(sdl
);
111 new = cp
- (char *)sdl
;
112 if (new > sizeof(*sdl
))
117 static const char hexlist
[] = "0123456789abcdef";
120 link_ntoa(const struct sockaddr_dl
*sdl
)
122 static char obuf
[64];
123 _Static_assert(sizeof(obuf
) >= IFNAMSIZ
+ 20, "obuf is too small");
125 const u_char
*in
, *inlim
;
128 namelen
= (sdl
->sdl_nlen
<= IFNAMSIZ
) ? sdl
->sdl_nlen
: IFNAMSIZ
;
133 bcopy(sdl
->sdl_data
, out
, namelen
);
136 if (sdl
->sdl_alen
> 0) {
142 in
= (const u_char
*)sdl
->sdl_data
+ sdl
->sdl_nlen
;
143 inlim
= in
+ sdl
->sdl_alen
;
145 while (in
< inlim
&& rem
> 1) {
146 if (in
!= (const u_char
*)sdl
->sdl_data
+ sdl
->sdl_nlen
) {
154 *out
++ = hexlist
[i
>> 4];
155 *out
++ = hexlist
[i
& 0xf];