chiark / gitweb /
switch tools and volume_id from LGPL to GPLv2
[elogind.git] / extras / volume_id / volume_id / promise_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 "promise_raid.h"
30
31 struct promise_meta {
32         uint8_t sig[24];
33 } __attribute__((packed));
34
35 #define PDC_CONFIG_OFF          0x1200
36 #define PDC_SIGNATURE           "Promise Technology, Inc."
37
38 int volume_id_probe_promise_fasttrack_raid(struct volume_id *id, uint64_t off, uint64_t size)
39 {
40         const uint8_t *buf;
41         struct promise_meta *pdc;
42         unsigned int i;
43         static unsigned int sectors[] = {
44                 63, 255, 256, 16, 399, 0
45         };
46
47         dbg("probing at offset 0x%llx, size 0x%llx",
48             (unsigned long long) off, (unsigned long long) size);
49
50         if (size < 0x40000)
51                 return -1;
52
53         for (i = 0; sectors[i] != 0; i++) {
54                 uint64_t meta_off;
55
56                 meta_off = ((size / 0x200) - sectors[i]) * 0x200;
57                 buf = volume_id_get_buffer(id, off + meta_off, 0x200);
58                 if (buf == NULL)
59                         return -1;
60
61                 pdc = (struct promise_meta *) buf;
62                 if (memcmp(pdc->sig, PDC_SIGNATURE, sizeof(PDC_SIGNATURE)-1) == 0)
63                         goto found;
64         }
65         return -1;
66
67 found:
68         volume_id_set_usage(id, VOLUME_ID_RAID);
69         id->type = "promise_fasttrack_raid_member";
70
71         return 0;
72 }