Blame view

net/netfilter/nf_conntrack_snmp.c 2.22 KB
81f7e3824   Eric Lee   Initial Release, ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  /*
   *      SNMP service broadcast connection tracking helper
   *
   *      (c) 2011 Jiri Olsa <jolsa@redhat.com>
   *
   *      This program is free software; you can redistribute it and/or
   *      modify it under the terms of the GNU General Public License
   *      as published by the Free Software Foundation; either version
   *      2 of the License, or (at your option) any later version.
   */
  #include <linux/kernel.h>
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/in.h>
  
  #include <net/netfilter/nf_conntrack.h>
  #include <net/netfilter/nf_conntrack_helper.h>
  #include <net/netfilter/nf_conntrack_expect.h>
  #include <linux/netfilter/nf_conntrack_snmp.h>
  
  #define SNMP_PORT	161
  
  MODULE_AUTHOR("Jiri Olsa <jolsa@redhat.com>");
  MODULE_DESCRIPTION("SNMP service broadcast connection tracking helper");
  MODULE_LICENSE("GPL");
  MODULE_ALIAS_NFCT_HELPER("snmp");
  
  static unsigned int timeout __read_mostly = 30;
  module_param(timeout, uint, S_IRUSR);
  MODULE_PARM_DESC(timeout, "timeout for master connection/replies in seconds");
  
  int (*nf_nat_snmp_hook)(struct sk_buff *skb,
  			unsigned int protoff,
  			struct nf_conn *ct,
  			enum ip_conntrack_info ctinfo);
  EXPORT_SYMBOL_GPL(nf_nat_snmp_hook);
  
  static int snmp_conntrack_help(struct sk_buff *skb, unsigned int protoff,
  		struct nf_conn *ct, enum ip_conntrack_info ctinfo)
  {
  	typeof(nf_nat_snmp_hook) nf_nat_snmp;
  
  	nf_conntrack_broadcast_help(skb, protoff, ct, ctinfo, timeout);
  
  	nf_nat_snmp = rcu_dereference(nf_nat_snmp_hook);
  	if (nf_nat_snmp && ct->status & IPS_NAT_MASK)
  		return nf_nat_snmp(skb, protoff, ct, ctinfo);
  
  	return NF_ACCEPT;
  }
  
  static struct nf_conntrack_expect_policy exp_policy = {
  	.max_expected	= 1,
  };
  
  static struct nf_conntrack_helper helper __read_mostly = {
  	.name			= "snmp",
  	.tuple.src.l3num	= NFPROTO_IPV4,
  	.tuple.src.u.udp.port	= cpu_to_be16(SNMP_PORT),
  	.tuple.dst.protonum	= IPPROTO_UDP,
  	.me			= THIS_MODULE,
  	.help			= snmp_conntrack_help,
  	.expect_policy		= &exp_policy,
  };
  
  static int __init nf_conntrack_snmp_init(void)
  {
  	exp_policy.timeout = timeout;
  	return nf_conntrack_helper_register(&helper);
  }
  
  static void __exit nf_conntrack_snmp_fini(void)
  {
  	nf_conntrack_helper_unregister(&helper);
  }
  
  module_init(nf_conntrack_snmp_init);
  module_exit(nf_conntrack_snmp_fini);