* [PATCH] selinux: Fix an uninitialized variable BUG/panic in selinux_secattr_to_sid()
@ 2008-10-03 14:51 Paul Moore
2008-10-03 22:19 ` James Morris
0 siblings, 1 reply; 2+ messages in thread
From: Paul Moore @ 2008-10-03 14:51 UTC (permalink / raw)
To: selinux; +Cc: jmorris
At some point during the 2.6.27 development cycle two new fields were added
to the SELinux context structure, a string pointer and a length field. The
code in selinux_secattr_to_sid() was not modified and as a result these two
fields were left uninitialized which could result in erratic behavior,
including kernel panics, when NetLabel is used. This patch fixes the
problem by fully initializing the context in selinux_secattr_to_sid() before
use and reducing the level of direct context manipulation done to help
prevent future problems.
Please apply this to the 2.6.27-rcX release stream.
Signed-off-by: Paul Moore <paul.moore@hp.com>
---
security/selinux/ss/services.c | 11 ++++-------
1 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/security/selinux/ss/services.c b/security/selinux/ss/services.c
index d11a815..8551952 100644
--- a/security/selinux/ss/services.c
+++ b/security/selinux/ss/services.c
@@ -2737,6 +2737,7 @@ int security_netlbl_secattr_to_sid(struct netlbl_lsm_secattr *secattr,
if (ctx == NULL)
goto netlbl_secattr_to_sid_return;
+ context_init(&ctx_new);
ctx_new.user = ctx->user;
ctx_new.role = ctx->role;
ctx_new.type = ctx->type;
@@ -2745,13 +2746,9 @@ int security_netlbl_secattr_to_sid(struct netlbl_lsm_secattr *secattr,
if (ebitmap_netlbl_import(&ctx_new.range.level[0].cat,
secattr->attr.mls.cat) != 0)
goto netlbl_secattr_to_sid_return;
- ctx_new.range.level[1].cat.highbit =
- ctx_new.range.level[0].cat.highbit;
- ctx_new.range.level[1].cat.node =
- ctx_new.range.level[0].cat.node;
- } else {
- ebitmap_init(&ctx_new.range.level[0].cat);
- ebitmap_init(&ctx_new.range.level[1].cat);
+ memcpy(&ctx_new.range.level[1].cat,
+ &ctx_new.range.level[0].cat,
+ sizeof(ctx_new.range.level[0].cat));
}
if (mls_context_isvalid(&policydb, &ctx_new) != 1)
goto netlbl_secattr_to_sid_return_cleanup;
--
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 an uninitialized variable BUG/panic in selinux_secattr_to_sid()
2008-10-03 14:51 [PATCH] selinux: Fix an uninitialized variable BUG/panic in selinux_secattr_to_sid() Paul Moore
@ 2008-10-03 22:19 ` James Morris
0 siblings, 0 replies; 2+ messages in thread
From: James Morris @ 2008-10-03 22:19 UTC (permalink / raw)
To: Paul Moore; +Cc: selinux
On Fri, 3 Oct 2008, Paul Moore wrote:
> At some point during the 2.6.27 development cycle two new fields were added
> to the SELinux context structure, a string pointer and a length field. The
> code in selinux_secattr_to_sid() was not modified and as a result these two
> fields were left uninitialized which could result in erratic behavior,
> including kernel panics, when NetLabel is used. This patch fixes the
> problem by fully initializing the context in selinux_secattr_to_sid() before
> use and reducing the level of direct context manipulation done to help
> prevent future problems.
>
> Please apply this to the 2.6.27-rcX release stream.
>
> Signed-off-by: Paul Moore <paul.moore@hp.com>
Applied to:
git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6#next
--
James Morris
<jmorris@namei.org>
--
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:[~2008-10-03 22:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-03 14:51 [PATCH] selinux: Fix an uninitialized variable BUG/panic in selinux_secattr_to_sid() Paul Moore
2008-10-03 22:19 ` James Morris
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.