blob: 2c63858e81c9ce089820e9803a7a98f6121c524b [file] [log] [blame]
Ryusuke Konishiae980432018-09-04 15:46:30 -07001/* SPDX-License-Identifier: GPL-2.0+ */
Koji Satobdb265e2009-04-06 19:01:23 -07002/*
3 * bmap.h - NILFS block mapping.
4 *
5 * Copyright (C) 2006-2008 Nippon Telegraph and Telephone Corporation.
6 *
Ryusuke Konishi4b420ab2016-05-23 16:23:09 -07007 * Written by Koji Sato.
Koji Satobdb265e2009-04-06 19:01:23 -07008 */
9
10#ifndef _NILFS_BMAP_H
11#define _NILFS_BMAP_H
12
13#include <linux/types.h>
14#include <linux/fs.h>
15#include <linux/buffer_head.h>
Ryusuke Konishie63e88b2016-08-02 14:05:30 -070016#include <linux/nilfs2_ondisk.h> /* nilfs_binfo, nilfs_inode, etc */
Koji Satobdb265e2009-04-06 19:01:23 -070017#include "alloc.h"
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +090018#include "dat.h"
Koji Satobdb265e2009-04-06 19:01:23 -070019
20#define NILFS_BMAP_INVALID_PTR 0
21
Koji Satobdb265e2009-04-06 19:01:23 -070022#define nilfs_bmap_keydiff_abs(diff) ((diff) < 0 ? -(diff) : (diff))
23
24
25struct nilfs_bmap;
26
27/**
28 * union nilfs_bmap_ptr_req - request for bmap ptr
29 * @bpr_ptr: bmap pointer
30 * @bpr_req: request for persistent allocator
31 */
32union nilfs_bmap_ptr_req {
33 __u64 bpr_ptr;
34 struct nilfs_palloc_req bpr_req;
35};
36
37/**
38 * struct nilfs_bmap_stats - bmap statistics
39 * @bs_nblocks: number of blocks created or deleted
40 */
41struct nilfs_bmap_stats {
42 unsigned int bs_nblocks;
43};
44
45/**
46 * struct nilfs_bmap_operations - bmap operation table
47 */
48struct nilfs_bmap_operations {
49 int (*bop_lookup)(const struct nilfs_bmap *, __u64, int, __u64 *);
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +090050 int (*bop_lookup_contig)(const struct nilfs_bmap *, __u64, __u64 *,
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -070051 unsigned int);
Koji Satobdb265e2009-04-06 19:01:23 -070052 int (*bop_insert)(struct nilfs_bmap *, __u64, __u64);
53 int (*bop_delete)(struct nilfs_bmap *, __u64);
54 void (*bop_clear)(struct nilfs_bmap *);
55
Ryusuke Konishi583ada42010-07-10 21:37:47 +090056 int (*bop_propagate)(struct nilfs_bmap *, struct buffer_head *);
Koji Satobdb265e2009-04-06 19:01:23 -070057 void (*bop_lookup_dirty_buffers)(struct nilfs_bmap *,
58 struct list_head *);
59
60 int (*bop_assign)(struct nilfs_bmap *,
61 struct buffer_head **,
62 sector_t,
63 union nilfs_binfo *);
64 int (*bop_mark)(struct nilfs_bmap *, __u64, int);
65
Ryusuke Konishi5b203842015-04-16 12:46:36 -070066 int (*bop_seek_key)(const struct nilfs_bmap *, __u64, __u64 *);
Koji Satobdb265e2009-04-06 19:01:23 -070067 int (*bop_last_key)(const struct nilfs_bmap *, __u64 *);
Ryusuke Konishi5b203842015-04-16 12:46:36 -070068
69 /* The following functions are internal use only. */
Koji Satobdb265e2009-04-06 19:01:23 -070070 int (*bop_check_insert)(const struct nilfs_bmap *, __u64);
71 int (*bop_check_delete)(struct nilfs_bmap *, __u64);
72 int (*bop_gather_data)(struct nilfs_bmap *, __u64 *, __u64 *, int);
73};
74
75
Koji Satobdb265e2009-04-06 19:01:23 -070076#define NILFS_BMAP_SIZE (NILFS_INODE_BMAP_SIZE * sizeof(__le64))
77#define NILFS_BMAP_KEY_BIT (sizeof(unsigned long) * 8 /* CHAR_BIT */)
78#define NILFS_BMAP_NEW_PTR_INIT \
79 (1UL << (sizeof(unsigned long) * 8 /* CHAR_BIT */ - 1))
80
81static inline int nilfs_bmap_is_new_ptr(unsigned long ptr)
82{
83 return !!(ptr & NILFS_BMAP_NEW_PTR_INIT);
84}
85
86
87/**
88 * struct nilfs_bmap - bmap structure
89 * @b_u: raw data
90 * @b_sem: semaphore
91 * @b_inode: owner of bmap
92 * @b_ops: bmap operation table
Koji Satobdb265e2009-04-06 19:01:23 -070093 * @b_last_allocated_key: last allocated key for data block
94 * @b_last_allocated_ptr: last allocated ptr for data block
Ryusuke Konishid4b96152009-05-24 03:25:44 +090095 * @b_ptr_type: pointer type
Koji Satobdb265e2009-04-06 19:01:23 -070096 * @b_state: state
Ryusuke Konishi5ad2686e92010-07-13 23:33:54 +090097 * @b_nchildren_per_block: maximum number of child nodes for non-root nodes
Koji Satobdb265e2009-04-06 19:01:23 -070098 */
99struct nilfs_bmap {
100 union {
101 __u8 u_flags;
102 __le64 u_data[NILFS_BMAP_SIZE / sizeof(__le64)];
103 } b_u;
104 struct rw_semaphore b_sem;
105 struct inode *b_inode;
106 const struct nilfs_bmap_operations *b_ops;
Koji Satobdb265e2009-04-06 19:01:23 -0700107 __u64 b_last_allocated_key;
108 __u64 b_last_allocated_ptr;
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900109 int b_ptr_type;
Koji Satobdb265e2009-04-06 19:01:23 -0700110 int b_state;
Ryusuke Konishi5ad2686e92010-07-13 23:33:54 +0900111 __u16 b_nchildren_per_block;
Koji Satobdb265e2009-04-06 19:01:23 -0700112};
113
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900114/* pointer type */
115#define NILFS_BMAP_PTR_P 0 /* physical block number (i.e. LBN) */
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700116#define NILFS_BMAP_PTR_VS 1 /*
117 * virtual block number (single
118 * version)
119 */
120#define NILFS_BMAP_PTR_VM 2 /*
121 * virtual block number (has multiple
122 * versions)
123 */
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900124#define NILFS_BMAP_PTR_U (-1) /* never perform pointer operations */
125
126#define NILFS_BMAP_USE_VBN(bmap) ((bmap)->b_ptr_type > 0)
127
Koji Satobdb265e2009-04-06 19:01:23 -0700128/* state */
129#define NILFS_BMAP_DIRTY 0x00000001
130
Vyacheslav Dubeykof5974c82012-07-30 14:42:10 -0700131/**
132 * struct nilfs_bmap_store - shadow copy of bmap state
133 * @data: cached raw block mapping of on-disk inode
134 * @last_allocated_key: cached value of last allocated key for data block
135 * @last_allocated_ptr: cached value of last allocated ptr for data block
136 * @state: cached value of state field of bmap structure
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 Konishi0c6c44c2016-05-23 16:23:39 -0700148int nilfs_bmap_lookup_contig(struct nilfs_bmap *, __u64, __u64 *, unsigned int);
Ryusuke Konishi3568a132015-04-16 12:46:34 -0700149int nilfs_bmap_insert(struct nilfs_bmap *bmap, __u64 key, unsigned long rec);
150int nilfs_bmap_delete(struct nilfs_bmap *bmap, __u64 key);
Ryusuke Konishi5b203842015-04-16 12:46:36 -0700151int nilfs_bmap_seek_key(struct nilfs_bmap *bmap, __u64 start, __u64 *keyp);
Ryusuke Konishi3568a132015-04-16 12:46:34 -0700152int nilfs_bmap_last_key(struct nilfs_bmap *bmap, __u64 *keyp);
153int nilfs_bmap_truncate(struct nilfs_bmap *bmap, __u64 key);
Koji Satobdb265e2009-04-06 19:01:23 -0700154void nilfs_bmap_clear(struct nilfs_bmap *);
155int nilfs_bmap_propagate(struct nilfs_bmap *, struct buffer_head *);
156void nilfs_bmap_lookup_dirty_buffers(struct nilfs_bmap *, struct list_head *);
157int nilfs_bmap_assign(struct nilfs_bmap *, struct buffer_head **,
158 unsigned long, union nilfs_binfo *);
159int nilfs_bmap_lookup_at_level(struct nilfs_bmap *, __u64, int, __u64 *);
160int nilfs_bmap_mark(struct nilfs_bmap *, __u64, int);
161
162void nilfs_bmap_init_gc(struct nilfs_bmap *);
Koji Satobdb265e2009-04-06 19:01:23 -0700163
Ryusuke Konishia8070dd2010-08-30 23:42:18 +0900164void nilfs_bmap_save(const struct nilfs_bmap *, struct nilfs_bmap_store *);
165void nilfs_bmap_restore(struct nilfs_bmap *, const struct nilfs_bmap_store *);
Koji Satobdb265e2009-04-06 19:01:23 -0700166
Ryusuke Konishi0f3fe332009-08-15 02:29:28 +0900167static inline int nilfs_bmap_lookup(struct nilfs_bmap *bmap, __u64 key,
168 __u64 *ptr)
169{
170 return nilfs_bmap_lookup_at_level(bmap, key, 1, ptr);
171}
172
Koji Satobdb265e2009-04-06 19:01:23 -0700173/*
174 * Internal use only
175 */
Ryusuke Konishic3a7abf2009-05-25 02:47:14 +0900176struct inode *nilfs_bmap_get_dat(const struct nilfs_bmap *);
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900177
178static inline int nilfs_bmap_prepare_alloc_ptr(struct nilfs_bmap *bmap,
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900179 union nilfs_bmap_ptr_req *req,
180 struct inode *dat)
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900181{
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900182 if (dat)
183 return nilfs_dat_prepare_alloc(dat, &req->bpr_req);
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900184 /* ignore target ptr */
185 req->bpr_ptr = bmap->b_last_allocated_ptr++;
186 return 0;
187}
188
189static inline void nilfs_bmap_commit_alloc_ptr(struct nilfs_bmap *bmap,
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900190 union nilfs_bmap_ptr_req *req,
191 struct inode *dat)
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900192{
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900193 if (dat)
194 nilfs_dat_commit_alloc(dat, &req->bpr_req);
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900195}
196
197static inline void nilfs_bmap_abort_alloc_ptr(struct nilfs_bmap *bmap,
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900198 union nilfs_bmap_ptr_req *req,
199 struct inode *dat)
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900200{
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900201 if (dat)
202 nilfs_dat_abort_alloc(dat, &req->bpr_req);
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900203 else
204 bmap->b_last_allocated_ptr--;
205}
206
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900207static inline int nilfs_bmap_prepare_end_ptr(struct nilfs_bmap *bmap,
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900208 union nilfs_bmap_ptr_req *req,
209 struct inode *dat)
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900210{
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900211 return dat ? nilfs_dat_prepare_end(dat, &req->bpr_req) : 0;
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900212}
213
214static inline void nilfs_bmap_commit_end_ptr(struct nilfs_bmap *bmap,
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900215 union nilfs_bmap_ptr_req *req,
216 struct inode *dat)
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900217{
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900218 if (dat)
219 nilfs_dat_commit_end(dat, &req->bpr_req,
220 bmap->b_ptr_type == NILFS_BMAP_PTR_VS);
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900221}
222
223static inline void nilfs_bmap_abort_end_ptr(struct nilfs_bmap *bmap,
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900224 union nilfs_bmap_ptr_req *req,
225 struct inode *dat)
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900226{
Ryusuke Konishi2e0c2c72009-08-15 15:34:33 +0900227 if (dat)
228 nilfs_dat_abort_end(dat, &req->bpr_req);
Ryusuke Konishid4b96152009-05-24 03:25:44 +0900229}
Koji Satobdb265e2009-04-06 19:01:23 -0700230
Ryusuke Konishidc935be2010-07-10 22:21:54 +0900231static inline void nilfs_bmap_set_target_v(struct nilfs_bmap *bmap, __u64 key,
232 __u64 ptr)
233{
234 bmap->b_last_allocated_key = key;
235 bmap->b_last_allocated_ptr = ptr;
236}
237
Koji Satobdb265e2009-04-06 19:01:23 -0700238__u64 nilfs_bmap_data_get_key(const struct nilfs_bmap *,
239 const struct buffer_head *);
240
241__u64 nilfs_bmap_find_target_seq(const struct nilfs_bmap *, __u64);
242__u64 nilfs_bmap_find_target_in_group(const struct nilfs_bmap *);
243
Koji Satobdb265e2009-04-06 19:01:23 -0700244
Koji Satobdb265e2009-04-06 19:01:23 -0700245/* Assume that bmap semaphore is locked. */
246static inline int nilfs_bmap_dirty(const struct nilfs_bmap *bmap)
247{
248 return !!(bmap->b_state & NILFS_BMAP_DIRTY);
249}
250
251/* Assume that bmap semaphore is locked. */
252static inline void nilfs_bmap_set_dirty(struct nilfs_bmap *bmap)
253{
254 bmap->b_state |= NILFS_BMAP_DIRTY;
255}
256
257/* Assume that bmap semaphore is locked. */
258static inline void nilfs_bmap_clear_dirty(struct nilfs_bmap *bmap)
259{
260 bmap->b_state &= ~NILFS_BMAP_DIRTY;
261}
262
263
264#define NILFS_BMAP_LARGE 0x1
265
266#define NILFS_BMAP_SMALL_LOW NILFS_DIRECT_KEY_MIN
267#define NILFS_BMAP_SMALL_HIGH NILFS_DIRECT_KEY_MAX
268#define NILFS_BMAP_LARGE_LOW NILFS_BTREE_ROOT_NCHILDREN_MAX
269#define NILFS_BMAP_LARGE_HIGH NILFS_BTREE_KEY_MAX
270
271#endif /* _NILFS_BMAP_H */