blob: 4579d8de13b15d75f69181c7e4bd36ed3d7e39db [file] [log] [blame]
Patrick McHardy59eecdf2007-07-14 20:48:44 -07001/* (C) 1999-2001 Paul `Rusty' Russell
2 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
3 * (C) 2007 Patrick McHardy <kaber@trash.net>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/types.h>
11#include <linux/timer.h>
12#include <linux/module.h>
Patrick McHardy59eecdf2007-07-14 20:48:44 -070013#include <linux/udp.h>
14#include <linux/seq_file.h>
15#include <linux/skbuff.h>
16#include <linux/ipv6.h>
17#include <net/ip6_checksum.h>
18#include <net/checksum.h>
19
20#include <linux/netfilter.h>
21#include <linux/netfilter_ipv4.h>
22#include <linux/netfilter_ipv6.h>
23#include <net/netfilter/nf_conntrack_l4proto.h>
24#include <net/netfilter/nf_conntrack_ecache.h>
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080025#include <net/netfilter/nf_log.h>
Patrick McHardy59eecdf2007-07-14 20:48:44 -070026
27static unsigned int nf_ct_udplite_timeout __read_mostly = 30*HZ;
28static unsigned int nf_ct_udplite_timeout_stream __read_mostly = 180*HZ;
29
Jan Engelhardt09f263c2008-04-14 11:15:53 +020030static bool udplite_pkt_to_tuple(const struct sk_buff *skb,
31 unsigned int dataoff,
32 struct nf_conntrack_tuple *tuple)
Patrick McHardy59eecdf2007-07-14 20:48:44 -070033{
Jan Engelhardtda3f13c2008-01-31 04:52:29 -080034 const struct udphdr *hp;
35 struct udphdr _hdr;
Patrick McHardy59eecdf2007-07-14 20:48:44 -070036
37 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr);
38 if (hp == NULL)
Jan Engelhardt09f263c2008-04-14 11:15:53 +020039 return false;
Patrick McHardy59eecdf2007-07-14 20:48:44 -070040
41 tuple->src.u.udp.port = hp->source;
42 tuple->dst.u.udp.port = hp->dest;
Jan Engelhardt09f263c2008-04-14 11:15:53 +020043 return true;
Patrick McHardy59eecdf2007-07-14 20:48:44 -070044}
45
Jan Engelhardt09f263c2008-04-14 11:15:53 +020046static bool udplite_invert_tuple(struct nf_conntrack_tuple *tuple,
47 const struct nf_conntrack_tuple *orig)
Patrick McHardy59eecdf2007-07-14 20:48:44 -070048{
49 tuple->src.u.udp.port = orig->dst.u.udp.port;
50 tuple->dst.u.udp.port = orig->src.u.udp.port;
Jan Engelhardt09f263c2008-04-14 11:15:53 +020051 return true;
Patrick McHardy59eecdf2007-07-14 20:48:44 -070052}
53
54/* Print out the per-protocol part of the tuple. */
55static int udplite_print_tuple(struct seq_file *s,
56 const struct nf_conntrack_tuple *tuple)
57{
58 return seq_printf(s, "sport=%hu dport=%hu ",
59 ntohs(tuple->src.u.udp.port),
60 ntohs(tuple->dst.u.udp.port));
61}
62
Patrick McHardy59eecdf2007-07-14 20:48:44 -070063/* Returns verdict for packet, and may modify conntracktype */
Patrick McHardyc88130b2008-01-31 04:42:11 -080064static int udplite_packet(struct nf_conn *ct,
Patrick McHardy59eecdf2007-07-14 20:48:44 -070065 const struct sk_buff *skb,
66 unsigned int dataoff,
67 enum ip_conntrack_info ctinfo,
Jan Engelhardt76108ce2008-10-08 11:35:00 +020068 u_int8_t pf,
Patrick McHardy59eecdf2007-07-14 20:48:44 -070069 unsigned int hooknum)
70{
71 /* If we've seen traffic both ways, this is some kind of UDP
72 stream. Extend timeout. */
Patrick McHardyc88130b2008-01-31 04:42:11 -080073 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status)) {
74 nf_ct_refresh_acct(ct, ctinfo, skb,
Patrick McHardy59eecdf2007-07-14 20:48:44 -070075 nf_ct_udplite_timeout_stream);
76 /* Also, more likely to be important, and not a probe */
Patrick McHardyc88130b2008-01-31 04:42:11 -080077 if (!test_and_set_bit(IPS_ASSURED_BIT, &ct->status))
Alexey Dobriyana71996f2008-10-08 11:35:07 +020078 nf_conntrack_event_cache(IPCT_STATUS, ct);
Patrick McHardy59eecdf2007-07-14 20:48:44 -070079 } else
Patrick McHardyc88130b2008-01-31 04:42:11 -080080 nf_ct_refresh_acct(ct, ctinfo, skb, nf_ct_udplite_timeout);
Patrick McHardy59eecdf2007-07-14 20:48:44 -070081
82 return NF_ACCEPT;
83}
84
85/* Called when a new connection for this protocol found. */
Jan Engelhardt09f263c2008-04-14 11:15:53 +020086static bool udplite_new(struct nf_conn *ct, const struct sk_buff *skb,
87 unsigned int dataoff)
Patrick McHardy59eecdf2007-07-14 20:48:44 -070088{
Jan Engelhardt09f263c2008-04-14 11:15:53 +020089 return true;
Patrick McHardy59eecdf2007-07-14 20:48:44 -070090}
91
Alexey Dobriyan74c51a12008-10-08 11:35:05 +020092static int udplite_error(struct net *net,
93 struct sk_buff *skb,
94 unsigned int dataoff,
Patrick McHardy59eecdf2007-07-14 20:48:44 -070095 enum ip_conntrack_info *ctinfo,
Jan Engelhardt76108ce2008-10-08 11:35:00 +020096 u_int8_t pf,
Patrick McHardy59eecdf2007-07-14 20:48:44 -070097 unsigned int hooknum)
98{
99 unsigned int udplen = skb->len - dataoff;
Jan Engelhardtda3f13c2008-01-31 04:52:29 -0800100 const struct udphdr *hdr;
101 struct udphdr _hdr;
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700102 unsigned int cscov;
103
104 /* Header is too small? */
105 hdr = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr);
106 if (hdr == NULL) {
Alexey Dobriyanc2a2c7e2008-10-08 11:35:08 +0200107 if (LOG_INVALID(net, IPPROTO_UDPLITE))
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700108 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
109 "nf_ct_udplite: short packet ");
110 return -NF_ACCEPT;
111 }
112
113 cscov = ntohs(hdr->len);
114 if (cscov == 0)
115 cscov = udplen;
116 else if (cscov < sizeof(*hdr) || cscov > udplen) {
Alexey Dobriyanc2a2c7e2008-10-08 11:35:08 +0200117 if (LOG_INVALID(net, IPPROTO_UDPLITE))
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700118 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
119 "nf_ct_udplite: invalid checksum coverage ");
120 return -NF_ACCEPT;
121 }
122
123 /* UDPLITE mandates checksums */
124 if (!hdr->check) {
Alexey Dobriyanc2a2c7e2008-10-08 11:35:08 +0200125 if (LOG_INVALID(net, IPPROTO_UDPLITE))
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700126 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
127 "nf_ct_udplite: checksum missing ");
128 return -NF_ACCEPT;
129 }
130
131 /* Checksum invalid? Ignore. */
Alexey Dobriyanc04d0552008-10-08 11:35:08 +0200132 if (net->ct.sysctl_checksum && hooknum == NF_INET_PRE_ROUTING &&
Patrick McHardyd63a6502008-03-20 15:15:53 +0100133 nf_checksum_partial(skb, hooknum, dataoff, cscov, IPPROTO_UDP,
134 pf)) {
Alexey Dobriyanc2a2c7e2008-10-08 11:35:08 +0200135 if (LOG_INVALID(net, IPPROTO_UDPLITE))
Patrick McHardyd63a6502008-03-20 15:15:53 +0100136 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
137 "nf_ct_udplite: bad UDPLite checksum ");
138 return -NF_ACCEPT;
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700139 }
140
141 return NF_ACCEPT;
142}
143
144#ifdef CONFIG_SYSCTL
145static unsigned int udplite_sysctl_table_users;
146static struct ctl_table_header *udplite_sysctl_header;
147static struct ctl_table udplite_sysctl_table[] = {
148 {
149 .ctl_name = CTL_UNNUMBERED,
150 .procname = "nf_conntrack_udplite_timeout",
151 .data = &nf_ct_udplite_timeout,
152 .maxlen = sizeof(unsigned int),
153 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800154 .proc_handler = proc_dointvec_jiffies,
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700155 },
156 {
157 .ctl_name = CTL_UNNUMBERED,
158 .procname = "nf_conntrack_udplite_timeout_stream",
159 .data = &nf_ct_udplite_timeout_stream,
160 .maxlen = sizeof(unsigned int),
161 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800162 .proc_handler = proc_dointvec_jiffies,
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700163 },
164 {
165 .ctl_name = 0
166 }
167};
168#endif /* CONFIG_SYSCTL */
169
170static struct nf_conntrack_l4proto nf_conntrack_l4proto_udplite4 __read_mostly =
171{
172 .l3proto = PF_INET,
173 .l4proto = IPPROTO_UDPLITE,
174 .name = "udplite",
175 .pkt_to_tuple = udplite_pkt_to_tuple,
176 .invert_tuple = udplite_invert_tuple,
177 .print_tuple = udplite_print_tuple,
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700178 .packet = udplite_packet,
179 .new = udplite_new,
180 .error = udplite_error,
181#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Patrick McHardyfdf70832007-09-28 14:37:41 -0700182 .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr,
183 .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple,
Patrick McHardyf73e9242007-09-28 14:39:55 -0700184 .nla_policy = nf_ct_port_nla_policy,
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700185#endif
186#ifdef CONFIG_SYSCTL
187 .ctl_table_users = &udplite_sysctl_table_users,
188 .ctl_table_header = &udplite_sysctl_header,
189 .ctl_table = udplite_sysctl_table,
190#endif
191};
192
193static struct nf_conntrack_l4proto nf_conntrack_l4proto_udplite6 __read_mostly =
194{
195 .l3proto = PF_INET6,
196 .l4proto = IPPROTO_UDPLITE,
197 .name = "udplite",
198 .pkt_to_tuple = udplite_pkt_to_tuple,
199 .invert_tuple = udplite_invert_tuple,
200 .print_tuple = udplite_print_tuple,
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700201 .packet = udplite_packet,
202 .new = udplite_new,
203 .error = udplite_error,
204#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Patrick McHardyfdf70832007-09-28 14:37:41 -0700205 .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr,
206 .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple,
Patrick McHardyf73e9242007-09-28 14:39:55 -0700207 .nla_policy = nf_ct_port_nla_policy,
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700208#endif
209#ifdef CONFIG_SYSCTL
210 .ctl_table_users = &udplite_sysctl_table_users,
211 .ctl_table_header = &udplite_sysctl_header,
212 .ctl_table = udplite_sysctl_table,
213#endif
214};
215
216static int __init nf_conntrack_proto_udplite_init(void)
217{
218 int err;
219
220 err = nf_conntrack_l4proto_register(&nf_conntrack_l4proto_udplite4);
221 if (err < 0)
222 goto err1;
223 err = nf_conntrack_l4proto_register(&nf_conntrack_l4proto_udplite6);
224 if (err < 0)
225 goto err2;
226 return 0;
227err2:
228 nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_udplite4);
229err1:
230 return err;
231}
232
233static void __exit nf_conntrack_proto_udplite_exit(void)
234{
235 nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_udplite6);
236 nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_udplite4);
237}
238
239module_init(nf_conntrack_proto_udplite_init);
240module_exit(nf_conntrack_proto_udplite_exit);
241
242MODULE_LICENSE("GPL");