blob: a342f008e42f9e795bedd6312ee50dedd9c99783 [file] [log] [blame]
Mark Fashehccd979b2005-12-15 14:31:24 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * alloc.c
5 *
6 * Extent allocs and frees
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
24 */
25
26#include <linux/fs.h>
27#include <linux/types.h>
28#include <linux/slab.h>
29#include <linux/highmem.h>
Mark Fasheh60b11392007-02-16 11:46:50 -080030#include <linux/swap.h>
Jan Karaa90714c2008-10-09 19:38:40 +020031#include <linux/quotaops.h>
Tao Mae80de362011-05-23 10:36:43 +080032#include <linux/blkdev.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010033#include <linux/sched/signal.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080034
Mark Fashehccd979b2005-12-15 14:31:24 -080035#include <cluster/masklog.h>
36
37#include "ocfs2.h"
38
39#include "alloc.h"
Mark Fasheh60b11392007-02-16 11:46:50 -080040#include "aops.h"
Joel Beckerd6b32bb2008-10-17 14:55:01 -070041#include "blockcheck.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080042#include "dlmglue.h"
43#include "extent_map.h"
44#include "inode.h"
45#include "journal.h"
46#include "localalloc.h"
47#include "suballoc.h"
48#include "sysfile.h"
49#include "file.h"
50#include "super.h"
51#include "uptodate.h"
Joel Becker2a50a742008-12-09 14:24:33 -080052#include "xattr.h"
Tao Mabcbbb242009-08-18 11:29:12 +080053#include "refcounttree.h"
Tao Maa09d09b2011-02-22 08:21:10 +080054#include "ocfs2_trace.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080055
56#include "buffer_head_io.h"
57
Tao Ma853a3a12009-08-18 11:22:18 +080058enum ocfs2_contig_type {
59 CONTIG_NONE = 0,
60 CONTIG_LEFT,
61 CONTIG_RIGHT,
62 CONTIG_LEFTRIGHT,
63};
Tao Mae7d4cb62008-08-18 17:38:44 +080064
Tao Ma853a3a12009-08-18 11:22:18 +080065static enum ocfs2_contig_type
66 ocfs2_extent_rec_contig(struct super_block *sb,
67 struct ocfs2_extent_rec *ext,
68 struct ocfs2_extent_rec *insert_rec);
Joel Becker1625f8a2008-08-21 17:11:10 -070069/*
70 * Operations for a specific extent tree type.
71 *
72 * To implement an on-disk btree (extent tree) type in ocfs2, add
73 * an ocfs2_extent_tree_operations structure and the matching
Joel Becker8d6220d2008-08-22 12:46:09 -070074 * ocfs2_init_<thingy>_extent_tree() function. That's pretty much it
Joel Becker1625f8a2008-08-21 17:11:10 -070075 * for the allocation portion of the extent tree.
76 */
Tao Mae7d4cb62008-08-18 17:38:44 +080077struct ocfs2_extent_tree_operations {
Joel Becker1625f8a2008-08-21 17:11:10 -070078 /*
79 * last_eb_blk is the block number of the right most leaf extent
80 * block. Most on-disk structures containing an extent tree store
81 * this value for fast access. The ->eo_set_last_eb_blk() and
82 * ->eo_get_last_eb_blk() operations access this value. They are
83 * both required.
84 */
Joel Becker35dc0aa2008-08-20 16:25:06 -070085 void (*eo_set_last_eb_blk)(struct ocfs2_extent_tree *et,
86 u64 blkno);
87 u64 (*eo_get_last_eb_blk)(struct ocfs2_extent_tree *et);
Joel Becker1625f8a2008-08-21 17:11:10 -070088
89 /*
90 * The on-disk structure usually keeps track of how many total
91 * clusters are stored in this extent tree. This function updates
92 * that value. new_clusters is the delta, and must be
93 * added to the total. Required.
94 */
Joel Becker6136ca52009-02-12 19:32:43 -080095 void (*eo_update_clusters)(struct ocfs2_extent_tree *et,
Joel Becker35dc0aa2008-08-20 16:25:06 -070096 u32 new_clusters);
Joel Becker1625f8a2008-08-21 17:11:10 -070097
98 /*
Joel Becker92ba4702009-02-13 03:18:34 -080099 * If this extent tree is supported by an extent map, insert
100 * a record into the map.
101 */
102 void (*eo_extent_map_insert)(struct ocfs2_extent_tree *et,
103 struct ocfs2_extent_rec *rec);
104
105 /*
Joel Becker4c911ee2009-02-13 02:50:12 -0800106 * If this extent tree is supported by an extent map, truncate the
107 * map to clusters,
108 */
109 void (*eo_extent_map_truncate)(struct ocfs2_extent_tree *et,
110 u32 clusters);
111
112 /*
Joel Becker1625f8a2008-08-21 17:11:10 -0700113 * If ->eo_insert_check() exists, it is called before rec is
114 * inserted into the extent tree. It is optional.
115 */
Joel Becker6136ca52009-02-12 19:32:43 -0800116 int (*eo_insert_check)(struct ocfs2_extent_tree *et,
Joel Becker1e61ee72008-08-20 18:32:45 -0700117 struct ocfs2_extent_rec *rec);
Joel Becker6136ca52009-02-12 19:32:43 -0800118 int (*eo_sanity_check)(struct ocfs2_extent_tree *et);
Joel Becker0ce10102008-08-20 17:19:50 -0700119
Joel Becker1625f8a2008-08-21 17:11:10 -0700120 /*
121 * --------------------------------------------------------------
122 * The remaining are internal to ocfs2_extent_tree and don't have
123 * accessor functions
124 */
125
126 /*
127 * ->eo_fill_root_el() takes et->et_object and sets et->et_root_el.
128 * It is required.
129 */
Joel Becker0ce10102008-08-20 17:19:50 -0700130 void (*eo_fill_root_el)(struct ocfs2_extent_tree *et);
Joel Becker1625f8a2008-08-21 17:11:10 -0700131
132 /*
133 * ->eo_fill_max_leaf_clusters sets et->et_max_leaf_clusters if
134 * it exists. If it does not, et->et_max_leaf_clusters is set
135 * to 0 (unlimited). Optional.
136 */
Joel Becker6136ca52009-02-12 19:32:43 -0800137 void (*eo_fill_max_leaf_clusters)(struct ocfs2_extent_tree *et);
Tao Ma853a3a12009-08-18 11:22:18 +0800138
139 /*
140 * ->eo_extent_contig test whether the 2 ocfs2_extent_rec
141 * are contiguous or not. Optional. Don't need to set it if use
142 * ocfs2_extent_rec as the tree leaf.
143 */
144 enum ocfs2_contig_type
145 (*eo_extent_contig)(struct ocfs2_extent_tree *et,
146 struct ocfs2_extent_rec *ext,
147 struct ocfs2_extent_rec *insert_rec);
Tao Mae7d4cb62008-08-18 17:38:44 +0800148};
149
Joel Beckerf99b9b72008-08-20 19:36:33 -0700150
151/*
152 * Pre-declare ocfs2_dinode_et_ops so we can use it as a sanity check
153 * in the methods.
154 */
155static u64 ocfs2_dinode_get_last_eb_blk(struct ocfs2_extent_tree *et);
156static void ocfs2_dinode_set_last_eb_blk(struct ocfs2_extent_tree *et,
157 u64 blkno);
Joel Becker6136ca52009-02-12 19:32:43 -0800158static void ocfs2_dinode_update_clusters(struct ocfs2_extent_tree *et,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700159 u32 clusters);
Joel Becker92ba4702009-02-13 03:18:34 -0800160static void ocfs2_dinode_extent_map_insert(struct ocfs2_extent_tree *et,
161 struct ocfs2_extent_rec *rec);
Joel Becker4c911ee2009-02-13 02:50:12 -0800162static void ocfs2_dinode_extent_map_truncate(struct ocfs2_extent_tree *et,
163 u32 clusters);
Joel Becker6136ca52009-02-12 19:32:43 -0800164static int ocfs2_dinode_insert_check(struct ocfs2_extent_tree *et,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700165 struct ocfs2_extent_rec *rec);
Joel Becker6136ca52009-02-12 19:32:43 -0800166static int ocfs2_dinode_sanity_check(struct ocfs2_extent_tree *et);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700167static void ocfs2_dinode_fill_root_el(struct ocfs2_extent_tree *et);
Changwei Ge71a36942018-01-31 16:15:06 -0800168
169static int ocfs2_reuse_blk_from_dealloc(handle_t *handle,
170 struct ocfs2_extent_tree *et,
171 struct buffer_head **new_eb_bh,
172 int blk_wanted, int *blk_given);
173static int ocfs2_is_dealloc_empty(struct ocfs2_extent_tree *et);
174
Julia Lawall9e62dc02016-01-14 15:17:21 -0800175static const struct ocfs2_extent_tree_operations ocfs2_dinode_et_ops = {
Joel Beckerf99b9b72008-08-20 19:36:33 -0700176 .eo_set_last_eb_blk = ocfs2_dinode_set_last_eb_blk,
177 .eo_get_last_eb_blk = ocfs2_dinode_get_last_eb_blk,
178 .eo_update_clusters = ocfs2_dinode_update_clusters,
Joel Becker92ba4702009-02-13 03:18:34 -0800179 .eo_extent_map_insert = ocfs2_dinode_extent_map_insert,
Joel Becker4c911ee2009-02-13 02:50:12 -0800180 .eo_extent_map_truncate = ocfs2_dinode_extent_map_truncate,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700181 .eo_insert_check = ocfs2_dinode_insert_check,
182 .eo_sanity_check = ocfs2_dinode_sanity_check,
183 .eo_fill_root_el = ocfs2_dinode_fill_root_el,
Tao Mae7d4cb62008-08-18 17:38:44 +0800184};
185
186static void ocfs2_dinode_set_last_eb_blk(struct ocfs2_extent_tree *et,
187 u64 blkno)
188{
Joel Beckerea5efa12008-08-20 16:57:27 -0700189 struct ocfs2_dinode *di = et->et_object;
Tao Mae7d4cb62008-08-18 17:38:44 +0800190
Joel Beckerf99b9b72008-08-20 19:36:33 -0700191 BUG_ON(et->et_ops != &ocfs2_dinode_et_ops);
Tao Mae7d4cb62008-08-18 17:38:44 +0800192 di->i_last_eb_blk = cpu_to_le64(blkno);
193}
194
195static u64 ocfs2_dinode_get_last_eb_blk(struct ocfs2_extent_tree *et)
196{
Joel Beckerea5efa12008-08-20 16:57:27 -0700197 struct ocfs2_dinode *di = et->et_object;
Tao Mae7d4cb62008-08-18 17:38:44 +0800198
Joel Beckerf99b9b72008-08-20 19:36:33 -0700199 BUG_ON(et->et_ops != &ocfs2_dinode_et_ops);
Tao Mae7d4cb62008-08-18 17:38:44 +0800200 return le64_to_cpu(di->i_last_eb_blk);
201}
202
Joel Becker6136ca52009-02-12 19:32:43 -0800203static void ocfs2_dinode_update_clusters(struct ocfs2_extent_tree *et,
Tao Mae7d4cb62008-08-18 17:38:44 +0800204 u32 clusters)
205{
Joel Becker6136ca52009-02-12 19:32:43 -0800206 struct ocfs2_inode_info *oi = cache_info_to_inode(et->et_ci);
Joel Beckerea5efa12008-08-20 16:57:27 -0700207 struct ocfs2_dinode *di = et->et_object;
Tao Mae7d4cb62008-08-18 17:38:44 +0800208
209 le32_add_cpu(&di->i_clusters, clusters);
Joel Becker6136ca52009-02-12 19:32:43 -0800210 spin_lock(&oi->ip_lock);
211 oi->ip_clusters = le32_to_cpu(di->i_clusters);
212 spin_unlock(&oi->ip_lock);
Tao Mae7d4cb62008-08-18 17:38:44 +0800213}
214
Joel Becker92ba4702009-02-13 03:18:34 -0800215static void ocfs2_dinode_extent_map_insert(struct ocfs2_extent_tree *et,
216 struct ocfs2_extent_rec *rec)
217{
218 struct inode *inode = &cache_info_to_inode(et->et_ci)->vfs_inode;
219
220 ocfs2_extent_map_insert_rec(inode, rec);
221}
222
Joel Becker4c911ee2009-02-13 02:50:12 -0800223static void ocfs2_dinode_extent_map_truncate(struct ocfs2_extent_tree *et,
224 u32 clusters)
225{
226 struct inode *inode = &cache_info_to_inode(et->et_ci)->vfs_inode;
227
228 ocfs2_extent_map_trunc(inode, clusters);
229}
230
Joel Becker6136ca52009-02-12 19:32:43 -0800231static int ocfs2_dinode_insert_check(struct ocfs2_extent_tree *et,
Joel Becker1e61ee72008-08-20 18:32:45 -0700232 struct ocfs2_extent_rec *rec)
233{
Joel Becker6136ca52009-02-12 19:32:43 -0800234 struct ocfs2_inode_info *oi = cache_info_to_inode(et->et_ci);
235 struct ocfs2_super *osb = OCFS2_SB(oi->vfs_inode.i_sb);
Joel Becker1e61ee72008-08-20 18:32:45 -0700236
Joel Becker6136ca52009-02-12 19:32:43 -0800237 BUG_ON(oi->ip_dyn_features & OCFS2_INLINE_DATA_FL);
Joel Becker1e61ee72008-08-20 18:32:45 -0700238 mlog_bug_on_msg(!ocfs2_sparse_alloc(osb) &&
Joel Becker6136ca52009-02-12 19:32:43 -0800239 (oi->ip_clusters != le32_to_cpu(rec->e_cpos)),
Joel Becker1e61ee72008-08-20 18:32:45 -0700240 "Device %s, asking for sparse allocation: inode %llu, "
241 "cpos %u, clusters %u\n",
242 osb->dev_str,
Joel Becker6136ca52009-02-12 19:32:43 -0800243 (unsigned long long)oi->ip_blkno,
244 rec->e_cpos, oi->ip_clusters);
Joel Becker1e61ee72008-08-20 18:32:45 -0700245
246 return 0;
247}
248
Joel Becker6136ca52009-02-12 19:32:43 -0800249static int ocfs2_dinode_sanity_check(struct ocfs2_extent_tree *et)
Tao Mae7d4cb62008-08-18 17:38:44 +0800250{
Joel Becker10995aa2008-11-13 14:49:12 -0800251 struct ocfs2_dinode *di = et->et_object;
Tao Mae7d4cb62008-08-18 17:38:44 +0800252
Joel Beckerf99b9b72008-08-20 19:36:33 -0700253 BUG_ON(et->et_ops != &ocfs2_dinode_et_ops);
Joel Becker10995aa2008-11-13 14:49:12 -0800254 BUG_ON(!OCFS2_IS_VALID_DINODE(di));
Tao Mae7d4cb62008-08-18 17:38:44 +0800255
Joel Becker10995aa2008-11-13 14:49:12 -0800256 return 0;
Tao Mae7d4cb62008-08-18 17:38:44 +0800257}
258
Joel Beckerf99b9b72008-08-20 19:36:33 -0700259static void ocfs2_dinode_fill_root_el(struct ocfs2_extent_tree *et)
260{
261 struct ocfs2_dinode *di = et->et_object;
262
263 et->et_root_el = &di->id2.i_list;
264}
265
Tao Mae7d4cb62008-08-18 17:38:44 +0800266
Joel Becker0ce10102008-08-20 17:19:50 -0700267static void ocfs2_xattr_value_fill_root_el(struct ocfs2_extent_tree *et)
268{
Joel Becker2a50a742008-12-09 14:24:33 -0800269 struct ocfs2_xattr_value_buf *vb = et->et_object;
Joel Becker0ce10102008-08-20 17:19:50 -0700270
Joel Becker2a50a742008-12-09 14:24:33 -0800271 et->et_root_el = &vb->vb_xv->xr_list;
Joel Becker0ce10102008-08-20 17:19:50 -0700272}
273
Tao Maf56654c2008-08-18 17:38:48 +0800274static void ocfs2_xattr_value_set_last_eb_blk(struct ocfs2_extent_tree *et,
275 u64 blkno)
276{
Joel Becker2a50a742008-12-09 14:24:33 -0800277 struct ocfs2_xattr_value_buf *vb = et->et_object;
Tao Maf56654c2008-08-18 17:38:48 +0800278
Joel Becker2a50a742008-12-09 14:24:33 -0800279 vb->vb_xv->xr_last_eb_blk = cpu_to_le64(blkno);
Tao Maf56654c2008-08-18 17:38:48 +0800280}
281
282static u64 ocfs2_xattr_value_get_last_eb_blk(struct ocfs2_extent_tree *et)
283{
Joel Becker2a50a742008-12-09 14:24:33 -0800284 struct ocfs2_xattr_value_buf *vb = et->et_object;
Tao Maf56654c2008-08-18 17:38:48 +0800285
Joel Becker2a50a742008-12-09 14:24:33 -0800286 return le64_to_cpu(vb->vb_xv->xr_last_eb_blk);
Tao Maf56654c2008-08-18 17:38:48 +0800287}
288
Joel Becker6136ca52009-02-12 19:32:43 -0800289static void ocfs2_xattr_value_update_clusters(struct ocfs2_extent_tree *et,
Tao Maf56654c2008-08-18 17:38:48 +0800290 u32 clusters)
291{
Joel Becker2a50a742008-12-09 14:24:33 -0800292 struct ocfs2_xattr_value_buf *vb = et->et_object;
Tao Maf56654c2008-08-18 17:38:48 +0800293
Joel Becker2a50a742008-12-09 14:24:33 -0800294 le32_add_cpu(&vb->vb_xv->xr_clusters, clusters);
Tao Maf56654c2008-08-18 17:38:48 +0800295}
296
Julia Lawall9e62dc02016-01-14 15:17:21 -0800297static const struct ocfs2_extent_tree_operations ocfs2_xattr_value_et_ops = {
Joel Becker35dc0aa2008-08-20 16:25:06 -0700298 .eo_set_last_eb_blk = ocfs2_xattr_value_set_last_eb_blk,
299 .eo_get_last_eb_blk = ocfs2_xattr_value_get_last_eb_blk,
300 .eo_update_clusters = ocfs2_xattr_value_update_clusters,
Joel Becker0ce10102008-08-20 17:19:50 -0700301 .eo_fill_root_el = ocfs2_xattr_value_fill_root_el,
Tao Maf56654c2008-08-18 17:38:48 +0800302};
303
Joel Becker0ce10102008-08-20 17:19:50 -0700304static void ocfs2_xattr_tree_fill_root_el(struct ocfs2_extent_tree *et)
305{
306 struct ocfs2_xattr_block *xb = et->et_object;
307
308 et->et_root_el = &xb->xb_attrs.xb_root.xt_list;
309}
310
Joel Becker6136ca52009-02-12 19:32:43 -0800311static void ocfs2_xattr_tree_fill_max_leaf_clusters(struct ocfs2_extent_tree *et)
Joel Becker943cced2008-08-20 17:31:10 -0700312{
Joel Becker6136ca52009-02-12 19:32:43 -0800313 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Joel Becker943cced2008-08-20 17:31:10 -0700314 et->et_max_leaf_clusters =
Joel Becker6136ca52009-02-12 19:32:43 -0800315 ocfs2_clusters_for_bytes(sb, OCFS2_MAX_XATTR_TREE_LEAF_SIZE);
Joel Becker943cced2008-08-20 17:31:10 -0700316}
317
Tao Maba492612008-08-18 17:38:49 +0800318static void ocfs2_xattr_tree_set_last_eb_blk(struct ocfs2_extent_tree *et,
319 u64 blkno)
320{
Joel Beckerea5efa12008-08-20 16:57:27 -0700321 struct ocfs2_xattr_block *xb = et->et_object;
Tao Maba492612008-08-18 17:38:49 +0800322 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root;
323
324 xt->xt_last_eb_blk = cpu_to_le64(blkno);
325}
326
327static u64 ocfs2_xattr_tree_get_last_eb_blk(struct ocfs2_extent_tree *et)
328{
Joel Beckerea5efa12008-08-20 16:57:27 -0700329 struct ocfs2_xattr_block *xb = et->et_object;
Tao Maba492612008-08-18 17:38:49 +0800330 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root;
331
332 return le64_to_cpu(xt->xt_last_eb_blk);
333}
334
Joel Becker6136ca52009-02-12 19:32:43 -0800335static void ocfs2_xattr_tree_update_clusters(struct ocfs2_extent_tree *et,
Tao Maba492612008-08-18 17:38:49 +0800336 u32 clusters)
337{
Joel Beckerea5efa12008-08-20 16:57:27 -0700338 struct ocfs2_xattr_block *xb = et->et_object;
Tao Maba492612008-08-18 17:38:49 +0800339
340 le32_add_cpu(&xb->xb_attrs.xb_root.xt_clusters, clusters);
341}
342
Julia Lawall9e62dc02016-01-14 15:17:21 -0800343static const struct ocfs2_extent_tree_operations ocfs2_xattr_tree_et_ops = {
Joel Becker35dc0aa2008-08-20 16:25:06 -0700344 .eo_set_last_eb_blk = ocfs2_xattr_tree_set_last_eb_blk,
345 .eo_get_last_eb_blk = ocfs2_xattr_tree_get_last_eb_blk,
346 .eo_update_clusters = ocfs2_xattr_tree_update_clusters,
Joel Becker0ce10102008-08-20 17:19:50 -0700347 .eo_fill_root_el = ocfs2_xattr_tree_fill_root_el,
Joel Becker943cced2008-08-20 17:31:10 -0700348 .eo_fill_max_leaf_clusters = ocfs2_xattr_tree_fill_max_leaf_clusters,
Tao Maba492612008-08-18 17:38:49 +0800349};
350
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800351static void ocfs2_dx_root_set_last_eb_blk(struct ocfs2_extent_tree *et,
352 u64 blkno)
353{
354 struct ocfs2_dx_root_block *dx_root = et->et_object;
355
356 dx_root->dr_last_eb_blk = cpu_to_le64(blkno);
357}
358
359static u64 ocfs2_dx_root_get_last_eb_blk(struct ocfs2_extent_tree *et)
360{
361 struct ocfs2_dx_root_block *dx_root = et->et_object;
362
363 return le64_to_cpu(dx_root->dr_last_eb_blk);
364}
365
Joel Becker6136ca52009-02-12 19:32:43 -0800366static void ocfs2_dx_root_update_clusters(struct ocfs2_extent_tree *et,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800367 u32 clusters)
368{
369 struct ocfs2_dx_root_block *dx_root = et->et_object;
370
371 le32_add_cpu(&dx_root->dr_clusters, clusters);
372}
373
Joel Becker6136ca52009-02-12 19:32:43 -0800374static int ocfs2_dx_root_sanity_check(struct ocfs2_extent_tree *et)
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800375{
376 struct ocfs2_dx_root_block *dx_root = et->et_object;
377
378 BUG_ON(!OCFS2_IS_VALID_DX_ROOT(dx_root));
379
380 return 0;
381}
382
383static void ocfs2_dx_root_fill_root_el(struct ocfs2_extent_tree *et)
384{
385 struct ocfs2_dx_root_block *dx_root = et->et_object;
386
387 et->et_root_el = &dx_root->dr_list;
388}
389
Julia Lawall9e62dc02016-01-14 15:17:21 -0800390static const struct ocfs2_extent_tree_operations ocfs2_dx_root_et_ops = {
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800391 .eo_set_last_eb_blk = ocfs2_dx_root_set_last_eb_blk,
392 .eo_get_last_eb_blk = ocfs2_dx_root_get_last_eb_blk,
393 .eo_update_clusters = ocfs2_dx_root_update_clusters,
394 .eo_sanity_check = ocfs2_dx_root_sanity_check,
395 .eo_fill_root_el = ocfs2_dx_root_fill_root_el,
396};
397
Tao Mafe924412009-08-18 11:22:25 +0800398static void ocfs2_refcount_tree_fill_root_el(struct ocfs2_extent_tree *et)
399{
400 struct ocfs2_refcount_block *rb = et->et_object;
401
402 et->et_root_el = &rb->rf_list;
403}
404
405static void ocfs2_refcount_tree_set_last_eb_blk(struct ocfs2_extent_tree *et,
406 u64 blkno)
407{
408 struct ocfs2_refcount_block *rb = et->et_object;
409
410 rb->rf_last_eb_blk = cpu_to_le64(blkno);
411}
412
413static u64 ocfs2_refcount_tree_get_last_eb_blk(struct ocfs2_extent_tree *et)
414{
415 struct ocfs2_refcount_block *rb = et->et_object;
416
417 return le64_to_cpu(rb->rf_last_eb_blk);
418}
419
420static void ocfs2_refcount_tree_update_clusters(struct ocfs2_extent_tree *et,
421 u32 clusters)
422{
423 struct ocfs2_refcount_block *rb = et->et_object;
424
425 le32_add_cpu(&rb->rf_clusters, clusters);
426}
427
428static enum ocfs2_contig_type
429ocfs2_refcount_tree_extent_contig(struct ocfs2_extent_tree *et,
430 struct ocfs2_extent_rec *ext,
431 struct ocfs2_extent_rec *insert_rec)
432{
433 return CONTIG_NONE;
434}
435
Julia Lawall9e62dc02016-01-14 15:17:21 -0800436static const struct ocfs2_extent_tree_operations ocfs2_refcount_tree_et_ops = {
Tao Mafe924412009-08-18 11:22:25 +0800437 .eo_set_last_eb_blk = ocfs2_refcount_tree_set_last_eb_blk,
438 .eo_get_last_eb_blk = ocfs2_refcount_tree_get_last_eb_blk,
439 .eo_update_clusters = ocfs2_refcount_tree_update_clusters,
440 .eo_fill_root_el = ocfs2_refcount_tree_fill_root_el,
441 .eo_extent_contig = ocfs2_refcount_tree_extent_contig,
442};
443
Joel Becker8d6220d2008-08-22 12:46:09 -0700444static void __ocfs2_init_extent_tree(struct ocfs2_extent_tree *et,
Joel Becker5e404e92009-02-13 03:54:22 -0800445 struct ocfs2_caching_info *ci,
Joel Becker8d6220d2008-08-22 12:46:09 -0700446 struct buffer_head *bh,
Joel Becker13723d02008-10-17 19:25:01 -0700447 ocfs2_journal_access_func access,
Joel Becker8d6220d2008-08-22 12:46:09 -0700448 void *obj,
Julia Lawall9e62dc02016-01-14 15:17:21 -0800449 const struct ocfs2_extent_tree_operations *ops)
Tao Mae7d4cb62008-08-18 17:38:44 +0800450{
Joel Becker1a09f552008-08-20 17:44:24 -0700451 et->et_ops = ops;
Joel Beckerce1d9ea2008-08-20 16:30:07 -0700452 et->et_root_bh = bh;
Joel Becker5e404e92009-02-13 03:54:22 -0800453 et->et_ci = ci;
Joel Becker13723d02008-10-17 19:25:01 -0700454 et->et_root_journal_access = access;
Joel Beckerea5efa12008-08-20 16:57:27 -0700455 if (!obj)
456 obj = (void *)bh->b_data;
457 et->et_object = obj;
Changwei Ge71a36942018-01-31 16:15:06 -0800458 et->et_dealloc = NULL;
Tao Mae7d4cb62008-08-18 17:38:44 +0800459
Joel Becker0ce10102008-08-20 17:19:50 -0700460 et->et_ops->eo_fill_root_el(et);
Joel Becker943cced2008-08-20 17:31:10 -0700461 if (!et->et_ops->eo_fill_max_leaf_clusters)
462 et->et_max_leaf_clusters = 0;
463 else
Joel Becker6136ca52009-02-12 19:32:43 -0800464 et->et_ops->eo_fill_max_leaf_clusters(et);
Tao Mae7d4cb62008-08-18 17:38:44 +0800465}
466
Joel Becker8d6220d2008-08-22 12:46:09 -0700467void ocfs2_init_dinode_extent_tree(struct ocfs2_extent_tree *et,
Joel Becker5e404e92009-02-13 03:54:22 -0800468 struct ocfs2_caching_info *ci,
Joel Becker8d6220d2008-08-22 12:46:09 -0700469 struct buffer_head *bh)
Joel Becker1a09f552008-08-20 17:44:24 -0700470{
Joel Becker5e404e92009-02-13 03:54:22 -0800471 __ocfs2_init_extent_tree(et, ci, bh, ocfs2_journal_access_di,
Joel Becker13723d02008-10-17 19:25:01 -0700472 NULL, &ocfs2_dinode_et_ops);
Joel Becker1a09f552008-08-20 17:44:24 -0700473}
474
Joel Becker8d6220d2008-08-22 12:46:09 -0700475void ocfs2_init_xattr_tree_extent_tree(struct ocfs2_extent_tree *et,
Joel Becker5e404e92009-02-13 03:54:22 -0800476 struct ocfs2_caching_info *ci,
Joel Becker8d6220d2008-08-22 12:46:09 -0700477 struct buffer_head *bh)
Joel Becker1a09f552008-08-20 17:44:24 -0700478{
Joel Becker5e404e92009-02-13 03:54:22 -0800479 __ocfs2_init_extent_tree(et, ci, bh, ocfs2_journal_access_xb,
Joel Becker13723d02008-10-17 19:25:01 -0700480 NULL, &ocfs2_xattr_tree_et_ops);
Joel Becker1a09f552008-08-20 17:44:24 -0700481}
482
Joel Becker8d6220d2008-08-22 12:46:09 -0700483void ocfs2_init_xattr_value_extent_tree(struct ocfs2_extent_tree *et,
Joel Becker5e404e92009-02-13 03:54:22 -0800484 struct ocfs2_caching_info *ci,
Joel Becker2a50a742008-12-09 14:24:33 -0800485 struct ocfs2_xattr_value_buf *vb)
Tao Mae7d4cb62008-08-18 17:38:44 +0800486{
Joel Becker5e404e92009-02-13 03:54:22 -0800487 __ocfs2_init_extent_tree(et, ci, vb->vb_bh, vb->vb_access, vb,
Joel Becker8d6220d2008-08-22 12:46:09 -0700488 &ocfs2_xattr_value_et_ops);
Tao Mae7d4cb62008-08-18 17:38:44 +0800489}
490
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800491void ocfs2_init_dx_root_extent_tree(struct ocfs2_extent_tree *et,
Joel Becker5e404e92009-02-13 03:54:22 -0800492 struct ocfs2_caching_info *ci,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800493 struct buffer_head *bh)
494{
Joel Becker5e404e92009-02-13 03:54:22 -0800495 __ocfs2_init_extent_tree(et, ci, bh, ocfs2_journal_access_dr,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800496 NULL, &ocfs2_dx_root_et_ops);
497}
498
Tao Mafe924412009-08-18 11:22:25 +0800499void ocfs2_init_refcount_extent_tree(struct ocfs2_extent_tree *et,
500 struct ocfs2_caching_info *ci,
501 struct buffer_head *bh)
502{
503 __ocfs2_init_extent_tree(et, ci, bh, ocfs2_journal_access_rb,
504 NULL, &ocfs2_refcount_tree_et_ops);
505}
506
Joel Becker35dc0aa2008-08-20 16:25:06 -0700507static inline void ocfs2_et_set_last_eb_blk(struct ocfs2_extent_tree *et,
508 u64 new_last_eb_blk)
Tao Mae7d4cb62008-08-18 17:38:44 +0800509{
Joel Beckerce1d9ea2008-08-20 16:30:07 -0700510 et->et_ops->eo_set_last_eb_blk(et, new_last_eb_blk);
Tao Mae7d4cb62008-08-18 17:38:44 +0800511}
512
Joel Becker35dc0aa2008-08-20 16:25:06 -0700513static inline u64 ocfs2_et_get_last_eb_blk(struct ocfs2_extent_tree *et)
Tao Mae7d4cb62008-08-18 17:38:44 +0800514{
Joel Beckerce1d9ea2008-08-20 16:30:07 -0700515 return et->et_ops->eo_get_last_eb_blk(et);
Tao Mae7d4cb62008-08-18 17:38:44 +0800516}
517
Joel Becker6136ca52009-02-12 19:32:43 -0800518static inline void ocfs2_et_update_clusters(struct ocfs2_extent_tree *et,
Joel Becker35dc0aa2008-08-20 16:25:06 -0700519 u32 clusters)
Tao Mae7d4cb62008-08-18 17:38:44 +0800520{
Joel Becker6136ca52009-02-12 19:32:43 -0800521 et->et_ops->eo_update_clusters(et, clusters);
Joel Becker35dc0aa2008-08-20 16:25:06 -0700522}
523
Joel Becker92ba4702009-02-13 03:18:34 -0800524static inline void ocfs2_et_extent_map_insert(struct ocfs2_extent_tree *et,
525 struct ocfs2_extent_rec *rec)
526{
527 if (et->et_ops->eo_extent_map_insert)
528 et->et_ops->eo_extent_map_insert(et, rec);
529}
530
Joel Becker4c911ee2009-02-13 02:50:12 -0800531static inline void ocfs2_et_extent_map_truncate(struct ocfs2_extent_tree *et,
532 u32 clusters)
533{
534 if (et->et_ops->eo_extent_map_truncate)
535 et->et_ops->eo_extent_map_truncate(et, clusters);
536}
537
Joel Becker13723d02008-10-17 19:25:01 -0700538static inline int ocfs2_et_root_journal_access(handle_t *handle,
Joel Becker13723d02008-10-17 19:25:01 -0700539 struct ocfs2_extent_tree *et,
540 int type)
541{
Joel Beckerd9a0a1f2009-02-12 17:32:34 -0800542 return et->et_root_journal_access(handle, et->et_ci, et->et_root_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700543 type);
544}
545
Tao Ma853a3a12009-08-18 11:22:18 +0800546static inline enum ocfs2_contig_type
547 ocfs2_et_extent_contig(struct ocfs2_extent_tree *et,
548 struct ocfs2_extent_rec *rec,
549 struct ocfs2_extent_rec *insert_rec)
550{
551 if (et->et_ops->eo_extent_contig)
552 return et->et_ops->eo_extent_contig(et, rec, insert_rec);
553
554 return ocfs2_extent_rec_contig(
555 ocfs2_metadata_cache_get_super(et->et_ci),
556 rec, insert_rec);
557}
558
Joel Becker6136ca52009-02-12 19:32:43 -0800559static inline int ocfs2_et_insert_check(struct ocfs2_extent_tree *et,
Joel Becker1e61ee72008-08-20 18:32:45 -0700560 struct ocfs2_extent_rec *rec)
561{
562 int ret = 0;
563
564 if (et->et_ops->eo_insert_check)
Joel Becker6136ca52009-02-12 19:32:43 -0800565 ret = et->et_ops->eo_insert_check(et, rec);
Joel Becker1e61ee72008-08-20 18:32:45 -0700566 return ret;
567}
568
Joel Becker6136ca52009-02-12 19:32:43 -0800569static inline int ocfs2_et_sanity_check(struct ocfs2_extent_tree *et)
Joel Becker35dc0aa2008-08-20 16:25:06 -0700570{
Joel Becker1e61ee72008-08-20 18:32:45 -0700571 int ret = 0;
572
573 if (et->et_ops->eo_sanity_check)
Joel Becker6136ca52009-02-12 19:32:43 -0800574 ret = et->et_ops->eo_sanity_check(et);
Joel Becker1e61ee72008-08-20 18:32:45 -0700575 return ret;
Tao Mae7d4cb62008-08-18 17:38:44 +0800576}
577
Mark Fasheh59a5e412007-06-22 15:52:36 -0700578static int ocfs2_cache_extent_block_free(struct ocfs2_cached_dealloc_ctxt *ctxt,
579 struct ocfs2_extent_block *eb);
Joel Beckerd401dc12009-02-13 02:24:10 -0800580static void ocfs2_adjust_rightmost_records(handle_t *handle,
581 struct ocfs2_extent_tree *et,
Tao Ma6b791bc2009-06-12 14:18:36 +0800582 struct ocfs2_path *path,
583 struct ocfs2_extent_rec *insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -0800584/*
585 * Reset the actual path elements so that we can re-use the structure
586 * to build another path. Generally, this involves freeing the buffer
587 * heads.
588 */
Tao Mae2e9f602009-08-18 11:22:34 +0800589void ocfs2_reinit_path(struct ocfs2_path *path, int keep_root)
Mark Fashehdcd05382007-01-16 11:32:23 -0800590{
591 int i, start = 0, depth = 0;
592 struct ocfs2_path_item *node;
593
594 if (keep_root)
595 start = 1;
596
597 for(i = start; i < path_num_items(path); i++) {
598 node = &path->p_node[i];
599
600 brelse(node->bh);
601 node->bh = NULL;
602 node->el = NULL;
603 }
604
605 /*
606 * Tree depth may change during truncate, or insert. If we're
607 * keeping the root extent list, then make sure that our path
608 * structure reflects the proper depth.
609 */
610 if (keep_root)
611 depth = le16_to_cpu(path_root_el(path)->l_tree_depth);
Joel Becker13723d02008-10-17 19:25:01 -0700612 else
613 path_root_access(path) = NULL;
Mark Fashehdcd05382007-01-16 11:32:23 -0800614
615 path->p_tree_depth = depth;
616}
617
Tao Mae2e9f602009-08-18 11:22:34 +0800618void ocfs2_free_path(struct ocfs2_path *path)
Mark Fashehdcd05382007-01-16 11:32:23 -0800619{
620 if (path) {
621 ocfs2_reinit_path(path, 0);
622 kfree(path);
623 }
624}
625
626/*
Mark Fasheh328d5752007-06-18 10:48:04 -0700627 * All the elements of src into dest. After this call, src could be freed
628 * without affecting dest.
629 *
630 * Both paths should have the same root. Any non-root elements of dest
631 * will be freed.
632 */
633static void ocfs2_cp_path(struct ocfs2_path *dest, struct ocfs2_path *src)
634{
635 int i;
636
637 BUG_ON(path_root_bh(dest) != path_root_bh(src));
638 BUG_ON(path_root_el(dest) != path_root_el(src));
Joel Becker13723d02008-10-17 19:25:01 -0700639 BUG_ON(path_root_access(dest) != path_root_access(src));
Mark Fasheh328d5752007-06-18 10:48:04 -0700640
641 ocfs2_reinit_path(dest, 1);
642
643 for(i = 1; i < OCFS2_MAX_PATH_DEPTH; i++) {
644 dest->p_node[i].bh = src->p_node[i].bh;
645 dest->p_node[i].el = src->p_node[i].el;
646
647 if (dest->p_node[i].bh)
648 get_bh(dest->p_node[i].bh);
649 }
650}
651
652/*
Mark Fashehdcd05382007-01-16 11:32:23 -0800653 * Make the *dest path the same as src and re-initialize src path to
654 * have a root only.
655 */
656static void ocfs2_mv_path(struct ocfs2_path *dest, struct ocfs2_path *src)
657{
658 int i;
659
660 BUG_ON(path_root_bh(dest) != path_root_bh(src));
Joel Becker13723d02008-10-17 19:25:01 -0700661 BUG_ON(path_root_access(dest) != path_root_access(src));
Mark Fashehdcd05382007-01-16 11:32:23 -0800662
663 for(i = 1; i < OCFS2_MAX_PATH_DEPTH; i++) {
664 brelse(dest->p_node[i].bh);
665
666 dest->p_node[i].bh = src->p_node[i].bh;
667 dest->p_node[i].el = src->p_node[i].el;
668
669 src->p_node[i].bh = NULL;
670 src->p_node[i].el = NULL;
671 }
672}
673
674/*
675 * Insert an extent block at given index.
676 *
677 * This will not take an additional reference on eb_bh.
678 */
679static inline void ocfs2_path_insert_eb(struct ocfs2_path *path, int index,
680 struct buffer_head *eb_bh)
681{
682 struct ocfs2_extent_block *eb = (struct ocfs2_extent_block *)eb_bh->b_data;
683
684 /*
685 * Right now, no root bh is an extent block, so this helps
686 * catch code errors with dinode trees. The assertion can be
687 * safely removed if we ever need to insert extent block
688 * structures at the root.
689 */
690 BUG_ON(index == 0);
691
692 path->p_node[index].bh = eb_bh;
693 path->p_node[index].el = &eb->h_list;
694}
695
696static struct ocfs2_path *ocfs2_new_path(struct buffer_head *root_bh,
Joel Becker13723d02008-10-17 19:25:01 -0700697 struct ocfs2_extent_list *root_el,
698 ocfs2_journal_access_func access)
Mark Fashehdcd05382007-01-16 11:32:23 -0800699{
700 struct ocfs2_path *path;
701
702 BUG_ON(le16_to_cpu(root_el->l_tree_depth) >= OCFS2_MAX_PATH_DEPTH);
703
704 path = kzalloc(sizeof(*path), GFP_NOFS);
705 if (path) {
706 path->p_tree_depth = le16_to_cpu(root_el->l_tree_depth);
707 get_bh(root_bh);
708 path_root_bh(path) = root_bh;
709 path_root_el(path) = root_el;
Joel Becker13723d02008-10-17 19:25:01 -0700710 path_root_access(path) = access;
Mark Fashehdcd05382007-01-16 11:32:23 -0800711 }
712
713 return path;
714}
715
Tao Mae2e9f602009-08-18 11:22:34 +0800716struct ocfs2_path *ocfs2_new_path_from_path(struct ocfs2_path *path)
Joel Beckerffdd7a52008-10-17 22:32:01 -0700717{
Joel Becker13723d02008-10-17 19:25:01 -0700718 return ocfs2_new_path(path_root_bh(path), path_root_el(path),
719 path_root_access(path));
Joel Beckerffdd7a52008-10-17 22:32:01 -0700720}
721
Tao Mae2e9f602009-08-18 11:22:34 +0800722struct ocfs2_path *ocfs2_new_path_from_et(struct ocfs2_extent_tree *et)
Joel Beckerffdd7a52008-10-17 22:32:01 -0700723{
Joel Becker13723d02008-10-17 19:25:01 -0700724 return ocfs2_new_path(et->et_root_bh, et->et_root_el,
725 et->et_root_journal_access);
726}
727
728/*
729 * Journal the buffer at depth idx. All idx>0 are extent_blocks,
730 * otherwise it's the root_access function.
731 *
732 * I don't like the way this function's name looks next to
733 * ocfs2_journal_access_path(), but I don't have a better one.
734 */
Tao Mae2e9f602009-08-18 11:22:34 +0800735int ocfs2_path_bh_journal_access(handle_t *handle,
736 struct ocfs2_caching_info *ci,
737 struct ocfs2_path *path,
738 int idx)
Joel Becker13723d02008-10-17 19:25:01 -0700739{
740 ocfs2_journal_access_func access = path_root_access(path);
741
742 if (!access)
743 access = ocfs2_journal_access;
744
745 if (idx)
746 access = ocfs2_journal_access_eb;
747
Joel Becker0cf2f762009-02-12 16:41:25 -0800748 return access(handle, ci, path->p_node[idx].bh,
Joel Becker13723d02008-10-17 19:25:01 -0700749 OCFS2_JOURNAL_ACCESS_WRITE);
Joel Beckerffdd7a52008-10-17 22:32:01 -0700750}
751
Mark Fashehdcd05382007-01-16 11:32:23 -0800752/*
Mark Fashehdcd05382007-01-16 11:32:23 -0800753 * Convenience function to journal all components in a path.
754 */
Tao Mae2e9f602009-08-18 11:22:34 +0800755int ocfs2_journal_access_path(struct ocfs2_caching_info *ci,
756 handle_t *handle,
757 struct ocfs2_path *path)
Mark Fashehdcd05382007-01-16 11:32:23 -0800758{
759 int i, ret = 0;
760
761 if (!path)
762 goto out;
763
764 for(i = 0; i < path_num_items(path); i++) {
Joel Becker0cf2f762009-02-12 16:41:25 -0800765 ret = ocfs2_path_bh_journal_access(handle, ci, path, i);
Mark Fashehdcd05382007-01-16 11:32:23 -0800766 if (ret < 0) {
767 mlog_errno(ret);
768 goto out;
769 }
770 }
771
772out:
773 return ret;
774}
775
Mark Fasheh328d5752007-06-18 10:48:04 -0700776/*
777 * Return the index of the extent record which contains cluster #v_cluster.
778 * -1 is returned if it was not found.
779 *
780 * Should work fine on interior and exterior nodes.
781 */
782int ocfs2_search_extent_list(struct ocfs2_extent_list *el, u32 v_cluster)
783{
784 int ret = -1;
785 int i;
786 struct ocfs2_extent_rec *rec;
787 u32 rec_end, rec_start, clusters;
788
789 for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
790 rec = &el->l_recs[i];
791
792 rec_start = le32_to_cpu(rec->e_cpos);
793 clusters = ocfs2_rec_clusters(el, rec);
794
795 rec_end = rec_start + clusters;
796
797 if (v_cluster >= rec_start && v_cluster < rec_end) {
798 ret = i;
799 break;
800 }
801 }
802
803 return ret;
804}
805
Mark Fashehe48edee2007-03-07 16:46:57 -0800806/*
807 * NOTE: ocfs2_block_extent_contig(), ocfs2_extents_adjacent() and
Tao Ma853a3a12009-08-18 11:22:18 +0800808 * ocfs2_extent_rec_contig only work properly against leaf nodes!
Mark Fashehe48edee2007-03-07 16:46:57 -0800809 */
Mark Fashehdcd05382007-01-16 11:32:23 -0800810static int ocfs2_block_extent_contig(struct super_block *sb,
811 struct ocfs2_extent_rec *ext,
812 u64 blkno)
Mark Fashehccd979b2005-12-15 14:31:24 -0800813{
Mark Fashehe48edee2007-03-07 16:46:57 -0800814 u64 blk_end = le64_to_cpu(ext->e_blkno);
815
816 blk_end += ocfs2_clusters_to_blocks(sb,
817 le16_to_cpu(ext->e_leaf_clusters));
818
819 return blkno == blk_end;
Mark Fashehccd979b2005-12-15 14:31:24 -0800820}
821
Mark Fashehdcd05382007-01-16 11:32:23 -0800822static int ocfs2_extents_adjacent(struct ocfs2_extent_rec *left,
823 struct ocfs2_extent_rec *right)
824{
Mark Fashehe48edee2007-03-07 16:46:57 -0800825 u32 left_range;
826
827 left_range = le32_to_cpu(left->e_cpos) +
828 le16_to_cpu(left->e_leaf_clusters);
829
830 return (left_range == le32_to_cpu(right->e_cpos));
Mark Fashehdcd05382007-01-16 11:32:23 -0800831}
832
833static enum ocfs2_contig_type
Tao Ma853a3a12009-08-18 11:22:18 +0800834 ocfs2_extent_rec_contig(struct super_block *sb,
835 struct ocfs2_extent_rec *ext,
836 struct ocfs2_extent_rec *insert_rec)
Mark Fashehdcd05382007-01-16 11:32:23 -0800837{
838 u64 blkno = le64_to_cpu(insert_rec->e_blkno);
839
Mark Fasheh328d5752007-06-18 10:48:04 -0700840 /*
841 * Refuse to coalesce extent records with different flag
842 * fields - we don't want to mix unwritten extents with user
843 * data.
844 */
845 if (ext->e_flags != insert_rec->e_flags)
846 return CONTIG_NONE;
847
Mark Fashehdcd05382007-01-16 11:32:23 -0800848 if (ocfs2_extents_adjacent(ext, insert_rec) &&
Joel Beckerb4a17652009-02-13 03:07:09 -0800849 ocfs2_block_extent_contig(sb, ext, blkno))
Mark Fashehdcd05382007-01-16 11:32:23 -0800850 return CONTIG_RIGHT;
851
852 blkno = le64_to_cpu(ext->e_blkno);
853 if (ocfs2_extents_adjacent(insert_rec, ext) &&
Joel Beckerb4a17652009-02-13 03:07:09 -0800854 ocfs2_block_extent_contig(sb, insert_rec, blkno))
Mark Fashehdcd05382007-01-16 11:32:23 -0800855 return CONTIG_LEFT;
856
857 return CONTIG_NONE;
858}
859
860/*
861 * NOTE: We can have pretty much any combination of contiguousness and
862 * appending.
863 *
864 * The usefulness of APPEND_TAIL is more in that it lets us know that
865 * we'll have to update the path to that leaf.
866 */
867enum ocfs2_append_type {
868 APPEND_NONE = 0,
869 APPEND_TAIL,
870};
871
Mark Fasheh328d5752007-06-18 10:48:04 -0700872enum ocfs2_split_type {
873 SPLIT_NONE = 0,
874 SPLIT_LEFT,
875 SPLIT_RIGHT,
876};
877
Mark Fashehdcd05382007-01-16 11:32:23 -0800878struct ocfs2_insert_type {
Mark Fasheh328d5752007-06-18 10:48:04 -0700879 enum ocfs2_split_type ins_split;
Mark Fashehdcd05382007-01-16 11:32:23 -0800880 enum ocfs2_append_type ins_appending;
881 enum ocfs2_contig_type ins_contig;
882 int ins_contig_index;
Mark Fashehdcd05382007-01-16 11:32:23 -0800883 int ins_tree_depth;
884};
885
Mark Fasheh328d5752007-06-18 10:48:04 -0700886struct ocfs2_merge_ctxt {
887 enum ocfs2_contig_type c_contig_type;
888 int c_has_empty_extent;
889 int c_split_covers_rec;
Mark Fasheh328d5752007-06-18 10:48:04 -0700890};
891
Joel Becker5e965812008-11-13 14:49:16 -0800892static int ocfs2_validate_extent_block(struct super_block *sb,
893 struct buffer_head *bh)
894{
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700895 int rc;
Joel Becker5e965812008-11-13 14:49:16 -0800896 struct ocfs2_extent_block *eb =
897 (struct ocfs2_extent_block *)bh->b_data;
898
Tao Maa09d09b2011-02-22 08:21:10 +0800899 trace_ocfs2_validate_extent_block((unsigned long long)bh->b_blocknr);
Joel Becker970e4932008-11-13 14:49:19 -0800900
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700901 BUG_ON(!buffer_uptodate(bh));
902
903 /*
904 * If the ecc fails, we return the error but otherwise
905 * leave the filesystem running. We know any error is
906 * local to this block.
907 */
908 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &eb->h_check);
Joel Becker13723d02008-10-17 19:25:01 -0700909 if (rc) {
910 mlog(ML_ERROR, "Checksum failed for extent block %llu\n",
911 (unsigned long long)bh->b_blocknr);
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700912 return rc;
Joel Becker13723d02008-10-17 19:25:01 -0700913 }
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700914
915 /*
916 * Errors after here are fatal.
917 */
918
Joel Becker5e965812008-11-13 14:49:16 -0800919 if (!OCFS2_IS_VALID_EXTENT_BLOCK(eb)) {
Goldwyn Rodrigues17a5b9a2015-09-04 15:44:17 -0700920 rc = ocfs2_error(sb,
Joe Perches7ecef142015-09-04 15:44:51 -0700921 "Extent block #%llu has bad signature %.*s\n",
922 (unsigned long long)bh->b_blocknr, 7,
923 eb->h_signature);
Goldwyn Rodrigues17a5b9a2015-09-04 15:44:17 -0700924 goto bail;
Joel Becker5e965812008-11-13 14:49:16 -0800925 }
926
927 if (le64_to_cpu(eb->h_blkno) != bh->b_blocknr) {
Goldwyn Rodrigues17a5b9a2015-09-04 15:44:17 -0700928 rc = ocfs2_error(sb,
Joe Perches7ecef142015-09-04 15:44:51 -0700929 "Extent block #%llu has an invalid h_blkno of %llu\n",
930 (unsigned long long)bh->b_blocknr,
931 (unsigned long long)le64_to_cpu(eb->h_blkno));
Goldwyn Rodrigues17a5b9a2015-09-04 15:44:17 -0700932 goto bail;
Joel Becker5e965812008-11-13 14:49:16 -0800933 }
934
wangyan229ba1f2018-08-17 15:44:27 -0700935 if (le32_to_cpu(eb->h_fs_generation) != OCFS2_SB(sb)->fs_generation)
Goldwyn Rodrigues17a5b9a2015-09-04 15:44:17 -0700936 rc = ocfs2_error(sb,
Joe Perches7ecef142015-09-04 15:44:51 -0700937 "Extent block #%llu has an invalid h_fs_generation of #%u\n",
938 (unsigned long long)bh->b_blocknr,
939 le32_to_cpu(eb->h_fs_generation));
Goldwyn Rodrigues17a5b9a2015-09-04 15:44:17 -0700940bail:
941 return rc;
Joel Becker5e965812008-11-13 14:49:16 -0800942}
943
Joel Becker3d03a302009-02-12 17:49:26 -0800944int ocfs2_read_extent_block(struct ocfs2_caching_info *ci, u64 eb_blkno,
Joel Becker5e965812008-11-13 14:49:16 -0800945 struct buffer_head **bh)
946{
947 int rc;
948 struct buffer_head *tmp = *bh;
949
Joel Becker3d03a302009-02-12 17:49:26 -0800950 rc = ocfs2_read_block(ci, eb_blkno, &tmp,
Joel Becker970e4932008-11-13 14:49:19 -0800951 ocfs2_validate_extent_block);
Joel Becker5e965812008-11-13 14:49:16 -0800952
953 /* If ocfs2_read_block() got us a new bh, pass it up. */
Joel Becker970e4932008-11-13 14:49:19 -0800954 if (!rc && !*bh)
Joel Becker5e965812008-11-13 14:49:16 -0800955 *bh = tmp;
956
Joel Becker5e965812008-11-13 14:49:16 -0800957 return rc;
958}
959
960
Mark Fashehccd979b2005-12-15 14:31:24 -0800961/*
962 * How many free extents have we got before we need more meta data?
963 */
Jun Piao964f14a2017-09-06 16:19:11 -0700964int ocfs2_num_free_extents(struct ocfs2_extent_tree *et)
Mark Fashehccd979b2005-12-15 14:31:24 -0800965{
966 int retval;
Tao Mae7d4cb62008-08-18 17:38:44 +0800967 struct ocfs2_extent_list *el = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800968 struct ocfs2_extent_block *eb;
969 struct buffer_head *eb_bh = NULL;
Tao Mae7d4cb62008-08-18 17:38:44 +0800970 u64 last_eb_blk = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800971
Joel Beckerf99b9b72008-08-20 19:36:33 -0700972 el = et->et_root_el;
973 last_eb_blk = ocfs2_et_get_last_eb_blk(et);
Mark Fashehccd979b2005-12-15 14:31:24 -0800974
Tao Mae7d4cb62008-08-18 17:38:44 +0800975 if (last_eb_blk) {
Joel Becker3d03a302009-02-12 17:49:26 -0800976 retval = ocfs2_read_extent_block(et->et_ci, last_eb_blk,
977 &eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800978 if (retval < 0) {
979 mlog_errno(retval);
980 goto bail;
981 }
982 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
983 el = &eb->h_list;
Tao Mae7d4cb62008-08-18 17:38:44 +0800984 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800985
986 BUG_ON(el->l_tree_depth != 0);
987
988 retval = le16_to_cpu(el->l_count) - le16_to_cpu(el->l_next_free_rec);
989bail:
Mark Fasheha81cb882008-10-07 14:25:16 -0700990 brelse(eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800991
Tao Maa09d09b2011-02-22 08:21:10 +0800992 trace_ocfs2_num_free_extents(retval);
Mark Fashehccd979b2005-12-15 14:31:24 -0800993 return retval;
994}
995
996/* expects array to already be allocated
997 *
998 * sets h_signature, h_blkno, h_suballoc_bit, h_suballoc_slot, and
999 * l_count for you
1000 */
Joel Becker42a5a7a2009-02-12 18:49:19 -08001001static int ocfs2_create_new_meta_bhs(handle_t *handle,
1002 struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -08001003 int wanted,
1004 struct ocfs2_alloc_context *meta_ac,
1005 struct buffer_head *bhs[])
1006{
1007 int count, status, i;
1008 u16 suballoc_bit_start;
1009 u32 num_got;
Joel Becker2b6cb572010-03-26 10:09:15 +08001010 u64 suballoc_loc, first_blkno;
Joel Becker42a5a7a2009-02-12 18:49:19 -08001011 struct ocfs2_super *osb =
1012 OCFS2_SB(ocfs2_metadata_cache_get_super(et->et_ci));
Mark Fashehccd979b2005-12-15 14:31:24 -08001013 struct ocfs2_extent_block *eb;
1014
Mark Fashehccd979b2005-12-15 14:31:24 -08001015 count = 0;
1016 while (count < wanted) {
Joel Becker1ed9b772010-05-06 13:59:06 +08001017 status = ocfs2_claim_metadata(handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001018 meta_ac,
1019 wanted - count,
Joel Becker2b6cb572010-03-26 10:09:15 +08001020 &suballoc_loc,
Mark Fashehccd979b2005-12-15 14:31:24 -08001021 &suballoc_bit_start,
1022 &num_got,
1023 &first_blkno);
1024 if (status < 0) {
1025 mlog_errno(status);
1026 goto bail;
1027 }
1028
1029 for(i = count; i < (num_got + count); i++) {
1030 bhs[i] = sb_getblk(osb->sb, first_blkno);
1031 if (bhs[i] == NULL) {
Rui Xiang7391a292013-11-12 15:06:54 -08001032 status = -ENOMEM;
Mark Fashehccd979b2005-12-15 14:31:24 -08001033 mlog_errno(status);
1034 goto bail;
1035 }
Joel Becker42a5a7a2009-02-12 18:49:19 -08001036 ocfs2_set_new_buffer_uptodate(et->et_ci, bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001037
Joel Becker42a5a7a2009-02-12 18:49:19 -08001038 status = ocfs2_journal_access_eb(handle, et->et_ci,
1039 bhs[i],
Joel Becker13723d02008-10-17 19:25:01 -07001040 OCFS2_JOURNAL_ACCESS_CREATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001041 if (status < 0) {
1042 mlog_errno(status);
1043 goto bail;
1044 }
1045
1046 memset(bhs[i]->b_data, 0, osb->sb->s_blocksize);
1047 eb = (struct ocfs2_extent_block *) bhs[i]->b_data;
1048 /* Ok, setup the minimal stuff here. */
1049 strcpy(eb->h_signature, OCFS2_EXTENT_BLOCK_SIGNATURE);
1050 eb->h_blkno = cpu_to_le64(first_blkno);
1051 eb->h_fs_generation = cpu_to_le32(osb->fs_generation);
Tiger Yangb89c5422010-01-25 14:11:06 +08001052 eb->h_suballoc_slot =
1053 cpu_to_le16(meta_ac->ac_alloc_slot);
Joel Becker2b6cb572010-03-26 10:09:15 +08001054 eb->h_suballoc_loc = cpu_to_le64(suballoc_loc);
Mark Fashehccd979b2005-12-15 14:31:24 -08001055 eb->h_suballoc_bit = cpu_to_le16(suballoc_bit_start);
1056 eb->h_list.l_count =
1057 cpu_to_le16(ocfs2_extent_recs_per_eb(osb->sb));
1058
1059 suballoc_bit_start++;
1060 first_blkno++;
1061
1062 /* We'll also be dirtied by the caller, so
1063 * this isn't absolutely necessary. */
Joel Beckerec20cec2010-03-19 14:13:52 -07001064 ocfs2_journal_dirty(handle, bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001065 }
1066
1067 count += num_got;
1068 }
1069
1070 status = 0;
1071bail:
1072 if (status < 0) {
1073 for(i = 0; i < wanted; i++) {
Mark Fasheha81cb882008-10-07 14:25:16 -07001074 brelse(bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001075 bhs[i] = NULL;
1076 }
Tao Mac1e8d352011-03-07 16:43:21 +08001077 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001078 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001079 return status;
1080}
1081
1082/*
Mark Fashehdcd05382007-01-16 11:32:23 -08001083 * Helper function for ocfs2_add_branch() and ocfs2_shift_tree_depth().
1084 *
1085 * Returns the sum of the rightmost extent rec logical offset and
1086 * cluster count.
1087 *
1088 * ocfs2_add_branch() uses this to determine what logical cluster
1089 * value should be populated into the leftmost new branch records.
1090 *
1091 * ocfs2_shift_tree_depth() uses this to determine the # clusters
1092 * value for the new topmost tree record.
1093 */
1094static inline u32 ocfs2_sum_rightmost_rec(struct ocfs2_extent_list *el)
1095{
1096 int i;
1097
1098 i = le16_to_cpu(el->l_next_free_rec) - 1;
1099
1100 return le32_to_cpu(el->l_recs[i].e_cpos) +
Mark Fashehe48edee2007-03-07 16:46:57 -08001101 ocfs2_rec_clusters(el, &el->l_recs[i]);
Mark Fashehdcd05382007-01-16 11:32:23 -08001102}
1103
1104/*
Tao Ma6b791bc2009-06-12 14:18:36 +08001105 * Change range of the branches in the right most path according to the leaf
1106 * extent block's rightmost record.
1107 */
1108static int ocfs2_adjust_rightmost_branch(handle_t *handle,
Tao Ma6b791bc2009-06-12 14:18:36 +08001109 struct ocfs2_extent_tree *et)
1110{
1111 int status;
1112 struct ocfs2_path *path = NULL;
1113 struct ocfs2_extent_list *el;
1114 struct ocfs2_extent_rec *rec;
1115
1116 path = ocfs2_new_path_from_et(et);
1117 if (!path) {
1118 status = -ENOMEM;
1119 return status;
1120 }
1121
Joel Beckerfacdb772009-02-12 18:08:48 -08001122 status = ocfs2_find_path(et->et_ci, path, UINT_MAX);
Tao Ma6b791bc2009-06-12 14:18:36 +08001123 if (status < 0) {
1124 mlog_errno(status);
1125 goto out;
1126 }
1127
Tao Mac901fb02010-04-26 14:34:57 +08001128 status = ocfs2_extend_trans(handle, path_num_items(path));
Tao Ma6b791bc2009-06-12 14:18:36 +08001129 if (status < 0) {
1130 mlog_errno(status);
1131 goto out;
1132 }
1133
Joel Beckerd401dc12009-02-13 02:24:10 -08001134 status = ocfs2_journal_access_path(et->et_ci, handle, path);
Tao Ma6b791bc2009-06-12 14:18:36 +08001135 if (status < 0) {
1136 mlog_errno(status);
1137 goto out;
1138 }
1139
1140 el = path_leaf_el(path);
Al Viro3a251f02012-04-13 12:22:00 -04001141 rec = &el->l_recs[le16_to_cpu(el->l_next_free_rec) - 1];
Tao Ma6b791bc2009-06-12 14:18:36 +08001142
Joel Beckerd401dc12009-02-13 02:24:10 -08001143 ocfs2_adjust_rightmost_records(handle, et, path, rec);
Tao Ma6b791bc2009-06-12 14:18:36 +08001144
1145out:
1146 ocfs2_free_path(path);
1147 return status;
1148}
1149
1150/*
Mark Fashehccd979b2005-12-15 14:31:24 -08001151 * Add an entire tree branch to our inode. eb_bh is the extent block
Joel Beckerd401dc12009-02-13 02:24:10 -08001152 * to start at, if we don't want to start the branch at the root
Mark Fashehccd979b2005-12-15 14:31:24 -08001153 * structure.
1154 *
1155 * last_eb_bh is required as we have to update it's next_leaf pointer
1156 * for the new last extent block.
1157 *
1158 * the new branch will be 'empty' in the sense that every block will
Mark Fashehe48edee2007-03-07 16:46:57 -08001159 * contain a single record with cluster count == 0.
Mark Fashehccd979b2005-12-15 14:31:24 -08001160 */
Joel Beckerd401dc12009-02-13 02:24:10 -08001161static int ocfs2_add_branch(handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08001162 struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -08001163 struct buffer_head *eb_bh,
Mark Fasheh328d5752007-06-18 10:48:04 -07001164 struct buffer_head **last_eb_bh,
Mark Fashehccd979b2005-12-15 14:31:24 -08001165 struct ocfs2_alloc_context *meta_ac)
1166{
Changwei Ge71a36942018-01-31 16:15:06 -08001167 int status, new_blocks, i, block_given = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001168 u64 next_blkno, new_last_eb_blk;
1169 struct buffer_head *bh;
1170 struct buffer_head **new_eb_bhs = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001171 struct ocfs2_extent_block *eb;
1172 struct ocfs2_extent_list *eb_el;
1173 struct ocfs2_extent_list *el;
Tao Ma6b791bc2009-06-12 14:18:36 +08001174 u32 new_cpos, root_end;
Mark Fashehccd979b2005-12-15 14:31:24 -08001175
Mark Fasheh328d5752007-06-18 10:48:04 -07001176 BUG_ON(!last_eb_bh || !*last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001177
Mark Fashehccd979b2005-12-15 14:31:24 -08001178 if (eb_bh) {
1179 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
1180 el = &eb->h_list;
1181 } else
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001182 el = et->et_root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001183
1184 /* we never add a branch to a leaf. */
1185 BUG_ON(!el->l_tree_depth);
1186
1187 new_blocks = le16_to_cpu(el->l_tree_depth);
1188
Tao Ma6b791bc2009-06-12 14:18:36 +08001189 eb = (struct ocfs2_extent_block *)(*last_eb_bh)->b_data;
1190 new_cpos = ocfs2_sum_rightmost_rec(&eb->h_list);
1191 root_end = ocfs2_sum_rightmost_rec(et->et_root_el);
1192
1193 /*
1194 * If there is a gap before the root end and the real end
1195 * of the righmost leaf block, we need to remove the gap
1196 * between new_cpos and root_end first so that the tree
1197 * is consistent after we add a new branch(it will start
1198 * from new_cpos).
1199 */
1200 if (root_end > new_cpos) {
Tao Maa09d09b2011-02-22 08:21:10 +08001201 trace_ocfs2_adjust_rightmost_branch(
1202 (unsigned long long)
1203 ocfs2_metadata_cache_owner(et->et_ci),
1204 root_end, new_cpos);
1205
Joel Beckerd401dc12009-02-13 02:24:10 -08001206 status = ocfs2_adjust_rightmost_branch(handle, et);
Tao Ma6b791bc2009-06-12 14:18:36 +08001207 if (status) {
1208 mlog_errno(status);
1209 goto bail;
1210 }
1211 }
1212
Mark Fashehccd979b2005-12-15 14:31:24 -08001213 /* allocate the number of new eb blocks we need */
1214 new_eb_bhs = kcalloc(new_blocks, sizeof(struct buffer_head *),
1215 GFP_KERNEL);
1216 if (!new_eb_bhs) {
1217 status = -ENOMEM;
1218 mlog_errno(status);
1219 goto bail;
1220 }
1221
Changwei Ge71a36942018-01-31 16:15:06 -08001222 /* Firstyly, try to reuse dealloc since we have already estimated how
1223 * many extent blocks we may use.
1224 */
1225 if (!ocfs2_is_dealloc_empty(et)) {
1226 status = ocfs2_reuse_blk_from_dealloc(handle, et,
1227 new_eb_bhs, new_blocks,
1228 &block_given);
1229 if (status < 0) {
1230 mlog_errno(status);
1231 goto bail;
1232 }
1233 }
1234
1235 BUG_ON(block_given > new_blocks);
1236
1237 if (block_given < new_blocks) {
1238 BUG_ON(!meta_ac);
1239 status = ocfs2_create_new_meta_bhs(handle, et,
1240 new_blocks - block_given,
1241 meta_ac,
1242 &new_eb_bhs[block_given]);
1243 if (status < 0) {
1244 mlog_errno(status);
1245 goto bail;
1246 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001247 }
1248
1249 /* Note: new_eb_bhs[new_blocks - 1] is the guy which will be
1250 * linked with the rest of the tree.
1251 * conversly, new_eb_bhs[0] is the new bottommost leaf.
1252 *
1253 * when we leave the loop, new_last_eb_blk will point to the
1254 * newest leaf, and next_blkno will point to the topmost extent
1255 * block. */
1256 next_blkno = new_last_eb_blk = 0;
1257 for(i = 0; i < new_blocks; i++) {
1258 bh = new_eb_bhs[i];
1259 eb = (struct ocfs2_extent_block *) bh->b_data;
Joel Becker5e965812008-11-13 14:49:16 -08001260 /* ocfs2_create_new_meta_bhs() should create it right! */
1261 BUG_ON(!OCFS2_IS_VALID_EXTENT_BLOCK(eb));
Mark Fashehccd979b2005-12-15 14:31:24 -08001262 eb_el = &eb->h_list;
1263
Joel Beckerd401dc12009-02-13 02:24:10 -08001264 status = ocfs2_journal_access_eb(handle, et->et_ci, bh,
Joel Becker13723d02008-10-17 19:25:01 -07001265 OCFS2_JOURNAL_ACCESS_CREATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001266 if (status < 0) {
1267 mlog_errno(status);
1268 goto bail;
1269 }
1270
1271 eb->h_next_leaf_blk = 0;
1272 eb_el->l_tree_depth = cpu_to_le16(i);
1273 eb_el->l_next_free_rec = cpu_to_le16(1);
Mark Fashehdcd05382007-01-16 11:32:23 -08001274 /*
1275 * This actually counts as an empty extent as
1276 * c_clusters == 0
1277 */
1278 eb_el->l_recs[0].e_cpos = cpu_to_le32(new_cpos);
Mark Fashehccd979b2005-12-15 14:31:24 -08001279 eb_el->l_recs[0].e_blkno = cpu_to_le64(next_blkno);
Mark Fashehe48edee2007-03-07 16:46:57 -08001280 /*
1281 * eb_el isn't always an interior node, but even leaf
1282 * nodes want a zero'd flags and reserved field so
1283 * this gets the whole 32 bits regardless of use.
1284 */
1285 eb_el->l_recs[0].e_int_clusters = cpu_to_le32(0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001286 if (!eb_el->l_tree_depth)
1287 new_last_eb_blk = le64_to_cpu(eb->h_blkno);
1288
Joel Beckerec20cec2010-03-19 14:13:52 -07001289 ocfs2_journal_dirty(handle, bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001290 next_blkno = le64_to_cpu(eb->h_blkno);
1291 }
1292
1293 /* This is a bit hairy. We want to update up to three blocks
1294 * here without leaving any of them in an inconsistent state
1295 * in case of error. We don't have to worry about
1296 * journal_dirty erroring as it won't unless we've aborted the
1297 * handle (in which case we would never be here) so reserving
1298 * the write with journal_access is all we need to do. */
Joel Beckerd401dc12009-02-13 02:24:10 -08001299 status = ocfs2_journal_access_eb(handle, et->et_ci, *last_eb_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001300 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001301 if (status < 0) {
1302 mlog_errno(status);
1303 goto bail;
1304 }
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08001305 status = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07001306 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001307 if (status < 0) {
1308 mlog_errno(status);
1309 goto bail;
1310 }
1311 if (eb_bh) {
Joel Beckerd401dc12009-02-13 02:24:10 -08001312 status = ocfs2_journal_access_eb(handle, et->et_ci, eb_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001313 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001314 if (status < 0) {
1315 mlog_errno(status);
1316 goto bail;
1317 }
1318 }
1319
1320 /* Link the new branch into the rest of the tree (el will
Tao Mae7d4cb62008-08-18 17:38:44 +08001321 * either be on the root_bh, or the extent block passed in. */
Mark Fashehccd979b2005-12-15 14:31:24 -08001322 i = le16_to_cpu(el->l_next_free_rec);
1323 el->l_recs[i].e_blkno = cpu_to_le64(next_blkno);
Mark Fashehdcd05382007-01-16 11:32:23 -08001324 el->l_recs[i].e_cpos = cpu_to_le32(new_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001325 el->l_recs[i].e_int_clusters = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001326 le16_add_cpu(&el->l_next_free_rec, 1);
1327
1328 /* fe needs a new last extent block pointer, as does the
1329 * next_leaf on the previously last-extent-block. */
Joel Becker35dc0aa2008-08-20 16:25:06 -07001330 ocfs2_et_set_last_eb_blk(et, new_last_eb_blk);
Mark Fashehccd979b2005-12-15 14:31:24 -08001331
Mark Fasheh328d5752007-06-18 10:48:04 -07001332 eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08001333 eb->h_next_leaf_blk = cpu_to_le64(new_last_eb_blk);
1334
Joel Beckerec20cec2010-03-19 14:13:52 -07001335 ocfs2_journal_dirty(handle, *last_eb_bh);
1336 ocfs2_journal_dirty(handle, et->et_root_bh);
1337 if (eb_bh)
1338 ocfs2_journal_dirty(handle, eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001339
Mark Fasheh328d5752007-06-18 10:48:04 -07001340 /*
1341 * Some callers want to track the rightmost leaf so pass it
1342 * back here.
1343 */
1344 brelse(*last_eb_bh);
1345 get_bh(new_eb_bhs[0]);
1346 *last_eb_bh = new_eb_bhs[0];
1347
Mark Fashehccd979b2005-12-15 14:31:24 -08001348 status = 0;
1349bail:
1350 if (new_eb_bhs) {
1351 for (i = 0; i < new_blocks; i++)
Mark Fasheha81cb882008-10-07 14:25:16 -07001352 brelse(new_eb_bhs[i]);
Mark Fashehccd979b2005-12-15 14:31:24 -08001353 kfree(new_eb_bhs);
1354 }
1355
Mark Fashehccd979b2005-12-15 14:31:24 -08001356 return status;
1357}
1358
1359/*
1360 * adds another level to the allocation tree.
1361 * returns back the new extent block so you can add a branch to it
1362 * after this call.
1363 */
Joel Beckerd401dc12009-02-13 02:24:10 -08001364static int ocfs2_shift_tree_depth(handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08001365 struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -08001366 struct ocfs2_alloc_context *meta_ac,
1367 struct buffer_head **ret_new_eb_bh)
1368{
Changwei Ge71a36942018-01-31 16:15:06 -08001369 int status, i, block_given = 0;
Mark Fashehdcd05382007-01-16 11:32:23 -08001370 u32 new_clusters;
Mark Fashehccd979b2005-12-15 14:31:24 -08001371 struct buffer_head *new_eb_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001372 struct ocfs2_extent_block *eb;
Tao Mae7d4cb62008-08-18 17:38:44 +08001373 struct ocfs2_extent_list *root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001374 struct ocfs2_extent_list *eb_el;
1375
Changwei Ge71a36942018-01-31 16:15:06 -08001376 if (!ocfs2_is_dealloc_empty(et)) {
1377 status = ocfs2_reuse_blk_from_dealloc(handle, et,
1378 &new_eb_bh, 1,
1379 &block_given);
1380 } else if (meta_ac) {
1381 status = ocfs2_create_new_meta_bhs(handle, et, 1, meta_ac,
1382 &new_eb_bh);
1383
1384 } else {
1385 BUG();
1386 }
1387
Mark Fashehccd979b2005-12-15 14:31:24 -08001388 if (status < 0) {
1389 mlog_errno(status);
1390 goto bail;
1391 }
1392
1393 eb = (struct ocfs2_extent_block *) new_eb_bh->b_data;
Joel Becker5e965812008-11-13 14:49:16 -08001394 /* ocfs2_create_new_meta_bhs() should create it right! */
1395 BUG_ON(!OCFS2_IS_VALID_EXTENT_BLOCK(eb));
Mark Fashehccd979b2005-12-15 14:31:24 -08001396
1397 eb_el = &eb->h_list;
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001398 root_el = et->et_root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001399
Joel Beckerd401dc12009-02-13 02:24:10 -08001400 status = ocfs2_journal_access_eb(handle, et->et_ci, new_eb_bh,
Joel Becker13723d02008-10-17 19:25:01 -07001401 OCFS2_JOURNAL_ACCESS_CREATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001402 if (status < 0) {
1403 mlog_errno(status);
1404 goto bail;
1405 }
1406
Tao Mae7d4cb62008-08-18 17:38:44 +08001407 /* copy the root extent list data into the new extent block */
1408 eb_el->l_tree_depth = root_el->l_tree_depth;
1409 eb_el->l_next_free_rec = root_el->l_next_free_rec;
1410 for (i = 0; i < le16_to_cpu(root_el->l_next_free_rec); i++)
1411 eb_el->l_recs[i] = root_el->l_recs[i];
Mark Fashehccd979b2005-12-15 14:31:24 -08001412
Joel Beckerec20cec2010-03-19 14:13:52 -07001413 ocfs2_journal_dirty(handle, new_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001414
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08001415 status = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07001416 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001417 if (status < 0) {
1418 mlog_errno(status);
1419 goto bail;
1420 }
1421
Mark Fashehdcd05382007-01-16 11:32:23 -08001422 new_clusters = ocfs2_sum_rightmost_rec(eb_el);
1423
Tao Mae7d4cb62008-08-18 17:38:44 +08001424 /* update root_bh now */
1425 le16_add_cpu(&root_el->l_tree_depth, 1);
1426 root_el->l_recs[0].e_cpos = 0;
1427 root_el->l_recs[0].e_blkno = eb->h_blkno;
1428 root_el->l_recs[0].e_int_clusters = cpu_to_le32(new_clusters);
1429 for (i = 1; i < le16_to_cpu(root_el->l_next_free_rec); i++)
1430 memset(&root_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec));
1431 root_el->l_next_free_rec = cpu_to_le16(1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001432
1433 /* If this is our 1st tree depth shift, then last_eb_blk
1434 * becomes the allocated extent block */
Tao Mae7d4cb62008-08-18 17:38:44 +08001435 if (root_el->l_tree_depth == cpu_to_le16(1))
Joel Becker35dc0aa2008-08-20 16:25:06 -07001436 ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno));
Mark Fashehccd979b2005-12-15 14:31:24 -08001437
Joel Beckerec20cec2010-03-19 14:13:52 -07001438 ocfs2_journal_dirty(handle, et->et_root_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001439
1440 *ret_new_eb_bh = new_eb_bh;
1441 new_eb_bh = NULL;
1442 status = 0;
1443bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07001444 brelse(new_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001445
Mark Fashehccd979b2005-12-15 14:31:24 -08001446 return status;
1447}
1448
1449/*
Mark Fashehccd979b2005-12-15 14:31:24 -08001450 * Should only be called when there is no space left in any of the
1451 * leaf nodes. What we want to do is find the lowest tree depth
1452 * non-leaf extent block with room for new records. There are three
1453 * valid results of this search:
1454 *
1455 * 1) a lowest extent block is found, then we pass it back in
1456 * *lowest_eb_bh and return '0'
1457 *
Tao Mae7d4cb62008-08-18 17:38:44 +08001458 * 2) the search fails to find anything, but the root_el has room. We
Mark Fashehccd979b2005-12-15 14:31:24 -08001459 * pass NULL back in *lowest_eb_bh, but still return '0'
1460 *
Tao Mae7d4cb62008-08-18 17:38:44 +08001461 * 3) the search fails to find anything AND the root_el is full, in
Mark Fashehccd979b2005-12-15 14:31:24 -08001462 * which case we return > 0
1463 *
1464 * return status < 0 indicates an error.
1465 */
Joel Beckerd401dc12009-02-13 02:24:10 -08001466static int ocfs2_find_branch_target(struct ocfs2_extent_tree *et,
Mark Fashehccd979b2005-12-15 14:31:24 -08001467 struct buffer_head **target_bh)
1468{
1469 int status = 0, i;
1470 u64 blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -08001471 struct ocfs2_extent_block *eb;
1472 struct ocfs2_extent_list *el;
1473 struct buffer_head *bh = NULL;
1474 struct buffer_head *lowest_bh = NULL;
1475
Mark Fashehccd979b2005-12-15 14:31:24 -08001476 *target_bh = NULL;
1477
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001478 el = et->et_root_el;
Mark Fashehccd979b2005-12-15 14:31:24 -08001479
1480 while(le16_to_cpu(el->l_tree_depth) > 1) {
1481 if (le16_to_cpu(el->l_next_free_rec) == 0) {
Jun Piao93f59202018-08-17 15:44:24 -07001482 status = ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
1483 "Owner %llu has empty extent list (next_free_rec == 0)\n",
1484 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci));
Mark Fashehccd979b2005-12-15 14:31:24 -08001485 goto bail;
1486 }
1487 i = le16_to_cpu(el->l_next_free_rec) - 1;
1488 blkno = le64_to_cpu(el->l_recs[i].e_blkno);
1489 if (!blkno) {
Jun Piao93f59202018-08-17 15:44:24 -07001490 status = ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
1491 "Owner %llu has extent list where extent # %d has no physical block start\n",
1492 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci), i);
Mark Fashehccd979b2005-12-15 14:31:24 -08001493 goto bail;
1494 }
1495
Mark Fasheha81cb882008-10-07 14:25:16 -07001496 brelse(bh);
1497 bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001498
Joel Becker3d03a302009-02-12 17:49:26 -08001499 status = ocfs2_read_extent_block(et->et_ci, blkno, &bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001500 if (status < 0) {
1501 mlog_errno(status);
1502 goto bail;
1503 }
1504
1505 eb = (struct ocfs2_extent_block *) bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08001506 el = &eb->h_list;
1507
1508 if (le16_to_cpu(el->l_next_free_rec) <
1509 le16_to_cpu(el->l_count)) {
Mark Fasheha81cb882008-10-07 14:25:16 -07001510 brelse(lowest_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001511 lowest_bh = bh;
1512 get_bh(lowest_bh);
1513 }
1514 }
1515
1516 /* If we didn't find one and the fe doesn't have any room,
1517 * then return '1' */
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001518 el = et->et_root_el;
Tao Mae7d4cb62008-08-18 17:38:44 +08001519 if (!lowest_bh && (el->l_next_free_rec == el->l_count))
Mark Fashehccd979b2005-12-15 14:31:24 -08001520 status = 1;
1521
1522 *target_bh = lowest_bh;
1523bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07001524 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001525
Mark Fashehccd979b2005-12-15 14:31:24 -08001526 return status;
1527}
1528
Mark Fashehe48edee2007-03-07 16:46:57 -08001529/*
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001530 * Grow a b-tree so that it has more records.
1531 *
1532 * We might shift the tree depth in which case existing paths should
1533 * be considered invalid.
1534 *
1535 * Tree depth after the grow is returned via *final_depth.
Mark Fasheh328d5752007-06-18 10:48:04 -07001536 *
1537 * *last_eb_bh will be updated by ocfs2_add_branch().
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001538 */
Joel Beckerd401dc12009-02-13 02:24:10 -08001539static int ocfs2_grow_tree(handle_t *handle, struct ocfs2_extent_tree *et,
1540 int *final_depth, struct buffer_head **last_eb_bh,
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001541 struct ocfs2_alloc_context *meta_ac)
1542{
1543 int ret, shift;
Joel Beckerce1d9ea2008-08-20 16:30:07 -07001544 struct ocfs2_extent_list *el = et->et_root_el;
Tao Mae7d4cb62008-08-18 17:38:44 +08001545 int depth = le16_to_cpu(el->l_tree_depth);
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001546 struct buffer_head *bh = NULL;
1547
Changwei Ge71a36942018-01-31 16:15:06 -08001548 BUG_ON(meta_ac == NULL && ocfs2_is_dealloc_empty(et));
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001549
Joel Beckerd401dc12009-02-13 02:24:10 -08001550 shift = ocfs2_find_branch_target(et, &bh);
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001551 if (shift < 0) {
1552 ret = shift;
1553 mlog_errno(ret);
1554 goto out;
1555 }
1556
1557 /* We traveled all the way to the bottom of the allocation tree
1558 * and didn't find room for any more extents - we need to add
1559 * another tree level */
1560 if (shift) {
1561 BUG_ON(bh);
Tao Maa09d09b2011-02-22 08:21:10 +08001562 trace_ocfs2_grow_tree(
1563 (unsigned long long)
1564 ocfs2_metadata_cache_owner(et->et_ci),
1565 depth);
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001566
1567 /* ocfs2_shift_tree_depth will return us a buffer with
1568 * the new extent block (so we can pass that to
1569 * ocfs2_add_branch). */
Joel Beckerd401dc12009-02-13 02:24:10 -08001570 ret = ocfs2_shift_tree_depth(handle, et, meta_ac, &bh);
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001571 if (ret < 0) {
1572 mlog_errno(ret);
1573 goto out;
1574 }
1575 depth++;
Mark Fasheh328d5752007-06-18 10:48:04 -07001576 if (depth == 1) {
1577 /*
1578 * Special case: we have room now if we shifted from
1579 * tree_depth 0, so no more work needs to be done.
1580 *
1581 * We won't be calling add_branch, so pass
1582 * back *last_eb_bh as the new leaf. At depth
1583 * zero, it should always be null so there's
1584 * no reason to brelse.
1585 */
1586 BUG_ON(*last_eb_bh);
1587 get_bh(bh);
1588 *last_eb_bh = bh;
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001589 goto out;
Mark Fasheh328d5752007-06-18 10:48:04 -07001590 }
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001591 }
1592
1593 /* call ocfs2_add_branch to add the final part of the tree with
1594 * the new data. */
Joel Beckerd401dc12009-02-13 02:24:10 -08001595 ret = ocfs2_add_branch(handle, et, bh, last_eb_bh,
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001596 meta_ac);
wangyan229ba1f2018-08-17 15:44:27 -07001597 if (ret < 0)
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001598 mlog_errno(ret);
Mark Fashehc3afcbb2007-05-29 14:28:51 -07001599
1600out:
1601 if (final_depth)
1602 *final_depth = depth;
1603 brelse(bh);
1604 return ret;
1605}
1606
1607/*
Mark Fashehdcd05382007-01-16 11:32:23 -08001608 * This function will discard the rightmost extent record.
1609 */
1610static void ocfs2_shift_records_right(struct ocfs2_extent_list *el)
1611{
1612 int next_free = le16_to_cpu(el->l_next_free_rec);
1613 int count = le16_to_cpu(el->l_count);
1614 unsigned int num_bytes;
1615
1616 BUG_ON(!next_free);
1617 /* This will cause us to go off the end of our extent list. */
1618 BUG_ON(next_free >= count);
1619
1620 num_bytes = sizeof(struct ocfs2_extent_rec) * next_free;
1621
1622 memmove(&el->l_recs[1], &el->l_recs[0], num_bytes);
1623}
1624
1625static void ocfs2_rotate_leaf(struct ocfs2_extent_list *el,
1626 struct ocfs2_extent_rec *insert_rec)
1627{
1628 int i, insert_index, next_free, has_empty, num_bytes;
1629 u32 insert_cpos = le32_to_cpu(insert_rec->e_cpos);
1630 struct ocfs2_extent_rec *rec;
1631
1632 next_free = le16_to_cpu(el->l_next_free_rec);
1633 has_empty = ocfs2_is_empty_extent(&el->l_recs[0]);
1634
1635 BUG_ON(!next_free);
1636
1637 /* The tree code before us didn't allow enough room in the leaf. */
Julia Lawallb1f35502008-03-04 15:21:05 -08001638 BUG_ON(el->l_next_free_rec == el->l_count && !has_empty);
Mark Fashehdcd05382007-01-16 11:32:23 -08001639
1640 /*
1641 * The easiest way to approach this is to just remove the
1642 * empty extent and temporarily decrement next_free.
1643 */
1644 if (has_empty) {
1645 /*
1646 * If next_free was 1 (only an empty extent), this
1647 * loop won't execute, which is fine. We still want
1648 * the decrement above to happen.
1649 */
1650 for(i = 0; i < (next_free - 1); i++)
1651 el->l_recs[i] = el->l_recs[i+1];
1652
1653 next_free--;
1654 }
1655
1656 /*
1657 * Figure out what the new record index should be.
1658 */
1659 for(i = 0; i < next_free; i++) {
1660 rec = &el->l_recs[i];
1661
1662 if (insert_cpos < le32_to_cpu(rec->e_cpos))
1663 break;
1664 }
1665 insert_index = i;
1666
Tao Maa09d09b2011-02-22 08:21:10 +08001667 trace_ocfs2_rotate_leaf(insert_cpos, insert_index,
1668 has_empty, next_free,
1669 le16_to_cpu(el->l_count));
Mark Fashehdcd05382007-01-16 11:32:23 -08001670
1671 BUG_ON(insert_index < 0);
1672 BUG_ON(insert_index >= le16_to_cpu(el->l_count));
1673 BUG_ON(insert_index > next_free);
1674
1675 /*
1676 * No need to memmove if we're just adding to the tail.
1677 */
1678 if (insert_index != next_free) {
1679 BUG_ON(next_free >= le16_to_cpu(el->l_count));
1680
1681 num_bytes = next_free - insert_index;
1682 num_bytes *= sizeof(struct ocfs2_extent_rec);
1683 memmove(&el->l_recs[insert_index + 1],
1684 &el->l_recs[insert_index],
1685 num_bytes);
1686 }
1687
1688 /*
1689 * Either we had an empty extent, and need to re-increment or
1690 * there was no empty extent on a non full rightmost leaf node,
1691 * in which case we still need to increment.
1692 */
1693 next_free++;
1694 el->l_next_free_rec = cpu_to_le16(next_free);
1695 /*
1696 * Make sure none of the math above just messed up our tree.
1697 */
1698 BUG_ON(le16_to_cpu(el->l_next_free_rec) > le16_to_cpu(el->l_count));
1699
1700 el->l_recs[insert_index] = *insert_rec;
1701
1702}
1703
Mark Fasheh328d5752007-06-18 10:48:04 -07001704static void ocfs2_remove_empty_extent(struct ocfs2_extent_list *el)
1705{
1706 int size, num_recs = le16_to_cpu(el->l_next_free_rec);
1707
1708 BUG_ON(num_recs == 0);
1709
1710 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
1711 num_recs--;
1712 size = num_recs * sizeof(struct ocfs2_extent_rec);
1713 memmove(&el->l_recs[0], &el->l_recs[1], size);
1714 memset(&el->l_recs[num_recs], 0,
1715 sizeof(struct ocfs2_extent_rec));
1716 el->l_next_free_rec = cpu_to_le16(num_recs);
1717 }
1718}
1719
Mark Fashehdcd05382007-01-16 11:32:23 -08001720/*
1721 * Create an empty extent record .
1722 *
1723 * l_next_free_rec may be updated.
1724 *
1725 * If an empty extent already exists do nothing.
1726 */
1727static void ocfs2_create_empty_extent(struct ocfs2_extent_list *el)
1728{
1729 int next_free = le16_to_cpu(el->l_next_free_rec);
1730
Mark Fashehe48edee2007-03-07 16:46:57 -08001731 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
1732
Mark Fashehdcd05382007-01-16 11:32:23 -08001733 if (next_free == 0)
1734 goto set_and_inc;
1735
1736 if (ocfs2_is_empty_extent(&el->l_recs[0]))
1737 return;
1738
1739 mlog_bug_on_msg(el->l_count == el->l_next_free_rec,
1740 "Asked to create an empty extent in a full list:\n"
1741 "count = %u, tree depth = %u",
1742 le16_to_cpu(el->l_count),
1743 le16_to_cpu(el->l_tree_depth));
1744
1745 ocfs2_shift_records_right(el);
1746
1747set_and_inc:
1748 le16_add_cpu(&el->l_next_free_rec, 1);
1749 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
1750}
1751
1752/*
1753 * For a rotation which involves two leaf nodes, the "root node" is
1754 * the lowest level tree node which contains a path to both leafs. This
1755 * resulting set of information can be used to form a complete "subtree"
1756 *
1757 * This function is passed two full paths from the dinode down to a
1758 * pair of adjacent leaves. It's task is to figure out which path
1759 * index contains the subtree root - this can be the root index itself
1760 * in a worst-case rotation.
1761 *
1762 * The array index of the subtree root is passed back.
1763 */
Tao Ma38a04e42009-11-30 14:32:19 +08001764int ocfs2_find_subtree_root(struct ocfs2_extent_tree *et,
1765 struct ocfs2_path *left,
1766 struct ocfs2_path *right)
Mark Fashehdcd05382007-01-16 11:32:23 -08001767{
1768 int i = 0;
1769
1770 /*
1771 * Check that the caller passed in two paths from the same tree.
1772 */
1773 BUG_ON(path_root_bh(left) != path_root_bh(right));
1774
1775 do {
1776 i++;
1777
1778 /*
1779 * The caller didn't pass two adjacent paths.
1780 */
1781 mlog_bug_on_msg(i > left->p_tree_depth,
Joel Becker7dc02802009-02-12 19:20:13 -08001782 "Owner %llu, left depth %u, right depth %u\n"
Mark Fashehdcd05382007-01-16 11:32:23 -08001783 "left leaf blk %llu, right leaf blk %llu\n",
Joel Becker7dc02802009-02-12 19:20:13 -08001784 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
1785 left->p_tree_depth, right->p_tree_depth,
Mark Fashehdcd05382007-01-16 11:32:23 -08001786 (unsigned long long)path_leaf_bh(left)->b_blocknr,
1787 (unsigned long long)path_leaf_bh(right)->b_blocknr);
1788 } while (left->p_node[i].bh->b_blocknr ==
1789 right->p_node[i].bh->b_blocknr);
1790
1791 return i - 1;
1792}
1793
1794typedef void (path_insert_t)(void *, struct buffer_head *);
1795
1796/*
1797 * Traverse a btree path in search of cpos, starting at root_el.
1798 *
1799 * This code can be called with a cpos larger than the tree, in which
1800 * case it will return the rightmost path.
1801 */
Joel Beckerfacdb772009-02-12 18:08:48 -08001802static int __ocfs2_find_path(struct ocfs2_caching_info *ci,
Mark Fashehdcd05382007-01-16 11:32:23 -08001803 struct ocfs2_extent_list *root_el, u32 cpos,
1804 path_insert_t *func, void *data)
1805{
1806 int i, ret = 0;
1807 u32 range;
1808 u64 blkno;
1809 struct buffer_head *bh = NULL;
1810 struct ocfs2_extent_block *eb;
1811 struct ocfs2_extent_list *el;
1812 struct ocfs2_extent_rec *rec;
Mark Fashehdcd05382007-01-16 11:32:23 -08001813
1814 el = root_el;
1815 while (el->l_tree_depth) {
1816 if (le16_to_cpu(el->l_next_free_rec) == 0) {
Joel Beckerfacdb772009-02-12 18:08:48 -08001817 ocfs2_error(ocfs2_metadata_cache_get_super(ci),
Joe Perches7ecef142015-09-04 15:44:51 -07001818 "Owner %llu has empty extent list at depth %u\n",
Joel Beckerfacdb772009-02-12 18:08:48 -08001819 (unsigned long long)ocfs2_metadata_cache_owner(ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08001820 le16_to_cpu(el->l_tree_depth));
1821 ret = -EROFS;
1822 goto out;
1823
1824 }
1825
1826 for(i = 0; i < le16_to_cpu(el->l_next_free_rec) - 1; i++) {
1827 rec = &el->l_recs[i];
1828
1829 /*
1830 * In the case that cpos is off the allocation
1831 * tree, this should just wind up returning the
1832 * rightmost record.
1833 */
1834 range = le32_to_cpu(rec->e_cpos) +
Mark Fashehe48edee2007-03-07 16:46:57 -08001835 ocfs2_rec_clusters(el, rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08001836 if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range)
1837 break;
1838 }
1839
1840 blkno = le64_to_cpu(el->l_recs[i].e_blkno);
1841 if (blkno == 0) {
Joel Beckerfacdb772009-02-12 18:08:48 -08001842 ocfs2_error(ocfs2_metadata_cache_get_super(ci),
Joe Perches7ecef142015-09-04 15:44:51 -07001843 "Owner %llu has bad blkno in extent list at depth %u (index %d)\n",
Joel Beckerfacdb772009-02-12 18:08:48 -08001844 (unsigned long long)ocfs2_metadata_cache_owner(ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08001845 le16_to_cpu(el->l_tree_depth), i);
1846 ret = -EROFS;
1847 goto out;
1848 }
1849
1850 brelse(bh);
1851 bh = NULL;
Joel Beckerfacdb772009-02-12 18:08:48 -08001852 ret = ocfs2_read_extent_block(ci, blkno, &bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08001853 if (ret) {
1854 mlog_errno(ret);
1855 goto out;
1856 }
1857
1858 eb = (struct ocfs2_extent_block *) bh->b_data;
1859 el = &eb->h_list;
Mark Fashehdcd05382007-01-16 11:32:23 -08001860
1861 if (le16_to_cpu(el->l_next_free_rec) >
1862 le16_to_cpu(el->l_count)) {
Joel Beckerfacdb772009-02-12 18:08:48 -08001863 ocfs2_error(ocfs2_metadata_cache_get_super(ci),
Joe Perches7ecef142015-09-04 15:44:51 -07001864 "Owner %llu has bad count in extent list at block %llu (next free=%u, count=%u)\n",
Joel Beckerfacdb772009-02-12 18:08:48 -08001865 (unsigned long long)ocfs2_metadata_cache_owner(ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08001866 (unsigned long long)bh->b_blocknr,
1867 le16_to_cpu(el->l_next_free_rec),
1868 le16_to_cpu(el->l_count));
1869 ret = -EROFS;
1870 goto out;
1871 }
1872
1873 if (func)
1874 func(data, bh);
1875 }
1876
1877out:
1878 /*
1879 * Catch any trailing bh that the loop didn't handle.
1880 */
1881 brelse(bh);
1882
1883 return ret;
1884}
1885
1886/*
1887 * Given an initialized path (that is, it has a valid root extent
1888 * list), this function will traverse the btree in search of the path
1889 * which would contain cpos.
1890 *
1891 * The path traveled is recorded in the path structure.
1892 *
1893 * Note that this will not do any comparisons on leaf node extent
1894 * records, so it will work fine in the case that we just added a tree
1895 * branch.
1896 */
1897struct find_path_data {
1898 int index;
1899 struct ocfs2_path *path;
1900};
1901static void find_path_ins(void *data, struct buffer_head *bh)
1902{
1903 struct find_path_data *fp = data;
1904
1905 get_bh(bh);
1906 ocfs2_path_insert_eb(fp->path, fp->index, bh);
1907 fp->index++;
1908}
Tao Mae2e9f602009-08-18 11:22:34 +08001909int ocfs2_find_path(struct ocfs2_caching_info *ci,
1910 struct ocfs2_path *path, u32 cpos)
Mark Fashehdcd05382007-01-16 11:32:23 -08001911{
1912 struct find_path_data data;
1913
1914 data.index = 1;
1915 data.path = path;
Joel Beckerfacdb772009-02-12 18:08:48 -08001916 return __ocfs2_find_path(ci, path_root_el(path), cpos,
Mark Fashehdcd05382007-01-16 11:32:23 -08001917 find_path_ins, &data);
1918}
1919
1920static void find_leaf_ins(void *data, struct buffer_head *bh)
1921{
1922 struct ocfs2_extent_block *eb =(struct ocfs2_extent_block *)bh->b_data;
1923 struct ocfs2_extent_list *el = &eb->h_list;
1924 struct buffer_head **ret = data;
1925
1926 /* We want to retain only the leaf block. */
1927 if (le16_to_cpu(el->l_tree_depth) == 0) {
1928 get_bh(bh);
1929 *ret = bh;
1930 }
1931}
1932/*
1933 * Find the leaf block in the tree which would contain cpos. No
1934 * checking of the actual leaf is done.
1935 *
1936 * Some paths want to call this instead of allocating a path structure
1937 * and calling ocfs2_find_path().
1938 *
1939 * This function doesn't handle non btree extent lists.
1940 */
Joel Beckerfacdb772009-02-12 18:08:48 -08001941int ocfs2_find_leaf(struct ocfs2_caching_info *ci,
1942 struct ocfs2_extent_list *root_el, u32 cpos,
1943 struct buffer_head **leaf_bh)
Mark Fashehdcd05382007-01-16 11:32:23 -08001944{
1945 int ret;
1946 struct buffer_head *bh = NULL;
1947
Joel Beckerfacdb772009-02-12 18:08:48 -08001948 ret = __ocfs2_find_path(ci, root_el, cpos, find_leaf_ins, &bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08001949 if (ret) {
1950 mlog_errno(ret);
1951 goto out;
1952 }
1953
1954 *leaf_bh = bh;
1955out:
1956 return ret;
1957}
1958
1959/*
1960 * Adjust the adjacent records (left_rec, right_rec) involved in a rotation.
1961 *
1962 * Basically, we've moved stuff around at the bottom of the tree and
1963 * we need to fix up the extent records above the changes to reflect
1964 * the new changes.
1965 *
1966 * left_rec: the record on the left.
Mark Fashehdcd05382007-01-16 11:32:23 -08001967 * right_rec: the record to the right of left_rec
1968 * right_child_el: is the child list pointed to by right_rec
1969 *
1970 * By definition, this only works on interior nodes.
1971 */
1972static void ocfs2_adjust_adjacent_records(struct ocfs2_extent_rec *left_rec,
Mark Fashehdcd05382007-01-16 11:32:23 -08001973 struct ocfs2_extent_rec *right_rec,
1974 struct ocfs2_extent_list *right_child_el)
1975{
1976 u32 left_clusters, right_end;
1977
1978 /*
1979 * Interior nodes never have holes. Their cpos is the cpos of
1980 * the leftmost record in their child list. Their cluster
1981 * count covers the full theoretical range of their child list
1982 * - the range between their cpos and the cpos of the record
1983 * immediately to their right.
1984 */
1985 left_clusters = le32_to_cpu(right_child_el->l_recs[0].e_cpos);
Tao Ma82e12642009-07-23 08:12:58 +08001986 if (!ocfs2_rec_clusters(right_child_el, &right_child_el->l_recs[0])) {
1987 BUG_ON(right_child_el->l_tree_depth);
Mark Fasheh328d5752007-06-18 10:48:04 -07001988 BUG_ON(le16_to_cpu(right_child_el->l_next_free_rec) <= 1);
1989 left_clusters = le32_to_cpu(right_child_el->l_recs[1].e_cpos);
1990 }
Mark Fashehdcd05382007-01-16 11:32:23 -08001991 left_clusters -= le32_to_cpu(left_rec->e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08001992 left_rec->e_int_clusters = cpu_to_le32(left_clusters);
Mark Fashehdcd05382007-01-16 11:32:23 -08001993
1994 /*
1995 * Calculate the rightmost cluster count boundary before
Mark Fashehe48edee2007-03-07 16:46:57 -08001996 * moving cpos - we will need to adjust clusters after
Mark Fashehdcd05382007-01-16 11:32:23 -08001997 * updating e_cpos to keep the same highest cluster count.
1998 */
1999 right_end = le32_to_cpu(right_rec->e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08002000 right_end += le32_to_cpu(right_rec->e_int_clusters);
Mark Fashehdcd05382007-01-16 11:32:23 -08002001
2002 right_rec->e_cpos = left_rec->e_cpos;
2003 le32_add_cpu(&right_rec->e_cpos, left_clusters);
2004
2005 right_end -= le32_to_cpu(right_rec->e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08002006 right_rec->e_int_clusters = cpu_to_le32(right_end);
Mark Fashehdcd05382007-01-16 11:32:23 -08002007}
2008
2009/*
2010 * Adjust the adjacent root node records involved in a
2011 * rotation. left_el_blkno is passed in as a key so that we can easily
2012 * find it's index in the root list.
2013 */
2014static void ocfs2_adjust_root_records(struct ocfs2_extent_list *root_el,
2015 struct ocfs2_extent_list *left_el,
2016 struct ocfs2_extent_list *right_el,
2017 u64 left_el_blkno)
2018{
2019 int i;
2020
2021 BUG_ON(le16_to_cpu(root_el->l_tree_depth) <=
2022 le16_to_cpu(left_el->l_tree_depth));
2023
2024 for(i = 0; i < le16_to_cpu(root_el->l_next_free_rec) - 1; i++) {
2025 if (le64_to_cpu(root_el->l_recs[i].e_blkno) == left_el_blkno)
2026 break;
2027 }
2028
2029 /*
2030 * The path walking code should have never returned a root and
2031 * two paths which are not adjacent.
2032 */
2033 BUG_ON(i >= (le16_to_cpu(root_el->l_next_free_rec) - 1));
2034
Jun Piao964f14a2017-09-06 16:19:11 -07002035 ocfs2_adjust_adjacent_records(&root_el->l_recs[i],
Mark Fashehdcd05382007-01-16 11:32:23 -08002036 &root_el->l_recs[i + 1], right_el);
2037}
2038
2039/*
2040 * We've changed a leaf block (in right_path) and need to reflect that
2041 * change back up the subtree.
2042 *
2043 * This happens in multiple places:
2044 * - When we've moved an extent record from the left path leaf to the right
2045 * path leaf to make room for an empty extent in the left path leaf.
2046 * - When our insert into the right path leaf is at the leftmost edge
2047 * and requires an update of the path immediately to it's left. This
2048 * can occur at the end of some types of rotation and appending inserts.
Tao Ma677b9752008-01-30 14:21:05 +08002049 * - When we've adjusted the last extent record in the left path leaf and the
2050 * 1st extent record in the right path leaf during cross extent block merge.
Mark Fashehdcd05382007-01-16 11:32:23 -08002051 */
Joel Becker4619c732009-02-12 19:02:36 -08002052static void ocfs2_complete_edge_insert(handle_t *handle,
Mark Fashehdcd05382007-01-16 11:32:23 -08002053 struct ocfs2_path *left_path,
2054 struct ocfs2_path *right_path,
2055 int subtree_index)
2056{
Joel Beckerec20cec2010-03-19 14:13:52 -07002057 int i, idx;
Mark Fashehdcd05382007-01-16 11:32:23 -08002058 struct ocfs2_extent_list *el, *left_el, *right_el;
2059 struct ocfs2_extent_rec *left_rec, *right_rec;
2060 struct buffer_head *root_bh = left_path->p_node[subtree_index].bh;
2061
2062 /*
2063 * Update the counts and position values within all the
2064 * interior nodes to reflect the leaf rotation we just did.
2065 *
2066 * The root node is handled below the loop.
2067 *
2068 * We begin the loop with right_el and left_el pointing to the
2069 * leaf lists and work our way up.
2070 *
2071 * NOTE: within this loop, left_el and right_el always refer
2072 * to the *child* lists.
2073 */
2074 left_el = path_leaf_el(left_path);
2075 right_el = path_leaf_el(right_path);
2076 for(i = left_path->p_tree_depth - 1; i > subtree_index; i--) {
Tao Maa09d09b2011-02-22 08:21:10 +08002077 trace_ocfs2_complete_edge_insert(i);
Mark Fashehdcd05382007-01-16 11:32:23 -08002078
2079 /*
2080 * One nice property of knowing that all of these
2081 * nodes are below the root is that we only deal with
2082 * the leftmost right node record and the rightmost
2083 * left node record.
2084 */
2085 el = left_path->p_node[i].el;
2086 idx = le16_to_cpu(left_el->l_next_free_rec) - 1;
2087 left_rec = &el->l_recs[idx];
2088
2089 el = right_path->p_node[i].el;
2090 right_rec = &el->l_recs[0];
2091
Jun Piao964f14a2017-09-06 16:19:11 -07002092 ocfs2_adjust_adjacent_records(left_rec, right_rec, right_el);
Mark Fashehdcd05382007-01-16 11:32:23 -08002093
Joel Beckerec20cec2010-03-19 14:13:52 -07002094 ocfs2_journal_dirty(handle, left_path->p_node[i].bh);
2095 ocfs2_journal_dirty(handle, right_path->p_node[i].bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08002096
2097 /*
2098 * Setup our list pointers now so that the current
2099 * parents become children in the next iteration.
2100 */
2101 left_el = left_path->p_node[i].el;
2102 right_el = right_path->p_node[i].el;
2103 }
2104
2105 /*
2106 * At the root node, adjust the two adjacent records which
2107 * begin our path to the leaves.
2108 */
2109
2110 el = left_path->p_node[subtree_index].el;
2111 left_el = left_path->p_node[subtree_index + 1].el;
2112 right_el = right_path->p_node[subtree_index + 1].el;
2113
2114 ocfs2_adjust_root_records(el, left_el, right_el,
2115 left_path->p_node[subtree_index + 1].bh->b_blocknr);
2116
2117 root_bh = left_path->p_node[subtree_index].bh;
2118
Joel Beckerec20cec2010-03-19 14:13:52 -07002119 ocfs2_journal_dirty(handle, root_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08002120}
2121
Joel Becker5c601ab2009-02-12 19:10:13 -08002122static int ocfs2_rotate_subtree_right(handle_t *handle,
2123 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08002124 struct ocfs2_path *left_path,
2125 struct ocfs2_path *right_path,
2126 int subtree_index)
2127{
2128 int ret, i;
2129 struct buffer_head *right_leaf_bh;
2130 struct buffer_head *left_leaf_bh = NULL;
2131 struct buffer_head *root_bh;
2132 struct ocfs2_extent_list *right_el, *left_el;
2133 struct ocfs2_extent_rec move_rec;
2134
2135 left_leaf_bh = path_leaf_bh(left_path);
2136 left_el = path_leaf_el(left_path);
2137
2138 if (left_el->l_next_free_rec != left_el->l_count) {
Joel Becker5c601ab2009-02-12 19:10:13 -08002139 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
Joe Perches7ecef142015-09-04 15:44:51 -07002140 "Inode %llu has non-full interior leaf node %llu (next free = %u)\n",
Joel Becker5c601ab2009-02-12 19:10:13 -08002141 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08002142 (unsigned long long)left_leaf_bh->b_blocknr,
2143 le16_to_cpu(left_el->l_next_free_rec));
2144 return -EROFS;
2145 }
2146
2147 /*
2148 * This extent block may already have an empty record, so we
2149 * return early if so.
2150 */
2151 if (ocfs2_is_empty_extent(&left_el->l_recs[0]))
2152 return 0;
2153
2154 root_bh = left_path->p_node[subtree_index].bh;
2155 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
2156
Joel Becker5c601ab2009-02-12 19:10:13 -08002157 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Joel Becker13723d02008-10-17 19:25:01 -07002158 subtree_index);
Mark Fashehdcd05382007-01-16 11:32:23 -08002159 if (ret) {
2160 mlog_errno(ret);
2161 goto out;
2162 }
2163
2164 for(i = subtree_index + 1; i < path_num_items(right_path); i++) {
Joel Becker5c601ab2009-02-12 19:10:13 -08002165 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002166 right_path, i);
Mark Fashehdcd05382007-01-16 11:32:23 -08002167 if (ret) {
2168 mlog_errno(ret);
2169 goto out;
2170 }
2171
Joel Becker5c601ab2009-02-12 19:10:13 -08002172 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002173 left_path, i);
Mark Fashehdcd05382007-01-16 11:32:23 -08002174 if (ret) {
2175 mlog_errno(ret);
2176 goto out;
2177 }
2178 }
2179
2180 right_leaf_bh = path_leaf_bh(right_path);
2181 right_el = path_leaf_el(right_path);
2182
2183 /* This is a code error, not a disk corruption. */
2184 mlog_bug_on_msg(!right_el->l_next_free_rec, "Inode %llu: Rotate fails "
2185 "because rightmost leaf block %llu is empty\n",
Joel Becker5c601ab2009-02-12 19:10:13 -08002186 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08002187 (unsigned long long)right_leaf_bh->b_blocknr);
2188
2189 ocfs2_create_empty_extent(right_el);
2190
Joel Beckerec20cec2010-03-19 14:13:52 -07002191 ocfs2_journal_dirty(handle, right_leaf_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08002192
2193 /* Do the copy now. */
2194 i = le16_to_cpu(left_el->l_next_free_rec) - 1;
2195 move_rec = left_el->l_recs[i];
2196 right_el->l_recs[0] = move_rec;
2197
2198 /*
2199 * Clear out the record we just copied and shift everything
2200 * over, leaving an empty extent in the left leaf.
2201 *
2202 * We temporarily subtract from next_free_rec so that the
2203 * shift will lose the tail record (which is now defunct).
2204 */
2205 le16_add_cpu(&left_el->l_next_free_rec, -1);
2206 ocfs2_shift_records_right(left_el);
2207 memset(&left_el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
2208 le16_add_cpu(&left_el->l_next_free_rec, 1);
2209
Joel Beckerec20cec2010-03-19 14:13:52 -07002210 ocfs2_journal_dirty(handle, left_leaf_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08002211
Joel Becker4619c732009-02-12 19:02:36 -08002212 ocfs2_complete_edge_insert(handle, left_path, right_path,
2213 subtree_index);
Mark Fashehdcd05382007-01-16 11:32:23 -08002214
2215out:
2216 return ret;
2217}
2218
2219/*
2220 * Given a full path, determine what cpos value would return us a path
2221 * containing the leaf immediately to the left of the current one.
2222 *
2223 * Will return zero if the path passed in is already the leftmost path.
2224 */
Tristan Yeee149a72010-05-11 17:54:44 +08002225int ocfs2_find_cpos_for_left_leaf(struct super_block *sb,
2226 struct ocfs2_path *path, u32 *cpos)
Mark Fashehdcd05382007-01-16 11:32:23 -08002227{
2228 int i, j, ret = 0;
2229 u64 blkno;
2230 struct ocfs2_extent_list *el;
2231
Mark Fashehe48edee2007-03-07 16:46:57 -08002232 BUG_ON(path->p_tree_depth == 0);
2233
Mark Fashehdcd05382007-01-16 11:32:23 -08002234 *cpos = 0;
2235
2236 blkno = path_leaf_bh(path)->b_blocknr;
2237
2238 /* Start at the tree node just above the leaf and work our way up. */
2239 i = path->p_tree_depth - 1;
2240 while (i >= 0) {
2241 el = path->p_node[i].el;
2242
2243 /*
2244 * Find the extent record just before the one in our
2245 * path.
2246 */
2247 for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) {
2248 if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) {
2249 if (j == 0) {
2250 if (i == 0) {
2251 /*
2252 * We've determined that the
2253 * path specified is already
2254 * the leftmost one - return a
2255 * cpos of zero.
2256 */
2257 goto out;
2258 }
2259 /*
2260 * The leftmost record points to our
2261 * leaf - we need to travel up the
2262 * tree one level.
2263 */
2264 goto next_node;
2265 }
2266
2267 *cpos = le32_to_cpu(el->l_recs[j - 1].e_cpos);
Mark Fashehe48edee2007-03-07 16:46:57 -08002268 *cpos = *cpos + ocfs2_rec_clusters(el,
2269 &el->l_recs[j - 1]);
2270 *cpos = *cpos - 1;
Mark Fashehdcd05382007-01-16 11:32:23 -08002271 goto out;
2272 }
2273 }
2274
2275 /*
2276 * If we got here, we never found a valid node where
2277 * the tree indicated one should be.
2278 */
Joe Perches7ecef142015-09-04 15:44:51 -07002279 ocfs2_error(sb, "Invalid extent tree at extent block %llu\n",
Mark Fashehdcd05382007-01-16 11:32:23 -08002280 (unsigned long long)blkno);
2281 ret = -EROFS;
2282 goto out;
2283
2284next_node:
2285 blkno = path->p_node[i].bh->b_blocknr;
2286 i--;
2287 }
2288
2289out:
2290 return ret;
2291}
2292
Mark Fasheh328d5752007-06-18 10:48:04 -07002293/*
2294 * Extend the transaction by enough credits to complete the rotation,
2295 * and still leave at least the original number of credits allocated
2296 * to this transaction.
2297 */
Mark Fashehdcd05382007-01-16 11:32:23 -08002298static int ocfs2_extend_rotate_transaction(handle_t *handle, int subtree_depth,
Mark Fasheh328d5752007-06-18 10:48:04 -07002299 int op_credits,
Mark Fashehdcd05382007-01-16 11:32:23 -08002300 struct ocfs2_path *path)
2301{
Tao Mac901fb02010-04-26 14:34:57 +08002302 int ret = 0;
Mark Fasheh328d5752007-06-18 10:48:04 -07002303 int credits = (path->p_tree_depth - subtree_depth) * 2 + 1 + op_credits;
Mark Fashehdcd05382007-01-16 11:32:23 -08002304
Tao Mac901fb02010-04-26 14:34:57 +08002305 if (handle->h_buffer_credits < credits)
Tao Mac18b8122009-08-18 11:44:07 +08002306 ret = ocfs2_extend_trans(handle,
2307 credits - handle->h_buffer_credits);
Tao Mac18b8122009-08-18 11:44:07 +08002308
Tao Mac901fb02010-04-26 14:34:57 +08002309 return ret;
Mark Fashehdcd05382007-01-16 11:32:23 -08002310}
2311
2312/*
2313 * Trap the case where we're inserting into the theoretical range past
2314 * the _actual_ left leaf range. Otherwise, we'll rotate a record
2315 * whose cpos is less than ours into the right leaf.
2316 *
2317 * It's only necessary to look at the rightmost record of the left
2318 * leaf because the logic that calls us should ensure that the
2319 * theoretical ranges in the path components above the leaves are
2320 * correct.
2321 */
2322static int ocfs2_rotate_requires_path_adjustment(struct ocfs2_path *left_path,
2323 u32 insert_cpos)
2324{
2325 struct ocfs2_extent_list *left_el;
2326 struct ocfs2_extent_rec *rec;
2327 int next_free;
2328
2329 left_el = path_leaf_el(left_path);
2330 next_free = le16_to_cpu(left_el->l_next_free_rec);
2331 rec = &left_el->l_recs[next_free - 1];
2332
2333 if (insert_cpos > le32_to_cpu(rec->e_cpos))
2334 return 1;
2335 return 0;
2336}
2337
Mark Fasheh328d5752007-06-18 10:48:04 -07002338static int ocfs2_leftmost_rec_contains(struct ocfs2_extent_list *el, u32 cpos)
2339{
2340 int next_free = le16_to_cpu(el->l_next_free_rec);
2341 unsigned int range;
2342 struct ocfs2_extent_rec *rec;
2343
2344 if (next_free == 0)
2345 return 0;
2346
2347 rec = &el->l_recs[0];
2348 if (ocfs2_is_empty_extent(rec)) {
2349 /* Empty list. */
2350 if (next_free == 1)
2351 return 0;
2352 rec = &el->l_recs[1];
2353 }
2354
2355 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
2356 if (cpos >= le32_to_cpu(rec->e_cpos) && cpos < range)
2357 return 1;
2358 return 0;
2359}
2360
Mark Fashehdcd05382007-01-16 11:32:23 -08002361/*
2362 * Rotate all the records in a btree right one record, starting at insert_cpos.
2363 *
2364 * The path to the rightmost leaf should be passed in.
2365 *
2366 * The array is assumed to be large enough to hold an entire path (tree depth).
2367 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002368 * Upon successful return from this function:
Mark Fashehdcd05382007-01-16 11:32:23 -08002369 *
2370 * - The 'right_path' array will contain a path to the leaf block
2371 * whose range contains e_cpos.
2372 * - That leaf block will have a single empty extent in list index 0.
2373 * - In the case that the rotation requires a post-insert update,
2374 * *ret_left_path will contain a valid path which can be passed to
2375 * ocfs2_insert_path().
2376 */
Joel Becker1bbf0b82009-02-12 19:42:08 -08002377static int ocfs2_rotate_tree_right(handle_t *handle,
Joel Becker5c601ab2009-02-12 19:10:13 -08002378 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07002379 enum ocfs2_split_type split,
Mark Fashehdcd05382007-01-16 11:32:23 -08002380 u32 insert_cpos,
2381 struct ocfs2_path *right_path,
2382 struct ocfs2_path **ret_left_path)
2383{
Mark Fasheh328d5752007-06-18 10:48:04 -07002384 int ret, start, orig_credits = handle->h_buffer_credits;
Mark Fashehdcd05382007-01-16 11:32:23 -08002385 u32 cpos;
2386 struct ocfs2_path *left_path = NULL;
Joel Becker5c601ab2009-02-12 19:10:13 -08002387 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Mark Fashehdcd05382007-01-16 11:32:23 -08002388
2389 *ret_left_path = NULL;
2390
Joel Beckerffdd7a52008-10-17 22:32:01 -07002391 left_path = ocfs2_new_path_from_path(right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08002392 if (!left_path) {
2393 ret = -ENOMEM;
2394 mlog_errno(ret);
2395 goto out;
2396 }
2397
Joel Becker5c601ab2009-02-12 19:10:13 -08002398 ret = ocfs2_find_cpos_for_left_leaf(sb, right_path, &cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08002399 if (ret) {
2400 mlog_errno(ret);
2401 goto out;
2402 }
2403
Tao Maa09d09b2011-02-22 08:21:10 +08002404 trace_ocfs2_rotate_tree_right(
2405 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
2406 insert_cpos, cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08002407
2408 /*
2409 * What we want to do here is:
2410 *
2411 * 1) Start with the rightmost path.
2412 *
2413 * 2) Determine a path to the leaf block directly to the left
2414 * of that leaf.
2415 *
2416 * 3) Determine the 'subtree root' - the lowest level tree node
2417 * which contains a path to both leaves.
2418 *
2419 * 4) Rotate the subtree.
2420 *
2421 * 5) Find the next subtree by considering the left path to be
2422 * the new right path.
2423 *
2424 * The check at the top of this while loop also accepts
2425 * insert_cpos == cpos because cpos is only a _theoretical_
2426 * value to get us the left path - insert_cpos might very well
2427 * be filling that hole.
2428 *
2429 * Stop at a cpos of '0' because we either started at the
2430 * leftmost branch (i.e., a tree with one branch and a
2431 * rotation inside of it), or we've gone as far as we can in
2432 * rotating subtrees.
2433 */
2434 while (cpos && insert_cpos <= cpos) {
Tao Maa09d09b2011-02-22 08:21:10 +08002435 trace_ocfs2_rotate_tree_right(
2436 (unsigned long long)
2437 ocfs2_metadata_cache_owner(et->et_ci),
2438 insert_cpos, cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08002439
Joel Becker5c601ab2009-02-12 19:10:13 -08002440 ret = ocfs2_find_path(et->et_ci, left_path, cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08002441 if (ret) {
2442 mlog_errno(ret);
2443 goto out;
2444 }
2445
2446 mlog_bug_on_msg(path_leaf_bh(left_path) ==
2447 path_leaf_bh(right_path),
Joel Becker5c601ab2009-02-12 19:10:13 -08002448 "Owner %llu: error during insert of %u "
Mark Fashehdcd05382007-01-16 11:32:23 -08002449 "(left path cpos %u) results in two identical "
2450 "paths ending at %llu\n",
Joel Becker5c601ab2009-02-12 19:10:13 -08002451 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
2452 insert_cpos, cpos,
Mark Fashehdcd05382007-01-16 11:32:23 -08002453 (unsigned long long)
2454 path_leaf_bh(left_path)->b_blocknr);
2455
Mark Fasheh328d5752007-06-18 10:48:04 -07002456 if (split == SPLIT_NONE &&
2457 ocfs2_rotate_requires_path_adjustment(left_path,
Mark Fashehdcd05382007-01-16 11:32:23 -08002458 insert_cpos)) {
Mark Fashehdcd05382007-01-16 11:32:23 -08002459
2460 /*
2461 * We've rotated the tree as much as we
2462 * should. The rest is up to
2463 * ocfs2_insert_path() to complete, after the
2464 * record insertion. We indicate this
2465 * situation by returning the left path.
2466 *
2467 * The reason we don't adjust the records here
2468 * before the record insert is that an error
2469 * later might break the rule where a parent
2470 * record e_cpos will reflect the actual
2471 * e_cpos of the 1st nonempty record of the
2472 * child list.
2473 */
2474 *ret_left_path = left_path;
2475 goto out_ret_path;
2476 }
2477
Joel Becker7dc02802009-02-12 19:20:13 -08002478 start = ocfs2_find_subtree_root(et, left_path, right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08002479
Tao Maa09d09b2011-02-22 08:21:10 +08002480 trace_ocfs2_rotate_subtree(start,
2481 (unsigned long long)
2482 right_path->p_node[start].bh->b_blocknr,
2483 right_path->p_tree_depth);
Mark Fashehdcd05382007-01-16 11:32:23 -08002484
2485 ret = ocfs2_extend_rotate_transaction(handle, start,
Mark Fasheh328d5752007-06-18 10:48:04 -07002486 orig_credits, right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08002487 if (ret) {
2488 mlog_errno(ret);
2489 goto out;
2490 }
2491
Joel Becker5c601ab2009-02-12 19:10:13 -08002492 ret = ocfs2_rotate_subtree_right(handle, et, left_path,
Mark Fashehdcd05382007-01-16 11:32:23 -08002493 right_path, start);
2494 if (ret) {
2495 mlog_errno(ret);
2496 goto out;
2497 }
2498
Mark Fasheh328d5752007-06-18 10:48:04 -07002499 if (split != SPLIT_NONE &&
2500 ocfs2_leftmost_rec_contains(path_leaf_el(right_path),
2501 insert_cpos)) {
2502 /*
2503 * A rotate moves the rightmost left leaf
2504 * record over to the leftmost right leaf
2505 * slot. If we're doing an extent split
2506 * instead of a real insert, then we have to
2507 * check that the extent to be split wasn't
2508 * just moved over. If it was, then we can
2509 * exit here, passing left_path back -
2510 * ocfs2_split_extent() is smart enough to
2511 * search both leaves.
2512 */
2513 *ret_left_path = left_path;
2514 goto out_ret_path;
2515 }
2516
Mark Fashehdcd05382007-01-16 11:32:23 -08002517 /*
2518 * There is no need to re-read the next right path
2519 * as we know that it'll be our current left
2520 * path. Optimize by copying values instead.
2521 */
2522 ocfs2_mv_path(right_path, left_path);
2523
Joel Becker5c601ab2009-02-12 19:10:13 -08002524 ret = ocfs2_find_cpos_for_left_leaf(sb, right_path, &cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08002525 if (ret) {
2526 mlog_errno(ret);
2527 goto out;
2528 }
2529 }
2530
2531out:
2532 ocfs2_free_path(left_path);
2533
2534out_ret_path:
2535 return ret;
2536}
2537
Joel Becker09106ba2009-02-12 19:43:57 -08002538static int ocfs2_update_edge_lengths(handle_t *handle,
2539 struct ocfs2_extent_tree *et,
Jun Piao964f14a2017-09-06 16:19:11 -07002540 struct ocfs2_path *path)
Mark Fasheh328d5752007-06-18 10:48:04 -07002541{
Tao Ma3c5e1062009-07-21 15:42:05 +08002542 int i, idx, ret;
Mark Fasheh328d5752007-06-18 10:48:04 -07002543 struct ocfs2_extent_rec *rec;
2544 struct ocfs2_extent_list *el;
2545 struct ocfs2_extent_block *eb;
2546 u32 range;
2547
Joel Becker09106ba2009-02-12 19:43:57 -08002548 ret = ocfs2_journal_access_path(et->et_ci, handle, path);
Tao Ma3c5e1062009-07-21 15:42:05 +08002549 if (ret) {
2550 mlog_errno(ret);
2551 goto out;
2552 }
2553
Mark Fasheh328d5752007-06-18 10:48:04 -07002554 /* Path should always be rightmost. */
2555 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
2556 BUG_ON(eb->h_next_leaf_blk != 0ULL);
2557
2558 el = &eb->h_list;
2559 BUG_ON(le16_to_cpu(el->l_next_free_rec) == 0);
2560 idx = le16_to_cpu(el->l_next_free_rec) - 1;
2561 rec = &el->l_recs[idx];
2562 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
2563
2564 for (i = 0; i < path->p_tree_depth; i++) {
2565 el = path->p_node[i].el;
2566 idx = le16_to_cpu(el->l_next_free_rec) - 1;
2567 rec = &el->l_recs[idx];
2568
2569 rec->e_int_clusters = cpu_to_le32(range);
2570 le32_add_cpu(&rec->e_int_clusters, -le32_to_cpu(rec->e_cpos));
2571
2572 ocfs2_journal_dirty(handle, path->p_node[i].bh);
2573 }
Tao Ma3c5e1062009-07-21 15:42:05 +08002574out:
2575 return ret;
Mark Fasheh328d5752007-06-18 10:48:04 -07002576}
2577
Joel Becker6641b0c2009-02-12 18:57:52 -08002578static void ocfs2_unlink_path(handle_t *handle,
2579 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07002580 struct ocfs2_cached_dealloc_ctxt *dealloc,
2581 struct ocfs2_path *path, int unlink_start)
2582{
2583 int ret, i;
2584 struct ocfs2_extent_block *eb;
2585 struct ocfs2_extent_list *el;
2586 struct buffer_head *bh;
2587
2588 for(i = unlink_start; i < path_num_items(path); i++) {
2589 bh = path->p_node[i].bh;
2590
2591 eb = (struct ocfs2_extent_block *)bh->b_data;
2592 /*
2593 * Not all nodes might have had their final count
2594 * decremented by the caller - handle this here.
2595 */
2596 el = &eb->h_list;
2597 if (le16_to_cpu(el->l_next_free_rec) > 1) {
2598 mlog(ML_ERROR,
2599 "Inode %llu, attempted to remove extent block "
2600 "%llu with %u records\n",
Joel Becker6641b0c2009-02-12 18:57:52 -08002601 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fasheh328d5752007-06-18 10:48:04 -07002602 (unsigned long long)le64_to_cpu(eb->h_blkno),
2603 le16_to_cpu(el->l_next_free_rec));
2604
2605 ocfs2_journal_dirty(handle, bh);
Joel Becker6641b0c2009-02-12 18:57:52 -08002606 ocfs2_remove_from_cache(et->et_ci, bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07002607 continue;
2608 }
2609
2610 el->l_next_free_rec = 0;
2611 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
2612
2613 ocfs2_journal_dirty(handle, bh);
2614
2615 ret = ocfs2_cache_extent_block_free(dealloc, eb);
2616 if (ret)
2617 mlog_errno(ret);
2618
Joel Becker6641b0c2009-02-12 18:57:52 -08002619 ocfs2_remove_from_cache(et->et_ci, bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07002620 }
2621}
2622
Joel Becker6641b0c2009-02-12 18:57:52 -08002623static void ocfs2_unlink_subtree(handle_t *handle,
2624 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07002625 struct ocfs2_path *left_path,
2626 struct ocfs2_path *right_path,
2627 int subtree_index,
2628 struct ocfs2_cached_dealloc_ctxt *dealloc)
2629{
2630 int i;
2631 struct buffer_head *root_bh = left_path->p_node[subtree_index].bh;
2632 struct ocfs2_extent_list *root_el = left_path->p_node[subtree_index].el;
Mark Fasheh328d5752007-06-18 10:48:04 -07002633 struct ocfs2_extent_block *eb;
2634
Mark Fasheh328d5752007-06-18 10:48:04 -07002635 eb = (struct ocfs2_extent_block *)right_path->p_node[subtree_index + 1].bh->b_data;
2636
2637 for(i = 1; i < le16_to_cpu(root_el->l_next_free_rec); i++)
2638 if (root_el->l_recs[i].e_blkno == eb->h_blkno)
2639 break;
2640
2641 BUG_ON(i >= le16_to_cpu(root_el->l_next_free_rec));
2642
2643 memset(&root_el->l_recs[i], 0, sizeof(struct ocfs2_extent_rec));
2644 le16_add_cpu(&root_el->l_next_free_rec, -1);
2645
2646 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
2647 eb->h_next_leaf_blk = 0;
2648
2649 ocfs2_journal_dirty(handle, root_bh);
2650 ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
2651
Joel Becker6641b0c2009-02-12 18:57:52 -08002652 ocfs2_unlink_path(handle, et, dealloc, right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002653 subtree_index + 1);
2654}
2655
Joel Becker1e2dd632009-02-12 19:45:28 -08002656static int ocfs2_rotate_subtree_left(handle_t *handle,
2657 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07002658 struct ocfs2_path *left_path,
2659 struct ocfs2_path *right_path,
2660 int subtree_index,
2661 struct ocfs2_cached_dealloc_ctxt *dealloc,
Joel Becker1e2dd632009-02-12 19:45:28 -08002662 int *deleted)
Mark Fasheh328d5752007-06-18 10:48:04 -07002663{
2664 int ret, i, del_right_subtree = 0, right_has_empty = 0;
Tao Mae7d4cb62008-08-18 17:38:44 +08002665 struct buffer_head *root_bh, *et_root_bh = path_root_bh(right_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07002666 struct ocfs2_extent_list *right_leaf_el, *left_leaf_el;
2667 struct ocfs2_extent_block *eb;
2668
2669 *deleted = 0;
2670
2671 right_leaf_el = path_leaf_el(right_path);
2672 left_leaf_el = path_leaf_el(left_path);
2673 root_bh = left_path->p_node[subtree_index].bh;
2674 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
2675
2676 if (!ocfs2_is_empty_extent(&left_leaf_el->l_recs[0]))
2677 return 0;
2678
2679 eb = (struct ocfs2_extent_block *)path_leaf_bh(right_path)->b_data;
2680 if (ocfs2_is_empty_extent(&right_leaf_el->l_recs[0])) {
2681 /*
2682 * It's legal for us to proceed if the right leaf is
2683 * the rightmost one and it has an empty extent. There
2684 * are two cases to handle - whether the leaf will be
2685 * empty after removal or not. If the leaf isn't empty
2686 * then just remove the empty extent up front. The
2687 * next block will handle empty leaves by flagging
2688 * them for unlink.
2689 *
2690 * Non rightmost leaves will throw -EAGAIN and the
2691 * caller can manually move the subtree and retry.
2692 */
2693
2694 if (eb->h_next_leaf_blk != 0ULL)
2695 return -EAGAIN;
2696
2697 if (le16_to_cpu(right_leaf_el->l_next_free_rec) > 1) {
Joel Becker1e2dd632009-02-12 19:45:28 -08002698 ret = ocfs2_journal_access_eb(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002699 path_leaf_bh(right_path),
2700 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh328d5752007-06-18 10:48:04 -07002701 if (ret) {
2702 mlog_errno(ret);
2703 goto out;
2704 }
2705
2706 ocfs2_remove_empty_extent(right_leaf_el);
2707 } else
2708 right_has_empty = 1;
2709 }
2710
2711 if (eb->h_next_leaf_blk == 0ULL &&
2712 le16_to_cpu(right_leaf_el->l_next_free_rec) == 1) {
2713 /*
2714 * We have to update i_last_eb_blk during the meta
2715 * data delete.
2716 */
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08002717 ret = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07002718 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh328d5752007-06-18 10:48:04 -07002719 if (ret) {
2720 mlog_errno(ret);
2721 goto out;
2722 }
2723
2724 del_right_subtree = 1;
2725 }
2726
2727 /*
2728 * Getting here with an empty extent in the right path implies
2729 * that it's the rightmost path and will be deleted.
2730 */
2731 BUG_ON(right_has_empty && !del_right_subtree);
2732
Joel Becker1e2dd632009-02-12 19:45:28 -08002733 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Joel Becker13723d02008-10-17 19:25:01 -07002734 subtree_index);
Mark Fasheh328d5752007-06-18 10:48:04 -07002735 if (ret) {
2736 mlog_errno(ret);
2737 goto out;
2738 }
2739
2740 for(i = subtree_index + 1; i < path_num_items(right_path); i++) {
Joel Becker1e2dd632009-02-12 19:45:28 -08002741 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002742 right_path, i);
Mark Fasheh328d5752007-06-18 10:48:04 -07002743 if (ret) {
2744 mlog_errno(ret);
2745 goto out;
2746 }
2747
Joel Becker1e2dd632009-02-12 19:45:28 -08002748 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002749 left_path, i);
Mark Fasheh328d5752007-06-18 10:48:04 -07002750 if (ret) {
2751 mlog_errno(ret);
2752 goto out;
2753 }
2754 }
2755
2756 if (!right_has_empty) {
2757 /*
2758 * Only do this if we're moving a real
2759 * record. Otherwise, the action is delayed until
2760 * after removal of the right path in which case we
2761 * can do a simple shift to remove the empty extent.
2762 */
2763 ocfs2_rotate_leaf(left_leaf_el, &right_leaf_el->l_recs[0]);
2764 memset(&right_leaf_el->l_recs[0], 0,
2765 sizeof(struct ocfs2_extent_rec));
2766 }
2767 if (eb->h_next_leaf_blk == 0ULL) {
2768 /*
2769 * Move recs over to get rid of empty extent, decrease
2770 * next_free. This is allowed to remove the last
2771 * extent in our leaf (setting l_next_free_rec to
2772 * zero) - the delete code below won't care.
2773 */
2774 ocfs2_remove_empty_extent(right_leaf_el);
2775 }
2776
Joel Beckerec20cec2010-03-19 14:13:52 -07002777 ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
2778 ocfs2_journal_dirty(handle, path_leaf_bh(right_path));
Mark Fasheh328d5752007-06-18 10:48:04 -07002779
2780 if (del_right_subtree) {
Joel Becker6641b0c2009-02-12 18:57:52 -08002781 ocfs2_unlink_subtree(handle, et, left_path, right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002782 subtree_index, dealloc);
Jun Piao964f14a2017-09-06 16:19:11 -07002783 ret = ocfs2_update_edge_lengths(handle, et, left_path);
Tao Ma3c5e1062009-07-21 15:42:05 +08002784 if (ret) {
2785 mlog_errno(ret);
2786 goto out;
2787 }
Mark Fasheh328d5752007-06-18 10:48:04 -07002788
2789 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
Joel Becker35dc0aa2008-08-20 16:25:06 -07002790 ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno));
Mark Fasheh328d5752007-06-18 10:48:04 -07002791
2792 /*
2793 * Removal of the extent in the left leaf was skipped
2794 * above so we could delete the right path
2795 * 1st.
2796 */
2797 if (right_has_empty)
2798 ocfs2_remove_empty_extent(left_leaf_el);
2799
Joel Beckerec20cec2010-03-19 14:13:52 -07002800 ocfs2_journal_dirty(handle, et_root_bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07002801
2802 *deleted = 1;
2803 } else
Joel Becker4619c732009-02-12 19:02:36 -08002804 ocfs2_complete_edge_insert(handle, left_path, right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002805 subtree_index);
2806
2807out:
2808 return ret;
2809}
2810
2811/*
2812 * Given a full path, determine what cpos value would return us a path
2813 * containing the leaf immediately to the right of the current one.
2814 *
2815 * Will return zero if the path passed in is already the rightmost path.
2816 *
2817 * This looks similar, but is subtly different to
2818 * ocfs2_find_cpos_for_left_leaf().
2819 */
Tao Ma38a04e42009-11-30 14:32:19 +08002820int ocfs2_find_cpos_for_right_leaf(struct super_block *sb,
2821 struct ocfs2_path *path, u32 *cpos)
Mark Fasheh328d5752007-06-18 10:48:04 -07002822{
2823 int i, j, ret = 0;
2824 u64 blkno;
2825 struct ocfs2_extent_list *el;
2826
2827 *cpos = 0;
2828
2829 if (path->p_tree_depth == 0)
2830 return 0;
2831
2832 blkno = path_leaf_bh(path)->b_blocknr;
2833
2834 /* Start at the tree node just above the leaf and work our way up. */
2835 i = path->p_tree_depth - 1;
2836 while (i >= 0) {
2837 int next_free;
2838
2839 el = path->p_node[i].el;
2840
2841 /*
2842 * Find the extent record just after the one in our
2843 * path.
2844 */
2845 next_free = le16_to_cpu(el->l_next_free_rec);
2846 for(j = 0; j < le16_to_cpu(el->l_next_free_rec); j++) {
2847 if (le64_to_cpu(el->l_recs[j].e_blkno) == blkno) {
2848 if (j == (next_free - 1)) {
2849 if (i == 0) {
2850 /*
2851 * We've determined that the
2852 * path specified is already
2853 * the rightmost one - return a
2854 * cpos of zero.
2855 */
2856 goto out;
2857 }
2858 /*
2859 * The rightmost record points to our
2860 * leaf - we need to travel up the
2861 * tree one level.
2862 */
2863 goto next_node;
2864 }
2865
2866 *cpos = le32_to_cpu(el->l_recs[j + 1].e_cpos);
2867 goto out;
2868 }
2869 }
2870
2871 /*
2872 * If we got here, we never found a valid node where
2873 * the tree indicated one should be.
2874 */
Joe Perches7ecef142015-09-04 15:44:51 -07002875 ocfs2_error(sb, "Invalid extent tree at extent block %llu\n",
Mark Fasheh328d5752007-06-18 10:48:04 -07002876 (unsigned long long)blkno);
2877 ret = -EROFS;
2878 goto out;
2879
2880next_node:
2881 blkno = path->p_node[i].bh->b_blocknr;
2882 i--;
2883 }
2884
2885out:
2886 return ret;
2887}
2888
Joel Becker70f18c02009-02-13 02:09:31 -08002889static int ocfs2_rotate_rightmost_leaf_left(handle_t *handle,
2890 struct ocfs2_extent_tree *et,
Joel Becker13723d02008-10-17 19:25:01 -07002891 struct ocfs2_path *path)
Mark Fasheh328d5752007-06-18 10:48:04 -07002892{
2893 int ret;
Joel Becker13723d02008-10-17 19:25:01 -07002894 struct buffer_head *bh = path_leaf_bh(path);
2895 struct ocfs2_extent_list *el = path_leaf_el(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07002896
2897 if (!ocfs2_is_empty_extent(&el->l_recs[0]))
2898 return 0;
2899
Joel Becker70f18c02009-02-13 02:09:31 -08002900 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, path,
Joel Becker13723d02008-10-17 19:25:01 -07002901 path_num_items(path) - 1);
Mark Fasheh328d5752007-06-18 10:48:04 -07002902 if (ret) {
2903 mlog_errno(ret);
2904 goto out;
2905 }
2906
2907 ocfs2_remove_empty_extent(el);
Joel Beckerec20cec2010-03-19 14:13:52 -07002908 ocfs2_journal_dirty(handle, bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07002909
2910out:
2911 return ret;
2912}
2913
Joel Beckere46f74d2009-02-12 19:47:43 -08002914static int __ocfs2_rotate_tree_left(handle_t *handle,
2915 struct ocfs2_extent_tree *et,
2916 int orig_credits,
Mark Fasheh328d5752007-06-18 10:48:04 -07002917 struct ocfs2_path *path,
2918 struct ocfs2_cached_dealloc_ctxt *dealloc,
Joel Beckere46f74d2009-02-12 19:47:43 -08002919 struct ocfs2_path **empty_extent_path)
Mark Fasheh328d5752007-06-18 10:48:04 -07002920{
2921 int ret, subtree_root, deleted;
2922 u32 right_cpos;
2923 struct ocfs2_path *left_path = NULL;
2924 struct ocfs2_path *right_path = NULL;
Joel Beckere46f74d2009-02-12 19:47:43 -08002925 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Mark Fasheh328d5752007-06-18 10:48:04 -07002926
Xue jiufei099768b2015-06-24 16:55:09 -07002927 if (!ocfs2_is_empty_extent(&(path_leaf_el(path)->l_recs[0])))
2928 return 0;
Mark Fasheh328d5752007-06-18 10:48:04 -07002929
2930 *empty_extent_path = NULL;
2931
Joel Beckere46f74d2009-02-12 19:47:43 -08002932 ret = ocfs2_find_cpos_for_right_leaf(sb, path, &right_cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07002933 if (ret) {
2934 mlog_errno(ret);
2935 goto out;
2936 }
2937
Joel Beckerffdd7a52008-10-17 22:32:01 -07002938 left_path = ocfs2_new_path_from_path(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07002939 if (!left_path) {
2940 ret = -ENOMEM;
2941 mlog_errno(ret);
2942 goto out;
2943 }
2944
2945 ocfs2_cp_path(left_path, path);
2946
Joel Beckerffdd7a52008-10-17 22:32:01 -07002947 right_path = ocfs2_new_path_from_path(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07002948 if (!right_path) {
2949 ret = -ENOMEM;
2950 mlog_errno(ret);
2951 goto out;
2952 }
2953
2954 while (right_cpos) {
Joel Beckerfacdb772009-02-12 18:08:48 -08002955 ret = ocfs2_find_path(et->et_ci, right_path, right_cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07002956 if (ret) {
2957 mlog_errno(ret);
2958 goto out;
2959 }
2960
Joel Becker7dc02802009-02-12 19:20:13 -08002961 subtree_root = ocfs2_find_subtree_root(et, left_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002962 right_path);
2963
Tao Maa09d09b2011-02-22 08:21:10 +08002964 trace_ocfs2_rotate_subtree(subtree_root,
Mark Fasheh328d5752007-06-18 10:48:04 -07002965 (unsigned long long)
2966 right_path->p_node[subtree_root].bh->b_blocknr,
2967 right_path->p_tree_depth);
2968
Xue jiufei17215982016-03-25 14:21:41 -07002969 ret = ocfs2_extend_rotate_transaction(handle, 0,
Mark Fasheh328d5752007-06-18 10:48:04 -07002970 orig_credits, left_path);
2971 if (ret) {
2972 mlog_errno(ret);
2973 goto out;
2974 }
2975
Mark Fashehe8aed342007-12-03 16:43:01 -08002976 /*
2977 * Caller might still want to make changes to the
2978 * tree root, so re-add it to the journal here.
2979 */
Joel Beckere46f74d2009-02-12 19:47:43 -08002980 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07002981 left_path, 0);
Mark Fashehe8aed342007-12-03 16:43:01 -08002982 if (ret) {
2983 mlog_errno(ret);
2984 goto out;
2985 }
2986
Joel Becker1e2dd632009-02-12 19:45:28 -08002987 ret = ocfs2_rotate_subtree_left(handle, et, left_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07002988 right_path, subtree_root,
Joel Becker1e2dd632009-02-12 19:45:28 -08002989 dealloc, &deleted);
Mark Fasheh328d5752007-06-18 10:48:04 -07002990 if (ret == -EAGAIN) {
2991 /*
2992 * The rotation has to temporarily stop due to
2993 * the right subtree having an empty
2994 * extent. Pass it back to the caller for a
2995 * fixup.
2996 */
2997 *empty_extent_path = right_path;
2998 right_path = NULL;
2999 goto out;
3000 }
3001 if (ret) {
3002 mlog_errno(ret);
3003 goto out;
3004 }
3005
3006 /*
3007 * The subtree rotate might have removed records on
3008 * the rightmost edge. If so, then rotation is
3009 * complete.
3010 */
3011 if (deleted)
3012 break;
3013
3014 ocfs2_mv_path(left_path, right_path);
3015
Joel Beckere46f74d2009-02-12 19:47:43 -08003016 ret = ocfs2_find_cpos_for_right_leaf(sb, left_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003017 &right_cpos);
3018 if (ret) {
3019 mlog_errno(ret);
3020 goto out;
3021 }
3022 }
3023
3024out:
3025 ocfs2_free_path(right_path);
3026 ocfs2_free_path(left_path);
3027
3028 return ret;
3029}
3030
Joel Becker70f18c02009-02-13 02:09:31 -08003031static int ocfs2_remove_rightmost_path(handle_t *handle,
3032 struct ocfs2_extent_tree *et,
Tao Mae7d4cb62008-08-18 17:38:44 +08003033 struct ocfs2_path *path,
Joel Becker70f18c02009-02-13 02:09:31 -08003034 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fasheh328d5752007-06-18 10:48:04 -07003035{
3036 int ret, subtree_index;
3037 u32 cpos;
3038 struct ocfs2_path *left_path = NULL;
Mark Fasheh328d5752007-06-18 10:48:04 -07003039 struct ocfs2_extent_block *eb;
3040 struct ocfs2_extent_list *el;
3041
Joel Becker6136ca52009-02-12 19:32:43 -08003042 ret = ocfs2_et_sanity_check(et);
Tao Mae7d4cb62008-08-18 17:38:44 +08003043 if (ret)
3044 goto out;
Mark Fasheh328d5752007-06-18 10:48:04 -07003045
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08003046 ret = ocfs2_journal_access_path(et->et_ci, handle, path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003047 if (ret) {
3048 mlog_errno(ret);
3049 goto out;
3050 }
3051
Joel Becker3d03a302009-02-12 17:49:26 -08003052 ret = ocfs2_find_cpos_for_left_leaf(ocfs2_metadata_cache_get_super(et->et_ci),
3053 path, &cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07003054 if (ret) {
3055 mlog_errno(ret);
3056 goto out;
3057 }
3058
3059 if (cpos) {
3060 /*
3061 * We have a path to the left of this one - it needs
3062 * an update too.
3063 */
Joel Beckerffdd7a52008-10-17 22:32:01 -07003064 left_path = ocfs2_new_path_from_path(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003065 if (!left_path) {
3066 ret = -ENOMEM;
3067 mlog_errno(ret);
3068 goto out;
3069 }
3070
Joel Beckerfacdb772009-02-12 18:08:48 -08003071 ret = ocfs2_find_path(et->et_ci, left_path, cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07003072 if (ret) {
3073 mlog_errno(ret);
3074 goto out;
3075 }
3076
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08003077 ret = ocfs2_journal_access_path(et->et_ci, handle, left_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003078 if (ret) {
3079 mlog_errno(ret);
3080 goto out;
3081 }
3082
Joel Becker7dc02802009-02-12 19:20:13 -08003083 subtree_index = ocfs2_find_subtree_root(et, left_path, path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003084
Joel Becker6641b0c2009-02-12 18:57:52 -08003085 ocfs2_unlink_subtree(handle, et, left_path, path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003086 subtree_index, dealloc);
Jun Piao964f14a2017-09-06 16:19:11 -07003087 ret = ocfs2_update_edge_lengths(handle, et, left_path);
Tao Ma3c5e1062009-07-21 15:42:05 +08003088 if (ret) {
3089 mlog_errno(ret);
3090 goto out;
3091 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003092
3093 eb = (struct ocfs2_extent_block *)path_leaf_bh(left_path)->b_data;
Joel Becker35dc0aa2008-08-20 16:25:06 -07003094 ocfs2_et_set_last_eb_blk(et, le64_to_cpu(eb->h_blkno));
Mark Fasheh328d5752007-06-18 10:48:04 -07003095 } else {
3096 /*
3097 * 'path' is also the leftmost path which
3098 * means it must be the only one. This gets
3099 * handled differently because we want to
Joel Becker70f18c02009-02-13 02:09:31 -08003100 * revert the root back to having extents
Mark Fasheh328d5752007-06-18 10:48:04 -07003101 * in-line.
3102 */
Joel Becker6641b0c2009-02-12 18:57:52 -08003103 ocfs2_unlink_path(handle, et, dealloc, path, 1);
Mark Fasheh328d5752007-06-18 10:48:04 -07003104
Joel Beckerce1d9ea2008-08-20 16:30:07 -07003105 el = et->et_root_el;
Mark Fasheh328d5752007-06-18 10:48:04 -07003106 el->l_tree_depth = 0;
3107 el->l_next_free_rec = 0;
3108 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
3109
Joel Becker35dc0aa2008-08-20 16:25:06 -07003110 ocfs2_et_set_last_eb_blk(et, 0);
Mark Fasheh328d5752007-06-18 10:48:04 -07003111 }
3112
3113 ocfs2_journal_dirty(handle, path_root_bh(path));
3114
3115out:
3116 ocfs2_free_path(left_path);
3117 return ret;
3118}
3119
Xue jiufeid0c97d52015-09-04 15:44:48 -07003120static int ocfs2_remove_rightmost_empty_extent(struct ocfs2_super *osb,
3121 struct ocfs2_extent_tree *et,
3122 struct ocfs2_path *path,
3123 struct ocfs2_cached_dealloc_ctxt *dealloc)
3124{
3125 handle_t *handle;
3126 int ret;
3127 int credits = path->p_tree_depth * 2 + 1;
3128
3129 handle = ocfs2_start_trans(osb, credits);
3130 if (IS_ERR(handle)) {
3131 ret = PTR_ERR(handle);
3132 mlog_errno(ret);
3133 return ret;
3134 }
3135
3136 ret = ocfs2_remove_rightmost_path(handle, et, path, dealloc);
3137 if (ret)
3138 mlog_errno(ret);
3139
3140 ocfs2_commit_trans(osb, handle);
3141 return ret;
3142}
3143
Mark Fasheh328d5752007-06-18 10:48:04 -07003144/*
3145 * Left rotation of btree records.
3146 *
3147 * In many ways, this is (unsurprisingly) the opposite of right
3148 * rotation. We start at some non-rightmost path containing an empty
3149 * extent in the leaf block. The code works its way to the rightmost
3150 * path by rotating records to the left in every subtree.
3151 *
3152 * This is used by any code which reduces the number of extent records
3153 * in a leaf. After removal, an empty record should be placed in the
3154 * leftmost list position.
3155 *
3156 * This won't handle a length update of the rightmost path records if
3157 * the rightmost tree leaf record is removed so the caller is
3158 * responsible for detecting and correcting that.
3159 */
Joel Becker70f18c02009-02-13 02:09:31 -08003160static int ocfs2_rotate_tree_left(handle_t *handle,
3161 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07003162 struct ocfs2_path *path,
Joel Becker70f18c02009-02-13 02:09:31 -08003163 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fasheh328d5752007-06-18 10:48:04 -07003164{
3165 int ret, orig_credits = handle->h_buffer_credits;
3166 struct ocfs2_path *tmp_path = NULL, *restart_path = NULL;
3167 struct ocfs2_extent_block *eb;
3168 struct ocfs2_extent_list *el;
3169
3170 el = path_leaf_el(path);
3171 if (!ocfs2_is_empty_extent(&el->l_recs[0]))
3172 return 0;
3173
3174 if (path->p_tree_depth == 0) {
3175rightmost_no_delete:
3176 /*
Tao Mae7d4cb62008-08-18 17:38:44 +08003177 * Inline extents. This is trivially handled, so do
Mark Fasheh328d5752007-06-18 10:48:04 -07003178 * it up front.
3179 */
Joel Becker70f18c02009-02-13 02:09:31 -08003180 ret = ocfs2_rotate_rightmost_leaf_left(handle, et, path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003181 if (ret)
3182 mlog_errno(ret);
3183 goto out;
3184 }
3185
3186 /*
3187 * Handle rightmost branch now. There's several cases:
3188 * 1) simple rotation leaving records in there. That's trivial.
3189 * 2) rotation requiring a branch delete - there's no more
3190 * records left. Two cases of this:
3191 * a) There are branches to the left.
3192 * b) This is also the leftmost (the only) branch.
3193 *
3194 * 1) is handled via ocfs2_rotate_rightmost_leaf_left()
3195 * 2a) we need the left branch so that we can update it with the unlink
Joel Becker70f18c02009-02-13 02:09:31 -08003196 * 2b) we need to bring the root back to inline extents.
Mark Fasheh328d5752007-06-18 10:48:04 -07003197 */
3198
3199 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
3200 el = &eb->h_list;
3201 if (eb->h_next_leaf_blk == 0) {
3202 /*
3203 * This gets a bit tricky if we're going to delete the
3204 * rightmost path. Get the other cases out of the way
3205 * 1st.
3206 */
3207 if (le16_to_cpu(el->l_next_free_rec) > 1)
3208 goto rightmost_no_delete;
3209
3210 if (le16_to_cpu(el->l_next_free_rec) == 0) {
Jun Piao93f59202018-08-17 15:44:24 -07003211 ret = ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
3212 "Owner %llu has empty extent block at %llu\n",
3213 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
3214 (unsigned long long)le64_to_cpu(eb->h_blkno));
Mark Fasheh328d5752007-06-18 10:48:04 -07003215 goto out;
3216 }
3217
3218 /*
3219 * XXX: The caller can not trust "path" any more after
3220 * this as it will have been deleted. What do we do?
3221 *
3222 * In theory the rotate-for-merge code will never get
3223 * here because it'll always ask for a rotate in a
3224 * nonempty list.
3225 */
3226
Joel Becker70f18c02009-02-13 02:09:31 -08003227 ret = ocfs2_remove_rightmost_path(handle, et, path,
3228 dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07003229 if (ret)
3230 mlog_errno(ret);
3231 goto out;
3232 }
3233
3234 /*
3235 * Now we can loop, remembering the path we get from -EAGAIN
3236 * and restarting from there.
3237 */
3238try_rotate:
Joel Beckere46f74d2009-02-12 19:47:43 -08003239 ret = __ocfs2_rotate_tree_left(handle, et, orig_credits, path,
3240 dealloc, &restart_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003241 if (ret && ret != -EAGAIN) {
3242 mlog_errno(ret);
3243 goto out;
3244 }
3245
3246 while (ret == -EAGAIN) {
3247 tmp_path = restart_path;
3248 restart_path = NULL;
3249
Joel Beckere46f74d2009-02-12 19:47:43 -08003250 ret = __ocfs2_rotate_tree_left(handle, et, orig_credits,
Mark Fasheh328d5752007-06-18 10:48:04 -07003251 tmp_path, dealloc,
Joel Beckere46f74d2009-02-12 19:47:43 -08003252 &restart_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003253 if (ret && ret != -EAGAIN) {
3254 mlog_errno(ret);
3255 goto out;
3256 }
3257
3258 ocfs2_free_path(tmp_path);
3259 tmp_path = NULL;
3260
3261 if (ret == 0)
3262 goto try_rotate;
3263 }
3264
3265out:
3266 ocfs2_free_path(tmp_path);
3267 ocfs2_free_path(restart_path);
3268 return ret;
3269}
3270
3271static void ocfs2_cleanup_merge(struct ocfs2_extent_list *el,
3272 int index)
3273{
3274 struct ocfs2_extent_rec *rec = &el->l_recs[index];
3275 unsigned int size;
3276
3277 if (rec->e_leaf_clusters == 0) {
3278 /*
3279 * We consumed all of the merged-from record. An empty
3280 * extent cannot exist anywhere but the 1st array
3281 * position, so move things over if the merged-from
3282 * record doesn't occupy that position.
3283 *
3284 * This creates a new empty extent so the caller
3285 * should be smart enough to have removed any existing
3286 * ones.
3287 */
3288 if (index > 0) {
3289 BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0]));
3290 size = index * sizeof(struct ocfs2_extent_rec);
3291 memmove(&el->l_recs[1], &el->l_recs[0], size);
3292 }
3293
3294 /*
3295 * Always memset - the caller doesn't check whether it
3296 * created an empty extent, so there could be junk in
3297 * the other fields.
3298 */
3299 memset(&el->l_recs[0], 0, sizeof(struct ocfs2_extent_rec));
3300 }
3301}
3302
Joel Becker4fe82c32009-02-13 02:16:08 -08003303static int ocfs2_get_right_path(struct ocfs2_extent_tree *et,
Tao Ma677b9752008-01-30 14:21:05 +08003304 struct ocfs2_path *left_path,
3305 struct ocfs2_path **ret_right_path)
Mark Fasheh328d5752007-06-18 10:48:04 -07003306{
3307 int ret;
Tao Ma677b9752008-01-30 14:21:05 +08003308 u32 right_cpos;
3309 struct ocfs2_path *right_path = NULL;
3310 struct ocfs2_extent_list *left_el;
3311
3312 *ret_right_path = NULL;
3313
3314 /* This function shouldn't be called for non-trees. */
3315 BUG_ON(left_path->p_tree_depth == 0);
3316
3317 left_el = path_leaf_el(left_path);
3318 BUG_ON(left_el->l_next_free_rec != left_el->l_count);
3319
Joel Becker4fe82c32009-02-13 02:16:08 -08003320 ret = ocfs2_find_cpos_for_right_leaf(ocfs2_metadata_cache_get_super(et->et_ci),
3321 left_path, &right_cpos);
Tao Ma677b9752008-01-30 14:21:05 +08003322 if (ret) {
3323 mlog_errno(ret);
3324 goto out;
3325 }
3326
3327 /* This function shouldn't be called for the rightmost leaf. */
3328 BUG_ON(right_cpos == 0);
3329
Joel Beckerffdd7a52008-10-17 22:32:01 -07003330 right_path = ocfs2_new_path_from_path(left_path);
Tao Ma677b9752008-01-30 14:21:05 +08003331 if (!right_path) {
3332 ret = -ENOMEM;
3333 mlog_errno(ret);
3334 goto out;
3335 }
3336
Joel Becker4fe82c32009-02-13 02:16:08 -08003337 ret = ocfs2_find_path(et->et_ci, right_path, right_cpos);
Tao Ma677b9752008-01-30 14:21:05 +08003338 if (ret) {
3339 mlog_errno(ret);
3340 goto out;
3341 }
3342
3343 *ret_right_path = right_path;
3344out:
3345 if (ret)
3346 ocfs2_free_path(right_path);
3347 return ret;
3348}
3349
3350/*
3351 * Remove split_rec clusters from the record at index and merge them
3352 * onto the beginning of the record "next" to it.
3353 * For index < l_count - 1, the next means the extent rec at index + 1.
3354 * For index == l_count - 1, the "next" means the 1st extent rec of the
3355 * next extent block.
3356 */
Joel Becker4fe82c32009-02-13 02:16:08 -08003357static int ocfs2_merge_rec_right(struct ocfs2_path *left_path,
Tao Ma677b9752008-01-30 14:21:05 +08003358 handle_t *handle,
Joel Becker7dc02802009-02-12 19:20:13 -08003359 struct ocfs2_extent_tree *et,
Tao Ma677b9752008-01-30 14:21:05 +08003360 struct ocfs2_extent_rec *split_rec,
3361 int index)
3362{
3363 int ret, next_free, i;
Mark Fasheh328d5752007-06-18 10:48:04 -07003364 unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters);
3365 struct ocfs2_extent_rec *left_rec;
3366 struct ocfs2_extent_rec *right_rec;
Tao Ma677b9752008-01-30 14:21:05 +08003367 struct ocfs2_extent_list *right_el;
3368 struct ocfs2_path *right_path = NULL;
3369 int subtree_index = 0;
3370 struct ocfs2_extent_list *el = path_leaf_el(left_path);
3371 struct buffer_head *bh = path_leaf_bh(left_path);
3372 struct buffer_head *root_bh = NULL;
Mark Fasheh328d5752007-06-18 10:48:04 -07003373
3374 BUG_ON(index >= le16_to_cpu(el->l_next_free_rec));
Mark Fasheh328d5752007-06-18 10:48:04 -07003375 left_rec = &el->l_recs[index];
Tao Ma677b9752008-01-30 14:21:05 +08003376
Al Viro9d8df6a2008-05-21 06:32:11 +01003377 if (index == le16_to_cpu(el->l_next_free_rec) - 1 &&
Tao Ma677b9752008-01-30 14:21:05 +08003378 le16_to_cpu(el->l_next_free_rec) == le16_to_cpu(el->l_count)) {
3379 /* we meet with a cross extent block merge. */
Joel Becker4fe82c32009-02-13 02:16:08 -08003380 ret = ocfs2_get_right_path(et, left_path, &right_path);
Tao Ma677b9752008-01-30 14:21:05 +08003381 if (ret) {
3382 mlog_errno(ret);
Markus Elfring629a3b52015-04-14 15:42:53 -07003383 return ret;
Tao Ma677b9752008-01-30 14:21:05 +08003384 }
3385
3386 right_el = path_leaf_el(right_path);
3387 next_free = le16_to_cpu(right_el->l_next_free_rec);
3388 BUG_ON(next_free <= 0);
3389 right_rec = &right_el->l_recs[0];
3390 if (ocfs2_is_empty_extent(right_rec)) {
Al Viro9d8df6a2008-05-21 06:32:11 +01003391 BUG_ON(next_free <= 1);
Tao Ma677b9752008-01-30 14:21:05 +08003392 right_rec = &right_el->l_recs[1];
3393 }
3394
3395 BUG_ON(le32_to_cpu(left_rec->e_cpos) +
3396 le16_to_cpu(left_rec->e_leaf_clusters) !=
3397 le32_to_cpu(right_rec->e_cpos));
3398
Joel Becker7dc02802009-02-12 19:20:13 -08003399 subtree_index = ocfs2_find_subtree_root(et, left_path,
3400 right_path);
Tao Ma677b9752008-01-30 14:21:05 +08003401
3402 ret = ocfs2_extend_rotate_transaction(handle, subtree_index,
3403 handle->h_buffer_credits,
3404 right_path);
3405 if (ret) {
3406 mlog_errno(ret);
3407 goto out;
3408 }
3409
3410 root_bh = left_path->p_node[subtree_index].bh;
3411 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
3412
Joel Becker7dc02802009-02-12 19:20:13 -08003413 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Joel Becker13723d02008-10-17 19:25:01 -07003414 subtree_index);
Tao Ma677b9752008-01-30 14:21:05 +08003415 if (ret) {
3416 mlog_errno(ret);
3417 goto out;
3418 }
3419
3420 for (i = subtree_index + 1;
3421 i < path_num_items(right_path); i++) {
Joel Becker7dc02802009-02-12 19:20:13 -08003422 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07003423 right_path, i);
Tao Ma677b9752008-01-30 14:21:05 +08003424 if (ret) {
3425 mlog_errno(ret);
3426 goto out;
3427 }
3428
Joel Becker7dc02802009-02-12 19:20:13 -08003429 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07003430 left_path, i);
Tao Ma677b9752008-01-30 14:21:05 +08003431 if (ret) {
3432 mlog_errno(ret);
3433 goto out;
3434 }
3435 }
3436
3437 } else {
3438 BUG_ON(index == le16_to_cpu(el->l_next_free_rec) - 1);
3439 right_rec = &el->l_recs[index + 1];
3440 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003441
Joel Becker7dc02802009-02-12 19:20:13 -08003442 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, left_path,
Joel Becker13723d02008-10-17 19:25:01 -07003443 path_num_items(left_path) - 1);
Mark Fasheh328d5752007-06-18 10:48:04 -07003444 if (ret) {
3445 mlog_errno(ret);
3446 goto out;
3447 }
3448
3449 le16_add_cpu(&left_rec->e_leaf_clusters, -split_clusters);
3450
3451 le32_add_cpu(&right_rec->e_cpos, -split_clusters);
3452 le64_add_cpu(&right_rec->e_blkno,
Joel Becker7dc02802009-02-12 19:20:13 -08003453 -ocfs2_clusters_to_blocks(ocfs2_metadata_cache_get_super(et->et_ci),
3454 split_clusters));
Mark Fasheh328d5752007-06-18 10:48:04 -07003455 le16_add_cpu(&right_rec->e_leaf_clusters, split_clusters);
3456
3457 ocfs2_cleanup_merge(el, index);
3458
Joel Beckerec20cec2010-03-19 14:13:52 -07003459 ocfs2_journal_dirty(handle, bh);
Tao Ma677b9752008-01-30 14:21:05 +08003460 if (right_path) {
Joel Beckerec20cec2010-03-19 14:13:52 -07003461 ocfs2_journal_dirty(handle, path_leaf_bh(right_path));
Joel Becker4619c732009-02-12 19:02:36 -08003462 ocfs2_complete_edge_insert(handle, left_path, right_path,
3463 subtree_index);
Tao Ma677b9752008-01-30 14:21:05 +08003464 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003465out:
Markus Elfringfd90d4df2015-04-14 15:42:42 -07003466 ocfs2_free_path(right_path);
Tao Ma677b9752008-01-30 14:21:05 +08003467 return ret;
3468}
3469
Joel Becker4fe82c32009-02-13 02:16:08 -08003470static int ocfs2_get_left_path(struct ocfs2_extent_tree *et,
Tao Ma677b9752008-01-30 14:21:05 +08003471 struct ocfs2_path *right_path,
3472 struct ocfs2_path **ret_left_path)
3473{
3474 int ret;
3475 u32 left_cpos;
3476 struct ocfs2_path *left_path = NULL;
3477
3478 *ret_left_path = NULL;
3479
3480 /* This function shouldn't be called for non-trees. */
3481 BUG_ON(right_path->p_tree_depth == 0);
3482
Joel Becker4fe82c32009-02-13 02:16:08 -08003483 ret = ocfs2_find_cpos_for_left_leaf(ocfs2_metadata_cache_get_super(et->et_ci),
Tao Ma677b9752008-01-30 14:21:05 +08003484 right_path, &left_cpos);
3485 if (ret) {
3486 mlog_errno(ret);
3487 goto out;
3488 }
3489
3490 /* This function shouldn't be called for the leftmost leaf. */
3491 BUG_ON(left_cpos == 0);
3492
Joel Beckerffdd7a52008-10-17 22:32:01 -07003493 left_path = ocfs2_new_path_from_path(right_path);
Tao Ma677b9752008-01-30 14:21:05 +08003494 if (!left_path) {
3495 ret = -ENOMEM;
3496 mlog_errno(ret);
3497 goto out;
3498 }
3499
Joel Becker4fe82c32009-02-13 02:16:08 -08003500 ret = ocfs2_find_path(et->et_ci, left_path, left_cpos);
Tao Ma677b9752008-01-30 14:21:05 +08003501 if (ret) {
3502 mlog_errno(ret);
3503 goto out;
3504 }
3505
3506 *ret_left_path = left_path;
3507out:
3508 if (ret)
3509 ocfs2_free_path(left_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003510 return ret;
3511}
3512
3513/*
3514 * Remove split_rec clusters from the record at index and merge them
Tao Ma677b9752008-01-30 14:21:05 +08003515 * onto the tail of the record "before" it.
3516 * For index > 0, the "before" means the extent rec at index - 1.
3517 *
3518 * For index == 0, the "before" means the last record of the previous
3519 * extent block. And there is also a situation that we may need to
3520 * remove the rightmost leaf extent block in the right_path and change
3521 * the right path to indicate the new rightmost path.
Mark Fasheh328d5752007-06-18 10:48:04 -07003522 */
Joel Becker4fe82c32009-02-13 02:16:08 -08003523static int ocfs2_merge_rec_left(struct ocfs2_path *right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003524 handle_t *handle,
Joel Becker4fe82c32009-02-13 02:16:08 -08003525 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07003526 struct ocfs2_extent_rec *split_rec,
Tao Ma677b9752008-01-30 14:21:05 +08003527 struct ocfs2_cached_dealloc_ctxt *dealloc,
3528 int index)
Mark Fasheh328d5752007-06-18 10:48:04 -07003529{
Tao Ma677b9752008-01-30 14:21:05 +08003530 int ret, i, subtree_index = 0, has_empty_extent = 0;
Mark Fasheh328d5752007-06-18 10:48:04 -07003531 unsigned int split_clusters = le16_to_cpu(split_rec->e_leaf_clusters);
3532 struct ocfs2_extent_rec *left_rec;
3533 struct ocfs2_extent_rec *right_rec;
Tao Ma677b9752008-01-30 14:21:05 +08003534 struct ocfs2_extent_list *el = path_leaf_el(right_path);
3535 struct buffer_head *bh = path_leaf_bh(right_path);
3536 struct buffer_head *root_bh = NULL;
3537 struct ocfs2_path *left_path = NULL;
3538 struct ocfs2_extent_list *left_el;
Mark Fasheh328d5752007-06-18 10:48:04 -07003539
Tao Ma677b9752008-01-30 14:21:05 +08003540 BUG_ON(index < 0);
Mark Fasheh328d5752007-06-18 10:48:04 -07003541
Mark Fasheh328d5752007-06-18 10:48:04 -07003542 right_rec = &el->l_recs[index];
Tao Ma677b9752008-01-30 14:21:05 +08003543 if (index == 0) {
3544 /* we meet with a cross extent block merge. */
Joel Becker4fe82c32009-02-13 02:16:08 -08003545 ret = ocfs2_get_left_path(et, right_path, &left_path);
Tao Ma677b9752008-01-30 14:21:05 +08003546 if (ret) {
3547 mlog_errno(ret);
Markus Elfring992ef6e2015-04-14 15:42:51 -07003548 return ret;
Tao Ma677b9752008-01-30 14:21:05 +08003549 }
3550
3551 left_el = path_leaf_el(left_path);
3552 BUG_ON(le16_to_cpu(left_el->l_next_free_rec) !=
3553 le16_to_cpu(left_el->l_count));
3554
3555 left_rec = &left_el->l_recs[
3556 le16_to_cpu(left_el->l_next_free_rec) - 1];
3557 BUG_ON(le32_to_cpu(left_rec->e_cpos) +
3558 le16_to_cpu(left_rec->e_leaf_clusters) !=
3559 le32_to_cpu(split_rec->e_cpos));
3560
Joel Becker7dc02802009-02-12 19:20:13 -08003561 subtree_index = ocfs2_find_subtree_root(et, left_path,
3562 right_path);
Tao Ma677b9752008-01-30 14:21:05 +08003563
3564 ret = ocfs2_extend_rotate_transaction(handle, subtree_index,
3565 handle->h_buffer_credits,
3566 left_path);
3567 if (ret) {
3568 mlog_errno(ret);
3569 goto out;
3570 }
3571
3572 root_bh = left_path->p_node[subtree_index].bh;
3573 BUG_ON(root_bh != right_path->p_node[subtree_index].bh);
3574
Joel Becker4fe82c32009-02-13 02:16:08 -08003575 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Joel Becker13723d02008-10-17 19:25:01 -07003576 subtree_index);
Tao Ma677b9752008-01-30 14:21:05 +08003577 if (ret) {
3578 mlog_errno(ret);
3579 goto out;
3580 }
3581
3582 for (i = subtree_index + 1;
3583 i < path_num_items(right_path); i++) {
Joel Becker4fe82c32009-02-13 02:16:08 -08003584 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07003585 right_path, i);
Tao Ma677b9752008-01-30 14:21:05 +08003586 if (ret) {
3587 mlog_errno(ret);
3588 goto out;
3589 }
3590
Joel Becker4fe82c32009-02-13 02:16:08 -08003591 ret = ocfs2_path_bh_journal_access(handle, et->et_ci,
Joel Becker13723d02008-10-17 19:25:01 -07003592 left_path, i);
Tao Ma677b9752008-01-30 14:21:05 +08003593 if (ret) {
3594 mlog_errno(ret);
3595 goto out;
3596 }
3597 }
3598 } else {
3599 left_rec = &el->l_recs[index - 1];
3600 if (ocfs2_is_empty_extent(&el->l_recs[0]))
3601 has_empty_extent = 1;
3602 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003603
Joel Becker4fe82c32009-02-13 02:16:08 -08003604 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, right_path,
Tao Ma9047bea2009-01-05 14:45:24 +08003605 path_num_items(right_path) - 1);
Mark Fasheh328d5752007-06-18 10:48:04 -07003606 if (ret) {
3607 mlog_errno(ret);
3608 goto out;
3609 }
3610
3611 if (has_empty_extent && index == 1) {
3612 /*
3613 * The easy case - we can just plop the record right in.
3614 */
3615 *left_rec = *split_rec;
Tao Ma677b9752008-01-30 14:21:05 +08003616 } else
Mark Fasheh328d5752007-06-18 10:48:04 -07003617 le16_add_cpu(&left_rec->e_leaf_clusters, split_clusters);
Mark Fasheh328d5752007-06-18 10:48:04 -07003618
3619 le32_add_cpu(&right_rec->e_cpos, split_clusters);
3620 le64_add_cpu(&right_rec->e_blkno,
Joel Becker4fe82c32009-02-13 02:16:08 -08003621 ocfs2_clusters_to_blocks(ocfs2_metadata_cache_get_super(et->et_ci),
3622 split_clusters));
Mark Fasheh328d5752007-06-18 10:48:04 -07003623 le16_add_cpu(&right_rec->e_leaf_clusters, -split_clusters);
3624
3625 ocfs2_cleanup_merge(el, index);
3626
Joel Beckerec20cec2010-03-19 14:13:52 -07003627 ocfs2_journal_dirty(handle, bh);
Tao Ma677b9752008-01-30 14:21:05 +08003628 if (left_path) {
Joel Beckerec20cec2010-03-19 14:13:52 -07003629 ocfs2_journal_dirty(handle, path_leaf_bh(left_path));
Tao Ma677b9752008-01-30 14:21:05 +08003630
3631 /*
3632 * In the situation that the right_rec is empty and the extent
3633 * block is empty also, ocfs2_complete_edge_insert can't handle
3634 * it and we need to delete the right extent block.
3635 */
3636 if (le16_to_cpu(right_rec->e_leaf_clusters) == 0 &&
3637 le16_to_cpu(el->l_next_free_rec) == 1) {
Xue jiufei17215982016-03-25 14:21:41 -07003638 /* extend credit for ocfs2_remove_rightmost_path */
3639 ret = ocfs2_extend_rotate_transaction(handle, 0,
3640 handle->h_buffer_credits,
3641 right_path);
3642 if (ret) {
3643 mlog_errno(ret);
3644 goto out;
3645 }
Tao Ma677b9752008-01-30 14:21:05 +08003646
Joel Becker70f18c02009-02-13 02:09:31 -08003647 ret = ocfs2_remove_rightmost_path(handle, et,
Tao Mae7d4cb62008-08-18 17:38:44 +08003648 right_path,
Joel Becker70f18c02009-02-13 02:09:31 -08003649 dealloc);
Tao Ma677b9752008-01-30 14:21:05 +08003650 if (ret) {
3651 mlog_errno(ret);
3652 goto out;
3653 }
3654
3655 /* Now the rightmost extent block has been deleted.
3656 * So we use the new rightmost path.
3657 */
3658 ocfs2_mv_path(right_path, left_path);
3659 left_path = NULL;
3660 } else
Joel Becker4619c732009-02-12 19:02:36 -08003661 ocfs2_complete_edge_insert(handle, left_path,
Tao Ma677b9752008-01-30 14:21:05 +08003662 right_path, subtree_index);
3663 }
Mark Fasheh328d5752007-06-18 10:48:04 -07003664out:
Markus Elfringfd90d4df2015-04-14 15:42:42 -07003665 ocfs2_free_path(left_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003666 return ret;
3667}
3668
Joel Beckerc495dd22009-02-13 02:19:11 -08003669static int ocfs2_try_to_merge_extent(handle_t *handle,
3670 struct ocfs2_extent_tree *et,
Tao Ma677b9752008-01-30 14:21:05 +08003671 struct ocfs2_path *path,
Mark Fasheh328d5752007-06-18 10:48:04 -07003672 int split_index,
3673 struct ocfs2_extent_rec *split_rec,
3674 struct ocfs2_cached_dealloc_ctxt *dealloc,
Joel Beckerc495dd22009-02-13 02:19:11 -08003675 struct ocfs2_merge_ctxt *ctxt)
Mark Fasheh328d5752007-06-18 10:48:04 -07003676{
Tao Mao518d7262007-08-28 17:25:35 -07003677 int ret = 0;
Tao Ma677b9752008-01-30 14:21:05 +08003678 struct ocfs2_extent_list *el = path_leaf_el(path);
Mark Fasheh328d5752007-06-18 10:48:04 -07003679 struct ocfs2_extent_rec *rec = &el->l_recs[split_index];
3680
3681 BUG_ON(ctxt->c_contig_type == CONTIG_NONE);
3682
Tao Mao518d7262007-08-28 17:25:35 -07003683 if (ctxt->c_split_covers_rec && ctxt->c_has_empty_extent) {
Xue jiufei17215982016-03-25 14:21:41 -07003684 /* extend credit for ocfs2_remove_rightmost_path */
3685 ret = ocfs2_extend_rotate_transaction(handle, 0,
3686 handle->h_buffer_credits,
3687 path);
3688 if (ret) {
3689 mlog_errno(ret);
3690 goto out;
3691 }
Tao Mao518d7262007-08-28 17:25:35 -07003692 /*
3693 * The merge code will need to create an empty
3694 * extent to take the place of the newly
3695 * emptied slot. Remove any pre-existing empty
3696 * extents - having more than one in a leaf is
3697 * illegal.
3698 */
Joel Becker70f18c02009-02-13 02:09:31 -08003699 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Tao Mao518d7262007-08-28 17:25:35 -07003700 if (ret) {
3701 mlog_errno(ret);
3702 goto out;
Mark Fasheh328d5752007-06-18 10:48:04 -07003703 }
Tao Mao518d7262007-08-28 17:25:35 -07003704 split_index--;
3705 rec = &el->l_recs[split_index];
Mark Fasheh328d5752007-06-18 10:48:04 -07003706 }
3707
3708 if (ctxt->c_contig_type == CONTIG_LEFTRIGHT) {
3709 /*
3710 * Left-right contig implies this.
3711 */
3712 BUG_ON(!ctxt->c_split_covers_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07003713
3714 /*
3715 * Since the leftright insert always covers the entire
3716 * extent, this call will delete the insert record
3717 * entirely, resulting in an empty extent record added to
3718 * the extent block.
3719 *
3720 * Since the adding of an empty extent shifts
3721 * everything back to the right, there's no need to
3722 * update split_index here.
Tao Ma677b9752008-01-30 14:21:05 +08003723 *
3724 * When the split_index is zero, we need to merge it to the
3725 * prevoius extent block. It is more efficient and easier
3726 * if we do merge_right first and merge_left later.
Mark Fasheh328d5752007-06-18 10:48:04 -07003727 */
Joel Becker4fe82c32009-02-13 02:16:08 -08003728 ret = ocfs2_merge_rec_right(path, handle, et, split_rec,
Tao Ma677b9752008-01-30 14:21:05 +08003729 split_index);
Mark Fasheh328d5752007-06-18 10:48:04 -07003730 if (ret) {
3731 mlog_errno(ret);
3732 goto out;
3733 }
3734
3735 /*
3736 * We can only get this from logic error above.
3737 */
3738 BUG_ON(!ocfs2_is_empty_extent(&el->l_recs[0]));
3739
Xue jiufei17215982016-03-25 14:21:41 -07003740 /* extend credit for ocfs2_remove_rightmost_path */
3741 ret = ocfs2_extend_rotate_transaction(handle, 0,
3742 handle->h_buffer_credits,
3743 path);
3744 if (ret) {
3745 mlog_errno(ret);
3746 goto out;
3747 }
3748
Tao Ma677b9752008-01-30 14:21:05 +08003749 /* The merge left us with an empty extent, remove it. */
Joel Becker70f18c02009-02-13 02:09:31 -08003750 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07003751 if (ret) {
3752 mlog_errno(ret);
3753 goto out;
3754 }
Tao Ma677b9752008-01-30 14:21:05 +08003755
Mark Fasheh328d5752007-06-18 10:48:04 -07003756 rec = &el->l_recs[split_index];
3757
3758 /*
3759 * Note that we don't pass split_rec here on purpose -
Tao Ma677b9752008-01-30 14:21:05 +08003760 * we've merged it into the rec already.
Mark Fasheh328d5752007-06-18 10:48:04 -07003761 */
Joel Becker4fe82c32009-02-13 02:16:08 -08003762 ret = ocfs2_merge_rec_left(path, handle, et, rec,
3763 dealloc, split_index);
Tao Ma677b9752008-01-30 14:21:05 +08003764
Mark Fasheh328d5752007-06-18 10:48:04 -07003765 if (ret) {
3766 mlog_errno(ret);
3767 goto out;
3768 }
3769
Xue jiufei17215982016-03-25 14:21:41 -07003770 /* extend credit for ocfs2_remove_rightmost_path */
3771 ret = ocfs2_extend_rotate_transaction(handle, 0,
3772 handle->h_buffer_credits,
3773 path);
3774 if (ret) {
3775 mlog_errno(ret);
3776 goto out;
3777 }
3778
Joel Becker70f18c02009-02-13 02:09:31 -08003779 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07003780 /*
3781 * Error from this last rotate is not critical, so
3782 * print but don't bubble it up.
3783 */
3784 if (ret)
3785 mlog_errno(ret);
3786 ret = 0;
3787 } else {
3788 /*
3789 * Merge a record to the left or right.
3790 *
3791 * 'contig_type' is relative to the existing record,
3792 * so for example, if we're "right contig", it's to
3793 * the record on the left (hence the left merge).
3794 */
3795 if (ctxt->c_contig_type == CONTIG_RIGHT) {
Joel Becker4fe82c32009-02-13 02:16:08 -08003796 ret = ocfs2_merge_rec_left(path, handle, et,
3797 split_rec, dealloc,
Mark Fasheh328d5752007-06-18 10:48:04 -07003798 split_index);
3799 if (ret) {
3800 mlog_errno(ret);
3801 goto out;
3802 }
3803 } else {
Joel Becker4fe82c32009-02-13 02:16:08 -08003804 ret = ocfs2_merge_rec_right(path, handle,
Joel Becker7dc02802009-02-12 19:20:13 -08003805 et, split_rec,
Mark Fasheh328d5752007-06-18 10:48:04 -07003806 split_index);
3807 if (ret) {
3808 mlog_errno(ret);
3809 goto out;
3810 }
3811 }
3812
3813 if (ctxt->c_split_covers_rec) {
Xue jiufei17215982016-03-25 14:21:41 -07003814 /* extend credit for ocfs2_remove_rightmost_path */
3815 ret = ocfs2_extend_rotate_transaction(handle, 0,
3816 handle->h_buffer_credits,
3817 path);
3818 if (ret) {
3819 mlog_errno(ret);
3820 ret = 0;
3821 goto out;
3822 }
3823
Mark Fasheh328d5752007-06-18 10:48:04 -07003824 /*
3825 * The merge may have left an empty extent in
3826 * our leaf. Try to rotate it away.
3827 */
Joel Becker70f18c02009-02-13 02:09:31 -08003828 ret = ocfs2_rotate_tree_left(handle, et, path,
3829 dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07003830 if (ret)
3831 mlog_errno(ret);
3832 ret = 0;
3833 }
3834 }
3835
3836out:
3837 return ret;
3838}
3839
3840static void ocfs2_subtract_from_rec(struct super_block *sb,
3841 enum ocfs2_split_type split,
3842 struct ocfs2_extent_rec *rec,
3843 struct ocfs2_extent_rec *split_rec)
3844{
3845 u64 len_blocks;
3846
3847 len_blocks = ocfs2_clusters_to_blocks(sb,
3848 le16_to_cpu(split_rec->e_leaf_clusters));
3849
3850 if (split == SPLIT_LEFT) {
3851 /*
3852 * Region is on the left edge of the existing
3853 * record.
3854 */
3855 le32_add_cpu(&rec->e_cpos,
3856 le16_to_cpu(split_rec->e_leaf_clusters));
3857 le64_add_cpu(&rec->e_blkno, len_blocks);
3858 le16_add_cpu(&rec->e_leaf_clusters,
3859 -le16_to_cpu(split_rec->e_leaf_clusters));
3860 } else {
3861 /*
3862 * Region is on the right edge of the existing
3863 * record.
3864 */
3865 le16_add_cpu(&rec->e_leaf_clusters,
3866 -le16_to_cpu(split_rec->e_leaf_clusters));
3867 }
3868}
3869
Mark Fashehdcd05382007-01-16 11:32:23 -08003870/*
3871 * Do the final bits of extent record insertion at the target leaf
3872 * list. If this leaf is part of an allocation tree, it is assumed
3873 * that the tree above has been prepared.
3874 */
Joel Beckerd5628622009-02-13 02:54:36 -08003875static void ocfs2_insert_at_leaf(struct ocfs2_extent_tree *et,
3876 struct ocfs2_extent_rec *insert_rec,
Mark Fashehdcd05382007-01-16 11:32:23 -08003877 struct ocfs2_extent_list *el,
Joel Beckerd5628622009-02-13 02:54:36 -08003878 struct ocfs2_insert_type *insert)
Mark Fashehdcd05382007-01-16 11:32:23 -08003879{
3880 int i = insert->ins_contig_index;
3881 unsigned int range;
3882 struct ocfs2_extent_rec *rec;
3883
Mark Fashehe48edee2007-03-07 16:46:57 -08003884 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
Mark Fashehdcd05382007-01-16 11:32:23 -08003885
Mark Fasheh328d5752007-06-18 10:48:04 -07003886 if (insert->ins_split != SPLIT_NONE) {
3887 i = ocfs2_search_extent_list(el, le32_to_cpu(insert_rec->e_cpos));
3888 BUG_ON(i == -1);
3889 rec = &el->l_recs[i];
Joel Beckerd5628622009-02-13 02:54:36 -08003890 ocfs2_subtract_from_rec(ocfs2_metadata_cache_get_super(et->et_ci),
3891 insert->ins_split, rec,
Mark Fasheh328d5752007-06-18 10:48:04 -07003892 insert_rec);
3893 goto rotate;
3894 }
3895
Mark Fashehdcd05382007-01-16 11:32:23 -08003896 /*
3897 * Contiguous insert - either left or right.
3898 */
3899 if (insert->ins_contig != CONTIG_NONE) {
3900 rec = &el->l_recs[i];
3901 if (insert->ins_contig == CONTIG_LEFT) {
3902 rec->e_blkno = insert_rec->e_blkno;
3903 rec->e_cpos = insert_rec->e_cpos;
3904 }
Mark Fashehe48edee2007-03-07 16:46:57 -08003905 le16_add_cpu(&rec->e_leaf_clusters,
3906 le16_to_cpu(insert_rec->e_leaf_clusters));
Mark Fashehdcd05382007-01-16 11:32:23 -08003907 return;
3908 }
3909
3910 /*
3911 * Handle insert into an empty leaf.
3912 */
3913 if (le16_to_cpu(el->l_next_free_rec) == 0 ||
3914 ((le16_to_cpu(el->l_next_free_rec) == 1) &&
3915 ocfs2_is_empty_extent(&el->l_recs[0]))) {
3916 el->l_recs[0] = *insert_rec;
3917 el->l_next_free_rec = cpu_to_le16(1);
3918 return;
3919 }
3920
3921 /*
3922 * Appending insert.
3923 */
3924 if (insert->ins_appending == APPEND_TAIL) {
3925 i = le16_to_cpu(el->l_next_free_rec) - 1;
3926 rec = &el->l_recs[i];
Mark Fashehe48edee2007-03-07 16:46:57 -08003927 range = le32_to_cpu(rec->e_cpos)
3928 + le16_to_cpu(rec->e_leaf_clusters);
Mark Fashehdcd05382007-01-16 11:32:23 -08003929 BUG_ON(le32_to_cpu(insert_rec->e_cpos) < range);
3930
3931 mlog_bug_on_msg(le16_to_cpu(el->l_next_free_rec) >=
3932 le16_to_cpu(el->l_count),
Joel Beckerd5628622009-02-13 02:54:36 -08003933 "owner %llu, depth %u, count %u, next free %u, "
Mark Fashehdcd05382007-01-16 11:32:23 -08003934 "rec.cpos %u, rec.clusters %u, "
3935 "insert.cpos %u, insert.clusters %u\n",
Joel Beckerd5628622009-02-13 02:54:36 -08003936 ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehdcd05382007-01-16 11:32:23 -08003937 le16_to_cpu(el->l_tree_depth),
3938 le16_to_cpu(el->l_count),
3939 le16_to_cpu(el->l_next_free_rec),
3940 le32_to_cpu(el->l_recs[i].e_cpos),
Mark Fashehe48edee2007-03-07 16:46:57 -08003941 le16_to_cpu(el->l_recs[i].e_leaf_clusters),
Mark Fashehdcd05382007-01-16 11:32:23 -08003942 le32_to_cpu(insert_rec->e_cpos),
Mark Fashehe48edee2007-03-07 16:46:57 -08003943 le16_to_cpu(insert_rec->e_leaf_clusters));
Mark Fashehdcd05382007-01-16 11:32:23 -08003944 i++;
3945 el->l_recs[i] = *insert_rec;
3946 le16_add_cpu(&el->l_next_free_rec, 1);
3947 return;
3948 }
3949
Mark Fasheh328d5752007-06-18 10:48:04 -07003950rotate:
Mark Fashehdcd05382007-01-16 11:32:23 -08003951 /*
3952 * Ok, we have to rotate.
3953 *
3954 * At this point, it is safe to assume that inserting into an
3955 * empty leaf and appending to a leaf have both been handled
3956 * above.
3957 *
3958 * This leaf needs to have space, either by the empty 1st
3959 * extent record, or by virtue of an l_next_rec < l_count.
3960 */
3961 ocfs2_rotate_leaf(el, insert_rec);
3962}
3963
Joel Beckerd401dc12009-02-13 02:24:10 -08003964static void ocfs2_adjust_rightmost_records(handle_t *handle,
3965 struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07003966 struct ocfs2_path *path,
3967 struct ocfs2_extent_rec *insert_rec)
3968{
Changwei Ged22aa612018-01-31 16:14:55 -08003969 int i, next_free;
Mark Fasheh328d5752007-06-18 10:48:04 -07003970 struct buffer_head *bh;
3971 struct ocfs2_extent_list *el;
3972 struct ocfs2_extent_rec *rec;
3973
3974 /*
3975 * Update everything except the leaf block.
3976 */
3977 for (i = 0; i < path->p_tree_depth; i++) {
3978 bh = path->p_node[i].bh;
3979 el = path->p_node[i].el;
3980
3981 next_free = le16_to_cpu(el->l_next_free_rec);
3982 if (next_free == 0) {
Joel Beckerd401dc12009-02-13 02:24:10 -08003983 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
Joe Perches7ecef142015-09-04 15:44:51 -07003984 "Owner %llu has a bad extent list\n",
Joel Beckerd401dc12009-02-13 02:24:10 -08003985 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci));
Mark Fasheh328d5752007-06-18 10:48:04 -07003986 return;
3987 }
3988
3989 rec = &el->l_recs[next_free - 1];
3990
3991 rec->e_int_clusters = insert_rec->e_cpos;
3992 le32_add_cpu(&rec->e_int_clusters,
3993 le16_to_cpu(insert_rec->e_leaf_clusters));
3994 le32_add_cpu(&rec->e_int_clusters,
3995 -le32_to_cpu(rec->e_cpos));
3996
Joel Beckerec20cec2010-03-19 14:13:52 -07003997 ocfs2_journal_dirty(handle, bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07003998 }
3999}
4000
Joel Beckerd401dc12009-02-13 02:24:10 -08004001static int ocfs2_append_rec_to_path(handle_t *handle,
4002 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004003 struct ocfs2_extent_rec *insert_rec,
4004 struct ocfs2_path *right_path,
4005 struct ocfs2_path **ret_left_path)
4006{
Mark Fasheh328d5752007-06-18 10:48:04 -07004007 int ret, next_free;
Mark Fashehdcd05382007-01-16 11:32:23 -08004008 struct ocfs2_extent_list *el;
4009 struct ocfs2_path *left_path = NULL;
4010
4011 *ret_left_path = NULL;
4012
4013 /*
Mark Fashehe48edee2007-03-07 16:46:57 -08004014 * This shouldn't happen for non-trees. The extent rec cluster
4015 * count manipulation below only works for interior nodes.
4016 */
4017 BUG_ON(right_path->p_tree_depth == 0);
4018
4019 /*
Mark Fashehdcd05382007-01-16 11:32:23 -08004020 * If our appending insert is at the leftmost edge of a leaf,
4021 * then we might need to update the rightmost records of the
4022 * neighboring path.
4023 */
4024 el = path_leaf_el(right_path);
4025 next_free = le16_to_cpu(el->l_next_free_rec);
4026 if (next_free == 0 ||
4027 (next_free == 1 && ocfs2_is_empty_extent(&el->l_recs[0]))) {
4028 u32 left_cpos;
4029
Joel Beckerd401dc12009-02-13 02:24:10 -08004030 ret = ocfs2_find_cpos_for_left_leaf(ocfs2_metadata_cache_get_super(et->et_ci),
4031 right_path, &left_cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08004032 if (ret) {
4033 mlog_errno(ret);
4034 goto out;
4035 }
4036
Tao Maa09d09b2011-02-22 08:21:10 +08004037 trace_ocfs2_append_rec_to_path(
4038 (unsigned long long)
4039 ocfs2_metadata_cache_owner(et->et_ci),
4040 le32_to_cpu(insert_rec->e_cpos),
4041 left_cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08004042
4043 /*
4044 * No need to worry if the append is already in the
4045 * leftmost leaf.
4046 */
4047 if (left_cpos) {
Joel Beckerffdd7a52008-10-17 22:32:01 -07004048 left_path = ocfs2_new_path_from_path(right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08004049 if (!left_path) {
4050 ret = -ENOMEM;
4051 mlog_errno(ret);
4052 goto out;
4053 }
4054
Joel Beckerd401dc12009-02-13 02:24:10 -08004055 ret = ocfs2_find_path(et->et_ci, left_path,
Joel Beckerfacdb772009-02-12 18:08:48 -08004056 left_cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08004057 if (ret) {
4058 mlog_errno(ret);
4059 goto out;
4060 }
4061
4062 /*
4063 * ocfs2_insert_path() will pass the left_path to the
4064 * journal for us.
4065 */
4066 }
4067 }
4068
Joel Beckerd401dc12009-02-13 02:24:10 -08004069 ret = ocfs2_journal_access_path(et->et_ci, handle, right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08004070 if (ret) {
4071 mlog_errno(ret);
4072 goto out;
4073 }
4074
Joel Beckerd401dc12009-02-13 02:24:10 -08004075 ocfs2_adjust_rightmost_records(handle, et, right_path, insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08004076
4077 *ret_left_path = left_path;
4078 ret = 0;
4079out:
4080 if (ret != 0)
4081 ocfs2_free_path(left_path);
4082
4083 return ret;
4084}
4085
Joel Beckerc38e52b2009-02-13 02:56:23 -08004086static void ocfs2_split_record(struct ocfs2_extent_tree *et,
Mark Fasheh328d5752007-06-18 10:48:04 -07004087 struct ocfs2_path *left_path,
4088 struct ocfs2_path *right_path,
4089 struct ocfs2_extent_rec *split_rec,
4090 enum ocfs2_split_type split)
4091{
4092 int index;
4093 u32 cpos = le32_to_cpu(split_rec->e_cpos);
4094 struct ocfs2_extent_list *left_el = NULL, *right_el, *insert_el, *el;
4095 struct ocfs2_extent_rec *rec, *tmprec;
4096
Fernando Carrijoc19a28e2009-01-07 18:09:08 -08004097 right_el = path_leaf_el(right_path);
Mark Fasheh328d5752007-06-18 10:48:04 -07004098 if (left_path)
4099 left_el = path_leaf_el(left_path);
4100
4101 el = right_el;
4102 insert_el = right_el;
4103 index = ocfs2_search_extent_list(el, cpos);
4104 if (index != -1) {
4105 if (index == 0 && left_path) {
4106 BUG_ON(ocfs2_is_empty_extent(&el->l_recs[0]));
4107
4108 /*
4109 * This typically means that the record
4110 * started in the left path but moved to the
4111 * right as a result of rotation. We either
4112 * move the existing record to the left, or we
4113 * do the later insert there.
4114 *
4115 * In this case, the left path should always
4116 * exist as the rotate code will have passed
4117 * it back for a post-insert update.
4118 */
4119
4120 if (split == SPLIT_LEFT) {
4121 /*
4122 * It's a left split. Since we know
4123 * that the rotate code gave us an
4124 * empty extent in the left path, we
4125 * can just do the insert there.
4126 */
4127 insert_el = left_el;
4128 } else {
4129 /*
4130 * Right split - we have to move the
4131 * existing record over to the left
4132 * leaf. The insert will be into the
4133 * newly created empty extent in the
4134 * right leaf.
4135 */
4136 tmprec = &right_el->l_recs[index];
4137 ocfs2_rotate_leaf(left_el, tmprec);
4138 el = left_el;
4139
4140 memset(tmprec, 0, sizeof(*tmprec));
4141 index = ocfs2_search_extent_list(left_el, cpos);
4142 BUG_ON(index == -1);
4143 }
4144 }
4145 } else {
4146 BUG_ON(!left_path);
4147 BUG_ON(!ocfs2_is_empty_extent(&left_el->l_recs[0]));
4148 /*
4149 * Left path is easy - we can just allow the insert to
4150 * happen.
4151 */
4152 el = left_el;
4153 insert_el = left_el;
4154 index = ocfs2_search_extent_list(el, cpos);
4155 BUG_ON(index == -1);
4156 }
4157
4158 rec = &el->l_recs[index];
Joel Beckerc38e52b2009-02-13 02:56:23 -08004159 ocfs2_subtract_from_rec(ocfs2_metadata_cache_get_super(et->et_ci),
4160 split, rec, split_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07004161 ocfs2_rotate_leaf(insert_el, split_rec);
4162}
4163
Mark Fashehdcd05382007-01-16 11:32:23 -08004164/*
Tao Mae7d4cb62008-08-18 17:38:44 +08004165 * This function only does inserts on an allocation b-tree. For tree
4166 * depth = 0, ocfs2_insert_at_leaf() is called directly.
Mark Fashehdcd05382007-01-16 11:32:23 -08004167 *
4168 * right_path is the path we want to do the actual insert
4169 * in. left_path should only be passed in if we need to update that
4170 * portion of the tree after an edge insert.
4171 */
Joel Becker3505bec2009-02-13 02:57:58 -08004172static int ocfs2_insert_path(handle_t *handle,
Joel Becker7dc02802009-02-12 19:20:13 -08004173 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004174 struct ocfs2_path *left_path,
4175 struct ocfs2_path *right_path,
4176 struct ocfs2_extent_rec *insert_rec,
4177 struct ocfs2_insert_type *insert)
4178{
4179 int ret, subtree_index;
4180 struct buffer_head *leaf_bh = path_leaf_bh(right_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08004181
Mark Fashehdcd05382007-01-16 11:32:23 -08004182 if (left_path) {
Mark Fashehdcd05382007-01-16 11:32:23 -08004183 /*
4184 * There's a chance that left_path got passed back to
4185 * us without being accounted for in the
4186 * journal. Extend our transaction here to be sure we
4187 * can change those blocks.
4188 */
Tao Mac901fb02010-04-26 14:34:57 +08004189 ret = ocfs2_extend_trans(handle, left_path->p_tree_depth);
Mark Fashehdcd05382007-01-16 11:32:23 -08004190 if (ret < 0) {
4191 mlog_errno(ret);
4192 goto out;
4193 }
4194
Joel Becker7dc02802009-02-12 19:20:13 -08004195 ret = ocfs2_journal_access_path(et->et_ci, handle, left_path);
Mark Fashehdcd05382007-01-16 11:32:23 -08004196 if (ret < 0) {
4197 mlog_errno(ret);
4198 goto out;
4199 }
4200 }
4201
Mark Fashehe8aed342007-12-03 16:43:01 -08004202 /*
4203 * Pass both paths to the journal. The majority of inserts
4204 * will be touching all components anyway.
4205 */
Joel Becker7dc02802009-02-12 19:20:13 -08004206 ret = ocfs2_journal_access_path(et->et_ci, handle, right_path);
Mark Fashehe8aed342007-12-03 16:43:01 -08004207 if (ret < 0) {
4208 mlog_errno(ret);
4209 goto out;
4210 }
4211
Mark Fasheh328d5752007-06-18 10:48:04 -07004212 if (insert->ins_split != SPLIT_NONE) {
4213 /*
4214 * We could call ocfs2_insert_at_leaf() for some types
Joe Perchesc78bad12008-02-03 17:33:42 +02004215 * of splits, but it's easier to just let one separate
Mark Fasheh328d5752007-06-18 10:48:04 -07004216 * function sort it all out.
4217 */
Joel Beckerc38e52b2009-02-13 02:56:23 -08004218 ocfs2_split_record(et, left_path, right_path,
Mark Fasheh328d5752007-06-18 10:48:04 -07004219 insert_rec, insert->ins_split);
Mark Fashehe8aed342007-12-03 16:43:01 -08004220
4221 /*
4222 * Split might have modified either leaf and we don't
4223 * have a guarantee that the later edge insert will
4224 * dirty this for us.
4225 */
4226 if (left_path)
Joel Beckerec20cec2010-03-19 14:13:52 -07004227 ocfs2_journal_dirty(handle,
4228 path_leaf_bh(left_path));
Mark Fasheh328d5752007-06-18 10:48:04 -07004229 } else
Joel Beckerd5628622009-02-13 02:54:36 -08004230 ocfs2_insert_at_leaf(et, insert_rec, path_leaf_el(right_path),
4231 insert);
Mark Fashehdcd05382007-01-16 11:32:23 -08004232
Joel Beckerec20cec2010-03-19 14:13:52 -07004233 ocfs2_journal_dirty(handle, leaf_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08004234
4235 if (left_path) {
4236 /*
4237 * The rotate code has indicated that we need to fix
4238 * up portions of the tree after the insert.
4239 *
4240 * XXX: Should we extend the transaction here?
4241 */
Joel Becker7dc02802009-02-12 19:20:13 -08004242 subtree_index = ocfs2_find_subtree_root(et, left_path,
Mark Fashehdcd05382007-01-16 11:32:23 -08004243 right_path);
Joel Becker4619c732009-02-12 19:02:36 -08004244 ocfs2_complete_edge_insert(handle, left_path, right_path,
4245 subtree_index);
Mark Fashehdcd05382007-01-16 11:32:23 -08004246 }
4247
4248 ret = 0;
4249out:
4250 return ret;
4251}
4252
Joel Becker3505bec2009-02-13 02:57:58 -08004253static int ocfs2_do_insert_extent(handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08004254 struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004255 struct ocfs2_extent_rec *insert_rec,
4256 struct ocfs2_insert_type *type)
4257{
4258 int ret, rotate = 0;
4259 u32 cpos;
4260 struct ocfs2_path *right_path = NULL;
4261 struct ocfs2_path *left_path = NULL;
Mark Fashehdcd05382007-01-16 11:32:23 -08004262 struct ocfs2_extent_list *el;
4263
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004264 el = et->et_root_el;
Mark Fashehdcd05382007-01-16 11:32:23 -08004265
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08004266 ret = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07004267 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehdcd05382007-01-16 11:32:23 -08004268 if (ret) {
4269 mlog_errno(ret);
4270 goto out;
4271 }
4272
4273 if (le16_to_cpu(el->l_tree_depth) == 0) {
Joel Beckerd5628622009-02-13 02:54:36 -08004274 ocfs2_insert_at_leaf(et, insert_rec, el, type);
Mark Fashehdcd05382007-01-16 11:32:23 -08004275 goto out_update_clusters;
4276 }
4277
Joel Beckerffdd7a52008-10-17 22:32:01 -07004278 right_path = ocfs2_new_path_from_et(et);
Mark Fashehdcd05382007-01-16 11:32:23 -08004279 if (!right_path) {
4280 ret = -ENOMEM;
4281 mlog_errno(ret);
4282 goto out;
4283 }
4284
4285 /*
4286 * Determine the path to start with. Rotations need the
4287 * rightmost path, everything else can go directly to the
4288 * target leaf.
4289 */
4290 cpos = le32_to_cpu(insert_rec->e_cpos);
4291 if (type->ins_appending == APPEND_NONE &&
4292 type->ins_contig == CONTIG_NONE) {
4293 rotate = 1;
4294 cpos = UINT_MAX;
4295 }
4296
Joel Beckerfacdb772009-02-12 18:08:48 -08004297 ret = ocfs2_find_path(et->et_ci, right_path, cpos);
Mark Fashehdcd05382007-01-16 11:32:23 -08004298 if (ret) {
4299 mlog_errno(ret);
4300 goto out;
4301 }
4302
4303 /*
4304 * Rotations and appends need special treatment - they modify
4305 * parts of the tree's above them.
4306 *
4307 * Both might pass back a path immediate to the left of the
4308 * one being inserted to. This will be cause
4309 * ocfs2_insert_path() to modify the rightmost records of
4310 * left_path to account for an edge insert.
4311 *
4312 * XXX: When modifying this code, keep in mind that an insert
4313 * can wind up skipping both of these two special cases...
4314 */
4315 if (rotate) {
Joel Becker1bbf0b82009-02-12 19:42:08 -08004316 ret = ocfs2_rotate_tree_right(handle, et, type->ins_split,
Mark Fashehdcd05382007-01-16 11:32:23 -08004317 le32_to_cpu(insert_rec->e_cpos),
4318 right_path, &left_path);
4319 if (ret) {
4320 mlog_errno(ret);
4321 goto out;
4322 }
Mark Fashehe8aed342007-12-03 16:43:01 -08004323
4324 /*
4325 * ocfs2_rotate_tree_right() might have extended the
4326 * transaction without re-journaling our tree root.
4327 */
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08004328 ret = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07004329 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehe8aed342007-12-03 16:43:01 -08004330 if (ret) {
4331 mlog_errno(ret);
4332 goto out;
4333 }
Mark Fashehdcd05382007-01-16 11:32:23 -08004334 } else if (type->ins_appending == APPEND_TAIL
4335 && type->ins_contig != CONTIG_LEFT) {
Joel Beckerd401dc12009-02-13 02:24:10 -08004336 ret = ocfs2_append_rec_to_path(handle, et, insert_rec,
Mark Fashehdcd05382007-01-16 11:32:23 -08004337 right_path, &left_path);
4338 if (ret) {
4339 mlog_errno(ret);
4340 goto out;
4341 }
4342 }
4343
Joel Becker3505bec2009-02-13 02:57:58 -08004344 ret = ocfs2_insert_path(handle, et, left_path, right_path,
Mark Fashehdcd05382007-01-16 11:32:23 -08004345 insert_rec, type);
4346 if (ret) {
4347 mlog_errno(ret);
4348 goto out;
4349 }
4350
4351out_update_clusters:
Mark Fasheh328d5752007-06-18 10:48:04 -07004352 if (type->ins_split == SPLIT_NONE)
Joel Becker6136ca52009-02-12 19:32:43 -08004353 ocfs2_et_update_clusters(et,
Joel Becker35dc0aa2008-08-20 16:25:06 -07004354 le16_to_cpu(insert_rec->e_leaf_clusters));
Mark Fashehdcd05382007-01-16 11:32:23 -08004355
Joel Beckerec20cec2010-03-19 14:13:52 -07004356 ocfs2_journal_dirty(handle, et->et_root_bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08004357
4358out:
4359 ocfs2_free_path(left_path);
4360 ocfs2_free_path(right_path);
4361
4362 return ret;
4363}
4364
Xue jiufei9f99ad02015-06-24 16:55:07 -07004365static int ocfs2_figure_merge_contig_type(struct ocfs2_extent_tree *et,
Joel Beckera2970292009-02-13 03:09:54 -08004366 struct ocfs2_path *path,
Mark Fasheh328d5752007-06-18 10:48:04 -07004367 struct ocfs2_extent_list *el, int index,
Xue jiufei9f99ad02015-06-24 16:55:07 -07004368 struct ocfs2_extent_rec *split_rec,
4369 struct ocfs2_merge_ctxt *ctxt)
Mark Fasheh328d5752007-06-18 10:48:04 -07004370{
Xue jiufei9f99ad02015-06-24 16:55:07 -07004371 int status = 0;
Mark Fasheh328d5752007-06-18 10:48:04 -07004372 enum ocfs2_contig_type ret = CONTIG_NONE;
Tao Maad5a4d72008-01-30 14:21:32 +08004373 u32 left_cpos, right_cpos;
4374 struct ocfs2_extent_rec *rec = NULL;
4375 struct ocfs2_extent_list *new_el;
4376 struct ocfs2_path *left_path = NULL, *right_path = NULL;
4377 struct buffer_head *bh;
4378 struct ocfs2_extent_block *eb;
Joel Beckera2970292009-02-13 03:09:54 -08004379 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Tao Maad5a4d72008-01-30 14:21:32 +08004380
4381 if (index > 0) {
4382 rec = &el->l_recs[index - 1];
4383 } else if (path->p_tree_depth > 0) {
Joel Beckera2970292009-02-13 03:09:54 -08004384 status = ocfs2_find_cpos_for_left_leaf(sb, path, &left_cpos);
Tao Maad5a4d72008-01-30 14:21:32 +08004385 if (status)
Markus Elfring06a269cc2015-04-14 15:42:48 -07004386 goto exit;
Tao Maad5a4d72008-01-30 14:21:32 +08004387
4388 if (left_cpos != 0) {
Joel Beckerffdd7a52008-10-17 22:32:01 -07004389 left_path = ocfs2_new_path_from_path(path);
Xue jiufei9f99ad02015-06-24 16:55:07 -07004390 if (!left_path) {
4391 status = -ENOMEM;
4392 mlog_errno(status);
Markus Elfring06a269cc2015-04-14 15:42:48 -07004393 goto exit;
Xue jiufei9f99ad02015-06-24 16:55:07 -07004394 }
Tao Maad5a4d72008-01-30 14:21:32 +08004395
Joel Beckera2970292009-02-13 03:09:54 -08004396 status = ocfs2_find_path(et->et_ci, left_path,
4397 left_cpos);
Tao Maad5a4d72008-01-30 14:21:32 +08004398 if (status)
Markus Elfring06a269cc2015-04-14 15:42:48 -07004399 goto free_left_path;
Tao Maad5a4d72008-01-30 14:21:32 +08004400
4401 new_el = path_leaf_el(left_path);
4402
4403 if (le16_to_cpu(new_el->l_next_free_rec) !=
4404 le16_to_cpu(new_el->l_count)) {
4405 bh = path_leaf_bh(left_path);
4406 eb = (struct ocfs2_extent_block *)bh->b_data;
Jun Piao93f59202018-08-17 15:44:24 -07004407 status = ocfs2_error(sb,
4408 "Extent block #%llu has an invalid l_next_free_rec of %d. It should have matched the l_count of %d\n",
4409 (unsigned long long)le64_to_cpu(eb->h_blkno),
4410 le16_to_cpu(new_el->l_next_free_rec),
4411 le16_to_cpu(new_el->l_count));
Markus Elfring06a269cc2015-04-14 15:42:48 -07004412 goto free_left_path;
Tao Maad5a4d72008-01-30 14:21:32 +08004413 }
4414 rec = &new_el->l_recs[
4415 le16_to_cpu(new_el->l_next_free_rec) - 1];
4416 }
4417 }
Mark Fasheh328d5752007-06-18 10:48:04 -07004418
4419 /*
4420 * We're careful to check for an empty extent record here -
4421 * the merge code will know what to do if it sees one.
4422 */
Tao Maad5a4d72008-01-30 14:21:32 +08004423 if (rec) {
Mark Fasheh328d5752007-06-18 10:48:04 -07004424 if (index == 1 && ocfs2_is_empty_extent(rec)) {
4425 if (split_rec->e_cpos == el->l_recs[index].e_cpos)
4426 ret = CONTIG_RIGHT;
4427 } else {
Tao Ma853a3a12009-08-18 11:22:18 +08004428 ret = ocfs2_et_extent_contig(et, rec, split_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07004429 }
4430 }
4431
Tao Maad5a4d72008-01-30 14:21:32 +08004432 rec = NULL;
4433 if (index < (le16_to_cpu(el->l_next_free_rec) - 1))
4434 rec = &el->l_recs[index + 1];
4435 else if (le16_to_cpu(el->l_next_free_rec) == le16_to_cpu(el->l_count) &&
4436 path->p_tree_depth > 0) {
Joel Beckera2970292009-02-13 03:09:54 -08004437 status = ocfs2_find_cpos_for_right_leaf(sb, path, &right_cpos);
Tao Maad5a4d72008-01-30 14:21:32 +08004438 if (status)
Markus Elfring06a269cc2015-04-14 15:42:48 -07004439 goto free_left_path;
Tao Maad5a4d72008-01-30 14:21:32 +08004440
4441 if (right_cpos == 0)
Markus Elfring06a269cc2015-04-14 15:42:48 -07004442 goto free_left_path;
Tao Maad5a4d72008-01-30 14:21:32 +08004443
Joel Beckerffdd7a52008-10-17 22:32:01 -07004444 right_path = ocfs2_new_path_from_path(path);
Xue jiufei9f99ad02015-06-24 16:55:07 -07004445 if (!right_path) {
4446 status = -ENOMEM;
4447 mlog_errno(status);
Markus Elfring06a269cc2015-04-14 15:42:48 -07004448 goto free_left_path;
Xue jiufei9f99ad02015-06-24 16:55:07 -07004449 }
Tao Maad5a4d72008-01-30 14:21:32 +08004450
Joel Beckera2970292009-02-13 03:09:54 -08004451 status = ocfs2_find_path(et->et_ci, right_path, right_cpos);
Tao Maad5a4d72008-01-30 14:21:32 +08004452 if (status)
Markus Elfring06a269cc2015-04-14 15:42:48 -07004453 goto free_right_path;
Tao Maad5a4d72008-01-30 14:21:32 +08004454
4455 new_el = path_leaf_el(right_path);
4456 rec = &new_el->l_recs[0];
4457 if (ocfs2_is_empty_extent(rec)) {
4458 if (le16_to_cpu(new_el->l_next_free_rec) <= 1) {
4459 bh = path_leaf_bh(right_path);
4460 eb = (struct ocfs2_extent_block *)bh->b_data;
Jun Piao93f59202018-08-17 15:44:24 -07004461 status = ocfs2_error(sb,
4462 "Extent block #%llu has an invalid l_next_free_rec of %d\n",
4463 (unsigned long long)le64_to_cpu(eb->h_blkno),
4464 le16_to_cpu(new_el->l_next_free_rec));
Markus Elfring06a269cc2015-04-14 15:42:48 -07004465 goto free_right_path;
Tao Maad5a4d72008-01-30 14:21:32 +08004466 }
4467 rec = &new_el->l_recs[1];
4468 }
4469 }
4470
4471 if (rec) {
Mark Fasheh328d5752007-06-18 10:48:04 -07004472 enum ocfs2_contig_type contig_type;
4473
Tao Ma853a3a12009-08-18 11:22:18 +08004474 contig_type = ocfs2_et_extent_contig(et, rec, split_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07004475
4476 if (contig_type == CONTIG_LEFT && ret == CONTIG_RIGHT)
4477 ret = CONTIG_LEFTRIGHT;
4478 else if (ret == CONTIG_NONE)
4479 ret = contig_type;
4480 }
4481
Markus Elfring06a269cc2015-04-14 15:42:48 -07004482free_right_path:
Markus Elfringfd90d4df2015-04-14 15:42:42 -07004483 ocfs2_free_path(right_path);
Markus Elfring06a269cc2015-04-14 15:42:48 -07004484free_left_path:
4485 ocfs2_free_path(left_path);
4486exit:
Xue jiufei9f99ad02015-06-24 16:55:07 -07004487 if (status == 0)
4488 ctxt->c_contig_type = ret;
4489
4490 return status;
Mark Fasheh328d5752007-06-18 10:48:04 -07004491}
4492
Joel Becker1ef61b32009-02-13 03:12:33 -08004493static void ocfs2_figure_contig_type(struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004494 struct ocfs2_insert_type *insert,
4495 struct ocfs2_extent_list *el,
Joel Becker1ef61b32009-02-13 03:12:33 -08004496 struct ocfs2_extent_rec *insert_rec)
Mark Fashehdcd05382007-01-16 11:32:23 -08004497{
4498 int i;
4499 enum ocfs2_contig_type contig_type = CONTIG_NONE;
4500
Mark Fashehe48edee2007-03-07 16:46:57 -08004501 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
4502
Mark Fashehdcd05382007-01-16 11:32:23 -08004503 for(i = 0; i < le16_to_cpu(el->l_next_free_rec); i++) {
Tao Ma853a3a12009-08-18 11:22:18 +08004504 contig_type = ocfs2_et_extent_contig(et, &el->l_recs[i],
4505 insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08004506 if (contig_type != CONTIG_NONE) {
4507 insert->ins_contig_index = i;
4508 break;
4509 }
4510 }
4511 insert->ins_contig = contig_type;
Tao Maca12b7c2008-08-18 17:38:52 +08004512
4513 if (insert->ins_contig != CONTIG_NONE) {
4514 struct ocfs2_extent_rec *rec =
4515 &el->l_recs[insert->ins_contig_index];
4516 unsigned int len = le16_to_cpu(rec->e_leaf_clusters) +
4517 le16_to_cpu(insert_rec->e_leaf_clusters);
4518
4519 /*
4520 * Caller might want us to limit the size of extents, don't
4521 * calculate contiguousness if we might exceed that limit.
4522 */
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004523 if (et->et_max_leaf_clusters &&
4524 (len > et->et_max_leaf_clusters))
Tao Maca12b7c2008-08-18 17:38:52 +08004525 insert->ins_contig = CONTIG_NONE;
4526 }
Mark Fashehdcd05382007-01-16 11:32:23 -08004527}
4528
4529/*
4530 * This should only be called against the righmost leaf extent list.
4531 *
4532 * ocfs2_figure_appending_type() will figure out whether we'll have to
4533 * insert at the tail of the rightmost leaf.
4534 *
Tao Mae7d4cb62008-08-18 17:38:44 +08004535 * This should also work against the root extent list for tree's with 0
4536 * depth. If we consider the root extent list to be the rightmost leaf node
Mark Fashehdcd05382007-01-16 11:32:23 -08004537 * then the logic here makes sense.
4538 */
4539static void ocfs2_figure_appending_type(struct ocfs2_insert_type *insert,
4540 struct ocfs2_extent_list *el,
4541 struct ocfs2_extent_rec *insert_rec)
4542{
4543 int i;
4544 u32 cpos = le32_to_cpu(insert_rec->e_cpos);
4545 struct ocfs2_extent_rec *rec;
4546
4547 insert->ins_appending = APPEND_NONE;
4548
Mark Fashehe48edee2007-03-07 16:46:57 -08004549 BUG_ON(le16_to_cpu(el->l_tree_depth) != 0);
Mark Fashehdcd05382007-01-16 11:32:23 -08004550
4551 if (!el->l_next_free_rec)
4552 goto set_tail_append;
4553
4554 if (ocfs2_is_empty_extent(&el->l_recs[0])) {
4555 /* Were all records empty? */
4556 if (le16_to_cpu(el->l_next_free_rec) == 1)
4557 goto set_tail_append;
4558 }
4559
4560 i = le16_to_cpu(el->l_next_free_rec) - 1;
4561 rec = &el->l_recs[i];
4562
Mark Fashehe48edee2007-03-07 16:46:57 -08004563 if (cpos >=
4564 (le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters)))
Mark Fashehdcd05382007-01-16 11:32:23 -08004565 goto set_tail_append;
4566
4567 return;
4568
4569set_tail_append:
4570 insert->ins_appending = APPEND_TAIL;
4571}
4572
4573/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004574 * Helper function called at the beginning of an insert.
Mark Fashehdcd05382007-01-16 11:32:23 -08004575 *
4576 * This computes a few things that are commonly used in the process of
4577 * inserting into the btree:
4578 * - Whether the new extent is contiguous with an existing one.
4579 * - The current tree depth.
4580 * - Whether the insert is an appending one.
4581 * - The total # of free records in the tree.
4582 *
4583 * All of the information is stored on the ocfs2_insert_type
4584 * structure.
4585 */
Joel Becker627961b2009-02-13 03:14:38 -08004586static int ocfs2_figure_insert_type(struct ocfs2_extent_tree *et,
Mark Fashehdcd05382007-01-16 11:32:23 -08004587 struct buffer_head **last_eb_bh,
4588 struct ocfs2_extent_rec *insert_rec,
Tao Maoc77534f2007-08-28 17:22:33 -07004589 int *free_records,
Mark Fashehdcd05382007-01-16 11:32:23 -08004590 struct ocfs2_insert_type *insert)
4591{
4592 int ret;
Mark Fashehdcd05382007-01-16 11:32:23 -08004593 struct ocfs2_extent_block *eb;
4594 struct ocfs2_extent_list *el;
4595 struct ocfs2_path *path = NULL;
4596 struct buffer_head *bh = NULL;
4597
Mark Fasheh328d5752007-06-18 10:48:04 -07004598 insert->ins_split = SPLIT_NONE;
4599
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004600 el = et->et_root_el;
Mark Fashehdcd05382007-01-16 11:32:23 -08004601 insert->ins_tree_depth = le16_to_cpu(el->l_tree_depth);
4602
4603 if (el->l_tree_depth) {
4604 /*
4605 * If we have tree depth, we read in the
4606 * rightmost extent block ahead of time as
4607 * ocfs2_figure_insert_type() and ocfs2_add_branch()
4608 * may want it later.
4609 */
Joel Becker3d03a302009-02-12 17:49:26 -08004610 ret = ocfs2_read_extent_block(et->et_ci,
Joel Becker5e965812008-11-13 14:49:16 -08004611 ocfs2_et_get_last_eb_blk(et),
4612 &bh);
Mark Fashehdcd05382007-01-16 11:32:23 -08004613 if (ret) {
Tao Mac1e8d352011-03-07 16:43:21 +08004614 mlog_errno(ret);
Mark Fashehdcd05382007-01-16 11:32:23 -08004615 goto out;
4616 }
4617 eb = (struct ocfs2_extent_block *) bh->b_data;
4618 el = &eb->h_list;
4619 }
4620
4621 /*
4622 * Unless we have a contiguous insert, we'll need to know if
4623 * there is room left in our allocation tree for another
4624 * extent record.
4625 *
4626 * XXX: This test is simplistic, we can search for empty
4627 * extent records too.
4628 */
Tao Maoc77534f2007-08-28 17:22:33 -07004629 *free_records = le16_to_cpu(el->l_count) -
Mark Fashehdcd05382007-01-16 11:32:23 -08004630 le16_to_cpu(el->l_next_free_rec);
4631
4632 if (!insert->ins_tree_depth) {
Joel Becker1ef61b32009-02-13 03:12:33 -08004633 ocfs2_figure_contig_type(et, insert, el, insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08004634 ocfs2_figure_appending_type(insert, el, insert_rec);
4635 return 0;
4636 }
4637
Joel Beckerffdd7a52008-10-17 22:32:01 -07004638 path = ocfs2_new_path_from_et(et);
Mark Fashehdcd05382007-01-16 11:32:23 -08004639 if (!path) {
4640 ret = -ENOMEM;
4641 mlog_errno(ret);
4642 goto out;
4643 }
4644
4645 /*
4646 * In the case that we're inserting past what the tree
4647 * currently accounts for, ocfs2_find_path() will return for
4648 * us the rightmost tree path. This is accounted for below in
4649 * the appending code.
4650 */
Joel Beckerfacdb772009-02-12 18:08:48 -08004651 ret = ocfs2_find_path(et->et_ci, path, le32_to_cpu(insert_rec->e_cpos));
Mark Fashehdcd05382007-01-16 11:32:23 -08004652 if (ret) {
4653 mlog_errno(ret);
4654 goto out;
4655 }
4656
4657 el = path_leaf_el(path);
4658
4659 /*
4660 * Now that we have the path, there's two things we want to determine:
4661 * 1) Contiguousness (also set contig_index if this is so)
4662 *
4663 * 2) Are we doing an append? We can trivially break this up
4664 * into two types of appends: simple record append, or a
4665 * rotate inside the tail leaf.
4666 */
Joel Becker1ef61b32009-02-13 03:12:33 -08004667 ocfs2_figure_contig_type(et, insert, el, insert_rec);
Mark Fashehdcd05382007-01-16 11:32:23 -08004668
4669 /*
4670 * The insert code isn't quite ready to deal with all cases of
4671 * left contiguousness. Specifically, if it's an insert into
4672 * the 1st record in a leaf, it will require the adjustment of
Mark Fashehe48edee2007-03-07 16:46:57 -08004673 * cluster count on the last record of the path directly to it's
Mark Fashehdcd05382007-01-16 11:32:23 -08004674 * left. For now, just catch that case and fool the layers
4675 * above us. This works just fine for tree_depth == 0, which
4676 * is why we allow that above.
4677 */
4678 if (insert->ins_contig == CONTIG_LEFT &&
4679 insert->ins_contig_index == 0)
4680 insert->ins_contig = CONTIG_NONE;
4681
4682 /*
4683 * Ok, so we can simply compare against last_eb to figure out
4684 * whether the path doesn't exist. This will only happen in
4685 * the case that we're doing a tail append, so maybe we can
4686 * take advantage of that information somehow.
4687 */
Joel Becker35dc0aa2008-08-20 16:25:06 -07004688 if (ocfs2_et_get_last_eb_blk(et) ==
Tao Mae7d4cb62008-08-18 17:38:44 +08004689 path_leaf_bh(path)->b_blocknr) {
Mark Fashehdcd05382007-01-16 11:32:23 -08004690 /*
4691 * Ok, ocfs2_find_path() returned us the rightmost
4692 * tree path. This might be an appending insert. There are
4693 * two cases:
4694 * 1) We're doing a true append at the tail:
4695 * -This might even be off the end of the leaf
4696 * 2) We're "appending" by rotating in the tail
4697 */
4698 ocfs2_figure_appending_type(insert, el, insert_rec);
4699 }
4700
4701out:
4702 ocfs2_free_path(path);
4703
4704 if (ret == 0)
4705 *last_eb_bh = bh;
4706 else
4707 brelse(bh);
4708 return ret;
4709}
4710
4711/*
Joel Beckercc79d8c2009-02-13 03:24:43 -08004712 * Insert an extent into a btree.
Mark Fashehdcd05382007-01-16 11:32:23 -08004713 *
Joel Beckercc79d8c2009-02-13 03:24:43 -08004714 * The caller needs to update the owning btree's cluster count.
Mark Fashehdcd05382007-01-16 11:32:23 -08004715 */
Joel Beckercc79d8c2009-02-13 03:24:43 -08004716int ocfs2_insert_extent(handle_t *handle,
Joel Beckerf99b9b72008-08-20 19:36:33 -07004717 struct ocfs2_extent_tree *et,
4718 u32 cpos,
4719 u64 start_blk,
4720 u32 new_clusters,
4721 u8 flags,
4722 struct ocfs2_alloc_context *meta_ac)
Mark Fashehccd979b2005-12-15 14:31:24 -08004723{
Mark Fashehc3afcbb2007-05-29 14:28:51 -07004724 int status;
Tao Maoc77534f2007-08-28 17:22:33 -07004725 int uninitialized_var(free_records);
Mark Fashehccd979b2005-12-15 14:31:24 -08004726 struct buffer_head *last_eb_bh = NULL;
Mark Fashehdcd05382007-01-16 11:32:23 -08004727 struct ocfs2_insert_type insert = {0, };
4728 struct ocfs2_extent_rec rec;
Mark Fashehccd979b2005-12-15 14:31:24 -08004729
Tao Maa09d09b2011-02-22 08:21:10 +08004730 trace_ocfs2_insert_extent_start(
4731 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
4732 cpos, new_clusters);
Mark Fashehccd979b2005-12-15 14:31:24 -08004733
Mark Fashehe48edee2007-03-07 16:46:57 -08004734 memset(&rec, 0, sizeof(rec));
Mark Fashehdcd05382007-01-16 11:32:23 -08004735 rec.e_cpos = cpu_to_le32(cpos);
4736 rec.e_blkno = cpu_to_le64(start_blk);
Mark Fashehe48edee2007-03-07 16:46:57 -08004737 rec.e_leaf_clusters = cpu_to_le16(new_clusters);
Mark Fasheh2ae99a62007-03-09 16:43:28 -08004738 rec.e_flags = flags;
Joel Becker6136ca52009-02-12 19:32:43 -08004739 status = ocfs2_et_insert_check(et, &rec);
Joel Becker1e61ee72008-08-20 18:32:45 -07004740 if (status) {
4741 mlog_errno(status);
4742 goto bail;
4743 }
Mark Fashehccd979b2005-12-15 14:31:24 -08004744
Joel Becker627961b2009-02-13 03:14:38 -08004745 status = ocfs2_figure_insert_type(et, &last_eb_bh, &rec,
Tao Maoc77534f2007-08-28 17:22:33 -07004746 &free_records, &insert);
Mark Fashehdcd05382007-01-16 11:32:23 -08004747 if (status < 0) {
4748 mlog_errno(status);
4749 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -08004750 }
4751
Tao Maa09d09b2011-02-22 08:21:10 +08004752 trace_ocfs2_insert_extent(insert.ins_appending, insert.ins_contig,
4753 insert.ins_contig_index, free_records,
4754 insert.ins_tree_depth);
Mark Fashehccd979b2005-12-15 14:31:24 -08004755
Tao Maoc77534f2007-08-28 17:22:33 -07004756 if (insert.ins_contig == CONTIG_NONE && free_records == 0) {
Joel Beckerd401dc12009-02-13 02:24:10 -08004757 status = ocfs2_grow_tree(handle, et,
Mark Fasheh328d5752007-06-18 10:48:04 -07004758 &insert.ins_tree_depth, &last_eb_bh,
Mark Fashehc3afcbb2007-05-29 14:28:51 -07004759 meta_ac);
4760 if (status) {
Mark Fashehccd979b2005-12-15 14:31:24 -08004761 mlog_errno(status);
4762 goto bail;
4763 }
Mark Fashehccd979b2005-12-15 14:31:24 -08004764 }
4765
Mark Fashehdcd05382007-01-16 11:32:23 -08004766 /* Finally, we can add clusters. This might rotate the tree for us. */
Joel Becker3505bec2009-02-13 02:57:58 -08004767 status = ocfs2_do_insert_extent(handle, et, &rec, &insert);
Mark Fashehccd979b2005-12-15 14:31:24 -08004768 if (status < 0)
4769 mlog_errno(status);
Joel Becker92ba4702009-02-13 03:18:34 -08004770 else
4771 ocfs2_et_extent_map_insert(et, &rec);
Mark Fashehccd979b2005-12-15 14:31:24 -08004772
4773bail:
Mark Fasheha81cb882008-10-07 14:25:16 -07004774 brelse(last_eb_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08004775
Tao Maf56654c2008-08-18 17:38:48 +08004776 return status;
4777}
4778
Tao Ma0eb8d472008-08-18 17:38:45 +08004779/*
4780 * Allcate and add clusters into the extent b-tree.
4781 * The new clusters(clusters_to_add) will be inserted at logical_offset.
Joel Beckerf99b9b72008-08-20 19:36:33 -07004782 * The extent b-tree's root is specified by et, and
Tao Ma0eb8d472008-08-18 17:38:45 +08004783 * it is not limited to the file storage. Any extent tree can use this
4784 * function if it implements the proper ocfs2_extent_tree.
4785 */
Joel Beckercbee7e12009-02-13 03:34:15 -08004786int ocfs2_add_clusters_in_btree(handle_t *handle,
4787 struct ocfs2_extent_tree *et,
Tao Ma0eb8d472008-08-18 17:38:45 +08004788 u32 *logical_offset,
4789 u32 clusters_to_add,
4790 int mark_unwritten,
Tao Ma0eb8d472008-08-18 17:38:45 +08004791 struct ocfs2_alloc_context *data_ac,
4792 struct ocfs2_alloc_context *meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -07004793 enum ocfs2_alloc_restarted *reason_ret)
Tao Ma0eb8d472008-08-18 17:38:45 +08004794{
Tao Maa09d09b2011-02-22 08:21:10 +08004795 int status = 0, err = 0;
Zongxun Wangfb951eb2014-02-06 12:04:20 -08004796 int need_free = 0;
Tao Ma0eb8d472008-08-18 17:38:45 +08004797 int free_extents;
4798 enum ocfs2_alloc_restarted reason = RESTART_NONE;
4799 u32 bit_off, num_bits;
4800 u64 block;
4801 u8 flags = 0;
Joel Beckercbee7e12009-02-13 03:34:15 -08004802 struct ocfs2_super *osb =
4803 OCFS2_SB(ocfs2_metadata_cache_get_super(et->et_ci));
Tao Ma0eb8d472008-08-18 17:38:45 +08004804
4805 BUG_ON(!clusters_to_add);
4806
4807 if (mark_unwritten)
4808 flags = OCFS2_EXT_UNWRITTEN;
4809
Jun Piao964f14a2017-09-06 16:19:11 -07004810 free_extents = ocfs2_num_free_extents(et);
Tao Ma0eb8d472008-08-18 17:38:45 +08004811 if (free_extents < 0) {
4812 status = free_extents;
4813 mlog_errno(status);
4814 goto leave;
4815 }
4816
4817 /* there are two cases which could cause us to EAGAIN in the
4818 * we-need-more-metadata case:
4819 * 1) we haven't reserved *any*
4820 * 2) we are so fragmented, we've needed to add metadata too
4821 * many times. */
4822 if (!free_extents && !meta_ac) {
Tao Maa09d09b2011-02-22 08:21:10 +08004823 err = -1;
Tao Ma0eb8d472008-08-18 17:38:45 +08004824 status = -EAGAIN;
4825 reason = RESTART_META;
4826 goto leave;
4827 } else if ((!free_extents)
4828 && (ocfs2_alloc_context_bits_left(meta_ac)
Joel Beckerf99b9b72008-08-20 19:36:33 -07004829 < ocfs2_extend_meta_needed(et->et_root_el))) {
Tao Maa09d09b2011-02-22 08:21:10 +08004830 err = -2;
Tao Ma0eb8d472008-08-18 17:38:45 +08004831 status = -EAGAIN;
4832 reason = RESTART_META;
4833 goto leave;
4834 }
4835
Joel Becker1ed9b772010-05-06 13:59:06 +08004836 status = __ocfs2_claim_clusters(handle, data_ac, 1,
Tao Ma0eb8d472008-08-18 17:38:45 +08004837 clusters_to_add, &bit_off, &num_bits);
4838 if (status < 0) {
4839 if (status != -ENOSPC)
4840 mlog_errno(status);
4841 goto leave;
4842 }
4843
4844 BUG_ON(num_bits > clusters_to_add);
4845
Joel Becker13723d02008-10-17 19:25:01 -07004846 /* reserve our write early -- insert_extent may update the tree root */
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08004847 status = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07004848 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma0eb8d472008-08-18 17:38:45 +08004849 if (status < 0) {
4850 mlog_errno(status);
Zongxun Wangfb951eb2014-02-06 12:04:20 -08004851 need_free = 1;
4852 goto bail;
Tao Ma0eb8d472008-08-18 17:38:45 +08004853 }
4854
4855 block = ocfs2_clusters_to_blocks(osb->sb, bit_off);
Tao Maa09d09b2011-02-22 08:21:10 +08004856 trace_ocfs2_add_clusters_in_btree(
4857 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
4858 bit_off, num_bits);
Joel Beckercc79d8c2009-02-13 03:24:43 -08004859 status = ocfs2_insert_extent(handle, et, *logical_offset, block,
Joel Beckerf99b9b72008-08-20 19:36:33 -07004860 num_bits, flags, meta_ac);
Tao Ma0eb8d472008-08-18 17:38:45 +08004861 if (status < 0) {
4862 mlog_errno(status);
Zongxun Wangfb951eb2014-02-06 12:04:20 -08004863 need_free = 1;
4864 goto bail;
Tao Ma0eb8d472008-08-18 17:38:45 +08004865 }
4866
Joel Beckerec20cec2010-03-19 14:13:52 -07004867 ocfs2_journal_dirty(handle, et->et_root_bh);
Tao Ma0eb8d472008-08-18 17:38:45 +08004868
4869 clusters_to_add -= num_bits;
4870 *logical_offset += num_bits;
4871
4872 if (clusters_to_add) {
Tao Maa09d09b2011-02-22 08:21:10 +08004873 err = clusters_to_add;
Tao Ma0eb8d472008-08-18 17:38:45 +08004874 status = -EAGAIN;
4875 reason = RESTART_TRANS;
4876 }
4877
Zongxun Wangfb951eb2014-02-06 12:04:20 -08004878bail:
4879 if (need_free) {
4880 if (data_ac->ac_which == OCFS2_AC_USE_LOCAL)
4881 ocfs2_free_local_alloc_bits(osb, handle, data_ac,
4882 bit_off, num_bits);
4883 else
4884 ocfs2_free_clusters(handle,
4885 data_ac->ac_inode,
4886 data_ac->ac_bh,
4887 ocfs2_clusters_to_blocks(osb->sb, bit_off),
4888 num_bits);
4889 }
4890
Tao Ma0eb8d472008-08-18 17:38:45 +08004891leave:
Tao Ma0eb8d472008-08-18 17:38:45 +08004892 if (reason_ret)
4893 *reason_ret = reason;
Tao Maa09d09b2011-02-22 08:21:10 +08004894 trace_ocfs2_add_clusters_in_btree_ret(status, reason, err);
Tao Ma0eb8d472008-08-18 17:38:45 +08004895 return status;
4896}
4897
Mark Fasheh328d5752007-06-18 10:48:04 -07004898static void ocfs2_make_right_split_rec(struct super_block *sb,
4899 struct ocfs2_extent_rec *split_rec,
4900 u32 cpos,
4901 struct ocfs2_extent_rec *rec)
4902{
4903 u32 rec_cpos = le32_to_cpu(rec->e_cpos);
4904 u32 rec_range = rec_cpos + le16_to_cpu(rec->e_leaf_clusters);
4905
4906 memset(split_rec, 0, sizeof(struct ocfs2_extent_rec));
4907
4908 split_rec->e_cpos = cpu_to_le32(cpos);
4909 split_rec->e_leaf_clusters = cpu_to_le16(rec_range - cpos);
4910
4911 split_rec->e_blkno = rec->e_blkno;
4912 le64_add_cpu(&split_rec->e_blkno,
4913 ocfs2_clusters_to_blocks(sb, cpos - rec_cpos));
4914
4915 split_rec->e_flags = rec->e_flags;
4916}
4917
Joel Beckerd2311292009-02-13 03:43:22 -08004918static int ocfs2_split_and_insert(handle_t *handle,
Tao Mae7d4cb62008-08-18 17:38:44 +08004919 struct ocfs2_extent_tree *et,
Joel Beckerd2311292009-02-13 03:43:22 -08004920 struct ocfs2_path *path,
Mark Fasheh328d5752007-06-18 10:48:04 -07004921 struct buffer_head **last_eb_bh,
4922 int split_index,
4923 struct ocfs2_extent_rec *orig_split_rec,
4924 struct ocfs2_alloc_context *meta_ac)
4925{
4926 int ret = 0, depth;
4927 unsigned int insert_range, rec_range, do_leftright = 0;
4928 struct ocfs2_extent_rec tmprec;
4929 struct ocfs2_extent_list *rightmost_el;
4930 struct ocfs2_extent_rec rec;
4931 struct ocfs2_extent_rec split_rec = *orig_split_rec;
4932 struct ocfs2_insert_type insert;
4933 struct ocfs2_extent_block *eb;
Mark Fasheh328d5752007-06-18 10:48:04 -07004934
4935leftright:
4936 /*
4937 * Store a copy of the record on the stack - it might move
4938 * around as the tree is manipulated below.
4939 */
4940 rec = path_leaf_el(path)->l_recs[split_index];
4941
Joel Beckerce1d9ea2008-08-20 16:30:07 -07004942 rightmost_el = et->et_root_el;
Mark Fasheh328d5752007-06-18 10:48:04 -07004943
4944 depth = le16_to_cpu(rightmost_el->l_tree_depth);
4945 if (depth) {
4946 BUG_ON(!(*last_eb_bh));
4947 eb = (struct ocfs2_extent_block *) (*last_eb_bh)->b_data;
4948 rightmost_el = &eb->h_list;
4949 }
4950
4951 if (le16_to_cpu(rightmost_el->l_next_free_rec) ==
4952 le16_to_cpu(rightmost_el->l_count)) {
Joel Beckerd401dc12009-02-13 02:24:10 -08004953 ret = ocfs2_grow_tree(handle, et,
Tao Mae7d4cb62008-08-18 17:38:44 +08004954 &depth, last_eb_bh, meta_ac);
Mark Fasheh328d5752007-06-18 10:48:04 -07004955 if (ret) {
4956 mlog_errno(ret);
4957 goto out;
4958 }
Mark Fasheh328d5752007-06-18 10:48:04 -07004959 }
4960
4961 memset(&insert, 0, sizeof(struct ocfs2_insert_type));
4962 insert.ins_appending = APPEND_NONE;
4963 insert.ins_contig = CONTIG_NONE;
Mark Fasheh328d5752007-06-18 10:48:04 -07004964 insert.ins_tree_depth = depth;
4965
4966 insert_range = le32_to_cpu(split_rec.e_cpos) +
4967 le16_to_cpu(split_rec.e_leaf_clusters);
4968 rec_range = le32_to_cpu(rec.e_cpos) +
4969 le16_to_cpu(rec.e_leaf_clusters);
4970
4971 if (split_rec.e_cpos == rec.e_cpos) {
4972 insert.ins_split = SPLIT_LEFT;
4973 } else if (insert_range == rec_range) {
4974 insert.ins_split = SPLIT_RIGHT;
4975 } else {
4976 /*
4977 * Left/right split. We fake this as a right split
4978 * first and then make a second pass as a left split.
4979 */
4980 insert.ins_split = SPLIT_RIGHT;
4981
Joel Beckerd2311292009-02-13 03:43:22 -08004982 ocfs2_make_right_split_rec(ocfs2_metadata_cache_get_super(et->et_ci),
4983 &tmprec, insert_range, &rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07004984
4985 split_rec = tmprec;
4986
4987 BUG_ON(do_leftright);
4988 do_leftright = 1;
4989 }
4990
Joel Becker3505bec2009-02-13 02:57:58 -08004991 ret = ocfs2_do_insert_extent(handle, et, &split_rec, &insert);
Mark Fasheh328d5752007-06-18 10:48:04 -07004992 if (ret) {
4993 mlog_errno(ret);
4994 goto out;
4995 }
4996
4997 if (do_leftright == 1) {
4998 u32 cpos;
4999 struct ocfs2_extent_list *el;
5000
5001 do_leftright++;
5002 split_rec = *orig_split_rec;
5003
5004 ocfs2_reinit_path(path, 1);
5005
5006 cpos = le32_to_cpu(split_rec.e_cpos);
Joel Beckerfacdb772009-02-12 18:08:48 -08005007 ret = ocfs2_find_path(et->et_ci, path, cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07005008 if (ret) {
5009 mlog_errno(ret);
5010 goto out;
5011 }
5012
5013 el = path_leaf_el(path);
5014 split_index = ocfs2_search_extent_list(el, cpos);
Yingtai Xie981035b2014-08-06 16:03:54 -07005015 if (split_index == -1) {
5016 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
Joe Perches7ecef142015-09-04 15:44:51 -07005017 "Owner %llu has an extent at cpos %u which can no longer be found\n",
5018 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5019 cpos);
Yingtai Xie981035b2014-08-06 16:03:54 -07005020 ret = -EROFS;
5021 goto out;
5022 }
Mark Fasheh328d5752007-06-18 10:48:04 -07005023 goto leftright;
5024 }
5025out:
5026
5027 return ret;
5028}
5029
Joel Beckerf3868d02009-02-17 19:46:04 -08005030static int ocfs2_replace_extent_rec(handle_t *handle,
5031 struct ocfs2_extent_tree *et,
Tao Ma47be12e2009-01-09 07:32:48 +08005032 struct ocfs2_path *path,
5033 struct ocfs2_extent_list *el,
5034 int split_index,
5035 struct ocfs2_extent_rec *split_rec)
5036{
5037 int ret;
5038
Joel Beckerf3868d02009-02-17 19:46:04 -08005039 ret = ocfs2_path_bh_journal_access(handle, et->et_ci, path,
Tao Ma47be12e2009-01-09 07:32:48 +08005040 path_num_items(path) - 1);
5041 if (ret) {
5042 mlog_errno(ret);
5043 goto out;
5044 }
5045
5046 el->l_recs[split_index] = *split_rec;
5047
5048 ocfs2_journal_dirty(handle, path_leaf_bh(path));
5049out:
5050 return ret;
5051}
5052
Mark Fasheh328d5752007-06-18 10:48:04 -07005053/*
Tao Ma555936b2009-08-18 11:22:21 +08005054 * Split part or all of the extent record at split_index in the leaf
5055 * pointed to by path. Merge with the contiguous extent record if needed.
Mark Fasheh328d5752007-06-18 10:48:04 -07005056 *
5057 * Care is taken to handle contiguousness so as to not grow the tree.
5058 *
5059 * meta_ac is not strictly necessary - we only truly need it if growth
5060 * of the tree is required. All other cases will degrade into a less
5061 * optimal tree layout.
5062 *
Tao Mae7d4cb62008-08-18 17:38:44 +08005063 * last_eb_bh should be the rightmost leaf block for any extent
5064 * btree. Since a split may grow the tree or a merge might shrink it,
5065 * the caller cannot trust the contents of that buffer after this call.
Mark Fasheh328d5752007-06-18 10:48:04 -07005066 *
5067 * This code is optimized for readability - several passes might be
5068 * made over certain portions of the tree. All of those blocks will
5069 * have been brought into cache (and pinned via the journal), so the
5070 * extra overhead is not expressed in terms of disk reads.
5071 */
Tao Mae2e9f602009-08-18 11:22:34 +08005072int ocfs2_split_extent(handle_t *handle,
5073 struct ocfs2_extent_tree *et,
5074 struct ocfs2_path *path,
5075 int split_index,
5076 struct ocfs2_extent_rec *split_rec,
5077 struct ocfs2_alloc_context *meta_ac,
5078 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fasheh328d5752007-06-18 10:48:04 -07005079{
5080 int ret = 0;
5081 struct ocfs2_extent_list *el = path_leaf_el(path);
Mark Fashehe8aed342007-12-03 16:43:01 -08005082 struct buffer_head *last_eb_bh = NULL;
Mark Fasheh328d5752007-06-18 10:48:04 -07005083 struct ocfs2_extent_rec *rec = &el->l_recs[split_index];
5084 struct ocfs2_merge_ctxt ctxt;
Mark Fasheh328d5752007-06-18 10:48:04 -07005085
Mark Fasheh328d5752007-06-18 10:48:04 -07005086 if (le32_to_cpu(rec->e_cpos) > le32_to_cpu(split_rec->e_cpos) ||
5087 ((le32_to_cpu(rec->e_cpos) + le16_to_cpu(rec->e_leaf_clusters)) <
5088 (le32_to_cpu(split_rec->e_cpos) + le16_to_cpu(split_rec->e_leaf_clusters)))) {
5089 ret = -EIO;
5090 mlog_errno(ret);
5091 goto out;
5092 }
5093
Xue jiufei9f99ad02015-06-24 16:55:07 -07005094 ret = ocfs2_figure_merge_contig_type(et, path, el,
5095 split_index,
5096 split_rec,
5097 &ctxt);
5098 if (ret) {
5099 mlog_errno(ret);
5100 goto out;
5101 }
Mark Fasheh328d5752007-06-18 10:48:04 -07005102
5103 /*
5104 * The core merge / split code wants to know how much room is
Joel Beckera1cf0762009-02-13 03:45:49 -08005105 * left in this allocation tree, so we pass the
Mark Fasheh328d5752007-06-18 10:48:04 -07005106 * rightmost extent list.
5107 */
5108 if (path->p_tree_depth) {
5109 struct ocfs2_extent_block *eb;
Mark Fasheh328d5752007-06-18 10:48:04 -07005110
Joel Becker3d03a302009-02-12 17:49:26 -08005111 ret = ocfs2_read_extent_block(et->et_ci,
Joel Becker5e965812008-11-13 14:49:16 -08005112 ocfs2_et_get_last_eb_blk(et),
5113 &last_eb_bh);
Mark Fasheh328d5752007-06-18 10:48:04 -07005114 if (ret) {
Tao Mac1e8d352011-03-07 16:43:21 +08005115 mlog_errno(ret);
Mark Fasheh328d5752007-06-18 10:48:04 -07005116 goto out;
5117 }
5118
5119 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
Changwei Ged22aa612018-01-31 16:14:55 -08005120 }
Mark Fasheh328d5752007-06-18 10:48:04 -07005121
Mark Fasheh328d5752007-06-18 10:48:04 -07005122 if (rec->e_cpos == split_rec->e_cpos &&
5123 rec->e_leaf_clusters == split_rec->e_leaf_clusters)
5124 ctxt.c_split_covers_rec = 1;
5125 else
5126 ctxt.c_split_covers_rec = 0;
5127
5128 ctxt.c_has_empty_extent = ocfs2_is_empty_extent(&el->l_recs[0]);
5129
Tao Maa09d09b2011-02-22 08:21:10 +08005130 trace_ocfs2_split_extent(split_index, ctxt.c_contig_type,
5131 ctxt.c_has_empty_extent,
5132 ctxt.c_split_covers_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07005133
5134 if (ctxt.c_contig_type == CONTIG_NONE) {
5135 if (ctxt.c_split_covers_rec)
Joel Beckerf3868d02009-02-17 19:46:04 -08005136 ret = ocfs2_replace_extent_rec(handle, et, path, el,
Tao Ma47be12e2009-01-09 07:32:48 +08005137 split_index, split_rec);
Mark Fasheh328d5752007-06-18 10:48:04 -07005138 else
Joel Beckerd2311292009-02-13 03:43:22 -08005139 ret = ocfs2_split_and_insert(handle, et, path,
Mark Fasheh328d5752007-06-18 10:48:04 -07005140 &last_eb_bh, split_index,
5141 split_rec, meta_ac);
5142 if (ret)
5143 mlog_errno(ret);
5144 } else {
Joel Beckerc495dd22009-02-13 02:19:11 -08005145 ret = ocfs2_try_to_merge_extent(handle, et, path,
Mark Fasheh328d5752007-06-18 10:48:04 -07005146 split_index, split_rec,
Joel Beckerc495dd22009-02-13 02:19:11 -08005147 dealloc, &ctxt);
Mark Fasheh328d5752007-06-18 10:48:04 -07005148 if (ret)
5149 mlog_errno(ret);
5150 }
5151
Mark Fasheh328d5752007-06-18 10:48:04 -07005152out:
5153 brelse(last_eb_bh);
5154 return ret;
5155}
5156
5157/*
Tao Ma555936b2009-08-18 11:22:21 +08005158 * Change the flags of the already-existing extent at cpos for len clusters.
5159 *
5160 * new_flags: the flags we want to set.
5161 * clear_flags: the flags we want to clear.
5162 * phys: the new physical offset we want this new extent starts from.
Mark Fasheh328d5752007-06-18 10:48:04 -07005163 *
5164 * If the existing extent is larger than the request, initiate a
5165 * split. An attempt will be made at merging with adjacent extents.
5166 *
5167 * The caller is responsible for passing down meta_ac if we'll need it.
5168 */
Tao Ma1aa75fe2009-08-18 11:28:39 +08005169int ocfs2_change_extent_flag(handle_t *handle,
5170 struct ocfs2_extent_tree *et,
5171 u32 cpos, u32 len, u32 phys,
5172 struct ocfs2_alloc_context *meta_ac,
5173 struct ocfs2_cached_dealloc_ctxt *dealloc,
5174 int new_flags, int clear_flags)
Mark Fasheh328d5752007-06-18 10:48:04 -07005175{
5176 int ret, index;
Tao Ma555936b2009-08-18 11:22:21 +08005177 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
5178 u64 start_blkno = ocfs2_clusters_to_blocks(sb, phys);
Mark Fasheh328d5752007-06-18 10:48:04 -07005179 struct ocfs2_extent_rec split_rec;
5180 struct ocfs2_path *left_path = NULL;
5181 struct ocfs2_extent_list *el;
Tao Ma555936b2009-08-18 11:22:21 +08005182 struct ocfs2_extent_rec *rec;
Mark Fasheh328d5752007-06-18 10:48:04 -07005183
Joel Beckerffdd7a52008-10-17 22:32:01 -07005184 left_path = ocfs2_new_path_from_et(et);
Mark Fasheh328d5752007-06-18 10:48:04 -07005185 if (!left_path) {
5186 ret = -ENOMEM;
5187 mlog_errno(ret);
5188 goto out;
5189 }
5190
Joel Beckerfacdb772009-02-12 18:08:48 -08005191 ret = ocfs2_find_path(et->et_ci, left_path, cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07005192 if (ret) {
5193 mlog_errno(ret);
5194 goto out;
5195 }
5196 el = path_leaf_el(left_path);
5197
5198 index = ocfs2_search_extent_list(el, cpos);
Yingtai Xie981035b2014-08-06 16:03:54 -07005199 if (index == -1) {
Tao Ma555936b2009-08-18 11:22:21 +08005200 ocfs2_error(sb,
Joe Perches7ecef142015-09-04 15:44:51 -07005201 "Owner %llu has an extent at cpos %u which can no longer be found\n",
5202 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5203 cpos);
Mark Fasheh328d5752007-06-18 10:48:04 -07005204 ret = -EROFS;
5205 goto out;
5206 }
5207
Tao Ma555936b2009-08-18 11:22:21 +08005208 ret = -EIO;
5209 rec = &el->l_recs[index];
5210 if (new_flags && (rec->e_flags & new_flags)) {
5211 mlog(ML_ERROR, "Owner %llu tried to set %d flags on an "
Darrick J. Wong86544fb2016-11-09 14:13:09 -08005212 "extent that already had them\n",
Tao Ma555936b2009-08-18 11:22:21 +08005213 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5214 new_flags);
5215 goto out;
5216 }
5217
5218 if (clear_flags && !(rec->e_flags & clear_flags)) {
5219 mlog(ML_ERROR, "Owner %llu tried to clear %d flags on an "
Darrick J. Wong86544fb2016-11-09 14:13:09 -08005220 "extent that didn't have them\n",
Tao Ma555936b2009-08-18 11:22:21 +08005221 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5222 clear_flags);
5223 goto out;
5224 }
5225
Mark Fasheh328d5752007-06-18 10:48:04 -07005226 memset(&split_rec, 0, sizeof(struct ocfs2_extent_rec));
5227 split_rec.e_cpos = cpu_to_le32(cpos);
5228 split_rec.e_leaf_clusters = cpu_to_le16(len);
5229 split_rec.e_blkno = cpu_to_le64(start_blkno);
Tao Ma555936b2009-08-18 11:22:21 +08005230 split_rec.e_flags = rec->e_flags;
5231 if (new_flags)
5232 split_rec.e_flags |= new_flags;
5233 if (clear_flags)
5234 split_rec.e_flags &= ~clear_flags;
Mark Fasheh328d5752007-06-18 10:48:04 -07005235
Tao Mae2e9f602009-08-18 11:22:34 +08005236 ret = ocfs2_split_extent(handle, et, left_path,
5237 index, &split_rec, meta_ac,
5238 dealloc);
Mark Fasheh328d5752007-06-18 10:48:04 -07005239 if (ret)
5240 mlog_errno(ret);
5241
5242out:
5243 ocfs2_free_path(left_path);
5244 return ret;
Tao Ma555936b2009-08-18 11:22:21 +08005245
5246}
5247
5248/*
5249 * Mark the already-existing extent at cpos as written for len clusters.
5250 * This removes the unwritten extent flag.
5251 *
5252 * If the existing extent is larger than the request, initiate a
5253 * split. An attempt will be made at merging with adjacent extents.
5254 *
5255 * The caller is responsible for passing down meta_ac if we'll need it.
5256 */
5257int ocfs2_mark_extent_written(struct inode *inode,
5258 struct ocfs2_extent_tree *et,
5259 handle_t *handle, u32 cpos, u32 len, u32 phys,
5260 struct ocfs2_alloc_context *meta_ac,
5261 struct ocfs2_cached_dealloc_ctxt *dealloc)
5262{
5263 int ret;
5264
Tao Maa09d09b2011-02-22 08:21:10 +08005265 trace_ocfs2_mark_extent_written(
5266 (unsigned long long)OCFS2_I(inode)->ip_blkno,
5267 cpos, len, phys);
Tao Ma555936b2009-08-18 11:22:21 +08005268
5269 if (!ocfs2_writes_unwritten_extents(OCFS2_SB(inode->i_sb))) {
Joe Perches7ecef142015-09-04 15:44:51 -07005270 ocfs2_error(inode->i_sb, "Inode %llu has unwritten extents that are being written to, but the feature bit is not set in the super block\n",
Tao Ma555936b2009-08-18 11:22:21 +08005271 (unsigned long long)OCFS2_I(inode)->ip_blkno);
5272 ret = -EROFS;
5273 goto out;
5274 }
5275
5276 /*
5277 * XXX: This should be fixed up so that we just re-insert the
5278 * next extent records.
5279 */
5280 ocfs2_et_extent_map_truncate(et, 0);
5281
5282 ret = ocfs2_change_extent_flag(handle, et, cpos,
5283 len, phys, meta_ac, dealloc,
5284 0, OCFS2_EXT_UNWRITTEN);
5285 if (ret)
5286 mlog_errno(ret);
5287
5288out:
5289 return ret;
Mark Fasheh328d5752007-06-18 10:48:04 -07005290}
5291
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005292static int ocfs2_split_tree(handle_t *handle, struct ocfs2_extent_tree *et,
5293 struct ocfs2_path *path,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005294 int index, u32 new_range,
5295 struct ocfs2_alloc_context *meta_ac)
5296{
Tao Mac901fb02010-04-26 14:34:57 +08005297 int ret, depth, credits;
Mark Fashehd0c7d702007-07-03 13:27:22 -07005298 struct buffer_head *last_eb_bh = NULL;
5299 struct ocfs2_extent_block *eb;
5300 struct ocfs2_extent_list *rightmost_el, *el;
5301 struct ocfs2_extent_rec split_rec;
5302 struct ocfs2_extent_rec *rec;
5303 struct ocfs2_insert_type insert;
5304
5305 /*
5306 * Setup the record to split before we grow the tree.
5307 */
5308 el = path_leaf_el(path);
5309 rec = &el->l_recs[index];
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005310 ocfs2_make_right_split_rec(ocfs2_metadata_cache_get_super(et->et_ci),
5311 &split_rec, new_range, rec);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005312
5313 depth = path->p_tree_depth;
5314 if (depth > 0) {
Joel Becker3d03a302009-02-12 17:49:26 -08005315 ret = ocfs2_read_extent_block(et->et_ci,
Joel Becker5e965812008-11-13 14:49:16 -08005316 ocfs2_et_get_last_eb_blk(et),
5317 &last_eb_bh);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005318 if (ret < 0) {
5319 mlog_errno(ret);
5320 goto out;
5321 }
5322
5323 eb = (struct ocfs2_extent_block *) last_eb_bh->b_data;
5324 rightmost_el = &eb->h_list;
5325 } else
5326 rightmost_el = path_leaf_el(path);
5327
Tao Mac901fb02010-04-26 14:34:57 +08005328 credits = path->p_tree_depth +
5329 ocfs2_extend_meta_needed(et->et_root_el);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005330 ret = ocfs2_extend_trans(handle, credits);
5331 if (ret) {
5332 mlog_errno(ret);
5333 goto out;
5334 }
5335
5336 if (le16_to_cpu(rightmost_el->l_next_free_rec) ==
5337 le16_to_cpu(rightmost_el->l_count)) {
Joel Beckerd401dc12009-02-13 02:24:10 -08005338 ret = ocfs2_grow_tree(handle, et, &depth, &last_eb_bh,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005339 meta_ac);
5340 if (ret) {
5341 mlog_errno(ret);
5342 goto out;
5343 }
Mark Fashehd0c7d702007-07-03 13:27:22 -07005344 }
5345
5346 memset(&insert, 0, sizeof(struct ocfs2_insert_type));
5347 insert.ins_appending = APPEND_NONE;
5348 insert.ins_contig = CONTIG_NONE;
5349 insert.ins_split = SPLIT_RIGHT;
Mark Fashehd0c7d702007-07-03 13:27:22 -07005350 insert.ins_tree_depth = depth;
5351
Joel Becker3505bec2009-02-13 02:57:58 -08005352 ret = ocfs2_do_insert_extent(handle, et, &split_rec, &insert);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005353 if (ret)
5354 mlog_errno(ret);
5355
5356out:
5357 brelse(last_eb_bh);
5358 return ret;
5359}
5360
Joel Becker043beeb2009-02-13 02:42:30 -08005361static int ocfs2_truncate_rec(handle_t *handle,
5362 struct ocfs2_extent_tree *et,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005363 struct ocfs2_path *path, int index,
5364 struct ocfs2_cached_dealloc_ctxt *dealloc,
Joel Becker043beeb2009-02-13 02:42:30 -08005365 u32 cpos, u32 len)
Mark Fashehd0c7d702007-07-03 13:27:22 -07005366{
5367 int ret;
5368 u32 left_cpos, rec_range, trunc_range;
piaojunc14688e2016-05-19 17:09:47 -07005369 int is_rightmost_tree_rec = 0;
Joel Becker043beeb2009-02-13 02:42:30 -08005370 struct super_block *sb = ocfs2_metadata_cache_get_super(et->et_ci);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005371 struct ocfs2_path *left_path = NULL;
5372 struct ocfs2_extent_list *el = path_leaf_el(path);
5373 struct ocfs2_extent_rec *rec;
5374 struct ocfs2_extent_block *eb;
5375
5376 if (ocfs2_is_empty_extent(&el->l_recs[0]) && index > 0) {
Xue jiufei17215982016-03-25 14:21:41 -07005377 /* extend credit for ocfs2_remove_rightmost_path */
5378 ret = ocfs2_extend_rotate_transaction(handle, 0,
5379 handle->h_buffer_credits,
5380 path);
5381 if (ret) {
5382 mlog_errno(ret);
5383 goto out;
5384 }
5385
Joel Becker70f18c02009-02-13 02:09:31 -08005386 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005387 if (ret) {
5388 mlog_errno(ret);
5389 goto out;
5390 }
5391
5392 index--;
5393 }
5394
5395 if (index == (le16_to_cpu(el->l_next_free_rec) - 1) &&
5396 path->p_tree_depth) {
5397 /*
5398 * Check whether this is the rightmost tree record. If
5399 * we remove all of this record or part of its right
5400 * edge then an update of the record lengths above it
5401 * will be required.
5402 */
5403 eb = (struct ocfs2_extent_block *)path_leaf_bh(path)->b_data;
5404 if (eb->h_next_leaf_blk == 0)
5405 is_rightmost_tree_rec = 1;
5406 }
5407
5408 rec = &el->l_recs[index];
5409 if (index == 0 && path->p_tree_depth &&
5410 le32_to_cpu(rec->e_cpos) == cpos) {
5411 /*
5412 * Changing the leftmost offset (via partial or whole
5413 * record truncate) of an interior (or rightmost) path
5414 * means we have to update the subtree that is formed
5415 * by this leaf and the one to it's left.
5416 *
5417 * There are two cases we can skip:
Joel Becker043beeb2009-02-13 02:42:30 -08005418 * 1) Path is the leftmost one in our btree.
Mark Fashehd0c7d702007-07-03 13:27:22 -07005419 * 2) The leaf is rightmost and will be empty after
5420 * we remove the extent record - the rotate code
5421 * knows how to update the newly formed edge.
5422 */
5423
Joel Becker043beeb2009-02-13 02:42:30 -08005424 ret = ocfs2_find_cpos_for_left_leaf(sb, path, &left_cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005425 if (ret) {
5426 mlog_errno(ret);
5427 goto out;
5428 }
5429
5430 if (left_cpos && le16_to_cpu(el->l_next_free_rec) > 1) {
Joel Beckerffdd7a52008-10-17 22:32:01 -07005431 left_path = ocfs2_new_path_from_path(path);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005432 if (!left_path) {
5433 ret = -ENOMEM;
5434 mlog_errno(ret);
5435 goto out;
5436 }
5437
Joel Beckerfacdb772009-02-12 18:08:48 -08005438 ret = ocfs2_find_path(et->et_ci, left_path,
5439 left_cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005440 if (ret) {
5441 mlog_errno(ret);
5442 goto out;
5443 }
5444 }
5445 }
5446
5447 ret = ocfs2_extend_rotate_transaction(handle, 0,
5448 handle->h_buffer_credits,
5449 path);
5450 if (ret) {
5451 mlog_errno(ret);
5452 goto out;
5453 }
5454
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08005455 ret = ocfs2_journal_access_path(et->et_ci, handle, path);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005456 if (ret) {
5457 mlog_errno(ret);
5458 goto out;
5459 }
5460
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08005461 ret = ocfs2_journal_access_path(et->et_ci, handle, left_path);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005462 if (ret) {
5463 mlog_errno(ret);
5464 goto out;
5465 }
5466
5467 rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
5468 trunc_range = cpos + len;
5469
5470 if (le32_to_cpu(rec->e_cpos) == cpos && rec_range == trunc_range) {
5471 int next_free;
5472
5473 memset(rec, 0, sizeof(*rec));
5474 ocfs2_cleanup_merge(el, index);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005475
5476 next_free = le16_to_cpu(el->l_next_free_rec);
5477 if (is_rightmost_tree_rec && next_free > 1) {
5478 /*
5479 * We skip the edge update if this path will
5480 * be deleted by the rotate code.
5481 */
5482 rec = &el->l_recs[next_free - 1];
Joel Beckerd401dc12009-02-13 02:24:10 -08005483 ocfs2_adjust_rightmost_records(handle, et, path,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005484 rec);
5485 }
5486 } else if (le32_to_cpu(rec->e_cpos) == cpos) {
5487 /* Remove leftmost portion of the record. */
5488 le32_add_cpu(&rec->e_cpos, len);
5489 le64_add_cpu(&rec->e_blkno, ocfs2_clusters_to_blocks(sb, len));
5490 le16_add_cpu(&rec->e_leaf_clusters, -len);
5491 } else if (rec_range == trunc_range) {
5492 /* Remove rightmost portion of the record */
5493 le16_add_cpu(&rec->e_leaf_clusters, -len);
5494 if (is_rightmost_tree_rec)
Joel Beckerd401dc12009-02-13 02:24:10 -08005495 ocfs2_adjust_rightmost_records(handle, et, path, rec);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005496 } else {
5497 /* Caller should have trapped this. */
Joel Becker043beeb2009-02-13 02:42:30 -08005498 mlog(ML_ERROR, "Owner %llu: Invalid record truncate: (%u, %u) "
5499 "(%u, %u)\n",
5500 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehd0c7d702007-07-03 13:27:22 -07005501 le32_to_cpu(rec->e_cpos),
5502 le16_to_cpu(rec->e_leaf_clusters), cpos, len);
5503 BUG();
5504 }
5505
5506 if (left_path) {
5507 int subtree_index;
5508
Joel Becker7dc02802009-02-12 19:20:13 -08005509 subtree_index = ocfs2_find_subtree_root(et, left_path, path);
Joel Becker4619c732009-02-12 19:02:36 -08005510 ocfs2_complete_edge_insert(handle, left_path, path,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005511 subtree_index);
5512 }
5513
5514 ocfs2_journal_dirty(handle, path_leaf_bh(path));
5515
Joel Becker70f18c02009-02-13 02:09:31 -08005516 ret = ocfs2_rotate_tree_left(handle, et, path, dealloc);
wangyan229ba1f2018-08-17 15:44:27 -07005517 if (ret)
Mark Fashehd0c7d702007-07-03 13:27:22 -07005518 mlog_errno(ret);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005519
5520out:
5521 ocfs2_free_path(left_path);
5522 return ret;
5523}
5524
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005525int ocfs2_remove_extent(handle_t *handle,
Joel Beckerf99b9b72008-08-20 19:36:33 -07005526 struct ocfs2_extent_tree *et,
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005527 u32 cpos, u32 len,
Mark Fasheh063c4562007-07-03 13:34:11 -07005528 struct ocfs2_alloc_context *meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -07005529 struct ocfs2_cached_dealloc_ctxt *dealloc)
Mark Fashehd0c7d702007-07-03 13:27:22 -07005530{
5531 int ret, index;
5532 u32 rec_range, trunc_range;
5533 struct ocfs2_extent_rec *rec;
5534 struct ocfs2_extent_list *el;
Tao Mae7d4cb62008-08-18 17:38:44 +08005535 struct ocfs2_path *path = NULL;
Mark Fashehd0c7d702007-07-03 13:27:22 -07005536
Joel Becker4c911ee2009-02-13 02:50:12 -08005537 /*
5538 * XXX: Why are we truncating to 0 instead of wherever this
5539 * affects us?
5540 */
5541 ocfs2_et_extent_map_truncate(et, 0);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005542
Joel Beckerffdd7a52008-10-17 22:32:01 -07005543 path = ocfs2_new_path_from_et(et);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005544 if (!path) {
5545 ret = -ENOMEM;
5546 mlog_errno(ret);
5547 goto out;
5548 }
5549
Joel Beckerfacdb772009-02-12 18:08:48 -08005550 ret = ocfs2_find_path(et->et_ci, path, cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005551 if (ret) {
5552 mlog_errno(ret);
5553 goto out;
5554 }
5555
5556 el = path_leaf_el(path);
5557 index = ocfs2_search_extent_list(el, cpos);
Yingtai Xie981035b2014-08-06 16:03:54 -07005558 if (index == -1) {
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005559 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
Joe Perches7ecef142015-09-04 15:44:51 -07005560 "Owner %llu has an extent at cpos %u which can no longer be found\n",
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005561 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5562 cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005563 ret = -EROFS;
5564 goto out;
5565 }
5566
5567 /*
5568 * We have 3 cases of extent removal:
5569 * 1) Range covers the entire extent rec
5570 * 2) Range begins or ends on one edge of the extent rec
5571 * 3) Range is in the middle of the extent rec (no shared edges)
5572 *
5573 * For case 1 we remove the extent rec and left rotate to
5574 * fill the hole.
5575 *
5576 * For case 2 we just shrink the existing extent rec, with a
5577 * tree update if the shrinking edge is also the edge of an
5578 * extent block.
5579 *
5580 * For case 3 we do a right split to turn the extent rec into
5581 * something case 2 can handle.
5582 */
5583 rec = &el->l_recs[index];
5584 rec_range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
5585 trunc_range = cpos + len;
5586
5587 BUG_ON(cpos < le32_to_cpu(rec->e_cpos) || trunc_range > rec_range);
5588
Tao Maa09d09b2011-02-22 08:21:10 +08005589 trace_ocfs2_remove_extent(
5590 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
5591 cpos, len, index, le32_to_cpu(rec->e_cpos),
5592 ocfs2_rec_clusters(el, rec));
Mark Fashehd0c7d702007-07-03 13:27:22 -07005593
5594 if (le32_to_cpu(rec->e_cpos) == cpos || rec_range == trunc_range) {
Joel Becker043beeb2009-02-13 02:42:30 -08005595 ret = ocfs2_truncate_rec(handle, et, path, index, dealloc,
5596 cpos, len);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005597 if (ret) {
5598 mlog_errno(ret);
5599 goto out;
5600 }
5601 } else {
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005602 ret = ocfs2_split_tree(handle, et, path, index,
Mark Fashehd0c7d702007-07-03 13:27:22 -07005603 trunc_range, meta_ac);
5604 if (ret) {
5605 mlog_errno(ret);
5606 goto out;
5607 }
5608
5609 /*
5610 * The split could have manipulated the tree enough to
5611 * move the record location, so we have to look for it again.
5612 */
5613 ocfs2_reinit_path(path, 1);
5614
Joel Beckerfacdb772009-02-12 18:08:48 -08005615 ret = ocfs2_find_path(et->et_ci, path, cpos);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005616 if (ret) {
5617 mlog_errno(ret);
5618 goto out;
5619 }
5620
5621 el = path_leaf_el(path);
5622 index = ocfs2_search_extent_list(el, cpos);
Yingtai Xie981035b2014-08-06 16:03:54 -07005623 if (index == -1) {
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005624 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
Joe Perches7ecef142015-09-04 15:44:51 -07005625 "Owner %llu: split at cpos %u lost record\n",
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005626 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehd0c7d702007-07-03 13:27:22 -07005627 cpos);
5628 ret = -EROFS;
5629 goto out;
5630 }
5631
5632 /*
5633 * Double check our values here. If anything is fishy,
5634 * it's easier to catch it at the top level.
5635 */
5636 rec = &el->l_recs[index];
5637 rec_range = le32_to_cpu(rec->e_cpos) +
5638 ocfs2_rec_clusters(el, rec);
5639 if (rec_range != trunc_range) {
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005640 ocfs2_error(ocfs2_metadata_cache_get_super(et->et_ci),
Joe Perches7ecef142015-09-04 15:44:51 -07005641 "Owner %llu: error after split at cpos %u trunc len %u, existing record is (%u,%u)\n",
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005642 (unsigned long long)ocfs2_metadata_cache_owner(et->et_ci),
Mark Fashehd0c7d702007-07-03 13:27:22 -07005643 cpos, len, le32_to_cpu(rec->e_cpos),
5644 ocfs2_rec_clusters(el, rec));
5645 ret = -EROFS;
5646 goto out;
5647 }
5648
Joel Becker043beeb2009-02-13 02:42:30 -08005649 ret = ocfs2_truncate_rec(handle, et, path, index, dealloc,
5650 cpos, len);
wangyan229ba1f2018-08-17 15:44:27 -07005651 if (ret)
Mark Fashehd0c7d702007-07-03 13:27:22 -07005652 mlog_errno(ret);
Mark Fashehd0c7d702007-07-03 13:27:22 -07005653 }
5654
5655out:
5656 ocfs2_free_path(path);
5657 return ret;
5658}
5659
Tristan Ye78f94672010-05-11 17:54:42 +08005660/*
5661 * ocfs2_reserve_blocks_for_rec_trunc() would look basically the
5662 * same as ocfs2_lock_alloctors(), except for it accepts a blocks
5663 * number to reserve some extra blocks, and it only handles meta
5664 * data allocations.
5665 *
5666 * Currently, only ocfs2_remove_btree_range() uses it for truncating
5667 * and punching holes.
5668 */
5669static int ocfs2_reserve_blocks_for_rec_trunc(struct inode *inode,
5670 struct ocfs2_extent_tree *et,
5671 u32 extents_to_split,
5672 struct ocfs2_alloc_context **ac,
5673 int extra_blocks)
5674{
5675 int ret = 0, num_free_extents;
5676 unsigned int max_recs_needed = 2 * extents_to_split;
5677 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5678
5679 *ac = NULL;
5680
Jun Piao964f14a2017-09-06 16:19:11 -07005681 num_free_extents = ocfs2_num_free_extents(et);
Tristan Ye78f94672010-05-11 17:54:42 +08005682 if (num_free_extents < 0) {
5683 ret = num_free_extents;
5684 mlog_errno(ret);
5685 goto out;
5686 }
5687
5688 if (!num_free_extents ||
5689 (ocfs2_sparse_alloc(osb) && num_free_extents < max_recs_needed))
5690 extra_blocks += ocfs2_extend_meta_needed(et->et_root_el);
5691
5692 if (extra_blocks) {
5693 ret = ocfs2_reserve_new_metadata_blocks(osb, extra_blocks, ac);
5694 if (ret < 0) {
5695 if (ret != -ENOSPC)
5696 mlog_errno(ret);
Tristan Ye78f94672010-05-11 17:54:42 +08005697 }
5698 }
5699
5700out:
5701 if (ret) {
5702 if (*ac) {
5703 ocfs2_free_alloc_context(*ac);
5704 *ac = NULL;
5705 }
5706 }
5707
5708 return ret;
5709}
5710
Mark Fashehfecc0112008-11-12 15:16:38 -08005711int ocfs2_remove_btree_range(struct inode *inode,
5712 struct ocfs2_extent_tree *et,
Tristan Ye78f94672010-05-11 17:54:42 +08005713 u32 cpos, u32 phys_cpos, u32 len, int flags,
5714 struct ocfs2_cached_dealloc_ctxt *dealloc,
Junxiao Bif62f12b2014-12-18 16:17:32 -08005715 u64 refcount_loc, bool refcount_tree_locked)
Mark Fashehfecc0112008-11-12 15:16:38 -08005716{
Tristan Ye78f94672010-05-11 17:54:42 +08005717 int ret, credits = 0, extra_blocks = 0;
Mark Fashehfecc0112008-11-12 15:16:38 -08005718 u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
5719 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5720 struct inode *tl_inode = osb->osb_tl_inode;
5721 handle_t *handle;
5722 struct ocfs2_alloc_context *meta_ac = NULL;
Tristan Ye78f94672010-05-11 17:54:42 +08005723 struct ocfs2_refcount_tree *ref_tree = NULL;
Mark Fashehfecc0112008-11-12 15:16:38 -08005724
Tristan Ye78f94672010-05-11 17:54:42 +08005725 if ((flags & OCFS2_EXT_REFCOUNTED) && len) {
Darrick J. Wong84e40082016-11-09 14:13:09 -08005726 BUG_ON(!ocfs2_is_refcount_inode(inode));
Tristan Ye78f94672010-05-11 17:54:42 +08005727
Junxiao Bif62f12b2014-12-18 16:17:32 -08005728 if (!refcount_tree_locked) {
5729 ret = ocfs2_lock_refcount_tree(osb, refcount_loc, 1,
5730 &ref_tree, NULL);
5731 if (ret) {
5732 mlog_errno(ret);
5733 goto bail;
5734 }
Tristan Ye78f94672010-05-11 17:54:42 +08005735 }
5736
5737 ret = ocfs2_prepare_refcount_change_for_del(inode,
5738 refcount_loc,
5739 phys_blkno,
5740 len,
5741 &credits,
5742 &extra_blocks);
5743 if (ret < 0) {
5744 mlog_errno(ret);
Joseph Qi33add0e2013-07-03 15:00:52 -07005745 goto bail;
Tristan Ye78f94672010-05-11 17:54:42 +08005746 }
5747 }
5748
5749 ret = ocfs2_reserve_blocks_for_rec_trunc(inode, et, 1, &meta_ac,
5750 extra_blocks);
Mark Fashehfecc0112008-11-12 15:16:38 -08005751 if (ret) {
5752 mlog_errno(ret);
Joseph Qi33add0e2013-07-03 15:00:52 -07005753 goto bail;
Mark Fashehfecc0112008-11-12 15:16:38 -08005754 }
5755
Al Viro59551022016-01-22 15:40:57 -05005756 inode_lock(tl_inode);
Mark Fashehfecc0112008-11-12 15:16:38 -08005757
5758 if (ocfs2_truncate_log_needs_flush(osb)) {
5759 ret = __ocfs2_flush_truncate_log(osb);
5760 if (ret < 0) {
5761 mlog_errno(ret);
5762 goto out;
5763 }
5764 }
5765
Tristan Ye78f94672010-05-11 17:54:42 +08005766 handle = ocfs2_start_trans(osb,
5767 ocfs2_remove_extent_credits(osb->sb) + credits);
Mark Fashehfecc0112008-11-12 15:16:38 -08005768 if (IS_ERR(handle)) {
5769 ret = PTR_ERR(handle);
5770 mlog_errno(ret);
5771 goto out;
5772 }
5773
Joel Beckerd9a0a1f2009-02-12 17:32:34 -08005774 ret = ocfs2_et_root_journal_access(handle, et,
Joel Becker13723d02008-10-17 19:25:01 -07005775 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehfecc0112008-11-12 15:16:38 -08005776 if (ret) {
5777 mlog_errno(ret);
Wengang Wangb8a0ae52011-10-12 15:22:15 +08005778 goto out_commit;
Mark Fashehfecc0112008-11-12 15:16:38 -08005779 }
5780
Christoph Hellwig5dd40562010-03-03 09:05:00 -05005781 dquot_free_space_nodirty(inode,
Mark Fashehfd4ef232009-01-29 15:06:21 -08005782 ocfs2_clusters_to_bytes(inode->i_sb, len));
5783
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08005784 ret = ocfs2_remove_extent(handle, et, cpos, len, meta_ac, dealloc);
Mark Fashehfecc0112008-11-12 15:16:38 -08005785 if (ret) {
5786 mlog_errno(ret);
5787 goto out_commit;
5788 }
5789
Joel Becker6136ca52009-02-12 19:32:43 -08005790 ocfs2_et_update_clusters(et, -len);
Darrick J. Wong6fdb7022014-04-03 14:47:08 -07005791 ocfs2_update_inode_fsync_trans(handle, inode, 1);
Mark Fashehfecc0112008-11-12 15:16:38 -08005792
Joel Beckerec20cec2010-03-19 14:13:52 -07005793 ocfs2_journal_dirty(handle, et->et_root_bh);
Mark Fashehfecc0112008-11-12 15:16:38 -08005794
Tristan Ye78f94672010-05-11 17:54:42 +08005795 if (phys_blkno) {
5796 if (flags & OCFS2_EXT_REFCOUNTED)
5797 ret = ocfs2_decrease_refcount(inode, handle,
5798 ocfs2_blocks_to_clusters(osb->sb,
5799 phys_blkno),
5800 len, meta_ac,
5801 dealloc, 1);
5802 else
5803 ret = ocfs2_truncate_log_append(osb, handle,
5804 phys_blkno, len);
5805 if (ret)
5806 mlog_errno(ret);
5807
5808 }
Mark Fashehfecc0112008-11-12 15:16:38 -08005809
5810out_commit:
5811 ocfs2_commit_trans(osb, handle);
5812out:
Al Viro59551022016-01-22 15:40:57 -05005813 inode_unlock(tl_inode);
Joseph Qi33add0e2013-07-03 15:00:52 -07005814bail:
Mark Fashehfecc0112008-11-12 15:16:38 -08005815 if (meta_ac)
5816 ocfs2_free_alloc_context(meta_ac);
5817
Tristan Ye78f94672010-05-11 17:54:42 +08005818 if (ref_tree)
5819 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
5820
Mark Fashehfecc0112008-11-12 15:16:38 -08005821 return ret;
5822}
5823
Mark Fasheh063c4562007-07-03 13:34:11 -07005824int ocfs2_truncate_log_needs_flush(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -08005825{
5826 struct buffer_head *tl_bh = osb->osb_tl_bh;
5827 struct ocfs2_dinode *di;
5828 struct ocfs2_truncate_log *tl;
5829
5830 di = (struct ocfs2_dinode *) tl_bh->b_data;
5831 tl = &di->id2.i_dealloc;
5832
5833 mlog_bug_on_msg(le16_to_cpu(tl->tl_used) > le16_to_cpu(tl->tl_count),
5834 "slot %d, invalid truncate log parameters: used = "
5835 "%u, count = %u\n", osb->slot_num,
5836 le16_to_cpu(tl->tl_used), le16_to_cpu(tl->tl_count));
5837 return le16_to_cpu(tl->tl_used) == le16_to_cpu(tl->tl_count);
5838}
5839
5840static int ocfs2_truncate_log_can_coalesce(struct ocfs2_truncate_log *tl,
5841 unsigned int new_start)
5842{
5843 unsigned int tail_index;
5844 unsigned int current_tail;
5845
5846 /* No records, nothing to coalesce */
5847 if (!le16_to_cpu(tl->tl_used))
5848 return 0;
5849
5850 tail_index = le16_to_cpu(tl->tl_used) - 1;
5851 current_tail = le32_to_cpu(tl->tl_recs[tail_index].t_start);
5852 current_tail += le32_to_cpu(tl->tl_recs[tail_index].t_clusters);
5853
5854 return current_tail == new_start;
5855}
5856
Mark Fasheh063c4562007-07-03 13:34:11 -07005857int ocfs2_truncate_log_append(struct ocfs2_super *osb,
5858 handle_t *handle,
5859 u64 start_blk,
5860 unsigned int num_clusters)
Mark Fashehccd979b2005-12-15 14:31:24 -08005861{
5862 int status, index;
5863 unsigned int start_cluster, tl_count;
5864 struct inode *tl_inode = osb->osb_tl_inode;
5865 struct buffer_head *tl_bh = osb->osb_tl_bh;
5866 struct ocfs2_dinode *di;
5867 struct ocfs2_truncate_log *tl;
5868
Al Viro59551022016-01-22 15:40:57 -05005869 BUG_ON(inode_trylock(tl_inode));
Mark Fashehccd979b2005-12-15 14:31:24 -08005870
5871 start_cluster = ocfs2_blocks_to_clusters(osb->sb, start_blk);
5872
5873 di = (struct ocfs2_dinode *) tl_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08005874
Joel Becker10995aa2008-11-13 14:49:12 -08005875 /* tl_bh is loaded from ocfs2_truncate_log_init(). It's validated
5876 * by the underlying call to ocfs2_read_inode_block(), so any
5877 * corruption is a code bug */
5878 BUG_ON(!OCFS2_IS_VALID_DINODE(di));
5879
5880 tl = &di->id2.i_dealloc;
Mark Fashehccd979b2005-12-15 14:31:24 -08005881 tl_count = le16_to_cpu(tl->tl_count);
5882 mlog_bug_on_msg(tl_count > ocfs2_truncate_recs_per_inode(osb->sb) ||
5883 tl_count == 0,
Mark Fashehb06970532006-03-03 10:24:33 -08005884 "Truncate record count on #%llu invalid "
5885 "wanted %u, actual %u\n",
5886 (unsigned long long)OCFS2_I(tl_inode)->ip_blkno,
Mark Fashehccd979b2005-12-15 14:31:24 -08005887 ocfs2_truncate_recs_per_inode(osb->sb),
5888 le16_to_cpu(tl->tl_count));
5889
5890 /* Caller should have known to flush before calling us. */
5891 index = le16_to_cpu(tl->tl_used);
5892 if (index >= tl_count) {
5893 status = -ENOSPC;
5894 mlog_errno(status);
5895 goto bail;
5896 }
5897
Joel Becker0cf2f762009-02-12 16:41:25 -08005898 status = ocfs2_journal_access_di(handle, INODE_CACHE(tl_inode), tl_bh,
Joel Becker13723d02008-10-17 19:25:01 -07005899 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08005900 if (status < 0) {
5901 mlog_errno(status);
5902 goto bail;
5903 }
5904
Tao Maa09d09b2011-02-22 08:21:10 +08005905 trace_ocfs2_truncate_log_append(
5906 (unsigned long long)OCFS2_I(tl_inode)->ip_blkno, index,
5907 start_cluster, num_clusters);
Mark Fashehccd979b2005-12-15 14:31:24 -08005908 if (ocfs2_truncate_log_can_coalesce(tl, start_cluster)) {
5909 /*
5910 * Move index back to the record we are coalescing with.
5911 * ocfs2_truncate_log_can_coalesce() guarantees nonzero
5912 */
5913 index--;
5914
5915 num_clusters += le32_to_cpu(tl->tl_recs[index].t_clusters);
Tao Maa09d09b2011-02-22 08:21:10 +08005916 trace_ocfs2_truncate_log_append(
5917 (unsigned long long)OCFS2_I(tl_inode)->ip_blkno,
5918 index, le32_to_cpu(tl->tl_recs[index].t_start),
5919 num_clusters);
Mark Fashehccd979b2005-12-15 14:31:24 -08005920 } else {
5921 tl->tl_recs[index].t_start = cpu_to_le32(start_cluster);
5922 tl->tl_used = cpu_to_le16(index + 1);
5923 }
5924 tl->tl_recs[index].t_clusters = cpu_to_le32(num_clusters);
5925
Joel Beckerec20cec2010-03-19 14:13:52 -07005926 ocfs2_journal_dirty(handle, tl_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08005927
Tao Ma50308d82010-11-04 15:14:11 +08005928 osb->truncated_clusters += num_clusters;
Mark Fashehccd979b2005-12-15 14:31:24 -08005929bail:
Mark Fashehccd979b2005-12-15 14:31:24 -08005930 return status;
5931}
5932
5933static int ocfs2_replay_truncate_records(struct ocfs2_super *osb,
Mark Fashehccd979b2005-12-15 14:31:24 -08005934 struct inode *data_alloc_inode,
5935 struct buffer_head *data_alloc_bh)
5936{
5937 int status = 0;
5938 int i;
5939 unsigned int num_clusters;
5940 u64 start_blk;
5941 struct ocfs2_truncate_rec rec;
5942 struct ocfs2_dinode *di;
5943 struct ocfs2_truncate_log *tl;
5944 struct inode *tl_inode = osb->osb_tl_inode;
5945 struct buffer_head *tl_bh = osb->osb_tl_bh;
Junxiao Bi2b0ad002016-09-19 14:44:21 -07005946 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08005947
Mark Fashehccd979b2005-12-15 14:31:24 -08005948 di = (struct ocfs2_dinode *) tl_bh->b_data;
5949 tl = &di->id2.i_dealloc;
5950 i = le16_to_cpu(tl->tl_used) - 1;
5951 while (i >= 0) {
Junxiao Bi2b0ad002016-09-19 14:44:21 -07005952 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_FLUSH_ONE_REC);
5953 if (IS_ERR(handle)) {
5954 status = PTR_ERR(handle);
5955 mlog_errno(status);
5956 goto bail;
5957 }
5958
Mark Fashehccd979b2005-12-15 14:31:24 -08005959 /* Caller has given us at least enough credits to
5960 * update the truncate log dinode */
Joel Becker0cf2f762009-02-12 16:41:25 -08005961 status = ocfs2_journal_access_di(handle, INODE_CACHE(tl_inode), tl_bh,
Joel Becker13723d02008-10-17 19:25:01 -07005962 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08005963 if (status < 0) {
5964 mlog_errno(status);
5965 goto bail;
5966 }
5967
5968 tl->tl_used = cpu_to_le16(i);
5969
Joel Beckerec20cec2010-03-19 14:13:52 -07005970 ocfs2_journal_dirty(handle, tl_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08005971
Mark Fashehccd979b2005-12-15 14:31:24 -08005972 rec = tl->tl_recs[i];
5973 start_blk = ocfs2_clusters_to_blocks(data_alloc_inode->i_sb,
5974 le32_to_cpu(rec.t_start));
5975 num_clusters = le32_to_cpu(rec.t_clusters);
5976
5977 /* if start_blk is not set, we ignore the record as
5978 * invalid. */
5979 if (start_blk) {
Tao Maa09d09b2011-02-22 08:21:10 +08005980 trace_ocfs2_replay_truncate_records(
5981 (unsigned long long)OCFS2_I(tl_inode)->ip_blkno,
5982 i, le32_to_cpu(rec.t_start), num_clusters);
Mark Fashehccd979b2005-12-15 14:31:24 -08005983
5984 status = ocfs2_free_clusters(handle, data_alloc_inode,
5985 data_alloc_bh, start_blk,
5986 num_clusters);
5987 if (status < 0) {
5988 mlog_errno(status);
5989 goto bail;
5990 }
5991 }
Xue jiufei102c2592016-03-25 14:21:44 -07005992
Junxiao Bi2b0ad002016-09-19 14:44:21 -07005993 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08005994 i--;
5995 }
5996
Tao Ma50308d82010-11-04 15:14:11 +08005997 osb->truncated_clusters = 0;
5998
Mark Fashehccd979b2005-12-15 14:31:24 -08005999bail:
Mark Fashehccd979b2005-12-15 14:31:24 -08006000 return status;
6001}
6002
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08006003/* Expects you to already be holding tl_inode->i_mutex */
Mark Fasheh063c4562007-07-03 13:34:11 -07006004int __ocfs2_flush_truncate_log(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -08006005{
6006 int status;
6007 unsigned int num_to_flush;
Mark Fashehccd979b2005-12-15 14:31:24 -08006008 struct inode *tl_inode = osb->osb_tl_inode;
6009 struct inode *data_alloc_inode = NULL;
6010 struct buffer_head *tl_bh = osb->osb_tl_bh;
6011 struct buffer_head *data_alloc_bh = NULL;
6012 struct ocfs2_dinode *di;
6013 struct ocfs2_truncate_log *tl;
6014
Al Viro59551022016-01-22 15:40:57 -05006015 BUG_ON(inode_trylock(tl_inode));
Mark Fashehccd979b2005-12-15 14:31:24 -08006016
6017 di = (struct ocfs2_dinode *) tl_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08006018
Joel Becker10995aa2008-11-13 14:49:12 -08006019 /* tl_bh is loaded from ocfs2_truncate_log_init(). It's validated
6020 * by the underlying call to ocfs2_read_inode_block(), so any
6021 * corruption is a code bug */
6022 BUG_ON(!OCFS2_IS_VALID_DINODE(di));
6023
6024 tl = &di->id2.i_dealloc;
Mark Fashehccd979b2005-12-15 14:31:24 -08006025 num_to_flush = le16_to_cpu(tl->tl_used);
Tao Maa09d09b2011-02-22 08:21:10 +08006026 trace_ocfs2_flush_truncate_log(
6027 (unsigned long long)OCFS2_I(tl_inode)->ip_blkno,
6028 num_to_flush);
Mark Fashehccd979b2005-12-15 14:31:24 -08006029 if (!num_to_flush) {
6030 status = 0;
Mark Fashehe08dc8b2006-10-05 15:58:48 -07006031 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08006032 }
6033
6034 data_alloc_inode = ocfs2_get_system_file_inode(osb,
6035 GLOBAL_BITMAP_SYSTEM_INODE,
6036 OCFS2_INVALID_SLOT);
6037 if (!data_alloc_inode) {
6038 status = -EINVAL;
6039 mlog(ML_ERROR, "Could not get bitmap inode!\n");
Mark Fashehe08dc8b2006-10-05 15:58:48 -07006040 goto out;
Mark Fashehccd979b2005-12-15 14:31:24 -08006041 }
6042
Al Viro59551022016-01-22 15:40:57 -05006043 inode_lock(data_alloc_inode);
Mark Fashehe08dc8b2006-10-05 15:58:48 -07006044
Mark Fashehe63aecb62007-10-18 15:30:42 -07006045 status = ocfs2_inode_lock(data_alloc_inode, &data_alloc_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08006046 if (status < 0) {
6047 mlog_errno(status);
Mark Fashehe08dc8b2006-10-05 15:58:48 -07006048 goto out_mutex;
Mark Fashehccd979b2005-12-15 14:31:24 -08006049 }
6050
Junxiao Bi2b0ad002016-09-19 14:44:21 -07006051 status = ocfs2_replay_truncate_records(osb, data_alloc_inode,
Mark Fashehccd979b2005-12-15 14:31:24 -08006052 data_alloc_bh);
Mark Fashehe08dc8b2006-10-05 15:58:48 -07006053 if (status < 0)
Mark Fashehccd979b2005-12-15 14:31:24 -08006054 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08006055
Mark Fashehe08dc8b2006-10-05 15:58:48 -07006056 brelse(data_alloc_bh);
Mark Fashehe63aecb62007-10-18 15:30:42 -07006057 ocfs2_inode_unlock(data_alloc_inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08006058
Mark Fashehe08dc8b2006-10-05 15:58:48 -07006059out_mutex:
Al Viro59551022016-01-22 15:40:57 -05006060 inode_unlock(data_alloc_inode);
Mark Fashehe08dc8b2006-10-05 15:58:48 -07006061 iput(data_alloc_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08006062
Mark Fashehe08dc8b2006-10-05 15:58:48 -07006063out:
Mark Fashehccd979b2005-12-15 14:31:24 -08006064 return status;
6065}
6066
6067int ocfs2_flush_truncate_log(struct ocfs2_super *osb)
6068{
6069 int status;
6070 struct inode *tl_inode = osb->osb_tl_inode;
6071
Al Viro59551022016-01-22 15:40:57 -05006072 inode_lock(tl_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08006073 status = __ocfs2_flush_truncate_log(osb);
Al Viro59551022016-01-22 15:40:57 -05006074 inode_unlock(tl_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08006075
6076 return status;
6077}
6078
David Howellsc4028952006-11-22 14:57:56 +00006079static void ocfs2_truncate_log_worker(struct work_struct *work)
Mark Fashehccd979b2005-12-15 14:31:24 -08006080{
6081 int status;
David Howellsc4028952006-11-22 14:57:56 +00006082 struct ocfs2_super *osb =
6083 container_of(work, struct ocfs2_super,
6084 osb_truncate_log_wq.work);
Mark Fashehccd979b2005-12-15 14:31:24 -08006085
Mark Fashehccd979b2005-12-15 14:31:24 -08006086 status = ocfs2_flush_truncate_log(osb);
6087 if (status < 0)
6088 mlog_errno(status);
Tao Ma4d0ddb22008-03-05 16:11:46 +08006089 else
Tiger Yangb89c5422010-01-25 14:11:06 +08006090 ocfs2_init_steal_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08006091}
6092
6093#define OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL (2 * HZ)
6094void ocfs2_schedule_truncate_log_flush(struct ocfs2_super *osb,
6095 int cancel)
6096{
Xue jiufeia9e9aca2014-06-04 16:06:13 -07006097 if (osb->osb_tl_inode &&
6098 atomic_read(&osb->osb_tl_disable) == 0) {
Mark Fashehccd979b2005-12-15 14:31:24 -08006099 /* We want to push off log flushes while truncates are
6100 * still running. */
6101 if (cancel)
6102 cancel_delayed_work(&osb->osb_truncate_log_wq);
6103
jiangyiwen35ddf782016-03-25 14:21:32 -07006104 queue_delayed_work(osb->ocfs2_wq, &osb->osb_truncate_log_wq,
Mark Fashehccd979b2005-12-15 14:31:24 -08006105 OCFS2_TRUNCATE_LOG_FLUSH_INTERVAL);
6106 }
6107}
6108
Eric Ren2070ad12016-08-02 14:02:10 -07006109/*
6110 * Try to flush truncate logs if we can free enough clusters from it.
6111 * As for return value, "< 0" means error, "0" no space and "1" means
6112 * we have freed enough spaces and let the caller try to allocate again.
6113 */
6114int ocfs2_try_to_free_truncate_log(struct ocfs2_super *osb,
6115 unsigned int needed)
6116{
6117 tid_t target;
6118 int ret = 0;
6119 unsigned int truncated_clusters;
6120
6121 inode_lock(osb->osb_tl_inode);
6122 truncated_clusters = osb->truncated_clusters;
6123 inode_unlock(osb->osb_tl_inode);
6124
6125 /*
6126 * Check whether we can succeed in allocating if we free
6127 * the truncate log.
6128 */
6129 if (truncated_clusters < needed)
6130 goto out;
6131
6132 ret = ocfs2_flush_truncate_log(osb);
6133 if (ret) {
6134 mlog_errno(ret);
6135 goto out;
6136 }
6137
6138 if (jbd2_journal_start_commit(osb->journal->j_journal, &target)) {
6139 jbd2_log_wait_commit(osb->journal->j_journal, target);
6140 ret = 1;
6141 }
6142out:
6143 return ret;
6144}
6145
Mark Fashehccd979b2005-12-15 14:31:24 -08006146static int ocfs2_get_truncate_log_info(struct ocfs2_super *osb,
6147 int slot_num,
6148 struct inode **tl_inode,
6149 struct buffer_head **tl_bh)
6150{
6151 int status;
6152 struct inode *inode = NULL;
6153 struct buffer_head *bh = NULL;
6154
6155 inode = ocfs2_get_system_file_inode(osb,
6156 TRUNCATE_LOG_SYSTEM_INODE,
6157 slot_num);
6158 if (!inode) {
6159 status = -EINVAL;
6160 mlog(ML_ERROR, "Could not get load truncate log inode!\n");
6161 goto bail;
6162 }
6163
Joel Beckerb657c952008-11-13 14:49:11 -08006164 status = ocfs2_read_inode_block(inode, &bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08006165 if (status < 0) {
6166 iput(inode);
6167 mlog_errno(status);
6168 goto bail;
6169 }
6170
6171 *tl_inode = inode;
6172 *tl_bh = bh;
6173bail:
Mark Fashehccd979b2005-12-15 14:31:24 -08006174 return status;
6175}
6176
6177/* called during the 1st stage of node recovery. we stamp a clean
6178 * truncate log and pass back a copy for processing later. if the
6179 * truncate log does not require processing, a *tl_copy is set to
6180 * NULL. */
6181int ocfs2_begin_truncate_log_recovery(struct ocfs2_super *osb,
6182 int slot_num,
6183 struct ocfs2_dinode **tl_copy)
6184{
6185 int status;
6186 struct inode *tl_inode = NULL;
6187 struct buffer_head *tl_bh = NULL;
6188 struct ocfs2_dinode *di;
6189 struct ocfs2_truncate_log *tl;
6190
6191 *tl_copy = NULL;
6192
Tao Maa09d09b2011-02-22 08:21:10 +08006193 trace_ocfs2_begin_truncate_log_recovery(slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08006194
6195 status = ocfs2_get_truncate_log_info(osb, slot_num, &tl_inode, &tl_bh);
6196 if (status < 0) {
6197 mlog_errno(status);
6198 goto bail;
6199 }
6200
6201 di = (struct ocfs2_dinode *) tl_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08006202
Joel Becker10995aa2008-11-13 14:49:12 -08006203 /* tl_bh is loaded from ocfs2_get_truncate_log_info(). It's
6204 * validated by the underlying call to ocfs2_read_inode_block(),
6205 * so any corruption is a code bug */
6206 BUG_ON(!OCFS2_IS_VALID_DINODE(di));
6207
6208 tl = &di->id2.i_dealloc;
Mark Fashehccd979b2005-12-15 14:31:24 -08006209 if (le16_to_cpu(tl->tl_used)) {
Tao Maa09d09b2011-02-22 08:21:10 +08006210 trace_ocfs2_truncate_log_recovery_num(le16_to_cpu(tl->tl_used));
Mark Fashehccd979b2005-12-15 14:31:24 -08006211
6212 *tl_copy = kmalloc(tl_bh->b_size, GFP_KERNEL);
6213 if (!(*tl_copy)) {
6214 status = -ENOMEM;
6215 mlog_errno(status);
6216 goto bail;
6217 }
6218
6219 /* Assuming the write-out below goes well, this copy
6220 * will be passed back to recovery for processing. */
6221 memcpy(*tl_copy, tl_bh->b_data, tl_bh->b_size);
6222
6223 /* All we need to do to clear the truncate log is set
6224 * tl_used. */
6225 tl->tl_used = 0;
6226
Joel Becker13723d02008-10-17 19:25:01 -07006227 ocfs2_compute_meta_ecc(osb->sb, tl_bh->b_data, &di->i_check);
Joel Becker8cb471e2009-02-10 20:00:41 -08006228 status = ocfs2_write_block(osb, tl_bh, INODE_CACHE(tl_inode));
Mark Fashehccd979b2005-12-15 14:31:24 -08006229 if (status < 0) {
6230 mlog_errno(status);
6231 goto bail;
6232 }
6233 }
6234
6235bail:
Joseph Qi72865d92016-01-14 15:17:27 -08006236 iput(tl_inode);
Mark Fasheha81cb882008-10-07 14:25:16 -07006237 brelse(tl_bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08006238
Joseph Qi46359292015-09-04 15:44:54 -07006239 if (status < 0) {
Mark Fashehccd979b2005-12-15 14:31:24 -08006240 kfree(*tl_copy);
6241 *tl_copy = NULL;
Tao Mac1e8d352011-03-07 16:43:21 +08006242 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08006243 }
6244
Mark Fashehccd979b2005-12-15 14:31:24 -08006245 return status;
6246}
6247
6248int ocfs2_complete_truncate_log_recovery(struct ocfs2_super *osb,
6249 struct ocfs2_dinode *tl_copy)
6250{
6251 int status = 0;
6252 int i;
6253 unsigned int clusters, num_recs, start_cluster;
6254 u64 start_blk;
Mark Fasheh1fabe142006-10-09 18:11:45 -07006255 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -08006256 struct inode *tl_inode = osb->osb_tl_inode;
6257 struct ocfs2_truncate_log *tl;
6258
Mark Fashehccd979b2005-12-15 14:31:24 -08006259 if (OCFS2_I(tl_inode)->ip_blkno == le64_to_cpu(tl_copy->i_blkno)) {
6260 mlog(ML_ERROR, "Asked to recover my own truncate log!\n");
6261 return -EINVAL;
6262 }
6263
6264 tl = &tl_copy->id2.i_dealloc;
6265 num_recs = le16_to_cpu(tl->tl_used);
Tao Maa09d09b2011-02-22 08:21:10 +08006266 trace_ocfs2_complete_truncate_log_recovery(
6267 (unsigned long long)le64_to_cpu(tl_copy->i_blkno),
6268 num_recs);
Mark Fashehccd979b2005-12-15 14:31:24 -08006269
Al Viro59551022016-01-22 15:40:57 -05006270 inode_lock(tl_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08006271 for(i = 0; i < num_recs; i++) {
6272 if (ocfs2_truncate_log_needs_flush(osb)) {
6273 status = __ocfs2_flush_truncate_log(osb);
6274 if (status < 0) {
6275 mlog_errno(status);
6276 goto bail_up;
6277 }
6278 }
6279
Mark Fasheh65eff9c2006-10-09 17:26:22 -07006280 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08006281 if (IS_ERR(handle)) {
6282 status = PTR_ERR(handle);
6283 mlog_errno(status);
6284 goto bail_up;
6285 }
6286
6287 clusters = le32_to_cpu(tl->tl_recs[i].t_clusters);
6288 start_cluster = le32_to_cpu(tl->tl_recs[i].t_start);
6289 start_blk = ocfs2_clusters_to_blocks(osb->sb, start_cluster);
6290
6291 status = ocfs2_truncate_log_append(osb, handle,
6292 start_blk, clusters);
Mark Fasheh02dc1af2006-10-09 16:48:10 -07006293 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -08006294 if (status < 0) {
6295 mlog_errno(status);
6296 goto bail_up;
6297 }
6298 }
6299
6300bail_up:
Al Viro59551022016-01-22 15:40:57 -05006301 inode_unlock(tl_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08006302
Mark Fashehccd979b2005-12-15 14:31:24 -08006303 return status;
6304}
6305
6306void ocfs2_truncate_log_shutdown(struct ocfs2_super *osb)
6307{
6308 int status;
6309 struct inode *tl_inode = osb->osb_tl_inode;
6310
Xue jiufeia9e9aca2014-06-04 16:06:13 -07006311 atomic_set(&osb->osb_tl_disable, 1);
6312
Mark Fashehccd979b2005-12-15 14:31:24 -08006313 if (tl_inode) {
6314 cancel_delayed_work(&osb->osb_truncate_log_wq);
jiangyiwen35ddf782016-03-25 14:21:32 -07006315 flush_workqueue(osb->ocfs2_wq);
Mark Fashehccd979b2005-12-15 14:31:24 -08006316
6317 status = ocfs2_flush_truncate_log(osb);
6318 if (status < 0)
6319 mlog_errno(status);
6320
6321 brelse(osb->osb_tl_bh);
6322 iput(osb->osb_tl_inode);
6323 }
Mark Fashehccd979b2005-12-15 14:31:24 -08006324}
6325
6326int ocfs2_truncate_log_init(struct ocfs2_super *osb)
6327{
6328 int status;
6329 struct inode *tl_inode = NULL;
6330 struct buffer_head *tl_bh = NULL;
6331
Mark Fashehccd979b2005-12-15 14:31:24 -08006332 status = ocfs2_get_truncate_log_info(osb,
6333 osb->slot_num,
6334 &tl_inode,
6335 &tl_bh);
6336 if (status < 0)
6337 mlog_errno(status);
6338
6339 /* ocfs2_truncate_log_shutdown keys on the existence of
6340 * osb->osb_tl_inode so we don't set any of the osb variables
6341 * until we're sure all is well. */
David Howellsc4028952006-11-22 14:57:56 +00006342 INIT_DELAYED_WORK(&osb->osb_truncate_log_wq,
6343 ocfs2_truncate_log_worker);
Xue jiufeia9e9aca2014-06-04 16:06:13 -07006344 atomic_set(&osb->osb_tl_disable, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08006345 osb->osb_tl_bh = tl_bh;
6346 osb->osb_tl_inode = tl_inode;
6347
Mark Fashehccd979b2005-12-15 14:31:24 -08006348 return status;
6349}
6350
Mark Fasheh2b604352007-06-22 15:45:27 -07006351/*
6352 * Delayed de-allocation of suballocator blocks.
6353 *
6354 * Some sets of block de-allocations might involve multiple suballocator inodes.
6355 *
6356 * The locking for this can get extremely complicated, especially when
6357 * the suballocator inodes to delete from aren't known until deep
6358 * within an unrelated codepath.
6359 *
6360 * ocfs2_extent_block structures are a good example of this - an inode
6361 * btree could have been grown by any number of nodes each allocating
6362 * out of their own suballoc inode.
6363 *
6364 * These structures allow the delay of block de-allocation until a
6365 * later time, when locking of multiple cluster inodes won't cause
6366 * deadlock.
6367 */
6368
6369/*
Tao Ma2891d292008-11-12 08:26:58 +08006370 * Describe a single bit freed from a suballocator. For the block
6371 * suballocators, it represents one block. For the global cluster
6372 * allocator, it represents some clusters and free_bit indicates
6373 * clusters number.
Mark Fasheh2b604352007-06-22 15:45:27 -07006374 */
6375struct ocfs2_cached_block_free {
6376 struct ocfs2_cached_block_free *free_next;
Tao Ma74380c42010-03-22 14:20:18 +08006377 u64 free_bg;
Mark Fasheh2b604352007-06-22 15:45:27 -07006378 u64 free_blk;
6379 unsigned int free_bit;
6380};
6381
6382struct ocfs2_per_slot_free_list {
6383 struct ocfs2_per_slot_free_list *f_next_suballocator;
6384 int f_inode_type;
6385 int f_slot;
6386 struct ocfs2_cached_block_free *f_first;
6387};
6388
Tao Ma2891d292008-11-12 08:26:58 +08006389static int ocfs2_free_cached_blocks(struct ocfs2_super *osb,
6390 int sysfile_type,
6391 int slot,
6392 struct ocfs2_cached_block_free *head)
Mark Fasheh2b604352007-06-22 15:45:27 -07006393{
6394 int ret;
6395 u64 bg_blkno;
6396 handle_t *handle;
6397 struct inode *inode;
6398 struct buffer_head *di_bh = NULL;
6399 struct ocfs2_cached_block_free *tmp;
6400
6401 inode = ocfs2_get_system_file_inode(osb, sysfile_type, slot);
6402 if (!inode) {
6403 ret = -EINVAL;
6404 mlog_errno(ret);
6405 goto out;
6406 }
6407
Al Viro59551022016-01-22 15:40:57 -05006408 inode_lock(inode);
Mark Fasheh2b604352007-06-22 15:45:27 -07006409
Mark Fashehe63aecb62007-10-18 15:30:42 -07006410 ret = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fasheh2b604352007-06-22 15:45:27 -07006411 if (ret) {
6412 mlog_errno(ret);
6413 goto out_mutex;
6414 }
6415
Mark Fasheh2b604352007-06-22 15:45:27 -07006416 while (head) {
Tao Ma74380c42010-03-22 14:20:18 +08006417 if (head->free_bg)
6418 bg_blkno = head->free_bg;
6419 else
6420 bg_blkno = ocfs2_which_suballoc_group(head->free_blk,
6421 head->free_bit);
Junxiao Bid5bf1412016-09-19 14:44:24 -07006422 handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE);
6423 if (IS_ERR(handle)) {
6424 ret = PTR_ERR(handle);
6425 mlog_errno(ret);
6426 goto out_unlock;
6427 }
6428
Tao Maa09d09b2011-02-22 08:21:10 +08006429 trace_ocfs2_free_cached_blocks(
6430 (unsigned long long)head->free_blk, head->free_bit);
Mark Fasheh2b604352007-06-22 15:45:27 -07006431
6432 ret = ocfs2_free_suballoc_bits(handle, inode, di_bh,
6433 head->free_bit, bg_blkno, 1);
Junxiao Bid5bf1412016-09-19 14:44:24 -07006434 if (ret)
Mark Fasheh2b604352007-06-22 15:45:27 -07006435 mlog_errno(ret);
Mark Fasheh2b604352007-06-22 15:45:27 -07006436
Junxiao Bid5bf1412016-09-19 14:44:24 -07006437 ocfs2_commit_trans(osb, handle);
Mark Fasheh2b604352007-06-22 15:45:27 -07006438
6439 tmp = head;
6440 head = head->free_next;
6441 kfree(tmp);
6442 }
6443
Mark Fasheh2b604352007-06-22 15:45:27 -07006444out_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -07006445 ocfs2_inode_unlock(inode, 1);
Mark Fasheh2b604352007-06-22 15:45:27 -07006446 brelse(di_bh);
6447out_mutex:
Al Viro59551022016-01-22 15:40:57 -05006448 inode_unlock(inode);
Mark Fasheh2b604352007-06-22 15:45:27 -07006449 iput(inode);
6450out:
6451 while(head) {
6452 /* Premature exit may have left some dangling items. */
6453 tmp = head;
6454 head = head->free_next;
6455 kfree(tmp);
6456 }
6457
6458 return ret;
6459}
6460
Tao Ma2891d292008-11-12 08:26:58 +08006461int ocfs2_cache_cluster_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt,
6462 u64 blkno, unsigned int bit)
6463{
6464 int ret = 0;
6465 struct ocfs2_cached_block_free *item;
6466
Tao Ma74380c42010-03-22 14:20:18 +08006467 item = kzalloc(sizeof(*item), GFP_NOFS);
Tao Ma2891d292008-11-12 08:26:58 +08006468 if (item == NULL) {
6469 ret = -ENOMEM;
6470 mlog_errno(ret);
6471 return ret;
6472 }
6473
Tao Maa09d09b2011-02-22 08:21:10 +08006474 trace_ocfs2_cache_cluster_dealloc((unsigned long long)blkno, bit);
Tao Ma2891d292008-11-12 08:26:58 +08006475
6476 item->free_blk = blkno;
6477 item->free_bit = bit;
6478 item->free_next = ctxt->c_global_allocator;
6479
6480 ctxt->c_global_allocator = item;
6481 return ret;
6482}
6483
6484static int ocfs2_free_cached_clusters(struct ocfs2_super *osb,
6485 struct ocfs2_cached_block_free *head)
6486{
6487 struct ocfs2_cached_block_free *tmp;
6488 struct inode *tl_inode = osb->osb_tl_inode;
6489 handle_t *handle;
6490 int ret = 0;
6491
Al Viro59551022016-01-22 15:40:57 -05006492 inode_lock(tl_inode);
Tao Ma2891d292008-11-12 08:26:58 +08006493
6494 while (head) {
6495 if (ocfs2_truncate_log_needs_flush(osb)) {
6496 ret = __ocfs2_flush_truncate_log(osb);
6497 if (ret < 0) {
6498 mlog_errno(ret);
6499 break;
6500 }
6501 }
6502
6503 handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE);
6504 if (IS_ERR(handle)) {
6505 ret = PTR_ERR(handle);
6506 mlog_errno(ret);
6507 break;
6508 }
6509
6510 ret = ocfs2_truncate_log_append(osb, handle, head->free_blk,
6511 head->free_bit);
6512
6513 ocfs2_commit_trans(osb, handle);
6514 tmp = head;
6515 head = head->free_next;
6516 kfree(tmp);
6517
6518 if (ret < 0) {
6519 mlog_errno(ret);
6520 break;
6521 }
6522 }
6523
Al Viro59551022016-01-22 15:40:57 -05006524 inode_unlock(tl_inode);
Tao Ma2891d292008-11-12 08:26:58 +08006525
6526 while (head) {
6527 /* Premature exit may have left some dangling items. */
6528 tmp = head;
6529 head = head->free_next;
6530 kfree(tmp);
6531 }
6532
6533 return ret;
6534}
6535
Mark Fasheh2b604352007-06-22 15:45:27 -07006536int ocfs2_run_deallocs(struct ocfs2_super *osb,
6537 struct ocfs2_cached_dealloc_ctxt *ctxt)
6538{
6539 int ret = 0, ret2;
6540 struct ocfs2_per_slot_free_list *fl;
6541
6542 if (!ctxt)
6543 return 0;
6544
6545 while (ctxt->c_first_suballocator) {
6546 fl = ctxt->c_first_suballocator;
6547
6548 if (fl->f_first) {
Tao Maa09d09b2011-02-22 08:21:10 +08006549 trace_ocfs2_run_deallocs(fl->f_inode_type,
6550 fl->f_slot);
Tao Ma2891d292008-11-12 08:26:58 +08006551 ret2 = ocfs2_free_cached_blocks(osb,
6552 fl->f_inode_type,
6553 fl->f_slot,
6554 fl->f_first);
Mark Fasheh2b604352007-06-22 15:45:27 -07006555 if (ret2)
6556 mlog_errno(ret2);
6557 if (!ret)
6558 ret = ret2;
6559 }
6560
6561 ctxt->c_first_suballocator = fl->f_next_suballocator;
6562 kfree(fl);
6563 }
6564
Tao Ma2891d292008-11-12 08:26:58 +08006565 if (ctxt->c_global_allocator) {
6566 ret2 = ocfs2_free_cached_clusters(osb,
6567 ctxt->c_global_allocator);
6568 if (ret2)
6569 mlog_errno(ret2);
6570 if (!ret)
6571 ret = ret2;
6572
6573 ctxt->c_global_allocator = NULL;
6574 }
6575
Mark Fasheh2b604352007-06-22 15:45:27 -07006576 return ret;
6577}
6578
6579static struct ocfs2_per_slot_free_list *
6580ocfs2_find_per_slot_free_list(int type,
6581 int slot,
6582 struct ocfs2_cached_dealloc_ctxt *ctxt)
6583{
6584 struct ocfs2_per_slot_free_list *fl = ctxt->c_first_suballocator;
6585
6586 while (fl) {
6587 if (fl->f_inode_type == type && fl->f_slot == slot)
6588 return fl;
6589
6590 fl = fl->f_next_suballocator;
6591 }
6592
6593 fl = kmalloc(sizeof(*fl), GFP_NOFS);
6594 if (fl) {
6595 fl->f_inode_type = type;
6596 fl->f_slot = slot;
6597 fl->f_first = NULL;
6598 fl->f_next_suballocator = ctxt->c_first_suballocator;
6599
6600 ctxt->c_first_suballocator = fl;
6601 }
6602 return fl;
6603}
6604
Changwei Ge71a36942018-01-31 16:15:06 -08006605static struct ocfs2_per_slot_free_list *
6606ocfs2_find_preferred_free_list(int type,
6607 int preferred_slot,
6608 int *real_slot,
6609 struct ocfs2_cached_dealloc_ctxt *ctxt)
6610{
6611 struct ocfs2_per_slot_free_list *fl = ctxt->c_first_suballocator;
6612
6613 while (fl) {
6614 if (fl->f_inode_type == type && fl->f_slot == preferred_slot) {
6615 *real_slot = fl->f_slot;
6616 return fl;
6617 }
6618
6619 fl = fl->f_next_suballocator;
6620 }
6621
6622 /* If we can't find any free list matching preferred slot, just use
6623 * the first one.
6624 */
6625 fl = ctxt->c_first_suballocator;
6626 *real_slot = fl->f_slot;
6627
6628 return fl;
6629}
6630
6631/* Return Value 1 indicates empty */
6632static int ocfs2_is_dealloc_empty(struct ocfs2_extent_tree *et)
6633{
6634 struct ocfs2_per_slot_free_list *fl = NULL;
6635
6636 if (!et->et_dealloc)
6637 return 1;
6638
6639 fl = et->et_dealloc->c_first_suballocator;
6640 if (!fl)
6641 return 1;
6642
6643 if (!fl->f_first)
6644 return 1;
6645
6646 return 0;
6647}
6648
6649/* If extent was deleted from tree due to extent rotation and merging, and
6650 * no metadata is reserved ahead of time. Try to reuse some extents
6651 * just deleted. This is only used to reuse extent blocks.
6652 * It is supposed to find enough extent blocks in dealloc if our estimation
6653 * on metadata is accurate.
6654 */
6655static int ocfs2_reuse_blk_from_dealloc(handle_t *handle,
6656 struct ocfs2_extent_tree *et,
6657 struct buffer_head **new_eb_bh,
6658 int blk_wanted, int *blk_given)
6659{
6660 int i, status = 0, real_slot;
6661 struct ocfs2_cached_dealloc_ctxt *dealloc;
6662 struct ocfs2_per_slot_free_list *fl;
6663 struct ocfs2_cached_block_free *bf;
6664 struct ocfs2_extent_block *eb;
6665 struct ocfs2_super *osb =
6666 OCFS2_SB(ocfs2_metadata_cache_get_super(et->et_ci));
6667
6668 *blk_given = 0;
6669
6670 /* If extent tree doesn't have a dealloc, this is not faulty. Just
6671 * tell upper caller dealloc can't provide any block and it should
6672 * ask for alloc to claim more space.
6673 */
6674 dealloc = et->et_dealloc;
6675 if (!dealloc)
6676 goto bail;
6677
6678 for (i = 0; i < blk_wanted; i++) {
6679 /* Prefer to use local slot */
6680 fl = ocfs2_find_preferred_free_list(EXTENT_ALLOC_SYSTEM_INODE,
6681 osb->slot_num, &real_slot,
6682 dealloc);
6683 /* If no more block can be reused, we should claim more
6684 * from alloc. Just return here normally.
6685 */
6686 if (!fl) {
6687 status = 0;
6688 break;
6689 }
6690
6691 bf = fl->f_first;
6692 fl->f_first = bf->free_next;
6693
6694 new_eb_bh[i] = sb_getblk(osb->sb, bf->free_blk);
6695 if (new_eb_bh[i] == NULL) {
6696 status = -ENOMEM;
6697 mlog_errno(status);
6698 goto bail;
6699 }
6700
6701 mlog(0, "Reusing block(%llu) from "
6702 "dealloc(local slot:%d, real slot:%d)\n",
6703 bf->free_blk, osb->slot_num, real_slot);
6704
6705 ocfs2_set_new_buffer_uptodate(et->et_ci, new_eb_bh[i]);
6706
6707 status = ocfs2_journal_access_eb(handle, et->et_ci,
6708 new_eb_bh[i],
6709 OCFS2_JOURNAL_ACCESS_CREATE);
6710 if (status < 0) {
6711 mlog_errno(status);
6712 goto bail;
6713 }
6714
6715 memset(new_eb_bh[i]->b_data, 0, osb->sb->s_blocksize);
6716 eb = (struct ocfs2_extent_block *) new_eb_bh[i]->b_data;
6717
6718 /* We can't guarantee that buffer head is still cached, so
6719 * polutlate the extent block again.
6720 */
6721 strcpy(eb->h_signature, OCFS2_EXTENT_BLOCK_SIGNATURE);
6722 eb->h_blkno = cpu_to_le64(bf->free_blk);
6723 eb->h_fs_generation = cpu_to_le32(osb->fs_generation);
6724 eb->h_suballoc_slot = cpu_to_le16(real_slot);
6725 eb->h_suballoc_loc = cpu_to_le64(bf->free_bg);
6726 eb->h_suballoc_bit = cpu_to_le16(bf->free_bit);
6727 eb->h_list.l_count =
6728 cpu_to_le16(ocfs2_extent_recs_per_eb(osb->sb));
6729
6730 /* We'll also be dirtied by the caller, so
6731 * this isn't absolutely necessary.
6732 */
6733 ocfs2_journal_dirty(handle, new_eb_bh[i]);
6734
6735 if (!fl->f_first) {
6736 dealloc->c_first_suballocator = fl->f_next_suballocator;
6737 kfree(fl);
6738 }
6739 kfree(bf);
6740 }
6741
6742 *blk_given = i;
6743
6744bail:
6745 if (unlikely(status < 0)) {
6746 for (i = 0; i < blk_wanted; i++)
6747 brelse(new_eb_bh[i]);
6748 }
6749
6750 return status;
6751}
6752
Tao Ma1823cb02009-08-18 11:24:49 +08006753int ocfs2_cache_block_dealloc(struct ocfs2_cached_dealloc_ctxt *ctxt,
Tao Ma74380c42010-03-22 14:20:18 +08006754 int type, int slot, u64 suballoc,
6755 u64 blkno, unsigned int bit)
Mark Fasheh2b604352007-06-22 15:45:27 -07006756{
6757 int ret;
6758 struct ocfs2_per_slot_free_list *fl;
6759 struct ocfs2_cached_block_free *item;
6760
6761 fl = ocfs2_find_per_slot_free_list(type, slot, ctxt);
6762 if (fl == NULL) {
6763 ret = -ENOMEM;
6764 mlog_errno(ret);
6765 goto out;
6766 }
6767
Tao Ma74380c42010-03-22 14:20:18 +08006768 item = kzalloc(sizeof(*item), GFP_NOFS);
Mark Fasheh2b604352007-06-22 15:45:27 -07006769 if (item == NULL) {
6770 ret = -ENOMEM;
6771 mlog_errno(ret);
6772 goto out;
6773 }
6774
Tao Maa09d09b2011-02-22 08:21:10 +08006775 trace_ocfs2_cache_block_dealloc(type, slot,
6776 (unsigned long long)suballoc,
6777 (unsigned long long)blkno, bit);
Mark Fasheh2b604352007-06-22 15:45:27 -07006778
Tao Ma74380c42010-03-22 14:20:18 +08006779 item->free_bg = suballoc;
Mark Fasheh2b604352007-06-22 15:45:27 -07006780 item->free_blk = blkno;
6781 item->free_bit = bit;
6782 item->free_next = fl->f_first;
6783
6784 fl->f_first = item;
6785
6786 ret = 0;
6787out:
6788 return ret;
6789}
6790
Mark Fasheh59a5e412007-06-22 15:52:36 -07006791static int ocfs2_cache_extent_block_free(struct ocfs2_cached_dealloc_ctxt *ctxt,
6792 struct ocfs2_extent_block *eb)
6793{
6794 return ocfs2_cache_block_dealloc(ctxt, EXTENT_ALLOC_SYSTEM_INODE,
6795 le16_to_cpu(eb->h_suballoc_slot),
Tao Ma74380c42010-03-22 14:20:18 +08006796 le64_to_cpu(eb->h_suballoc_loc),
Mark Fasheh59a5e412007-06-22 15:52:36 -07006797 le64_to_cpu(eb->h_blkno),
6798 le16_to_cpu(eb->h_suballoc_bit));
6799}
6800
Joel Becker2b4e30f2008-09-03 20:03:41 -07006801static int ocfs2_zero_func(handle_t *handle, struct buffer_head *bh)
Mark Fasheh60b11392007-02-16 11:46:50 -08006802{
6803 set_buffer_uptodate(bh);
6804 mark_buffer_dirty(bh);
6805 return 0;
6806}
6807
Tao Ma6f70fa52009-08-25 08:05:12 +08006808void ocfs2_map_and_dirty_page(struct inode *inode, handle_t *handle,
6809 unsigned int from, unsigned int to,
6810 struct page *page, int zero, u64 *phys)
Mark Fasheh1d410a62007-09-07 14:20:45 -07006811{
6812 int ret, partial = 0;
6813
6814 ret = ocfs2_map_page_blocks(page, phys, inode, from, to, 0);
6815 if (ret)
6816 mlog_errno(ret);
6817
6818 if (zero)
Christoph Lametereebd2aa2008-02-04 22:28:29 -08006819 zero_user_segment(page, from, to);
Mark Fasheh1d410a62007-09-07 14:20:45 -07006820
6821 /*
6822 * Need to set the buffers we zero'd into uptodate
6823 * here if they aren't - ocfs2_map_page_blocks()
6824 * might've skipped some
6825 */
Joel Becker2b4e30f2008-09-03 20:03:41 -07006826 ret = walk_page_buffers(handle, page_buffers(page),
6827 from, to, &partial,
6828 ocfs2_zero_func);
6829 if (ret < 0)
6830 mlog_errno(ret);
6831 else if (ocfs2_should_order_data(inode)) {
6832 ret = ocfs2_jbd2_file_inode(handle, inode);
Mark Fasheh1d410a62007-09-07 14:20:45 -07006833 if (ret < 0)
6834 mlog_errno(ret);
6835 }
6836
6837 if (!partial)
6838 SetPageUptodate(page);
6839
6840 flush_dcache_page(page);
6841}
6842
Mark Fasheh35edec12007-07-06 14:41:18 -07006843static void ocfs2_zero_cluster_pages(struct inode *inode, loff_t start,
6844 loff_t end, struct page **pages,
6845 int numpages, u64 phys, handle_t *handle)
Mark Fasheh60b11392007-02-16 11:46:50 -08006846{
Mark Fasheh1d410a62007-09-07 14:20:45 -07006847 int i;
Mark Fasheh60b11392007-02-16 11:46:50 -08006848 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006849 unsigned int from, to = PAGE_SIZE;
Mark Fasheh60b11392007-02-16 11:46:50 -08006850 struct super_block *sb = inode->i_sb;
6851
6852 BUG_ON(!ocfs2_sparse_alloc(OCFS2_SB(sb)));
6853
6854 if (numpages == 0)
6855 goto out;
6856
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006857 to = PAGE_SIZE;
Mark Fasheh60b11392007-02-16 11:46:50 -08006858 for(i = 0; i < numpages; i++) {
6859 page = pages[i];
6860
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006861 from = start & (PAGE_SIZE - 1);
6862 if ((end >> PAGE_SHIFT) == page->index)
6863 to = end & (PAGE_SIZE - 1);
Mark Fasheh35edec12007-07-06 14:41:18 -07006864
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006865 BUG_ON(from > PAGE_SIZE);
6866 BUG_ON(to > PAGE_SIZE);
Mark Fasheh60b11392007-02-16 11:46:50 -08006867
Mark Fasheh1d410a62007-09-07 14:20:45 -07006868 ocfs2_map_and_dirty_page(inode, handle, from, to, page, 1,
6869 &phys);
Mark Fasheh60b11392007-02-16 11:46:50 -08006870
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006871 start = (page->index + 1) << PAGE_SHIFT;
Mark Fasheh60b11392007-02-16 11:46:50 -08006872 }
6873out:
Mark Fasheh1d410a62007-09-07 14:20:45 -07006874 if (pages)
6875 ocfs2_unlock_and_free_pages(pages, numpages);
Mark Fasheh60b11392007-02-16 11:46:50 -08006876}
6877
Tao Ma6f70fa52009-08-25 08:05:12 +08006878int ocfs2_grab_pages(struct inode *inode, loff_t start, loff_t end,
6879 struct page **pages, int *num)
Mark Fasheh60b11392007-02-16 11:46:50 -08006880{
Mark Fasheh1d410a62007-09-07 14:20:45 -07006881 int numpages, ret = 0;
Mark Fasheh60b11392007-02-16 11:46:50 -08006882 struct address_space *mapping = inode->i_mapping;
6883 unsigned long index;
Mark Fasheh35edec12007-07-06 14:41:18 -07006884 loff_t last_page_bytes;
Mark Fasheh60b11392007-02-16 11:46:50 -08006885
Mark Fasheh35edec12007-07-06 14:41:18 -07006886 BUG_ON(start > end);
Mark Fasheh60b11392007-02-16 11:46:50 -08006887
Mark Fasheh1d410a62007-09-07 14:20:45 -07006888 numpages = 0;
Mark Fasheh35edec12007-07-06 14:41:18 -07006889 last_page_bytes = PAGE_ALIGN(end);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006890 index = start >> PAGE_SHIFT;
Mark Fasheh60b11392007-02-16 11:46:50 -08006891 do {
Jan Kara9b4c0ff2010-08-24 14:28:03 +02006892 pages[numpages] = find_or_create_page(mapping, index, GFP_NOFS);
Mark Fasheh60b11392007-02-16 11:46:50 -08006893 if (!pages[numpages]) {
6894 ret = -ENOMEM;
6895 mlog_errno(ret);
6896 goto out;
6897 }
6898
6899 numpages++;
6900 index++;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006901 } while (index < (last_page_bytes >> PAGE_SHIFT));
Mark Fasheh60b11392007-02-16 11:46:50 -08006902
6903out:
6904 if (ret != 0) {
Mark Fasheh1d410a62007-09-07 14:20:45 -07006905 if (pages)
6906 ocfs2_unlock_and_free_pages(pages, numpages);
Mark Fasheh60b11392007-02-16 11:46:50 -08006907 numpages = 0;
6908 }
6909
6910 *num = numpages;
6911
6912 return ret;
6913}
6914
Tao Ma6f70fa52009-08-25 08:05:12 +08006915static int ocfs2_grab_eof_pages(struct inode *inode, loff_t start, loff_t end,
6916 struct page **pages, int *num)
6917{
6918 struct super_block *sb = inode->i_sb;
6919
6920 BUG_ON(start >> OCFS2_SB(sb)->s_clustersize_bits !=
6921 (end - 1) >> OCFS2_SB(sb)->s_clustersize_bits);
6922
6923 return ocfs2_grab_pages(inode, start, end, pages, num);
6924}
6925
Mark Fasheh60b11392007-02-16 11:46:50 -08006926/*
6927 * Zero the area past i_size but still within an allocated
6928 * cluster. This avoids exposing nonzero data on subsequent file
6929 * extends.
6930 *
6931 * We need to call this before i_size is updated on the inode because
6932 * otherwise block_write_full_page() will skip writeout of pages past
6933 * i_size. The new_i_size parameter is passed for this reason.
6934 */
Mark Fasheh35edec12007-07-06 14:41:18 -07006935int ocfs2_zero_range_for_truncate(struct inode *inode, handle_t *handle,
6936 u64 range_start, u64 range_end)
Mark Fasheh60b11392007-02-16 11:46:50 -08006937{
Mark Fasheh1d410a62007-09-07 14:20:45 -07006938 int ret = 0, numpages;
Mark Fasheh60b11392007-02-16 11:46:50 -08006939 struct page **pages = NULL;
6940 u64 phys;
Mark Fasheh1d410a62007-09-07 14:20:45 -07006941 unsigned int ext_flags;
6942 struct super_block *sb = inode->i_sb;
Mark Fasheh60b11392007-02-16 11:46:50 -08006943
6944 /*
6945 * File systems which don't support sparse files zero on every
6946 * extend.
6947 */
Mark Fasheh1d410a62007-09-07 14:20:45 -07006948 if (!ocfs2_sparse_alloc(OCFS2_SB(sb)))
Mark Fasheh60b11392007-02-16 11:46:50 -08006949 return 0;
6950
Mark Fasheh1d410a62007-09-07 14:20:45 -07006951 pages = kcalloc(ocfs2_pages_per_cluster(sb),
Mark Fasheh60b11392007-02-16 11:46:50 -08006952 sizeof(struct page *), GFP_NOFS);
6953 if (pages == NULL) {
6954 ret = -ENOMEM;
6955 mlog_errno(ret);
6956 goto out;
6957 }
6958
Mark Fasheh1d410a62007-09-07 14:20:45 -07006959 if (range_start == range_end)
6960 goto out;
6961
6962 ret = ocfs2_extent_map_get_blocks(inode,
6963 range_start >> sb->s_blocksize_bits,
6964 &phys, NULL, &ext_flags);
Mark Fasheh60b11392007-02-16 11:46:50 -08006965 if (ret) {
6966 mlog_errno(ret);
6967 goto out;
6968 }
6969
Mark Fasheh1d410a62007-09-07 14:20:45 -07006970 /*
6971 * Tail is a hole, or is marked unwritten. In either case, we
6972 * can count on read and write to return/push zero's.
6973 */
6974 if (phys == 0 || ext_flags & OCFS2_EXT_UNWRITTEN)
Mark Fasheh60b11392007-02-16 11:46:50 -08006975 goto out;
6976
Mark Fasheh1d410a62007-09-07 14:20:45 -07006977 ret = ocfs2_grab_eof_pages(inode, range_start, range_end, pages,
6978 &numpages);
6979 if (ret) {
6980 mlog_errno(ret);
6981 goto out;
6982 }
6983
Mark Fasheh35edec12007-07-06 14:41:18 -07006984 ocfs2_zero_cluster_pages(inode, range_start, range_end, pages,
6985 numpages, phys, handle);
Mark Fasheh60b11392007-02-16 11:46:50 -08006986
6987 /*
6988 * Initiate writeout of the pages we zero'd here. We don't
6989 * wait on them - the truncate_inode_pages() call later will
6990 * do that for us.
6991 */
Christoph Hellwig2cfd30a2009-09-23 15:04:02 +02006992 ret = filemap_fdatawrite_range(inode->i_mapping, range_start,
6993 range_end - 1);
Mark Fasheh60b11392007-02-16 11:46:50 -08006994 if (ret)
6995 mlog_errno(ret);
6996
6997out:
Tim Gardnerd787ab02013-02-21 16:42:44 -08006998 kfree(pages);
Mark Fasheh60b11392007-02-16 11:46:50 -08006999
7000 return ret;
7001}
7002
Tiger Yangfdd77702008-08-18 17:08:55 +08007003static void ocfs2_zero_dinode_id2_with_xattr(struct inode *inode,
7004 struct ocfs2_dinode *di)
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007005{
7006 unsigned int blocksize = 1 << inode->i_sb->s_blocksize_bits;
Tiger Yangfdd77702008-08-18 17:08:55 +08007007 unsigned int xattrsize = le16_to_cpu(di->i_xattr_inline_size);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007008
Tiger Yangfdd77702008-08-18 17:08:55 +08007009 if (le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_XATTR_FL)
7010 memset(&di->id2, 0, blocksize -
7011 offsetof(struct ocfs2_dinode, id2) -
7012 xattrsize);
7013 else
7014 memset(&di->id2, 0, blocksize -
7015 offsetof(struct ocfs2_dinode, id2));
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007016}
7017
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07007018void ocfs2_dinode_new_extent_list(struct inode *inode,
7019 struct ocfs2_dinode *di)
7020{
Tiger Yangfdd77702008-08-18 17:08:55 +08007021 ocfs2_zero_dinode_id2_with_xattr(inode, di);
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07007022 di->id2.i_list.l_tree_depth = 0;
7023 di->id2.i_list.l_next_free_rec = 0;
Tiger Yangfdd77702008-08-18 17:08:55 +08007024 di->id2.i_list.l_count = cpu_to_le16(
7025 ocfs2_extent_recs_per_inode_with_xattr(inode->i_sb, di));
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07007026}
7027
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007028void ocfs2_set_inode_data_inline(struct inode *inode, struct ocfs2_dinode *di)
7029{
7030 struct ocfs2_inode_info *oi = OCFS2_I(inode);
7031 struct ocfs2_inline_data *idata = &di->id2.i_data;
7032
7033 spin_lock(&oi->ip_lock);
7034 oi->ip_dyn_features |= OCFS2_INLINE_DATA_FL;
7035 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
7036 spin_unlock(&oi->ip_lock);
7037
7038 /*
7039 * We clear the entire i_data structure here so that all
7040 * fields can be properly initialized.
7041 */
Tiger Yangfdd77702008-08-18 17:08:55 +08007042 ocfs2_zero_dinode_id2_with_xattr(inode, di);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007043
Tiger Yangfdd77702008-08-18 17:08:55 +08007044 idata->id_count = cpu_to_le16(
7045 ocfs2_max_inline_data_with_xattr(inode->i_sb, di));
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007046}
7047
7048int ocfs2_convert_inline_data_to_extents(struct inode *inode,
7049 struct buffer_head *di_bh)
7050{
7051 int ret, i, has_data, num_pages = 0;
Zongxun Wangfb951eb2014-02-06 12:04:20 -08007052 int need_free = 0;
7053 u32 bit_off, num;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007054 handle_t *handle;
7055 u64 uninitialized_var(block);
7056 struct ocfs2_inode_info *oi = OCFS2_I(inode);
7057 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
7058 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007059 struct ocfs2_alloc_context *data_ac = NULL;
7060 struct page **pages = NULL;
7061 loff_t end = osb->s_clustersize;
Joel Beckerf99b9b72008-08-20 19:36:33 -07007062 struct ocfs2_extent_tree et;
Jan Karaa90714c2008-10-09 19:38:40 +02007063 int did_quota = 0;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007064
7065 has_data = i_size_read(inode) ? 1 : 0;
7066
7067 if (has_data) {
7068 pages = kcalloc(ocfs2_pages_per_cluster(osb->sb),
7069 sizeof(struct page *), GFP_NOFS);
7070 if (pages == NULL) {
7071 ret = -ENOMEM;
7072 mlog_errno(ret);
Markus Elfring3cc79b72015-04-14 15:42:45 -07007073 return ret;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007074 }
7075
7076 ret = ocfs2_reserve_clusters(osb, 1, &data_ac);
7077 if (ret) {
7078 mlog_errno(ret);
Markus Elfring3cc79b72015-04-14 15:42:45 -07007079 goto free_pages;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007080 }
7081 }
7082
Jan Karaa90714c2008-10-09 19:38:40 +02007083 handle = ocfs2_start_trans(osb,
7084 ocfs2_inline_to_extents_credits(osb->sb));
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007085 if (IS_ERR(handle)) {
7086 ret = PTR_ERR(handle);
7087 mlog_errno(ret);
alex chen15eba0f2015-02-10 14:09:02 -08007088 goto out;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007089 }
7090
Joel Becker0cf2f762009-02-12 16:41:25 -08007091 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
Joel Becker13723d02008-10-17 19:25:01 -07007092 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007093 if (ret) {
7094 mlog_errno(ret);
7095 goto out_commit;
7096 }
7097
7098 if (has_data) {
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007099 unsigned int page_end;
7100 u64 phys;
7101
Christoph Hellwig5dd40562010-03-03 09:05:00 -05007102 ret = dquot_alloc_space_nodirty(inode,
7103 ocfs2_clusters_to_bytes(osb->sb, 1));
7104 if (ret)
Jan Karaa90714c2008-10-09 19:38:40 +02007105 goto out_commit;
Jan Karaa90714c2008-10-09 19:38:40 +02007106 did_quota = 1;
7107
piaojund324cd42018-04-05 16:18:37 -07007108 data_ac->ac_resv = &oi->ip_la_data_resv;
Mark Fasheh4fe370a2009-12-07 13:15:40 -08007109
Joel Becker1ed9b772010-05-06 13:59:06 +08007110 ret = ocfs2_claim_clusters(handle, data_ac, 1, &bit_off,
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007111 &num);
7112 if (ret) {
7113 mlog_errno(ret);
7114 goto out_commit;
7115 }
7116
7117 /*
7118 * Save two copies, one for insert, and one that can
7119 * be changed by ocfs2_map_and_dirty_page() below.
7120 */
7121 block = phys = ocfs2_clusters_to_blocks(inode->i_sb, bit_off);
7122
7123 /*
7124 * Non sparse file systems zero on extend, so no need
7125 * to do that now.
7126 */
7127 if (!ocfs2_sparse_alloc(osb) &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007128 PAGE_SIZE < osb->s_clustersize)
7129 end = PAGE_SIZE;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007130
7131 ret = ocfs2_grab_eof_pages(inode, 0, end, pages, &num_pages);
7132 if (ret) {
7133 mlog_errno(ret);
Zongxun Wangfb951eb2014-02-06 12:04:20 -08007134 need_free = 1;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007135 goto out_commit;
7136 }
7137
7138 /*
7139 * This should populate the 1st page for us and mark
7140 * it up to date.
7141 */
7142 ret = ocfs2_read_inline_data(inode, pages[0], di_bh);
7143 if (ret) {
7144 mlog_errno(ret);
Zongxun Wangfb951eb2014-02-06 12:04:20 -08007145 need_free = 1;
alex chen15eba0f2015-02-10 14:09:02 -08007146 goto out_unlock;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007147 }
7148
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03007149 page_end = PAGE_SIZE;
7150 if (PAGE_SIZE > osb->s_clustersize)
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007151 page_end = osb->s_clustersize;
7152
7153 for (i = 0; i < num_pages; i++)
7154 ocfs2_map_and_dirty_page(inode, handle, 0, page_end,
7155 pages[i], i > 0, &phys);
7156 }
7157
7158 spin_lock(&oi->ip_lock);
7159 oi->ip_dyn_features &= ~OCFS2_INLINE_DATA_FL;
7160 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
7161 spin_unlock(&oi->ip_lock);
7162
Darrick J. Wong2931cdc2014-04-03 14:46:48 -07007163 ocfs2_update_inode_fsync_trans(handle, inode, 1);
Mark Fasheh5b6a3a22007-09-13 16:33:54 -07007164 ocfs2_dinode_new_extent_list(inode, di);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007165
7166 ocfs2_journal_dirty(handle, di_bh);
7167
7168 if (has_data) {
7169 /*
7170 * An error at this point should be extremely rare. If
7171 * this proves to be false, we could always re-build
7172 * the in-inode data from our pages.
7173 */
Joel Becker5e404e92009-02-13 03:54:22 -08007174 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh);
Joel Beckercc79d8c2009-02-13 03:24:43 -08007175 ret = ocfs2_insert_extent(handle, &et, 0, block, 1, 0, NULL);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007176 if (ret) {
7177 mlog_errno(ret);
Zongxun Wangfb951eb2014-02-06 12:04:20 -08007178 need_free = 1;
alex chen15eba0f2015-02-10 14:09:02 -08007179 goto out_unlock;
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007180 }
7181
7182 inode->i_blocks = ocfs2_inode_sector_count(inode);
7183 }
7184
alex chen15eba0f2015-02-10 14:09:02 -08007185out_unlock:
7186 if (pages)
7187 ocfs2_unlock_and_free_pages(pages, num_pages);
7188
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007189out_commit:
Jan Karaa90714c2008-10-09 19:38:40 +02007190 if (ret < 0 && did_quota)
Christoph Hellwig5dd40562010-03-03 09:05:00 -05007191 dquot_free_space_nodirty(inode,
Jan Karaa90714c2008-10-09 19:38:40 +02007192 ocfs2_clusters_to_bytes(osb->sb, 1));
7193
Zongxun Wangfb951eb2014-02-06 12:04:20 -08007194 if (need_free) {
7195 if (data_ac->ac_which == OCFS2_AC_USE_LOCAL)
7196 ocfs2_free_local_alloc_bits(osb, handle, data_ac,
7197 bit_off, num);
7198 else
7199 ocfs2_free_clusters(handle,
7200 data_ac->ac_inode,
7201 data_ac->ac_bh,
7202 ocfs2_clusters_to_blocks(osb->sb, bit_off),
7203 num);
7204 }
7205
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007206 ocfs2_commit_trans(osb, handle);
7207
alex chen15eba0f2015-02-10 14:09:02 -08007208out:
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007209 if (data_ac)
7210 ocfs2_free_alloc_context(data_ac);
Markus Elfring3cc79b72015-04-14 15:42:45 -07007211free_pages:
Markus Elfringfd90d4df2015-04-14 15:42:42 -07007212 kfree(pages);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007213 return ret;
7214}
7215
Mark Fashehccd979b2005-12-15 14:31:24 -08007216/*
7217 * It is expected, that by the time you call this function,
7218 * inode->i_size and fe->i_size have been adjusted.
7219 *
7220 * WARNING: This will kfree the truncate context
7221 */
7222int ocfs2_commit_truncate(struct ocfs2_super *osb,
7223 struct inode *inode,
Tristan Ye78f94672010-05-11 17:54:42 +08007224 struct buffer_head *di_bh)
Mark Fashehccd979b2005-12-15 14:31:24 -08007225{
Tristan Ye78f94672010-05-11 17:54:42 +08007226 int status = 0, i, flags = 0;
7227 u32 new_highest_cpos, range, trunc_cpos, trunc_len, phys_cpos, coff;
Tao Mabcbbb242009-08-18 11:29:12 +08007228 u64 blkno = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08007229 struct ocfs2_extent_list *el;
Tristan Ye78f94672010-05-11 17:54:42 +08007230 struct ocfs2_extent_rec *rec;
Mark Fashehdcd05382007-01-16 11:32:23 -08007231 struct ocfs2_path *path = NULL;
Tristan Ye78f94672010-05-11 17:54:42 +08007232 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
7233 struct ocfs2_extent_list *root_el = &(di->id2.i_list);
7234 u64 refcount_loc = le64_to_cpu(di->i_refcount_loc);
7235 struct ocfs2_extent_tree et;
7236 struct ocfs2_cached_dealloc_ctxt dealloc;
Junxiao Bif62f12b2014-12-18 16:17:32 -08007237 struct ocfs2_refcount_tree *ref_tree = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08007238
Tristan Ye78f94672010-05-11 17:54:42 +08007239 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh);
7240 ocfs2_init_dealloc_ctxt(&dealloc);
7241
Mark Fashehdcd05382007-01-16 11:32:23 -08007242 new_highest_cpos = ocfs2_clusters_for_bytes(osb->sb,
Mark Fashehccd979b2005-12-15 14:31:24 -08007243 i_size_read(inode));
7244
Tristan Ye78f94672010-05-11 17:54:42 +08007245 path = ocfs2_new_path(di_bh, &di->id2.i_list,
Joel Becker13723d02008-10-17 19:25:01 -07007246 ocfs2_journal_access_di);
Mark Fashehdcd05382007-01-16 11:32:23 -08007247 if (!path) {
7248 status = -ENOMEM;
7249 mlog_errno(status);
7250 goto bail;
7251 }
Mark Fasheh83418972007-04-23 18:53:12 -07007252
7253 ocfs2_extent_map_trunc(inode, new_highest_cpos);
7254
Mark Fashehccd979b2005-12-15 14:31:24 -08007255start:
Mark Fashehdcd05382007-01-16 11:32:23 -08007256 /*
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007257 * Check that we still have allocation to delete.
7258 */
7259 if (OCFS2_I(inode)->ip_clusters == 0) {
7260 status = 0;
7261 goto bail;
7262 }
7263
7264 /*
Mark Fashehdcd05382007-01-16 11:32:23 -08007265 * Truncate always works against the rightmost tree branch.
7266 */
Joel Beckerfacdb772009-02-12 18:08:48 -08007267 status = ocfs2_find_path(INODE_CACHE(inode), path, UINT_MAX);
Mark Fashehdcd05382007-01-16 11:32:23 -08007268 if (status) {
7269 mlog_errno(status);
7270 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -08007271 }
7272
Tao Maa09d09b2011-02-22 08:21:10 +08007273 trace_ocfs2_commit_truncate(
7274 (unsigned long long)OCFS2_I(inode)->ip_blkno,
7275 new_highest_cpos,
7276 OCFS2_I(inode)->ip_clusters,
7277 path->p_tree_depth);
Mark Fashehdcd05382007-01-16 11:32:23 -08007278
7279 /*
7280 * By now, el will point to the extent list on the bottom most
7281 * portion of this tree. Only the tail record is considered in
7282 * each pass.
7283 *
7284 * We handle the following cases, in order:
7285 * - empty extent: delete the remaining branch
7286 * - remove the entire record
7287 * - remove a partial record
7288 * - no record needs to be removed (truncate has completed)
7289 */
7290 el = path_leaf_el(path);
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007291 if (le16_to_cpu(el->l_next_free_rec) == 0) {
7292 ocfs2_error(inode->i_sb,
7293 "Inode %llu has empty extent block at %llu\n",
7294 (unsigned long long)OCFS2_I(inode)->ip_blkno,
7295 (unsigned long long)path_leaf_bh(path)->b_blocknr);
7296 status = -EROFS;
7297 goto bail;
7298 }
7299
Mark Fashehccd979b2005-12-15 14:31:24 -08007300 i = le16_to_cpu(el->l_next_free_rec) - 1;
Tristan Ye78f94672010-05-11 17:54:42 +08007301 rec = &el->l_recs[i];
7302 flags = rec->e_flags;
7303 range = le32_to_cpu(rec->e_cpos) + ocfs2_rec_clusters(el, rec);
7304
7305 if (i == 0 && ocfs2_is_empty_extent(rec)) {
7306 /*
7307 * Lower levels depend on this never happening, but it's best
7308 * to check it up here before changing the tree.
7309 */
7310 if (root_el->l_tree_depth && rec->e_int_clusters == 0) {
Xue jiufeid0c97d52015-09-04 15:44:48 -07007311 mlog(ML_ERROR, "Inode %lu has an empty "
Tristan Ye78f94672010-05-11 17:54:42 +08007312 "extent record, depth %u\n", inode->i_ino,
7313 le16_to_cpu(root_el->l_tree_depth));
Xue jiufeid0c97d52015-09-04 15:44:48 -07007314 status = ocfs2_remove_rightmost_empty_extent(osb,
7315 &et, path, &dealloc);
7316 if (status) {
7317 mlog_errno(status);
7318 goto bail;
7319 }
7320
7321 ocfs2_reinit_path(path, 1);
7322 goto start;
7323 } else {
7324 trunc_cpos = le32_to_cpu(rec->e_cpos);
7325 trunc_len = 0;
7326 blkno = 0;
Tristan Ye78f94672010-05-11 17:54:42 +08007327 }
Tristan Ye78f94672010-05-11 17:54:42 +08007328 } else if (le32_to_cpu(rec->e_cpos) >= new_highest_cpos) {
7329 /*
7330 * Truncate entire record.
7331 */
7332 trunc_cpos = le32_to_cpu(rec->e_cpos);
7333 trunc_len = ocfs2_rec_clusters(el, rec);
7334 blkno = le64_to_cpu(rec->e_blkno);
Mark Fashehdcd05382007-01-16 11:32:23 -08007335 } else if (range > new_highest_cpos) {
Tristan Ye78f94672010-05-11 17:54:42 +08007336 /*
7337 * Partial truncate. it also should be
7338 * the last truncate we're doing.
7339 */
7340 trunc_cpos = new_highest_cpos;
7341 trunc_len = range - new_highest_cpos;
7342 coff = new_highest_cpos - le32_to_cpu(rec->e_cpos);
7343 blkno = le64_to_cpu(rec->e_blkno) +
7344 ocfs2_clusters_to_blocks(inode->i_sb, coff);
Mark Fashehdcd05382007-01-16 11:32:23 -08007345 } else {
Tristan Ye78f94672010-05-11 17:54:42 +08007346 /*
7347 * Truncate completed, leave happily.
7348 */
Mark Fashehdcd05382007-01-16 11:32:23 -08007349 status = 0;
7350 goto bail;
7351 }
Mark Fashehccd979b2005-12-15 14:31:24 -08007352
Tristan Ye78f94672010-05-11 17:54:42 +08007353 phys_cpos = ocfs2_blocks_to_clusters(inode->i_sb, blkno);
Mark Fashehdcd05382007-01-16 11:32:23 -08007354
Junxiao Bif62f12b2014-12-18 16:17:32 -08007355 if ((flags & OCFS2_EXT_REFCOUNTED) && trunc_len && !ref_tree) {
7356 status = ocfs2_lock_refcount_tree(osb, refcount_loc, 1,
7357 &ref_tree, NULL);
7358 if (status) {
7359 mlog_errno(status);
7360 goto bail;
7361 }
7362 }
7363
Tristan Ye78f94672010-05-11 17:54:42 +08007364 status = ocfs2_remove_btree_range(inode, &et, trunc_cpos,
7365 phys_cpos, trunc_len, flags, &dealloc,
Junxiao Bif62f12b2014-12-18 16:17:32 -08007366 refcount_loc, true);
Mark Fashehccd979b2005-12-15 14:31:24 -08007367 if (status < 0) {
7368 mlog_errno(status);
7369 goto bail;
7370 }
7371
Mark Fashehdcd05382007-01-16 11:32:23 -08007372 ocfs2_reinit_path(path, 1);
7373
7374 /*
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007375 * The check above will catch the case where we've truncated
7376 * away all allocation.
Mark Fashehdcd05382007-01-16 11:32:23 -08007377 */
Mark Fasheh3a0782d2007-01-17 12:53:31 -08007378 goto start;
7379
Mark Fashehccd979b2005-12-15 14:31:24 -08007380bail:
Junxiao Bif62f12b2014-12-18 16:17:32 -08007381 if (ref_tree)
7382 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08007383
7384 ocfs2_schedule_truncate_log_flush(osb, 1);
7385
Tristan Ye78f94672010-05-11 17:54:42 +08007386 ocfs2_run_deallocs(osb, &dealloc);
Mark Fasheh59a5e412007-06-22 15:52:36 -07007387
Mark Fashehdcd05382007-01-16 11:32:23 -08007388 ocfs2_free_path(path);
Mark Fashehccd979b2005-12-15 14:31:24 -08007389
Mark Fashehccd979b2005-12-15 14:31:24 -08007390 return status;
7391}
7392
Mark Fashehccd979b2005-12-15 14:31:24 -08007393/*
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007394 * 'start' is inclusive, 'end' is not.
7395 */
7396int ocfs2_truncate_inline(struct inode *inode, struct buffer_head *di_bh,
7397 unsigned int start, unsigned int end, int trunc)
7398{
7399 int ret;
7400 unsigned int numbytes;
7401 handle_t *handle;
7402 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
7403 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
7404 struct ocfs2_inline_data *idata = &di->id2.i_data;
7405
7406 if (end > i_size_read(inode))
7407 end = i_size_read(inode);
7408
Younger Liud62e74b2014-02-10 14:25:51 -08007409 BUG_ON(start > end);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007410
7411 if (!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) ||
7412 !(le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_DATA_FL) ||
7413 !ocfs2_supports_inline_data(osb)) {
7414 ocfs2_error(inode->i_sb,
Joe Perches7ecef142015-09-04 15:44:51 -07007415 "Inline data flags for inode %llu don't agree! Disk: 0x%x, Memory: 0x%x, Superblock: 0x%x\n",
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007416 (unsigned long long)OCFS2_I(inode)->ip_blkno,
7417 le16_to_cpu(di->i_dyn_features),
7418 OCFS2_I(inode)->ip_dyn_features,
7419 osb->s_feature_incompat);
7420 ret = -EROFS;
7421 goto out;
7422 }
7423
7424 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
7425 if (IS_ERR(handle)) {
7426 ret = PTR_ERR(handle);
7427 mlog_errno(ret);
7428 goto out;
7429 }
7430
Joel Becker0cf2f762009-02-12 16:41:25 -08007431 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
Joel Becker13723d02008-10-17 19:25:01 -07007432 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007433 if (ret) {
7434 mlog_errno(ret);
7435 goto out_commit;
7436 }
7437
7438 numbytes = end - start;
7439 memset(idata->id_data + start, 0, numbytes);
7440
7441 /*
7442 * No need to worry about the data page here - it's been
7443 * truncated already and inline data doesn't need it for
7444 * pushing zero's to disk, so we'll let readpage pick it up
7445 * later.
7446 */
7447 if (trunc) {
7448 i_size_write(inode, start);
7449 di->i_size = cpu_to_le64(start);
7450 }
7451
7452 inode->i_blocks = ocfs2_inode_sector_count(inode);
Deepa Dinamani078cd822016-09-14 07:48:04 -07007453 inode->i_ctime = inode->i_mtime = current_time(inode);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007454
7455 di->i_ctime = di->i_mtime = cpu_to_le64(inode->i_ctime.tv_sec);
7456 di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
7457
Darrick J. Wong6fdb7022014-04-03 14:47:08 -07007458 ocfs2_update_inode_fsync_trans(handle, inode, 1);
Mark Fasheh1afc32b2007-09-07 14:46:51 -07007459 ocfs2_journal_dirty(handle, di_bh);
7460
7461out_commit:
7462 ocfs2_commit_trans(osb, handle);
7463
7464out:
7465 return ret;
7466}
Tao Mae80de362011-05-23 10:36:43 +08007467
7468static int ocfs2_trim_extent(struct super_block *sb,
7469 struct ocfs2_group_desc *gd,
Ashish Samant105ddc92017-11-02 15:59:37 -07007470 u64 group, u32 start, u32 count)
Tao Mae80de362011-05-23 10:36:43 +08007471{
7472 u64 discard, bcount;
Ashish Samant105ddc92017-11-02 15:59:37 -07007473 struct ocfs2_super *osb = OCFS2_SB(sb);
Tao Mae80de362011-05-23 10:36:43 +08007474
7475 bcount = ocfs2_clusters_to_blocks(sb, count);
Ashish Samant105ddc92017-11-02 15:59:37 -07007476 discard = ocfs2_clusters_to_blocks(sb, start);
7477
7478 /*
7479 * For the first cluster group, the gd->bg_blkno is not at the start
7480 * of the group, but at an offset from the start. If we add it while
7481 * calculating discard for first group, we will wrongly start fstrim a
7482 * few blocks after the desried start block and the range can cross
7483 * over into the next cluster group. So, add it only if this is not
7484 * the first cluster group.
7485 */
7486 if (group != osb->first_cluster_group_blkno)
7487 discard += le64_to_cpu(gd->bg_blkno);
Tao Mae80de362011-05-23 10:36:43 +08007488
Tao Ma10fca352011-05-23 10:36:45 +08007489 trace_ocfs2_trim_extent(sb, (unsigned long long)discard, bcount);
7490
Tao Mae80de362011-05-23 10:36:43 +08007491 return sb_issue_discard(sb, discard, bcount, GFP_NOFS, 0);
7492}
7493
7494static int ocfs2_trim_group(struct super_block *sb,
Ashish Samant105ddc92017-11-02 15:59:37 -07007495 struct ocfs2_group_desc *gd, u64 group,
Tao Mae80de362011-05-23 10:36:43 +08007496 u32 start, u32 max, u32 minbits)
7497{
7498 int ret = 0, count = 0, next;
7499 void *bitmap = gd->bg_bitmap;
7500
7501 if (le16_to_cpu(gd->bg_free_bits_count) < minbits)
7502 return 0;
7503
Tao Ma10fca352011-05-23 10:36:45 +08007504 trace_ocfs2_trim_group((unsigned long long)le64_to_cpu(gd->bg_blkno),
7505 start, max, minbits);
7506
Tao Mae80de362011-05-23 10:36:43 +08007507 while (start < max) {
7508 start = ocfs2_find_next_zero_bit(bitmap, max, start);
7509 if (start >= max)
7510 break;
7511 next = ocfs2_find_next_bit(bitmap, max, start);
7512
7513 if ((next - start) >= minbits) {
Ashish Samant105ddc92017-11-02 15:59:37 -07007514 ret = ocfs2_trim_extent(sb, gd, group,
Tao Mae80de362011-05-23 10:36:43 +08007515 start, next - start);
7516 if (ret < 0) {
7517 mlog_errno(ret);
7518 break;
7519 }
7520 count += next - start;
7521 }
7522 start = next + 1;
7523
7524 if (fatal_signal_pending(current)) {
7525 count = -ERESTARTSYS;
7526 break;
7527 }
7528
7529 if ((le16_to_cpu(gd->bg_free_bits_count) - count) < minbits)
7530 break;
7531 }
7532
7533 if (ret < 0)
7534 count = ret;
7535
7536 return count;
7537}
7538
7539int ocfs2_trim_fs(struct super_block *sb, struct fstrim_range *range)
7540{
7541 struct ocfs2_super *osb = OCFS2_SB(sb);
7542 u64 start, len, trimmed, first_group, last_group, group;
7543 int ret, cnt;
7544 u32 first_bit, last_bit, minlen;
7545 struct buffer_head *main_bm_bh = NULL;
7546 struct inode *main_bm_inode = NULL;
7547 struct buffer_head *gd_bh = NULL;
7548 struct ocfs2_dinode *main_bm;
7549 struct ocfs2_group_desc *gd = NULL;
Gang He637dd202018-01-31 16:15:13 -08007550 struct ocfs2_trim_fs_info info, *pinfo = NULL;
Tao Mae80de362011-05-23 10:36:43 +08007551
7552 start = range->start >> osb->s_clustersize_bits;
7553 len = range->len >> osb->s_clustersize_bits;
7554 minlen = range->minlen >> osb->s_clustersize_bits;
Tao Mae80de362011-05-23 10:36:43 +08007555
Jie Liuaa897622014-01-21 15:48:35 -08007556 if (minlen >= osb->bitmap_cpg || range->len < sb->s_blocksize)
Tao Mae80de362011-05-23 10:36:43 +08007557 return -EINVAL;
7558
7559 main_bm_inode = ocfs2_get_system_file_inode(osb,
7560 GLOBAL_BITMAP_SYSTEM_INODE,
7561 OCFS2_INVALID_SLOT);
7562 if (!main_bm_inode) {
7563 ret = -EIO;
7564 mlog_errno(ret);
7565 goto out;
7566 }
7567
Al Viro59551022016-01-22 15:40:57 -05007568 inode_lock(main_bm_inode);
Tao Mae80de362011-05-23 10:36:43 +08007569
7570 ret = ocfs2_inode_lock(main_bm_inode, &main_bm_bh, 0);
7571 if (ret < 0) {
7572 mlog_errno(ret);
7573 goto out_mutex;
7574 }
7575 main_bm = (struct ocfs2_dinode *)main_bm_bh->b_data;
7576
7577 if (start >= le32_to_cpu(main_bm->i_clusters)) {
7578 ret = -EINVAL;
7579 goto out_unlock;
7580 }
7581
Jie Liuaa897622014-01-21 15:48:35 -08007582 len = range->len >> osb->s_clustersize_bits;
Tao Mae80de362011-05-23 10:36:43 +08007583 if (start + len > le32_to_cpu(main_bm->i_clusters))
7584 len = le32_to_cpu(main_bm->i_clusters) - start;
7585
Tao Ma10fca352011-05-23 10:36:45 +08007586 trace_ocfs2_trim_fs(start, len, minlen);
7587
Gang He637dd202018-01-31 16:15:13 -08007588 ocfs2_trim_fs_lock_res_init(osb);
7589 ret = ocfs2_trim_fs_lock(osb, NULL, 1);
7590 if (ret < 0) {
7591 if (ret != -EAGAIN) {
7592 mlog_errno(ret);
7593 ocfs2_trim_fs_lock_res_uninit(osb);
7594 goto out_unlock;
7595 }
7596
7597 mlog(ML_NOTICE, "Wait for trim on device (%s) to "
7598 "finish, which is running from another node.\n",
7599 osb->dev_str);
7600 ret = ocfs2_trim_fs_lock(osb, &info, 0);
7601 if (ret < 0) {
7602 mlog_errno(ret);
7603 ocfs2_trim_fs_lock_res_uninit(osb);
7604 goto out_unlock;
7605 }
7606
7607 if (info.tf_valid && info.tf_success &&
7608 info.tf_start == start && info.tf_len == len &&
7609 info.tf_minlen == minlen) {
7610 /* Avoid sending duplicated trim to a shared device */
7611 mlog(ML_NOTICE, "The same trim on device (%s) was "
7612 "just done from node (%u), return.\n",
7613 osb->dev_str, info.tf_nodenum);
7614 range->len = info.tf_trimlen;
7615 goto out_trimunlock;
7616 }
7617 }
7618
7619 info.tf_nodenum = osb->node_num;
7620 info.tf_start = start;
7621 info.tf_len = len;
7622 info.tf_minlen = minlen;
7623
Tao Mae80de362011-05-23 10:36:43 +08007624 /* Determine first and last group to examine based on start and len */
7625 first_group = ocfs2_which_cluster_group(main_bm_inode, start);
7626 if (first_group == osb->first_cluster_group_blkno)
7627 first_bit = start;
7628 else
7629 first_bit = start - ocfs2_blocks_to_clusters(sb, first_group);
7630 last_group = ocfs2_which_cluster_group(main_bm_inode, start + len - 1);
7631 last_bit = osb->bitmap_cpg;
7632
Jie Liuaa897622014-01-21 15:48:35 -08007633 trimmed = 0;
Tao Mae80de362011-05-23 10:36:43 +08007634 for (group = first_group; group <= last_group;) {
7635 if (first_bit + len >= osb->bitmap_cpg)
7636 last_bit = osb->bitmap_cpg;
7637 else
7638 last_bit = first_bit + len;
7639
7640 ret = ocfs2_read_group_descriptor(main_bm_inode,
7641 main_bm, group,
7642 &gd_bh);
7643 if (ret < 0) {
7644 mlog_errno(ret);
7645 break;
7646 }
7647
7648 gd = (struct ocfs2_group_desc *)gd_bh->b_data;
Ashish Samant105ddc92017-11-02 15:59:37 -07007649 cnt = ocfs2_trim_group(sb, gd, group,
7650 first_bit, last_bit, minlen);
Tao Mae80de362011-05-23 10:36:43 +08007651 brelse(gd_bh);
7652 gd_bh = NULL;
7653 if (cnt < 0) {
7654 ret = cnt;
7655 mlog_errno(ret);
7656 break;
7657 }
7658
7659 trimmed += cnt;
7660 len -= osb->bitmap_cpg - first_bit;
7661 first_bit = 0;
7662 if (group == osb->first_cluster_group_blkno)
7663 group = ocfs2_clusters_to_blocks(sb, osb->bitmap_cpg);
7664 else
7665 group += ocfs2_clusters_to_blocks(sb, osb->bitmap_cpg);
7666 }
7667 range->len = trimmed * sb->s_blocksize;
Gang He637dd202018-01-31 16:15:13 -08007668
7669 info.tf_trimlen = range->len;
7670 info.tf_success = (ret ? 0 : 1);
7671 pinfo = &info;
7672out_trimunlock:
7673 ocfs2_trim_fs_unlock(osb, pinfo);
7674 ocfs2_trim_fs_lock_res_uninit(osb);
Tao Mae80de362011-05-23 10:36:43 +08007675out_unlock:
7676 ocfs2_inode_unlock(main_bm_inode, 0);
7677 brelse(main_bm_bh);
7678out_mutex:
Al Viro59551022016-01-22 15:40:57 -05007679 inode_unlock(main_bm_inode);
Tao Mae80de362011-05-23 10:36:43 +08007680 iput(main_bm_inode);
7681out:
7682 return ret;
7683}