4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include <linux/init.h>
10 #include <linux/module.h>
11 #include <linux/netdevice.h>
12 #include <net/netfilter/nf_tables.h>
14 #include <linux/ipv6.h>
15 #include <net/netfilter/nf_tables_ipv4.h>
16 #include <net/netfilter/nf_tables_ipv6.h>
19 nft_do_chain_netdev(void *priv, struct sk_buff *skb,
20 const struct nf_hook_state *state)
22 struct nft_pktinfo pkt;
24 nft_set_pktinfo(&pkt, skb, state);
26 switch (skb->protocol) {
28 nft_set_pktinfo_ipv4_validate(&pkt, skb);
30 case htons(ETH_P_IPV6):
31 nft_set_pktinfo_ipv6_validate(&pkt, skb);
34 nft_set_pktinfo_unspec(&pkt, skb);
38 return nft_do_chain(&pkt, priv);
41 static const struct nf_chain_type nft_filter_chain_netdev = {
43 .type = NFT_CHAIN_T_DEFAULT,
44 .family = NFPROTO_NETDEV,
46 .hook_mask = (1 << NF_NETDEV_INGRESS),
48 [NF_NETDEV_INGRESS] = nft_do_chain_netdev,
52 static void nft_netdev_event(unsigned long event, struct net_device *dev,
55 struct nft_base_chain *basechain = nft_base_chain(ctx->chain);
58 case NETDEV_UNREGISTER:
59 if (strcmp(basechain->dev_name, dev->name) != 0)
62 __nft_release_basechain(ctx);
64 case NETDEV_CHANGENAME:
65 if (dev->ifindex != basechain->ops.dev->ifindex)
68 strncpy(basechain->dev_name, dev->name, IFNAMSIZ);
73 static int nf_tables_netdev_event(struct notifier_block *this,
74 unsigned long event, void *ptr)
76 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
77 struct nft_table *table;
78 struct nft_chain *chain, *nr;
79 struct nft_ctx ctx = {
83 if (event != NETDEV_UNREGISTER &&
84 event != NETDEV_CHANGENAME)
87 nfnl_lock(NFNL_SUBSYS_NFTABLES);
88 list_for_each_entry(table, &ctx.net->nft.tables, list) {
89 if (table->family != NFPROTO_NETDEV)
92 ctx.family = table->family;
94 list_for_each_entry_safe(chain, nr, &table->chains, list) {
95 if (!nft_is_base_chain(chain))
99 nft_netdev_event(event, dev, &ctx);
102 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
107 static struct notifier_block nf_tables_netdev_notifier = {
108 .notifier_call = nf_tables_netdev_event,
111 static int __init nf_tables_netdev_init(void)
115 ret = nft_register_chain_type(&nft_filter_chain_netdev);
119 ret = register_netdevice_notifier(&nf_tables_netdev_notifier);
121 goto err_register_netdevice_notifier;
125 err_register_netdevice_notifier:
126 nft_unregister_chain_type(&nft_filter_chain_netdev);
131 static void __exit nf_tables_netdev_exit(void)
133 unregister_netdevice_notifier(&nf_tables_netdev_notifier);
134 nft_unregister_chain_type(&nft_filter_chain_netdev);
137 module_init(nf_tables_netdev_init);
138 module_exit(nf_tables_netdev_exit);
140 MODULE_LICENSE("GPL");
142 MODULE_ALIAS_NFT_CHAIN(5, "filter"); /* NFPROTO_NETDEV */