ISO 9660

ISO 9660

ISO 9660, a standard published by the International Organization for Standardization (ISO), defines a file system for CD-ROM media.It aims at supporting different computer operating systems such as Windows, classic Mac OS, and Unix-like systems, so that data may be exchanged.

The Rock Ridge extension to ISO 9660 adds support for POSIX file permissions and ownership, symbolic links, and longer file names; the Joliet extension to ISO 9660, adds support for longer file names and the Unicode character set.

DVDs may also use the ISO 9660 file system. However, the UDF file system is more appropriate on DVDs since it offers better support for the larger media and is better suited for modern operating systems needs.

History

A CD-ROM may be mastered with any kind of data on it. Sun Microsystems, for example, uses the Berkeley UNIX UFS file systems on many CD-ROMs. Silicon Graphics' IRIX installation media uses EFS. Mac OS uses HFS Plus. This restricts them to the producer's operating environment, which, while beneficial in the case of platform-specific software distributions, is not appropriate for widely distributing content. Hence, the need for one volume format that would be accessible on a variety of equipment arose.

Some were using the High Sierra format on CD-ROM, which arranged file information in a dense, sequential layout to minimise nonsequential access. The High Sierra file system format uses a hierarchical (eight levels of directories deep) tree file system arrangement, similar to UNIX and FAT. High Sierra has a minimal set of file attributes (directory or ordinary file and time of recording) and name attributes (name, extension, and version). The designers realised they could never get people to agree on a unified definition of file attributes, so they provided for minimum common information, and defined a place for future optional extensions (system use area) for each file.

High Sierra was adopted in December 1986 (with changes) as an international standard by Ecma International as ECMA-119 [ cite web
url=http://www.ecma-international.org/publications/standards/Ecma-119.htm;
title=Volume and File Structure of CDROM for Information Interchange
publisher=Ecma International
month=December | year=1987
] and submitted for the fast tracking to the International Organization for Standardization, where it was eventually accepted as ISO 9660:1988. The ISO 9660 file system format is now used throughout the industry.

pecifications

CD-ROM Specifications

The smallest entity in the CD format is called a frame, and holds 24 bytes. Data in a CD-ROM is organized in frames and sectors. A CD-ROM sector contains 98 frames, and holds 2352 bytes.

CD-ROM Mode 1, usually used for computer data, divides the 2352 byte data area defined by the Red Book standards into 12 bytes of synchronization information, 4 bytes of header data, 2048 bytes of user data and 288 bytes of error correction and detection codes. These codes help prevent the data from becoming corrupted, which could lead to errors for executable data.

