xref: /freebsd/lib/libc/net/ethers.3 (revision fa9896e082a1046ff4fbc75fcba4d18d1f2efc19)
162ad77f0SRobert Watson.\" Copyright (c) 1995 Bill Paul <wpaul@ctr.columbia.edu>.
262ad77f0SRobert Watson.\" Copyright (c) 2007 Robert N. M. Watson
362ad77f0SRobert Watson.\" All rights reserved.
48b4709faSBill Paul.\"
58b4709faSBill Paul.\" Redistribution and use in source and binary forms, with or without
68b4709faSBill Paul.\" modification, are permitted provided that the following conditions
78b4709faSBill Paul.\" are met:
88b4709faSBill Paul.\" 1. Redistributions of source code must retain the above copyright
98b4709faSBill Paul.\"    notice, this list of conditions and the following disclaimer.
108b4709faSBill Paul.\" 2. Redistributions in binary form must reproduce the above copyright
118b4709faSBill Paul.\"    notice, this list of conditions and the following disclaimer in the
128b4709faSBill Paul.\"    documentation and/or other materials provided with the distribution.
138b4709faSBill Paul.\" 3. All advertising materials mentioning features or use of this software
148b4709faSBill Paul.\"    must display the following acknowledgement:
158b4709faSBill Paul.\"	This product includes software developed by Bill Paul.
168b4709faSBill Paul.\" 4. Neither the name of the author nor the names of any co-contributors
178b4709faSBill Paul.\"    may be used to endorse or promote products derived from this software
188b4709faSBill Paul.\"    without specific prior written permission.
198b4709faSBill Paul.\"
208b4709faSBill Paul.\" THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
218b4709faSBill Paul.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
228b4709faSBill Paul.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
238b4709faSBill Paul.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
248b4709faSBill Paul.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
258b4709faSBill Paul.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
268b4709faSBill Paul.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
278b4709faSBill Paul.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
288b4709faSBill Paul.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
298b4709faSBill Paul.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
308b4709faSBill Paul.\" SUCH DAMAGE.
318b4709faSBill Paul.\"
32ef824a43SGiorgos Keramidas.Dd October 30, 2007
338b4709faSBill Paul.Dt ETHERS 3
34a307d598SRuslan Ermilov.Os
358b4709faSBill Paul.Sh NAME
368b4709faSBill Paul.Nm ethers ,
378b4709faSBill Paul.Nm ether_line ,
388b4709faSBill Paul.Nm ether_aton ,
3962ad77f0SRobert Watson.Nm ether_aton_r ,
408b4709faSBill Paul.Nm ether_ntoa ,
4162ad77f0SRobert Watson.Nm ether_ntoa_r ,
428b4709faSBill Paul.Nm ether_ntohost ,
438b4709faSBill Paul.Nm ether_hostton
448b4709faSBill Paul.Nd Ethernet address conversion and lookup routines
4525bb73e0SAlexey Zelkin.Sh LIBRARY
4625bb73e0SAlexey Zelkin.Lb libc
478b4709faSBill Paul.Sh SYNOPSIS
4832eef9aeSRuslan Ermilov.In sys/types.h
4932eef9aeSRuslan Ermilov.In sys/socket.h
5032eef9aeSRuslan Ermilov.In net/ethernet.h
518b4709faSBill Paul.Ft int
526e641683SArchie Cobbs.Fn ether_line "const char *l" "struct ether_addr *e" "char *hostname"
538b4709faSBill Paul.Ft struct ether_addr *
546e641683SArchie Cobbs.Fn ether_aton "const char *a"
5562ad77f0SRobert Watson.Ft struct ether_addr *
5662ad77f0SRobert Watson.Fn ether_aton_r "const char *a" "struct ether_addr *e"
578b4709faSBill Paul.Ft char *
586e641683SArchie Cobbs.Fn ether_ntoa "const struct ether_addr *n"
5962ad77f0SRobert Watson.Ft char *
6062ad77f0SRobert Watson.Fn ether_ntoa_r "const struct ether_addr *n" "char *buf"
618b4709faSBill Paul.Ft int
626e641683SArchie Cobbs.Fn ether_ntohost "char *hostname" "const struct ether_addr *e"
638b4709faSBill Paul.Ft int
646e641683SArchie Cobbs.Fn ether_hostton "const char *hostname" "struct ether_addr *e"
658b4709faSBill Paul.Sh DESCRIPTION
668b4709faSBill PaulThese functions operate on ethernet addresses using an
675c564baeSRuslan Ermilov.Vt ether_addr
688b4709faSBill Paulstructure, which is defined in the header file
69*3462b16fSHiroki Sato.In net/ethernet.h :
708b4709faSBill Paul.Bd -literal -offset indent
718b4709faSBill Paul/*
72453196ebSMike Pritchard * The number of bytes in an ethernet (MAC) address.
73453196ebSMike Pritchard */
74453196ebSMike Pritchard#define ETHER_ADDR_LEN		6
75453196ebSMike Pritchard
76453196ebSMike Pritchard/*
778b4709faSBill Paul * Structure of a 48-bit Ethernet address.
788b4709faSBill Paul */
798b4709faSBill Paulstruct  ether_addr {
80453196ebSMike Pritchard        u_char octet[ETHER_ADDR_LEN];
818b4709faSBill Paul};
828b4709faSBill Paul.Ed
838b4709faSBill Paul.Pp
848b4709faSBill PaulThe function
858b4709faSBill Paul.Fn ether_line
868b4709faSBill Paulscans
875c564baeSRuslan Ermilov.Fa l ,
888b4709faSBill Paulan
898b4709faSBill Paul.Tn ASCII
908b4709faSBill Paulstring in
918b4709faSBill Paul.Xr ethers 5
928b4709faSBill Paulformat and sets
935c564baeSRuslan Ermilov.Fa e
948b4709faSBill Paulto the ethernet address specified in the string and
955c564baeSRuslan Ermilov.Fa h
96c6ff3a1bSSheldon Hearnto the hostname.
97c6ff3a1bSSheldon HearnThis function is used to parse lines from
988b4709faSBill Paul.Pa /etc/ethers
998b4709faSBill Paulinto their component parts.
1008b4709faSBill Paul.Pp
1018b4709faSBill PaulThe
1028b4709faSBill Paul.Fn ether_aton
10362ad77f0SRobert Watsonand
10462ad77f0SRobert Watson.Fn ether_aton_r
10562ad77f0SRobert Watsonfunctions convert
1068b4709faSBill Paul.Tn ASCII
10762ad77f0SRobert Watsonrepresentation of ethernet addresses into
1085c564baeSRuslan Ermilov.Vt ether_addr
10962ad77f0SRobert Watsonstructures.
11062ad77f0SRobert WatsonLikewise, the
1118b4709faSBill Paul.Fn ether_ntoa
11262ad77f0SRobert Watsonand
11362ad77f0SRobert Watson.Fn ether_ntoa_r
11462ad77f0SRobert Watsonfunctions
11562ad77f0SRobert Watsonconvert ethernet addresses specified as
1165c564baeSRuslan Ermilov.Vt ether_addr
11762ad77f0SRobert Watsonstructures into
1188b4709faSBill Paul.Tn ASCII
11962ad77f0SRobert Watsonstrings.
1208b4709faSBill Paul.Pp
1218b4709faSBill PaulThe
1228b4709faSBill Paul.Fn ether_ntohost
1238b4709faSBill Pauland
1248b4709faSBill Paul.Fn ether_hostton
1258b4709faSBill Paulfunctions map ethernet addresses to their corresponding hostnames
1268b4709faSBill Paulas specified in the
1278b4709faSBill Paul.Pa /etc/ethers
1288b4709faSBill Pauldatabase.
1291fae73b1SRuslan ErmilovThe
1308b4709faSBill Paul.Fn ether_ntohost
1311fae73b1SRuslan Ermilovfunction
1328b4709faSBill Paulconverts from ethernet address to hostname, and
1338b4709faSBill Paul.Fn ether_hostton
1348b4709faSBill Paulconverts from hostname to ethernet address.
1358b4709faSBill Paul.Sh RETURN VALUES
1361fae73b1SRuslan ErmilovThe
1378b4709faSBill Paul.Fn ether_line
1381fae73b1SRuslan Ermilovfunction
1398b4709faSBill Paulreturns zero on success and non-zero if it was unable to parse
1408b4709faSBill Paulany part of the supplied line
1415c564baeSRuslan Ermilov.Fa l .
1428b4709faSBill PaulIt returns the extracted ethernet address in the supplied
1435c564baeSRuslan Ermilov.Vt ether_addr
1448b4709faSBill Paulstructure
1455c564baeSRuslan Ermilov.Fa e
1468b4709faSBill Pauland the hostname in the supplied string
1475c564baeSRuslan Ermilov.Fa h .
1488b4709faSBill Paul.Pp
1498b4709faSBill PaulOn success,
1508b4709faSBill Paul.Fn ether_ntoa
15162ad77f0SRobert Watsonand
15262ad77f0SRobert Watson.Fn ether_ntoa_r
15362ad77f0SRobert Watsonfunctions return a pointer to a string containing an
1548b4709faSBill Paul.Tn ASCII
155c6ff3a1bSSheldon Hearnrepresentation of an ethernet address.
156c6ff3a1bSSheldon HearnIf it is unable to convert
1578b4709faSBill Paulthe supplied
1585c564baeSRuslan Ermilov.Vt ether_addr
159453196ebSMike Pritchardstructure, it returns a
160453196ebSMike Pritchard.Dv NULL
161c6ff3a1bSSheldon Hearnpointer.
16262ad77f0SRobert Watson.Fn ether_ntoa
16362ad77f0SRobert Watsonstores the result in a static buffer;
16462ad77f0SRobert Watson.Fn ether_ntoa_r
16562ad77f0SRobert Watsonstores the result in a user-passed buffer.
16662ad77f0SRobert Watson.Pp
167c6ff3a1bSSheldon HearnLikewise,
1688b4709faSBill Paul.Fn ether_aton
16962ad77f0SRobert Watsonand
17062ad77f0SRobert Watson.Fn ether_aton_r
17162ad77f0SRobert Watsonreturn a pointer to an
1725c564baeSRuslan Ermilov.Vt ether_addr
173453196ebSMike Pritchardstructure on success and a
174453196ebSMike Pritchard.Dv NULL
175453196ebSMike Pritchardpointer on failure.
17662ad77f0SRobert Watson.Fn ether_aton
17762ad77f0SRobert Watsonstores the result in a static buffer;
17862ad77f0SRobert Watson.Fn ether_aton_r
17962ad77f0SRobert Watsonstores the result in a user-passed buffer.
1808b4709faSBill Paul.Pp
1818b4709faSBill PaulThe
1828b4709faSBill Paul.Fn ether_ntohost
1838b4709faSBill Pauland
1848b4709faSBill Paul.Fn ether_hostton
1858b4709faSBill Paulfunctions both return zero on success or non-zero if they were
1868b4709faSBill Paulunable to find a match in the
1878b4709faSBill Paul.Pa /etc/ethers
1888b4709faSBill Pauldatabase.
1898b4709faSBill Paul.Sh NOTES
190e7f8dd75SRebecca CranThe user must ensure that the hostname strings passed to the
1918b4709faSBill Paul.Fn ether_line ,
1928b4709faSBill Paul.Fn ether_ntohost
1938b4709faSBill Pauland
1948b4709faSBill Paul.Fn ether_hostton
1958b4709faSBill Paulfunctions are large enough to contain the returned hostnames.
1968b4709faSBill Paul.Sh NIS INTERACTION
1978b4709faSBill PaulIf the
1988b4709faSBill Paul.Pa /etc/ethers
1998b4709faSBill Paulcontains a line with a single + in it, the
2008b4709faSBill Paul.Fn ether_ntohost
2018b4709faSBill Pauland
2028b4709faSBill Paul.Fn ether_hostton
2038b4709faSBill Paulfunctions will attempt to consult the NIS
2048b4709faSBill Paul.Pa ethers.byname
2058b4709faSBill Pauland
2068b4709faSBill Paul.Pa ethers.byaddr
2078b4709faSBill Paulmaps in addition to the data in the
2088b4709faSBill Paul.Pa /etc/ethers
2098b4709faSBill Paulfile.
2108b4709faSBill Paul.Sh SEE ALSO
211491a8429SRuslan Ermilov.Xr ethers 5 ,
212491a8429SRuslan Ermilov.Xr yp 8
21324a0682cSRuslan Ermilov.Sh HISTORY
21424a0682cSRuslan ErmilovThis particular implementation of the
21524a0682cSRuslan Ermilov.Nm
21624a0682cSRuslan Ermilovlibrary functions were written for and first appeared in
21724a0682cSRuslan Ermilov.Fx 2.1 .
21862ad77f0SRobert WatsonThread-safe function variants first appeared in
21962ad77f0SRobert Watson.Fx 7.0 .
2208b4709faSBill Paul.Sh BUGS
2218b4709faSBill PaulThe
2228b4709faSBill Paul.Fn ether_aton
2238b4709faSBill Pauland
2248b4709faSBill Paul.Fn ether_ntoa
2258b4709faSBill Paulfunctions returns values that are stored in static memory areas
2268b4709faSBill Paulwhich may be overwritten the next time they are called.
22762ad77f0SRobert Watson.Pp
22862ad77f0SRobert Watson.Fn ether_ntoa_r
22962ad77f0SRobert Watsonaccepts a character buffer pointer, but not a buffer length.
23062ad77f0SRobert WatsonThe caller must ensure adequate space is available in the buffer in order to
23162ad77f0SRobert Watsonavoid a buffer overflow.
232