chiark / gitweb /
100ebdec22fd06b5f78bbe117cdcc67bfbd66d18
[elogind.git] / extras / volume_id / lib / cramfs.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 "libvolume_id.h"
27 #include "util.h"
28
29 struct cramfs_super {
30         uint8_t         magic[4];
31         uint32_t        size;
32         uint32_t        flags;
33         uint32_t        future;
34         uint8_t         signature[16];
35         struct cramfs_info {
36                 uint32_t        crc;
37                 uint32_t        edition;
38                 uint32_t        blocks;
39                 uint32_t        files;
40         } PACKED info;
41         uint8_t         name[16];
42 } PACKED;
43
44 int volume_id_probe_cramfs(struct volume_id *id, uint64_t off)
45 {
46         struct cramfs_super *cs;
47
48         info("probing at offset 0x%llx", (unsigned long long) off);
49
50         cs = (struct cramfs_super *) volume_id_get_buffer(id, off, 0x200);
51         if (cs == NULL)
52                 return -1;
53
54         if (memcmp(cs->magic, "\x45\x3d\xcd\x28", 4) == 0 || memcmp(cs->magic, "\x28\xcd\x3d\x45", 4) == 0) {
55                 volume_id_set_label_raw(id, cs->name, 16);
56                 volume_id_set_label_string(id, cs->name, 16);
57
58                 volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
59                 id->type = "cramfs";
60                 return 0;
61         }
62
63         return -1;
64 }