Software driver
   HOME

TheInfoList



OR:

In
computing Computing is any goal-oriented activity requiring, benefiting from, or creating computing machinery. It includes the study and experimentation of algorithmic processes, and development of both hardware and software. Computing has scientific, ...
, a device driver is a
computer program A computer program is a sequence or set of instructions in a programming language for a computer to execute. Computer programs are one component of software, which also includes documentation and other intangible components. A computer program ...
that operates or controls a particular type of device that is attached to a computer or
automaton An automaton (; plural: automata or automatons) is a relatively self-operating machine, or control mechanism designed to automatically follow a sequence of operations, or respond to predetermined instructions.Automaton – Definition and More ...
. A driver provides a software
interface Interface or interfacing may refer to: Academic journals * ''Interface'' (journal), by the Electrochemical Society * '' Interface, Journal of Applied Linguistics'', now merged with ''ITL International Journal of Applied Linguistics'' * '' Int ...
to hardware devices, enabling
operating system An operating system (OS) is system software that manages computer hardware, software resources, and provides common services for computer programs. Time-sharing operating systems schedule tasks for efficient use of the system and may also i ...
s and other computer programs to access hardware functions without needing to know precise details about the hardware being used. A driver communicates with the device through the computer bus or communications subsystem to which the hardware connects. When a calling program invokes a routine in the driver, the driver issues commands to the device (drives it). Once the device sends data back to the driver, the driver may invoke routines in the original calling program. Drivers are hardware dependent and operating-system-specific. They usually provide the
interrupt In digital computers, an interrupt (sometimes referred to as a trap) is a request for the processor to ''interrupt'' currently executing code (when permitted), so that the event can be processed in a timely manner. If the request is accepted, ...
handling required for any necessary asynchronous time-dependent hardware interface.


Purpose

The main purpose of device drivers is to provide abstraction by acting as a translator between a hardware device and the applications or
operating system An operating system (OS) is system software that manages computer hardware, software resources, and provides common services for computer programs. Time-sharing operating systems schedule tasks for efficient use of the system and may also i ...
s that use it. Programmers can write higher-level application code independently of whatever specific hardware the end-user is using. For example, a high-level application for interacting with a
serial port In computing, a serial port is a serial communication interface through which information transfers in or out sequentially one bit at a time. This is in contrast to a parallel port, which communicates multiple bits simultaneously in parallel. ...
may simply have two functions for "send data" and "receive data". At a lower level, a device driver implementing these functions would communicate to the particular serial port controller installed on a user's computer. The commands needed to control a
16550 UART The 16550 UART ( universal asynchronous receiver/transmitter) is an integrated circuit designed for implementing the interface for serial communications. The corrected -A version was released in 1987 by National Semiconductor. It is frequent ...
are much different from the commands needed to control an FTDI serial port converter, but each hardware-specific device driver
abstracts An abstract is a brief summary of a research article, thesis, review, conference proceeding, or any in-depth analysis of a particular subject and is often used to help the reader quickly ascertain the paper's purpose. When used, an abstract always ...
these details into the same (or similar) software interface.


Development

