summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorManoj Srivastava <srivasta@debian.org>2014-02-09 16:09:49 +0000
committerColin Watson <cjwatson@debian.org>2018-08-24 17:49:07 +0100
commit03979f2e0768e146d179c66f2d2e33afe61c1be3 (patch)
tree624add62ece0fb72400966a483aa5af060fb0a77 /sshd.c
parent84a7a1b1c767056c80add9f0e15c9f9ec23ec94d (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: 2018-08-24 Patch-Name: selinux-role.patch
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sshd.c b/sshd.c
index 71c360da0..92d15c82d 100644
--- a/sshd.c
+++ b/sshd.c
@@ -684,7 +684,7 @@ privsep_postauth(Authctxt *authctxt)
684 reseed_prngs(); 684 reseed_prngs();
685 685
686 /* Drop privileges */ 686 /* Drop privileges */
687 do_setusercontext(authctxt->pw); 687 do_setusercontext(authctxt->pw, authctxt->role);
688 688
689 skip: 689 skip:
690 /* It is safe now to apply the key state */ 690 /* It is safe now to apply the key state */