Release 4.7 net/ipv4/netfilter/ipt_ah.c
/* Kernel module to match AH parameters. */
/* (C) 1999-2000 Yon Uriarte <yon@astaro.de>
*
* 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.
*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/in.h>
#include <linux/module.h>
#include <linux/skbuff.h>
#include <linux/ip.h>
#include <linux/netfilter_ipv4/ipt_ah.h>
#include <linux/netfilter/x_tables.h>
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Yon Uriarte <yon@astaro.de>");
MODULE_DESCRIPTION("Xtables: IPv4 IPsec-AH SPI match");
/* Returns 1 if the spi is matched by the range, 0 otherwise */
static inline bool
spi_match(u_int32_t min, u_int32_t max, u_int32_t spi, bool invert)
{
bool r;
pr_debug("spi_match:%c 0x%x <= 0x%x <= 0x%x\n",
invert ? '!' : ' ', min, spi, max);
r = (spi >= min && spi <= max) ^ invert;
pr_debug(" result %s\n", r ? "PASS" : "FAILED");
return r;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
linus torvalds | linus torvalds | 61 | 91.04% | 1 | 33.33% |
jan engelhardt | jan engelhardt | 6 | 8.96% | 2 | 66.67% |
| Total | 67 | 100.00% | 3 | 100.00% |
static bool ah_mt(const struct sk_buff *skb, struct xt_action_param *par)
{
struct ip_auth_hdr _ahdr;
const struct ip_auth_hdr *ah;
const struct ipt_ah *ahinfo = par->matchinfo;
/* Must not be a fragment. */
if (par->fragoff != 0)
return false;
ah = skb_header_pointer(skb, par->thoff, sizeof(_ahdr), &_ahdr);
if (ah == NULL) {
/* We've been asked to examine this packet, and we
* can't. Hence, no choice but to drop.
*/
pr_debug("Dropping evil AH tinygram.\n");
par->hotdrop = true;
return 0;
}
return spi_match(ahinfo->spis[0], ahinfo->spis[1],
ntohl(ah->spi),
!!(ahinfo->invflags & IPT_AH_INV_SPI));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
linus torvalds | linus torvalds | 76 | 60.32% | 1 | 9.09% |
jan engelhardt | jan engelhardt | 23 | 18.25% | 7 | 63.64% |
david s. miller | david s. miller | 17 | 13.49% | 1 | 9.09% |
rusty russell | rusty russell | 9 | 7.14% | 1 | 9.09% |
harald welte | harald welte | 1 | 0.79% | 1 | 9.09% |
| Total | 126 | 100.00% | 11 | 100.00% |
static int ah_mt_check(const struct xt_mtchk_param *par)
{
const struct ipt_ah *ahinfo = par->matchinfo;
/* Must specify no unknown invflags */
if (ahinfo->invflags & ~IPT_AH_INV_MASK) {
pr_debug("unknown flags %X\n", ahinfo->invflags);
return -EINVAL;
}
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
linus torvalds | linus torvalds | 36 | 72.00% | 1 | 12.50% |
jan engelhardt | jan engelhardt | 11 | 22.00% | 5 | 62.50% |
patrick mchardy | patrick mchardy | 3 | 6.00% | 2 | 25.00% |
| Total | 50 | 100.00% | 8 | 100.00% |
static struct xt_match ah_mt_reg __read_mostly = {
.name = "ah",
.family = NFPROTO_IPV4,
.match = ah_mt,
.matchsize = sizeof(struct ipt_ah),
.proto = IPPROTO_AH,
.checkentry = ah_mt_check,
.me = THIS_MODULE,
};
static int __init ah_mt_init(void)
{
return xt_register_match(&ah_mt_reg);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
linus torvalds | linus torvalds | 12 | 75.00% | 1 | 25.00% |
jan engelhardt | jan engelhardt | 3 | 18.75% | 2 | 50.00% |
harald welte | harald welte | 1 | 6.25% | 1 | 25.00% |
| Total | 16 | 100.00% | 4 | 100.00% |
static void __exit ah_mt_exit(void)
{
xt_unregister_match(&ah_mt_reg);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
linus torvalds | linus torvalds | 11 | 73.33% | 1 | 25.00% |
jan engelhardt | jan engelhardt | 3 | 20.00% | 2 | 50.00% |
harald welte | harald welte | 1 | 6.67% | 1 | 25.00% |
| Total | 15 | 100.00% | 4 | 100.00% |
module_init(ah_mt_init);
module_exit(ah_mt_exit);
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
linus torvalds | linus torvalds | 232 | 62.03% | 1 | 4.17% |
jan engelhardt | jan engelhardt | 69 | 18.45% | 13 | 54.17% |
patrick mchardy | patrick mchardy | 18 | 4.81% | 3 | 12.50% |
david s. miller | david s. miller | 17 | 4.55% | 1 | 4.17% |
harald welte | harald welte | 16 | 4.28% | 4 | 16.67% |
art haas | art haas | 13 | 3.48% | 1 | 4.17% |
rusty russell | rusty russell | 9 | 2.41% | 1 | 4.17% |
| Total | 374 | 100.00% | 24 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.