blob: 061c300703c72240d167944ea4b98990027ef671 [file] [log] [blame]
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -05001/*
2 * Copyright IBM Corporation, 2007
3 * Author Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2.1 of the GNU Lesser General Public License
7 * as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it would be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 *
13 */
14
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040016#include "ext4_jbd2.h"
Theodore Ts'o4a092d72012-11-28 13:03:30 -050017#include "ext4_extents.h"
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050018
19/*
20 * The contiguous blocks details which can be
21 * represented by a single extent
22 */
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -040023struct migrate_struct {
24 ext4_lblk_t first_block, last_block, curr_block;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050025 ext4_fsblk_t first_pblock, last_pblock;
26};
27
28static int finish_range(handle_t *handle, struct inode *inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -040029 struct migrate_struct *lb)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050030
31{
32 int retval = 0, needed;
33 struct ext4_extent newext;
34 struct ext4_ext_path *path;
35 if (lb->first_pblock == 0)
36 return 0;
37
38 /* Add the extent to temp inode*/
39 newext.ee_block = cpu_to_le32(lb->first_block);
40 newext.ee_len = cpu_to_le16(lb->last_block - lb->first_block + 1);
41 ext4_ext_store_pblock(&newext, lb->first_pblock);
Dmitry Monakhov4b1f1662014-07-27 22:28:15 -040042 /* Locking only for convinience since we are operating on temp inode */
43 down_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o107a7bd2013-08-16 21:23:41 -040044 path = ext4_ext_find_extent(inode, lb->first_block, NULL, 0);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050045
46 if (IS_ERR(path)) {
47 retval = PTR_ERR(path);
Aneesh Kumar K.Vb35905c2008-02-25 16:54:37 -050048 path = NULL;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050049 goto err_out;
50 }
51
52 /*
53 * Calculate the credit needed to inserting this extent
54 * Since we are doing this in loop we may accumalate extra
55 * credit. But below we try to not accumalate too much
56 * of them by restarting the journal.
57 */
Mingming Caoee12b632008-08-19 22:16:05 -040058 needed = ext4_ext_calc_credits_for_single_extent(inode,
59 lb->last_block - lb->first_block + 1, path);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050060
61 /*
62 * Make sure the credit we accumalated is not really high
63 */
Frank Mayhar03901312009-01-07 00:06:22 -050064 if (needed && ext4_handle_has_enough_credits(handle,
65 EXT4_RESERVE_TRANS_BLOCKS)) {
Dmitry Monakhov4b1f1662014-07-27 22:28:15 -040066 up_write((&EXT4_I(inode)->i_data_sem));
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050067 retval = ext4_journal_restart(handle, needed);
Dmitry Monakhov4b1f1662014-07-27 22:28:15 -040068 down_write((&EXT4_I(inode)->i_data_sem));
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050069 if (retval)
70 goto err_out;
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -050071 } else if (needed) {
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050072 retval = ext4_journal_extend(handle, needed);
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -050073 if (retval) {
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050074 /*
75 * IF not able to extend the journal restart the journal
76 */
Dmitry Monakhov4b1f1662014-07-27 22:28:15 -040077 up_write((&EXT4_I(inode)->i_data_sem));
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050078 retval = ext4_journal_restart(handle, needed);
Dmitry Monakhov4b1f1662014-07-27 22:28:15 -040079 down_write((&EXT4_I(inode)->i_data_sem));
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050080 if (retval)
81 goto err_out;
82 }
83 }
Theodore Ts'odfe50802014-09-01 14:37:09 -040084 retval = ext4_ext_insert_extent(handle, inode, &path, &newext, 0);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050085err_out:
Dmitry Monakhov4b1f1662014-07-27 22:28:15 -040086 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'ob7ea89a2014-09-01 14:39:09 -040087 ext4_ext_drop_refs(path);
88 kfree(path);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050089 lb->first_pblock = 0;
90 return retval;
91}
92
93static int update_extent_range(handle_t *handle, struct inode *inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -040094 ext4_fsblk_t pblock, struct migrate_struct *lb)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050095{
96 int retval;
97 /*
98 * See if we can add on to the existing range (if it exists)
99 */
100 if (lb->first_pblock &&
101 (lb->last_pblock+1 == pblock) &&
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400102 (lb->last_block+1 == lb->curr_block)) {
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500103 lb->last_pblock = pblock;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400104 lb->last_block = lb->curr_block;
105 lb->curr_block++;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500106 return 0;
107 }
108 /*
109 * Start a new range.
110 */
111 retval = finish_range(handle, inode, lb);
112 lb->first_pblock = lb->last_pblock = pblock;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400113 lb->first_block = lb->last_block = lb->curr_block;
114 lb->curr_block++;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500115 return retval;
116}
117
118static int update_ind_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
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500127 bh = sb_bread(inode->i_sb, pblock);
128 if (!bh)
129 return -EIO;
130
131 i_data = (__le32 *)bh->b_data;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400132 for (i = 0; i < max_entries; i++) {
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500133 if (i_data[i]) {
134 retval = update_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;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400138 } else {
139 lb->curr_block++;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500140 }
141 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500142 put_bh(bh);
143 return retval;
144
145}
146
147static int update_dind_extent_range(handle_t *handle, struct inode *inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400148 ext4_fsblk_t pblock,
149 struct migrate_struct *lb)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500150{
151 struct buffer_head *bh;
152 __le32 *i_data;
153 int i, retval = 0;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500154 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
155
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500156 bh = sb_bread(inode->i_sb, pblock);
157 if (!bh)
158 return -EIO;
159
160 i_data = (__le32 *)bh->b_data;
161 for (i = 0; i < max_entries; i++) {
162 if (i_data[i]) {
163 retval = update_ind_extent_range(handle, inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400164 le32_to_cpu(i_data[i]), lb);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500165 if (retval)
166 break;
167 } else {
168 /* Only update the file block number */
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400169 lb->curr_block += max_entries;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500170 }
171 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500172 put_bh(bh);
173 return retval;
174
175}
176
177static int update_tind_extent_range(handle_t *handle, struct inode *inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400178 ext4_fsblk_t pblock,
179 struct migrate_struct *lb)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500180{
181 struct buffer_head *bh;
182 __le32 *i_data;
183 int i, retval = 0;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500184 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
185
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500186 bh = sb_bread(inode->i_sb, pblock);
187 if (!bh)
188 return -EIO;
189
190 i_data = (__le32 *)bh->b_data;
191 for (i = 0; i < max_entries; i++) {
192 if (i_data[i]) {
193 retval = update_dind_extent_range(handle, inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400194 le32_to_cpu(i_data[i]), lb);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500195 if (retval)
196 break;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400197 } else {
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500198 /* Only update the file block number */
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400199 lb->curr_block += max_entries * max_entries;
200 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500201 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500202 put_bh(bh);
203 return retval;
204
205}
206
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500207static int extend_credit_for_blkdel(handle_t *handle, struct inode *inode)
208{
209 int retval = 0, needed;
210
Frank Mayhar03901312009-01-07 00:06:22 -0500211 if (ext4_handle_has_enough_credits(handle, EXT4_RESERVE_TRANS_BLOCKS+1))
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500212 return 0;
213 /*
214 * We are freeing a blocks. During this we touch
215 * superblock, group descriptor and block bitmap.
216 * So allocate a credit of 3. We may update
217 * quota (user and group).
218 */
Dmitry Monakhov5aca07e2009-12-08 22:42:15 -0500219 needed = 3 + EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb);
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500220
221 if (ext4_journal_extend(handle, needed) != 0)
222 retval = ext4_journal_restart(handle, needed);
223
224 return retval;
225}
226
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500227static int free_dind_blocks(handle_t *handle,
228 struct inode *inode, __le32 i_data)
229{
230 int i;
231 __le32 *tmp_idata;
232 struct buffer_head *bh;
233 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
234
235 bh = sb_bread(inode->i_sb, le32_to_cpu(i_data));
236 if (!bh)
237 return -EIO;
238
239 tmp_idata = (__le32 *)bh->b_data;
240 for (i = 0; i < max_entries; i++) {
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500241 if (tmp_idata[i]) {
242 extend_credit_for_blkdel(handle, inode);
Peter Huewe7dc57612011-02-21 21:01:42 -0500243 ext4_free_blocks(handle, inode, NULL,
Theodore Ts'oe6362602009-11-23 07:17:05 -0500244 le32_to_cpu(tmp_idata[i]), 1,
245 EXT4_FREE_BLOCKS_METADATA |
246 EXT4_FREE_BLOCKS_FORGET);
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500247 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500248 }
249 put_bh(bh);
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500250 extend_credit_for_blkdel(handle, inode);
Peter Huewe7dc57612011-02-21 21:01:42 -0500251 ext4_free_blocks(handle, inode, NULL, le32_to_cpu(i_data), 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -0500252 EXT4_FREE_BLOCKS_METADATA |
253 EXT4_FREE_BLOCKS_FORGET);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500254 return 0;
255}
256
257static int free_tind_blocks(handle_t *handle,
258 struct inode *inode, __le32 i_data)
259{
260 int i, retval = 0;
261 __le32 *tmp_idata;
262 struct buffer_head *bh;
263 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
264
265 bh = sb_bread(inode->i_sb, le32_to_cpu(i_data));
266 if (!bh)
267 return -EIO;
268
269 tmp_idata = (__le32 *)bh->b_data;
270 for (i = 0; i < max_entries; i++) {
271 if (tmp_idata[i]) {
272 retval = free_dind_blocks(handle,
273 inode, tmp_idata[i]);
274 if (retval) {
275 put_bh(bh);
276 return retval;
277 }
278 }
279 }
280 put_bh(bh);
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500281 extend_credit_for_blkdel(handle, inode);
Peter Huewe7dc57612011-02-21 21:01:42 -0500282 ext4_free_blocks(handle, inode, NULL, le32_to_cpu(i_data), 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -0500283 EXT4_FREE_BLOCKS_METADATA |
284 EXT4_FREE_BLOCKS_FORGET);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500285 return 0;
286}
287
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500288static int free_ind_block(handle_t *handle, struct inode *inode, __le32 *i_data)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500289{
290 int retval;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500291
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500292 /* ei->i_data[EXT4_IND_BLOCK] */
293 if (i_data[0]) {
294 extend_credit_for_blkdel(handle, inode);
Peter Huewe7dc57612011-02-21 21:01:42 -0500295 ext4_free_blocks(handle, inode, NULL,
Theodore Ts'oe6362602009-11-23 07:17:05 -0500296 le32_to_cpu(i_data[0]), 1,
297 EXT4_FREE_BLOCKS_METADATA |
298 EXT4_FREE_BLOCKS_FORGET);
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500299 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500300
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500301 /* ei->i_data[EXT4_DIND_BLOCK] */
302 if (i_data[1]) {
303 retval = free_dind_blocks(handle, inode, i_data[1]);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500304 if (retval)
305 return retval;
306 }
307
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500308 /* ei->i_data[EXT4_TIND_BLOCK] */
309 if (i_data[2]) {
310 retval = free_tind_blocks(handle, inode, i_data[2]);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500311 if (retval)
312 return retval;
313 }
314 return 0;
315}
316
317static int ext4_ext_swap_inode_data(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400318 struct inode *tmp_inode)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500319{
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500320 int retval;
321 __le32 i_data[3];
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500322 struct ext4_inode_info *ei = EXT4_I(inode);
323 struct ext4_inode_info *tmp_ei = EXT4_I(tmp_inode);
324
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500325 /*
326 * One credit accounted for writing the
327 * i_data field of the original inode
328 */
329 retval = ext4_journal_extend(handle, 1);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400330 if (retval) {
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500331 retval = ext4_journal_restart(handle, 1);
332 if (retval)
333 goto err_out;
334 }
335
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500336 i_data[0] = ei->i_data[EXT4_IND_BLOCK];
337 i_data[1] = ei->i_data[EXT4_DIND_BLOCK];
338 i_data[2] = ei->i_data[EXT4_TIND_BLOCK];
339
340 down_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500341 /*
Theodore Ts'o1b9c12f2009-09-17 08:32:22 -0400342 * if EXT4_STATE_EXT_MIGRATE is cleared a block allocation
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400343 * happened after we started the migrate. We need to
344 * fail the migrate
345 */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500346 if (!ext4_test_inode_state(inode, EXT4_STATE_EXT_MIGRATE)) {
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400347 retval = -EAGAIN;
348 up_write(&EXT4_I(inode)->i_data_sem);
349 goto err_out;
350 } else
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500351 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400352 /*
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500353 * We have the extent map build with the tmp inode.
354 * Now copy the i_data across
355 */
Theodore Ts'o74e4e6d2011-05-03 09:34:42 -0400356 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500357 memcpy(ei->i_data, tmp_ei->i_data, sizeof(ei->i_data));
358
359 /*
360 * Update i_blocks with the new blocks that got
361 * allocated while adding extents for extent index
362 * blocks.
363 *
364 * While converting to extents we need not
365 * update the orignal inode i_blocks for extent blocks
366 * via quota APIs. The quota update happened via tmp_inode already.
367 */
368 spin_lock(&inode->i_lock);
369 inode->i_blocks += tmp_inode->i_blocks;
370 spin_unlock(&inode->i_lock);
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500371 up_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500372
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500373 /*
374 * We mark the inode dirty after, because we decrement the
375 * i_blocks when freeing the indirect meta-data blocks
376 */
377 retval = free_ind_block(handle, inode, i_data);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500378 ext4_mark_inode_dirty(handle, inode);
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500379
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500380err_out:
381 return retval;
382}
383
384static int free_ext_idx(handle_t *handle, struct inode *inode,
385 struct ext4_extent_idx *ix)
386{
387 int i, retval = 0;
388 ext4_fsblk_t block;
389 struct buffer_head *bh;
390 struct ext4_extent_header *eh;
391
Theodore Ts'obf89d162010-10-27 21:30:14 -0400392 block = ext4_idx_pblock(ix);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500393 bh = sb_bread(inode->i_sb, block);
394 if (!bh)
395 return -EIO;
396
397 eh = (struct ext4_extent_header *)bh->b_data;
398 if (eh->eh_depth != 0) {
399 ix = EXT_FIRST_INDEX(eh);
400 for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ix++) {
401 retval = free_ext_idx(handle, inode, ix);
402 if (retval)
403 break;
404 }
405 }
406 put_bh(bh);
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500407 extend_credit_for_blkdel(handle, inode);
Peter Huewe7dc57612011-02-21 21:01:42 -0500408 ext4_free_blocks(handle, inode, NULL, block, 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -0500409 EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500410 return retval;
411}
412
413/*
414 * Free the extent meta data blocks only
415 */
416static int free_ext_block(handle_t *handle, struct inode *inode)
417{
418 int i, retval = 0;
419 struct ext4_inode_info *ei = EXT4_I(inode);
420 struct ext4_extent_header *eh = (struct ext4_extent_header *)ei->i_data;
421 struct ext4_extent_idx *ix;
422 if (eh->eh_depth == 0)
423 /*
424 * No extra blocks allocated for extent meta data
425 */
426 return 0;
427 ix = EXT_FIRST_INDEX(eh);
428 for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ix++) {
429 retval = free_ext_idx(handle, inode, ix);
430 if (retval)
431 return retval;
432 }
433 return retval;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500434}
435
Aneesh Kumar K.V2a43a872008-09-13 12:52:26 -0400436int ext4_ext_migrate(struct inode *inode)
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500437{
438 handle_t *handle;
439 int retval = 0, i;
440 __le32 *i_data;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500441 struct ext4_inode_info *ei;
442 struct inode *tmp_inode = NULL;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400443 struct migrate_struct lb;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500444 unsigned long max_entries;
Andreas Dilger11013912009-06-13 11:45:35 -0400445 __u32 goal;
Dmitry Monakhov5cb81da2011-10-29 09:05:00 -0400446 uid_t owner[2];
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500447
Theodore Ts'o83982b62009-01-06 14:53:16 -0500448 /*
449 * If the filesystem does not support extents, or the inode
450 * already is extent-based, error out.
451 */
452 if (!EXT4_HAS_INCOMPAT_FEATURE(inode->i_sb,
453 EXT4_FEATURE_INCOMPAT_EXTENTS) ||
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400454 (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500455 return -EINVAL;
456
Valerie Clementb8356c42008-02-05 10:56:37 -0500457 if (S_ISLNK(inode->i_mode) && inode->i_blocks == 0)
458 /*
459 * don't migrate fast symlink
460 */
461 return retval;
462
Theodore Ts'o4b217632013-02-09 12:50:27 -0500463 /*
464 * Worst case we can touch the allocation bitmaps, a bgd
465 * block, and a block to link in the orphan list. We do need
466 * need to worry about credits for modifying the quota inode.
467 */
Theodore Ts'o9924a922013-02-08 21:59:22 -0500468 handle = ext4_journal_start(inode, EXT4_HT_MIGRATE,
Theodore Ts'o4b217632013-02-09 12:50:27 -0500469 4 + EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb));
470
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500471 if (IS_ERR(handle)) {
472 retval = PTR_ERR(handle);
Dan Carpenter09054262009-02-15 20:02:19 -0500473 return retval;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500474 }
Andreas Dilger11013912009-06-13 11:45:35 -0400475 goal = (((inode->i_ino - 1) / EXT4_INODES_PER_GROUP(inode->i_sb)) *
476 EXT4_INODES_PER_GROUP(inode->i_sb)) + 1;
Eric W. Biederman08cefc72012-02-07 15:41:49 -0800477 owner[0] = i_uid_read(inode);
478 owner[1] = i_gid_read(inode);
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400479 tmp_inode = ext4_new_inode(handle, inode->i_sb->s_root->d_inode,
Dmitry Monakhov5cb81da2011-10-29 09:05:00 -0400480 S_IFREG, NULL, goal, owner);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500481 if (IS_ERR(tmp_inode)) {
Dan Carpentera0cc9102012-02-20 17:53:06 -0500482 retval = PTR_ERR(tmp_inode);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500483 ext4_journal_stop(handle);
Dan Carpenter09054262009-02-15 20:02:19 -0500484 return retval;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500485 }
486 i_size_write(tmp_inode, i_size_read(inode));
487 /*
Dmitry Monakhovf39490b2010-03-01 23:14:36 -0500488 * Set the i_nlink to zero so it will be deleted later
489 * when we drop inode reference.
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500490 */
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200491 clear_nlink(tmp_inode);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500492
493 ext4_ext_tree_init(handle, tmp_inode);
494 ext4_orphan_add(handle, tmp_inode);
495 ext4_journal_stop(handle);
496
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500497 /*
498 * start with one credit accounted for
499 * superblock modification.
500 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300501 * For the tmp_inode we already have committed the
Anatol Pomozov70261f52013-08-28 14:40:12 -0400502 * transaction that created the inode. Later as and
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500503 * when we add extents we extent the journal
504 */
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500505 /*
Theodore Ts'o1b9c12f2009-09-17 08:32:22 -0400506 * Even though we take i_mutex we can still cause block
507 * allocation via mmap write to holes. If we have allocated
508 * new blocks we fail migrate. New block allocation will
509 * clear EXT4_STATE_EXT_MIGRATE flag. The flag is updated
510 * with i_data_sem held to prevent racing with block
511 * allocation.
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400512 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400513 down_read(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500514 ext4_set_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400515 up_read((&EXT4_I(inode)->i_data_sem));
516
Theodore Ts'o9924a922013-02-08 21:59:22 -0500517 handle = ext4_journal_start(inode, EXT4_HT_MIGRATE, 1);
Dmitry Monakhovf39490b2010-03-01 23:14:36 -0500518 if (IS_ERR(handle)) {
519 /*
520 * It is impossible to update on-disk structures without
521 * a handle, so just rollback in-core changes and live other
522 * work to orphan_list_cleanup()
523 */
524 ext4_orphan_del(NULL, tmp_inode);
525 retval = PTR_ERR(handle);
526 goto out;
527 }
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500528
529 ei = EXT4_I(inode);
530 i_data = ei->i_data;
531 memset(&lb, 0, sizeof(lb));
532
533 /* 32 bit block address 4 bytes */
534 max_entries = inode->i_sb->s_blocksize >> 2;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400535 for (i = 0; i < EXT4_NDIR_BLOCKS; i++) {
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500536 if (i_data[i]) {
537 retval = update_extent_range(handle, tmp_inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400538 le32_to_cpu(i_data[i]), &lb);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500539 if (retval)
540 goto err_out;
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400541 } else
542 lb.curr_block++;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500543 }
544 if (i_data[EXT4_IND_BLOCK]) {
545 retval = update_ind_extent_range(handle, tmp_inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400546 le32_to_cpu(i_data[EXT4_IND_BLOCK]), &lb);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500547 if (retval)
548 goto err_out;
549 } else
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400550 lb.curr_block += max_entries;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500551 if (i_data[EXT4_DIND_BLOCK]) {
552 retval = update_dind_extent_range(handle, tmp_inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400553 le32_to_cpu(i_data[EXT4_DIND_BLOCK]), &lb);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500554 if (retval)
555 goto err_out;
556 } else
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400557 lb.curr_block += max_entries * max_entries;
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500558 if (i_data[EXT4_TIND_BLOCK]) {
559 retval = update_tind_extent_range(handle, tmp_inode,
Dmitry Monakhovfba90ff2011-10-29 09:03:00 -0400560 le32_to_cpu(i_data[EXT4_TIND_BLOCK]), &lb);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500561 if (retval)
562 goto err_out;
563 }
564 /*
565 * Build the last extent
566 */
567 retval = finish_range(handle, tmp_inode, &lb);
568err_out:
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500569 if (retval)
570 /*
571 * Failure case delete the extent information with the
572 * tmp_inode
573 */
574 free_ext_block(handle, tmp_inode);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400575 else {
576 retval = ext4_ext_swap_inode_data(handle, inode, tmp_inode);
577 if (retval)
578 /*
579 * if we fail to swap inode data free the extent
580 * details of the tmp inode
581 */
582 free_ext_block(handle, tmp_inode);
583 }
Aneesh Kumar K.V8009f9f2008-02-10 01:20:05 -0500584
585 /* We mark the tmp_inode dirty via ext4_ext_tree_init. */
586 if (ext4_journal_extend(handle, 1) != 0)
587 ext4_journal_restart(handle, 1);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500588
589 /*
590 * Mark the tmp_inode as of size zero
591 */
592 i_size_write(tmp_inode, 0);
593
594 /*
595 * set the i_blocks count to zero
596 * so that the ext4_delete_inode does the
597 * right job
598 *
599 * We don't need to take the i_lock because
600 * the inode is not visible to user space.
601 */
602 tmp_inode->i_blocks = 0;
603
604 /* Reset the extent details */
605 ext4_ext_tree_init(handle, tmp_inode);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500606 ext4_journal_stop(handle);
Dmitry Monakhovf39490b2010-03-01 23:14:36 -0500607out:
Aneesh Kumar K.Va8526e82009-08-25 22:36:05 -0400608 unlock_new_inode(tmp_inode);
Dan Carpenter09054262009-02-15 20:02:19 -0500609 iput(tmp_inode);
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -0500610
611 return retval;
612}
Lukas Czerner0d14b092013-04-10 23:32:52 -0400613
614/*
615 * Migrate a simple extent-based inode to use the i_blocks[] array
616 */
617int ext4_ind_migrate(struct inode *inode)
618{
619 struct ext4_extent_header *eh;
620 struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es;
621 struct ext4_inode_info *ei = EXT4_I(inode);
622 struct ext4_extent *ex;
623 unsigned int i, len;
624 ext4_fsblk_t blk;
625 handle_t *handle;
626 int ret;
627
628 if (!EXT4_HAS_INCOMPAT_FEATURE(inode->i_sb,
629 EXT4_FEATURE_INCOMPAT_EXTENTS) ||
630 (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
631 return -EINVAL;
632
Lukas Czerner43e50f52013-04-11 10:54:46 -0400633 if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
634 EXT4_FEATURE_RO_COMPAT_BIGALLOC))
635 return -EOPNOTSUPP;
636
Lukas Czerner0d14b092013-04-10 23:32:52 -0400637 handle = ext4_journal_start(inode, EXT4_HT_MIGRATE, 1);
638 if (IS_ERR(handle))
639 return PTR_ERR(handle);
640
641 down_write(&EXT4_I(inode)->i_data_sem);
642 ret = ext4_ext_check_inode(inode);
643 if (ret)
644 goto errout;
645
646 eh = ext_inode_hdr(inode);
647 ex = EXT_FIRST_EXTENT(eh);
648 if (ext4_blocks_count(es) > EXT4_MAX_BLOCK_FILE_PHYS ||
649 eh->eh_depth != 0 || le16_to_cpu(eh->eh_entries) > 1) {
650 ret = -EOPNOTSUPP;
651 goto errout;
652 }
653 if (eh->eh_entries == 0)
654 blk = len = 0;
655 else {
656 len = le16_to_cpu(ex->ee_len);
657 blk = ext4_ext_pblock(ex);
658 if (len > EXT4_NDIR_BLOCKS) {
659 ret = -EOPNOTSUPP;
660 goto errout;
661 }
662 }
663
664 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
665 memset(ei->i_data, 0, sizeof(ei->i_data));
666 for (i=0; i < len; i++)
667 ei->i_data[i] = cpu_to_le32(blk++);
668 ext4_mark_inode_dirty(handle, inode);
669errout:
670 ext4_journal_stop(handle);
671 up_write(&EXT4_I(inode)->i_data_sem);
672 return ret;
673}