CD-ROM Mode 2 Form 1, usually used for computer data, has the same user data and error correction as Mode 1, but with a slightly different layout. Its use is not recommended for compatibility reasons. Media Sciences - [http://www.mscience.com/faq62.html Mode and Form differences] ]

CD-ROM Mode 2 Form 2, intended to be used for error-tolerant data such as audio and video, divides the 2352 bytes into 12 bytes of synchronization information, 4 bytes of header data and 2336 bytes of user data. Mode 2 provides 14% more user data space than Mode 1 by omitting error correction, since a read error in audio or video will only cause a small flaw which may not even be detectable to humans. Video CDs are classified as Mode 2 Form 2.

ISO 9660 Specifications

The first 32768 bytes of the disk are unused by ISO 9660 data structure, and therefore available for other use. For example, a CD-ROM may contain an alternative file system descriptor in this area, as it is often used by Hybrid CDs to offer Mac OS-specific content.

Immediately afterwards, a series of volume descriptors details the contents and kind of information contained on the disk (similar to the BIOS parameter block used by FAT and NTFS formatted disks).

A volume descriptor describes the characteristics of the file system information present on a given CD-ROM, or volume. It is divided into two parts: the type of volume descriptor, and the characteristics of the descriptor.

The volume descriptor is constructed in this manner so that if a program reading the disk does not understand a particular descriptor, it can just skip over it until it finds one it recognises, thus allowing the use of many different types of information on one CD-ROM. Also, if an error were to render a descriptor unreadable, a subsequent redundant copy of a descriptor could then allow for fault recovery.

An ISO 9660 compliant disk contains at least a primary descriptor describing the ISO 9660 file system and a terminating descriptor for indicating the end of the descriptor sequence. Joliet and UDF are examples of file systems adding more descriptors to this sequence.

The primary volume descriptor acts much like the superblock of the Unix File System, providing details on the ISO 9660 compliant portion of the disk. Contained within the primary volume descriptor is the root directory record describing the location of the contiguous root directory. (As in UNIX, directories appear as files for the operating system special use). Directory entries are successively stored within this region. Evaluation of the ISO 9660 filenames is begun at this location. The root directory is stored as an extent, or sequential series of sectors, that contains each of the directory entries appearing in the root. In addition, since ISO 9660 works by segmenting the CD-ROM into logical blocks, the size of these blocks is found in the primary volume descriptor as well.

The first field in a Volume Descriptor is the Volume Descriptor Type (type), which can have the following values:
* Number 0: shall mean that the Volume Descriptor is a Boot Record
* Number 1: shall mean that the Volume Descriptor is a Primary Volume Descriptor
* Number 2: shall mean that the Volume Descriptor is a Supplementary Volume Descriptor
* Number 3: shall mean that the Volume Descriptor is a Volume Partition Descriptor
* Number 255: shall mean that the Volume Descriptor is a Volume Descriptor Set Terminator.

The second field is called the Standard Identifier and is set to CD001 for a CD-ROM compliant to the ISO 9660 standard.

Another interesting field is the Volume Space Size which contains the amount of data available on the CD-ROM.

File attributes are very simple in ISO-9660. The most important file attribute is determining whether the file is a directory or an ordinary file. File attributes for the file described by the directory entry are stored in the directory entry and optionally, in the extended attribute record.

There are two ways to locate a file on an ISO 9660 file system. One way is to successively interpret the directory names and look through each directory file structure to find the file (much the way MS-DOS and UNIX work to find a file). The other way is through the use of a precompiled table of paths, where all the entries are enumerated in the successive contents of a file with the corresponding entries. Some systems do not have a mechanism for wandering through directories and they obtain a match by consulting the table.

While a large linear table seems a bit arcane, it can be of great value, as one can quickly search without wandering across the disk (thus reducing seek time).

All multi-byte values are stored twice, in little-endian and big-endian format, either one-after-another in what the specification calls "both-endian format", or in duplicated data structures such as the path table. It is therefore theoretically possible to author an ISO-9660 image which delivers different content on different architectures.

Restrictions

File and directory name restrictions

The standard has three different levels:Fact|date=August 2008

* Level 1: File names are limited to eight characters with a three-character extension, using upper case letters, numbers and underscore only. The maximum depth of directories is eight.
* Level 2: File names are not limited to 11 characters (the 8.3 format) but can be up to the maximum allowed by the 1 byte counter in the directory entry and the filename length byte counter. Typically, this is close to 180 characters, depending on how many extended attributes are present.
* Level 3: Files are allowed to be non-contiguous (i.e., fragmented), principally to allow packet writing or incremental CD recording).

The standard also specifies the following name restrictions:Fact|date=August 2008

* All levels restrict filenames to upper case letters, digits, underscores ("_"), and a dot. Linux converts uppercase letters to lower case while mounting ISO filesystems.
* File names shall not include spaces.
* File names shall not start or end with the "dot" character.
* File names shall not have more than one dot.
* Directory names shall not use dots at all.

Some CD authoring applications allow the user to use almost any character. While, strictly speaking, this does not conform to the ISO 9660 standard, most operating systems which can read ISO 9660 file systems have no problem with out-of-spec names. However, the names could appear wrong to the user.

Directory depth limit

