blob: 31f98dd04e51abd6872c99cfb896f46a79357526 [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 */
Michael Halcrow4bdfc872015-04-12 00:56:28 -040014
15#include <linux/fiemap.h>
16
Tao Ma67cf5b02012-12-10 14:04:46 -050017#include "ext4_jbd2.h"
18#include "ext4.h"
19#include "xattr.h"
Tao Maf19d5872012-12-10 14:05:51 -050020#include "truncate.h"
Tao Ma67cf5b02012-12-10 14:04:46 -050021
22#define EXT4_XATTR_SYSTEM_DATA "data"
23#define EXT4_MIN_INLINE_DATA_SIZE ((sizeof(__le32) * EXT4_N_BLOCKS))
Tao Ma8af0f082013-04-19 17:53:09 -040024#define EXT4_INLINE_DOTDOT_OFFSET 2
25#define EXT4_INLINE_DOTDOT_SIZE 4
Tao Ma67cf5b02012-12-10 14:04:46 -050026
Stephen Hemmingerc1978552014-05-12 10:50:23 -040027static int ext4_get_inline_size(struct inode *inode)
Tao Ma67cf5b02012-12-10 14:04:46 -050028{
29 if (EXT4_I(inode)->i_inline_off)
30 return EXT4_I(inode)->i_inline_size;
31
32 return 0;
33}
34
35static int get_max_inline_xattr_value_size(struct inode *inode,
36 struct ext4_iloc *iloc)
37{
38 struct ext4_xattr_ibody_header *header;
39 struct ext4_xattr_entry *entry;
40 struct ext4_inode *raw_inode;
41 int free, min_offs;
42
43 min_offs = EXT4_SB(inode->i_sb)->s_inode_size -
44 EXT4_GOOD_OLD_INODE_SIZE -
45 EXT4_I(inode)->i_extra_isize -
46 sizeof(struct ext4_xattr_ibody_header);
47
48 /*
49 * We need to subtract another sizeof(__u32) since an in-inode xattr
50 * needs an empty 4 bytes to indicate the gap between the xattr entry
51 * and the name/value pair.
52 */
53 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
54 return EXT4_XATTR_SIZE(min_offs -
55 EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA)) -
56 EXT4_XATTR_ROUND - sizeof(__u32));
57
58 raw_inode = ext4_raw_inode(iloc);
59 header = IHDR(inode, raw_inode);
60 entry = IFIRST(header);
61
62 /* Compute min_offs. */
63 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
64 if (!entry->e_value_block && entry->e_value_size) {
65 size_t offs = le16_to_cpu(entry->e_value_offs);
66 if (offs < min_offs)
67 min_offs = offs;
68 }
69 }
70 free = min_offs -
71 ((void *)entry - (void *)IFIRST(header)) - sizeof(__u32);
72
73 if (EXT4_I(inode)->i_inline_off) {
74 entry = (struct ext4_xattr_entry *)
75 ((void *)raw_inode + EXT4_I(inode)->i_inline_off);
76
boxi liuc4932db2013-07-01 08:12:37 -040077 free += EXT4_XATTR_SIZE(le32_to_cpu(entry->e_value_size));
Tao Ma67cf5b02012-12-10 14:04:46 -050078 goto out;
79 }
80
81 free -= EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA));
82
83 if (free > EXT4_XATTR_ROUND)
84 free = EXT4_XATTR_SIZE(free - EXT4_XATTR_ROUND);
85 else
86 free = 0;
87
88out:
89 return free;
90}
91
92/*
93 * Get the maximum size we now can store in an inode.
94 * If we can't find the space for a xattr entry, don't use the space
95 * of the extents since we have no space to indicate the inline data.
96 */
97int ext4_get_max_inline_size(struct inode *inode)
98{
99 int error, max_inline_size;
100 struct ext4_iloc iloc;
101
102 if (EXT4_I(inode)->i_extra_isize == 0)
103 return 0;
104
105 error = ext4_get_inode_loc(inode, &iloc);
106 if (error) {
107 ext4_error_inode(inode, __func__, __LINE__, 0,
108 "can't get inode location %lu",
109 inode->i_ino);
110 return 0;
111 }
112
113 down_read(&EXT4_I(inode)->xattr_sem);
114 max_inline_size = get_max_inline_xattr_value_size(inode, &iloc);
115 up_read(&EXT4_I(inode)->xattr_sem);
116
117 brelse(iloc.bh);
118
119 if (!max_inline_size)
120 return 0;
121
122 return max_inline_size + EXT4_MIN_INLINE_DATA_SIZE;
123}
124
Tao Ma67cf5b02012-12-10 14:04:46 -0500125/*
126 * this function does not take xattr_sem, which is OK because it is
127 * currently only used in a code path coming form ext4_iget, before
128 * the new inode has been unlocked
129 */
130int ext4_find_inline_data_nolock(struct inode *inode)
131{
132 struct ext4_xattr_ibody_find is = {
133 .s = { .not_found = -ENODATA, },
134 };
135 struct ext4_xattr_info i = {
136 .name_index = EXT4_XATTR_INDEX_SYSTEM,
137 .name = EXT4_XATTR_SYSTEM_DATA,
138 };
139 int error;
140
141 if (EXT4_I(inode)->i_extra_isize == 0)
142 return 0;
143
144 error = ext4_get_inode_loc(inode, &is.iloc);
145 if (error)
146 return error;
147
148 error = ext4_xattr_ibody_find(inode, &i, &is);
149 if (error)
150 goto out;
151
152 if (!is.s.not_found) {
153 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
154 (void *)ext4_raw_inode(&is.iloc));
155 EXT4_I(inode)->i_inline_size = EXT4_MIN_INLINE_DATA_SIZE +
156 le32_to_cpu(is.s.here->e_value_size);
157 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
158 }
159out:
160 brelse(is.iloc.bh);
161 return error;
162}
163
164static int ext4_read_inline_data(struct inode *inode, void *buffer,
165 unsigned int len,
166 struct ext4_iloc *iloc)
167{
168 struct ext4_xattr_entry *entry;
169 struct ext4_xattr_ibody_header *header;
170 int cp_len = 0;
171 struct ext4_inode *raw_inode;
172
173 if (!len)
174 return 0;
175
176 BUG_ON(len > EXT4_I(inode)->i_inline_size);
177
178 cp_len = len < EXT4_MIN_INLINE_DATA_SIZE ?
179 len : EXT4_MIN_INLINE_DATA_SIZE;
180
181 raw_inode = ext4_raw_inode(iloc);
182 memcpy(buffer, (void *)(raw_inode->i_block), cp_len);
183
184 len -= cp_len;
185 buffer += cp_len;
186
187 if (!len)
188 goto out;
189
190 header = IHDR(inode, raw_inode);
191 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
192 EXT4_I(inode)->i_inline_off);
193 len = min_t(unsigned int, len,
194 (unsigned int)le32_to_cpu(entry->e_value_size));
195
196 memcpy(buffer,
197 (void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs), len);
198 cp_len += len;
199
200out:
201 return cp_len;
202}
203
204/*
205 * write the buffer to the inline inode.
206 * If 'create' is set, we don't need to do the extra copy in the xattr
Tao Ma0d812f72012-12-10 14:06:02 -0500207 * value since it is already handled by ext4_xattr_ibody_inline_set.
208 * That saves us one memcpy.
Tao Ma67cf5b02012-12-10 14:04:46 -0500209 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -0400210static void ext4_write_inline_data(struct inode *inode, struct ext4_iloc *iloc,
211 void *buffer, loff_t pos, unsigned int len)
Tao Ma67cf5b02012-12-10 14:04:46 -0500212{
213 struct ext4_xattr_entry *entry;
214 struct ext4_xattr_ibody_header *header;
215 struct ext4_inode *raw_inode;
216 int cp_len = 0;
217
218 BUG_ON(!EXT4_I(inode)->i_inline_off);
219 BUG_ON(pos + len > EXT4_I(inode)->i_inline_size);
220
221 raw_inode = ext4_raw_inode(iloc);
222 buffer += pos;
223
224 if (pos < EXT4_MIN_INLINE_DATA_SIZE) {
225 cp_len = pos + len > EXT4_MIN_INLINE_DATA_SIZE ?
226 EXT4_MIN_INLINE_DATA_SIZE - pos : len;
227 memcpy((void *)raw_inode->i_block + pos, buffer, cp_len);
228
229 len -= cp_len;
230 buffer += cp_len;
231 pos += cp_len;
232 }
233
234 if (!len)
235 return;
236
237 pos -= EXT4_MIN_INLINE_DATA_SIZE;
238 header = IHDR(inode, raw_inode);
239 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
240 EXT4_I(inode)->i_inline_off);
241
242 memcpy((void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs) + pos,
243 buffer, len);
244}
245
246static int ext4_create_inline_data(handle_t *handle,
247 struct inode *inode, unsigned len)
248{
249 int error;
250 void *value = NULL;
251 struct ext4_xattr_ibody_find is = {
252 .s = { .not_found = -ENODATA, },
253 };
254 struct ext4_xattr_info i = {
255 .name_index = EXT4_XATTR_INDEX_SYSTEM,
256 .name = EXT4_XATTR_SYSTEM_DATA,
257 };
258
259 error = ext4_get_inode_loc(inode, &is.iloc);
260 if (error)
261 return error;
262
liang xie5d601252014-05-12 22:06:43 -0400263 BUFFER_TRACE(is.iloc.bh, "get_write_access");
Tao Ma67cf5b02012-12-10 14:04:46 -0500264 error = ext4_journal_get_write_access(handle, is.iloc.bh);
265 if (error)
266 goto out;
267
268 if (len > EXT4_MIN_INLINE_DATA_SIZE) {
Theodore Ts'obd9926e2012-12-11 03:31:49 -0500269 value = EXT4_ZERO_XATTR_VALUE;
Tao Ma67cf5b02012-12-10 14:04:46 -0500270 len -= EXT4_MIN_INLINE_DATA_SIZE;
271 } else {
272 value = "";
273 len = 0;
274 }
275
276 /* Insert the the xttr entry. */
277 i.value = value;
278 i.value_len = len;
279
280 error = ext4_xattr_ibody_find(inode, &i, &is);
281 if (error)
282 goto out;
283
284 BUG_ON(!is.s.not_found);
285
Tao Ma0d812f72012-12-10 14:06:02 -0500286 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
Tao Ma67cf5b02012-12-10 14:04:46 -0500287 if (error) {
288 if (error == -ENOSPC)
289 ext4_clear_inode_state(inode,
290 EXT4_STATE_MAY_INLINE_DATA);
291 goto out;
292 }
293
294 memset((void *)ext4_raw_inode(&is.iloc)->i_block,
295 0, EXT4_MIN_INLINE_DATA_SIZE);
296
297 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
298 (void *)ext4_raw_inode(&is.iloc));
299 EXT4_I(inode)->i_inline_size = len + EXT4_MIN_INLINE_DATA_SIZE;
300 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
301 ext4_set_inode_flag(inode, EXT4_INODE_INLINE_DATA);
Jan Karaa3caa242016-11-20 17:32:59 -0500302 /*
303 * Propagate changes to inode->i_flags as well - e.g. S_DAX may
304 * get cleared
305 */
306 ext4_set_inode_flags(inode);
Tao Ma67cf5b02012-12-10 14:04:46 -0500307 get_bh(is.iloc.bh);
308 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
309
310out:
311 brelse(is.iloc.bh);
312 return error;
313}
314
315static int ext4_update_inline_data(handle_t *handle, struct inode *inode,
316 unsigned int len)
317{
318 int error;
319 void *value = NULL;
320 struct ext4_xattr_ibody_find is = {
321 .s = { .not_found = -ENODATA, },
322 };
323 struct ext4_xattr_info i = {
324 .name_index = EXT4_XATTR_INDEX_SYSTEM,
325 .name = EXT4_XATTR_SYSTEM_DATA,
326 };
327
328 /* If the old space is ok, write the data directly. */
329 if (len <= EXT4_I(inode)->i_inline_size)
330 return 0;
331
332 error = ext4_get_inode_loc(inode, &is.iloc);
333 if (error)
334 return error;
335
336 error = ext4_xattr_ibody_find(inode, &i, &is);
337 if (error)
338 goto out;
339
340 BUG_ON(is.s.not_found);
341
342 len -= EXT4_MIN_INLINE_DATA_SIZE;
343 value = kzalloc(len, GFP_NOFS);
Dan Carpenter578620f2016-12-10 09:56:01 -0500344 if (!value) {
345 error = -ENOMEM;
Tao Ma67cf5b02012-12-10 14:04:46 -0500346 goto out;
Dan Carpenter578620f2016-12-10 09:56:01 -0500347 }
Tao Ma67cf5b02012-12-10 14:04:46 -0500348
349 error = ext4_xattr_ibody_get(inode, i.name_index, i.name,
350 value, len);
351 if (error == -ENODATA)
352 goto out;
353
liang xie5d601252014-05-12 22:06:43 -0400354 BUFFER_TRACE(is.iloc.bh, "get_write_access");
Tao Ma67cf5b02012-12-10 14:04:46 -0500355 error = ext4_journal_get_write_access(handle, is.iloc.bh);
356 if (error)
357 goto out;
358
359 /* Update the xttr entry. */
360 i.value = value;
361 i.value_len = len;
362
Tao Ma0d812f72012-12-10 14:06:02 -0500363 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
Tao Ma67cf5b02012-12-10 14:04:46 -0500364 if (error)
365 goto out;
366
367 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
368 (void *)ext4_raw_inode(&is.iloc));
369 EXT4_I(inode)->i_inline_size = EXT4_MIN_INLINE_DATA_SIZE +
370 le32_to_cpu(is.s.here->e_value_size);
371 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
372 get_bh(is.iloc.bh);
373 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
374
375out:
376 kfree(value);
377 brelse(is.iloc.bh);
378 return error;
379}
380
Stephen Hemmingerc1978552014-05-12 10:50:23 -0400381static int ext4_prepare_inline_data(handle_t *handle, struct inode *inode,
382 unsigned int len)
Tao Ma67cf5b02012-12-10 14:04:46 -0500383{
Theodore Ts'oc755e252017-01-11 21:50:46 -0500384 int ret, size, no_expand;
Tao Ma67cf5b02012-12-10 14:04:46 -0500385 struct ext4_inode_info *ei = EXT4_I(inode);
386
387 if (!ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA))
388 return -ENOSPC;
389
390 size = ext4_get_max_inline_size(inode);
391 if (size < len)
392 return -ENOSPC;
393
Theodore Ts'oc755e252017-01-11 21:50:46 -0500394 ext4_write_lock_xattr(inode, &no_expand);
Tao Ma67cf5b02012-12-10 14:04:46 -0500395
396 if (ei->i_inline_off)
397 ret = ext4_update_inline_data(handle, inode, len);
398 else
399 ret = ext4_create_inline_data(handle, inode, len);
400
Theodore Ts'oc755e252017-01-11 21:50:46 -0500401 ext4_write_unlock_xattr(inode, &no_expand);
Tao Ma67cf5b02012-12-10 14:04:46 -0500402 return ret;
403}
404
405static int ext4_destroy_inline_data_nolock(handle_t *handle,
406 struct inode *inode)
407{
408 struct ext4_inode_info *ei = EXT4_I(inode);
409 struct ext4_xattr_ibody_find is = {
410 .s = { .not_found = 0, },
411 };
412 struct ext4_xattr_info i = {
413 .name_index = EXT4_XATTR_INDEX_SYSTEM,
414 .name = EXT4_XATTR_SYSTEM_DATA,
415 .value = NULL,
416 .value_len = 0,
417 };
418 int error;
419
420 if (!ei->i_inline_off)
421 return 0;
422
423 error = ext4_get_inode_loc(inode, &is.iloc);
424 if (error)
425 return error;
426
427 error = ext4_xattr_ibody_find(inode, &i, &is);
428 if (error)
429 goto out;
430
liang xie5d601252014-05-12 22:06:43 -0400431 BUFFER_TRACE(is.iloc.bh, "get_write_access");
Tao Ma67cf5b02012-12-10 14:04:46 -0500432 error = ext4_journal_get_write_access(handle, is.iloc.bh);
433 if (error)
434 goto out;
435
Tao Ma0d812f72012-12-10 14:06:02 -0500436 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
Tao Ma67cf5b02012-12-10 14:04:46 -0500437 if (error)
438 goto out;
439
440 memset((void *)ext4_raw_inode(&is.iloc)->i_block,
441 0, EXT4_MIN_INLINE_DATA_SIZE);
442
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400443 if (ext4_has_feature_extents(inode->i_sb)) {
Tao Ma67cf5b02012-12-10 14:04:46 -0500444 if (S_ISDIR(inode->i_mode) ||
445 S_ISREG(inode->i_mode) || S_ISLNK(inode->i_mode)) {
446 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
447 ext4_ext_tree_init(handle, inode);
448 }
449 }
450 ext4_clear_inode_flag(inode, EXT4_INODE_INLINE_DATA);
Jan Karaa3caa242016-11-20 17:32:59 -0500451 /*
452 * Propagate changes to inode->i_flags as well - e.g. S_DAX may
453 * get set.
454 */
455 ext4_set_inode_flags(inode);
Tao Ma67cf5b02012-12-10 14:04:46 -0500456
457 get_bh(is.iloc.bh);
458 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
459
460 EXT4_I(inode)->i_inline_off = 0;
461 EXT4_I(inode)->i_inline_size = 0;
462 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
463out:
464 brelse(is.iloc.bh);
465 if (error == -ENODATA)
466 error = 0;
467 return error;
468}
469
Tao Ma46c7f252012-12-10 14:04:52 -0500470static int ext4_read_inline_page(struct inode *inode, struct page *page)
471{
472 void *kaddr;
473 int ret = 0;
474 size_t len;
475 struct ext4_iloc iloc;
476
477 BUG_ON(!PageLocked(page));
478 BUG_ON(!ext4_has_inline_data(inode));
479 BUG_ON(page->index);
480
481 if (!EXT4_I(inode)->i_inline_off) {
482 ext4_warning(inode->i_sb, "inode %lu doesn't have inline data.",
483 inode->i_ino);
484 goto out;
485 }
486
487 ret = ext4_get_inode_loc(inode, &iloc);
488 if (ret)
489 goto out;
490
491 len = min_t(size_t, ext4_get_inline_size(inode), i_size_read(inode));
492 kaddr = kmap_atomic(page);
493 ret = ext4_read_inline_data(inode, kaddr, len, &iloc);
494 flush_dcache_page(page);
495 kunmap_atomic(kaddr);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300496 zero_user_segment(page, len, PAGE_SIZE);
Tao Ma46c7f252012-12-10 14:04:52 -0500497 SetPageUptodate(page);
498 brelse(iloc.bh);
499
500out:
501 return ret;
502}
503
504int ext4_readpage_inline(struct inode *inode, struct page *page)
505{
506 int ret = 0;
507
508 down_read(&EXT4_I(inode)->xattr_sem);
509 if (!ext4_has_inline_data(inode)) {
510 up_read(&EXT4_I(inode)->xattr_sem);
511 return -EAGAIN;
512 }
513
514 /*
515 * Current inline data can only exist in the 1st page,
516 * So for all the other pages, just set them uptodate.
517 */
518 if (!page->index)
519 ret = ext4_read_inline_page(inode, page);
520 else if (!PageUptodate(page)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300521 zero_user_segment(page, 0, PAGE_SIZE);
Tao Ma46c7f252012-12-10 14:04:52 -0500522 SetPageUptodate(page);
523 }
524
525 up_read(&EXT4_I(inode)->xattr_sem);
526
527 unlock_page(page);
528 return ret >= 0 ? 0 : ret;
529}
530
Tao Maf19d5872012-12-10 14:05:51 -0500531static int ext4_convert_inline_data_to_extent(struct address_space *mapping,
532 struct inode *inode,
533 unsigned flags)
534{
Theodore Ts'oc755e252017-01-11 21:50:46 -0500535 int ret, needed_blocks, no_expand;
Tao Maf19d5872012-12-10 14:05:51 -0500536 handle_t *handle = NULL;
537 int retries = 0, sem_held = 0;
538 struct page *page = NULL;
539 unsigned from, to;
540 struct ext4_iloc iloc;
541
542 if (!ext4_has_inline_data(inode)) {
543 /*
544 * clear the flag so that no new write
545 * will trap here again.
546 */
547 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
548 return 0;
549 }
550
551 needed_blocks = ext4_writepage_trans_blocks(inode);
552
553 ret = ext4_get_inode_loc(inode, &iloc);
554 if (ret)
555 return ret;
556
557retry:
Theodore Ts'o9924a922013-02-08 21:59:22 -0500558 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Tao Maf19d5872012-12-10 14:05:51 -0500559 if (IS_ERR(handle)) {
560 ret = PTR_ERR(handle);
561 handle = NULL;
562 goto out;
563 }
564
565 /* We cannot recurse into the filesystem as the transaction is already
566 * started */
567 flags |= AOP_FLAG_NOFS;
568
569 page = grab_cache_page_write_begin(mapping, 0, flags);
570 if (!page) {
571 ret = -ENOMEM;
572 goto out;
573 }
574
Theodore Ts'oc755e252017-01-11 21:50:46 -0500575 ext4_write_lock_xattr(inode, &no_expand);
Tao Maf19d5872012-12-10 14:05:51 -0500576 sem_held = 1;
577 /* If some one has already done this for us, just exit. */
578 if (!ext4_has_inline_data(inode)) {
579 ret = 0;
580 goto out;
581 }
582
583 from = 0;
584 to = ext4_get_inline_size(inode);
585 if (!PageUptodate(page)) {
586 ret = ext4_read_inline_page(inode, page);
587 if (ret < 0)
588 goto out;
589 }
590
591 ret = ext4_destroy_inline_data_nolock(handle, inode);
592 if (ret)
593 goto out;
594
Jan Kara705965b2016-03-08 23:08:10 -0500595 if (ext4_should_dioread_nolock(inode)) {
596 ret = __block_write_begin(page, from, to,
597 ext4_get_block_unwritten);
598 } else
Tao Maf19d5872012-12-10 14:05:51 -0500599 ret = __block_write_begin(page, from, to, ext4_get_block);
600
601 if (!ret && ext4_should_journal_data(inode)) {
602 ret = ext4_walk_page_buffers(handle, page_buffers(page),
603 from, to, NULL,
604 do_journal_get_write_access);
605 }
606
607 if (ret) {
608 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300609 put_page(page);
Darrick J. Wong684de5742014-09-11 11:45:12 -0400610 page = NULL;
Tao Maf19d5872012-12-10 14:05:51 -0500611 ext4_orphan_add(handle, inode);
Theodore Ts'oc755e252017-01-11 21:50:46 -0500612 ext4_write_unlock_xattr(inode, &no_expand);
Tao Maf19d5872012-12-10 14:05:51 -0500613 sem_held = 0;
614 ext4_journal_stop(handle);
615 handle = NULL;
616 ext4_truncate_failed_write(inode);
617 /*
618 * If truncate failed early the inode might
619 * still be on the orphan list; we need to
620 * make sure the inode is removed from the
621 * orphan list in that case.
622 */
623 if (inode->i_nlink)
624 ext4_orphan_del(NULL, inode);
625 }
626
627 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
628 goto retry;
629
Darrick J. Wong684de5742014-09-11 11:45:12 -0400630 if (page)
631 block_commit_write(page, from, to);
Tao Maf19d5872012-12-10 14:05:51 -0500632out:
633 if (page) {
634 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300635 put_page(page);
Tao Maf19d5872012-12-10 14:05:51 -0500636 }
637 if (sem_held)
Theodore Ts'oc755e252017-01-11 21:50:46 -0500638 ext4_write_unlock_xattr(inode, &no_expand);
Tao Maf19d5872012-12-10 14:05:51 -0500639 if (handle)
640 ext4_journal_stop(handle);
641 brelse(iloc.bh);
642 return ret;
643}
644
645/*
646 * Try to write data in the inode.
647 * If the inode has inline data, check whether the new write can be
648 * in the inode also. If not, create the page the handle, move the data
649 * to the page make it update and let the later codes create extent for it.
650 */
651int ext4_try_to_write_inline_data(struct address_space *mapping,
652 struct inode *inode,
653 loff_t pos, unsigned len,
654 unsigned flags,
655 struct page **pagep)
656{
657 int ret;
658 handle_t *handle;
659 struct page *page;
660 struct ext4_iloc iloc;
661
662 if (pos + len > ext4_get_max_inline_size(inode))
663 goto convert;
664
665 ret = ext4_get_inode_loc(inode, &iloc);
666 if (ret)
667 return ret;
668
669 /*
670 * The possible write could happen in the inode,
671 * so try to reserve the space in inode first.
672 */
Theodore Ts'o9924a922013-02-08 21:59:22 -0500673 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Tao Maf19d5872012-12-10 14:05:51 -0500674 if (IS_ERR(handle)) {
675 ret = PTR_ERR(handle);
676 handle = NULL;
677 goto out;
678 }
679
680 ret = ext4_prepare_inline_data(handle, inode, pos + len);
681 if (ret && ret != -ENOSPC)
682 goto out;
683
684 /* We don't have space in inline inode, so convert it to extent. */
685 if (ret == -ENOSPC) {
686 ext4_journal_stop(handle);
687 brelse(iloc.bh);
688 goto convert;
689 }
690
691 flags |= AOP_FLAG_NOFS;
692
693 page = grab_cache_page_write_begin(mapping, 0, flags);
694 if (!page) {
695 ret = -ENOMEM;
696 goto out;
697 }
698
699 *pagep = page;
700 down_read(&EXT4_I(inode)->xattr_sem);
701 if (!ext4_has_inline_data(inode)) {
702 ret = 0;
703 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300704 put_page(page);
Tao Maf19d5872012-12-10 14:05:51 -0500705 goto out_up_read;
706 }
707
708 if (!PageUptodate(page)) {
709 ret = ext4_read_inline_page(inode, page);
710 if (ret < 0)
711 goto out_up_read;
712 }
713
714 ret = 1;
715 handle = NULL;
716out_up_read:
717 up_read(&EXT4_I(inode)->xattr_sem);
718out:
719 if (handle)
720 ext4_journal_stop(handle);
721 brelse(iloc.bh);
722 return ret;
723convert:
724 return ext4_convert_inline_data_to_extent(mapping,
725 inode, flags);
726}
727
728int ext4_write_inline_data_end(struct inode *inode, loff_t pos, unsigned len,
729 unsigned copied, struct page *page)
730{
Theodore Ts'oc755e252017-01-11 21:50:46 -0500731 int ret, no_expand;
Tao Maf19d5872012-12-10 14:05:51 -0500732 void *kaddr;
733 struct ext4_iloc iloc;
734
735 if (unlikely(copied < len)) {
736 if (!PageUptodate(page)) {
737 copied = 0;
738 goto out;
739 }
740 }
741
742 ret = ext4_get_inode_loc(inode, &iloc);
743 if (ret) {
744 ext4_std_error(inode->i_sb, ret);
745 copied = 0;
746 goto out;
747 }
748
Theodore Ts'oc755e252017-01-11 21:50:46 -0500749 ext4_write_lock_xattr(inode, &no_expand);
Tao Maf19d5872012-12-10 14:05:51 -0500750 BUG_ON(!ext4_has_inline_data(inode));
751
752 kaddr = kmap_atomic(page);
753 ext4_write_inline_data(inode, &iloc, kaddr, pos, len);
754 kunmap_atomic(kaddr);
755 SetPageUptodate(page);
756 /* clear page dirty so that writepages wouldn't work for us. */
757 ClearPageDirty(page);
758
Theodore Ts'oc755e252017-01-11 21:50:46 -0500759 ext4_write_unlock_xattr(inode, &no_expand);
Tao Maf19d5872012-12-10 14:05:51 -0500760 brelse(iloc.bh);
761out:
762 return copied;
763}
764
Tao Ma3fdcfb62012-12-10 14:05:57 -0500765struct buffer_head *
766ext4_journalled_write_inline_data(struct inode *inode,
767 unsigned len,
768 struct page *page)
769{
Theodore Ts'oc755e252017-01-11 21:50:46 -0500770 int ret, no_expand;
Tao Ma3fdcfb62012-12-10 14:05:57 -0500771 void *kaddr;
772 struct ext4_iloc iloc;
773
774 ret = ext4_get_inode_loc(inode, &iloc);
775 if (ret) {
776 ext4_std_error(inode->i_sb, ret);
777 return NULL;
778 }
779
Theodore Ts'oc755e252017-01-11 21:50:46 -0500780 ext4_write_lock_xattr(inode, &no_expand);
Tao Ma3fdcfb62012-12-10 14:05:57 -0500781 kaddr = kmap_atomic(page);
782 ext4_write_inline_data(inode, &iloc, kaddr, 0, len);
783 kunmap_atomic(kaddr);
Theodore Ts'oc755e252017-01-11 21:50:46 -0500784 ext4_write_unlock_xattr(inode, &no_expand);
Tao Ma3fdcfb62012-12-10 14:05:57 -0500785
786 return iloc.bh;
787}
788
Tao Ma9c3569b2012-12-10 14:05:57 -0500789/*
790 * Try to make the page cache and handle ready for the inline data case.
791 * We can call this function in 2 cases:
792 * 1. The inode is created and the first write exceeds inline size. We can
793 * clear the inode state safely.
794 * 2. The inode has inline data, then we need to read the data, make it
795 * update and dirty so that ext4_da_writepages can handle it. We don't
796 * need to start the journal since the file's metatdata isn't changed now.
797 */
798static int ext4_da_convert_inline_data_to_extent(struct address_space *mapping,
799 struct inode *inode,
800 unsigned flags,
801 void **fsdata)
802{
803 int ret = 0, inline_size;
804 struct page *page;
805
806 page = grab_cache_page_write_begin(mapping, 0, flags);
807 if (!page)
808 return -ENOMEM;
809
810 down_read(&EXT4_I(inode)->xattr_sem);
811 if (!ext4_has_inline_data(inode)) {
812 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
813 goto out;
814 }
815
816 inline_size = ext4_get_inline_size(inode);
817
818 if (!PageUptodate(page)) {
819 ret = ext4_read_inline_page(inode, page);
820 if (ret < 0)
821 goto out;
822 }
823
824 ret = __block_write_begin(page, 0, inline_size,
825 ext4_da_get_block_prep);
826 if (ret) {
Dmitry Monakhov50db71a2014-12-05 21:37:15 -0500827 up_read(&EXT4_I(inode)->xattr_sem);
828 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300829 put_page(page);
Tao Ma9c3569b2012-12-10 14:05:57 -0500830 ext4_truncate_failed_write(inode);
Dmitry Monakhov50db71a2014-12-05 21:37:15 -0500831 return ret;
Tao Ma9c3569b2012-12-10 14:05:57 -0500832 }
833
834 SetPageDirty(page);
835 SetPageUptodate(page);
836 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
837 *fsdata = (void *)CONVERT_INLINE_DATA;
838
839out:
840 up_read(&EXT4_I(inode)->xattr_sem);
841 if (page) {
842 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300843 put_page(page);
Tao Ma9c3569b2012-12-10 14:05:57 -0500844 }
845 return ret;
846}
847
848/*
849 * Prepare the write for the inline data.
850 * If the the data can be written into the inode, we just read
851 * the page and make it uptodate, and start the journal.
852 * Otherwise read the page, makes it dirty so that it can be
853 * handle in writepages(the i_disksize update is left to the
854 * normal ext4_da_write_end).
855 */
856int ext4_da_write_inline_data_begin(struct address_space *mapping,
857 struct inode *inode,
858 loff_t pos, unsigned len,
859 unsigned flags,
860 struct page **pagep,
861 void **fsdata)
862{
863 int ret, inline_size;
864 handle_t *handle;
865 struct page *page;
866 struct ext4_iloc iloc;
Jan Karabc0ca9df2014-01-06 14:02:23 -0500867 int retries;
Tao Ma9c3569b2012-12-10 14:05:57 -0500868
869 ret = ext4_get_inode_loc(inode, &iloc);
870 if (ret)
871 return ret;
872
Jan Karabc0ca9df2014-01-06 14:02:23 -0500873retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -0500874 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Tao Ma9c3569b2012-12-10 14:05:57 -0500875 if (IS_ERR(handle)) {
876 ret = PTR_ERR(handle);
Tao Ma9c3569b2012-12-10 14:05:57 -0500877 goto out;
878 }
879
880 inline_size = ext4_get_max_inline_size(inode);
881
882 ret = -ENOSPC;
883 if (inline_size >= pos + len) {
884 ret = ext4_prepare_inline_data(handle, inode, pos + len);
885 if (ret && ret != -ENOSPC)
Jan Kara52e44772014-01-06 14:03:23 -0500886 goto out_journal;
Tao Ma9c3569b2012-12-10 14:05:57 -0500887 }
888
Dmitry Monakhov5cc28a92014-12-02 16:09:50 -0500889 /*
890 * We cannot recurse into the filesystem as the transaction
891 * is already started.
892 */
893 flags |= AOP_FLAG_NOFS;
894
Tao Ma9c3569b2012-12-10 14:05:57 -0500895 if (ret == -ENOSPC) {
896 ret = ext4_da_convert_inline_data_to_extent(mapping,
897 inode,
898 flags,
899 fsdata);
Jan Karabc0ca9df2014-01-06 14:02:23 -0500900 ext4_journal_stop(handle);
Jan Karabc0ca9df2014-01-06 14:02:23 -0500901 if (ret == -ENOSPC &&
902 ext4_should_retry_alloc(inode->i_sb, &retries))
903 goto retry_journal;
Tao Ma9c3569b2012-12-10 14:05:57 -0500904 goto out;
905 }
906
Tao Ma9c3569b2012-12-10 14:05:57 -0500907
908 page = grab_cache_page_write_begin(mapping, 0, flags);
909 if (!page) {
910 ret = -ENOMEM;
Jan Kara52e44772014-01-06 14:03:23 -0500911 goto out_journal;
Tao Ma9c3569b2012-12-10 14:05:57 -0500912 }
913
914 down_read(&EXT4_I(inode)->xattr_sem);
915 if (!ext4_has_inline_data(inode)) {
916 ret = 0;
917 goto out_release_page;
918 }
919
920 if (!PageUptodate(page)) {
921 ret = ext4_read_inline_page(inode, page);
922 if (ret < 0)
923 goto out_release_page;
924 }
925
926 up_read(&EXT4_I(inode)->xattr_sem);
927 *pagep = page;
Tao Ma9c3569b2012-12-10 14:05:57 -0500928 brelse(iloc.bh);
929 return 1;
930out_release_page:
931 up_read(&EXT4_I(inode)->xattr_sem);
932 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300933 put_page(page);
Jan Kara52e44772014-01-06 14:03:23 -0500934out_journal:
935 ext4_journal_stop(handle);
Tao Ma9c3569b2012-12-10 14:05:57 -0500936out:
Tao Ma9c3569b2012-12-10 14:05:57 -0500937 brelse(iloc.bh);
938 return ret;
939}
940
941int ext4_da_write_inline_data_end(struct inode *inode, loff_t pos,
942 unsigned len, unsigned copied,
943 struct page *page)
944{
945 int i_size_changed = 0;
946
947 copied = ext4_write_inline_data_end(inode, pos, len, copied, page);
948
949 /*
950 * No need to use i_size_read() here, the i_size
951 * cannot change under us because we hold i_mutex.
952 *
953 * But it's important to update i_size while still holding page lock:
954 * page writeout could otherwise come in and zero beyond i_size.
955 */
956 if (pos+copied > inode->i_size) {
957 i_size_write(inode, pos+copied);
958 i_size_changed = 1;
959 }
960 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300961 put_page(page);
Tao Ma9c3569b2012-12-10 14:05:57 -0500962
963 /*
964 * Don't mark the inode dirty under page lock. First, it unnecessarily
965 * makes the holding time of page lock longer. Second, it forces lock
966 * ordering of page lock and transaction start for journaling
967 * filesystems.
968 */
969 if (i_size_changed)
970 mark_inode_dirty(inode);
971
972 return copied;
973}
Tao Maf19d5872012-12-10 14:05:51 -0500974
Tao Ma3c47d542012-12-10 14:05:59 -0500975#ifdef INLINE_DIR_DEBUG
976void ext4_show_inline_dir(struct inode *dir, struct buffer_head *bh,
977 void *inline_start, int inline_size)
978{
979 int offset;
980 unsigned short de_len;
981 struct ext4_dir_entry_2 *de = inline_start;
982 void *dlimit = inline_start + inline_size;
983
984 trace_printk("inode %lu\n", dir->i_ino);
985 offset = 0;
986 while ((void *)de < dlimit) {
987 de_len = ext4_rec_len_from_disk(de->rec_len, inline_size);
Rasmus Villemoes80cfb712015-04-02 16:42:43 -0400988 trace_printk("de: off %u rlen %u name %.*s nlen %u ino %u\n",
Tao Ma3c47d542012-12-10 14:05:59 -0500989 offset, de_len, de->name_len, de->name,
990 de->name_len, le32_to_cpu(de->inode));
991 if (ext4_check_dir_entry(dir, NULL, de, bh,
992 inline_start, inline_size, offset))
993 BUG();
994
995 offset += de_len;
996 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
997 }
998}
999#else
1000#define ext4_show_inline_dir(dir, bh, inline_start, inline_size)
1001#endif
1002
1003/*
1004 * Add a new entry into a inline dir.
1005 * It will return -ENOSPC if no space is available, and -EIO
1006 * and -EEXIST if directory entry already exists.
1007 */
1008static int ext4_add_dirent_to_inline(handle_t *handle,
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001009 struct ext4_filename *fname,
Theodore Ts'o56a04912016-01-08 16:00:31 -05001010 struct inode *dir,
Tao Ma3c47d542012-12-10 14:05:59 -05001011 struct inode *inode,
1012 struct ext4_iloc *iloc,
1013 void *inline_start, int inline_size)
1014{
Tao Ma3c47d542012-12-10 14:05:59 -05001015 int err;
1016 struct ext4_dir_entry_2 *de;
1017
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001018 err = ext4_find_dest_de(dir, inode, iloc->bh, inline_start,
1019 inline_size, fname, &de);
Tao Ma3c47d542012-12-10 14:05:59 -05001020 if (err)
1021 return err;
1022
liang xie5d601252014-05-12 22:06:43 -04001023 BUFFER_TRACE(iloc->bh, "get_write_access");
Tao Ma3c47d542012-12-10 14:05:59 -05001024 err = ext4_journal_get_write_access(handle, iloc->bh);
1025 if (err)
1026 return err;
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001027 ext4_insert_dentry(dir, inode, de, inline_size, fname);
Tao Ma3c47d542012-12-10 14:05:59 -05001028
1029 ext4_show_inline_dir(dir, iloc->bh, inline_start, inline_size);
1030
1031 /*
1032 * XXX shouldn't update any times until successful
1033 * completion of syscall, but too many callers depend
1034 * on this.
1035 *
1036 * XXX similarly, too many callers depend on
1037 * ext4_new_inode() setting the times, but error
1038 * recovery deletes the inode, so the worst that can
1039 * happen is that the times are slightly out of date
1040 * and/or different from the directory change time.
1041 */
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05001042 dir->i_mtime = dir->i_ctime = current_time(dir);
Tao Ma3c47d542012-12-10 14:05:59 -05001043 ext4_update_dx_flag(dir);
1044 dir->i_version++;
Tao Ma3c47d542012-12-10 14:05:59 -05001045 return 1;
1046}
1047
1048static void *ext4_get_inline_xattr_pos(struct inode *inode,
1049 struct ext4_iloc *iloc)
1050{
1051 struct ext4_xattr_entry *entry;
1052 struct ext4_xattr_ibody_header *header;
1053
1054 BUG_ON(!EXT4_I(inode)->i_inline_off);
1055
1056 header = IHDR(inode, ext4_raw_inode(iloc));
1057 entry = (struct ext4_xattr_entry *)((void *)ext4_raw_inode(iloc) +
1058 EXT4_I(inode)->i_inline_off);
1059
1060 return (void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs);
1061}
1062
1063/* Set the final de to cover the whole block. */
1064static void ext4_update_final_de(void *de_buf, int old_size, int new_size)
1065{
1066 struct ext4_dir_entry_2 *de, *prev_de;
1067 void *limit;
1068 int de_len;
1069
1070 de = (struct ext4_dir_entry_2 *)de_buf;
1071 if (old_size) {
1072 limit = de_buf + old_size;
1073 do {
1074 prev_de = de;
1075 de_len = ext4_rec_len_from_disk(de->rec_len, old_size);
1076 de_buf += de_len;
1077 de = (struct ext4_dir_entry_2 *)de_buf;
1078 } while (de_buf < limit);
1079
1080 prev_de->rec_len = ext4_rec_len_to_disk(de_len + new_size -
1081 old_size, new_size);
1082 } else {
1083 /* this is just created, so create an empty entry. */
1084 de->inode = 0;
1085 de->rec_len = ext4_rec_len_to_disk(new_size, new_size);
1086 }
1087}
1088
1089static int ext4_update_inline_dir(handle_t *handle, struct inode *dir,
1090 struct ext4_iloc *iloc)
1091{
1092 int ret;
1093 int old_size = EXT4_I(dir)->i_inline_size - EXT4_MIN_INLINE_DATA_SIZE;
1094 int new_size = get_max_inline_xattr_value_size(dir, iloc);
1095
1096 if (new_size - old_size <= EXT4_DIR_REC_LEN(1))
1097 return -ENOSPC;
1098
1099 ret = ext4_update_inline_data(handle, dir,
1100 new_size + EXT4_MIN_INLINE_DATA_SIZE);
1101 if (ret)
1102 return ret;
1103
1104 ext4_update_final_de(ext4_get_inline_xattr_pos(dir, iloc), old_size,
1105 EXT4_I(dir)->i_inline_size -
1106 EXT4_MIN_INLINE_DATA_SIZE);
1107 dir->i_size = EXT4_I(dir)->i_disksize = EXT4_I(dir)->i_inline_size;
1108 return 0;
1109}
1110
1111static void ext4_restore_inline_data(handle_t *handle, struct inode *inode,
1112 struct ext4_iloc *iloc,
1113 void *buf, int inline_size)
1114{
1115 ext4_create_inline_data(handle, inode, inline_size);
1116 ext4_write_inline_data(inode, iloc, buf, 0, inline_size);
1117 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1118}
1119
1120static int ext4_finish_convert_inline_dir(handle_t *handle,
1121 struct inode *inode,
1122 struct buffer_head *dir_block,
1123 void *buf,
1124 int inline_size)
1125{
1126 int err, csum_size = 0, header_size = 0;
1127 struct ext4_dir_entry_2 *de;
1128 struct ext4_dir_entry_tail *t;
1129 void *target = dir_block->b_data;
1130
1131 /*
1132 * First create "." and ".." and then copy the dir information
1133 * back to the block.
1134 */
1135 de = (struct ext4_dir_entry_2 *)target;
1136 de = ext4_init_dot_dotdot(inode, de,
1137 inode->i_sb->s_blocksize, csum_size,
1138 le32_to_cpu(((struct ext4_dir_entry_2 *)buf)->inode), 1);
1139 header_size = (void *)de - target;
1140
1141 memcpy((void *)de, buf + EXT4_INLINE_DOTDOT_SIZE,
1142 inline_size - EXT4_INLINE_DOTDOT_SIZE);
1143
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -04001144 if (ext4_has_metadata_csum(inode->i_sb))
Tao Ma3c47d542012-12-10 14:05:59 -05001145 csum_size = sizeof(struct ext4_dir_entry_tail);
1146
1147 inode->i_size = inode->i_sb->s_blocksize;
1148 i_size_write(inode, inode->i_sb->s_blocksize);
1149 EXT4_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1150 ext4_update_final_de(dir_block->b_data,
1151 inline_size - EXT4_INLINE_DOTDOT_SIZE + header_size,
1152 inode->i_sb->s_blocksize - csum_size);
1153
1154 if (csum_size) {
1155 t = EXT4_DIRENT_TAIL(dir_block->b_data,
1156 inode->i_sb->s_blocksize);
1157 initialize_dirent_tail(t, inode->i_sb->s_blocksize);
1158 }
1159 set_buffer_uptodate(dir_block);
1160 err = ext4_handle_dirty_dirent_node(handle, inode, dir_block);
1161 if (err)
1162 goto out;
1163 set_buffer_verified(dir_block);
1164out:
1165 return err;
1166}
1167
1168static int ext4_convert_inline_data_nolock(handle_t *handle,
1169 struct inode *inode,
1170 struct ext4_iloc *iloc)
1171{
1172 int error;
1173 void *buf = NULL;
1174 struct buffer_head *data_bh = NULL;
1175 struct ext4_map_blocks map;
1176 int inline_size;
1177
1178 inline_size = ext4_get_inline_size(inode);
1179 buf = kmalloc(inline_size, GFP_NOFS);
1180 if (!buf) {
1181 error = -ENOMEM;
1182 goto out;
1183 }
1184
1185 error = ext4_read_inline_data(inode, buf, inline_size, iloc);
1186 if (error < 0)
1187 goto out;
1188
Darrick J. Wong40b163f2014-07-28 13:06:26 -04001189 /*
1190 * Make sure the inline directory entries pass checks before we try to
1191 * convert them, so that we avoid touching stuff that needs fsck.
1192 */
1193 if (S_ISDIR(inode->i_mode)) {
1194 error = ext4_check_all_de(inode, iloc->bh,
1195 buf + EXT4_INLINE_DOTDOT_SIZE,
1196 inline_size - EXT4_INLINE_DOTDOT_SIZE);
1197 if (error)
1198 goto out;
1199 }
1200
Tao Ma3c47d542012-12-10 14:05:59 -05001201 error = ext4_destroy_inline_data_nolock(handle, inode);
1202 if (error)
1203 goto out;
1204
1205 map.m_lblk = 0;
1206 map.m_len = 1;
1207 map.m_flags = 0;
1208 error = ext4_map_blocks(handle, inode, &map, EXT4_GET_BLOCKS_CREATE);
1209 if (error < 0)
1210 goto out_restore;
1211 if (!(map.m_flags & EXT4_MAP_MAPPED)) {
1212 error = -EIO;
1213 goto out_restore;
1214 }
1215
1216 data_bh = sb_getblk(inode->i_sb, map.m_pblk);
1217 if (!data_bh) {
Theodore Ts'o860d21e2013-01-12 16:19:36 -05001218 error = -ENOMEM;
Tao Ma3c47d542012-12-10 14:05:59 -05001219 goto out_restore;
1220 }
1221
1222 lock_buffer(data_bh);
1223 error = ext4_journal_get_create_access(handle, data_bh);
1224 if (error) {
1225 unlock_buffer(data_bh);
1226 error = -EIO;
1227 goto out_restore;
1228 }
1229 memset(data_bh->b_data, 0, inode->i_sb->s_blocksize);
1230
1231 if (!S_ISDIR(inode->i_mode)) {
1232 memcpy(data_bh->b_data, buf, inline_size);
1233 set_buffer_uptodate(data_bh);
1234 error = ext4_handle_dirty_metadata(handle,
1235 inode, data_bh);
1236 } else {
1237 error = ext4_finish_convert_inline_dir(handle, inode, data_bh,
1238 buf, inline_size);
1239 }
1240
1241 unlock_buffer(data_bh);
1242out_restore:
1243 if (error)
1244 ext4_restore_inline_data(handle, inode, iloc, buf, inline_size);
1245
1246out:
1247 brelse(data_bh);
1248 kfree(buf);
1249 return error;
1250}
1251
1252/*
1253 * Try to add the new entry to the inline data.
1254 * If succeeds, return 0. If not, extended the inline dir and copied data to
1255 * the new created block.
1256 */
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001257int ext4_try_add_inline_entry(handle_t *handle, struct ext4_filename *fname,
Theodore Ts'o56a04912016-01-08 16:00:31 -05001258 struct inode *dir, struct inode *inode)
Tao Ma3c47d542012-12-10 14:05:59 -05001259{
Theodore Ts'oc755e252017-01-11 21:50:46 -05001260 int ret, inline_size, no_expand;
Tao Ma3c47d542012-12-10 14:05:59 -05001261 void *inline_start;
1262 struct ext4_iloc iloc;
Tao Ma3c47d542012-12-10 14:05:59 -05001263
1264 ret = ext4_get_inode_loc(dir, &iloc);
1265 if (ret)
1266 return ret;
1267
Theodore Ts'oc755e252017-01-11 21:50:46 -05001268 ext4_write_lock_xattr(dir, &no_expand);
Tao Ma3c47d542012-12-10 14:05:59 -05001269 if (!ext4_has_inline_data(dir))
1270 goto out;
1271
1272 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1273 EXT4_INLINE_DOTDOT_SIZE;
1274 inline_size = EXT4_MIN_INLINE_DATA_SIZE - EXT4_INLINE_DOTDOT_SIZE;
1275
Theodore Ts'o56a04912016-01-08 16:00:31 -05001276 ret = ext4_add_dirent_to_inline(handle, fname, dir, inode, &iloc,
Tao Ma3c47d542012-12-10 14:05:59 -05001277 inline_start, inline_size);
1278 if (ret != -ENOSPC)
1279 goto out;
1280
1281 /* check whether it can be inserted to inline xattr space. */
1282 inline_size = EXT4_I(dir)->i_inline_size -
1283 EXT4_MIN_INLINE_DATA_SIZE;
1284 if (!inline_size) {
1285 /* Try to use the xattr space.*/
1286 ret = ext4_update_inline_dir(handle, dir, &iloc);
1287 if (ret && ret != -ENOSPC)
1288 goto out;
1289
1290 inline_size = EXT4_I(dir)->i_inline_size -
1291 EXT4_MIN_INLINE_DATA_SIZE;
1292 }
1293
1294 if (inline_size) {
1295 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1296
Theodore Ts'o56a04912016-01-08 16:00:31 -05001297 ret = ext4_add_dirent_to_inline(handle, fname, dir,
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001298 inode, &iloc, inline_start,
1299 inline_size);
Tao Ma3c47d542012-12-10 14:05:59 -05001300
1301 if (ret != -ENOSPC)
1302 goto out;
1303 }
1304
1305 /*
1306 * The inline space is filled up, so create a new block for it.
1307 * As the extent tree will be created, we have to save the inline
1308 * dir first.
1309 */
1310 ret = ext4_convert_inline_data_nolock(handle, dir, &iloc);
1311
1312out:
Theodore Ts'oc755e252017-01-11 21:50:46 -05001313 ext4_write_unlock_xattr(dir, &no_expand);
Theodore Ts'ob907f2d2017-01-11 22:14:49 -05001314 ext4_mark_inode_dirty(handle, dir);
Tao Ma3c47d542012-12-10 14:05:59 -05001315 brelse(iloc.bh);
1316 return ret;
1317}
1318
Tao Ma8af0f082013-04-19 17:53:09 -04001319/*
1320 * This function fills a red-black tree with information from an
1321 * inlined dir. It returns the number directory entries loaded
1322 * into the tree. If there is an error it is returned in err.
1323 */
1324int htree_inlinedir_to_tree(struct file *dir_file,
1325 struct inode *dir, ext4_lblk_t block,
1326 struct dx_hash_info *hinfo,
1327 __u32 start_hash, __u32 start_minor_hash,
1328 int *has_inline_data)
1329{
1330 int err = 0, count = 0;
1331 unsigned int parent_ino;
1332 int pos;
1333 struct ext4_dir_entry_2 *de;
1334 struct inode *inode = file_inode(dir_file);
1335 int ret, inline_size = 0;
1336 struct ext4_iloc iloc;
1337 void *dir_buf = NULL;
1338 struct ext4_dir_entry_2 fake;
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001339 struct fscrypt_str tmp_str;
Tao Ma8af0f082013-04-19 17:53:09 -04001340
1341 ret = ext4_get_inode_loc(inode, &iloc);
1342 if (ret)
1343 return ret;
1344
1345 down_read(&EXT4_I(inode)->xattr_sem);
1346 if (!ext4_has_inline_data(inode)) {
1347 up_read(&EXT4_I(inode)->xattr_sem);
1348 *has_inline_data = 0;
1349 goto out;
1350 }
1351
1352 inline_size = ext4_get_inline_size(inode);
1353 dir_buf = kmalloc(inline_size, GFP_NOFS);
1354 if (!dir_buf) {
1355 ret = -ENOMEM;
1356 up_read(&EXT4_I(inode)->xattr_sem);
1357 goto out;
1358 }
1359
1360 ret = ext4_read_inline_data(inode, dir_buf, inline_size, &iloc);
1361 up_read(&EXT4_I(inode)->xattr_sem);
1362 if (ret < 0)
1363 goto out;
1364
1365 pos = 0;
1366 parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode);
1367 while (pos < inline_size) {
1368 /*
1369 * As inlined dir doesn't store any information about '.' and
1370 * only the inode number of '..' is stored, we have to handle
1371 * them differently.
1372 */
1373 if (pos == 0) {
1374 fake.inode = cpu_to_le32(inode->i_ino);
1375 fake.name_len = 1;
1376 strcpy(fake.name, ".");
1377 fake.rec_len = ext4_rec_len_to_disk(
1378 EXT4_DIR_REC_LEN(fake.name_len),
1379 inline_size);
1380 ext4_set_de_type(inode->i_sb, &fake, S_IFDIR);
1381 de = &fake;
1382 pos = EXT4_INLINE_DOTDOT_OFFSET;
1383 } else if (pos == EXT4_INLINE_DOTDOT_OFFSET) {
1384 fake.inode = cpu_to_le32(parent_ino);
1385 fake.name_len = 2;
1386 strcpy(fake.name, "..");
1387 fake.rec_len = ext4_rec_len_to_disk(
1388 EXT4_DIR_REC_LEN(fake.name_len),
1389 inline_size);
1390 ext4_set_de_type(inode->i_sb, &fake, S_IFDIR);
1391 de = &fake;
1392 pos = EXT4_INLINE_DOTDOT_SIZE;
1393 } else {
1394 de = (struct ext4_dir_entry_2 *)(dir_buf + pos);
1395 pos += ext4_rec_len_from_disk(de->rec_len, inline_size);
1396 if (ext4_check_dir_entry(inode, dir_file, de,
1397 iloc.bh, dir_buf,
1398 inline_size, pos)) {
1399 ret = count;
1400 goto out;
1401 }
1402 }
1403
1404 ext4fs_dirhash(de->name, de->name_len, hinfo);
1405 if ((hinfo->hash < start_hash) ||
1406 ((hinfo->hash == start_hash) &&
1407 (hinfo->minor_hash < start_minor_hash)))
1408 continue;
1409 if (de->inode == 0)
1410 continue;
Theodore Ts'o2f618302015-04-12 00:56:26 -04001411 tmp_str.name = de->name;
1412 tmp_str.len = de->name_len;
1413 err = ext4_htree_store_dirent(dir_file, hinfo->hash,
1414 hinfo->minor_hash, de, &tmp_str);
Tao Ma8af0f082013-04-19 17:53:09 -04001415 if (err) {
1416 count = err;
1417 goto out;
1418 }
1419 count++;
1420 }
1421 ret = count;
1422out:
1423 kfree(dir_buf);
1424 brelse(iloc.bh);
1425 return ret;
1426}
1427
Tao Mac4d8b022013-04-19 17:55:33 -04001428/*
1429 * So this function is called when the volume is mkfsed with
1430 * dir_index disabled. In order to keep f_pos persistent
1431 * after we convert from an inlined dir to a blocked based,
1432 * we just pretend that we are a normal dir and return the
1433 * offset as if '.' and '..' really take place.
1434 *
1435 */
Al Viro725bebb2013-05-17 16:08:53 -04001436int ext4_read_inline_dir(struct file *file,
1437 struct dir_context *ctx,
Tao Ma65d165d2012-12-10 14:05:59 -05001438 int *has_inline_data)
1439{
Tao Ma65d165d2012-12-10 14:05:59 -05001440 unsigned int offset, parent_ino;
Al Viro725bebb2013-05-17 16:08:53 -04001441 int i;
Tao Ma65d165d2012-12-10 14:05:59 -05001442 struct ext4_dir_entry_2 *de;
1443 struct super_block *sb;
Al Viro725bebb2013-05-17 16:08:53 -04001444 struct inode *inode = file_inode(file);
Tao Ma65d165d2012-12-10 14:05:59 -05001445 int ret, inline_size = 0;
1446 struct ext4_iloc iloc;
1447 void *dir_buf = NULL;
Tao Mac4d8b022013-04-19 17:55:33 -04001448 int dotdot_offset, dotdot_size, extra_offset, extra_size;
Tao Ma65d165d2012-12-10 14:05:59 -05001449
1450 ret = ext4_get_inode_loc(inode, &iloc);
1451 if (ret)
1452 return ret;
1453
1454 down_read(&EXT4_I(inode)->xattr_sem);
1455 if (!ext4_has_inline_data(inode)) {
1456 up_read(&EXT4_I(inode)->xattr_sem);
1457 *has_inline_data = 0;
1458 goto out;
1459 }
1460
1461 inline_size = ext4_get_inline_size(inode);
1462 dir_buf = kmalloc(inline_size, GFP_NOFS);
1463 if (!dir_buf) {
1464 ret = -ENOMEM;
1465 up_read(&EXT4_I(inode)->xattr_sem);
1466 goto out;
1467 }
1468
1469 ret = ext4_read_inline_data(inode, dir_buf, inline_size, &iloc);
1470 up_read(&EXT4_I(inode)->xattr_sem);
1471 if (ret < 0)
1472 goto out;
1473
BoxiLiu48ffdab2013-10-30 08:07:20 -04001474 ret = 0;
Tao Ma65d165d2012-12-10 14:05:59 -05001475 sb = inode->i_sb;
Tao Ma65d165d2012-12-10 14:05:59 -05001476 parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode);
Al Viro725bebb2013-05-17 16:08:53 -04001477 offset = ctx->pos;
Tao Ma65d165d2012-12-10 14:05:59 -05001478
Tao Mac4d8b022013-04-19 17:55:33 -04001479 /*
1480 * dotdot_offset and dotdot_size is the real offset and
1481 * size for ".." and "." if the dir is block based while
1482 * the real size for them are only EXT4_INLINE_DOTDOT_SIZE.
1483 * So we will use extra_offset and extra_size to indicate them
1484 * during the inline dir iteration.
1485 */
1486 dotdot_offset = EXT4_DIR_REC_LEN(1);
1487 dotdot_size = dotdot_offset + EXT4_DIR_REC_LEN(2);
1488 extra_offset = dotdot_size - EXT4_INLINE_DOTDOT_SIZE;
1489 extra_size = extra_offset + inline_size;
1490
Al Viro725bebb2013-05-17 16:08:53 -04001491 /*
1492 * If the version has changed since the last call to
1493 * readdir(2), then we might be pointing to an invalid
1494 * dirent right now. Scan from the start of the inline
1495 * dir to make sure.
1496 */
1497 if (file->f_version != inode->i_version) {
1498 for (i = 0; i < extra_size && i < offset;) {
1499 /*
1500 * "." is with offset 0 and
1501 * ".." is dotdot_offset.
1502 */
1503 if (!i) {
1504 i = dotdot_offset;
1505 continue;
1506 } else if (i == dotdot_offset) {
1507 i = dotdot_size;
Tao Mac4d8b022013-04-19 17:55:33 -04001508 continue;
1509 }
Al Viro725bebb2013-05-17 16:08:53 -04001510 /* for other entry, the real offset in
1511 * the buf has to be tuned accordingly.
1512 */
Tao Mac4d8b022013-04-19 17:55:33 -04001513 de = (struct ext4_dir_entry_2 *)
Al Viro725bebb2013-05-17 16:08:53 -04001514 (dir_buf + i - extra_offset);
1515 /* It's too expensive to do a full
1516 * dirent test each time round this
1517 * loop, but we do have to test at
1518 * least that it is non-zero. A
1519 * failure will be detected in the
1520 * dirent test below. */
1521 if (ext4_rec_len_from_disk(de->rec_len, extra_size)
1522 < EXT4_DIR_REC_LEN(1))
1523 break;
1524 i += ext4_rec_len_from_disk(de->rec_len,
1525 extra_size);
Tao Ma65d165d2012-12-10 14:05:59 -05001526 }
Al Viro725bebb2013-05-17 16:08:53 -04001527 offset = i;
1528 ctx->pos = offset;
1529 file->f_version = inode->i_version;
1530 }
1531
1532 while (ctx->pos < extra_size) {
1533 if (ctx->pos == 0) {
1534 if (!dir_emit(ctx, ".", 1, inode->i_ino, DT_DIR))
1535 goto out;
1536 ctx->pos = dotdot_offset;
1537 continue;
1538 }
1539
1540 if (ctx->pos == dotdot_offset) {
1541 if (!dir_emit(ctx, "..", 2, parent_ino, DT_DIR))
1542 goto out;
1543 ctx->pos = dotdot_size;
1544 continue;
1545 }
1546
1547 de = (struct ext4_dir_entry_2 *)
1548 (dir_buf + ctx->pos - extra_offset);
1549 if (ext4_check_dir_entry(inode, file, de, iloc.bh, dir_buf,
1550 extra_size, ctx->pos))
1551 goto out;
1552 if (le32_to_cpu(de->inode)) {
1553 if (!dir_emit(ctx, de->name, de->name_len,
1554 le32_to_cpu(de->inode),
1555 get_dtype(sb, de->file_type)))
1556 goto out;
1557 }
1558 ctx->pos += ext4_rec_len_from_disk(de->rec_len, extra_size);
Tao Ma65d165d2012-12-10 14:05:59 -05001559 }
1560out:
1561 kfree(dir_buf);
1562 brelse(iloc.bh);
1563 return ret;
1564}
1565
Tao Ma32f7f222012-12-10 14:06:01 -05001566struct buffer_head *ext4_get_first_inline_block(struct inode *inode,
1567 struct ext4_dir_entry_2 **parent_de,
1568 int *retval)
1569{
1570 struct ext4_iloc iloc;
1571
1572 *retval = ext4_get_inode_loc(inode, &iloc);
1573 if (*retval)
1574 return NULL;
1575
1576 *parent_de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1577
1578 return iloc.bh;
1579}
1580
Tao Ma3c47d542012-12-10 14:05:59 -05001581/*
1582 * Try to create the inline data for the new dir.
1583 * If it succeeds, return 0, otherwise return the error.
1584 * In case of ENOSPC, the caller should create the normal disk layout dir.
1585 */
1586int ext4_try_create_inline_dir(handle_t *handle, struct inode *parent,
1587 struct inode *inode)
1588{
1589 int ret, inline_size = EXT4_MIN_INLINE_DATA_SIZE;
1590 struct ext4_iloc iloc;
1591 struct ext4_dir_entry_2 *de;
1592
1593 ret = ext4_get_inode_loc(inode, &iloc);
1594 if (ret)
1595 return ret;
1596
1597 ret = ext4_prepare_inline_data(handle, inode, inline_size);
1598 if (ret)
1599 goto out;
1600
1601 /*
1602 * For inline dir, we only save the inode information for the ".."
1603 * and create a fake dentry to cover the left space.
1604 */
1605 de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1606 de->inode = cpu_to_le32(parent->i_ino);
1607 de = (struct ext4_dir_entry_2 *)((void *)de + EXT4_INLINE_DOTDOT_SIZE);
1608 de->inode = 0;
1609 de->rec_len = ext4_rec_len_to_disk(
1610 inline_size - EXT4_INLINE_DOTDOT_SIZE,
1611 inline_size);
1612 set_nlink(inode, 2);
1613 inode->i_size = EXT4_I(inode)->i_disksize = inline_size;
1614out:
1615 brelse(iloc.bh);
1616 return ret;
1617}
1618
Tao Mae8e948e2012-12-10 14:06:00 -05001619struct buffer_head *ext4_find_inline_entry(struct inode *dir,
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001620 struct ext4_filename *fname,
Tao Mae8e948e2012-12-10 14:06:00 -05001621 const struct qstr *d_name,
1622 struct ext4_dir_entry_2 **res_dir,
1623 int *has_inline_data)
1624{
1625 int ret;
1626 struct ext4_iloc iloc;
1627 void *inline_start;
1628 int inline_size;
1629
1630 if (ext4_get_inode_loc(dir, &iloc))
1631 return NULL;
1632
1633 down_read(&EXT4_I(dir)->xattr_sem);
1634 if (!ext4_has_inline_data(dir)) {
1635 *has_inline_data = 0;
1636 goto out;
1637 }
1638
1639 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1640 EXT4_INLINE_DOTDOT_SIZE;
1641 inline_size = EXT4_MIN_INLINE_DATA_SIZE - EXT4_INLINE_DOTDOT_SIZE;
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001642 ret = ext4_search_dir(iloc.bh, inline_start, inline_size,
1643 dir, fname, d_name, 0, res_dir);
Tao Mae8e948e2012-12-10 14:06:00 -05001644 if (ret == 1)
1645 goto out_find;
1646 if (ret < 0)
1647 goto out;
1648
1649 if (ext4_get_inline_size(dir) == EXT4_MIN_INLINE_DATA_SIZE)
1650 goto out;
1651
1652 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1653 inline_size = ext4_get_inline_size(dir) - EXT4_MIN_INLINE_DATA_SIZE;
1654
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001655 ret = ext4_search_dir(iloc.bh, inline_start, inline_size,
1656 dir, fname, d_name, 0, res_dir);
Tao Mae8e948e2012-12-10 14:06:00 -05001657 if (ret == 1)
1658 goto out_find;
1659
1660out:
1661 brelse(iloc.bh);
1662 iloc.bh = NULL;
1663out_find:
1664 up_read(&EXT4_I(dir)->xattr_sem);
1665 return iloc.bh;
1666}
1667
Tao Ma9f40fe52012-12-10 14:06:00 -05001668int ext4_delete_inline_entry(handle_t *handle,
1669 struct inode *dir,
1670 struct ext4_dir_entry_2 *de_del,
1671 struct buffer_head *bh,
1672 int *has_inline_data)
1673{
Theodore Ts'oc755e252017-01-11 21:50:46 -05001674 int err, inline_size, no_expand;
Tao Ma9f40fe52012-12-10 14:06:00 -05001675 struct ext4_iloc iloc;
1676 void *inline_start;
1677
1678 err = ext4_get_inode_loc(dir, &iloc);
1679 if (err)
1680 return err;
1681
Theodore Ts'oc755e252017-01-11 21:50:46 -05001682 ext4_write_lock_xattr(dir, &no_expand);
Tao Ma9f40fe52012-12-10 14:06:00 -05001683 if (!ext4_has_inline_data(dir)) {
1684 *has_inline_data = 0;
1685 goto out;
1686 }
1687
1688 if ((void *)de_del - ((void *)ext4_raw_inode(&iloc)->i_block) <
1689 EXT4_MIN_INLINE_DATA_SIZE) {
1690 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1691 EXT4_INLINE_DOTDOT_SIZE;
1692 inline_size = EXT4_MIN_INLINE_DATA_SIZE -
1693 EXT4_INLINE_DOTDOT_SIZE;
1694 } else {
1695 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1696 inline_size = ext4_get_inline_size(dir) -
1697 EXT4_MIN_INLINE_DATA_SIZE;
1698 }
1699
liang xie5d601252014-05-12 22:06:43 -04001700 BUFFER_TRACE(bh, "get_write_access");
Tao Ma9f40fe52012-12-10 14:06:00 -05001701 err = ext4_journal_get_write_access(handle, bh);
1702 if (err)
1703 goto out;
1704
1705 err = ext4_generic_delete_entry(handle, dir, de_del, bh,
1706 inline_start, inline_size, 0);
1707 if (err)
1708 goto out;
1709
Tao Ma9f40fe52012-12-10 14:06:00 -05001710 ext4_show_inline_dir(dir, iloc.bh, inline_start, inline_size);
1711out:
Theodore Ts'oc755e252017-01-11 21:50:46 -05001712 ext4_write_unlock_xattr(dir, &no_expand);
Theodore Ts'ob907f2d2017-01-11 22:14:49 -05001713 if (likely(err == 0))
1714 err = ext4_mark_inode_dirty(handle, dir);
Tao Ma9f40fe52012-12-10 14:06:00 -05001715 brelse(iloc.bh);
1716 if (err != -ENOENT)
1717 ext4_std_error(dir->i_sb, err);
1718 return err;
1719}
1720
Tao Ma61f86632012-12-10 14:06:01 -05001721/*
1722 * Get the inline dentry at offset.
1723 */
1724static inline struct ext4_dir_entry_2 *
1725ext4_get_inline_entry(struct inode *inode,
1726 struct ext4_iloc *iloc,
1727 unsigned int offset,
1728 void **inline_start,
1729 int *inline_size)
1730{
1731 void *inline_pos;
1732
1733 BUG_ON(offset > ext4_get_inline_size(inode));
1734
1735 if (offset < EXT4_MIN_INLINE_DATA_SIZE) {
1736 inline_pos = (void *)ext4_raw_inode(iloc)->i_block;
1737 *inline_size = EXT4_MIN_INLINE_DATA_SIZE;
1738 } else {
1739 inline_pos = ext4_get_inline_xattr_pos(inode, iloc);
1740 offset -= EXT4_MIN_INLINE_DATA_SIZE;
1741 *inline_size = ext4_get_inline_size(inode) -
1742 EXT4_MIN_INLINE_DATA_SIZE;
1743 }
1744
1745 if (inline_start)
1746 *inline_start = inline_pos;
1747 return (struct ext4_dir_entry_2 *)(inline_pos + offset);
1748}
1749
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001750bool empty_inline_dir(struct inode *dir, int *has_inline_data)
Tao Ma61f86632012-12-10 14:06:01 -05001751{
1752 int err, inline_size;
1753 struct ext4_iloc iloc;
1754 void *inline_pos;
1755 unsigned int offset;
1756 struct ext4_dir_entry_2 *de;
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001757 bool ret = true;
Tao Ma61f86632012-12-10 14:06:01 -05001758
1759 err = ext4_get_inode_loc(dir, &iloc);
1760 if (err) {
1761 EXT4_ERROR_INODE(dir, "error %d getting inode %lu block",
1762 err, dir->i_ino);
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001763 return true;
Tao Ma61f86632012-12-10 14:06:01 -05001764 }
1765
1766 down_read(&EXT4_I(dir)->xattr_sem);
1767 if (!ext4_has_inline_data(dir)) {
1768 *has_inline_data = 0;
1769 goto out;
1770 }
1771
1772 de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1773 if (!le32_to_cpu(de->inode)) {
1774 ext4_warning(dir->i_sb,
1775 "bad inline directory (dir #%lu) - no `..'",
1776 dir->i_ino);
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001777 ret = true;
Tao Ma61f86632012-12-10 14:06:01 -05001778 goto out;
1779 }
1780
1781 offset = EXT4_INLINE_DOTDOT_SIZE;
1782 while (offset < dir->i_size) {
1783 de = ext4_get_inline_entry(dir, &iloc, offset,
1784 &inline_pos, &inline_size);
1785 if (ext4_check_dir_entry(dir, NULL, de,
1786 iloc.bh, inline_pos,
1787 inline_size, offset)) {
1788 ext4_warning(dir->i_sb,
1789 "bad inline directory (dir #%lu) - "
1790 "inode %u, rec_len %u, name_len %d"
Jakub Wilk8d2ae1c2016-04-27 01:11:21 -04001791 "inline size %d",
Tao Ma61f86632012-12-10 14:06:01 -05001792 dir->i_ino, le32_to_cpu(de->inode),
1793 le16_to_cpu(de->rec_len), de->name_len,
1794 inline_size);
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001795 ret = true;
Tao Ma61f86632012-12-10 14:06:01 -05001796 goto out;
1797 }
1798 if (le32_to_cpu(de->inode)) {
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001799 ret = false;
Tao Ma61f86632012-12-10 14:06:01 -05001800 goto out;
1801 }
1802 offset += ext4_rec_len_from_disk(de->rec_len, inline_size);
1803 }
1804
1805out:
1806 up_read(&EXT4_I(dir)->xattr_sem);
1807 brelse(iloc.bh);
1808 return ret;
1809}
1810
Tao Ma67cf5b02012-12-10 14:04:46 -05001811int ext4_destroy_inline_data(handle_t *handle, struct inode *inode)
1812{
Theodore Ts'oc755e252017-01-11 21:50:46 -05001813 int ret, no_expand;
Tao Ma67cf5b02012-12-10 14:04:46 -05001814
Theodore Ts'oc755e252017-01-11 21:50:46 -05001815 ext4_write_lock_xattr(inode, &no_expand);
Tao Ma67cf5b02012-12-10 14:04:46 -05001816 ret = ext4_destroy_inline_data_nolock(handle, inode);
Theodore Ts'oc755e252017-01-11 21:50:46 -05001817 ext4_write_unlock_xattr(inode, &no_expand);
Tao Ma67cf5b02012-12-10 14:04:46 -05001818
1819 return ret;
1820}
Tao Ma94191982012-12-10 14:06:02 -05001821
1822int ext4_inline_data_fiemap(struct inode *inode,
1823 struct fiemap_extent_info *fieinfo,
Dmitry Monakhovd952d692014-12-02 16:11:20 -05001824 int *has_inline, __u64 start, __u64 len)
Tao Ma94191982012-12-10 14:06:02 -05001825{
1826 __u64 physical = 0;
Dmitry Monakhovd952d692014-12-02 16:11:20 -05001827 __u64 inline_len;
1828 __u32 flags = FIEMAP_EXTENT_DATA_INLINE | FIEMAP_EXTENT_NOT_ALIGNED |
1829 FIEMAP_EXTENT_LAST;
Tao Ma94191982012-12-10 14:06:02 -05001830 int error = 0;
1831 struct ext4_iloc iloc;
1832
1833 down_read(&EXT4_I(inode)->xattr_sem);
1834 if (!ext4_has_inline_data(inode)) {
1835 *has_inline = 0;
1836 goto out;
1837 }
Dmitry Monakhovd952d692014-12-02 16:11:20 -05001838 inline_len = min_t(size_t, ext4_get_inline_size(inode),
1839 i_size_read(inode));
1840 if (start >= inline_len)
1841 goto out;
1842 if (start + len < inline_len)
1843 inline_len = start + len;
1844 inline_len -= start;
Tao Ma94191982012-12-10 14:06:02 -05001845
1846 error = ext4_get_inode_loc(inode, &iloc);
1847 if (error)
1848 goto out;
1849
Jan Karaeaf37932013-05-31 19:33:42 -04001850 physical = (__u64)iloc.bh->b_blocknr << inode->i_sb->s_blocksize_bits;
Tao Ma94191982012-12-10 14:06:02 -05001851 physical += (char *)ext4_raw_inode(&iloc) - iloc.bh->b_data;
1852 physical += offsetof(struct ext4_inode, i_block);
Tao Ma94191982012-12-10 14:06:02 -05001853
1854 if (physical)
Dmitry Monakhovd952d692014-12-02 16:11:20 -05001855 error = fiemap_fill_next_extent(fieinfo, start, physical,
1856 inline_len, flags);
Tao Ma94191982012-12-10 14:06:02 -05001857 brelse(iloc.bh);
1858out:
1859 up_read(&EXT4_I(inode)->xattr_sem);
1860 return (error < 0 ? error : 0);
1861}
Tao Ma0d812f72012-12-10 14:06:02 -05001862
1863/*
1864 * Called during xattr set, and if we can sparse space 'needed',
1865 * just create the extent tree evict the data to the outer block.
1866 *
1867 * We use jbd2 instead of page cache to move data to the 1st block
1868 * so that the whole transaction can be committed as a whole and
1869 * the data isn't lost because of the delayed page cache write.
1870 */
1871int ext4_try_to_evict_inline_data(handle_t *handle,
1872 struct inode *inode,
1873 int needed)
1874{
1875 int error;
1876 struct ext4_xattr_entry *entry;
Tao Ma0d812f72012-12-10 14:06:02 -05001877 struct ext4_inode *raw_inode;
1878 struct ext4_iloc iloc;
1879
1880 error = ext4_get_inode_loc(inode, &iloc);
1881 if (error)
1882 return error;
1883
1884 raw_inode = ext4_raw_inode(&iloc);
Tao Ma0d812f72012-12-10 14:06:02 -05001885 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
1886 EXT4_I(inode)->i_inline_off);
1887 if (EXT4_XATTR_LEN(entry->e_name_len) +
1888 EXT4_XATTR_SIZE(le32_to_cpu(entry->e_value_size)) < needed) {
1889 error = -ENOSPC;
1890 goto out;
1891 }
1892
1893 error = ext4_convert_inline_data_nolock(handle, inode, &iloc);
1894out:
1895 brelse(iloc.bh);
1896 return error;
1897}
Tao Maaef1c852012-12-10 14:06:02 -05001898
1899void ext4_inline_data_truncate(struct inode *inode, int *has_inline)
1900{
1901 handle_t *handle;
Theodore Ts'oc755e252017-01-11 21:50:46 -05001902 int inline_size, value_len, needed_blocks, no_expand;
Tao Maaef1c852012-12-10 14:06:02 -05001903 size_t i_size;
1904 void *value = NULL;
1905 struct ext4_xattr_ibody_find is = {
1906 .s = { .not_found = -ENODATA, },
1907 };
1908 struct ext4_xattr_info i = {
1909 .name_index = EXT4_XATTR_INDEX_SYSTEM,
1910 .name = EXT4_XATTR_SYSTEM_DATA,
1911 };
1912
1913
1914 needed_blocks = ext4_writepage_trans_blocks(inode);
Theodore Ts'o9924a922013-02-08 21:59:22 -05001915 handle = ext4_journal_start(inode, EXT4_HT_INODE, needed_blocks);
Tao Maaef1c852012-12-10 14:06:02 -05001916 if (IS_ERR(handle))
1917 return;
1918
Theodore Ts'oc755e252017-01-11 21:50:46 -05001919 ext4_write_lock_xattr(inode, &no_expand);
Tao Maaef1c852012-12-10 14:06:02 -05001920 if (!ext4_has_inline_data(inode)) {
1921 *has_inline = 0;
1922 ext4_journal_stop(handle);
1923 return;
1924 }
1925
1926 if (ext4_orphan_add(handle, inode))
1927 goto out;
1928
1929 if (ext4_get_inode_loc(inode, &is.iloc))
1930 goto out;
1931
1932 down_write(&EXT4_I(inode)->i_data_sem);
1933 i_size = inode->i_size;
1934 inline_size = ext4_get_inline_size(inode);
1935 EXT4_I(inode)->i_disksize = i_size;
1936
1937 if (i_size < inline_size) {
1938 /* Clear the content in the xattr space. */
1939 if (inline_size > EXT4_MIN_INLINE_DATA_SIZE) {
1940 if (ext4_xattr_ibody_find(inode, &i, &is))
1941 goto out_error;
1942
1943 BUG_ON(is.s.not_found);
1944
1945 value_len = le32_to_cpu(is.s.here->e_value_size);
1946 value = kmalloc(value_len, GFP_NOFS);
1947 if (!value)
1948 goto out_error;
1949
1950 if (ext4_xattr_ibody_get(inode, i.name_index, i.name,
1951 value, value_len))
1952 goto out_error;
1953
1954 i.value = value;
1955 i.value_len = i_size > EXT4_MIN_INLINE_DATA_SIZE ?
1956 i_size - EXT4_MIN_INLINE_DATA_SIZE : 0;
1957 if (ext4_xattr_ibody_inline_set(handle, inode, &i, &is))
1958 goto out_error;
1959 }
1960
1961 /* Clear the content within i_blocks. */
Theodore Ts'o09c455a2014-01-07 12:58:19 -05001962 if (i_size < EXT4_MIN_INLINE_DATA_SIZE) {
1963 void *p = (void *) ext4_raw_inode(&is.iloc)->i_block;
1964 memset(p + i_size, 0,
1965 EXT4_MIN_INLINE_DATA_SIZE - i_size);
1966 }
Tao Maaef1c852012-12-10 14:06:02 -05001967
1968 EXT4_I(inode)->i_inline_size = i_size <
1969 EXT4_MIN_INLINE_DATA_SIZE ?
1970 EXT4_MIN_INLINE_DATA_SIZE : i_size;
1971 }
1972
1973out_error:
1974 up_write(&EXT4_I(inode)->i_data_sem);
1975out:
1976 brelse(is.iloc.bh);
Theodore Ts'oc755e252017-01-11 21:50:46 -05001977 ext4_write_unlock_xattr(inode, &no_expand);
Tao Maaef1c852012-12-10 14:06:02 -05001978 kfree(value);
1979 if (inode->i_nlink)
1980 ext4_orphan_del(handle, inode);
1981
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05001982 inode->i_mtime = inode->i_ctime = current_time(inode);
Tao Maaef1c852012-12-10 14:06:02 -05001983 ext4_mark_inode_dirty(handle, inode);
1984 if (IS_SYNC(inode))
1985 ext4_handle_sync(handle);
1986
1987 ext4_journal_stop(handle);
1988 return;
1989}
Tao Ma0c8d4142012-12-10 14:06:03 -05001990
1991int ext4_convert_inline_data(struct inode *inode)
1992{
Theodore Ts'oc755e252017-01-11 21:50:46 -05001993 int error, needed_blocks, no_expand;
Tao Ma0c8d4142012-12-10 14:06:03 -05001994 handle_t *handle;
1995 struct ext4_iloc iloc;
1996
1997 if (!ext4_has_inline_data(inode)) {
1998 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1999 return 0;
2000 }
2001
2002 needed_blocks = ext4_writepage_trans_blocks(inode);
2003
2004 iloc.bh = NULL;
2005 error = ext4_get_inode_loc(inode, &iloc);
2006 if (error)
2007 return error;
2008
Theodore Ts'o9924a922013-02-08 21:59:22 -05002009 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Tao Ma0c8d4142012-12-10 14:06:03 -05002010 if (IS_ERR(handle)) {
2011 error = PTR_ERR(handle);
2012 goto out_free;
2013 }
2014
Theodore Ts'oc755e252017-01-11 21:50:46 -05002015 ext4_write_lock_xattr(inode, &no_expand);
2016 if (ext4_has_inline_data(inode))
2017 error = ext4_convert_inline_data_nolock(handle, inode, &iloc);
2018 ext4_write_unlock_xattr(inode, &no_expand);
Tao Ma0c8d4142012-12-10 14:06:03 -05002019 ext4_journal_stop(handle);
2020out_free:
2021 brelse(iloc.bh);
2022 return error;
2023}