chiark / gitweb /
2279c4df5cf68f7feb382e720c69e229280fd390
[elogind.git] / extras / volume_id / lib / jmicron_raid.c
1 /*
2  * volume_id - reads filesystem label and uuid
3  *
4  * Copyright (C) 2006 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 "libvolume_id-private.h"
28 #include "util.h"
29
30 struct jmicron_meta {
31         int8_t          signature[2];
32         uint8_t         minor_version;
33         uint8_t         major_version;
34         uint16_t        checksum;
35 } PACKED;
36
37 int volume_id_probe_jmicron_raid(struct volume_id *id, uint64_t off, uint64_t size)
38 {
39         const uint8_t *buf;
40         uint64_t meta_off;
41         struct jmicron_meta *jm;
42
43         info("probing at offset 0x%llx, size 0x%llx\n",
44             (unsigned long long) off, (unsigned long long) size);
45
46         if (size < 0x10000)
47                 return -1;
48
49         meta_off = ((size / 0x200)-1) * 0x200;
50         buf = volume_id_get_buffer(id, off + meta_off, 0x200);
51         if (buf == NULL)
52                 return -1;
53
54         jm = (struct jmicron_meta *) buf;
55         if (memcmp(jm->signature, "JM", 2) != 0)
56                 return -1;
57
58         volume_id_set_usage(id, VOLUME_ID_RAID);
59         snprintf(id->type_version, sizeof(id->type_version)-1, "%u.%u", jm->major_version, jm->minor_version);
60         id->type = "jmicron_raid_member";
61
62         return 0;
63 }