2 * Simplified MAC Kernel (smack) security module
4 * This file contains the Smack netfilter implementation
10 * Copyright (C) 2014 Intel Corporation.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2,
14 * as published by the Free Software Foundation.
17 #include <linux/netfilter_ipv4.h>
18 #include <linux/netfilter_ipv6.h>
19 #include <linux/netdevice.h>
22 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
24 static unsigned int smack_ipv6_output(const struct nf_hook_ops *ops,
26 const struct net_device *in,
27 const struct net_device *out,
28 int (*okfn)(struct sk_buff *))
30 struct socket_smack *ssp;
31 struct smack_known *skp;
33 if (skb && skb->sk && skb->sk->sk_security) {
34 ssp = skb->sk->sk_security;
36 skb->secmark = skp->smk_secid;
43 static unsigned int smack_ipv4_output(const struct nf_hook_ops *ops,
45 const struct net_device *in,
46 const struct net_device *out,
47 int (*okfn)(struct sk_buff *))
49 struct socket_smack *ssp;
50 struct smack_known *skp;
52 if (skb && skb->sk && skb->sk->sk_security) {
53 ssp = skb->sk->sk_security;
55 skb->secmark = skp->smk_secid;
61 static struct nf_hook_ops smack_nf_ops[] = {
63 .hook = smack_ipv4_output,
66 .hooknum = NF_INET_LOCAL_OUT,
67 .priority = NF_IP_PRI_SELINUX_FIRST,
69 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
71 .hook = smack_ipv6_output,
74 .hooknum = NF_INET_LOCAL_OUT,
75 .priority = NF_IP6_PRI_SELINUX_FIRST,
80 static int __init smack_nf_ip_init(void)
84 if (smack_enabled == 0)
87 printk(KERN_DEBUG "Smack: Registering netfilter hooks\n");
89 err = nf_register_hooks(smack_nf_ops, ARRAY_SIZE(smack_nf_ops));
91 pr_info("Smack: nf_register_hooks: error %d\n", err);
96 __initcall(smack_nf_ip_init);