Volume Table of Contents
In the IBM mainframe storage architecture, Volume Table of Contents, or VTOC, is a data structure that provides a way of locating the data sets that reside on a particular disk volume. It is the functional equivalent of either the MS/PC DOS File Allocation Table or GUID Partition Table on a desktop PC, and the root directory of a mass storage device on a PC or minicomputer, e.g. / on Unix or Linux, C:\ on DOS or Windows. The VTOC is not used to contain any IPLTEXT and does not have any role in the IPL process, therefore does not have any data used by or functionally equivalent to the MBR. It lists the names of each data set on the volume as well as size, location, and permissions. Additionally, it contains an entry for every area of contiguous free space on the volume. The third record on the first track of the first cylinder of any volume of DASD is known as the volume label and must contain a pointer to the location of the VTOC. The location of the VTOC may be specified when the volume is initialized. For performance reasons it may be located as close to the center of the volume as possible, since it is referenced frequently. A VTOC is added to a disk volume when it is initialized using the Device Support Facilities utility program, ICKDSF. VTOC was originally designed for removable disk packs.
To locate a data set, a program will generally interrogate a z/OS catalog to find the volume where the data set resides. Having found the correct volume, the VTOC is searched to find out where on the disk the data set is stored.
The VTOC consists of a sequence of 140-byte records known as Data Set Control Blocks, or DSCBs. There are ten types of DSCB.
DSCB format type | Purpose | Notes |
0 | Empty entry | |
1 | Data set primary | Describes first three extents of a data set |
2 | ISAM data set | Describes ISAM data sets |
3 | Data set extension | Describes data set extents after the third |
4 | VTOC | Describes volume attributes |
5 | Free space | 26 extents on non-index volumes |
6 | Shared Cylinder Allocation | In OS/360, Format 6 DSCB is used for "Shared Cylinder Allocation", which enabled multiple datasets to be interleaved across a range of cylinders. This was intended as a performance optimisation to reduce disk head movement when two or more datasets were expected to be used simultaneously. In current releases of z/OS, shared cylinder allocation format 6 DSCB is no longer supported. |
7 | Free space | Extension of Format 4 DSCB |
8 | Data set primary | EAV version of Format 1 DSCB |
9 | Data set extension | EAV extension of Format 3 DSCB |
The VTOC must reside within the first 64K tracks on the volume, and The first DSCB in the VTOC is always a format 4 DSCB which describes the VTOC itself and attributes of the disk volume on which this VTOC resides. The second DSCB is always a format 5 DSCB which describes free space within the VTOC. Normally, the rest of the VTOC will contain format 0 DSCBs, which are empty entries, and format 1 or format 3 DSCBs, which describe the "extents" of data sets, giving their start address and end address of up to 16 such "extents" on disk. The initial part of a data set is described by a format 1 DSCB. If necessary, format 3 DSCBs are used to describe further "extents" of the data set. When a data set is deleted, its format 1 DSCB is overwritten to become a format 0 DSCB, and the format 3 DSCB, if one exists, is similarly deleted.
Originally, a VTOC search was a sequential scan of the DSCBs, stopping when the correct format 1 DSCB was found or the end of the VTOC was reached. As disk volumes became larger, VTOC search became a bottleneck and so a VTOC index was added.
Format 1 DSCB
This VTOC entry describes a dataset and defines its first three extents. This is the format of the DSCB from OS/360 Release 21.7 in 1973, prior to changes for Y2K.Position | Length | Description |
0 | 44 | Dataset name, left-adjusted and space-filled this is the DSCB record key. |
44 | 1 | Format identifier, '1' for Format-1 DSCB |
45 | 6 | Volume serial number of first DASD volume fot this dataset |
51 | 2 | Volume sequence number of this volume for multi-volume datasets |
53 | 3 | Dataset creation date one byte for year of century and two bytes for day-of-year |
56 | 3 | Dataset expiration date 99365 indicates that this dataset will never expire. |
59 | 1 | Number of extents for this dataset |
60 | 1 | If this dataset is a partitioned dataset this is the number of bytes used in the last directory block. |
61 | 1 | Unused, listed as "reserved" by IBM. |
62 | 13 | Code identifying the operating system that created this dataset. |
75 | 7 | Unused, listed as "reserved" by IBM. |
82 | 2 | Code indicating "dataset organization" |
84 | 1 | Code indicating the "record format" of this dataset |
85 | 1 | "Option code", other options specified when the dataset was created |
86 | 2 | Block size |
88 | 2 | Record length |
90 | 1 | Key length if this file has recorded record keys. |
91 | 2 | Position of the key in the record relative to zero. |
93 | 1 | Indicator bits, for example indicating that the dataset is password-protected. |
94 | 4 | Dataset allocation parameters, indicating, for example that space for this dataset is to be allocated in blocks, cylinders, etc. |
95 | 3 | Secondary allocation quantity: Number of blocks, cylinders, etc. to be allocated if additional space is required. For example, if the dataset is created with the DD card specification SPACE= the dataset is initially allocated four cylinders, and an additional two cylinders, not necessary contiguous, will be allocated each time more space is needed, up to fifteen additional extents. |
98 | 3 | Disk address of last block written in the dataset. |
101 | 2 | Number of bytes remaining on last track following last block indicated above. |
103 | 2 | Unused, listed as "reserved" by IBM. |
105 | 10 | Description of first or only extent. Type of extent, extent sequence number, extent starting cylinder and track, extent ending cylinder and track. |
115 | 10 | Description of possible second extent, same format as above. |
125 | 10 | Description of possible third extent, same format as above. |
135 | 5 | Pointer to Format-2 DSCB in VTOC in format cylinder/head/record if this is indexed dataset. Pointer to Format-3 DSCB if this dataset has more than three extents. |