The restrictions on filename length and directory depth (8 levels, including the root directory) are a more serious limitation of the ISO 9660 file system. Many CD authoring applications attempt to get around this by truncating filenames automatically, but do so at the risk of breaking applications that rely on a specific file structure.

The 4 GiB (or 2 GiB depending on implementation) file size limit

All numbers in ISO 9660 file systems except the single byte value used for the GMT offset are unsigned numbers. As the length of a file's extent on disk is stored in a 32 bit value [ ECMA-119 9.1.4] , it allows for a maximum length of 4 GiB. (Note: Some older operating systems may handle such values incorrectly (i.e., signed instead of unsigned), which would make it impossible to access files larger than 2 GiB in size.)

Based on this, it is often assumed that a file on an ISO 9660 formatted disc cannot be larger than 232-1 in size, as the file's size is stored in an unsigned 32 bit value, for which 232-1 is the maximum.

It is, however, possible to circumvent this limitation by using the multi-extent (fragmentation) feature of ISO 9660 Level 3. With this, files larger than 4 GiB can be split up into multiple extents (sequential series of sectors), each not exceeding the 4 GiB limit.For example, the free software such as infrarecorder and mkisofs as well as Roxio Toast are able to create ISO 9660 filesystems that use multi-extent files to store files larger than 4 GiB on appropriate media such as recordable DVDs.

