chiark / gitweb /
volume_id: add Veritas fs
[elogind.git] / extras / volume_id / volume_id / lvm.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 #include "lvm.h"
30
31 struct lvm1_super_block {
32         uint8_t id[2];
33 } __attribute__((packed));
34
35 struct lvm2_super_block {
36         uint8_t         id[8];
37         uint64_t        sector_xl;
38         uint32_t        crc_xl;
39         uint32_t        offset_xl;
40         uint8_t         type[8];
41 } __attribute__((packed));
42
43 #define LVM1_SB_OFF                     0x400
44 #define LVM1_MAGIC                      "HM"
45
46 int volume_id_probe_lvm1(struct volume_id *id, uint64_t off)
47 {
48         const uint8_t *buf;
49         struct lvm1_super_block *lvm;
50
51         dbg("probing at offset 0x%llx", (unsigned long long) off);
52
53         buf = volume_id_get_buffer(id, off + LVM1_SB_OFF, 0x800);
54         if (buf == NULL)
55                 return -1;
56
57         lvm = (struct lvm1_super_block *) buf;
58
59         if (memcmp(lvm->id, LVM1_MAGIC, 2) != 0)
60                 return -1;
61
62         volume_id_set_usage(id, VOLUME_ID_RAID);
63         id->type = "LVM1_member";
64
65         return 0;
66 }
67
68 #define LVM2_LABEL_ID                   "LABELONE"
69 #define LVM2LABEL_SCAN_SECTORS          4
70
71 int volume_id_probe_lvm2(struct volume_id *id, uint64_t off)
72 {
73         const uint8_t *buf;
74         unsigned int soff;
75         struct lvm2_super_block *lvm;
76
77         dbg("probing at offset 0x%llx", (unsigned long long) off);
78
79         buf = volume_id_get_buffer(id, off, LVM2LABEL_SCAN_SECTORS * 0x200);
80         if (buf == NULL)
81                 return -1;
82
83
84         for (soff = 0; soff < LVM2LABEL_SCAN_SECTORS * 0x200; soff += 0x200) {
85                 lvm = (struct lvm2_super_block *) &buf[soff];
86
87                 if (memcmp(lvm->id, LVM2_LABEL_ID, 8) == 0)
88                         goto found;
89         }
90
91         return -1;
92
93 found:
94         memcpy(id->type_version, lvm->type, 8);
95         volume_id_set_usage(id, VOLUME_ID_RAID);
96         id->type = "LVM2_member";
97
98         return 0;
99 }