chiark / gitweb /
delete vol_id and require util-linux-ng's blkid
[elogind.git] / extras / volume_id / lib / vxfs.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
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program 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
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef _GNU_SOURCE
21 #define _GNU_SOURCE 1
22 #endif
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <unistd.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <ctype.h>
30
31 #include "libvolume_id.h"
32 #include "libvolume_id-private.h"
33
34 #define VXFS_SUPER_MAGIC        0xa501FCF5
35
36 struct vxfs_super {
37         uint32_t                vs_magic;
38         int32_t                 vs_version;
39 } PACKED;
40
41 int volume_id_probe_vxfs(struct volume_id *id, uint64_t off, uint64_t size)
42 {
43         struct vxfs_super *vxs;
44
45         info("probing at offset 0x%" PRIx64 "\n", off);
46
47         vxs = (struct vxfs_super *) volume_id_get_buffer(id, off + 0x200, 0x200);
48         if (vxs == NULL)
49                 return -1;
50
51         if (vxs->vs_magic == cpu_to_le32(VXFS_SUPER_MAGIC)) {
52                 snprintf(id->type_version, sizeof(id->type_version)-1, "%u", (unsigned int) vxs->vs_version);
53                 volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
54                 id->type = "vxfs";
55                 return 0;
56         }
57
58         return -1;
59 }