Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* This kernel module is used to modify the connection mark values, or |
| 2 | * to optionally restore the skb nfmark from the connection mark |
| 3 | * |
| 4 | * Copyright (C) 2002,2004 MARA Systems AB <http://www.marasystems.com> |
| 5 | * by Henrik Nordstrom <hno@marasystems.com> |
| 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 as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | */ |
| 21 | #include <linux/module.h> |
| 22 | #include <linux/skbuff.h> |
| 23 | #include <linux/ip.h> |
| 24 | #include <net/checksum.h> |
| 25 | |
| 26 | MODULE_AUTHOR("Henrik Nordstrom <hno@marasytems.com>"); |
| 27 | MODULE_DESCRIPTION("IP tables CONNMARK matching module"); |
| 28 | MODULE_LICENSE("GPL"); |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 29 | MODULE_ALIAS("ipt_CONNMARK"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 31 | #include <linux/netfilter/x_tables.h> |
| 32 | #include <linux/netfilter/xt_CONNMARK.h> |
Martin Josefsson | f618012 | 2006-11-29 02:35:01 +0100 | [diff] [blame] | 33 | #include <net/netfilter/nf_conntrack_ecache.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | static unsigned int |
| 36 | target(struct sk_buff **pskb, |
| 37 | const struct net_device *in, |
| 38 | const struct net_device *out, |
| 39 | unsigned int hooknum, |
Patrick McHardy | c498673 | 2006-03-20 18:02:56 -0800 | [diff] [blame] | 40 | const struct xt_target *target, |
Patrick McHardy | fe1cb10 | 2006-08-22 00:35:47 -0700 | [diff] [blame] | 41 | const void *targinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | { |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 43 | const struct xt_connmark_target_info *markinfo = targinfo; |
Patrick McHardy | 587aa64 | 2007-03-14 16:37:25 -0700 | [diff] [blame] | 44 | struct nf_conn *ct; |
| 45 | enum ip_conntrack_info ctinfo; |
Harald Welte | bf3a46a | 2005-08-09 19:22:01 -0700 | [diff] [blame] | 46 | u_int32_t diff; |
Thomas Graf | 82e91ff | 2006-11-09 15:19:14 -0800 | [diff] [blame] | 47 | u_int32_t mark; |
Harald Welte | bf3a46a | 2005-08-09 19:22:01 -0700 | [diff] [blame] | 48 | u_int32_t newmark; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Patrick McHardy | 587aa64 | 2007-03-14 16:37:25 -0700 | [diff] [blame] | 50 | ct = nf_ct_get(*pskb, &ctinfo); |
| 51 | if (ct) { |
Patrick McHardy | 90528e6 | 2006-08-22 00:33:26 -0700 | [diff] [blame] | 52 | switch(markinfo->mode) { |
| 53 | case XT_CONNMARK_SET: |
Patrick McHardy | 587aa64 | 2007-03-14 16:37:25 -0700 | [diff] [blame] | 54 | newmark = (ct->mark & ~markinfo->mask) | markinfo->mark; |
| 55 | if (newmark != ct->mark) { |
| 56 | ct->mark = newmark; |
Patrick McHardy | 90528e6 | 2006-08-22 00:33:26 -0700 | [diff] [blame] | 57 | nf_conntrack_event_cache(IPCT_MARK, *pskb); |
Jan Engelhardt | 2822b0d | 2007-02-07 15:06:43 -0800 | [diff] [blame] | 58 | } |
Patrick McHardy | 90528e6 | 2006-08-22 00:33:26 -0700 | [diff] [blame] | 59 | break; |
| 60 | case XT_CONNMARK_SAVE: |
Patrick McHardy | 587aa64 | 2007-03-14 16:37:25 -0700 | [diff] [blame] | 61 | newmark = (ct->mark & ~markinfo->mask) | |
Thomas Graf | 82e91ff | 2006-11-09 15:19:14 -0800 | [diff] [blame] | 62 | ((*pskb)->mark & markinfo->mask); |
Patrick McHardy | 587aa64 | 2007-03-14 16:37:25 -0700 | [diff] [blame] | 63 | if (ct->mark != newmark) { |
| 64 | ct->mark = newmark; |
Patrick McHardy | 90528e6 | 2006-08-22 00:33:26 -0700 | [diff] [blame] | 65 | nf_conntrack_event_cache(IPCT_MARK, *pskb); |
Patrick McHardy | 90528e6 | 2006-08-22 00:33:26 -0700 | [diff] [blame] | 66 | } |
| 67 | break; |
| 68 | case XT_CONNMARK_RESTORE: |
Thomas Graf | 82e91ff | 2006-11-09 15:19:14 -0800 | [diff] [blame] | 69 | mark = (*pskb)->mark; |
Patrick McHardy | 587aa64 | 2007-03-14 16:37:25 -0700 | [diff] [blame] | 70 | diff = (ct->mark ^ mark) & markinfo->mask; |
Jan Engelhardt | 2822b0d | 2007-02-07 15:06:43 -0800 | [diff] [blame] | 71 | (*pskb)->mark = mark ^ diff; |
Patrick McHardy | 90528e6 | 2006-08-22 00:33:26 -0700 | [diff] [blame] | 72 | break; |
Pablo Neira Ayuso | 2521c12 | 2006-08-22 00:31:24 -0700 | [diff] [blame] | 73 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 76 | return XT_CONTINUE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | static int |
| 80 | checkentry(const char *tablename, |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 81 | const void *entry, |
Patrick McHardy | c498673 | 2006-03-20 18:02:56 -0800 | [diff] [blame] | 82 | const struct xt_target *target, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | void *targinfo, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | unsigned int hook_mask) |
| 85 | { |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 86 | struct xt_connmark_target_info *matchinfo = targinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
Yasuyuki Kozakai | 11078c3 | 2006-12-12 00:29:02 -0800 | [diff] [blame] | 88 | if (nf_ct_l3proto_try_module_get(target->family) < 0) { |
| 89 | printk(KERN_WARNING "can't load conntrack support for " |
| 90 | "proto=%d\n", target->family); |
| 91 | return 0; |
| 92 | } |
Harald Welte | 2e4e6a1 | 2006-01-12 13:30:04 -0800 | [diff] [blame] | 93 | if (matchinfo->mode == XT_CONNMARK_RESTORE) { |
Patrick McHardy | 90528e6 | 2006-08-22 00:33:26 -0700 | [diff] [blame] | 94 | if (strcmp(tablename, "mangle") != 0) { |
| 95 | printk(KERN_WARNING "CONNMARK: restore can only be " |
| 96 | "called from \"mangle\" table, not \"%s\"\n", |
| 97 | tablename); |
| 98 | return 0; |
| 99 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | } |
Harald Welte | bf3a46a | 2005-08-09 19:22:01 -0700 | [diff] [blame] | 101 | if (matchinfo->mark > 0xffffffff || matchinfo->mask > 0xffffffff) { |
| 102 | printk(KERN_WARNING "CONNMARK: Only supports 32bit mark\n"); |
| 103 | return 0; |
| 104 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | return 1; |
| 106 | } |
| 107 | |
Yasuyuki Kozakai | 11078c3 | 2006-12-12 00:29:02 -0800 | [diff] [blame] | 108 | static void |
| 109 | destroy(const struct xt_target *target, void *targinfo) |
| 110 | { |
| 111 | nf_ct_l3proto_module_put(target->family); |
| 112 | } |
| 113 | |
Patrick McHardy | 7ce975b | 2006-09-20 12:06:40 -0700 | [diff] [blame] | 114 | #ifdef CONFIG_COMPAT |
| 115 | struct compat_xt_connmark_target_info { |
| 116 | compat_ulong_t mark, mask; |
| 117 | u_int8_t mode; |
| 118 | u_int8_t __pad1; |
| 119 | u_int16_t __pad2; |
| 120 | }; |
| 121 | |
| 122 | static void compat_from_user(void *dst, void *src) |
| 123 | { |
| 124 | struct compat_xt_connmark_target_info *cm = src; |
| 125 | struct xt_connmark_target_info m = { |
| 126 | .mark = cm->mark, |
| 127 | .mask = cm->mask, |
| 128 | .mode = cm->mode, |
| 129 | }; |
| 130 | memcpy(dst, &m, sizeof(m)); |
| 131 | } |
| 132 | |
| 133 | static int compat_to_user(void __user *dst, void *src) |
| 134 | { |
| 135 | struct xt_connmark_target_info *m = src; |
| 136 | struct compat_xt_connmark_target_info cm = { |
| 137 | .mark = m->mark, |
| 138 | .mask = m->mask, |
| 139 | .mode = m->mode, |
| 140 | }; |
| 141 | return copy_to_user(dst, &cm, sizeof(cm)) ? -EFAULT : 0; |
| 142 | } |
| 143 | #endif /* CONFIG_COMPAT */ |
| 144 | |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 145 | static struct xt_target xt_connmark_target[] = { |
| 146 | { |
| 147 | .name = "CONNMARK", |
| 148 | .family = AF_INET, |
| 149 | .checkentry = checkentry, |
Yasuyuki Kozakai | 11078c3 | 2006-12-12 00:29:02 -0800 | [diff] [blame] | 150 | .destroy = destroy, |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 151 | .target = target, |
| 152 | .targetsize = sizeof(struct xt_connmark_target_info), |
Patrick McHardy | 7ce975b | 2006-09-20 12:06:40 -0700 | [diff] [blame] | 153 | #ifdef CONFIG_COMPAT |
| 154 | .compatsize = sizeof(struct compat_xt_connmark_target_info), |
| 155 | .compat_from_user = compat_from_user, |
| 156 | .compat_to_user = compat_to_user, |
| 157 | #endif |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 158 | .me = THIS_MODULE |
| 159 | }, |
| 160 | { |
| 161 | .name = "CONNMARK", |
| 162 | .family = AF_INET6, |
| 163 | .checkentry = checkentry, |
Yasuyuki Kozakai | 11078c3 | 2006-12-12 00:29:02 -0800 | [diff] [blame] | 164 | .destroy = destroy, |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 165 | .target = target, |
| 166 | .targetsize = sizeof(struct xt_connmark_target_info), |
| 167 | .me = THIS_MODULE |
| 168 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | }; |
| 170 | |
Andrew Morton | 65b4b4e | 2006-03-28 16:37:06 -0800 | [diff] [blame] | 171 | static int __init xt_connmark_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | { |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 173 | return xt_register_targets(xt_connmark_target, |
| 174 | ARRAY_SIZE(xt_connmark_target)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | } |
| 176 | |
Andrew Morton | 65b4b4e | 2006-03-28 16:37:06 -0800 | [diff] [blame] | 177 | static void __exit xt_connmark_fini(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | { |
Patrick McHardy | 4470bbc | 2006-08-22 00:34:04 -0700 | [diff] [blame] | 179 | xt_unregister_targets(xt_connmark_target, |
| 180 | ARRAY_SIZE(xt_connmark_target)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } |
| 182 | |
Andrew Morton | 65b4b4e | 2006-03-28 16:37:06 -0800 | [diff] [blame] | 183 | module_init(xt_connmark_init); |
| 184 | module_exit(xt_connmark_fini); |