blob: d06bb2dd39002171c5aa8f99f8500cd1f15b7eca [file] [log] [blame]
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001/* Kernel module to match one of a list of TCP/UDP(-Lite)/SCTP/DCCP ports:
2 ports are in the same place so we can treat them as equal. */
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -08003
4/* (C) 1999-2001 Paul `Rusty' Russell
5 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/module.h>
13#include <linux/types.h>
14#include <linux/udp.h>
15#include <linux/skbuff.h>
16#include <linux/in.h>
17
18#include <linux/netfilter/xt_multiport.h>
19#include <linux/netfilter/x_tables.h>
20#include <linux/netfilter_ipv4/ip_tables.h>
21#include <linux/netfilter_ipv6/ip6_tables.h>
22
23MODULE_LICENSE("GPL");
24MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080025MODULE_DESCRIPTION("Xtables: multiple port matching for TCP, UDP, UDP-Lite, SCTP and DCCP");
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080026MODULE_ALIAS("ipt_multiport");
27MODULE_ALIAS("ip6t_multiport");
28
29#if 0
30#define duprintf(format, args...) printk(format , ## args)
31#else
32#define duprintf(format, args...)
33#endif
34
35/* Returns 1 if the port is matched by the test, 0 otherwise. */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070036static inline bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080037ports_match_v0(const u_int16_t *portlist, enum xt_multiport_flags flags,
38 u_int8_t count, u_int16_t src, u_int16_t dst)
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080039{
40 unsigned int i;
41 for (i = 0; i < count; i++) {
42 if (flags != XT_MULTIPORT_DESTINATION && portlist[i] == src)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070043 return true;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080044
45 if (flags != XT_MULTIPORT_SOURCE && portlist[i] == dst)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070046 return true;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080047 }
48
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070049 return false;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080050}
51
52/* Returns 1 if the port is matched by the test, 0 otherwise. */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070053static inline bool
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080054ports_match_v1(const struct xt_multiport_v1 *minfo,
55 u_int16_t src, u_int16_t dst)
56{
57 unsigned int i;
58 u_int16_t s, e;
59
60 for (i = 0; i < minfo->count; i++) {
61 s = minfo->ports[i];
62
63 if (minfo->pflags[i]) {
64 /* range port matching */
65 e = minfo->ports[++i];
66 duprintf("src or dst matches with %d-%d?\n", s, e);
67
68 if (minfo->flags == XT_MULTIPORT_SOURCE
69 && src >= s && src <= e)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070070 return true ^ minfo->invert;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080071 if (minfo->flags == XT_MULTIPORT_DESTINATION
72 && dst >= s && dst <= e)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070073 return true ^ minfo->invert;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080074 if (minfo->flags == XT_MULTIPORT_EITHER
75 && ((dst >= s && dst <= e)
76 || (src >= s && src <= e)))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070077 return true ^ minfo->invert;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080078 } else {
79 /* exact port matching */
80 duprintf("src or dst matches with %d?\n", s);
81
82 if (minfo->flags == XT_MULTIPORT_SOURCE
83 && src == s)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070084 return true ^ minfo->invert;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080085 if (minfo->flags == XT_MULTIPORT_DESTINATION
86 && dst == s)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070087 return true ^ minfo->invert;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080088 if (minfo->flags == XT_MULTIPORT_EITHER
89 && (src == s || dst == s))
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070090 return true ^ minfo->invert;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080091 }
92 }
93
YOSHIFUJI Hideaki601e68e2007-02-12 11:15:49 -080094 return minfo->invert;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080095}
96
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070097static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +020098multiport_mt_v0(const struct sk_buff *skb, const struct xt_match_param *par)
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -080099{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200100 const __be16 *pptr;
101 __be16 _ports[2];
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200102 const struct xt_multiport *multiinfo = par->matchinfo;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800103
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200104 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700105 return false;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800106
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200107 pptr = skb_header_pointer(skb, par->thoff, sizeof(_ports), _ports);
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800108 if (pptr == NULL) {
109 /* We've been asked to examine this packet, and we
110 * can't. Hence, no choice but to drop.
111 */
112 duprintf("xt_multiport: Dropping evil offset=0 tinygram.\n");
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200113 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700114 return false;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800115 }
116
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800117 return ports_match_v0(multiinfo->ports, multiinfo->flags,
118 multiinfo->count, ntohs(pptr[0]), ntohs(pptr[1]));
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800119}
120
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700121static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200122multiport_mt(const struct sk_buff *skb, const struct xt_match_param *par)
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800123{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200124 const __be16 *pptr;
125 __be16 _ports[2];
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200126 const struct xt_multiport_v1 *multiinfo = par->matchinfo;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800127
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200128 if (par->fragoff != 0)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700129 return false;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800130
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200131 pptr = skb_header_pointer(skb, par->thoff, sizeof(_ports), _ports);
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800132 if (pptr == NULL) {
133 /* We've been asked to examine this packet, and we
134 * can't. Hence, no choice but to drop.
135 */
136 duprintf("xt_multiport: Dropping evil offset=0 tinygram.\n");
Jan Engelhardtf7108a22008-10-08 11:35:18 +0200137 *par->hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700138 return false;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800139 }
140
141 return ports_match_v1(multiinfo, ntohs(pptr[0]), ntohs(pptr[1]));
142}
143
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700144static inline bool
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800145check(u_int16_t proto,
146 u_int8_t ip_invflags,
147 u_int8_t match_flags,
148 u_int8_t count)
149{
Patrick McHardy957dc802006-05-29 18:19:56 -0700150 /* Must specify supported protocol, no unknown flags or bad count */
151 return (proto == IPPROTO_TCP || proto == IPPROTO_UDP
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800152 || proto == IPPROTO_UDPLITE
Patrick McHardy957dc802006-05-29 18:19:56 -0700153 || proto == IPPROTO_SCTP || proto == IPPROTO_DCCP)
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800154 && !(ip_invflags & XT_INV_PROTO)
155 && (match_flags == XT_MULTIPORT_SOURCE
156 || match_flags == XT_MULTIPORT_DESTINATION
157 || match_flags == XT_MULTIPORT_EITHER)
158 && count <= XT_MULTI_PORTS;
159}
160
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200161static bool multiport_mt_check_v0(const struct xt_mtchk_param *par)
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800162{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200163 const struct ipt_ip *ip = par->entryinfo;
164 const struct xt_multiport *multiinfo = par->matchinfo;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800165
166 return check(ip->proto, ip->invflags, multiinfo->flags,
167 multiinfo->count);
168}
169
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200170static bool multiport_mt_check(const struct xt_mtchk_param *par)
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800171{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200172 const struct ipt_ip *ip = par->entryinfo;
173 const struct xt_multiport_v1 *multiinfo = par->matchinfo;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800174
175 return check(ip->proto, ip->invflags, multiinfo->flags,
176 multiinfo->count);
177}
178
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200179static bool multiport_mt6_check_v0(const struct xt_mtchk_param *par)
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800180{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200181 const struct ip6t_ip6 *ip = par->entryinfo;
182 const struct xt_multiport *multiinfo = par->matchinfo;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800183
184 return check(ip->proto, ip->invflags, multiinfo->flags,
185 multiinfo->count);
186}
187
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200188static bool multiport_mt6_check(const struct xt_mtchk_param *par)
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800189{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +0200190 const struct ip6t_ip6 *ip = par->entryinfo;
191 const struct xt_multiport_v1 *multiinfo = par->matchinfo;
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800192
193 return check(ip->proto, ip->invflags, multiinfo->flags,
194 multiinfo->count);
195}
196
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800197static struct xt_match multiport_mt_reg[] __read_mostly = {
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700198 {
199 .name = "multiport",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200200 .family = NFPROTO_IPV4,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700201 .revision = 0,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800202 .checkentry = multiport_mt_check_v0,
203 .match = multiport_mt_v0,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700204 .matchsize = sizeof(struct xt_multiport),
205 .me = THIS_MODULE,
206 },
207 {
208 .name = "multiport",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200209 .family = NFPROTO_IPV4,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700210 .revision = 1,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800211 .checkentry = multiport_mt_check,
212 .match = multiport_mt,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700213 .matchsize = sizeof(struct xt_multiport_v1),
214 .me = THIS_MODULE,
215 },
216 {
217 .name = "multiport",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200218 .family = NFPROTO_IPV6,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700219 .revision = 0,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800220 .checkentry = multiport_mt6_check_v0,
221 .match = multiport_mt_v0,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700222 .matchsize = sizeof(struct xt_multiport),
223 .me = THIS_MODULE,
224 },
225 {
226 .name = "multiport",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200227 .family = NFPROTO_IPV6,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700228 .revision = 1,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800229 .checkentry = multiport_mt6_check,
230 .match = multiport_mt,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700231 .matchsize = sizeof(struct xt_multiport_v1),
232 .me = THIS_MODULE,
233 },
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800234};
235
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800236static int __init multiport_mt_init(void)
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800237{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800238 return xt_register_matches(multiport_mt_reg,
239 ARRAY_SIZE(multiport_mt_reg));
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800240}
241
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800242static void __exit multiport_mt_exit(void)
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800243{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800244 xt_unregister_matches(multiport_mt_reg, ARRAY_SIZE(multiport_mt_reg));
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800245}
246
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800247module_init(multiport_mt_init);
248module_exit(multiport_mt_exit);