chiark / gitweb /
a95e778e5eacab4d4e9897b74abba393e2a88c2a
[elogind.git] / extras / volume_id / lib / hpfs.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 "libvolume_id-private.h"
28 #include "util.h"
29
30 struct hpfs_super
31 {
32         uint8_t         magic[4];
33         uint8_t         version;
34 } PACKED;
35
36 #define HPFS_SUPERBLOCK_OFFSET                  0x2000
37
38 int volume_id_probe_hpfs(struct volume_id *id, uint64_t off, uint64_t size)
39 {
40         struct hpfs_super *hs;
41
42         info("probing at offset 0x%llx\n", (unsigned long long) off);
43
44         hs = (struct hpfs_super *) volume_id_get_buffer(id, off + HPFS_SUPERBLOCK_OFFSET, 0x200);
45         if (hs == NULL)
46                 return -1;
47
48         if (memcmp(hs->magic, "\x49\xe8\x95\xf9", 4) == 0) {
49                 sprintf(id->type_version, "%u", hs->version);
50
51                 volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
52                 id->type = "hpfs";
53                 return 0;
54         }
55
56         return -1;
57 }