blob: 92456f1035f52bd6e1a6c8e7733c7737d58d15e1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * SNMP MIB entries for the IP subsystem.
4 *
5 * Alan Cox <gw4pts@gw4pts.ampr.org>
6 *
7 * We don't chose to implement SNMP in the kernel (this would
8 * be silly as SNMP is a pain in the backside in places). We do
9 * however need to collect the MIB statistics and export them
10 * out of /proc (eventually)
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
19#ifndef _SNMP_H
20#define _SNMP_H
21
22#include <linux/cache.h>
23#include <linux/snmp.h>
Herbert Xud647b362007-12-20 04:13:21 -080024#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26/*
27 * Mibs are stored in array of unsigned long.
28 */
29/*
30 * struct snmp_mib{}
31 * - list of entries for particular API (such as /proc/net/snmp)
32 * - name of entries.
33 */
34struct snmp_mib {
Alexey Dobriyan58339292010-01-22 10:17:26 +000035 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 int entry;
37};
38
39#define SNMP_MIB_ITEM(_name,_entry) { \
40 .name = _name, \
41 .entry = _entry, \
42}
43
44#define SNMP_MIB_SENTINEL { \
45 .name = NULL, \
46 .entry = 0, \
47}
48
49/*
50 * We use all unsigned longs. Linux will soon be so reliable that even
51 * these will rapidly get too small 8-). Seriously consider the IpInReceives
52 * count on the 20Gb/s + networks people expect in a few years time!
53 */
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/* IPstats */
56#define IPSTATS_MIB_MAX __IPSTATS_MIB_MAX
57struct ipstats_mib {
58 unsigned long mibs[IPSTATS_MIB_MAX];
Eric Dumazetec733b12010-03-18 20:36:06 +000059};
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/* ICMP */
62#define ICMP_MIB_DUMMY __ICMP_MIB_MAX
63#define ICMP_MIB_MAX (__ICMP_MIB_MAX + 1)
64
65struct icmp_mib {
66 unsigned long mibs[ICMP_MIB_MAX];
Eric Dumazetec733b12010-03-18 20:36:06 +000067};
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
David L Stevens96793b42007-09-17 09:57:33 -070069#define ICMPMSG_MIB_MAX __ICMPMSG_MIB_MAX
70struct icmpmsg_mib {
71 unsigned long mibs[ICMPMSG_MIB_MAX];
Eric Dumazetec733b12010-03-18 20:36:06 +000072};
David L Stevens96793b42007-09-17 09:57:33 -070073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/* ICMP6 (IPv6-ICMP) */
75#define ICMP6_MIB_MAX __ICMP6_MIB_MAX
76struct icmpv6_mib {
77 unsigned long mibs[ICMP6_MIB_MAX];
Eric Dumazetec733b12010-03-18 20:36:06 +000078};
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
David L Stevens14878f72007-09-16 16:52:35 -070080#define ICMP6MSG_MIB_MAX __ICMP6MSG_MIB_MAX
81struct icmpv6msg_mib {
82 unsigned long mibs[ICMP6MSG_MIB_MAX];
Eric Dumazetec733b12010-03-18 20:36:06 +000083};
David L Stevens14878f72007-09-16 16:52:35 -070084
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/* TCP */
87#define TCP_MIB_MAX __TCP_MIB_MAX
88struct tcp_mib {
89 unsigned long mibs[TCP_MIB_MAX];
Eric Dumazetec733b12010-03-18 20:36:06 +000090};
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/* UDP */
93#define UDP_MIB_MAX __UDP_MIB_MAX
94struct udp_mib {
95 unsigned long mibs[UDP_MIB_MAX];
Eric Dumazetec733b12010-03-18 20:36:06 +000096};
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/* Linux */
99#define LINUX_MIB_MAX __LINUX_MIB_MAX
100struct linux_mib {
101 unsigned long mibs[LINUX_MIB_MAX];
102};
103
Masahide NAKAMURA558f82e2007-12-20 20:42:57 -0800104/* Linux Xfrm */
105#define LINUX_MIB_XFRMMAX __LINUX_MIB_XFRMMAX
106struct linux_xfrm_mib {
107 unsigned long mibs[LINUX_MIB_XFRMMAX];
108};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110/*
111 * FIXME: On x86 and some other CPUs the split into user and softirq parts
112 * is not needed because addl $1,memory is atomic against interrupts (but
113 * atomic_inc would be overkill because of the lock cycles). Wants new
114 * nonlocked_atomic_inc() primitives -AK
115 */
116#define DEFINE_SNMP_STAT(type, name) \
Tejun Heo7d720c32010-02-16 15:20:26 +0000117 __typeof__(type) __percpu *name[2]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define DECLARE_SNMP_STAT(type, name) \
Tejun Heo7d720c32010-02-16 15:20:26 +0000119 extern __typeof__(type) __percpu *name[2]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121#define SNMP_STAT_BHPTR(name) (name[0])
122#define SNMP_STAT_USRPTR(name) (name[1])
123
Christoph Lameter4eb41d12009-10-03 19:48:22 +0900124#define SNMP_INC_STATS_BH(mib, field) \
125 __this_cpu_inc(mib[0]->mibs[field])
126#define SNMP_INC_STATS_USER(mib, field) \
127 this_cpu_inc(mib[1]->mibs[field])
128#define SNMP_INC_STATS(mib, field) \
129 this_cpu_inc(mib[!in_softirq()]->mibs[field])
130#define SNMP_DEC_STATS(mib, field) \
131 this_cpu_dec(mib[!in_softirq()]->mibs[field])
132#define SNMP_ADD_STATS_BH(mib, field, addend) \
133 __this_cpu_add(mib[0]->mibs[field], addend)
134#define SNMP_ADD_STATS_USER(mib, field, addend) \
135 this_cpu_add(mib[1]->mibs[field], addend)
Tom Herbertaa2ea052010-04-22 07:00:24 +0000136#define SNMP_ADD_STATS(mib, field, addend) \
137 this_cpu_add(mib[0]->mibs[field], addend)
Tejun Heo7d720c32010-02-16 15:20:26 +0000138/*
139 * Use "__typeof__(*mib[0]) *ptr" instead of "__typeof__(mib[0]) ptr"
140 * to make @ptr a non-percpu pointer.
141 */
Neil Hormanedf391f2009-04-27 02:45:02 -0700142#define SNMP_UPD_PO_STATS(mib, basefield, addend) \
143 do { \
Tejun Heo7d720c32010-02-16 15:20:26 +0000144 __typeof__(*mib[0]) *ptr; \
Christoph Lameter4eb41d12009-10-03 19:48:22 +0900145 preempt_disable(); \
146 ptr = this_cpu_ptr((mib)[!in_softirq()]); \
Neil Hormanedf391f2009-04-27 02:45:02 -0700147 ptr->mibs[basefield##PKTS]++; \
148 ptr->mibs[basefield##OCTETS] += addend;\
Christoph Lameter4eb41d12009-10-03 19:48:22 +0900149 preempt_enable(); \
Neil Hormanedf391f2009-04-27 02:45:02 -0700150 } while (0)
151#define SNMP_UPD_PO_STATS_BH(mib, basefield, addend) \
152 do { \
Tejun Heo7d720c32010-02-16 15:20:26 +0000153 __typeof__(*mib[0]) *ptr = \
Christoph Lameter4eb41d12009-10-03 19:48:22 +0900154 __this_cpu_ptr((mib)[!in_softirq()]); \
Neil Hormanedf391f2009-04-27 02:45:02 -0700155 ptr->mibs[basefield##PKTS]++; \
156 ptr->mibs[basefield##OCTETS] += addend;\
157 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#endif