cregit-Linux how code gets into the kernel

Release 4.8 net/ipv6/netfilter/ip6t_ah.c

/* Kernel module to match AH parameters. */

/* (C) 2001-2002 Andras Kis-Szabo <kisza@sch.bme.hu>
 *
 * 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/module.h>
#include <linux/skbuff.h>
#include <linux/ip.h>
#include <linux/ipv6.h>
#include <linux/types.h>
#include <net/checksum.h>
#include <net/ipv6.h>

#include <linux/netfilter/x_tables.h>
#include <linux/netfilter_ipv6/ip6_tables.h>
#include <linux/netfilter_ipv6/ip6t_ah.h>

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Xtables: IPv6 IPsec-AH match");
MODULE_AUTHOR("Andras Kis-Szabo <kisza@sch.bme.hu>");

/* 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

PersonTokensPropCommitsCommitProp
harald welteharald welte5988.06%125.00%
patrick mchardypatrick mchardy45.97%125.00%
jan engelhardtjan engelhardt45.97%250.00%
Total67100.00%4100.00%


static bool ah_mt6(const struct sk_buff *skb, struct xt_action_param *par) { struct ip_auth_hdr _ah; const struct ip_auth_hdr *ah; const struct ip6t_ah *ahinfo = par->matchinfo; unsigned int ptr = 0; unsigned int hdrlen = 0; int err; err = ipv6_find_hdr(skb, &ptr, NEXTHDR_AUTH, NULL, NULL); if (err < 0) { if (err != -ENOENT) par->hotdrop = true; return false; } ah = skb_header_pointer(skb, ptr, sizeof(_ah), &_ah); if (ah == NULL) { par->hotdrop = true; return false; } hdrlen = (ah->hdrlen + 2) << 2; pr_debug("IPv6 AH LEN %u %u ", hdrlen, ah->hdrlen); pr_debug("RES %04X ", ah->reserved); pr_debug("SPI %u %08X\n", ntohl(ah->spi), ntohl(ah->spi)); pr_debug("IPv6 AH spi %02X ", spi_match(ahinfo->spis[0], ahinfo->spis[1], ntohl(ah->spi), !!(ahinfo->invflags & IP6T_AH_INV_SPI))); pr_debug("len %02X %04X %02X ", ahinfo->hdrlen, hdrlen, (!ahinfo->hdrlen || (ahinfo->hdrlen == hdrlen) ^ !!(ahinfo->invflags & IP6T_AH_INV_LEN))); pr_debug("res %02X %04X %02X\n", ahinfo->hdrres, ah->reserved, !(ahinfo->hdrres && ah->reserved)); return (ah != NULL) && spi_match(ahinfo->spis[0], ahinfo->spis[1], ntohl(ah->spi), !!(ahinfo->invflags & IP6T_AH_INV_SPI)) && (!ahinfo->hdrlen || (ahinfo->hdrlen == hdrlen) ^ !!(ahinfo->invflags & IP6T_AH_INV_LEN)) && !(ahinfo->hdrres && ah->reserved); }

Contributors

PersonTokensPropCommitsCommitProp
harald welteharald welte27076.49%17.14%
yasuyuki kozakaiyasuyuki kozakai308.50%214.29%
patrick mchardypatrick mchardy298.22%321.43%
jan engelhardtjan engelhardt195.38%642.86%
hans schillstromhans schillstrom41.13%17.14%
david s. millerdavid s. miller10.28%17.14%
Total353100.00%14100.00%


static int ah_mt6_check(const struct xt_mtchk_param *par) { const struct ip6t_ah *ahinfo = par->matchinfo; if (ahinfo->invflags & ~IP6T_AH_INV_MASK) { pr_debug("unknown flags %X\n", ahinfo->invflags); return -EINVAL; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
harald welteharald welte3673.47%112.50%
jan engelhardtjan engelhardt1020.41%562.50%
patrick mchardypatrick mchardy36.12%225.00%
Total49100.00%8100.00%

static struct xt_match ah_mt6_reg __read_mostly = { .name = "ah", .family = NFPROTO_IPV6, .match = ah_mt6, .matchsize = sizeof(struct ip6t_ah), .checkentry = ah_mt6_check, .me = THIS_MODULE, };
static int __init ah_mt6_init(void) { return xt_register_match(&ah_mt6_reg); }

Contributors

PersonTokensPropCommitsCommitProp
harald welteharald welte1381.25%133.33%
jan engelhardtjan engelhardt318.75%266.67%
Total16100.00%3100.00%


static void __exit ah_mt6_exit(void) { xt_unregister_match(&ah_mt6_reg); }

Contributors

PersonTokensPropCommitsCommitProp
harald welteharald welte1280.00%133.33%
jan engelhardtjan engelhardt320.00%266.67%
Total15100.00%3100.00%

module_init(ah_mt6_init); module_exit(ah_mt6_exit);

Overall Contributors

PersonTokensPropCommitsCommitProp
harald welteharald welte44973.97%27.41%
jan engelhardtjan engelhardt6110.05%1348.15%
patrick mchardypatrick mchardy467.58%622.22%
yasuyuki kozakaiyasuyuki kozakai304.94%27.41%
art haasart haas132.14%13.70%
hans schillstromhans schillstrom40.66%13.70%
arnaldo carvalho de meloarnaldo carvalho de melo30.49%13.70%
david s. millerdavid s. miller10.16%13.70%
Total607100.00%27100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.