cregit-Linux how code gets into the kernel

Release 4.14 net/bridge/netfilter/ebt_dnat.c

/*
 *  ebt_dnat
 *
 *      Authors:
 *      Bart De Schuymer <bdschuym@pandora.be>
 *
 *  June, 2002
 *
 */
#include <linux/module.h>
#include <net/sock.h>
#include "../br_private.h"
#include <linux/netfilter.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter_bridge/ebtables.h>
#include <linux/netfilter_bridge/ebt_nat.h>


static unsigned int ebt_dnat_tg(struct sk_buff *skb, const struct xt_action_param *par) { const struct ebt_nat_info *info = par->targinfo; struct net_device *dev; if (!skb_make_writable(skb, 0)) return EBT_DROP; ether_addr_copy(eth_hdr(skb)->h_dest, info->mac); if (is_multicast_ether_addr(info->mac)) { if (is_broadcast_ether_addr(info->mac)) skb->pkt_type = PACKET_BROADCAST; else skb->pkt_type = PACKET_MULTICAST; } else { if (xt_hooknum(par) != NF_BR_BROUTING) dev = br_port_get_rcu(xt_in(par))->br->dev; else dev = xt_in(par); if (ether_addr_equal(info->mac, dev->dev_addr)) skb->pkt_type = PACKET_HOST; else skb->pkt_type = PACKET_OTHERHOST; } return info->target; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Lüssing9862.03%17.14%
Bart De Schuymer4125.95%214.29%
Jan Engelhardt85.06%535.71%
Herbert Xu53.16%214.29%
Arnaldo Carvalho de Melo31.90%17.14%
Joonwoo Park21.27%214.29%
Joe Perches10.63%17.14%
Total158100.00%14100.00%


static int ebt_dnat_tg_check(const struct xt_tgchk_param *par) { const struct ebt_nat_info *info = par->targinfo; unsigned int hook_mask; if (BASE_CHAIN && info->target == EBT_RETURN) return -EINVAL; hook_mask = par->hook_mask & ~(1 << NF_BR_NUMHOOKS); if ((strcmp(par->table, "nat") != 0 || (hook_mask & ~((1 << NF_BR_PRE_ROUTING) | (1 << NF_BR_LOCAL_OUT)))) && (strcmp(par->table, "broute") != 0 || hook_mask & ~(1 << NF_BR_BROUTING))) return -EINVAL; if (ebt_invalid_target(info->target)) return -EINVAL; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Bart De Schuymer8062.02%114.29%
Jan Engelhardt4333.33%571.43%
Gao Feng64.65%114.29%
Total129100.00%7100.00%

static struct xt_target ebt_dnat_tg_reg __read_mostly = { .name = "dnat", .revision = 0, .family = NFPROTO_BRIDGE, .hooks = (1 << NF_BR_NUMHOOKS) | (1 << NF_BR_PRE_ROUTING) | (1 << NF_BR_LOCAL_OUT) | (1 << NF_BR_BROUTING), .target = ebt_dnat_tg, .checkentry = ebt_dnat_tg_check, .targetsize = sizeof(struct ebt_nat_info), .me = THIS_MODULE, };
static int __init ebt_dnat_init(void) { return xt_register_target(&ebt_dnat_tg_reg); }

Contributors

PersonTokensPropCommitsCommitProp
Bart De Schuymer1381.25%133.33%
Jan Engelhardt212.50%133.33%
Andrew Morton16.25%133.33%
Total16100.00%3100.00%


static void __exit ebt_dnat_fini(void) { xt_unregister_target(&ebt_dnat_tg_reg); }

Contributors

PersonTokensPropCommitsCommitProp
Bart De Schuymer1280.00%133.33%
Jan Engelhardt213.33%133.33%
Andrew Morton16.67%133.33%
Total15100.00%3100.00%

module_init(ebt_dnat_init); module_exit(ebt_dnat_fini); MODULE_DESCRIPTION("Ebtables: Destination MAC address translation"); MODULE_LICENSE("GPL");

Overall Contributors

PersonTokensPropCommitsCommitProp
Bart De Schuymer18943.55%311.54%
Jan Engelhardt12127.88%1453.85%
Linus Lüssing10123.27%13.85%
Herbert Xu71.61%27.69%
Gao Feng61.38%13.85%
Andrew Morton40.92%13.85%
Arnaldo Carvalho de Melo30.69%13.85%
Joonwoo Park20.46%27.69%
Joe Perches10.23%13.85%
Total434100.00%26100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.