Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __NET_GEN_STATS_H |
| 2 | #define __NET_GEN_STATS_H |
| 3 | |
| 4 | #include <linux/gen_stats.h> |
| 5 | #include <linux/socket.h> |
| 6 | #include <linux/rtnetlink.h> |
| 7 | #include <linux/pkt_sched.h> |
| 8 | |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 9 | struct gnet_stats_basic_cpu { |
| 10 | struct gnet_stats_basic_packed bstats; |
| 11 | struct u64_stats_sync syncp; |
| 12 | }; |
| 13 | |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 14 | struct net_rate_estimator; |
| 15 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 16 | struct gnet_dump { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | spinlock_t * lock; |
| 18 | struct sk_buff * skb; |
Patrick McHardy | 1e90474 | 2008-01-22 22:11:17 -0800 | [diff] [blame] | 19 | struct nlattr * tail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 21 | /* Backward compatibility */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | int compat_tc_stats; |
| 23 | int compat_xstats; |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 24 | int padattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | void * xstats; |
| 26 | int xstats_len; |
| 27 | struct tc_stats tc_stats; |
| 28 | }; |
| 29 | |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 30 | int gnet_stats_start_copy(struct sk_buff *skb, int type, spinlock_t *lock, |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 31 | struct gnet_dump *d, int padattr); |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 32 | |
| 33 | int gnet_stats_start_copy_compat(struct sk_buff *skb, int type, |
| 34 | int tc_stats_type, int xstats_type, |
Nicolas Dichtel | 9854518 | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 35 | spinlock_t *lock, struct gnet_dump *d, |
| 36 | int padattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Eric Dumazet | edb09eb | 2016-06-06 09:37:16 -0700 | [diff] [blame] | 38 | int gnet_stats_copy_basic(const seqcount_t *running, |
| 39 | struct gnet_dump *d, |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 40 | struct gnet_stats_basic_cpu __percpu *cpu, |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 41 | struct gnet_stats_basic_packed *b); |
Eric Dumazet | edb09eb | 2016-06-06 09:37:16 -0700 | [diff] [blame] | 42 | void __gnet_stats_copy_basic(const seqcount_t *running, |
| 43 | struct gnet_stats_basic_packed *bstats, |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 44 | struct gnet_stats_basic_cpu __percpu *cpu, |
| 45 | struct gnet_stats_basic_packed *b); |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 46 | int gnet_stats_copy_rate_est(struct gnet_dump *d, |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 47 | struct net_rate_estimator __rcu **ptr); |
John Fastabend | 6401585 | 2014-09-28 11:53:57 -0700 | [diff] [blame] | 48 | int gnet_stats_copy_queue(struct gnet_dump *d, |
John Fastabend | b0ab6f9 | 2014-09-28 11:54:24 -0700 | [diff] [blame] | 49 | struct gnet_stats_queue __percpu *cpu_q, |
| 50 | struct gnet_stats_queue *q, __u32 qlen); |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 51 | int gnet_stats_copy_app(struct gnet_dump *d, void *st, int len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 53 | int gnet_stats_finish_copy(struct gnet_dump *d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 55 | int gen_new_estimator(struct gnet_stats_basic_packed *bstats, |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 56 | struct gnet_stats_basic_cpu __percpu *cpu_bstats, |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 57 | struct net_rate_estimator __rcu **rate_est, |
Eric Dumazet | edb09eb | 2016-06-06 09:37:16 -0700 | [diff] [blame] | 58 | spinlock_t *stats_lock, |
| 59 | seqcount_t *running, struct nlattr *opt); |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 60 | void gen_kill_estimator(struct net_rate_estimator __rcu **ptr); |
Joe Perches | 8aae218 | 2013-09-20 11:23:26 -0700 | [diff] [blame] | 61 | int gen_replace_estimator(struct gnet_stats_basic_packed *bstats, |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 62 | struct gnet_stats_basic_cpu __percpu *cpu_bstats, |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 63 | struct net_rate_estimator __rcu **ptr, |
Eric Dumazet | edb09eb | 2016-06-06 09:37:16 -0700 | [diff] [blame] | 64 | spinlock_t *stats_lock, |
| 65 | seqcount_t *running, struct nlattr *opt); |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 66 | bool gen_estimator_active(struct net_rate_estimator __rcu **ptr); |
| 67 | bool gen_estimator_read(struct net_rate_estimator __rcu **ptr, |
| 68 | struct gnet_stats_rate_est64 *sample); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | #endif |