diff options
author | Manoj Srivastava <srivasta@debian.org> | 2014-02-09 16:09:49 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2019-06-05 13:11:52 +0100 |
commit | 21e3ff3ab4791d3c94bd775da66cde29797fcb36 (patch) | |
tree | c218b12d60175ae0572c0236f2390d9e26de5bc9 /sshd.c | |
parent | 0f9f44654708e4fde2f52c52f717d061b5e458fa (diff) |
Handle SELinux authorisation roles
Rejected upstream due to discomfort with magic usernames; a better approach
will need an SSH protocol change. In the meantime, this came from Debian's
SELinux maintainer, so we'll keep it until we have something better.
Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=1641
Bug-Debian: http://bugs.debian.org/394795
Last-Update: 2019-06-05
Patch-Name: selinux-role.patch
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -594,7 +594,7 @@ privsep_postauth(struct ssh *ssh, Authctxt *authctxt) | |||
594 | reseed_prngs(); | 594 | reseed_prngs(); |
595 | 595 | ||
596 | /* Drop privileges */ | 596 | /* Drop privileges */ |
597 | do_setusercontext(authctxt->pw); | 597 | do_setusercontext(authctxt->pw, authctxt->role); |
598 | 598 | ||
599 | skip: | 599 | skip: |
600 | /* It is safe now to apply the key state */ | 600 | /* It is safe now to apply the key state */ |