chiark / gitweb /
volume_id: set reiser instead of reiserfs for filesystem type
[elogind.git] / extras / volume_id / volume_id / reiserfs.c
1 /*
2  * volume_id - reads filesystem label and uuid
3  *
4  * Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
5  * Copyright (C) 2005 Tobias Klauser <tklauser@access.unizh.ch>
6  *
7  *      This library is free software; you can redistribute it and/or
8  *      modify it under the terms of the GNU Lesser General Public
9  *      License as published by the Free Software Foundation; either
10  *      version 2.1 of the License, or (at your option) any later version.
11  *
12  *      This library is distributed in the hope that it will be useful,
13  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  *      Lesser General Public License for more details.
16  *
17  *      You should have received a copy of the GNU Lesser General Public
18  *      License along with this library; if not, write to the Free Software
19  *      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  */
21
22 #ifndef _GNU_SOURCE
23 #define _GNU_SOURCE 1
24 #endif
25
26 #ifdef HAVE_CONFIG_H
27 #  include <config.h>
28 #endif
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <unistd.h>
33 #include <string.h>
34 #include <errno.h>
35 #include <ctype.h>
36 #include <asm/types.h>
37
38 #include "volume_id.h"
39 #include "logging.h"
40 #include "util.h"
41 #include "reiserfs.h"
42
43 struct reiserfs_super_block {
44         uint32_t        blocks_count;
45         uint32_t        free_blocks;
46         uint32_t        root_block;
47         uint32_t        journal_block;
48         uint32_t        journal_dev;
49         uint32_t        orig_journal_size;
50         uint32_t        dummy2[5];
51         uint16_t        blocksize;
52         uint16_t        dummy3[3];
53         uint8_t         magic[12];
54         uint32_t        dummy4[5];
55         uint8_t         uuid[16];
56         uint8_t         label[16];
57 } __attribute__((__packed__));
58
59 struct reiser4_super_block {
60         uint8_t         magic[16];
61         uint16_t        dummy[2];
62         uint8_t         uuid[16];
63         uint8_t         label[16];
64         uint64_t        dummy2;
65 } __attribute__((__packed__));
66
67 #define REISERFS1_SUPERBLOCK_OFFSET             0x2000
68 #define REISERFS_SUPERBLOCK_OFFSET              0x10000
69
70 int volume_id_probe_reiserfs(struct volume_id *id, uint64_t off)
71 {
72         struct reiserfs_super_block *rs;
73         struct reiser4_super_block *rs4;
74         uint8_t  *buf;
75
76         dbg("probing at offset 0x%llx", (unsigned long long) off);
77
78         buf = volume_id_get_buffer(id, off + REISERFS_SUPERBLOCK_OFFSET, 0x200);
79         if (buf == NULL)
80                 return -1;
81
82         rs = (struct reiserfs_super_block *) buf;;
83         if (memcmp(rs->magic, "ReIsErFs", 8) == 0) {
84                 strcpy(id->type_version, "3.5");
85                 id->type = "reiserfs";
86                 goto found;
87         }
88         if (memcmp(rs->magic, "ReIsEr2Fs", 9) == 0) {
89                 strcpy(id->type_version, "3.6");
90                 id->type = "reiserfs";
91                 goto found_label;
92         }
93         if (memcmp(rs->magic, "ReIsEr3Fs", 9) == 0) {
94                 strcpy(id->type_version, "JR");
95                 id->type = "reiserfs";
96                 goto found_label;
97         }
98
99         rs4 = (struct reiser4_super_block *) buf;
100         if (memcmp(rs4->magic, "ReIsEr4", 7) == 0) {
101                 strcpy(id->type_version, "4");
102                 volume_id_set_label_raw(id, rs4->label, 16);
103                 volume_id_set_label_string(id, rs4->label, 16);
104                 volume_id_set_uuid(id, rs4->uuid, UUID_DCE);
105                 id->type = "reiser4";
106                 goto found;
107         }
108
109         buf = volume_id_get_buffer(id, off + REISERFS1_SUPERBLOCK_OFFSET, 0x200);
110         if (buf == NULL)
111                 return -1;
112
113         rs = (struct reiserfs_super_block *) buf;
114         if (memcmp(rs->magic, "ReIsErFs", 8) == 0) {
115                 strcpy(id->type_version, "3.5");
116                 id->type = "reiserfs";
117                 goto found;
118         }
119
120         return -1;
121
122 found_label:
123         volume_id_set_label_raw(id, rs->label, 16);
124         volume_id_set_label_string(id, rs->label, 16);
125         volume_id_set_uuid(id, rs->uuid, UUID_DCE);
126
127 found:
128         volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
129
130         return 0;
131 }