1*7ecc6a92SDavid van Moolenbroek /* $NetBSD: if_arp.h,v 1.30 2015/08/31 08:05:20 ozaki-r Exp $ */ 2*7ecc6a92SDavid van Moolenbroek 3*7ecc6a92SDavid van Moolenbroek /* 4*7ecc6a92SDavid van Moolenbroek * Copyright (c) 1986, 1993 5*7ecc6a92SDavid van Moolenbroek * The Regents of the University of California. All rights reserved. 6*7ecc6a92SDavid van Moolenbroek * 7*7ecc6a92SDavid van Moolenbroek * Redistribution and use in source and binary forms, with or without 8*7ecc6a92SDavid van Moolenbroek * modification, are permitted provided that the following conditions 9*7ecc6a92SDavid van Moolenbroek * are met: 10*7ecc6a92SDavid van Moolenbroek * 1. Redistributions of source code must retain the above copyright 11*7ecc6a92SDavid van Moolenbroek * notice, this list of conditions and the following disclaimer. 12*7ecc6a92SDavid van Moolenbroek * 2. Redistributions in binary form must reproduce the above copyright 13*7ecc6a92SDavid van Moolenbroek * notice, this list of conditions and the following disclaimer in the 14*7ecc6a92SDavid van Moolenbroek * documentation and/or other materials provided with the distribution. 15*7ecc6a92SDavid van Moolenbroek * 3. Neither the name of the University nor the names of its contributors 16*7ecc6a92SDavid van Moolenbroek * may be used to endorse or promote products derived from this software 17*7ecc6a92SDavid van Moolenbroek * without specific prior written permission. 18*7ecc6a92SDavid van Moolenbroek * 19*7ecc6a92SDavid van Moolenbroek * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 20*7ecc6a92SDavid van Moolenbroek * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21*7ecc6a92SDavid van Moolenbroek * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22*7ecc6a92SDavid van Moolenbroek * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 23*7ecc6a92SDavid van Moolenbroek * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24*7ecc6a92SDavid van Moolenbroek * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25*7ecc6a92SDavid van Moolenbroek * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26*7ecc6a92SDavid van Moolenbroek * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27*7ecc6a92SDavid van Moolenbroek * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28*7ecc6a92SDavid van Moolenbroek * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29*7ecc6a92SDavid van Moolenbroek * SUCH DAMAGE. 30*7ecc6a92SDavid van Moolenbroek * 31*7ecc6a92SDavid van Moolenbroek * @(#)if_arp.h 8.1 (Berkeley) 6/10/93 32*7ecc6a92SDavid van Moolenbroek */ 33*7ecc6a92SDavid van Moolenbroek 34*7ecc6a92SDavid van Moolenbroek #ifndef _NET_IF_ARP_H_ 35*7ecc6a92SDavid van Moolenbroek #define _NET_IF_ARP_H_ 36*7ecc6a92SDavid van Moolenbroek /* 37*7ecc6a92SDavid van Moolenbroek * Address Resolution Protocol. 38*7ecc6a92SDavid van Moolenbroek * 39*7ecc6a92SDavid van Moolenbroek * See RFC 826 for protocol description. ARP packets are variable 40*7ecc6a92SDavid van Moolenbroek * in size; the arphdr structure defines the fixed-length portion. 41*7ecc6a92SDavid van Moolenbroek * Protocol type values are the same as those for 10 Mb/s Ethernet. 42*7ecc6a92SDavid van Moolenbroek * It is followed by the variable-sized fields ar_sha, arp_spa, 43*7ecc6a92SDavid van Moolenbroek * arp_tha and arp_tpa in that order, according to the lengths 44*7ecc6a92SDavid van Moolenbroek * specified. Field names used correspond to RFC 826. 45*7ecc6a92SDavid van Moolenbroek */ 46*7ecc6a92SDavid van Moolenbroek struct arphdr { 47*7ecc6a92SDavid van Moolenbroek uint16_t ar_hrd; /* format of hardware address */ 48*7ecc6a92SDavid van Moolenbroek #define ARPHRD_ETHER 1 /* ethernet hardware format */ 49*7ecc6a92SDavid van Moolenbroek #define ARPHRD_IEEE802 6 /* IEEE 802 hardware format */ 50*7ecc6a92SDavid van Moolenbroek #define ARPHRD_ARCNET 7 /* ethernet hardware format */ 51*7ecc6a92SDavid van Moolenbroek #define ARPHRD_FRELAY 15 /* frame relay hardware format */ 52*7ecc6a92SDavid van Moolenbroek #define ARPHRD_STRIP 23 /* Ricochet Starmode Radio hardware format */ 53*7ecc6a92SDavid van Moolenbroek #define ARPHRD_IEEE1394 24 /* IEEE 1394 (FireWire) hardware format */ 54*7ecc6a92SDavid van Moolenbroek uint16_t ar_pro; /* format of protocol address */ 55*7ecc6a92SDavid van Moolenbroek uint8_t ar_hln; /* length of hardware address */ 56*7ecc6a92SDavid van Moolenbroek uint8_t ar_pln; /* length of protocol address */ 57*7ecc6a92SDavid van Moolenbroek uint16_t ar_op; /* one of: */ 58*7ecc6a92SDavid van Moolenbroek #define ARPOP_REQUEST 1 /* request to resolve address */ 59*7ecc6a92SDavid van Moolenbroek #define ARPOP_REPLY 2 /* response to previous request */ 60*7ecc6a92SDavid van Moolenbroek #define ARPOP_REVREQUEST 3 /* request protocol address given hardware */ 61*7ecc6a92SDavid van Moolenbroek #define ARPOP_REVREPLY 4 /* response giving protocol address */ 62*7ecc6a92SDavid van Moolenbroek #define ARPOP_INVREQUEST 8 /* request to identify peer */ 63*7ecc6a92SDavid van Moolenbroek #define ARPOP_INVREPLY 9 /* response identifying peer */ 64*7ecc6a92SDavid van Moolenbroek /* 65*7ecc6a92SDavid van Moolenbroek * The remaining fields are variable in size, 66*7ecc6a92SDavid van Moolenbroek * according to the sizes above. 67*7ecc6a92SDavid van Moolenbroek */ 68*7ecc6a92SDavid van Moolenbroek #ifdef COMMENT_ONLY 69*7ecc6a92SDavid van Moolenbroek uint8_t ar_sha[]; /* sender hardware address */ 70*7ecc6a92SDavid van Moolenbroek uint8_t ar_spa[]; /* sender protocol address */ 71*7ecc6a92SDavid van Moolenbroek uint8_t ar_tha[]; /* target hardware address */ 72*7ecc6a92SDavid van Moolenbroek uint8_t ar_tpa[]; /* target protocol address */ 73*7ecc6a92SDavid van Moolenbroek #endif 74*7ecc6a92SDavid van Moolenbroek #define ar_sha(ap) (((char *)((ap)+1))+0) 75*7ecc6a92SDavid van Moolenbroek #define ar_spa(ap) (((char *)((ap)+1))+(ap)->ar_hln) 76*7ecc6a92SDavid van Moolenbroek #define ar_tha(ap) \ 77*7ecc6a92SDavid van Moolenbroek (ntohs((ap)->ar_hrd) == ARPHRD_IEEE1394 \ 78*7ecc6a92SDavid van Moolenbroek ? NULL : (((char *)((ap)+1))+(ap)->ar_hln+(ap)->ar_pln)) 79*7ecc6a92SDavid van Moolenbroek #define ar_tpa(ap) \ 80*7ecc6a92SDavid van Moolenbroek (ntohs((ap)->ar_hrd) == ARPHRD_IEEE1394 \ 81*7ecc6a92SDavid van Moolenbroek ? (((char *)((ap)+1))+(ap)->ar_hln+(ap)->ar_pln) \ 82*7ecc6a92SDavid van Moolenbroek : (((char *)((ap)+1))+(ap)->ar_hln+(ap)->ar_pln+(ap)->ar_hln)) 83*7ecc6a92SDavid van Moolenbroek } __packed; 84*7ecc6a92SDavid van Moolenbroek 85*7ecc6a92SDavid van Moolenbroek 86*7ecc6a92SDavid van Moolenbroek /* 87*7ecc6a92SDavid van Moolenbroek * ARP ioctl request 88*7ecc6a92SDavid van Moolenbroek */ 89*7ecc6a92SDavid van Moolenbroek struct arpreq { 90*7ecc6a92SDavid van Moolenbroek struct sockaddr arp_pa; /* protocol address */ 91*7ecc6a92SDavid van Moolenbroek struct sockaddr arp_ha; /* hardware address */ 92*7ecc6a92SDavid van Moolenbroek int arp_flags; /* flags */ 93*7ecc6a92SDavid van Moolenbroek }; 94*7ecc6a92SDavid van Moolenbroek /* arp_flags and at_flags field values */ 95*7ecc6a92SDavid van Moolenbroek #define ATF_INUSE 0x01 /* entry in use */ 96*7ecc6a92SDavid van Moolenbroek #define ATF_COM 0x02 /* completed entry (enaddr valid) */ 97*7ecc6a92SDavid van Moolenbroek #define ATF_PERM 0x04 /* permanent entry */ 98*7ecc6a92SDavid van Moolenbroek #define ATF_PUBL 0x08 /* publish entry (respond for other host) */ 99*7ecc6a92SDavid van Moolenbroek #define ATF_USETRAILERS 0x10 /* has requested trailers */ 100*7ecc6a92SDavid van Moolenbroek 101*7ecc6a92SDavid van Moolenbroek /* 102*7ecc6a92SDavid van Moolenbroek * Kernel statistics about arp 103*7ecc6a92SDavid van Moolenbroek */ 104*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_SNDTOTAL 0 /* total packets sent */ 105*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_SNDREPLY 1 /* replies sent */ 106*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_SENDREQUEST 2 /* requests sent */ 107*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVTOTAL 3 /* total packets received */ 108*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVREQUEST 4 /* valid requests received */ 109*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVREPLY 5 /* replies received */ 110*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVMCAST 6 /* multicast/broadcast received */ 111*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVBADPROTO 7 /* unknown protocol type received */ 112*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVBADLEN 8 /* bad (short) length received */ 113*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVZEROTPA 9 /* received w/ null target ip */ 114*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVZEROSPA 10 /* received w/ null source ip */ 115*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVNOINT 11 /* couldn't map to interface */ 116*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVLOCALSHA 12 /* received from local hw address */ 117*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVBCASTSHA 13 /* received w/ broadcast src */ 118*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVLOCALSPA 14 /* received for a local ip [dup!] */ 119*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVOVERPERM 15 /* attempts to overwrite static info */ 120*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVOVERINT 16 /* attempts to overwrite wrong if */ 121*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVOVER 17 /* entries overwritten! */ 122*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_RCVLENCHG 18 /* changes in hw address len */ 123*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_DFRTOTAL 19 /* deferred pending ARP resolution */ 124*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_DFRSENT 20 /* deferred, then sent */ 125*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_DFRDROPPED 21 /* deferred, then dropped */ 126*7ecc6a92SDavid van Moolenbroek #define ARP_STAT_ALLOCFAIL 22 /* failures to allocate llinfo */ 127*7ecc6a92SDavid van Moolenbroek 128*7ecc6a92SDavid van Moolenbroek #define ARP_NSTATS 23 129*7ecc6a92SDavid van Moolenbroek 130*7ecc6a92SDavid van Moolenbroek void arp_stat_add(int, uint64_t); 131*7ecc6a92SDavid van Moolenbroek 132*7ecc6a92SDavid van Moolenbroek #endif /* !_NET_IF_ARP_H_ */ 133