chiark / gitweb /
forgot the ChangeLog for 074
[elogind.git] / extras / volume_id / volume_id / highpoint.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 "highpoint.h"
30
31 struct hpt37x_meta {
32         uint8_t         filler1[32];
33         uint32_t        magic;
34 } __attribute__((packed));
35
36 struct hpt45x_meta {
37         uint32_t        magic;
38 } __attribute__((packed));
39
40 #define HPT37X_CONFIG_OFF               0x1200
41 #define HPT37X_MAGIC_OK                 0x5a7816f0
42 #define HPT37X_MAGIC_BAD                0x5a7816fd
43
44 #define HPT45X_MAGIC_OK                 0x5a7816f3
45 #define HPT45X_MAGIC_BAD                0x5a7816fd
46
47
48 int volume_id_probe_highpoint_37x_raid(struct volume_id *id, uint64_t off)
49 {
50         const uint8_t *buf;
51         struct hpt37x_meta *hpt;
52         uint32_t magic;
53
54         dbg("probing at offset 0x%llx", (unsigned long long) off);
55
56         buf = volume_id_get_buffer(id, off + HPT37X_CONFIG_OFF, 0x200);
57         if (buf == NULL)
58                 return -1;
59
60         hpt = (struct hpt37x_meta *) buf;
61         magic = le32_to_cpu(hpt->magic);
62         if (magic != HPT37X_MAGIC_OK && magic != HPT37X_MAGIC_BAD)
63                 return -1;
64
65         volume_id_set_usage(id, VOLUME_ID_RAID);
66         id->type = "highpoint_raid_member";
67
68         return 0;
69 }
70
71 int volume_id_probe_highpoint_45x_raid(struct volume_id *id, uint64_t off, uint64_t size)
72 {
73         const uint8_t *buf;
74         struct hpt45x_meta *hpt;
75         uint64_t meta_off;
76         uint32_t magic;
77
78         dbg("probing at offset 0x%llx, size 0x%llx",
79             (unsigned long long) off, (unsigned long long) size);
80
81         if (size < 0x10000)
82                 return -1;
83
84         meta_off = ((size / 0x200)-11) * 0x200;
85         buf = volume_id_get_buffer(id, off + meta_off, 0x200);
86         if (buf == NULL)
87                 return -1;
88
89         hpt = (struct hpt45x_meta *) buf;
90         magic = le32_to_cpu(hpt->magic);
91         if (magic != HPT45X_MAGIC_OK && magic != HPT45X_MAGIC_BAD)
92                 return -1;
93
94         volume_id_set_usage(id, VOLUME_ID_RAID);
95         id->type = "highpoint_raid_member";
96
97         return 0;
98 }