Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 1 | /* |
| 2 | * iptables module for DCCP protocol header matching |
| 3 | * |
| 4 | * (C) 2005 by Harald Welte <laforge@netfilter.org> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/skbuff.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 14 | #include <linux/spinlock.h> |
| 15 | #include <net/ip.h> |
| 16 | #include <linux/dccp.h> |
| 17 | |
| 18 | #include <linux/netfilter/x_tables.h> |
| 19 | #include <linux/netfilter/xt_dccp.h> |
| 20 | |
| 21 | #include <linux/netfilter_ipv4/ip_tables.h> |
| 22 | #include <linux/netfilter_ipv6/ip6_tables.h> |
| 23 | |
| 24 | MODULE_LICENSE("GPL"); |
| 25 | MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>"); |
Jan Engelhardt | 2ae15b6 | 2008-01-14 23:42:28 -0800 | [diff] [blame] | 26 | MODULE_DESCRIPTION("Xtables: DCCP protocol packet match"); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 27 | MODULE_ALIAS("ipt_dccp"); |
Jan Engelhardt | 73aaf93 | 2007-10-11 14:36:40 -0700 | [diff] [blame] | 28 | MODULE_ALIAS("ip6t_dccp"); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 29 | |
| 30 | #define DCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \ |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 31 | || (!!((invflag) & (option)) ^ (cond))) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 32 | |
| 33 | static unsigned char *dccp_optbuf; |
| 34 | static DEFINE_SPINLOCK(dccp_buflock); |
| 35 | |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 36 | static inline bool |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 37 | dccp_find_option(u_int8_t option, |
| 38 | const struct sk_buff *skb, |
| 39 | unsigned int protoff, |
| 40 | const struct dccp_hdr *dh, |
Jan Engelhardt | cff533a | 2007-07-07 22:15:12 -0700 | [diff] [blame] | 41 | bool *hotdrop) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 42 | { |
| 43 | /* tcp.doff is only 4 bits, ie. max 15 * 4 bytes */ |
Jan Engelhardt | a47362a | 2007-07-07 22:16:55 -0700 | [diff] [blame] | 44 | const unsigned char *op; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 45 | unsigned int optoff = __dccp_hdr_len(dh); |
| 46 | unsigned int optlen = dh->dccph_doff*4 - __dccp_hdr_len(dh); |
| 47 | unsigned int i; |
| 48 | |
Ilpo Järvinen | 79f55f1 | 2008-12-14 23:19:02 -0800 | [diff] [blame] | 49 | if (dh->dccph_doff * 4 < __dccp_hdr_len(dh)) |
| 50 | goto invalid; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 51 | |
| 52 | if (!optlen) |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 53 | return false; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 54 | |
| 55 | spin_lock_bh(&dccp_buflock); |
| 56 | op = skb_header_pointer(skb, protoff + optoff, optlen, dccp_optbuf); |
| 57 | if (op == NULL) { |
| 58 | /* If we don't have the whole header, drop packet. */ |
Ilpo Järvinen | 79f55f1 | 2008-12-14 23:19:02 -0800 | [diff] [blame] | 59 | goto partial; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | for (i = 0; i < optlen; ) { |
| 63 | if (op[i] == option) { |
| 64 | spin_unlock_bh(&dccp_buflock); |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 65 | return true; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 66 | } |
| 67 | |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 68 | if (op[i] < 2) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 69 | i++; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 70 | else |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 71 | i += op[i+1]?:1; |
| 72 | } |
| 73 | |
| 74 | spin_unlock_bh(&dccp_buflock); |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 75 | return false; |
Ilpo Järvinen | 79f55f1 | 2008-12-14 23:19:02 -0800 | [diff] [blame] | 76 | |
| 77 | partial: |
| 78 | spin_unlock_bh(&dccp_buflock); |
| 79 | invalid: |
| 80 | *hotdrop = true; |
| 81 | return false; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 85 | static inline bool |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 86 | match_types(const struct dccp_hdr *dh, u_int16_t typemask) |
| 87 | { |
Jan Engelhardt | 7c4e36b | 2007-07-07 22:19:08 -0700 | [diff] [blame] | 88 | return typemask & (1 << dh->dccph_type); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 89 | } |
| 90 | |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 91 | static inline bool |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 92 | match_option(u_int8_t option, const struct sk_buff *skb, unsigned int protoff, |
Jan Engelhardt | cff533a | 2007-07-07 22:15:12 -0700 | [diff] [blame] | 93 | const struct dccp_hdr *dh, bool *hotdrop) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 94 | { |
| 95 | return dccp_find_option(option, skb, protoff, dh, hotdrop); |
| 96 | } |
| 97 | |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 98 | static bool |
Jan Engelhardt | 62fc805 | 2009-07-07 20:42:08 +0200 | [diff] [blame] | 99 | dccp_mt(const struct sk_buff *skb, struct xt_action_param *par) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 100 | { |
Jan Engelhardt | f7108a20 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 101 | const struct xt_dccp_info *info = par->matchinfo; |
Jan Engelhardt | 3cf93c9 | 2008-04-14 09:56:05 +0200 | [diff] [blame] | 102 | const struct dccp_hdr *dh; |
| 103 | struct dccp_hdr _dh; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 104 | |
Jan Engelhardt | f7108a20 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 105 | if (par->fragoff != 0) |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 106 | return false; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 107 | |
Jan Engelhardt | f7108a20 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 108 | dh = skb_header_pointer(skb, par->thoff, sizeof(_dh), &_dh); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 109 | if (dh == NULL) { |
Jan Engelhardt | b4ba261 | 2009-07-07 20:54:30 +0200 | [diff] [blame] | 110 | par->hotdrop = true; |
Jan Engelhardt | 1d93a9c | 2007-07-07 22:15:35 -0700 | [diff] [blame] | 111 | return false; |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 112 | } |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 113 | |
Jan Engelhardt | 7c4e36b | 2007-07-07 22:19:08 -0700 | [diff] [blame] | 114 | return DCCHECK(ntohs(dh->dccph_sport) >= info->spts[0] |
| 115 | && ntohs(dh->dccph_sport) <= info->spts[1], |
YOSHIFUJI Hideaki | 601e68e | 2007-02-12 11:15:49 -0800 | [diff] [blame] | 116 | XT_DCCP_SRC_PORTS, info->flags, info->invflags) |
Jan Engelhardt | 7c4e36b | 2007-07-07 22:19:08 -0700 | [diff] [blame] | 117 | && DCCHECK(ntohs(dh->dccph_dport) >= info->dpts[0] |
| 118 | && ntohs(dh->dccph_dport) <= info->dpts[1], |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 119 | XT_DCCP_DEST_PORTS, info->flags, info->invflags) |
| 120 | && DCCHECK(match_types(dh, info->typemask), |
| 121 | XT_DCCP_TYPE, info->flags, info->invflags) |
Jan Engelhardt | f7108a20 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 122 | && DCCHECK(match_option(info->option, skb, par->thoff, dh, |
Jan Engelhardt | b4ba261 | 2009-07-07 20:54:30 +0200 | [diff] [blame] | 123 | &par->hotdrop), |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 124 | XT_DCCP_OPTION, info->flags, info->invflags); |
| 125 | } |
| 126 | |
Jan Engelhardt | b0f3845 | 2010-03-19 17:16:42 +0100 | [diff] [blame] | 127 | static int dccp_mt_check(const struct xt_mtchk_param *par) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 128 | { |
Jan Engelhardt | 9b4fce7 | 2008-10-08 11:35:18 +0200 | [diff] [blame] | 129 | const struct xt_dccp_info *info = par->matchinfo; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 130 | |
Jan Engelhardt | 9f56731 | 2010-03-23 17:40:13 +0100 | [diff] [blame] | 131 | if (info->flags & ~XT_DCCP_VALID_FLAGS) |
Jan Engelhardt | bd414ee | 2010-03-23 16:35:56 +0100 | [diff] [blame] | 132 | return -EINVAL; |
Jan Engelhardt | 9f56731 | 2010-03-23 17:40:13 +0100 | [diff] [blame] | 133 | if (info->invflags & ~XT_DCCP_VALID_FLAGS) |
Jan Engelhardt | bd414ee | 2010-03-23 16:35:56 +0100 | [diff] [blame] | 134 | return -EINVAL; |
Jan Engelhardt | 9f56731 | 2010-03-23 17:40:13 +0100 | [diff] [blame] | 135 | if (info->invflags & ~info->flags) |
Jan Engelhardt | bd414ee | 2010-03-23 16:35:56 +0100 | [diff] [blame] | 136 | return -EINVAL; |
| 137 | return 0; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 138 | } |
| 139 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 140 | static struct xt_match dccp_mt_reg[] __read_mostly = { |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 141 | { |
| 142 | .name = "dccp", |
Jan Engelhardt | ee999d8 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 143 | .family = NFPROTO_IPV4, |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 144 | .checkentry = dccp_mt_check, |
| 145 | .match = dccp_mt, |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 146 | .matchsize = sizeof(struct xt_dccp_info), |
| 147 | .proto = IPPROTO_DCCP, |
| 148 | .me = THIS_MODULE, |
| 149 | }, |
| 150 | { |
| 151 | .name = "dccp", |
Jan Engelhardt | ee999d8 | 2008-10-08 11:35:01 +0200 | [diff] [blame] | 152 | .family = NFPROTO_IPV6, |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 153 | .checkentry = dccp_mt_check, |
| 154 | .match = dccp_mt, |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 155 | .matchsize = sizeof(struct xt_dccp_info), |
| 156 | .proto = IPPROTO_DCCP, |
| 157 | .me = THIS_MODULE, |
| 158 | }, |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 159 | }; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 160 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 161 | static int __init dccp_mt_init(void) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 162 | { |
| 163 | int ret; |
| 164 | |
| 165 | /* doff is 8 bits, so the maximum option size is (4*256). Don't put |
| 166 | * this in BSS since DaveM is worried about locked TLB's for kernel |
| 167 | * BSS. */ |
| 168 | dccp_optbuf = kmalloc(256 * 4, GFP_KERNEL); |
| 169 | if (!dccp_optbuf) |
| 170 | return -ENOMEM; |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 171 | ret = xt_register_matches(dccp_mt_reg, ARRAY_SIZE(dccp_mt_reg)); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 172 | if (ret) |
| 173 | goto out_kfree; |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 174 | return ret; |
| 175 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 176 | out_kfree: |
| 177 | kfree(dccp_optbuf); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 178 | return ret; |
| 179 | } |
| 180 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 181 | static void __exit dccp_mt_exit(void) |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 182 | { |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 183 | xt_unregister_matches(dccp_mt_reg, ARRAY_SIZE(dccp_mt_reg)); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 184 | kfree(dccp_optbuf); |
| 185 | } |
| 186 | |
Jan Engelhardt | d3c5ee6 | 2007-12-04 23:24:03 -0800 | [diff] [blame] | 187 | module_init(dccp_mt_init); |
| 188 | module_exit(dccp_mt_exit); |