cregit-Linux how code gets into the kernel

Release 4.8 net/ipv6/netfilter/ip6t_REJECT.c

/*
 * IP6 tables REJECT target module
 * Linux INET6 implementation
 *
 * Copyright (C)2003 USAGI/WIDE Project
 *
 * Authors:
 *      Yasuyuki Kozakai        <yasuyuki.kozakai@toshiba.co.jp>
 *
 * Copyright (c) 2005-2007 Patrick McHardy <kaber@trash.net>
 *
 * Based on net/ipv4/netfilter/ipt_REJECT.c
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/gfp.h>
#include <linux/module.h>
#include <linux/skbuff.h>
#include <linux/icmpv6.h>
#include <linux/netdevice.h>
#include <net/icmp.h>
#include <net/flow.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter_ipv6/ip6_tables.h>
#include <linux/netfilter_ipv6/ip6t_REJECT.h>

#include <net/netfilter/ipv6/nf_reject.h>

MODULE_AUTHOR("Yasuyuki KOZAKAI <yasuyuki.kozakai@toshiba.co.jp>");
MODULE_DESCRIPTION("Xtables: packet \"rejection\" target for IPv6");
MODULE_LICENSE("GPL");


static unsigned int reject_tg6(struct sk_buff *skb, const struct xt_action_param *par) { const struct ip6t_reject_info *reject = par->targinfo; struct net *net = par->net; switch (reject->with) { case IP6T_ICMP6_NO_ROUTE: nf_send_unreach6(net, skb, ICMPV6_NOROUTE, par->hooknum); break; case IP6T_ICMP6_ADM_PROHIBITED: nf_send_unreach6(net, skb, ICMPV6_ADM_PROHIBITED, par->hooknum); break; case IP6T_ICMP6_NOT_NEIGHBOUR: nf_send_unreach6(net, skb, ICMPV6_NOT_NEIGHBOUR, par->hooknum); break; case IP6T_ICMP6_ADDR_UNREACH: nf_send_unreach6(net, skb, ICMPV6_ADDR_UNREACH, par->hooknum); break; case IP6T_ICMP6_PORT_UNREACH: nf_send_unreach6(net, skb, ICMPV6_PORT_UNREACH, par->hooknum); break; case IP6T_ICMP6_ECHOREPLY: /* Do nothing */ break; case IP6T_TCP_RESET: nf_send_reset6(net, skb, par->hooknum); break; case IP6T_ICMP6_POLICY_FAIL: nf_send_unreach6(net, skb, ICMPV6_POLICY_FAIL, par->hooknum); break; case IP6T_ICMP6_REJECT_ROUTE: nf_send_unreach6(net, skb, ICMPV6_REJECT_ROUTE, par->hooknum); break; } return NF_DROP; }

Contributors

PersonTokensPropCommitsCommitProp
patrick mchardypatrick mchardy10053.48%110.00%
andreas herzandreas herz3418.18%110.00%
alexey dobriyanalexey dobriyan189.63%110.00%
jan engelhardtjan engelhardt179.09%330.00%
herbert xuherbert xu73.74%110.00%
eric leblonderic leblond63.21%110.00%
stanislav fomichevstanislav fomichev42.14%110.00%
eric w. biedermaneric w. biederman10.53%110.00%
Total187100.00%10100.00%


static int reject_tg6_check(const struct xt_tgchk_param *par) { const struct ip6t_reject_info *rejinfo = par->targinfo; const struct ip6t_entry *e = par->entryinfo; if (rejinfo->with == IP6T_ICMP6_ECHOREPLY) { pr_info("ECHOREPLY is not supported.\n"); return -EINVAL; } else if (rejinfo->with == IP6T_TCP_RESET) { /* Must specify that it's a TCP packet */ if (!(e->ipv6.flags & IP6T_F_PROTO) || e->ipv6.proto != IPPROTO_TCP || (e->ipv6.invflags & XT_INV_PROTO)) { pr_info("TCP_RESET illegal for non-tcp\n"); return -EINVAL; } } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
patrick mchardypatrick mchardy7165.74%220.00%
jan engelhardtjan engelhardt1917.59%660.00%
pablo neira ayusopablo neira ayuso1110.19%110.00%
harald welteharald welte76.48%110.00%
Total108100.00%10100.00%

static struct xt_target reject_tg6_reg __read_mostly = { .name = "REJECT", .family = NFPROTO_IPV6, .target = reject_tg6, .targetsize = sizeof(struct ip6t_reject_info), .table = "filter", .hooks = (1 << NF_INET_LOCAL_IN) | (1 << NF_INET_FORWARD) | (1 << NF_INET_LOCAL_OUT), .checkentry = reject_tg6_check, .me = THIS_MODULE };
static int __init reject_tg6_init(void) { return xt_register_target(&reject_tg6_reg); }

Contributors

PersonTokensPropCommitsCommitProp
patrick mchardypatrick mchardy1381.25%250.00%
jan engelhardtjan engelhardt318.75%250.00%
Total16100.00%4100.00%


static void __exit reject_tg6_exit(void) { xt_unregister_target(&reject_tg6_reg); }

Contributors

PersonTokensPropCommitsCommitProp
patrick mchardypatrick mchardy1280.00%133.33%
jan engelhardtjan engelhardt320.00%266.67%
Total15100.00%3100.00%

module_init(reject_tg6_init); module_exit(reject_tg6_exit);

Overall Contributors

PersonTokensPropCommitsCommitProp
patrick mchardypatrick mchardy30265.65%726.92%
jan engelhardtjan engelhardt6413.91%1038.46%
andreas herzandreas herz347.39%13.85%
alexey dobriyanalexey dobriyan183.91%13.85%
pablo neira ayusopablo neira ayuso112.39%13.85%
eric leblonderic leblond91.96%13.85%
harald welteharald welte71.52%13.85%
herbert xuherbert xu71.52%13.85%
stanislav fomichevstanislav fomichev40.87%13.85%
tejun heotejun heo30.65%13.85%
eric w. biedermaneric w. biederman10.22%13.85%
Total460100.00%26100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.