blob: 5f3339e3eac9b5a42cf6faf1b8c1d1fc723aa327 [file] [log] [blame]
Koji Satobdb265e2009-04-06 19:01:23 -07001/*
2 * bmap.h - NILFS block mapping.
3 *
4 * Copyright (C) 2006-2008 Nippon Telegraph and Telephone Corporation.
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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 *
20 * Written by Koji Sato <koji@osrg.net>.
21 */
22
23#ifndef _NILFS_BMAP_H
24#define _NILFS_BMAP_H
25
26#include <linux/types.h>
27#include <linux/fs.h>
28#include <linux/buffer_head.h>
29#include <linux/nilfs2_fs.h>
30#include "alloc.h"
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +090031#include "dat.h"
Koji Satobdb265e2009-04-06 19:01:23 -070032
33#define NILFS_BMAP_INVALID_PTR 0
34
Koji Satobdb265e2009-04-06 19:01:23 -070035#define nilfs_bmap_keydiff_abs(diff) ((diff) < 0 ? -(diff) : (diff))
36
37
38struct nilfs_bmap;
39
40/**
41 * union nilfs_bmap_ptr_req - request for bmap ptr
42 * @bpr_ptr: bmap pointer
43 * @bpr_req: request for persistent allocator
44 */
45union nilfs_bmap_ptr_req {
46 __u64 bpr_ptr;
47 struct nilfs_palloc_req bpr_req;
48};
49
50/**
51 * struct nilfs_bmap_stats - bmap statistics
52 * @bs_nblocks: number of blocks created or deleted
53 */
54struct nilfs_bmap_stats {
55 unsigned int bs_nblocks;
56};
57
58/**
59 * struct nilfs_bmap_operations - bmap operation table
60 */
61struct nilfs_bmap_operations {
62 int (*bop_lookup)(const struct nilfs_bmap *, __u64, int, __u64 *);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090063 int (*bop_lookup_contig)(const struct nilfs_bmap *, __u64, __u64 *,
64 unsigned);
Koji Satobdb265e2009-04-06 19:01:23 -070065 int (*bop_insert)(struct nilfs_bmap *, __u64, __u64);
66 int (*bop_delete)(struct nilfs_bmap *, __u64);
67 void (*bop_clear)(struct nilfs_bmap *);
68
Ryusuke Konishi583ada42010-07-10 21:37:47 +090069 int (*bop_propagate)(struct nilfs_bmap *, struct buffer_head *);
Koji Satobdb265e2009-04-06 19:01:23 -070070 void (*bop_lookup_dirty_buffers)(struct nilfs_bmap *,
71 struct list_head *);
72
73 int (*bop_assign)(struct nilfs_bmap *,
74 struct buffer_head **,
75 sector_t,
76 union nilfs_binfo *);
77 int (*bop_mark)(struct nilfs_bmap *, __u64, int);
78
79 /* The following functions are internal use only. */
80 int (*bop_last_key)(const struct nilfs_bmap *, __u64 *);
81 int (*bop_check_insert)(const struct nilfs_bmap *, __u64);
82 int (*bop_check_delete)(struct nilfs_bmap *, __u64);
83 int (*bop_gather_data)(struct nilfs_bmap *, __u64 *, __u64 *, int);
84};
85
86
Koji Satobdb265e2009-04-06 19:01:23 -070087#define NILFS_BMAP_SIZE (NILFS_INODE_BMAP_SIZE * sizeof(__le64))
88#define NILFS_BMAP_KEY_BIT (sizeof(unsigned long) * 8 /* CHAR_BIT */)
89#define NILFS_BMAP_NEW_PTR_INIT \
90 (1UL << (sizeof(unsigned long) * 8 /* CHAR_BIT */ - 1))
91
92static inline int nilfs_bmap_is_new_ptr(unsigned long ptr)
93{
94 return !!(ptr & NILFS_BMAP_NEW_PTR_INIT);
95}
96
97
98/**
99 * struct nilfs_bmap - bmap structure
100 * @b_u: raw data
101 * @b_sem: semaphore
102 * @b_inode: owner of bmap
103 * @b_ops: bmap operation table
Koji Satobdb265e2009-04-06 19:01:23 -0700104 * @b_last_allocated_key: last allocated key for data block
105 * @b_last_allocated_ptr: last allocated ptr for data block
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900106 * @b_ptr_type: pointer type
Koji Satobdb265e2009-04-06 19:01:23 -0700107 * @b_state: state
Ryusuke Konishi5ad2686e92010-07-13 23:33:54 +0900108 * @b_nchildren_per_block: maximum number of child nodes for non-root nodes
Koji Satobdb265e2009-04-06 19:01:23 -0700109 */
110struct nilfs_bmap {
111 union {
112 __u8 u_flags;
113 __le64 u_data[NILFS_BMAP_SIZE / sizeof(__le64)];
114 } b_u;
115 struct rw_semaphore b_sem;
116 struct inode *b_inode;
117 const struct nilfs_bmap_operations *b_ops;
Koji Satobdb265e2009-04-06 19:01:23 -0700118 __u64 b_last_allocated_key;
119 __u64 b_last_allocated_ptr;
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900120 int b_ptr_type;
Koji Satobdb265e2009-04-06 19:01:23 -0700121 int b_state;
Ryusuke Konishi5ad2686e92010-07-13 23:33:54 +0900122 __u16 b_nchildren_per_block;
Koji Satobdb265e2009-04-06 19:01:23 -0700123};
124
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900125/* pointer type */
126#define NILFS_BMAP_PTR_P 0 /* physical block number (i.e. LBN) */
127#define NILFS_BMAP_PTR_VS 1 /* virtual block number (single
128 version) */
129#define NILFS_BMAP_PTR_VM 2 /* virtual block number (has multiple
130 versions) */
131#define NILFS_BMAP_PTR_U (-1) /* never perform pointer operations */
132
133#define NILFS_BMAP_USE_VBN(bmap) ((bmap)->b_ptr_type > 0)
134
Koji Satobdb265e2009-04-06 19:01:23 -0700135/* state */
136#define NILFS_BMAP_DIRTY 0x00000001
137
Ryusuke Konishia8070dd2010-08-30 23:42:18 +0900138struct nilfs_bmap_store {
139 __le64 data[NILFS_BMAP_SIZE / sizeof(__le64)];
140 __u64 last_allocated_key;
141 __u64 last_allocated_ptr;
142 int state;
143};
Koji Satobdb265e2009-04-06 19:01:23 -0700144
145int nilfs_bmap_test_and_clear_dirty(struct nilfs_bmap *);
146int nilfs_bmap_read(struct nilfs_bmap *, struct nilfs_inode *);
147void nilfs_bmap_write(struct nilfs_bmap *, struct nilfs_inode *);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +0900148int nilfs_bmap_lookup_contig(struct nilfs_bmap *, __u64, __u64 *, unsigned);
Koji Satobdb265e2009-04-06 19:01:23 -0700149int nilfs_bmap_insert(struct nilfs_bmap *, unsigned long, unsigned long);
150int nilfs_bmap_delete(struct nilfs_bmap *, unsigned long);
151int nilfs_bmap_last_key(struct nilfs_bmap *, unsigned long *);
152int nilfs_bmap_truncate(struct nilfs_bmap *, unsigned long);
153void nilfs_bmap_clear(struct nilfs_bmap *);
154int nilfs_bmap_propagate(struct nilfs_bmap *, struct buffer_head *);
155void nilfs_bmap_lookup_dirty_buffers(struct nilfs_bmap *, struct list_head *);
156int nilfs_bmap_assign(struct nilfs_bmap *, struct buffer_head **,
157 unsigned long, union nilfs_binfo *);
158int nilfs_bmap_lookup_at_level(struct nilfs_bmap *, __u64, int, __u64 *);
159int nilfs_bmap_mark(struct nilfs_bmap *, __u64, int);
160
161void nilfs_bmap_init_gc(struct nilfs_bmap *);
162void nilfs_bmap_init_gcdat(struct nilfs_bmap *, struct nilfs_bmap *);
163void nilfs_bmap_commit_gcdat(struct nilfs_bmap *, struct nilfs_bmap *);
164
Ryusuke Konishia8070dd2010-08-30 23:42:18 +0900165void nilfs_bmap_save(const struct nilfs_bmap *, struct nilfs_bmap_store *);
166void nilfs_bmap_restore(struct nilfs_bmap *, const struct nilfs_bmap_store *);
Koji Satobdb265e2009-04-06 19:01:23 -0700167
Ryusuke Konishi0f3fe332009-08-15 02:29:28 +0900168static inline int nilfs_bmap_lookup(struct nilfs_bmap *bmap, __u64 key,
169 __u64 *ptr)
170{
171 return nilfs_bmap_lookup_at_level(bmap, key, 1, ptr);
172}
173
Koji Satobdb265e2009-04-06 19:01:23 -0700174/*
175 * Internal use only
176 */
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +0900177struct inode *nilfs_bmap_get_dat(const struct nilfs_bmap *);
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900178
179static inline int nilfs_bmap_prepare_alloc_ptr(struct nilfs_bmap *bmap,
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900180 union nilfs_bmap_ptr_req *req,
181 struct inode *dat)
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900182{
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900183 if (dat)
184 return nilfs_dat_prepare_alloc(dat, &req->bpr_req);
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900185 /* ignore target ptr */
186 req->bpr_ptr = bmap->b_last_allocated_ptr++;
187 return 0;
188}
189
190static inline void nilfs_bmap_commit_alloc_ptr(struct nilfs_bmap *bmap,
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900191 union nilfs_bmap_ptr_req *req,
192 struct inode *dat)
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900193{
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900194 if (dat)
195 nilfs_dat_commit_alloc(dat, &req->bpr_req);
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900196}
197
198static inline void nilfs_bmap_abort_alloc_ptr(struct nilfs_bmap *bmap,
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900199 union nilfs_bmap_ptr_req *req,
200 struct inode *dat)
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900201{
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900202 if (dat)
203 nilfs_dat_abort_alloc(dat, &req->bpr_req);
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900204 else
205 bmap->b_last_allocated_ptr--;
206}
207
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900208static inline int nilfs_bmap_prepare_end_ptr(struct nilfs_bmap *bmap,
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900209 union nilfs_bmap_ptr_req *req,
210 struct inode *dat)
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900211{
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900212 return dat ? nilfs_dat_prepare_end(dat, &req->bpr_req) : 0;
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900213}
214
215static inline void nilfs_bmap_commit_end_ptr(struct nilfs_bmap *bmap,
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900216 union nilfs_bmap_ptr_req *req,
217 struct inode *dat)
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900218{
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900219 if (dat)
220 nilfs_dat_commit_end(dat, &req->bpr_req,
221 bmap->b_ptr_type == NILFS_BMAP_PTR_VS);
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900222}
223
224static inline void nilfs_bmap_abort_end_ptr(struct nilfs_bmap *bmap,
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900225 union nilfs_bmap_ptr_req *req,
226 struct inode *dat)
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900227{
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900228 if (dat)
229 nilfs_dat_abort_end(dat, &req->bpr_req);
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900230}
Koji Satobdb265e2009-04-06 19:01:23 -0700231
Ryusuke Konishidc935be2010-07-10 22:21:54 +0900232static inline void nilfs_bmap_set_target_v(struct nilfs_bmap *bmap, __u64 key,
233 __u64 ptr)
234{
235 bmap->b_last_allocated_key = key;
236 bmap->b_last_allocated_ptr = ptr;
237}
238
Koji Satobdb265e2009-04-06 19:01:23 -0700239__u64 nilfs_bmap_data_get_key(const struct nilfs_bmap *,
240 const struct buffer_head *);
241
242__u64 nilfs_bmap_find_target_seq(const struct nilfs_bmap *, __u64);
243__u64 nilfs_bmap_find_target_in_group(const struct nilfs_bmap *);
244
Koji Satobdb265e2009-04-06 19:01:23 -0700245void nilfs_bmap_add_blocks(const struct nilfs_bmap *, int);
246void nilfs_bmap_sub_blocks(const struct nilfs_bmap *, int);
247
248
Koji Satobdb265e2009-04-06 19:01:23 -0700249/* Assume that bmap semaphore is locked. */
250static inline int nilfs_bmap_dirty(const struct nilfs_bmap *bmap)
251{
252 return !!(bmap->b_state & NILFS_BMAP_DIRTY);
253}
254
255/* Assume that bmap semaphore is locked. */
256static inline void nilfs_bmap_set_dirty(struct nilfs_bmap *bmap)
257{
258 bmap->b_state |= NILFS_BMAP_DIRTY;
259}
260
261/* Assume that bmap semaphore is locked. */
262static inline void nilfs_bmap_clear_dirty(struct nilfs_bmap *bmap)
263{
264 bmap->b_state &= ~NILFS_BMAP_DIRTY;
265}
266
267
268#define NILFS_BMAP_LARGE 0x1
269
270#define NILFS_BMAP_SMALL_LOW NILFS_DIRECT_KEY_MIN
271#define NILFS_BMAP_SMALL_HIGH NILFS_DIRECT_KEY_MAX
272#define NILFS_BMAP_LARGE_LOW NILFS_BTREE_ROOT_NCHILDREN_MAX
273#define NILFS_BMAP_LARGE_HIGH NILFS_BTREE_KEY_MAX
274
275#endif /* _NILFS_BMAP_H */