blob: a5e1492bbaaa56c4e5acd1b58d616317cfe641c0 [file] [log] [blame]
Theodore Ts'of5166762017-12-17 22:00:59 -05001// SPDX-License-Identifier: LGPL-2.1
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -05002/*
3 * Copyright IBM Corporation, 2007
4 * Author Aneesh Kumar K.V <[email protected]>
5 *
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -05006 */
7
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -04009#include "ext4_jbd2.h"
Theodore Ts'o4a092d72012-11-28 13:03:30 -050010#include "ext4_extents.h"
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050011
12/*
13 * The contiguous blocks details which can be
14 * represented by a single extent
15 */
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -040016struct migrate_struct {
17 ext4_lblk_t first_block, last_block, curr_block;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050018 ext4_fsblk_t first_pblock, last_pblock;
19};
20
21static int finish_range(handle_t *handle, struct inode *inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -040022 struct migrate_struct *lb)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050023
24{
25 int retval = 0, needed;
26 struct ext4_extent newext;
27 struct ext4_ext_path *path;
28 if (lb->first_pblock == 0)
29 return 0;
30
31 /* Add the extent to temp inode*/
32 newext.ee_block = cpu_to_le32(lb->first_block);
33 newext.ee_len = cpu_to_le16(lb->last_block - lb->first_block + 1);
34 ext4_ext_store_pblock(&newext, lb->first_pblock);
Bhaskar Chowdhury3088e5a2021-03-27 16:00:05 +053035 /* Locking only for convenience since we are operating on temp inode */
Dmitry Monakhov4b1f1662014-07-27 22:28:15 -040036 down_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'oed8a1a72014-09-01 14:43:09 -040037 path = ext4_find_extent(inode, lb->first_block, NULL, 0);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050038 if (IS_ERR(path)) {
39 retval = PTR_ERR(path);
Aneesh Kumar K.Vb35905c2008-02-25 16:54:37 -050040 path = NULL;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050041 goto err_out;
42 }
43
44 /*
45 * Calculate the credit needed to inserting this extent
Bhaskar Chowdhury3088e5a2021-03-27 16:00:05 +053046 * Since we are doing this in loop we may accumulate extra
47 * credit. But below we try to not accumulate too much
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050048 * of them by restarting the journal.
49 */
Mingming Caoee12b632008-08-19 22:16:05 -040050 needed = ext4_ext_calc_credits_for_single_extent(inode,
51 lb->last_block - lb->first_block + 1, path);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050052
Jan Kara83448bd2019-11-05 17:44:29 +010053 retval = ext4_datasem_ensure_credits(handle, inode, needed, needed, 0);
Jan Karaa4130362019-11-05 17:44:16 +010054 if (retval < 0)
55 goto err_out;
Theodore Ts'odfe50802014-09-01 14:37:09 -040056 retval = ext4_ext_insert_extent(handle, inode, &path, &newext, 0);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050057err_out:
Dmitry Monakhov4b1f1662014-07-27 22:28:15 -040058 up_write((&EXT4_I(inode)->i_data_sem));
Ye Bin7ff5fdd2022-09-24 10:12:11 +080059 ext4_free_ext_path(path);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050060 lb->first_pblock = 0;
61 return retval;
62}
63
64static int update_extent_range(handle_t *handle, struct inode *inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -040065 ext4_fsblk_t pblock, struct migrate_struct *lb)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050066{
67 int retval;
68 /*
69 * See if we can add on to the existing range (if it exists)
70 */
71 if (lb->first_pblock &&
72 (lb->last_pblock+1 == pblock) &&
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -040073 (lb->last_block+1 == lb->curr_block)) {
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050074 lb->last_pblock = pblock;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -040075 lb->last_block = lb->curr_block;
76 lb->curr_block++;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050077 return 0;
78 }
79 /*
80 * Start a new range.
81 */
82 retval = finish_range(handle, inode, lb);
83 lb->first_pblock = lb->last_pblock = pblock;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -040084 lb->first_block = lb->last_block = lb->curr_block;
85 lb->curr_block++;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050086 return retval;
87}
88
89static int update_ind_extent_range(handle_t *handle, struct inode *inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -040090 ext4_fsblk_t pblock,
91 struct migrate_struct *lb)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050092{
93 struct buffer_head *bh;
94 __le32 *i_data;
95 int i, retval = 0;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050096 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
97
Theodore Ts'ofb265c9c2018-11-25 17:20:31 -050098 bh = ext4_sb_bread(inode->i_sb, pblock, 0);
99 if (IS_ERR(bh))
100 return PTR_ERR(bh);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500101
102 i_data = (__le32 *)bh->b_data;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400103 for (i = 0; i < max_entries; i++) {
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500104 if (i_data[i]) {
105 retval = update_extent_range(handle, inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400106 le32_to_cpu(i_data[i]), lb);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500107 if (retval)
108 break;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400109 } else {
110 lb->curr_block++;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500111 }
112 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500113 put_bh(bh);
114 return retval;
115
116}
117
118static int update_dind_extent_range(handle_t *handle, struct inode *inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400119 ext4_fsblk_t pblock,
120 struct migrate_struct *lb)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500121{
122 struct buffer_head *bh;
123 __le32 *i_data;
124 int i, retval = 0;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500125 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
126
Theodore Ts'ofb265c9c2018-11-25 17:20:31 -0500127 bh = ext4_sb_bread(inode->i_sb, pblock, 0);
128 if (IS_ERR(bh))
129 return PTR_ERR(bh);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500130
131 i_data = (__le32 *)bh->b_data;
132 for (i = 0; i < max_entries; i++) {
133 if (i_data[i]) {
134 retval = update_ind_extent_range(handle, inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400135 le32_to_cpu(i_data[i]), lb);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500136 if (retval)
137 break;
138 } else {
139 /* Only update the file block number */
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400140 lb->curr_block += max_entries;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500141 }
142 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500143 put_bh(bh);
144 return retval;
145
146}
147
148static int update_tind_extent_range(handle_t *handle, struct inode *inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400149 ext4_fsblk_t pblock,
150 struct migrate_struct *lb)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500151{
152 struct buffer_head *bh;
153 __le32 *i_data;
154 int i, retval = 0;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500155 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
156
Theodore Ts'ofb265c9c2018-11-25 17:20:31 -0500157 bh = ext4_sb_bread(inode->i_sb, pblock, 0);
158 if (IS_ERR(bh))
159 return PTR_ERR(bh);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500160
161 i_data = (__le32 *)bh->b_data;
162 for (i = 0; i < max_entries; i++) {
163 if (i_data[i]) {
164 retval = update_dind_extent_range(handle, inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400165 le32_to_cpu(i_data[i]), lb);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500166 if (retval)
167 break;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400168 } else {
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500169 /* Only update the file block number */
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400170 lb->curr_block += max_entries * max_entries;
171 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500172 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500173 put_bh(bh);
174 return retval;
175
176}
177
178static int free_dind_blocks(handle_t *handle,
179 struct inode *inode, __le32 i_data)
180{
181 int i;
182 __le32 *tmp_idata;
183 struct buffer_head *bh;
Jan Kara83448bd2019-11-05 17:44:29 +0100184 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500185 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
Jan Karaa4130362019-11-05 17:44:16 +0100186 int err;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500187
Jan Kara83448bd2019-11-05 17:44:29 +0100188 bh = ext4_sb_bread(sb, le32_to_cpu(i_data), 0);
Theodore Ts'ofb265c9c2018-11-25 17:20:31 -0500189 if (IS_ERR(bh))
190 return PTR_ERR(bh);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500191
192 tmp_idata = (__le32 *)bh->b_data;
193 for (i = 0; i < max_entries; i++) {
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500194 if (tmp_idata[i]) {
Jan Karaa4130362019-11-05 17:44:16 +0100195 err = ext4_journal_ensure_credits(handle,
Jan Kara83448bd2019-11-05 17:44:29 +0100196 EXT4_RESERVE_TRANS_BLOCKS,
197 ext4_free_metadata_revoke_credits(sb, 1));
Jan Karaa4130362019-11-05 17:44:16 +0100198 if (err < 0) {
199 put_bh(bh);
200 return err;
201 }
Peter Huewe7dc57612011-02-21 21:01:42 -0500202 ext4_free_blocks(handle, inode, NULL,
Theodore Ts'oe6362602009-11-23 07:17:05 -0500203 le32_to_cpu(tmp_idata[i]), 1,
204 EXT4_FREE_BLOCKS_METADATA |
205 EXT4_FREE_BLOCKS_FORGET);
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500206 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500207 }
208 put_bh(bh);
Jan Kara83448bd2019-11-05 17:44:29 +0100209 err = ext4_journal_ensure_credits(handle, EXT4_RESERVE_TRANS_BLOCKS,
210 ext4_free_metadata_revoke_credits(sb, 1));
Jan Karaa4130362019-11-05 17:44:16 +0100211 if (err < 0)
212 return err;
Peter Huewe7dc57612011-02-21 21:01:42 -0500213 ext4_free_blocks(handle, inode, NULL, le32_to_cpu(i_data), 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -0500214 EXT4_FREE_BLOCKS_METADATA |
215 EXT4_FREE_BLOCKS_FORGET);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500216 return 0;
217}
218
219static int free_tind_blocks(handle_t *handle,
220 struct inode *inode, __le32 i_data)
221{
222 int i, retval = 0;
223 __le32 *tmp_idata;
224 struct buffer_head *bh;
225 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
226
Theodore Ts'ofb265c9c2018-11-25 17:20:31 -0500227 bh = ext4_sb_bread(inode->i_sb, le32_to_cpu(i_data), 0);
228 if (IS_ERR(bh))
229 return PTR_ERR(bh);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500230
231 tmp_idata = (__le32 *)bh->b_data;
232 for (i = 0; i < max_entries; i++) {
233 if (tmp_idata[i]) {
234 retval = free_dind_blocks(handle,
235 inode, tmp_idata[i]);
236 if (retval) {
237 put_bh(bh);
238 return retval;
239 }
240 }
241 }
242 put_bh(bh);
Jan Kara83448bd2019-11-05 17:44:29 +0100243 retval = ext4_journal_ensure_credits(handle, EXT4_RESERVE_TRANS_BLOCKS,
244 ext4_free_metadata_revoke_credits(inode->i_sb, 1));
Jan Karaa4130362019-11-05 17:44:16 +0100245 if (retval < 0)
246 return retval;
Peter Huewe7dc57612011-02-21 21:01:42 -0500247 ext4_free_blocks(handle, inode, NULL, le32_to_cpu(i_data), 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -0500248 EXT4_FREE_BLOCKS_METADATA |
249 EXT4_FREE_BLOCKS_FORGET);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500250 return 0;
251}
252
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500253static int free_ind_block(handle_t *handle, struct inode *inode, __le32 *i_data)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500254{
255 int retval;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500256
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500257 /* ei->i_data[EXT4_IND_BLOCK] */
258 if (i_data[0]) {
Jan Karaa4130362019-11-05 17:44:16 +0100259 retval = ext4_journal_ensure_credits(handle,
Jan Kara83448bd2019-11-05 17:44:29 +0100260 EXT4_RESERVE_TRANS_BLOCKS,
261 ext4_free_metadata_revoke_credits(inode->i_sb, 1));
Jan Karaa4130362019-11-05 17:44:16 +0100262 if (retval < 0)
263 return retval;
Peter Huewe7dc57612011-02-21 21:01:42 -0500264 ext4_free_blocks(handle, inode, NULL,
Theodore Ts'oe6362602009-11-23 07:17:05 -0500265 le32_to_cpu(i_data[0]), 1,
266 EXT4_FREE_BLOCKS_METADATA |
267 EXT4_FREE_BLOCKS_FORGET);
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500268 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500269
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500270 /* ei->i_data[EXT4_DIND_BLOCK] */
271 if (i_data[1]) {
272 retval = free_dind_blocks(handle, inode, i_data[1]);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500273 if (retval)
274 return retval;
275 }
276
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500277 /* ei->i_data[EXT4_TIND_BLOCK] */
278 if (i_data[2]) {
279 retval = free_tind_blocks(handle, inode, i_data[2]);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500280 if (retval)
281 return retval;
282 }
283 return 0;
284}
285
286static int ext4_ext_swap_inode_data(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400287 struct inode *tmp_inode)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500288{
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -0700289 int retval, retval2 = 0;
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500290 __le32 i_data[3];
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500291 struct ext4_inode_info *ei = EXT4_I(inode);
292 struct ext4_inode_info *tmp_ei = EXT4_I(tmp_inode);
293
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500294 /*
295 * One credit accounted for writing the
296 * i_data field of the original inode
297 */
Jan Kara83448bd2019-11-05 17:44:29 +0100298 retval = ext4_journal_ensure_credits(handle, 1, 0);
Jan Karaa4130362019-11-05 17:44:16 +0100299 if (retval < 0)
300 goto err_out;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500301
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500302 i_data[0] = ei->i_data[EXT4_IND_BLOCK];
303 i_data[1] = ei->i_data[EXT4_DIND_BLOCK];
304 i_data[2] = ei->i_data[EXT4_TIND_BLOCK];
305
306 down_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500307 /*
Theodore Ts'o1b9c12f2009-09-17 08:32:22 -0400308 * if EXT4_STATE_EXT_MIGRATE is cleared a block allocation
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400309 * happened after we started the migrate. We need to
310 * fail the migrate
311 */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500312 if (!ext4_test_inode_state(inode, EXT4_STATE_EXT_MIGRATE)) {
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400313 retval = -EAGAIN;
314 up_write(&EXT4_I(inode)->i_data_sem);
315 goto err_out;
316 } else
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500317 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400318 /*
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500319 * We have the extent map build with the tmp inode.
320 * Now copy the i_data across
321 */
Theodore Ts'o74e4e6d2011-05-03 09:34:42 -0400322 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500323 memcpy(ei->i_data, tmp_ei->i_data, sizeof(ei->i_data));
324
325 /*
326 * Update i_blocks with the new blocks that got
327 * allocated while adding extents for extent index
328 * blocks.
329 *
330 * While converting to extents we need not
Adam Buchbinderb8a074632016-03-09 23:49:05 -0500331 * update the original inode i_blocks for extent blocks
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500332 * via quota APIs. The quota update happened via tmp_inode already.
333 */
334 spin_lock(&inode->i_lock);
335 inode->i_blocks += tmp_inode->i_blocks;
336 spin_unlock(&inode->i_lock);
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500337 up_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500338
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500339 /*
340 * We mark the inode dirty after, because we decrement the
341 * i_blocks when freeing the indirect meta-data blocks
342 */
343 retval = free_ind_block(handle, inode, i_data);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -0700344 retval2 = ext4_mark_inode_dirty(handle, inode);
345 if (unlikely(retval2 && !retval))
346 retval = retval2;
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500347
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500348err_out:
349 return retval;
350}
351
352static int free_ext_idx(handle_t *handle, struct inode *inode,
353 struct ext4_extent_idx *ix)
354{
355 int i, retval = 0;
356 ext4_fsblk_t block;
357 struct buffer_head *bh;
358 struct ext4_extent_header *eh;
359
Theodore Ts'obf89d162010-10-27 21:30:14 -0400360 block = ext4_idx_pblock(ix);
Theodore Ts'ofb265c9c2018-11-25 17:20:31 -0500361 bh = ext4_sb_bread(inode->i_sb, block, 0);
362 if (IS_ERR(bh))
363 return PTR_ERR(bh);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500364
365 eh = (struct ext4_extent_header *)bh->b_data;
366 if (eh->eh_depth != 0) {
367 ix = EXT_FIRST_INDEX(eh);
368 for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ix++) {
369 retval = free_ext_idx(handle, inode, ix);
Jan Karaa4130362019-11-05 17:44:16 +0100370 if (retval) {
371 put_bh(bh);
372 return retval;
373 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500374 }
375 }
376 put_bh(bh);
Jan Kara83448bd2019-11-05 17:44:29 +0100377 retval = ext4_journal_ensure_credits(handle, EXT4_RESERVE_TRANS_BLOCKS,
378 ext4_free_metadata_revoke_credits(inode->i_sb, 1));
Jan Karaa4130362019-11-05 17:44:16 +0100379 if (retval < 0)
380 return retval;
Peter Huewe7dc57612011-02-21 21:01:42 -0500381 ext4_free_blocks(handle, inode, NULL, block, 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -0500382 EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET);
Jan Karaa4130362019-11-05 17:44:16 +0100383 return 0;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500384}
385
386/*
387 * Free the extent meta data blocks only
388 */
389static int free_ext_block(handle_t *handle, struct inode *inode)
390{
391 int i, retval = 0;
392 struct ext4_inode_info *ei = EXT4_I(inode);
393 struct ext4_extent_header *eh = (struct ext4_extent_header *)ei->i_data;
394 struct ext4_extent_idx *ix;
395 if (eh->eh_depth == 0)
396 /*
397 * No extra blocks allocated for extent meta data
398 */
399 return 0;
400 ix = EXT_FIRST_INDEX(eh);
401 for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ix++) {
402 retval = free_ext_idx(handle, inode, ix);
403 if (retval)
404 return retval;
405 }
406 return retval;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500407}
408
Aneesh Kumar K.V2a43a872008-09-13 12:52:26 -0400409int ext4_ext_migrate(struct inode *inode)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500410{
411 handle_t *handle;
412 int retval = 0, i;
413 __le32 *i_data;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500414 struct ext4_inode_info *ei;
415 struct inode *tmp_inode = NULL;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400416 struct migrate_struct lb;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500417 unsigned long max_entries;
Li Lingfeng07ea7a62022-06-17 14:25:15 +0800418 __u32 goal, tmp_csum_seed;
Dmitry Monakhov5cb81da2011-10-29 09:05:00 -0400419 uid_t owner[2];
Jan Kara00d873c2023-05-04 14:47:23 +0200420 int alloc_ctx;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500421
Theodore Ts'o83982b62009-01-06 14:53:16 -0500422 /*
423 * If the filesystem does not support extents, or the inode
424 * already is extent-based, error out.
425 */
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400426 if (!ext4_has_feature_extents(inode->i_sb) ||
Ye Bin1b8f7872022-10-18 10:27:01 +0800427 ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS) ||
428 ext4_has_inline_data(inode))
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500429 return -EINVAL;
430
Valerie Clementb8356c42008-02-05 10:56:37 -0500431 if (S_ISLNK(inode->i_mode) && inode->i_blocks == 0)
432 /*
433 * don't migrate fast symlink
434 */
435 return retval;
436
Jan Kara00d873c2023-05-04 14:47:23 +0200437 alloc_ctx = ext4_writepages_down_write(inode->i_sb);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800438
Theodore Ts'o4b217632013-02-09 12:50:27 -0500439 /*
Theodore Ts'o6eeaf882022-01-05 23:59:56 -0500440 * Worst case we can touch the allocation bitmaps and a block
Xiang wangx1f3ddff2022-06-05 17:15:03 +0800441 * group descriptor block. We do need to worry about
Theodore Ts'o6eeaf882022-01-05 23:59:56 -0500442 * credits for modifying the quota inode.
Theodore Ts'o4b217632013-02-09 12:50:27 -0500443 */
Theodore Ts'o9924a922013-02-08 21:59:22 -0500444 handle = ext4_journal_start(inode, EXT4_HT_MIGRATE,
Theodore Ts'o6eeaf882022-01-05 23:59:56 -0500445 3 + EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb));
Theodore Ts'o4b217632013-02-09 12:50:27 -0500446
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500447 if (IS_ERR(handle)) {
448 retval = PTR_ERR(handle);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800449 goto out_unlock;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500450 }
Andreas Dilger11013912009-06-13 11:45:35 -0400451 goal = (((inode->i_ino - 1) / EXT4_INODES_PER_GROUP(inode->i_sb)) *
452 EXT4_INODES_PER_GROUP(inode->i_sb)) + 1;
Eric W. Biederman08cefc72012-02-07 15:41:49 -0800453 owner[0] = i_uid_read(inode);
454 owner[1] = i_gid_read(inode);
David Howells2b0143b2015-03-17 22:25:59 +0000455 tmp_inode = ext4_new_inode(handle, d_inode(inode->i_sb->s_root),
Tahsin Erdogan1b917ed2017-06-21 21:21:39 -0400456 S_IFREG, NULL, goal, owner, 0);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500457 if (IS_ERR(tmp_inode)) {
Dan Carpentera0cc9102012-02-20 17:53:06 -0500458 retval = PTR_ERR(tmp_inode);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500459 ext4_journal_stop(handle);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800460 goto out_unlock;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500461 }
Luís Henriquese81c9302021-12-14 17:50:58 +0000462 /*
463 * Use the correct seed for checksum (i.e. the seed from 'inode'). This
464 * is so that the metadata blocks will have the correct checksum after
465 * the migration.
Luís Henriquese81c9302021-12-14 17:50:58 +0000466 */
467 ei = EXT4_I(inode);
Li Lingfeng07ea7a62022-06-17 14:25:15 +0800468 tmp_csum_seed = EXT4_I(tmp_inode)->i_csum_seed;
Luís Henriquese81c9302021-12-14 17:50:58 +0000469 EXT4_I(tmp_inode)->i_csum_seed = ei->i_csum_seed;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500470 i_size_write(tmp_inode, i_size_read(inode));
471 /*
Dmitry Monakhovf39490b2010-03-01 23:14:36 -0500472 * Set the i_nlink to zero so it will be deleted later
473 * when we drop inode reference.
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500474 */
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200475 clear_nlink(tmp_inode);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500476
477 ext4_ext_tree_init(handle, tmp_inode);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500478 ext4_journal_stop(handle);
479
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500480 /*
481 * start with one credit accounted for
482 * superblock modification.
483 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300484 * For the tmp_inode we already have committed the
Anatol Pomozov70261f52013-08-28 14:40:12 -0400485 * transaction that created the inode. Later as and
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500486 * when we add extents we extent the journal
487 */
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500488 /*
hongnanlif340b3d2022-01-21 15:06:11 +0800489 * Even though we take i_rwsem we can still cause block
Theodore Ts'o1b9c12f2009-09-17 08:32:22 -0400490 * allocation via mmap write to holes. If we have allocated
491 * new blocks we fail migrate. New block allocation will
492 * clear EXT4_STATE_EXT_MIGRATE flag. The flag is updated
493 * with i_data_sem held to prevent racing with block
494 * allocation.
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400495 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400496 down_read(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500497 ext4_set_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400498 up_read((&EXT4_I(inode)->i_data_sem));
499
Theodore Ts'o9924a922013-02-08 21:59:22 -0500500 handle = ext4_journal_start(inode, EXT4_HT_MIGRATE, 1);
Dmitry Monakhovf39490b2010-03-01 23:14:36 -0500501 if (IS_ERR(handle)) {
Dmitry Monakhovf39490b2010-03-01 23:14:36 -0500502 retval = PTR_ERR(handle);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800503 goto out_tmp_inode;
Dmitry Monakhovf39490b2010-03-01 23:14:36 -0500504 }
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500505
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500506 i_data = ei->i_data;
507 memset(&lb, 0, sizeof(lb));
508
509 /* 32 bit block address 4 bytes */
510 max_entries = inode->i_sb->s_blocksize >> 2;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400511 for (i = 0; i < EXT4_NDIR_BLOCKS; i++) {
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500512 if (i_data[i]) {
513 retval = update_extent_range(handle, tmp_inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400514 le32_to_cpu(i_data[i]), &lb);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500515 if (retval)
516 goto err_out;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400517 } else
518 lb.curr_block++;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500519 }
520 if (i_data[EXT4_IND_BLOCK]) {
521 retval = update_ind_extent_range(handle, tmp_inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400522 le32_to_cpu(i_data[EXT4_IND_BLOCK]), &lb);
Colin Ian Kinga92abd72018-12-04 00:16:44 -0500523 if (retval)
524 goto err_out;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500525 } else
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400526 lb.curr_block += max_entries;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500527 if (i_data[EXT4_DIND_BLOCK]) {
528 retval = update_dind_extent_range(handle, tmp_inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400529 le32_to_cpu(i_data[EXT4_DIND_BLOCK]), &lb);
Colin Ian Kinga92abd72018-12-04 00:16:44 -0500530 if (retval)
531 goto err_out;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500532 } else
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400533 lb.curr_block += max_entries * max_entries;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500534 if (i_data[EXT4_TIND_BLOCK]) {
535 retval = update_tind_extent_range(handle, tmp_inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400536 le32_to_cpu(i_data[EXT4_TIND_BLOCK]), &lb);
Colin Ian Kinga92abd72018-12-04 00:16:44 -0500537 if (retval)
538 goto err_out;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500539 }
540 /*
541 * Build the last extent
542 */
543 retval = finish_range(handle, tmp_inode, &lb);
544err_out:
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500545 if (retval)
546 /*
547 * Failure case delete the extent information with the
548 * tmp_inode
549 */
550 free_ext_block(handle, tmp_inode);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400551 else {
552 retval = ext4_ext_swap_inode_data(handle, inode, tmp_inode);
553 if (retval)
554 /*
555 * if we fail to swap inode data free the extent
556 * details of the tmp inode
557 */
558 free_ext_block(handle, tmp_inode);
559 }
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500560
561 /* We mark the tmp_inode dirty via ext4_ext_tree_init. */
Jan Kara83448bd2019-11-05 17:44:29 +0100562 retval = ext4_journal_ensure_credits(handle, 1, 0);
Jan Karaa4130362019-11-05 17:44:16 +0100563 if (retval < 0)
564 goto out_stop;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500565 /*
566 * Mark the tmp_inode as of size zero
567 */
568 i_size_write(tmp_inode, 0);
569
570 /*
571 * set the i_blocks count to zero
Wang Shilong58d86a52014-11-25 16:17:29 -0500572 * so that the ext4_evict_inode() does the
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500573 * right job
574 *
575 * We don't need to take the i_lock because
576 * the inode is not visible to user space.
577 */
578 tmp_inode->i_blocks = 0;
Li Lingfeng07ea7a62022-06-17 14:25:15 +0800579 EXT4_I(tmp_inode)->i_csum_seed = tmp_csum_seed;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500580
581 /* Reset the extent details */
582 ext4_ext_tree_init(handle, tmp_inode);
Jan Karaa4130362019-11-05 17:44:16 +0100583out_stop:
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500584 ext4_journal_stop(handle);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800585out_tmp_inode:
Aneesh Kumar K.Va8526e82009-08-25 22:36:05 -0400586 unlock_new_inode(tmp_inode);
Dan Carpenter09054262009-02-15 20:02:19 -0500587 iput(tmp_inode);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800588out_unlock:
Jan Kara00d873c2023-05-04 14:47:23 +0200589 ext4_writepages_up_write(inode->i_sb, alloc_ctx);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500590 return retval;
591}
Lukas Czerner0d14b092013-04-10 23:32:52 -0400592
593/*
594 * Migrate a simple extent-based inode to use the i_blocks[] array
595 */
596int ext4_ind_migrate(struct inode *inode)
597{
598 struct ext4_extent_header *eh;
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800599 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
600 struct ext4_super_block *es = sbi->s_es;
Lukas Czerner0d14b092013-04-10 23:32:52 -0400601 struct ext4_inode_info *ei = EXT4_I(inode);
602 struct ext4_extent *ex;
603 unsigned int i, len;
Eryu Guan8974fec2015-07-04 00:03:44 -0400604 ext4_lblk_t start, end;
Lukas Czerner0d14b092013-04-10 23:32:52 -0400605 ext4_fsblk_t blk;
606 handle_t *handle;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -0700607 int ret, ret2 = 0;
Jan Kara00d873c2023-05-04 14:47:23 +0200608 int alloc_ctx;
Lukas Czerner0d14b092013-04-10 23:32:52 -0400609
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400610 if (!ext4_has_feature_extents(inode->i_sb) ||
Lukas Czerner0d14b092013-04-10 23:32:52 -0400611 (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
612 return -EINVAL;
613
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400614 if (ext4_has_feature_bigalloc(inode->i_sb))
Lukas Czerner43e50f52013-04-11 10:54:46 -0400615 return -EOPNOTSUPP;
616
Eryu Guand6f123a2015-07-03 23:56:50 -0400617 /*
618 * In order to get correct extent info, force all delayed allocation
619 * blocks to be allocated, otherwise delayed allocation blocks may not
620 * be reflected and bypass the checks on extent header.
621 */
622 if (test_opt(inode->i_sb, DELALLOC))
623 ext4_alloc_da_blocks(inode);
624
Jan Kara00d873c2023-05-04 14:47:23 +0200625 alloc_ctx = ext4_writepages_down_write(inode->i_sb);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800626
Lukas Czerner0d14b092013-04-10 23:32:52 -0400627 handle = ext4_journal_start(inode, EXT4_HT_MIGRATE, 1);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800628 if (IS_ERR(handle)) {
629 ret = PTR_ERR(handle);
630 goto out_unlock;
631 }
Lukas Czerner0d14b092013-04-10 23:32:52 -0400632
633 down_write(&EXT4_I(inode)->i_data_sem);
634 ret = ext4_ext_check_inode(inode);
635 if (ret)
636 goto errout;
637
638 eh = ext_inode_hdr(inode);
639 ex = EXT_FIRST_EXTENT(eh);
640 if (ext4_blocks_count(es) > EXT4_MAX_BLOCK_FILE_PHYS ||
641 eh->eh_depth != 0 || le16_to_cpu(eh->eh_entries) > 1) {
642 ret = -EOPNOTSUPP;
643 goto errout;
644 }
645 if (eh->eh_entries == 0)
Eryu Guan8974fec2015-07-04 00:03:44 -0400646 blk = len = start = end = 0;
Lukas Czerner0d14b092013-04-10 23:32:52 -0400647 else {
648 len = le16_to_cpu(ex->ee_len);
649 blk = ext4_ext_pblock(ex);
Eryu Guan8974fec2015-07-04 00:03:44 -0400650 start = le32_to_cpu(ex->ee_block);
651 end = start + len - 1;
Eryu Guand6f123a2015-07-03 23:56:50 -0400652 if (end >= EXT4_NDIR_BLOCKS) {
Lukas Czerner0d14b092013-04-10 23:32:52 -0400653 ret = -EOPNOTSUPP;
654 goto errout;
655 }
656 }
657
658 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
659 memset(ei->i_data, 0, sizeof(ei->i_data));
Eryu Guan8974fec2015-07-04 00:03:44 -0400660 for (i = start; i <= end; i++)
Lukas Czerner0d14b092013-04-10 23:32:52 -0400661 ei->i_data[i] = cpu_to_le32(blk++);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -0700662 ret2 = ext4_mark_inode_dirty(handle, inode);
663 if (unlikely(ret2 && !ret))
664 ret = ret2;
Lukas Czerner0d14b092013-04-10 23:32:52 -0400665errout:
Lukas Czerner0d14b092013-04-10 23:32:52 -0400666 up_write(&EXT4_I(inode)->i_data_sem);
Artem Sadovnikovd43776b2024-08-29 15:22:09 +0000667 ext4_journal_stop(handle);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800668out_unlock:
Jan Kara00d873c2023-05-04 14:47:23 +0200669 ext4_writepages_up_write(inode->i_sb, alloc_ctx);
Lukas Czerner0d14b092013-04-10 23:32:52 -0400670 return ret;
671}