< The Linux Kernel

Storage functionality provides access to various persisted storage devices as flash memory, SSD and legacy hard disks via files and directories of files.

The file system provides an abstraction to organize the information into separate pieces of data (called files) identified by a unique name. Each file system type defines their own structures and logic rules used to manage these groups of information and their names. Linux supports a plethora or different file system types, local and remote, native and from other operating systems. To accommodate such disparity the kernel defines a common top layer, the virtual file system (VFS) layer.

Summary of the Linux kernel's storage stack

Files and directories

Four basic files access system calls:

File in Linux and UNIX is not only physical file on persistent storage. File interface is used to access pipes, sockets and other pseudo-files.

🔧 TODO


⚲ Asynchronous I/O

Uring - 🌱 New since release 5.1 in May 2019


Virtual File System

A virtual file system is an abstract layer on top of a more concrete file system. The purpose of a VFS is to allow client applications to access different types of concrete file systems in a uniform way. A VFS can, for example, be used to access local and network storage devices transparently without the client application noticing the difference. It can be used to bridge the differences in Windows, classic Mac OS/macOS and Unix filesystems, so that applications can access files on local file systems of those types without having to know what type of file system they are accessing. A VFS specifies an interface (or a "contract") between the kernel and a concrete file system. Therefore, it is easy to add support for new file system types to the kernel simply by fulfilling the contract.

🔧 TODO: vfsmount id, vfs_create id, vfs_read id, vfs_write id

📚 References



⚙️ Internals

Logical file systems

A file system (or filesystem) is used to control how data is stored and retrieved. Without a file system, information placed in a storage area would be one large body of data with no way to tell where one piece of information stops and the next begins. By separating the data into individual pieces, and giving each piece a name, the information is easily separated and identified. Each group of data is called a "file". The structure and logic rules used to manage the groups of information and their names is called a "file system".

There are many different kinds of file systems. Each one has different structure and logic, properties of speed, flexibility, security, size and more. Some file systems have been designed to be used for specific applications. For example, the ISO 9660 file system is designed specifically for optical discs.

File systems can be used on many different kinds of storage devices. Each storage device uses a different kind of media. The most common storage device in use today is a SSD. Other media that was used are hard disk, magnetic tape, optical disc, and . In some cases, the computer's main memory (RAM) is used to create a temporary file system for short-term use. Raw storage is called a block device.

Linux supports many different file systems, but common choices for the system disk on a block device include the ext* family (such as ext2, ext3 and ext4), XFS, ReiserFS and btrfs. For raw Flash without a flash translation layer (FTL) or Memory Technology Device (MTD), there is UBIFS, JFFS2, and YAFFS, among others. SquashFS is a common compressed read-only file system.

⚲ Shell interfaces:

  • cat /proc/filesystems
  • ls /sys/fs/

Infrastructure ⚲ API function register_filesystem id registers structs file_system_type id and stores them in linked list ⚙️ file_systems id. Function ext4_init_fs id registers ext4_fs_type id. Operation of file system opening is called mounting: ext4_mount id

⚙️ Internals

📚 References

Page cache

A page cache or disk cache is a transparent cache for the memory pages originating from a secondary storage device such as a hard disk drive. The operating system keeps a page cache in otherwise unused portions of the main memory, resulting in quicker access to the contents of cached pages and overall performance improvements. The page cache is implemented by the kernel, and is mostly transparent to applications.

Usually, all physical memory not directly allocated to applications is used by the operating system for the page cache. Since the memory would otherwise be idle and is easily reclaimed when applications request it, there is generally no associated performance penalty and the operating system might even report such memory as "free" or "available". The page cache also aids in writing to a disk. Pages in the main memory that have been modified during writing data to disk are marked as "dirty" and have to be flushed to disk before they can be freed. When a file write occurs, the page backing the particular block is looked up. If it is already found in the page cache, the write is done to that page in the main memory. Otherwise, when the write perfectly falls on page size boundaries, the page is not even read from disk, but allocated and immediately marked dirty. Otherwise, the page(s) are fetched from disk and requested modifications are done.

Not all cached pages can be written to as program code is often mapped as read-only or copy-on-write; in the latter case, modifications to code will only be visible to the process itself and will not be written to disk.


