blob: 3c3c69818a82d4c72ec0e9f931456c7c32269b42 [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 "volume_id_internal.h"
22
Denis Vlasenkod25c33f2008-03-17 09:25:05 +000023
24/* Some detection routines do not set label or uuid anyway,
25 * so they are disabled. */
26
27/* Looks for partitions, we don't use it: */
28#define ENABLE_FEATURE_VOLUMEID_MAC 0
29/* #define ENABLE_FEATURE_VOLUMEID_MSDOS 0 - NB: this one
30 * was not properly added to probe table anyway - ??! */
31
32/* None of RAIDs have label or uuid, except LinuxRAID: */
33#define ENABLE_FEATURE_VOLUMEID_HIGHPOINTRAID 0
34#define ENABLE_FEATURE_VOLUMEID_ISWRAID 0
35#define ENABLE_FEATURE_VOLUMEID_LSIRAID 0
36#define ENABLE_FEATURE_VOLUMEID_LVM 0
37#define ENABLE_FEATURE_VOLUMEID_NVIDIARAID 0
38#define ENABLE_FEATURE_VOLUMEID_PROMISERAID 0
39#define ENABLE_FEATURE_VOLUMEID_SILICONRAID 0
40#define ENABLE_FEATURE_VOLUMEID_VIARAID 0
41
42/* These filesystems also have no label or uuid: */
43#define ENABLE_FEATURE_VOLUMEID_MINIX 0
44#define ENABLE_FEATURE_VOLUMEID_HPFS 0
45#define ENABLE_FEATURE_VOLUMEID_UFS 0
46
47
Denys Vlasenko89300962009-11-01 23:07:18 +010048typedef int FAST_FUNC (*raid_probe_fptr)(struct volume_id *id, /*uint64_t off,*/ uint64_t size);
49typedef int FAST_FUNC (*probe_fptr)(struct volume_id *id /*, uint64_t off*/);
Denis Vlasenkode7684a2008-02-18 21:08:49 +000050
51static const raid_probe_fptr raid1[] = {
52#if ENABLE_FEATURE_VOLUMEID_LINUXRAID
53 volume_id_probe_linux_raid,
54#endif
55#if ENABLE_FEATURE_VOLUMEID_ISWRAID
56 volume_id_probe_intel_software_raid,
57#endif
58#if ENABLE_FEATURE_VOLUMEID_LSIRAID
59 volume_id_probe_lsi_mega_raid,
60#endif
61#if ENABLE_FEATURE_VOLUMEID_VIARAID
62 volume_id_probe_via_raid,
63#endif
64#if ENABLE_FEATURE_VOLUMEID_SILICONRAID
65 volume_id_probe_silicon_medley_raid,
66#endif
67#if ENABLE_FEATURE_VOLUMEID_NVIDIARAID
68 volume_id_probe_nvidia_raid,
69#endif
70#if ENABLE_FEATURE_VOLUMEID_PROMISERAID
71 volume_id_probe_promise_fasttrack_raid,
72#endif
73#if ENABLE_FEATURE_VOLUMEID_HIGHPOINTRAID
74 volume_id_probe_highpoint_45x_raid,
75#endif
76};
77
78static const probe_fptr raid2[] = {
79#if ENABLE_FEATURE_VOLUMEID_LVM
80 volume_id_probe_lvm1,
81 volume_id_probe_lvm2,
82#endif
83#if ENABLE_FEATURE_VOLUMEID_HIGHPOINTRAID
84 volume_id_probe_highpoint_37x_raid,
85#endif
86#if ENABLE_FEATURE_VOLUMEID_LUKS
87 volume_id_probe_luks,
88#endif
89};
90
91/* signature in the first block, only small buffer needed */
92static const probe_fptr fs1[] = {
93#if ENABLE_FEATURE_VOLUMEID_FAT
94 volume_id_probe_vfat,
95#endif
S-G Berghe4b94512012-11-13 14:40:37 +010096#if ENABLE_FEATURE_VOLUMEID_EXFAT
97 volume_id_probe_exfat,
98#endif
Denis Vlasenkod25c33f2008-03-17 09:25:05 +000099#if ENABLE_FEATURE_VOLUMEID_MAC
100 volume_id_probe_mac_partition_map,
101#endif
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000102#if ENABLE_FEATURE_VOLUMEID_XFS
103 volume_id_probe_xfs,
104#endif
105};
106
107/* fill buffer with maximum */
108static const probe_fptr fs2[] = {
109#if ENABLE_FEATURE_VOLUMEID_LINUXSWAP
110 volume_id_probe_linux_swap,
111#endif
112#if ENABLE_FEATURE_VOLUMEID_EXT
113 volume_id_probe_ext,
114#endif
Vladimir Dronnikov662e8b72009-11-01 23:05:09 +0100115#if ENABLE_FEATURE_VOLUMEID_BTRFS
116 volume_id_probe_btrfs,
117#endif
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000118#if ENABLE_FEATURE_VOLUMEID_REISERFS
119 volume_id_probe_reiserfs,
120#endif
121#if ENABLE_FEATURE_VOLUMEID_JFS
122 volume_id_probe_jfs,
123#endif
124#if ENABLE_FEATURE_VOLUMEID_UDF
125 volume_id_probe_udf,
126#endif
127#if ENABLE_FEATURE_VOLUMEID_ISO9660
128 volume_id_probe_iso9660,
129#endif
130#if ENABLE_FEATURE_VOLUMEID_HFS
131 volume_id_probe_hfs_hfsplus,
132#endif
133#if ENABLE_FEATURE_VOLUMEID_UFS
134 volume_id_probe_ufs,
135#endif
Sven-Göran Berghc5a9fa22012-09-02 15:34:39 +0200136#if ENABLE_FEATURE_VOLUMEID_NILFS
137 volume_id_probe_nilfs,
138#endif
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000139#if ENABLE_FEATURE_VOLUMEID_NTFS
140 volume_id_probe_ntfs,
141#endif
142#if ENABLE_FEATURE_VOLUMEID_CRAMFS
143 volume_id_probe_cramfs,
144#endif
145#if ENABLE_FEATURE_VOLUMEID_ROMFS
146 volume_id_probe_romfs,
147#endif
148#if ENABLE_FEATURE_VOLUMEID_HPFS
149 volume_id_probe_hpfs,
150#endif
151#if ENABLE_FEATURE_VOLUMEID_SYSV
152 volume_id_probe_sysv,
153#endif
154#if ENABLE_FEATURE_VOLUMEID_MINIX
155 volume_id_probe_minix,
156#endif
157#if ENABLE_FEATURE_VOLUMEID_OCFS2
158 volume_id_probe_ocfs2,
159#endif
160};
161
Denys Vlasenko89300962009-11-01 23:07:18 +0100162int FAST_FUNC volume_id_probe_all(struct volume_id *id, /*uint64_t off,*/ uint64_t size)
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000163{
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000164 unsigned i;
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000165
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000166 /* probe for raid first, cause fs probes may be successful on raid members */
167 if (size) {
Denis Vlasenko28ea4292009-02-15 05:51:19 +0000168 for (i = 0; i < ARRAY_SIZE(raid1); i++) {
169 if (raid1[i](id, /*off,*/ size) == 0)
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000170 goto ret;
Denis Vlasenko28ea4292009-02-15 05:51:19 +0000171 if (id->error)
172 goto ret;
173 }
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000174 }
175
Denis Vlasenko28ea4292009-02-15 05:51:19 +0000176 for (i = 0; i < ARRAY_SIZE(raid2); i++) {
177 if (raid2[i](id /*,off*/) == 0)
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000178 goto ret;
Denis Vlasenko28ea4292009-02-15 05:51:19 +0000179 if (id->error)
180 goto ret;
181 }
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000182
183 /* signature in the first block, only small buffer needed */
Denis Vlasenko28ea4292009-02-15 05:51:19 +0000184 for (i = 0; i < ARRAY_SIZE(fs1); i++) {
185 if (fs1[i](id /*,off*/) == 0)
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000186 goto ret;
Denis Vlasenko28ea4292009-02-15 05:51:19 +0000187 if (id->error)
188 goto ret;
189 }
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000190
191 /* fill buffer with maximum */
192 volume_id_get_buffer(id, 0, SB_BUFFER_SIZE);
193
Denis Vlasenko28ea4292009-02-15 05:51:19 +0000194 for (i = 0; i < ARRAY_SIZE(fs2); i++) {
195 if (fs2[i](id /*,off*/) == 0)
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000196 goto ret;
Denis Vlasenko28ea4292009-02-15 05:51:19 +0000197 if (id->error)
198 goto ret;
199 }
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000200
201 ret:
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000202 volume_id_free_buffer(id);
Denis Vlasenko28ea4292009-02-15 05:51:19 +0000203 return (- id->error); /* 0 or -1 */
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000204}
205
206/* open volume by device node */
Denys Vlasenko89300962009-11-01 23:07:18 +0100207struct volume_id* FAST_FUNC volume_id_open_node(int fd)
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000208{
209 struct volume_id *id;
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000210
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000211 id = xzalloc(sizeof(struct volume_id));
212 id->fd = fd;
213 ///* close fd on device close */
214 //id->fd_close = 1;
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000215 return id;
216}
217
218#ifdef UNUSED
219/* open volume by major/minor */
Denys Vlasenko89300962009-11-01 23:07:18 +0100220struct volume_id* FAST_FUNC volume_id_open_dev_t(dev_t devt)
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000221{
222 struct volume_id *id;
223 char *tmp_node[VOLUME_ID_PATH_MAX];
224
225 tmp_node = xasprintf("/dev/.volume_id-%u-%u-%u",
226 (unsigned)getpid(), (unsigned)major(devt), (unsigned)minor(devt));
227
228 /* create temporary node to open block device */
229 unlink(tmp_node);
230 if (mknod(tmp_node, (S_IFBLK | 0600), devt) != 0)
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100231 bb_perror_msg_and_die("can't mknod(%s)", tmp_node);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000232
233 id = volume_id_open_node(tmp_node);
234 unlink(tmp_node);
235 free(tmp_node);
236 return id;
237}
238#endif
239
Denys Vlasenko89300962009-11-01 23:07:18 +0100240void FAST_FUNC free_volume_id(struct volume_id *id)
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000241{
242 if (id == NULL)
243 return;
244
245 //if (id->fd_close != 0) - always true
246 close(id->fd);
247 volume_id_free_buffer(id);
Denis Vlasenkoc5b73722008-03-17 09:21:26 +0000248#ifdef UNUSED_PARTITION_CODE
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000249 free(id->partitions);
Denis Vlasenkoc5b73722008-03-17 09:21:26 +0000250#endif
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000251 free(id);
252}