chiark / gitweb /
volume_id: provide library
[elogind.git] / extras / volume_id / libvolume_id / nvidia_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 "logging.h"
28 #include "util.h"
29
30 struct nvidia_meta {
31         uint8_t         vendor[8];
32         uint32_t        size;
33         uint32_t        chksum;
34         uint16_t        version;
35 } PACKED;
36
37 #define NVIDIA_SIGNATURE                "NVIDIA"
38
39 int volume_id_probe_nvidia_raid(struct volume_id *id, uint64_t off, uint64_t size)
40 {
41         const uint8_t *buf;
42         uint64_t meta_off;
43         struct nvidia_meta *nv;
44
45         dbg("probing at offset 0x%llx, size 0x%llx",
46             (unsigned long long) off, (unsigned long long) size);
47
48         if (size < 0x10000)
49                 return -1;
50
51         meta_off = ((size / 0x200)-2) * 0x200;
52         buf = volume_id_get_buffer(id, off + meta_off, 0x200);
53         if (buf == NULL)
54                 return -1;
55
56         nv = (struct nvidia_meta *) buf;
57         if (memcmp(nv->vendor, NVIDIA_SIGNATURE, sizeof(NVIDIA_SIGNATURE)-1) != 0)
58                 return -1;
59
60         volume_id_set_usage(id, VOLUME_ID_RAID);
61         snprintf(id->type_version, sizeof(id->type_version)-1, "%u", le16_to_cpu(nv->version));
62         id->type = "nvidia_raid_member";
63
64         return 0;
65 }