blob: 88ff7bb2bb9bd950cc54fd5e0ae4573d4c66873d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Alexey Dobriyan86393e52009-08-29 01:34:49 +00002#ifndef _NET_DST_OPS_H
3#define _NET_DST_OPS_H
4#include <linux/types.h>
Eric Dumazetfc66f952010-10-08 06:37:34 +00005#include <linux/percpu_counter.h>
Paul Mundt43b81f82010-11-07 19:58:05 -08006#include <linux/cache.h>
Alexey Dobriyan86393e52009-08-29 01:34:49 +00007
8struct dst_entry;
9struct kmem_cachep;
10struct net_device;
11struct sk_buff;
David S. Millerd8f16412012-07-19 10:43:03 -070012struct sock;
Eric W. Biedermancf91a992015-10-07 16:48:45 -050013struct net;
Alexey Dobriyan86393e52009-08-29 01:34:49 +000014
15struct dst_ops {
16 unsigned short family;
Eric Dumazet95c96172012-04-15 05:58:06 +000017 unsigned int gc_thresh;
Alexey Dobriyan86393e52009-08-29 01:34:49 +000018
19 int (*gc)(struct dst_ops *ops);
20 struct dst_entry * (*check)(struct dst_entry *, __u32 cookie);
David S. Miller0dbaee32010-12-13 12:52:14 -080021 unsigned int (*default_advmss)(const struct dst_entry *);
Steffen Klassertebb762f2011-11-23 02:12:51 +000022 unsigned int (*mtu)(const struct dst_entry *);
David S. Miller62fa8a82011-01-26 20:51:05 -080023 u32 * (*cow_metrics)(struct dst_entry *, unsigned long);
Alexey Dobriyan86393e52009-08-29 01:34:49 +000024 void (*destroy)(struct dst_entry *);
25 void (*ifdown)(struct dst_entry *,
26 struct net_device *dev, int how);
27 struct dst_entry * (*negative_advice)(struct dst_entry *);
28 void (*link_failure)(struct sk_buff *);
David S. Miller6700c272012-07-17 03:29:28 -070029 void (*update_pmtu)(struct dst_entry *dst, struct sock *sk,
Hangbin Liubd085ef2019-12-22 10:51:09 +080030 struct sk_buff *skb, u32 mtu,
31 bool confirm_neigh);
David S. Miller6700c272012-07-17 03:29:28 -070032 void (*redirect)(struct dst_entry *dst, struct sock *sk,
33 struct sk_buff *skb);
Eric W. Biedermancf91a992015-10-07 16:48:45 -050034 int (*local_out)(struct net *net, struct sock *sk, struct sk_buff *skb);
David S. Millerf894cbf2012-07-02 21:52:24 -070035 struct neighbour * (*neigh_lookup)(const struct dst_entry *dst,
36 struct sk_buff *skb,
37 const void *daddr);
Julian Anastasov63fca652017-02-06 23:14:15 +020038 void (*confirm_neigh)(const struct dst_entry *dst,
39 const void *daddr);
Alexey Dobriyan86393e52009-08-29 01:34:49 +000040
Alexey Dobriyan86393e52009-08-29 01:34:49 +000041 struct kmem_cache *kmem_cachep;
Eric Dumazetfc66f952010-10-08 06:37:34 +000042
43 struct percpu_counter pcpuc_entries ____cacheline_aligned_in_smp;
Alexey Dobriyan86393e52009-08-29 01:34:49 +000044};
Eric Dumazetfc66f952010-10-08 06:37:34 +000045
46static inline int dst_entries_get_fast(struct dst_ops *dst)
47{
48 return percpu_counter_read_positive(&dst->pcpuc_entries);
49}
50
51static inline int dst_entries_get_slow(struct dst_ops *dst)
52{
Eric Dumazetc2a2efb2017-01-20 05:06:08 -080053 return percpu_counter_sum_positive(&dst->pcpuc_entries);
Eric Dumazetfc66f952010-10-08 06:37:34 +000054}
55
Eric Dumazetcf86a082020-05-07 18:58:10 -070056#define DST_PERCPU_COUNTER_BATCH 32
Eric Dumazetfc66f952010-10-08 06:37:34 +000057static inline void dst_entries_add(struct dst_ops *dst, int val)
58{
Eric Dumazetcf86a082020-05-07 18:58:10 -070059 percpu_counter_add_batch(&dst->pcpuc_entries, val,
60 DST_PERCPU_COUNTER_BATCH);
Eric Dumazetfc66f952010-10-08 06:37:34 +000061}
62
63static inline int dst_entries_init(struct dst_ops *dst)
64{
Tejun Heo908c7f12014-09-08 09:51:29 +090065 return percpu_counter_init(&dst->pcpuc_entries, 0, GFP_KERNEL);
Eric Dumazetfc66f952010-10-08 06:37:34 +000066}
67
68static inline void dst_entries_destroy(struct dst_ops *dst)
69{
70 percpu_counter_destroy(&dst->pcpuc_entries);
71}
72
Alexey Dobriyan86393e52009-08-29 01:34:49 +000073#endif