chiark / gitweb /
switch tools and volume_id from LGPL to GPLv2
[elogind.git] / extras / volume_id / volume_id / isw_raid.c
1 /*
2  * volume_id - reads filesystem label and uuid
3  *
4  * Copyright (C) 2005 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 "isw_raid.h"
30
31 struct isw_meta {
32         uint8_t         sig[32];
33         uint32_t        check_sum;
34         uint32_t        mpb_size;
35         uint32_t        family_num;
36         uint32_t        generation_num;
37 } __attribute__((packed));
38
39 #define ISW_SIGNATURE           "Intel Raid ISM Cfg Sig. "
40
41
42 int volume_id_probe_intel_software_raid(struct volume_id *id, uint64_t off, uint64_t size)
43 {
44         const uint8_t *buf;
45         uint64_t meta_off;
46         struct isw_meta *isw;
47
48         dbg("probing at offset 0x%llx, size 0x%llx",
49             (unsigned long long) off, (unsigned long long) size);
50
51         if (size < 0x10000)
52                 return -1;
53
54         meta_off = ((size / 0x200)-2) * 0x200;
55         buf = volume_id_get_buffer(id, off + meta_off, 0x200);
56         if (buf == NULL)
57                 return -1;
58
59         isw = (struct isw_meta *) buf;
60         if (memcmp(isw->sig, ISW_SIGNATURE, sizeof(ISW_SIGNATURE)-1) != 0)
61                 return -1;
62
63         volume_id_set_usage(id, VOLUME_ID_RAID);
64         memcpy(id->type_version, &isw->sig[sizeof(ISW_SIGNATURE)-1], 6);
65         id->type = "isw_raid_member";
66
67         return 0;
68 }