chiark / gitweb /
volume_id: provide libvolume_id.a file
[elogind.git] / extras / volume_id / libvolume_id / romfs.c
1 /*
2  * volume_id - reads filesystem label and uuid
3  *
4  * Copyright (C) 2004 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
26 #include "volume_id.h"
27 #include "logging.h"
28 #include "util.h"
29
30 struct romfs_super {
31         uint8_t magic[8];
32         uint32_t size;
33         uint32_t checksum;
34         uint8_t name[0];
35 } __attribute__((__packed__));
36
37 int volume_id_probe_romfs(struct volume_id *id, uint64_t off)
38 {
39         struct romfs_super *rfs;
40
41         dbg("probing at offset 0x%llx", (unsigned long long) off);
42
43         rfs = (struct romfs_super *) volume_id_get_buffer(id, off, 0x200);
44         if (rfs == NULL)
45                 return -1;
46
47         if (memcmp(rfs->magic, "-rom1fs-", 4) == 0) {
48                 size_t len = strlen((char *)rfs->name);
49
50                 if (len) {
51                         volume_id_set_label_raw(id, rfs->name, len);
52                         volume_id_set_label_string(id, rfs->name, len);
53                 }
54
55                 volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
56                 id->type = "romfs";
57                 return 0;
58         }
59
60         return -1;
61 }