Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * net/dst.h Protocol independent destination cache definitions. |
| 3 | * |
| 4 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #ifndef _NET_DST_H |
| 9 | #define _NET_DST_H |
| 10 | |
Alexey Dobriyan | 86393e5 | 2009-08-29 01:34:49 +0000 | [diff] [blame] | 11 | #include <net/dst_ops.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 12 | #include <linux/netdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/rtnetlink.h> |
| 14 | #include <linux/rcupdate.h> |
Paul Gortmaker | 187f188 | 2011-11-23 20:12:59 -0500 | [diff] [blame] | 15 | #include <linux/bug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/jiffies.h> |
| 17 | #include <net/neighbour.h> |
| 18 | #include <asm/processor.h> |
| 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #define DST_GC_MIN (HZ/10) |
| 21 | #define DST_GC_INC (HZ/2) |
| 22 | #define DST_GC_MAX (120*HZ) |
| 23 | |
| 24 | /* Each dst_entry has reference count and sits in some parent list(s). |
| 25 | * When it is removed from parent list, it is "freed" (dst_free). |
| 26 | * After this it enters dead state (dst->obsolete > 0) and if its refcnt |
| 27 | * is zero, it can be destroyed immediately, otherwise it is added |
| 28 | * to gc list and garbage collector periodically checks the refcnt. |
| 29 | */ |
| 30 | |
| 31 | struct sk_buff; |
| 32 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 33 | struct dst_entry { |
Eric Dumazet | 1e19e02 | 2007-02-09 16:26:55 -0800 | [diff] [blame] | 34 | struct rcu_head rcu_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | struct dst_entry *child; |
| 36 | struct net_device *dev; |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 37 | struct dst_ops *ops; |
| 38 | unsigned long _metrics; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | unsigned long expires; |
Zhang Yanmin | f1dd9c3 | 2008-03-12 22:52:37 -0700 | [diff] [blame] | 40 | struct dst_entry *path; |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 41 | struct neighbour __rcu *_neighbour; |
Alexey Dobriyan | def8b4f | 2008-10-28 13:24:06 -0700 | [diff] [blame] | 42 | #ifdef CONFIG_XFRM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | struct xfrm_state *xfrm; |
Eric Dumazet | 5635c10 | 2008-11-16 19:46:36 -0800 | [diff] [blame] | 44 | #else |
| 45 | void *__pad1; |
Alexey Dobriyan | def8b4f | 2008-10-28 13:24:06 -0700 | [diff] [blame] | 46 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | int (*input)(struct sk_buff*); |
| 48 | int (*output)(struct sk_buff*); |
| 49 | |
David S. Miller | f6b72b62 | 2011-07-14 07:53:20 -0700 | [diff] [blame] | 50 | int flags; |
| 51 | #define DST_HOST 0x0001 |
| 52 | #define DST_NOXFRM 0x0002 |
| 53 | #define DST_NOPOLICY 0x0004 |
| 54 | #define DST_NOHASH 0x0008 |
| 55 | #define DST_NOCACHE 0x0010 |
| 56 | #define DST_NOCOUNT 0x0020 |
Eric Dumazet | e688a60 | 2011-12-22 04:15:53 +0000 | [diff] [blame] | 57 | #define DST_NOPEER 0x0040 |
David S. Miller | f6b72b62 | 2011-07-14 07:53:20 -0700 | [diff] [blame] | 58 | |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 59 | short error; |
| 60 | short obsolete; |
| 61 | unsigned short header_len; /* more space at head required */ |
| 62 | unsigned short trailer_len; /* space to reserve at tail */ |
Patrick McHardy | c7066f7 | 2011-01-14 13:36:42 +0100 | [diff] [blame] | 63 | #ifdef CONFIG_IP_ROUTE_CLASSID |
Zhang Yanmin | f1dd9c3 | 2008-03-12 22:52:37 -0700 | [diff] [blame] | 64 | __u32 tclassid; |
Eric Dumazet | 5635c10 | 2008-11-16 19:46:36 -0800 | [diff] [blame] | 65 | #else |
| 66 | __u32 __pad2; |
Zhang Yanmin | f1dd9c3 | 2008-03-12 22:52:37 -0700 | [diff] [blame] | 67 | #endif |
| 68 | |
Eric Dumazet | 5635c10 | 2008-11-16 19:46:36 -0800 | [diff] [blame] | 69 | /* |
| 70 | * Align __refcnt to a 64 bytes alignment |
| 71 | * (L1_CACHE_SIZE would be too much) |
| 72 | */ |
| 73 | #ifdef CONFIG_64BIT |
David S. Miller | f6b72b62 | 2011-07-14 07:53:20 -0700 | [diff] [blame] | 74 | long __pad_to_align_refcnt[2]; |
Eric Dumazet | 5635c10 | 2008-11-16 19:46:36 -0800 | [diff] [blame] | 75 | #endif |
Zhang Yanmin | f1dd9c3 | 2008-03-12 22:52:37 -0700 | [diff] [blame] | 76 | /* |
| 77 | * __refcnt wants to be on a different cache line from |
| 78 | * input/output/ops or performance tanks badly |
| 79 | */ |
Eric Dumazet | 1e19e02 | 2007-02-09 16:26:55 -0800 | [diff] [blame] | 80 | atomic_t __refcnt; /* client references */ |
| 81 | int __use; |
Zhang Yanmin | f1dd9c3 | 2008-03-12 22:52:37 -0700 | [diff] [blame] | 82 | unsigned long lastuse; |
Eric Dumazet | 1e19e02 | 2007-02-09 16:26:55 -0800 | [diff] [blame] | 83 | union { |
Eric Dumazet | fc766e4c | 2010-10-29 03:09:24 +0000 | [diff] [blame] | 84 | struct dst_entry *next; |
| 85 | struct rtable __rcu *rt_next; |
| 86 | struct rt6_info *rt6_next; |
| 87 | struct dn_route __rcu *dn_next; |
Eric Dumazet | 1e19e02 | 2007-02-09 16:26:55 -0800 | [diff] [blame] | 88 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | }; |
| 90 | |
David Miller | 2721745 | 2011-12-02 16:52:08 +0000 | [diff] [blame] | 91 | static inline struct neighbour *dst_get_neighbour_noref(struct dst_entry *dst) |
David S. Miller | 69cce1d | 2011-07-17 23:09:49 -0700 | [diff] [blame] | 92 | { |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 93 | return rcu_dereference(dst->_neighbour); |
| 94 | } |
| 95 | |
David Miller | 2721745 | 2011-12-02 16:52:08 +0000 | [diff] [blame] | 96 | static inline struct neighbour *dst_get_neighbour_noref_raw(struct dst_entry *dst) |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 97 | { |
| 98 | return rcu_dereference_raw(dst->_neighbour); |
David S. Miller | 69cce1d | 2011-07-17 23:09:49 -0700 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | static inline void dst_set_neighbour(struct dst_entry *dst, struct neighbour *neigh) |
| 102 | { |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 103 | rcu_assign_pointer(dst->_neighbour, neigh); |
David S. Miller | 69cce1d | 2011-07-17 23:09:49 -0700 | [diff] [blame] | 104 | } |
| 105 | |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 106 | extern u32 *dst_cow_metrics_generic(struct dst_entry *dst, unsigned long old); |
David S. Miller | 725d1e1 | 2011-01-28 14:05:05 -0800 | [diff] [blame] | 107 | extern const u32 dst_default_metrics[RTAX_MAX]; |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 108 | |
| 109 | #define DST_METRICS_READ_ONLY 0x1UL |
| 110 | #define __DST_METRICS_PTR(Y) \ |
| 111 | ((u32 *)((Y) & ~DST_METRICS_READ_ONLY)) |
| 112 | #define DST_METRICS_PTR(X) __DST_METRICS_PTR((X)->_metrics) |
| 113 | |
| 114 | static inline bool dst_metrics_read_only(const struct dst_entry *dst) |
| 115 | { |
| 116 | return dst->_metrics & DST_METRICS_READ_ONLY; |
| 117 | } |
| 118 | |
| 119 | extern void __dst_destroy_metrics_generic(struct dst_entry *dst, unsigned long old); |
| 120 | |
| 121 | static inline void dst_destroy_metrics_generic(struct dst_entry *dst) |
| 122 | { |
| 123 | unsigned long val = dst->_metrics; |
| 124 | if (!(val & DST_METRICS_READ_ONLY)) |
| 125 | __dst_destroy_metrics_generic(dst, val); |
| 126 | } |
| 127 | |
| 128 | static inline u32 *dst_metrics_write_ptr(struct dst_entry *dst) |
| 129 | { |
| 130 | unsigned long p = dst->_metrics; |
| 131 | |
Stephen Hemminger | 1f37070 | 2011-05-24 13:50:52 -0400 | [diff] [blame] | 132 | BUG_ON(!p); |
| 133 | |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 134 | if (p & DST_METRICS_READ_ONLY) |
| 135 | return dst->ops->cow_metrics(dst, p); |
| 136 | return __DST_METRICS_PTR(p); |
| 137 | } |
| 138 | |
| 139 | /* This may only be invoked before the entry has reached global |
| 140 | * visibility. |
| 141 | */ |
| 142 | static inline void dst_init_metrics(struct dst_entry *dst, |
| 143 | const u32 *src_metrics, |
| 144 | bool read_only) |
| 145 | { |
| 146 | dst->_metrics = ((unsigned long) src_metrics) | |
| 147 | (read_only ? DST_METRICS_READ_ONLY : 0); |
| 148 | } |
| 149 | |
| 150 | static inline void dst_copy_metrics(struct dst_entry *dest, const struct dst_entry *src) |
| 151 | { |
| 152 | u32 *dst_metrics = dst_metrics_write_ptr(dest); |
| 153 | |
| 154 | if (dst_metrics) { |
| 155 | u32 *src_metrics = DST_METRICS_PTR(src); |
| 156 | |
| 157 | memcpy(dst_metrics, src_metrics, RTAX_MAX * sizeof(u32)); |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | static inline u32 *dst_metrics_ptr(struct dst_entry *dst) |
| 162 | { |
| 163 | return DST_METRICS_PTR(dst); |
| 164 | } |
| 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | static inline u32 |
David S. Miller | 5170ae8 | 2010-12-12 21:35:57 -0800 | [diff] [blame] | 167 | dst_metric_raw(const struct dst_entry *dst, const int metric) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | { |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 169 | u32 *p = DST_METRICS_PTR(dst); |
| 170 | |
| 171 | return p[metric-1]; |
David S. Miller | defb351 | 2010-12-08 21:16:57 -0800 | [diff] [blame] | 172 | } |
| 173 | |
David S. Miller | 5170ae8 | 2010-12-12 21:35:57 -0800 | [diff] [blame] | 174 | static inline u32 |
| 175 | dst_metric(const struct dst_entry *dst, const int metric) |
| 176 | { |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 177 | WARN_ON_ONCE(metric == RTAX_HOPLIMIT || |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 178 | metric == RTAX_ADVMSS || |
| 179 | metric == RTAX_MTU); |
David S. Miller | 5170ae8 | 2010-12-12 21:35:57 -0800 | [diff] [blame] | 180 | return dst_metric_raw(dst, metric); |
| 181 | } |
| 182 | |
David S. Miller | 0dbaee3 | 2010-12-13 12:52:14 -0800 | [diff] [blame] | 183 | static inline u32 |
| 184 | dst_metric_advmss(const struct dst_entry *dst) |
| 185 | { |
| 186 | u32 advmss = dst_metric_raw(dst, RTAX_ADVMSS); |
| 187 | |
| 188 | if (!advmss) |
| 189 | advmss = dst->ops->default_advmss(dst); |
| 190 | |
| 191 | return advmss; |
| 192 | } |
| 193 | |
David S. Miller | defb351 | 2010-12-08 21:16:57 -0800 | [diff] [blame] | 194 | static inline void dst_metric_set(struct dst_entry *dst, int metric, u32 val) |
| 195 | { |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 196 | u32 *p = dst_metrics_write_ptr(dst); |
David S. Miller | defb351 | 2010-12-08 21:16:57 -0800 | [diff] [blame] | 197 | |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 198 | if (p) |
| 199 | p[metric-1] = val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | |
Gilad Ben-Yossef | 0c3adfb | 2009-10-28 04:15:23 +0000 | [diff] [blame] | 202 | static inline u32 |
| 203 | dst_feature(const struct dst_entry *dst, u32 feature) |
| 204 | { |
David S. Miller | bb5b7c1 | 2009-12-15 20:56:42 -0800 | [diff] [blame] | 205 | return dst_metric(dst, RTAX_FEATURES) & feature; |
Gilad Ben-Yossef | 0c3adfb | 2009-10-28 04:15:23 +0000 | [diff] [blame] | 206 | } |
| 207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | static inline u32 dst_mtu(const struct dst_entry *dst) |
| 209 | { |
Steffen Klassert | 618f9bc | 2011-11-23 02:13:31 +0000 | [diff] [blame] | 210 | return dst->ops->mtu(dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | } |
| 212 | |
Stephen Hemminger | c1e20f7 | 2008-07-18 23:02:15 -0700 | [diff] [blame] | 213 | /* RTT metrics are stored in milliseconds for user ABI, but used as jiffies */ |
| 214 | static inline unsigned long dst_metric_rtt(const struct dst_entry *dst, int metric) |
| 215 | { |
| 216 | return msecs_to_jiffies(dst_metric(dst, metric)); |
| 217 | } |
| 218 | |
| 219 | static inline void set_dst_metric_rtt(struct dst_entry *dst, int metric, |
| 220 | unsigned long rtt) |
| 221 | { |
David S. Miller | defb351 | 2010-12-08 21:16:57 -0800 | [diff] [blame] | 222 | dst_metric_set(dst, metric, jiffies_to_msecs(rtt)); |
Stephen Hemminger | c1e20f7 | 2008-07-18 23:02:15 -0700 | [diff] [blame] | 223 | } |
| 224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | static inline u32 |
| 226 | dst_allfrag(const struct dst_entry *dst) |
| 227 | { |
Gilad Ben-Yossef | 0c3adfb | 2009-10-28 04:15:23 +0000 | [diff] [blame] | 228 | int ret = dst_feature(dst, RTAX_FEATURE_ALLFRAG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | return ret; |
| 230 | } |
| 231 | |
| 232 | static inline int |
David S. Miller | d33e455 | 2010-12-14 13:01:14 -0800 | [diff] [blame] | 233 | dst_metric_locked(const struct dst_entry *dst, int metric) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | { |
| 235 | return dst_metric(dst, RTAX_LOCK) & (1<<metric); |
| 236 | } |
| 237 | |
| 238 | static inline void dst_hold(struct dst_entry * dst) |
| 239 | { |
Eric Dumazet | 5635c10 | 2008-11-16 19:46:36 -0800 | [diff] [blame] | 240 | /* |
| 241 | * If your kernel compilation stops here, please check |
| 242 | * __pad_to_align_refcnt declaration in struct dst_entry |
| 243 | */ |
| 244 | BUILD_BUG_ON(offsetof(struct dst_entry, __refcnt) & 63); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | atomic_inc(&dst->__refcnt); |
| 246 | } |
| 247 | |
Pavel Emelyanov | 03f49f3 | 2007-11-10 21:28:34 -0800 | [diff] [blame] | 248 | static inline void dst_use(struct dst_entry *dst, unsigned long time) |
| 249 | { |
| 250 | dst_hold(dst); |
| 251 | dst->__use++; |
| 252 | dst->lastuse = time; |
| 253 | } |
| 254 | |
Eric Dumazet | 7fee226 | 2010-05-11 23:19:48 +0000 | [diff] [blame] | 255 | static inline void dst_use_noref(struct dst_entry *dst, unsigned long time) |
| 256 | { |
| 257 | dst->__use++; |
| 258 | dst->lastuse = time; |
| 259 | } |
| 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | static inline |
| 262 | struct dst_entry * dst_clone(struct dst_entry * dst) |
| 263 | { |
| 264 | if (dst) |
| 265 | atomic_inc(&dst->__refcnt); |
| 266 | return dst; |
| 267 | } |
| 268 | |
Ilpo Järvinen | 8d33086 | 2008-03-27 17:53:31 -0700 | [diff] [blame] | 269 | extern void dst_release(struct dst_entry *dst); |
Eric Dumazet | 7fee226 | 2010-05-11 23:19:48 +0000 | [diff] [blame] | 270 | |
| 271 | static inline void refdst_drop(unsigned long refdst) |
| 272 | { |
| 273 | if (!(refdst & SKB_DST_NOREF)) |
| 274 | dst_release((struct dst_entry *)(refdst & SKB_DST_PTRMASK)); |
| 275 | } |
| 276 | |
| 277 | /** |
| 278 | * skb_dst_drop - drops skb dst |
| 279 | * @skb: buffer |
| 280 | * |
| 281 | * Drops dst reference count if a reference was taken. |
| 282 | */ |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 283 | static inline void skb_dst_drop(struct sk_buff *skb) |
| 284 | { |
Eric Dumazet | 7fee226 | 2010-05-11 23:19:48 +0000 | [diff] [blame] | 285 | if (skb->_skb_refdst) { |
| 286 | refdst_drop(skb->_skb_refdst); |
| 287 | skb->_skb_refdst = 0UL; |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | static inline void skb_dst_copy(struct sk_buff *nskb, const struct sk_buff *oskb) |
| 292 | { |
| 293 | nskb->_skb_refdst = oskb->_skb_refdst; |
| 294 | if (!(nskb->_skb_refdst & SKB_DST_NOREF)) |
| 295 | dst_clone(skb_dst(nskb)); |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * skb_dst_force - makes sure skb dst is refcounted |
| 300 | * @skb: buffer |
| 301 | * |
| 302 | * If dst is not yet refcounted, let's do it |
| 303 | */ |
| 304 | static inline void skb_dst_force(struct sk_buff *skb) |
| 305 | { |
| 306 | if (skb_dst_is_noref(skb)) { |
| 307 | WARN_ON(!rcu_read_lock_held()); |
| 308 | skb->_skb_refdst &= ~SKB_DST_NOREF; |
| 309 | dst_clone(skb_dst(skb)); |
| 310 | } |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 311 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
Eric Dumazet | d19d56d | 2010-05-17 22:36:55 -0700 | [diff] [blame] | 313 | |
| 314 | /** |
Eric Dumazet | 290b895 | 2010-09-27 00:33:35 +0000 | [diff] [blame] | 315 | * __skb_tunnel_rx - prepare skb for rx reinsert |
| 316 | * @skb: buffer |
| 317 | * @dev: tunnel device |
| 318 | * |
| 319 | * After decapsulation, packet is going to re-enter (netif_rx()) our stack, |
| 320 | * so make some cleanups. (no accounting done) |
| 321 | */ |
| 322 | static inline void __skb_tunnel_rx(struct sk_buff *skb, struct net_device *dev) |
| 323 | { |
| 324 | skb->dev = dev; |
Tom Herbert | bdeab99 | 2011-08-14 19:45:55 +0000 | [diff] [blame] | 325 | |
| 326 | /* |
| 327 | * Clear rxhash so that we can recalulate the hash for the |
| 328 | * encapsulated packet, unless we have already determine the hash |
| 329 | * over the L4 4-tuple. |
| 330 | */ |
| 331 | if (!skb->l4_rxhash) |
| 332 | skb->rxhash = 0; |
Eric Dumazet | 290b895 | 2010-09-27 00:33:35 +0000 | [diff] [blame] | 333 | skb_set_queue_mapping(skb, 0); |
| 334 | skb_dst_drop(skb); |
| 335 | nf_reset(skb); |
| 336 | } |
| 337 | |
| 338 | /** |
Eric Dumazet | d19d56d | 2010-05-17 22:36:55 -0700 | [diff] [blame] | 339 | * skb_tunnel_rx - prepare skb for rx reinsert |
| 340 | * @skb: buffer |
| 341 | * @dev: tunnel device |
| 342 | * |
| 343 | * After decapsulation, packet is going to re-enter (netif_rx()) our stack, |
| 344 | * so make some cleanups, and perform accounting. |
Eric Dumazet | 290b895 | 2010-09-27 00:33:35 +0000 | [diff] [blame] | 345 | * Note: this accounting is not SMP safe. |
Eric Dumazet | d19d56d | 2010-05-17 22:36:55 -0700 | [diff] [blame] | 346 | */ |
| 347 | static inline void skb_tunnel_rx(struct sk_buff *skb, struct net_device *dev) |
| 348 | { |
Eric Dumazet | d19d56d | 2010-05-17 22:36:55 -0700 | [diff] [blame] | 349 | /* TODO : stats should be SMP safe */ |
| 350 | dev->stats.rx_packets++; |
| 351 | dev->stats.rx_bytes += skb->len; |
Eric Dumazet | 290b895 | 2010-09-27 00:33:35 +0000 | [diff] [blame] | 352 | __skb_tunnel_rx(skb, dev); |
Eric Dumazet | d19d56d | 2010-05-17 22:36:55 -0700 | [diff] [blame] | 353 | } |
| 354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | /* Children define the path of the packet through the |
| 356 | * Linux networking. Thus, destinations are stackable. |
| 357 | */ |
| 358 | |
Steffen Klassert | 8764ab2 | 2010-06-04 01:57:38 +0000 | [diff] [blame] | 359 | static inline struct dst_entry *skb_dst_pop(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | { |
Steffen Klassert | e433430 | 2011-03-15 21:09:32 +0000 | [diff] [blame] | 361 | struct dst_entry *child = dst_clone(skb_dst(skb)->child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
Steffen Klassert | 8764ab2 | 2010-06-04 01:57:38 +0000 | [diff] [blame] | 363 | skb_dst_drop(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | return child; |
| 365 | } |
| 366 | |
Herbert Xu | 352e512 | 2007-11-13 21:34:06 -0800 | [diff] [blame] | 367 | extern int dst_discard(struct sk_buff *skb); |
David S. Miller | 5c1e6aa | 2011-04-28 14:13:38 -0700 | [diff] [blame] | 368 | extern void *dst_alloc(struct dst_ops * ops, struct net_device *dev, |
| 369 | int initial_ref, int initial_obsolete, int flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | extern void __dst_free(struct dst_entry * dst); |
| 371 | extern struct dst_entry *dst_destroy(struct dst_entry * dst); |
| 372 | |
| 373 | static inline void dst_free(struct dst_entry * dst) |
| 374 | { |
| 375 | if (dst->obsolete > 1) |
| 376 | return; |
| 377 | if (!atomic_read(&dst->__refcnt)) { |
| 378 | dst = dst_destroy(dst); |
| 379 | if (!dst) |
| 380 | return; |
| 381 | } |
| 382 | __dst_free(dst); |
| 383 | } |
| 384 | |
| 385 | static inline void dst_rcu_free(struct rcu_head *head) |
| 386 | { |
| 387 | struct dst_entry *dst = container_of(head, struct dst_entry, rcu_head); |
| 388 | dst_free(dst); |
| 389 | } |
| 390 | |
| 391 | static inline void dst_confirm(struct dst_entry *dst) |
| 392 | { |
David S. Miller | 69cce1d | 2011-07-17 23:09:49 -0700 | [diff] [blame] | 393 | if (dst) { |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 394 | struct neighbour *n; |
| 395 | |
| 396 | rcu_read_lock(); |
David Miller | 2721745 | 2011-12-02 16:52:08 +0000 | [diff] [blame] | 397 | n = dst_get_neighbour_noref(dst); |
David S. Miller | 69cce1d | 2011-07-17 23:09:49 -0700 | [diff] [blame] | 398 | neigh_confirm(n); |
Eric Dumazet | f2c31e3 | 2011-07-29 19:00:53 +0000 | [diff] [blame] | 399 | rcu_read_unlock(); |
David S. Miller | 69cce1d | 2011-07-17 23:09:49 -0700 | [diff] [blame] | 400 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | } |
| 402 | |
David S. Miller | d3aaeb3 | 2011-07-18 00:40:17 -0700 | [diff] [blame] | 403 | static inline struct neighbour *dst_neigh_lookup(const struct dst_entry *dst, const void *daddr) |
| 404 | { |
| 405 | return dst->ops->neigh_lookup(dst, daddr); |
| 406 | } |
| 407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | static inline void dst_link_failure(struct sk_buff *skb) |
| 409 | { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 410 | struct dst_entry *dst = skb_dst(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | if (dst && dst->ops && dst->ops->link_failure) |
| 412 | dst->ops->link_failure(skb); |
| 413 | } |
| 414 | |
| 415 | static inline void dst_set_expires(struct dst_entry *dst, int timeout) |
| 416 | { |
| 417 | unsigned long expires = jiffies + timeout; |
| 418 | |
| 419 | if (expires == 0) |
| 420 | expires = 1; |
| 421 | |
| 422 | if (dst->expires == 0 || time_before(expires, dst->expires)) |
| 423 | dst->expires = expires; |
| 424 | } |
| 425 | |
| 426 | /* Output packet to network from transport. */ |
| 427 | static inline int dst_output(struct sk_buff *skb) |
| 428 | { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 429 | return skb_dst(skb)->output(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | /* Input packet from network to transport. */ |
| 433 | static inline int dst_input(struct sk_buff *skb) |
| 434 | { |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 435 | return skb_dst(skb)->input(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | static inline struct dst_entry *dst_check(struct dst_entry *dst, u32 cookie) |
| 439 | { |
| 440 | if (dst->obsolete) |
| 441 | dst = dst->ops->check(dst, cookie); |
| 442 | return dst; |
| 443 | } |
| 444 | |
| 445 | extern void dst_init(void); |
| 446 | |
Herbert Xu | 815f4e5 | 2007-12-12 10:36:59 -0800 | [diff] [blame] | 447 | /* Flags for xfrm_lookup flags argument. */ |
| 448 | enum { |
David S. Miller | 80c0bc9 | 2011-03-01 14:36:37 -0800 | [diff] [blame] | 449 | XFRM_LOOKUP_ICMP = 1 << 0, |
Herbert Xu | 815f4e5 | 2007-12-12 10:36:59 -0800 | [diff] [blame] | 450 | }; |
| 451 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | struct flowi; |
| 453 | #ifndef CONFIG_XFRM |
David S. Miller | 452edd5 | 2011-03-02 13:27:41 -0800 | [diff] [blame] | 454 | static inline struct dst_entry *xfrm_lookup(struct net *net, |
| 455 | struct dst_entry *dst_orig, |
| 456 | const struct flowi *fl, struct sock *sk, |
| 457 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | { |
David S. Miller | 452edd5 | 2011-03-02 13:27:41 -0800 | [diff] [blame] | 459 | return dst_orig; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | } |
| 461 | #else |
David S. Miller | 452edd5 | 2011-03-02 13:27:41 -0800 | [diff] [blame] | 462 | extern struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig, |
| 463 | const struct flowi *fl, struct sock *sk, |
| 464 | int flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | |
| 467 | #endif /* _NET_DST_H */ |