#ifndef _NETINET6_ND6_H_
#define _NETINET6_ND6_H_
#define ND6_LLINFO_PURGE -3
#define ND6_LLINFO_NOSTATE -2
#define ND6_LLINFO_INCOMPLETE 0
#define ND6_LLINFO_REACHABLE 1
#define ND6_LLINFO_STALE 2
#define ND6_LLINFO_DELAY 3
#define ND6_LLINFO_PROBE 4
struct nd_ifinfo {
u_int32_t reachable;
int recalctm;
};
struct in6_nbrinfo {
char ifname[IFNAMSIZ];
struct in6_addr addr;
time_t expire;
long asked;
int isrouter;
int state;
};
struct in6_ndireq {
char ifname[IFNAMSIZ];
struct nd_ifinfo ndi;
};
#define MAX_RTR_SOLICITATION_DELAY 1
#define RTR_SOLICITATION_INTERVAL 4
#define MAX_RTR_SOLICITATIONS 3
#define ND6_INFINITE_LIFETIME 0xffffffff
#ifdef _KERNEL
#include <sys/queue.h>
struct llinfo_nd6 {
TAILQ_ENTRY(llinfo_nd6) ln_list;
struct rtentry *ln_rt;
struct refcnt ln_refcnt;
struct mbuf_queue ln_mq;
struct in6_addr ln_saddr6;
long ln_asked;
short ln_state;
short ln_router;
};
#define LN_HOLD_QUEUE 10
#define LN_HOLD_TOTAL 100
struct llinfo_nd6_iterator {
TAILQ_ENTRY(llinfo_nd6) ln_list;
struct rtentry *ln_rt;
};
extern unsigned int ln_hold_total;
#define ND6_LLINFO_PERMANENT(n) ((n)->ln_rt->rt_expire == 0)
#define REACHABLE_TIME 30000
#define RETRANS_TIMER 1000
#define MIN_RANDOM_FACTOR 512
#define MAX_RANDOM_FACTOR 1536
#define ND_COMPUTE_RTIME(x) \
(((MIN_RANDOM_FACTOR * (x >> 10)) + (arc4random() & \
((MAX_RANDOM_FACTOR - MIN_RANDOM_FACTOR) * (x >> 10)))) /1000)
extern int nd6_delay;
extern int nd6_umaxtries;
extern int nd6_mmaxtries;
extern const int nd6_gctimer;
struct nd_opts {
struct nd_opt_hdr *nd_opts_src_lladdr;
struct nd_opt_hdr *nd_opts_tgt_lladdr;
};
void nd6_init(void);
void nd6_ifattach(struct ifnet *);
void nd6_ifdetach(struct ifnet *);
int nd6_is_addr_neighbor(const struct sockaddr_in6 *, struct ifnet *);
int nd6_options(void *, int, struct nd_opts *);
struct rtentry *nd6_lookup(const struct in6_addr *, int, struct ifnet *,
u_int);
void nd6_llinfo_settimer(const struct llinfo_nd6 *, unsigned int);
void nd6_purge(struct ifnet *);
void nd6_rtrequest(struct ifnet *, int, struct rtentry *);
int nd6_ioctl(u_long, caddr_t, struct ifnet *);
void nd6_cache_lladdr(struct ifnet *, const struct in6_addr *, char *,
int, int, int, int);
int nd6_resolve(struct ifnet *, struct rtentry *, struct mbuf *,
struct sockaddr *, u_char *);
int nd6_need_cache(struct ifnet *);
void nd6_na_input(struct mbuf *, int, int);
void nd6_na_output(struct ifnet *, const struct in6_addr *,
const struct in6_addr *, u_long, int, struct sockaddr *);
void nd6_ns_input(struct mbuf *, int, int);
void nd6_ns_output(struct ifnet *, const struct in6_addr *,
const struct in6_addr *, const struct in6_addr *, int);
caddr_t nd6_ifptomac(struct ifnet *);
void nd6_dad_start(struct ifaddr *);
void nd6_dad_stop(struct ifaddr *);
void nd6_rtr_cache(struct mbuf *, int, int, int);
int rt6_flush(struct in6_addr *, struct ifnet *);
void nd6_expire_timer_update(struct in6_ifaddr *);
#endif
#endif