Big cleanup in config help and description
[oweals/busybox.git] / util-linux / volume_id / iso9660.c
1 /*
2  * volume_id - reads filesystem label and uuid
3  *
4  * Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
5  *
6  *      This library is free software; you can redistribute it and/or
7  *      modify it under the terms of the GNU Lesser General Public
8  *      License as published by the Free Software Foundation; either
9  *      version 2.1 of the License, or (at your option) any later version.
10  *
11  *      This library is distributed in the hope that it will be useful,
12  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  *      Lesser General Public License for more details.
15  *
16  *      You should have received a copy of the GNU Lesser General Public
17  *      License along with this library; if not, write to the Free Software
18  *      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  */
20
21 //kbuild:lib-$(CONFIG_FEATURE_VOLUMEID_ISO9660) += iso9660.o
22
23 //config:config FEATURE_VOLUMEID_ISO9660
24 //config:       bool "iso9660 filesystem"
25 //config:       default y
26 //config:       depends on VOLUMEID
27
28 #include "volume_id_internal.h"
29
30 #define ISO_SUPERBLOCK_OFFSET           0x8000
31 #define ISO_SECTOR_SIZE                 0x800
32 #define ISO_VD_OFFSET                   (ISO_SUPERBLOCK_OFFSET + ISO_SECTOR_SIZE)
33 #define ISO_VD_PRIMARY                  0x1
34 #define ISO_VD_SUPPLEMENTARY            0x2
35 #define ISO_VD_END                      0xff
36 #define ISO_VD_MAX                      16
37
38 struct iso_volume_descriptor {
39         uint8_t         vd_type;
40         uint8_t         vd_id[5];
41         uint8_t         vd_version;
42         uint8_t         flags;
43         uint8_t         system_id[32];
44         uint8_t         volume_id[32];
45         uint8_t         unused[8];
46         uint8_t         space_size[8];
47         uint8_t         escape_sequences[8];
48 } PACKED;
49
50 struct high_sierra_volume_descriptor {
51         uint8_t         foo[8];
52         uint8_t         type;
53         uint8_t         id[4];
54         uint8_t         version;
55 } PACKED;
56
57 int FAST_FUNC volume_id_probe_iso9660(struct volume_id *id /*,uint64_t off*/)
58 {
59 #define off ((uint64_t)0)
60         uint8_t *buf;
61         struct iso_volume_descriptor *is;
62         struct high_sierra_volume_descriptor *hs;
63
64         dbg("probing at offset 0x%llx", (unsigned long long) off);
65
66         buf = volume_id_get_buffer(id, off + ISO_SUPERBLOCK_OFFSET, 0x200);
67         if (buf == NULL)
68                 return -1;
69
70         is = (struct iso_volume_descriptor *) buf;
71
72         if (memcmp(is->vd_id, "CD001", 5) == 0) {
73                 int vd_offset;
74                 int i;
75
76                 dbg("read label from PVD");
77 //              volume_id_set_label_raw(id, is->volume_id, 32);
78                 volume_id_set_label_string(id, is->volume_id, 32);
79
80                 dbg("looking for SVDs");
81                 vd_offset = ISO_VD_OFFSET;
82                 for (i = 0; i < ISO_VD_MAX; i++) {
83                         uint8_t svd_label[64];
84
85                         is = volume_id_get_buffer(id, off + vd_offset, 0x200);
86                         if (is == NULL || is->vd_type == ISO_VD_END)
87                                 break;
88                         if (is->vd_type != ISO_VD_SUPPLEMENTARY)
89                                 continue;
90
91                         dbg("found SVD at offset 0x%llx", (unsigned long long) (off + vd_offset));
92                         if (memcmp(is->escape_sequences, "%/@", 3) == 0
93                          || memcmp(is->escape_sequences, "%/C", 3) == 0
94                          || memcmp(is->escape_sequences, "%/E", 3) == 0
95                         ) {
96                                 dbg("Joliet extension found");
97                                 volume_id_set_unicode16((char *)svd_label, sizeof(svd_label), is->volume_id, BE, 32);
98                                 if (memcmp(id->label, svd_label, 16) == 0) {
99                                         dbg("SVD label is identical, use the possibly longer PVD one");
100                                         break;
101                                 }
102
103 //                              volume_id_set_label_raw(id, is->volume_id, 32);
104                                 volume_id_set_label_string(id, svd_label, 32);
105 //                              strcpy(id->type_version, "Joliet Extension");
106                                 goto found;
107                         }
108                         vd_offset += ISO_SECTOR_SIZE;
109                 }
110                 goto found;
111         }
112
113         hs = (struct high_sierra_volume_descriptor *) buf;
114
115         if (memcmp(hs->id, "CDROM", 5) == 0) {
116 //              strcpy(id->type_version, "High Sierra");
117                 goto found;
118         }
119
120         return -1;
121
122  found:
123 //      volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
124         IF_FEATURE_BLKID_TYPE(id->type = "iso9660";)
125
126         return 0;
127 }