1 /* $NetBSD: getether.c,v 1.8 2007/05/27 16:31:42 tls Exp $ */
5 __RCSID("$NetBSD: getether.c,v 1.8 2007/05/27 16:31:42 tls Exp $");
9 * getether.c : get the ethernet address of an interface
11 * All of this code is quite system-specific. As you may well
12 * guess, it took a good bit of detective work to figure out!
14 * If you figure out how to do this on another system,
15 * please let me know. <gwr@mc.com>
18 #include <sys/types.h>
19 #include <sys/socket.h>
30 extern int getether(char *, char *);
32 #if defined(ultrix) || (defined(__osf__) && defined(__alpha))
34 * This is really easy on Ultrix! Thanks to
35 * Harald Lundberg <hl@tekla.fi> for this code.
37 * The code here is not specific to the Alpha, but that was the
38 * only symbol we could find to identify DEC's version of OSF.
39 * (Perhaps we should just define DEC in the Makefile... -gwr)
42 #include <sys/ioctl.h>
43 #include <net/if.h> /* struct ifdevea */
46 getether(char *ifname
, char *eap
)
52 bzero(&phys
, sizeof(phys
));
53 strncpy(phys
.ifr_name
, ifname
, sizeof(phys
.ifr_name
));
54 if ((fd
= socket(AF_INET
, SOCK_DGRAM
, 0)) < 0) {
55 report(LOG_ERR
, "getether: socket(INET,DGRAM) failed");
58 if (ioctl(fd
, SIOCRPHYSADDR
, &phys
) < 0) {
59 report(LOG_ERR
, "getether: ioctl SIOCRPHYSADDR failed");
61 bcopy(&phys
.current_pa
[0], eap
, EALEN
);
69 #endif /* ultrix|osf1 */
74 #include <sys/sockio.h>
75 #include <sys/time.h> /* needed by net_if.h */
76 #include <net/nit_if.h> /* for NIOCBIND */
77 #include <net/if.h> /* for struct ifreq */
79 /* ifname: interface name from ifconfig structure */
80 /* eap: Ether address (output) */
81 getether(char *ifname
, char *eap
)
88 bzero((char *) &ifrnit
, sizeof(ifrnit
));
89 strncpy(&ifrnit
.ifr_name
[0], ifname
, IFNAMSIZ
);
91 nit
= open("/dev/nit", 0);
93 report(LOG_ERR
, "getether: open /dev/nit: %s",
98 if (ioctl(nit
, NIOCBIND
, &ifrnit
) < 0) {
99 report(LOG_ERR
, "getether: NIOCBIND on nit");
102 if (ioctl(nit
, SIOCGIFADDR
, &ifrnit
) < 0) {
103 report(LOG_ERR
, "getether: SIOCGIFADDR on nit");
106 bcopy(&ifrnit
.ifr_addr
.sa_data
[0], eap
, EALEN
);
117 #if defined(__386BSD__) || defined(__NetBSD__)
118 /* Thanks to John Brezak <brezak@ch.hp.com> for this code. */
119 #include <sys/ioctl.h>
121 #include <net/if_dl.h>
122 #include <net/if_types.h>
124 /* ifname: interface name from ifconfig structure */
125 /* eap: Ether address (output) */
127 getether(char *ifname
, char *eap
)
131 struct ifreq ibuf
[16];
133 struct ifreq
*ifrp
, *ifend
;
135 /* Fetch the interface configuration */
136 fd
= socket(AF_INET
, SOCK_DGRAM
, 0);
138 report(LOG_ERR
, "getether: socket %s: %s", ifname
, get_errmsg());
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
< (int)sizeof(struct ifreq
)) {
145 report(LOG_ERR
, "getether: SIOCGIFCONF: %s", get_errmsg());
148 /* Search interface configuration list for link layer address. */
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
);
160 /* Bump interface config pointer */
161 n
= ifrp
->ifr_addr
.sa_len
+ sizeof(ifrp
->ifr_name
);
162 if (n
< (int)sizeof(*ifrp
))
164 ifrp
= (struct ifreq
*) ((char *) ifrp
+ n
);
173 #endif /* __NetBSD__ */
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>
189 /* ifname: interface name from ifconfig structure */
190 /* eap: Ether address (output) */
191 getether(char *ifname
, char *eap
)
195 char tmpbuf
[sizeof(union DL_primitives
) + 16];
198 union DL_primitives
*dlp
;
200 int unit
= -1; /* which unit to attach */
202 snprintf(devname
, sizeof(devname
), "/dev/%s", ifname
);
203 fd
= open(devname
, 2);
205 /* Try without the trailing digit. */
206 char *p
= devname
+ 5;
213 fd
= open(devname
, 2);
215 report(LOG_ERR
, "getether: open %s: %s",
216 devname
, get_errmsg());
222 * If this is a "Style 2" DLPI, then we must "attach" first
223 * to tell the driver which unit (board, port) we want.
224 * For now, decide this based on the device name.
225 * (Should do "info_req" and check dl_provider_style ...)
228 memset(tmpbuf
, 0, sizeof(tmpbuf
));
229 dlp
= (union DL_primitives
*) tmpbuf
;
230 dlp
->dl_primitive
= DL_ATTACH_REQ
;
231 dlp
->attach_req
.dl_ppa
= unit
;
233 cbuf
.len
= DL_ATTACH_REQ_SIZE
;
234 if (putmsg(fd
, &cbuf
, NULL
, 0) < 0) {
235 report(LOG_ERR
, "getether: attach: putmsg: %s", get_errmsg());
240 cbuf
.maxlen
= sizeof(tmpbuf
);
242 if (getmsg(fd
, &cbuf
, NULL
, &flags
) < 0) {
243 report(LOG_ERR
, "getether: attach: getmsg: %s", get_errmsg());
247 * Check the type, etc.
249 if (dlp
->dl_primitive
== DL_ERROR_ACK
) {
250 report(LOG_ERR
, "getether: attach: dlpi_errno=%d, unix_errno=%d",
251 dlp
->error_ack
.dl_errno
,
252 dlp
->error_ack
.dl_unix_errno
);
255 if (dlp
->dl_primitive
!= DL_OK_ACK
) {
256 report(LOG_ERR
, "getether: attach: not OK or ERROR");
260 #endif /* DL_ATTACH_REQ */
263 * Get the Ethernet address the same way the ARP module
264 * does when it is pushed onto a new stream (bind).
265 * One should instead be able just do an dl_info_req
266 * but many drivers do not supply the hardware address
267 * in the response to dl_info_req (they MUST supply it
268 * for dl_bind_ack because the ARP module requires it).
270 memset(tmpbuf
, 0, sizeof(tmpbuf
));
271 dlp
= (union DL_primitives
*) tmpbuf
;
272 dlp
->dl_primitive
= DL_BIND_REQ
;
273 dlp
->bind_req
.dl_sap
= 0x8FF; /* XXX - Unused SAP */
275 cbuf
.len
= DL_BIND_REQ_SIZE
;
276 if (putmsg(fd
, &cbuf
, NULL
, 0) < 0) {
277 report(LOG_ERR
, "getether: bind: putmsg: %s", get_errmsg());
282 cbuf
.maxlen
= sizeof(tmpbuf
);
284 if (getmsg(fd
, &cbuf
, NULL
, &flags
) < 0) {
285 report(LOG_ERR
, "getether: bind: getmsg: %s", get_errmsg());
289 * Check the type, etc.
291 if (dlp
->dl_primitive
== DL_ERROR_ACK
) {
292 report(LOG_ERR
, "getether: bind: dlpi_errno=%d, unix_errno=%d",
293 dlp
->error_ack
.dl_errno
,
294 dlp
->error_ack
.dl_unix_errno
);
297 if (dlp
->dl_primitive
!= DL_BIND_ACK
) {
298 report(LOG_ERR
, "getether: bind: not OK or ERROR");
301 if (dlp
->bind_ack
.dl_addr_offset
== 0) {
302 report(LOG_ERR
, "getether: bind: ack has no address");
305 if (dlp
->bind_ack
.dl_addr_length
< EALEN
) {
306 report(LOG_ERR
, "getether: bind: ack address truncated");
310 * Copy the Ethernet address out of the message.
312 enaddr
= tmpbuf
+ dlp
->bind_ack
.dl_addr_offset
;
313 memcpy(eap
, enaddr
, EALEN
);
327 * This is really easy on Linux! This version (for linux)
328 * written by Nigel Metheringham <nigelm@ohm.york.ac.uk>
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 <sys/ioctl.h>
336 #include <net/if.h> /* struct ifreq */
338 /* In a properly configured system this should be either sys/socketio.h
339 or sys/sockios.h, but on my distribution these don't line up correctly */
340 #include <linux/sockios.h> /* Needed for IOCTL defs */
342 getether(char *ifname
, char *eap
)
348 bzero(&phys
, sizeof(phys
));
349 strncpy(phys
.ifr_name
, ifname
, sizeof(phys
.ifr_name
));
350 if ((fd
= socket(AF_INET
, SOCK_DGRAM
, 0)) < 0) {
351 report(LOG_ERR
, "getether: socket(INET,DGRAM) failed");
354 if (ioctl(fd
, SIOCGIFHWADDR
, &phys
) < 0) {
355 report(LOG_ERR
, "getether: ioctl SIOCGIFHWADDR failed");
357 bcopy(phys
.ifr_hwaddr
, eap
, EALEN
);
368 /* If we don't know how on this system, just return an error. */
370 getether(char *ifname
, char *eap
)
375 #endif /* !GETETHER */
381 * c-argdecl-indent: 4
382 * c-continued-statement-offset: 4
383 * c-continued-brace-offset: -4