]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - include/net/dst.h
net: fix a wrong assignment in skb_split()
[mirror_ubuntu-eoan-kernel.git] / include / net / dst.h
CommitLineData
1da177e4
LT
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
86393e52 11#include <net/dst_ops.h>
14c85021 12#include <linux/netdevice.h>
1da177e4
LT
13#include <linux/rtnetlink.h>
14#include <linux/rcupdate.h>
187f1882 15#include <linux/bug.h>
1da177e4
LT
16#include <linux/jiffies.h>
17#include <net/neighbour.h>
18#include <asm/processor.h>
19
1da177e4
LT
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
31struct sk_buff;
32
fd2c3ef7 33struct dst_entry {
1e19e02c 34 struct rcu_head rcu_head;
1da177e4
LT
35 struct dst_entry *child;
36 struct net_device *dev;
62fa8a84
DM
37 struct dst_ops *ops;
38 unsigned long _metrics;
1716a961
G
39 union {
40 unsigned long expires;
41 /* point to where the dst_entry copied from */
42 struct dst_entry *from;
43 };
f1dd9c37 44 struct dst_entry *path;
36bdbcae 45 void *__pad0;
def8b4fa 46#ifdef CONFIG_XFRM
1da177e4 47 struct xfrm_state *xfrm;
5635c10d
ED
48#else
49 void *__pad1;
def8b4fa 50#endif
7f95e188
EZ
51 int (*input)(struct sk_buff *);
52 int (*output)(struct sk_buff *);
1da177e4 53
5110effe 54 unsigned short flags;
f6b72b62
DM
55#define DST_HOST 0x0001
56#define DST_NOXFRM 0x0002
57#define DST_NOPOLICY 0x0004
58#define DST_NOHASH 0x0008
59#define DST_NOCACHE 0x0010
60#define DST_NOCOUNT 0x0020
e688a604 61#define DST_NOPEER 0x0040
a881e963 62#define DST_FAKE_RTABLE 0x0080
0c183379 63#define DST_XFRM_TUNNEL 0x0100
a0073fe1 64#define DST_XFRM_QUEUE 0x0200
f6b72b62 65
5110effe
DM
66 unsigned short pending_confirm;
67
62fa8a84 68 short error;
f5b0a874
DM
69
70 /* A non-zero value of dst->obsolete forces by-hand validation
71 * of the route entry. Positive values are set by the generic
72 * dst layer to indicate that the entry has been forcefully
73 * destroyed.
74 *
75 * Negative values are used by the implementation layer code to
76 * force invocation of the dst_ops->check() method.
77 */
62fa8a84 78 short obsolete;
f5b0a874
DM
79#define DST_OBSOLETE_NONE 0
80#define DST_OBSOLETE_DEAD 2
81#define DST_OBSOLETE_FORCE_CHK -1
ceb33206 82#define DST_OBSOLETE_KILL -2
62fa8a84
DM
83 unsigned short header_len; /* more space at head required */
84 unsigned short trailer_len; /* space to reserve at tail */
c7066f70 85#ifdef CONFIG_IP_ROUTE_CLASSID
f1dd9c37 86 __u32 tclassid;
5635c10d
ED
87#else
88 __u32 __pad2;
f1dd9c37
ZY
89#endif
90
5635c10d
ED
91 /*
92 * Align __refcnt to a 64 bytes alignment
93 * (L1_CACHE_SIZE would be too much)
94 */
95#ifdef CONFIG_64BIT
f6b72b62 96 long __pad_to_align_refcnt[2];
5635c10d 97#endif
f1dd9c37
ZY
98 /*
99 * __refcnt wants to be on a different cache line from
100 * input/output/ops or performance tanks badly
101 */
1e19e02c
ED
102 atomic_t __refcnt; /* client references */
103 int __use;
f1dd9c37 104 unsigned long lastuse;
1e19e02c 105 union {
fc766e4c
ED
106 struct dst_entry *next;
107 struct rtable __rcu *rt_next;
108 struct rt6_info *rt6_next;
109 struct dn_route __rcu *dn_next;
1e19e02c 110 };
1da177e4
LT
111};
112
62fa8a84 113extern u32 *dst_cow_metrics_generic(struct dst_entry *dst, unsigned long old);
a37e6e34 114extern const u32 dst_default_metrics[];
62fa8a84
DM
115
116#define DST_METRICS_READ_ONLY 0x1UL
117#define __DST_METRICS_PTR(Y) \
118 ((u32 *)((Y) & ~DST_METRICS_READ_ONLY))
119#define DST_METRICS_PTR(X) __DST_METRICS_PTR((X)->_metrics)
120
121static inline bool dst_metrics_read_only(const struct dst_entry *dst)
122{
123 return dst->_metrics & DST_METRICS_READ_ONLY;
124}
125
126extern void __dst_destroy_metrics_generic(struct dst_entry *dst, unsigned long old);
127
128static inline void dst_destroy_metrics_generic(struct dst_entry *dst)
129{
130 unsigned long val = dst->_metrics;
131 if (!(val & DST_METRICS_READ_ONLY))
132 __dst_destroy_metrics_generic(dst, val);
133}
134
135static inline u32 *dst_metrics_write_ptr(struct dst_entry *dst)
136{
137 unsigned long p = dst->_metrics;
138
1f37070d
SH
139 BUG_ON(!p);
140
62fa8a84
DM
141 if (p & DST_METRICS_READ_ONLY)
142 return dst->ops->cow_metrics(dst, p);
143 return __DST_METRICS_PTR(p);
144}
145
146/* This may only be invoked before the entry has reached global
147 * visibility.
148 */
149static inline void dst_init_metrics(struct dst_entry *dst,
150 const u32 *src_metrics,
151 bool read_only)
152{
153 dst->_metrics = ((unsigned long) src_metrics) |
154 (read_only ? DST_METRICS_READ_ONLY : 0);
155}
156
157static inline void dst_copy_metrics(struct dst_entry *dest, const struct dst_entry *src)
158{
159 u32 *dst_metrics = dst_metrics_write_ptr(dest);
160
161 if (dst_metrics) {
162 u32 *src_metrics = DST_METRICS_PTR(src);
163
164 memcpy(dst_metrics, src_metrics, RTAX_MAX * sizeof(u32));
165 }
166}
167
168static inline u32 *dst_metrics_ptr(struct dst_entry *dst)
169{
170 return DST_METRICS_PTR(dst);
171}
172
1da177e4 173static inline u32
5170ae82 174dst_metric_raw(const struct dst_entry *dst, const int metric)
1da177e4 175{
62fa8a84
DM
176 u32 *p = DST_METRICS_PTR(dst);
177
178 return p[metric-1];
defb3519
DM
179}
180
5170ae82
DM
181static inline u32
182dst_metric(const struct dst_entry *dst, const int metric)
183{
0dbaee3b 184 WARN_ON_ONCE(metric == RTAX_HOPLIMIT ||
d33e4553
DM
185 metric == RTAX_ADVMSS ||
186 metric == RTAX_MTU);
5170ae82
DM
187 return dst_metric_raw(dst, metric);
188}
189
0dbaee3b
DM
190static inline u32
191dst_metric_advmss(const struct dst_entry *dst)
192{
193 u32 advmss = dst_metric_raw(dst, RTAX_ADVMSS);
194
195 if (!advmss)
196 advmss = dst->ops->default_advmss(dst);
197
198 return advmss;
199}
200
defb3519
DM
201static inline void dst_metric_set(struct dst_entry *dst, int metric, u32 val)
202{
62fa8a84 203 u32 *p = dst_metrics_write_ptr(dst);
defb3519 204
62fa8a84
DM
205 if (p)
206 p[metric-1] = val;
1da177e4
LT
207}
208
0c3adfb8
GBY
209static inline u32
210dst_feature(const struct dst_entry *dst, u32 feature)
211{
bb5b7c11 212 return dst_metric(dst, RTAX_FEATURES) & feature;
0c3adfb8
GBY
213}
214
1da177e4
LT
215static inline u32 dst_mtu(const struct dst_entry *dst)
216{
618f9bc7 217 return dst->ops->mtu(dst);
1da177e4
LT
218}
219
c1e20f7c
SH
220/* RTT metrics are stored in milliseconds for user ABI, but used as jiffies */
221static inline unsigned long dst_metric_rtt(const struct dst_entry *dst, int metric)
222{
223 return msecs_to_jiffies(dst_metric(dst, metric));
224}
225
1da177e4
LT
226static inline u32
227dst_allfrag(const struct dst_entry *dst)
228{
0c3adfb8 229 int ret = dst_feature(dst, RTAX_FEATURE_ALLFRAG);
1da177e4
LT
230 return ret;
231}
232
233static inline int
d33e4553 234dst_metric_locked(const struct dst_entry *dst, int metric)
1da177e4
LT
235{
236 return dst_metric(dst, RTAX_LOCK) & (1<<metric);
237}
238
7f95e188 239static inline void dst_hold(struct dst_entry *dst)
1da177e4 240{
5635c10d
ED
241 /*
242 * If your kernel compilation stops here, please check
243 * __pad_to_align_refcnt declaration in struct dst_entry
244 */
245 BUILD_BUG_ON(offsetof(struct dst_entry, __refcnt) & 63);
1da177e4
LT
246 atomic_inc(&dst->__refcnt);
247}
248
03f49f34
PE
249static inline void dst_use(struct dst_entry *dst, unsigned long time)
250{
251 dst_hold(dst);
252 dst->__use++;
253 dst->lastuse = time;
254}
255
7fee226a
ED
256static inline void dst_use_noref(struct dst_entry *dst, unsigned long time)
257{
258 dst->__use++;
259 dst->lastuse = time;
260}
261
7f95e188 262static inline struct dst_entry *dst_clone(struct dst_entry *dst)
1da177e4
LT
263{
264 if (dst)
265 atomic_inc(&dst->__refcnt);
266 return dst;
267}
268
8d330868 269extern void dst_release(struct dst_entry *dst);
7fee226a
ED
270
271static 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 */
adf30907
ED
283static inline void skb_dst_drop(struct sk_buff *skb)
284{
7fee226a
ED
285 if (skb->_skb_refdst) {
286 refdst_drop(skb->_skb_refdst);
287 skb->_skb_refdst = 0UL;
288 }
289}
290
291static 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 */
304static 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 }
adf30907 311}
1da177e4 312
d19d56dd 313
290b895e
ED
314/**
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 */
322static inline void __skb_tunnel_rx(struct sk_buff *skb, struct net_device *dev)
323{
324 skb->dev = dev;
bdeab991
TH
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;
290b895e
ED
333 skb_set_queue_mapping(skb, 0);
334 skb_dst_drop(skb);
335 nf_reset(skb);
336}
337
d19d56dd
ED
338/**
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.
290b895e 345 * Note: this accounting is not SMP safe.
d19d56dd
ED
346 */
347static inline void skb_tunnel_rx(struct sk_buff *skb, struct net_device *dev)
348{
d19d56dd
ED
349 /* TODO : stats should be SMP safe */
350 dev->stats.rx_packets++;
351 dev->stats.rx_bytes += skb->len;
290b895e 352 __skb_tunnel_rx(skb, dev);
d19d56dd
ED
353}
354
1da177e4
LT
355/* Children define the path of the packet through the
356 * Linux networking. Thus, destinations are stackable.
357 */
358
8764ab2c 359static inline struct dst_entry *skb_dst_pop(struct sk_buff *skb)
1da177e4 360{
e433430a 361 struct dst_entry *child = dst_clone(skb_dst(skb)->child);
1da177e4 362
8764ab2c 363 skb_dst_drop(skb);
1da177e4
LT
364 return child;
365}
366
352e512c 367extern int dst_discard(struct sk_buff *skb);
7f95e188 368extern void *dst_alloc(struct dst_ops *ops, struct net_device *dev,
5110effe
DM
369 int initial_ref, int initial_obsolete,
370 unsigned short flags);
7f95e188
EZ
371extern void __dst_free(struct dst_entry *dst);
372extern struct dst_entry *dst_destroy(struct dst_entry *dst);
1da177e4 373
7f95e188 374static inline void dst_free(struct dst_entry *dst)
1da177e4 375{
f5b0a874 376 if (dst->obsolete > 0)
1da177e4
LT
377 return;
378 if (!atomic_read(&dst->__refcnt)) {
379 dst = dst_destroy(dst);
380 if (!dst)
381 return;
382 }
383 __dst_free(dst);
384}
385
386static inline void dst_rcu_free(struct rcu_head *head)
387{
388 struct dst_entry *dst = container_of(head, struct dst_entry, rcu_head);
389 dst_free(dst);
390}
391
392static inline void dst_confirm(struct dst_entry *dst)
393{
5110effe
DM
394 dst->pending_confirm = 1;
395}
f2c31e32 396
5110effe
DM
397static inline int dst_neigh_output(struct dst_entry *dst, struct neighbour *n,
398 struct sk_buff *skb)
399{
425f09ab
ED
400 const struct hh_cache *hh;
401
402 if (dst->pending_confirm) {
403 unsigned long now = jiffies;
5110effe 404
5110effe 405 dst->pending_confirm = 0;
425f09ab
ED
406 /* avoid dirtying neighbour */
407 if (n->confirmed != now)
408 n->confirmed = now;
69cce1d1 409 }
5110effe
DM
410
411 hh = &n->hh;
412 if ((n->nud_state & NUD_CONNECTED) && hh->hh_len)
413 return neigh_hh_output(hh, skb);
414 else
415 return n->output(n, skb);
1da177e4
LT
416}
417
d3aaeb38
DM
418static inline struct neighbour *dst_neigh_lookup(const struct dst_entry *dst, const void *daddr)
419{
f894cbf8
DM
420 return dst->ops->neigh_lookup(dst, NULL, daddr);
421}
422
423static inline struct neighbour *dst_neigh_lookup_skb(const struct dst_entry *dst,
424 struct sk_buff *skb)
425{
426 return dst->ops->neigh_lookup(dst, skb, NULL);
d3aaeb38
DM
427}
428
1da177e4
LT
429static inline void dst_link_failure(struct sk_buff *skb)
430{
adf30907 431 struct dst_entry *dst = skb_dst(skb);
1da177e4
LT
432 if (dst && dst->ops && dst->ops->link_failure)
433 dst->ops->link_failure(skb);
434}
435
436static inline void dst_set_expires(struct dst_entry *dst, int timeout)
437{
438 unsigned long expires = jiffies + timeout;
439
440 if (expires == 0)
441 expires = 1;
442
443 if (dst->expires == 0 || time_before(expires, dst->expires))
444 dst->expires = expires;
445}
446
447/* Output packet to network from transport. */
448static inline int dst_output(struct sk_buff *skb)
449{
adf30907 450 return skb_dst(skb)->output(skb);
1da177e4
LT
451}
452
453/* Input packet from network to transport. */
454static inline int dst_input(struct sk_buff *skb)
455{
adf30907 456 return skb_dst(skb)->input(skb);
1da177e4
LT
457}
458
459static inline struct dst_entry *dst_check(struct dst_entry *dst, u32 cookie)
460{
461 if (dst->obsolete)
462 dst = dst->ops->check(dst, cookie);
463 return dst;
464}
465
466extern void dst_init(void);
467
815f4e57
HX
468/* Flags for xfrm_lookup flags argument. */
469enum {
80c0bc9e 470 XFRM_LOOKUP_ICMP = 1 << 0,
815f4e57
HX
471};
472
1da177e4
LT
473struct flowi;
474#ifndef CONFIG_XFRM
452edd59
DM
475static inline struct dst_entry *xfrm_lookup(struct net *net,
476 struct dst_entry *dst_orig,
477 const struct flowi *fl, struct sock *sk,
478 int flags)
1da177e4 479{
452edd59 480 return dst_orig;
1da177e4
LT
481}
482#else
452edd59
DM
483extern struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
484 const struct flowi *fl, struct sock *sk,
485 int flags);
1da177e4 486#endif
1da177e4
LT
487
488#endif /* _NET_DST_H */