chiark / gitweb /
forgot the ChangeLog for 074
[elogind.git] / extras / volume_id / volume_id / jfs.c
1 /*
2  * volume_id - reads filesystem label and uuid
3  *
4  * Copyright (C) 2004 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 "volume_id.h"
27 #include "logging.h"
28 #include "util.h"
29 #include "jfs.h"
30
31 struct jfs_super_block {
32         uint8_t         magic[4];
33         uint32_t        version;
34         uint64_t        size;
35         uint32_t        bsize;
36         uint32_t        dummy1;
37         uint32_t        pbsize;
38         uint32_t        dummy2[27];
39         uint8_t         uuid[16];
40         uint8_t         label[16];
41         uint8_t         loguuid[16];
42 } __attribute__((__packed__));
43
44 #define JFS_SUPERBLOCK_OFFSET                   0x8000
45
46 int volume_id_probe_jfs(struct volume_id *id, uint64_t off)
47 {
48         struct jfs_super_block *js;
49
50         dbg("probing at offset 0x%llx", (unsigned long long) off);
51
52         js = (struct jfs_super_block *) volume_id_get_buffer(id, off + JFS_SUPERBLOCK_OFFSET, 0x200);
53         if (js == NULL)
54                 return -1;
55
56         if (memcmp(js->magic, "JFS1", 4) != 0)
57                 return -1;
58
59         volume_id_set_label_raw(id, js->label, 16);
60         volume_id_set_label_string(id, js->label, 16);
61         volume_id_set_uuid(id, js->uuid, UUID_DCE);
62
63         volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
64         id->type = "jfs";
65
66         return 0;
67 }