Writing a device driver requires an in-depth understanding of how the hardware and the software works for a given
platform Platform may refer to: Technology * Computing platform, a framework on which applications may be run * Platform game, a genre of video games * Car platform, a set of components shared by several vehicle models * Weapons platform, a system or ...
function. Because drivers require low-level access to hardware functions in order to operate, drivers typically operate in a highly privileged environment and can cause system operational issues if something goes wrong. In contrast, most user-level software on modern
operating system An operating system (OS) is system software that manages computer hardware, software resources, and provides common services for computer programs. Time-sharing operating systems schedule tasks for efficient use of the system and may also i ...
s can be stopped without greatly affecting the rest of the system. Even drivers executing in
user mode A modern computer operating system usually segregates virtual memory into user space and kernel space. Primarily, this separation serves to provide memory protection and hardware protection from malicious or errant software behaviour. Kernel ...
can crash a system if the device is erroneously programmed. These factors make it more difficult and dangerous to diagnose problems. The task of writing drivers thus usually falls to
software engineer Software engineering is a systematic engineering approach to software development. A software engineer is a person who applies the principles of software engineering to design, develop, maintain, test, and evaluate computer software. The term ''p ...
s or computer engineers who work for hardware-development companies. This is because they have better information than most outsiders about the design of their hardware. Moreover, it was traditionally considered in the hardware manufacturer's interest to guarantee that their clients can use their hardware in an optimum way. Typically, the Logical Device Driver (LDD) is written by the operating system vendor, while the Physical Device Driver (PDD) is implemented by the device vendor. However, in recent years, non-vendors have written numerous device drivers for proprietary devices, mainly for use with free and open source software, free and open source
operating system An operating system (OS) is system software that manages computer hardware, software resources, and provides common services for computer programs. Time-sharing operating systems schedule tasks for efficient use of the system and may also i ...
s. In such cases, it is important that the hardware manufacturer provide information on how the device communicates. Although this information can instead be learned by reverse engineering, this is much more difficult with hardware than it is with software. Microsoft has attempted to reduce system instability due to poorly written device drivers by creating a new framework for driver development, called Windows Driver Frameworks (WDF). This includes User-Mode Driver Framework (UMDF) that encourages development of certain types of drivers—primarily those that implement a message-based protocol for communicating with their devices—as user-mode drivers. If such drivers malfunction, they do not cause system instability. The Kernel-Mode Driver Framework (KMDF) model continues to allow development of kernel-mode device drivers, but attempts to provide standard implementations of functions that are known to cause problems, including cancellation of I/O operations, power management, and plug and play device support. Apple Inc., Apple has an open-source framework for developing drivers on macOS, called I/O Kit. In Linux kernel, Linux environments, programmers can build device drivers as parts of the Linux kernel, kernel, separately as loadable loadable kernel module, modules, or as user-mode drivers (for certain types of devices where kernel interfaces exist, such as for USB devices). Makedev includes a list of the devices in Linux, including ttyS (terminal), lp (parallel port), hd (disk), loop, and sound (these include Sound card mixer, mixer, Music sequencer, sequencer, Digital signal processor, dsp, and audio). Microsoft Windows .sys files and Linux .ko files can contain loadable device drivers. The advantage of loadable device drivers is that they can be loaded only when necessary and then unloaded, thus saving kernel memory.


Kernel mode vs. user mode

Device drivers, particularly on Microsoft Windows platforms, can run in CPU modes, kernel-mode (Ring (computer security), Ring 0 on x86 CPUs) or in user space, user-mode (Ring 3 on x86 CPUs). The primary benefit of running a driver in user mode is improved stability, since a poorly written user-mode device driver cannot crash the system by overwriting kernel memory. On the other hand, user/kernel-mode transitions usually impose a considerable performance overhead, thus making kernel-mode drivers preferred for low-latency networking. Kernel space can be accessed by user module only through the use of system calls. End user programs like the UNIX shell or other GUI-based applications are part of user space. These applications interact with hardware through kernel supported functions.


Applications

Because of the diversity of hardware and operating systems, drivers operate in many different environments. Drivers may interface (computer science), interface with: * Computer printer, Printers * Video card, Video adapters * Network interface controller, Network cards * Sound cards * Local Computer bus, buses of various sorts—in particular, for bus mastering on modern systems * Low-bandwidth (computing), bandwidth input/output, I/O buses of various sorts (for pointing devices such as Computer mouse, mice, Computer keyboard, keyboards, etc.) * Computer storage devices such as Hard disk drive, hard disk, CD-ROM, and floppy disk buses (Advanced Technology Attachment, ATA, Serial ATA, SATA, SCSI, Serial Attached SCSI, SAS) * Implementing support for different file systems * Image scanners * Digital cameras * Digital terrestrial television, Digital terrestrial television tuners * Radio frequency communication transceiver adapters for Personal area network, wireless personal area networks as used for short-distance and low-rate wireless communication in home automation, (such as example Bluetooth Low Energy, Bluetooth Low Energy (BLE), Thread (network protocol), Thread, ZigBee, and Z-Wave). * Infrared Data Association, IrDA adapters Common levels of abstraction for device drivers include: * For hardware: ** Interfacing directly ** Writing to or reading from a device control register ** Using some higher-level interface (e.g. Video BIOS) ** Using another lower-level device driver (e.g. file system drivers using disk drivers) ** Simulating work with hardware, while doing something entirely different * For software: ** Allowing the operating system direct access to hardware resources ** Implementing only primitive (computer science), primitives ** Implementing an interface for non-driver software (e.g. TWAIN) ** Implementing a language, sometimes quite high-level (e.g. PostScript) So choosing and installing the correct device drivers for given hardware is often a key component of computer system configuration.


Virtual device drivers

