1 // SPDX-License-Identifier: LGPL-2.1
3 * Copyright (c) 2012 Taobao.
4 * Written by Tao Ma <boyu.mt@taobao.com>
7 #include <linux/iomap.h>
8 #include <linux/fiemap.h>
9 #include <linux/iversion.h>
11 #include "ext4_jbd2.h"
16 #define EXT4_XATTR_SYSTEM_DATA "data"
17 #define EXT4_MIN_INLINE_DATA_SIZE ((sizeof(__le32) * EXT4_N_BLOCKS))
18 #define EXT4_INLINE_DOTDOT_OFFSET 2
19 #define EXT4_INLINE_DOTDOT_SIZE 4
21 static int ext4_get_inline_size(struct inode *inode)
23 if (EXT4_I(inode)->i_inline_off)
24 return EXT4_I(inode)->i_inline_size;
29 static int get_max_inline_xattr_value_size(struct inode *inode,
30 struct ext4_iloc *iloc)
32 struct ext4_xattr_ibody_header *header;
33 struct ext4_xattr_entry *entry;
34 struct ext4_inode *raw_inode;
37 min_offs = EXT4_SB(inode->i_sb)->s_inode_size -
38 EXT4_GOOD_OLD_INODE_SIZE -
39 EXT4_I(inode)->i_extra_isize -
40 sizeof(struct ext4_xattr_ibody_header);
43 * We need to subtract another sizeof(__u32) since an in-inode xattr
44 * needs an empty 4 bytes to indicate the gap between the xattr entry
45 * and the name/value pair.
47 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
48 return EXT4_XATTR_SIZE(min_offs -
49 EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA)) -
50 EXT4_XATTR_ROUND - sizeof(__u32));
52 raw_inode = ext4_raw_inode(iloc);
53 header = IHDR(inode, raw_inode);
54 entry = IFIRST(header);
56 /* Compute min_offs. */
57 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
58 if (!entry->e_value_inum && entry->e_value_size) {
59 size_t offs = le16_to_cpu(entry->e_value_offs);
65 ((void *)entry - (void *)IFIRST(header)) - sizeof(__u32);
67 if (EXT4_I(inode)->i_inline_off) {
68 entry = (struct ext4_xattr_entry *)
69 ((void *)raw_inode + EXT4_I(inode)->i_inline_off);
71 free += EXT4_XATTR_SIZE(le32_to_cpu(entry->e_value_size));
75 free -= EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA));
77 if (free > EXT4_XATTR_ROUND)
78 free = EXT4_XATTR_SIZE(free - EXT4_XATTR_ROUND);
87 * Get the maximum size we now can store in an inode.
88 * If we can't find the space for a xattr entry, don't use the space
89 * of the extents since we have no space to indicate the inline data.
91 int ext4_get_max_inline_size(struct inode *inode)
93 int error, max_inline_size;
94 struct ext4_iloc iloc;
96 if (EXT4_I(inode)->i_extra_isize == 0)
99 error = ext4_get_inode_loc(inode, &iloc);
101 ext4_error_inode_err(inode, __func__, __LINE__, 0, -error,
102 "can't get inode location %lu",
107 down_read(&EXT4_I(inode)->xattr_sem);
108 max_inline_size = get_max_inline_xattr_value_size(inode, &iloc);
109 up_read(&EXT4_I(inode)->xattr_sem);
113 if (!max_inline_size)
116 return max_inline_size + EXT4_MIN_INLINE_DATA_SIZE;
120 * this function does not take xattr_sem, which is OK because it is
121 * currently only used in a code path coming form ext4_iget, before
122 * the new inode has been unlocked
124 int ext4_find_inline_data_nolock(struct inode *inode)
126 struct ext4_xattr_ibody_find is = {
127 .s = { .not_found = -ENODATA, },
129 struct ext4_xattr_info i = {
130 .name_index = EXT4_XATTR_INDEX_SYSTEM,
131 .name = EXT4_XATTR_SYSTEM_DATA,
135 if (EXT4_I(inode)->i_extra_isize == 0)
138 error = ext4_get_inode_loc(inode, &is.iloc);
142 error = ext4_xattr_ibody_find(inode, &i, &is);
146 if (!is.s.not_found) {
147 if (is.s.here->e_value_inum) {
148 EXT4_ERROR_INODE(inode, "inline data xattr refers "
149 "to an external xattr inode");
150 error = -EFSCORRUPTED;
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_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 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
221 BUG_ON(!EXT4_I(inode)->i_inline_off);
222 BUG_ON(pos + len > EXT4_I(inode)->i_inline_size);
224 raw_inode = ext4_raw_inode(iloc);
227 if (pos < EXT4_MIN_INLINE_DATA_SIZE) {
228 cp_len = pos + len > EXT4_MIN_INLINE_DATA_SIZE ?
229 EXT4_MIN_INLINE_DATA_SIZE - pos : len;
230 memcpy((void *)raw_inode->i_block + pos, buffer, cp_len);
240 pos -= EXT4_MIN_INLINE_DATA_SIZE;
241 header = IHDR(inode, raw_inode);
242 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
243 EXT4_I(inode)->i_inline_off);
245 memcpy((void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs) + pos,
249 static int ext4_create_inline_data(handle_t *handle,
250 struct inode *inode, unsigned len)
254 struct ext4_xattr_ibody_find is = {
255 .s = { .not_found = -ENODATA, },
257 struct ext4_xattr_info i = {
258 .name_index = EXT4_XATTR_INDEX_SYSTEM,
259 .name = EXT4_XATTR_SYSTEM_DATA,
262 error = ext4_get_inode_loc(inode, &is.iloc);
266 BUFFER_TRACE(is.iloc.bh, "get_write_access");
267 error = ext4_journal_get_write_access(handle, inode->i_sb, is.iloc.bh,
272 if (len > EXT4_MIN_INLINE_DATA_SIZE) {
273 value = EXT4_ZERO_XATTR_VALUE;
274 len -= EXT4_MIN_INLINE_DATA_SIZE;
280 /* Insert the xttr entry. */
284 error = ext4_xattr_ibody_find(inode, &i, &is);
288 BUG_ON(!is.s.not_found);
290 error = ext4_xattr_ibody_set(handle, inode, &i, &is);
292 if (error == -ENOSPC)
293 ext4_clear_inode_state(inode,
294 EXT4_STATE_MAY_INLINE_DATA);
298 memset((void *)ext4_raw_inode(&is.iloc)->i_block,
299 0, EXT4_MIN_INLINE_DATA_SIZE);
301 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
302 (void *)ext4_raw_inode(&is.iloc));
303 EXT4_I(inode)->i_inline_size = len + EXT4_MIN_INLINE_DATA_SIZE;
304 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
305 ext4_set_inode_flag(inode, EXT4_INODE_INLINE_DATA);
307 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
314 static int ext4_update_inline_data(handle_t *handle, struct inode *inode,
319 struct ext4_xattr_ibody_find is = {
320 .s = { .not_found = -ENODATA, },
322 struct ext4_xattr_info i = {
323 .name_index = EXT4_XATTR_INDEX_SYSTEM,
324 .name = EXT4_XATTR_SYSTEM_DATA,
327 /* If the old space is ok, write the data directly. */
328 if (len <= EXT4_I(inode)->i_inline_size)
331 error = ext4_get_inode_loc(inode, &is.iloc);
335 error = ext4_xattr_ibody_find(inode, &i, &is);
339 BUG_ON(is.s.not_found);
341 len -= EXT4_MIN_INLINE_DATA_SIZE;
342 value = kzalloc(len, GFP_NOFS);
348 error = ext4_xattr_ibody_get(inode, i.name_index, i.name,
350 if (error == -ENODATA)
353 BUFFER_TRACE(is.iloc.bh, "get_write_access");
354 error = ext4_journal_get_write_access(handle, inode->i_sb, is.iloc.bh,
359 /* Update the xattr entry. */
363 error = ext4_xattr_ibody_set(handle, inode, &i, &is);
367 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
368 (void *)ext4_raw_inode(&is.iloc));
369 EXT4_I(inode)->i_inline_size = EXT4_MIN_INLINE_DATA_SIZE +
370 le32_to_cpu(is.s.here->e_value_size);
371 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
373 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
381 static int ext4_prepare_inline_data(handle_t *handle, struct inode *inode,
384 int ret, size, no_expand;
385 struct ext4_inode_info *ei = EXT4_I(inode);
387 if (!ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA))
390 size = ext4_get_max_inline_size(inode);
394 ext4_write_lock_xattr(inode, &no_expand);
396 if (ei->i_inline_off)
397 ret = ext4_update_inline_data(handle, inode, len);
399 ret = ext4_create_inline_data(handle, inode, len);
401 ext4_write_unlock_xattr(inode, &no_expand);
405 static int ext4_destroy_inline_data_nolock(handle_t *handle,
408 struct ext4_inode_info *ei = EXT4_I(inode);
409 struct ext4_xattr_ibody_find is = {
410 .s = { .not_found = 0, },
412 struct ext4_xattr_info i = {
413 .name_index = EXT4_XATTR_INDEX_SYSTEM,
414 .name = EXT4_XATTR_SYSTEM_DATA,
420 if (!ei->i_inline_off)
423 error = ext4_get_inode_loc(inode, &is.iloc);
427 error = ext4_xattr_ibody_find(inode, &i, &is);
431 BUFFER_TRACE(is.iloc.bh, "get_write_access");
432 error = ext4_journal_get_write_access(handle, inode->i_sb, is.iloc.bh,
437 error = ext4_xattr_ibody_set(handle, inode, &i, &is);
441 memset((void *)ext4_raw_inode(&is.iloc)->i_block,
442 0, EXT4_MIN_INLINE_DATA_SIZE);
443 memset(ei->i_data, 0, EXT4_MIN_INLINE_DATA_SIZE);
445 if (ext4_has_feature_extents(inode->i_sb)) {
446 if (S_ISDIR(inode->i_mode) ||
447 S_ISREG(inode->i_mode) || S_ISLNK(inode->i_mode)) {
448 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
449 ext4_ext_tree_init(handle, inode);
452 ext4_clear_inode_flag(inode, EXT4_INODE_INLINE_DATA);
455 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
457 EXT4_I(inode)->i_inline_off = 0;
458 EXT4_I(inode)->i_inline_size = 0;
459 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
462 if (error == -ENODATA)
467 static int ext4_read_inline_page(struct inode *inode, struct page *page)
472 struct ext4_iloc iloc;
474 BUG_ON(!PageLocked(page));
475 BUG_ON(!ext4_has_inline_data(inode));
478 if (!EXT4_I(inode)->i_inline_off) {
479 ext4_warning(inode->i_sb, "inode %lu doesn't have inline data.",
484 ret = ext4_get_inode_loc(inode, &iloc);
488 len = min_t(size_t, ext4_get_inline_size(inode), i_size_read(inode));
489 kaddr = kmap_atomic(page);
490 ret = ext4_read_inline_data(inode, kaddr, len, &iloc);
491 flush_dcache_page(page);
492 kunmap_atomic(kaddr);
493 zero_user_segment(page, len, PAGE_SIZE);
494 SetPageUptodate(page);
501 int ext4_readpage_inline(struct inode *inode, struct page *page)
505 down_read(&EXT4_I(inode)->xattr_sem);
506 if (!ext4_has_inline_data(inode)) {
507 up_read(&EXT4_I(inode)->xattr_sem);
512 * Current inline data can only exist in the 1st page,
513 * So for all the other pages, just set them uptodate.
516 ret = ext4_read_inline_page(inode, page);
517 else if (!PageUptodate(page)) {
518 zero_user_segment(page, 0, PAGE_SIZE);
519 SetPageUptodate(page);
522 up_read(&EXT4_I(inode)->xattr_sem);
525 return ret >= 0 ? 0 : ret;
528 static int ext4_convert_inline_data_to_extent(struct address_space *mapping,
532 int ret, needed_blocks, no_expand;
533 handle_t *handle = NULL;
534 int retries = 0, sem_held = 0;
535 struct page *page = NULL;
537 struct ext4_iloc iloc;
539 if (!ext4_has_inline_data(inode)) {
541 * clear the flag so that no new write
542 * will trap here again.
544 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
548 needed_blocks = ext4_writepage_trans_blocks(inode);
550 ret = ext4_get_inode_loc(inode, &iloc);
555 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
556 if (IS_ERR(handle)) {
557 ret = PTR_ERR(handle);
562 /* We cannot recurse into the filesystem as the transaction is already
564 flags |= AOP_FLAG_NOFS;
566 page = grab_cache_page_write_begin(mapping, 0, flags);
572 ext4_write_lock_xattr(inode, &no_expand);
574 /* If some one has already done this for us, just exit. */
575 if (!ext4_has_inline_data(inode)) {
581 to = ext4_get_inline_size(inode);
582 if (!PageUptodate(page)) {
583 ret = ext4_read_inline_page(inode, page);
588 ret = ext4_destroy_inline_data_nolock(handle, inode);
592 if (ext4_should_dioread_nolock(inode)) {
593 ret = __block_write_begin(page, from, to,
594 ext4_get_block_unwritten);
596 ret = __block_write_begin(page, from, to, ext4_get_block);
598 if (!ret && ext4_should_journal_data(inode)) {
599 ret = ext4_walk_page_buffers(handle, inode, page_buffers(page),
601 do_journal_get_write_access);
608 ext4_orphan_add(handle, inode);
609 ext4_write_unlock_xattr(inode, &no_expand);
611 ext4_journal_stop(handle);
613 ext4_truncate_failed_write(inode);
615 * If truncate failed early the inode might
616 * still be on the orphan list; we need to
617 * make sure the inode is removed from the
618 * orphan list in that case.
621 ext4_orphan_del(NULL, inode);
624 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
628 block_commit_write(page, from, to);
635 ext4_write_unlock_xattr(inode, &no_expand);
637 ext4_journal_stop(handle);
643 * Try to write data in the inode.
644 * If the inode has inline data, check whether the new write can be
645 * in the inode also. If not, create the page the handle, move the data
646 * to the page make it update and let the later codes create extent for it.
648 int ext4_try_to_write_inline_data(struct address_space *mapping,
650 loff_t pos, unsigned len,
657 struct ext4_iloc iloc;
659 if (pos + len > ext4_get_max_inline_size(inode))
662 ret = ext4_get_inode_loc(inode, &iloc);
667 * The possible write could happen in the inode,
668 * so try to reserve the space in inode first.
670 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
671 if (IS_ERR(handle)) {
672 ret = PTR_ERR(handle);
677 ret = ext4_prepare_inline_data(handle, inode, pos + len);
678 if (ret && ret != -ENOSPC)
681 /* We don't have space in inline inode, so convert it to extent. */
682 if (ret == -ENOSPC) {
683 ext4_journal_stop(handle);
688 ret = ext4_journal_get_write_access(handle, inode->i_sb, iloc.bh,
693 flags |= AOP_FLAG_NOFS;
695 page = grab_cache_page_write_begin(mapping, 0, flags);
702 down_read(&EXT4_I(inode)->xattr_sem);
703 if (!ext4_has_inline_data(inode)) {
710 if (!PageUptodate(page)) {
711 ret = ext4_read_inline_page(inode, page);
722 up_read(&EXT4_I(inode)->xattr_sem);
724 if (handle && (ret != 1))
725 ext4_journal_stop(handle);
729 return ext4_convert_inline_data_to_extent(mapping,
733 int ext4_write_inline_data_end(struct inode *inode, loff_t pos, unsigned len,
734 unsigned copied, struct page *page)
738 struct ext4_iloc iloc;
740 if (unlikely(copied < len)) {
741 if (!PageUptodate(page)) {
747 ret = ext4_get_inode_loc(inode, &iloc);
749 ext4_std_error(inode->i_sb, ret);
754 ext4_write_lock_xattr(inode, &no_expand);
755 BUG_ON(!ext4_has_inline_data(inode));
758 * ei->i_inline_off may have changed since ext4_write_begin()
759 * called ext4_try_to_write_inline_data()
761 (void) ext4_find_inline_data_nolock(inode);
763 kaddr = kmap_atomic(page);
764 ext4_write_inline_data(inode, &iloc, kaddr, pos, len);
765 kunmap_atomic(kaddr);
766 SetPageUptodate(page);
767 /* clear page dirty so that writepages wouldn't work for us. */
768 ClearPageDirty(page);
770 ext4_write_unlock_xattr(inode, &no_expand);
772 mark_inode_dirty(inode);
778 ext4_journalled_write_inline_data(struct inode *inode,
784 struct ext4_iloc iloc;
786 ret = ext4_get_inode_loc(inode, &iloc);
788 ext4_std_error(inode->i_sb, ret);
792 ext4_write_lock_xattr(inode, &no_expand);
793 kaddr = kmap_atomic(page);
794 ext4_write_inline_data(inode, &iloc, kaddr, 0, len);
795 kunmap_atomic(kaddr);
796 ext4_write_unlock_xattr(inode, &no_expand);
802 * Try to make the page cache and handle ready for the inline data case.
803 * We can call this function in 2 cases:
804 * 1. The inode is created and the first write exceeds inline size. We can
805 * clear the inode state safely.
806 * 2. The inode has inline data, then we need to read the data, make it
807 * update and dirty so that ext4_da_writepages can handle it. We don't
808 * need to start the journal since the file's metadata isn't changed now.
810 static int ext4_da_convert_inline_data_to_extent(struct address_space *mapping,
815 int ret = 0, inline_size;
818 page = grab_cache_page_write_begin(mapping, 0, flags);
822 down_read(&EXT4_I(inode)->xattr_sem);
823 if (!ext4_has_inline_data(inode)) {
824 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
828 inline_size = ext4_get_inline_size(inode);
830 if (!PageUptodate(page)) {
831 ret = ext4_read_inline_page(inode, page);
836 ret = __block_write_begin(page, 0, inline_size,
837 ext4_da_get_block_prep);
839 up_read(&EXT4_I(inode)->xattr_sem);
842 ext4_truncate_failed_write(inode);
847 SetPageUptodate(page);
848 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
849 *fsdata = (void *)CONVERT_INLINE_DATA;
852 up_read(&EXT4_I(inode)->xattr_sem);
861 * Prepare the write for the inline data.
862 * If the data can be written into the inode, we just read
863 * the page and make it uptodate, and start the journal.
864 * Otherwise read the page, makes it dirty so that it can be
865 * handle in writepages(the i_disksize update is left to the
866 * normal ext4_da_write_end).
868 int ext4_da_write_inline_data_begin(struct address_space *mapping,
870 loff_t pos, unsigned len,
875 int ret, inline_size;
878 struct ext4_iloc iloc;
881 ret = ext4_get_inode_loc(inode, &iloc);
886 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
887 if (IS_ERR(handle)) {
888 ret = PTR_ERR(handle);
892 inline_size = ext4_get_max_inline_size(inode);
895 if (inline_size >= pos + len) {
896 ret = ext4_prepare_inline_data(handle, inode, pos + len);
897 if (ret && ret != -ENOSPC)
902 * We cannot recurse into the filesystem as the transaction
903 * is already started.
905 flags |= AOP_FLAG_NOFS;
907 if (ret == -ENOSPC) {
908 ext4_journal_stop(handle);
909 ret = ext4_da_convert_inline_data_to_extent(mapping,
913 if (ret == -ENOSPC &&
914 ext4_should_retry_alloc(inode->i_sb, &retries))
919 page = grab_cache_page_write_begin(mapping, 0, flags);
925 down_read(&EXT4_I(inode)->xattr_sem);
926 if (!ext4_has_inline_data(inode)) {
928 goto out_release_page;
931 if (!PageUptodate(page)) {
932 ret = ext4_read_inline_page(inode, page);
934 goto out_release_page;
936 ret = ext4_journal_get_write_access(handle, inode->i_sb, iloc.bh,
939 goto out_release_page;
941 up_read(&EXT4_I(inode)->xattr_sem);
946 up_read(&EXT4_I(inode)->xattr_sem);
950 ext4_journal_stop(handle);
956 int ext4_da_write_inline_data_end(struct inode *inode, loff_t pos,
957 unsigned len, unsigned copied,
962 ret = ext4_write_inline_data_end(inode, pos, len, copied, page);
971 * No need to use i_size_read() here, the i_size
972 * cannot change under us because we hold i_mutex.
974 * But it's important to update i_size while still holding page lock:
975 * page writeout could otherwise come in and zero beyond i_size.
977 if (pos+copied > inode->i_size)
978 i_size_write(inode, pos+copied);
983 * Don't mark the inode dirty under page lock. First, it unnecessarily
984 * makes the holding time of page lock longer. Second, it forces lock
985 * ordering of page lock and transaction start for journaling
988 mark_inode_dirty(inode);
993 #ifdef INLINE_DIR_DEBUG
994 void ext4_show_inline_dir(struct inode *dir, struct buffer_head *bh,
995 void *inline_start, int inline_size)
998 unsigned short de_len;
999 struct ext4_dir_entry_2 *de = inline_start;
1000 void *dlimit = inline_start + inline_size;
1002 trace_printk("inode %lu\n", dir->i_ino);
1004 while ((void *)de < dlimit) {
1005 de_len = ext4_rec_len_from_disk(de->rec_len, inline_size);
1006 trace_printk("de: off %u rlen %u name %.*s nlen %u ino %u\n",
1007 offset, de_len, de->name_len, de->name,
1008 de->name_len, le32_to_cpu(de->inode));
1009 if (ext4_check_dir_entry(dir, NULL, de, bh,
1010 inline_start, inline_size, offset))
1014 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
1018 #define ext4_show_inline_dir(dir, bh, inline_start, inline_size)
1022 * Add a new entry into a inline dir.
1023 * It will return -ENOSPC if no space is available, and -EIO
1024 * and -EEXIST if directory entry already exists.
1026 static int ext4_add_dirent_to_inline(handle_t *handle,
1027 struct ext4_filename *fname,
1029 struct inode *inode,
1030 struct ext4_iloc *iloc,
1031 void *inline_start, int inline_size)
1034 struct ext4_dir_entry_2 *de;
1036 err = ext4_find_dest_de(dir, inode, iloc->bh, inline_start,
1037 inline_size, fname, &de);
1041 BUFFER_TRACE(iloc->bh, "get_write_access");
1042 err = ext4_journal_get_write_access(handle, dir->i_sb, iloc->bh,
1046 ext4_insert_dentry(dir, inode, de, inline_size, fname);
1048 ext4_show_inline_dir(dir, iloc->bh, inline_start, inline_size);
1051 * XXX shouldn't update any times until successful
1052 * completion of syscall, but too many callers depend
1055 * XXX similarly, too many callers depend on
1056 * ext4_new_inode() setting the times, but error
1057 * recovery deletes the inode, so the worst that can
1058 * happen is that the times are slightly out of date
1059 * and/or different from the directory change time.
1061 dir->i_mtime = dir->i_ctime = current_time(dir);
1062 ext4_update_dx_flag(dir);
1063 inode_inc_iversion(dir);
1067 static void *ext4_get_inline_xattr_pos(struct inode *inode,
1068 struct ext4_iloc *iloc)
1070 struct ext4_xattr_entry *entry;
1071 struct ext4_xattr_ibody_header *header;
1073 BUG_ON(!EXT4_I(inode)->i_inline_off);
1075 header = IHDR(inode, ext4_raw_inode(iloc));
1076 entry = (struct ext4_xattr_entry *)((void *)ext4_raw_inode(iloc) +
1077 EXT4_I(inode)->i_inline_off);
1079 return (void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs);
1082 /* Set the final de to cover the whole block. */
1083 static void ext4_update_final_de(void *de_buf, int old_size, int new_size)
1085 struct ext4_dir_entry_2 *de, *prev_de;
1089 de = (struct ext4_dir_entry_2 *)de_buf;
1091 limit = de_buf + old_size;
1094 de_len = ext4_rec_len_from_disk(de->rec_len, old_size);
1096 de = (struct ext4_dir_entry_2 *)de_buf;
1097 } while (de_buf < limit);
1099 prev_de->rec_len = ext4_rec_len_to_disk(de_len + new_size -
1100 old_size, new_size);
1102 /* this is just created, so create an empty entry. */
1104 de->rec_len = ext4_rec_len_to_disk(new_size, new_size);
1108 static int ext4_update_inline_dir(handle_t *handle, struct inode *dir,
1109 struct ext4_iloc *iloc)
1112 int old_size = EXT4_I(dir)->i_inline_size - EXT4_MIN_INLINE_DATA_SIZE;
1113 int new_size = get_max_inline_xattr_value_size(dir, iloc);
1115 if (new_size - old_size <= ext4_dir_rec_len(1, NULL))
1118 ret = ext4_update_inline_data(handle, dir,
1119 new_size + EXT4_MIN_INLINE_DATA_SIZE);
1123 ext4_update_final_de(ext4_get_inline_xattr_pos(dir, iloc), old_size,
1124 EXT4_I(dir)->i_inline_size -
1125 EXT4_MIN_INLINE_DATA_SIZE);
1126 dir->i_size = EXT4_I(dir)->i_disksize = EXT4_I(dir)->i_inline_size;
1130 static void ext4_restore_inline_data(handle_t *handle, struct inode *inode,
1131 struct ext4_iloc *iloc,
1132 void *buf, int inline_size)
1134 ext4_create_inline_data(handle, inode, inline_size);
1135 ext4_write_inline_data(inode, iloc, buf, 0, inline_size);
1136 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1139 static int ext4_finish_convert_inline_dir(handle_t *handle,
1140 struct inode *inode,
1141 struct buffer_head *dir_block,
1145 int err, csum_size = 0, header_size = 0;
1146 struct ext4_dir_entry_2 *de;
1147 void *target = dir_block->b_data;
1150 * First create "." and ".." and then copy the dir information
1151 * back to the block.
1153 de = (struct ext4_dir_entry_2 *)target;
1154 de = ext4_init_dot_dotdot(inode, de,
1155 inode->i_sb->s_blocksize, csum_size,
1156 le32_to_cpu(((struct ext4_dir_entry_2 *)buf)->inode), 1);
1157 header_size = (void *)de - target;
1159 memcpy((void *)de, buf + EXT4_INLINE_DOTDOT_SIZE,
1160 inline_size - EXT4_INLINE_DOTDOT_SIZE);
1162 if (ext4_has_metadata_csum(inode->i_sb))
1163 csum_size = sizeof(struct ext4_dir_entry_tail);
1165 inode->i_size = inode->i_sb->s_blocksize;
1166 i_size_write(inode, inode->i_sb->s_blocksize);
1167 EXT4_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1168 ext4_update_final_de(dir_block->b_data,
1169 inline_size - EXT4_INLINE_DOTDOT_SIZE + header_size,
1170 inode->i_sb->s_blocksize - csum_size);
1173 ext4_initialize_dirent_tail(dir_block,
1174 inode->i_sb->s_blocksize);
1175 set_buffer_uptodate(dir_block);
1176 err = ext4_handle_dirty_dirblock(handle, inode, dir_block);
1179 set_buffer_verified(dir_block);
1180 return ext4_mark_inode_dirty(handle, inode);
1183 static int ext4_convert_inline_data_nolock(handle_t *handle,
1184 struct inode *inode,
1185 struct ext4_iloc *iloc)
1189 struct buffer_head *data_bh = NULL;
1190 struct ext4_map_blocks map;
1193 inline_size = ext4_get_inline_size(inode);
1194 buf = kmalloc(inline_size, GFP_NOFS);
1200 error = ext4_read_inline_data(inode, buf, inline_size, iloc);
1205 * Make sure the inline directory entries pass checks before we try to
1206 * convert them, so that we avoid touching stuff that needs fsck.
1208 if (S_ISDIR(inode->i_mode)) {
1209 error = ext4_check_all_de(inode, iloc->bh,
1210 buf + EXT4_INLINE_DOTDOT_SIZE,
1211 inline_size - EXT4_INLINE_DOTDOT_SIZE);
1216 error = ext4_destroy_inline_data_nolock(handle, inode);
1223 error = ext4_map_blocks(handle, inode, &map, EXT4_GET_BLOCKS_CREATE);
1226 if (!(map.m_flags & EXT4_MAP_MAPPED)) {
1231 data_bh = sb_getblk(inode->i_sb, map.m_pblk);
1237 lock_buffer(data_bh);
1238 error = ext4_journal_get_create_access(handle, inode->i_sb, data_bh,
1241 unlock_buffer(data_bh);
1245 memset(data_bh->b_data, 0, inode->i_sb->s_blocksize);
1247 if (!S_ISDIR(inode->i_mode)) {
1248 memcpy(data_bh->b_data, buf, inline_size);
1249 set_buffer_uptodate(data_bh);
1250 error = ext4_handle_dirty_metadata(handle,
1253 error = ext4_finish_convert_inline_dir(handle, inode, data_bh,
1257 unlock_buffer(data_bh);
1260 ext4_restore_inline_data(handle, inode, iloc, buf, inline_size);
1269 * Try to add the new entry to the inline data.
1270 * If succeeds, return 0. If not, extended the inline dir and copied data to
1271 * the new created block.
1273 int ext4_try_add_inline_entry(handle_t *handle, struct ext4_filename *fname,
1274 struct inode *dir, struct inode *inode)
1276 int ret, ret2, inline_size, no_expand;
1278 struct ext4_iloc iloc;
1280 ret = ext4_get_inode_loc(dir, &iloc);
1284 ext4_write_lock_xattr(dir, &no_expand);
1285 if (!ext4_has_inline_data(dir))
1288 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1289 EXT4_INLINE_DOTDOT_SIZE;
1290 inline_size = EXT4_MIN_INLINE_DATA_SIZE - EXT4_INLINE_DOTDOT_SIZE;
1292 ret = ext4_add_dirent_to_inline(handle, fname, dir, inode, &iloc,
1293 inline_start, inline_size);
1297 /* check whether it can be inserted to inline xattr space. */
1298 inline_size = EXT4_I(dir)->i_inline_size -
1299 EXT4_MIN_INLINE_DATA_SIZE;
1301 /* Try to use the xattr space.*/
1302 ret = ext4_update_inline_dir(handle, dir, &iloc);
1303 if (ret && ret != -ENOSPC)
1306 inline_size = EXT4_I(dir)->i_inline_size -
1307 EXT4_MIN_INLINE_DATA_SIZE;
1311 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1313 ret = ext4_add_dirent_to_inline(handle, fname, dir,
1314 inode, &iloc, inline_start,
1322 * The inline space is filled up, so create a new block for it.
1323 * As the extent tree will be created, we have to save the inline
1326 ret = ext4_convert_inline_data_nolock(handle, dir, &iloc);
1329 ext4_write_unlock_xattr(dir, &no_expand);
1330 ret2 = ext4_mark_inode_dirty(handle, dir);
1331 if (unlikely(ret2 && !ret))
1338 * This function fills a red-black tree with information from an
1339 * inlined dir. It returns the number directory entries loaded
1340 * into the tree. If there is an error it is returned in err.
1342 int ext4_inlinedir_to_tree(struct file *dir_file,
1343 struct inode *dir, ext4_lblk_t block,
1344 struct dx_hash_info *hinfo,
1345 __u32 start_hash, __u32 start_minor_hash,
1346 int *has_inline_data)
1348 int err = 0, count = 0;
1349 unsigned int parent_ino;
1351 struct ext4_dir_entry_2 *de;
1352 struct inode *inode = file_inode(dir_file);
1353 int ret, inline_size = 0;
1354 struct ext4_iloc iloc;
1355 void *dir_buf = NULL;
1356 struct ext4_dir_entry_2 fake;
1357 struct fscrypt_str tmp_str;
1359 ret = ext4_get_inode_loc(inode, &iloc);
1363 down_read(&EXT4_I(inode)->xattr_sem);
1364 if (!ext4_has_inline_data(inode)) {
1365 up_read(&EXT4_I(inode)->xattr_sem);
1366 *has_inline_data = 0;
1370 inline_size = ext4_get_inline_size(inode);
1371 dir_buf = kmalloc(inline_size, GFP_NOFS);
1374 up_read(&EXT4_I(inode)->xattr_sem);
1378 ret = ext4_read_inline_data(inode, dir_buf, inline_size, &iloc);
1379 up_read(&EXT4_I(inode)->xattr_sem);
1384 parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode);
1385 while (pos < inline_size) {
1387 * As inlined dir doesn't store any information about '.' and
1388 * only the inode number of '..' is stored, we have to handle
1392 fake.inode = cpu_to_le32(inode->i_ino);
1394 strcpy(fake.name, ".");
1395 fake.rec_len = ext4_rec_len_to_disk(
1396 ext4_dir_rec_len(fake.name_len, NULL),
1398 ext4_set_de_type(inode->i_sb, &fake, S_IFDIR);
1400 pos = EXT4_INLINE_DOTDOT_OFFSET;
1401 } else if (pos == EXT4_INLINE_DOTDOT_OFFSET) {
1402 fake.inode = cpu_to_le32(parent_ino);
1404 strcpy(fake.name, "..");
1405 fake.rec_len = ext4_rec_len_to_disk(
1406 ext4_dir_rec_len(fake.name_len, NULL),
1408 ext4_set_de_type(inode->i_sb, &fake, S_IFDIR);
1410 pos = EXT4_INLINE_DOTDOT_SIZE;
1412 de = (struct ext4_dir_entry_2 *)(dir_buf + pos);
1413 pos += ext4_rec_len_from_disk(de->rec_len, inline_size);
1414 if (ext4_check_dir_entry(inode, dir_file, de,
1416 inline_size, pos)) {
1422 if (ext4_hash_in_dirent(dir)) {
1423 hinfo->hash = EXT4_DIRENT_HASH(de);
1424 hinfo->minor_hash = EXT4_DIRENT_MINOR_HASH(de);
1426 ext4fs_dirhash(dir, de->name, de->name_len, hinfo);
1428 if ((hinfo->hash < start_hash) ||
1429 ((hinfo->hash == start_hash) &&
1430 (hinfo->minor_hash < start_minor_hash)))
1434 tmp_str.name = de->name;
1435 tmp_str.len = de->name_len;
1436 err = ext4_htree_store_dirent(dir_file, hinfo->hash,
1437 hinfo->minor_hash, de, &tmp_str);
1452 * So this function is called when the volume is mkfsed with
1453 * dir_index disabled. In order to keep f_pos persistent
1454 * after we convert from an inlined dir to a blocked based,
1455 * we just pretend that we are a normal dir and return the
1456 * offset as if '.' and '..' really take place.
1459 int ext4_read_inline_dir(struct file *file,
1460 struct dir_context *ctx,
1461 int *has_inline_data)
1463 unsigned int offset, parent_ino;
1465 struct ext4_dir_entry_2 *de;
1466 struct super_block *sb;
1467 struct inode *inode = file_inode(file);
1468 int ret, inline_size = 0;
1469 struct ext4_iloc iloc;
1470 void *dir_buf = NULL;
1471 int dotdot_offset, dotdot_size, extra_offset, extra_size;
1473 ret = ext4_get_inode_loc(inode, &iloc);
1477 down_read(&EXT4_I(inode)->xattr_sem);
1478 if (!ext4_has_inline_data(inode)) {
1479 up_read(&EXT4_I(inode)->xattr_sem);
1480 *has_inline_data = 0;
1484 inline_size = ext4_get_inline_size(inode);
1485 dir_buf = kmalloc(inline_size, GFP_NOFS);
1488 up_read(&EXT4_I(inode)->xattr_sem);
1492 ret = ext4_read_inline_data(inode, dir_buf, inline_size, &iloc);
1493 up_read(&EXT4_I(inode)->xattr_sem);
1499 parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode);
1503 * dotdot_offset and dotdot_size is the real offset and
1504 * size for ".." and "." if the dir is block based while
1505 * the real size for them are only EXT4_INLINE_DOTDOT_SIZE.
1506 * So we will use extra_offset and extra_size to indicate them
1507 * during the inline dir iteration.
1509 dotdot_offset = ext4_dir_rec_len(1, NULL);
1510 dotdot_size = dotdot_offset + ext4_dir_rec_len(2, NULL);
1511 extra_offset = dotdot_size - EXT4_INLINE_DOTDOT_SIZE;
1512 extra_size = extra_offset + inline_size;
1515 * If the version has changed since the last call to
1516 * readdir(2), then we might be pointing to an invalid
1517 * dirent right now. Scan from the start of the inline
1520 if (!inode_eq_iversion(inode, file->f_version)) {
1521 for (i = 0; i < extra_size && i < offset;) {
1523 * "." is with offset 0 and
1524 * ".." is dotdot_offset.
1529 } else if (i == dotdot_offset) {
1533 /* for other entry, the real offset in
1534 * the buf has to be tuned accordingly.
1536 de = (struct ext4_dir_entry_2 *)
1537 (dir_buf + i - extra_offset);
1538 /* It's too expensive to do a full
1539 * dirent test each time round this
1540 * loop, but we do have to test at
1541 * least that it is non-zero. A
1542 * failure will be detected in the
1543 * dirent test below. */
1544 if (ext4_rec_len_from_disk(de->rec_len, extra_size)
1545 < ext4_dir_rec_len(1, NULL))
1547 i += ext4_rec_len_from_disk(de->rec_len,
1552 file->f_version = inode_query_iversion(inode);
1555 while (ctx->pos < extra_size) {
1556 if (ctx->pos == 0) {
1557 if (!dir_emit(ctx, ".", 1, inode->i_ino, DT_DIR))
1559 ctx->pos = dotdot_offset;
1563 if (ctx->pos == dotdot_offset) {
1564 if (!dir_emit(ctx, "..", 2, parent_ino, DT_DIR))
1566 ctx->pos = dotdot_size;
1570 de = (struct ext4_dir_entry_2 *)
1571 (dir_buf + ctx->pos - extra_offset);
1572 if (ext4_check_dir_entry(inode, file, de, iloc.bh, dir_buf,
1573 extra_size, ctx->pos))
1575 if (le32_to_cpu(de->inode)) {
1576 if (!dir_emit(ctx, de->name, de->name_len,
1577 le32_to_cpu(de->inode),
1578 get_dtype(sb, de->file_type)))
1581 ctx->pos += ext4_rec_len_from_disk(de->rec_len, extra_size);
1589 struct buffer_head *ext4_get_first_inline_block(struct inode *inode,
1590 struct ext4_dir_entry_2 **parent_de,
1593 struct ext4_iloc iloc;
1595 *retval = ext4_get_inode_loc(inode, &iloc);
1599 *parent_de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1605 * Try to create the inline data for the new dir.
1606 * If it succeeds, return 0, otherwise return the error.
1607 * In case of ENOSPC, the caller should create the normal disk layout dir.
1609 int ext4_try_create_inline_dir(handle_t *handle, struct inode *parent,
1610 struct inode *inode)
1612 int ret, inline_size = EXT4_MIN_INLINE_DATA_SIZE;
1613 struct ext4_iloc iloc;
1614 struct ext4_dir_entry_2 *de;
1616 ret = ext4_get_inode_loc(inode, &iloc);
1620 ret = ext4_prepare_inline_data(handle, inode, inline_size);
1625 * For inline dir, we only save the inode information for the ".."
1626 * and create a fake dentry to cover the left space.
1628 de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1629 de->inode = cpu_to_le32(parent->i_ino);
1630 de = (struct ext4_dir_entry_2 *)((void *)de + EXT4_INLINE_DOTDOT_SIZE);
1632 de->rec_len = ext4_rec_len_to_disk(
1633 inline_size - EXT4_INLINE_DOTDOT_SIZE,
1635 set_nlink(inode, 2);
1636 inode->i_size = EXT4_I(inode)->i_disksize = inline_size;
1642 struct buffer_head *ext4_find_inline_entry(struct inode *dir,
1643 struct ext4_filename *fname,
1644 struct ext4_dir_entry_2 **res_dir,
1645 int *has_inline_data)
1648 struct ext4_iloc iloc;
1652 if (ext4_get_inode_loc(dir, &iloc))
1655 down_read(&EXT4_I(dir)->xattr_sem);
1656 if (!ext4_has_inline_data(dir)) {
1657 *has_inline_data = 0;
1661 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1662 EXT4_INLINE_DOTDOT_SIZE;
1663 inline_size = EXT4_MIN_INLINE_DATA_SIZE - EXT4_INLINE_DOTDOT_SIZE;
1664 ret = ext4_search_dir(iloc.bh, inline_start, inline_size,
1665 dir, fname, 0, res_dir);
1671 if (ext4_get_inline_size(dir) == EXT4_MIN_INLINE_DATA_SIZE)
1674 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1675 inline_size = ext4_get_inline_size(dir) - EXT4_MIN_INLINE_DATA_SIZE;
1677 ret = ext4_search_dir(iloc.bh, inline_start, inline_size,
1678 dir, fname, 0, res_dir);
1686 up_read(&EXT4_I(dir)->xattr_sem);
1690 int ext4_delete_inline_entry(handle_t *handle,
1692 struct ext4_dir_entry_2 *de_del,
1693 struct buffer_head *bh,
1694 int *has_inline_data)
1696 int err, inline_size, no_expand;
1697 struct ext4_iloc iloc;
1700 err = ext4_get_inode_loc(dir, &iloc);
1704 ext4_write_lock_xattr(dir, &no_expand);
1705 if (!ext4_has_inline_data(dir)) {
1706 *has_inline_data = 0;
1710 if ((void *)de_del - ((void *)ext4_raw_inode(&iloc)->i_block) <
1711 EXT4_MIN_INLINE_DATA_SIZE) {
1712 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1713 EXT4_INLINE_DOTDOT_SIZE;
1714 inline_size = EXT4_MIN_INLINE_DATA_SIZE -
1715 EXT4_INLINE_DOTDOT_SIZE;
1717 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1718 inline_size = ext4_get_inline_size(dir) -
1719 EXT4_MIN_INLINE_DATA_SIZE;
1722 BUFFER_TRACE(bh, "get_write_access");
1723 err = ext4_journal_get_write_access(handle, dir->i_sb, bh,
1728 err = ext4_generic_delete_entry(dir, de_del, bh,
1729 inline_start, inline_size, 0);
1733 ext4_show_inline_dir(dir, iloc.bh, inline_start, inline_size);
1735 ext4_write_unlock_xattr(dir, &no_expand);
1736 if (likely(err == 0))
1737 err = ext4_mark_inode_dirty(handle, dir);
1740 ext4_std_error(dir->i_sb, err);
1745 * Get the inline dentry at offset.
1747 static inline struct ext4_dir_entry_2 *
1748 ext4_get_inline_entry(struct inode *inode,
1749 struct ext4_iloc *iloc,
1750 unsigned int offset,
1751 void **inline_start,
1756 BUG_ON(offset > ext4_get_inline_size(inode));
1758 if (offset < EXT4_MIN_INLINE_DATA_SIZE) {
1759 inline_pos = (void *)ext4_raw_inode(iloc)->i_block;
1760 *inline_size = EXT4_MIN_INLINE_DATA_SIZE;
1762 inline_pos = ext4_get_inline_xattr_pos(inode, iloc);
1763 offset -= EXT4_MIN_INLINE_DATA_SIZE;
1764 *inline_size = ext4_get_inline_size(inode) -
1765 EXT4_MIN_INLINE_DATA_SIZE;
1769 *inline_start = inline_pos;
1770 return (struct ext4_dir_entry_2 *)(inline_pos + offset);
1773 bool empty_inline_dir(struct inode *dir, int *has_inline_data)
1775 int err, inline_size;
1776 struct ext4_iloc iloc;
1779 unsigned int offset;
1780 struct ext4_dir_entry_2 *de;
1783 err = ext4_get_inode_loc(dir, &iloc);
1785 EXT4_ERROR_INODE_ERR(dir, -err,
1786 "error %d getting inode %lu block",
1791 down_read(&EXT4_I(dir)->xattr_sem);
1792 if (!ext4_has_inline_data(dir)) {
1793 *has_inline_data = 0;
1797 de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1798 if (!le32_to_cpu(de->inode)) {
1799 ext4_warning(dir->i_sb,
1800 "bad inline directory (dir #%lu) - no `..'",
1806 inline_len = ext4_get_inline_size(dir);
1807 offset = EXT4_INLINE_DOTDOT_SIZE;
1808 while (offset < inline_len) {
1809 de = ext4_get_inline_entry(dir, &iloc, offset,
1810 &inline_pos, &inline_size);
1811 if (ext4_check_dir_entry(dir, NULL, de,
1812 iloc.bh, inline_pos,
1813 inline_size, offset)) {
1814 ext4_warning(dir->i_sb,
1815 "bad inline directory (dir #%lu) - "
1816 "inode %u, rec_len %u, name_len %d"
1818 dir->i_ino, le32_to_cpu(de->inode),
1819 le16_to_cpu(de->rec_len), de->name_len,
1824 if (le32_to_cpu(de->inode)) {
1828 offset += ext4_rec_len_from_disk(de->rec_len, inline_size);
1832 up_read(&EXT4_I(dir)->xattr_sem);
1837 int ext4_destroy_inline_data(handle_t *handle, struct inode *inode)
1841 ext4_write_lock_xattr(inode, &no_expand);
1842 ret = ext4_destroy_inline_data_nolock(handle, inode);
1843 ext4_write_unlock_xattr(inode, &no_expand);
1848 int ext4_inline_data_iomap(struct inode *inode, struct iomap *iomap)
1851 int error = -EAGAIN;
1852 struct ext4_iloc iloc;
1854 down_read(&EXT4_I(inode)->xattr_sem);
1855 if (!ext4_has_inline_data(inode))
1858 error = ext4_get_inode_loc(inode, &iloc);
1862 addr = (__u64)iloc.bh->b_blocknr << inode->i_sb->s_blocksize_bits;
1863 addr += (char *)ext4_raw_inode(&iloc) - iloc.bh->b_data;
1864 addr += offsetof(struct ext4_inode, i_block);
1870 iomap->length = min_t(loff_t, ext4_get_inline_size(inode),
1871 i_size_read(inode));
1872 iomap->type = IOMAP_INLINE;
1876 up_read(&EXT4_I(inode)->xattr_sem);
1880 int ext4_inline_data_truncate(struct inode *inode, int *has_inline)
1883 int inline_size, value_len, needed_blocks, no_expand, err = 0;
1886 struct ext4_xattr_ibody_find is = {
1887 .s = { .not_found = -ENODATA, },
1889 struct ext4_xattr_info i = {
1890 .name_index = EXT4_XATTR_INDEX_SYSTEM,
1891 .name = EXT4_XATTR_SYSTEM_DATA,
1895 needed_blocks = ext4_writepage_trans_blocks(inode);
1896 handle = ext4_journal_start(inode, EXT4_HT_INODE, needed_blocks);
1898 return PTR_ERR(handle);
1900 ext4_write_lock_xattr(inode, &no_expand);
1901 if (!ext4_has_inline_data(inode)) {
1902 ext4_write_unlock_xattr(inode, &no_expand);
1904 ext4_journal_stop(handle);
1908 if ((err = ext4_orphan_add(handle, inode)) != 0)
1911 if ((err = ext4_get_inode_loc(inode, &is.iloc)) != 0)
1914 down_write(&EXT4_I(inode)->i_data_sem);
1915 i_size = inode->i_size;
1916 inline_size = ext4_get_inline_size(inode);
1917 EXT4_I(inode)->i_disksize = i_size;
1919 if (i_size < inline_size) {
1920 /* Clear the content in the xattr space. */
1921 if (inline_size > EXT4_MIN_INLINE_DATA_SIZE) {
1922 if ((err = ext4_xattr_ibody_find(inode, &i, &is)) != 0)
1925 BUG_ON(is.s.not_found);
1927 value_len = le32_to_cpu(is.s.here->e_value_size);
1928 value = kmalloc(value_len, GFP_NOFS);
1934 err = ext4_xattr_ibody_get(inode, i.name_index,
1935 i.name, value, value_len);
1940 i.value_len = i_size > EXT4_MIN_INLINE_DATA_SIZE ?
1941 i_size - EXT4_MIN_INLINE_DATA_SIZE : 0;
1942 err = ext4_xattr_ibody_set(handle, inode, &i, &is);
1947 /* Clear the content within i_blocks. */
1948 if (i_size < EXT4_MIN_INLINE_DATA_SIZE) {
1949 void *p = (void *) ext4_raw_inode(&is.iloc)->i_block;
1950 memset(p + i_size, 0,
1951 EXT4_MIN_INLINE_DATA_SIZE - i_size);
1954 EXT4_I(inode)->i_inline_size = i_size <
1955 EXT4_MIN_INLINE_DATA_SIZE ?
1956 EXT4_MIN_INLINE_DATA_SIZE : i_size;
1960 up_write(&EXT4_I(inode)->i_data_sem);
1963 ext4_write_unlock_xattr(inode, &no_expand);
1966 ext4_orphan_del(handle, inode);
1969 inode->i_mtime = inode->i_ctime = current_time(inode);
1970 err = ext4_mark_inode_dirty(handle, inode);
1972 ext4_handle_sync(handle);
1974 ext4_journal_stop(handle);
1978 int ext4_convert_inline_data(struct inode *inode)
1980 int error, needed_blocks, no_expand;
1982 struct ext4_iloc iloc;
1984 if (!ext4_has_inline_data(inode)) {
1985 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1989 needed_blocks = ext4_writepage_trans_blocks(inode);
1992 error = ext4_get_inode_loc(inode, &iloc);
1996 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
1997 if (IS_ERR(handle)) {
1998 error = PTR_ERR(handle);
2002 ext4_write_lock_xattr(inode, &no_expand);
2003 if (ext4_has_inline_data(inode))
2004 error = ext4_convert_inline_data_nolock(handle, inode, &iloc);
2005 ext4_write_unlock_xattr(inode, &no_expand);
2006 ext4_journal_stop(handle);