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