Virtual device drivers represent a particular variant of device drivers. They are used to emulate a hardware device, particularly in virtual machine, virtualization environments, for example when a DOS program is run on a Microsoft Windows computer or when a guest
operating system An operating system (OS) is system software that manages computer hardware, software resources, and provides common services for computer programs. Time-sharing operating systems schedule tasks for efficient use of the system and may also i ...
is run on, for example, a Xen host. Instead of enabling the guest operating system to dialog with hardware, virtual device drivers take the opposite role and emulates a piece of hardware, so that the guest operating system and its drivers running inside a virtual machine can have the illusion of accessing real hardware. Attempts by the guest operating system to access the hardware are routed to the virtual device driver in the host operating system as e.g., function calls. The virtual device driver can also send simulated processor-level events like
interrupt In digital computers, an interrupt (sometimes referred to as a trap) is a request for the processor to ''interrupt'' currently executing code (when permitted), so that the event can be processed in a timely manner. If the request is accepted, ...
s into the virtual machine. Virtual devices may also operate in a non-virtualized environment. For example, a virtual Network interface controller, network adapter is used with a virtual private network, while a virtual Hard disk drive, disk device is used with iSCSI. A good example for virtual device drivers can be Daemon Tools. There are several variants of virtual device drivers, such as VxDs, VLM (NetWare), VLMs, and VDDs.


Open source drivers

* Free and open-source graphics device driver, Graphics device driver * Printers: CUPS * RAIDs: CCISS (Compaq Command Interface for SCSI-3 Support) * Scanners: Scanner Access Now Easy, SANE * Video: Vidix, Direct Rendering Infrastructure Solaris (operating system), Solaris descriptions of commonly used device drivers: * fas: Fast/wide SCSI controller * hme: Fast (10/100 Mbit/s) Ethernet * isp: Differential SCSI controllers and the SunSwift card * glm: (Gigabaud Link Module) UltraSCSI controllers * scsi: Small Computer Serial Interface (SCSI) devices * sf: soc+ or social Fiber Channel Arbitrated Loop (FCAL) * soc: SPARC Storage Array (SSA) controllers and the control device * social: Serial optical controllers for FCAL (soc+)


APIs

* Windows Display Driver Model (WDDM) – the graphic display driver architecture for Windows Vista and later. * Unified Audio Model (UAM) * Windows Driver Foundation (WDF) * Declarative Componentized Hardware (DCH) - Universal Windows Platform driver * Windows Driver Model (WDM) * Network Driver Interface Specification (NDIS) – a standard network card driver API * Advanced Linux Sound Architecture (ALSA) – the standard Linux sound-driver interface * Scanner Access Now Easy (SANE) – a public-domain interface to raster-image scanner-hardware * Installable File System (IFS) – a filesystem API for IBM OS/2 and Microsoft Windows NT * Open Data-Link Interface (ODI) – network card API similar to NDIS * Uniform Driver Interface (UDI) – a cross-platform driver interface project * Dynax Driver Framework (dxd) – C++ open source cross-platform driver framework for KMDF and IOKit


Identifiers

A device on the Conventional PCI, PCI bus or USB is identified by two IDs which consist of 4 hexadecimal numbers each. The vendor ID identifies the vendor of the device. The device ID identifies a specific device from that manufacturer/vendor. A PCI device has often an ID pair for the main chip of the device, and also a subsystem ID pair which identifies the vendor, which may be different from the chip manufacturer.


Security

Devices often have a large number of diverse and customized device drivers running in their operating system (OS) kernel and often contain various computer bug, bugs and vulnerability (computing), vulnerabilities, making them a target for exploit (computer security), exploits. ''Bring Your Own Vulnerable Driver'' (BYOVD) uses signed, old drivers that contain flaws that allow hackers to insert malicious code into the kernel. There is a lack of effective kernel vulnerability detection tools, especially for closed-source OSes such as Microsoft Windows where the source code of the device drivers is mostly not public (open source) and the drivers often also have many privileges. Such vulnerabilities also exist in drivers in laptops, drivers for WiFi and bluetooth, gaming/graphics drivers, and drivers in printers. A group of security researchers considers the lack of isolation as one of the computer security, main factors undermining Kernel (operating system)#Protection, kernel security, and published a Sandbox (computer security), isolation framework to protect operating system kernels, primarily the Monolithic kernel, monolithic Linux kernel which, according to them, gets ~80,000 Commit (version control), commits/year to its drivers.


See also

* Driver (software) * Class driver * Device driver synthesis and verification * Driver wrapper * Free software * Firmware * Loadable kernel module * Makedev * Microcontroller * Open-source hardware * Printer driver * Replicant (operating system) * udev (userspace /dev)


References


External links


Windows Hardware Dev Center

Linux Hardware Compatibility Lists and Linux Drivers

Understanding Modern Device Drivers(Linux)

BinaryDriverHowto, Ubuntu.

Linux Drivers Source
{{DEFAULTSORT:Device Driver Device drivers, Linux drivers Computing terminology Windows NT kernel