1 // SPDX-License-Identifier: GPL-2.0-only
11 #include <linux/module.h>
13 #include "../br_private.h"
14 #include <linux/netfilter.h>
15 #include <linux/netfilter/x_tables.h>
16 #include <linux/netfilter_bridge/ebtables.h>
17 #include <linux/netfilter_bridge/ebt_nat.h>
20 ebt_dnat_tg(struct sk_buff *skb, const struct xt_action_param *par)
22 const struct ebt_nat_info *info = par->targinfo;
24 if (skb_ensure_writable(skb, 0))
27 ether_addr_copy(eth_hdr(skb)->h_dest, info->mac);
29 if (is_multicast_ether_addr(info->mac)) {
30 if (is_broadcast_ether_addr(info->mac))
31 skb->pkt_type = PACKET_BROADCAST;
33 skb->pkt_type = PACKET_MULTICAST;
35 const struct net_device *dev;
37 switch (xt_hooknum(par)) {
41 case NF_BR_PRE_ROUTING:
42 dev = br_port_get_rcu(xt_in(par))->br->dev;
49 if (!dev) /* NF_BR_LOCAL_OUT */
52 if (ether_addr_equal(info->mac, dev->dev_addr))
53 skb->pkt_type = PACKET_HOST;
55 skb->pkt_type = PACKET_OTHERHOST;
61 static int ebt_dnat_tg_check(const struct xt_tgchk_param *par)
63 const struct ebt_nat_info *info = par->targinfo;
64 unsigned int hook_mask;
66 if (BASE_CHAIN && info->target == EBT_RETURN)
69 hook_mask = par->hook_mask & ~(1 << NF_BR_NUMHOOKS);
70 if ((strcmp(par->table, "nat") != 0 ||
71 (hook_mask & ~((1 << NF_BR_PRE_ROUTING) |
72 (1 << NF_BR_LOCAL_OUT)))) &&
73 (strcmp(par->table, "broute") != 0 ||
74 hook_mask & ~(1 << NF_BR_BROUTING)))
76 if (ebt_invalid_target(info->target))
81 static struct xt_target ebt_dnat_tg_reg __read_mostly = {
84 .family = NFPROTO_BRIDGE,
85 .hooks = (1 << NF_BR_NUMHOOKS) | (1 << NF_BR_PRE_ROUTING) |
86 (1 << NF_BR_LOCAL_OUT) | (1 << NF_BR_BROUTING),
87 .target = ebt_dnat_tg,
88 .checkentry = ebt_dnat_tg_check,
89 .targetsize = sizeof(struct ebt_nat_info),
93 static int __init ebt_dnat_init(void)
95 return xt_register_target(&ebt_dnat_tg_reg);
98 static void __exit ebt_dnat_fini(void)
100 xt_unregister_target(&ebt_dnat_tg_reg);
103 module_init(ebt_dnat_init);
104 module_exit(ebt_dnat_fini);
105 MODULE_DESCRIPTION("Ebtables: Destination MAC address translation");
106 MODULE_LICENSE("GPL");