blob: f1661e1db2c560628d46cbe11fa228a227b8925e [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"
Mohan Srinivasan25cc70f2016-12-14 16:39:51 -080021#include <trace/events/android_fs.h>
Tao Ma67cf5b02012-12-10 14:04:46 -050022
23#define EXT4_XATTR_SYSTEM_DATA "data"
24#define EXT4_MIN_INLINE_DATA_SIZE ((sizeof(__le32) * EXT4_N_BLOCKS))
Tao Ma8af0f082013-04-19 17:53:09 -040025#define EXT4_INLINE_DOTDOT_OFFSET 2
26#define EXT4_INLINE_DOTDOT_SIZE 4
Tao Ma67cf5b02012-12-10 14:04:46 -050027
Stephen Hemmingerc1978552014-05-12 10:50:23 -040028static int ext4_get_inline_size(struct inode *inode)
Tao Ma67cf5b02012-12-10 14:04:46 -050029{
30 if (EXT4_I(inode)->i_inline_off)
31 return EXT4_I(inode)->i_inline_size;
32
33 return 0;
34}
35
36static int get_max_inline_xattr_value_size(struct inode *inode,
37 struct ext4_iloc *iloc)
38{
39 struct ext4_xattr_ibody_header *header;
40 struct ext4_xattr_entry *entry;
41 struct ext4_inode *raw_inode;
42 int free, min_offs;
43
44 min_offs = EXT4_SB(inode->i_sb)->s_inode_size -
45 EXT4_GOOD_OLD_INODE_SIZE -
46 EXT4_I(inode)->i_extra_isize -
47 sizeof(struct ext4_xattr_ibody_header);
48
49 /*
50 * We need to subtract another sizeof(__u32) since an in-inode xattr
51 * needs an empty 4 bytes to indicate the gap between the xattr entry
52 * and the name/value pair.
53 */
54 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
55 return EXT4_XATTR_SIZE(min_offs -
56 EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA)) -
57 EXT4_XATTR_ROUND - sizeof(__u32));
58
59 raw_inode = ext4_raw_inode(iloc);
60 header = IHDR(inode, raw_inode);
61 entry = IFIRST(header);
62
63 /* Compute min_offs. */
64 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
65 if (!entry->e_value_block && entry->e_value_size) {
66 size_t offs = le16_to_cpu(entry->e_value_offs);
67 if (offs < min_offs)
68 min_offs = offs;
69 }
70 }
71 free = min_offs -
72 ((void *)entry - (void *)IFIRST(header)) - sizeof(__u32);
73
74 if (EXT4_I(inode)->i_inline_off) {
75 entry = (struct ext4_xattr_entry *)
76 ((void *)raw_inode + EXT4_I(inode)->i_inline_off);
77
boxi liuc4932db2013-07-01 08:12:37 -040078 free += EXT4_XATTR_SIZE(le32_to_cpu(entry->e_value_size));
Tao Ma67cf5b02012-12-10 14:04:46 -050079 goto out;
80 }
81
82 free -= EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA));
83
84 if (free > EXT4_XATTR_ROUND)
85 free = EXT4_XATTR_SIZE(free - EXT4_XATTR_ROUND);
86 else
87 free = 0;
88
89out:
90 return free;
91}
92
93/*
94 * Get the maximum size we now can store in an inode.
95 * If we can't find the space for a xattr entry, don't use the space
96 * of the extents since we have no space to indicate the inline data.
97 */
98int ext4_get_max_inline_size(struct inode *inode)
99{
100 int error, max_inline_size;
101 struct ext4_iloc iloc;
102
103 if (EXT4_I(inode)->i_extra_isize == 0)
104 return 0;
105
106 error = ext4_get_inode_loc(inode, &iloc);
107 if (error) {
108 ext4_error_inode(inode, __func__, __LINE__, 0,
109 "can't get inode location %lu",
110 inode->i_ino);
111 return 0;
112 }
113
114 down_read(&EXT4_I(inode)->xattr_sem);
115 max_inline_size = get_max_inline_xattr_value_size(inode, &iloc);
116 up_read(&EXT4_I(inode)->xattr_sem);
117
118 brelse(iloc.bh);
119
120 if (!max_inline_size)
121 return 0;
122
123 return max_inline_size + EXT4_MIN_INLINE_DATA_SIZE;
124}
125
Tao Ma67cf5b02012-12-10 14:04:46 -0500126/*
127 * this function does not take xattr_sem, which is OK because it is
128 * currently only used in a code path coming form ext4_iget, before
129 * the new inode has been unlocked
130 */
131int ext4_find_inline_data_nolock(struct inode *inode)
132{
133 struct ext4_xattr_ibody_find is = {
134 .s = { .not_found = -ENODATA, },
135 };
136 struct ext4_xattr_info i = {
137 .name_index = EXT4_XATTR_INDEX_SYSTEM,
138 .name = EXT4_XATTR_SYSTEM_DATA,
139 };
140 int error;
141
142 if (EXT4_I(inode)->i_extra_isize == 0)
143 return 0;
144
145 error = ext4_get_inode_loc(inode, &is.iloc);
146 if (error)
147 return error;
148
149 error = ext4_xattr_ibody_find(inode, &i, &is);
150 if (error)
151 goto out;
152
153 if (!is.s.not_found) {
154 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
155 (void *)ext4_raw_inode(&is.iloc));
156 EXT4_I(inode)->i_inline_size = EXT4_MIN_INLINE_DATA_SIZE +
157 le32_to_cpu(is.s.here->e_value_size);
158 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
159 }
160out:
161 brelse(is.iloc.bh);
162 return error;
163}
164
165static int ext4_read_inline_data(struct inode *inode, void *buffer,
166 unsigned int len,
167 struct ext4_iloc *iloc)
168{
169 struct ext4_xattr_entry *entry;
170 struct ext4_xattr_ibody_header *header;
171 int cp_len = 0;
172 struct ext4_inode *raw_inode;
173
174 if (!len)
175 return 0;
176
177 BUG_ON(len > EXT4_I(inode)->i_inline_size);
178
179 cp_len = len < EXT4_MIN_INLINE_DATA_SIZE ?
180 len : EXT4_MIN_INLINE_DATA_SIZE;
181
182 raw_inode = ext4_raw_inode(iloc);
183 memcpy(buffer, (void *)(raw_inode->i_block), cp_len);
184
185 len -= cp_len;
186 buffer += cp_len;
187
188 if (!len)
189 goto out;
190
191 header = IHDR(inode, raw_inode);
192 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
193 EXT4_I(inode)->i_inline_off);
194 len = min_t(unsigned int, len,
195 (unsigned int)le32_to_cpu(entry->e_value_size));
196
197 memcpy(buffer,
198 (void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs), len);
199 cp_len += len;
200
201out:
202 return cp_len;
203}
204
205/*
206 * write the buffer to the inline inode.
207 * If 'create' is set, we don't need to do the extra copy in the xattr
Tao Ma0d812f72012-12-10 14:06:02 -0500208 * value since it is already handled by ext4_xattr_ibody_inline_set.
209 * That saves us one memcpy.
Tao Ma67cf5b02012-12-10 14:04:46 -0500210 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -0400211static void ext4_write_inline_data(struct inode *inode, struct ext4_iloc *iloc,
212 void *buffer, loff_t pos, unsigned int len)
Tao Ma67cf5b02012-12-10 14:04:46 -0500213{
214 struct ext4_xattr_entry *entry;
215 struct ext4_xattr_ibody_header *header;
216 struct ext4_inode *raw_inode;
217 int cp_len = 0;
218
219 BUG_ON(!EXT4_I(inode)->i_inline_off);
220 BUG_ON(pos + len > EXT4_I(inode)->i_inline_size);
221
222 raw_inode = ext4_raw_inode(iloc);
223 buffer += pos;
224
225 if (pos < EXT4_MIN_INLINE_DATA_SIZE) {
226 cp_len = pos + len > EXT4_MIN_INLINE_DATA_SIZE ?
227 EXT4_MIN_INLINE_DATA_SIZE - pos : len;
228 memcpy((void *)raw_inode->i_block + pos, buffer, cp_len);
229
230 len -= cp_len;
231 buffer += cp_len;
232 pos += cp_len;
233 }
234
235 if (!len)
236 return;
237
238 pos -= EXT4_MIN_INLINE_DATA_SIZE;
239 header = IHDR(inode, raw_inode);
240 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
241 EXT4_I(inode)->i_inline_off);
242
243 memcpy((void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs) + pos,
244 buffer, len);
245}
246
247static int ext4_create_inline_data(handle_t *handle,
248 struct inode *inode, unsigned len)
249{
250 int error;
251 void *value = NULL;
252 struct ext4_xattr_ibody_find is = {
253 .s = { .not_found = -ENODATA, },
254 };
255 struct ext4_xattr_info i = {
256 .name_index = EXT4_XATTR_INDEX_SYSTEM,
257 .name = EXT4_XATTR_SYSTEM_DATA,
258 };
259
260 error = ext4_get_inode_loc(inode, &is.iloc);
261 if (error)
262 return error;
263
liang xie5d601252014-05-12 22:06:43 -0400264 BUFFER_TRACE(is.iloc.bh, "get_write_access");
Tao Ma67cf5b02012-12-10 14:04:46 -0500265 error = ext4_journal_get_write_access(handle, is.iloc.bh);
266 if (error)
267 goto out;
268
269 if (len > EXT4_MIN_INLINE_DATA_SIZE) {
Theodore Ts'obd9926e2012-12-11 03:31:49 -0500270 value = EXT4_ZERO_XATTR_VALUE;
Tao Ma67cf5b02012-12-10 14:04:46 -0500271 len -= EXT4_MIN_INLINE_DATA_SIZE;
272 } else {
273 value = "";
274 len = 0;
275 }
276
277 /* Insert the the xttr entry. */
278 i.value = value;
279 i.value_len = len;
280
281 error = ext4_xattr_ibody_find(inode, &i, &is);
282 if (error)
283 goto out;
284
285 BUG_ON(!is.s.not_found);
286
Tao Ma0d812f72012-12-10 14:06:02 -0500287 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
Tao Ma67cf5b02012-12-10 14:04:46 -0500288 if (error) {
289 if (error == -ENOSPC)
290 ext4_clear_inode_state(inode,
291 EXT4_STATE_MAY_INLINE_DATA);
292 goto out;
293 }
294
295 memset((void *)ext4_raw_inode(&is.iloc)->i_block,
296 0, EXT4_MIN_INLINE_DATA_SIZE);
297
298 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
299 (void *)ext4_raw_inode(&is.iloc));
300 EXT4_I(inode)->i_inline_size = len + EXT4_MIN_INLINE_DATA_SIZE;
301 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
302 ext4_set_inode_flag(inode, EXT4_INODE_INLINE_DATA);
303 get_bh(is.iloc.bh);
304 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
305
306out:
307 brelse(is.iloc.bh);
308 return error;
309}
310
311static int ext4_update_inline_data(handle_t *handle, struct inode *inode,
312 unsigned int len)
313{
314 int error;
315 void *value = NULL;
316 struct ext4_xattr_ibody_find is = {
317 .s = { .not_found = -ENODATA, },
318 };
319 struct ext4_xattr_info i = {
320 .name_index = EXT4_XATTR_INDEX_SYSTEM,
321 .name = EXT4_XATTR_SYSTEM_DATA,
322 };
323
324 /* If the old space is ok, write the data directly. */
325 if (len <= EXT4_I(inode)->i_inline_size)
326 return 0;
327
328 error = ext4_get_inode_loc(inode, &is.iloc);
329 if (error)
330 return error;
331
332 error = ext4_xattr_ibody_find(inode, &i, &is);
333 if (error)
334 goto out;
335
336 BUG_ON(is.s.not_found);
337
338 len -= EXT4_MIN_INLINE_DATA_SIZE;
339 value = kzalloc(len, GFP_NOFS);
Dan Carpenteracf3efd2016-12-10 09:56:01 -0500340 if (!value) {
341 error = -ENOMEM;
Tao Ma67cf5b02012-12-10 14:04:46 -0500342 goto out;
Dan Carpenteracf3efd2016-12-10 09:56:01 -0500343 }
Tao Ma67cf5b02012-12-10 14:04:46 -0500344
345 error = ext4_xattr_ibody_get(inode, i.name_index, i.name,
346 value, len);
347 if (error == -ENODATA)
348 goto out;
349
liang xie5d601252014-05-12 22:06:43 -0400350 BUFFER_TRACE(is.iloc.bh, "get_write_access");
Tao Ma67cf5b02012-12-10 14:04:46 -0500351 error = ext4_journal_get_write_access(handle, is.iloc.bh);
352 if (error)
353 goto out;
354
355 /* Update the xttr entry. */
356 i.value = value;
357 i.value_len = len;
358
Tao Ma0d812f72012-12-10 14:06:02 -0500359 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
Tao Ma67cf5b02012-12-10 14:04:46 -0500360 if (error)
361 goto out;
362
363 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
364 (void *)ext4_raw_inode(&is.iloc));
365 EXT4_I(inode)->i_inline_size = EXT4_MIN_INLINE_DATA_SIZE +
366 le32_to_cpu(is.s.here->e_value_size);
367 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
368 get_bh(is.iloc.bh);
369 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
370
371out:
372 kfree(value);
373 brelse(is.iloc.bh);
374 return error;
375}
376
Stephen Hemmingerc1978552014-05-12 10:50:23 -0400377static int ext4_prepare_inline_data(handle_t *handle, struct inode *inode,
378 unsigned int len)
Tao Ma67cf5b02012-12-10 14:04:46 -0500379{
Theodore Ts'oda1e4022017-01-11 21:50:46 -0500380 int ret, size, no_expand;
Tao Ma67cf5b02012-12-10 14:04:46 -0500381 struct ext4_inode_info *ei = EXT4_I(inode);
382
383 if (!ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA))
384 return -ENOSPC;
385
386 size = ext4_get_max_inline_size(inode);
387 if (size < len)
388 return -ENOSPC;
389
Theodore Ts'oda1e4022017-01-11 21:50:46 -0500390 ext4_write_lock_xattr(inode, &no_expand);
Tao Ma67cf5b02012-12-10 14:04:46 -0500391
392 if (ei->i_inline_off)
393 ret = ext4_update_inline_data(handle, inode, len);
394 else
395 ret = ext4_create_inline_data(handle, inode, len);
396
Theodore Ts'oda1e4022017-01-11 21:50:46 -0500397 ext4_write_unlock_xattr(inode, &no_expand);
Tao Ma67cf5b02012-12-10 14:04:46 -0500398 return ret;
399}
400
401static int ext4_destroy_inline_data_nolock(handle_t *handle,
402 struct inode *inode)
403{
404 struct ext4_inode_info *ei = EXT4_I(inode);
405 struct ext4_xattr_ibody_find is = {
406 .s = { .not_found = 0, },
407 };
408 struct ext4_xattr_info i = {
409 .name_index = EXT4_XATTR_INDEX_SYSTEM,
410 .name = EXT4_XATTR_SYSTEM_DATA,
411 .value = NULL,
412 .value_len = 0,
413 };
414 int error;
415
416 if (!ei->i_inline_off)
417 return 0;
418
419 error = ext4_get_inode_loc(inode, &is.iloc);
420 if (error)
421 return error;
422
423 error = ext4_xattr_ibody_find(inode, &i, &is);
424 if (error)
425 goto out;
426
liang xie5d601252014-05-12 22:06:43 -0400427 BUFFER_TRACE(is.iloc.bh, "get_write_access");
Tao Ma67cf5b02012-12-10 14:04:46 -0500428 error = ext4_journal_get_write_access(handle, is.iloc.bh);
429 if (error)
430 goto out;
431
Tao Ma0d812f72012-12-10 14:06:02 -0500432 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
Tao Ma67cf5b02012-12-10 14:04:46 -0500433 if (error)
434 goto out;
435
436 memset((void *)ext4_raw_inode(&is.iloc)->i_block,
437 0, EXT4_MIN_INLINE_DATA_SIZE);
Theodore Ts'oa5e063d2018-06-15 12:28:16 -0400438 memset(ei->i_data, 0, EXT4_MIN_INLINE_DATA_SIZE);
Tao Ma67cf5b02012-12-10 14:04:46 -0500439
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400440 if (ext4_has_feature_extents(inode->i_sb)) {
Tao Ma67cf5b02012-12-10 14:04:46 -0500441 if (S_ISDIR(inode->i_mode) ||
442 S_ISREG(inode->i_mode) || S_ISLNK(inode->i_mode)) {
443 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
444 ext4_ext_tree_init(handle, inode);
445 }
446 }
447 ext4_clear_inode_flag(inode, EXT4_INODE_INLINE_DATA);
448
449 get_bh(is.iloc.bh);
450 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
451
452 EXT4_I(inode)->i_inline_off = 0;
453 EXT4_I(inode)->i_inline_size = 0;
454 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
455out:
456 brelse(is.iloc.bh);
457 if (error == -ENODATA)
458 error = 0;
459 return error;
460}
461
Tao Ma46c7f252012-12-10 14:04:52 -0500462static int ext4_read_inline_page(struct inode *inode, struct page *page)
463{
464 void *kaddr;
465 int ret = 0;
466 size_t len;
467 struct ext4_iloc iloc;
468
469 BUG_ON(!PageLocked(page));
470 BUG_ON(!ext4_has_inline_data(inode));
471 BUG_ON(page->index);
472
473 if (!EXT4_I(inode)->i_inline_off) {
474 ext4_warning(inode->i_sb, "inode %lu doesn't have inline data.",
475 inode->i_ino);
476 goto out;
477 }
478
479 ret = ext4_get_inode_loc(inode, &iloc);
480 if (ret)
481 goto out;
482
483 len = min_t(size_t, ext4_get_inline_size(inode), i_size_read(inode));
484 kaddr = kmap_atomic(page);
485 ret = ext4_read_inline_data(inode, kaddr, len, &iloc);
486 flush_dcache_page(page);
487 kunmap_atomic(kaddr);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300488 zero_user_segment(page, len, PAGE_SIZE);
Tao Ma46c7f252012-12-10 14:04:52 -0500489 SetPageUptodate(page);
490 brelse(iloc.bh);
491
492out:
493 return ret;
494}
495
496int ext4_readpage_inline(struct inode *inode, struct page *page)
497{
498 int ret = 0;
499
500 down_read(&EXT4_I(inode)->xattr_sem);
501 if (!ext4_has_inline_data(inode)) {
502 up_read(&EXT4_I(inode)->xattr_sem);
503 return -EAGAIN;
504 }
505
Mohan Srinivasan009e6082017-02-10 14:26:23 -0800506 if (trace_android_fs_dataread_start_enabled()) {
507 char *path, pathbuf[MAX_TRACE_PATHBUF_LEN];
508
509 path = android_fstrace_get_pathname(pathbuf,
510 MAX_TRACE_PATHBUF_LEN,
511 inode);
512 trace_android_fs_dataread_start(inode, page_offset(page),
513 PAGE_SIZE, current->pid,
514 path, current->comm);
515 }
Mohan Srinivasan25cc70f2016-12-14 16:39:51 -0800516
Tao Ma46c7f252012-12-10 14:04:52 -0500517 /*
518 * Current inline data can only exist in the 1st page,
519 * So for all the other pages, just set them uptodate.
520 */
521 if (!page->index)
522 ret = ext4_read_inline_page(inode, page);
523 else if (!PageUptodate(page)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300524 zero_user_segment(page, 0, PAGE_SIZE);
Tao Ma46c7f252012-12-10 14:04:52 -0500525 SetPageUptodate(page);
526 }
527
Mohan Srinivasan25cc70f2016-12-14 16:39:51 -0800528 trace_android_fs_dataread_end(inode, page_offset(page), PAGE_SIZE);
529
Tao Ma46c7f252012-12-10 14:04:52 -0500530 up_read(&EXT4_I(inode)->xattr_sem);
531
532 unlock_page(page);
533 return ret >= 0 ? 0 : ret;
534}
535
Tao Maf19d5872012-12-10 14:05:51 -0500536static int ext4_convert_inline_data_to_extent(struct address_space *mapping,
537 struct inode *inode,
538 unsigned flags)
539{
Theodore Ts'oda1e4022017-01-11 21:50:46 -0500540 int ret, needed_blocks, no_expand;
Tao Maf19d5872012-12-10 14:05:51 -0500541 handle_t *handle = NULL;
542 int retries = 0, sem_held = 0;
543 struct page *page = NULL;
544 unsigned from, to;
545 struct ext4_iloc iloc;
546
547 if (!ext4_has_inline_data(inode)) {
548 /*
549 * clear the flag so that no new write
550 * will trap here again.
551 */
552 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
553 return 0;
554 }
555
556 needed_blocks = ext4_writepage_trans_blocks(inode);
557
558 ret = ext4_get_inode_loc(inode, &iloc);
559 if (ret)
560 return ret;
561
562retry:
Theodore Ts'o9924a922013-02-08 21:59:22 -0500563 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Tao Maf19d5872012-12-10 14:05:51 -0500564 if (IS_ERR(handle)) {
565 ret = PTR_ERR(handle);
566 handle = NULL;
567 goto out;
568 }
569
570 /* We cannot recurse into the filesystem as the transaction is already
571 * started */
572 flags |= AOP_FLAG_NOFS;
573
574 page = grab_cache_page_write_begin(mapping, 0, flags);
575 if (!page) {
576 ret = -ENOMEM;
577 goto out;
578 }
579
Theodore Ts'oda1e4022017-01-11 21:50:46 -0500580 ext4_write_lock_xattr(inode, &no_expand);
Tao Maf19d5872012-12-10 14:05:51 -0500581 sem_held = 1;
582 /* If some one has already done this for us, just exit. */
583 if (!ext4_has_inline_data(inode)) {
584 ret = 0;
585 goto out;
586 }
587
588 from = 0;
589 to = ext4_get_inline_size(inode);
590 if (!PageUptodate(page)) {
591 ret = ext4_read_inline_page(inode, page);
592 if (ret < 0)
593 goto out;
594 }
595
596 ret = ext4_destroy_inline_data_nolock(handle, inode);
597 if (ret)
598 goto out;
599
Jan Kara705965b2016-03-08 23:08:10 -0500600 if (ext4_should_dioread_nolock(inode)) {
601 ret = __block_write_begin(page, from, to,
602 ext4_get_block_unwritten);
603 } else
Tao Maf19d5872012-12-10 14:05:51 -0500604 ret = __block_write_begin(page, from, to, ext4_get_block);
605
606 if (!ret && ext4_should_journal_data(inode)) {
607 ret = ext4_walk_page_buffers(handle, page_buffers(page),
608 from, to, NULL,
609 do_journal_get_write_access);
610 }
611
612 if (ret) {
613 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300614 put_page(page);
Darrick J. Wong684de5742014-09-11 11:45:12 -0400615 page = NULL;
Tao Maf19d5872012-12-10 14:05:51 -0500616 ext4_orphan_add(handle, inode);
Theodore Ts'oda1e4022017-01-11 21:50:46 -0500617 ext4_write_unlock_xattr(inode, &no_expand);
Tao Maf19d5872012-12-10 14:05:51 -0500618 sem_held = 0;
619 ext4_journal_stop(handle);
620 handle = NULL;
621 ext4_truncate_failed_write(inode);
622 /*
623 * If truncate failed early the inode might
624 * still be on the orphan list; we need to
625 * make sure the inode is removed from the
626 * orphan list in that case.
627 */
628 if (inode->i_nlink)
629 ext4_orphan_del(NULL, inode);
630 }
631
632 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
633 goto retry;
634
Darrick J. Wong684de5742014-09-11 11:45:12 -0400635 if (page)
636 block_commit_write(page, from, to);
Tao Maf19d5872012-12-10 14:05:51 -0500637out:
638 if (page) {
639 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300640 put_page(page);
Tao Maf19d5872012-12-10 14:05:51 -0500641 }
642 if (sem_held)
Theodore Ts'oda1e4022017-01-11 21:50:46 -0500643 ext4_write_unlock_xattr(inode, &no_expand);
Tao Maf19d5872012-12-10 14:05:51 -0500644 if (handle)
645 ext4_journal_stop(handle);
646 brelse(iloc.bh);
647 return ret;
648}
649
650/*
651 * Try to write data in the inode.
652 * If the inode has inline data, check whether the new write can be
653 * in the inode also. If not, create the page the handle, move the data
654 * to the page make it update and let the later codes create extent for it.
655 */
656int ext4_try_to_write_inline_data(struct address_space *mapping,
657 struct inode *inode,
658 loff_t pos, unsigned len,
659 unsigned flags,
660 struct page **pagep)
661{
662 int ret;
663 handle_t *handle;
664 struct page *page;
665 struct ext4_iloc iloc;
666
667 if (pos + len > ext4_get_max_inline_size(inode))
668 goto convert;
669
670 ret = ext4_get_inode_loc(inode, &iloc);
671 if (ret)
672 return ret;
673
674 /*
675 * The possible write could happen in the inode,
676 * so try to reserve the space in inode first.
677 */
Theodore Ts'o9924a922013-02-08 21:59:22 -0500678 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Tao Maf19d5872012-12-10 14:05:51 -0500679 if (IS_ERR(handle)) {
680 ret = PTR_ERR(handle);
681 handle = NULL;
682 goto out;
683 }
684
685 ret = ext4_prepare_inline_data(handle, inode, pos + len);
686 if (ret && ret != -ENOSPC)
687 goto out;
688
689 /* We don't have space in inline inode, so convert it to extent. */
690 if (ret == -ENOSPC) {
691 ext4_journal_stop(handle);
692 brelse(iloc.bh);
693 goto convert;
694 }
695
Theodore Ts'o5eed5972018-07-10 01:07:43 -0400696 ret = ext4_journal_get_write_access(handle, iloc.bh);
697 if (ret)
698 goto out;
699
Tao Maf19d5872012-12-10 14:05:51 -0500700 flags |= AOP_FLAG_NOFS;
701
702 page = grab_cache_page_write_begin(mapping, 0, flags);
703 if (!page) {
704 ret = -ENOMEM;
705 goto out;
706 }
707
708 *pagep = page;
709 down_read(&EXT4_I(inode)->xattr_sem);
710 if (!ext4_has_inline_data(inode)) {
711 ret = 0;
712 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300713 put_page(page);
Tao Maf19d5872012-12-10 14:05:51 -0500714 goto out_up_read;
715 }
716
717 if (!PageUptodate(page)) {
718 ret = ext4_read_inline_page(inode, page);
719 if (ret < 0)
720 goto out_up_read;
721 }
722
723 ret = 1;
724 handle = NULL;
725out_up_read:
726 up_read(&EXT4_I(inode)->xattr_sem);
727out:
Theodore Ts'o5eed5972018-07-10 01:07:43 -0400728 if (handle && (ret != 1))
Tao Maf19d5872012-12-10 14:05:51 -0500729 ext4_journal_stop(handle);
730 brelse(iloc.bh);
731 return ret;
732convert:
733 return ext4_convert_inline_data_to_extent(mapping,
734 inode, flags);
735}
736
737int ext4_write_inline_data_end(struct inode *inode, loff_t pos, unsigned len,
738 unsigned copied, struct page *page)
739{
Theodore Ts'oda1e4022017-01-11 21:50:46 -0500740 int ret, no_expand;
Tao Maf19d5872012-12-10 14:05:51 -0500741 void *kaddr;
742 struct ext4_iloc iloc;
743
744 if (unlikely(copied < len)) {
745 if (!PageUptodate(page)) {
746 copied = 0;
747 goto out;
748 }
749 }
750
751 ret = ext4_get_inode_loc(inode, &iloc);
752 if (ret) {
753 ext4_std_error(inode->i_sb, ret);
754 copied = 0;
755 goto out;
756 }
757
Theodore Ts'oda1e4022017-01-11 21:50:46 -0500758 ext4_write_lock_xattr(inode, &no_expand);
Tao Maf19d5872012-12-10 14:05:51 -0500759 BUG_ON(!ext4_has_inline_data(inode));
760
761 kaddr = kmap_atomic(page);
762 ext4_write_inline_data(inode, &iloc, kaddr, pos, len);
763 kunmap_atomic(kaddr);
764 SetPageUptodate(page);
765 /* clear page dirty so that writepages wouldn't work for us. */
766 ClearPageDirty(page);
767
Theodore Ts'oda1e4022017-01-11 21:50:46 -0500768 ext4_write_unlock_xattr(inode, &no_expand);
Tao Maf19d5872012-12-10 14:05:51 -0500769 brelse(iloc.bh);
Theodore Ts'o5eed5972018-07-10 01:07:43 -0400770 mark_inode_dirty(inode);
Tao Maf19d5872012-12-10 14:05:51 -0500771out:
772 return copied;
773}
774
Tao Ma3fdcfb62012-12-10 14:05:57 -0500775struct buffer_head *
776ext4_journalled_write_inline_data(struct inode *inode,
777 unsigned len,
778 struct page *page)
779{
Theodore Ts'oda1e4022017-01-11 21:50:46 -0500780 int ret, no_expand;
Tao Ma3fdcfb62012-12-10 14:05:57 -0500781 void *kaddr;
782 struct ext4_iloc iloc;
783
784 ret = ext4_get_inode_loc(inode, &iloc);
785 if (ret) {
786 ext4_std_error(inode->i_sb, ret);
787 return NULL;
788 }
789
Theodore Ts'oda1e4022017-01-11 21:50:46 -0500790 ext4_write_lock_xattr(inode, &no_expand);
Tao Ma3fdcfb62012-12-10 14:05:57 -0500791 kaddr = kmap_atomic(page);
792 ext4_write_inline_data(inode, &iloc, kaddr, 0, len);
793 kunmap_atomic(kaddr);
Theodore Ts'oda1e4022017-01-11 21:50:46 -0500794 ext4_write_unlock_xattr(inode, &no_expand);
Tao Ma3fdcfb62012-12-10 14:05:57 -0500795
796 return iloc.bh;
797}
798
Tao Ma9c3569b2012-12-10 14:05:57 -0500799/*
800 * Try to make the page cache and handle ready for the inline data case.
801 * We can call this function in 2 cases:
802 * 1. The inode is created and the first write exceeds inline size. We can
803 * clear the inode state safely.
804 * 2. The inode has inline data, then we need to read the data, make it
805 * update and dirty so that ext4_da_writepages can handle it. We don't
806 * need to start the journal since the file's metatdata isn't changed now.
807 */
808static int ext4_da_convert_inline_data_to_extent(struct address_space *mapping,
809 struct inode *inode,
810 unsigned flags,
811 void **fsdata)
812{
813 int ret = 0, inline_size;
814 struct page *page;
815
816 page = grab_cache_page_write_begin(mapping, 0, flags);
817 if (!page)
818 return -ENOMEM;
819
820 down_read(&EXT4_I(inode)->xattr_sem);
821 if (!ext4_has_inline_data(inode)) {
822 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
823 goto out;
824 }
825
826 inline_size = ext4_get_inline_size(inode);
827
828 if (!PageUptodate(page)) {
829 ret = ext4_read_inline_page(inode, page);
830 if (ret < 0)
831 goto out;
832 }
833
834 ret = __block_write_begin(page, 0, inline_size,
835 ext4_da_get_block_prep);
836 if (ret) {
Dmitry Monakhov50db71a2014-12-05 21:37:15 -0500837 up_read(&EXT4_I(inode)->xattr_sem);
838 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300839 put_page(page);
Tao Ma9c3569b2012-12-10 14:05:57 -0500840 ext4_truncate_failed_write(inode);
Dmitry Monakhov50db71a2014-12-05 21:37:15 -0500841 return ret;
Tao Ma9c3569b2012-12-10 14:05:57 -0500842 }
843
844 SetPageDirty(page);
845 SetPageUptodate(page);
846 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
847 *fsdata = (void *)CONVERT_INLINE_DATA;
848
849out:
850 up_read(&EXT4_I(inode)->xattr_sem);
851 if (page) {
852 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300853 put_page(page);
Tao Ma9c3569b2012-12-10 14:05:57 -0500854 }
855 return ret;
856}
857
858/*
859 * Prepare the write for the inline data.
860 * If the the data can be written into the inode, we just read
861 * the page and make it uptodate, and start the journal.
862 * Otherwise read the page, makes it dirty so that it can be
863 * handle in writepages(the i_disksize update is left to the
864 * normal ext4_da_write_end).
865 */
866int ext4_da_write_inline_data_begin(struct address_space *mapping,
867 struct inode *inode,
868 loff_t pos, unsigned len,
869 unsigned flags,
870 struct page **pagep,
871 void **fsdata)
872{
873 int ret, inline_size;
874 handle_t *handle;
875 struct page *page;
876 struct ext4_iloc iloc;
Jan Karabc0ca9df2014-01-06 14:02:23 -0500877 int retries;
Tao Ma9c3569b2012-12-10 14:05:57 -0500878
879 ret = ext4_get_inode_loc(inode, &iloc);
880 if (ret)
881 return ret;
882
Jan Karabc0ca9df2014-01-06 14:02:23 -0500883retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -0500884 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Tao Ma9c3569b2012-12-10 14:05:57 -0500885 if (IS_ERR(handle)) {
886 ret = PTR_ERR(handle);
Tao Ma9c3569b2012-12-10 14:05:57 -0500887 goto out;
888 }
889
890 inline_size = ext4_get_max_inline_size(inode);
891
892 ret = -ENOSPC;
893 if (inline_size >= pos + len) {
894 ret = ext4_prepare_inline_data(handle, inode, pos + len);
895 if (ret && ret != -ENOSPC)
Jan Kara52e44772014-01-06 14:03:23 -0500896 goto out_journal;
Tao Ma9c3569b2012-12-10 14:05:57 -0500897 }
898
Dmitry Monakhov5cc28a92014-12-02 16:09:50 -0500899 /*
900 * We cannot recurse into the filesystem as the transaction
901 * is already started.
902 */
903 flags |= AOP_FLAG_NOFS;
904
Tao Ma9c3569b2012-12-10 14:05:57 -0500905 if (ret == -ENOSPC) {
Theodore Ts'o7dd55892018-06-16 23:41:59 -0400906 ext4_journal_stop(handle);
Tao Ma9c3569b2012-12-10 14:05:57 -0500907 ret = ext4_da_convert_inline_data_to_extent(mapping,
908 inode,
909 flags,
910 fsdata);
Jan Karabc0ca9df2014-01-06 14:02:23 -0500911 if (ret == -ENOSPC &&
912 ext4_should_retry_alloc(inode->i_sb, &retries))
913 goto retry_journal;
Tao Ma9c3569b2012-12-10 14:05:57 -0500914 goto out;
915 }
916
Tao Ma9c3569b2012-12-10 14:05:57 -0500917 page = grab_cache_page_write_begin(mapping, 0, flags);
918 if (!page) {
919 ret = -ENOMEM;
Jan Kara52e44772014-01-06 14:03:23 -0500920 goto out_journal;
Tao Ma9c3569b2012-12-10 14:05:57 -0500921 }
922
923 down_read(&EXT4_I(inode)->xattr_sem);
924 if (!ext4_has_inline_data(inode)) {
925 ret = 0;
926 goto out_release_page;
927 }
928
929 if (!PageUptodate(page)) {
930 ret = ext4_read_inline_page(inode, page);
931 if (ret < 0)
932 goto out_release_page;
933 }
Theodore Ts'o5eed5972018-07-10 01:07:43 -0400934 ret = ext4_journal_get_write_access(handle, iloc.bh);
935 if (ret)
936 goto out_release_page;
Tao Ma9c3569b2012-12-10 14:05:57 -0500937
938 up_read(&EXT4_I(inode)->xattr_sem);
939 *pagep = page;
Tao Ma9c3569b2012-12-10 14:05:57 -0500940 brelse(iloc.bh);
941 return 1;
942out_release_page:
943 up_read(&EXT4_I(inode)->xattr_sem);
944 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300945 put_page(page);
Jan Kara52e44772014-01-06 14:03:23 -0500946out_journal:
947 ext4_journal_stop(handle);
Tao Ma9c3569b2012-12-10 14:05:57 -0500948out:
Tao Ma9c3569b2012-12-10 14:05:57 -0500949 brelse(iloc.bh);
950 return ret;
951}
952
953int ext4_da_write_inline_data_end(struct inode *inode, loff_t pos,
954 unsigned len, unsigned copied,
955 struct page *page)
956{
Theodore Ts'o0b37d0c2017-02-04 23:04:00 -0500957 int ret;
Tao Ma9c3569b2012-12-10 14:05:57 -0500958
Theodore Ts'o0b37d0c2017-02-04 23:04:00 -0500959 ret = ext4_write_inline_data_end(inode, pos, len, copied, page);
960 if (ret < 0) {
961 unlock_page(page);
962 put_page(page);
963 return ret;
964 }
965 copied = ret;
Tao Ma9c3569b2012-12-10 14:05:57 -0500966
967 /*
968 * No need to use i_size_read() here, the i_size
969 * cannot change under us because we hold i_mutex.
970 *
971 * But it's important to update i_size while still holding page lock:
972 * page writeout could otherwise come in and zero beyond i_size.
973 */
Theodore Ts'o5eed5972018-07-10 01:07:43 -0400974 if (pos+copied > inode->i_size)
Tao Ma9c3569b2012-12-10 14:05:57 -0500975 i_size_write(inode, pos+copied);
Tao Ma9c3569b2012-12-10 14:05:57 -0500976 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300977 put_page(page);
Tao Ma9c3569b2012-12-10 14:05:57 -0500978
979 /*
980 * Don't mark the inode dirty under page lock. First, it unnecessarily
981 * makes the holding time of page lock longer. Second, it forces lock
982 * ordering of page lock and transaction start for journaling
983 * filesystems.
984 */
Theodore Ts'o5eed5972018-07-10 01:07:43 -0400985 mark_inode_dirty(inode);
Tao Ma9c3569b2012-12-10 14:05:57 -0500986
987 return copied;
988}
Tao Maf19d5872012-12-10 14:05:51 -0500989
Tao Ma3c47d542012-12-10 14:05:59 -0500990#ifdef INLINE_DIR_DEBUG
991void ext4_show_inline_dir(struct inode *dir, struct buffer_head *bh,
992 void *inline_start, int inline_size)
993{
994 int offset;
995 unsigned short de_len;
996 struct ext4_dir_entry_2 *de = inline_start;
997 void *dlimit = inline_start + inline_size;
998
999 trace_printk("inode %lu\n", dir->i_ino);
1000 offset = 0;
1001 while ((void *)de < dlimit) {
1002 de_len = ext4_rec_len_from_disk(de->rec_len, inline_size);
Rasmus Villemoes80cfb712015-04-02 16:42:43 -04001003 trace_printk("de: off %u rlen %u name %.*s nlen %u ino %u\n",
Tao Ma3c47d542012-12-10 14:05:59 -05001004 offset, de_len, de->name_len, de->name,
1005 de->name_len, le32_to_cpu(de->inode));
1006 if (ext4_check_dir_entry(dir, NULL, de, bh,
1007 inline_start, inline_size, offset))
1008 BUG();
1009
1010 offset += de_len;
1011 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
1012 }
1013}
1014#else
1015#define ext4_show_inline_dir(dir, bh, inline_start, inline_size)
1016#endif
1017
1018/*
1019 * Add a new entry into a inline dir.
1020 * It will return -ENOSPC if no space is available, and -EIO
1021 * and -EEXIST if directory entry already exists.
1022 */
1023static int ext4_add_dirent_to_inline(handle_t *handle,
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001024 struct ext4_filename *fname,
Theodore Ts'o56a04912016-01-08 16:00:31 -05001025 struct inode *dir,
Tao Ma3c47d542012-12-10 14:05:59 -05001026 struct inode *inode,
1027 struct ext4_iloc *iloc,
1028 void *inline_start, int inline_size)
1029{
Tao Ma3c47d542012-12-10 14:05:59 -05001030 int err;
1031 struct ext4_dir_entry_2 *de;
1032
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001033 err = ext4_find_dest_de(dir, inode, iloc->bh, inline_start,
1034 inline_size, fname, &de);
Tao Ma3c47d542012-12-10 14:05:59 -05001035 if (err)
1036 return err;
1037
liang xie5d601252014-05-12 22:06:43 -04001038 BUFFER_TRACE(iloc->bh, "get_write_access");
Tao Ma3c47d542012-12-10 14:05:59 -05001039 err = ext4_journal_get_write_access(handle, iloc->bh);
1040 if (err)
1041 return err;
Hyojun Kim63da4202017-10-06 17:10:08 -07001042 ext4_insert_dentry(inode, de, inline_size, fname);
Tao Ma3c47d542012-12-10 14:05:59 -05001043
1044 ext4_show_inline_dir(dir, iloc->bh, inline_start, inline_size);
1045
1046 /*
1047 * XXX shouldn't update any times until successful
1048 * completion of syscall, but too many callers depend
1049 * on this.
1050 *
1051 * XXX similarly, too many callers depend on
1052 * ext4_new_inode() setting the times, but error
1053 * recovery deletes the inode, so the worst that can
1054 * happen is that the times are slightly out of date
1055 * and/or different from the directory change time.
1056 */
1057 dir->i_mtime = dir->i_ctime = ext4_current_time(dir);
1058 ext4_update_dx_flag(dir);
1059 dir->i_version++;
1060 ext4_mark_inode_dirty(handle, dir);
1061 return 1;
1062}
1063
1064static void *ext4_get_inline_xattr_pos(struct inode *inode,
1065 struct ext4_iloc *iloc)
1066{
1067 struct ext4_xattr_entry *entry;
1068 struct ext4_xattr_ibody_header *header;
1069
1070 BUG_ON(!EXT4_I(inode)->i_inline_off);
1071
1072 header = IHDR(inode, ext4_raw_inode(iloc));
1073 entry = (struct ext4_xattr_entry *)((void *)ext4_raw_inode(iloc) +
1074 EXT4_I(inode)->i_inline_off);
1075
1076 return (void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs);
1077}
1078
1079/* Set the final de to cover the whole block. */
1080static void ext4_update_final_de(void *de_buf, int old_size, int new_size)
1081{
1082 struct ext4_dir_entry_2 *de, *prev_de;
1083 void *limit;
1084 int de_len;
1085
1086 de = (struct ext4_dir_entry_2 *)de_buf;
1087 if (old_size) {
1088 limit = de_buf + old_size;
1089 do {
1090 prev_de = de;
1091 de_len = ext4_rec_len_from_disk(de->rec_len, old_size);
1092 de_buf += de_len;
1093 de = (struct ext4_dir_entry_2 *)de_buf;
1094 } while (de_buf < limit);
1095
1096 prev_de->rec_len = ext4_rec_len_to_disk(de_len + new_size -
1097 old_size, new_size);
1098 } else {
1099 /* this is just created, so create an empty entry. */
1100 de->inode = 0;
1101 de->rec_len = ext4_rec_len_to_disk(new_size, new_size);
1102 }
1103}
1104
1105static int ext4_update_inline_dir(handle_t *handle, struct inode *dir,
1106 struct ext4_iloc *iloc)
1107{
1108 int ret;
1109 int old_size = EXT4_I(dir)->i_inline_size - EXT4_MIN_INLINE_DATA_SIZE;
1110 int new_size = get_max_inline_xattr_value_size(dir, iloc);
1111
1112 if (new_size - old_size <= EXT4_DIR_REC_LEN(1))
1113 return -ENOSPC;
1114
1115 ret = ext4_update_inline_data(handle, dir,
1116 new_size + EXT4_MIN_INLINE_DATA_SIZE);
1117 if (ret)
1118 return ret;
1119
1120 ext4_update_final_de(ext4_get_inline_xattr_pos(dir, iloc), old_size,
1121 EXT4_I(dir)->i_inline_size -
1122 EXT4_MIN_INLINE_DATA_SIZE);
1123 dir->i_size = EXT4_I(dir)->i_disksize = EXT4_I(dir)->i_inline_size;
1124 return 0;
1125}
1126
1127static void ext4_restore_inline_data(handle_t *handle, struct inode *inode,
1128 struct ext4_iloc *iloc,
1129 void *buf, int inline_size)
1130{
1131 ext4_create_inline_data(handle, inode, inline_size);
1132 ext4_write_inline_data(inode, iloc, buf, 0, inline_size);
1133 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1134}
1135
1136static int ext4_finish_convert_inline_dir(handle_t *handle,
1137 struct inode *inode,
1138 struct buffer_head *dir_block,
1139 void *buf,
1140 int inline_size)
1141{
1142 int err, csum_size = 0, header_size = 0;
1143 struct ext4_dir_entry_2 *de;
1144 struct ext4_dir_entry_tail *t;
1145 void *target = dir_block->b_data;
1146
1147 /*
1148 * First create "." and ".." and then copy the dir information
1149 * back to the block.
1150 */
1151 de = (struct ext4_dir_entry_2 *)target;
1152 de = ext4_init_dot_dotdot(inode, de,
1153 inode->i_sb->s_blocksize, csum_size,
1154 le32_to_cpu(((struct ext4_dir_entry_2 *)buf)->inode), 1);
1155 header_size = (void *)de - target;
1156
1157 memcpy((void *)de, buf + EXT4_INLINE_DOTDOT_SIZE,
1158 inline_size - EXT4_INLINE_DOTDOT_SIZE);
1159
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001160 if (ext4_has_metadata_csum(inode->i_sb))
Tao Ma3c47d542012-12-10 14:05:59 -05001161 csum_size = sizeof(struct ext4_dir_entry_tail);
1162
1163 inode->i_size = inode->i_sb->s_blocksize;
1164 i_size_write(inode, inode->i_sb->s_blocksize);
1165 EXT4_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1166 ext4_update_final_de(dir_block->b_data,
1167 inline_size - EXT4_INLINE_DOTDOT_SIZE + header_size,
1168 inode->i_sb->s_blocksize - csum_size);
1169
1170 if (csum_size) {
1171 t = EXT4_DIRENT_TAIL(dir_block->b_data,
1172 inode->i_sb->s_blocksize);
1173 initialize_dirent_tail(t, inode->i_sb->s_blocksize);
1174 }
1175 set_buffer_uptodate(dir_block);
1176 err = ext4_handle_dirty_dirent_node(handle, inode, dir_block);
1177 if (err)
Eric Biggersf572ba92017-03-15 14:52:02 -04001178 return err;
Tao Ma3c47d542012-12-10 14:05:59 -05001179 set_buffer_verified(dir_block);
Eric Biggersf572ba92017-03-15 14:52:02 -04001180 return ext4_mark_inode_dirty(handle, inode);
Tao Ma3c47d542012-12-10 14:05:59 -05001181}
1182
1183static int ext4_convert_inline_data_nolock(handle_t *handle,
1184 struct inode *inode,
1185 struct ext4_iloc *iloc)
1186{
1187 int error;
1188 void *buf = NULL;
1189 struct buffer_head *data_bh = NULL;
1190 struct ext4_map_blocks map;
1191 int inline_size;
1192
1193 inline_size = ext4_get_inline_size(inode);
1194 buf = kmalloc(inline_size, GFP_NOFS);
1195 if (!buf) {
1196 error = -ENOMEM;
1197 goto out;
1198 }
1199
1200 error = ext4_read_inline_data(inode, buf, inline_size, iloc);
1201 if (error < 0)
1202 goto out;
1203
Darrick J. Wong40b163f2014-07-28 13:06:26 -04001204 /*
1205 * Make sure the inline directory entries pass checks before we try to
1206 * convert them, so that we avoid touching stuff that needs fsck.
1207 */
1208 if (S_ISDIR(inode->i_mode)) {
1209 error = ext4_check_all_de(inode, iloc->bh,
1210 buf + EXT4_INLINE_DOTDOT_SIZE,
1211 inline_size - EXT4_INLINE_DOTDOT_SIZE);
1212 if (error)
1213 goto out;
1214 }
1215
Tao Ma3c47d542012-12-10 14:05:59 -05001216 error = ext4_destroy_inline_data_nolock(handle, inode);
1217 if (error)
1218 goto out;
1219
1220 map.m_lblk = 0;
1221 map.m_len = 1;
1222 map.m_flags = 0;
1223 error = ext4_map_blocks(handle, inode, &map, EXT4_GET_BLOCKS_CREATE);
1224 if (error < 0)
1225 goto out_restore;
1226 if (!(map.m_flags & EXT4_MAP_MAPPED)) {
1227 error = -EIO;
1228 goto out_restore;
1229 }
1230
1231 data_bh = sb_getblk(inode->i_sb, map.m_pblk);
1232 if (!data_bh) {
Theodore Ts'o860d21e2013-01-12 16:19:36 -05001233 error = -ENOMEM;
Tao Ma3c47d542012-12-10 14:05:59 -05001234 goto out_restore;
1235 }
1236
1237 lock_buffer(data_bh);
1238 error = ext4_journal_get_create_access(handle, data_bh);
1239 if (error) {
1240 unlock_buffer(data_bh);
1241 error = -EIO;
1242 goto out_restore;
1243 }
1244 memset(data_bh->b_data, 0, inode->i_sb->s_blocksize);
1245
1246 if (!S_ISDIR(inode->i_mode)) {
1247 memcpy(data_bh->b_data, buf, inline_size);
1248 set_buffer_uptodate(data_bh);
1249 error = ext4_handle_dirty_metadata(handle,
1250 inode, data_bh);
1251 } else {
1252 error = ext4_finish_convert_inline_dir(handle, inode, data_bh,
1253 buf, inline_size);
1254 }
1255
1256 unlock_buffer(data_bh);
1257out_restore:
1258 if (error)
1259 ext4_restore_inline_data(handle, inode, iloc, buf, inline_size);
1260
1261out:
1262 brelse(data_bh);
1263 kfree(buf);
1264 return error;
1265}
1266
1267/*
1268 * Try to add the new entry to the inline data.
1269 * If succeeds, return 0. If not, extended the inline dir and copied data to
1270 * the new created block.
1271 */
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001272int ext4_try_add_inline_entry(handle_t *handle, struct ext4_filename *fname,
Theodore Ts'o56a04912016-01-08 16:00:31 -05001273 struct inode *dir, struct inode *inode)
Tao Ma3c47d542012-12-10 14:05:59 -05001274{
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001275 int ret, inline_size, no_expand;
Tao Ma3c47d542012-12-10 14:05:59 -05001276 void *inline_start;
1277 struct ext4_iloc iloc;
Tao Ma3c47d542012-12-10 14:05:59 -05001278
1279 ret = ext4_get_inode_loc(dir, &iloc);
1280 if (ret)
1281 return ret;
1282
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001283 ext4_write_lock_xattr(dir, &no_expand);
Tao Ma3c47d542012-12-10 14:05:59 -05001284 if (!ext4_has_inline_data(dir))
1285 goto out;
1286
1287 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1288 EXT4_INLINE_DOTDOT_SIZE;
1289 inline_size = EXT4_MIN_INLINE_DATA_SIZE - EXT4_INLINE_DOTDOT_SIZE;
1290
Theodore Ts'o56a04912016-01-08 16:00:31 -05001291 ret = ext4_add_dirent_to_inline(handle, fname, dir, inode, &iloc,
Tao Ma3c47d542012-12-10 14:05:59 -05001292 inline_start, inline_size);
1293 if (ret != -ENOSPC)
1294 goto out;
1295
1296 /* check whether it can be inserted to inline xattr space. */
1297 inline_size = EXT4_I(dir)->i_inline_size -
1298 EXT4_MIN_INLINE_DATA_SIZE;
1299 if (!inline_size) {
1300 /* Try to use the xattr space.*/
1301 ret = ext4_update_inline_dir(handle, dir, &iloc);
1302 if (ret && ret != -ENOSPC)
1303 goto out;
1304
1305 inline_size = EXT4_I(dir)->i_inline_size -
1306 EXT4_MIN_INLINE_DATA_SIZE;
1307 }
1308
1309 if (inline_size) {
1310 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1311
Theodore Ts'o56a04912016-01-08 16:00:31 -05001312 ret = ext4_add_dirent_to_inline(handle, fname, dir,
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001313 inode, &iloc, inline_start,
1314 inline_size);
Tao Ma3c47d542012-12-10 14:05:59 -05001315
1316 if (ret != -ENOSPC)
1317 goto out;
1318 }
1319
1320 /*
1321 * The inline space is filled up, so create a new block for it.
1322 * As the extent tree will be created, we have to save the inline
1323 * dir first.
1324 */
1325 ret = ext4_convert_inline_data_nolock(handle, dir, &iloc);
1326
1327out:
1328 ext4_mark_inode_dirty(handle, dir);
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001329 ext4_write_unlock_xattr(dir, &no_expand);
Tao Ma3c47d542012-12-10 14:05:59 -05001330 brelse(iloc.bh);
1331 return ret;
1332}
1333
Tao Ma8af0f082013-04-19 17:53:09 -04001334/*
1335 * This function fills a red-black tree with information from an
1336 * inlined dir. It returns the number directory entries loaded
1337 * into the tree. If there is an error it is returned in err.
1338 */
1339int htree_inlinedir_to_tree(struct file *dir_file,
1340 struct inode *dir, ext4_lblk_t block,
1341 struct dx_hash_info *hinfo,
1342 __u32 start_hash, __u32 start_minor_hash,
1343 int *has_inline_data)
1344{
1345 int err = 0, count = 0;
1346 unsigned int parent_ino;
1347 int pos;
1348 struct ext4_dir_entry_2 *de;
1349 struct inode *inode = file_inode(dir_file);
1350 int ret, inline_size = 0;
1351 struct ext4_iloc iloc;
1352 void *dir_buf = NULL;
1353 struct ext4_dir_entry_2 fake;
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001354 struct fscrypt_str tmp_str;
Tao Ma8af0f082013-04-19 17:53:09 -04001355
1356 ret = ext4_get_inode_loc(inode, &iloc);
1357 if (ret)
1358 return ret;
1359
1360 down_read(&EXT4_I(inode)->xattr_sem);
1361 if (!ext4_has_inline_data(inode)) {
1362 up_read(&EXT4_I(inode)->xattr_sem);
1363 *has_inline_data = 0;
1364 goto out;
1365 }
1366
1367 inline_size = ext4_get_inline_size(inode);
1368 dir_buf = kmalloc(inline_size, GFP_NOFS);
1369 if (!dir_buf) {
1370 ret = -ENOMEM;
1371 up_read(&EXT4_I(inode)->xattr_sem);
1372 goto out;
1373 }
1374
1375 ret = ext4_read_inline_data(inode, dir_buf, inline_size, &iloc);
1376 up_read(&EXT4_I(inode)->xattr_sem);
1377 if (ret < 0)
1378 goto out;
1379
1380 pos = 0;
1381 parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode);
1382 while (pos < inline_size) {
1383 /*
1384 * As inlined dir doesn't store any information about '.' and
1385 * only the inode number of '..' is stored, we have to handle
1386 * them differently.
1387 */
1388 if (pos == 0) {
1389 fake.inode = cpu_to_le32(inode->i_ino);
1390 fake.name_len = 1;
1391 strcpy(fake.name, ".");
1392 fake.rec_len = ext4_rec_len_to_disk(
1393 EXT4_DIR_REC_LEN(fake.name_len),
1394 inline_size);
1395 ext4_set_de_type(inode->i_sb, &fake, S_IFDIR);
1396 de = &fake;
1397 pos = EXT4_INLINE_DOTDOT_OFFSET;
1398 } else if (pos == EXT4_INLINE_DOTDOT_OFFSET) {
1399 fake.inode = cpu_to_le32(parent_ino);
1400 fake.name_len = 2;
1401 strcpy(fake.name, "..");
1402 fake.rec_len = ext4_rec_len_to_disk(
1403 EXT4_DIR_REC_LEN(fake.name_len),
1404 inline_size);
1405 ext4_set_de_type(inode->i_sb, &fake, S_IFDIR);
1406 de = &fake;
1407 pos = EXT4_INLINE_DOTDOT_SIZE;
1408 } else {
1409 de = (struct ext4_dir_entry_2 *)(dir_buf + pos);
1410 pos += ext4_rec_len_from_disk(de->rec_len, inline_size);
1411 if (ext4_check_dir_entry(inode, dir_file, de,
1412 iloc.bh, dir_buf,
1413 inline_size, pos)) {
1414 ret = count;
1415 goto out;
1416 }
1417 }
1418
1419 ext4fs_dirhash(de->name, de->name_len, hinfo);
1420 if ((hinfo->hash < start_hash) ||
1421 ((hinfo->hash == start_hash) &&
1422 (hinfo->minor_hash < start_minor_hash)))
1423 continue;
1424 if (de->inode == 0)
1425 continue;
Theodore Ts'o2f618302015-04-12 00:56:26 -04001426 tmp_str.name = de->name;
1427 tmp_str.len = de->name_len;
1428 err = ext4_htree_store_dirent(dir_file, hinfo->hash,
1429 hinfo->minor_hash, de, &tmp_str);
Tao Ma8af0f082013-04-19 17:53:09 -04001430 if (err) {
1431 count = err;
1432 goto out;
1433 }
1434 count++;
1435 }
1436 ret = count;
1437out:
1438 kfree(dir_buf);
1439 brelse(iloc.bh);
1440 return ret;
1441}
1442
Tao Mac4d8b022013-04-19 17:55:33 -04001443/*
1444 * So this function is called when the volume is mkfsed with
1445 * dir_index disabled. In order to keep f_pos persistent
1446 * after we convert from an inlined dir to a blocked based,
1447 * we just pretend that we are a normal dir and return the
1448 * offset as if '.' and '..' really take place.
1449 *
1450 */
Al Viro725bebb2013-05-17 16:08:53 -04001451int ext4_read_inline_dir(struct file *file,
1452 struct dir_context *ctx,
Tao Ma65d165d2012-12-10 14:05:59 -05001453 int *has_inline_data)
1454{
Tao Ma65d165d2012-12-10 14:05:59 -05001455 unsigned int offset, parent_ino;
Al Viro725bebb2013-05-17 16:08:53 -04001456 int i;
Tao Ma65d165d2012-12-10 14:05:59 -05001457 struct ext4_dir_entry_2 *de;
1458 struct super_block *sb;
Al Viro725bebb2013-05-17 16:08:53 -04001459 struct inode *inode = file_inode(file);
Tao Ma65d165d2012-12-10 14:05:59 -05001460 int ret, inline_size = 0;
1461 struct ext4_iloc iloc;
1462 void *dir_buf = NULL;
Tao Mac4d8b022013-04-19 17:55:33 -04001463 int dotdot_offset, dotdot_size, extra_offset, extra_size;
Tao Ma65d165d2012-12-10 14:05:59 -05001464
1465 ret = ext4_get_inode_loc(inode, &iloc);
1466 if (ret)
1467 return ret;
1468
1469 down_read(&EXT4_I(inode)->xattr_sem);
1470 if (!ext4_has_inline_data(inode)) {
1471 up_read(&EXT4_I(inode)->xattr_sem);
1472 *has_inline_data = 0;
1473 goto out;
1474 }
1475
1476 inline_size = ext4_get_inline_size(inode);
1477 dir_buf = kmalloc(inline_size, GFP_NOFS);
1478 if (!dir_buf) {
1479 ret = -ENOMEM;
1480 up_read(&EXT4_I(inode)->xattr_sem);
1481 goto out;
1482 }
1483
1484 ret = ext4_read_inline_data(inode, dir_buf, inline_size, &iloc);
1485 up_read(&EXT4_I(inode)->xattr_sem);
1486 if (ret < 0)
1487 goto out;
1488
BoxiLiu48ffdab2013-10-30 08:07:20 -04001489 ret = 0;
Tao Ma65d165d2012-12-10 14:05:59 -05001490 sb = inode->i_sb;
Tao Ma65d165d2012-12-10 14:05:59 -05001491 parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode);
Al Viro725bebb2013-05-17 16:08:53 -04001492 offset = ctx->pos;
Tao Ma65d165d2012-12-10 14:05:59 -05001493
Tao Mac4d8b022013-04-19 17:55:33 -04001494 /*
1495 * dotdot_offset and dotdot_size is the real offset and
1496 * size for ".." and "." if the dir is block based while
1497 * the real size for them are only EXT4_INLINE_DOTDOT_SIZE.
1498 * So we will use extra_offset and extra_size to indicate them
1499 * during the inline dir iteration.
1500 */
1501 dotdot_offset = EXT4_DIR_REC_LEN(1);
1502 dotdot_size = dotdot_offset + EXT4_DIR_REC_LEN(2);
1503 extra_offset = dotdot_size - EXT4_INLINE_DOTDOT_SIZE;
1504 extra_size = extra_offset + inline_size;
1505
Al Viro725bebb2013-05-17 16:08:53 -04001506 /*
1507 * If the version has changed since the last call to
1508 * readdir(2), then we might be pointing to an invalid
1509 * dirent right now. Scan from the start of the inline
1510 * dir to make sure.
1511 */
1512 if (file->f_version != inode->i_version) {
1513 for (i = 0; i < extra_size && i < offset;) {
1514 /*
1515 * "." is with offset 0 and
1516 * ".." is dotdot_offset.
1517 */
1518 if (!i) {
1519 i = dotdot_offset;
1520 continue;
1521 } else if (i == dotdot_offset) {
1522 i = dotdot_size;
Tao Mac4d8b022013-04-19 17:55:33 -04001523 continue;
1524 }
Al Viro725bebb2013-05-17 16:08:53 -04001525 /* for other entry, the real offset in
1526 * the buf has to be tuned accordingly.
1527 */
Tao Mac4d8b022013-04-19 17:55:33 -04001528 de = (struct ext4_dir_entry_2 *)
Al Viro725bebb2013-05-17 16:08:53 -04001529 (dir_buf + i - extra_offset);
1530 /* It's too expensive to do a full
1531 * dirent test each time round this
1532 * loop, but we do have to test at
1533 * least that it is non-zero. A
1534 * failure will be detected in the
1535 * dirent test below. */
1536 if (ext4_rec_len_from_disk(de->rec_len, extra_size)
1537 < EXT4_DIR_REC_LEN(1))
1538 break;
1539 i += ext4_rec_len_from_disk(de->rec_len,
1540 extra_size);
Tao Ma65d165d2012-12-10 14:05:59 -05001541 }
Al Viro725bebb2013-05-17 16:08:53 -04001542 offset = i;
1543 ctx->pos = offset;
1544 file->f_version = inode->i_version;
1545 }
1546
1547 while (ctx->pos < extra_size) {
1548 if (ctx->pos == 0) {
1549 if (!dir_emit(ctx, ".", 1, inode->i_ino, DT_DIR))
1550 goto out;
1551 ctx->pos = dotdot_offset;
1552 continue;
1553 }
1554
1555 if (ctx->pos == dotdot_offset) {
1556 if (!dir_emit(ctx, "..", 2, parent_ino, DT_DIR))
1557 goto out;
1558 ctx->pos = dotdot_size;
1559 continue;
1560 }
1561
1562 de = (struct ext4_dir_entry_2 *)
1563 (dir_buf + ctx->pos - extra_offset);
1564 if (ext4_check_dir_entry(inode, file, de, iloc.bh, dir_buf,
1565 extra_size, ctx->pos))
1566 goto out;
1567 if (le32_to_cpu(de->inode)) {
1568 if (!dir_emit(ctx, de->name, de->name_len,
1569 le32_to_cpu(de->inode),
1570 get_dtype(sb, de->file_type)))
1571 goto out;
1572 }
1573 ctx->pos += ext4_rec_len_from_disk(de->rec_len, extra_size);
Tao Ma65d165d2012-12-10 14:05:59 -05001574 }
1575out:
1576 kfree(dir_buf);
1577 brelse(iloc.bh);
1578 return ret;
1579}
1580
Tao Ma32f7f222012-12-10 14:06:01 -05001581struct buffer_head *ext4_get_first_inline_block(struct inode *inode,
1582 struct ext4_dir_entry_2 **parent_de,
1583 int *retval)
1584{
1585 struct ext4_iloc iloc;
1586
1587 *retval = ext4_get_inode_loc(inode, &iloc);
1588 if (*retval)
1589 return NULL;
1590
1591 *parent_de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1592
1593 return iloc.bh;
1594}
1595
Tao Ma3c47d542012-12-10 14:05:59 -05001596/*
1597 * Try to create the inline data for the new dir.
1598 * If it succeeds, return 0, otherwise return the error.
1599 * In case of ENOSPC, the caller should create the normal disk layout dir.
1600 */
1601int ext4_try_create_inline_dir(handle_t *handle, struct inode *parent,
1602 struct inode *inode)
1603{
1604 int ret, inline_size = EXT4_MIN_INLINE_DATA_SIZE;
1605 struct ext4_iloc iloc;
1606 struct ext4_dir_entry_2 *de;
1607
1608 ret = ext4_get_inode_loc(inode, &iloc);
1609 if (ret)
1610 return ret;
1611
1612 ret = ext4_prepare_inline_data(handle, inode, inline_size);
1613 if (ret)
1614 goto out;
1615
1616 /*
1617 * For inline dir, we only save the inode information for the ".."
1618 * and create a fake dentry to cover the left space.
1619 */
1620 de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1621 de->inode = cpu_to_le32(parent->i_ino);
1622 de = (struct ext4_dir_entry_2 *)((void *)de + EXT4_INLINE_DOTDOT_SIZE);
1623 de->inode = 0;
1624 de->rec_len = ext4_rec_len_to_disk(
1625 inline_size - EXT4_INLINE_DOTDOT_SIZE,
1626 inline_size);
1627 set_nlink(inode, 2);
1628 inode->i_size = EXT4_I(inode)->i_disksize = inline_size;
1629out:
1630 brelse(iloc.bh);
1631 return ret;
1632}
1633
Tao Mae8e948e2012-12-10 14:06:00 -05001634struct buffer_head *ext4_find_inline_entry(struct inode *dir,
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001635 struct ext4_filename *fname,
Tao Mae8e948e2012-12-10 14:06:00 -05001636 const struct qstr *d_name,
1637 struct ext4_dir_entry_2 **res_dir,
1638 int *has_inline_data)
1639{
1640 int ret;
1641 struct ext4_iloc iloc;
1642 void *inline_start;
1643 int inline_size;
1644
1645 if (ext4_get_inode_loc(dir, &iloc))
1646 return NULL;
1647
1648 down_read(&EXT4_I(dir)->xattr_sem);
1649 if (!ext4_has_inline_data(dir)) {
1650 *has_inline_data = 0;
1651 goto out;
1652 }
1653
1654 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1655 EXT4_INLINE_DOTDOT_SIZE;
1656 inline_size = EXT4_MIN_INLINE_DATA_SIZE - EXT4_INLINE_DOTDOT_SIZE;
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001657 ret = ext4_search_dir(iloc.bh, inline_start, inline_size,
1658 dir, fname, d_name, 0, res_dir);
Tao Mae8e948e2012-12-10 14:06:00 -05001659 if (ret == 1)
1660 goto out_find;
1661 if (ret < 0)
1662 goto out;
1663
1664 if (ext4_get_inline_size(dir) == EXT4_MIN_INLINE_DATA_SIZE)
1665 goto out;
1666
1667 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1668 inline_size = ext4_get_inline_size(dir) - EXT4_MIN_INLINE_DATA_SIZE;
1669
Theodore Ts'o5b643f92015-05-18 13:14:47 -04001670 ret = ext4_search_dir(iloc.bh, inline_start, inline_size,
1671 dir, fname, d_name, 0, res_dir);
Tao Mae8e948e2012-12-10 14:06:00 -05001672 if (ret == 1)
1673 goto out_find;
1674
1675out:
1676 brelse(iloc.bh);
1677 iloc.bh = NULL;
1678out_find:
1679 up_read(&EXT4_I(dir)->xattr_sem);
1680 return iloc.bh;
1681}
1682
Tao Ma9f40fe52012-12-10 14:06:00 -05001683int ext4_delete_inline_entry(handle_t *handle,
1684 struct inode *dir,
1685 struct ext4_dir_entry_2 *de_del,
1686 struct buffer_head *bh,
1687 int *has_inline_data)
1688{
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001689 int err, inline_size, no_expand;
Tao Ma9f40fe52012-12-10 14:06:00 -05001690 struct ext4_iloc iloc;
1691 void *inline_start;
1692
1693 err = ext4_get_inode_loc(dir, &iloc);
1694 if (err)
1695 return err;
1696
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001697 ext4_write_lock_xattr(dir, &no_expand);
Tao Ma9f40fe52012-12-10 14:06:00 -05001698 if (!ext4_has_inline_data(dir)) {
1699 *has_inline_data = 0;
1700 goto out;
1701 }
1702
1703 if ((void *)de_del - ((void *)ext4_raw_inode(&iloc)->i_block) <
1704 EXT4_MIN_INLINE_DATA_SIZE) {
1705 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1706 EXT4_INLINE_DOTDOT_SIZE;
1707 inline_size = EXT4_MIN_INLINE_DATA_SIZE -
1708 EXT4_INLINE_DOTDOT_SIZE;
1709 } else {
1710 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1711 inline_size = ext4_get_inline_size(dir) -
1712 EXT4_MIN_INLINE_DATA_SIZE;
1713 }
1714
liang xie5d601252014-05-12 22:06:43 -04001715 BUFFER_TRACE(bh, "get_write_access");
Tao Ma9f40fe52012-12-10 14:06:00 -05001716 err = ext4_journal_get_write_access(handle, bh);
1717 if (err)
1718 goto out;
1719
1720 err = ext4_generic_delete_entry(handle, dir, de_del, bh,
1721 inline_start, inline_size, 0);
1722 if (err)
1723 goto out;
1724
Tao Ma9f40fe52012-12-10 14:06:00 -05001725 err = ext4_mark_inode_dirty(handle, dir);
1726 if (unlikely(err))
1727 goto out;
1728
1729 ext4_show_inline_dir(dir, iloc.bh, inline_start, inline_size);
1730out:
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001731 ext4_write_unlock_xattr(dir, &no_expand);
Tao Ma9f40fe52012-12-10 14:06:00 -05001732 brelse(iloc.bh);
1733 if (err != -ENOENT)
1734 ext4_std_error(dir->i_sb, err);
1735 return err;
1736}
1737
Tao Ma61f86632012-12-10 14:06:01 -05001738/*
1739 * Get the inline dentry at offset.
1740 */
1741static inline struct ext4_dir_entry_2 *
1742ext4_get_inline_entry(struct inode *inode,
1743 struct ext4_iloc *iloc,
1744 unsigned int offset,
1745 void **inline_start,
1746 int *inline_size)
1747{
1748 void *inline_pos;
1749
1750 BUG_ON(offset > ext4_get_inline_size(inode));
1751
1752 if (offset < EXT4_MIN_INLINE_DATA_SIZE) {
1753 inline_pos = (void *)ext4_raw_inode(iloc)->i_block;
1754 *inline_size = EXT4_MIN_INLINE_DATA_SIZE;
1755 } else {
1756 inline_pos = ext4_get_inline_xattr_pos(inode, iloc);
1757 offset -= EXT4_MIN_INLINE_DATA_SIZE;
1758 *inline_size = ext4_get_inline_size(inode) -
1759 EXT4_MIN_INLINE_DATA_SIZE;
1760 }
1761
1762 if (inline_start)
1763 *inline_start = inline_pos;
1764 return (struct ext4_dir_entry_2 *)(inline_pos + offset);
1765}
1766
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001767bool empty_inline_dir(struct inode *dir, int *has_inline_data)
Tao Ma61f86632012-12-10 14:06:01 -05001768{
1769 int err, inline_size;
1770 struct ext4_iloc iloc;
Theodore Ts'oacf32cf2018-08-27 09:22:45 -04001771 size_t inline_len;
Tao Ma61f86632012-12-10 14:06:01 -05001772 void *inline_pos;
1773 unsigned int offset;
1774 struct ext4_dir_entry_2 *de;
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001775 bool ret = true;
Tao Ma61f86632012-12-10 14:06:01 -05001776
1777 err = ext4_get_inode_loc(dir, &iloc);
1778 if (err) {
1779 EXT4_ERROR_INODE(dir, "error %d getting inode %lu block",
1780 err, dir->i_ino);
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001781 return true;
Tao Ma61f86632012-12-10 14:06:01 -05001782 }
1783
1784 down_read(&EXT4_I(dir)->xattr_sem);
1785 if (!ext4_has_inline_data(dir)) {
1786 *has_inline_data = 0;
1787 goto out;
1788 }
1789
1790 de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1791 if (!le32_to_cpu(de->inode)) {
1792 ext4_warning(dir->i_sb,
1793 "bad inline directory (dir #%lu) - no `..'",
1794 dir->i_ino);
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001795 ret = true;
Tao Ma61f86632012-12-10 14:06:01 -05001796 goto out;
1797 }
1798
Theodore Ts'oacf32cf2018-08-27 09:22:45 -04001799 inline_len = ext4_get_inline_size(dir);
Tao Ma61f86632012-12-10 14:06:01 -05001800 offset = EXT4_INLINE_DOTDOT_SIZE;
Theodore Ts'oacf32cf2018-08-27 09:22:45 -04001801 while (offset < inline_len) {
Tao Ma61f86632012-12-10 14:06:01 -05001802 de = ext4_get_inline_entry(dir, &iloc, offset,
1803 &inline_pos, &inline_size);
1804 if (ext4_check_dir_entry(dir, NULL, de,
1805 iloc.bh, inline_pos,
1806 inline_size, offset)) {
1807 ext4_warning(dir->i_sb,
1808 "bad inline directory (dir #%lu) - "
1809 "inode %u, rec_len %u, name_len %d"
Jakub Wilk8d2ae1c2016-04-27 01:11:21 -04001810 "inline size %d",
Tao Ma61f86632012-12-10 14:06:01 -05001811 dir->i_ino, le32_to_cpu(de->inode),
1812 le16_to_cpu(de->rec_len), de->name_len,
1813 inline_size);
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001814 ret = true;
Tao Ma61f86632012-12-10 14:06:01 -05001815 goto out;
1816 }
1817 if (le32_to_cpu(de->inode)) {
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001818 ret = false;
Tao Ma61f86632012-12-10 14:06:01 -05001819 goto out;
1820 }
1821 offset += ext4_rec_len_from_disk(de->rec_len, inline_size);
1822 }
1823
1824out:
1825 up_read(&EXT4_I(dir)->xattr_sem);
1826 brelse(iloc.bh);
1827 return ret;
1828}
1829
Tao Ma67cf5b02012-12-10 14:04:46 -05001830int ext4_destroy_inline_data(handle_t *handle, struct inode *inode)
1831{
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001832 int ret, no_expand;
Tao Ma67cf5b02012-12-10 14:04:46 -05001833
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001834 ext4_write_lock_xattr(inode, &no_expand);
Tao Ma67cf5b02012-12-10 14:04:46 -05001835 ret = ext4_destroy_inline_data_nolock(handle, inode);
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001836 ext4_write_unlock_xattr(inode, &no_expand);
Tao Ma67cf5b02012-12-10 14:04:46 -05001837
1838 return ret;
1839}
Tao Ma94191982012-12-10 14:06:02 -05001840
1841int ext4_inline_data_fiemap(struct inode *inode,
1842 struct fiemap_extent_info *fieinfo,
Dmitry Monakhovd952d692014-12-02 16:11:20 -05001843 int *has_inline, __u64 start, __u64 len)
Tao Ma94191982012-12-10 14:06:02 -05001844{
1845 __u64 physical = 0;
Dmitry Monakhovd952d692014-12-02 16:11:20 -05001846 __u64 inline_len;
1847 __u32 flags = FIEMAP_EXTENT_DATA_INLINE | FIEMAP_EXTENT_NOT_ALIGNED |
1848 FIEMAP_EXTENT_LAST;
Tao Ma94191982012-12-10 14:06:02 -05001849 int error = 0;
1850 struct ext4_iloc iloc;
1851
1852 down_read(&EXT4_I(inode)->xattr_sem);
1853 if (!ext4_has_inline_data(inode)) {
1854 *has_inline = 0;
1855 goto out;
1856 }
Dmitry Monakhovd952d692014-12-02 16:11:20 -05001857 inline_len = min_t(size_t, ext4_get_inline_size(inode),
1858 i_size_read(inode));
1859 if (start >= inline_len)
1860 goto out;
1861 if (start + len < inline_len)
1862 inline_len = start + len;
1863 inline_len -= start;
Tao Ma94191982012-12-10 14:06:02 -05001864
1865 error = ext4_get_inode_loc(inode, &iloc);
1866 if (error)
1867 goto out;
1868
Jan Karaeaf37932013-05-31 19:33:42 -04001869 physical = (__u64)iloc.bh->b_blocknr << inode->i_sb->s_blocksize_bits;
Tao Ma94191982012-12-10 14:06:02 -05001870 physical += (char *)ext4_raw_inode(&iloc) - iloc.bh->b_data;
1871 physical += offsetof(struct ext4_inode, i_block);
Tao Ma94191982012-12-10 14:06:02 -05001872
1873 if (physical)
Dmitry Monakhovd952d692014-12-02 16:11:20 -05001874 error = fiemap_fill_next_extent(fieinfo, start, physical,
1875 inline_len, flags);
Tao Ma94191982012-12-10 14:06:02 -05001876 brelse(iloc.bh);
1877out:
1878 up_read(&EXT4_I(inode)->xattr_sem);
1879 return (error < 0 ? error : 0);
1880}
Tao Ma0d812f72012-12-10 14:06:02 -05001881
Tao Maaef1c852012-12-10 14:06:02 -05001882void ext4_inline_data_truncate(struct inode *inode, int *has_inline)
1883{
1884 handle_t *handle;
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001885 int inline_size, value_len, needed_blocks, no_expand;
Tao Maaef1c852012-12-10 14:06:02 -05001886 size_t i_size;
1887 void *value = NULL;
1888 struct ext4_xattr_ibody_find is = {
1889 .s = { .not_found = -ENODATA, },
1890 };
1891 struct ext4_xattr_info i = {
1892 .name_index = EXT4_XATTR_INDEX_SYSTEM,
1893 .name = EXT4_XATTR_SYSTEM_DATA,
1894 };
1895
1896
1897 needed_blocks = ext4_writepage_trans_blocks(inode);
Theodore Ts'o9924a922013-02-08 21:59:22 -05001898 handle = ext4_journal_start(inode, EXT4_HT_INODE, needed_blocks);
Tao Maaef1c852012-12-10 14:06:02 -05001899 if (IS_ERR(handle))
1900 return;
1901
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001902 ext4_write_lock_xattr(inode, &no_expand);
Tao Maaef1c852012-12-10 14:06:02 -05001903 if (!ext4_has_inline_data(inode)) {
1904 *has_inline = 0;
1905 ext4_journal_stop(handle);
1906 return;
1907 }
1908
1909 if (ext4_orphan_add(handle, inode))
1910 goto out;
1911
1912 if (ext4_get_inode_loc(inode, &is.iloc))
1913 goto out;
1914
1915 down_write(&EXT4_I(inode)->i_data_sem);
1916 i_size = inode->i_size;
1917 inline_size = ext4_get_inline_size(inode);
1918 EXT4_I(inode)->i_disksize = i_size;
1919
1920 if (i_size < inline_size) {
1921 /* Clear the content in the xattr space. */
1922 if (inline_size > EXT4_MIN_INLINE_DATA_SIZE) {
1923 if (ext4_xattr_ibody_find(inode, &i, &is))
1924 goto out_error;
1925
1926 BUG_ON(is.s.not_found);
1927
1928 value_len = le32_to_cpu(is.s.here->e_value_size);
1929 value = kmalloc(value_len, GFP_NOFS);
1930 if (!value)
1931 goto out_error;
1932
1933 if (ext4_xattr_ibody_get(inode, i.name_index, i.name,
1934 value, value_len))
1935 goto out_error;
1936
1937 i.value = value;
1938 i.value_len = i_size > EXT4_MIN_INLINE_DATA_SIZE ?
1939 i_size - EXT4_MIN_INLINE_DATA_SIZE : 0;
1940 if (ext4_xattr_ibody_inline_set(handle, inode, &i, &is))
1941 goto out_error;
1942 }
1943
1944 /* Clear the content within i_blocks. */
Theodore Ts'o09c455a2014-01-07 12:58:19 -05001945 if (i_size < EXT4_MIN_INLINE_DATA_SIZE) {
1946 void *p = (void *) ext4_raw_inode(&is.iloc)->i_block;
1947 memset(p + i_size, 0,
1948 EXT4_MIN_INLINE_DATA_SIZE - i_size);
1949 }
Tao Maaef1c852012-12-10 14:06:02 -05001950
1951 EXT4_I(inode)->i_inline_size = i_size <
1952 EXT4_MIN_INLINE_DATA_SIZE ?
1953 EXT4_MIN_INLINE_DATA_SIZE : i_size;
1954 }
1955
1956out_error:
1957 up_write(&EXT4_I(inode)->i_data_sem);
1958out:
1959 brelse(is.iloc.bh);
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001960 ext4_write_unlock_xattr(inode, &no_expand);
Tao Maaef1c852012-12-10 14:06:02 -05001961 kfree(value);
1962 if (inode->i_nlink)
1963 ext4_orphan_del(handle, inode);
1964
1965 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
1966 ext4_mark_inode_dirty(handle, inode);
1967 if (IS_SYNC(inode))
1968 ext4_handle_sync(handle);
1969
1970 ext4_journal_stop(handle);
1971 return;
1972}
Tao Ma0c8d4142012-12-10 14:06:03 -05001973
1974int ext4_convert_inline_data(struct inode *inode)
1975{
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001976 int error, needed_blocks, no_expand;
Tao Ma0c8d4142012-12-10 14:06:03 -05001977 handle_t *handle;
1978 struct ext4_iloc iloc;
1979
1980 if (!ext4_has_inline_data(inode)) {
1981 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1982 return 0;
1983 }
1984
1985 needed_blocks = ext4_writepage_trans_blocks(inode);
1986
1987 iloc.bh = NULL;
1988 error = ext4_get_inode_loc(inode, &iloc);
1989 if (error)
1990 return error;
1991
Theodore Ts'o9924a922013-02-08 21:59:22 -05001992 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Tao Ma0c8d4142012-12-10 14:06:03 -05001993 if (IS_ERR(handle)) {
1994 error = PTR_ERR(handle);
1995 goto out_free;
1996 }
1997
Theodore Ts'oda1e4022017-01-11 21:50:46 -05001998 ext4_write_lock_xattr(inode, &no_expand);
1999 if (ext4_has_inline_data(inode))
2000 error = ext4_convert_inline_data_nolock(handle, inode, &iloc);
2001 ext4_write_unlock_xattr(inode, &no_expand);
Tao Ma0c8d4142012-12-10 14:06:03 -05002002 ext4_journal_stop(handle);
2003out_free:
2004 brelse(iloc.bh);
2005 return error;
2006}