blob: 78b4a7b8ad2011a95a08268a3aa886c4adb7d036 [file] [log] [blame]
Denis Vlasenkode7684a2008-02-18 21:08:49 +00001/*
2 * volume_id - reads filesystem label and uuid
3 *
4 * Copyright (C) 2005 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#include "libbb.h"
22#include "volume_id.h"
23
24
25#define dbg(...) ((void)0)
Denis Vlasenkoc5b73722008-03-17 09:21:26 +000026/* #define dbg(...) bb_error_msg(__VA_ARGS__) */
Denis Vlasenkode7684a2008-02-18 21:08:49 +000027
28
29/* volume_id.h */
30
31#define VOLUME_ID_VERSION 48
32
33#define VOLUME_ID_LABEL_SIZE 64
34#define VOLUME_ID_UUID_SIZE 36
35#define VOLUME_ID_FORMAT_SIZE 32
36#define VOLUME_ID_PARTITIONS_MAX 256
37
38enum volume_id_usage {
39 VOLUME_ID_UNUSED,
40 VOLUME_ID_UNPROBED,
41 VOLUME_ID_OTHER,
42 VOLUME_ID_FILESYSTEM,
43 VOLUME_ID_PARTITIONTABLE,
44 VOLUME_ID_RAID,
45 VOLUME_ID_DISKLABEL,
46 VOLUME_ID_CRYPTO,
47};
48
Denis Vlasenkoc5b73722008-03-17 09:21:26 +000049#ifdef UNUSED_PARTITION_CODE
Denis Vlasenkode7684a2008-02-18 21:08:49 +000050struct volume_id_partition {
Denis Vlasenkoc5b73722008-03-17 09:21:26 +000051// const char *type;
52// const char *usage;
53// smallint usage_id;
54// uint8_t pt_type_raw;
55// uint64_t pt_off;
56// uint64_t pt_len;
Denis Vlasenkode7684a2008-02-18 21:08:49 +000057};
Denis Vlasenkoc5b73722008-03-17 09:21:26 +000058#endif
Denis Vlasenkode7684a2008-02-18 21:08:49 +000059
60struct volume_id {
Denis Vlasenkoc5b73722008-03-17 09:21:26 +000061// uint8_t label_raw[VOLUME_ID_LABEL_SIZE];
62// size_t label_raw_len;
Denis Vlasenkode7684a2008-02-18 21:08:49 +000063 char label[VOLUME_ID_LABEL_SIZE+1];
Denis Vlasenkoc5b73722008-03-17 09:21:26 +000064// uint8_t uuid_raw[VOLUME_ID_UUID_SIZE];
65// size_t uuid_raw_len;
66 /* uuid is stored in ASCII (not binary) form here: */
Denis Vlasenkode7684a2008-02-18 21:08:49 +000067 char uuid[VOLUME_ID_UUID_SIZE+1];
Denis Vlasenkoc5b73722008-03-17 09:21:26 +000068// char type_version[VOLUME_ID_FORMAT_SIZE];
69// smallint usage_id;
70// const char *usage;
71// const char *type;
Denis Vlasenkode7684a2008-02-18 21:08:49 +000072
Denis Vlasenkoc5b73722008-03-17 09:21:26 +000073#ifdef UNUSED_PARTITION_CODE
Denis Vlasenkode7684a2008-02-18 21:08:49 +000074 struct volume_id_partition *partitions;
75 size_t partition_count;
Denis Vlasenkoc5b73722008-03-17 09:21:26 +000076#endif
Denis Vlasenkode7684a2008-02-18 21:08:49 +000077
78 int fd;
79 uint8_t *sbbuf;
80 uint8_t *seekbuf;
81 size_t sbbuf_len;
82 uint64_t seekbuf_off;
83 size_t seekbuf_len;
84// int fd_close:1;
85};
86
87struct volume_id *volume_id_open_node(const char *path);
88int volume_id_probe_all(struct volume_id *id, uint64_t off, uint64_t size);
89void free_volume_id(struct volume_id *id);
90
91/* util.h */
92
93/* size of superblock buffer, reiserfs block is at 64k */
94#define SB_BUFFER_SIZE 0x11000
95/* size of seek buffer, FAT cluster is 32k max */
96#define SEEK_BUFFER_SIZE 0x10000
97
98#define bswap16(x) (uint16_t) ( \
99 (((uint16_t)(x) & 0x00ffu) << 8) | \
100 (((uint16_t)(x) & 0xff00u) >> 8))
101
102#define bswap32(x) (uint32_t) ( \
103 (((uint32_t)(x) & 0xff000000u) >> 24) | \
104 (((uint32_t)(x) & 0x00ff0000u) >> 8) | \
105 (((uint32_t)(x) & 0x0000ff00u) << 8) | \
106 (((uint32_t)(x) & 0x000000ffu) << 24))
107
108#define bswap64(x) (uint64_t) ( \
109 (((uint64_t)(x) & 0xff00000000000000ull) >> 56) | \
110 (((uint64_t)(x) & 0x00ff000000000000ull) >> 40) | \
111 (((uint64_t)(x) & 0x0000ff0000000000ull) >> 24) | \
112 (((uint64_t)(x) & 0x000000ff00000000ull) >> 8) | \
113 (((uint64_t)(x) & 0x00000000ff000000ull) << 8) | \
114 (((uint64_t)(x) & 0x0000000000ff0000ull) << 24) | \
115 (((uint64_t)(x) & 0x000000000000ff00ull) << 40) | \
116 (((uint64_t)(x) & 0x00000000000000ffull) << 56))
117
118#if BB_LITTLE_ENDIAN
119#define le16_to_cpu(x) (x)
120#define le32_to_cpu(x) (x)
121#define le64_to_cpu(x) (x)
122#define be16_to_cpu(x) bswap16(x)
123#define be32_to_cpu(x) bswap32(x)
124#define cpu_to_le16(x) (x)
125#define cpu_to_le32(x) (x)
126#define cpu_to_be32(x) bswap32(x)
127#else
128#define le16_to_cpu(x) bswap16(x)
129#define le32_to_cpu(x) bswap32(x)
130#define le64_to_cpu(x) bswap64(x)
131#define be16_to_cpu(x) (x)
132#define be32_to_cpu(x) (x)
133#define cpu_to_le16(x) bswap16(x)
134#define cpu_to_le32(x) bswap32(x)
135#define cpu_to_be32(x) (x)
136#endif
137
138enum uuid_format {
139 UUID_DCE_STRING,
140 UUID_DCE,
141 UUID_DOS,
142 UUID_NTFS,
143 UUID_HFS,
144};
145
146enum endian {
147 LE = 0,
148 BE = 1
149};
150
151void volume_id_set_unicode16(char *str, size_t len, const uint8_t *buf, enum endian endianess, size_t count);
Denis Vlasenkoc5b73722008-03-17 09:21:26 +0000152//void volume_id_set_usage(struct volume_id *id, enum volume_id_usage usage_id);
153//void volume_id_set_usage_part(struct volume_id_partition *part, enum volume_id_usage usage_id);
154//void volume_id_set_label_raw(struct volume_id *id, const uint8_t *buf, size_t count);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000155void volume_id_set_label_string(struct volume_id *id, const uint8_t *buf, size_t count);
156void volume_id_set_label_unicode16(struct volume_id *id, const uint8_t *buf, enum endian endianess, size_t count);
157void volume_id_set_uuid(struct volume_id *id, const uint8_t *buf, enum uuid_format format);
158void *volume_id_get_buffer(struct volume_id *id, uint64_t off, size_t len);
159void volume_id_free_buffer(struct volume_id *id);
160
161
162/* Probe routines */
163
164/* RAID */
165
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000166//int volume_id_probe_highpoint_37x_raid(struct volume_id *id, uint64_t off);
167//int volume_id_probe_highpoint_45x_raid(struct volume_id *id, uint64_t off, uint64_t size);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000168
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000169//int volume_id_probe_intel_software_raid(struct volume_id *id, uint64_t off, uint64_t size);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000170
171int volume_id_probe_linux_raid(struct volume_id *id, uint64_t off, uint64_t size);
172
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000173//int volume_id_probe_lsi_mega_raid(struct volume_id *id, uint64_t off, uint64_t size);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000174
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000175//int volume_id_probe_nvidia_raid(struct volume_id *id, uint64_t off, uint64_t size);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000176
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000177//int volume_id_probe_promise_fasttrack_raid(struct volume_id *id, uint64_t off, uint64_t size);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000178
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000179//int volume_id_probe_silicon_medley_raid(struct volume_id *id, uint64_t off, uint64_t size);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000180
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000181//int volume_id_probe_via_raid(struct volume_id *id, uint64_t off, uint64_t size);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000182
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000183//int volume_id_probe_lvm1(struct volume_id *id, uint64_t off);
184//int volume_id_probe_lvm2(struct volume_id *id, uint64_t off);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000185
186/* FS */
187
188int volume_id_probe_cramfs(struct volume_id *id, uint64_t off);
189
190int volume_id_probe_ext(struct volume_id *id, uint64_t off);
191
192int volume_id_probe_vfat(struct volume_id *id, uint64_t off);
193
194int volume_id_probe_hfs_hfsplus(struct volume_id *id, uint64_t off);
195
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000196//int volume_id_probe_hpfs(struct volume_id *id, uint64_t off);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000197
198int volume_id_probe_iso9660(struct volume_id *id, uint64_t off);
199
200int volume_id_probe_jfs(struct volume_id *id, uint64_t off);
201
202int volume_id_probe_linux_swap(struct volume_id *id, uint64_t off);
203
204int volume_id_probe_luks(struct volume_id *id, uint64_t off);
205
Denis Vlasenkoc5b73722008-03-17 09:21:26 +0000206//int volume_id_probe_mac_partition_map(struct volume_id *id, uint64_t off);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000207
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000208//int volume_id_probe_minix(struct volume_id *id, uint64_t off);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000209
Denis Vlasenkoc5b73722008-03-17 09:21:26 +0000210//int volume_id_probe_msdos_part_table(struct volume_id *id, uint64_t off);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000211
212int volume_id_probe_ntfs(struct volume_id *id, uint64_t off);
213
214int volume_id_probe_ocfs2(struct volume_id *id, uint64_t off);
215
216int volume_id_probe_reiserfs(struct volume_id *id, uint64_t off);
217
218int volume_id_probe_romfs(struct volume_id *id, uint64_t off);
219
220int volume_id_probe_sysv(struct volume_id *id, uint64_t off);
221
222int volume_id_probe_udf(struct volume_id *id, uint64_t off);
223
Denis Vlasenkod25c33f2008-03-17 09:25:05 +0000224//int volume_id_probe_ufs(struct volume_id *id, uint64_t off);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000225
226int volume_id_probe_xfs(struct volume_id *id, uint64_t off);