LHA
LHA is an archiving program and file format created by Haruyasu Yoshizaki in 1988. It was originally called LHarc, then was briefly LH before settling on LHA. In the 1990s, it was the most popular archiving format on the Amiga platform. It also got some use on the PC platform including in the installers for id Software games such as Doom and Quake, because ZIP compression was inferior until the release of PKZIP 2.0, which brought the formats to parity. At present, it is mostly used in Japan.
The file format is also known as LZH. See the LZH disambiguation page for other "LZH" formats.
Contents |
Format details
An LHA file consists of a sequence of elements, each representing a member file or directory. There is no global archive-level header.
There are at least four different formats that an element can have. (Note that this is independent of compression schemes.) In LHA jargon, the formats are known as "header levels", and are usually called "header level 0", "... 1", "... 2", and "... 3".
The format of an element is determined by the byte at offset 20 from the beginning of that element. It is possible for different formats to be used in the same LHA file.
The formats are similar, but irritatingly different. They don't even follow the same principles with respect to how they must be parsed.
Compression schemes
Wikipedia has a list of LHA compression methods, as identified by the alphanumeric bytes of the compression method field. It includes the following:
lh0, lh1,lh2,lh3, lh4, lh5, lh6, lh7, lh8, lh9, lha, lhb, lhc, lhd, lhe, lhx, lz2, lz3, lz4, lz5, lz7, lz8, lzs, pc1, pm0, pm1, pm2, pms
lhd
is not actually a compression scheme, but indicates that the element represents a subdirectory.
Extended headers
For header levels 1 and higher, each member file has an associated list of "extended headers", similar to ZIP's extensible data fields. Each extended header is tagged with a single byte indicating its type. Extended headers are used to store platform-specific metadata, and to extend the format in other ways.
- List of extended headers (from archive.org)
- libarchive: archive_read_support_format_lha.c (look for "EXT_HEADER_CRC")
Header level 0 supports extended data in a more limited way. It allows for just one set of extended header fields (called the "extended area"), the content of which is determined by the initial one-byte "OS type" field.
- Extended area (from archive.org)
Identification
Bytes '-' 'l' ?? ?? '-'
appear at offset 2. This is not a global file signature, but represents the compression scheme of the first member file of the archive.
If you consider PMA to be a form of LHA, then the second of these bytes can also be 'p'
.
See also
Format documentation
- jLHA software: LHA Notes
- Japanese
- English (translation?) (from archive.org)
- Archive format info
- LZH file header format (among other archive types)
- libarchive: archive_read_support_format_lha.c - Has comments with information about the header formats
Software
- lhasa
- 7-Zip
- Explzh for Windows
- Java library (from archive.org)
- libarchive
- LHarc/LHA (DOS software)
- LHarc v1.13c (1989-05-31) - English
- LHA v2.13 (1991-07-20) - English
- LHA v2.55 English translation (1992-11-15) - (unofficial?)
- LHA v2.55b (1992-11-24) - Japanese (LHA.EXE) and English (LHA_E.EXE)
- LHA v2.66 test version (1994-12-30) - Japanese
- LHarc/LHA source code: v1.13b ยท v2.11
- LArc v3.33 (May 19, 1989) (DOS software)
- Deark (might be useful for analysis; doesn't decompress the format)
Sample files
- libarchive test files โ test_read_format_lha_*.lzh.uu
- aminet