11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * net/dst.h Protocol independent destination cache definitions. 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> 51da177e4SLinus Torvalds * 61da177e4SLinus Torvalds */ 71da177e4SLinus Torvalds 81da177e4SLinus Torvalds #ifndef _NET_DST_H 91da177e4SLinus Torvalds #define _NET_DST_H 101da177e4SLinus Torvalds 1186393e52SAlexey Dobriyan #include <net/dst_ops.h> 1214c85021SArnaldo Carvalho de Melo #include <linux/netdevice.h> 131da177e4SLinus Torvalds #include <linux/rtnetlink.h> 141da177e4SLinus Torvalds #include <linux/rcupdate.h> 15187f1882SPaul Gortmaker #include <linux/bug.h> 161da177e4SLinus Torvalds #include <linux/jiffies.h> 171da177e4SLinus Torvalds #include <net/neighbour.h> 181da177e4SLinus Torvalds #include <asm/processor.h> 191da177e4SLinus Torvalds 201da177e4SLinus Torvalds #define DST_GC_MIN (HZ/10) 211da177e4SLinus Torvalds #define DST_GC_INC (HZ/2) 221da177e4SLinus Torvalds #define DST_GC_MAX (120*HZ) 231da177e4SLinus Torvalds 241da177e4SLinus Torvalds /* Each dst_entry has reference count and sits in some parent list(s). 251da177e4SLinus Torvalds * When it is removed from parent list, it is "freed" (dst_free). 261da177e4SLinus Torvalds * After this it enters dead state (dst->obsolete > 0) and if its refcnt 271da177e4SLinus Torvalds * is zero, it can be destroyed immediately, otherwise it is added 281da177e4SLinus Torvalds * to gc list and garbage collector periodically checks the refcnt. 291da177e4SLinus Torvalds */ 301da177e4SLinus Torvalds 311da177e4SLinus Torvalds struct sk_buff; 321da177e4SLinus Torvalds 33fd2c3ef7SEric Dumazet struct dst_entry { 341e19e02cSEric Dumazet struct rcu_head rcu_head; 351da177e4SLinus Torvalds struct dst_entry *child; 361da177e4SLinus Torvalds struct net_device *dev; 3762fa8a84SDavid S. Miller struct dst_ops *ops; 3862fa8a84SDavid S. Miller unsigned long _metrics; 391716a961SGao feng union { 401da177e4SLinus Torvalds unsigned long expires; 411716a961SGao feng /* point to where the dst_entry copied from */ 421716a961SGao feng struct dst_entry *from; 431716a961SGao feng }; 44f1dd9c37SZhang Yanmin struct dst_entry *path; 45f2c31e32SEric Dumazet struct neighbour __rcu *_neighbour; 46def8b4faSAlexey Dobriyan #ifdef CONFIG_XFRM 471da177e4SLinus Torvalds struct xfrm_state *xfrm; 485635c10dSEric Dumazet #else 495635c10dSEric Dumazet void *__pad1; 50def8b4faSAlexey Dobriyan #endif 511da177e4SLinus Torvalds int (*input)(struct sk_buff*); 521da177e4SLinus Torvalds int (*output)(struct sk_buff*); 531da177e4SLinus Torvalds 54f6b72b62SDavid S. Miller int flags; 55f6b72b62SDavid S. Miller #define DST_HOST 0x0001 56f6b72b62SDavid S. Miller #define DST_NOXFRM 0x0002 57f6b72b62SDavid S. Miller #define DST_NOPOLICY 0x0004 58f6b72b62SDavid S. Miller #define DST_NOHASH 0x0008 59f6b72b62SDavid S. Miller #define DST_NOCACHE 0x0010 60f6b72b62SDavid S. Miller #define DST_NOCOUNT 0x0020 61e688a604SEric Dumazet #define DST_NOPEER 0x0040 62a881e963SPeter Huang (Peng) #define DST_FAKE_RTABLE 0x0080 63*0c183379SGao feng #define DST_XFRM_TUNNEL 0x0100 64f6b72b62SDavid S. Miller 6562fa8a84SDavid S. Miller short error; 6662fa8a84SDavid S. Miller short obsolete; 6762fa8a84SDavid S. Miller unsigned short header_len; /* more space at head required */ 6862fa8a84SDavid S. Miller unsigned short trailer_len; /* space to reserve at tail */ 69c7066f70SPatrick McHardy #ifdef CONFIG_IP_ROUTE_CLASSID 70f1dd9c37SZhang Yanmin __u32 tclassid; 715635c10dSEric Dumazet #else 725635c10dSEric Dumazet __u32 __pad2; 73f1dd9c37SZhang Yanmin #endif 74f1dd9c37SZhang Yanmin 755635c10dSEric Dumazet /* 765635c10dSEric Dumazet * Align __refcnt to a 64 bytes alignment 775635c10dSEric Dumazet * (L1_CACHE_SIZE would be too much) 785635c10dSEric Dumazet */ 795635c10dSEric Dumazet #ifdef CONFIG_64BIT 80f6b72b62SDavid S. Miller long __pad_to_align_refcnt[2]; 815635c10dSEric Dumazet #endif 82f1dd9c37SZhang Yanmin /* 83f1dd9c37SZhang Yanmin * __refcnt wants to be on a different cache line from 84f1dd9c37SZhang Yanmin * input/output/ops or performance tanks badly 85f1dd9c37SZhang Yanmin */ 861e19e02cSEric Dumazet atomic_t __refcnt; /* client references */ 871e19e02cSEric Dumazet int __use; 88f1dd9c37SZhang Yanmin unsigned long lastuse; 891e19e02cSEric Dumazet union { 901e19e02cSEric Dumazet struct dst_entry *next; 911c31720aSEric Dumazet struct rtable __rcu *rt_next; 921e19e02cSEric Dumazet struct rt6_info *rt6_next; 93fc766e4cSEric Dumazet struct dn_route __rcu *dn_next; 941e19e02cSEric Dumazet }; 951da177e4SLinus Torvalds }; 961da177e4SLinus Torvalds 9727217455SDavid Miller static inline struct neighbour *dst_get_neighbour_noref(struct dst_entry *dst) 9869cce1d1SDavid S. Miller { 99f2c31e32SEric Dumazet return rcu_dereference(dst->_neighbour); 100f2c31e32SEric Dumazet } 101f2c31e32SEric Dumazet 10227217455SDavid Miller static inline struct neighbour *dst_get_neighbour_noref_raw(struct dst_entry *dst) 103f2c31e32SEric Dumazet { 104f2c31e32SEric Dumazet return rcu_dereference_raw(dst->_neighbour); 10569cce1d1SDavid S. Miller } 10669cce1d1SDavid S. Miller 10769cce1d1SDavid S. Miller static inline void dst_set_neighbour(struct dst_entry *dst, struct neighbour *neigh) 10869cce1d1SDavid S. Miller { 109f2c31e32SEric Dumazet rcu_assign_pointer(dst->_neighbour, neigh); 11069cce1d1SDavid S. Miller } 11169cce1d1SDavid S. Miller 11262fa8a84SDavid S. Miller extern u32 *dst_cow_metrics_generic(struct dst_entry *dst, unsigned long old); 113725d1e1bSDavid S. Miller extern const u32 dst_default_metrics[RTAX_MAX]; 11462fa8a84SDavid S. Miller 11562fa8a84SDavid S. Miller #define DST_METRICS_READ_ONLY 0x1UL 11662fa8a84SDavid S. Miller #define __DST_METRICS_PTR(Y) \ 11762fa8a84SDavid S. Miller ((u32 *)((Y) & ~DST_METRICS_READ_ONLY)) 11862fa8a84SDavid S. Miller #define DST_METRICS_PTR(X) __DST_METRICS_PTR((X)->_metrics) 11962fa8a84SDavid S. Miller 12062fa8a84SDavid S. Miller static inline bool dst_metrics_read_only(const struct dst_entry *dst) 12162fa8a84SDavid S. Miller { 12262fa8a84SDavid S. Miller return dst->_metrics & DST_METRICS_READ_ONLY; 12362fa8a84SDavid S. Miller } 12462fa8a84SDavid S. Miller 12562fa8a84SDavid S. Miller extern void __dst_destroy_metrics_generic(struct dst_entry *dst, unsigned long old); 12662fa8a84SDavid S. Miller 12762fa8a84SDavid S. Miller static inline void dst_destroy_metrics_generic(struct dst_entry *dst) 12862fa8a84SDavid S. Miller { 12962fa8a84SDavid S. Miller unsigned long val = dst->_metrics; 13062fa8a84SDavid S. Miller if (!(val & DST_METRICS_READ_ONLY)) 13162fa8a84SDavid S. Miller __dst_destroy_metrics_generic(dst, val); 13262fa8a84SDavid S. Miller } 13362fa8a84SDavid S. Miller 13462fa8a84SDavid S. Miller static inline u32 *dst_metrics_write_ptr(struct dst_entry *dst) 13562fa8a84SDavid S. Miller { 13662fa8a84SDavid S. Miller unsigned long p = dst->_metrics; 13762fa8a84SDavid S. Miller 1381f37070dSStephen Hemminger BUG_ON(!p); 1391f37070dSStephen Hemminger 14062fa8a84SDavid S. Miller if (p & DST_METRICS_READ_ONLY) 14162fa8a84SDavid S. Miller return dst->ops->cow_metrics(dst, p); 14262fa8a84SDavid S. Miller return __DST_METRICS_PTR(p); 14362fa8a84SDavid S. Miller } 14462fa8a84SDavid S. Miller 14562fa8a84SDavid S. Miller /* This may only be invoked before the entry has reached global 14662fa8a84SDavid S. Miller * visibility. 14762fa8a84SDavid S. Miller */ 14862fa8a84SDavid S. Miller static inline void dst_init_metrics(struct dst_entry *dst, 14962fa8a84SDavid S. Miller const u32 *src_metrics, 15062fa8a84SDavid S. Miller bool read_only) 15162fa8a84SDavid S. Miller { 15262fa8a84SDavid S. Miller dst->_metrics = ((unsigned long) src_metrics) | 15362fa8a84SDavid S. Miller (read_only ? DST_METRICS_READ_ONLY : 0); 15462fa8a84SDavid S. Miller } 15562fa8a84SDavid S. Miller 15662fa8a84SDavid S. Miller static inline void dst_copy_metrics(struct dst_entry *dest, const struct dst_entry *src) 15762fa8a84SDavid S. Miller { 15862fa8a84SDavid S. Miller u32 *dst_metrics = dst_metrics_write_ptr(dest); 15962fa8a84SDavid S. Miller 16062fa8a84SDavid S. Miller if (dst_metrics) { 16162fa8a84SDavid S. Miller u32 *src_metrics = DST_METRICS_PTR(src); 16262fa8a84SDavid S. Miller 16362fa8a84SDavid S. Miller memcpy(dst_metrics, src_metrics, RTAX_MAX * sizeof(u32)); 16462fa8a84SDavid S. Miller } 16562fa8a84SDavid S. Miller } 16662fa8a84SDavid S. Miller 16762fa8a84SDavid S. Miller static inline u32 *dst_metrics_ptr(struct dst_entry *dst) 16862fa8a84SDavid S. Miller { 16962fa8a84SDavid S. Miller return DST_METRICS_PTR(dst); 17062fa8a84SDavid S. Miller } 17162fa8a84SDavid S. Miller 1721da177e4SLinus Torvalds static inline u32 1735170ae82SDavid S. Miller dst_metric_raw(const struct dst_entry *dst, const int metric) 1741da177e4SLinus Torvalds { 17562fa8a84SDavid S. Miller u32 *p = DST_METRICS_PTR(dst); 17662fa8a84SDavid S. Miller 17762fa8a84SDavid S. Miller return p[metric-1]; 178defb3519SDavid S. Miller } 179defb3519SDavid S. Miller 1805170ae82SDavid S. Miller static inline u32 1815170ae82SDavid S. Miller dst_metric(const struct dst_entry *dst, const int metric) 1825170ae82SDavid S. Miller { 1830dbaee3bSDavid S. Miller WARN_ON_ONCE(metric == RTAX_HOPLIMIT || 184d33e4553SDavid S. Miller metric == RTAX_ADVMSS || 185d33e4553SDavid S. Miller metric == RTAX_MTU); 1865170ae82SDavid S. Miller return dst_metric_raw(dst, metric); 1875170ae82SDavid S. Miller } 1885170ae82SDavid S. Miller 1890dbaee3bSDavid S. Miller static inline u32 1900dbaee3bSDavid S. Miller dst_metric_advmss(const struct dst_entry *dst) 1910dbaee3bSDavid S. Miller { 1920dbaee3bSDavid S. Miller u32 advmss = dst_metric_raw(dst, RTAX_ADVMSS); 1930dbaee3bSDavid S. Miller 1940dbaee3bSDavid S. Miller if (!advmss) 1950dbaee3bSDavid S. Miller advmss = dst->ops->default_advmss(dst); 1960dbaee3bSDavid S. Miller 1970dbaee3bSDavid S. Miller return advmss; 1980dbaee3bSDavid S. Miller } 1990dbaee3bSDavid S. Miller 200defb3519SDavid S. Miller static inline void dst_metric_set(struct dst_entry *dst, int metric, u32 val) 201defb3519SDavid S. Miller { 20262fa8a84SDavid S. Miller u32 *p = dst_metrics_write_ptr(dst); 203defb3519SDavid S. Miller 20462fa8a84SDavid S. Miller if (p) 20562fa8a84SDavid S. Miller p[metric-1] = val; 2061da177e4SLinus Torvalds } 2071da177e4SLinus Torvalds 2080c3adfb8SGilad Ben-Yossef static inline u32 2090c3adfb8SGilad Ben-Yossef dst_feature(const struct dst_entry *dst, u32 feature) 2100c3adfb8SGilad Ben-Yossef { 211bb5b7c11SDavid S. Miller return dst_metric(dst, RTAX_FEATURES) & feature; 2120c3adfb8SGilad Ben-Yossef } 2130c3adfb8SGilad Ben-Yossef 2141da177e4SLinus Torvalds static inline u32 dst_mtu(const struct dst_entry *dst) 2151da177e4SLinus Torvalds { 216618f9bc7SSteffen Klassert return dst->ops->mtu(dst); 2171da177e4SLinus Torvalds } 2181da177e4SLinus Torvalds 219c1e20f7cSStephen Hemminger /* RTT metrics are stored in milliseconds for user ABI, but used as jiffies */ 220c1e20f7cSStephen Hemminger static inline unsigned long dst_metric_rtt(const struct dst_entry *dst, int metric) 221c1e20f7cSStephen Hemminger { 222c1e20f7cSStephen Hemminger return msecs_to_jiffies(dst_metric(dst, metric)); 223c1e20f7cSStephen Hemminger } 224c1e20f7cSStephen Hemminger 225c1e20f7cSStephen Hemminger static inline void set_dst_metric_rtt(struct dst_entry *dst, int metric, 226c1e20f7cSStephen Hemminger unsigned long rtt) 227c1e20f7cSStephen Hemminger { 228defb3519SDavid S. Miller dst_metric_set(dst, metric, jiffies_to_msecs(rtt)); 229c1e20f7cSStephen Hemminger } 230c1e20f7cSStephen Hemminger 2311da177e4SLinus Torvalds static inline u32 2321da177e4SLinus Torvalds dst_allfrag(const struct dst_entry *dst) 2331da177e4SLinus Torvalds { 2340c3adfb8SGilad Ben-Yossef int ret = dst_feature(dst, RTAX_FEATURE_ALLFRAG); 2351da177e4SLinus Torvalds return ret; 2361da177e4SLinus Torvalds } 2371da177e4SLinus Torvalds 2381da177e4SLinus Torvalds static inline int 239d33e4553SDavid S. Miller dst_metric_locked(const struct dst_entry *dst, int metric) 2401da177e4SLinus Torvalds { 2411da177e4SLinus Torvalds return dst_metric(dst, RTAX_LOCK) & (1<<metric); 2421da177e4SLinus Torvalds } 2431da177e4SLinus Torvalds 2441da177e4SLinus Torvalds static inline void dst_hold(struct dst_entry * dst) 2451da177e4SLinus Torvalds { 2465635c10dSEric Dumazet /* 2475635c10dSEric Dumazet * If your kernel compilation stops here, please check 2485635c10dSEric Dumazet * __pad_to_align_refcnt declaration in struct dst_entry 2495635c10dSEric Dumazet */ 2505635c10dSEric Dumazet BUILD_BUG_ON(offsetof(struct dst_entry, __refcnt) & 63); 2511da177e4SLinus Torvalds atomic_inc(&dst->__refcnt); 2521da177e4SLinus Torvalds } 2531da177e4SLinus Torvalds 25403f49f34SPavel Emelyanov static inline void dst_use(struct dst_entry *dst, unsigned long time) 25503f49f34SPavel Emelyanov { 25603f49f34SPavel Emelyanov dst_hold(dst); 25703f49f34SPavel Emelyanov dst->__use++; 25803f49f34SPavel Emelyanov dst->lastuse = time; 25903f49f34SPavel Emelyanov } 26003f49f34SPavel Emelyanov 2617fee226aSEric Dumazet static inline void dst_use_noref(struct dst_entry *dst, unsigned long time) 2627fee226aSEric Dumazet { 2637fee226aSEric Dumazet dst->__use++; 2647fee226aSEric Dumazet dst->lastuse = time; 2657fee226aSEric Dumazet } 2667fee226aSEric Dumazet 2671da177e4SLinus Torvalds static inline 2681da177e4SLinus Torvalds struct dst_entry * dst_clone(struct dst_entry * dst) 2691da177e4SLinus Torvalds { 2701da177e4SLinus Torvalds if (dst) 2711da177e4SLinus Torvalds atomic_inc(&dst->__refcnt); 2721da177e4SLinus Torvalds return dst; 2731da177e4SLinus Torvalds } 2741da177e4SLinus Torvalds 2758d330868SIlpo Järvinen extern void dst_release(struct dst_entry *dst); 2767fee226aSEric Dumazet 2777fee226aSEric Dumazet static inline void refdst_drop(unsigned long refdst) 2787fee226aSEric Dumazet { 2797fee226aSEric Dumazet if (!(refdst & SKB_DST_NOREF)) 2807fee226aSEric Dumazet dst_release((struct dst_entry *)(refdst & SKB_DST_PTRMASK)); 2817fee226aSEric Dumazet } 2827fee226aSEric Dumazet 2837fee226aSEric Dumazet /** 2847fee226aSEric Dumazet * skb_dst_drop - drops skb dst 2857fee226aSEric Dumazet * @skb: buffer 2867fee226aSEric Dumazet * 2877fee226aSEric Dumazet * Drops dst reference count if a reference was taken. 2887fee226aSEric Dumazet */ 289adf30907SEric Dumazet static inline void skb_dst_drop(struct sk_buff *skb) 290adf30907SEric Dumazet { 2917fee226aSEric Dumazet if (skb->_skb_refdst) { 2927fee226aSEric Dumazet refdst_drop(skb->_skb_refdst); 2937fee226aSEric Dumazet skb->_skb_refdst = 0UL; 2947fee226aSEric Dumazet } 2957fee226aSEric Dumazet } 2967fee226aSEric Dumazet 2977fee226aSEric Dumazet static inline void skb_dst_copy(struct sk_buff *nskb, const struct sk_buff *oskb) 2987fee226aSEric Dumazet { 2997fee226aSEric Dumazet nskb->_skb_refdst = oskb->_skb_refdst; 3007fee226aSEric Dumazet if (!(nskb->_skb_refdst & SKB_DST_NOREF)) 3017fee226aSEric Dumazet dst_clone(skb_dst(nskb)); 3027fee226aSEric Dumazet } 3037fee226aSEric Dumazet 3047fee226aSEric Dumazet /** 3057fee226aSEric Dumazet * skb_dst_force - makes sure skb dst is refcounted 3067fee226aSEric Dumazet * @skb: buffer 3077fee226aSEric Dumazet * 3087fee226aSEric Dumazet * If dst is not yet refcounted, let's do it 3097fee226aSEric Dumazet */ 3107fee226aSEric Dumazet static inline void skb_dst_force(struct sk_buff *skb) 3117fee226aSEric Dumazet { 3127fee226aSEric Dumazet if (skb_dst_is_noref(skb)) { 3137fee226aSEric Dumazet WARN_ON(!rcu_read_lock_held()); 3147fee226aSEric Dumazet skb->_skb_refdst &= ~SKB_DST_NOREF; 3157fee226aSEric Dumazet dst_clone(skb_dst(skb)); 3167fee226aSEric Dumazet } 317adf30907SEric Dumazet } 3181da177e4SLinus Torvalds 319d19d56ddSEric Dumazet 320d19d56ddSEric Dumazet /** 321290b895eSEric Dumazet * __skb_tunnel_rx - prepare skb for rx reinsert 322290b895eSEric Dumazet * @skb: buffer 323290b895eSEric Dumazet * @dev: tunnel device 324290b895eSEric Dumazet * 325290b895eSEric Dumazet * After decapsulation, packet is going to re-enter (netif_rx()) our stack, 326290b895eSEric Dumazet * so make some cleanups. (no accounting done) 327290b895eSEric Dumazet */ 328290b895eSEric Dumazet static inline void __skb_tunnel_rx(struct sk_buff *skb, struct net_device *dev) 329290b895eSEric Dumazet { 330290b895eSEric Dumazet skb->dev = dev; 331bdeab991STom Herbert 332bdeab991STom Herbert /* 333bdeab991STom Herbert * Clear rxhash so that we can recalulate the hash for the 334bdeab991STom Herbert * encapsulated packet, unless we have already determine the hash 335bdeab991STom Herbert * over the L4 4-tuple. 336bdeab991STom Herbert */ 337bdeab991STom Herbert if (!skb->l4_rxhash) 338290b895eSEric Dumazet skb->rxhash = 0; 339290b895eSEric Dumazet skb_set_queue_mapping(skb, 0); 340290b895eSEric Dumazet skb_dst_drop(skb); 341290b895eSEric Dumazet nf_reset(skb); 342290b895eSEric Dumazet } 343290b895eSEric Dumazet 344290b895eSEric Dumazet /** 345d19d56ddSEric Dumazet * skb_tunnel_rx - prepare skb for rx reinsert 346d19d56ddSEric Dumazet * @skb: buffer 347d19d56ddSEric Dumazet * @dev: tunnel device 348d19d56ddSEric Dumazet * 349d19d56ddSEric Dumazet * After decapsulation, packet is going to re-enter (netif_rx()) our stack, 350d19d56ddSEric Dumazet * so make some cleanups, and perform accounting. 351290b895eSEric Dumazet * Note: this accounting is not SMP safe. 352d19d56ddSEric Dumazet */ 353d19d56ddSEric Dumazet static inline void skb_tunnel_rx(struct sk_buff *skb, struct net_device *dev) 354d19d56ddSEric Dumazet { 355d19d56ddSEric Dumazet /* TODO : stats should be SMP safe */ 356d19d56ddSEric Dumazet dev->stats.rx_packets++; 357d19d56ddSEric Dumazet dev->stats.rx_bytes += skb->len; 358290b895eSEric Dumazet __skb_tunnel_rx(skb, dev); 359d19d56ddSEric Dumazet } 360d19d56ddSEric Dumazet 3611da177e4SLinus Torvalds /* Children define the path of the packet through the 3621da177e4SLinus Torvalds * Linux networking. Thus, destinations are stackable. 3631da177e4SLinus Torvalds */ 3641da177e4SLinus Torvalds 3658764ab2cSSteffen Klassert static inline struct dst_entry *skb_dst_pop(struct sk_buff *skb) 3661da177e4SLinus Torvalds { 367e433430aSSteffen Klassert struct dst_entry *child = dst_clone(skb_dst(skb)->child); 3681da177e4SLinus Torvalds 3698764ab2cSSteffen Klassert skb_dst_drop(skb); 3701da177e4SLinus Torvalds return child; 3711da177e4SLinus Torvalds } 3721da177e4SLinus Torvalds 373352e512cSHerbert Xu extern int dst_discard(struct sk_buff *skb); 3745c1e6aa3SDavid S. Miller extern void *dst_alloc(struct dst_ops * ops, struct net_device *dev, 3755c1e6aa3SDavid S. Miller int initial_ref, int initial_obsolete, int flags); 3761da177e4SLinus Torvalds extern void __dst_free(struct dst_entry * dst); 3771da177e4SLinus Torvalds extern struct dst_entry *dst_destroy(struct dst_entry * dst); 3781da177e4SLinus Torvalds 3791da177e4SLinus Torvalds static inline void dst_free(struct dst_entry * dst) 3801da177e4SLinus Torvalds { 3811da177e4SLinus Torvalds if (dst->obsolete > 1) 3821da177e4SLinus Torvalds return; 3831da177e4SLinus Torvalds if (!atomic_read(&dst->__refcnt)) { 3841da177e4SLinus Torvalds dst = dst_destroy(dst); 3851da177e4SLinus Torvalds if (!dst) 3861da177e4SLinus Torvalds return; 3871da177e4SLinus Torvalds } 3881da177e4SLinus Torvalds __dst_free(dst); 3891da177e4SLinus Torvalds } 3901da177e4SLinus Torvalds 3911da177e4SLinus Torvalds static inline void dst_rcu_free(struct rcu_head *head) 3921da177e4SLinus Torvalds { 3931da177e4SLinus Torvalds struct dst_entry *dst = container_of(head, struct dst_entry, rcu_head); 3941da177e4SLinus Torvalds dst_free(dst); 3951da177e4SLinus Torvalds } 3961da177e4SLinus Torvalds 3971da177e4SLinus Torvalds static inline void dst_confirm(struct dst_entry *dst) 3981da177e4SLinus Torvalds { 39969cce1d1SDavid S. Miller if (dst) { 400f2c31e32SEric Dumazet struct neighbour *n; 401f2c31e32SEric Dumazet 402f2c31e32SEric Dumazet rcu_read_lock(); 40327217455SDavid Miller n = dst_get_neighbour_noref(dst); 40469cce1d1SDavid S. Miller neigh_confirm(n); 405f2c31e32SEric Dumazet rcu_read_unlock(); 40669cce1d1SDavid S. Miller } 4071da177e4SLinus Torvalds } 4081da177e4SLinus Torvalds 409d3aaeb38SDavid S. Miller static inline struct neighbour *dst_neigh_lookup(const struct dst_entry *dst, const void *daddr) 410d3aaeb38SDavid S. Miller { 411d3aaeb38SDavid S. Miller return dst->ops->neigh_lookup(dst, daddr); 412d3aaeb38SDavid S. Miller } 413d3aaeb38SDavid S. Miller 4141da177e4SLinus Torvalds static inline void dst_link_failure(struct sk_buff *skb) 4151da177e4SLinus Torvalds { 416adf30907SEric Dumazet struct dst_entry *dst = skb_dst(skb); 4171da177e4SLinus Torvalds if (dst && dst->ops && dst->ops->link_failure) 4181da177e4SLinus Torvalds dst->ops->link_failure(skb); 4191da177e4SLinus Torvalds } 4201da177e4SLinus Torvalds 4211da177e4SLinus Torvalds static inline void dst_set_expires(struct dst_entry *dst, int timeout) 4221da177e4SLinus Torvalds { 4231da177e4SLinus Torvalds unsigned long expires = jiffies + timeout; 4241da177e4SLinus Torvalds 4251da177e4SLinus Torvalds if (expires == 0) 4261da177e4SLinus Torvalds expires = 1; 4271da177e4SLinus Torvalds 4281da177e4SLinus Torvalds if (dst->expires == 0 || time_before(expires, dst->expires)) 4291da177e4SLinus Torvalds dst->expires = expires; 4301da177e4SLinus Torvalds } 4311da177e4SLinus Torvalds 4321da177e4SLinus Torvalds /* Output packet to network from transport. */ 4331da177e4SLinus Torvalds static inline int dst_output(struct sk_buff *skb) 4341da177e4SLinus Torvalds { 435adf30907SEric Dumazet return skb_dst(skb)->output(skb); 4361da177e4SLinus Torvalds } 4371da177e4SLinus Torvalds 4381da177e4SLinus Torvalds /* Input packet from network to transport. */ 4391da177e4SLinus Torvalds static inline int dst_input(struct sk_buff *skb) 4401da177e4SLinus Torvalds { 441adf30907SEric Dumazet return skb_dst(skb)->input(skb); 4421da177e4SLinus Torvalds } 4431da177e4SLinus Torvalds 4441da177e4SLinus Torvalds static inline struct dst_entry *dst_check(struct dst_entry *dst, u32 cookie) 4451da177e4SLinus Torvalds { 4461da177e4SLinus Torvalds if (dst->obsolete) 4471da177e4SLinus Torvalds dst = dst->ops->check(dst, cookie); 4481da177e4SLinus Torvalds return dst; 4491da177e4SLinus Torvalds } 4501da177e4SLinus Torvalds 4511da177e4SLinus Torvalds extern void dst_init(void); 4521da177e4SLinus Torvalds 453815f4e57SHerbert Xu /* Flags for xfrm_lookup flags argument. */ 454815f4e57SHerbert Xu enum { 45580c0bc9eSDavid S. Miller XFRM_LOOKUP_ICMP = 1 << 0, 456815f4e57SHerbert Xu }; 457815f4e57SHerbert Xu 4581da177e4SLinus Torvalds struct flowi; 4591da177e4SLinus Torvalds #ifndef CONFIG_XFRM 460452edd59SDavid S. Miller static inline struct dst_entry *xfrm_lookup(struct net *net, 461452edd59SDavid S. Miller struct dst_entry *dst_orig, 462dee9f4bcSDavid S. Miller const struct flowi *fl, struct sock *sk, 463dee9f4bcSDavid S. Miller int flags) 4641da177e4SLinus Torvalds { 465452edd59SDavid S. Miller return dst_orig; 4661da177e4SLinus Torvalds } 4671da177e4SLinus Torvalds #else 468452edd59SDavid S. Miller extern struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig, 469452edd59SDavid S. Miller const struct flowi *fl, struct sock *sk, 470452edd59SDavid S. Miller int flags); 4711da177e4SLinus Torvalds #endif 4721da177e4SLinus Torvalds 4731da177e4SLinus Torvalds #endif /* _NET_DST_H */ 474