2 * Copyright (c) 2012 Taobao.
3 * Written by Tao Ma <boyu.mt@taobao.com>
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.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/fiemap.h>
17 #include "ext4_jbd2.h"
22 #define EXT4_XATTR_SYSTEM_DATA "data"
23 #define EXT4_MIN_INLINE_DATA_SIZE ((sizeof(__le32) * EXT4_N_BLOCKS))
24 #define EXT4_INLINE_DOTDOT_OFFSET 2
25 #define EXT4_INLINE_DOTDOT_SIZE 4
27 static int ext4_get_inline_size(struct inode
*inode
)
29 if (EXT4_I(inode
)->i_inline_off
)
30 return EXT4_I(inode
)->i_inline_size
;
35 static int get_max_inline_xattr_value_size(struct inode
*inode
,
36 struct ext4_iloc
*iloc
)
38 struct ext4_xattr_ibody_header
*header
;
39 struct ext4_xattr_entry
*entry
;
40 struct ext4_inode
*raw_inode
;
43 min_offs
= EXT4_SB(inode
->i_sb
)->s_inode_size
-
44 EXT4_GOOD_OLD_INODE_SIZE
-
45 EXT4_I(inode
)->i_extra_isize
-
46 sizeof(struct ext4_xattr_ibody_header
);
49 * We need to subtract another sizeof(__u32) since an in-inode xattr
50 * needs an empty 4 bytes to indicate the gap between the xattr entry
51 * and the name/value pair.
53 if (!ext4_test_inode_state(inode
, EXT4_STATE_XATTR
))
54 return EXT4_XATTR_SIZE(min_offs
-
55 EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA
)) -
56 EXT4_XATTR_ROUND
- sizeof(__u32
));
58 raw_inode
= ext4_raw_inode(iloc
);
59 header
= IHDR(inode
, raw_inode
);
60 entry
= IFIRST(header
);
62 /* Compute min_offs. */
63 for (; !IS_LAST_ENTRY(entry
); entry
= EXT4_XATTR_NEXT(entry
)) {
64 if (!entry
->e_value_block
&& entry
->e_value_size
) {
65 size_t offs
= le16_to_cpu(entry
->e_value_offs
);
71 ((void *)entry
- (void *)IFIRST(header
)) - sizeof(__u32
);
73 if (EXT4_I(inode
)->i_inline_off
) {
74 entry
= (struct ext4_xattr_entry
*)
75 ((void *)raw_inode
+ EXT4_I(inode
)->i_inline_off
);
77 free
+= EXT4_XATTR_SIZE(le32_to_cpu(entry
->e_value_size
));
81 free
-= EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA
));
83 if (free
> EXT4_XATTR_ROUND
)
84 free
= EXT4_XATTR_SIZE(free
- EXT4_XATTR_ROUND
);
93 * Get the maximum size we now can store in an inode.
94 * If we can't find the space for a xattr entry, don't use the space
95 * of the extents since we have no space to indicate the inline data.
97 int ext4_get_max_inline_size(struct inode
*inode
)
99 int error
, max_inline_size
;
100 struct ext4_iloc iloc
;
102 if (EXT4_I(inode
)->i_extra_isize
== 0)
105 error
= ext4_get_inode_loc(inode
, &iloc
);
107 ext4_error_inode(inode
, __func__
, __LINE__
, 0,
108 "can't get inode location %lu",
113 down_read(&EXT4_I(inode
)->xattr_sem
);
114 max_inline_size
= get_max_inline_xattr_value_size(inode
, &iloc
);
115 up_read(&EXT4_I(inode
)->xattr_sem
);
119 if (!max_inline_size
)
122 return max_inline_size
+ EXT4_MIN_INLINE_DATA_SIZE
;
126 * this function does not take xattr_sem, which is OK because it is
127 * currently only used in a code path coming form ext4_iget, before
128 * the new inode has been unlocked
130 int ext4_find_inline_data_nolock(struct inode
*inode
)
132 struct ext4_xattr_ibody_find is
= {
133 .s
= { .not_found
= -ENODATA
, },
135 struct ext4_xattr_info i
= {
136 .name_index
= EXT4_XATTR_INDEX_SYSTEM
,
137 .name
= EXT4_XATTR_SYSTEM_DATA
,
141 if (EXT4_I(inode
)->i_extra_isize
== 0)
144 error
= ext4_get_inode_loc(inode
, &is
.iloc
);
148 error
= ext4_xattr_ibody_find(inode
, &i
, &is
);
152 if (!is
.s
.not_found
) {
153 EXT4_I(inode
)->i_inline_off
= (u16
)((void *)is
.s
.here
-
154 (void *)ext4_raw_inode(&is
.iloc
));
155 EXT4_I(inode
)->i_inline_size
= EXT4_MIN_INLINE_DATA_SIZE
+
156 le32_to_cpu(is
.s
.here
->e_value_size
);
157 ext4_set_inode_state(inode
, EXT4_STATE_MAY_INLINE_DATA
);
164 static int ext4_read_inline_data(struct inode
*inode
, void *buffer
,
166 struct ext4_iloc
*iloc
)
168 struct ext4_xattr_entry
*entry
;
169 struct ext4_xattr_ibody_header
*header
;
171 struct ext4_inode
*raw_inode
;
176 BUG_ON(len
> EXT4_I(inode
)->i_inline_size
);
178 cp_len
= len
< EXT4_MIN_INLINE_DATA_SIZE
?
179 len
: EXT4_MIN_INLINE_DATA_SIZE
;
181 raw_inode
= ext4_raw_inode(iloc
);
182 memcpy(buffer
, (void *)(raw_inode
->i_block
), cp_len
);
190 header
= IHDR(inode
, raw_inode
);
191 entry
= (struct ext4_xattr_entry
*)((void *)raw_inode
+
192 EXT4_I(inode
)->i_inline_off
);
193 len
= min_t(unsigned int, len
,
194 (unsigned int)le32_to_cpu(entry
->e_value_size
));
197 (void *)IFIRST(header
) + le16_to_cpu(entry
->e_value_offs
), len
);
205 * write the buffer to the inline inode.
206 * If 'create' is set, we don't need to do the extra copy in the xattr
207 * value since it is already handled by ext4_xattr_ibody_inline_set.
208 * That saves us one memcpy.
210 static void ext4_write_inline_data(struct inode
*inode
, struct ext4_iloc
*iloc
,
211 void *buffer
, loff_t pos
, unsigned int len
)
213 struct ext4_xattr_entry
*entry
;
214 struct ext4_xattr_ibody_header
*header
;
215 struct ext4_inode
*raw_inode
;
218 BUG_ON(!EXT4_I(inode
)->i_inline_off
);
219 BUG_ON(pos
+ len
> EXT4_I(inode
)->i_inline_size
);
221 raw_inode
= ext4_raw_inode(iloc
);
224 if (pos
< EXT4_MIN_INLINE_DATA_SIZE
) {
225 cp_len
= pos
+ len
> EXT4_MIN_INLINE_DATA_SIZE
?
226 EXT4_MIN_INLINE_DATA_SIZE
- pos
: len
;
227 memcpy((void *)raw_inode
->i_block
+ pos
, buffer
, cp_len
);
237 pos
-= EXT4_MIN_INLINE_DATA_SIZE
;
238 header
= IHDR(inode
, raw_inode
);
239 entry
= (struct ext4_xattr_entry
*)((void *)raw_inode
+
240 EXT4_I(inode
)->i_inline_off
);
242 memcpy((void *)IFIRST(header
) + le16_to_cpu(entry
->e_value_offs
) + pos
,
246 static int ext4_create_inline_data(handle_t
*handle
,
247 struct inode
*inode
, unsigned len
)
251 struct ext4_xattr_ibody_find is
= {
252 .s
= { .not_found
= -ENODATA
, },
254 struct ext4_xattr_info i
= {
255 .name_index
= EXT4_XATTR_INDEX_SYSTEM
,
256 .name
= EXT4_XATTR_SYSTEM_DATA
,
259 error
= ext4_get_inode_loc(inode
, &is
.iloc
);
263 BUFFER_TRACE(is
.iloc
.bh
, "get_write_access");
264 error
= ext4_journal_get_write_access(handle
, is
.iloc
.bh
);
268 if (len
> EXT4_MIN_INLINE_DATA_SIZE
) {
269 value
= EXT4_ZERO_XATTR_VALUE
;
270 len
-= EXT4_MIN_INLINE_DATA_SIZE
;
276 /* Insert the the xttr entry. */
280 error
= ext4_xattr_ibody_find(inode
, &i
, &is
);
284 BUG_ON(!is
.s
.not_found
);
286 error
= ext4_xattr_ibody_inline_set(handle
, inode
, &i
, &is
);
288 if (error
== -ENOSPC
)
289 ext4_clear_inode_state(inode
,
290 EXT4_STATE_MAY_INLINE_DATA
);
294 memset((void *)ext4_raw_inode(&is
.iloc
)->i_block
,
295 0, EXT4_MIN_INLINE_DATA_SIZE
);
297 EXT4_I(inode
)->i_inline_off
= (u16
)((void *)is
.s
.here
-
298 (void *)ext4_raw_inode(&is
.iloc
));
299 EXT4_I(inode
)->i_inline_size
= len
+ EXT4_MIN_INLINE_DATA_SIZE
;
300 ext4_clear_inode_flag(inode
, EXT4_INODE_EXTENTS
);
301 ext4_set_inode_flag(inode
, EXT4_INODE_INLINE_DATA
);
303 error
= ext4_mark_iloc_dirty(handle
, inode
, &is
.iloc
);
310 static int ext4_update_inline_data(handle_t
*handle
, struct inode
*inode
,
315 struct ext4_xattr_ibody_find is
= {
316 .s
= { .not_found
= -ENODATA
, },
318 struct ext4_xattr_info i
= {
319 .name_index
= EXT4_XATTR_INDEX_SYSTEM
,
320 .name
= EXT4_XATTR_SYSTEM_DATA
,
323 /* If the old space is ok, write the data directly. */
324 if (len
<= EXT4_I(inode
)->i_inline_size
)
327 error
= ext4_get_inode_loc(inode
, &is
.iloc
);
331 error
= ext4_xattr_ibody_find(inode
, &i
, &is
);
335 BUG_ON(is
.s
.not_found
);
337 len
-= EXT4_MIN_INLINE_DATA_SIZE
;
338 value
= kzalloc(len
, GFP_NOFS
);
344 error
= ext4_xattr_ibody_get(inode
, i
.name_index
, i
.name
,
346 if (error
== -ENODATA
)
349 BUFFER_TRACE(is
.iloc
.bh
, "get_write_access");
350 error
= ext4_journal_get_write_access(handle
, is
.iloc
.bh
);
354 /* Update the xttr entry. */
358 error
= ext4_xattr_ibody_inline_set(handle
, inode
, &i
, &is
);
362 EXT4_I(inode
)->i_inline_off
= (u16
)((void *)is
.s
.here
-
363 (void *)ext4_raw_inode(&is
.iloc
));
364 EXT4_I(inode
)->i_inline_size
= EXT4_MIN_INLINE_DATA_SIZE
+
365 le32_to_cpu(is
.s
.here
->e_value_size
);
366 ext4_set_inode_state(inode
, EXT4_STATE_MAY_INLINE_DATA
);
368 error
= ext4_mark_iloc_dirty(handle
, inode
, &is
.iloc
);
376 static int ext4_prepare_inline_data(handle_t
*handle
, struct inode
*inode
,
379 int ret
, size
, no_expand
;
380 struct ext4_inode_info
*ei
= EXT4_I(inode
);
382 if (!ext4_test_inode_state(inode
, EXT4_STATE_MAY_INLINE_DATA
))
385 size
= ext4_get_max_inline_size(inode
);
389 ext4_write_lock_xattr(inode
, &no_expand
);
391 if (ei
->i_inline_off
)
392 ret
= ext4_update_inline_data(handle
, inode
, len
);
394 ret
= ext4_create_inline_data(handle
, inode
, len
);
396 ext4_write_unlock_xattr(inode
, &no_expand
);
400 static int ext4_destroy_inline_data_nolock(handle_t
*handle
,
403 struct ext4_inode_info
*ei
= EXT4_I(inode
);
404 struct ext4_xattr_ibody_find is
= {
405 .s
= { .not_found
= 0, },
407 struct ext4_xattr_info i
= {
408 .name_index
= EXT4_XATTR_INDEX_SYSTEM
,
409 .name
= EXT4_XATTR_SYSTEM_DATA
,
415 if (!ei
->i_inline_off
)
418 error
= ext4_get_inode_loc(inode
, &is
.iloc
);
422 error
= ext4_xattr_ibody_find(inode
, &i
, &is
);
426 BUFFER_TRACE(is
.iloc
.bh
, "get_write_access");
427 error
= ext4_journal_get_write_access(handle
, is
.iloc
.bh
);
431 error
= ext4_xattr_ibody_inline_set(handle
, inode
, &i
, &is
);
435 memset((void *)ext4_raw_inode(&is
.iloc
)->i_block
,
436 0, EXT4_MIN_INLINE_DATA_SIZE
);
437 memset(ei
->i_data
, 0, EXT4_MIN_INLINE_DATA_SIZE
);
439 if (ext4_has_feature_extents(inode
->i_sb
)) {
440 if (S_ISDIR(inode
->i_mode
) ||
441 S_ISREG(inode
->i_mode
) || S_ISLNK(inode
->i_mode
)) {
442 ext4_set_inode_flag(inode
, EXT4_INODE_EXTENTS
);
443 ext4_ext_tree_init(handle
, inode
);
446 ext4_clear_inode_flag(inode
, EXT4_INODE_INLINE_DATA
);
449 error
= ext4_mark_iloc_dirty(handle
, inode
, &is
.iloc
);
451 EXT4_I(inode
)->i_inline_off
= 0;
452 EXT4_I(inode
)->i_inline_size
= 0;
453 ext4_clear_inode_state(inode
, EXT4_STATE_MAY_INLINE_DATA
);
456 if (error
== -ENODATA
)
461 static int ext4_read_inline_page(struct inode
*inode
, struct page
*page
)
466 struct ext4_iloc iloc
;
468 BUG_ON(!PageLocked(page
));
469 BUG_ON(!ext4_has_inline_data(inode
));
472 if (!EXT4_I(inode
)->i_inline_off
) {
473 ext4_warning(inode
->i_sb
, "inode %lu doesn't have inline data.",
478 ret
= ext4_get_inode_loc(inode
, &iloc
);
482 len
= min_t(size_t, ext4_get_inline_size(inode
), i_size_read(inode
));
483 kaddr
= kmap_atomic(page
);
484 ret
= ext4_read_inline_data(inode
, kaddr
, len
, &iloc
);
485 flush_dcache_page(page
);
486 kunmap_atomic(kaddr
);
487 zero_user_segment(page
, len
, PAGE_CACHE_SIZE
);
488 SetPageUptodate(page
);
495 int ext4_readpage_inline(struct inode
*inode
, struct page
*page
)
499 down_read(&EXT4_I(inode
)->xattr_sem
);
500 if (!ext4_has_inline_data(inode
)) {
501 up_read(&EXT4_I(inode
)->xattr_sem
);
506 * Current inline data can only exist in the 1st page,
507 * So for all the other pages, just set them uptodate.
510 ret
= ext4_read_inline_page(inode
, page
);
511 else if (!PageUptodate(page
)) {
512 zero_user_segment(page
, 0, PAGE_CACHE_SIZE
);
513 SetPageUptodate(page
);
516 up_read(&EXT4_I(inode
)->xattr_sem
);
519 return ret
>= 0 ? 0 : ret
;
522 static int ext4_convert_inline_data_to_extent(struct address_space
*mapping
,
526 int ret
, needed_blocks
, no_expand
;
527 handle_t
*handle
= NULL
;
528 int retries
= 0, sem_held
= 0;
529 struct page
*page
= NULL
;
531 struct ext4_iloc iloc
;
533 if (!ext4_has_inline_data(inode
)) {
535 * clear the flag so that no new write
536 * will trap here again.
538 ext4_clear_inode_state(inode
, EXT4_STATE_MAY_INLINE_DATA
);
542 needed_blocks
= ext4_writepage_trans_blocks(inode
);
544 ret
= ext4_get_inode_loc(inode
, &iloc
);
549 handle
= ext4_journal_start(inode
, EXT4_HT_WRITE_PAGE
, needed_blocks
);
550 if (IS_ERR(handle
)) {
551 ret
= PTR_ERR(handle
);
556 /* We cannot recurse into the filesystem as the transaction is already
558 flags
|= AOP_FLAG_NOFS
;
560 page
= grab_cache_page_write_begin(mapping
, 0, flags
);
566 ext4_write_lock_xattr(inode
, &no_expand
);
568 /* If some one has already done this for us, just exit. */
569 if (!ext4_has_inline_data(inode
)) {
575 to
= ext4_get_inline_size(inode
);
576 if (!PageUptodate(page
)) {
577 ret
= ext4_read_inline_page(inode
, page
);
582 ret
= ext4_destroy_inline_data_nolock(handle
, inode
);
586 if (ext4_should_dioread_nolock(inode
))
587 ret
= __block_write_begin(page
, from
, to
, ext4_get_block_write
);
589 ret
= __block_write_begin(page
, from
, to
, ext4_get_block
);
591 if (!ret
&& ext4_should_journal_data(inode
)) {
592 ret
= ext4_walk_page_buffers(handle
, page_buffers(page
),
594 do_journal_get_write_access
);
599 page_cache_release(page
);
601 ext4_orphan_add(handle
, inode
);
602 ext4_write_unlock_xattr(inode
, &no_expand
);
604 ext4_journal_stop(handle
);
606 ext4_truncate_failed_write(inode
);
608 * If truncate failed early the inode might
609 * still be on the orphan list; we need to
610 * make sure the inode is removed from the
611 * orphan list in that case.
614 ext4_orphan_del(NULL
, inode
);
617 if (ret
== -ENOSPC
&& ext4_should_retry_alloc(inode
->i_sb
, &retries
))
621 block_commit_write(page
, from
, to
);
625 page_cache_release(page
);
628 ext4_write_unlock_xattr(inode
, &no_expand
);
630 ext4_journal_stop(handle
);
636 * Try to write data in the inode.
637 * If the inode has inline data, check whether the new write can be
638 * in the inode also. If not, create the page the handle, move the data
639 * to the page make it update and let the later codes create extent for it.
641 int ext4_try_to_write_inline_data(struct address_space
*mapping
,
643 loff_t pos
, unsigned len
,
650 struct ext4_iloc iloc
;
652 if (pos
+ len
> ext4_get_max_inline_size(inode
))
655 ret
= ext4_get_inode_loc(inode
, &iloc
);
660 * The possible write could happen in the inode,
661 * so try to reserve the space in inode first.
663 handle
= ext4_journal_start(inode
, EXT4_HT_INODE
, 1);
664 if (IS_ERR(handle
)) {
665 ret
= PTR_ERR(handle
);
670 ret
= ext4_prepare_inline_data(handle
, inode
, pos
+ len
);
671 if (ret
&& ret
!= -ENOSPC
)
674 /* We don't have space in inline inode, so convert it to extent. */
675 if (ret
== -ENOSPC
) {
676 ext4_journal_stop(handle
);
681 ret
= ext4_journal_get_write_access(handle
, iloc
.bh
);
685 flags
|= AOP_FLAG_NOFS
;
687 page
= grab_cache_page_write_begin(mapping
, 0, flags
);
694 down_read(&EXT4_I(inode
)->xattr_sem
);
695 if (!ext4_has_inline_data(inode
)) {
698 page_cache_release(page
);
702 if (!PageUptodate(page
)) {
703 ret
= ext4_read_inline_page(inode
, page
);
714 up_read(&EXT4_I(inode
)->xattr_sem
);
716 if (handle
&& (ret
!= 1))
717 ext4_journal_stop(handle
);
721 return ext4_convert_inline_data_to_extent(mapping
,
725 int ext4_write_inline_data_end(struct inode
*inode
, loff_t pos
, unsigned len
,
726 unsigned copied
, struct page
*page
)
730 struct ext4_iloc iloc
;
732 if (unlikely(copied
< len
)) {
733 if (!PageUptodate(page
)) {
739 ret
= ext4_get_inode_loc(inode
, &iloc
);
741 ext4_std_error(inode
->i_sb
, ret
);
746 ext4_write_lock_xattr(inode
, &no_expand
);
747 BUG_ON(!ext4_has_inline_data(inode
));
749 kaddr
= kmap_atomic(page
);
750 ext4_write_inline_data(inode
, &iloc
, kaddr
, pos
, len
);
751 kunmap_atomic(kaddr
);
752 SetPageUptodate(page
);
753 /* clear page dirty so that writepages wouldn't work for us. */
754 ClearPageDirty(page
);
756 ext4_write_unlock_xattr(inode
, &no_expand
);
758 mark_inode_dirty(inode
);
764 ext4_journalled_write_inline_data(struct inode
*inode
,
770 struct ext4_iloc iloc
;
772 ret
= ext4_get_inode_loc(inode
, &iloc
);
774 ext4_std_error(inode
->i_sb
, ret
);
778 ext4_write_lock_xattr(inode
, &no_expand
);
779 kaddr
= kmap_atomic(page
);
780 ext4_write_inline_data(inode
, &iloc
, kaddr
, 0, len
);
781 kunmap_atomic(kaddr
);
782 ext4_write_unlock_xattr(inode
, &no_expand
);
788 * Try to make the page cache and handle ready for the inline data case.
789 * We can call this function in 2 cases:
790 * 1. The inode is created and the first write exceeds inline size. We can
791 * clear the inode state safely.
792 * 2. The inode has inline data, then we need to read the data, make it
793 * update and dirty so that ext4_da_writepages can handle it. We don't
794 * need to start the journal since the file's metatdata isn't changed now.
796 static int ext4_da_convert_inline_data_to_extent(struct address_space
*mapping
,
801 int ret
= 0, inline_size
;
804 page
= grab_cache_page_write_begin(mapping
, 0, flags
);
808 down_read(&EXT4_I(inode
)->xattr_sem
);
809 if (!ext4_has_inline_data(inode
)) {
810 ext4_clear_inode_state(inode
, EXT4_STATE_MAY_INLINE_DATA
);
814 inline_size
= ext4_get_inline_size(inode
);
816 if (!PageUptodate(page
)) {
817 ret
= ext4_read_inline_page(inode
, page
);
822 ret
= __block_write_begin(page
, 0, inline_size
,
823 ext4_da_get_block_prep
);
825 up_read(&EXT4_I(inode
)->xattr_sem
);
827 page_cache_release(page
);
828 ext4_truncate_failed_write(inode
);
833 SetPageUptodate(page
);
834 ext4_clear_inode_state(inode
, EXT4_STATE_MAY_INLINE_DATA
);
835 *fsdata
= (void *)CONVERT_INLINE_DATA
;
838 up_read(&EXT4_I(inode
)->xattr_sem
);
841 page_cache_release(page
);
847 * Prepare the write for the inline data.
848 * If the the data can be written into the inode, we just read
849 * the page and make it uptodate, and start the journal.
850 * Otherwise read the page, makes it dirty so that it can be
851 * handle in writepages(the i_disksize update is left to the
852 * normal ext4_da_write_end).
854 int ext4_da_write_inline_data_begin(struct address_space
*mapping
,
856 loff_t pos
, unsigned len
,
861 int ret
, inline_size
;
864 struct ext4_iloc iloc
;
867 ret
= ext4_get_inode_loc(inode
, &iloc
);
872 handle
= ext4_journal_start(inode
, EXT4_HT_INODE
, 1);
873 if (IS_ERR(handle
)) {
874 ret
= PTR_ERR(handle
);
878 inline_size
= ext4_get_max_inline_size(inode
);
881 if (inline_size
>= pos
+ len
) {
882 ret
= ext4_prepare_inline_data(handle
, inode
, pos
+ len
);
883 if (ret
&& ret
!= -ENOSPC
)
888 * We cannot recurse into the filesystem as the transaction
889 * is already started.
891 flags
|= AOP_FLAG_NOFS
;
893 if (ret
== -ENOSPC
) {
894 ext4_journal_stop(handle
);
895 ret
= ext4_da_convert_inline_data_to_extent(mapping
,
899 if (ret
== -ENOSPC
&&
900 ext4_should_retry_alloc(inode
->i_sb
, &retries
))
905 page
= grab_cache_page_write_begin(mapping
, 0, flags
);
911 down_read(&EXT4_I(inode
)->xattr_sem
);
912 if (!ext4_has_inline_data(inode
)) {
914 goto out_release_page
;
917 if (!PageUptodate(page
)) {
918 ret
= ext4_read_inline_page(inode
, page
);
920 goto out_release_page
;
922 ret
= ext4_journal_get_write_access(handle
, iloc
.bh
);
924 goto out_release_page
;
926 up_read(&EXT4_I(inode
)->xattr_sem
);
931 up_read(&EXT4_I(inode
)->xattr_sem
);
933 page_cache_release(page
);
935 ext4_journal_stop(handle
);
941 int ext4_da_write_inline_data_end(struct inode
*inode
, loff_t pos
,
942 unsigned len
, unsigned copied
,
947 ret
= ext4_write_inline_data_end(inode
, pos
, len
, copied
, page
);
956 * No need to use i_size_read() here, the i_size
957 * cannot change under us because we hold i_mutex.
959 * But it's important to update i_size while still holding page lock:
960 * page writeout could otherwise come in and zero beyond i_size.
962 if (pos
+copied
> inode
->i_size
)
963 i_size_write(inode
, pos
+copied
);
965 page_cache_release(page
);
968 * Don't mark the inode dirty under page lock. First, it unnecessarily
969 * makes the holding time of page lock longer. Second, it forces lock
970 * ordering of page lock and transaction start for journaling
973 mark_inode_dirty(inode
);
978 #ifdef INLINE_DIR_DEBUG
979 void ext4_show_inline_dir(struct inode
*dir
, struct buffer_head
*bh
,
980 void *inline_start
, int inline_size
)
983 unsigned short de_len
;
984 struct ext4_dir_entry_2
*de
= inline_start
;
985 void *dlimit
= inline_start
+ inline_size
;
987 trace_printk("inode %lu\n", dir
->i_ino
);
989 while ((void *)de
< dlimit
) {
990 de_len
= ext4_rec_len_from_disk(de
->rec_len
, inline_size
);
991 trace_printk("de: off %u rlen %u name %.*s nlen %u ino %u\n",
992 offset
, de_len
, de
->name_len
, de
->name
,
993 de
->name_len
, le32_to_cpu(de
->inode
));
994 if (ext4_check_dir_entry(dir
, NULL
, de
, bh
,
995 inline_start
, inline_size
, offset
))
999 de
= (struct ext4_dir_entry_2
*) ((char *) de
+ de_len
);
1003 #define ext4_show_inline_dir(dir, bh, inline_start, inline_size)
1007 * Add a new entry into a inline dir.
1008 * It will return -ENOSPC if no space is available, and -EIO
1009 * and -EEXIST if directory entry already exists.
1011 static int ext4_add_dirent_to_inline(handle_t
*handle
,
1012 struct ext4_filename
*fname
,
1013 struct dentry
*dentry
,
1014 struct inode
*inode
,
1015 struct ext4_iloc
*iloc
,
1016 void *inline_start
, int inline_size
)
1018 struct inode
*dir
= d_inode(dentry
->d_parent
);
1020 struct ext4_dir_entry_2
*de
;
1022 err
= ext4_find_dest_de(dir
, inode
, iloc
->bh
, inline_start
,
1023 inline_size
, fname
, &de
);
1027 BUFFER_TRACE(iloc
->bh
, "get_write_access");
1028 err
= ext4_journal_get_write_access(handle
, iloc
->bh
);
1031 ext4_insert_dentry(dir
, inode
, de
, inline_size
, fname
);
1033 ext4_show_inline_dir(dir
, iloc
->bh
, inline_start
, inline_size
);
1036 * XXX shouldn't update any times until successful
1037 * completion of syscall, but too many callers depend
1040 * XXX similarly, too many callers depend on
1041 * ext4_new_inode() setting the times, but error
1042 * recovery deletes the inode, so the worst that can
1043 * happen is that the times are slightly out of date
1044 * and/or different from the directory change time.
1046 dir
->i_mtime
= dir
->i_ctime
= ext4_current_time(dir
);
1047 ext4_update_dx_flag(dir
);
1049 ext4_mark_inode_dirty(handle
, dir
);
1053 static void *ext4_get_inline_xattr_pos(struct inode
*inode
,
1054 struct ext4_iloc
*iloc
)
1056 struct ext4_xattr_entry
*entry
;
1057 struct ext4_xattr_ibody_header
*header
;
1059 BUG_ON(!EXT4_I(inode
)->i_inline_off
);
1061 header
= IHDR(inode
, ext4_raw_inode(iloc
));
1062 entry
= (struct ext4_xattr_entry
*)((void *)ext4_raw_inode(iloc
) +
1063 EXT4_I(inode
)->i_inline_off
);
1065 return (void *)IFIRST(header
) + le16_to_cpu(entry
->e_value_offs
);
1068 /* Set the final de to cover the whole block. */
1069 static void ext4_update_final_de(void *de_buf
, int old_size
, int new_size
)
1071 struct ext4_dir_entry_2
*de
, *prev_de
;
1075 de
= (struct ext4_dir_entry_2
*)de_buf
;
1077 limit
= de_buf
+ old_size
;
1080 de_len
= ext4_rec_len_from_disk(de
->rec_len
, old_size
);
1082 de
= (struct ext4_dir_entry_2
*)de_buf
;
1083 } while (de_buf
< limit
);
1085 prev_de
->rec_len
= ext4_rec_len_to_disk(de_len
+ new_size
-
1086 old_size
, new_size
);
1088 /* this is just created, so create an empty entry. */
1090 de
->rec_len
= ext4_rec_len_to_disk(new_size
, new_size
);
1094 static int ext4_update_inline_dir(handle_t
*handle
, struct inode
*dir
,
1095 struct ext4_iloc
*iloc
)
1098 int old_size
= EXT4_I(dir
)->i_inline_size
- EXT4_MIN_INLINE_DATA_SIZE
;
1099 int new_size
= get_max_inline_xattr_value_size(dir
, iloc
);
1101 if (new_size
- old_size
<= EXT4_DIR_REC_LEN(1))
1104 ret
= ext4_update_inline_data(handle
, dir
,
1105 new_size
+ EXT4_MIN_INLINE_DATA_SIZE
);
1109 ext4_update_final_de(ext4_get_inline_xattr_pos(dir
, iloc
), old_size
,
1110 EXT4_I(dir
)->i_inline_size
-
1111 EXT4_MIN_INLINE_DATA_SIZE
);
1112 dir
->i_size
= EXT4_I(dir
)->i_disksize
= EXT4_I(dir
)->i_inline_size
;
1116 static void ext4_restore_inline_data(handle_t
*handle
, struct inode
*inode
,
1117 struct ext4_iloc
*iloc
,
1118 void *buf
, int inline_size
)
1120 ext4_create_inline_data(handle
, inode
, inline_size
);
1121 ext4_write_inline_data(inode
, iloc
, buf
, 0, inline_size
);
1122 ext4_set_inode_state(inode
, EXT4_STATE_MAY_INLINE_DATA
);
1125 static int ext4_finish_convert_inline_dir(handle_t
*handle
,
1126 struct inode
*inode
,
1127 struct buffer_head
*dir_block
,
1131 int err
, csum_size
= 0, header_size
= 0;
1132 struct ext4_dir_entry_2
*de
;
1133 struct ext4_dir_entry_tail
*t
;
1134 void *target
= dir_block
->b_data
;
1137 * First create "." and ".." and then copy the dir information
1138 * back to the block.
1140 de
= (struct ext4_dir_entry_2
*)target
;
1141 de
= ext4_init_dot_dotdot(inode
, de
,
1142 inode
->i_sb
->s_blocksize
, csum_size
,
1143 le32_to_cpu(((struct ext4_dir_entry_2
*)buf
)->inode
), 1);
1144 header_size
= (void *)de
- target
;
1146 memcpy((void *)de
, buf
+ EXT4_INLINE_DOTDOT_SIZE
,
1147 inline_size
- EXT4_INLINE_DOTDOT_SIZE
);
1149 if (ext4_has_metadata_csum(inode
->i_sb
))
1150 csum_size
= sizeof(struct ext4_dir_entry_tail
);
1152 inode
->i_size
= inode
->i_sb
->s_blocksize
;
1153 i_size_write(inode
, inode
->i_sb
->s_blocksize
);
1154 EXT4_I(inode
)->i_disksize
= inode
->i_sb
->s_blocksize
;
1155 ext4_update_final_de(dir_block
->b_data
,
1156 inline_size
- EXT4_INLINE_DOTDOT_SIZE
+ header_size
,
1157 inode
->i_sb
->s_blocksize
- csum_size
);
1160 t
= EXT4_DIRENT_TAIL(dir_block
->b_data
,
1161 inode
->i_sb
->s_blocksize
);
1162 initialize_dirent_tail(t
, inode
->i_sb
->s_blocksize
);
1164 set_buffer_uptodate(dir_block
);
1165 err
= ext4_handle_dirty_dirent_node(handle
, inode
, dir_block
);
1168 set_buffer_verified(dir_block
);
1169 return ext4_mark_inode_dirty(handle
, inode
);
1172 static int ext4_convert_inline_data_nolock(handle_t
*handle
,
1173 struct inode
*inode
,
1174 struct ext4_iloc
*iloc
)
1178 struct buffer_head
*data_bh
= NULL
;
1179 struct ext4_map_blocks map
;
1182 inline_size
= ext4_get_inline_size(inode
);
1183 buf
= kmalloc(inline_size
, GFP_NOFS
);
1189 error
= ext4_read_inline_data(inode
, buf
, inline_size
, iloc
);
1194 * Make sure the inline directory entries pass checks before we try to
1195 * convert them, so that we avoid touching stuff that needs fsck.
1197 if (S_ISDIR(inode
->i_mode
)) {
1198 error
= ext4_check_all_de(inode
, iloc
->bh
,
1199 buf
+ EXT4_INLINE_DOTDOT_SIZE
,
1200 inline_size
- EXT4_INLINE_DOTDOT_SIZE
);
1205 error
= ext4_destroy_inline_data_nolock(handle
, inode
);
1212 error
= ext4_map_blocks(handle
, inode
, &map
, EXT4_GET_BLOCKS_CREATE
);
1215 if (!(map
.m_flags
& EXT4_MAP_MAPPED
)) {
1220 data_bh
= sb_getblk(inode
->i_sb
, map
.m_pblk
);
1226 lock_buffer(data_bh
);
1227 error
= ext4_journal_get_create_access(handle
, data_bh
);
1229 unlock_buffer(data_bh
);
1233 memset(data_bh
->b_data
, 0, inode
->i_sb
->s_blocksize
);
1235 if (!S_ISDIR(inode
->i_mode
)) {
1236 memcpy(data_bh
->b_data
, buf
, inline_size
);
1237 set_buffer_uptodate(data_bh
);
1238 error
= ext4_handle_dirty_metadata(handle
,
1241 error
= ext4_finish_convert_inline_dir(handle
, inode
, data_bh
,
1245 unlock_buffer(data_bh
);
1248 ext4_restore_inline_data(handle
, inode
, iloc
, buf
, inline_size
);
1257 * Try to add the new entry to the inline data.
1258 * If succeeds, return 0. If not, extended the inline dir and copied data to
1259 * the new created block.
1261 int ext4_try_add_inline_entry(handle_t
*handle
, struct ext4_filename
*fname
,
1262 struct dentry
*dentry
, struct inode
*inode
)
1264 int ret
, inline_size
, no_expand
;
1266 struct ext4_iloc iloc
;
1267 struct inode
*dir
= d_inode(dentry
->d_parent
);
1269 ret
= ext4_get_inode_loc(dir
, &iloc
);
1273 ext4_write_lock_xattr(dir
, &no_expand
);
1274 if (!ext4_has_inline_data(dir
))
1277 inline_start
= (void *)ext4_raw_inode(&iloc
)->i_block
+
1278 EXT4_INLINE_DOTDOT_SIZE
;
1279 inline_size
= EXT4_MIN_INLINE_DATA_SIZE
- EXT4_INLINE_DOTDOT_SIZE
;
1281 ret
= ext4_add_dirent_to_inline(handle
, fname
, dentry
, inode
, &iloc
,
1282 inline_start
, inline_size
);
1286 /* check whether it can be inserted to inline xattr space. */
1287 inline_size
= EXT4_I(dir
)->i_inline_size
-
1288 EXT4_MIN_INLINE_DATA_SIZE
;
1290 /* Try to use the xattr space.*/
1291 ret
= ext4_update_inline_dir(handle
, dir
, &iloc
);
1292 if (ret
&& ret
!= -ENOSPC
)
1295 inline_size
= EXT4_I(dir
)->i_inline_size
-
1296 EXT4_MIN_INLINE_DATA_SIZE
;
1300 inline_start
= ext4_get_inline_xattr_pos(dir
, &iloc
);
1302 ret
= ext4_add_dirent_to_inline(handle
, fname
, dentry
,
1303 inode
, &iloc
, inline_start
,
1311 * The inline space is filled up, so create a new block for it.
1312 * As the extent tree will be created, we have to save the inline
1315 ret
= ext4_convert_inline_data_nolock(handle
, dir
, &iloc
);
1318 ext4_mark_inode_dirty(handle
, dir
);
1319 ext4_write_unlock_xattr(dir
, &no_expand
);
1325 * This function fills a red-black tree with information from an
1326 * inlined dir. It returns the number directory entries loaded
1327 * into the tree. If there is an error it is returned in err.
1329 int htree_inlinedir_to_tree(struct file
*dir_file
,
1330 struct inode
*dir
, ext4_lblk_t block
,
1331 struct dx_hash_info
*hinfo
,
1332 __u32 start_hash
, __u32 start_minor_hash
,
1333 int *has_inline_data
)
1335 int err
= 0, count
= 0;
1336 unsigned int parent_ino
;
1338 struct ext4_dir_entry_2
*de
;
1339 struct inode
*inode
= file_inode(dir_file
);
1340 int ret
, inline_size
= 0;
1341 struct ext4_iloc iloc
;
1342 void *dir_buf
= NULL
;
1343 struct ext4_dir_entry_2 fake
;
1344 struct ext4_str tmp_str
;
1346 ret
= ext4_get_inode_loc(inode
, &iloc
);
1350 down_read(&EXT4_I(inode
)->xattr_sem
);
1351 if (!ext4_has_inline_data(inode
)) {
1352 up_read(&EXT4_I(inode
)->xattr_sem
);
1353 *has_inline_data
= 0;
1357 inline_size
= ext4_get_inline_size(inode
);
1358 dir_buf
= kmalloc(inline_size
, GFP_NOFS
);
1361 up_read(&EXT4_I(inode
)->xattr_sem
);
1365 ret
= ext4_read_inline_data(inode
, dir_buf
, inline_size
, &iloc
);
1366 up_read(&EXT4_I(inode
)->xattr_sem
);
1371 parent_ino
= le32_to_cpu(((struct ext4_dir_entry_2
*)dir_buf
)->inode
);
1372 while (pos
< inline_size
) {
1374 * As inlined dir doesn't store any information about '.' and
1375 * only the inode number of '..' is stored, we have to handle
1379 fake
.inode
= cpu_to_le32(inode
->i_ino
);
1381 strcpy(fake
.name
, ".");
1382 fake
.rec_len
= ext4_rec_len_to_disk(
1383 EXT4_DIR_REC_LEN(fake
.name_len
),
1385 ext4_set_de_type(inode
->i_sb
, &fake
, S_IFDIR
);
1387 pos
= EXT4_INLINE_DOTDOT_OFFSET
;
1388 } else if (pos
== EXT4_INLINE_DOTDOT_OFFSET
) {
1389 fake
.inode
= cpu_to_le32(parent_ino
);
1391 strcpy(fake
.name
, "..");
1392 fake
.rec_len
= ext4_rec_len_to_disk(
1393 EXT4_DIR_REC_LEN(fake
.name_len
),
1395 ext4_set_de_type(inode
->i_sb
, &fake
, S_IFDIR
);
1397 pos
= EXT4_INLINE_DOTDOT_SIZE
;
1399 de
= (struct ext4_dir_entry_2
*)(dir_buf
+ pos
);
1400 pos
+= ext4_rec_len_from_disk(de
->rec_len
, inline_size
);
1401 if (ext4_check_dir_entry(inode
, dir_file
, de
,
1403 inline_size
, pos
)) {
1409 ext4fs_dirhash(de
->name
, de
->name_len
, hinfo
);
1410 if ((hinfo
->hash
< start_hash
) ||
1411 ((hinfo
->hash
== start_hash
) &&
1412 (hinfo
->minor_hash
< start_minor_hash
)))
1416 tmp_str
.name
= de
->name
;
1417 tmp_str
.len
= de
->name_len
;
1418 err
= ext4_htree_store_dirent(dir_file
, hinfo
->hash
,
1419 hinfo
->minor_hash
, de
, &tmp_str
);
1434 * So this function is called when the volume is mkfsed with
1435 * dir_index disabled. In order to keep f_pos persistent
1436 * after we convert from an inlined dir to a blocked based,
1437 * we just pretend that we are a normal dir and return the
1438 * offset as if '.' and '..' really take place.
1441 int ext4_read_inline_dir(struct file
*file
,
1442 struct dir_context
*ctx
,
1443 int *has_inline_data
)
1445 unsigned int offset
, parent_ino
;
1447 struct ext4_dir_entry_2
*de
;
1448 struct super_block
*sb
;
1449 struct inode
*inode
= file_inode(file
);
1450 int ret
, inline_size
= 0;
1451 struct ext4_iloc iloc
;
1452 void *dir_buf
= NULL
;
1453 int dotdot_offset
, dotdot_size
, extra_offset
, extra_size
;
1455 ret
= ext4_get_inode_loc(inode
, &iloc
);
1459 down_read(&EXT4_I(inode
)->xattr_sem
);
1460 if (!ext4_has_inline_data(inode
)) {
1461 up_read(&EXT4_I(inode
)->xattr_sem
);
1462 *has_inline_data
= 0;
1466 inline_size
= ext4_get_inline_size(inode
);
1467 dir_buf
= kmalloc(inline_size
, GFP_NOFS
);
1470 up_read(&EXT4_I(inode
)->xattr_sem
);
1474 ret
= ext4_read_inline_data(inode
, dir_buf
, inline_size
, &iloc
);
1475 up_read(&EXT4_I(inode
)->xattr_sem
);
1481 parent_ino
= le32_to_cpu(((struct ext4_dir_entry_2
*)dir_buf
)->inode
);
1485 * dotdot_offset and dotdot_size is the real offset and
1486 * size for ".." and "." if the dir is block based while
1487 * the real size for them are only EXT4_INLINE_DOTDOT_SIZE.
1488 * So we will use extra_offset and extra_size to indicate them
1489 * during the inline dir iteration.
1491 dotdot_offset
= EXT4_DIR_REC_LEN(1);
1492 dotdot_size
= dotdot_offset
+ EXT4_DIR_REC_LEN(2);
1493 extra_offset
= dotdot_size
- EXT4_INLINE_DOTDOT_SIZE
;
1494 extra_size
= extra_offset
+ inline_size
;
1497 * If the version has changed since the last call to
1498 * readdir(2), then we might be pointing to an invalid
1499 * dirent right now. Scan from the start of the inline
1502 if (file
->f_version
!= inode
->i_version
) {
1503 for (i
= 0; i
< extra_size
&& i
< offset
;) {
1505 * "." is with offset 0 and
1506 * ".." is dotdot_offset.
1511 } else if (i
== dotdot_offset
) {
1515 /* for other entry, the real offset in
1516 * the buf has to be tuned accordingly.
1518 de
= (struct ext4_dir_entry_2
*)
1519 (dir_buf
+ i
- extra_offset
);
1520 /* It's too expensive to do a full
1521 * dirent test each time round this
1522 * loop, but we do have to test at
1523 * least that it is non-zero. A
1524 * failure will be detected in the
1525 * dirent test below. */
1526 if (ext4_rec_len_from_disk(de
->rec_len
, extra_size
)
1527 < EXT4_DIR_REC_LEN(1))
1529 i
+= ext4_rec_len_from_disk(de
->rec_len
,
1534 file
->f_version
= inode
->i_version
;
1537 while (ctx
->pos
< extra_size
) {
1538 if (ctx
->pos
== 0) {
1539 if (!dir_emit(ctx
, ".", 1, inode
->i_ino
, DT_DIR
))
1541 ctx
->pos
= dotdot_offset
;
1545 if (ctx
->pos
== dotdot_offset
) {
1546 if (!dir_emit(ctx
, "..", 2, parent_ino
, DT_DIR
))
1548 ctx
->pos
= dotdot_size
;
1552 de
= (struct ext4_dir_entry_2
*)
1553 (dir_buf
+ ctx
->pos
- extra_offset
);
1554 if (ext4_check_dir_entry(inode
, file
, de
, iloc
.bh
, dir_buf
,
1555 extra_size
, ctx
->pos
))
1557 if (le32_to_cpu(de
->inode
)) {
1558 if (!dir_emit(ctx
, de
->name
, de
->name_len
,
1559 le32_to_cpu(de
->inode
),
1560 get_dtype(sb
, de
->file_type
)))
1563 ctx
->pos
+= ext4_rec_len_from_disk(de
->rec_len
, extra_size
);
1571 struct buffer_head
*ext4_get_first_inline_block(struct inode
*inode
,
1572 struct ext4_dir_entry_2
**parent_de
,
1575 struct ext4_iloc iloc
;
1577 *retval
= ext4_get_inode_loc(inode
, &iloc
);
1581 *parent_de
= (struct ext4_dir_entry_2
*)ext4_raw_inode(&iloc
)->i_block
;
1587 * Try to create the inline data for the new dir.
1588 * If it succeeds, return 0, otherwise return the error.
1589 * In case of ENOSPC, the caller should create the normal disk layout dir.
1591 int ext4_try_create_inline_dir(handle_t
*handle
, struct inode
*parent
,
1592 struct inode
*inode
)
1594 int ret
, inline_size
= EXT4_MIN_INLINE_DATA_SIZE
;
1595 struct ext4_iloc iloc
;
1596 struct ext4_dir_entry_2
*de
;
1598 ret
= ext4_get_inode_loc(inode
, &iloc
);
1602 ret
= ext4_prepare_inline_data(handle
, inode
, inline_size
);
1607 * For inline dir, we only save the inode information for the ".."
1608 * and create a fake dentry to cover the left space.
1610 de
= (struct ext4_dir_entry_2
*)ext4_raw_inode(&iloc
)->i_block
;
1611 de
->inode
= cpu_to_le32(parent
->i_ino
);
1612 de
= (struct ext4_dir_entry_2
*)((void *)de
+ EXT4_INLINE_DOTDOT_SIZE
);
1614 de
->rec_len
= ext4_rec_len_to_disk(
1615 inline_size
- EXT4_INLINE_DOTDOT_SIZE
,
1617 set_nlink(inode
, 2);
1618 inode
->i_size
= EXT4_I(inode
)->i_disksize
= inline_size
;
1624 struct buffer_head
*ext4_find_inline_entry(struct inode
*dir
,
1625 struct ext4_filename
*fname
,
1626 const struct qstr
*d_name
,
1627 struct ext4_dir_entry_2
**res_dir
,
1628 int *has_inline_data
)
1631 struct ext4_iloc iloc
;
1635 if (ext4_get_inode_loc(dir
, &iloc
))
1638 down_read(&EXT4_I(dir
)->xattr_sem
);
1639 if (!ext4_has_inline_data(dir
)) {
1640 *has_inline_data
= 0;
1644 inline_start
= (void *)ext4_raw_inode(&iloc
)->i_block
+
1645 EXT4_INLINE_DOTDOT_SIZE
;
1646 inline_size
= EXT4_MIN_INLINE_DATA_SIZE
- EXT4_INLINE_DOTDOT_SIZE
;
1647 ret
= ext4_search_dir(iloc
.bh
, inline_start
, inline_size
,
1648 dir
, fname
, d_name
, 0, res_dir
);
1654 if (ext4_get_inline_size(dir
) == EXT4_MIN_INLINE_DATA_SIZE
)
1657 inline_start
= ext4_get_inline_xattr_pos(dir
, &iloc
);
1658 inline_size
= ext4_get_inline_size(dir
) - EXT4_MIN_INLINE_DATA_SIZE
;
1660 ret
= ext4_search_dir(iloc
.bh
, inline_start
, inline_size
,
1661 dir
, fname
, d_name
, 0, res_dir
);
1669 up_read(&EXT4_I(dir
)->xattr_sem
);
1673 int ext4_delete_inline_entry(handle_t
*handle
,
1675 struct ext4_dir_entry_2
*de_del
,
1676 struct buffer_head
*bh
,
1677 int *has_inline_data
)
1679 int err
, inline_size
, no_expand
;
1680 struct ext4_iloc iloc
;
1683 err
= ext4_get_inode_loc(dir
, &iloc
);
1687 ext4_write_lock_xattr(dir
, &no_expand
);
1688 if (!ext4_has_inline_data(dir
)) {
1689 *has_inline_data
= 0;
1693 if ((void *)de_del
- ((void *)ext4_raw_inode(&iloc
)->i_block
) <
1694 EXT4_MIN_INLINE_DATA_SIZE
) {
1695 inline_start
= (void *)ext4_raw_inode(&iloc
)->i_block
+
1696 EXT4_INLINE_DOTDOT_SIZE
;
1697 inline_size
= EXT4_MIN_INLINE_DATA_SIZE
-
1698 EXT4_INLINE_DOTDOT_SIZE
;
1700 inline_start
= ext4_get_inline_xattr_pos(dir
, &iloc
);
1701 inline_size
= ext4_get_inline_size(dir
) -
1702 EXT4_MIN_INLINE_DATA_SIZE
;
1705 BUFFER_TRACE(bh
, "get_write_access");
1706 err
= ext4_journal_get_write_access(handle
, bh
);
1710 err
= ext4_generic_delete_entry(handle
, dir
, de_del
, bh
,
1711 inline_start
, inline_size
, 0);
1715 BUFFER_TRACE(bh
, "call ext4_handle_dirty_metadata");
1716 err
= ext4_mark_inode_dirty(handle
, dir
);
1720 ext4_show_inline_dir(dir
, iloc
.bh
, inline_start
, inline_size
);
1722 ext4_write_unlock_xattr(dir
, &no_expand
);
1725 ext4_std_error(dir
->i_sb
, err
);
1730 * Get the inline dentry at offset.
1732 static inline struct ext4_dir_entry_2
*
1733 ext4_get_inline_entry(struct inode
*inode
,
1734 struct ext4_iloc
*iloc
,
1735 unsigned int offset
,
1736 void **inline_start
,
1741 BUG_ON(offset
> ext4_get_inline_size(inode
));
1743 if (offset
< EXT4_MIN_INLINE_DATA_SIZE
) {
1744 inline_pos
= (void *)ext4_raw_inode(iloc
)->i_block
;
1745 *inline_size
= EXT4_MIN_INLINE_DATA_SIZE
;
1747 inline_pos
= ext4_get_inline_xattr_pos(inode
, iloc
);
1748 offset
-= EXT4_MIN_INLINE_DATA_SIZE
;
1749 *inline_size
= ext4_get_inline_size(inode
) -
1750 EXT4_MIN_INLINE_DATA_SIZE
;
1754 *inline_start
= inline_pos
;
1755 return (struct ext4_dir_entry_2
*)(inline_pos
+ offset
);
1758 int empty_inline_dir(struct inode
*dir
, int *has_inline_data
)
1760 int err
, inline_size
;
1761 struct ext4_iloc iloc
;
1764 unsigned int offset
;
1765 struct ext4_dir_entry_2
*de
;
1768 err
= ext4_get_inode_loc(dir
, &iloc
);
1770 EXT4_ERROR_INODE(dir
, "error %d getting inode %lu block",
1775 down_read(&EXT4_I(dir
)->xattr_sem
);
1776 if (!ext4_has_inline_data(dir
)) {
1777 *has_inline_data
= 0;
1781 de
= (struct ext4_dir_entry_2
*)ext4_raw_inode(&iloc
)->i_block
;
1782 if (!le32_to_cpu(de
->inode
)) {
1783 ext4_warning(dir
->i_sb
,
1784 "bad inline directory (dir #%lu) - no `..'",
1790 inline_len
= ext4_get_inline_size(dir
);
1791 offset
= EXT4_INLINE_DOTDOT_SIZE
;
1792 while (offset
< inline_len
) {
1793 de
= ext4_get_inline_entry(dir
, &iloc
, offset
,
1794 &inline_pos
, &inline_size
);
1795 if (ext4_check_dir_entry(dir
, NULL
, de
,
1796 iloc
.bh
, inline_pos
,
1797 inline_size
, offset
)) {
1798 ext4_warning(dir
->i_sb
,
1799 "bad inline directory (dir #%lu) - "
1800 "inode %u, rec_len %u, name_len %d"
1802 dir
->i_ino
, le32_to_cpu(de
->inode
),
1803 le16_to_cpu(de
->rec_len
), de
->name_len
,
1808 if (le32_to_cpu(de
->inode
)) {
1812 offset
+= ext4_rec_len_from_disk(de
->rec_len
, inline_size
);
1816 up_read(&EXT4_I(dir
)->xattr_sem
);
1821 int ext4_destroy_inline_data(handle_t
*handle
, struct inode
*inode
)
1825 ext4_write_lock_xattr(inode
, &no_expand
);
1826 ret
= ext4_destroy_inline_data_nolock(handle
, inode
);
1827 ext4_write_unlock_xattr(inode
, &no_expand
);
1832 int ext4_inline_data_fiemap(struct inode
*inode
,
1833 struct fiemap_extent_info
*fieinfo
,
1834 int *has_inline
, __u64 start
, __u64 len
)
1838 __u32 flags
= FIEMAP_EXTENT_DATA_INLINE
| FIEMAP_EXTENT_NOT_ALIGNED
|
1841 struct ext4_iloc iloc
;
1843 down_read(&EXT4_I(inode
)->xattr_sem
);
1844 if (!ext4_has_inline_data(inode
)) {
1848 inline_len
= min_t(size_t, ext4_get_inline_size(inode
),
1849 i_size_read(inode
));
1850 if (start
>= inline_len
)
1852 if (start
+ len
< inline_len
)
1853 inline_len
= start
+ len
;
1854 inline_len
-= start
;
1856 error
= ext4_get_inode_loc(inode
, &iloc
);
1860 physical
= (__u64
)iloc
.bh
->b_blocknr
<< inode
->i_sb
->s_blocksize_bits
;
1861 physical
+= (char *)ext4_raw_inode(&iloc
) - iloc
.bh
->b_data
;
1862 physical
+= offsetof(struct ext4_inode
, i_block
);
1866 up_read(&EXT4_I(inode
)->xattr_sem
);
1868 error
= fiemap_fill_next_extent(fieinfo
, start
, physical
,
1870 return (error
< 0 ? error
: 0);
1873 void ext4_inline_data_truncate(struct inode
*inode
, int *has_inline
)
1876 int inline_size
, value_len
, needed_blocks
, no_expand
;
1879 struct ext4_xattr_ibody_find is
= {
1880 .s
= { .not_found
= -ENODATA
, },
1882 struct ext4_xattr_info i
= {
1883 .name_index
= EXT4_XATTR_INDEX_SYSTEM
,
1884 .name
= EXT4_XATTR_SYSTEM_DATA
,
1888 needed_blocks
= ext4_writepage_trans_blocks(inode
);
1889 handle
= ext4_journal_start(inode
, EXT4_HT_INODE
, needed_blocks
);
1893 ext4_write_lock_xattr(inode
, &no_expand
);
1894 if (!ext4_has_inline_data(inode
)) {
1896 ext4_journal_stop(handle
);
1900 if (ext4_orphan_add(handle
, inode
))
1903 if (ext4_get_inode_loc(inode
, &is
.iloc
))
1906 down_write(&EXT4_I(inode
)->i_data_sem
);
1907 i_size
= inode
->i_size
;
1908 inline_size
= ext4_get_inline_size(inode
);
1909 EXT4_I(inode
)->i_disksize
= i_size
;
1911 if (i_size
< inline_size
) {
1912 /* Clear the content in the xattr space. */
1913 if (inline_size
> EXT4_MIN_INLINE_DATA_SIZE
) {
1914 if (ext4_xattr_ibody_find(inode
, &i
, &is
))
1917 BUG_ON(is
.s
.not_found
);
1919 value_len
= le32_to_cpu(is
.s
.here
->e_value_size
);
1920 value
= kmalloc(value_len
, GFP_NOFS
);
1924 if (ext4_xattr_ibody_get(inode
, i
.name_index
, i
.name
,
1929 i
.value_len
= i_size
> EXT4_MIN_INLINE_DATA_SIZE
?
1930 i_size
- EXT4_MIN_INLINE_DATA_SIZE
: 0;
1931 if (ext4_xattr_ibody_inline_set(handle
, inode
, &i
, &is
))
1935 /* Clear the content within i_blocks. */
1936 if (i_size
< EXT4_MIN_INLINE_DATA_SIZE
) {
1937 void *p
= (void *) ext4_raw_inode(&is
.iloc
)->i_block
;
1938 memset(p
+ i_size
, 0,
1939 EXT4_MIN_INLINE_DATA_SIZE
- i_size
);
1942 EXT4_I(inode
)->i_inline_size
= i_size
<
1943 EXT4_MIN_INLINE_DATA_SIZE
?
1944 EXT4_MIN_INLINE_DATA_SIZE
: i_size
;
1948 up_write(&EXT4_I(inode
)->i_data_sem
);
1951 ext4_write_unlock_xattr(inode
, &no_expand
);
1954 ext4_orphan_del(handle
, inode
);
1956 inode
->i_mtime
= inode
->i_ctime
= ext4_current_time(inode
);
1957 ext4_mark_inode_dirty(handle
, inode
);
1959 ext4_handle_sync(handle
);
1961 ext4_journal_stop(handle
);
1965 int ext4_convert_inline_data(struct inode
*inode
)
1967 int error
, needed_blocks
, no_expand
;
1969 struct ext4_iloc iloc
;
1971 if (!ext4_has_inline_data(inode
)) {
1972 ext4_clear_inode_state(inode
, EXT4_STATE_MAY_INLINE_DATA
);
1976 needed_blocks
= ext4_writepage_trans_blocks(inode
);
1979 error
= ext4_get_inode_loc(inode
, &iloc
);
1983 handle
= ext4_journal_start(inode
, EXT4_HT_WRITE_PAGE
, needed_blocks
);
1984 if (IS_ERR(handle
)) {
1985 error
= PTR_ERR(handle
);
1989 ext4_write_lock_xattr(inode
, &no_expand
);
1990 if (ext4_has_inline_data(inode
))
1991 error
= ext4_convert_inline_data_nolock(handle
, inode
, &iloc
);
1992 ext4_write_unlock_xattr(inode
, &no_expand
);
1993 ext4_journal_stop(handle
);