chiark / gitweb /
usb_id: fix switch statement for video type
[elogind.git] / extras / volume_id / lib / 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
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef _GNU_SOURCE
21 #define _GNU_SOURCE 1
22 #endif
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <unistd.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <ctype.h>
30
31 #include "libvolume_id.h"
32 #include "libvolume_id-private.h"
33
34 struct promise_meta {
35         uint8_t sig[24];
36 } PACKED;
37
38 #define PDC_CONFIG_OFF          0x1200
39 #define PDC_SIGNATURE           "Promise Technology, Inc."
40
41 int volume_id_probe_promise_fasttrack_raid(struct volume_id *id, uint64_t off, uint64_t size)
42 {
43         const uint8_t *buf;
44         struct promise_meta *pdc;
45         unsigned int i;
46         static unsigned int sectors[] = {
47                 63, 255, 256, 16, 399, 0
48         };
49
50         info("probing at offset 0x%" PRIx64 ", size 0x%" PRIx64 "\n", off, size);
51
52         if (size < 0x40000)
53                 return -1;
54
55         for (i = 0; sectors[i] != 0; i++) {
56                 uint64_t meta_off;
57
58                 meta_off = ((size / 0x200) - sectors[i]) * 0x200;
59                 buf = volume_id_get_buffer(id, off + meta_off, 0x200);
60                 if (buf == NULL)
61                         return -1;
62
63                 pdc = (struct promise_meta *) buf;
64                 if (memcmp(pdc->sig, PDC_SIGNATURE, sizeof(PDC_SIGNATURE)-1) == 0)
65                         goto found;
66         }
67         return -1;
68
69 found:
70         volume_id_set_usage(id, VOLUME_ID_RAID);
71         id->type = "promise_fasttrack_raid_member";
72
73         return 0;
74 }