1 /* SANE connection tracking helper
2 * (SANE = Scanner Access Now Easy)
3 * For documentation about the SANE network protocol see
4 * http://www.sane-project.org/html/doc015.html
7 /* Copyright (C) 2007 Red Hat, Inc.
9 * Based on the FTP conntrack helper (net/netfilter/nf_conntrack_ftp.c):
10 * (C) 1999-2001 Paul `Rusty' Russell
12 * (C) 2003,2004 USAGI/WIDE Project <http://www.linux-ipv6.org>
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License version 2 as
17 * published by the Free Software Foundation.
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22 #include <linux/module.h>
23 #include <linux/moduleparam.h>
24 #include <linux/netfilter.h>
25 #include <linux/slab.h>
27 #include <linux/tcp.h>
28 #include <net/netfilter/nf_conntrack.h>
29 #include <net/netfilter/nf_conntrack_helper.h>
30 #include <net/netfilter/nf_conntrack_expect.h>
31 #include <linux/netfilter/nf_conntrack_sane.h>
33 MODULE_LICENSE("GPL");
35 MODULE_DESCRIPTION("SANE connection tracking helper");
36 MODULE_ALIAS_NFCT_HELPER("sane");
38 static char *sane_buffer;
40 static DEFINE_SPINLOCK(nf_sane_lock);
43 static u_int16_t ports[MAX_PORTS];
44 static unsigned int ports_c;
45 module_param_array(ports, ushort, &ports_c, 0400);
49 #define SANE_NET_START 7 /* RPC code */
54 struct sane_reply_net_start {
56 #define SANE_STATUS_SUCCESS 0
60 /* other fields aren't interesting for conntrack */
63 static int help(struct sk_buff *skb,
66 enum ip_conntrack_info ctinfo)
68 unsigned int dataoff, datalen;
69 const struct tcphdr *th;
73 int dir = CTINFO2DIR(ctinfo);
74 struct nf_ct_sane_master *ct_sane_info = nfct_help_data(ct);
75 struct nf_conntrack_expect *exp;
76 struct nf_conntrack_tuple *tuple;
77 struct sane_request *req;
78 struct sane_reply_net_start *reply;
80 /* Until there's been traffic both ways, don't look in packets. */
81 if (ctinfo != IP_CT_ESTABLISHED &&
82 ctinfo != IP_CT_ESTABLISHED_REPLY)
85 /* Not a full tcp header? */
86 th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph);
91 dataoff = protoff + th->doff * 4;
92 if (dataoff >= skb->len)
95 datalen = skb->len - dataoff;
97 spin_lock_bh(&nf_sane_lock);
98 sb_ptr = skb_header_pointer(skb, dataoff, datalen, sane_buffer);
99 BUG_ON(sb_ptr == NULL);
101 if (dir == IP_CT_DIR_ORIGINAL) {
102 if (datalen != sizeof(struct sane_request))
106 if (req->RPC_code != htonl(SANE_NET_START)) {
107 /* Not an interesting command */
108 ct_sane_info->state = SANE_STATE_NORMAL;
112 /* We're interested in the next reply */
113 ct_sane_info->state = SANE_STATE_START_REQUESTED;
117 /* Is it a reply to an uninteresting command? */
118 if (ct_sane_info->state != SANE_STATE_START_REQUESTED)
121 /* It's a reply to SANE_NET_START. */
122 ct_sane_info->state = SANE_STATE_NORMAL;
124 if (datalen < sizeof(struct sane_reply_net_start)) {
125 pr_debug("NET_START reply too short\n");
130 if (reply->status != htonl(SANE_STATUS_SUCCESS)) {
131 /* saned refused the command */
132 pr_debug("unsuccessful SANE_STATUS = %u\n",
133 ntohl(reply->status));
137 /* Invalid saned reply? Ignore it. */
138 if (reply->zero != 0)
141 exp = nf_ct_expect_alloc(ct);
143 nf_ct_helper_log(skb, ct, "cannot alloc expectation");
148 tuple = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
149 nf_ct_expect_init(exp, NF_CT_EXPECT_CLASS_DEFAULT, nf_ct_l3num(ct),
150 &tuple->src.u3, &tuple->dst.u3,
151 IPPROTO_TCP, NULL, &reply->port);
153 pr_debug("expect: ");
154 nf_ct_dump_tuple(&exp->tuple);
156 /* Can't expect this? Best to drop packet now. */
157 if (nf_ct_expect_related(exp) != 0) {
158 nf_ct_helper_log(skb, ct, "cannot add expectation");
162 nf_ct_expect_put(exp);
165 spin_unlock_bh(&nf_sane_lock);
169 static struct nf_conntrack_helper sane[MAX_PORTS * 2] __read_mostly;
171 static const struct nf_conntrack_expect_policy sane_exp_policy = {
176 /* don't make this __exit, since it's called from __init ! */
177 static void nf_conntrack_sane_fini(void)
179 nf_conntrack_helpers_unregister(sane, ports_c * 2);
183 static int __init nf_conntrack_sane_init(void)
187 NF_CT_HELPER_BUILD_BUG_ON(sizeof(struct nf_ct_sane_master));
189 sane_buffer = kmalloc(65536, GFP_KERNEL);
194 ports[ports_c++] = SANE_PORT;
196 /* FIXME should be configurable whether IPv4 and IPv6 connections
197 are tracked or not - YK */
198 for (i = 0; i < ports_c; i++) {
199 nf_ct_helper_init(&sane[2 * i], AF_INET, IPPROTO_TCP, "sane",
200 SANE_PORT, ports[i], ports[i],
201 &sane_exp_policy, 0, help, NULL,
203 nf_ct_helper_init(&sane[2 * i + 1], AF_INET6, IPPROTO_TCP, "sane",
204 SANE_PORT, ports[i], ports[i],
205 &sane_exp_policy, 0, help, NULL,
209 ret = nf_conntrack_helpers_register(sane, ports_c * 2);
211 pr_err("failed to register helpers\n");
219 module_init(nf_conntrack_sane_init);
220 module_exit(nf_conntrack_sane_fini);