Empirical tests with a 4.2 GiB fragmented file on a DVD media have shown that Microsoft Windows XP supports this, while Mac OS X (as of 10.4.8) does not handle this case properly. In the case of Mac OS X, the driver appears not to support file fragmentation at all (i.e. it only supports ISO 9660 Level 2 but not Level 3). Linux supports multiple extents. [ [http://lists.freebsd.org/pipermail/freebsd-bugs/2006-April/017786.html kern/95222: File sections on ISO9660 [sic] level 3 CDs ignored ] ] FreeBSD only shows and reads the last extent of a multi-extent file.Fact|date=August 2008

Limit on number of directories

Another limitation, less well known, is the number of directories. The ISO image has a structure called "path table". For each directory in the image, the path table provides the identifier of its parent directory. The problem is that the directory identifier is a 16-bit number, limiting its range from 1 to 65,535. [ECMA-119 6.9] The content of each directory is written also in a different place, making the path table redundant, and suitable only for fast searching. Some operating systems (e.g., Windows) use it, while others (e.g., Linux) do not. If an ISO image or disk consists of more than 65,535 directories, it will be readable in Linux, while in the Windows environment all files from the additional directories will be visible, but show up as empty (zero length). A popular application using ISO format, "mkisofs", aborts if there is a path table overflow. "Nero Burning ROM" (for Windows) does not check whether the problem occurs, and will produce an invalid ISO file or disk without warning. Also, isovfy cannot easily report this problem. This is the only place in the ISO format where a 16-bit number is used, causing such limitations.Fact|date=August 2008

Multisession support

ISO 9660 is by design a read-only, pre-mastered, file system. This means that all the data has to be written in one go to the medium. Once written, there is no provision for altering the stored content. Therefore ISO 9660 is not suitable to be used on random-writable media, such as Hard Disks.

Recordable CD media (CD-R) provides for multiple session writing. This means that data can be written to disc and made accessible, then later more data can be added to the disc as long as there is unused space left on the disc. (CD-Rs are Write Once media, so they do not support erasing or overwriting data once written.)

The Multisession extension to ISO 9660 makes use of this feature, by defining a rule for operating systems as to how to read an ISO 9660 volume from a CD-R. Instead of looking for the volume descriptor at offset 32768 (block number 16 on a CD) from the start of the disc, it starts reading from the 16th block in the first track of the "latest" session. Block numbers form a contiguous sequence starting at the first session, and continuing over added sessions and their gaps.

Hence, if a CD mastering program wants to add a single file to a CD-R that has an ISO 9660 volume, it has to append a session containing at least an updated copy of the entire directory tree, plus the new file. The duplicated directory entries can still reference the data files in the previous session(s).

In a similar way, file data can be updated or even removed. Removal is, however, only virtual: the removed content does not appear any more in the directory shown to the user, but it is still physically present on the disc. It can therefore be recovered, and it takes up space (such that the CD will become full even though appearing to still have unused space).

ISO 9660:1999

ISO 9660:1999 is the latest update to the ISO 9660 standard. It improves on the restrictions imposed by the older standard, by extending the maximum path length to 207 characters, removing the eight-level maximum directory nesting limit, and removing the special meaning of the dot character in filenames.


=Disc

ISO 9660 file system images (ISO images) are a common way to electronically transfer the contents of CD-ROMs. They often have the filename extension .iso (.iso9660 is less common, but also in use) and are commonly referred to as "ISOs". It should be noted an .iso file may be:
# A single ISO 9660 file system image
# A multi-track disc image with a table of contents

Extensions

There are common extensions to ISO 9660 to deal with the limitations. Rock Ridge supports the preservation of Unix-style permissions and longer ASCII-coded names; Joliet supports names stored in Unicode, thus allowing almost any character to be used, even from non-Latin scripts; El Torito enables CDs to be bootable on PC; Apple ISO 9660 Extensions adds support for Mac-OS-specific file characteristics such as Resource forks, file backup date and more.

ISO 13490 is basically ISO 9660 with multisession support.

For operating systems which do not support any extensions, there is a name translation file TRANS.TBL. It should be located in each directory, including root directory. Now obsolete.

Operating system support

Most operating systems support reading of ISO 9660 formatted discs, and most new versions support the extensions such as Rock Ridge and Joliet. Operating systems that do not support the extensions usually show the basic (non-extended) features of a plain ISO 9660 disc.

Here are some operating systems and their support for ISO 9660 and extensions:
* DOS: access with extensions, such as MSCDEX.EXE (Microsoft CDROM Extension) or CORELCD.EXE
* Microsoft Windows 95, Windows 98, Windows ME: can read ISO 9660 Level 1, 2, 3, and Joliet
* Microsoft Windows NT 4, Windows 2000, Windows XP can read ISO 9660 Level 1, 2, 3, Joliet, and ISO 9660:1999
* Linux and BSD: ISO 9660 Level 1, 2, 3, Joliet, Rock Ridge, and ISO 9660:1999
* GS/OS: ISO Level 1 and 2 support via the HS.FST File System Translator. [ cite web
url=http://www.juiced.gs/samples/assets/JuicedV9I2.pdf
title=The Virtual GS: Using ISO disk images in Apple II emulators
publisher=Juiced.GS Volume 9, Issue 2
month=May | year=2004|format=PDF
]
* Mac OS 7 to 9: ISO Level 1, 2. Optional free software supports Rock Ridge and Joliet (including ISO Level 3): [http://www.alex-castro.com/jokeridge/ Joke Ridge] and [http://www.tempel.org/joliet/ Joliet Volume Access] .
* Mac OS X 10.2 Jaguar, 10.3 Panther, 10.4 Tiger, 10.5 Leopard: ISO Level 1, 2, Joliet and Rock Ridge Extensions. Level 3 is not currently supported, although users have been able to mount these disks: [http://www.macosxhints.com/article.php?story=2004041301593855]
* AmigaOS supports the "AS" extensions (which preserve the Amiga protection bits and file comments)

ee also

* Hybrid CD
* Disk image emulator

References

External links

* [http://www.ecma-international.org/publications/standards/Ecma-119.htm ECMA-119] This is the ECMA release of the ISO 9660:1988 standard, available as a free download.
* [http://www.y-adagio.com/public/standards/iso_cdromr/tocont.htm] Technical information on ISO 9660:1999
* [http://freshmeat.net/projects/iat/ iat] – ISO 9660 Analyzer Tool
* [http://users.pandora.be/it3.consultants.bvba/handouts/ISO9960.html ISO 9660 Specifications]
* [http://alumnus.caltech.edu/~pje/iso9660.html Description of data structures in ISO-9660]
* [http://www.cdrfaq.org/ CD Recording FAQ]
* Media Sciences - [http://www.mscience.com/faq60.html Book types and compatibility] , [http://www.mscience.com/faq67.html Multisession]
* ISO files:
** [http://www.petri.co.il/how_to_write_iso_files_to_cd.htm How to write ISO files to CD in the Microsoft Windows Operating System]
** [http://www.tech-recipes.com/windows_tips620.html Small, Free Way to Use and Mount Images (ISO files) Without Burning Them in Windows XP]
** [http://sourceforge.net/projects/uniso/ Extract a file hierarchy from an iso image (*nix)]
** [http://linux-is-sexy.blogspot.com/2006/01/iso-files-with-linux.html How to extract ISO files with Linux]
* Mode 1 and 2:
** Sony Storage Support - [http://sony.storagesupport.com/node/6405 What CD-ROM Mode-1, Mode-2 and XA are ?]
** Media Sciences - [http://www.mscience.com/faq502.html Varieties of Mode 2]
** DivXLand - [http://www.divxland.org/mode2cd.php Mode 2 explanation and creation tools]


Wikimedia Foundation. 2010.

Игры ⚽ Нужен реферат?

Look at other dictionaries:

  • Iso 9660 — Gravure de disque optique Disque optique Image disque Graveurs Logiciel de gravure Types de disques optiques Laserdisc CD / CD ROM : CD R, CD RW, CD+G, VCD, SVCD SACD DVD : DVD R, DVD R …   Wikipédia en Français

  • ISO 9660 — est une norme de l ISO, qui définit le système de fichiers utilisé sur les CD ROM. Le support de Microsoft Windows, de Mac OS et des systèmes de type Unix comme GNU/Linux, FreeBSD, NetBSD et OpenBSD doit permettre l interopérabilité des données… …   Wikipédia en Français

  • ISO 9660 —   (High Sierra), Mitte der 1980er Jahre veröffentlichte Norm der ISO für die Datenspeicherung auf CD ROM, die auch für verwandte optische Datenträger wie CD R und CD RW gilt. Sie definiert ein Dateisystem, das von Betriebssystemen unabhängig ist… …   Universal-Lexikon

  • ISO 9660 — DIN ISO 9660 Bereich Computertechnik Titel Informationsverarbeitung; Datenträger und Dateistruktur von CD ROM für den Informationsaustausch …   Deutsch Wikipedia

  • ISO 9660 — У этого термина существуют и другие значения, см. ISO (значения). Работа с оптическими дисками Оптический диск Образ оптического диска, ISO образ Эмулятор оптических дисководов Программное обеспечение для работы с файловыми системами оптических… …   Википедия

  • ISO 9660 — Este artículo o sección necesita referencias que aparezcan en una publicación acreditada, como revistas especializadas, monografías, prensa diaria o páginas de Internet fidedignas. Puedes añadirlas así o avisar …   Wikipedia Español

  • ISO 9660 — El estándar ISO 9660 es una norma publicada inicialmente en 1986 por la ISO, que especifica el formato para el almacenaje de archivos en los soportes de tipo disco compacto. El estándar ISO 9660 define un sistema de archivos para CD ROM. Su… …   Enciclopedia Universal

  • ISO 9660 — ● np. f. ►NORM Norme d enregistrement des données sur les CD ROM …   Dictionnaire d'informatique francophone

  • Apple ISO 9660 Extensions — The primary file system for Apple Macintosh computers is HFS (or HFS+).The HFS file system has more properties than FAT file systems (which are primarily used on Windows 95 and 98 operating systems). Some of the metadata properties include: *… …   Wikipedia

  • ISO 9660:1988 — изд.1 P JTC 1 Обработка информации. Структура тома и файла нестираемой памяти на компакт дисках (CD ROM) для обмена информацией раздел 35.220.30 …   Стандарты Международной организации по стандартизации (ИСО)

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”