kernel - Update swapcache manual page, fix breakage in last commit
[dragonfly.git] / libexec / bootpd / getether.c
bloba4f9c44ea2d723e742b0363ae487f1cbf48275b4
1 /*
2 * getether.c : get the ethernet address of an interface
4 * All of this code is quite system-specific. As you may well
5 * guess, it took a good bit of detective work to figure out!
7 * If you figure out how to do this on another system,
8 * please let me know. <gwr@mc.com>
10 * $FreeBSD: src/libexec/bootpd/getether.c,v 1.9.2.3 2003/02/15 05:36:01 kris Exp $
11 * $DragonFly: src/libexec/bootpd/getether.c,v 1.4 2008/06/05 18:01:49 swildner Exp $
14 #include <sys/types.h>
15 #include <sys/socket.h>
17 #ifndef NO_UNISTD
18 #include <unistd.h>
19 #endif
21 #include <ctype.h>
22 #include <paths.h>
23 #include <string.h>
24 #include <syslog.h>
26 #include "getether.h"
27 #include "report.h"
28 #define EALEN 6
30 #if defined(ultrix) || (defined(__osf__) && defined(__alpha))
32 * This is really easy on Ultrix! Thanks to
33 * Harald Lundberg <hl@tekla.fi> for this code.
35 * The code here is not specific to the Alpha, but that was the
36 * only symbol we could find to identify DEC's version of OSF.
37 * (Perhaps we should just define DEC in the Makefile... -gwr)
40 #include <sys/ioctl.h>
41 #include <net/if.h> /* struct ifdevea */
43 getether(ifname, eap)
44 char *ifname, *eap;
46 int rc = -1;
47 int fd;
48 struct ifdevea phys;
49 bzero(&phys, sizeof(phys));
50 strcpy(phys.ifr_name, ifname);
51 if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
52 report(LOG_ERR, "getether: socket(INET,DGRAM) failed");
53 return -1;
55 if (ioctl(fd, SIOCRPHYSADDR, &phys) < 0) {
56 report(LOG_ERR, "getether: ioctl SIOCRPHYSADDR failed");
57 } else {
58 bcopy(&phys.current_pa[0], eap, EALEN);
59 rc = 0;
61 close(fd);
62 return rc;
65 #define GETETHER
66 #endif /* ultrix|osf1 */
69 #ifdef SUNOS
71 #include <sys/sockio.h>
72 #include <sys/time.h> /* needed by net_if.h */
73 #include <net/nit_if.h> /* for NIOCBIND */
74 #include <net/if.h> /* for struct ifreq */
76 getether(ifname, eap)
77 char *ifname; /* interface name from ifconfig structure */
78 char *eap; /* Ether address (output) */
80 int rc = -1;
82 struct ifreq ifrnit;
83 int nit;
85 bzero((char *) &ifrnit, sizeof(ifrnit));
86 strncpy(&ifrnit.ifr_name[0], ifname, IFNAMSIZ);
88 nit = open("/dev/nit", 0);
89 if (nit < 0) {
90 report(LOG_ERR, "getether: open /dev/nit: %s",
91 get_errmsg());
92 return rc;
94 do {
95 if (ioctl(nit, NIOCBIND, &ifrnit) < 0) {
96 report(LOG_ERR, "getether: NIOCBIND on nit");
97 break;
99 if (ioctl(nit, SIOCGIFADDR, &ifrnit) < 0) {
100 report(LOG_ERR, "getether: SIOCGIFADDR on nit");
101 break;
103 bcopy(&ifrnit.ifr_addr.sa_data[0], eap, EALEN);
104 rc = 0;
105 } while (0);
106 close(nit);
107 return rc;
110 #define GETETHER
111 #endif /* SUNOS */
114 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
115 /* Thanks to John Brezak <brezak@ch.hp.com> for this code. */
116 #include <sys/ioctl.h>
117 #include <sys/time.h>
118 #include <net/if.h>
119 #include <net/if_dl.h>
120 #include <net/if_types.h>
123 * ifname - interface name from ifconfig structure
124 * eap - Ether address (output)
127 getether(char *ifname, char *eap)
129 int fd, rc = -1;
130 int n;
131 struct ifreq ibuf[16];
132 struct ifconf ifc;
133 struct ifreq *ifrp, *ifend;
135 /* Fetch the interface configuration */
136 fd = socket(AF_INET, SOCK_DGRAM, 0);
137 if (fd < 0) {
138 report(LOG_ERR, "getether: socket %s: %s", ifname, get_errmsg());
139 return (fd);
141 ifc.ifc_len = sizeof(ibuf);
142 ifc.ifc_buf = (caddr_t) ibuf;
143 if (ioctl(fd, SIOCGIFCONF, (char *) &ifc) < 0 ||
144 ifc.ifc_len < sizeof(struct ifreq)) {
145 report(LOG_ERR, "getether: SIOCGIFCONF: %s", get_errmsg());
146 goto out;
148 /* Search interface configuration list for link layer address. */
149 ifrp = ibuf;
150 ifend = (struct ifreq *) ((char *) ibuf + ifc.ifc_len);
151 while (ifrp < ifend) {
152 /* Look for interface */
153 if (strcmp(ifname, ifrp->ifr_name) == 0 &&
154 ifrp->ifr_addr.sa_family == AF_LINK &&
155 ((struct sockaddr_dl *) &ifrp->ifr_addr)->sdl_type == IFT_ETHER) {
156 bcopy(LLADDR((struct sockaddr_dl *) &ifrp->ifr_addr), eap, EALEN);
157 rc = 0;
158 break;
160 /* Bump interface config pointer */
161 n = ifrp->ifr_addr.sa_len + sizeof(ifrp->ifr_name);
162 if (n < sizeof(*ifrp))
163 n = sizeof(*ifrp);
164 ifrp = (struct ifreq *) ((char *) ifrp + n);
167 out:
168 close(fd);
169 return (rc);
172 #define GETETHER
173 #endif /* __NetBSD__ */
176 #ifdef SVR4
178 * This is for "Streams TCP/IP" by Lachman Associates.
179 * They sure made this cumbersome! -gwr
182 #include <sys/sockio.h>
183 #include <sys/dlpi.h>
184 #include <stropts.h>
185 #include <string.h>
188 getether(ifname, eap)
189 char *ifname; /* interface name from ifconfig structure */
190 char *eap; /* Ether address (output) */
192 int rc = -1;
193 char devname[32];
194 char tmpbuf[sizeof(union DL_primitives) + 16];
195 struct strbuf cbuf;
196 int fd, flags;
197 union DL_primitives *dlp;
198 char *enaddr;
199 int unit = -1; /* which unit to attach */
201 snprintf(devname, sizeof(devname), "%s%s", _PATH_DEV, ifname);
202 fd = open(devname, 2);
203 if (fd < 0) {
204 /* Try without the trailing digit. */
205 char *p = devname + 5;
206 while (isalpha(*p))
207 p++;
208 if (isdigit(*p)) {
209 unit = *p - '0';
210 *p = '\0';
212 fd = open(devname, 2);
213 if (fd < 0) {
214 report(LOG_ERR, "getether: open %s: %s",
215 devname, get_errmsg());
216 return rc;
219 #ifdef DL_ATTACH_REQ
221 * If this is a "Style 2" DLPI, then we must "attach" first
222 * to tell the driver which unit (board, port) we want.
223 * For now, decide this based on the device name.
224 * (Should do "info_req" and check dl_provider_style ...)
226 if (unit >= 0) {
227 memset(tmpbuf, 0, sizeof(tmpbuf));
228 dlp = (union DL_primitives *) tmpbuf;
229 dlp->dl_primitive = DL_ATTACH_REQ;
230 dlp->attach_req.dl_ppa = unit;
231 cbuf.buf = tmpbuf;
232 cbuf.len = DL_ATTACH_REQ_SIZE;
233 if (putmsg(fd, &cbuf, NULL, 0) < 0) {
234 report(LOG_ERR, "getether: attach: putmsg: %s", get_errmsg());
235 goto out;
237 /* Recv the ack. */
238 cbuf.buf = tmpbuf;
239 cbuf.maxlen = sizeof(tmpbuf);
240 flags = 0;
241 if (getmsg(fd, &cbuf, NULL, &flags) < 0) {
242 report(LOG_ERR, "getether: attach: getmsg: %s", get_errmsg());
243 goto out;
246 * Check the type, etc.
248 if (dlp->dl_primitive == DL_ERROR_ACK) {
249 report(LOG_ERR, "getether: attach: dlpi_errno=%d, unix_errno=%d",
250 dlp->error_ack.dl_errno,
251 dlp->error_ack.dl_unix_errno);
252 goto out;
254 if (dlp->dl_primitive != DL_OK_ACK) {
255 report(LOG_ERR, "getether: attach: not OK or ERROR");
256 goto out;
258 } /* unit >= 0 */
259 #endif /* DL_ATTACH_REQ */
262 * Get the Ethernet address the same way the ARP module
263 * does when it is pushed onto a new stream (bind).
264 * One should instead be able just do an dl_info_req
265 * but many drivers do not supply the hardware address
266 * in the response to dl_info_req (they MUST supply it
267 * for dl_bind_ack because the ARP module requires it).
269 memset(tmpbuf, 0, sizeof(tmpbuf));
270 dlp = (union DL_primitives *) tmpbuf;
271 dlp->dl_primitive = DL_BIND_REQ;
272 dlp->bind_req.dl_sap = 0x8FF; /* XXX - Unused SAP */
273 cbuf.buf = tmpbuf;
274 cbuf.len = DL_BIND_REQ_SIZE;
275 if (putmsg(fd, &cbuf, NULL, 0) < 0) {
276 report(LOG_ERR, "getether: bind: putmsg: %s", get_errmsg());
277 goto out;
279 /* Recv the ack. */
280 cbuf.buf = tmpbuf;
281 cbuf.maxlen = sizeof(tmpbuf);
282 flags = 0;
283 if (getmsg(fd, &cbuf, NULL, &flags) < 0) {
284 report(LOG_ERR, "getether: bind: getmsg: %s", get_errmsg());
285 goto out;
288 * Check the type, etc.
290 if (dlp->dl_primitive == DL_ERROR_ACK) {
291 report(LOG_ERR, "getether: bind: dlpi_errno=%d, unix_errno=%d",
292 dlp->error_ack.dl_errno,
293 dlp->error_ack.dl_unix_errno);
294 goto out;
296 if (dlp->dl_primitive != DL_BIND_ACK) {
297 report(LOG_ERR, "getether: bind: not OK or ERROR");
298 goto out;
300 if (dlp->bind_ack.dl_addr_offset == 0) {
301 report(LOG_ERR, "getether: bind: ack has no address");
302 goto out;
304 if (dlp->bind_ack.dl_addr_length < EALEN) {
305 report(LOG_ERR, "getether: bind: ack address truncated");
306 goto out;
309 * Copy the Ethernet address out of the message.
311 enaddr = tmpbuf + dlp->bind_ack.dl_addr_offset;
312 memcpy(eap, enaddr, EALEN);
313 rc = 0;
315 out:
316 close(fd);
317 return rc;
320 #define GETETHER
321 #endif /* SVR4 */
324 #ifdef __linux__
326 * This is really easy on Linux! This version (for linux)
327 * written by Nigel Metheringham <nigelm@ohm.york.ac.uk> and
328 * updated by Pauline Middelink <middelin@polyware.iaf.nl>
330 * The code is almost identical to the Ultrix code - however
331 * the names are different to confuse the innocent :-)
332 * Most of this code was stolen from the Ultrix bit above.
335 #include <memory.h>
336 #include <sys/ioctl.h>
337 #include <net/if.h> /* struct ifreq */
338 #include <sys/socketio.h> /* Needed for IOCTL defs */
341 getether(ifname, eap)
342 char *ifname, *eap;
344 int rc = -1;
345 int fd;
346 struct ifreq phys;
348 memset(&phys, 0, sizeof(phys));
349 strcpy(phys.ifr_name, ifname);
350 if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
351 report(LOG_ERR, "getether: socket(INET,DGRAM) failed");
352 return -1;
354 if (ioctl(fd, SIOCGIFHWADDR, &phys) < 0) {
355 report(LOG_ERR, "getether: ioctl SIOCGIFHWADDR failed");
356 } else {
357 memcpy(eap, &phys.ifr_hwaddr.sa_data, EALEN);
358 rc = 0;
360 close(fd);
361 return rc;
364 #define GETETHER
365 #endif /* __linux__ */
368 /* If we don't know how on this system, just return an error. */
369 #ifndef GETETHER
371 getether(ifname, eap)
372 char *ifname, *eap;
374 return -1;
377 #endif /* !GETETHER */
380 * Local Variables:
381 * tab-width: 4
382 * c-indent-level: 4
383 * c-argdecl-indent: 4
384 * c-continued-statement-offset: 4
385 * c-continued-brace-offset: -4
386 * c-label-offset: -4
387 * c-brace-offset: 0
388 * End: