* [PATCH] selinux: fix problems in netnode when BUG() is compiled out
@ 2012-12-05 20:58 Paul Moore
2012-12-05 20:58 ` Paul Moore
0 siblings, 1 reply; 2+ messages in thread
From: Paul Moore @ 2012-12-05 20:58 UTC (permalink / raw)
To: selinux; +Cc: geert
When the BUG() macro is disabled at compile time it can cause some
problems in the SELinux netnode code: invalid return codes and
uninitialized variables. This patch fixes this by making sure we take
some corrective action after the BUG() macro.
Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Paul Moore <pmoore@redhat.com>
---
security/selinux/netnode.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/security/selinux/netnode.c b/security/selinux/netnode.c
index c5454c0..9e0048a 100644
--- a/security/selinux/netnode.c
+++ b/security/selinux/netnode.c
@@ -166,6 +166,7 @@ static void sel_netnode_insert(struct sel_netnode *node)
break;
default:
BUG();
+ return;
}
/* we need to impose a limit on the growth of the hash table so check
@@ -225,6 +226,8 @@ static int sel_netnode_sid_slow(void *addr, u16 family, u32 *sid)
break;
default:
BUG();
+ ret = -EINVAL;
+ goto out;
}
if (ret != 0)
goto out;
--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] selinux: fix problems in netnode when BUG() is compiled out
2012-12-05 20:58 [PATCH] selinux: fix problems in netnode when BUG() is compiled out Paul Moore
@ 2012-12-05 20:58 ` Paul Moore
0 siblings, 0 replies; 2+ messages in thread
From: Paul Moore @ 2012-12-05 20:58 UTC (permalink / raw)
To: selinux; +Cc: geert
On Wednesday, December 05, 2012 03:58:12 PM Paul Moore wrote:
> When the BUG() macro is disabled at compile time it can cause some
> problems in the SELinux netnode code: invalid return codes and
> uninitialized variables. This patch fixes this by making sure we take
> some corrective action after the BUG() macro.
>
> Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
> Signed-off-by: Paul Moore <pmoore@redhat.com>
> ---
> security/selinux/netnode.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/security/selinux/netnode.c b/security/selinux/netnode.c
> index c5454c0..9e0048a 100644
> --- a/security/selinux/netnode.c
> +++ b/security/selinux/netnode.c
> @@ -166,6 +166,7 @@ static void sel_netnode_insert(struct sel_netnode *node)
> break;
> default:
> BUG();
> + return;
> }
>
> /* we need to impose a limit on the growth of the hash table so check
> @@ -225,6 +226,8 @@ static int sel_netnode_sid_slow(void *addr, u16 family,
> u32 *sid) break;
> default:
> BUG();
> + ret = -EINVAL;
> + goto out;
> }
> if (ret != 0)
> goto out;
Ooops, scratch this patch.
--
paul moore
security and virtualization @ redhat
--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-12-05 20:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-05 20:58 [PATCH] selinux: fix problems in netnode when BUG() is compiled out Paul Moore
2012-12-05 20:58 ` Paul Moore
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.