blob: 5ec645f27ee3841f9a4074c94e5dca37bb86fc2e [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,
30 struct sk_buff *skb, u32 mtu);
31 void (*redirect)(struct dst_entry *dst, struct sock *sk,
32 struct sk_buff *skb);
Eric W. Biedermancf91a992015-10-07 16:48:45 -050033 int (*local_out)(struct net *net, struct sock *sk, struct sk_buff *skb);
David S. Millerf894cbf2012-07-02 21:52:24 -070034 struct neighbour * (*neigh_lookup)(const struct dst_entry *dst,
35 struct sk_buff *skb,
36 const void *daddr);
Julian Anastasov63fca652017-02-06 23:14:15 +020037 void (*confirm_neigh)(const struct dst_entry *dst,
38 const void *daddr);
Alexey Dobriyan86393e52009-08-29 01:34:49 +000039
Alexey Dobriyan86393e52009-08-29 01:34:49 +000040 struct kmem_cache *kmem_cachep;
Eric Dumazetfc66f952010-10-08 06:37:34 +000041
42 struct percpu_counter pcpuc_entries ____cacheline_aligned_in_smp;
Alexey Dobriyan86393e52009-08-29 01:34:49 +000043};
Eric Dumazetfc66f952010-10-08 06:37:34 +000044
45static inline int dst_entries_get_fast(struct dst_ops *dst)
46{
47 return percpu_counter_read_positive(&dst->pcpuc_entries);
48}
49
50static inline int dst_entries_get_slow(struct dst_ops *dst)
51{
Eric Dumazetc2a2efb2017-01-20 05:06:08 -080052 return percpu_counter_sum_positive(&dst->pcpuc_entries);
Eric Dumazetfc66f952010-10-08 06:37:34 +000053}
54
55static inline void dst_entries_add(struct dst_ops *dst, int val)
56{
Eric Dumazetfc66f952010-10-08 06:37:34 +000057 percpu_counter_add(&dst->pcpuc_entries, val);
Eric Dumazetfc66f952010-10-08 06:37:34 +000058}
59
60static inline int dst_entries_init(struct dst_ops *dst)
61{
Tejun Heo908c7f12014-09-08 09:51:29 +090062 return percpu_counter_init(&dst->pcpuc_entries, 0, GFP_KERNEL);
Eric Dumazetfc66f952010-10-08 06:37:34 +000063}
64
65static inline void dst_entries_destroy(struct dst_ops *dst)
66{
67 percpu_counter_destroy(&dst->pcpuc_entries);
68}
69
Alexey Dobriyan86393e52009-08-29 01:34:49 +000070#endif