diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | openbsd-compat/port-linux.c | 16 |
2 files changed, 15 insertions, 7 deletions
@@ -1,3 +1,9 @@ | |||
1 | 20110128 | ||
2 | - (djm) [openbsd-compat/port-linux.c] Check whether SELinux is enabled | ||
3 | before attempting setfscreatecon(). Check whether matchpathcon() | ||
4 | succeeded before using its result. Patch from cjwatson AT debian.org; | ||
5 | bz#1851 | ||
6 | |||
1 | 20110125 | 7 | 20110125 |
2 | - (djm) [configure.ac Makefile.in ssh.c openbsd-compat/port-linux.c | 8 | - (djm) [configure.ac Makefile.in ssh.c openbsd-compat/port-linux.c |
3 | openbsd-compat/port-linux.h] Move SELinux-specific code from ssh.c to | 9 | openbsd-compat/port-linux.h] Move SELinux-specific code from ssh.c to |
diff --git a/openbsd-compat/port-linux.c b/openbsd-compat/port-linux.c index ee4290b98..ede533fdd 100644 --- a/openbsd-compat/port-linux.c +++ b/openbsd-compat/port-linux.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $Id: port-linux.c,v 1.11.4.1 2011/02/04 00:42:21 djm Exp $ */ | 1 | /* $Id: port-linux.c,v 1.11.4.2 2011/02/04 00:43:08 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2005 Daniel Walsh <dwalsh@redhat.com> | 4 | * Copyright (c) 2005 Daniel Walsh <dwalsh@redhat.com> |
@@ -209,13 +209,15 @@ ssh_selinux_change_context(const char *newname) | |||
209 | void | 209 | void |
210 | ssh_selinux_setfscreatecon(const char *path) | 210 | ssh_selinux_setfscreatecon(const char *path) |
211 | { | 211 | { |
212 | security_context_t context; | 212 | security_context_t context; |
213 | 213 | ||
214 | if (path == NULL) { | 214 | if (!ssh_selinux_enabled()) |
215 | setfscreatecon(NULL); | 215 | return; |
216 | return; | 216 | if (path == NULL) |
217 | } | 217 | setfscreatecon(NULL); |
218 | matchpathcon(path, 0700, &context); | 218 | return; |
219 | } | ||
220 | if (matchpathcon(path, 0700, &context) == 0) | ||
219 | setfscreatecon(context); | 221 | setfscreatecon(context); |
220 | } | 222 | } |
221 | 223 | ||