chiark / gitweb /
a59ca1d99b23da379e4f2ded034b392ade5c9ae4
[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
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef _GNU_SOURCE
21 #define _GNU_SOURCE 1
22 #endif
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <unistd.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <ctype.h>
30
31 #include "libvolume_id.h"
32 #include "libvolume_id-private.h"
33
34 struct hpfs_super
35 {
36         uint8_t         magic[4];
37         uint8_t         version;
38 } PACKED;
39
40 #define HPFS_SUPERBLOCK_OFFSET                  0x2000
41
42 int volume_id_probe_hpfs(struct volume_id *id, uint64_t off, uint64_t size)
43 {
44         struct hpfs_super *hs;
45
46         info("probing at offset 0x%llx\n", (unsigned long long) off);
47
48         hs = (struct hpfs_super *) volume_id_get_buffer(id, off + HPFS_SUPERBLOCK_OFFSET, 0x200);
49         if (hs == NULL)
50                 return -1;
51
52         if (memcmp(hs->magic, "\x49\xe8\x95\xf9", 4) == 0) {
53                 sprintf(id->type_version, "%u", hs->version);
54
55                 volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
56                 id->type = "hpfs";
57                 return 0;
58         }
59
60         return -1;
61 }