chiark / gitweb /
volume_id: remove deprecated functions and bump major version
[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  * Based on information taken from dmraid:
7  * Copyright (C) 2004-2006 Heinz Mauelshagen, Red Hat GmbH
8  *
9  *      This program is free software; you can redistribute it and/or modify it
10  *      under the terms of the GNU General Public License as published by the
11  *      Free Software Foundation version 2 of the License.
12  */
13
14 #ifndef _GNU_SOURCE
15 #define _GNU_SOURCE 1
16 #endif
17
18 #ifdef HAVE_CONFIG_H
19 #  include <config.h>
20 #endif
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include <string.h>
26 #include <errno.h>
27 #include <ctype.h>
28
29 #include "libvolume_id.h"
30 #include "libvolume_id-private.h"
31 #include "util.h"
32
33 struct via_meta {
34         uint16_t        signature;
35         uint8_t         version_number;
36         struct via_array {
37                 uint16_t        disk_bit_mask;
38                 uint8_t         disk_array_ex;
39                 uint32_t        capacity_low;
40                 uint32_t        capacity_high;
41                 uint32_t        serial_checksum;
42         } PACKED array;
43         uint32_t        serial_checksum[8];
44         uint8_t         checksum;
45 } PACKED;
46
47 #define VIA_SIGNATURE           0xAA55
48
49 /* 8 bit checksum on first 50 bytes of metadata. */
50 static uint8_t meta_checksum(struct via_meta *via)
51 {
52         uint8_t i = 50, sum = 0;
53
54         while (i--)
55                 sum += ((uint8_t*) via)[i];
56
57         return sum == via->checksum;
58 }
59
60
61 int volume_id_probe_via_raid(struct volume_id *id, uint64_t off, uint64_t size)
62 {
63         const uint8_t *buf;
64         uint64_t meta_off;
65         struct via_meta *via;
66
67         dbg("probing at offset 0x%llx, size 0x%llx\n",
68             (unsigned long long) off, (unsigned long long) size);
69
70         if (size < 0x10000)
71                 return -1;
72
73         meta_off = ((size / 0x200)-1) * 0x200;
74
75         buf = volume_id_get_buffer(id, off + meta_off, 0x200);
76         if (buf == NULL)
77                 return -1;
78
79         via = (struct via_meta *) buf;
80         if (le16_to_cpu(via->signature) !=  VIA_SIGNATURE)
81                 return -1;
82
83         if (via->version_number > 1)
84                 return -1;
85
86         if (!meta_checksum(via))
87                 return -1;
88
89         volume_id_set_usage(id, VOLUME_ID_RAID);
90         snprintf(id->type_version, sizeof(id->type_version)-1, "%u", via->version_number);
91         id->type = "via_raid_member";
92
93         return 0;
94 }