~ubuntu-branches/ubuntu/trusty/util-linux/trusty-proposed

« back to all changes in this revision

Viewing changes to libblkid/src/superblocks/jmicron_raid.c

  • Committer: Package Import Robot
  • Author(s): LaMont Jones
  • Date: 2011-11-03 15:38:23 UTC
  • mto: (4.5.5 sid) (1.6.4)
  • mto: This revision was merged to the branch mainline in revision 85.
  • Revision ID: package-import@ubuntu.com-20111103153823-10sx16jprzxlhkqf
ImportĀ upstreamĀ versionĀ 2.20.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2008 Karel Zak <kzak@redhat.com>
 
3
 *
 
4
 * Inspired by libvolume_id by
 
5
 *     Kay Sievers <kay.sievers@vrfy.org>
 
6
 *
 
7
 * This file may be redistributed under the terms of the
 
8
 * GNU Lesser General Public License.
 
9
 */
 
10
 
 
11
#include <stdio.h>
 
12
#include <stdlib.h>
 
13
#include <unistd.h>
 
14
#include <string.h>
 
15
#include <stdint.h>
 
16
 
 
17
#include "superblocks.h"
 
18
 
 
19
struct jm_metadata {
 
20
        int8_t          signature[2];
 
21
        uint8_t         minor_version;
 
22
        uint8_t         major_version;
 
23
        uint16_t        checksum;
 
24
};
 
25
 
 
26
#define JM_SIGNATURE            "JM"
 
27
 
 
28
static int probe_jmraid(blkid_probe pr,
 
29
                const struct blkid_idmag *mag __attribute__((__unused__)))
 
30
{
 
31
        uint64_t off;
 
32
        struct jm_metadata *jm;
 
33
 
 
34
        if (pr->size < 0x10000)
 
35
                return -1;
 
36
        if (!S_ISREG(pr->mode) && !blkid_probe_is_wholedisk(pr))
 
37
                return -1;
 
38
 
 
39
        off = ((pr->size / 0x200) - 1) * 0x200;
 
40
        jm = (struct jm_metadata *)
 
41
                blkid_probe_get_buffer(pr,
 
42
                                off,
 
43
                                sizeof(struct jm_metadata));
 
44
        if (!jm)
 
45
                return -1;
 
46
        if (memcmp(jm->signature, JM_SIGNATURE, sizeof(JM_SIGNATURE) - 1) != 0)
 
47
                return -1;
 
48
        if (blkid_probe_sprintf_version(pr, "%u.%u",
 
49
                                jm->major_version, jm->minor_version) != 0)
 
50
                return -1;
 
51
        if (blkid_probe_set_magic(pr, off, sizeof(jm->signature),
 
52
                                (unsigned char *) jm->signature))
 
53
                return -1;
 
54
        return 0;
 
55
}
 
56
 
 
57
const struct blkid_idinfo jmraid_idinfo = {
 
58
        .name           = "jmicron_raid_member",
 
59
        .usage          = BLKID_USAGE_RAID,
 
60
        .probefunc      = probe_jmraid,
 
61
        .magics         = BLKID_NONE_MAGIC
 
62
};
 
63
 
 
64