Blame view

net/netfilter/nf_conntrack_netbios_ns.c 2 KB
2874c5fd2   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
92703eee4   Patrick McHardy   [NETFILTER]: nf_c...
2
3
4
5
  /*
   *      NetBIOS name service broadcast connection tracking helper
   *
   *      (c) 2005 Patrick McHardy <kaber@trash.net>
92703eee4   Patrick McHardy   [NETFILTER]: nf_c...
6
7
8
9
10
11
12
13
14
15
16
   */
  /*
   *      This helper tracks locally originating NetBIOS name service
   *      requests by issuing permanent expectations (valid until
   *      timing out) matching all reply connections from the
   *      destination network. The only NetBIOS specific thing is
   *      actually the port number.
   */
  #include <linux/kernel.h>
  #include <linux/module.h>
  #include <linux/init.h>
92703eee4   Patrick McHardy   [NETFILTER]: nf_c...
17
  #include <linux/in.h>
92703eee4   Patrick McHardy   [NETFILTER]: nf_c...
18
19
20
21
22
23
24
25
26
27
28
  
  #include <net/netfilter/nf_conntrack.h>
  #include <net/netfilter/nf_conntrack_helper.h>
  #include <net/netfilter/nf_conntrack_expect.h>
  
  #define NMBD_PORT	137
  
  MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
  MODULE_DESCRIPTION("NetBIOS name service broadcast connection tracking helper");
  MODULE_LICENSE("GPL");
  MODULE_ALIAS("ip_conntrack_netbios_ns");
4dc06f963   Pablo Neira Ayuso   netfilter: nf_con...
29
  MODULE_ALIAS_NFCT_HELPER("netbios_ns");
92703eee4   Patrick McHardy   [NETFILTER]: nf_c...
30
31
  
  static unsigned int timeout __read_mostly = 3;
d6444062f   Joe Perches   net: Use octal no...
32
  module_param(timeout, uint, 0400);
92703eee4   Patrick McHardy   [NETFILTER]: nf_c...
33
  MODULE_PARM_DESC(timeout, "timeout for master connection/replies in seconds");
6002f266b   Patrick McHardy   [NETFILTER]: nf_c...
34
35
36
  static struct nf_conntrack_expect_policy exp_policy = {
  	.max_expected	= 1,
  };
93557f53e   Jiri Olsa   netfilter: nf_con...
37
  static int netbios_ns_help(struct sk_buff *skb, unsigned int protoff,
433029ecc   Taehee Yoo   netfilter: nf_con...
38
39
  			   struct nf_conn *ct,
  			   enum ip_conntrack_info ctinfo)
93557f53e   Jiri Olsa   netfilter: nf_con...
40
  {
433029ecc   Taehee Yoo   netfilter: nf_con...
41
  	return nf_conntrack_broadcast_help(skb, ct, ctinfo, timeout);
93557f53e   Jiri Olsa   netfilter: nf_con...
42
  }
92703eee4   Patrick McHardy   [NETFILTER]: nf_c...
43
44
  static struct nf_conntrack_helper helper __read_mostly = {
  	.name			= "netbios-ns",
93557f53e   Jiri Olsa   netfilter: nf_con...
45
  	.tuple.src.l3num	= NFPROTO_IPV4,
09640e636   Harvey Harrison   net: replace uses...
46
  	.tuple.src.u.udp.port	= cpu_to_be16(NMBD_PORT),
92703eee4   Patrick McHardy   [NETFILTER]: nf_c...
47
  	.tuple.dst.protonum	= IPPROTO_UDP,
92703eee4   Patrick McHardy   [NETFILTER]: nf_c...
48
  	.me			= THIS_MODULE,
93557f53e   Jiri Olsa   netfilter: nf_con...
49
  	.help			= netbios_ns_help,
6002f266b   Patrick McHardy   [NETFILTER]: nf_c...
50
  	.expect_policy		= &exp_policy,
92703eee4   Patrick McHardy   [NETFILTER]: nf_c...
51
52
53
54
  };
  
  static int __init nf_conntrack_netbios_ns_init(void)
  {
dcf67740f   Florian Westphal   netfilter: helper...
55
  	NF_CT_HELPER_BUILD_BUG_ON(0);
6002f266b   Patrick McHardy   [NETFILTER]: nf_c...
56
  	exp_policy.timeout = timeout;
92703eee4   Patrick McHardy   [NETFILTER]: nf_c...
57
58
59
60
61
62
63
64
65
66
  	return nf_conntrack_helper_register(&helper);
  }
  
  static void __exit nf_conntrack_netbios_ns_fini(void)
  {
  	nf_conntrack_helper_unregister(&helper);
  }
  
  module_init(nf_conntrack_netbios_ns_init);
  module_exit(nf_conntrack_netbios_ns_fini);