1 // SPDX-License-Identifier: GPL-2.0-only
3 * Simplified MAC Kernel (smack) security module
5 * This file contains the Smack netfilter implementation
11 * Copyright (C) 2014 Intel Corporation.
14 #include <linux/netfilter_ipv4.h>
15 #include <linux/netfilter_ipv6.h>
16 #include <linux/netdevice.h>
17 #include <net/inet_sock.h>
18 #include <net/net_namespace.h>
21 #if IS_ENABLED(CONFIG_IPV6)
23 static unsigned int smack_ipv6_output(void *priv,
25 const struct nf_hook_state *state)
27 struct sock *sk = skb_to_full_sk(skb);
28 struct socket_smack *ssp;
29 struct smack_known *skp;
31 if (sk && sk->sk_security) {
32 ssp = sk->sk_security;
34 skb->secmark = skp->smk_secid;
41 static unsigned int smack_ipv4_output(void *priv,
43 const struct nf_hook_state *state)
45 struct sock *sk = skb_to_full_sk(skb);
46 struct socket_smack *ssp;
47 struct smack_known *skp;
49 if (sk && sk->sk_security) {
50 ssp = sk->sk_security;
52 skb->secmark = skp->smk_secid;
58 static const struct nf_hook_ops smack_nf_ops[] = {
60 .hook = smack_ipv4_output,
62 .hooknum = NF_INET_LOCAL_OUT,
63 .priority = NF_IP_PRI_SELINUX_FIRST,
65 #if IS_ENABLED(CONFIG_IPV6)
67 .hook = smack_ipv6_output,
69 .hooknum = NF_INET_LOCAL_OUT,
70 .priority = NF_IP6_PRI_SELINUX_FIRST,
75 static int __net_init smack_nf_register(struct net *net)
77 return nf_register_net_hooks(net, smack_nf_ops,
78 ARRAY_SIZE(smack_nf_ops));
81 static void __net_exit smack_nf_unregister(struct net *net)
83 nf_unregister_net_hooks(net, smack_nf_ops, ARRAY_SIZE(smack_nf_ops));
86 static struct pernet_operations smack_net_ops = {
87 .init = smack_nf_register,
88 .exit = smack_nf_unregister,
91 static int __init smack_nf_ip_init(void)
93 if (smack_enabled == 0)
96 printk(KERN_DEBUG "Smack: Registering netfilter hooks\n");
97 return register_pernet_subsys(&smack_net_ops);
100 __initcall(smack_nf_ip_init);