summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManoj Srivastava <srivasta@debian.org>2014-02-09 16:09:49 +0000
committerColin Watson <cjwatson@debian.org>2018-10-20 22:54:09 +0100
commitcf3f6ac19812e4d32874304b3854b055831c2124 (patch)
treea9f141a9525561b4002b0677c109e9a8dd1b293f
parent389e16d0109d8c49a761cd7c267438b05c9ab984 (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
-rw-r--r--auth.h1
-rw-r--r--auth2.c10
-rw-r--r--monitor.c37
-rw-r--r--monitor.h2
-rw-r--r--monitor_wrap.c27
-rw-r--r--monitor_wrap.h3
-rw-r--r--openbsd-compat/port-linux.c21
-rw-r--r--openbsd-compat/port-linux.h4
-rw-r--r--platform.c4
-rw-r--r--platform.h2
-rw-r--r--session.c10
-rw-r--r--session.h2
-rw-r--r--sshd.c2
-rw-r--r--sshpty.c4
-rw-r--r--sshpty.h2
15 files changed, 99 insertions, 32 deletions
diff --git a/auth.h b/auth.h
index 977562f0a..90802a5eb 100644
--- a/auth.h
+++ b/auth.h
@@ -65,6 +65,7 @@ struct Authctxt {
65 char *service; 65 char *service;
66 struct passwd *pw; /* set if 'valid' */ 66 struct passwd *pw; /* set if 'valid' */
67 char *style; 67 char *style;
68 char *role;
68 69
69 /* Method lists for multiple authentication */ 70 /* Method lists for multiple authentication */
70 char **auth_methods; /* modified from server config */ 71 char **auth_methods; /* modified from server config */
diff --git a/auth2.c b/auth2.c
index a77742819..3035926ba 100644
--- a/auth2.c
+++ b/auth2.c
@@ -257,7 +257,7 @@ input_userauth_request(int type, u_int32_t seq, struct ssh *ssh)
257{ 257{
258 Authctxt *authctxt = ssh->authctxt; 258 Authctxt *authctxt = ssh->authctxt;
259 Authmethod *m = NULL; 259 Authmethod *m = NULL;
260 char *user, *service, *method, *style = NULL; 260 char *user, *service, *method, *style = NULL, *role = NULL;
261 int authenticated = 0; 261 int authenticated = 0;
262 double tstart = monotime_double(); 262 double tstart = monotime_double();
263 263
@@ -270,8 +270,13 @@ input_userauth_request(int type, u_int32_t seq, struct ssh *ssh)
270 debug("userauth-request for user %s service %s method %s", user, service, method); 270 debug("userauth-request for user %s service %s method %s", user, service, method);
271 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures); 271 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
272 272
273 if ((role = strchr(user, '/')) != NULL)
274 *role++ = 0;
275
273 if ((style = strchr(user, ':')) != NULL) 276 if ((style = strchr(user, ':')) != NULL)
274 *style++ = 0; 277 *style++ = 0;
278 else if (role && (style = strchr(role, ':')) != NULL)
279 *style++ = '\0';
275 280
276 if (authctxt->attempt++ == 0) { 281 if (authctxt->attempt++ == 0) {
277 /* setup auth context */ 282 /* setup auth context */
@@ -298,8 +303,9 @@ input_userauth_request(int type, u_int32_t seq, struct ssh *ssh)
298 use_privsep ? " [net]" : ""); 303 use_privsep ? " [net]" : "");
299 authctxt->service = xstrdup(service); 304 authctxt->service = xstrdup(service);
300 authctxt->style = style ? xstrdup(style) : NULL; 305 authctxt->style = style ? xstrdup(style) : NULL;
306 authctxt->role = role ? xstrdup(role) : NULL;
301 if (use_privsep) 307 if (use_privsep)
302 mm_inform_authserv(service, style); 308 mm_inform_authserv(service, style, role);
303 userauth_banner(); 309 userauth_banner();
304 if (auth2_setup_methods_lists(authctxt) != 0) 310 if (auth2_setup_methods_lists(authctxt) != 0)
305 packet_disconnect("no authentication methods enabled"); 311 packet_disconnect("no authentication methods enabled");
diff --git a/monitor.c b/monitor.c
index eabc1e89b..08fddabd7 100644
--- a/monitor.c
+++ b/monitor.c
@@ -117,6 +117,7 @@ int mm_answer_sign(int, struct sshbuf *);
117int mm_answer_pwnamallow(int, struct sshbuf *); 117int mm_answer_pwnamallow(int, struct sshbuf *);
118int mm_answer_auth2_read_banner(int, struct sshbuf *); 118int mm_answer_auth2_read_banner(int, struct sshbuf *);
119int mm_answer_authserv(int, struct sshbuf *); 119int mm_answer_authserv(int, struct sshbuf *);
120int mm_answer_authrole(int, struct sshbuf *);
120int mm_answer_authpassword(int, struct sshbuf *); 121int mm_answer_authpassword(int, struct sshbuf *);
121int mm_answer_bsdauthquery(int, struct sshbuf *); 122int mm_answer_bsdauthquery(int, struct sshbuf *);
122int mm_answer_bsdauthrespond(int, struct sshbuf *); 123int mm_answer_bsdauthrespond(int, struct sshbuf *);
@@ -193,6 +194,7 @@ struct mon_table mon_dispatch_proto20[] = {
193 {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign}, 194 {MONITOR_REQ_SIGN, MON_ONCE, mm_answer_sign},
194 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow}, 195 {MONITOR_REQ_PWNAM, MON_ONCE, mm_answer_pwnamallow},
195 {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv}, 196 {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv},
197 {MONITOR_REQ_AUTHROLE, MON_ONCE, mm_answer_authrole},
196 {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner}, 198 {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner},
197 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword}, 199 {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword},
198#ifdef USE_PAM 200#ifdef USE_PAM
@@ -817,6 +819,7 @@ mm_answer_pwnamallow(int sock, struct sshbuf *m)
817 819
818 /* Allow service/style information on the auth context */ 820 /* Allow service/style information on the auth context */
819 monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1); 821 monitor_permit(mon_dispatch, MONITOR_REQ_AUTHSERV, 1);
822 monitor_permit(mon_dispatch, MONITOR_REQ_AUTHROLE, 1);
820 monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1); 823 monitor_permit(mon_dispatch, MONITOR_REQ_AUTH2_READ_BANNER, 1);
821 824
822#ifdef USE_PAM 825#ifdef USE_PAM
@@ -850,16 +853,42 @@ mm_answer_authserv(int sock, struct sshbuf *m)
850 monitor_permit_authentications(1); 853 monitor_permit_authentications(1);
851 854
852 if ((r = sshbuf_get_cstring(m, &authctxt->service, NULL)) != 0 || 855 if ((r = sshbuf_get_cstring(m, &authctxt->service, NULL)) != 0 ||
853 (r = sshbuf_get_cstring(m, &authctxt->style, NULL)) != 0) 856 (r = sshbuf_get_cstring(m, &authctxt->style, NULL)) != 0 ||
857 (r = sshbuf_get_cstring(m, &authctxt->role, NULL)) != 0)
854 fatal("%s: buffer error: %s", __func__, ssh_err(r)); 858 fatal("%s: buffer error: %s", __func__, ssh_err(r));
855 debug3("%s: service=%s, style=%s", 859 debug3("%s: service=%s, style=%s, role=%s",
856 __func__, authctxt->service, authctxt->style); 860 __func__, authctxt->service, authctxt->style, authctxt->role);
857 861
858 if (strlen(authctxt->style) == 0) { 862 if (strlen(authctxt->style) == 0) {
859 free(authctxt->style); 863 free(authctxt->style);
860 authctxt->style = NULL; 864 authctxt->style = NULL;
861 } 865 }
862 866
867 if (strlen(authctxt->role) == 0) {
868 free(authctxt->role);
869 authctxt->role = NULL;
870 }
871
872 return (0);
873}
874
875int
876mm_answer_authrole(int sock, struct sshbuf *m)
877{
878 int r;
879
880 monitor_permit_authentications(1);
881
882 if ((r = sshbuf_get_cstring(m, &authctxt->role, NULL)) != 0)
883 fatal("%s: buffer error: %s", __func__, ssh_err(r));
884 debug3("%s: role=%s",
885 __func__, authctxt->role);
886
887 if (strlen(authctxt->role) == 0) {
888 free(authctxt->role);
889 authctxt->role = NULL;
890 }
891
863 return (0); 892 return (0);
864} 893}
865 894
@@ -1501,7 +1530,7 @@ mm_answer_pty(int sock, struct sshbuf *m)
1501 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)); 1530 res = pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty));
1502 if (res == 0) 1531 if (res == 0)
1503 goto error; 1532 goto error;
1504 pty_setowner(authctxt->pw, s->tty); 1533 pty_setowner(authctxt->pw, s->tty, authctxt->role);
1505 1534
1506 if ((r = sshbuf_put_u32(m, 1)) != 0 || 1535 if ((r = sshbuf_put_u32(m, 1)) != 0 ||
1507 (r = sshbuf_put_cstring(m, s->tty)) != 0) 1536 (r = sshbuf_put_cstring(m, s->tty)) != 0)
diff --git a/monitor.h b/monitor.h
index 44fbed589..8f65e684d 100644
--- a/monitor.h
+++ b/monitor.h
@@ -66,6 +66,8 @@ enum monitor_reqtype {
66 MONITOR_REQ_GSSSIGN = 150, MONITOR_ANS_GSSSIGN = 151, 66 MONITOR_REQ_GSSSIGN = 150, MONITOR_ANS_GSSSIGN = 151,
67 MONITOR_REQ_GSSUPCREDS = 152, MONITOR_ANS_GSSUPCREDS = 153, 67 MONITOR_REQ_GSSUPCREDS = 152, MONITOR_ANS_GSSUPCREDS = 153,
68 68
69 MONITOR_REQ_AUTHROLE = 154,
70
69}; 71};
70 72
71struct monitor { 73struct monitor {
diff --git a/monitor_wrap.c b/monitor_wrap.c
index 1865a122a..fd4d7eb3b 100644
--- a/monitor_wrap.c
+++ b/monitor_wrap.c
@@ -369,10 +369,10 @@ mm_auth2_read_banner(void)
369 return (banner); 369 return (banner);
370} 370}
371 371
372/* Inform the privileged process about service and style */ 372/* Inform the privileged process about service, style, and role */
373 373
374void 374void
375mm_inform_authserv(char *service, char *style) 375mm_inform_authserv(char *service, char *style, char *role)
376{ 376{
377 struct sshbuf *m; 377 struct sshbuf *m;
378 int r; 378 int r;
@@ -382,7 +382,8 @@ mm_inform_authserv(char *service, char *style)
382 if ((m = sshbuf_new()) == NULL) 382 if ((m = sshbuf_new()) == NULL)
383 fatal("%s: sshbuf_new failed", __func__); 383 fatal("%s: sshbuf_new failed", __func__);
384 if ((r = sshbuf_put_cstring(m, service)) != 0 || 384 if ((r = sshbuf_put_cstring(m, service)) != 0 ||
385 (r = sshbuf_put_cstring(m, style ? style : "")) != 0) 385 (r = sshbuf_put_cstring(m, style ? style : "")) != 0 ||
386 (r = sshbuf_put_cstring(m, role ? role : "")) != 0)
386 fatal("%s: buffer error: %s", __func__, ssh_err(r)); 387 fatal("%s: buffer error: %s", __func__, ssh_err(r));
387 388
388 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHSERV, m); 389 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHSERV, m);
@@ -390,6 +391,26 @@ mm_inform_authserv(char *service, char *style)
390 sshbuf_free(m); 391 sshbuf_free(m);
391} 392}
392 393
394/* Inform the privileged process about role */
395
396void
397mm_inform_authrole(char *role)
398{
399 struct sshbuf *m;
400 int r;
401
402 debug3("%s entering", __func__);
403
404 if ((m = sshbuf_new()) == NULL)
405 fatal("%s: sshbuf_new failed", __func__);
406 if ((r = sshbuf_put_cstring(m, role ? role : "")) != 0)
407 fatal("%s: buffer error: %s", __func__, ssh_err(r));
408
409 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHROLE, m);
410
411 sshbuf_free(m);
412}
413
393/* Do the password authentication */ 414/* Do the password authentication */
394int 415int
395mm_auth_password(struct ssh *ssh, char *password) 416mm_auth_password(struct ssh *ssh, char *password)
diff --git a/monitor_wrap.h b/monitor_wrap.h
index 7f93144ff..79e78cc90 100644
--- a/monitor_wrap.h
+++ b/monitor_wrap.h
@@ -43,7 +43,8 @@ int mm_is_monitor(void);
43DH *mm_choose_dh(int, int, int); 43DH *mm_choose_dh(int, int, int);
44int mm_sshkey_sign(struct sshkey *, u_char **, size_t *, const u_char *, size_t, 44int mm_sshkey_sign(struct sshkey *, u_char **, size_t *, const u_char *, size_t,
45 const char *, u_int compat); 45 const char *, u_int compat);
46void mm_inform_authserv(char *, char *); 46void mm_inform_authserv(char *, char *, char *);
47void mm_inform_authrole(char *);
47struct passwd *mm_getpwnamallow(const char *); 48struct passwd *mm_getpwnamallow(const char *);
48char *mm_auth2_read_banner(void); 49char *mm_auth2_read_banner(void);
49int mm_auth_password(struct ssh *, char *); 50int mm_auth_password(struct ssh *, char *);
diff --git a/openbsd-compat/port-linux.c b/openbsd-compat/port-linux.c
index 622988822..3e6e07670 100644
--- a/openbsd-compat/port-linux.c
+++ b/openbsd-compat/port-linux.c
@@ -56,7 +56,7 @@ ssh_selinux_enabled(void)
56 56
57/* Return the default security context for the given username */ 57/* Return the default security context for the given username */
58static security_context_t 58static security_context_t
59ssh_selinux_getctxbyname(char *pwname) 59ssh_selinux_getctxbyname(char *pwname, const char *role)
60{ 60{
61 security_context_t sc = NULL; 61 security_context_t sc = NULL;
62 char *sename = NULL, *lvl = NULL; 62 char *sename = NULL, *lvl = NULL;
@@ -71,9 +71,16 @@ ssh_selinux_getctxbyname(char *pwname)
71#endif 71#endif
72 72
73#ifdef HAVE_GET_DEFAULT_CONTEXT_WITH_LEVEL 73#ifdef HAVE_GET_DEFAULT_CONTEXT_WITH_LEVEL
74 r = get_default_context_with_level(sename, lvl, NULL, &sc); 74 if (role != NULL && role[0])
75 r = get_default_context_with_rolelevel(sename, role, lvl, NULL,
76 &sc);
77 else
78 r = get_default_context_with_level(sename, lvl, NULL, &sc);
75#else 79#else
76 r = get_default_context(sename, NULL, &sc); 80 if (role != NULL && role[0])
81 r = get_default_context_with_role(sename, role, NULL, &sc);
82 else
83 r = get_default_context(sename, NULL, &sc);
77#endif 84#endif
78 85
79 if (r != 0) { 86 if (r != 0) {
@@ -103,7 +110,7 @@ ssh_selinux_getctxbyname(char *pwname)
103 110
104/* Set the execution context to the default for the specified user */ 111/* Set the execution context to the default for the specified user */
105void 112void
106ssh_selinux_setup_exec_context(char *pwname) 113ssh_selinux_setup_exec_context(char *pwname, const char *role)
107{ 114{
108 security_context_t user_ctx = NULL; 115 security_context_t user_ctx = NULL;
109 116
@@ -112,7 +119,7 @@ ssh_selinux_setup_exec_context(char *pwname)
112 119
113 debug3("%s: setting execution context", __func__); 120 debug3("%s: setting execution context", __func__);
114 121
115 user_ctx = ssh_selinux_getctxbyname(pwname); 122 user_ctx = ssh_selinux_getctxbyname(pwname, role);
116 if (setexeccon(user_ctx) != 0) { 123 if (setexeccon(user_ctx) != 0) {
117 switch (security_getenforce()) { 124 switch (security_getenforce()) {
118 case -1: 125 case -1:
@@ -134,7 +141,7 @@ ssh_selinux_setup_exec_context(char *pwname)
134 141
135/* Set the TTY context for the specified user */ 142/* Set the TTY context for the specified user */
136void 143void
137ssh_selinux_setup_pty(char *pwname, const char *tty) 144ssh_selinux_setup_pty(char *pwname, const char *tty, const char *role)
138{ 145{
139 security_context_t new_tty_ctx = NULL; 146 security_context_t new_tty_ctx = NULL;
140 security_context_t user_ctx = NULL; 147 security_context_t user_ctx = NULL;
@@ -146,7 +153,7 @@ ssh_selinux_setup_pty(char *pwname, const char *tty)
146 153
147 debug3("%s: setting TTY context on %s", __func__, tty); 154 debug3("%s: setting TTY context on %s", __func__, tty);
148 155
149 user_ctx = ssh_selinux_getctxbyname(pwname); 156 user_ctx = ssh_selinux_getctxbyname(pwname, role);
150 157
151 /* XXX: should these calls fatal() upon failure in enforcing mode? */ 158 /* XXX: should these calls fatal() upon failure in enforcing mode? */
152 159
diff --git a/openbsd-compat/port-linux.h b/openbsd-compat/port-linux.h
index 3c22a854d..c88129428 100644
--- a/openbsd-compat/port-linux.h
+++ b/openbsd-compat/port-linux.h
@@ -19,8 +19,8 @@
19 19
20#ifdef WITH_SELINUX 20#ifdef WITH_SELINUX
21int ssh_selinux_enabled(void); 21int ssh_selinux_enabled(void);
22void ssh_selinux_setup_pty(char *, const char *); 22void ssh_selinux_setup_pty(char *, const char *, const char *);
23void ssh_selinux_setup_exec_context(char *); 23void ssh_selinux_setup_exec_context(char *, const char *);
24void ssh_selinux_change_context(const char *); 24void ssh_selinux_change_context(const char *);
25void ssh_selinux_setfscreatecon(const char *); 25void ssh_selinux_setfscreatecon(const char *);
26#endif 26#endif
diff --git a/platform.c b/platform.c
index 41acc9370..35654ea51 100644
--- a/platform.c
+++ b/platform.c
@@ -142,7 +142,7 @@ platform_setusercontext(struct passwd *pw)
142 * called if sshd is running as root. 142 * called if sshd is running as root.
143 */ 143 */
144void 144void
145platform_setusercontext_post_groups(struct passwd *pw) 145platform_setusercontext_post_groups(struct passwd *pw, const char *role)
146{ 146{
147#if !defined(HAVE_LOGIN_CAP) && defined(USE_PAM) 147#if !defined(HAVE_LOGIN_CAP) && defined(USE_PAM)
148 /* 148 /*
@@ -183,7 +183,7 @@ platform_setusercontext_post_groups(struct passwd *pw)
183 } 183 }
184#endif /* HAVE_SETPCRED */ 184#endif /* HAVE_SETPCRED */
185#ifdef WITH_SELINUX 185#ifdef WITH_SELINUX
186 ssh_selinux_setup_exec_context(pw->pw_name); 186 ssh_selinux_setup_exec_context(pw->pw_name, role);
187#endif 187#endif
188} 188}
189 189
diff --git a/platform.h b/platform.h
index ea4f9c584..60d72ffe7 100644
--- a/platform.h
+++ b/platform.h
@@ -25,7 +25,7 @@ void platform_post_fork_parent(pid_t child_pid);
25void platform_post_fork_child(void); 25void platform_post_fork_child(void);
26int platform_privileged_uidswap(void); 26int platform_privileged_uidswap(void);
27void platform_setusercontext(struct passwd *); 27void platform_setusercontext(struct passwd *);
28void platform_setusercontext_post_groups(struct passwd *); 28void platform_setusercontext_post_groups(struct passwd *, const char *);
29char *platform_get_krb5_client(const char *); 29char *platform_get_krb5_client(const char *);
30char *platform_krb5_get_principal_name(const char *); 30char *platform_krb5_get_principal_name(const char *);
31int platform_sys_dir_uid(uid_t); 31int platform_sys_dir_uid(uid_t);
diff --git a/session.c b/session.c
index 2d0958d11..19f38637e 100644
--- a/session.c
+++ b/session.c
@@ -1380,7 +1380,7 @@ safely_chroot(const char *path, uid_t uid)
1380 1380
1381/* Set login name, uid, gid, and groups. */ 1381/* Set login name, uid, gid, and groups. */
1382void 1382void
1383do_setusercontext(struct passwd *pw) 1383do_setusercontext(struct passwd *pw, const char *role)
1384{ 1384{
1385 char uidstr[32], *chroot_path, *tmp; 1385 char uidstr[32], *chroot_path, *tmp;
1386 1386
@@ -1408,7 +1408,7 @@ do_setusercontext(struct passwd *pw)
1408 endgrent(); 1408 endgrent();
1409#endif 1409#endif
1410 1410
1411 platform_setusercontext_post_groups(pw); 1411 platform_setusercontext_post_groups(pw, role);
1412 1412
1413 if (!in_chroot && options.chroot_directory != NULL && 1413 if (!in_chroot && options.chroot_directory != NULL &&
1414 strcasecmp(options.chroot_directory, "none") != 0) { 1414 strcasecmp(options.chroot_directory, "none") != 0) {
@@ -1547,7 +1547,7 @@ do_child(struct ssh *ssh, Session *s, const char *command)
1547 1547
1548 /* Force a password change */ 1548 /* Force a password change */
1549 if (s->authctxt->force_pwchange) { 1549 if (s->authctxt->force_pwchange) {
1550 do_setusercontext(pw); 1550 do_setusercontext(pw, s->authctxt->role);
1551 child_close_fds(ssh); 1551 child_close_fds(ssh);
1552 do_pwchange(s); 1552 do_pwchange(s);
1553 exit(1); 1553 exit(1);
@@ -1565,7 +1565,7 @@ do_child(struct ssh *ssh, Session *s, const char *command)
1565 /* When PAM is enabled we rely on it to do the nologin check */ 1565 /* When PAM is enabled we rely on it to do the nologin check */
1566 if (!options.use_pam) 1566 if (!options.use_pam)
1567 do_nologin(pw); 1567 do_nologin(pw);
1568 do_setusercontext(pw); 1568 do_setusercontext(pw, s->authctxt->role);
1569 /* 1569 /*
1570 * PAM session modules in do_setusercontext may have 1570 * PAM session modules in do_setusercontext may have
1571 * generated messages, so if this in an interactive 1571 * generated messages, so if this in an interactive
@@ -1955,7 +1955,7 @@ session_pty_req(struct ssh *ssh, Session *s)
1955 ssh_tty_parse_modes(ssh, s->ttyfd); 1955 ssh_tty_parse_modes(ssh, s->ttyfd);
1956 1956
1957 if (!use_privsep) 1957 if (!use_privsep)
1958 pty_setowner(s->pw, s->tty); 1958 pty_setowner(s->pw, s->tty, s->authctxt->role);
1959 1959
1960 /* Set window size from the packet. */ 1960 /* Set window size from the packet. */
1961 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel); 1961 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
diff --git a/session.h b/session.h
index ce59dabd9..675c91146 100644
--- a/session.h
+++ b/session.h
@@ -77,7 +77,7 @@ void session_pty_cleanup2(Session *);
77Session *session_new(void); 77Session *session_new(void);
78Session *session_by_tty(char *); 78Session *session_by_tty(char *);
79void session_close(struct ssh *, Session *); 79void session_close(struct ssh *, Session *);
80void do_setusercontext(struct passwd *); 80void do_setusercontext(struct passwd *, const char *);
81 81
82const char *session_get_remote_name_or_ip(struct ssh *, u_int, int); 82const char *session_get_remote_name_or_ip(struct ssh *, u_int, int);
83 83
diff --git a/sshd.c b/sshd.c
index 673db87f6..2bc6679e5 100644
--- a/sshd.c
+++ b/sshd.c
@@ -683,7 +683,7 @@ privsep_postauth(Authctxt *authctxt)
683 reseed_prngs(); 683 reseed_prngs();
684 684
685 /* Drop privileges */ 685 /* Drop privileges */
686 do_setusercontext(authctxt->pw); 686 do_setusercontext(authctxt->pw, authctxt->role);
687 687
688 skip: 688 skip:
689 /* It is safe now to apply the key state */ 689 /* It is safe now to apply the key state */
diff --git a/sshpty.c b/sshpty.c
index 4da84d05f..676ade50e 100644
--- a/sshpty.c
+++ b/sshpty.c
@@ -162,7 +162,7 @@ pty_change_window_size(int ptyfd, u_int row, u_int col,
162} 162}
163 163
164void 164void
165pty_setowner(struct passwd *pw, const char *tty) 165pty_setowner(struct passwd *pw, const char *tty, const char *role)
166{ 166{
167 struct group *grp; 167 struct group *grp;
168 gid_t gid; 168 gid_t gid;
@@ -184,7 +184,7 @@ pty_setowner(struct passwd *pw, const char *tty)
184 strerror(errno)); 184 strerror(errno));
185 185
186#ifdef WITH_SELINUX 186#ifdef WITH_SELINUX
187 ssh_selinux_setup_pty(pw->pw_name, tty); 187 ssh_selinux_setup_pty(pw->pw_name, tty, role);
188#endif 188#endif
189 189
190 if (st.st_uid != pw->pw_uid || st.st_gid != gid) { 190 if (st.st_uid != pw->pw_uid || st.st_gid != gid) {
diff --git a/sshpty.h b/sshpty.h
index 9ec7e9a15..de7e000ae 100644
--- a/sshpty.h
+++ b/sshpty.h
@@ -24,5 +24,5 @@ int pty_allocate(int *, int *, char *, size_t);
24void pty_release(const char *); 24void pty_release(const char *);
25void pty_make_controlling_tty(int *, const char *); 25void pty_make_controlling_tty(int *, const char *);
26void pty_change_window_size(int, u_int, u_int, u_int, u_int); 26void pty_change_window_size(int, u_int, u_int, u_int, u_int);
27void pty_setowner(struct passwd *, const char *); 27void pty_setowner(struct passwd *, const char *, const char *);
28void disconnect_controlling_tty(void); 28void disconnect_controlling_tty(void);