chiark / gitweb /
volume_id: provide a custom debug function
[elogind.git] / extras / volume_id / lib / via_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 "libvolume_id.h"
27 #include "util.h"
28
29 struct via_meta {
30         uint16_t        signature;
31         uint8_t         version_number;
32         struct via_array {
33                 uint16_t        disk_bits;
34                 uint8_t         disk_array_ex;
35                 uint32_t        capacity_low;
36                 uint32_t        capacity_high;
37                 uint32_t        serial_checksum;
38         } PACKED array;
39         uint32_t        serial_checksum[8];
40         uint8_t         checksum;
41 } PACKED;
42
43 #define VIA_SIGNATURE           0xAA55
44
45 int volume_id_probe_via_raid(struct volume_id *id, uint64_t off, uint64_t size)
46 {
47         const uint8_t *buf;
48         uint64_t meta_off;
49         struct via_meta *via;
50
51         dbg("probing at offset 0x%llx, size 0x%llx",
52             (unsigned long long) off, (unsigned long long) size);
53
54         if (size < 0x10000)
55                 return -1;
56
57         meta_off = ((size / 0x200)-1) * 0x200;
58
59         buf = volume_id_get_buffer(id, off + meta_off, 0x200);
60         if (buf == NULL)
61                 return -1;
62
63         via = (struct via_meta *) buf;
64         if (le16_to_cpu(via->signature) !=  VIA_SIGNATURE)
65                 return -1;
66
67         if (via->version_number > 1)
68                 return -1;
69
70         volume_id_set_usage(id, VOLUME_ID_RAID);
71         snprintf(id->type_version, sizeof(id->type_version)-1, "%u", via->version_number);
72         id->type = "via_raid_member";
73
74         return 0;
75 }