NetBSD/sys/netinet/Makefile

28 lines
785 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.18 2007/05/02 22:39:03 dyoung Exp $
INCSDIR= /usr/include/netinet
INCS= icmp6.h icmp_var.h if_atm.h if_ether.h if_inarp.h igmp.h \
Here are various changes designed to protect against bad IPv4 routing caused by stale route caches (struct route). Route caches are sprinkled throughout PCBs, the IP fast-forwarding table, and IP tunnel interfaces (gre, gif, stf). Stale IPv6 and ISO route caches will be treated by separate patches. Thank you to Christoph Badura for suggesting the general approach to invalidating route caches that I take here. Here are the details: Add hooks to struct domain for tracking and for invalidating each domain's route caches: dom_rtcache, dom_rtflush, and dom_rtflushall. Introduce helper subroutines, rtflush(ro) for invalidating a route cache, rtflushall(family) for invalidating all route caches in a routing domain, and rtcache(ro) for notifying the domain of a new cached route. Chain together all IPv4 route caches where ro_rt != NULL. Provide in_rtcache() for adding a route to the chain. Provide in_rtflush() and in_rtflushall() for invalidating IPv4 route caches. In in_rtflush(), set ro_rt to NULL, and remove the route from the chain. In in_rtflushall(), walk the chain and remove every route cache. In rtrequest1(), call rtflushall() to invalidate route caches when a route is added. In gif(4), discard the workaround for stale caches that involves expiring them every so often. Replace the pattern 'RTFREE(ro->ro_rt); ro->ro_rt = NULL;' with a call to rtflush(ro). Update ipflow_fastforward() and all other users of route caches so that they expect a cached route, ro->ro_rt, to turn to NULL. Take care when moving a 'struct route' to rtflush() the source and to rtcache() the destination. In domain initializers, use .dom_xxx tags. KNF here and there.
2006-12-09 08:33:04 +03:00
igmp_var.h in.h in_gif.h in_pcb.h in_pcb_hdr.h \
in_selsrc.h in_systm.h \
in_var.h ip.h ip_carp.h ip6.h ip_ecn.h ip_encap.h ip_gre.h \
ip_icmp.h ip_mroute.h ip_var.h pim.h pim_var.h \
tcp.h tcp_debug.h tcp_fsm.h tcp_seq.h tcp_timer.h tcp_var.h \
tcpip.h udp.h udp_var.h
2004-10-05 08:55:48 +04:00
# ipfilter headers
# XXX shouldn't be here
.include <bsd.own.mk>
INCS+= ip_compat.h # always needed by kdump(1)
.if (${MKIPFILTER} != "no")
INCS+= ip_auth.h ip_fil.h ip_frag.h ip_htable.h ip_nat.h \
ip_lookup.h ip_pool.h ip_proxy.h ip_scan.h ip_state.h ip_sync.h \
ipl.h
.endif
.include <bsd.kinc.mk>
.PATH: ${NETBSDSRCDIR}/sys/dist/ipf/netinet