diff options
author | Damien Miller <djm@mindrot.org> | 2006-04-22 21:26:08 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-04-22 21:26:08 +1000 |
commit | 73b42d2bb058da914828b53f2951954560a5b6eb (patch) | |
tree | 7271e92211fab0a06b0d36f162801b073220c5bf /sshpty.c | |
parent | 2eaf37d899a55c253ad42d13534a824bce9c8ed2 (diff) |
- (djm) [Makefile.in configure.ac session.c sshpty.c]
[contrib/redhat/sshd.init openbsd-compat/Makefile.in]
[openbsd-compat/openbsd-compat.h openbsd-compat/port-linux.c]
[openbsd-compat/port-linux.h] Add support for SELinux, setting
the execution and TTY contexts. based on patch from Daniel Walsh,
bz #880; ok dtucker@
Diffstat (limited to 'sshpty.c')
-rw-r--r-- | sshpty.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -210,6 +210,10 @@ pty_setowner(struct passwd *pw, const char *tty) | |||
210 | fatal("stat(%.100s) failed: %.100s", tty, | 210 | fatal("stat(%.100s) failed: %.100s", tty, |
211 | strerror(errno)); | 211 | strerror(errno)); |
212 | 212 | ||
213 | #ifdef WITH_SELINUX | ||
214 | ssh_selinux_setup_pty(pw->pw_name, tty); | ||
215 | #endif | ||
216 | |||
213 | if (st.st_uid != pw->pw_uid || st.st_gid != gid) { | 217 | if (st.st_uid != pw->pw_uid || st.st_gid != gid) { |
214 | if (chown(tty, pw->pw_uid, gid) < 0) { | 218 | if (chown(tty, pw->pw_uid, gid) < 0) { |
215 | if (errno == EROFS && | 219 | if (errno == EROFS && |