2 * iptables module to match IP address ranges
4 * (C) 2003 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
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.
10 #include <linux/module.h>
11 #include <linux/skbuff.h>
13 #include <linux/netfilter/x_tables.h>
14 #include <linux/netfilter_ipv4/ipt_iprange.h>
16 MODULE_LICENSE("GPL");
17 MODULE_AUTHOR("Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>");
18 MODULE_DESCRIPTION("iptables arbitrary IP range match module");
21 match(const struct sk_buff *skb,
22 const struct net_device *in,
23 const struct net_device *out,
24 const struct xt_match *match,
25 const void *matchinfo,
26 int offset, unsigned int protoff, bool *hotdrop)
28 const struct ipt_iprange_info *info = matchinfo;
29 const struct iphdr *iph = ip_hdr(skb);
31 if (info->flags & IPRANGE_SRC) {
32 if ((ntohl(iph->saddr) < ntohl(info->src.min_ip)
33 || ntohl(iph->saddr) > ntohl(info->src.max_ip))
34 ^ !!(info->flags & IPRANGE_SRC_INV)) {
35 pr_debug("src IP %u.%u.%u.%u NOT in range %s"
36 "%u.%u.%u.%u-%u.%u.%u.%u\n",
38 info->flags & IPRANGE_SRC_INV ? "(INV) " : "",
39 NIPQUAD(info->src.min_ip),
40 NIPQUAD(info->src.max_ip));
44 if (info->flags & IPRANGE_DST) {
45 if ((ntohl(iph->daddr) < ntohl(info->dst.min_ip)
46 || ntohl(iph->daddr) > ntohl(info->dst.max_ip))
47 ^ !!(info->flags & IPRANGE_DST_INV)) {
48 pr_debug("dst IP %u.%u.%u.%u NOT in range %s"
49 "%u.%u.%u.%u-%u.%u.%u.%u\n",
51 info->flags & IPRANGE_DST_INV ? "(INV) " : "",
52 NIPQUAD(info->dst.min_ip),
53 NIPQUAD(info->dst.max_ip));
60 static struct xt_match iprange_match __read_mostly = {
64 .matchsize = sizeof(struct ipt_iprange_info),
68 static int __init ipt_iprange_init(void)
70 return xt_register_match(&iprange_match);
73 static void __exit ipt_iprange_fini(void)
75 xt_unregister_match(&iprange_match);
78 module_init(ipt_iprange_init);
79 module_exit(ipt_iprange_fini);