minix/minix/drivers
David van Moolenbroek da21d85025 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
2015-06-23 17:43:46 +00:00
..
audio merge libminlib with libc 2014-08-28 18:49:19 +02:00
bus Maybe a broken bios/device setting 2015-03-11 13:46:45 +01:00
clock svrctl(2) update 2014-09-29 16:15:21 +00:00
eeprom Move all services to /service 2014-07-31 16:00:31 +02:00
examples New sources layout 2014-07-31 16:00:30 +02:00
hid handle lack of pckbd more gracefully 2015-06-15 17:11:29 +02:00
iommu New sources layout 2014-07-31 16:00:30 +02:00
net Add 3c90x: 3Com 3C90xB/C network driver 2015-02-10 13:47:28 +00:00
power ACPI: OS-dependent code tweaks 2015-02-10 13:47:28 +00:00
printer New sources layout 2014-07-31 16:00:30 +02:00
sensors ARM: can build with llvm, switch to EABI 2014-12-12 13:04:56 +01:00
storage Add a driver for the eMMC on the BeagleBone Black 2015-06-21 11:04:16 +00:00
system libvtreefs: API changes/extensions, part 2 2014-11-12 12:13:43 +00:00
tty Add PTYFS, Unix98 pseudo terminal support 2015-06-23 17:43:46 +00:00
usb minix/ changes for arm llvm build 2014-12-03 23:40:56 +01:00
video minix/ changes for arm llvm build 2014-12-03 23:40:56 +01:00
vmm_guest New sources layout 2014-07-31 16:00:30 +02:00
Makefile INIT died problem / build system robustness 2014-08-28 08:52:50 +02:00
Makefile.inc merge libminlib with libc 2014-08-28 18:49:19 +02:00