blob: cf9db035d39af73d677a2e794762db951bd7724a [file] [log] [blame]
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001/* (C) 1999-2001 Paul `Rusty' Russell
2 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * 16 Dec 2003: Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
9 * - enable working with Layer 3 protocol independent connection tracking.
10 *
11 * Derived from net/ipv4/netfilter/ip_conntrack_proto_udp.c
12 */
13
14#include <linux/types.h>
15#include <linux/sched.h>
16#include <linux/timer.h>
17#include <linux/module.h>
18#include <linux/netfilter.h>
19#include <linux/udp.h>
20#include <linux/seq_file.h>
21#include <linux/skbuff.h>
22#include <linux/ipv6.h>
23#include <net/ip6_checksum.h>
24#include <net/checksum.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010025
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080026#include <linux/netfilter.h>
27#include <linux/netfilter_ipv4.h>
28#include <linux/netfilter_ipv6.h>
29#include <net/netfilter/nf_conntrack_protocol.h>
Martin Josefssonf6180122006-11-29 02:35:01 +010030#include <net/netfilter/nf_conntrack_ecache.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080031
Brian Haley94aec082006-09-18 00:05:22 -070032unsigned int nf_ct_udp_timeout __read_mostly = 30*HZ;
33unsigned int nf_ct_udp_timeout_stream __read_mostly = 180*HZ;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080034
35static int udp_pkt_to_tuple(const struct sk_buff *skb,
36 unsigned int dataoff,
37 struct nf_conntrack_tuple *tuple)
38{
39 struct udphdr _hdr, *hp;
40
41 /* Actually only need first 8 bytes. */
42 hp = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr);
43 if (hp == NULL)
44 return 0;
45
46 tuple->src.u.udp.port = hp->source;
47 tuple->dst.u.udp.port = hp->dest;
48
49 return 1;
50}
51
52static int udp_invert_tuple(struct nf_conntrack_tuple *tuple,
53 const struct nf_conntrack_tuple *orig)
54{
55 tuple->src.u.udp.port = orig->dst.u.udp.port;
56 tuple->dst.u.udp.port = orig->src.u.udp.port;
57 return 1;
58}
59
60/* Print out the per-protocol part of the tuple. */
61static int udp_print_tuple(struct seq_file *s,
62 const struct nf_conntrack_tuple *tuple)
63{
64 return seq_printf(s, "sport=%hu dport=%hu ",
65 ntohs(tuple->src.u.udp.port),
66 ntohs(tuple->dst.u.udp.port));
67}
68
69/* Print out the private part of the conntrack. */
70static int udp_print_conntrack(struct seq_file *s,
71 const struct nf_conn *conntrack)
72{
73 return 0;
74}
75
76/* Returns verdict for packet, and may modify conntracktype */
77static int udp_packet(struct nf_conn *conntrack,
78 const struct sk_buff *skb,
79 unsigned int dataoff,
80 enum ip_conntrack_info ctinfo,
81 int pf,
82 unsigned int hooknum)
83{
84 /* If we've seen traffic both ways, this is some kind of UDP
85 stream. Extend timeout. */
86 if (test_bit(IPS_SEEN_REPLY_BIT, &conntrack->status)) {
87 nf_ct_refresh_acct(conntrack, ctinfo, skb,
88 nf_ct_udp_timeout_stream);
89 /* Also, more likely to be important, and not a probe */
90 if (!test_and_set_bit(IPS_ASSURED_BIT, &conntrack->status))
91 nf_conntrack_event_cache(IPCT_STATUS, skb);
92 } else
93 nf_ct_refresh_acct(conntrack, ctinfo, skb, nf_ct_udp_timeout);
94
95 return NF_ACCEPT;
96}
97
98/* Called when a new connection for this protocol found. */
99static int udp_new(struct nf_conn *conntrack, const struct sk_buff *skb,
100 unsigned int dataoff)
101{
102 return 1;
103}
104
105static int udp_error(struct sk_buff *skb, unsigned int dataoff,
106 enum ip_conntrack_info *ctinfo,
107 int pf,
Patrick McHardy96f6bf82006-04-06 14:19:24 -0700108 unsigned int hooknum)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800109{
110 unsigned int udplen = skb->len - dataoff;
111 struct udphdr _hdr, *hdr;
112
113 /* Header is too small? */
114 hdr = skb_header_pointer(skb, dataoff, sizeof(_hdr), &_hdr);
115 if (hdr == NULL) {
116 if (LOG_INVALID(IPPROTO_UDP))
117 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
118 "nf_ct_udp: short packet ");
119 return -NF_ACCEPT;
120 }
121
122 /* Truncated/malformed packets */
123 if (ntohs(hdr->len) > udplen || ntohs(hdr->len) < sizeof(*hdr)) {
124 if (LOG_INVALID(IPPROTO_UDP))
125 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
126 "nf_ct_udp: truncated/malformed packet ");
127 return -NF_ACCEPT;
128 }
129
130 /* Packet with no checksum */
131 if (!hdr->check)
132 return NF_ACCEPT;
133
134 /* Checksum invalid? Ignore.
135 * We skip checking packets on the outgoing path
Patrick McHardy84fa7932006-08-29 16:44:56 -0700136 * because the checksum is assumed to be correct.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800137 * FIXME: Source route IP option packets --RR */
Patrick McHardy39a27a32006-05-29 18:23:54 -0700138 if (nf_conntrack_checksum &&
139 ((pf == PF_INET && hooknum == NF_IP_PRE_ROUTING) ||
Patrick McHardy96f6bf82006-04-06 14:19:24 -0700140 (pf == PF_INET6 && hooknum == NF_IP6_PRE_ROUTING)) &&
141 nf_checksum(skb, hooknum, dataoff, IPPROTO_UDP, pf)) {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800142 if (LOG_INVALID(IPPROTO_UDP))
143 nf_log_packet(pf, 0, skb, NULL, NULL, NULL,
144 "nf_ct_udp: bad UDP checksum ");
145 return -NF_ACCEPT;
146 }
147
148 return NF_ACCEPT;
149}
150
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800151struct nf_conntrack_protocol nf_conntrack_protocol_udp4 =
152{
153 .l3proto = PF_INET,
154 .proto = IPPROTO_UDP,
155 .name = "udp",
156 .pkt_to_tuple = udp_pkt_to_tuple,
157 .invert_tuple = udp_invert_tuple,
158 .print_tuple = udp_print_tuple,
159 .print_conntrack = udp_print_conntrack,
160 .packet = udp_packet,
161 .new = udp_new,
Patrick McHardy96f6bf82006-04-06 14:19:24 -0700162 .error = udp_error,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800163#if defined(CONFIG_NF_CT_NETLINK) || \
164 defined(CONFIG_NF_CT_NETLINK_MODULE)
165 .tuple_to_nfattr = nf_ct_port_tuple_to_nfattr,
166 .nfattr_to_tuple = nf_ct_port_nfattr_to_tuple,
167#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800168};
169
170struct nf_conntrack_protocol nf_conntrack_protocol_udp6 =
171{
172 .l3proto = PF_INET6,
173 .proto = IPPROTO_UDP,
174 .name = "udp",
175 .pkt_to_tuple = udp_pkt_to_tuple,
176 .invert_tuple = udp_invert_tuple,
177 .print_tuple = udp_print_tuple,
178 .print_conntrack = udp_print_conntrack,
179 .packet = udp_packet,
180 .new = udp_new,
Patrick McHardy96f6bf82006-04-06 14:19:24 -0700181 .error = udp_error,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800182#if defined(CONFIG_NF_CT_NETLINK) || \
183 defined(CONFIG_NF_CT_NETLINK_MODULE)
184 .tuple_to_nfattr = nf_ct_port_tuple_to_nfattr,
185 .nfattr_to_tuple = nf_ct_port_nfattr_to_tuple,
186#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800187};
188
189EXPORT_SYMBOL(nf_conntrack_protocol_udp4);
190EXPORT_SYMBOL(nf_conntrack_protocol_udp6);