/* * iptables module to match inet_addr_type() of an ip. * * Copyright (c) 2004 Patrick McHardy * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include #include #include #include #include #include #include #include MODULE_LICENSE("GPL"); MODULE_AUTHOR("Patrick McHardy "); MODULE_DESCRIPTION("iptables addrtype match"); static inline int match_type(__be32 addr, u_int16_t mask) { return !!(mask & (1 << inet_addr_type(addr))); } static int match(const struct sk_buff *skb, const struct net_device *in, const struct net_device *out, const struct xt_match *match, const void *matchinfo, int offset, unsigned int protoff, int *hotdrop) { const struct ipt_addrtype_info *info = matchinfo; const struct iphdr *iph = skb->nh.iph; int ret = 1; if (info->source) ret &= match_type(iph->saddr, info->source)^info->invert_source; if (info->dest) ret &= match_type(iph->daddr, info->dest)^info->invert_dest; return ret; } static struct xt_match addrtype_match = { .name = "addrtype", .family = AF_INET, .match = match, .matchsize = sizeof(struct ipt_addrtype_info), .me = THIS_MODULE }; static int __init ipt_addrtype_init(void) { return xt_register_match(&addrtype_match); } static void __exit ipt_addrtype_fini(void) { xt_unregister_match(&addrtype_match); } module_init(ipt_addrtype_init); module_exit(ipt_addrtype_fini);