chiark / gitweb /
make: do not delete autotools generated file with distclean
[elogind.git] / extras / volume_id / lib / xfs.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 struct xfs_super_block {
35         uint8_t         magic[4];
36         uint32_t        blocksize;
37         uint64_t        dblocks;
38         uint64_t        rblocks;
39         uint32_t        dummy1[2];
40         uint8_t         uuid[16];
41         uint32_t        dummy2[15];
42         uint8_t         fname[12];
43         uint32_t        dummy3[2];
44         uint64_t        icount;
45         uint64_t        ifree;
46         uint64_t        fdblocks;
47 } PACKED;
48
49 int volume_id_probe_xfs(struct volume_id *id, uint64_t off, uint64_t size)
50 {
51         struct xfs_super_block *xs;
52
53         info("probing at offset 0x%" PRIx64 "\n", off);
54
55         xs = (struct xfs_super_block *) volume_id_get_buffer(id, off, 0x200);
56         if (xs == NULL)
57                 return -1;
58
59         if (memcmp(xs->magic, "XFSB", 4) != 0)
60                 return -1;
61
62         volume_id_set_label_raw(id, xs->fname, 12);
63         volume_id_set_label_string(id, xs->fname, 12);
64         volume_id_set_uuid(id, xs->uuid, 0, UUID_DCE);
65
66         volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
67         id->type = "xfs";
68
69         return 0;
70 }