bigbiff bigbiff | e60683a | 2013-02-22 20:55:50 -0500 | [diff] [blame] | 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 | |