blob: 338a48762278e2d5719d2e3ee3f4994ee4e380f0 [file] [log] [blame]
Vladimir Dronnikov662e8b72009-11-01 23:05:09 +01001/*
2 * volume_id - reads filesystem label and uuid
3 *
4 * Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
5 * Copyright (C) 2009 Vladimir Dronnikov <dronnikov@gmail.com>
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
Sven-Göran Bergh3b458012013-07-31 15:45:20 +020022//kbuild:lib-$(CONFIG_FEATURE_VOLUMEID_BTRFS) += btrfs.o
23
Sven-Göran Bergh15d0a862013-07-31 15:57:59 +020024//config:config FEATURE_VOLUMEID_BTRFS
25//config: bool "btrfs filesystem"
26//config: default y
27//config: depends on VOLUMEID
Sven-Göran Bergh15d0a862013-07-31 15:57:59 +020028
Vladimir Dronnikov662e8b72009-11-01 23:05:09 +010029#include "volume_id_internal.h"
30
31#define BTRFS_UUID_SIZE 16
32#define BTRFS_LABEL_SIZE 256
33#define BTRFS_CSUM_SIZE 32
34#define BTRFS_FSID_SIZE 16
35
36#define BTRFS_MAGIC "_BHRfS_M"
37
38struct btrfs_dev_item {
39 uint64_t devid;
40 uint64_t total_bytes;
41 uint64_t bytes_used;
42 uint32_t io_align;
43 uint32_t io_width;
44 uint32_t sector_size;
45 uint64_t type;
46 uint64_t generation;
47 uint64_t start_offset;
48 uint32_t dev_group;
49 uint8_t seek_speed;
50 uint8_t bandwidth;
51 uint8_t uuid[BTRFS_UUID_SIZE];
52 uint8_t fsid[BTRFS_UUID_SIZE];
53} PACKED;
54
55struct btrfs_super_block {
56 uint8_t csum[BTRFS_CSUM_SIZE];
57 uint8_t fsid[BTRFS_FSID_SIZE]; // UUID
58 uint64_t bytenr;
59 uint64_t flags;
60 uint8_t magic[8];
61 uint64_t generation;
62 uint64_t root;
63 uint64_t chunk_root;
64 uint64_t log_root;
65 uint64_t log_root_transid;
66 uint64_t total_bytes;
67 uint64_t bytes_used;
68 uint64_t root_dir_objectid;
69 uint64_t num_devices;
70 uint32_t sectorsize;
71 uint32_t nodesize;
72 uint32_t leafsize;
73 uint32_t stripesize;
74 uint32_t sys_chunk_array_size;
75 uint64_t chunk_root_generation;
76 uint64_t compat_flags;
77 uint64_t compat_ro_flags;
78 uint64_t incompat_flags;
79 uint16_t csum_type;
80 uint8_t root_level;
81 uint8_t chunk_root_level;
82 uint8_t log_root_level;
83 struct btrfs_dev_item dev_item;
84 uint8_t label[BTRFS_LABEL_SIZE]; // LABEL
85 // ...
86} PACKED;
87
Denys Vlasenko89300962009-11-01 23:07:18 +010088int FAST_FUNC volume_id_probe_btrfs(struct volume_id *id /*,uint64_t off*/)
Vladimir Dronnikov662e8b72009-11-01 23:05:09 +010089{
Denys Vlasenkod784b652009-11-02 00:12:35 +010090 // btrfs has superblocks at 64K, 64M and 256G
91 // minimum btrfs size is 256M
92 // so we never step out the device if we analyze
93 // the first and the second superblocks
Vladimir Dronnikov662e8b72009-11-01 23:05:09 +010094 struct btrfs_super_block *sb;
Denys Vlasenkod784b652009-11-02 00:12:35 +010095 unsigned off = 64;
Vladimir Dronnikov662e8b72009-11-01 23:05:09 +010096
Denys Vlasenkod784b652009-11-02 00:12:35 +010097 while (off < 64*1024*1024) {
98 off *= 1024;
99 dbg("btrfs: probing at offset 0x%x", off);
Vladimir Dronnikov662e8b72009-11-01 23:05:09 +0100100
Denys Vlasenkod784b652009-11-02 00:12:35 +0100101 sb = volume_id_get_buffer(id, off, sizeof(*sb));
102 if (sb == NULL)
103 return -1;
Vladimir Dronnikov662e8b72009-11-01 23:05:09 +0100104
Denys Vlasenkod784b652009-11-02 00:12:35 +0100105 if (memcmp(sb->magic, BTRFS_MAGIC, 8) != 0)
106 return -1;
107 }
Vladimir Dronnikov662e8b72009-11-01 23:05:09 +0100108
Denys Vlasenkod784b652009-11-02 00:12:35 +0100109 // N.B.: btrfs natively supports 256 (>VOLUME_ID_LABEL_SIZE) size labels
Vladimir Dronnikov662e8b72009-11-01 23:05:09 +0100110 volume_id_set_label_string(id, sb->label, VOLUME_ID_LABEL_SIZE);
111 volume_id_set_uuid(id, sb->fsid, UUID_DCE);
Sven-Göran Bergh11f2c0d2012-09-02 14:56:25 +0200112 IF_FEATURE_BLKID_TYPE(id->type = "btrfs";)
Vladimir Dronnikov662e8b72009-11-01 23:05:09 +0100113
114 return 0;
115}