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

« back to all changes in this revision

Viewing changes to libblkid/src/superblocks/isw_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
#include <stdio.h>
 
11
#include <stdlib.h>
 
12
#include <unistd.h>
 
13
#include <string.h>
 
14
#include <stdint.h>
 
15
 
 
16
#include "superblocks.h"
 
17
 
 
18
struct isw_metadata {
 
19
        uint8_t         sig[32];
 
20
        uint32_t        check_sum;
 
21
        uint32_t        mpb_size;
 
22
        uint32_t        family_num;
 
23
        uint32_t        generation_num;
 
24
};
 
25
 
 
26
#define ISW_SIGNATURE           "Intel Raid ISM Cfg Sig. "
 
27
 
 
28
 
 
29
static int probe_iswraid(blkid_probe pr,
 
30
                const struct blkid_idmag *mag __attribute__((__unused__)))
 
31
{
 
32
        uint64_t off;
 
33
        struct isw_metadata *isw;
 
34
 
 
35
        if (pr->size < 0x10000)
 
36
                return -1;
 
37
        if (!S_ISREG(pr->mode) && !blkid_probe_is_wholedisk(pr))
 
38
                return -1;
 
39
 
 
40
        off = ((pr->size / 0x200) - 2) * 0x200;
 
41
        isw = (struct isw_metadata *)
 
42
                        blkid_probe_get_buffer(pr,
 
43
                                        off,
 
44
                                        sizeof(struct isw_metadata));
 
45
        if (!isw)
 
46
                return -1;
 
47
        if (memcmp(isw->sig, ISW_SIGNATURE, sizeof(ISW_SIGNATURE)-1) != 0)
 
48
                return -1;
 
49
        if (blkid_probe_sprintf_version(pr, "%6s",
 
50
                        &isw->sig[sizeof(ISW_SIGNATURE)-1]) != 0)
 
51
                return -1;
 
52
        if (blkid_probe_set_magic(pr, off, sizeof(isw->sig),
 
53
                                (unsigned char *) isw->sig))
 
54
                return -1;
 
55
        return 0;
 
56
}
 
57
 
 
58
const struct blkid_idinfo iswraid_idinfo = {
 
59
        .name           = "isw_raid_member",
 
60
        .usage          = BLKID_USAGE_RAID,
 
61
        .probefunc      = probe_iswraid,
 
62
        .magics         = BLKID_NONE_MAGIC
 
63
};
 
64
 
 
65