]> andersk Git - openssh.git/blame - README.privsep
remove reference to UnixWare 7 and OpenUNIX 8
[openssh.git] / README.privsep
CommitLineData
3d1beaf2 1Privilege separation, or privsep, is an experimental feature in
2OpenSSH in which operations that require root privilege are performed
3by a separate privileged monitor process. Its purpose is to prevent
4privilege escalation by containing corruption to an unprivileged
5process. More information is available at:
6 http://www.citi.umich.edu/u/provos/ssh/privsep.html
7
8Privilege separation is not enabled by default, and may be enabled by
9specifying "UsePrivilegeSeparation yes" in sshd_config; see the
10UsePrivilegeSeparation option in sshd(8).
11
12When privsep is enabled, the pre-authentication sshd process will
13chroot(2) to "/var/empty" and change its privileges to the "sshd" user
14and its primary group. You should do something like the following to
15prepare the privsep preauth environment:
16
17 # mkdir /var/empty
18 # chown root:sys /var/empty
19 # chmod 755 /var/empty
20 # groupadd sshd
21 # useradd -g sshd sshd
22
f65fbec1 23If you are on UnixWare 7 or OpenUNIX 8 do this additional step.
24 # ln /usr/lib/.ns.so /usr/lib/ns.so.1
25
3d1beaf2 26/var/empty should not contain any files.
27
28configure supports the following options to change the default
29privsep user and chroot directory:
30
31 --with-privsep-path=xxx Path for privilege seperation chroot
32 --with-privsep-user=user Specify non-privileged user for privilege separation
33
34Privsep requires operating system support for file descriptor passing
35and mmap(MAP_ANON).
36
545ba36e 37PAM-enabled OpenSSH is known to function with privsep on Linux and
38Solaris 8. It does not function on HP-UX with a trusted system
39configuration. PAMAuthenticationViaKbdInt does not function with
3d1beaf2 40privsep.
41
42Note that for a normal interactive login with a shell, enabling privsep
43will require 1 additional process per login session.
44
45Given the following process listing (from HP-UX):
46
47 UID PID PPID C STIME TTY TIME COMMAND
48 root 1005 1 0 10:45:17 ? 0:08 /opt/openssh/sbin/sshd -u0
49 root 6917 1005 0 15:19:16 ? 0:00 sshd: stevesk [priv]
50 stevesk 6919 6917 0 15:19:17 ? 0:03 sshd: stevesk@2
51 stevesk 6921 6919 0 15:19:17 pts/2 0:00 -bash
52
53process 1005 is the sshd process listening for new connections.
54process 6917 is the privileged monitor process, 6919 is the user owned
55sshd process and 6921 is the shell process.
56
57$Id$
This page took 0.247769 seconds and 5 git commands to generate.