]> Zhao Yanbai Git Server - minix.git/commit
Add PTYFS, Unix98 pseudo terminal support 08/3008/2
authorDavid van Moolenbroek <david@minix3.org>
Mon, 22 Jun 2015 17:14:34 +0000 (17:14 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Tue, 23 Jun 2015 17:43:46 +0000 (17:43 +0000)
commitda21d850255e4f11bb2023f69a0b3aad4eab62e2
tree9c2a6120a5ec08d16137026160f60a2ea0b88428
parent0a2a08739e5ee13a20ba5d874beca4958a42cb49
Add PTYFS, Unix98 pseudo terminal support

This patch adds support for Unix98 pseudo terminals, that is,
posix_openpt(3), grantpt(3), unlockpt(3), /dev/ptmx, and /dev/pts/.
The latter is implemented with a new pseudo file system, PTYFS.

In effect, this patch adds secure support for unprivileged pseudo
terminal allocation, allowing programs such as tmux(1) to be used by
non-root users as well.  Test77 has been extended with new tests, and
no longer needs to run as root.

The new functionality is optional.  To revert to the old behavior,
remove the "ptyfs" entry from /etc/fstab.

Technical nodes:

o The reason for not implementing the NetBSD /dev/ptm approach is that
  implementing the corresponding ioctl (TIOCPTMGET) would require
  adding a number of extremely hairy exceptions to VFS, including the
  PTY driver having to create new file descriptors for its own device
  nodes.

o PTYFS is required for Unix98 PTYs in order to avoid that the PTY
  driver has to be aware of old-style PTY naming schemes and even has
  to call chmod(2) on a disk-backed file system.  PTY cannot be its
  own PTYFS since a character driver may currently not also be a file
  system.  However, PTYFS may be subsumed into a DEVFS in the future.

o The Unix98 PTY behavior differs somewhat from NetBSD's, in that
  slave nodes are created on ptyfs only upon the first call to
  grantpt(3).  This approach obviates the need to revoke access as
  part of the grantpt(3) call.

o Shutting down PTY may leave slave nodes on PTYFS, but once PTY is
  restarted, these leftover slave nodes will be removed before they
  create a security risk.  Unmounting PTYFS will make existing PTY
  slaves permanently unavailable, and absence of PTYFS will block
  allocation of new Unix98 PTYs until PTYFS is (re)mounted.

Change-Id: I822b43ba32707c8815fd0f7d5bb7a438f51421c1
30 files changed:
distrib/sets/lists/minix/mi
docs/UPDATING
etc/mtree/NetBSD.dist.base
etc/system.conf
etc/usr/rc
lib/libc/stdlib/Makefile.inc
lib/libutil/pty.c
minix/commands/DESCRIBE/DESCRIBE.sh
minix/commands/MAKEDEV/MAKEDEV.sh
minix/commands/setup/setup.sh
minix/drivers/tty/pty/Makefile
minix/drivers/tty/pty/pty.c
minix/drivers/tty/pty/ptyfs.c [new file with mode: 0644]
minix/drivers/tty/pty/ptyfs.h [new file with mode: 0644]
minix/drivers/tty/pty/tty.c
minix/drivers/tty/pty/tty.h
minix/fs/Makefile
minix/fs/procfs/service.c
minix/fs/ptyfs/Makefile [new file with mode: 0644]
minix/fs/ptyfs/node.c [new file with mode: 0644]
minix/fs/ptyfs/node.h [new file with mode: 0644]
minix/fs/ptyfs/ptyfs.c [new file with mode: 0644]
minix/include/minix/com.h
minix/include/minix/ipc.h
minix/tests/run
minix/tests/test76.c
minix/tests/test77.c
minix/usr.bin/trace/ioctl/char.c
releasetools/arm_sdimage.sh
releasetools/x86_hdimage.sh