blob: 0a220ec9862de3ca520d609ec2803008b0412556 [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{
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800411 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500412 handle_t *handle;
413 int retval = 0, i;
414 __le32 *i_data;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500415 struct ext4_inode_info *ei;
416 struct inode *tmp_inode = NULL;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400417 struct migrate_struct lb;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500418 unsigned long max_entries;
Li Lingfeng07ea7a62022-06-17 14:25:15 +0800419 __u32 goal, tmp_csum_seed;
Dmitry Monakhov5cb81da2011-10-29 09:05:00 -0400420 uid_t owner[2];
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) ||
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400427 (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500428 return -EINVAL;
429
Valerie Clementb8356c42008-02-05 10:56:37 -0500430 if (S_ISLNK(inode->i_mode) && inode->i_blocks == 0)
431 /*
432 * don't migrate fast symlink
433 */
434 return retval;
435
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800436 percpu_down_write(&sbi->s_writepages_rwsem);
437
Theodore Ts'o4b217632013-02-09 12:50:27 -0500438 /*
Theodore Ts'o6eeaf882022-01-05 23:59:56 -0500439 * Worst case we can touch the allocation bitmaps and a block
Xiang wangx1f3ddff2022-06-05 17:15:03 +0800440 * group descriptor block. We do need to worry about
Theodore Ts'o6eeaf882022-01-05 23:59:56 -0500441 * credits for modifying the quota inode.
Theodore Ts'o4b217632013-02-09 12:50:27 -0500442 */
Theodore Ts'o9924a922013-02-08 21:59:22 -0500443 handle = ext4_journal_start(inode, EXT4_HT_MIGRATE,
Theodore Ts'o6eeaf882022-01-05 23:59:56 -0500444 3 + EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb));
Theodore Ts'o4b217632013-02-09 12:50:27 -0500445
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500446 if (IS_ERR(handle)) {
447 retval = PTR_ERR(handle);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800448 goto out_unlock;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500449 }
Andreas Dilger11013912009-06-13 11:45:35 -0400450 goal = (((inode->i_ino - 1) / EXT4_INODES_PER_GROUP(inode->i_sb)) *
451 EXT4_INODES_PER_GROUP(inode->i_sb)) + 1;
Eric W. Biederman08cefc72012-02-07 15:41:49 -0800452 owner[0] = i_uid_read(inode);
453 owner[1] = i_gid_read(inode);
David Howells2b0143b2015-03-17 22:25:59 +0000454 tmp_inode = ext4_new_inode(handle, d_inode(inode->i_sb->s_root),
Tahsin Erdogan1b917ed2017-06-21 21:21:39 -0400455 S_IFREG, NULL, goal, owner, 0);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500456 if (IS_ERR(tmp_inode)) {
Dan Carpentera0cc9102012-02-20 17:53:06 -0500457 retval = PTR_ERR(tmp_inode);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500458 ext4_journal_stop(handle);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800459 goto out_unlock;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500460 }
Luís Henriquese81c9302021-12-14 17:50:58 +0000461 /*
462 * Use the correct seed for checksum (i.e. the seed from 'inode'). This
463 * is so that the metadata blocks will have the correct checksum after
464 * the migration.
Luís Henriquese81c9302021-12-14 17:50:58 +0000465 */
466 ei = EXT4_I(inode);
Li Lingfeng07ea7a62022-06-17 14:25:15 +0800467 tmp_csum_seed = EXT4_I(tmp_inode)->i_csum_seed;
Luís Henriquese81c9302021-12-14 17:50:58 +0000468 EXT4_I(tmp_inode)->i_csum_seed = ei->i_csum_seed;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500469 i_size_write(tmp_inode, i_size_read(inode));
470 /*
Dmitry Monakhovf39490b2010-03-01 23:14:36 -0500471 * Set the i_nlink to zero so it will be deleted later
472 * when we drop inode reference.
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500473 */
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200474 clear_nlink(tmp_inode);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500475
476 ext4_ext_tree_init(handle, tmp_inode);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500477 ext4_journal_stop(handle);
478
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500479 /*
480 * start with one credit accounted for
481 * superblock modification.
482 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300483 * For the tmp_inode we already have committed the
Anatol Pomozov70261f52013-08-28 14:40:12 -0400484 * transaction that created the inode. Later as and
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500485 * when we add extents we extent the journal
486 */
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500487 /*
hongnanlif340b3d2022-01-21 15:06:11 +0800488 * Even though we take i_rwsem we can still cause block
Theodore Ts'o1b9c12f2009-09-17 08:32:22 -0400489 * allocation via mmap write to holes. If we have allocated
490 * new blocks we fail migrate. New block allocation will
491 * clear EXT4_STATE_EXT_MIGRATE flag. The flag is updated
492 * with i_data_sem held to prevent racing with block
493 * allocation.
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400494 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400495 down_read(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500496 ext4_set_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400497 up_read((&EXT4_I(inode)->i_data_sem));
498
Theodore Ts'o9924a922013-02-08 21:59:22 -0500499 handle = ext4_journal_start(inode, EXT4_HT_MIGRATE, 1);
Dmitry Monakhovf39490b2010-03-01 23:14:36 -0500500 if (IS_ERR(handle)) {
Dmitry Monakhovf39490b2010-03-01 23:14:36 -0500501 retval = PTR_ERR(handle);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800502 goto out_tmp_inode;
Dmitry Monakhovf39490b2010-03-01 23:14:36 -0500503 }
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500504
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500505 i_data = ei->i_data;
506 memset(&lb, 0, sizeof(lb));
507
508 /* 32 bit block address 4 bytes */
509 max_entries = inode->i_sb->s_blocksize >> 2;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400510 for (i = 0; i < EXT4_NDIR_BLOCKS; i++) {
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500511 if (i_data[i]) {
512 retval = update_extent_range(handle, tmp_inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400513 le32_to_cpu(i_data[i]), &lb);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500514 if (retval)
515 goto err_out;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400516 } else
517 lb.curr_block++;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500518 }
519 if (i_data[EXT4_IND_BLOCK]) {
520 retval = update_ind_extent_range(handle, tmp_inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400521 le32_to_cpu(i_data[EXT4_IND_BLOCK]), &lb);
Colin Ian Kinga92abd72018-12-04 00:16:44 -0500522 if (retval)
523 goto err_out;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500524 } else
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400525 lb.curr_block += max_entries;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500526 if (i_data[EXT4_DIND_BLOCK]) {
527 retval = update_dind_extent_range(handle, tmp_inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400528 le32_to_cpu(i_data[EXT4_DIND_BLOCK]), &lb);
Colin Ian Kinga92abd72018-12-04 00:16:44 -0500529 if (retval)
530 goto err_out;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500531 } else
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400532 lb.curr_block += max_entries * max_entries;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500533 if (i_data[EXT4_TIND_BLOCK]) {
534 retval = update_tind_extent_range(handle, tmp_inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400535 le32_to_cpu(i_data[EXT4_TIND_BLOCK]), &lb);
Colin Ian Kinga92abd72018-12-04 00:16:44 -0500536 if (retval)
537 goto err_out;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500538 }
539 /*
540 * Build the last extent
541 */
542 retval = finish_range(handle, tmp_inode, &lb);
543err_out:
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500544 if (retval)
545 /*
546 * Failure case delete the extent information with the
547 * tmp_inode
548 */
549 free_ext_block(handle, tmp_inode);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400550 else {
551 retval = ext4_ext_swap_inode_data(handle, inode, tmp_inode);
552 if (retval)
553 /*
554 * if we fail to swap inode data free the extent
555 * details of the tmp inode
556 */
557 free_ext_block(handle, tmp_inode);
558 }
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500559
560 /* We mark the tmp_inode dirty via ext4_ext_tree_init. */
Jan Kara83448bd2019-11-05 17:44:29 +0100561 retval = ext4_journal_ensure_credits(handle, 1, 0);
Jan Karaa4130362019-11-05 17:44:16 +0100562 if (retval < 0)
563 goto out_stop;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500564 /*
565 * Mark the tmp_inode as of size zero
566 */
567 i_size_write(tmp_inode, 0);
568
569 /*
570 * set the i_blocks count to zero
Wang Shilong58d86a52014-11-25 16:17:29 -0500571 * so that the ext4_evict_inode() does the
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500572 * right job
573 *
574 * We don't need to take the i_lock because
575 * the inode is not visible to user space.
576 */
577 tmp_inode->i_blocks = 0;
Li Lingfeng07ea7a62022-06-17 14:25:15 +0800578 EXT4_I(tmp_inode)->i_csum_seed = tmp_csum_seed;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500579
580 /* Reset the extent details */
581 ext4_ext_tree_init(handle, tmp_inode);
Jan Karaa4130362019-11-05 17:44:16 +0100582out_stop:
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500583 ext4_journal_stop(handle);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800584out_tmp_inode:
Aneesh Kumar K.Va8526e82009-08-25 22:36:05 -0400585 unlock_new_inode(tmp_inode);
Dan Carpenter09054262009-02-15 20:02:19 -0500586 iput(tmp_inode);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800587out_unlock:
588 percpu_up_write(&sbi->s_writepages_rwsem);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500589 return retval;
590}
Lukas Czerner0d14b092013-04-10 23:32:52 -0400591
592/*
593 * Migrate a simple extent-based inode to use the i_blocks[] array
594 */
595int ext4_ind_migrate(struct inode *inode)
596{
597 struct ext4_extent_header *eh;
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800598 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
599 struct ext4_super_block *es = sbi->s_es;
Lukas Czerner0d14b092013-04-10 23:32:52 -0400600 struct ext4_inode_info *ei = EXT4_I(inode);
601 struct ext4_extent *ex;
602 unsigned int i, len;
Eryu Guan8974fec2015-07-04 00:03:44 -0400603 ext4_lblk_t start, end;
Lukas Czerner0d14b092013-04-10 23:32:52 -0400604 ext4_fsblk_t blk;
605 handle_t *handle;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -0700606 int ret, ret2 = 0;
Lukas Czerner0d14b092013-04-10 23:32:52 -0400607
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400608 if (!ext4_has_feature_extents(inode->i_sb) ||
Lukas Czerner0d14b092013-04-10 23:32:52 -0400609 (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
610 return -EINVAL;
611
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400612 if (ext4_has_feature_bigalloc(inode->i_sb))
Lukas Czerner43e50f52013-04-11 10:54:46 -0400613 return -EOPNOTSUPP;
614
Eryu Guand6f123a2015-07-03 23:56:50 -0400615 /*
616 * In order to get correct extent info, force all delayed allocation
617 * blocks to be allocated, otherwise delayed allocation blocks may not
618 * be reflected and bypass the checks on extent header.
619 */
620 if (test_opt(inode->i_sb, DELALLOC))
621 ext4_alloc_da_blocks(inode);
622
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800623 percpu_down_write(&sbi->s_writepages_rwsem);
624
Lukas Czerner0d14b092013-04-10 23:32:52 -0400625 handle = ext4_journal_start(inode, EXT4_HT_MIGRATE, 1);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800626 if (IS_ERR(handle)) {
627 ret = PTR_ERR(handle);
628 goto out_unlock;
629 }
Lukas Czerner0d14b092013-04-10 23:32:52 -0400630
631 down_write(&EXT4_I(inode)->i_data_sem);
632 ret = ext4_ext_check_inode(inode);
633 if (ret)
634 goto errout;
635
636 eh = ext_inode_hdr(inode);
637 ex = EXT_FIRST_EXTENT(eh);
638 if (ext4_blocks_count(es) > EXT4_MAX_BLOCK_FILE_PHYS ||
639 eh->eh_depth != 0 || le16_to_cpu(eh->eh_entries) > 1) {
640 ret = -EOPNOTSUPP;
641 goto errout;
642 }
643 if (eh->eh_entries == 0)
Eryu Guan8974fec2015-07-04 00:03:44 -0400644 blk = len = start = end = 0;
Lukas Czerner0d14b092013-04-10 23:32:52 -0400645 else {
646 len = le16_to_cpu(ex->ee_len);
647 blk = ext4_ext_pblock(ex);
Eryu Guan8974fec2015-07-04 00:03:44 -0400648 start = le32_to_cpu(ex->ee_block);
649 end = start + len - 1;
Eryu Guand6f123a2015-07-03 23:56:50 -0400650 if (end >= EXT4_NDIR_BLOCKS) {
Lukas Czerner0d14b092013-04-10 23:32:52 -0400651 ret = -EOPNOTSUPP;
652 goto errout;
653 }
654 }
655
656 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
657 memset(ei->i_data, 0, sizeof(ei->i_data));
Eryu Guan8974fec2015-07-04 00:03:44 -0400658 for (i = start; i <= end; i++)
Lukas Czerner0d14b092013-04-10 23:32:52 -0400659 ei->i_data[i] = cpu_to_le32(blk++);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -0700660 ret2 = ext4_mark_inode_dirty(handle, inode);
661 if (unlikely(ret2 && !ret))
662 ret = ret2;
Lukas Czerner0d14b092013-04-10 23:32:52 -0400663errout:
664 ext4_journal_stop(handle);
665 up_write(&EXT4_I(inode)->i_data_sem);
Eric Biggerscb85f4d2020-02-19 10:30:47 -0800666out_unlock:
667 percpu_up_write(&sbi->s_writepages_rwsem);
Lukas Czerner0d14b092013-04-10 23:32:52 -0400668 return ret;
669}