ext4: fix lock order problem in ext4_move_extents()
[linux-flexiantxendom0-natty.git] / fs / ext4 / move_extent.c
1 /*
2  * Copyright (c) 2008,2009 NEC Software Tohoku, Ltd.
3  * Written by Takashi Sato <t-sato@yk.jp.nec.com>
4  *            Akira Fujita <a-fujita@rs.jp.nec.com>
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of version 2.1 of the GNU Lesser General Public License
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  */
15
16 #include <linux/fs.h>
17 #include <linux/quotaops.h>
18 #include "ext4_jbd2.h"
19 #include "ext4_extents.h"
20 #include "ext4.h"
21
22 /**
23  * get_ext_path - Find an extent path for designated logical block number.
24  *
25  * @inode:      an inode which is searched
26  * @lblock:     logical block number to find an extent path
27  * @path:       pointer to an extent path pointer (for output)
28  *
29  * ext4_ext_find_extent wrapper. Return 0 on success, or a negative error value
30  * on failure.
31  */
32 static inline int
33 get_ext_path(struct inode *inode, ext4_lblk_t lblock,
34                 struct ext4_ext_path **path)
35 {
36         int ret = 0;
37
38         *path = ext4_ext_find_extent(inode, lblock, *path);
39         if (IS_ERR(*path)) {
40                 ret = PTR_ERR(*path);
41                 *path = NULL;
42         } else if ((*path)[ext_depth(inode)].p_ext == NULL)
43                 ret = -ENODATA;
44
45         return ret;
46 }
47
48 /**
49  * copy_extent_status - Copy the extent's initialization status
50  *
51  * @src:        an extent for getting initialize status
52  * @dest:       an extent to be set the status
53  */
54 static void
55 copy_extent_status(struct ext4_extent *src, struct ext4_extent *dest)
56 {
57         if (ext4_ext_is_uninitialized(src))
58                 ext4_ext_mark_uninitialized(dest);
59         else
60                 dest->ee_len = cpu_to_le16(ext4_ext_get_actual_len(dest));
61 }
62
63 /**
64  * mext_next_extent - Search for the next extent and set it to "extent"
65  *
66  * @inode:      inode which is searched
67  * @path:       this will obtain data for the next extent
68  * @extent:     pointer to the next extent we have just gotten
69  *
70  * Search the next extent in the array of ext4_ext_path structure (@path)
71  * and set it to ext4_extent structure (@extent). In addition, the member of
72  * @path (->p_ext) also points the next extent. Return 0 on success, 1 if
73  * ext4_ext_path structure refers to the last extent, or a negative error
74  * value on failure.
75  */
76 static int
77 mext_next_extent(struct inode *inode, struct ext4_ext_path *path,
78                       struct ext4_extent **extent)
79 {
80         struct ext4_extent_header *eh;
81         int ppos, leaf_ppos = path->p_depth;
82
83         ppos = leaf_ppos;
84         if (EXT_LAST_EXTENT(path[ppos].p_hdr) > path[ppos].p_ext) {
85                 /* leaf block */
86                 *extent = ++path[ppos].p_ext;
87                 path[ppos].p_block = ext_pblock(path[ppos].p_ext);
88                 return 0;
89         }
90
91         while (--ppos >= 0) {
92                 if (EXT_LAST_INDEX(path[ppos].p_hdr) >
93                     path[ppos].p_idx) {
94                         int cur_ppos = ppos;
95
96                         /* index block */
97                         path[ppos].p_idx++;
98                         path[ppos].p_block = idx_pblock(path[ppos].p_idx);
99                         if (path[ppos+1].p_bh)
100                                 brelse(path[ppos+1].p_bh);
101                         path[ppos+1].p_bh =
102                                 sb_bread(inode->i_sb, path[ppos].p_block);
103                         if (!path[ppos+1].p_bh)
104                                 return -EIO;
105                         path[ppos+1].p_hdr =
106                                 ext_block_hdr(path[ppos+1].p_bh);
107
108                         /* Halfway index block */
109                         while (++cur_ppos < leaf_ppos) {
110                                 path[cur_ppos].p_idx =
111                                         EXT_FIRST_INDEX(path[cur_ppos].p_hdr);
112                                 path[cur_ppos].p_block =
113                                         idx_pblock(path[cur_ppos].p_idx);
114                                 if (path[cur_ppos+1].p_bh)
115                                         brelse(path[cur_ppos+1].p_bh);
116                                 path[cur_ppos+1].p_bh = sb_bread(inode->i_sb,
117                                         path[cur_ppos].p_block);
118                                 if (!path[cur_ppos+1].p_bh)
119                                         return -EIO;
120                                 path[cur_ppos+1].p_hdr =
121                                         ext_block_hdr(path[cur_ppos+1].p_bh);
122                         }
123
124                         path[leaf_ppos].p_ext = *extent = NULL;
125
126                         eh = path[leaf_ppos].p_hdr;
127                         if (le16_to_cpu(eh->eh_entries) == 0)
128                                 /* empty leaf is found */
129                                 return -ENODATA;
130
131                         /* leaf block */
132                         path[leaf_ppos].p_ext = *extent =
133                                 EXT_FIRST_EXTENT(path[leaf_ppos].p_hdr);
134                         path[leaf_ppos].p_block =
135                                         ext_pblock(path[leaf_ppos].p_ext);
136                         return 0;
137                 }
138         }
139         /* We found the last extent */
140         return 1;
141 }
142
143 /**
144  * mext_check_null_inode - NULL check for two inodes
145  *
146  * If inode1 or inode2 is NULL, return -EIO. Otherwise, return 0.
147  */
148 static int
149 mext_check_null_inode(struct inode *inode1, struct inode *inode2,
150                 const char *function)
151 {
152         int ret = 0;
153
154         if (inode1 == NULL) {
155                 ext4_error(inode2->i_sb, function,
156                         "Both inodes should not be NULL: "
157                         "inode1 NULL inode2 %lu", inode2->i_ino);
158                 ret = -EIO;
159         } else if (inode2 == NULL) {
160                 ext4_error(inode1->i_sb, function,
161                         "Both inodes should not be NULL: "
162                         "inode1 %lu inode2 NULL", inode1->i_ino);
163                 ret = -EIO;
164         }
165         return ret;
166 }
167
168 /**
169  * double_down_write_data_sem - Acquire two inodes' write lock of i_data_sem
170  *
171  * @orig_inode:         original inode structure
172  * @donor_inode:        donor inode structure
173  * Acquire write lock of i_data_sem of the two inodes (orig and donor) by
174  * i_ino order.
175  */
176 static void
177 double_down_write_data_sem(struct inode *orig_inode, struct inode *donor_inode)
178 {
179         struct inode *first = orig_inode, *second = donor_inode;
180
181         /*
182          * Use the inode number to provide the stable locking order instead
183          * of its address, because the C language doesn't guarantee you can
184          * compare pointers that don't come from the same array.
185          */
186         if (donor_inode->i_ino < orig_inode->i_ino) {
187                 first = donor_inode;
188                 second = orig_inode;
189         }
190
191         down_write(&EXT4_I(first)->i_data_sem);
192         down_write(&EXT4_I(second)->i_data_sem);
193 }
194
195 /**
196  * double_up_write_data_sem - Release two inodes' write lock of i_data_sem
197  *
198  * @orig_inode:         original inode structure to be released its lock first
199  * @donor_inode:        donor inode structure to be released its lock second
200  * Release write lock of i_data_sem of two inodes (orig and donor).
201  */
202 static void
203 double_up_write_data_sem(struct inode *orig_inode, struct inode *donor_inode)
204 {
205         up_write(&EXT4_I(orig_inode)->i_data_sem);
206         up_write(&EXT4_I(donor_inode)->i_data_sem);
207 }
208
209 /**
210  * mext_insert_across_blocks - Insert extents across leaf block
211  *
212  * @handle:             journal handle
213  * @orig_inode:         original inode
214  * @o_start:            first original extent to be changed
215  * @o_end:              last original extent to be changed
216  * @start_ext:          first new extent to be inserted
217  * @new_ext:            middle of new extent to be inserted
218  * @end_ext:            last new extent to be inserted
219  *
220  * Allocate a new leaf block and insert extents into it. Return 0 on success,
221  * or a negative error value on failure.
222  */
223 static int
224 mext_insert_across_blocks(handle_t *handle, struct inode *orig_inode,
225                 struct ext4_extent *o_start, struct ext4_extent *o_end,
226                 struct ext4_extent *start_ext, struct ext4_extent *new_ext,
227                 struct ext4_extent *end_ext)
228 {
229         struct ext4_ext_path *orig_path = NULL;
230         ext4_lblk_t eblock = 0;
231         int new_flag = 0;
232         int end_flag = 0;
233         int err = 0;
234
235         if (start_ext->ee_len && new_ext->ee_len && end_ext->ee_len) {
236                 if (o_start == o_end) {
237
238                         /*       start_ext   new_ext    end_ext
239                          * donor |---------|-----------|--------|
240                          * orig  |------------------------------|
241                          */
242                         end_flag = 1;
243                 } else {
244
245                         /*       start_ext   new_ext   end_ext
246                          * donor |---------|----------|---------|
247                          * orig  |---------------|--------------|
248                          */
249                         o_end->ee_block = end_ext->ee_block;
250                         o_end->ee_len = end_ext->ee_len;
251                         ext4_ext_store_pblock(o_end, ext_pblock(end_ext));
252                 }
253
254                 o_start->ee_len = start_ext->ee_len;
255                 new_flag = 1;
256
257         } else if (start_ext->ee_len && new_ext->ee_len &&
258                    !end_ext->ee_len && o_start == o_end) {
259
260                 /*       start_ext      new_ext
261                  * donor |--------------|---------------|
262                  * orig  |------------------------------|
263                  */
264                 o_start->ee_len = start_ext->ee_len;
265                 new_flag = 1;
266
267         } else if (!start_ext->ee_len && new_ext->ee_len &&
268                    end_ext->ee_len && o_start == o_end) {
269
270                 /*        new_ext       end_ext
271                  * donor |--------------|---------------|
272                  * orig  |------------------------------|
273                  */
274                 o_end->ee_block = end_ext->ee_block;
275                 o_end->ee_len = end_ext->ee_len;
276                 ext4_ext_store_pblock(o_end, ext_pblock(end_ext));
277
278                 /*
279                  * Set 0 to the extent block if new_ext was
280                  * the first block.
281                  */
282                 if (new_ext->ee_block)
283                         eblock = le32_to_cpu(new_ext->ee_block);
284
285                 new_flag = 1;
286         } else {
287                 ext4_debug("ext4 move extent: Unexpected insert case\n");
288                 return -EIO;
289         }
290
291         if (new_flag) {
292                 err = get_ext_path(orig_inode, eblock, &orig_path);
293                 if (err)
294                         goto out;
295
296                 if (ext4_ext_insert_extent(handle, orig_inode,
297                                         orig_path, new_ext, 0))
298                         goto out;
299         }
300
301         if (end_flag) {
302                 err = get_ext_path(orig_inode,
303                                 le32_to_cpu(end_ext->ee_block) - 1, &orig_path);
304                 if (err)
305                         goto out;
306
307                 if (ext4_ext_insert_extent(handle, orig_inode,
308                                            orig_path, end_ext, 0))
309                         goto out;
310         }
311 out:
312         if (orig_path) {
313                 ext4_ext_drop_refs(orig_path);
314                 kfree(orig_path);
315         }
316
317         return err;
318
319 }
320
321 /**
322  * mext_insert_inside_block - Insert new extent to the extent block
323  *
324  * @o_start:            first original extent to be moved
325  * @o_end:              last original extent to be moved
326  * @start_ext:          first new extent to be inserted
327  * @new_ext:            middle of new extent to be inserted
328  * @end_ext:            last new extent to be inserted
329  * @eh:                 extent header of target leaf block
330  * @range_to_move:      used to decide how to insert extent
331  *
332  * Insert extents into the leaf block. The extent (@o_start) is overwritten
333  * by inserted extents.
334  */
335 static void
336 mext_insert_inside_block(struct ext4_extent *o_start,
337                               struct ext4_extent *o_end,
338                               struct ext4_extent *start_ext,
339                               struct ext4_extent *new_ext,
340                               struct ext4_extent *end_ext,
341                               struct ext4_extent_header *eh,
342                               int range_to_move)
343 {
344         int i = 0;
345         unsigned long len;
346
347         /* Move the existing extents */
348         if (range_to_move && o_end < EXT_LAST_EXTENT(eh)) {
349                 len = (unsigned long)(EXT_LAST_EXTENT(eh) + 1) -
350                         (unsigned long)(o_end + 1);
351                 memmove(o_end + 1 + range_to_move, o_end + 1, len);
352         }
353
354         /* Insert start entry */
355         if (start_ext->ee_len)
356                 o_start[i++].ee_len = start_ext->ee_len;
357
358         /* Insert new entry */
359         if (new_ext->ee_len) {
360                 o_start[i] = *new_ext;
361                 ext4_ext_store_pblock(&o_start[i++], ext_pblock(new_ext));
362         }
363
364         /* Insert end entry */
365         if (end_ext->ee_len)
366                 o_start[i] = *end_ext;
367
368         /* Increment the total entries counter on the extent block */
369         le16_add_cpu(&eh->eh_entries, range_to_move);
370 }
371
372 /**
373  * mext_insert_extents - Insert new extent
374  *
375  * @handle:     journal handle
376  * @orig_inode: original inode
377  * @orig_path:  path indicates first extent to be changed
378  * @o_start:    first original extent to be changed
379  * @o_end:      last original extent to be changed
380  * @start_ext:  first new extent to be inserted
381  * @new_ext:    middle of new extent to be inserted
382  * @end_ext:    last new extent to be inserted
383  *
384  * Call the function to insert extents. If we cannot add more extents into
385  * the leaf block, we call mext_insert_across_blocks() to create a
386  * new leaf block. Otherwise call mext_insert_inside_block(). Return 0
387  * on success, or a negative error value on failure.
388  */
389 static int
390 mext_insert_extents(handle_t *handle, struct inode *orig_inode,
391                          struct ext4_ext_path *orig_path,
392                          struct ext4_extent *o_start,
393                          struct ext4_extent *o_end,
394                          struct ext4_extent *start_ext,
395                          struct ext4_extent *new_ext,
396                          struct ext4_extent *end_ext)
397 {
398         struct  ext4_extent_header *eh;
399         unsigned long need_slots, slots_range;
400         int     range_to_move, depth, ret;
401
402         /*
403          * The extents need to be inserted
404          * start_extent + new_extent + end_extent.
405          */
406         need_slots = (start_ext->ee_len ? 1 : 0) + (end_ext->ee_len ? 1 : 0) +
407                 (new_ext->ee_len ? 1 : 0);
408
409         /* The number of slots between start and end */
410         slots_range = ((unsigned long)(o_end + 1) - (unsigned long)o_start + 1)
411                 / sizeof(struct ext4_extent);
412
413         /* Range to move the end of extent */
414         range_to_move = need_slots - slots_range;
415         depth = orig_path->p_depth;
416         orig_path += depth;
417         eh = orig_path->p_hdr;
418
419         if (depth) {
420                 /* Register to journal */
421                 ret = ext4_journal_get_write_access(handle, orig_path->p_bh);
422                 if (ret)
423                         return ret;
424         }
425
426         /* Expansion */
427         if (range_to_move > 0 &&
428                 (range_to_move > le16_to_cpu(eh->eh_max)
429                         - le16_to_cpu(eh->eh_entries))) {
430
431                 ret = mext_insert_across_blocks(handle, orig_inode, o_start,
432                                         o_end, start_ext, new_ext, end_ext);
433                 if (ret < 0)
434                         return ret;
435         } else
436                 mext_insert_inside_block(o_start, o_end, start_ext, new_ext,
437                                                 end_ext, eh, range_to_move);
438
439         if (depth) {
440                 ret = ext4_handle_dirty_metadata(handle, orig_inode,
441                                                  orig_path->p_bh);
442                 if (ret)
443                         return ret;
444         } else {
445                 ret = ext4_mark_inode_dirty(handle, orig_inode);
446                 if (ret < 0)
447                         return ret;
448         }
449
450         return 0;
451 }
452
453 /**
454  * mext_leaf_block - Move one leaf extent block into the inode.
455  *
456  * @handle:             journal handle
457  * @orig_inode:         original inode
458  * @orig_path:          path indicates first extent to be changed
459  * @dext:               donor extent
460  * @from:               start offset on the target file
461  *
462  * In order to insert extents into the leaf block, we must divide the extent
463  * in the leaf block into three extents. The one is located to be inserted
464  * extents, and the others are located around it.
465  *
466  * Therefore, this function creates structures to save extents of the leaf
467  * block, and inserts extents by calling mext_insert_extents() with
468  * created extents. Return 0 on success, or a negative error value on failure.
469  */
470 static int
471 mext_leaf_block(handle_t *handle, struct inode *orig_inode,
472                      struct ext4_ext_path *orig_path, struct ext4_extent *dext,
473                      ext4_lblk_t *from)
474 {
475         struct ext4_extent *oext, *o_start, *o_end, *prev_ext;
476         struct ext4_extent new_ext, start_ext, end_ext;
477         ext4_lblk_t new_ext_end;
478         ext4_fsblk_t new_phys_end;
479         int oext_alen, new_ext_alen, end_ext_alen;
480         int depth = ext_depth(orig_inode);
481         int ret;
482
483         o_start = o_end = oext = orig_path[depth].p_ext;
484         oext_alen = ext4_ext_get_actual_len(oext);
485         start_ext.ee_len = end_ext.ee_len = 0;
486
487         new_ext.ee_block = cpu_to_le32(*from);
488         ext4_ext_store_pblock(&new_ext, ext_pblock(dext));
489         new_ext.ee_len = dext->ee_len;
490         new_ext_alen = ext4_ext_get_actual_len(&new_ext);
491         new_ext_end = le32_to_cpu(new_ext.ee_block) + new_ext_alen - 1;
492         new_phys_end = ext_pblock(&new_ext) + new_ext_alen - 1;
493
494         /*
495          * Case: original extent is first
496          * oext      |--------|
497          * new_ext      |--|
498          * start_ext |--|
499          */
500         if (le32_to_cpu(oext->ee_block) < le32_to_cpu(new_ext.ee_block) &&
501                 le32_to_cpu(new_ext.ee_block) <
502                 le32_to_cpu(oext->ee_block) + oext_alen) {
503                 start_ext.ee_len = cpu_to_le16(le32_to_cpu(new_ext.ee_block) -
504                                                le32_to_cpu(oext->ee_block));
505                 copy_extent_status(oext, &start_ext);
506         } else if (oext > EXT_FIRST_EXTENT(orig_path[depth].p_hdr)) {
507                 prev_ext = oext - 1;
508                 /*
509                  * We can merge new_ext into previous extent,
510                  * if these are contiguous and same extent type.
511                  */
512                 if (ext4_can_extents_be_merged(orig_inode, prev_ext,
513                                                &new_ext)) {
514                         o_start = prev_ext;
515                         start_ext.ee_len = cpu_to_le16(
516                                 ext4_ext_get_actual_len(prev_ext) +
517                                 new_ext_alen);
518                         copy_extent_status(prev_ext, &start_ext);
519                         new_ext.ee_len = 0;
520                 }
521         }
522
523         /*
524          * Case: new_ext_end must be less than oext
525          * oext      |-----------|
526          * new_ext       |-------|
527          */
528         if (le32_to_cpu(oext->ee_block) + oext_alen - 1 < new_ext_end) {
529                 ext4_error(orig_inode->i_sb, __func__,
530                         "new_ext_end(%u) should be less than or equal to "
531                         "oext->ee_block(%u) + oext_alen(%d) - 1",
532                         new_ext_end, le32_to_cpu(oext->ee_block),
533                         oext_alen);
534                 ret = -EIO;
535                 goto out;
536         }
537
538         /*
539          * Case: new_ext is smaller than original extent
540          * oext    |---------------|
541          * new_ext |-----------|
542          * end_ext             |---|
543          */
544         if (le32_to_cpu(oext->ee_block) <= new_ext_end &&
545                 new_ext_end < le32_to_cpu(oext->ee_block) + oext_alen - 1) {
546                 end_ext.ee_len =
547                         cpu_to_le16(le32_to_cpu(oext->ee_block) +
548                         oext_alen - 1 - new_ext_end);
549                 copy_extent_status(oext, &end_ext);
550                 end_ext_alen = ext4_ext_get_actual_len(&end_ext);
551                 ext4_ext_store_pblock(&end_ext,
552                         (ext_pblock(o_end) + oext_alen - end_ext_alen));
553                 end_ext.ee_block =
554                         cpu_to_le32(le32_to_cpu(o_end->ee_block) +
555                         oext_alen - end_ext_alen);
556         }
557
558         ret = mext_insert_extents(handle, orig_inode, orig_path, o_start,
559                                 o_end, &start_ext, &new_ext, &end_ext);
560 out:
561         return ret;
562 }
563
564 /**
565  * mext_calc_swap_extents - Calculate extents for extent swapping.
566  *
567  * @tmp_dext:           the extent that will belong to the original inode
568  * @tmp_oext:           the extent that will belong to the donor inode
569  * @orig_off:           block offset of original inode
570  * @donor_off:          block offset of donor inode
571  * @max_count:          the maximun length of extents
572  *
573  * Return 0 on success, or a negative error value on failure.
574  */
575 static int
576 mext_calc_swap_extents(struct ext4_extent *tmp_dext,
577                               struct ext4_extent *tmp_oext,
578                               ext4_lblk_t orig_off, ext4_lblk_t donor_off,
579                               ext4_lblk_t max_count)
580 {
581         ext4_lblk_t diff, orig_diff;
582         struct ext4_extent dext_old, oext_old;
583
584         BUG_ON(orig_off != donor_off);
585
586         /* original and donor extents have to cover the same block offset */
587         if (orig_off < le32_to_cpu(tmp_oext->ee_block) ||
588             le32_to_cpu(tmp_oext->ee_block) +
589                         ext4_ext_get_actual_len(tmp_oext) - 1 < orig_off)
590                 return -ENODATA;
591
592         if (orig_off < le32_to_cpu(tmp_dext->ee_block) ||
593             le32_to_cpu(tmp_dext->ee_block) +
594                         ext4_ext_get_actual_len(tmp_dext) - 1 < orig_off)
595                 return -ENODATA;
596
597         dext_old = *tmp_dext;
598         oext_old = *tmp_oext;
599
600         /* When tmp_dext is too large, pick up the target range. */
601         diff = donor_off - le32_to_cpu(tmp_dext->ee_block);
602
603         ext4_ext_store_pblock(tmp_dext, ext_pblock(tmp_dext) + diff);
604         tmp_dext->ee_block =
605                         cpu_to_le32(le32_to_cpu(tmp_dext->ee_block) + diff);
606         tmp_dext->ee_len = cpu_to_le16(le16_to_cpu(tmp_dext->ee_len) - diff);
607
608         if (max_count < ext4_ext_get_actual_len(tmp_dext))
609                 tmp_dext->ee_len = cpu_to_le16(max_count);
610
611         orig_diff = orig_off - le32_to_cpu(tmp_oext->ee_block);
612         ext4_ext_store_pblock(tmp_oext, ext_pblock(tmp_oext) + orig_diff);
613
614         /* Adjust extent length if donor extent is larger than orig */
615         if (ext4_ext_get_actual_len(tmp_dext) >
616             ext4_ext_get_actual_len(tmp_oext) - orig_diff)
617                 tmp_dext->ee_len = cpu_to_le16(le16_to_cpu(tmp_oext->ee_len) -
618                                                 orig_diff);
619
620         tmp_oext->ee_len = cpu_to_le16(ext4_ext_get_actual_len(tmp_dext));
621
622         copy_extent_status(&oext_old, tmp_dext);
623         copy_extent_status(&dext_old, tmp_oext);
624
625         return 0;
626 }
627
628 /**
629  * mext_replace_branches - Replace original extents with new extents
630  *
631  * @handle:             journal handle
632  * @orig_inode:         original inode
633  * @donor_inode:        donor inode
634  * @from:               block offset of orig_inode
635  * @count:              block count to be replaced
636  * @err:                pointer to save return value
637  *
638  * Replace original inode extents and donor inode extents page by page.
639  * We implement this replacement in the following three steps:
640  * 1. Save the block information of original and donor inodes into
641  *    dummy extents.
642  * 2. Change the block information of original inode to point at the
643  *    donor inode blocks.
644  * 3. Change the block information of donor inode to point at the saved
645  *    original inode blocks in the dummy extents.
646  *
647  * Return replaced block count.
648  */
649 static int
650 mext_replace_branches(handle_t *handle, struct inode *orig_inode,
651                            struct inode *donor_inode, ext4_lblk_t from,
652                            ext4_lblk_t count, int *err)
653 {
654         struct ext4_ext_path *orig_path = NULL;
655         struct ext4_ext_path *donor_path = NULL;
656         struct ext4_extent *oext, *dext;
657         struct ext4_extent tmp_dext, tmp_oext;
658         ext4_lblk_t orig_off = from, donor_off = from;
659         int depth;
660         int replaced_count = 0;
661         int dext_alen;
662
663         /* Get the original extent for the block "orig_off" */
664         *err = get_ext_path(orig_inode, orig_off, &orig_path);
665         if (*err)
666                 goto out;
667
668         /* Get the donor extent for the head */
669         *err = get_ext_path(donor_inode, donor_off, &donor_path);
670         if (*err)
671                 goto out;
672         depth = ext_depth(orig_inode);
673         oext = orig_path[depth].p_ext;
674         tmp_oext = *oext;
675
676         depth = ext_depth(donor_inode);
677         dext = donor_path[depth].p_ext;
678         tmp_dext = *dext;
679
680         *err = mext_calc_swap_extents(&tmp_dext, &tmp_oext, orig_off,
681                                       donor_off, count);
682         if (*err)
683                 goto out;
684
685         /* Loop for the donor extents */
686         while (1) {
687                 /* The extent for donor must be found. */
688                 if (!dext) {
689                         ext4_error(donor_inode->i_sb, __func__,
690                                    "The extent for donor must be found");
691                         *err = -EIO;
692                         goto out;
693                 } else if (donor_off != le32_to_cpu(tmp_dext.ee_block)) {
694                         ext4_error(donor_inode->i_sb, __func__,
695                                 "Donor offset(%u) and the first block of donor "
696                                 "extent(%u) should be equal",
697                                 donor_off,
698                                 le32_to_cpu(tmp_dext.ee_block));
699                         *err = -EIO;
700                         goto out;
701                 }
702
703                 /* Set donor extent to orig extent */
704                 *err = mext_leaf_block(handle, orig_inode,
705                                            orig_path, &tmp_dext, &orig_off);
706                 if (*err)
707                         goto out;
708
709                 /* Set orig extent to donor extent */
710                 *err = mext_leaf_block(handle, donor_inode,
711                                            donor_path, &tmp_oext, &donor_off);
712                 if (*err)
713                         goto out;
714
715                 dext_alen = ext4_ext_get_actual_len(&tmp_dext);
716                 replaced_count += dext_alen;
717                 donor_off += dext_alen;
718                 orig_off += dext_alen;
719
720                 /* Already moved the expected blocks */
721                 if (replaced_count >= count)
722                         break;
723
724                 if (orig_path)
725                         ext4_ext_drop_refs(orig_path);
726                 *err = get_ext_path(orig_inode, orig_off, &orig_path);
727                 if (*err)
728                         goto out;
729                 depth = ext_depth(orig_inode);
730                 oext = orig_path[depth].p_ext;
731                 tmp_oext = *oext;
732
733                 if (donor_path)
734                         ext4_ext_drop_refs(donor_path);
735                 *err = get_ext_path(donor_inode, donor_off, &donor_path);
736                 if (*err)
737                         goto out;
738                 depth = ext_depth(donor_inode);
739                 dext = donor_path[depth].p_ext;
740                 tmp_dext = *dext;
741
742                 *err = mext_calc_swap_extents(&tmp_dext, &tmp_oext, orig_off,
743                                            donor_off, count - replaced_count);
744                 if (*err)
745                         goto out;
746         }
747
748 out:
749         if (orig_path) {
750                 ext4_ext_drop_refs(orig_path);
751                 kfree(orig_path);
752         }
753         if (donor_path) {
754                 ext4_ext_drop_refs(donor_path);
755                 kfree(donor_path);
756         }
757
758         return replaced_count;
759 }
760
761 /**
762  * move_extent_per_page - Move extent data per page
763  *
764  * @o_filp:                     file structure of original file
765  * @donor_inode:                donor inode
766  * @orig_page_offset:           page index on original file
767  * @data_offset_in_page:        block index where data swapping starts
768  * @block_len_in_page:          the number of blocks to be swapped
769  * @uninit:                     orig extent is uninitialized or not
770  * @err:                        pointer to save return value
771  *
772  * Save the data in original inode blocks and replace original inode extents
773  * with donor inode extents by calling mext_replace_branches().
774  * Finally, write out the saved data in new original inode blocks. Return
775  * replaced block count.
776  */
777 static int
778 move_extent_per_page(struct file *o_filp, struct inode *donor_inode,
779                   pgoff_t orig_page_offset, int data_offset_in_page,
780                   int block_len_in_page, int uninit, int *err)
781 {
782         struct inode *orig_inode = o_filp->f_dentry->d_inode;
783         struct address_space *mapping = orig_inode->i_mapping;
784         struct buffer_head *bh;
785         struct page *page = NULL;
786         const struct address_space_operations *a_ops = mapping->a_ops;
787         handle_t *handle;
788         ext4_lblk_t orig_blk_offset;
789         long long offs = orig_page_offset << PAGE_CACHE_SHIFT;
790         unsigned long blocksize = orig_inode->i_sb->s_blocksize;
791         unsigned int w_flags = 0;
792         unsigned int tmp_data_size, data_size, replaced_size;
793         void *fsdata;
794         int i, jblocks;
795         int err2 = 0;
796         int replaced_count = 0;
797         int blocks_per_page = PAGE_CACHE_SIZE >> orig_inode->i_blkbits;
798
799         /*
800          * It needs twice the amount of ordinary journal buffers because
801          * inode and donor_inode may change each different metadata blocks.
802          */
803         jblocks = ext4_writepage_trans_blocks(orig_inode) * 2;
804         handle = ext4_journal_start(orig_inode, jblocks);
805         if (IS_ERR(handle)) {
806                 *err = PTR_ERR(handle);
807                 return 0;
808         }
809
810         if (segment_eq(get_fs(), KERNEL_DS))
811                 w_flags |= AOP_FLAG_UNINTERRUPTIBLE;
812
813         orig_blk_offset = orig_page_offset * blocks_per_page +
814                 data_offset_in_page;
815
816         /*
817          * If orig extent is uninitialized one,
818          * it's not necessary force the page into memory
819          * and then force it to be written out again.
820          * Just swap data blocks between orig and donor.
821          */
822         if (uninit) {
823                 /*
824                  * Protect extent trees against block allocations
825                  * via delalloc
826                  */
827                 double_down_write_data_sem(orig_inode, donor_inode);
828                 replaced_count = mext_replace_branches(handle, orig_inode,
829                                                 donor_inode, orig_blk_offset,
830                                                 block_len_in_page, err);
831
832                 /* Clear the inode cache not to refer to the old data */
833                 ext4_ext_invalidate_cache(orig_inode);
834                 ext4_ext_invalidate_cache(donor_inode);
835                 double_up_write_data_sem(orig_inode, donor_inode);
836                 goto out2;
837         }
838
839         offs = (long long)orig_blk_offset << orig_inode->i_blkbits;
840
841         /* Calculate data_size */
842         if ((orig_blk_offset + block_len_in_page - 1) ==
843             ((orig_inode->i_size - 1) >> orig_inode->i_blkbits)) {
844                 /* Replace the last block */
845                 tmp_data_size = orig_inode->i_size & (blocksize - 1);
846                 /*
847                  * If data_size equal zero, it shows data_size is multiples of
848                  * blocksize. So we set appropriate value.
849                  */
850                 if (tmp_data_size == 0)
851                         tmp_data_size = blocksize;
852
853                 data_size = tmp_data_size +
854                         ((block_len_in_page - 1) << orig_inode->i_blkbits);
855         } else
856                 data_size = block_len_in_page << orig_inode->i_blkbits;
857
858         replaced_size = data_size;
859
860         *err = a_ops->write_begin(o_filp, mapping, offs, data_size, w_flags,
861                                  &page, &fsdata);
862         if (unlikely(*err < 0))
863                 goto out;
864
865         if (!PageUptodate(page)) {
866                 mapping->a_ops->readpage(o_filp, page);
867                 lock_page(page);
868         }
869
870         /*
871          * try_to_release_page() doesn't call releasepage in writeback mode.
872          * We should care about the order of writing to the same file
873          * by multiple move extent processes.
874          * It needs to call wait_on_page_writeback() to wait for the
875          * writeback of the page.
876          */
877         if (PageWriteback(page))
878                 wait_on_page_writeback(page);
879
880         /* Release old bh and drop refs */
881         try_to_release_page(page, 0);
882
883         /* Protect extent trees against block allocations via delalloc */
884         double_down_write_data_sem(orig_inode, donor_inode);
885         replaced_count = mext_replace_branches(handle, orig_inode, donor_inode,
886                                         orig_blk_offset, block_len_in_page,
887                                         &err2);
888         if (err2) {
889                 if (replaced_count) {
890                         block_len_in_page = replaced_count;
891                         replaced_size =
892                                 block_len_in_page << orig_inode->i_blkbits;
893                 } else {
894                         double_up_write_data_sem(orig_inode, donor_inode);
895                         goto out;
896                 }
897         }
898
899         /* Clear the inode cache not to refer to the old data */
900         ext4_ext_invalidate_cache(orig_inode);
901         ext4_ext_invalidate_cache(donor_inode);
902
903         double_up_write_data_sem(orig_inode, donor_inode);
904
905         if (!page_has_buffers(page))
906                 create_empty_buffers(page, 1 << orig_inode->i_blkbits, 0);
907
908         bh = page_buffers(page);
909         for (i = 0; i < data_offset_in_page; i++)
910                 bh = bh->b_this_page;
911
912         for (i = 0; i < block_len_in_page; i++) {
913                 *err = ext4_get_block(orig_inode,
914                                 (sector_t)(orig_blk_offset + i), bh, 0);
915                 if (*err < 0)
916                         goto out;
917
918                 if (bh->b_this_page != NULL)
919                         bh = bh->b_this_page;
920         }
921
922         *err = a_ops->write_end(o_filp, mapping, offs, data_size, replaced_size,
923                                page, fsdata);
924         page = NULL;
925
926 out:
927         if (unlikely(page)) {
928                 if (PageLocked(page))
929                         unlock_page(page);
930                 page_cache_release(page);
931                 ext4_journal_stop(handle);
932         }
933 out2:
934         ext4_journal_stop(handle);
935
936         if (err2)
937                 *err = err2;
938
939         return replaced_count;
940 }
941
942 /**
943  * mext_check_argumants - Check whether move extent can be done
944  *
945  * @orig_inode:         original inode
946  * @donor_inode:        donor inode
947  * @orig_start:         logical start offset in block for orig
948  * @donor_start:        logical start offset in block for donor
949  * @len:                the number of blocks to be moved
950  * @moved_len:          moved block length
951  *
952  * Check the arguments of ext4_move_extents() whether the files can be
953  * exchanged with each other.
954  * Return 0 on success, or a negative error value on failure.
955  */
956 static int
957 mext_check_arguments(struct inode *orig_inode,
958                           struct inode *donor_inode, __u64 orig_start,
959                           __u64 donor_start, __u64 *len, __u64 moved_len)
960 {
961         ext4_lblk_t orig_blocks, donor_blocks;
962         unsigned int blkbits = orig_inode->i_blkbits;
963         unsigned int blocksize = 1 << blkbits;
964
965         /* Regular file check */
966         if (!S_ISREG(orig_inode->i_mode) || !S_ISREG(donor_inode->i_mode)) {
967                 ext4_debug("ext4 move extent: The argument files should be "
968                         "regular file [ino:orig %lu, donor %lu]\n",
969                         orig_inode->i_ino, donor_inode->i_ino);
970                 return -EINVAL;
971         }
972
973         /* Ext4 move extent does not support swapfile */
974         if (IS_SWAPFILE(orig_inode) || IS_SWAPFILE(donor_inode)) {
975                 ext4_debug("ext4 move extent: The argument files should "
976                         "not be swapfile [ino:orig %lu, donor %lu]\n",
977                         orig_inode->i_ino, donor_inode->i_ino);
978                 return -EINVAL;
979         }
980
981         /* Files should be in the same ext4 FS */
982         if (orig_inode->i_sb != donor_inode->i_sb) {
983                 ext4_debug("ext4 move extent: The argument files "
984                         "should be in same FS [ino:orig %lu, donor %lu]\n",
985                         orig_inode->i_ino, donor_inode->i_ino);
986                 return -EINVAL;
987         }
988
989         /* Ext4 move extent supports only extent based file */
990         if (!(EXT4_I(orig_inode)->i_flags & EXT4_EXTENTS_FL)) {
991                 ext4_debug("ext4 move extent: orig file is not extents "
992                         "based file [ino:orig %lu]\n", orig_inode->i_ino);
993                 return -EOPNOTSUPP;
994         } else if (!(EXT4_I(donor_inode)->i_flags & EXT4_EXTENTS_FL)) {
995                 ext4_debug("ext4 move extent: donor file is not extents "
996                         "based file [ino:donor %lu]\n", donor_inode->i_ino);
997                 return -EOPNOTSUPP;
998         }
999
1000         if ((!orig_inode->i_size) || (!donor_inode->i_size)) {
1001                 ext4_debug("ext4 move extent: File size is 0 byte\n");
1002                 return -EINVAL;
1003         }
1004
1005         /* Start offset should be same */
1006         if (orig_start != donor_start) {
1007                 ext4_debug("ext4 move extent: orig and donor's start "
1008                         "offset are not same [ino:orig %lu, donor %lu]\n",
1009                         orig_inode->i_ino, donor_inode->i_ino);
1010                 return -EINVAL;
1011         }
1012
1013         if (moved_len) {
1014                 ext4_debug("ext4 move extent: moved_len should be 0 "
1015                         "[ino:orig %lu, donor %lu]\n", orig_inode->i_ino,
1016                         donor_inode->i_ino);
1017                 return -EINVAL;
1018         }
1019
1020         if ((orig_start > EXT_MAX_BLOCK) ||
1021             (donor_start > EXT_MAX_BLOCK) ||
1022             (*len > EXT_MAX_BLOCK) ||
1023             (orig_start + *len > EXT_MAX_BLOCK))  {
1024                 ext4_debug("ext4 move extent: Can't handle over [%u] blocks "
1025                         "[ino:orig %lu, donor %lu]\n", EXT_MAX_BLOCK,
1026                         orig_inode->i_ino, donor_inode->i_ino);
1027                 return -EINVAL;
1028         }
1029
1030         if (orig_inode->i_size > donor_inode->i_size) {
1031                 donor_blocks = (donor_inode->i_size + blocksize - 1) >> blkbits;
1032                 /* TODO: eliminate this artificial restriction */
1033                 if (orig_start >= donor_blocks) {
1034                         ext4_debug("ext4 move extent: orig start offset "
1035                         "[%llu] should be less than donor file blocks "
1036                         "[%u] [ino:orig %lu, donor %lu]\n",
1037                         orig_start, donor_blocks,
1038                         orig_inode->i_ino, donor_inode->i_ino);
1039                         return -EINVAL;
1040                 }
1041
1042                 /* TODO: eliminate this artificial restriction */
1043                 if (orig_start + *len > donor_blocks) {
1044                         ext4_debug("ext4 move extent: End offset [%llu] should "
1045                                 "be less than donor file blocks [%u]."
1046                                 "So adjust length from %llu to %llu "
1047                                 "[ino:orig %lu, donor %lu]\n",
1048                                 orig_start + *len, donor_blocks,
1049                                 *len, donor_blocks - orig_start,
1050                                 orig_inode->i_ino, donor_inode->i_ino);
1051                         *len = donor_blocks - orig_start;
1052                 }
1053         } else {
1054                 orig_blocks = (orig_inode->i_size + blocksize - 1) >> blkbits;
1055                 if (orig_start >= orig_blocks) {
1056                         ext4_debug("ext4 move extent: start offset [%llu] "
1057                                 "should be less than original file blocks "
1058                                 "[%u] [ino:orig %lu, donor %lu]\n",
1059                                  orig_start, orig_blocks,
1060                                 orig_inode->i_ino, donor_inode->i_ino);
1061                         return -EINVAL;
1062                 }
1063
1064                 if (orig_start + *len > orig_blocks) {
1065                         ext4_debug("ext4 move extent: Adjust length "
1066                                 "from %llu to %llu. Because it should be "
1067                                 "less than original file blocks "
1068                                 "[ino:orig %lu, donor %lu]\n",
1069                                 *len, orig_blocks - orig_start,
1070                                 orig_inode->i_ino, donor_inode->i_ino);
1071                         *len = orig_blocks - orig_start;
1072                 }
1073         }
1074
1075         if (!*len) {
1076                 ext4_debug("ext4 move extent: len shoudld not be 0 "
1077                         "[ino:orig %lu, donor %lu]\n", orig_inode->i_ino,
1078                         donor_inode->i_ino);
1079                 return -EINVAL;
1080         }
1081
1082         return 0;
1083 }
1084
1085 /**
1086  * mext_inode_double_lock - Lock i_mutex on both @inode1 and @inode2
1087  *
1088  * @inode1:     the inode structure
1089  * @inode2:     the inode structure
1090  *
1091  * Lock two inodes' i_mutex by i_ino order.
1092  * If inode1 or inode2 is NULL, return -EIO. Otherwise, return 0.
1093  */
1094 static int
1095 mext_inode_double_lock(struct inode *inode1, struct inode *inode2)
1096 {
1097         int ret = 0;
1098
1099         BUG_ON(inode1 == NULL && inode2 == NULL);
1100
1101         ret = mext_check_null_inode(inode1, inode2, __func__);
1102         if (ret < 0)
1103                 goto out;
1104
1105         if (inode1 == inode2) {
1106                 mutex_lock(&inode1->i_mutex);
1107                 goto out;
1108         }
1109
1110         if (inode1->i_ino < inode2->i_ino) {
1111                 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
1112                 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
1113         } else {
1114                 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_PARENT);
1115                 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_CHILD);
1116         }
1117
1118 out:
1119         return ret;
1120 }
1121
1122 /**
1123  * mext_inode_double_unlock - Release i_mutex on both @inode1 and @inode2
1124  *
1125  * @inode1:     the inode that is released first
1126  * @inode2:     the inode that is released second
1127  *
1128  * If inode1 or inode2 is NULL, return -EIO. Otherwise, return 0.
1129  */
1130
1131 static int
1132 mext_inode_double_unlock(struct inode *inode1, struct inode *inode2)
1133 {
1134         int ret = 0;
1135
1136         BUG_ON(inode1 == NULL && inode2 == NULL);
1137
1138         ret = mext_check_null_inode(inode1, inode2, __func__);
1139         if (ret < 0)
1140                 goto out;
1141
1142         if (inode1)
1143                 mutex_unlock(&inode1->i_mutex);
1144
1145         if (inode2 && inode2 != inode1)
1146                 mutex_unlock(&inode2->i_mutex);
1147
1148 out:
1149         return ret;
1150 }
1151
1152 /**
1153  * ext4_move_extents - Exchange the specified range of a file
1154  *
1155  * @o_filp:             file structure of the original file
1156  * @d_filp:             file structure of the donor file
1157  * @orig_start:         start offset in block for orig
1158  * @donor_start:        start offset in block for donor
1159  * @len:                the number of blocks to be moved
1160  * @moved_len:          moved block length
1161  *
1162  * This function returns 0 and moved block length is set in moved_len
1163  * if succeed, otherwise returns error value.
1164  *
1165  * Note: ext4_move_extents() proceeds the following order.
1166  * 1:ext4_move_extents() calculates the last block number of moving extent
1167  *   function by the start block number (orig_start) and the number of blocks
1168  *   to be moved (len) specified as arguments.
1169  *   If the {orig, donor}_start points a hole, the extent's start offset
1170  *   pointed by ext_cur (current extent), holecheck_path, orig_path are set
1171  *   after hole behind.
1172  * 2:Continue step 3 to step 5, until the holecheck_path points to last_extent
1173  *   or the ext_cur exceeds the block_end which is last logical block number.
1174  * 3:To get the length of continues area, call mext_next_extent()
1175  *   specified with the ext_cur (initial value is holecheck_path) re-cursive,
1176  *   until find un-continuous extent, the start logical block number exceeds
1177  *   the block_end or the extent points to the last extent.
1178  * 4:Exchange the original inode data with donor inode data
1179  *   from orig_page_offset to seq_end_page.
1180  *   The start indexes of data are specified as arguments.
1181  *   That of the original inode is orig_page_offset,
1182  *   and the donor inode is also orig_page_offset
1183  *   (To easily handle blocksize != pagesize case, the offset for the
1184  *   donor inode is block unit).
1185  * 5:Update holecheck_path and orig_path to points a next proceeding extent,
1186  *   then returns to step 2.
1187  * 6:Release holecheck_path, orig_path and set the len to moved_len
1188  *   which shows the number of moved blocks.
1189  *   The moved_len is useful for the command to calculate the file offset
1190  *   for starting next move extent ioctl.
1191  * 7:Return 0 on success, or a negative error value on failure.
1192  */
1193 int
1194 ext4_move_extents(struct file *o_filp, struct file *d_filp,
1195                  __u64 orig_start, __u64 donor_start, __u64 len,
1196                  __u64 *moved_len)
1197 {
1198         struct inode *orig_inode = o_filp->f_dentry->d_inode;
1199         struct inode *donor_inode = d_filp->f_dentry->d_inode;
1200         struct ext4_ext_path *orig_path = NULL, *holecheck_path = NULL;
1201         struct ext4_extent *ext_prev, *ext_cur, *ext_dummy;
1202         ext4_lblk_t block_start = orig_start;
1203         ext4_lblk_t block_end, seq_start, add_blocks, file_end, seq_blocks = 0;
1204         ext4_lblk_t rest_blocks;
1205         pgoff_t orig_page_offset = 0, seq_end_page;
1206         int ret1, ret2, depth, last_extent = 0;
1207         int blocks_per_page = PAGE_CACHE_SIZE >> orig_inode->i_blkbits;
1208         int data_offset_in_page;
1209         int block_len_in_page;
1210         int uninit;
1211
1212         /* orig and donor should be different file */
1213         if (orig_inode->i_ino == donor_inode->i_ino) {
1214                 ext4_debug("ext4 move extent: The argument files should not "
1215                         "be same file [ino:orig %lu, donor %lu]\n",
1216                         orig_inode->i_ino, donor_inode->i_ino);
1217                 return -EINVAL;
1218         }
1219
1220         /* Protect orig and donor inodes against a truncate */
1221         ret1 = mext_inode_double_lock(orig_inode, donor_inode);
1222         if (ret1 < 0)
1223                 return ret1;
1224
1225         /* Protect extent tree against block allocations via delalloc */
1226         double_down_write_data_sem(orig_inode, donor_inode);
1227         /* Check the filesystem environment whether move_extent can be done */
1228         ret1 = mext_check_arguments(orig_inode, donor_inode, orig_start,
1229                                         donor_start, &len, *moved_len);
1230         if (ret1)
1231                 goto out;
1232
1233         file_end = (i_size_read(orig_inode) - 1) >> orig_inode->i_blkbits;
1234         block_end = block_start + len - 1;
1235         if (file_end < block_end)
1236                 len -= block_end - file_end;
1237
1238         ret1 = get_ext_path(orig_inode, block_start, &orig_path);
1239         if (ret1)
1240                 goto out;
1241
1242         /* Get path structure to check the hole */
1243         ret1 = get_ext_path(orig_inode, block_start, &holecheck_path);
1244         if (ret1)
1245                 goto out;
1246
1247         depth = ext_depth(orig_inode);
1248         ext_cur = holecheck_path[depth].p_ext;
1249
1250         /*
1251          * Get proper starting location of block replacement if block_start was
1252          * within the hole.
1253          */
1254         if (le32_to_cpu(ext_cur->ee_block) +
1255                 ext4_ext_get_actual_len(ext_cur) - 1 < block_start) {
1256                 /*
1257                  * The hole exists between extents or the tail of
1258                  * original file.
1259                  */
1260                 last_extent = mext_next_extent(orig_inode,
1261                                         holecheck_path, &ext_cur);
1262                 if (last_extent < 0) {
1263                         ret1 = last_extent;
1264                         goto out;
1265                 }
1266                 last_extent = mext_next_extent(orig_inode, orig_path,
1267                                                         &ext_dummy);
1268                 if (last_extent < 0) {
1269                         ret1 = last_extent;
1270                         goto out;
1271                 }
1272                 seq_start = le32_to_cpu(ext_cur->ee_block);
1273         } else if (le32_to_cpu(ext_cur->ee_block) > block_start)
1274                 /* The hole exists at the beginning of original file. */
1275                 seq_start = le32_to_cpu(ext_cur->ee_block);
1276         else
1277                 seq_start = block_start;
1278
1279         /* No blocks within the specified range. */
1280         if (le32_to_cpu(ext_cur->ee_block) > block_end) {
1281                 ext4_debug("ext4 move extent: The specified range of file "
1282                                                         "may be the hole\n");
1283                 ret1 = -EINVAL;
1284                 goto out;
1285         }
1286
1287         /* Adjust start blocks */
1288         add_blocks = min(le32_to_cpu(ext_cur->ee_block) +
1289                          ext4_ext_get_actual_len(ext_cur), block_end + 1) -
1290                      max(le32_to_cpu(ext_cur->ee_block), block_start);
1291
1292         /* Discard preallocations of two inodes */
1293         ext4_discard_preallocations(orig_inode);
1294         ext4_discard_preallocations(donor_inode);
1295
1296         while (!last_extent && le32_to_cpu(ext_cur->ee_block) <= block_end) {
1297                 seq_blocks += add_blocks;
1298
1299                 /* Adjust tail blocks */
1300                 if (seq_start + seq_blocks - 1 > block_end)
1301                         seq_blocks = block_end - seq_start + 1;
1302
1303                 ext_prev = ext_cur;
1304                 last_extent = mext_next_extent(orig_inode, holecheck_path,
1305                                                 &ext_cur);
1306                 if (last_extent < 0) {
1307                         ret1 = last_extent;
1308                         break;
1309                 }
1310                 add_blocks = ext4_ext_get_actual_len(ext_cur);
1311
1312                 /*
1313                  * Extend the length of contiguous block (seq_blocks)
1314                  * if extents are contiguous.
1315                  */
1316                 if (ext4_can_extents_be_merged(orig_inode,
1317                                                ext_prev, ext_cur) &&
1318                     block_end >= le32_to_cpu(ext_cur->ee_block) &&
1319                     !last_extent)
1320                         continue;
1321
1322                 /* Is original extent is uninitialized */
1323                 uninit = ext4_ext_is_uninitialized(ext_prev);
1324
1325                 data_offset_in_page = seq_start % blocks_per_page;
1326
1327                 /*
1328                  * Calculate data blocks count that should be swapped
1329                  * at the first page.
1330                  */
1331                 if (data_offset_in_page + seq_blocks > blocks_per_page) {
1332                         /* Swapped blocks are across pages */
1333                         block_len_in_page =
1334                                         blocks_per_page - data_offset_in_page;
1335                 } else {
1336                         /* Swapped blocks are in a page */
1337                         block_len_in_page = seq_blocks;
1338                 }
1339
1340                 orig_page_offset = seq_start >>
1341                                 (PAGE_CACHE_SHIFT - orig_inode->i_blkbits);
1342                 seq_end_page = (seq_start + seq_blocks - 1) >>
1343                                 (PAGE_CACHE_SHIFT - orig_inode->i_blkbits);
1344                 seq_start = le32_to_cpu(ext_cur->ee_block);
1345                 rest_blocks = seq_blocks;
1346
1347                 /*
1348                  * Up semaphore to avoid following problems:
1349                  * a. transaction deadlock among ext4_journal_start,
1350                  *    ->write_begin via pagefault, and jbd2_journal_commit
1351                  * b. racing with ->readpage, ->write_begin, and ext4_get_block
1352                  *    in move_extent_per_page
1353                  */
1354                 double_up_write_data_sem(orig_inode, donor_inode);
1355
1356                 while (orig_page_offset <= seq_end_page) {
1357
1358                         /* Swap original branches with new branches */
1359                         block_len_in_page = move_extent_per_page(
1360                                                 o_filp, donor_inode,
1361                                                 orig_page_offset,
1362                                                 data_offset_in_page,
1363                                                 block_len_in_page, uninit,
1364                                                 &ret1);
1365
1366                         /* Count how many blocks we have exchanged */
1367                         *moved_len += block_len_in_page;
1368                         if (ret1 < 0)
1369                                 break;
1370                         if (*moved_len > len) {
1371                                 ext4_error(orig_inode->i_sb, __func__,
1372                                         "We replaced blocks too much! "
1373                                         "sum of replaced: %llu requested: %llu",
1374                                         *moved_len, len);
1375                                 ret1 = -EIO;
1376                                 break;
1377                         }
1378
1379                         orig_page_offset++;
1380                         data_offset_in_page = 0;
1381                         rest_blocks -= block_len_in_page;
1382                         if (rest_blocks > blocks_per_page)
1383                                 block_len_in_page = blocks_per_page;
1384                         else
1385                                 block_len_in_page = rest_blocks;
1386                 }
1387
1388                 double_down_write_data_sem(orig_inode, donor_inode);
1389                 if (ret1 < 0)
1390                         break;
1391
1392                 /* Decrease buffer counter */
1393                 if (holecheck_path)
1394                         ext4_ext_drop_refs(holecheck_path);
1395                 ret1 = get_ext_path(orig_inode, seq_start, &holecheck_path);
1396                 if (ret1)
1397                         break;
1398                 depth = holecheck_path->p_depth;
1399
1400                 /* Decrease buffer counter */
1401                 if (orig_path)
1402                         ext4_ext_drop_refs(orig_path);
1403                 ret1 = get_ext_path(orig_inode, seq_start, &orig_path);
1404                 if (ret1)
1405                         break;
1406
1407                 ext_cur = holecheck_path[depth].p_ext;
1408                 add_blocks = ext4_ext_get_actual_len(ext_cur);
1409                 seq_blocks = 0;
1410
1411         }
1412 out:
1413         if (orig_path) {
1414                 ext4_ext_drop_refs(orig_path);
1415                 kfree(orig_path);
1416         }
1417         if (holecheck_path) {
1418                 ext4_ext_drop_refs(holecheck_path);
1419                 kfree(holecheck_path);
1420         }
1421         double_up_write_data_sem(orig_inode, donor_inode);
1422         ret2 = mext_inode_double_unlock(orig_inode, donor_inode);
1423
1424         if (ret1)
1425                 return ret1;
1426         else if (ret2)
1427                 return ret2;
1428
1429         return 0;
1430 }