NetBSD/share/man/man9/arp.9

145 lines
4.6 KiB
Groff
Raw Normal View History

2004-10-04 23:12:52 +04:00
.\" $NetBSD: arp.9,v 1.22 2004/10/04 19:12:52 rumble Exp $
1997-03-16 22:26:53 +03:00
.\"
1999-02-17 02:34:10 +03:00
.\" Copyright (c) 1997 The NetBSD Foundation, Inc.
1997-03-16 22:26:53 +03:00
.\" All rights reserved.
.\"
.\" This code is derived from software contributed to The NetBSD Foundation
.\" by Ignatios Souvatzis.
.\"
1997-03-16 22:26:53 +03:00
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by the NetBSD
.\" Foundation, Inc. and its contributors.
.\" 4. Neither the name of The NetBSD Foundation nor the names of its
.\" contributors may be used to endorse or promote products derived
.\" from this software without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
1997-03-16 22:26:53 +03:00
.\"
.\"
.Dd March 3, 1997
1997-03-16 22:26:53 +03:00
.Dt ARP 9
.Os
1997-03-16 22:26:53 +03:00
.Sh NAME
.Nm arp ,
.Nm arp_ifinit ,
.Nm arpresolve ,
.Nm arpintr
1997-03-16 22:26:53 +03:00
.Nd externally visible ARP functions
.Sh SYNOPSIS
.In netinet/if_inarp.h
1997-03-16 22:26:53 +03:00
.Ft void
.Fn arp_ifinit "struct ifnet *ifp" "struct ifaddr *ifa"
.Ft int
.Fn arpresolve "struct ifnet *ifp" "struct rtentry *rt" "struct mbuf *m" "struct sockaddr *dst" "u_char *desten"
.Ft void
.Fn arpintr
1997-03-16 22:26:53 +03:00
.Sh DESCRIPTION
The
2001-06-21 15:59:00 +04:00
.Nm
1997-03-16 22:26:53 +03:00
functions provide the interface between the
2001-06-21 15:59:00 +04:00
.Nm
1997-03-16 22:26:53 +03:00
module and the network drivers which need
2001-06-21 15:59:00 +04:00
.Nm
functionality.
2001-06-21 15:59:00 +04:00
Such drivers must request the
.Ar arp
attribute in their "files" declaration.
1997-03-16 22:26:53 +03:00
.Bl -tag -width "arp_ifinit()"
.It Fn arp_ifinit
2001-06-21 15:59:00 +04:00
Sets up the
1997-03-16 22:26:53 +03:00
.Nm
2001-06-21 15:59:00 +04:00
specific fields in
1997-03-16 22:26:53 +03:00
.Fa ifa .
2001-06-21 15:59:00 +04:00
Additionally, it sends out a gratuitous
.Nm
2001-06-21 15:59:00 +04:00
request on
1997-03-16 22:26:53 +03:00
.Fa ifp ,
so that other machines are warned that we have a (new) address and
1997-03-16 22:26:53 +03:00
duplicate addresses can be detected.
.Pp
2001-06-21 15:59:00 +04:00
You must call this in your drivers' ioctl function when you get a
SIOCSIFADDR request with an AF_INET address family.
.It Fn arpresolve
is called by network output functions to resolve an IPv4 address.
2001-06-21 15:59:00 +04:00
If no
.Fa rt
is given, a new one is looked up or created.
If the passed or found
.Fa rt
does not contain a valid gateway link level address, a pointer to the packet
2001-06-21 15:59:00 +04:00
in
.Fa m
2001-06-21 15:59:00 +04:00
is stored in the route entry, possibly replacing older stored packets, and an
.Nm
request is sent instead.
2001-06-21 15:59:00 +04:00
When an
.Nm
reply is received, the last held packet is send.
Otherwise, the looked up address is returned and written into the storage
.Fa desten
points to.
.Fn arpresolve
returns 1, if a valid address was stored to
.Fa desten ,
and the packet can be sent immediately.
Else a 0 is returned.
.It Fn arpintr
2001-06-21 15:59:00 +04:00
When an
.Nm
2001-06-21 15:59:00 +04:00
packet is received, the network driver (class) input interrupt handler queues
the packet on the arpintrq queue, and requests an
.Fn arpintr
2001-06-21 15:59:00 +04:00
soft interrupt callback.
.Fn arpintr
dequeues the packets, performs sanity checks and calls (for IPv4
.Nm
packets, which are the only ones supported currently) the
.Fn in_arpinput
function.
2001-06-21 15:59:00 +04:00
.Fn in_arpinput
either generates a reply to request packets, and adds the sender address
2004-10-04 23:12:52 +04:00
translation to the routing table, if a matching route entry is found.
2001-06-21 15:59:00 +04:00
If the route entry contained a pointer to a held packet, that packet is
sent.
1997-03-16 22:26:53 +03:00
.El
.Sh SEE ALSO
.Xr ether_ifattach 9
.\" .Xr fddi_ifattach 9 ,
.\" .Xr arc_ifattach 9
1997-03-16 22:26:53 +03:00
.br
Plummer, D., "RFC826", An Ethernet Address Resolution Protocol.
.Sh AUTHORS
1997-03-16 23:24:08 +03:00
UCB CSRG (original implementation)
1997-03-16 22:26:53 +03:00
.br
Ignatios Souvatzis (support for non-Ethernet)
.Sh CODE REFERENCES
The ARP code is implemented in
.Pa sys/net/if_arp.h ,
.Pa sys/netinet/if_inarp.h
and
.Pa sys/netinet/if_arp.c .
1997-03-16 22:26:53 +03:00
.Sh STANDARDS
RFC 826
.Sh HISTORY
2001-06-21 15:59:00 +04:00
Rewritten to support other than Ethernet link level addresses in
.Nx 1.3 .