Sync usage with man page.
[netbsd-mini2440.git] / share / man / man9 / arp.9
blob3e4e50f49efbafcba2753b32ec76e990745ca813
1 .\"     $NetBSD: arp.9,v 1.23 2008/04/30 13:10:58 martin Exp $
2 .\"
3 .\" Copyright (c) 1997 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
5 .\"
6 .\" This code is derived from software contributed to The NetBSD Foundation
7 .\" by Ignatios Souvatzis.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\"    notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in the
16 .\"    documentation and/or other materials provided with the distribution.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 .\" POSSIBILITY OF SUCH DAMAGE.
29 .\"
30 .\"
31 .Dd March 3, 1997
32 .Dt ARP 9
33 .Os
34 .Sh NAME
35 .Nm arp ,
36 .Nm arp_ifinit ,
37 .Nm arpresolve ,
38 .Nm arpintr
39 .Nd externally visible ARP functions
40 .Sh SYNOPSIS
41 .In netinet/if_inarp.h
42 .Ft void
43 .Fn arp_ifinit "struct ifnet *ifp" "struct ifaddr *ifa"
44 .Ft int
45 .Fn arpresolve "struct ifnet *ifp" "struct rtentry *rt" "struct mbuf *m" "struct sockaddr *dst" "u_char *desten"
46 .Ft void
47 .Fn arpintr
48 .Sh DESCRIPTION
49 The
50 .Nm
51 functions provide the interface between the
52 .Nm
53 module and the network drivers which need
54 .Nm
55 functionality.
56 Such drivers must request the
57 .Ar arp
58 attribute in their "files" declaration.
59 .Bl -tag -width "arp_ifinit()"
60 .It Fn arp_ifinit
61 Sets up the
62 .Nm
63 specific fields in
64 .Fa ifa .
65 Additionally, it sends out a gratuitous
66 .Nm
67 request on
68 .Fa ifp ,
69 so that other machines are warned that we have a (new) address and
70 duplicate addresses can be detected.
71 .Pp
72 You must call this in your drivers' ioctl function when you get a
73 SIOCSIFADDR request with an AF_INET address family.
74 .It Fn arpresolve
75 is called by network output functions to resolve an IPv4 address.
76 If no
77 .Fa rt
78 is given, a new one is looked up or created.
79 If the passed or found
80 .Fa rt
81 does not contain a valid gateway link level address, a pointer to the packet
83 .Fa m
84 is stored in the route entry, possibly replacing older stored packets, and an
85 .Nm
86 request is sent instead.
87 When an
88 .Nm
89 reply is received, the last held packet is send.
90 Otherwise, the looked up address is returned and written into the storage
91 .Fa desten
92 points to.
93 .Fn arpresolve
94 returns 1, if a valid address was stored to
95 .Fa desten ,
96 and the packet can be sent immediately.
97 Else a 0 is returned.
98 .It Fn arpintr
99 When an
101 packet is received, the network driver (class) input interrupt handler queues
102 the packet on the arpintrq queue, and requests an
103 .Fn arpintr
104 soft interrupt callback.
105 .Fn arpintr
106 dequeues the packets, performs sanity checks and calls (for IPv4
108 packets, which are the only ones supported currently) the
109 .Fn in_arpinput
110 function.
111 .Fn in_arpinput
112 either generates a reply to request packets, and adds the sender address
113 translation to the routing table, if a matching route entry is found.
114 If the route entry contained a pointer to a held packet, that packet is
115 sent.
117 .Sh SEE ALSO
118 .Xr ether_ifattach 9
119 .\" .Xr fddi_ifattach 9 ,
120 .\" .Xr arc_ifattach 9
122 Plummer, D., "RFC826", An Ethernet Address Resolution Protocol.
123 .Sh AUTHORS
124 .An UCB CSRG
125 (original implementation)
126 .An Ignatios Souvatzis
127 (support for non-Ethernet)
128 .Sh CODE REFERENCES
129 The ARP code is implemented in
130 .Pa sys/net/if_arp.h ,
131 .Pa sys/netinet/if_inarp.h
133 .Pa sys/netinet/if_arp.c .
134 .Sh STANDARDS
135 RFC 826
136 .Sh HISTORY
137 Rewritten to support other than Ethernet link level addresses in
138 .Nx 1.3 .