blob: 8471d9715bde71479478aa23388d801c7026be94 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jan Engelhardtf72e25a2008-01-14 23:42:47 -08002 * xt_iprange - Netfilter module to match IP address ranges
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Jan Engelhardtf72e25a2008-01-14 23:42:47 -08004 * (C) 2003 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -08005 * (C) CC Computer Consultants GmbH, 2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Jan Engelhardtf72e25a2008-01-14 23:42:47 -08007 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/skbuff.h>
14#include <linux/ip.h>
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080015#include <linux/ipv6.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080016#include <linux/netfilter/x_tables.h>
Jan Engelhardt5da621f2008-02-07 17:57:11 -080017#include <linux/netfilter/xt_iprange.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080019static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +020020iprange_mt4(const struct sk_buff *skb, const struct xt_match_param *par)
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080021{
Jan Engelhardtf7108a22008-10-08 11:35:18 +020022 const struct xt_iprange_mtinfo *info = par->matchinfo;
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080023 const struct iphdr *iph = ip_hdr(skb);
24 bool m;
25
26 if (info->flags & IPRANGE_SRC) {
27 m = ntohl(iph->saddr) < ntohl(info->src_min.ip);
28 m |= ntohl(iph->saddr) > ntohl(info->src_max.ip);
Alexey Dobriyan6def1eb2008-10-20 03:32:21 -070029 m ^= !!(info->flags & IPRANGE_SRC_INV);
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080030 if (m) {
Harvey Harrison14d5e832008-10-31 00:54:29 -070031 pr_debug("src IP %pI4 NOT in range %s%pI4-%pI4\n",
32 &iph->saddr,
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080033 (info->flags & IPRANGE_SRC_INV) ? "(INV) " : "",
Harvey Harrison14d5e832008-10-31 00:54:29 -070034 &info->src_max.ip,
35 &info->src_max.ip);
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080036 return false;
37 }
38 }
39 if (info->flags & IPRANGE_DST) {
40 m = ntohl(iph->daddr) < ntohl(info->dst_min.ip);
41 m |= ntohl(iph->daddr) > ntohl(info->dst_max.ip);
Alexey Dobriyan6def1eb2008-10-20 03:32:21 -070042 m ^= !!(info->flags & IPRANGE_DST_INV);
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080043 if (m) {
Harvey Harrison14d5e832008-10-31 00:54:29 -070044 pr_debug("dst IP %pI4 NOT in range %s%pI4-%pI4\n",
45 &iph->daddr,
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080046 (info->flags & IPRANGE_DST_INV) ? "(INV) " : "",
Harvey Harrison14d5e832008-10-31 00:54:29 -070047 &info->dst_min.ip,
48 &info->dst_max.ip);
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080049 return false;
50 }
51 }
52 return true;
53}
54
55static inline int
56iprange_ipv6_sub(const struct in6_addr *a, const struct in6_addr *b)
57{
58 unsigned int i;
59 int r;
60
61 for (i = 0; i < 4; ++i) {
Jan Engelhardt27ecb1f2008-02-19 17:20:06 -080062 r = ntohl(a->s6_addr32[i]) - ntohl(b->s6_addr32[i]);
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080063 if (r != 0)
64 return r;
65 }
66
67 return 0;
68}
69
70static bool
Jan Engelhardtf7108a22008-10-08 11:35:18 +020071iprange_mt6(const struct sk_buff *skb, const struct xt_match_param *par)
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080072{
Jan Engelhardtf7108a22008-10-08 11:35:18 +020073 const struct xt_iprange_mtinfo *info = par->matchinfo;
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080074 const struct ipv6hdr *iph = ipv6_hdr(skb);
75 bool m;
76
77 if (info->flags & IPRANGE_SRC) {
78 m = iprange_ipv6_sub(&iph->saddr, &info->src_min.in6) < 0;
79 m |= iprange_ipv6_sub(&iph->saddr, &info->src_max.in6) > 0;
Alexey Dobriyan6def1eb2008-10-20 03:32:21 -070080 m ^= !!(info->flags & IPRANGE_SRC_INV);
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080081 if (m)
82 return false;
83 }
84 if (info->flags & IPRANGE_DST) {
85 m = iprange_ipv6_sub(&iph->daddr, &info->dst_min.in6) < 0;
86 m |= iprange_ipv6_sub(&iph->daddr, &info->dst_max.in6) > 0;
Alexey Dobriyan6def1eb2008-10-20 03:32:21 -070087 m ^= !!(info->flags & IPRANGE_DST_INV);
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080088 if (m)
89 return false;
90 }
91 return true;
92}
93
94static struct xt_match iprange_mt_reg[] __read_mostly = {
95 {
96 .name = "iprange",
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080097 .revision = 1,
Jan Engelhardtee999d82008-10-08 11:35:01 +020098 .family = NFPROTO_IPV4,
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -080099 .match = iprange_mt4,
100 .matchsize = sizeof(struct xt_iprange_mtinfo),
101 .me = THIS_MODULE,
102 },
103 {
104 .name = "iprange",
105 .revision = 1,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200106 .family = NFPROTO_IPV6,
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -0800107 .match = iprange_mt6,
108 .matchsize = sizeof(struct xt_iprange_mtinfo),
109 .me = THIS_MODULE,
110 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800113static int __init iprange_mt_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -0800115 return xt_register_matches(iprange_mt_reg, ARRAY_SIZE(iprange_mt_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800118static void __exit iprange_mt_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Jan Engelhardt1a50c5a2008-01-14 23:43:03 -0800120 xt_unregister_matches(iprange_mt_reg, ARRAY_SIZE(iprange_mt_reg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800123module_init(iprange_mt_init);
124module_exit(iprange_mt_exit);
Jan Engelhardtf72e25a2008-01-14 23:42:47 -0800125MODULE_LICENSE("GPL");
Jan Engelhardt36d4084d2009-06-12 18:58:19 +0200126MODULE_AUTHOR("Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>");
127MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
Jan Engelhardtf72e25a2008-01-14 23:42:47 -0800128MODULE_DESCRIPTION("Xtables: arbitrary IPv4 range matching");
Phil Oester01b7a312008-05-13 23:27:48 -0700129MODULE_ALIAS("ipt_iprange");
130MODULE_ALIAS("ip6t_iprange");