blob: 497b2224536fe6fe29ec904dabda14b7a55afc89 [file] [log] [blame]
Patrick McHardy92703ee2006-12-02 22:09:24 -08001/*
2 * NetBIOS name service broadcast connection tracking helper
3 *
4 * (c) 2005 Patrick McHardy <kaber@trash.net>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11/*
12 * This helper tracks locally originating NetBIOS name service
13 * requests by issuing permanent expectations (valid until
14 * timing out) matching all reply connections from the
15 * destination network. The only NetBIOS specific thing is
16 * actually the port number.
17 */
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/skbuff.h>
22#include <linux/netdevice.h>
23#include <linux/inetdevice.h>
24#include <linux/if_addr.h>
25#include <linux/in.h>
26#include <linux/ip.h>
Yasuyuki Kozakai1863f092006-12-02 22:12:54 -080027#include <linux/netfilter.h>
Patrick McHardy92703ee2006-12-02 22:09:24 -080028#include <net/route.h>
29
30#include <net/netfilter/nf_conntrack.h>
31#include <net/netfilter/nf_conntrack_helper.h>
32#include <net/netfilter/nf_conntrack_expect.h>
33
34#define NMBD_PORT 137
35
36MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
37MODULE_DESCRIPTION("NetBIOS name service broadcast connection tracking helper");
38MODULE_LICENSE("GPL");
39MODULE_ALIAS("ip_conntrack_netbios_ns");
Pablo Neira Ayuso4dc06f92008-11-17 16:01:42 +010040MODULE_ALIAS_NFCT_HELPER("netbios_ns");
Patrick McHardy92703ee2006-12-02 22:09:24 -080041
42static unsigned int timeout __read_mostly = 3;
43module_param(timeout, uint, 0400);
44MODULE_PARM_DESC(timeout, "timeout for master connection/replies in seconds");
45
Herbert Xu3db05fe2007-10-15 00:53:15 -070046static int help(struct sk_buff *skb, unsigned int protoff,
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080047 struct nf_conn *ct, enum ip_conntrack_info ctinfo)
Patrick McHardy92703ee2006-12-02 22:09:24 -080048{
49 struct nf_conntrack_expect *exp;
Herbert Xu3db05fe2007-10-15 00:53:15 -070050 struct iphdr *iph = ip_hdr(skb);
Eric Dumazet511c3f92009-06-02 05:14:27 +000051 struct rtable *rt = skb_rtable(skb);
Patrick McHardy92703ee2006-12-02 22:09:24 -080052 struct in_device *in_dev;
53 __be32 mask = 0;
54
55 /* we're only interested in locally generated packets */
Herbert Xu3db05fe2007-10-15 00:53:15 -070056 if (skb->sk == NULL)
Patrick McHardy92703ee2006-12-02 22:09:24 -080057 goto out;
58 if (rt == NULL || !(rt->rt_flags & RTCF_BROADCAST))
59 goto out;
60 if (CTINFO2DIR(ctinfo) != IP_CT_DIR_ORIGINAL)
61 goto out;
62
63 rcu_read_lock();
64 in_dev = __in_dev_get_rcu(rt->u.dst.dev);
65 if (in_dev != NULL) {
66 for_primary_ifa(in_dev) {
67 if (ifa->ifa_broadcast == iph->daddr) {
68 mask = ifa->ifa_mask;
69 break;
70 }
71 } endfor_ifa(in_dev);
72 }
73 rcu_read_unlock();
74
75 if (mask == 0)
76 goto out;
77
Patrick McHardy68236452007-07-07 22:30:49 -070078 exp = nf_ct_expect_alloc(ct);
Patrick McHardy92703ee2006-12-02 22:09:24 -080079 if (exp == NULL)
80 goto out;
81
82 exp->tuple = ct->tuplehash[IP_CT_DIR_REPLY].tuple;
83 exp->tuple.src.u.udp.port = htons(NMBD_PORT);
84
85 exp->mask.src.u3.ip = mask;
86 exp->mask.src.u.udp.port = htons(0xFFFF);
Patrick McHardy92703ee2006-12-02 22:09:24 -080087
88 exp->expectfn = NULL;
89 exp->flags = NF_CT_EXPECT_PERMANENT;
Patrick McHardy6002f2662008-03-25 20:09:15 -070090 exp->class = NF_CT_EXPECT_CLASS_DEFAULT;
Patrick McHardy88044c82007-01-09 00:03:26 -080091 exp->helper = NULL;
Patrick McHardy92703ee2006-12-02 22:09:24 -080092
Patrick McHardy68236452007-07-07 22:30:49 -070093 nf_ct_expect_related(exp);
94 nf_ct_expect_put(exp);
Patrick McHardy92703ee2006-12-02 22:09:24 -080095
Herbert Xu3db05fe2007-10-15 00:53:15 -070096 nf_ct_refresh(ct, skb, timeout * HZ);
Patrick McHardy92703ee2006-12-02 22:09:24 -080097out:
98 return NF_ACCEPT;
99}
100
Patrick McHardy6002f2662008-03-25 20:09:15 -0700101static struct nf_conntrack_expect_policy exp_policy = {
102 .max_expected = 1,
103};
104
Patrick McHardy92703ee2006-12-02 22:09:24 -0800105static struct nf_conntrack_helper helper __read_mostly = {
106 .name = "netbios-ns",
107 .tuple.src.l3num = AF_INET,
Harvey Harrison09640e62009-02-01 00:45:17 -0800108 .tuple.src.u.udp.port = cpu_to_be16(NMBD_PORT),
Patrick McHardy92703ee2006-12-02 22:09:24 -0800109 .tuple.dst.protonum = IPPROTO_UDP,
Patrick McHardy92703ee2006-12-02 22:09:24 -0800110 .me = THIS_MODULE,
111 .help = help,
Patrick McHardy6002f2662008-03-25 20:09:15 -0700112 .expect_policy = &exp_policy,
Patrick McHardy92703ee2006-12-02 22:09:24 -0800113};
114
115static int __init nf_conntrack_netbios_ns_init(void)
116{
Patrick McHardy6002f2662008-03-25 20:09:15 -0700117 exp_policy.timeout = timeout;
Patrick McHardy92703ee2006-12-02 22:09:24 -0800118 return nf_conntrack_helper_register(&helper);
119}
120
121static void __exit nf_conntrack_netbios_ns_fini(void)
122{
123 nf_conntrack_helper_unregister(&helper);
124}
125
126module_init(nf_conntrack_netbios_ns_init);
127module_exit(nf_conntrack_netbios_ns_fini);