Linux TTY: Difference between revisions
Line 38: | Line 38: | ||
The TTY Driver is a kernel component that implements [[#Session_Management|session management]]. The TTY driver does not have an [[Linux_General_Concepts#Execution_Context|execution context]] - it has data fields and methods, but the data gets updated only if the methods get called by a process or a kernel interrupt handler. | The TTY Driver is a kernel component that implements [[#Session_Management|session management]]. The TTY driver does not have an [[Linux_General_Concepts#Execution_Context|execution context]] - it has data fields and methods, but the data gets updated only if the methods get called by a process or a kernel interrupt handler. | ||
=Terminal Emulator= | =Terminal Emulator= |
Revision as of 23:58, 2 May 2018
External
Internal
Overview
"TTY" is a Linux subsystem that provides the conduit through which keyboard strokes captured while the focus is in a terminal such as iTerm2 or xterm are turned into the right characters and delivered to UNIX processes. At the same time, the TTY subsystem funnels the process' generated output back to the terminal. The name comes from "teletype", which used to be electro-mechanical machines that read keyboard entires, turned them into electrical signals and sent them across the wire to to other teletypes.
TTY Functions
Line Editing
TTY subsystem provide line editing services, where a backspace key actually removes the last typed character from an internal editing buffer, instead of being sent to the user process. This functionality is implemented by a component known as line discipline. Line discipline also contain options for character echoing, automatic conversion between CR and LF. User processes have the choices of disabling this functionality, by putting the line discipline in "raw" mode, instead of the default "cooked" (or "canonical") mode. The kernel provides several line disciplines, but only one is attached to a given serial device at a time.
Session Management
TTY session management allows one user to interact with multiple processes running simultaneously in user space, one at a time. This includes the capability to suspend, kill or send programs to background, bring programs into foreground, and direct the user input to the foreground process only. The TTY subsystem implements these features in the TTY driver.
Components
The TTY subsystem has several kernel components, listed below. Together these are known as a "TTY device", or sometimes just "TTY". Each TTY has a corresponding character device under /dev. When a user logs in on a particular TTY, that user must become the owner of the device file. The actual ownership is set by the login programs that runs with root privileges.
What are /dev/tty, /dev/tty0, ... /dev/tty63
Terminal Emulator
A terminal emulator can be implemented in kernel - as it is the case for the Linux console, or in user space.
Line Discipline
A kernel-level component providing line editing capabilities.
TTY Driver
The TTY Driver is a kernel component that implements session management. The TTY driver does not have an execution context - it has data fields and methods, but the data gets updated only if the methods get called by a process or a kernel interrupt handler.
Terminal Emulator
A terminal emulator is a program with a text-based user interface, such as iTerm2 or xterm.