2008-04-15 19:17:54 +04:00
|
|
|
/* $NetBSD: if_inarp.h,v 1.40 2008/04/15 15:17:54 thorpej Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-05-13 10:02:48 +04:00
|
|
|
* Copyright (c) 1982, 1986, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +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.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
|
|
|
|
*
|
1994-06-29 10:29:24 +04:00
|
|
|
* @(#)if_ether.h 8.1 (Berkeley) 6/10/93
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
1998-02-10 04:26:19 +03:00
|
|
|
#ifndef _NETINET_IF_INARP_H_
|
|
|
|
#define _NETINET_IF_INARP_H_
|
|
|
|
|
1994-05-13 10:02:48 +04:00
|
|
|
struct llinfo_arp {
|
1995-06-12 04:46:47 +04:00
|
|
|
LIST_ENTRY(llinfo_arp) la_list;
|
1994-05-13 10:02:48 +04:00
|
|
|
struct rtentry *la_rt;
|
|
|
|
struct mbuf *la_hold; /* last packet until resolved/timeout */
|
|
|
|
long la_asked; /* last time we QUERIED for this addr */
|
|
|
|
#define la_timer la_rt->rt_rmx.rmx_expire /* deletion time in seconds */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sockaddr_inarp {
|
1995-04-13 10:25:36 +04:00
|
|
|
u_int8_t sin_len;
|
|
|
|
u_int8_t sin_family;
|
|
|
|
u_int16_t sin_port;
|
|
|
|
struct in_addr sin_addr;
|
|
|
|
struct in_addr sin_srcaddr;
|
|
|
|
u_int16_t sin_tos;
|
|
|
|
u_int16_t sin_other;
|
1994-05-13 10:02:48 +04:00
|
|
|
#define SIN_PROXY 1
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
1994-05-13 10:02:48 +04:00
|
|
|
* IP and ethernet specific routing flags
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-05-13 10:02:48 +04:00
|
|
|
#define RTF_USETRAILERS RTF_PROTO1 /* use trailers */
|
|
|
|
#define RTF_ANNOUNCE RTF_PROTO2 /* announce new arp entry */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-02-14 02:40:59 +03:00
|
|
|
#ifdef _KERNEL
|
2000-03-30 06:32:57 +04:00
|
|
|
extern struct ifqueue arpintrq;
|
2004-04-21 21:49:46 +04:00
|
|
|
void arp_ifinit(struct ifnet *, struct ifaddr *);
|
|
|
|
void arp_rtrequest(int, struct rtentry *, struct rt_addrinfo *);
|
|
|
|
int arpresolve(struct ifnet *, struct rtentry *, struct mbuf *,
|
KNF: de-__P, bzero -> memset, bcmp -> memcmp. Remove extraneous
parentheses in return statements.
Cosmetic: don't open-code TAILQ_FOREACH().
Cosmetic: change types of variables to avoid oodles of casts: in
in6_src.c, avoid casts by changing several route_in6 pointers
to struct route pointers. Remove unnecessary casts to caddr_t
elsewhere.
Pave the way for eliminating address family-specific route caches:
soon, struct route will not embed a sockaddr, but it will hold
a reference to an external sockaddr, instead. We will set the
destination sockaddr using rtcache_setdst(). (I created a stub
for it, but it isn't used anywhere, yet.) rtcache_free() will
free the sockaddr. I have extracted from rtcache_free() a helper
subroutine, rtcache_clear(). rtcache_clear() will "forget" a
cached route, but it will not forget the destination by releasing
the sockaddr. I use rtcache_clear() instead of rtcache_free()
in rtcache_update(), because rtcache_update() is not supposed
to forget the destination.
Constify:
1 Introduce const accessor for route->ro_dst, rtcache_getdst().
2 Constify the 'dst' argument to ifnet->if_output(). This
led me to constify a lot of code called by output routines.
3 Constify the sockaddr argument to protosw->pr_ctlinput. This
led me to constify a lot of code called by ctlinput routines.
4 Introduce const macros for converting from a generic sockaddr
to family-specific sockaddrs, e.g., sockaddr_in: satocsin6,
satocsin, et cetera.
2007-02-18 01:34:07 +03:00
|
|
|
const struct sockaddr *, u_char *);
|
2004-04-21 21:49:46 +04:00
|
|
|
void arpintr(void);
|
KNF: de-__P, bzero -> memset, bcmp -> memcmp. Remove extraneous
parentheses in return statements.
Cosmetic: don't open-code TAILQ_FOREACH().
Cosmetic: change types of variables to avoid oodles of casts: in
in6_src.c, avoid casts by changing several route_in6 pointers
to struct route pointers. Remove unnecessary casts to caddr_t
elsewhere.
Pave the way for eliminating address family-specific route caches:
soon, struct route will not embed a sockaddr, but it will hold
a reference to an external sockaddr, instead. We will set the
destination sockaddr using rtcache_setdst(). (I created a stub
for it, but it isn't used anywhere, yet.) rtcache_free() will
free the sockaddr. I have extracted from rtcache_free() a helper
subroutine, rtcache_clear(). rtcache_clear() will "forget" a
cached route, but it will not forget the destination by releasing
the sockaddr. I use rtcache_clear() instead of rtcache_free()
in rtcache_update(), because rtcache_update() is not supposed
to forget the destination.
Constify:
1 Introduce const accessor for route->ro_dst, rtcache_getdst().
2 Constify the 'dst' argument to ifnet->if_output(). This
led me to constify a lot of code called by output routines.
3 Constify the sockaddr argument to protosw->pr_ctlinput. This
led me to constify a lot of code called by ctlinput routines.
4 Introduce const macros for converting from a generic sockaddr
to family-specific sockaddrs, e.g., sockaddr_in: satocsin6,
satocsin, et cetera.
2007-02-18 01:34:07 +03:00
|
|
|
void arprequest(struct ifnet *, const struct in_addr *, const struct in_addr *,
|
|
|
|
const u_int8_t *);
|
2008-04-15 19:17:54 +04:00
|
|
|
void arp_init(void);
|
2004-04-21 21:49:46 +04:00
|
|
|
void arp_drain(void);
|
2007-03-04 08:59:00 +03:00
|
|
|
int arpioctl(u_long, void *);
|
2004-04-21 21:49:46 +04:00
|
|
|
void arpwhohas(struct ifnet *, struct in_addr *);
|
1997-03-15 21:09:08 +03:00
|
|
|
|
2004-04-21 21:49:46 +04:00
|
|
|
void revarpinput(struct mbuf *);
|
|
|
|
void in_revarpinput(struct mbuf *);
|
|
|
|
void revarprequest(struct ifnet *);
|
|
|
|
int revarpwhoarewe(struct ifnet *, struct in_addr *, struct in_addr *);
|
1997-01-17 11:17:57 +03:00
|
|
|
#endif
|
1998-02-10 04:26:19 +03:00
|
|
|
|
2005-12-11 02:31:41 +03:00
|
|
|
#endif /* !_NETINET_IF_INARP_H_ */
|