xref: /dragonfly/lib/libc/net/linkaddr.c (revision 279dd846)
1 /*-
2  * Copyright (c) 1990, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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.
16  *
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
27  * SUCH DAMAGE.
28  *
29  * @(#)linkaddr.c	8.1 (Berkeley) 6/4/93
30  * $FreeBSD: src/lib/libc/net/linkaddr.c,v 1.4 2007/01/09 00:28:02 imp Exp $
31  * $DragonFly: src/lib/libc/net/linkaddr.c,v 1.5 2005/11/13 02:04:47 swildner Exp $
32  */
33 
34 #include <sys/types.h>
35 #include <sys/socket.h>
36 #include <net/if_dl.h>
37 #include <string.h>
38 
39 /* States*/
40 #define NAMING	0
41 #define GOTONE	1
42 #define GOTTWO	2
43 #define RESET	3
44 /* Inputs */
45 #define	DIGIT	(4*0)
46 #define	END	(4*1)
47 #define DELIM	(4*2)
48 #define LETTER	(4*3)
49 
50 void
51 link_addr(const char *addr, struct sockaddr_dl *sdl)
52 {
53 	char *cp = sdl->sdl_data;
54 	char *cplim = sdl->sdl_len + (char *)sdl;
55 	int byte = 0, state = NAMING, new;
56 
57 	bzero((char *)&sdl->sdl_family, sdl->sdl_len - 1);
58 	sdl->sdl_family = AF_LINK;
59 	do {
60 		state &= ~LETTER;
61 		if ((*addr >= '0') && (*addr <= '9')) {
62 			new = *addr - '0';
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) {
68 			state |= END;
69 		} else if (state == NAMING &&
70 			   (((*addr >= 'A') && (*addr <= 'Z')) ||
71 			   ((*addr >= 'a') && (*addr <= 'z'))))
72 			state |= LETTER;
73 		else
74 			state |= DELIM;
75 		addr++;
76 		switch (state /* | INPUT */) {
77 		case NAMING | DIGIT:
78 		case NAMING | LETTER:
79 			*cp++ = addr[-1];
80 			continue;
81 		case NAMING | DELIM:
82 			state = RESET;
83 			sdl->sdl_nlen = cp - sdl->sdl_data;
84 			continue;
85 		case GOTTWO | DIGIT:
86 			*cp++ = byte;
87 			/* FALLTHROUGH */
88 		case RESET | DIGIT:
89 			state = GOTONE;
90 			byte = new;
91 			continue;
92 		case GOTONE | DIGIT:
93 			state = GOTTWO;
94 			byte = new + (byte << 4);
95 			continue;
96 		default: /* | DELIM */
97 			state = RESET;
98 			*cp++ = byte;
99 			byte = 0;
100 			continue;
101 		case GOTONE | END:
102 		case GOTTWO | END:
103 			*cp++ = byte;
104 			/* FALLTHROUGH */
105 		case RESET | END:
106 			break;
107 		}
108 		break;
109 	} while (cp < cplim);
110 	sdl->sdl_alen = cp - LLADDR(sdl);
111 	new = cp - (char *)sdl;
112 	if (new > sizeof(*sdl))
113 		sdl->sdl_len = new;
114 	return;
115 }
116 
117 static char hexlist[] = "0123456789abcdef";
118 
119 char *
120 link_ntoa(const struct sockaddr_dl *sdl)
121 {
122 	static char obuf[64];
123 	char *out = obuf;
124 	int i;
125 	u_char *in = (u_char *)LLADDR(sdl);
126 	u_char *inlim = in + sdl->sdl_alen;
127 	int firsttime = 1;
128 
129 	if (sdl->sdl_nlen) {
130 		bcopy(sdl->sdl_data, obuf, sdl->sdl_nlen);
131 		out += sdl->sdl_nlen;
132 		if (sdl->sdl_alen)
133 			*out++ = ':';
134 	}
135 	while (in < inlim) {
136 		if (firsttime)
137 			firsttime = 0;
138 		else
139 			*out++ = '.';
140 		i = *in++;
141 		if (i > 0xf) {
142 			out[1] = hexlist[i & 0xf];
143 			i >>= 4;
144 			out[0] = hexlist[i];
145 			out += 2;
146 		} else
147 			*out++ = hexlist[i];
148 	}
149 	*out = 0;
150 	return (obuf);
151 }
152