chiark / gitweb /
volume_id: rename subdirectory
[elogind.git] / extras / volume_id / lib / linux_raid.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 mdp_super_block {
30         uint32_t        md_magic;
31         uint32_t        major_version;
32         uint32_t        minor_version;
33         uint32_t        patch_version;
34         uint32_t        gvalid_words;
35         uint32_t        set_uuid0;
36         uint32_t        ctime;
37         uint32_t        level;
38         uint32_t        size;
39         uint32_t        nr_disks;
40         uint32_t        raid_disks;
41         uint32_t        md_minor;
42         uint32_t        not_persistent;
43         uint32_t        set_uuid1;
44         uint32_t        set_uuid2;
45         uint32_t        set_uuid3;
46 } PACKED *mdp;
47
48 #define MD_RESERVED_BYTES               0x10000
49 #define MD_MAGIC                        0xa92b4efc
50
51 int volume_id_probe_linux_raid(struct volume_id *id, uint64_t off, uint64_t size)
52 {
53         const uint8_t *buf;
54         uint64_t sboff;
55         uint8_t uuid[16];
56
57         dbg("probing at offset 0x%llx, size 0x%llx",
58             (unsigned long long) off, (unsigned long long) size);
59
60         if (size < 0x10000)
61                 return -1;
62
63         sboff = (size & ~(MD_RESERVED_BYTES - 1)) - MD_RESERVED_BYTES;
64         buf = volume_id_get_buffer(id, off + sboff, 0x800);
65         if (buf == NULL)
66                 return -1;
67
68         mdp = (struct mdp_super_block *) buf;
69
70         if (le32_to_cpu(mdp->md_magic) != MD_MAGIC)
71                 return -1;
72
73         memcpy(uuid, &mdp->set_uuid0, 4);
74         memcpy(&uuid[4], &mdp->set_uuid1, 12);
75         volume_id_set_uuid(id, uuid, UUID_DCE);
76
77         snprintf(id->type_version, sizeof(id->type_version)-1, "%u.%u.%u",
78                  le32_to_cpu(mdp->major_version),
79                  le32_to_cpu(mdp->minor_version),
80                  le32_to_cpu(mdp->patch_version));
81
82         dbg("found raid signature");
83         volume_id_set_usage(id, VOLUME_ID_RAID);
84         id->type = "linux_raid_member";
85
86         return 0;
87 }