⚲ API:

📚 References


More

Zero-copy

Writing data to storage and reading are very resource consuming operations. Copying memory is time and CPU consuming operation too. Set of methods to avoid copying operations is called zero-copy. The goal of zero-copy methods is a fast and efficient data transfer within the system.

The first and simplest method is anonymous pipe, invoked by operator "|" in shells. Instead of writing data into temporary file and reading, the data is passed efficiently via a pipe bypassing a storage.

⚲ API and ⚙️ Internals.

The second method is tee, available in user space via utility man 1 tee.

Other methods:

There are three cases regarding which end being a pipe:

  1. do_splice_from id - only input is a pipe
  2. do_splice_to id - only output is a pipe.
  3. splice_pipe_to_pipe id - both are pipes


🔧 TODO: zerocopy_sg_from_iter id builds a zerocopy skb datagram from an iov_iter. Used in tap_get_user id and tun_get_user id.

skb_zerocopy id

skb_zerocopy_iter_dgram id


📚 References

Block device layer

Linux storage is based on block devices.

Block devices provide buffered access to the hardware, always allowing to read or write any sized block (including single characters/bytes) and are not subject to alignment restrictions. They are commonly used to represent hardware like hard disks.


⚙️ Internals.


📚 References

Device mapper

The device mapper is a framework provided by the kernel for mapping physical block devices onto higher-level "virtual block devices". It forms the foundation of LVM2, software RAIDs and dm-crypt disk encryption, and offers additional features such as file system snapshots.

Device mapper works by passing data from a virtual block device, which is provided by the device mapper itself, to another block device. Data can be also modified in transition, which is performed, for example, in the case of device mapper providing disk encryption.

User space applications that need to create new mapped devices talk to the device mapper via the libdevmapper.so shared library, which in turn issues ioctls to the /dev/mapper/control device node.

Functions provided by the device mapper include linear, striped and error mappings, as well as crypt and multipath targets. For example, two disks may be concatenated into one logical volume with a pair of linear mappings, one for each disk. As another example, crypt target encrypts the data passing through the specified device, by using the Linux kernel's Crypto API.

The following mapping targets are available:

  • cache - allows the creation of hybrid volumes, by using solid-state drives (SSDs) as caches for hard disk drives (HDDs)
  • crypt - provides data encryption, by using the Linux kernel's Crypto API
  • delay - delays reads and/or writes to different devices (used for testing)
  • era - behaves in a way similar to the linear target, while it keeps track of blocks that were written to within a user-defined period of time
  • error - simulates I/O errors for all mapped blocks (used for testing)
  • flakey - simulates periodic unreliable behaviour (used for testing)
  • linear - maps a continuous range of blocks onto another block device
  • mirror - maps a mirrored logical device, while providing data redundancy
  • multipath - supports the mapping of multipathed devices, through usage of their path groups
  • raid - offers an interface to the Linux kernel's software RAID driver (md)
  • snapshot and snapshot-origin - used for creation of LVM snapshots, as part of the underlining copy-on-write scheme
  • striped - strips the data across physical devices, with the number of stripes and the striping chunk size as parameters
  • zero - an equivalent of /dev/zero, all reads return blocks of zeros, and writes are discarded

📚 References

I/O scheduler

I/O scheduling (or disk scheduling) is the method chosen by the kernel to decide in which order the block I/O operations will be submitted to the storage volumes. I/O scheduling usually has to work with hard disk drives that have long access times for requests placed far away from the current position of the disk head (this operation is called a seek). To minimize the effect this has on system performance, most I/O schedulers implement a variant of the elevator algorithm that reorders the incoming randomly ordered requests so the associated data would be accessed with minimal arm/head movement.

The particular I/O scheduler used with certain block device can be switched at run time by modifying the corresponding /sys/block/<block_device>/queue/scheduler file in the sysfs filesystem. Some I/O schedulers also have tunable parameters that can be set through files in /sys/block/<block_device>/queue/iosched/.


Function elv_register id registers struct elevator_type id.

⚙️ Internals


📚 References

Storage drivers

🔧 TODO

⚙️ Internals

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.