blob: 378aadf5e6db6bc3c9a92fd2e8d9561af382328a [file] [log] [blame]
Tao Ma67cf5b02012-12-10 14:04:46 -05001/*
2 * Copyright (c) 2012 Taobao.
3 * Written by Tao Ma <boyu.mt@taobao.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2.1 of the GNU Lesser General Public License
7 * as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14#include "ext4_jbd2.h"
15#include "ext4.h"
16#include "xattr.h"
Tao Maf19d5872012-12-10 14:05:51 -050017#include "truncate.h"
Tao Ma94191982012-12-10 14:06:02 -050018#include <linux/fiemap.h>
Tao Ma67cf5b02012-12-10 14:04:46 -050019
20#define EXT4_XATTR_SYSTEM_DATA "data"
21#define EXT4_MIN_INLINE_DATA_SIZE ((sizeof(__le32) * EXT4_N_BLOCKS))
Tao Ma8af0f082013-04-19 17:53:09 -040022#define EXT4_INLINE_DOTDOT_OFFSET 2
23#define EXT4_INLINE_DOTDOT_SIZE 4
Tao Ma67cf5b02012-12-10 14:04:46 -050024
Stephen Hemmingerc1978552014-05-12 10:50:23 -040025static int ext4_get_inline_size(struct inode *inode)
Tao Ma67cf5b02012-12-10 14:04:46 -050026{
27 if (EXT4_I(inode)->i_inline_off)
28 return EXT4_I(inode)->i_inline_size;
29
30 return 0;
31}
32
33static int get_max_inline_xattr_value_size(struct inode *inode,
34 struct ext4_iloc *iloc)
35{
36 struct ext4_xattr_ibody_header *header;
37 struct ext4_xattr_entry *entry;
38 struct ext4_inode *raw_inode;
39 int free, min_offs;
40
41 min_offs = EXT4_SB(inode->i_sb)->s_inode_size -
42 EXT4_GOOD_OLD_INODE_SIZE -
43 EXT4_I(inode)->i_extra_isize -
44 sizeof(struct ext4_xattr_ibody_header);
45
46 /*
47 * We need to subtract another sizeof(__u32) since an in-inode xattr
48 * needs an empty 4 bytes to indicate the gap between the xattr entry
49 * and the name/value pair.
50 */
51 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
52 return EXT4_XATTR_SIZE(min_offs -
53 EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA)) -
54 EXT4_XATTR_ROUND - sizeof(__u32));
55
56 raw_inode = ext4_raw_inode(iloc);
57 header = IHDR(inode, raw_inode);
58 entry = IFIRST(header);
59
60 /* Compute min_offs. */
61 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
62 if (!entry->e_value_block && entry->e_value_size) {
63 size_t offs = le16_to_cpu(entry->e_value_offs);
64 if (offs < min_offs)
65 min_offs = offs;
66 }
67 }
68 free = min_offs -
69 ((void *)entry - (void *)IFIRST(header)) - sizeof(__u32);
70
71 if (EXT4_I(inode)->i_inline_off) {
72 entry = (struct ext4_xattr_entry *)
73 ((void *)raw_inode + EXT4_I(inode)->i_inline_off);
74
boxi liuc4932db2013-07-01 08:12:37 -040075 free += EXT4_XATTR_SIZE(le32_to_cpu(entry->e_value_size));
Tao Ma67cf5b02012-12-10 14:04:46 -050076 goto out;
77 }
78
79 free -= EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA));
80
81 if (free > EXT4_XATTR_ROUND)
82 free = EXT4_XATTR_SIZE(free - EXT4_XATTR_ROUND);
83 else
84 free = 0;
85
86out:
87 return free;
88}
89
90/*
91 * Get the maximum size we now can store in an inode.
92 * If we can't find the space for a xattr entry, don't use the space
93 * of the extents since we have no space to indicate the inline data.
94 */
95int ext4_get_max_inline_size(struct inode *inode)
96{
97 int error, max_inline_size;
98 struct ext4_iloc iloc;
99
100 if (EXT4_I(inode)->i_extra_isize == 0)
101 return 0;
102
103 error = ext4_get_inode_loc(inode, &iloc);
104 if (error) {
105 ext4_error_inode(inode, __func__, __LINE__, 0,
106 "can't get inode location %lu",
107 inode->i_ino);
108 return 0;
109 }
110
111 down_read(&EXT4_I(inode)->xattr_sem);
112 max_inline_size = get_max_inline_xattr_value_size(inode, &iloc);
113 up_read(&EXT4_I(inode)->xattr_sem);
114
115 brelse(iloc.bh);
116
117 if (!max_inline_size)
118 return 0;
119
120 return max_inline_size + EXT4_MIN_INLINE_DATA_SIZE;
121}
122
Tao Ma67cf5b02012-12-10 14:04:46 -0500123/*
124 * this function does not take xattr_sem, which is OK because it is
125 * currently only used in a code path coming form ext4_iget, before
126 * the new inode has been unlocked
127 */
128int ext4_find_inline_data_nolock(struct inode *inode)
129{
130 struct ext4_xattr_ibody_find is = {
131 .s = { .not_found = -ENODATA, },
132 };
133 struct ext4_xattr_info i = {
134 .name_index = EXT4_XATTR_INDEX_SYSTEM,
135 .name = EXT4_XATTR_SYSTEM_DATA,
136 };
137 int error;
138
139 if (EXT4_I(inode)->i_extra_isize == 0)
140 return 0;
141
142 error = ext4_get_inode_loc(inode, &is.iloc);
143 if (error)
144 return error;
145
146 error = ext4_xattr_ibody_find(inode, &i, &is);
147 if (error)
148 goto out;
149
150 if (!is.s.not_found) {
151 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
152 (void *)ext4_raw_inode(&is.iloc));
153 EXT4_I(inode)->i_inline_size = EXT4_MIN_INLINE_DATA_SIZE +
154 le32_to_cpu(is.s.here->e_value_size);
155 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
156 }
157out:
158 brelse(is.iloc.bh);
159 return error;
160}
161
162static int ext4_read_inline_data(struct inode *inode, void *buffer,
163 unsigned int len,
164 struct ext4_iloc *iloc)
165{
166 struct ext4_xattr_entry *entry;
167 struct ext4_xattr_ibody_header *header;
168 int cp_len = 0;
169 struct ext4_inode *raw_inode;
170
171 if (!len)
172 return 0;
173
174 BUG_ON(len > EXT4_I(inode)->i_inline_size);
175
176 cp_len = len < EXT4_MIN_INLINE_DATA_SIZE ?
177 len : EXT4_MIN_INLINE_DATA_SIZE;
178
179 raw_inode = ext4_raw_inode(iloc);
180 memcpy(buffer, (void *)(raw_inode->i_block), cp_len);
181
182 len -= cp_len;
183 buffer += cp_len;
184
185 if (!len)
186 goto out;
187
188 header = IHDR(inode, raw_inode);
189 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
190 EXT4_I(inode)->i_inline_off);
191 len = min_t(unsigned int, len,
192 (unsigned int)le32_to_cpu(entry->e_value_size));
193
194 memcpy(buffer,
195 (void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs), len);
196 cp_len += len;
197
198out:
199 return cp_len;
200}
201
202/*
203 * write the buffer to the inline inode.
204 * If 'create' is set, we don't need to do the extra copy in the xattr
Tao Ma0d812f72012-12-10 14:06:02 -0500205 * value since it is already handled by ext4_xattr_ibody_inline_set.
206 * That saves us one memcpy.
Tao Ma67cf5b02012-12-10 14:04:46 -0500207 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -0400208static void ext4_write_inline_data(struct inode *inode, struct ext4_iloc *iloc,
209 void *buffer, loff_t pos, unsigned int len)
Tao Ma67cf5b02012-12-10 14:04:46 -0500210{
211 struct ext4_xattr_entry *entry;
212 struct ext4_xattr_ibody_header *header;
213 struct ext4_inode *raw_inode;
214 int cp_len = 0;
215
216 BUG_ON(!EXT4_I(inode)->i_inline_off);
217 BUG_ON(pos + len > EXT4_I(inode)->i_inline_size);
218
219 raw_inode = ext4_raw_inode(iloc);
220 buffer += pos;
221
222 if (pos < EXT4_MIN_INLINE_DATA_SIZE) {
223 cp_len = pos + len > EXT4_MIN_INLINE_DATA_SIZE ?
224 EXT4_MIN_INLINE_DATA_SIZE - pos : len;
225 memcpy((void *)raw_inode->i_block + pos, buffer, cp_len);
226
227 len -= cp_len;
228 buffer += cp_len;
229 pos += cp_len;
230 }
231
232 if (!len)
233 return;
234
235 pos -= EXT4_MIN_INLINE_DATA_SIZE;
236 header = IHDR(inode, raw_inode);
237 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
238 EXT4_I(inode)->i_inline_off);
239
240 memcpy((void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs) + pos,
241 buffer, len);
242}
243
244static int ext4_create_inline_data(handle_t *handle,
245 struct inode *inode, unsigned len)
246{
247 int error;
248 void *value = NULL;
249 struct ext4_xattr_ibody_find is = {
250 .s = { .not_found = -ENODATA, },
251 };
252 struct ext4_xattr_info i = {
253 .name_index = EXT4_XATTR_INDEX_SYSTEM,
254 .name = EXT4_XATTR_SYSTEM_DATA,
255 };
256
257 error = ext4_get_inode_loc(inode, &is.iloc);
258 if (error)
259 return error;
260
liang xie5d601252014-05-12 22:06:43 -0400261 BUFFER_TRACE(is.iloc.bh, "get_write_access");
Tao Ma67cf5b02012-12-10 14:04:46 -0500262 error = ext4_journal_get_write_access(handle, is.iloc.bh);
263 if (error)
264 goto out;
265
266 if (len > EXT4_MIN_INLINE_DATA_SIZE) {
Theodore Ts'obd9926e2012-12-11 03:31:49 -0500267 value = EXT4_ZERO_XATTR_VALUE;
Tao Ma67cf5b02012-12-10 14:04:46 -0500268 len -= EXT4_MIN_INLINE_DATA_SIZE;
269 } else {
270 value = "";
271 len = 0;
272 }
273
274 /* Insert the the xttr entry. */
275 i.value = value;
276 i.value_len = len;
277
278 error = ext4_xattr_ibody_find(inode, &i, &is);
279 if (error)
280 goto out;
281
282 BUG_ON(!is.s.not_found);
283
Tao Ma0d812f72012-12-10 14:06:02 -0500284 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
Tao Ma67cf5b02012-12-10 14:04:46 -0500285 if (error) {
286 if (error == -ENOSPC)
287 ext4_clear_inode_state(inode,
288 EXT4_STATE_MAY_INLINE_DATA);
289 goto out;
290 }
291
292 memset((void *)ext4_raw_inode(&is.iloc)->i_block,
293 0, EXT4_MIN_INLINE_DATA_SIZE);
294
295 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
296 (void *)ext4_raw_inode(&is.iloc));
297 EXT4_I(inode)->i_inline_size = len + EXT4_MIN_INLINE_DATA_SIZE;
298 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
299 ext4_set_inode_flag(inode, EXT4_INODE_INLINE_DATA);
300 get_bh(is.iloc.bh);
301 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
302
303out:
304 brelse(is.iloc.bh);
305 return error;
306}
307
308static int ext4_update_inline_data(handle_t *handle, struct inode *inode,
309 unsigned int len)
310{
311 int error;
312 void *value = NULL;
313 struct ext4_xattr_ibody_find is = {
314 .s = { .not_found = -ENODATA, },
315 };
316 struct ext4_xattr_info i = {
317 .name_index = EXT4_XATTR_INDEX_SYSTEM,
318 .name = EXT4_XATTR_SYSTEM_DATA,
319 };
320
321 /* If the old space is ok, write the data directly. */
322 if (len <= EXT4_I(inode)->i_inline_size)
323 return 0;
324
325 error = ext4_get_inode_loc(inode, &is.iloc);
326 if (error)
327 return error;
328
329 error = ext4_xattr_ibody_find(inode, &i, &is);
330 if (error)
331 goto out;
332
333 BUG_ON(is.s.not_found);
334
335 len -= EXT4_MIN_INLINE_DATA_SIZE;
336 value = kzalloc(len, GFP_NOFS);
337 if (!value)
338 goto out;
339
340 error = ext4_xattr_ibody_get(inode, i.name_index, i.name,
341 value, len);
342 if (error == -ENODATA)
343 goto out;
344
liang xie5d601252014-05-12 22:06:43 -0400345 BUFFER_TRACE(is.iloc.bh, "get_write_access");
Tao Ma67cf5b02012-12-10 14:04:46 -0500346 error = ext4_journal_get_write_access(handle, is.iloc.bh);
347 if (error)
348 goto out;
349
350 /* Update the xttr entry. */
351 i.value = value;
352 i.value_len = len;
353
Tao Ma0d812f72012-12-10 14:06:02 -0500354 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
Tao Ma67cf5b02012-12-10 14:04:46 -0500355 if (error)
356 goto out;
357
358 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
359 (void *)ext4_raw_inode(&is.iloc));
360 EXT4_I(inode)->i_inline_size = EXT4_MIN_INLINE_DATA_SIZE +
361 le32_to_cpu(is.s.here->e_value_size);
362 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
363 get_bh(is.iloc.bh);
364 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
365
366out:
367 kfree(value);
368 brelse(is.iloc.bh);
369 return error;
370}
371
Stephen Hemmingerc1978552014-05-12 10:50:23 -0400372static int ext4_prepare_inline_data(handle_t *handle, struct inode *inode,
373 unsigned int len)
Tao Ma67cf5b02012-12-10 14:04:46 -0500374{
375 int ret, size;
376 struct ext4_inode_info *ei = EXT4_I(inode);
377
378 if (!ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA))
379 return -ENOSPC;
380
381 size = ext4_get_max_inline_size(inode);
382 if (size < len)
383 return -ENOSPC;
384
385 down_write(&EXT4_I(inode)->xattr_sem);
386
387 if (ei->i_inline_off)
388 ret = ext4_update_inline_data(handle, inode, len);
389 else
390 ret = ext4_create_inline_data(handle, inode, len);
391
392 up_write(&EXT4_I(inode)->xattr_sem);
393
394 return ret;
395}
396
397static int ext4_destroy_inline_data_nolock(handle_t *handle,
398 struct inode *inode)
399{
400 struct ext4_inode_info *ei = EXT4_I(inode);
401 struct ext4_xattr_ibody_find is = {
402 .s = { .not_found = 0, },
403 };
404 struct ext4_xattr_info i = {
405 .name_index = EXT4_XATTR_INDEX_SYSTEM,
406 .name = EXT4_XATTR_SYSTEM_DATA,
407 .value = NULL,
408 .value_len = 0,
409 };
410 int error;
411
412 if (!ei->i_inline_off)
413 return 0;
414
415 error = ext4_get_inode_loc(inode, &is.iloc);
416 if (error)
417 return error;
418
419 error = ext4_xattr_ibody_find(inode, &i, &is);
420 if (error)
421 goto out;
422
liang xie5d601252014-05-12 22:06:43 -0400423 BUFFER_TRACE(is.iloc.bh, "get_write_access");
Tao Ma67cf5b02012-12-10 14:04:46 -0500424 error = ext4_journal_get_write_access(handle, is.iloc.bh);
425 if (error)
426 goto out;
427
Tao Ma0d812f72012-12-10 14:06:02 -0500428 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
Tao Ma67cf5b02012-12-10 14:04:46 -0500429 if (error)
430 goto out;
431
432 memset((void *)ext4_raw_inode(&is.iloc)->i_block,
433 0, EXT4_MIN_INLINE_DATA_SIZE);
434
435 if (EXT4_HAS_INCOMPAT_FEATURE(inode->i_sb,
436 EXT4_FEATURE_INCOMPAT_EXTENTS)) {
437 if (S_ISDIR(inode->i_mode) ||
438 S_ISREG(inode->i_mode) || S_ISLNK(inode->i_mode)) {
439 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
440 ext4_ext_tree_init(handle, inode);
441 }
442 }
443 ext4_clear_inode_flag(inode, EXT4_INODE_INLINE_DATA);
444
445 get_bh(is.iloc.bh);
446 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
447
448 EXT4_I(inode)->i_inline_off = 0;
449 EXT4_I(inode)->i_inline_size = 0;
450 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
451out:
452 brelse(is.iloc.bh);
453 if (error == -ENODATA)
454 error = 0;
455 return error;
456}
457
Tao Ma46c7f252012-12-10 14:04:52 -0500458static int ext4_read_inline_page(struct inode *inode, struct page *page)
459{
460 void *kaddr;
461 int ret = 0;
462 size_t len;
463 struct ext4_iloc iloc;
464
465 BUG_ON(!PageLocked(page));
466 BUG_ON(!ext4_has_inline_data(inode));
467 BUG_ON(page->index);
468
469 if (!EXT4_I(inode)->i_inline_off) {
470 ext4_warning(inode->i_sb, "inode %lu doesn't have inline data.",
471 inode->i_ino);
472 goto out;
473 }
474
475 ret = ext4_get_inode_loc(inode, &iloc);
476 if (ret)
477 goto out;
478
479 len = min_t(size_t, ext4_get_inline_size(inode), i_size_read(inode));
480 kaddr = kmap_atomic(page);
481 ret = ext4_read_inline_data(inode, kaddr, len, &iloc);
482 flush_dcache_page(page);
483 kunmap_atomic(kaddr);
484 zero_user_segment(page, len, PAGE_CACHE_SIZE);
485 SetPageUptodate(page);
486 brelse(iloc.bh);
487
488out:
489 return ret;
490}
491
492int ext4_readpage_inline(struct inode *inode, struct page *page)
493{
494 int ret = 0;
495
496 down_read(&EXT4_I(inode)->xattr_sem);
497 if (!ext4_has_inline_data(inode)) {
498 up_read(&EXT4_I(inode)->xattr_sem);
499 return -EAGAIN;
500 }
501
502 /*
503 * Current inline data can only exist in the 1st page,
504 * So for all the other pages, just set them uptodate.
505 */
506 if (!page->index)
507 ret = ext4_read_inline_page(inode, page);
508 else if (!PageUptodate(page)) {
509 zero_user_segment(page, 0, PAGE_CACHE_SIZE);
510 SetPageUptodate(page);
511 }
512
513 up_read(&EXT4_I(inode)->xattr_sem);
514
515 unlock_page(page);
516 return ret >= 0 ? 0 : ret;
517}
518
Tao Maf19d5872012-12-10 14:05:51 -0500519static int ext4_convert_inline_data_to_extent(struct address_space *mapping,
520 struct inode *inode,
521 unsigned flags)
522{
523 int ret, needed_blocks;
524 handle_t *handle = NULL;
525 int retries = 0, sem_held = 0;
526 struct page *page = NULL;
527 unsigned from, to;
528 struct ext4_iloc iloc;
529
530 if (!ext4_has_inline_data(inode)) {
531 /*
532 * clear the flag so that no new write
533 * will trap here again.
534 */
535 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
536 return 0;
537 }
538
539 needed_blocks = ext4_writepage_trans_blocks(inode);
540
541 ret = ext4_get_inode_loc(inode, &iloc);
542 if (ret)
543 return ret;
544
545retry:
Theodore Ts'o9924a922013-02-08 21:59:22 -0500546 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Tao Maf19d5872012-12-10 14:05:51 -0500547 if (IS_ERR(handle)) {
548 ret = PTR_ERR(handle);
549 handle = NULL;
550 goto out;
551 }
552
553 /* We cannot recurse into the filesystem as the transaction is already
554 * started */
555 flags |= AOP_FLAG_NOFS;
556
557 page = grab_cache_page_write_begin(mapping, 0, flags);
558 if (!page) {
559 ret = -ENOMEM;
560 goto out;
561 }
562
563 down_write(&EXT4_I(inode)->xattr_sem);
564 sem_held = 1;
565 /* If some one has already done this for us, just exit. */
566 if (!ext4_has_inline_data(inode)) {
567 ret = 0;
568 goto out;
569 }
570
571 from = 0;
572 to = ext4_get_inline_size(inode);
573 if (!PageUptodate(page)) {
574 ret = ext4_read_inline_page(inode, page);
575 if (ret < 0)
576 goto out;
577 }
578
579 ret = ext4_destroy_inline_data_nolock(handle, inode);
580 if (ret)
581 goto out;
582
583 if (ext4_should_dioread_nolock(inode))
584 ret = __block_write_begin(page, from, to, ext4_get_block_write);
585 else
586 ret = __block_write_begin(page, from, to, ext4_get_block);
587
588 if (!ret && ext4_should_journal_data(inode)) {
589 ret = ext4_walk_page_buffers(handle, page_buffers(page),
590 from, to, NULL,
591 do_journal_get_write_access);
592 }
593
594 if (ret) {
595 unlock_page(page);
596 page_cache_release(page);
Darrick J. Wong684de5742014-09-11 11:45:12 -0400597 page = NULL;
Tao Maf19d5872012-12-10 14:05:51 -0500598 ext4_orphan_add(handle, inode);
599 up_write(&EXT4_I(inode)->xattr_sem);
600 sem_held = 0;
601 ext4_journal_stop(handle);
602 handle = NULL;
603 ext4_truncate_failed_write(inode);
604 /*
605 * If truncate failed early the inode might
606 * still be on the orphan list; we need to
607 * make sure the inode is removed from the
608 * orphan list in that case.
609 */
610 if (inode->i_nlink)
611 ext4_orphan_del(NULL, inode);
612 }
613
614 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
615 goto retry;
616
Darrick J. Wong684de5742014-09-11 11:45:12 -0400617 if (page)
618 block_commit_write(page, from, to);
Tao Maf19d5872012-12-10 14:05:51 -0500619out:
620 if (page) {
621 unlock_page(page);
622 page_cache_release(page);
623 }
624 if (sem_held)
625 up_write(&EXT4_I(inode)->xattr_sem);
626 if (handle)
627 ext4_journal_stop(handle);
628 brelse(iloc.bh);
629 return ret;
630}
631
632/*
633 * Try to write data in the inode.
634 * If the inode has inline data, check whether the new write can be
635 * in the inode also. If not, create the page the handle, move the data
636 * to the page make it update and let the later codes create extent for it.
637 */
638int ext4_try_to_write_inline_data(struct address_space *mapping,
639 struct inode *inode,
640 loff_t pos, unsigned len,
641 unsigned flags,
642 struct page **pagep)
643{
644 int ret;
645 handle_t *handle;
646 struct page *page;
647 struct ext4_iloc iloc;
648
649 if (pos + len > ext4_get_max_inline_size(inode))
650 goto convert;
651
652 ret = ext4_get_inode_loc(inode, &iloc);
653 if (ret)
654 return ret;
655
656 /*
657 * The possible write could happen in the inode,
658 * so try to reserve the space in inode first.
659 */
Theodore Ts'o9924a922013-02-08 21:59:22 -0500660 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Tao Maf19d5872012-12-10 14:05:51 -0500661 if (IS_ERR(handle)) {
662 ret = PTR_ERR(handle);
663 handle = NULL;
664 goto out;
665 }
666
667 ret = ext4_prepare_inline_data(handle, inode, pos + len);
668 if (ret && ret != -ENOSPC)
669 goto out;
670
671 /* We don't have space in inline inode, so convert it to extent. */
672 if (ret == -ENOSPC) {
673 ext4_journal_stop(handle);
674 brelse(iloc.bh);
675 goto convert;
676 }
677
678 flags |= AOP_FLAG_NOFS;
679
680 page = grab_cache_page_write_begin(mapping, 0, flags);
681 if (!page) {
682 ret = -ENOMEM;
683 goto out;
684 }
685
686 *pagep = page;
687 down_read(&EXT4_I(inode)->xattr_sem);
688 if (!ext4_has_inline_data(inode)) {
689 ret = 0;
690 unlock_page(page);
691 page_cache_release(page);
692 goto out_up_read;
693 }
694
695 if (!PageUptodate(page)) {
696 ret = ext4_read_inline_page(inode, page);
697 if (ret < 0)
698 goto out_up_read;
699 }
700
701 ret = 1;
702 handle = NULL;
703out_up_read:
704 up_read(&EXT4_I(inode)->xattr_sem);
705out:
706 if (handle)
707 ext4_journal_stop(handle);
708 brelse(iloc.bh);
709 return ret;
710convert:
711 return ext4_convert_inline_data_to_extent(mapping,
712 inode, flags);
713}
714
715int ext4_write_inline_data_end(struct inode *inode, loff_t pos, unsigned len,
716 unsigned copied, struct page *page)
717{
718 int ret;
719 void *kaddr;
720 struct ext4_iloc iloc;
721
722 if (unlikely(copied < len)) {
723 if (!PageUptodate(page)) {
724 copied = 0;
725 goto out;
726 }
727 }
728
729 ret = ext4_get_inode_loc(inode, &iloc);
730 if (ret) {
731 ext4_std_error(inode->i_sb, ret);
732 copied = 0;
733 goto out;
734 }
735
736 down_write(&EXT4_I(inode)->xattr_sem);
737 BUG_ON(!ext4_has_inline_data(inode));
738
739 kaddr = kmap_atomic(page);
740 ext4_write_inline_data(inode, &iloc, kaddr, pos, len);
741 kunmap_atomic(kaddr);
742 SetPageUptodate(page);
743 /* clear page dirty so that writepages wouldn't work for us. */
744 ClearPageDirty(page);
745
746 up_write(&EXT4_I(inode)->xattr_sem);
747 brelse(iloc.bh);
748out:
749 return copied;
750}
751
Tao Ma3fdcfb62012-12-10 14:05:57 -0500752struct buffer_head *
753ext4_journalled_write_inline_data(struct inode *inode,
754 unsigned len,
755 struct page *page)
756{
757 int ret;
758 void *kaddr;
759 struct ext4_iloc iloc;
760
761 ret = ext4_get_inode_loc(inode, &iloc);
762 if (ret) {
763 ext4_std_error(inode->i_sb, ret);
764 return NULL;
765 }
766
767 down_write(&EXT4_I(inode)->xattr_sem);
768 kaddr = kmap_atomic(page);
769 ext4_write_inline_data(inode, &iloc, kaddr, 0, len);
770 kunmap_atomic(kaddr);
771 up_write(&EXT4_I(inode)->xattr_sem);
772
773 return iloc.bh;
774}
775
Tao Ma9c3569b2012-12-10 14:05:57 -0500776/*
777 * Try to make the page cache and handle ready for the inline data case.
778 * We can call this function in 2 cases:
779 * 1. The inode is created and the first write exceeds inline size. We can
780 * clear the inode state safely.
781 * 2. The inode has inline data, then we need to read the data, make it
782 * update and dirty so that ext4_da_writepages can handle it. We don't
783 * need to start the journal since the file's metatdata isn't changed now.
784 */
785static int ext4_da_convert_inline_data_to_extent(struct address_space *mapping,
786 struct inode *inode,
787 unsigned flags,
788 void **fsdata)
789{
790 int ret = 0, inline_size;
791 struct page *page;
792
793 page = grab_cache_page_write_begin(mapping, 0, flags);
794 if (!page)
795 return -ENOMEM;
796
797 down_read(&EXT4_I(inode)->xattr_sem);
798 if (!ext4_has_inline_data(inode)) {
799 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
800 goto out;
801 }
802
803 inline_size = ext4_get_inline_size(inode);
804
805 if (!PageUptodate(page)) {
806 ret = ext4_read_inline_page(inode, page);
807 if (ret < 0)
808 goto out;
809 }
810
811 ret = __block_write_begin(page, 0, inline_size,
812 ext4_da_get_block_prep);
813 if (ret) {
814 ext4_truncate_failed_write(inode);
815 goto out;
816 }
817
818 SetPageDirty(page);
819 SetPageUptodate(page);
820 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
821 *fsdata = (void *)CONVERT_INLINE_DATA;
822
823out:
824 up_read(&EXT4_I(inode)->xattr_sem);
825 if (page) {
826 unlock_page(page);
827 page_cache_release(page);
828 }
829 return ret;
830}
831
832/*
833 * Prepare the write for the inline data.
834 * If the the data can be written into the inode, we just read
835 * the page and make it uptodate, and start the journal.
836 * Otherwise read the page, makes it dirty so that it can be
837 * handle in writepages(the i_disksize update is left to the
838 * normal ext4_da_write_end).
839 */
840int ext4_da_write_inline_data_begin(struct address_space *mapping,
841 struct inode *inode,
842 loff_t pos, unsigned len,
843 unsigned flags,
844 struct page **pagep,
845 void **fsdata)
846{
847 int ret, inline_size;
848 handle_t *handle;
849 struct page *page;
850 struct ext4_iloc iloc;
Jan Karabc0ca9df2014-01-06 14:02:23 -0500851 int retries;
Tao Ma9c3569b2012-12-10 14:05:57 -0500852
853 ret = ext4_get_inode_loc(inode, &iloc);
854 if (ret)
855 return ret;
856
Jan Karabc0ca9df2014-01-06 14:02:23 -0500857retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -0500858 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Tao Ma9c3569b2012-12-10 14:05:57 -0500859 if (IS_ERR(handle)) {
860 ret = PTR_ERR(handle);
Tao Ma9c3569b2012-12-10 14:05:57 -0500861 goto out;
862 }
863
864 inline_size = ext4_get_max_inline_size(inode);
865
866 ret = -ENOSPC;
867 if (inline_size >= pos + len) {
868 ret = ext4_prepare_inline_data(handle, inode, pos + len);
869 if (ret && ret != -ENOSPC)
Jan Kara52e44772014-01-06 14:03:23 -0500870 goto out_journal;
Tao Ma9c3569b2012-12-10 14:05:57 -0500871 }
872
873 if (ret == -ENOSPC) {
874 ret = ext4_da_convert_inline_data_to_extent(mapping,
875 inode,
876 flags,
877 fsdata);
Jan Karabc0ca9df2014-01-06 14:02:23 -0500878 ext4_journal_stop(handle);
Jan Karabc0ca9df2014-01-06 14:02:23 -0500879 if (ret == -ENOSPC &&
880 ext4_should_retry_alloc(inode->i_sb, &retries))
881 goto retry_journal;
Tao Ma9c3569b2012-12-10 14:05:57 -0500882 goto out;
883 }
884
885 /*
886 * We cannot recurse into the filesystem as the transaction
887 * is already started.
888 */
889 flags |= AOP_FLAG_NOFS;
890
891 page = grab_cache_page_write_begin(mapping, 0, flags);
892 if (!page) {
893 ret = -ENOMEM;
Jan Kara52e44772014-01-06 14:03:23 -0500894 goto out_journal;
Tao Ma9c3569b2012-12-10 14:05:57 -0500895 }
896
897 down_read(&EXT4_I(inode)->xattr_sem);
898 if (!ext4_has_inline_data(inode)) {
899 ret = 0;
900 goto out_release_page;
901 }
902
903 if (!PageUptodate(page)) {
904 ret = ext4_read_inline_page(inode, page);
905 if (ret < 0)
906 goto out_release_page;
907 }
908
909 up_read(&EXT4_I(inode)->xattr_sem);
910 *pagep = page;
Tao Ma9c3569b2012-12-10 14:05:57 -0500911 brelse(iloc.bh);
912 return 1;
913out_release_page:
914 up_read(&EXT4_I(inode)->xattr_sem);
915 unlock_page(page);
916 page_cache_release(page);
Jan Kara52e44772014-01-06 14:03:23 -0500917out_journal:
918 ext4_journal_stop(handle);
Tao Ma9c3569b2012-12-10 14:05:57 -0500919out:
Tao Ma9c3569b2012-12-10 14:05:57 -0500920 brelse(iloc.bh);
921 return ret;
922}
923
924int ext4_da_write_inline_data_end(struct inode *inode, loff_t pos,
925 unsigned len, unsigned copied,
926 struct page *page)
927{
928 int i_size_changed = 0;
929
930 copied = ext4_write_inline_data_end(inode, pos, len, copied, page);
931
932 /*
933 * No need to use i_size_read() here, the i_size
934 * cannot change under us because we hold i_mutex.
935 *
936 * But it's important to update i_size while still holding page lock:
937 * page writeout could otherwise come in and zero beyond i_size.
938 */
939 if (pos+copied > inode->i_size) {
940 i_size_write(inode, pos+copied);
941 i_size_changed = 1;
942 }
943 unlock_page(page);
944 page_cache_release(page);
945
946 /*
947 * Don't mark the inode dirty under page lock. First, it unnecessarily
948 * makes the holding time of page lock longer. Second, it forces lock
949 * ordering of page lock and transaction start for journaling
950 * filesystems.
951 */
952 if (i_size_changed)
953 mark_inode_dirty(inode);
954
955 return copied;
956}
Tao Maf19d5872012-12-10 14:05:51 -0500957
Tao Ma3c47d542012-12-10 14:05:59 -0500958#ifdef INLINE_DIR_DEBUG
959void ext4_show_inline_dir(struct inode *dir, struct buffer_head *bh,
960 void *inline_start, int inline_size)
961{
962 int offset;
963 unsigned short de_len;
964 struct ext4_dir_entry_2 *de = inline_start;
965 void *dlimit = inline_start + inline_size;
966
967 trace_printk("inode %lu\n", dir->i_ino);
968 offset = 0;
969 while ((void *)de < dlimit) {
970 de_len = ext4_rec_len_from_disk(de->rec_len, inline_size);
971 trace_printk("de: off %u rlen %u name %*.s nlen %u ino %u\n",
972 offset, de_len, de->name_len, de->name,
973 de->name_len, le32_to_cpu(de->inode));
974 if (ext4_check_dir_entry(dir, NULL, de, bh,
975 inline_start, inline_size, offset))
976 BUG();
977
978 offset += de_len;
979 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
980 }
981}
982#else
983#define ext4_show_inline_dir(dir, bh, inline_start, inline_size)
984#endif
985
986/*
987 * Add a new entry into a inline dir.
988 * It will return -ENOSPC if no space is available, and -EIO
989 * and -EEXIST if directory entry already exists.
990 */
991static int ext4_add_dirent_to_inline(handle_t *handle,
992 struct dentry *dentry,
993 struct inode *inode,
994 struct ext4_iloc *iloc,
995 void *inline_start, int inline_size)
996{
997 struct inode *dir = dentry->d_parent->d_inode;
998 const char *name = dentry->d_name.name;
999 int namelen = dentry->d_name.len;
Tao Ma3c47d542012-12-10 14:05:59 -05001000 int err;
1001 struct ext4_dir_entry_2 *de;
1002
Tao Ma3c47d542012-12-10 14:05:59 -05001003 err = ext4_find_dest_de(dir, inode, iloc->bh,
1004 inline_start, inline_size,
1005 name, namelen, &de);
1006 if (err)
1007 return err;
1008
liang xie5d601252014-05-12 22:06:43 -04001009 BUFFER_TRACE(iloc->bh, "get_write_access");
Tao Ma3c47d542012-12-10 14:05:59 -05001010 err = ext4_journal_get_write_access(handle, iloc->bh);
1011 if (err)
1012 return err;
1013 ext4_insert_dentry(inode, de, inline_size, name, namelen);
1014
1015 ext4_show_inline_dir(dir, iloc->bh, inline_start, inline_size);
1016
1017 /*
1018 * XXX shouldn't update any times until successful
1019 * completion of syscall, but too many callers depend
1020 * on this.
1021 *
1022 * XXX similarly, too many callers depend on
1023 * ext4_new_inode() setting the times, but error
1024 * recovery deletes the inode, so the worst that can
1025 * happen is that the times are slightly out of date
1026 * and/or different from the directory change time.
1027 */
1028 dir->i_mtime = dir->i_ctime = ext4_current_time(dir);
1029 ext4_update_dx_flag(dir);
1030 dir->i_version++;
1031 ext4_mark_inode_dirty(handle, dir);
1032 return 1;
1033}
1034
1035static void *ext4_get_inline_xattr_pos(struct inode *inode,
1036 struct ext4_iloc *iloc)
1037{
1038 struct ext4_xattr_entry *entry;
1039 struct ext4_xattr_ibody_header *header;
1040
1041 BUG_ON(!EXT4_I(inode)->i_inline_off);
1042
1043 header = IHDR(inode, ext4_raw_inode(iloc));
1044 entry = (struct ext4_xattr_entry *)((void *)ext4_raw_inode(iloc) +
1045 EXT4_I(inode)->i_inline_off);
1046
1047 return (void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs);
1048}
1049
1050/* Set the final de to cover the whole block. */
1051static void ext4_update_final_de(void *de_buf, int old_size, int new_size)
1052{
1053 struct ext4_dir_entry_2 *de, *prev_de;
1054 void *limit;
1055 int de_len;
1056
1057 de = (struct ext4_dir_entry_2 *)de_buf;
1058 if (old_size) {
1059 limit = de_buf + old_size;
1060 do {
1061 prev_de = de;
1062 de_len = ext4_rec_len_from_disk(de->rec_len, old_size);
1063 de_buf += de_len;
1064 de = (struct ext4_dir_entry_2 *)de_buf;
1065 } while (de_buf < limit);
1066
1067 prev_de->rec_len = ext4_rec_len_to_disk(de_len + new_size -
1068 old_size, new_size);
1069 } else {
1070 /* this is just created, so create an empty entry. */
1071 de->inode = 0;
1072 de->rec_len = ext4_rec_len_to_disk(new_size, new_size);
1073 }
1074}
1075
1076static int ext4_update_inline_dir(handle_t *handle, struct inode *dir,
1077 struct ext4_iloc *iloc)
1078{
1079 int ret;
1080 int old_size = EXT4_I(dir)->i_inline_size - EXT4_MIN_INLINE_DATA_SIZE;
1081 int new_size = get_max_inline_xattr_value_size(dir, iloc);
1082
1083 if (new_size - old_size <= EXT4_DIR_REC_LEN(1))
1084 return -ENOSPC;
1085
1086 ret = ext4_update_inline_data(handle, dir,
1087 new_size + EXT4_MIN_INLINE_DATA_SIZE);
1088 if (ret)
1089 return ret;
1090
1091 ext4_update_final_de(ext4_get_inline_xattr_pos(dir, iloc), old_size,
1092 EXT4_I(dir)->i_inline_size -
1093 EXT4_MIN_INLINE_DATA_SIZE);
1094 dir->i_size = EXT4_I(dir)->i_disksize = EXT4_I(dir)->i_inline_size;
1095 return 0;
1096}
1097
1098static void ext4_restore_inline_data(handle_t *handle, struct inode *inode,
1099 struct ext4_iloc *iloc,
1100 void *buf, int inline_size)
1101{
1102 ext4_create_inline_data(handle, inode, inline_size);
1103 ext4_write_inline_data(inode, iloc, buf, 0, inline_size);
1104 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1105}
1106
1107static int ext4_finish_convert_inline_dir(handle_t *handle,
1108 struct inode *inode,
1109 struct buffer_head *dir_block,
1110 void *buf,
1111 int inline_size)
1112{
1113 int err, csum_size = 0, header_size = 0;
1114 struct ext4_dir_entry_2 *de;
1115 struct ext4_dir_entry_tail *t;
1116 void *target = dir_block->b_data;
1117
1118 /*
1119 * First create "." and ".." and then copy the dir information
1120 * back to the block.
1121 */
1122 de = (struct ext4_dir_entry_2 *)target;
1123 de = ext4_init_dot_dotdot(inode, de,
1124 inode->i_sb->s_blocksize, csum_size,
1125 le32_to_cpu(((struct ext4_dir_entry_2 *)buf)->inode), 1);
1126 header_size = (void *)de - target;
1127
1128 memcpy((void *)de, buf + EXT4_INLINE_DOTDOT_SIZE,
1129 inline_size - EXT4_INLINE_DOTDOT_SIZE);
1130
1131 if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
1132 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
1133 csum_size = sizeof(struct ext4_dir_entry_tail);
1134
1135 inode->i_size = inode->i_sb->s_blocksize;
1136 i_size_write(inode, inode->i_sb->s_blocksize);
1137 EXT4_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1138 ext4_update_final_de(dir_block->b_data,
1139 inline_size - EXT4_INLINE_DOTDOT_SIZE + header_size,
1140 inode->i_sb->s_blocksize - csum_size);
1141
1142 if (csum_size) {
1143 t = EXT4_DIRENT_TAIL(dir_block->b_data,
1144 inode->i_sb->s_blocksize);
1145 initialize_dirent_tail(t, inode->i_sb->s_blocksize);
1146 }
1147 set_buffer_uptodate(dir_block);
1148 err = ext4_handle_dirty_dirent_node(handle, inode, dir_block);
1149 if (err)
1150 goto out;
1151 set_buffer_verified(dir_block);
1152out:
1153 return err;
1154}
1155
1156static int ext4_convert_inline_data_nolock(handle_t *handle,
1157 struct inode *inode,
1158 struct ext4_iloc *iloc)
1159{
1160 int error;
1161 void *buf = NULL;
1162 struct buffer_head *data_bh = NULL;
1163 struct ext4_map_blocks map;
1164 int inline_size;
1165
1166 inline_size = ext4_get_inline_size(inode);
1167 buf = kmalloc(inline_size, GFP_NOFS);
1168 if (!buf) {
1169 error = -ENOMEM;
1170 goto out;
1171 }
1172
1173 error = ext4_read_inline_data(inode, buf, inline_size, iloc);
1174 if (error < 0)
1175 goto out;
1176
Darrick J. Wong40b163f2014-07-28 13:06:26 -04001177 /*
1178 * Make sure the inline directory entries pass checks before we try to
1179 * convert them, so that we avoid touching stuff that needs fsck.
1180 */
1181 if (S_ISDIR(inode->i_mode)) {
1182 error = ext4_check_all_de(inode, iloc->bh,
1183 buf + EXT4_INLINE_DOTDOT_SIZE,
1184 inline_size - EXT4_INLINE_DOTDOT_SIZE);
1185 if (error)
1186 goto out;
1187 }
1188
Tao Ma3c47d542012-12-10 14:05:59 -05001189 error = ext4_destroy_inline_data_nolock(handle, inode);
1190 if (error)
1191 goto out;
1192
1193 map.m_lblk = 0;
1194 map.m_len = 1;
1195 map.m_flags = 0;
1196 error = ext4_map_blocks(handle, inode, &map, EXT4_GET_BLOCKS_CREATE);
1197 if (error < 0)
1198 goto out_restore;
1199 if (!(map.m_flags & EXT4_MAP_MAPPED)) {
1200 error = -EIO;
1201 goto out_restore;
1202 }
1203
1204 data_bh = sb_getblk(inode->i_sb, map.m_pblk);
1205 if (!data_bh) {
Theodore Ts'o860d21e2013-01-12 16:19:36 -05001206 error = -ENOMEM;
Tao Ma3c47d542012-12-10 14:05:59 -05001207 goto out_restore;
1208 }
1209
1210 lock_buffer(data_bh);
1211 error = ext4_journal_get_create_access(handle, data_bh);
1212 if (error) {
1213 unlock_buffer(data_bh);
1214 error = -EIO;
1215 goto out_restore;
1216 }
1217 memset(data_bh->b_data, 0, inode->i_sb->s_blocksize);
1218
1219 if (!S_ISDIR(inode->i_mode)) {
1220 memcpy(data_bh->b_data, buf, inline_size);
1221 set_buffer_uptodate(data_bh);
1222 error = ext4_handle_dirty_metadata(handle,
1223 inode, data_bh);
1224 } else {
1225 error = ext4_finish_convert_inline_dir(handle, inode, data_bh,
1226 buf, inline_size);
1227 }
1228
1229 unlock_buffer(data_bh);
1230out_restore:
1231 if (error)
1232 ext4_restore_inline_data(handle, inode, iloc, buf, inline_size);
1233
1234out:
1235 brelse(data_bh);
1236 kfree(buf);
1237 return error;
1238}
1239
1240/*
1241 * Try to add the new entry to the inline data.
1242 * If succeeds, return 0. If not, extended the inline dir and copied data to
1243 * the new created block.
1244 */
1245int ext4_try_add_inline_entry(handle_t *handle, struct dentry *dentry,
1246 struct inode *inode)
1247{
1248 int ret, inline_size;
1249 void *inline_start;
1250 struct ext4_iloc iloc;
1251 struct inode *dir = dentry->d_parent->d_inode;
1252
1253 ret = ext4_get_inode_loc(dir, &iloc);
1254 if (ret)
1255 return ret;
1256
1257 down_write(&EXT4_I(dir)->xattr_sem);
1258 if (!ext4_has_inline_data(dir))
1259 goto out;
1260
1261 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1262 EXT4_INLINE_DOTDOT_SIZE;
1263 inline_size = EXT4_MIN_INLINE_DATA_SIZE - EXT4_INLINE_DOTDOT_SIZE;
1264
1265 ret = ext4_add_dirent_to_inline(handle, dentry, inode, &iloc,
1266 inline_start, inline_size);
1267 if (ret != -ENOSPC)
1268 goto out;
1269
1270 /* check whether it can be inserted to inline xattr space. */
1271 inline_size = EXT4_I(dir)->i_inline_size -
1272 EXT4_MIN_INLINE_DATA_SIZE;
1273 if (!inline_size) {
1274 /* Try to use the xattr space.*/
1275 ret = ext4_update_inline_dir(handle, dir, &iloc);
1276 if (ret && ret != -ENOSPC)
1277 goto out;
1278
1279 inline_size = EXT4_I(dir)->i_inline_size -
1280 EXT4_MIN_INLINE_DATA_SIZE;
1281 }
1282
1283 if (inline_size) {
1284 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1285
1286 ret = ext4_add_dirent_to_inline(handle, dentry, inode, &iloc,
1287 inline_start, inline_size);
1288
1289 if (ret != -ENOSPC)
1290 goto out;
1291 }
1292
1293 /*
1294 * The inline space is filled up, so create a new block for it.
1295 * As the extent tree will be created, we have to save the inline
1296 * dir first.
1297 */
1298 ret = ext4_convert_inline_data_nolock(handle, dir, &iloc);
1299
1300out:
1301 ext4_mark_inode_dirty(handle, dir);
1302 up_write(&EXT4_I(dir)->xattr_sem);
1303 brelse(iloc.bh);
1304 return ret;
1305}
1306
Tao Ma8af0f082013-04-19 17:53:09 -04001307/*
1308 * This function fills a red-black tree with information from an
1309 * inlined dir. It returns the number directory entries loaded
1310 * into the tree. If there is an error it is returned in err.
1311 */
1312int htree_inlinedir_to_tree(struct file *dir_file,
1313 struct inode *dir, ext4_lblk_t block,
1314 struct dx_hash_info *hinfo,
1315 __u32 start_hash, __u32 start_minor_hash,
1316 int *has_inline_data)
1317{
1318 int err = 0, count = 0;
1319 unsigned int parent_ino;
1320 int pos;
1321 struct ext4_dir_entry_2 *de;
1322 struct inode *inode = file_inode(dir_file);
1323 int ret, inline_size = 0;
1324 struct ext4_iloc iloc;
1325 void *dir_buf = NULL;
1326 struct ext4_dir_entry_2 fake;
1327
1328 ret = ext4_get_inode_loc(inode, &iloc);
1329 if (ret)
1330 return ret;
1331
1332 down_read(&EXT4_I(inode)->xattr_sem);
1333 if (!ext4_has_inline_data(inode)) {
1334 up_read(&EXT4_I(inode)->xattr_sem);
1335 *has_inline_data = 0;
1336 goto out;
1337 }
1338
1339 inline_size = ext4_get_inline_size(inode);
1340 dir_buf = kmalloc(inline_size, GFP_NOFS);
1341 if (!dir_buf) {
1342 ret = -ENOMEM;
1343 up_read(&EXT4_I(inode)->xattr_sem);
1344 goto out;
1345 }
1346
1347 ret = ext4_read_inline_data(inode, dir_buf, inline_size, &iloc);
1348 up_read(&EXT4_I(inode)->xattr_sem);
1349 if (ret < 0)
1350 goto out;
1351
1352 pos = 0;
1353 parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode);
1354 while (pos < inline_size) {
1355 /*
1356 * As inlined dir doesn't store any information about '.' and
1357 * only the inode number of '..' is stored, we have to handle
1358 * them differently.
1359 */
1360 if (pos == 0) {
1361 fake.inode = cpu_to_le32(inode->i_ino);
1362 fake.name_len = 1;
1363 strcpy(fake.name, ".");
1364 fake.rec_len = ext4_rec_len_to_disk(
1365 EXT4_DIR_REC_LEN(fake.name_len),
1366 inline_size);
1367 ext4_set_de_type(inode->i_sb, &fake, S_IFDIR);
1368 de = &fake;
1369 pos = EXT4_INLINE_DOTDOT_OFFSET;
1370 } else if (pos == EXT4_INLINE_DOTDOT_OFFSET) {
1371 fake.inode = cpu_to_le32(parent_ino);
1372 fake.name_len = 2;
1373 strcpy(fake.name, "..");
1374 fake.rec_len = ext4_rec_len_to_disk(
1375 EXT4_DIR_REC_LEN(fake.name_len),
1376 inline_size);
1377 ext4_set_de_type(inode->i_sb, &fake, S_IFDIR);
1378 de = &fake;
1379 pos = EXT4_INLINE_DOTDOT_SIZE;
1380 } else {
1381 de = (struct ext4_dir_entry_2 *)(dir_buf + pos);
1382 pos += ext4_rec_len_from_disk(de->rec_len, inline_size);
1383 if (ext4_check_dir_entry(inode, dir_file, de,
1384 iloc.bh, dir_buf,
1385 inline_size, pos)) {
1386 ret = count;
1387 goto out;
1388 }
1389 }
1390
1391 ext4fs_dirhash(de->name, de->name_len, hinfo);
1392 if ((hinfo->hash < start_hash) ||
1393 ((hinfo->hash == start_hash) &&
1394 (hinfo->minor_hash < start_minor_hash)))
1395 continue;
1396 if (de->inode == 0)
1397 continue;
1398 err = ext4_htree_store_dirent(dir_file,
1399 hinfo->hash, hinfo->minor_hash, de);
1400 if (err) {
1401 count = err;
1402 goto out;
1403 }
1404 count++;
1405 }
1406 ret = count;
1407out:
1408 kfree(dir_buf);
1409 brelse(iloc.bh);
1410 return ret;
1411}
1412
Tao Mac4d8b022013-04-19 17:55:33 -04001413/*
1414 * So this function is called when the volume is mkfsed with
1415 * dir_index disabled. In order to keep f_pos persistent
1416 * after we convert from an inlined dir to a blocked based,
1417 * we just pretend that we are a normal dir and return the
1418 * offset as if '.' and '..' really take place.
1419 *
1420 */
Al Viro725bebb2013-05-17 16:08:53 -04001421int ext4_read_inline_dir(struct file *file,
1422 struct dir_context *ctx,
Tao Ma65d165d2012-12-10 14:05:59 -05001423 int *has_inline_data)
1424{
Tao Ma65d165d2012-12-10 14:05:59 -05001425 unsigned int offset, parent_ino;
Al Viro725bebb2013-05-17 16:08:53 -04001426 int i;
Tao Ma65d165d2012-12-10 14:05:59 -05001427 struct ext4_dir_entry_2 *de;
1428 struct super_block *sb;
Al Viro725bebb2013-05-17 16:08:53 -04001429 struct inode *inode = file_inode(file);
Tao Ma65d165d2012-12-10 14:05:59 -05001430 int ret, inline_size = 0;
1431 struct ext4_iloc iloc;
1432 void *dir_buf = NULL;
Tao Mac4d8b022013-04-19 17:55:33 -04001433 int dotdot_offset, dotdot_size, extra_offset, extra_size;
Tao Ma65d165d2012-12-10 14:05:59 -05001434
1435 ret = ext4_get_inode_loc(inode, &iloc);
1436 if (ret)
1437 return ret;
1438
1439 down_read(&EXT4_I(inode)->xattr_sem);
1440 if (!ext4_has_inline_data(inode)) {
1441 up_read(&EXT4_I(inode)->xattr_sem);
1442 *has_inline_data = 0;
1443 goto out;
1444 }
1445
1446 inline_size = ext4_get_inline_size(inode);
1447 dir_buf = kmalloc(inline_size, GFP_NOFS);
1448 if (!dir_buf) {
1449 ret = -ENOMEM;
1450 up_read(&EXT4_I(inode)->xattr_sem);
1451 goto out;
1452 }
1453
1454 ret = ext4_read_inline_data(inode, dir_buf, inline_size, &iloc);
1455 up_read(&EXT4_I(inode)->xattr_sem);
1456 if (ret < 0)
1457 goto out;
1458
BoxiLiu48ffdab2013-10-30 08:07:20 -04001459 ret = 0;
Tao Ma65d165d2012-12-10 14:05:59 -05001460 sb = inode->i_sb;
Tao Ma65d165d2012-12-10 14:05:59 -05001461 parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode);
Al Viro725bebb2013-05-17 16:08:53 -04001462 offset = ctx->pos;
Tao Ma65d165d2012-12-10 14:05:59 -05001463
Tao Mac4d8b022013-04-19 17:55:33 -04001464 /*
1465 * dotdot_offset and dotdot_size is the real offset and
1466 * size for ".." and "." if the dir is block based while
1467 * the real size for them are only EXT4_INLINE_DOTDOT_SIZE.
1468 * So we will use extra_offset and extra_size to indicate them
1469 * during the inline dir iteration.
1470 */
1471 dotdot_offset = EXT4_DIR_REC_LEN(1);
1472 dotdot_size = dotdot_offset + EXT4_DIR_REC_LEN(2);
1473 extra_offset = dotdot_size - EXT4_INLINE_DOTDOT_SIZE;
1474 extra_size = extra_offset + inline_size;
1475
Al Viro725bebb2013-05-17 16:08:53 -04001476 /*
1477 * If the version has changed since the last call to
1478 * readdir(2), then we might be pointing to an invalid
1479 * dirent right now. Scan from the start of the inline
1480 * dir to make sure.
1481 */
1482 if (file->f_version != inode->i_version) {
1483 for (i = 0; i < extra_size && i < offset;) {
1484 /*
1485 * "." is with offset 0 and
1486 * ".." is dotdot_offset.
1487 */
1488 if (!i) {
1489 i = dotdot_offset;
1490 continue;
1491 } else if (i == dotdot_offset) {
1492 i = dotdot_size;
Tao Mac4d8b022013-04-19 17:55:33 -04001493 continue;
1494 }
Al Viro725bebb2013-05-17 16:08:53 -04001495 /* for other entry, the real offset in
1496 * the buf has to be tuned accordingly.
1497 */
Tao Mac4d8b022013-04-19 17:55:33 -04001498 de = (struct ext4_dir_entry_2 *)
Al Viro725bebb2013-05-17 16:08:53 -04001499 (dir_buf + i - extra_offset);
1500 /* It's too expensive to do a full
1501 * dirent test each time round this
1502 * loop, but we do have to test at
1503 * least that it is non-zero. A
1504 * failure will be detected in the
1505 * dirent test below. */
1506 if (ext4_rec_len_from_disk(de->rec_len, extra_size)
1507 < EXT4_DIR_REC_LEN(1))
1508 break;
1509 i += ext4_rec_len_from_disk(de->rec_len,
1510 extra_size);
Tao Ma65d165d2012-12-10 14:05:59 -05001511 }
Al Viro725bebb2013-05-17 16:08:53 -04001512 offset = i;
1513 ctx->pos = offset;
1514 file->f_version = inode->i_version;
1515 }
1516
1517 while (ctx->pos < extra_size) {
1518 if (ctx->pos == 0) {
1519 if (!dir_emit(ctx, ".", 1, inode->i_ino, DT_DIR))
1520 goto out;
1521 ctx->pos = dotdot_offset;
1522 continue;
1523 }
1524
1525 if (ctx->pos == dotdot_offset) {
1526 if (!dir_emit(ctx, "..", 2, parent_ino, DT_DIR))
1527 goto out;
1528 ctx->pos = dotdot_size;
1529 continue;
1530 }
1531
1532 de = (struct ext4_dir_entry_2 *)
1533 (dir_buf + ctx->pos - extra_offset);
1534 if (ext4_check_dir_entry(inode, file, de, iloc.bh, dir_buf,
1535 extra_size, ctx->pos))
1536 goto out;
1537 if (le32_to_cpu(de->inode)) {
1538 if (!dir_emit(ctx, de->name, de->name_len,
1539 le32_to_cpu(de->inode),
1540 get_dtype(sb, de->file_type)))
1541 goto out;
1542 }
1543 ctx->pos += ext4_rec_len_from_disk(de->rec_len, extra_size);
Tao Ma65d165d2012-12-10 14:05:59 -05001544 }
1545out:
1546 kfree(dir_buf);
1547 brelse(iloc.bh);
1548 return ret;
1549}
1550
Tao Ma32f7f222012-12-10 14:06:01 -05001551struct buffer_head *ext4_get_first_inline_block(struct inode *inode,
1552 struct ext4_dir_entry_2 **parent_de,
1553 int *retval)
1554{
1555 struct ext4_iloc iloc;
1556
1557 *retval = ext4_get_inode_loc(inode, &iloc);
1558 if (*retval)
1559 return NULL;
1560
1561 *parent_de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1562
1563 return iloc.bh;
1564}
1565
Tao Ma3c47d542012-12-10 14:05:59 -05001566/*
1567 * Try to create the inline data for the new dir.
1568 * If it succeeds, return 0, otherwise return the error.
1569 * In case of ENOSPC, the caller should create the normal disk layout dir.
1570 */
1571int ext4_try_create_inline_dir(handle_t *handle, struct inode *parent,
1572 struct inode *inode)
1573{
1574 int ret, inline_size = EXT4_MIN_INLINE_DATA_SIZE;
1575 struct ext4_iloc iloc;
1576 struct ext4_dir_entry_2 *de;
1577
1578 ret = ext4_get_inode_loc(inode, &iloc);
1579 if (ret)
1580 return ret;
1581
1582 ret = ext4_prepare_inline_data(handle, inode, inline_size);
1583 if (ret)
1584 goto out;
1585
1586 /*
1587 * For inline dir, we only save the inode information for the ".."
1588 * and create a fake dentry to cover the left space.
1589 */
1590 de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1591 de->inode = cpu_to_le32(parent->i_ino);
1592 de = (struct ext4_dir_entry_2 *)((void *)de + EXT4_INLINE_DOTDOT_SIZE);
1593 de->inode = 0;
1594 de->rec_len = ext4_rec_len_to_disk(
1595 inline_size - EXT4_INLINE_DOTDOT_SIZE,
1596 inline_size);
1597 set_nlink(inode, 2);
1598 inode->i_size = EXT4_I(inode)->i_disksize = inline_size;
1599out:
1600 brelse(iloc.bh);
1601 return ret;
1602}
1603
Tao Mae8e948e2012-12-10 14:06:00 -05001604struct buffer_head *ext4_find_inline_entry(struct inode *dir,
1605 const struct qstr *d_name,
1606 struct ext4_dir_entry_2 **res_dir,
1607 int *has_inline_data)
1608{
1609 int ret;
1610 struct ext4_iloc iloc;
1611 void *inline_start;
1612 int inline_size;
1613
1614 if (ext4_get_inode_loc(dir, &iloc))
1615 return NULL;
1616
1617 down_read(&EXT4_I(dir)->xattr_sem);
1618 if (!ext4_has_inline_data(dir)) {
1619 *has_inline_data = 0;
1620 goto out;
1621 }
1622
1623 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1624 EXT4_INLINE_DOTDOT_SIZE;
1625 inline_size = EXT4_MIN_INLINE_DATA_SIZE - EXT4_INLINE_DOTDOT_SIZE;
1626 ret = search_dir(iloc.bh, inline_start, inline_size,
1627 dir, d_name, 0, res_dir);
1628 if (ret == 1)
1629 goto out_find;
1630 if (ret < 0)
1631 goto out;
1632
1633 if (ext4_get_inline_size(dir) == EXT4_MIN_INLINE_DATA_SIZE)
1634 goto out;
1635
1636 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1637 inline_size = ext4_get_inline_size(dir) - EXT4_MIN_INLINE_DATA_SIZE;
1638
1639 ret = search_dir(iloc.bh, inline_start, inline_size,
1640 dir, d_name, 0, res_dir);
1641 if (ret == 1)
1642 goto out_find;
1643
1644out:
1645 brelse(iloc.bh);
1646 iloc.bh = NULL;
1647out_find:
1648 up_read(&EXT4_I(dir)->xattr_sem);
1649 return iloc.bh;
1650}
1651
Tao Ma9f40fe52012-12-10 14:06:00 -05001652int ext4_delete_inline_entry(handle_t *handle,
1653 struct inode *dir,
1654 struct ext4_dir_entry_2 *de_del,
1655 struct buffer_head *bh,
1656 int *has_inline_data)
1657{
1658 int err, inline_size;
1659 struct ext4_iloc iloc;
1660 void *inline_start;
1661
1662 err = ext4_get_inode_loc(dir, &iloc);
1663 if (err)
1664 return err;
1665
1666 down_write(&EXT4_I(dir)->xattr_sem);
1667 if (!ext4_has_inline_data(dir)) {
1668 *has_inline_data = 0;
1669 goto out;
1670 }
1671
1672 if ((void *)de_del - ((void *)ext4_raw_inode(&iloc)->i_block) <
1673 EXT4_MIN_INLINE_DATA_SIZE) {
1674 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1675 EXT4_INLINE_DOTDOT_SIZE;
1676 inline_size = EXT4_MIN_INLINE_DATA_SIZE -
1677 EXT4_INLINE_DOTDOT_SIZE;
1678 } else {
1679 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1680 inline_size = ext4_get_inline_size(dir) -
1681 EXT4_MIN_INLINE_DATA_SIZE;
1682 }
1683
liang xie5d601252014-05-12 22:06:43 -04001684 BUFFER_TRACE(bh, "get_write_access");
Tao Ma9f40fe52012-12-10 14:06:00 -05001685 err = ext4_journal_get_write_access(handle, bh);
1686 if (err)
1687 goto out;
1688
1689 err = ext4_generic_delete_entry(handle, dir, de_del, bh,
1690 inline_start, inline_size, 0);
1691 if (err)
1692 goto out;
1693
1694 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
1695 err = ext4_mark_inode_dirty(handle, dir);
1696 if (unlikely(err))
1697 goto out;
1698
1699 ext4_show_inline_dir(dir, iloc.bh, inline_start, inline_size);
1700out:
1701 up_write(&EXT4_I(dir)->xattr_sem);
1702 brelse(iloc.bh);
1703 if (err != -ENOENT)
1704 ext4_std_error(dir->i_sb, err);
1705 return err;
1706}
1707
Tao Ma61f86632012-12-10 14:06:01 -05001708/*
1709 * Get the inline dentry at offset.
1710 */
1711static inline struct ext4_dir_entry_2 *
1712ext4_get_inline_entry(struct inode *inode,
1713 struct ext4_iloc *iloc,
1714 unsigned int offset,
1715 void **inline_start,
1716 int *inline_size)
1717{
1718 void *inline_pos;
1719
1720 BUG_ON(offset > ext4_get_inline_size(inode));
1721
1722 if (offset < EXT4_MIN_INLINE_DATA_SIZE) {
1723 inline_pos = (void *)ext4_raw_inode(iloc)->i_block;
1724 *inline_size = EXT4_MIN_INLINE_DATA_SIZE;
1725 } else {
1726 inline_pos = ext4_get_inline_xattr_pos(inode, iloc);
1727 offset -= EXT4_MIN_INLINE_DATA_SIZE;
1728 *inline_size = ext4_get_inline_size(inode) -
1729 EXT4_MIN_INLINE_DATA_SIZE;
1730 }
1731
1732 if (inline_start)
1733 *inline_start = inline_pos;
1734 return (struct ext4_dir_entry_2 *)(inline_pos + offset);
1735}
1736
1737int empty_inline_dir(struct inode *dir, int *has_inline_data)
1738{
1739 int err, inline_size;
1740 struct ext4_iloc iloc;
1741 void *inline_pos;
1742 unsigned int offset;
1743 struct ext4_dir_entry_2 *de;
1744 int ret = 1;
1745
1746 err = ext4_get_inode_loc(dir, &iloc);
1747 if (err) {
1748 EXT4_ERROR_INODE(dir, "error %d getting inode %lu block",
1749 err, dir->i_ino);
1750 return 1;
1751 }
1752
1753 down_read(&EXT4_I(dir)->xattr_sem);
1754 if (!ext4_has_inline_data(dir)) {
1755 *has_inline_data = 0;
1756 goto out;
1757 }
1758
1759 de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1760 if (!le32_to_cpu(de->inode)) {
1761 ext4_warning(dir->i_sb,
1762 "bad inline directory (dir #%lu) - no `..'",
1763 dir->i_ino);
1764 ret = 1;
1765 goto out;
1766 }
1767
1768 offset = EXT4_INLINE_DOTDOT_SIZE;
1769 while (offset < dir->i_size) {
1770 de = ext4_get_inline_entry(dir, &iloc, offset,
1771 &inline_pos, &inline_size);
1772 if (ext4_check_dir_entry(dir, NULL, de,
1773 iloc.bh, inline_pos,
1774 inline_size, offset)) {
1775 ext4_warning(dir->i_sb,
1776 "bad inline directory (dir #%lu) - "
1777 "inode %u, rec_len %u, name_len %d"
1778 "inline size %d\n",
1779 dir->i_ino, le32_to_cpu(de->inode),
1780 le16_to_cpu(de->rec_len), de->name_len,
1781 inline_size);
1782 ret = 1;
1783 goto out;
1784 }
1785 if (le32_to_cpu(de->inode)) {
1786 ret = 0;
1787 goto out;
1788 }
1789 offset += ext4_rec_len_from_disk(de->rec_len, inline_size);
1790 }
1791
1792out:
1793 up_read(&EXT4_I(dir)->xattr_sem);
1794 brelse(iloc.bh);
1795 return ret;
1796}
1797
Tao Ma67cf5b02012-12-10 14:04:46 -05001798int ext4_destroy_inline_data(handle_t *handle, struct inode *inode)
1799{
1800 int ret;
1801
1802 down_write(&EXT4_I(inode)->xattr_sem);
1803 ret = ext4_destroy_inline_data_nolock(handle, inode);
1804 up_write(&EXT4_I(inode)->xattr_sem);
1805
1806 return ret;
1807}
Tao Ma94191982012-12-10 14:06:02 -05001808
1809int ext4_inline_data_fiemap(struct inode *inode,
1810 struct fiemap_extent_info *fieinfo,
1811 int *has_inline)
1812{
1813 __u64 physical = 0;
1814 __u64 length;
1815 __u32 flags = FIEMAP_EXTENT_DATA_INLINE | FIEMAP_EXTENT_LAST;
1816 int error = 0;
1817 struct ext4_iloc iloc;
1818
1819 down_read(&EXT4_I(inode)->xattr_sem);
1820 if (!ext4_has_inline_data(inode)) {
1821 *has_inline = 0;
1822 goto out;
1823 }
1824
1825 error = ext4_get_inode_loc(inode, &iloc);
1826 if (error)
1827 goto out;
1828
Jan Karaeaf37932013-05-31 19:33:42 -04001829 physical = (__u64)iloc.bh->b_blocknr << inode->i_sb->s_blocksize_bits;
Tao Ma94191982012-12-10 14:06:02 -05001830 physical += (char *)ext4_raw_inode(&iloc) - iloc.bh->b_data;
1831 physical += offsetof(struct ext4_inode, i_block);
1832 length = i_size_read(inode);
1833
1834 if (physical)
1835 error = fiemap_fill_next_extent(fieinfo, 0, physical,
1836 length, flags);
1837 brelse(iloc.bh);
1838out:
1839 up_read(&EXT4_I(inode)->xattr_sem);
1840 return (error < 0 ? error : 0);
1841}
Tao Ma0d812f72012-12-10 14:06:02 -05001842
1843/*
1844 * Called during xattr set, and if we can sparse space 'needed',
1845 * just create the extent tree evict the data to the outer block.
1846 *
1847 * We use jbd2 instead of page cache to move data to the 1st block
1848 * so that the whole transaction can be committed as a whole and
1849 * the data isn't lost because of the delayed page cache write.
1850 */
1851int ext4_try_to_evict_inline_data(handle_t *handle,
1852 struct inode *inode,
1853 int needed)
1854{
1855 int error;
1856 struct ext4_xattr_entry *entry;
Tao Ma0d812f72012-12-10 14:06:02 -05001857 struct ext4_inode *raw_inode;
1858 struct ext4_iloc iloc;
1859
1860 error = ext4_get_inode_loc(inode, &iloc);
1861 if (error)
1862 return error;
1863
1864 raw_inode = ext4_raw_inode(&iloc);
Tao Ma0d812f72012-12-10 14:06:02 -05001865 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
1866 EXT4_I(inode)->i_inline_off);
1867 if (EXT4_XATTR_LEN(entry->e_name_len) +
1868 EXT4_XATTR_SIZE(le32_to_cpu(entry->e_value_size)) < needed) {
1869 error = -ENOSPC;
1870 goto out;
1871 }
1872
1873 error = ext4_convert_inline_data_nolock(handle, inode, &iloc);
1874out:
1875 brelse(iloc.bh);
1876 return error;
1877}
Tao Maaef1c852012-12-10 14:06:02 -05001878
1879void ext4_inline_data_truncate(struct inode *inode, int *has_inline)
1880{
1881 handle_t *handle;
1882 int inline_size, value_len, needed_blocks;
1883 size_t i_size;
1884 void *value = NULL;
1885 struct ext4_xattr_ibody_find is = {
1886 .s = { .not_found = -ENODATA, },
1887 };
1888 struct ext4_xattr_info i = {
1889 .name_index = EXT4_XATTR_INDEX_SYSTEM,
1890 .name = EXT4_XATTR_SYSTEM_DATA,
1891 };
1892
1893
1894 needed_blocks = ext4_writepage_trans_blocks(inode);
Theodore Ts'o9924a922013-02-08 21:59:22 -05001895 handle = ext4_journal_start(inode, EXT4_HT_INODE, needed_blocks);
Tao Maaef1c852012-12-10 14:06:02 -05001896 if (IS_ERR(handle))
1897 return;
1898
1899 down_write(&EXT4_I(inode)->xattr_sem);
1900 if (!ext4_has_inline_data(inode)) {
1901 *has_inline = 0;
1902 ext4_journal_stop(handle);
1903 return;
1904 }
1905
1906 if (ext4_orphan_add(handle, inode))
1907 goto out;
1908
1909 if (ext4_get_inode_loc(inode, &is.iloc))
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 (ext4_xattr_ibody_find(inode, &i, &is))
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 goto out_error;
1929
1930 if (ext4_xattr_ibody_get(inode, i.name_index, i.name,
1931 value, value_len))
1932 goto out_error;
1933
1934 i.value = value;
1935 i.value_len = i_size > EXT4_MIN_INLINE_DATA_SIZE ?
1936 i_size - EXT4_MIN_INLINE_DATA_SIZE : 0;
1937 if (ext4_xattr_ibody_inline_set(handle, inode, &i, &is))
1938 goto out_error;
1939 }
1940
1941 /* Clear the content within i_blocks. */
Theodore Ts'o09c455a2014-01-07 12:58:19 -05001942 if (i_size < EXT4_MIN_INLINE_DATA_SIZE) {
1943 void *p = (void *) ext4_raw_inode(&is.iloc)->i_block;
1944 memset(p + i_size, 0,
1945 EXT4_MIN_INLINE_DATA_SIZE - i_size);
1946 }
Tao Maaef1c852012-12-10 14:06:02 -05001947
1948 EXT4_I(inode)->i_inline_size = i_size <
1949 EXT4_MIN_INLINE_DATA_SIZE ?
1950 EXT4_MIN_INLINE_DATA_SIZE : i_size;
1951 }
1952
1953out_error:
1954 up_write(&EXT4_I(inode)->i_data_sem);
1955out:
1956 brelse(is.iloc.bh);
1957 up_write(&EXT4_I(inode)->xattr_sem);
1958 kfree(value);
1959 if (inode->i_nlink)
1960 ext4_orphan_del(handle, inode);
1961
1962 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
1963 ext4_mark_inode_dirty(handle, inode);
1964 if (IS_SYNC(inode))
1965 ext4_handle_sync(handle);
1966
1967 ext4_journal_stop(handle);
1968 return;
1969}
Tao Ma0c8d4142012-12-10 14:06:03 -05001970
1971int ext4_convert_inline_data(struct inode *inode)
1972{
1973 int error, needed_blocks;
1974 handle_t *handle;
1975 struct ext4_iloc iloc;
1976
1977 if (!ext4_has_inline_data(inode)) {
1978 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1979 return 0;
1980 }
1981
1982 needed_blocks = ext4_writepage_trans_blocks(inode);
1983
1984 iloc.bh = NULL;
1985 error = ext4_get_inode_loc(inode, &iloc);
1986 if (error)
1987 return error;
1988
Theodore Ts'o9924a922013-02-08 21:59:22 -05001989 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Tao Ma0c8d4142012-12-10 14:06:03 -05001990 if (IS_ERR(handle)) {
1991 error = PTR_ERR(handle);
1992 goto out_free;
1993 }
1994
1995 down_write(&EXT4_I(inode)->xattr_sem);
1996 if (!ext4_has_inline_data(inode)) {
1997 up_write(&EXT4_I(inode)->xattr_sem);
1998 goto out;
1999 }
2000
2001 error = ext4_convert_inline_data_nolock(handle, inode, &iloc);
2002 up_write(&EXT4_I(inode)->xattr_sem);
2003out:
2004 ext4_journal_stop(handle);
2005out_free:
2006 brelse(iloc.bh);
2007 return error;
2008}