1 // SPDX-License-Identifier: LGPL-2.1
2 /*
3 * Copyright (c) 2012 Taobao.
4 * Written by Tao Ma <boyu.mt@taobao.com>
5 */
6
7 #include <linux/iomap.h>
8 #include <linux/fiemap.h>
9 #include <linux/iversion.h>
10
11 #include "ext4_jbd2.h"
12 #include "ext4.h"
13 #include "xattr.h"
14 #include "truncate.h"
15
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
20
ext4_get_inline_size(struct inode * inode)21 static int ext4_get_inline_size(struct inode *inode)
22 {
23 if (EXT4_I(inode)->i_inline_off)
24 return EXT4_I(inode)->i_inline_size;
25
26 return 0;
27 }
28
get_max_inline_xattr_value_size(struct inode * inode,struct ext4_iloc * iloc)29 static int get_max_inline_xattr_value_size(struct inode *inode,
30 struct ext4_iloc *iloc)
31 {
32 struct ext4_xattr_ibody_header *header;
33 struct ext4_xattr_entry *entry;
34 struct ext4_inode *raw_inode;
35 int free, min_offs;
36
37 if (!EXT4_INODE_HAS_XATTR_SPACE(inode))
38 return 0;
39
40 min_offs = EXT4_SB(inode->i_sb)->s_inode_size -
41 EXT4_GOOD_OLD_INODE_SIZE -
42 EXT4_I(inode)->i_extra_isize -
43 sizeof(struct ext4_xattr_ibody_header);
44
45 /*
46 * We need to subtract another sizeof(__u32) since an in-inode xattr
47 * needs an empty 4 bytes to indicate the gap between the xattr entry
48 * and the name/value pair.
49 */
50 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
51 return EXT4_XATTR_SIZE(min_offs -
52 EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA)) -
53 EXT4_XATTR_ROUND - sizeof(__u32));
54
55 raw_inode = ext4_raw_inode(iloc);
56 header = IHDR(inode, raw_inode);
57 entry = IFIRST(header);
58
59 /* Compute min_offs. */
60 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
61 if (!entry->e_value_inum && entry->e_value_size) {
62 size_t offs = le16_to_cpu(entry->e_value_offs);
63 if (offs < min_offs)
64 min_offs = offs;
65 }
66 }
67 free = min_offs -
68 ((void *)entry - (void *)IFIRST(header)) - sizeof(__u32);
69
70 if (EXT4_I(inode)->i_inline_off) {
71 entry = (struct ext4_xattr_entry *)
72 ((void *)raw_inode + EXT4_I(inode)->i_inline_off);
73
74 free += EXT4_XATTR_SIZE(le32_to_cpu(entry->e_value_size));
75 goto out;
76 }
77
78 free -= EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA));
79
80 if (free > EXT4_XATTR_ROUND)
81 free = EXT4_XATTR_SIZE(free - EXT4_XATTR_ROUND);
82 else
83 free = 0;
84
85 out:
86 return free;
87 }
88
89 /*
90 * Get the maximum size we now can store in an inode.
91 * If we can't find the space for a xattr entry, don't use the space
92 * of the extents since we have no space to indicate the inline data.
93 */
ext4_get_max_inline_size(struct inode * inode)94 int ext4_get_max_inline_size(struct inode *inode)
95 {
96 int error, max_inline_size;
97 struct ext4_iloc iloc;
98
99 if (EXT4_I(inode)->i_extra_isize == 0)
100 return 0;
101
102 error = ext4_get_inode_loc(inode, &iloc);
103 if (error) {
104 ext4_error_inode_err(inode, __func__, __LINE__, 0, -error,
105 "can't get inode location %lu",
106 inode->i_ino);
107 return 0;
108 }
109
110 down_read(&EXT4_I(inode)->xattr_sem);
111 max_inline_size = get_max_inline_xattr_value_size(inode, &iloc);
112 up_read(&EXT4_I(inode)->xattr_sem);
113
114 brelse(iloc.bh);
115
116 if (!max_inline_size)
117 return 0;
118
119 return max_inline_size + EXT4_MIN_INLINE_DATA_SIZE;
120 }
121
122 /*
123 * this function does not take xattr_sem, which is OK because it is
124 * currently only used in a code path coming form ext4_iget, before
125 * the new inode has been unlocked
126 */
ext4_find_inline_data_nolock(struct inode * inode)127 int ext4_find_inline_data_nolock(struct inode *inode)
128 {
129 struct ext4_xattr_ibody_find is = {
130 .s = { .not_found = -ENODATA, },
131 };
132 struct ext4_xattr_info i = {
133 .name_index = EXT4_XATTR_INDEX_SYSTEM,
134 .name = EXT4_XATTR_SYSTEM_DATA,
135 };
136 int error;
137
138 if (EXT4_I(inode)->i_extra_isize == 0)
139 return 0;
140
141 error = ext4_get_inode_loc(inode, &is.iloc);
142 if (error)
143 return error;
144
145 error = ext4_xattr_ibody_find(inode, &i, &is);
146 if (error)
147 goto out;
148
149 if (!is.s.not_found) {
150 if (is.s.here->e_value_inum) {
151 EXT4_ERROR_INODE(inode, "inline data xattr refers "
152 "to an external xattr inode");
153 error = -EFSCORRUPTED;
154 goto out;
155 }
156 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
157 (void *)ext4_raw_inode(&is.iloc));
158 EXT4_I(inode)->i_inline_size = EXT4_MIN_INLINE_DATA_SIZE +
159 le32_to_cpu(is.s.here->e_value_size);
160 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
161 }
162 out:
163 brelse(is.iloc.bh);
164 return error;
165 }
166
ext4_read_inline_data(struct inode * inode,void * buffer,unsigned int len,struct ext4_iloc * iloc)167 static int ext4_read_inline_data(struct inode *inode, void *buffer,
168 unsigned int len,
169 struct ext4_iloc *iloc)
170 {
171 struct ext4_xattr_entry *entry;
172 struct ext4_xattr_ibody_header *header;
173 int cp_len = 0;
174 struct ext4_inode *raw_inode;
175
176 if (!len)
177 return 0;
178
179 BUG_ON(len > EXT4_I(inode)->i_inline_size);
180
181 cp_len = len < EXT4_MIN_INLINE_DATA_SIZE ?
182 len : EXT4_MIN_INLINE_DATA_SIZE;
183
184 raw_inode = ext4_raw_inode(iloc);
185 memcpy(buffer, (void *)(raw_inode->i_block), cp_len);
186
187 len -= cp_len;
188 buffer += cp_len;
189
190 if (!len)
191 goto out;
192
193 header = IHDR(inode, raw_inode);
194 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
195 EXT4_I(inode)->i_inline_off);
196 len = min_t(unsigned int, len,
197 (unsigned int)le32_to_cpu(entry->e_value_size));
198
199 memcpy(buffer,
200 (void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs), len);
201 cp_len += len;
202
203 out:
204 return cp_len;
205 }
206
207 /*
208 * write the buffer to the inline inode.
209 * If 'create' is set, we don't need to do the extra copy in the xattr
210 * value since it is already handled by ext4_xattr_ibody_inline_set.
211 * That saves us one memcpy.
212 */
ext4_write_inline_data(struct inode * inode,struct ext4_iloc * iloc,void * buffer,loff_t pos,unsigned int len)213 static void ext4_write_inline_data(struct inode *inode, struct ext4_iloc *iloc,
214 void *buffer, loff_t pos, unsigned int len)
215 {
216 struct ext4_xattr_entry *entry;
217 struct ext4_xattr_ibody_header *header;
218 struct ext4_inode *raw_inode;
219 int cp_len = 0;
220
221 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
222 return;
223
224 BUG_ON(!EXT4_I(inode)->i_inline_off);
225 BUG_ON(pos + len > EXT4_I(inode)->i_inline_size);
226
227 raw_inode = ext4_raw_inode(iloc);
228 buffer += pos;
229
230 if (pos < EXT4_MIN_INLINE_DATA_SIZE) {
231 cp_len = pos + len > EXT4_MIN_INLINE_DATA_SIZE ?
232 EXT4_MIN_INLINE_DATA_SIZE - pos : len;
233 memcpy((void *)raw_inode->i_block + pos, buffer, cp_len);
234
235 len -= cp_len;
236 buffer += cp_len;
237 pos += cp_len;
238 }
239
240 if (!len)
241 return;
242
243 pos -= EXT4_MIN_INLINE_DATA_SIZE;
244 header = IHDR(inode, raw_inode);
245 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
246 EXT4_I(inode)->i_inline_off);
247
248 memcpy((void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs) + pos,
249 buffer, len);
250 }
251
ext4_create_inline_data(handle_t * handle,struct inode * inode,unsigned len)252 static int ext4_create_inline_data(handle_t *handle,
253 struct inode *inode, unsigned len)
254 {
255 int error;
256 void *value = NULL;
257 struct ext4_xattr_ibody_find is = {
258 .s = { .not_found = -ENODATA, },
259 };
260 struct ext4_xattr_info i = {
261 .name_index = EXT4_XATTR_INDEX_SYSTEM,
262 .name = EXT4_XATTR_SYSTEM_DATA,
263 };
264
265 error = ext4_get_inode_loc(inode, &is.iloc);
266 if (error)
267 return error;
268
269 BUFFER_TRACE(is.iloc.bh, "get_write_access");
270 error = ext4_journal_get_write_access(handle, is.iloc.bh);
271 if (error)
272 goto out;
273
274 if (len > EXT4_MIN_INLINE_DATA_SIZE) {
275 value = EXT4_ZERO_XATTR_VALUE;
276 len -= EXT4_MIN_INLINE_DATA_SIZE;
277 } else {
278 value = "";
279 len = 0;
280 }
281
282 /* Insert the xttr entry. */
283 i.value = value;
284 i.value_len = len;
285
286 error = ext4_xattr_ibody_find(inode, &i, &is);
287 if (error)
288 goto out;
289
290 BUG_ON(!is.s.not_found);
291
292 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
293 if (error) {
294 if (error == -ENOSPC)
295 ext4_clear_inode_state(inode,
296 EXT4_STATE_MAY_INLINE_DATA);
297 goto out;
298 }
299
300 memset((void *)ext4_raw_inode(&is.iloc)->i_block,
301 0, EXT4_MIN_INLINE_DATA_SIZE);
302
303 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
304 (void *)ext4_raw_inode(&is.iloc));
305 EXT4_I(inode)->i_inline_size = len + EXT4_MIN_INLINE_DATA_SIZE;
306 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
307 ext4_set_inode_flag(inode, EXT4_INODE_INLINE_DATA);
308 get_bh(is.iloc.bh);
309 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
310
311 out:
312 brelse(is.iloc.bh);
313 return error;
314 }
315
ext4_update_inline_data(handle_t * handle,struct inode * inode,unsigned int len)316 static int ext4_update_inline_data(handle_t *handle, struct inode *inode,
317 unsigned int len)
318 {
319 int error;
320 void *value = NULL;
321 struct ext4_xattr_ibody_find is = {
322 .s = { .not_found = -ENODATA, },
323 };
324 struct ext4_xattr_info i = {
325 .name_index = EXT4_XATTR_INDEX_SYSTEM,
326 .name = EXT4_XATTR_SYSTEM_DATA,
327 };
328
329 /* If the old space is ok, write the data directly. */
330 if (len <= EXT4_I(inode)->i_inline_size)
331 return 0;
332
333 error = ext4_get_inode_loc(inode, &is.iloc);
334 if (error)
335 return error;
336
337 error = ext4_xattr_ibody_find(inode, &i, &is);
338 if (error)
339 goto out;
340
341 BUG_ON(is.s.not_found);
342
343 len -= EXT4_MIN_INLINE_DATA_SIZE;
344 value = kzalloc(len, GFP_NOFS);
345 if (!value) {
346 error = -ENOMEM;
347 goto out;
348 }
349
350 error = ext4_xattr_ibody_get(inode, i.name_index, i.name,
351 value, len);
352 if (error == -ENODATA)
353 goto out;
354
355 BUFFER_TRACE(is.iloc.bh, "get_write_access");
356 error = ext4_journal_get_write_access(handle, is.iloc.bh);
357 if (error)
358 goto out;
359
360 /* Update the xattr entry. */
361 i.value = value;
362 i.value_len = len;
363
364 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
365 if (error)
366 goto out;
367
368 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
369 (void *)ext4_raw_inode(&is.iloc));
370 EXT4_I(inode)->i_inline_size = EXT4_MIN_INLINE_DATA_SIZE +
371 le32_to_cpu(is.s.here->e_value_size);
372 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
373 get_bh(is.iloc.bh);
374 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
375
376 out:
377 kfree(value);
378 brelse(is.iloc.bh);
379 return error;
380 }
381
ext4_prepare_inline_data(handle_t * handle,struct inode * inode,unsigned int len)382 static int ext4_prepare_inline_data(handle_t *handle, struct inode *inode,
383 unsigned int len)
384 {
385 int ret, size, no_expand;
386 struct ext4_inode_info *ei = EXT4_I(inode);
387
388 if (!ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA))
389 return -ENOSPC;
390
391 size = ext4_get_max_inline_size(inode);
392 if (size < len)
393 return -ENOSPC;
394
395 ext4_write_lock_xattr(inode, &no_expand);
396
397 if (ei->i_inline_off)
398 ret = ext4_update_inline_data(handle, inode, len);
399 else
400 ret = ext4_create_inline_data(handle, inode, len);
401
402 ext4_write_unlock_xattr(inode, &no_expand);
403 return ret;
404 }
405
ext4_destroy_inline_data_nolock(handle_t * handle,struct inode * inode)406 static int ext4_destroy_inline_data_nolock(handle_t *handle,
407 struct inode *inode)
408 {
409 struct ext4_inode_info *ei = EXT4_I(inode);
410 struct ext4_xattr_ibody_find is = {
411 .s = { .not_found = 0, },
412 };
413 struct ext4_xattr_info i = {
414 .name_index = EXT4_XATTR_INDEX_SYSTEM,
415 .name = EXT4_XATTR_SYSTEM_DATA,
416 .value = NULL,
417 .value_len = 0,
418 };
419 int error;
420
421 if (!ei->i_inline_off)
422 return 0;
423
424 error = ext4_get_inode_loc(inode, &is.iloc);
425 if (error)
426 return error;
427
428 error = ext4_xattr_ibody_find(inode, &i, &is);
429 if (error)
430 goto out;
431
432 BUFFER_TRACE(is.iloc.bh, "get_write_access");
433 error = ext4_journal_get_write_access(handle, is.iloc.bh);
434 if (error)
435 goto out;
436
437 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
438 if (error)
439 goto out;
440
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);
444
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);
450 }
451 }
452 ext4_clear_inode_flag(inode, EXT4_INODE_INLINE_DATA);
453
454 get_bh(is.iloc.bh);
455 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
456
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);
460 out:
461 brelse(is.iloc.bh);
462 if (error == -ENODATA)
463 error = 0;
464 return error;
465 }
466
ext4_read_inline_page(struct inode * inode,struct page * page)467 static int ext4_read_inline_page(struct inode *inode, struct page *page)
468 {
469 void *kaddr;
470 int ret = 0;
471 size_t len;
472 struct ext4_iloc iloc;
473
474 BUG_ON(!PageLocked(page));
475 BUG_ON(!ext4_has_inline_data(inode));
476 BUG_ON(page->index);
477
478 if (!EXT4_I(inode)->i_inline_off) {
479 ext4_warning(inode->i_sb, "inode %lu doesn't have inline data.",
480 inode->i_ino);
481 goto out;
482 }
483
484 ret = ext4_get_inode_loc(inode, &iloc);
485 if (ret)
486 goto out;
487
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);
495 brelse(iloc.bh);
496
497 out:
498 return ret;
499 }
500
ext4_readpage_inline(struct inode * inode,struct page * page)501 int ext4_readpage_inline(struct inode *inode, struct page *page)
502 {
503 int ret = 0;
504
505 down_read(&EXT4_I(inode)->xattr_sem);
506 if (!ext4_has_inline_data(inode)) {
507 up_read(&EXT4_I(inode)->xattr_sem);
508 return -EAGAIN;
509 }
510
511 /*
512 * Current inline data can only exist in the 1st page,
513 * So for all the other pages, just set them uptodate.
514 */
515 if (!page->index)
516 ret = ext4_read_inline_page(inode, page);
517 else if (!PageUptodate(page)) {
518 zero_user_segment(page, 0, PAGE_SIZE);
519 SetPageUptodate(page);
520 }
521
522 up_read(&EXT4_I(inode)->xattr_sem);
523
524 unlock_page(page);
525 return ret >= 0 ? 0 : ret;
526 }
527
ext4_convert_inline_data_to_extent(struct address_space * mapping,struct inode * inode,unsigned flags)528 static int ext4_convert_inline_data_to_extent(struct address_space *mapping,
529 struct inode *inode,
530 unsigned flags)
531 {
532 int ret, needed_blocks, no_expand;
533 handle_t *handle = NULL;
534 int retries = 0, sem_held = 0;
535 struct page *page = NULL;
536 unsigned from, to;
537 struct ext4_iloc iloc;
538
539 if (!ext4_has_inline_data(inode)) {
540 /*
541 * clear the flag so that no new write
542 * will trap here again.
543 */
544 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
545 return 0;
546 }
547
548 needed_blocks = ext4_writepage_trans_blocks(inode);
549
550 ret = ext4_get_inode_loc(inode, &iloc);
551 if (ret)
552 return ret;
553
554 retry:
555 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
556 if (IS_ERR(handle)) {
557 ret = PTR_ERR(handle);
558 handle = NULL;
559 goto out;
560 }
561
562 /* We cannot recurse into the filesystem as the transaction is already
563 * started */
564 flags |= AOP_FLAG_NOFS;
565
566 page = grab_cache_page_write_begin(mapping, 0, flags);
567 if (!page) {
568 ret = -ENOMEM;
569 goto out;
570 }
571
572 ext4_write_lock_xattr(inode, &no_expand);
573 sem_held = 1;
574 /* If some one has already done this for us, just exit. */
575 if (!ext4_has_inline_data(inode)) {
576 ret = 0;
577 goto out;
578 }
579
580 from = 0;
581 to = ext4_get_inline_size(inode);
582 if (!PageUptodate(page)) {
583 ret = ext4_read_inline_page(inode, page);
584 if (ret < 0)
585 goto out;
586 }
587
588 ret = ext4_destroy_inline_data_nolock(handle, inode);
589 if (ret)
590 goto out;
591
592 if (ext4_should_dioread_nolock(inode)) {
593 ret = __block_write_begin(page, from, to,
594 ext4_get_block_unwritten);
595 } else
596 ret = __block_write_begin(page, from, to, ext4_get_block);
597
598 if (!ret && ext4_should_journal_data(inode)) {
599 ret = ext4_walk_page_buffers(handle, page_buffers(page),
600 from, to, NULL,
601 do_journal_get_write_access);
602 }
603
604 if (ret) {
605 unlock_page(page);
606 put_page(page);
607 page = NULL;
608 ext4_orphan_add(handle, inode);
609 ext4_write_unlock_xattr(inode, &no_expand);
610 sem_held = 0;
611 ext4_journal_stop(handle);
612 handle = NULL;
613 ext4_truncate_failed_write(inode);
614 /*
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.
619 */
620 if (inode->i_nlink)
621 ext4_orphan_del(NULL, inode);
622 }
623
624 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
625 goto retry;
626
627 if (page)
628 block_commit_write(page, from, to);
629 out:
630 if (page) {
631 unlock_page(page);
632 put_page(page);
633 }
634 if (sem_held)
635 ext4_write_unlock_xattr(inode, &no_expand);
636 if (handle)
637 ext4_journal_stop(handle);
638 brelse(iloc.bh);
639 return ret;
640 }
641
642 /*
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.
647 */
ext4_try_to_write_inline_data(struct address_space * mapping,struct inode * inode,loff_t pos,unsigned len,unsigned flags,struct page ** pagep)648 int ext4_try_to_write_inline_data(struct address_space *mapping,
649 struct inode *inode,
650 loff_t pos, unsigned len,
651 unsigned flags,
652 struct page **pagep)
653 {
654 int ret;
655 handle_t *handle;
656 struct page *page;
657 struct ext4_iloc iloc;
658
659 if (pos + len > ext4_get_max_inline_size(inode))
660 goto convert;
661
662 ret = ext4_get_inode_loc(inode, &iloc);
663 if (ret)
664 return ret;
665
666 /*
667 * The possible write could happen in the inode,
668 * so try to reserve the space in inode first.
669 */
670 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
671 if (IS_ERR(handle)) {
672 ret = PTR_ERR(handle);
673 handle = NULL;
674 goto out;
675 }
676
677 ret = ext4_prepare_inline_data(handle, inode, pos + len);
678 if (ret && ret != -ENOSPC)
679 goto out;
680
681 /* We don't have space in inline inode, so convert it to extent. */
682 if (ret == -ENOSPC) {
683 ext4_journal_stop(handle);
684 brelse(iloc.bh);
685 goto convert;
686 }
687
688 ret = ext4_journal_get_write_access(handle, iloc.bh);
689 if (ret)
690 goto out;
691
692 flags |= AOP_FLAG_NOFS;
693
694 page = grab_cache_page_write_begin(mapping, 0, flags);
695 if (!page) {
696 ret = -ENOMEM;
697 goto out;
698 }
699
700 *pagep = page;
701 down_read(&EXT4_I(inode)->xattr_sem);
702 if (!ext4_has_inline_data(inode)) {
703 ret = 0;
704 unlock_page(page);
705 put_page(page);
706 goto out_up_read;
707 }
708
709 if (!PageUptodate(page)) {
710 ret = ext4_read_inline_page(inode, page);
711 if (ret < 0) {
712 unlock_page(page);
713 put_page(page);
714 goto out_up_read;
715 }
716 }
717
718 ret = 1;
719 handle = NULL;
720 out_up_read:
721 up_read(&EXT4_I(inode)->xattr_sem);
722 out:
723 if (handle && (ret != 1))
724 ext4_journal_stop(handle);
725 brelse(iloc.bh);
726 return ret;
727 convert:
728 return ext4_convert_inline_data_to_extent(mapping,
729 inode, flags);
730 }
731
ext4_write_inline_data_end(struct inode * inode,loff_t pos,unsigned len,unsigned copied,struct page * page)732 int ext4_write_inline_data_end(struct inode *inode, loff_t pos, unsigned len,
733 unsigned copied, struct page *page)
734 {
735 handle_t *handle = ext4_journal_current_handle();
736 int no_expand;
737 void *kaddr;
738 struct ext4_iloc iloc;
739 int ret = 0, ret2;
740
741 if (unlikely(copied < len) && !PageUptodate(page))
742 copied = 0;
743
744 if (likely(copied)) {
745 ret = ext4_get_inode_loc(inode, &iloc);
746 if (ret) {
747 unlock_page(page);
748 put_page(page);
749 ext4_std_error(inode->i_sb, ret);
750 goto out;
751 }
752 ext4_write_lock_xattr(inode, &no_expand);
753 BUG_ON(!ext4_has_inline_data(inode));
754
755 /*
756 * ei->i_inline_off may have changed since
757 * ext4_write_begin() called
758 * ext4_try_to_write_inline_data()
759 */
760 (void) ext4_find_inline_data_nolock(inode);
761
762 kaddr = kmap_atomic(page);
763 ext4_write_inline_data(inode, &iloc, kaddr, pos, copied);
764 kunmap_atomic(kaddr);
765 SetPageUptodate(page);
766 /* clear page dirty so that writepages wouldn't work for us. */
767 ClearPageDirty(page);
768
769 ext4_write_unlock_xattr(inode, &no_expand);
770 brelse(iloc.bh);
771
772 /*
773 * It's important to update i_size while still holding page
774 * lock: page writeout could otherwise come in and zero
775 * beyond i_size.
776 */
777 ext4_update_inode_size(inode, pos + copied);
778 }
779 unlock_page(page);
780 put_page(page);
781
782 /*
783 * Don't mark the inode dirty under page lock. First, it unnecessarily
784 * makes the holding time of page lock longer. Second, it forces lock
785 * ordering of page lock and transaction start for journaling
786 * filesystems.
787 */
788 if (likely(copied))
789 mark_inode_dirty(inode);
790 out:
791 /*
792 * If we didn't copy as much data as expected, we need to trim back
793 * size of xattr containing inline data.
794 */
795 if (pos + len > inode->i_size && ext4_can_truncate(inode))
796 ext4_orphan_add(handle, inode);
797
798 ret2 = ext4_journal_stop(handle);
799 if (!ret)
800 ret = ret2;
801 if (pos + len > inode->i_size) {
802 ext4_truncate_failed_write(inode);
803 /*
804 * If truncate failed early the inode might still be
805 * on the orphan list; we need to make sure the inode
806 * is removed from the orphan list in that case.
807 */
808 if (inode->i_nlink)
809 ext4_orphan_del(NULL, inode);
810 }
811 return ret ? ret : copied;
812 }
813
814 struct buffer_head *
ext4_journalled_write_inline_data(struct inode * inode,unsigned len,struct page * page)815 ext4_journalled_write_inline_data(struct inode *inode,
816 unsigned len,
817 struct page *page)
818 {
819 int ret, no_expand;
820 void *kaddr;
821 struct ext4_iloc iloc;
822
823 ret = ext4_get_inode_loc(inode, &iloc);
824 if (ret) {
825 ext4_std_error(inode->i_sb, ret);
826 return NULL;
827 }
828
829 ext4_write_lock_xattr(inode, &no_expand);
830 kaddr = kmap_atomic(page);
831 ext4_write_inline_data(inode, &iloc, kaddr, 0, len);
832 kunmap_atomic(kaddr);
833 ext4_write_unlock_xattr(inode, &no_expand);
834
835 return iloc.bh;
836 }
837
838 /*
839 * Try to make the page cache and handle ready for the inline data case.
840 * We can call this function in 2 cases:
841 * 1. The inode is created and the first write exceeds inline size. We can
842 * clear the inode state safely.
843 * 2. The inode has inline data, then we need to read the data, make it
844 * update and dirty so that ext4_da_writepages can handle it. We don't
845 * need to start the journal since the file's metadata isn't changed now.
846 */
ext4_da_convert_inline_data_to_extent(struct address_space * mapping,struct inode * inode,unsigned flags,void ** fsdata)847 static int ext4_da_convert_inline_data_to_extent(struct address_space *mapping,
848 struct inode *inode,
849 unsigned flags,
850 void **fsdata)
851 {
852 int ret = 0, inline_size;
853 struct page *page;
854
855 page = grab_cache_page_write_begin(mapping, 0, flags);
856 if (!page)
857 return -ENOMEM;
858
859 down_read(&EXT4_I(inode)->xattr_sem);
860 if (!ext4_has_inline_data(inode)) {
861 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
862 goto out;
863 }
864
865 inline_size = ext4_get_inline_size(inode);
866
867 if (!PageUptodate(page)) {
868 ret = ext4_read_inline_page(inode, page);
869 if (ret < 0)
870 goto out;
871 }
872
873 ret = __block_write_begin(page, 0, inline_size,
874 ext4_da_get_block_prep);
875 if (ret) {
876 up_read(&EXT4_I(inode)->xattr_sem);
877 unlock_page(page);
878 put_page(page);
879 ext4_truncate_failed_write(inode);
880 return ret;
881 }
882
883 SetPageDirty(page);
884 SetPageUptodate(page);
885 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
886 *fsdata = (void *)CONVERT_INLINE_DATA;
887
888 out:
889 up_read(&EXT4_I(inode)->xattr_sem);
890 if (page) {
891 unlock_page(page);
892 put_page(page);
893 }
894 return ret;
895 }
896
897 /*
898 * Prepare the write for the inline data.
899 * If the data can be written into the inode, we just read
900 * the page and make it uptodate, and start the journal.
901 * Otherwise read the page, makes it dirty so that it can be
902 * handle in writepages(the i_disksize update is left to the
903 * normal ext4_da_write_end).
904 */
ext4_da_write_inline_data_begin(struct address_space * mapping,struct inode * inode,loff_t pos,unsigned len,unsigned flags,struct page ** pagep,void ** fsdata)905 int ext4_da_write_inline_data_begin(struct address_space *mapping,
906 struct inode *inode,
907 loff_t pos, unsigned len,
908 unsigned flags,
909 struct page **pagep,
910 void **fsdata)
911 {
912 int ret, inline_size;
913 handle_t *handle;
914 struct page *page;
915 struct ext4_iloc iloc;
916 int retries = 0;
917
918 ret = ext4_get_inode_loc(inode, &iloc);
919 if (ret)
920 return ret;
921
922 retry_journal:
923 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
924 if (IS_ERR(handle)) {
925 ret = PTR_ERR(handle);
926 goto out;
927 }
928
929 inline_size = ext4_get_max_inline_size(inode);
930
931 ret = -ENOSPC;
932 if (inline_size >= pos + len) {
933 ret = ext4_prepare_inline_data(handle, inode, pos + len);
934 if (ret && ret != -ENOSPC)
935 goto out_journal;
936 }
937
938 /*
939 * We cannot recurse into the filesystem as the transaction
940 * is already started.
941 */
942 flags |= AOP_FLAG_NOFS;
943
944 if (ret == -ENOSPC) {
945 ext4_journal_stop(handle);
946 ret = ext4_da_convert_inline_data_to_extent(mapping,
947 inode,
948 flags,
949 fsdata);
950 if (ret == -ENOSPC &&
951 ext4_should_retry_alloc(inode->i_sb, &retries))
952 goto retry_journal;
953 goto out;
954 }
955
956 page = grab_cache_page_write_begin(mapping, 0, flags);
957 if (!page) {
958 ret = -ENOMEM;
959 goto out_journal;
960 }
961
962 down_read(&EXT4_I(inode)->xattr_sem);
963 if (!ext4_has_inline_data(inode)) {
964 ret = 0;
965 goto out_release_page;
966 }
967
968 if (!PageUptodate(page)) {
969 ret = ext4_read_inline_page(inode, page);
970 if (ret < 0)
971 goto out_release_page;
972 }
973 ret = ext4_journal_get_write_access(handle, iloc.bh);
974 if (ret)
975 goto out_release_page;
976
977 up_read(&EXT4_I(inode)->xattr_sem);
978 *pagep = page;
979 brelse(iloc.bh);
980 return 1;
981 out_release_page:
982 up_read(&EXT4_I(inode)->xattr_sem);
983 unlock_page(page);
984 put_page(page);
985 out_journal:
986 ext4_journal_stop(handle);
987 out:
988 brelse(iloc.bh);
989 return ret;
990 }
991
992 #ifdef INLINE_DIR_DEBUG
ext4_show_inline_dir(struct inode * dir,struct buffer_head * bh,void * inline_start,int inline_size)993 void ext4_show_inline_dir(struct inode *dir, struct buffer_head *bh,
994 void *inline_start, int inline_size)
995 {
996 int offset;
997 unsigned short de_len;
998 struct ext4_dir_entry_2 *de = inline_start;
999 void *dlimit = inline_start + inline_size;
1000
1001 trace_printk("inode %lu\n", dir->i_ino);
1002 offset = 0;
1003 while ((void *)de < dlimit) {
1004 de_len = ext4_rec_len_from_disk(de->rec_len, inline_size);
1005 trace_printk("de: off %u rlen %u name %.*s nlen %u ino %u\n",
1006 offset, de_len, de->name_len, de->name,
1007 de->name_len, le32_to_cpu(de->inode));
1008 if (ext4_check_dir_entry(dir, NULL, de, bh,
1009 inline_start, inline_size, offset))
1010 BUG();
1011
1012 offset += de_len;
1013 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
1014 }
1015 }
1016 #else
1017 #define ext4_show_inline_dir(dir, bh, inline_start, inline_size)
1018 #endif
1019
1020 /*
1021 * Add a new entry into a inline dir.
1022 * It will return -ENOSPC if no space is available, and -EIO
1023 * and -EEXIST if directory entry already exists.
1024 */
ext4_add_dirent_to_inline(handle_t * handle,struct ext4_filename * fname,struct inode * dir,struct inode * inode,struct ext4_iloc * iloc,void * inline_start,int inline_size)1025 static int ext4_add_dirent_to_inline(handle_t *handle,
1026 struct ext4_filename *fname,
1027 struct inode *dir,
1028 struct inode *inode,
1029 struct ext4_iloc *iloc,
1030 void *inline_start, int inline_size)
1031 {
1032 int err;
1033 struct ext4_dir_entry_2 *de;
1034
1035 err = ext4_find_dest_de(dir, inode, iloc->bh, inline_start,
1036 inline_size, fname, &de);
1037 if (err)
1038 return err;
1039
1040 BUFFER_TRACE(iloc->bh, "get_write_access");
1041 err = ext4_journal_get_write_access(handle, iloc->bh);
1042 if (err)
1043 return err;
1044 ext4_insert_dentry(inode, de, inline_size, fname);
1045
1046 ext4_show_inline_dir(dir, iloc->bh, inline_start, inline_size);
1047
1048 /*
1049 * XXX shouldn't update any times until successful
1050 * completion of syscall, but too many callers depend
1051 * on this.
1052 *
1053 * XXX similarly, too many callers depend on
1054 * ext4_new_inode() setting the times, but error
1055 * recovery deletes the inode, so the worst that can
1056 * happen is that the times are slightly out of date
1057 * and/or different from the directory change time.
1058 */
1059 dir->i_mtime = dir->i_ctime = current_time(dir);
1060 ext4_update_dx_flag(dir);
1061 inode_inc_iversion(dir);
1062 return 1;
1063 }
1064
ext4_get_inline_xattr_pos(struct inode * inode,struct ext4_iloc * iloc)1065 static void *ext4_get_inline_xattr_pos(struct inode *inode,
1066 struct ext4_iloc *iloc)
1067 {
1068 struct ext4_xattr_entry *entry;
1069 struct ext4_xattr_ibody_header *header;
1070
1071 BUG_ON(!EXT4_I(inode)->i_inline_off);
1072
1073 header = IHDR(inode, ext4_raw_inode(iloc));
1074 entry = (struct ext4_xattr_entry *)((void *)ext4_raw_inode(iloc) +
1075 EXT4_I(inode)->i_inline_off);
1076
1077 return (void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs);
1078 }
1079
1080 /* Set the final de to cover the whole block. */
ext4_update_final_de(void * de_buf,int old_size,int new_size)1081 static void ext4_update_final_de(void *de_buf, int old_size, int new_size)
1082 {
1083 struct ext4_dir_entry_2 *de, *prev_de;
1084 void *limit;
1085 int de_len;
1086
1087 de = (struct ext4_dir_entry_2 *)de_buf;
1088 if (old_size) {
1089 limit = de_buf + old_size;
1090 do {
1091 prev_de = de;
1092 de_len = ext4_rec_len_from_disk(de->rec_len, old_size);
1093 de_buf += de_len;
1094 de = (struct ext4_dir_entry_2 *)de_buf;
1095 } while (de_buf < limit);
1096
1097 prev_de->rec_len = ext4_rec_len_to_disk(de_len + new_size -
1098 old_size, new_size);
1099 } else {
1100 /* this is just created, so create an empty entry. */
1101 de->inode = 0;
1102 de->rec_len = ext4_rec_len_to_disk(new_size, new_size);
1103 }
1104 }
1105
ext4_update_inline_dir(handle_t * handle,struct inode * dir,struct ext4_iloc * iloc)1106 static int ext4_update_inline_dir(handle_t *handle, struct inode *dir,
1107 struct ext4_iloc *iloc)
1108 {
1109 int ret;
1110 int old_size = EXT4_I(dir)->i_inline_size - EXT4_MIN_INLINE_DATA_SIZE;
1111 int new_size = get_max_inline_xattr_value_size(dir, iloc);
1112
1113 if (new_size - old_size <= EXT4_DIR_REC_LEN(1))
1114 return -ENOSPC;
1115
1116 ret = ext4_update_inline_data(handle, dir,
1117 new_size + EXT4_MIN_INLINE_DATA_SIZE);
1118 if (ret)
1119 return ret;
1120
1121 ext4_update_final_de(ext4_get_inline_xattr_pos(dir, iloc), old_size,
1122 EXT4_I(dir)->i_inline_size -
1123 EXT4_MIN_INLINE_DATA_SIZE);
1124 dir->i_size = EXT4_I(dir)->i_disksize = EXT4_I(dir)->i_inline_size;
1125 return 0;
1126 }
1127
ext4_restore_inline_data(handle_t * handle,struct inode * inode,struct ext4_iloc * iloc,void * buf,int inline_size)1128 static void ext4_restore_inline_data(handle_t *handle, struct inode *inode,
1129 struct ext4_iloc *iloc,
1130 void *buf, int inline_size)
1131 {
1132 int ret;
1133
1134 ret = ext4_create_inline_data(handle, inode, inline_size);
1135 if (ret) {
1136 ext4_msg(inode->i_sb, KERN_EMERG,
1137 "error restoring inline_data for inode -- potential data loss! (inode %lu, error %d)",
1138 inode->i_ino, ret);
1139 return;
1140 }
1141 ext4_write_inline_data(inode, iloc, buf, 0, inline_size);
1142 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1143 }
1144
ext4_finish_convert_inline_dir(handle_t * handle,struct inode * inode,struct buffer_head * dir_block,void * buf,int inline_size)1145 static int ext4_finish_convert_inline_dir(handle_t *handle,
1146 struct inode *inode,
1147 struct buffer_head *dir_block,
1148 void *buf,
1149 int inline_size)
1150 {
1151 int err, csum_size = 0, header_size = 0;
1152 struct ext4_dir_entry_2 *de;
1153 void *target = dir_block->b_data;
1154
1155 /*
1156 * First create "." and ".." and then copy the dir information
1157 * back to the block.
1158 */
1159 de = (struct ext4_dir_entry_2 *)target;
1160 de = ext4_init_dot_dotdot(inode, de,
1161 inode->i_sb->s_blocksize, csum_size,
1162 le32_to_cpu(((struct ext4_dir_entry_2 *)buf)->inode), 1);
1163 header_size = (void *)de - target;
1164
1165 memcpy((void *)de, buf + EXT4_INLINE_DOTDOT_SIZE,
1166 inline_size - EXT4_INLINE_DOTDOT_SIZE);
1167
1168 if (ext4_has_metadata_csum(inode->i_sb))
1169 csum_size = sizeof(struct ext4_dir_entry_tail);
1170
1171 inode->i_size = inode->i_sb->s_blocksize;
1172 i_size_write(inode, inode->i_sb->s_blocksize);
1173 EXT4_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1174 ext4_update_final_de(dir_block->b_data,
1175 inline_size - EXT4_INLINE_DOTDOT_SIZE + header_size,
1176 inode->i_sb->s_blocksize - csum_size);
1177
1178 if (csum_size)
1179 ext4_initialize_dirent_tail(dir_block,
1180 inode->i_sb->s_blocksize);
1181 set_buffer_uptodate(dir_block);
1182 err = ext4_handle_dirty_dirblock(handle, inode, dir_block);
1183 if (err)
1184 return err;
1185 set_buffer_verified(dir_block);
1186 return ext4_mark_inode_dirty(handle, inode);
1187 }
1188
ext4_convert_inline_data_nolock(handle_t * handle,struct inode * inode,struct ext4_iloc * iloc)1189 static int ext4_convert_inline_data_nolock(handle_t *handle,
1190 struct inode *inode,
1191 struct ext4_iloc *iloc)
1192 {
1193 int error;
1194 void *buf = NULL;
1195 struct buffer_head *data_bh = NULL;
1196 struct ext4_map_blocks map;
1197 int inline_size;
1198
1199 inline_size = ext4_get_inline_size(inode);
1200 buf = kmalloc(inline_size, GFP_NOFS);
1201 if (!buf) {
1202 error = -ENOMEM;
1203 goto out;
1204 }
1205
1206 error = ext4_read_inline_data(inode, buf, inline_size, iloc);
1207 if (error < 0)
1208 goto out;
1209
1210 /*
1211 * Make sure the inline directory entries pass checks before we try to
1212 * convert them, so that we avoid touching stuff that needs fsck.
1213 */
1214 if (S_ISDIR(inode->i_mode)) {
1215 error = ext4_check_all_de(inode, iloc->bh,
1216 buf + EXT4_INLINE_DOTDOT_SIZE,
1217 inline_size - EXT4_INLINE_DOTDOT_SIZE);
1218 if (error)
1219 goto out;
1220 }
1221
1222 error = ext4_destroy_inline_data_nolock(handle, inode);
1223 if (error)
1224 goto out;
1225
1226 map.m_lblk = 0;
1227 map.m_len = 1;
1228 map.m_flags = 0;
1229 error = ext4_map_blocks(handle, inode, &map, EXT4_GET_BLOCKS_CREATE);
1230 if (error < 0)
1231 goto out_restore;
1232 if (!(map.m_flags & EXT4_MAP_MAPPED)) {
1233 error = -EIO;
1234 goto out_restore;
1235 }
1236
1237 data_bh = sb_getblk(inode->i_sb, map.m_pblk);
1238 if (!data_bh) {
1239 error = -ENOMEM;
1240 goto out_restore;
1241 }
1242
1243 lock_buffer(data_bh);
1244 error = ext4_journal_get_create_access(handle, data_bh);
1245 if (error) {
1246 unlock_buffer(data_bh);
1247 error = -EIO;
1248 goto out_restore;
1249 }
1250 memset(data_bh->b_data, 0, inode->i_sb->s_blocksize);
1251
1252 if (!S_ISDIR(inode->i_mode)) {
1253 memcpy(data_bh->b_data, buf, inline_size);
1254 set_buffer_uptodate(data_bh);
1255 error = ext4_handle_dirty_metadata(handle,
1256 inode, data_bh);
1257 } else {
1258 error = ext4_finish_convert_inline_dir(handle, inode, data_bh,
1259 buf, inline_size);
1260 }
1261
1262 unlock_buffer(data_bh);
1263 out_restore:
1264 if (error)
1265 ext4_restore_inline_data(handle, inode, iloc, buf, inline_size);
1266
1267 out:
1268 brelse(data_bh);
1269 kfree(buf);
1270 return error;
1271 }
1272
1273 /*
1274 * Try to add the new entry to the inline data.
1275 * If succeeds, return 0. If not, extended the inline dir and copied data to
1276 * the new created block.
1277 */
ext4_try_add_inline_entry(handle_t * handle,struct ext4_filename * fname,struct inode * dir,struct inode * inode)1278 int ext4_try_add_inline_entry(handle_t *handle, struct ext4_filename *fname,
1279 struct inode *dir, struct inode *inode)
1280 {
1281 int ret, ret2, inline_size, no_expand;
1282 void *inline_start;
1283 struct ext4_iloc iloc;
1284
1285 ret = ext4_get_inode_loc(dir, &iloc);
1286 if (ret)
1287 return ret;
1288
1289 ext4_write_lock_xattr(dir, &no_expand);
1290 if (!ext4_has_inline_data(dir))
1291 goto out;
1292
1293 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1294 EXT4_INLINE_DOTDOT_SIZE;
1295 inline_size = EXT4_MIN_INLINE_DATA_SIZE - EXT4_INLINE_DOTDOT_SIZE;
1296
1297 ret = ext4_add_dirent_to_inline(handle, fname, dir, inode, &iloc,
1298 inline_start, inline_size);
1299 if (ret != -ENOSPC)
1300 goto out;
1301
1302 /* check whether it can be inserted to inline xattr space. */
1303 inline_size = EXT4_I(dir)->i_inline_size -
1304 EXT4_MIN_INLINE_DATA_SIZE;
1305 if (!inline_size) {
1306 /* Try to use the xattr space.*/
1307 ret = ext4_update_inline_dir(handle, dir, &iloc);
1308 if (ret && ret != -ENOSPC)
1309 goto out;
1310
1311 inline_size = EXT4_I(dir)->i_inline_size -
1312 EXT4_MIN_INLINE_DATA_SIZE;
1313 }
1314
1315 if (inline_size) {
1316 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1317
1318 ret = ext4_add_dirent_to_inline(handle, fname, dir,
1319 inode, &iloc, inline_start,
1320 inline_size);
1321
1322 if (ret != -ENOSPC)
1323 goto out;
1324 }
1325
1326 /*
1327 * The inline space is filled up, so create a new block for it.
1328 * As the extent tree will be created, we have to save the inline
1329 * dir first.
1330 */
1331 ret = ext4_convert_inline_data_nolock(handle, dir, &iloc);
1332
1333 out:
1334 ext4_write_unlock_xattr(dir, &no_expand);
1335 ret2 = ext4_mark_inode_dirty(handle, dir);
1336 if (unlikely(ret2 && !ret))
1337 ret = ret2;
1338 brelse(iloc.bh);
1339 return ret;
1340 }
1341
1342 /*
1343 * This function fills a red-black tree with information from an
1344 * inlined dir. It returns the number directory entries loaded
1345 * into the tree. If there is an error it is returned in err.
1346 */
ext4_inlinedir_to_tree(struct file * dir_file,struct inode * dir,ext4_lblk_t block,struct dx_hash_info * hinfo,__u32 start_hash,__u32 start_minor_hash,int * has_inline_data)1347 int ext4_inlinedir_to_tree(struct file *dir_file,
1348 struct inode *dir, ext4_lblk_t block,
1349 struct dx_hash_info *hinfo,
1350 __u32 start_hash, __u32 start_minor_hash,
1351 int *has_inline_data)
1352 {
1353 int err = 0, count = 0;
1354 unsigned int parent_ino;
1355 int pos;
1356 struct ext4_dir_entry_2 *de;
1357 struct inode *inode = file_inode(dir_file);
1358 int ret, inline_size = 0;
1359 struct ext4_iloc iloc;
1360 void *dir_buf = NULL;
1361 struct ext4_dir_entry_2 fake;
1362 struct fscrypt_str tmp_str;
1363
1364 ret = ext4_get_inode_loc(inode, &iloc);
1365 if (ret)
1366 return ret;
1367
1368 down_read(&EXT4_I(inode)->xattr_sem);
1369 if (!ext4_has_inline_data(inode)) {
1370 up_read(&EXT4_I(inode)->xattr_sem);
1371 *has_inline_data = 0;
1372 goto out;
1373 }
1374
1375 inline_size = ext4_get_inline_size(inode);
1376 dir_buf = kmalloc(inline_size, GFP_NOFS);
1377 if (!dir_buf) {
1378 ret = -ENOMEM;
1379 up_read(&EXT4_I(inode)->xattr_sem);
1380 goto out;
1381 }
1382
1383 ret = ext4_read_inline_data(inode, dir_buf, inline_size, &iloc);
1384 up_read(&EXT4_I(inode)->xattr_sem);
1385 if (ret < 0)
1386 goto out;
1387
1388 pos = 0;
1389 parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode);
1390 while (pos < inline_size) {
1391 /*
1392 * As inlined dir doesn't store any information about '.' and
1393 * only the inode number of '..' is stored, we have to handle
1394 * them differently.
1395 */
1396 if (pos == 0) {
1397 fake.inode = cpu_to_le32(inode->i_ino);
1398 fake.name_len = 1;
1399 strcpy(fake.name, ".");
1400 fake.rec_len = ext4_rec_len_to_disk(
1401 EXT4_DIR_REC_LEN(fake.name_len),
1402 inline_size);
1403 ext4_set_de_type(inode->i_sb, &fake, S_IFDIR);
1404 de = &fake;
1405 pos = EXT4_INLINE_DOTDOT_OFFSET;
1406 } else if (pos == EXT4_INLINE_DOTDOT_OFFSET) {
1407 fake.inode = cpu_to_le32(parent_ino);
1408 fake.name_len = 2;
1409 strcpy(fake.name, "..");
1410 fake.rec_len = ext4_rec_len_to_disk(
1411 EXT4_DIR_REC_LEN(fake.name_len),
1412 inline_size);
1413 ext4_set_de_type(inode->i_sb, &fake, S_IFDIR);
1414 de = &fake;
1415 pos = EXT4_INLINE_DOTDOT_SIZE;
1416 } else {
1417 de = (struct ext4_dir_entry_2 *)(dir_buf + pos);
1418 pos += ext4_rec_len_from_disk(de->rec_len, inline_size);
1419 if (ext4_check_dir_entry(inode, dir_file, de,
1420 iloc.bh, dir_buf,
1421 inline_size, pos)) {
1422 ret = count;
1423 goto out;
1424 }
1425 }
1426
1427 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)))
1431 continue;
1432 if (de->inode == 0)
1433 continue;
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);
1438 if (err) {
1439 ret = err;
1440 goto out;
1441 }
1442 count++;
1443 }
1444 ret = count;
1445 out:
1446 kfree(dir_buf);
1447 brelse(iloc.bh);
1448 return ret;
1449 }
1450
1451 /*
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.
1457 *
1458 */
ext4_read_inline_dir(struct file * file,struct dir_context * ctx,int * has_inline_data)1459 int ext4_read_inline_dir(struct file *file,
1460 struct dir_context *ctx,
1461 int *has_inline_data)
1462 {
1463 unsigned int offset, parent_ino;
1464 int i;
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;
1472
1473 ret = ext4_get_inode_loc(inode, &iloc);
1474 if (ret)
1475 return ret;
1476
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;
1481 goto out;
1482 }
1483
1484 inline_size = ext4_get_inline_size(inode);
1485 dir_buf = kmalloc(inline_size, GFP_NOFS);
1486 if (!dir_buf) {
1487 ret = -ENOMEM;
1488 up_read(&EXT4_I(inode)->xattr_sem);
1489 goto out;
1490 }
1491
1492 ret = ext4_read_inline_data(inode, dir_buf, inline_size, &iloc);
1493 up_read(&EXT4_I(inode)->xattr_sem);
1494 if (ret < 0)
1495 goto out;
1496
1497 ret = 0;
1498 sb = inode->i_sb;
1499 parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode);
1500 offset = ctx->pos;
1501
1502 /*
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.
1508 */
1509 dotdot_offset = EXT4_DIR_REC_LEN(1);
1510 dotdot_size = dotdot_offset + EXT4_DIR_REC_LEN(2);
1511 extra_offset = dotdot_size - EXT4_INLINE_DOTDOT_SIZE;
1512 extra_size = extra_offset + inline_size;
1513
1514 /*
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
1518 * dir to make sure.
1519 */
1520 if (!inode_eq_iversion(inode, file->f_version)) {
1521 for (i = 0; i < extra_size && i < offset;) {
1522 /*
1523 * "." is with offset 0 and
1524 * ".." is dotdot_offset.
1525 */
1526 if (!i) {
1527 i = dotdot_offset;
1528 continue;
1529 } else if (i == dotdot_offset) {
1530 i = dotdot_size;
1531 continue;
1532 }
1533 /* for other entry, the real offset in
1534 * the buf has to be tuned accordingly.
1535 */
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))
1546 break;
1547 i += ext4_rec_len_from_disk(de->rec_len,
1548 extra_size);
1549 }
1550 offset = i;
1551 ctx->pos = offset;
1552 file->f_version = inode_query_iversion(inode);
1553 }
1554
1555 while (ctx->pos < extra_size) {
1556 if (ctx->pos == 0) {
1557 if (!dir_emit(ctx, ".", 1, inode->i_ino, DT_DIR))
1558 goto out;
1559 ctx->pos = dotdot_offset;
1560 continue;
1561 }
1562
1563 if (ctx->pos == dotdot_offset) {
1564 if (!dir_emit(ctx, "..", 2, parent_ino, DT_DIR))
1565 goto out;
1566 ctx->pos = dotdot_size;
1567 continue;
1568 }
1569
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))
1574 goto out;
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)))
1579 goto out;
1580 }
1581 ctx->pos += ext4_rec_len_from_disk(de->rec_len, extra_size);
1582 }
1583 out:
1584 kfree(dir_buf);
1585 brelse(iloc.bh);
1586 return ret;
1587 }
1588
ext4_get_first_inline_block(struct inode * inode,struct ext4_dir_entry_2 ** parent_de,int * retval)1589 struct buffer_head *ext4_get_first_inline_block(struct inode *inode,
1590 struct ext4_dir_entry_2 **parent_de,
1591 int *retval)
1592 {
1593 struct ext4_iloc iloc;
1594
1595 *retval = ext4_get_inode_loc(inode, &iloc);
1596 if (*retval)
1597 return NULL;
1598
1599 *parent_de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1600
1601 return iloc.bh;
1602 }
1603
1604 /*
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.
1608 */
ext4_try_create_inline_dir(handle_t * handle,struct inode * parent,struct inode * inode)1609 int ext4_try_create_inline_dir(handle_t *handle, struct inode *parent,
1610 struct inode *inode)
1611 {
1612 int ret, inline_size = EXT4_MIN_INLINE_DATA_SIZE;
1613 struct ext4_iloc iloc;
1614 struct ext4_dir_entry_2 *de;
1615
1616 ret = ext4_get_inode_loc(inode, &iloc);
1617 if (ret)
1618 return ret;
1619
1620 ret = ext4_prepare_inline_data(handle, inode, inline_size);
1621 if (ret)
1622 goto out;
1623
1624 /*
1625 * For inline dir, we only save the inode information for the ".."
1626 * and create a fake dentry to cover the left space.
1627 */
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);
1631 de->inode = 0;
1632 de->rec_len = ext4_rec_len_to_disk(
1633 inline_size - EXT4_INLINE_DOTDOT_SIZE,
1634 inline_size);
1635 set_nlink(inode, 2);
1636 inode->i_size = EXT4_I(inode)->i_disksize = inline_size;
1637 out:
1638 brelse(iloc.bh);
1639 return ret;
1640 }
1641
ext4_find_inline_entry(struct inode * dir,struct ext4_filename * fname,struct ext4_dir_entry_2 ** res_dir,int * has_inline_data)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)
1646 {
1647 int ret;
1648 struct ext4_iloc iloc;
1649 void *inline_start;
1650 int inline_size;
1651
1652 if (ext4_get_inode_loc(dir, &iloc))
1653 return NULL;
1654
1655 down_read(&EXT4_I(dir)->xattr_sem);
1656 if (!ext4_has_inline_data(dir)) {
1657 *has_inline_data = 0;
1658 goto out;
1659 }
1660
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);
1666 if (ret == 1)
1667 goto out_find;
1668 if (ret < 0)
1669 goto out;
1670
1671 if (ext4_get_inline_size(dir) == EXT4_MIN_INLINE_DATA_SIZE)
1672 goto out;
1673
1674 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1675 inline_size = ext4_get_inline_size(dir) - EXT4_MIN_INLINE_DATA_SIZE;
1676
1677 ret = ext4_search_dir(iloc.bh, inline_start, inline_size,
1678 dir, fname, 0, res_dir);
1679 if (ret == 1)
1680 goto out_find;
1681
1682 out:
1683 brelse(iloc.bh);
1684 iloc.bh = NULL;
1685 out_find:
1686 up_read(&EXT4_I(dir)->xattr_sem);
1687 return iloc.bh;
1688 }
1689
ext4_delete_inline_entry(handle_t * handle,struct inode * dir,struct ext4_dir_entry_2 * de_del,struct buffer_head * bh,int * has_inline_data)1690 int ext4_delete_inline_entry(handle_t *handle,
1691 struct inode *dir,
1692 struct ext4_dir_entry_2 *de_del,
1693 struct buffer_head *bh,
1694 int *has_inline_data)
1695 {
1696 int err, inline_size, no_expand;
1697 struct ext4_iloc iloc;
1698 void *inline_start;
1699
1700 err = ext4_get_inode_loc(dir, &iloc);
1701 if (err)
1702 return err;
1703
1704 ext4_write_lock_xattr(dir, &no_expand);
1705 if (!ext4_has_inline_data(dir)) {
1706 *has_inline_data = 0;
1707 goto out;
1708 }
1709
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;
1716 } else {
1717 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1718 inline_size = ext4_get_inline_size(dir) -
1719 EXT4_MIN_INLINE_DATA_SIZE;
1720 }
1721
1722 BUFFER_TRACE(bh, "get_write_access");
1723 err = ext4_journal_get_write_access(handle, bh);
1724 if (err)
1725 goto out;
1726
1727 err = ext4_generic_delete_entry(dir, de_del, bh,
1728 inline_start, inline_size, 0);
1729 if (err)
1730 goto out;
1731
1732 ext4_show_inline_dir(dir, iloc.bh, inline_start, inline_size);
1733 out:
1734 ext4_write_unlock_xattr(dir, &no_expand);
1735 if (likely(err == 0))
1736 err = ext4_mark_inode_dirty(handle, dir);
1737 brelse(iloc.bh);
1738 if (err != -ENOENT)
1739 ext4_std_error(dir->i_sb, err);
1740 return err;
1741 }
1742
1743 /*
1744 * Get the inline dentry at offset.
1745 */
1746 static inline struct ext4_dir_entry_2 *
ext4_get_inline_entry(struct inode * inode,struct ext4_iloc * iloc,unsigned int offset,void ** inline_start,int * inline_size)1747 ext4_get_inline_entry(struct inode *inode,
1748 struct ext4_iloc *iloc,
1749 unsigned int offset,
1750 void **inline_start,
1751 int *inline_size)
1752 {
1753 void *inline_pos;
1754
1755 BUG_ON(offset > ext4_get_inline_size(inode));
1756
1757 if (offset < EXT4_MIN_INLINE_DATA_SIZE) {
1758 inline_pos = (void *)ext4_raw_inode(iloc)->i_block;
1759 *inline_size = EXT4_MIN_INLINE_DATA_SIZE;
1760 } else {
1761 inline_pos = ext4_get_inline_xattr_pos(inode, iloc);
1762 offset -= EXT4_MIN_INLINE_DATA_SIZE;
1763 *inline_size = ext4_get_inline_size(inode) -
1764 EXT4_MIN_INLINE_DATA_SIZE;
1765 }
1766
1767 if (inline_start)
1768 *inline_start = inline_pos;
1769 return (struct ext4_dir_entry_2 *)(inline_pos + offset);
1770 }
1771
empty_inline_dir(struct inode * dir,int * has_inline_data)1772 bool empty_inline_dir(struct inode *dir, int *has_inline_data)
1773 {
1774 int err, inline_size;
1775 struct ext4_iloc iloc;
1776 size_t inline_len;
1777 void *inline_pos;
1778 unsigned int offset;
1779 struct ext4_dir_entry_2 *de;
1780 bool ret = false;
1781
1782 err = ext4_get_inode_loc(dir, &iloc);
1783 if (err) {
1784 EXT4_ERROR_INODE_ERR(dir, -err,
1785 "error %d getting inode %lu block",
1786 err, dir->i_ino);
1787 return false;
1788 }
1789
1790 down_read(&EXT4_I(dir)->xattr_sem);
1791 if (!ext4_has_inline_data(dir)) {
1792 *has_inline_data = 0;
1793 ret = true;
1794 goto out;
1795 }
1796
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 `..'",
1801 dir->i_ino);
1802 goto out;
1803 }
1804
1805 inline_len = ext4_get_inline_size(dir);
1806 offset = EXT4_INLINE_DOTDOT_SIZE;
1807 while (offset < inline_len) {
1808 de = ext4_get_inline_entry(dir, &iloc, offset,
1809 &inline_pos, &inline_size);
1810 if (ext4_check_dir_entry(dir, NULL, de,
1811 iloc.bh, inline_pos,
1812 inline_size, offset)) {
1813 ext4_warning(dir->i_sb,
1814 "bad inline directory (dir #%lu) - "
1815 "inode %u, rec_len %u, name_len %d"
1816 "inline size %d",
1817 dir->i_ino, le32_to_cpu(de->inode),
1818 le16_to_cpu(de->rec_len), de->name_len,
1819 inline_size);
1820 goto out;
1821 }
1822 if (le32_to_cpu(de->inode)) {
1823 goto out;
1824 }
1825 offset += ext4_rec_len_from_disk(de->rec_len, inline_size);
1826 }
1827
1828 ret = true;
1829 out:
1830 up_read(&EXT4_I(dir)->xattr_sem);
1831 brelse(iloc.bh);
1832 return ret;
1833 }
1834
ext4_destroy_inline_data(handle_t * handle,struct inode * inode)1835 int ext4_destroy_inline_data(handle_t *handle, struct inode *inode)
1836 {
1837 int ret, no_expand;
1838
1839 ext4_write_lock_xattr(inode, &no_expand);
1840 ret = ext4_destroy_inline_data_nolock(handle, inode);
1841 ext4_write_unlock_xattr(inode, &no_expand);
1842
1843 return ret;
1844 }
1845
ext4_inline_data_iomap(struct inode * inode,struct iomap * iomap)1846 int ext4_inline_data_iomap(struct inode *inode, struct iomap *iomap)
1847 {
1848 __u64 addr;
1849 int error = -EAGAIN;
1850 struct ext4_iloc iloc;
1851
1852 down_read(&EXT4_I(inode)->xattr_sem);
1853 if (!ext4_has_inline_data(inode))
1854 goto out;
1855
1856 error = ext4_get_inode_loc(inode, &iloc);
1857 if (error)
1858 goto out;
1859
1860 addr = (__u64)iloc.bh->b_blocknr << inode->i_sb->s_blocksize_bits;
1861 addr += (char *)ext4_raw_inode(&iloc) - iloc.bh->b_data;
1862 addr += offsetof(struct ext4_inode, i_block);
1863
1864 brelse(iloc.bh);
1865
1866 iomap->addr = addr;
1867 iomap->offset = 0;
1868 iomap->length = min_t(loff_t, ext4_get_inline_size(inode),
1869 i_size_read(inode));
1870 iomap->type = IOMAP_INLINE;
1871 iomap->flags = 0;
1872
1873 out:
1874 up_read(&EXT4_I(inode)->xattr_sem);
1875 return error;
1876 }
1877
ext4_inline_data_truncate(struct inode * inode,int * has_inline)1878 int ext4_inline_data_truncate(struct inode *inode, int *has_inline)
1879 {
1880 handle_t *handle;
1881 int inline_size, value_len, needed_blocks, no_expand, err = 0;
1882 size_t i_size;
1883 void *value = NULL;
1884 struct ext4_xattr_ibody_find is = {
1885 .s = { .not_found = -ENODATA, },
1886 };
1887 struct ext4_xattr_info i = {
1888 .name_index = EXT4_XATTR_INDEX_SYSTEM,
1889 .name = EXT4_XATTR_SYSTEM_DATA,
1890 };
1891
1892
1893 needed_blocks = ext4_writepage_trans_blocks(inode);
1894 handle = ext4_journal_start(inode, EXT4_HT_INODE, needed_blocks);
1895 if (IS_ERR(handle))
1896 return PTR_ERR(handle);
1897
1898 ext4_write_lock_xattr(inode, &no_expand);
1899 if (!ext4_has_inline_data(inode)) {
1900 ext4_write_unlock_xattr(inode, &no_expand);
1901 *has_inline = 0;
1902 ext4_journal_stop(handle);
1903 return 0;
1904 }
1905
1906 if ((err = ext4_orphan_add(handle, inode)) != 0)
1907 goto out;
1908
1909 if ((err = ext4_get_inode_loc(inode, &is.iloc)) != 0)
1910 goto out;
1911
1912 down_write(&EXT4_I(inode)->i_data_sem);
1913 i_size = inode->i_size;
1914 inline_size = ext4_get_inline_size(inode);
1915 EXT4_I(inode)->i_disksize = i_size;
1916
1917 if (i_size < inline_size) {
1918 /* Clear the content in the xattr space. */
1919 if (inline_size > EXT4_MIN_INLINE_DATA_SIZE) {
1920 if ((err = ext4_xattr_ibody_find(inode, &i, &is)) != 0)
1921 goto out_error;
1922
1923 BUG_ON(is.s.not_found);
1924
1925 value_len = le32_to_cpu(is.s.here->e_value_size);
1926 value = kmalloc(value_len, GFP_NOFS);
1927 if (!value) {
1928 err = -ENOMEM;
1929 goto out_error;
1930 }
1931
1932 err = ext4_xattr_ibody_get(inode, i.name_index,
1933 i.name, value, value_len);
1934 if (err <= 0)
1935 goto out_error;
1936
1937 i.value = value;
1938 i.value_len = i_size > EXT4_MIN_INLINE_DATA_SIZE ?
1939 i_size - EXT4_MIN_INLINE_DATA_SIZE : 0;
1940 err = ext4_xattr_ibody_inline_set(handle, inode,
1941 &i, &is);
1942 if (err)
1943 goto out_error;
1944 }
1945
1946 /* Clear the content within i_blocks. */
1947 if (i_size < EXT4_MIN_INLINE_DATA_SIZE) {
1948 void *p = (void *) ext4_raw_inode(&is.iloc)->i_block;
1949 memset(p + i_size, 0,
1950 EXT4_MIN_INLINE_DATA_SIZE - i_size);
1951 }
1952
1953 EXT4_I(inode)->i_inline_size = i_size <
1954 EXT4_MIN_INLINE_DATA_SIZE ?
1955 EXT4_MIN_INLINE_DATA_SIZE : i_size;
1956 }
1957
1958 out_error:
1959 up_write(&EXT4_I(inode)->i_data_sem);
1960 out:
1961 brelse(is.iloc.bh);
1962 ext4_write_unlock_xattr(inode, &no_expand);
1963 kfree(value);
1964 if (inode->i_nlink)
1965 ext4_orphan_del(handle, inode);
1966
1967 if (err == 0) {
1968 inode->i_mtime = inode->i_ctime = current_time(inode);
1969 err = ext4_mark_inode_dirty(handle, inode);
1970 if (IS_SYNC(inode))
1971 ext4_handle_sync(handle);
1972 }
1973 ext4_journal_stop(handle);
1974 return err;
1975 }
1976
ext4_convert_inline_data(struct inode * inode)1977 int ext4_convert_inline_data(struct inode *inode)
1978 {
1979 int error, needed_blocks, no_expand;
1980 handle_t *handle;
1981 struct ext4_iloc iloc;
1982
1983 if (!ext4_has_inline_data(inode)) {
1984 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1985 return 0;
1986 } else if (!ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1987 /*
1988 * Inode has inline data but EXT4_STATE_MAY_INLINE_DATA is
1989 * cleared. This means we are in the middle of moving of
1990 * inline data to delay allocated block. Just force writeout
1991 * here to finish conversion.
1992 */
1993 error = filemap_flush(inode->i_mapping);
1994 if (error)
1995 return error;
1996 if (!ext4_has_inline_data(inode))
1997 return 0;
1998 }
1999
2000 needed_blocks = ext4_writepage_trans_blocks(inode);
2001
2002 iloc.bh = NULL;
2003 error = ext4_get_inode_loc(inode, &iloc);
2004 if (error)
2005 return error;
2006
2007 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
2008 if (IS_ERR(handle)) {
2009 error = PTR_ERR(handle);
2010 goto out_free;
2011 }
2012
2013 ext4_write_lock_xattr(inode, &no_expand);
2014 if (ext4_has_inline_data(inode))
2015 error = ext4_convert_inline_data_nolock(handle, inode, &iloc);
2016 ext4_write_unlock_xattr(inode, &no_expand);
2017 ext4_journal_stop(handle);
2018 out_free:
2019 brelse(iloc.bh);
2020 return error;
2021 }
2022