chiark / gitweb /
volume_id: remove unnecessary global variable
[elogind.git] / extras / volume_id / lib / volume_id.c
1 /*
2  * volume_id - reads volume label and uuid
3  *
4  * Copyright (C) 2005-2007 Kay Sievers <kay.sievers@vrfy.org>
5  *
6  *      This program is free software; you can redistribute it and/or modify it
7  *      under the terms of the GNU General Public License as published by the
8  *      Free Software Foundation version 2 of the License.
9  */
10
11 #ifndef _GNU_SOURCE
12 #define _GNU_SOURCE 1
13 #endif
14
15 #ifdef HAVE_CONFIG_H
16 #  include <config.h>
17 #endif
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <string.h>
23 #include <errno.h>
24 #include <ctype.h>
25 #include <fcntl.h>
26 #include <sys/stat.h>
27
28 #include "libvolume_id.h"
29 #include "util.h"
30
31 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
32
33 struct prober {
34         volume_id_probe_fn_t prober;
35         const char *name[4];
36 };
37
38 static const struct prober prober_raid[] = {
39         { volume_id_probe_linux_raid, { "linux_raid", } },
40         { volume_id_probe_ddf_raid, { "ddf_raid", } },
41         { volume_id_probe_intel_software_raid, { "isw_raid", } },
42         { volume_id_probe_lsi_mega_raid, { "lsi_mega_raid", } },
43         { volume_id_probe_via_raid, { "via_raid", } },
44         { volume_id_probe_silicon_medley_raid, { "silicon_medley_raid", } },
45         { volume_id_probe_nvidia_raid, { "nvidia_raid", } },
46         { volume_id_probe_promise_fasttrack_raid, { "promise_fasttrack_raid", } },
47         { volume_id_probe_highpoint_45x_raid, { "highpoint_raid", } },
48         { volume_id_probe_adaptec_raid, { "adaptec_raid", } },
49         { volume_id_probe_jmicron_raid, { "jmicron_raid", } },
50         { volume_id_probe_lvm1, { "lvm1", } },
51         { volume_id_probe_lvm2, { "lvm2", } },
52         { volume_id_probe_highpoint_37x_raid, { "highpoint_raid", } },
53 };
54
55 static const struct prober prober_filesystem[] = {
56         { volume_id_probe_vfat, { "vfat", } },
57         { volume_id_probe_linux_swap, { "swap", } },
58         { volume_id_probe_luks, { "luks", } },
59         { volume_id_probe_xfs, { "xfs", } },
60         { volume_id_probe_ext, { "ext2", "ext3", "jbd", } },
61         { volume_id_probe_reiserfs, { "reiserfs", "reiser4", } },
62         { volume_id_probe_jfs, { "jfs", } },
63         { volume_id_probe_udf, { "udf", } },
64         { volume_id_probe_iso9660, { "iso9660", } },
65         { volume_id_probe_hfs_hfsplus, { "hfs", "hfsplus", } },
66         { volume_id_probe_ufs, { "ufs", } },
67         { volume_id_probe_ntfs, { "ntfs", } },
68         { volume_id_probe_cramfs, { "cramfs", } },
69         { volume_id_probe_romfs, { "romfs", } },
70         { volume_id_probe_hpfs, { "hpfs", } },
71         { volume_id_probe_sysv, { "sysv", "xenix", } },
72         { volume_id_probe_minix, { "minix",  } },
73         { volume_id_probe_ocfs1, { "ocfs1", } },
74         { volume_id_probe_ocfs2, { "ocfs2", } },
75         { volume_id_probe_vxfs, { "vxfs", } },
76         { volume_id_probe_squashfs, { "squashfs", } },
77         { volume_id_probe_netware, { "netware", } },
78 };
79
80 /* the user can overwrite this log function */
81 static void default_log(int priority, const char *file, int line, const char *format, ...)
82 {
83         return;
84 }
85
86 volume_id_log_fn_t volume_id_log_fn = default_log;
87
88 /**
89  * volume_id_get_prober_by_type:
90  * @type: Type string.
91  *
92  * Lookup the probing function for a specific type.
93  *
94  * Returns: The probing function for the given type, #NULL otherwise.
95  **/
96 const volume_id_probe_fn_t *volume_id_get_prober_by_type(const char *type)
97 {
98         unsigned int p, n;
99
100         if (type == NULL)
101                 return NULL;
102
103         for (p = 0; p < ARRAY_SIZE(prober_raid); p++)
104                 for (n = 0; prober_raid[p].name[n] !=  NULL; n++)
105                         if (strcmp(type, prober_raid[p].name[n]) == 0)
106                                 return &prober_raid[p].prober;
107         for (p = 0; p < ARRAY_SIZE(prober_filesystem); p++)
108                 for (n = 0; prober_filesystem[p].name[n] !=  NULL; n++)
109                         if (strcmp(type, prober_filesystem[p].name[n]) == 0)
110                                 return &prober_filesystem[p].prober;
111         return NULL;
112 }
113
114 /**
115  * volume_id_get_label:
116  * @id: Probing context.
117  * @label: Label string. Must not be freed by the caller.
118  *
119  * Get the label string after a successful probe. Unicode
120  * is translated to UTF-8.
121  *
122  * Returns: 1 if the value was set, 0 otherwise.
123  **/
124 int volume_id_get_label(struct volume_id *id, const char **label)
125 {
126         if (id == NULL)
127                 return 0;
128         if (label == NULL)
129                 return 0;
130         if (id->usage_id == VOLUME_ID_UNUSED)
131                 return 0;
132
133         *label = id->label;
134         return 1;
135 }
136
137 /**
138  * volume_id_get_label_raw:
139  * @id: Probing context.
140  * @label: Label byte array. Must not be freed by the caller.
141  * @len: Length of raw label byte array.
142  *
143  * Get the raw label byte array after a successful probe. It may
144  * contain undecoded multibyte character streams.
145  *
146  * Returns: 1 if the value was set, 0 otherwise.
147  **/
148 int volume_id_get_label_raw(struct volume_id *id, const uint8_t **label, size_t *len)
149 {
150         if (id == NULL)
151                 return 0;
152         if (label == NULL)
153                 return 0;
154         if (len == NULL)
155                 return 0;
156         if (id->usage_id == VOLUME_ID_UNUSED)
157                 return 0;
158
159         *label = id->label_raw;
160         *len = id->label_raw_len;
161         return 1;
162 }
163
164 /**
165  * volume_id_get_uuid:
166  * @id: Probing context.
167  * @uuid: UUID string. Must not be freed by the caller.
168  *
169  * Get the raw UUID string after a successful probe.
170  *
171  * Returns: 1 if the value was set, 0 otherwise.
172  **/
173 int volume_id_get_uuid(struct volume_id *id, const char **uuid)
174 {
175         if (id == NULL)
176                 return 0;
177         if (uuid == NULL)
178                 return 0;
179         if (id->usage_id == VOLUME_ID_UNUSED)
180                 return 0;
181
182         *uuid = id->uuid;
183         return 1;
184 }
185
186 /**
187  * volume_id_get_uuid_raw:
188  * @id: Probing context.
189  * @uuid: UUID byte array. Must not be freed by the caller.
190  * @len: Length of raw UUID byte array.
191  *
192  * Get the raw UUID byte array after a successful probe. It may
193  * contain unconverted endianes values.
194  *
195  * Returns: 1 if the value was set, 0 otherwise.
196  **/
197 int volume_id_get_uuid_raw(struct volume_id *id, const uint8_t **uuid, size_t *len)
198 {
199         if (id == NULL)
200                 return 0;
201         if (uuid == NULL)
202                 return 0;
203         if (len == NULL)
204                 return 0;
205         if (id->usage_id == VOLUME_ID_UNUSED)
206                 return 0;
207
208         *uuid = id->uuid_raw;
209         *len = id->uuid_raw_len;
210         return 1;
211 }
212
213 /**
214  * volume_id_get_usage:
215  * @id: Probing context.
216  * @usage: Usage string. Must not be freed by the caller.
217  *
218  * Get the usage string after a successful probe.
219  *
220  * Returns: 1 if the value was set, 0 otherwise.
221  **/
222 int volume_id_get_usage(struct volume_id *id, const char **usage)
223 {
224         if (id == NULL)
225                 return 0;
226         if (usage == NULL)
227                 return 0;
228         if (id->usage_id == VOLUME_ID_UNUSED)
229                 return 0;
230
231         *usage = id->usage;
232         return 1;
233 }
234
235 /**
236  * volume_id_get_type:
237  * @id: Probing context
238  * @type: Type string. Must not be freed by the caller.
239  *
240  * Get the type string after a successful probe.
241  *
242  * Returns: 1 if the value was set, 0 otherwise.
243  **/
244 int volume_id_get_type(struct volume_id *id, const char **type)
245 {
246         if (id == NULL)
247                 return 0;
248         if (type == NULL)
249                 return 0;
250         if (id->usage_id == VOLUME_ID_UNUSED)
251                 return 0;
252
253         *type = id->type;
254         return 1;
255 }
256
257 /**
258  * volume_id_get_type_version:
259  * @id: Probing context.
260  * @type_version: Type version string. Must not be freed by the caller.
261  *
262  * Get the Type version string after a successful probe.
263  *
264  * Returns: 1 if the value was set, 0 otherwise.
265  **/
266 int volume_id_get_type_version(struct volume_id *id, const char **type_version)
267 {
268         if (id == NULL)
269                 return 0;
270         if (type_version == NULL)
271                 return 0;
272         if (id->usage_id == VOLUME_ID_UNUSED)
273                 return 0;
274
275         *type_version = id->type_version;
276         return 1;
277 }
278
279 static int needs_encoding(const char c)
280 {
281         if ((c >= '0' && c <= '9') ||
282             (c >= 'A' && c <= 'Z') ||
283             (c >= 'a' && c <= 'z') ||
284             strchr(ALLOWED_CHARS, c))
285                 return 0;
286         return 1;
287 }
288
289 /**
290  * volume_id_encode_string:
291  * @str: Input string to be encoded.
292  * @str_enc: Target string to store the encoded input.
293  * @len: Location to store the encoded string. The target string,
294  * which may be four times as long as the input string.
295  *
296  * Encode all potentially unsafe characters of a string to the
297  * corresponding hex value prefixed by '\x'.
298  *
299  * Returns: 1 if the entire string was copied, 0 otherwise.
300  **/
301 int volume_id_encode_string(const char *str, char *str_enc, size_t len)
302 {
303         size_t i, j;
304
305         if (str == NULL || str_enc == NULL || len == 0)
306                 return 0;
307
308         str_enc[0] = '\0';
309         for (i = 0, j = 0; str[i] != '\0'; i++) {
310                 int seqlen;
311
312                 seqlen = volume_id_utf8_encoded_valid_unichar(&str[i]);
313                 if (seqlen > 1) {
314                         memcpy(&str_enc[j], &str[i], seqlen);
315                         j += seqlen;
316                         i += (seqlen-1);
317                 } else if (str[i] == '\\' || needs_encoding(str[i])) {
318                         sprintf(&str_enc[j], "\\x%02x", (unsigned char) str[i]);
319                         j += 4;
320                 } else {
321                         str_enc[j] = str[i];
322                         j++;
323                 }
324                 if (j+3 >= len)
325                         goto err;
326         }
327         str_enc[j] = '\0';
328         return 1;
329 err:
330         return 0;
331 }
332
333 /* run only once into a timeout for unreadable devices */
334 static int device_is_readable(struct volume_id *id, uint64_t off)
335 {
336         if (volume_id_get_buffer(id, off, 0x200) != NULL)
337                 return 1;
338         return 0;
339 }
340
341 /**
342  * volume_id_probe_raid:
343  * @id: Probing context.
344  * @off: Probing offset relative to the start of the device.
345  * @size: Total size of the device.
346  *
347  * Probe device for all known raid signatures.
348  *
349  * Returns: 0 on successful probe, otherwise negative value.
350  **/
351 int volume_id_probe_raid(struct volume_id *id, uint64_t off, uint64_t size)
352 {
353         unsigned int i;
354
355         if (id == NULL)
356                 return -EINVAL;
357
358         if (!device_is_readable(id, off))
359                 return -1;
360
361         info("probing at offset 0x%llx, size 0x%llx\n",
362             (unsigned long long) off, (unsigned long long) size);
363
364         for (i = 0; i < ARRAY_SIZE(prober_raid); i++)
365                 if (prober_raid[i].prober(id, off, size) == 0)
366                         goto found;
367         return -1;
368
369 found:
370         /* If recognized, we free the allocated buffers */
371         volume_id_free_buffer(id);
372         return 0;
373 }
374
375 /**
376  * volume_id_probe_filesystem:
377  * @id: Probing context.
378  * @off: Probing offset relative to the start of the device.
379  * @size: Total size of the device.
380  *
381  * Probe device for all known filesystem signatures.
382  *
383  * Returns: 0 on successful probe, otherwise negative value.
384  **/
385 int volume_id_probe_filesystem(struct volume_id *id, uint64_t off, uint64_t size)
386 {
387         unsigned int i;
388
389         if (id == NULL)
390                 return -EINVAL;
391
392         if (!device_is_readable(id, off))
393                 return -1;
394
395         info("probing at offset 0x%llx, size 0x%llx\n",
396             (unsigned long long) off, (unsigned long long) size);
397
398         for (i = 0; i < ARRAY_SIZE(prober_filesystem); i++)
399                 if (prober_filesystem[i].prober(id, off, size) == 0)
400                         goto found;
401         return -1;
402
403 found:
404         /* If recognized, we free the allocated buffers */
405         volume_id_free_buffer(id);
406         return 0;
407 }
408
409 /**
410  * volume_id_probe_all:
411  * @id: Probing context.
412  * @off: Probing offset relative to the start of the device.
413  * @size: Total size of the device.
414  *
415  * Probe device for all known raid and filesystem signatures.
416  *
417  * Returns: 0 on successful probe, otherwise negative value.
418  **/
419 int volume_id_probe_all(struct volume_id *id, uint64_t off, uint64_t size)
420 {
421         if (id == NULL)
422                 return -EINVAL;
423
424         if (!device_is_readable(id, off))
425                 return -1;
426
427         /* probe for raid first, because fs probes may be successful on raid members */
428         if (volume_id_probe_raid(id, off, size) == 0)
429                 return 0;
430
431         if (volume_id_probe_filesystem(id, off, size) == 0)
432                 return 0;
433
434         return -1;
435 }
436
437 /**
438  * volume_id_probe_raid:
439  * @all_probers_fn: prober function to called for all known probing routines.
440  * @id: Context passed to prober function.
441  * @off: Offset value passed to prober function.
442  * @size: Size value passed to prober function.
443  * @data: Arbitrary data passed to the prober function.
444  *
445  * Run a custom function for all known probing routines.
446  **/
447 void volume_id_all_probers(all_probers_fn_t all_probers_fn,
448                            struct volume_id *id, uint64_t off, uint64_t size,
449                            void *data)
450 {
451         unsigned int i;
452
453         if (all_probers_fn == NULL)
454                 return;
455
456         for (i = 0; i < ARRAY_SIZE(prober_raid); i++)
457                 if (all_probers_fn(prober_raid[i].prober, id, off, size, data) != 0)
458                         goto out;
459         for (i = 0; i < ARRAY_SIZE(prober_filesystem); i++)
460                 if (all_probers_fn(prober_filesystem[i].prober, id, off, size, data) != 0)
461                         goto out;
462 out:
463         return;
464 }
465
466 /**
467  * volume_id_open_fd:
468  * @id: Probing context.
469  * @fd: Open file descriptor of device to read from.
470  *
471  * Create the context for probing.
472  *
473  * Returns: Probing context, or #NULL on failure.
474  **/
475 struct volume_id *volume_id_open_fd(int fd)
476 {
477         struct volume_id *id;
478
479         id = malloc(sizeof(struct volume_id));
480         if (id == NULL)
481                 return NULL;
482         memset(id, 0x00, sizeof(struct volume_id));
483
484         id->fd = fd;
485
486         return id;
487 }
488
489 struct volume_id *volume_id_open_node(const char *path)
490 {
491         struct volume_id *id;
492         int fd;
493
494         fd = open(path, O_RDONLY);
495         if (fd < 0) {
496                 dbg("unable to open '%s'\n", path);
497                 return NULL;
498         }
499
500         id = volume_id_open_fd(fd);
501         if (id == NULL)
502                 return NULL;
503
504         /* close fd on device close */
505         id->fd_close = 1;
506
507         return id;
508 }
509
510 /**
511  * volume_id_close:
512  * @id: Probing context.
513  *
514  * Release probing context and free all associated data.
515  */
516 void volume_id_close(struct volume_id *id)
517 {
518         if (id == NULL)
519                 return;
520
521         if (id->fd_close != 0)
522                 close(id->fd);
523
524         volume_id_free_buffer(id);
525
526         free(id);
527 }