Logical block addressing (LBA) is a common scheme used for specifying the location of
blocks of data stored on
computer storage
Computer data storage or digital data storage is a technology consisting of computer components and Data storage, recording media that are used to retain digital data. It is a core function and fundamental component of computers.
The cent ...
devices, generally
secondary storage
Computer data storage or digital data storage is a technology consisting of computer components and Data storage, recording media that are used to retain digital data. It is a core function and fundamental component of computers.
The cent ...
systems such as
hard disk drive
A hard disk drive (HDD), hard disk, hard drive, or fixed disk is an electro-mechanical data storage device that stores and retrieves digital data using magnetic storage with one or more rigid rapidly rotating hard disk drive platter, pla ...
s. LBA is a particularly simple
linear addressing scheme; blocks are located by an integer index, with the first block being LBA 0, the second LBA 1, and so on.
The
IDE standard included 22-bit LBA as an option, which was further extended to 28-bit with the release of ATA-1 (1994) and to 48-bit with the release of ATA-6 (2003), whereas the size of entries in on-disk and in-memory data structures holding the address is typically 32 or 64 bits. Most hard disk drives released after 1996 implement logical block addressing.
Overview
In logical block addressing, only one number is used to address data, and each linear base address describes a single block.
The LBA scheme replaces earlier schemes which exposed the physical details of the storage device to the software of the operating system. Chief among these was the
cylinder-head-sector
Cylinder-head-sector (CHS) is an early method for giving addresses to each physical block of data on a hard disk drive.
It is a 3D-coordinate system made out of a vertical coordinate ''head'', a horizontal (or radial) coordinate ''cylinder'', an ...
(CHS) scheme, where blocks were addressed by means of a
tuple
In mathematics, a tuple is a finite sequence or ''ordered list'' of numbers or, more generally, mathematical objects, which are called the ''elements'' of the tuple. An -tuple is a tuple of elements, where is a non-negative integer. There is o ...
which defined the cylinder, head, and sector at which they appeared on the
hard disk
A hard disk drive (HDD), hard disk, hard drive, or fixed disk is an electro-mechanical data storage device that stores and retrieves digital data using magnetic storage with one or more rigid rapidly rotating hard disk drive platter, pla ...
. CHS did not map well to devices other than hard disks (such as tapes and networked storage), and was generally not used for them. CHS was used in early
MFM and
RLL drives, and both it and its successor, extended cylinder-head-sector (ECHS), were used in the first
ATA drives. However, current disk drives use
zone bit recording, where the number of sectors per track depends on the track number. Even though the disk drive will report some CHS values as sectors per track (SPT) and heads per cylinder (HPC), they have little to do with the disk drive's true geometry.
LBA was first introduced in 1981 by
SASI, the precursor of
SCSI, as an abstraction. While the drive controller still addresses data blocks by their CHS address, this information is generally not used by the SCSI device driver, the OS, filesystem code, or any applications (such as databases) that access the "raw" disk. System calls requiring block-level I/O pass LBA definitions to the storage device driver; for simple cases (where one volume maps to one physical drive), this LBA is then passed directly to the drive controller.
In
redundant array of independent disks (RAID) devices and
storage area networks (SANs) and where logical drives (
logical unit numbers, LUNs) are composed via LUN virtualization and aggregation, LBA addressing of individual disk should be translated by a software layer to provide uniform LBA addressing for the entire storage device.
Enhanced BIOS
The earlier IDE standard from Western Digital introduced 22-bit LBA; in 1994, the
ATA-1 standard allowed for 28 bit addresses in both LBA and CHS modes. The CHS scheme used 16 bits for cylinder, 4 bits for head and 8 bits for sector, counting sectors from 1 to 255. This means the reported number of heads never exceeds 16 (0–15), the number of sectors can be 255 (1–255; though 63 is often the largest used) and the number of cylinders can be as large as 65,536 (0–65535), limiting disk size to 128 GiB (≈137.4 GB), assuming 512 byte sectors. These values can be accessed by issuing the ATA command "Identify Device" (
EC
h) to the drive.
However, the
IBM BIOS
In computing, BIOS (, ; Basic Input/Output System, also known as the System BIOS, ROM BIOS, BIOS ROM or PC BIOS) is a type of firmware used to provide runtime services for operating systems and Computer program, programs and to perform Computer ...
implementation defined in the
INT 13h disk access routines used quite a different 24-bit scheme for CHS addressing, with 10 bits for cylinder, 8 bits for head, and 6 bits for sector, or 1024 cylinders, 256 heads, and 63 sectors. This INT 13h implementation had pre-dated the ATA standard, as it was introduced when the
IBM PC
The IBM Personal Computer (model 5150, commonly known as the IBM PC) is the first microcomputer released in the List of IBM Personal Computer models, IBM PC model line and the basis for the IBM PC compatible ''de facto'' standard. Released on ...
had only
floppy disk
A floppy disk or floppy diskette (casually referred to as a floppy, a diskette, or a disk) is a type of disk storage composed of a thin and flexible disk of a magnetic storage medium in a square or nearly square plastic enclosure lined with a ...
storage, and when hard disk drives were introduced on the
IBM PC/XT, INT 13h interface could not be practically redesigned due to
backward compatibility
In telecommunications and computing, backward compatibility (or backwards compatibility) is a property of an operating system, software, real-world product, or technology that allows for interoperability with an older legacy system, or with Input ...
issues. Overlapping ATA CHS mapping with BIOS CHS mapping produced the lowest common denominator of 10:4:6 bits, or 1024 cylinders, 16 heads, and 63 sectors, which gave the practical limit of 1024×16×63 sectors and 528MB (504
MiB), assuming 512 byte sectors.
In order for the BIOS to overcome this limit and successfully work with larger hard drives, a CHS translation scheme had to be implemented in the BIOS disk I/O routines which would convert between 24-bit CHS used by INT 13h and 28-bit CHS numbering used by ATA. The translation scheme was called ''large'' or ''bit shift translation''. This method would remap 16:4:8 bit ATA cylinders and heads to 10:8:6 bit scheme used by INT 13h, generating much more "virtual" drive heads than the physical disk reported. This increased the practical limit to 1024×256×63 sectors, or 8.4GB (7.8
GiB).
To further overcome this limit,
INT 13h Extensions were introduced with the ''
BIOS Enhanced Disk Drive Services'', which removed practical limits on disk size for operating systems which are aware of this new interface, such as the ''DOS 7.0'' component in
Windows 95. This ''enhanced BIOS'' subsystem supports LBA addressing with ''LBA'' or ''
LBA-assisted'' method, which uses native 28-bit LBA for addressing ATA disks and performs CHS conversion as needed.
The ''normal'' or ''none'' method reverts to the earlier 10:4:6 bit CHS mode which does not support addressing more than 528MB.
Until the release of ATA-2 standard in 1996, there were a handful of large hard drives which did not support LBA addressing, so only ''large'' or ''normal'' methods could be used. However, using the ''large'' method also introduced portability problems, as different BIOSes often used different and incompatible translation methods, and hard drives partitioned on a computer with a BIOS from a particular vendor often could not be read on a computer with a different make of BIOS. The solution was to use conversion software such as
OnTrack Disk Manager, Micro House EZ-Drive/EZ-BIOS, etc., which installed to the disk's
OS loader and replaced INT 13h routines at boot time with custom code. This software could also enable LBA and INT 13h Extensions support for older computers with non LBA-compliant BIOSes.
LBA-assisted translation
When the BIOS is configured to use a disk in LBA-assisted translation mode, the BIOS accesses the hardware using LBA mode, but also presents a translated CHS geometry via the INT 13h interface. The number of cylinders, heads, and sectors in the translated geometry depends on the total size of the disk, as shown in the following table.
LBA48
The current 48-bit LBA scheme was introduced in 2002 with the
ATA-6 standard, raising the addressing limit to 2× 512 bytes, which is exactly 128
PiB or approximately 144
PB. Current PC-compatible computers support INT 13h Extensions, which use 64-bit structures for LBA addressing and should encompass any future extension of LBA addressing, though modern operating systems implement direct disk access and do not use the
BIOS subsystems, except at
boot load time. Disks partitioned with
MBR use 32-bit logical block addressing LBA to handle the total number of physical or logical sectors, that is, they can handle a total maximum of 4,294,967,296 sectors (2^32). This means that traditionally a maximum data limit of 2
tebibytes could be stored per hard disk, since these have a physical and logical sector size of 512 bytes. This limit can be exceeded up to 16 TiB with a physical and logical sector of 4096 bytes.
CHS conversion
In the LBA addressing scheme, sectors are numbered as integer indexes; when mapped to CHS (
cylinder-head-sector
Cylinder-head-sector (CHS) is an early method for giving addresses to each physical block of data on a hard disk drive.
It is a 3D-coordinate system made out of a vertical coordinate ''head'', a horizontal (or radial) coordinate ''cylinder'', an ...
)
tuple
In mathematics, a tuple is a finite sequence or ''ordered list'' of numbers or, more generally, mathematical objects, which are called the ''elements'' of the tuple. An -tuple is a tuple of elements, where is a non-negative integer. There is o ...
s, LBA numbering starts with the first cylinder, first head, and track's first sector. Once the track is exhausted, numbering continues to the second head, while staying inside the first cylinder. Once all heads inside the first cylinder are exhausted, numbering continues from the second cylinder, etc. Thus, the lower the LBA value is, the closer the physical sector is to the hard drive's first (that is, outermost) cylinder.
CHS tuples can be mapped to LBA address with the following formula:
: ''LBA'' = (''C'' × ''HPC'' + ''H'') × ''SPT'' + (S − 1)
where
* ''C'', ''H'' and ''S'' are the cylinder number, the head number, and the sector number
* ''LBA'' is the logical block address
* ''HPC'' is the maximum number of heads per cylinder (reported by disk drive, typically 16 for 28-bit LBA)
* ''SPT'' is the maximum number of sectors per track (reported by disk drive, typically 63 for 28-bit LBA)
LBA addresses can be mapped to CHS tuples with the following formula ("mod" is the
modulo operation
In computing and mathematics, the modulo operation returns the remainder or signed remainder of a Division (mathematics), division, after one number is divided by another, the latter being called the ''modular arithmetic, modulus'' of the operatio ...
, i.e. the
remainder
In mathematics, the remainder is the amount "left over" after performing some computation. In arithmetic, the remainder is the integer "left over" after dividing one integer by another to produce an integer quotient ( integer division). In a ...
, and "÷" is
integer division, i.e. the
quotient of the division where any fractional part is discarded):
: ''C'' = ''LBA'' ÷ (''HPC'' × ''SPT'')
: ''H'' = (''LBA'' ÷ ''SPT'') mod ''HPC''
: ''S'' = (''LBA'' mod ''SPT'') + 1
According to the ATA specifications, "If the content of words (61:60) is greater than or equal to 16,514,064, then the content of word 1
he number of logical cylindersshall be equal to 16,383."
Therefore, for LBA 16450559, an ATA drive may actually respond with the CHS ''tuple'' (16319, 15, 63), and the number of cylinders in this scheme must be much larger than 1024 allowed by INT 13h.
Operating system dependencies
Operating systems that are sensitive to BIOS-reported drive geometry include
Solaris,
DOS and Windows NT family, where
NTLDR (
NT,
2000
2000 was designated as the International Year for the Culture of Peace and the World Mathematics, Mathematical Year.
Popular culture holds the year 2000 as the first year of the 21st century and the 3rd millennium, because of a tende ...
,
XP,
Server 2003) or
BOOTMGR (
Vista,
Server 2008,
Windows 7
Windows 7 is a major release of the Windows NT operating system developed by Microsoft. It was Software release life cycle#Release to manufacturing (RTM), released to manufacturing on July 22, 2009, and became generally available on October 22, ...
and
Server 2008 R2) use
Master boot record
A master boot record (MBR) is a type of boot sector in the first block of disk partitioning, partitioned computer mass storage devices like fixed disks or removable drives intended for use with IBM PC-compatible systems and beyond. The concept ...
which addresses the disk using CHS;
x86-64
x86-64 (also known as x64, x86_64, AMD64, and Intel 64) is a 64-bit extension of the x86 instruction set architecture, instruction set. It was announced in 1999 and first available in the AMD Opteron family in 2003. It introduces two new ope ...
and
Itanium versions of Windows can partition the drive with
GUID Partition Table which uses LBA addressing.
Some operating systems do not require any translation because they do not use geometry reported by BIOS in their
boot loaders. Among these operating systems are
BSD,
Linux
Linux ( ) is a family of open source Unix-like operating systems based on the Linux kernel, an kernel (operating system), operating system kernel first released on September 17, 1991, by Linus Torvalds. Linux is typically package manager, pac ...
,
macOS
macOS, previously OS X and originally Mac OS X, is a Unix, Unix-based operating system developed and marketed by Apple Inc., Apple since 2001. It is the current operating system for Apple's Mac (computer), Mac computers. With ...
,
OS/2
OS/2 is a Proprietary software, proprietary computer operating system for x86 and PowerPC based personal computers. It was created and initially developed jointly by IBM and Microsoft, under the leadership of IBM software designer Ed Iacobucci, ...
and
ReactOS
ReactOS is a Free and open-source software, free and open-source operating system for i586/amd64 personal computers that is intended to be binary-code compatibility, binary-compatible with computer programs and device drivers developed for Wind ...
.
See also
*
Block (data storage)
*
Cylinder-head-sector
Cylinder-head-sector (CHS) is an early method for giving addresses to each physical block of data on a hard disk drive.
It is a 3D-coordinate system made out of a vertical coordinate ''head'', a horizontal (or radial) coordinate ''cylinder'', an ...
(CHS)
*
Disk formatting
*
Disk partitioning
*
Disk storage
Disc or disk may refer to:
* Disk (mathematics)
In geometry, a disk (Spelling of disc, also spelled disc) is the region in a plane (geometry), plane bounded by a circle. A disk is said to be ''closed'' if it contains the circle that constitut ...
Notes
References
External links
LBAs explained
CHS to LBA Translation TutorialMicrosoft article on 7.8 GB limit on NT 4.0
Upgrading and Repairing PC's by Scott Mueller. Pages 524–531.
AT Attachment 8 - ATA/ATAPI Command Set (ATA8-ACS)
{{DEFAULTSORT:Logical block addressing
Computer storage devices
SCSI
AT Attachment
BIOS