linux-security-module.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH apparmor] apparmor: remove unneeded one-line hook wrappers
@ 2021-10-11 14:38 Florian Westphal
  2021-11-12  1:26 ` John Johansen
  0 siblings, 1 reply; 2+ messages in thread
From: Florian Westphal @ 2021-10-11 14:38 UTC (permalink / raw)
  To: linux-security-module
  Cc: john.johansen, jmorris, serge, linux-kernel, Florian Westphal

Use the common function directly.

Signed-off-by: Florian Westphal <fw@strlen.de>
---
 security/apparmor/lsm.c | 20 ++------------------
 1 file changed, 2 insertions(+), 18 deletions(-)

diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c
index f72406fe1bf2..eafb44aa553a 100644
--- a/security/apparmor/lsm.c
+++ b/security/apparmor/lsm.c
@@ -1773,32 +1773,16 @@ static unsigned int apparmor_ip_postroute(void *priv,
 
 }
 
-static unsigned int apparmor_ipv4_postroute(void *priv,
-					    struct sk_buff *skb,
-					    const struct nf_hook_state *state)
-{
-	return apparmor_ip_postroute(priv, skb, state);
-}
-
-#if IS_ENABLED(CONFIG_IPV6)
-static unsigned int apparmor_ipv6_postroute(void *priv,
-					    struct sk_buff *skb,
-					    const struct nf_hook_state *state)
-{
-	return apparmor_ip_postroute(priv, skb, state);
-}
-#endif
-
 static const struct nf_hook_ops apparmor_nf_ops[] = {
 	{
-		.hook =         apparmor_ipv4_postroute,
+		.hook =         apparmor_ip_postroute,
 		.pf =           NFPROTO_IPV4,
 		.hooknum =      NF_INET_POST_ROUTING,
 		.priority =     NF_IP_PRI_SELINUX_FIRST,
 	},
 #if IS_ENABLED(CONFIG_IPV6)
 	{
-		.hook =         apparmor_ipv6_postroute,
+		.hook =         apparmor_ip_postroute,
 		.pf =           NFPROTO_IPV6,
 		.hooknum =      NF_INET_POST_ROUTING,
 		.priority =     NF_IP6_PRI_SELINUX_FIRST,
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH apparmor] apparmor: remove unneeded one-line hook wrappers
  2021-10-11 14:38 [PATCH apparmor] apparmor: remove unneeded one-line hook wrappers Florian Westphal
@ 2021-11-12  1:26 ` John Johansen
  0 siblings, 0 replies; 2+ messages in thread
From: John Johansen @ 2021-11-12  1:26 UTC (permalink / raw)
  To: Florian Westphal, linux-security-module; +Cc: jmorris, serge, linux-kernel

On 10/11/21 7:38 AM, Florian Westphal wrote:
> Use the common function directly.
> 
> Signed-off-by: Florian Westphal <fw@strlen.de>

sorry, it looks like I forgot to reply to this. I pulled this into the
apparmor tree and it has been merged for 5.16

> ---
>  security/apparmor/lsm.c | 20 ++------------------
>  1 file changed, 2 insertions(+), 18 deletions(-)
> 
> diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c
> index f72406fe1bf2..eafb44aa553a 100644
> --- a/security/apparmor/lsm.c
> +++ b/security/apparmor/lsm.c
> @@ -1773,32 +1773,16 @@ static unsigned int apparmor_ip_postroute(void *priv,
>  
>  }
>  
> -static unsigned int apparmor_ipv4_postroute(void *priv,
> -					    struct sk_buff *skb,
> -					    const struct nf_hook_state *state)
> -{
> -	return apparmor_ip_postroute(priv, skb, state);
> -}
> -
> -#if IS_ENABLED(CONFIG_IPV6)
> -static unsigned int apparmor_ipv6_postroute(void *priv,
> -					    struct sk_buff *skb,
> -					    const struct nf_hook_state *state)
> -{
> -	return apparmor_ip_postroute(priv, skb, state);
> -}
> -#endif
> -
>  static const struct nf_hook_ops apparmor_nf_ops[] = {
>  	{
> -		.hook =         apparmor_ipv4_postroute,
> +		.hook =         apparmor_ip_postroute,
>  		.pf =           NFPROTO_IPV4,
>  		.hooknum =      NF_INET_POST_ROUTING,
>  		.priority =     NF_IP_PRI_SELINUX_FIRST,
>  	},
>  #if IS_ENABLED(CONFIG_IPV6)
>  	{
> -		.hook =         apparmor_ipv6_postroute,
> +		.hook =         apparmor_ip_postroute,
>  		.pf =           NFPROTO_IPV6,
>  		.hooknum =      NF_INET_POST_ROUTING,
>  		.priority =     NF_IP6_PRI_SELINUX_FIRST,
> 


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-11-12  1:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-11 14:38 [PATCH apparmor] apparmor: remove unneeded one-line hook wrappers Florian Westphal
2021-11-12  1:26 ` John Johansen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).