]>
Commit | Line | Data |
---|---|---|
c1d7c514 | 1 | // SPDX-License-Identifier: GPL-2.0 |
6cbd5570 CM |
2 | /* |
3 | * Copyright (C) 2007 Oracle. All rights reserved. | |
6cbd5570 CM |
4 | */ |
5 | ||
39279cc3 CM |
6 | #include <linux/fs.h> |
7 | #include <linux/pagemap.h> | |
39279cc3 CM |
8 | #include <linux/time.h> |
9 | #include <linux/init.h> | |
10 | #include <linux/string.h> | |
39279cc3 | 11 | #include <linux/backing-dev.h> |
2fe17c10 | 12 | #include <linux/falloc.h> |
39279cc3 | 13 | #include <linux/writeback.h> |
39279cc3 | 14 | #include <linux/compat.h> |
5a0e3ad6 | 15 | #include <linux/slab.h> |
55e301fd | 16 | #include <linux/btrfs.h> |
e2e40f2c | 17 | #include <linux/uio.h> |
ae5e165d | 18 | #include <linux/iversion.h> |
14605409 | 19 | #include <linux/fsverity.h> |
39279cc3 CM |
20 | #include "ctree.h" |
21 | #include "disk-io.h" | |
22 | #include "transaction.h" | |
23 | #include "btrfs_inode.h" | |
39279cc3 | 24 | #include "print-tree.h" |
e02119d5 CM |
25 | #include "tree-log.h" |
26 | #include "locking.h" | |
2aaa6655 | 27 | #include "volumes.h" |
fcebe456 | 28 | #include "qgroup.h" |
ebb8765b | 29 | #include "compression.h" |
86736342 | 30 | #include "delalloc-space.h" |
6a177381 | 31 | #include "reflink.h" |
f02a85d2 | 32 | #include "subpage.h" |
39279cc3 | 33 | |
9247f317 | 34 | static struct kmem_cache *btrfs_inode_defrag_cachep; |
4cb5300b CM |
35 | /* |
36 | * when auto defrag is enabled we | |
37 | * queue up these defrag structs to remember which | |
38 | * inodes need defragging passes | |
39 | */ | |
40 | struct inode_defrag { | |
41 | struct rb_node rb_node; | |
42 | /* objectid */ | |
43 | u64 ino; | |
44 | /* | |
45 | * transid where the defrag was added, we search for | |
46 | * extents newer than this | |
47 | */ | |
48 | u64 transid; | |
49 | ||
50 | /* root objectid */ | |
51 | u64 root; | |
52 | ||
53 | /* last offset we were able to defrag */ | |
54 | u64 last_offset; | |
55 | ||
56 | /* if we've wrapped around back to zero once already */ | |
57 | int cycled; | |
58 | }; | |
59 | ||
762f2263 MX |
60 | static int __compare_inode_defrag(struct inode_defrag *defrag1, |
61 | struct inode_defrag *defrag2) | |
62 | { | |
63 | if (defrag1->root > defrag2->root) | |
64 | return 1; | |
65 | else if (defrag1->root < defrag2->root) | |
66 | return -1; | |
67 | else if (defrag1->ino > defrag2->ino) | |
68 | return 1; | |
69 | else if (defrag1->ino < defrag2->ino) | |
70 | return -1; | |
71 | else | |
72 | return 0; | |
73 | } | |
74 | ||
4cb5300b CM |
75 | /* pop a record for an inode into the defrag tree. The lock |
76 | * must be held already | |
77 | * | |
78 | * If you're inserting a record for an older transid than an | |
79 | * existing record, the transid already in the tree is lowered | |
80 | * | |
81 | * If an existing record is found the defrag item you | |
82 | * pass in is freed | |
83 | */ | |
6158e1ce | 84 | static int __btrfs_add_inode_defrag(struct btrfs_inode *inode, |
4cb5300b CM |
85 | struct inode_defrag *defrag) |
86 | { | |
3ffbd68c | 87 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
4cb5300b CM |
88 | struct inode_defrag *entry; |
89 | struct rb_node **p; | |
90 | struct rb_node *parent = NULL; | |
762f2263 | 91 | int ret; |
4cb5300b | 92 | |
0b246afa | 93 | p = &fs_info->defrag_inodes.rb_node; |
4cb5300b CM |
94 | while (*p) { |
95 | parent = *p; | |
96 | entry = rb_entry(parent, struct inode_defrag, rb_node); | |
97 | ||
762f2263 MX |
98 | ret = __compare_inode_defrag(defrag, entry); |
99 | if (ret < 0) | |
4cb5300b | 100 | p = &parent->rb_left; |
762f2263 | 101 | else if (ret > 0) |
4cb5300b CM |
102 | p = &parent->rb_right; |
103 | else { | |
104 | /* if we're reinserting an entry for | |
105 | * an old defrag run, make sure to | |
106 | * lower the transid of our existing record | |
107 | */ | |
108 | if (defrag->transid < entry->transid) | |
109 | entry->transid = defrag->transid; | |
110 | if (defrag->last_offset > entry->last_offset) | |
111 | entry->last_offset = defrag->last_offset; | |
8ddc4734 | 112 | return -EEXIST; |
4cb5300b CM |
113 | } |
114 | } | |
6158e1ce | 115 | set_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags); |
4cb5300b | 116 | rb_link_node(&defrag->rb_node, parent, p); |
0b246afa | 117 | rb_insert_color(&defrag->rb_node, &fs_info->defrag_inodes); |
8ddc4734 MX |
118 | return 0; |
119 | } | |
4cb5300b | 120 | |
2ff7e61e | 121 | static inline int __need_auto_defrag(struct btrfs_fs_info *fs_info) |
8ddc4734 | 122 | { |
0b246afa | 123 | if (!btrfs_test_opt(fs_info, AUTO_DEFRAG)) |
8ddc4734 MX |
124 | return 0; |
125 | ||
0b246afa | 126 | if (btrfs_fs_closing(fs_info)) |
8ddc4734 | 127 | return 0; |
4cb5300b | 128 | |
8ddc4734 | 129 | return 1; |
4cb5300b CM |
130 | } |
131 | ||
132 | /* | |
133 | * insert a defrag record for this inode if auto defrag is | |
134 | * enabled | |
135 | */ | |
136 | int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans, | |
6158e1ce | 137 | struct btrfs_inode *inode) |
4cb5300b | 138 | { |
6158e1ce | 139 | struct btrfs_root *root = inode->root; |
3ffbd68c | 140 | struct btrfs_fs_info *fs_info = root->fs_info; |
4cb5300b | 141 | struct inode_defrag *defrag; |
4cb5300b | 142 | u64 transid; |
8ddc4734 | 143 | int ret; |
4cb5300b | 144 | |
2ff7e61e | 145 | if (!__need_auto_defrag(fs_info)) |
4cb5300b CM |
146 | return 0; |
147 | ||
6158e1ce | 148 | if (test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags)) |
4cb5300b CM |
149 | return 0; |
150 | ||
151 | if (trans) | |
152 | transid = trans->transid; | |
153 | else | |
6158e1ce | 154 | transid = inode->root->last_trans; |
4cb5300b | 155 | |
9247f317 | 156 | defrag = kmem_cache_zalloc(btrfs_inode_defrag_cachep, GFP_NOFS); |
4cb5300b CM |
157 | if (!defrag) |
158 | return -ENOMEM; | |
159 | ||
6158e1ce | 160 | defrag->ino = btrfs_ino(inode); |
4cb5300b CM |
161 | defrag->transid = transid; |
162 | defrag->root = root->root_key.objectid; | |
163 | ||
0b246afa | 164 | spin_lock(&fs_info->defrag_inodes_lock); |
6158e1ce | 165 | if (!test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags)) { |
8ddc4734 MX |
166 | /* |
167 | * If we set IN_DEFRAG flag and evict the inode from memory, | |
168 | * and then re-read this inode, this new inode doesn't have | |
169 | * IN_DEFRAG flag. At the case, we may find the existed defrag. | |
170 | */ | |
171 | ret = __btrfs_add_inode_defrag(inode, defrag); | |
172 | if (ret) | |
173 | kmem_cache_free(btrfs_inode_defrag_cachep, defrag); | |
174 | } else { | |
9247f317 | 175 | kmem_cache_free(btrfs_inode_defrag_cachep, defrag); |
8ddc4734 | 176 | } |
0b246afa | 177 | spin_unlock(&fs_info->defrag_inodes_lock); |
a0f98dde | 178 | return 0; |
4cb5300b CM |
179 | } |
180 | ||
181 | /* | |
8ddc4734 MX |
182 | * Requeue the defrag object. If there is a defrag object that points to |
183 | * the same inode in the tree, we will merge them together (by | |
184 | * __btrfs_add_inode_defrag()) and free the one that we want to requeue. | |
4cb5300b | 185 | */ |
46e59791 | 186 | static void btrfs_requeue_inode_defrag(struct btrfs_inode *inode, |
48a3b636 | 187 | struct inode_defrag *defrag) |
8ddc4734 | 188 | { |
3ffbd68c | 189 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
8ddc4734 MX |
190 | int ret; |
191 | ||
2ff7e61e | 192 | if (!__need_auto_defrag(fs_info)) |
8ddc4734 MX |
193 | goto out; |
194 | ||
195 | /* | |
196 | * Here we don't check the IN_DEFRAG flag, because we need merge | |
197 | * them together. | |
198 | */ | |
0b246afa | 199 | spin_lock(&fs_info->defrag_inodes_lock); |
8ddc4734 | 200 | ret = __btrfs_add_inode_defrag(inode, defrag); |
0b246afa | 201 | spin_unlock(&fs_info->defrag_inodes_lock); |
8ddc4734 MX |
202 | if (ret) |
203 | goto out; | |
204 | return; | |
205 | out: | |
206 | kmem_cache_free(btrfs_inode_defrag_cachep, defrag); | |
207 | } | |
208 | ||
4cb5300b | 209 | /* |
26176e7c MX |
210 | * pick the defragable inode that we want, if it doesn't exist, we will get |
211 | * the next one. | |
4cb5300b | 212 | */ |
26176e7c MX |
213 | static struct inode_defrag * |
214 | btrfs_pick_defrag_inode(struct btrfs_fs_info *fs_info, u64 root, u64 ino) | |
4cb5300b CM |
215 | { |
216 | struct inode_defrag *entry = NULL; | |
762f2263 | 217 | struct inode_defrag tmp; |
4cb5300b CM |
218 | struct rb_node *p; |
219 | struct rb_node *parent = NULL; | |
762f2263 MX |
220 | int ret; |
221 | ||
222 | tmp.ino = ino; | |
223 | tmp.root = root; | |
4cb5300b | 224 | |
26176e7c MX |
225 | spin_lock(&fs_info->defrag_inodes_lock); |
226 | p = fs_info->defrag_inodes.rb_node; | |
4cb5300b CM |
227 | while (p) { |
228 | parent = p; | |
229 | entry = rb_entry(parent, struct inode_defrag, rb_node); | |
230 | ||
762f2263 MX |
231 | ret = __compare_inode_defrag(&tmp, entry); |
232 | if (ret < 0) | |
4cb5300b | 233 | p = parent->rb_left; |
762f2263 | 234 | else if (ret > 0) |
4cb5300b CM |
235 | p = parent->rb_right; |
236 | else | |
26176e7c | 237 | goto out; |
4cb5300b CM |
238 | } |
239 | ||
26176e7c MX |
240 | if (parent && __compare_inode_defrag(&tmp, entry) > 0) { |
241 | parent = rb_next(parent); | |
242 | if (parent) | |
4cb5300b | 243 | entry = rb_entry(parent, struct inode_defrag, rb_node); |
26176e7c MX |
244 | else |
245 | entry = NULL; | |
4cb5300b | 246 | } |
26176e7c MX |
247 | out: |
248 | if (entry) | |
249 | rb_erase(parent, &fs_info->defrag_inodes); | |
250 | spin_unlock(&fs_info->defrag_inodes_lock); | |
251 | return entry; | |
4cb5300b CM |
252 | } |
253 | ||
26176e7c | 254 | void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info) |
4cb5300b CM |
255 | { |
256 | struct inode_defrag *defrag; | |
26176e7c MX |
257 | struct rb_node *node; |
258 | ||
259 | spin_lock(&fs_info->defrag_inodes_lock); | |
260 | node = rb_first(&fs_info->defrag_inodes); | |
261 | while (node) { | |
262 | rb_erase(node, &fs_info->defrag_inodes); | |
263 | defrag = rb_entry(node, struct inode_defrag, rb_node); | |
264 | kmem_cache_free(btrfs_inode_defrag_cachep, defrag); | |
265 | ||
351810c1 | 266 | cond_resched_lock(&fs_info->defrag_inodes_lock); |
26176e7c MX |
267 | |
268 | node = rb_first(&fs_info->defrag_inodes); | |
269 | } | |
270 | spin_unlock(&fs_info->defrag_inodes_lock); | |
271 | } | |
272 | ||
273 | #define BTRFS_DEFRAG_BATCH 1024 | |
274 | ||
275 | static int __btrfs_run_defrag_inode(struct btrfs_fs_info *fs_info, | |
276 | struct inode_defrag *defrag) | |
277 | { | |
4cb5300b CM |
278 | struct btrfs_root *inode_root; |
279 | struct inode *inode; | |
4cb5300b | 280 | struct btrfs_ioctl_defrag_range_args range; |
4cb5300b | 281 | int num_defrag; |
6f1c3605 | 282 | int ret; |
4cb5300b | 283 | |
26176e7c | 284 | /* get the inode */ |
56e9357a | 285 | inode_root = btrfs_get_fs_root(fs_info, defrag->root, true); |
26176e7c | 286 | if (IS_ERR(inode_root)) { |
6f1c3605 LB |
287 | ret = PTR_ERR(inode_root); |
288 | goto cleanup; | |
289 | } | |
26176e7c | 290 | |
0202e83f | 291 | inode = btrfs_iget(fs_info->sb, defrag->ino, inode_root); |
00246528 | 292 | btrfs_put_root(inode_root); |
26176e7c | 293 | if (IS_ERR(inode)) { |
6f1c3605 LB |
294 | ret = PTR_ERR(inode); |
295 | goto cleanup; | |
26176e7c MX |
296 | } |
297 | ||
298 | /* do a chunk of defrag */ | |
299 | clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags); | |
4cb5300b CM |
300 | memset(&range, 0, sizeof(range)); |
301 | range.len = (u64)-1; | |
26176e7c | 302 | range.start = defrag->last_offset; |
b66f00da MX |
303 | |
304 | sb_start_write(fs_info->sb); | |
26176e7c MX |
305 | num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid, |
306 | BTRFS_DEFRAG_BATCH); | |
b66f00da | 307 | sb_end_write(fs_info->sb); |
26176e7c MX |
308 | /* |
309 | * if we filled the whole defrag batch, there | |
310 | * must be more work to do. Queue this defrag | |
311 | * again | |
312 | */ | |
313 | if (num_defrag == BTRFS_DEFRAG_BATCH) { | |
314 | defrag->last_offset = range.start; | |
46e59791 | 315 | btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag); |
26176e7c MX |
316 | } else if (defrag->last_offset && !defrag->cycled) { |
317 | /* | |
318 | * we didn't fill our defrag batch, but | |
319 | * we didn't start at zero. Make sure we loop | |
320 | * around to the start of the file. | |
321 | */ | |
322 | defrag->last_offset = 0; | |
323 | defrag->cycled = 1; | |
46e59791 | 324 | btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag); |
26176e7c MX |
325 | } else { |
326 | kmem_cache_free(btrfs_inode_defrag_cachep, defrag); | |
327 | } | |
328 | ||
329 | iput(inode); | |
330 | return 0; | |
6f1c3605 | 331 | cleanup: |
6f1c3605 LB |
332 | kmem_cache_free(btrfs_inode_defrag_cachep, defrag); |
333 | return ret; | |
26176e7c MX |
334 | } |
335 | ||
336 | /* | |
337 | * run through the list of inodes in the FS that need | |
338 | * defragging | |
339 | */ | |
340 | int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info) | |
341 | { | |
342 | struct inode_defrag *defrag; | |
343 | u64 first_ino = 0; | |
344 | u64 root_objectid = 0; | |
4cb5300b CM |
345 | |
346 | atomic_inc(&fs_info->defrag_running); | |
67871254 | 347 | while (1) { |
dc81cdc5 MX |
348 | /* Pause the auto defragger. */ |
349 | if (test_bit(BTRFS_FS_STATE_REMOUNTING, | |
350 | &fs_info->fs_state)) | |
351 | break; | |
352 | ||
2ff7e61e | 353 | if (!__need_auto_defrag(fs_info)) |
26176e7c | 354 | break; |
4cb5300b CM |
355 | |
356 | /* find an inode to defrag */ | |
26176e7c MX |
357 | defrag = btrfs_pick_defrag_inode(fs_info, root_objectid, |
358 | first_ino); | |
4cb5300b | 359 | if (!defrag) { |
26176e7c | 360 | if (root_objectid || first_ino) { |
762f2263 | 361 | root_objectid = 0; |
4cb5300b CM |
362 | first_ino = 0; |
363 | continue; | |
364 | } else { | |
365 | break; | |
366 | } | |
367 | } | |
368 | ||
4cb5300b | 369 | first_ino = defrag->ino + 1; |
762f2263 | 370 | root_objectid = defrag->root; |
4cb5300b | 371 | |
26176e7c | 372 | __btrfs_run_defrag_inode(fs_info, defrag); |
4cb5300b | 373 | } |
4cb5300b CM |
374 | atomic_dec(&fs_info->defrag_running); |
375 | ||
376 | /* | |
377 | * during unmount, we use the transaction_wait queue to | |
378 | * wait for the defragger to stop | |
379 | */ | |
380 | wake_up(&fs_info->transaction_wait); | |
381 | return 0; | |
382 | } | |
39279cc3 | 383 | |
d352ac68 CM |
384 | /* simple helper to fault in pages and copy. This should go away |
385 | * and be replaced with calls into generic code. | |
386 | */ | |
ee22f0c4 | 387 | static noinline int btrfs_copy_from_user(loff_t pos, size_t write_bytes, |
a1b32a59 | 388 | struct page **prepared_pages, |
11c65dcc | 389 | struct iov_iter *i) |
39279cc3 | 390 | { |
914ee295 | 391 | size_t copied = 0; |
d0215f3e | 392 | size_t total_copied = 0; |
11c65dcc | 393 | int pg = 0; |
7073017a | 394 | int offset = offset_in_page(pos); |
39279cc3 | 395 | |
11c65dcc | 396 | while (write_bytes > 0) { |
39279cc3 | 397 | size_t count = min_t(size_t, |
09cbfeaf | 398 | PAGE_SIZE - offset, write_bytes); |
11c65dcc | 399 | struct page *page = prepared_pages[pg]; |
914ee295 XZ |
400 | /* |
401 | * Copy data from userspace to the current page | |
914ee295 | 402 | */ |
f0b65f39 | 403 | copied = copy_page_from_iter_atomic(page, offset, count, i); |
11c65dcc | 404 | |
39279cc3 CM |
405 | /* Flush processor's dcache for this page */ |
406 | flush_dcache_page(page); | |
31339acd CM |
407 | |
408 | /* | |
409 | * if we get a partial write, we can end up with | |
410 | * partially up to date pages. These add | |
411 | * a lot of complexity, so make sure they don't | |
412 | * happen by forcing this copy to be retried. | |
413 | * | |
414 | * The rest of the btrfs_file_write code will fall | |
415 | * back to page at a time copies after we return 0. | |
416 | */ | |
f0b65f39 AV |
417 | if (unlikely(copied < count)) { |
418 | if (!PageUptodate(page)) { | |
419 | iov_iter_revert(i, copied); | |
420 | copied = 0; | |
421 | } | |
422 | if (!copied) | |
423 | break; | |
424 | } | |
31339acd | 425 | |
11c65dcc | 426 | write_bytes -= copied; |
914ee295 | 427 | total_copied += copied; |
f0b65f39 AV |
428 | offset += copied; |
429 | if (offset == PAGE_SIZE) { | |
11c65dcc JB |
430 | pg++; |
431 | offset = 0; | |
432 | } | |
39279cc3 | 433 | } |
914ee295 | 434 | return total_copied; |
39279cc3 CM |
435 | } |
436 | ||
d352ac68 CM |
437 | /* |
438 | * unlocks pages after btrfs_file_write is done with them | |
439 | */ | |
48a3b636 | 440 | static void btrfs_drop_pages(struct page **pages, size_t num_pages) |
39279cc3 CM |
441 | { |
442 | size_t i; | |
443 | for (i = 0; i < num_pages; i++) { | |
d352ac68 CM |
444 | /* page checked is some magic around finding pages that |
445 | * have been modified without going through btrfs_set_page_dirty | |
2457aec6 MG |
446 | * clear it here. There should be no need to mark the pages |
447 | * accessed as prepare_pages should have marked them accessed | |
448 | * in prepare_pages via find_or_create_page() | |
d352ac68 | 449 | */ |
4a096752 | 450 | ClearPageChecked(pages[i]); |
39279cc3 | 451 | unlock_page(pages[i]); |
09cbfeaf | 452 | put_page(pages[i]); |
39279cc3 CM |
453 | } |
454 | } | |
455 | ||
d352ac68 | 456 | /* |
c0fab480 QW |
457 | * After btrfs_copy_from_user(), update the following things for delalloc: |
458 | * - Mark newly dirtied pages as DELALLOC in the io tree. | |
459 | * Used to advise which range is to be written back. | |
460 | * - Mark modified pages as Uptodate/Dirty and not needing COW fixup | |
461 | * - Update inode size for past EOF write | |
d352ac68 | 462 | */ |
088545f6 | 463 | int btrfs_dirty_pages(struct btrfs_inode *inode, struct page **pages, |
2ff7e61e | 464 | size_t num_pages, loff_t pos, size_t write_bytes, |
aa8c1a41 | 465 | struct extent_state **cached, bool noreserve) |
39279cc3 | 466 | { |
088545f6 | 467 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
39279cc3 | 468 | int err = 0; |
a52d9a80 | 469 | int i; |
db94535d | 470 | u64 num_bytes; |
a52d9a80 CM |
471 | u64 start_pos; |
472 | u64 end_of_last_block; | |
473 | u64 end_pos = pos + write_bytes; | |
088545f6 | 474 | loff_t isize = i_size_read(&inode->vfs_inode); |
e3b8a485 | 475 | unsigned int extra_bits = 0; |
39279cc3 | 476 | |
aa8c1a41 GR |
477 | if (write_bytes == 0) |
478 | return 0; | |
479 | ||
480 | if (noreserve) | |
481 | extra_bits |= EXTENT_NORESERVE; | |
482 | ||
13f0dd8f | 483 | start_pos = round_down(pos, fs_info->sectorsize); |
da17066c | 484 | num_bytes = round_up(write_bytes + pos - start_pos, |
0b246afa | 485 | fs_info->sectorsize); |
f02a85d2 | 486 | ASSERT(num_bytes <= U32_MAX); |
39279cc3 | 487 | |
db94535d | 488 | end_of_last_block = start_pos + num_bytes - 1; |
e3b8a485 | 489 | |
7703bdd8 CM |
490 | /* |
491 | * The pages may have already been dirty, clear out old accounting so | |
492 | * we can set things up properly | |
493 | */ | |
088545f6 | 494 | clear_extent_bit(&inode->io_tree, start_pos, end_of_last_block, |
e182163d OS |
495 | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, |
496 | 0, 0, cached); | |
7703bdd8 | 497 | |
088545f6 | 498 | err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block, |
330a5827 | 499 | extra_bits, cached); |
d0215f3e JB |
500 | if (err) |
501 | return err; | |
9ed74f2d | 502 | |
c8b97818 CM |
503 | for (i = 0; i < num_pages; i++) { |
504 | struct page *p = pages[i]; | |
f02a85d2 QW |
505 | |
506 | btrfs_page_clamp_set_uptodate(fs_info, p, start_pos, num_bytes); | |
c8b97818 | 507 | ClearPageChecked(p); |
f02a85d2 | 508 | btrfs_page_clamp_set_dirty(fs_info, p, start_pos, num_bytes); |
a52d9a80 | 509 | } |
9f570b8d JB |
510 | |
511 | /* | |
512 | * we've only changed i_size in ram, and we haven't updated | |
513 | * the disk i_size. There is no need to log the inode | |
514 | * at this time. | |
515 | */ | |
516 | if (end_pos > isize) | |
088545f6 | 517 | i_size_write(&inode->vfs_inode, end_pos); |
a22285a6 | 518 | return 0; |
39279cc3 CM |
519 | } |
520 | ||
d352ac68 CM |
521 | /* |
522 | * this drops all the extents in the cache that intersect the range | |
523 | * [start, end]. Existing extents are split as required. | |
524 | */ | |
dcdbc059 | 525 | void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end, |
7014cdb4 | 526 | int skip_pinned) |
a52d9a80 CM |
527 | { |
528 | struct extent_map *em; | |
3b951516 CM |
529 | struct extent_map *split = NULL; |
530 | struct extent_map *split2 = NULL; | |
dcdbc059 | 531 | struct extent_map_tree *em_tree = &inode->extent_tree; |
39b5637f | 532 | u64 len = end - start + 1; |
5dc562c5 | 533 | u64 gen; |
3b951516 CM |
534 | int ret; |
535 | int testend = 1; | |
5b21f2ed | 536 | unsigned long flags; |
c8b97818 | 537 | int compressed = 0; |
09a2a8f9 | 538 | bool modified; |
a52d9a80 | 539 | |
e6dcd2dc | 540 | WARN_ON(end < start); |
3b951516 | 541 | if (end == (u64)-1) { |
39b5637f | 542 | len = (u64)-1; |
3b951516 CM |
543 | testend = 0; |
544 | } | |
d397712b | 545 | while (1) { |
7014cdb4 JB |
546 | int no_splits = 0; |
547 | ||
09a2a8f9 | 548 | modified = false; |
3b951516 | 549 | if (!split) |
172ddd60 | 550 | split = alloc_extent_map(); |
3b951516 | 551 | if (!split2) |
172ddd60 | 552 | split2 = alloc_extent_map(); |
7014cdb4 JB |
553 | if (!split || !split2) |
554 | no_splits = 1; | |
3b951516 | 555 | |
890871be | 556 | write_lock(&em_tree->lock); |
39b5637f | 557 | em = lookup_extent_mapping(em_tree, start, len); |
d1310b2e | 558 | if (!em) { |
890871be | 559 | write_unlock(&em_tree->lock); |
a52d9a80 | 560 | break; |
d1310b2e | 561 | } |
5b21f2ed | 562 | flags = em->flags; |
5dc562c5 | 563 | gen = em->generation; |
5b21f2ed | 564 | if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) { |
55ef6899 | 565 | if (testend && em->start + em->len >= start + len) { |
5b21f2ed | 566 | free_extent_map(em); |
a1ed835e | 567 | write_unlock(&em_tree->lock); |
5b21f2ed ZY |
568 | break; |
569 | } | |
55ef6899 YZ |
570 | start = em->start + em->len; |
571 | if (testend) | |
5b21f2ed | 572 | len = start + len - (em->start + em->len); |
5b21f2ed | 573 | free_extent_map(em); |
a1ed835e | 574 | write_unlock(&em_tree->lock); |
5b21f2ed ZY |
575 | continue; |
576 | } | |
c8b97818 | 577 | compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags); |
3ce7e67a | 578 | clear_bit(EXTENT_FLAG_PINNED, &em->flags); |
3b277594 | 579 | clear_bit(EXTENT_FLAG_LOGGING, &flags); |
09a2a8f9 | 580 | modified = !list_empty(&em->list); |
7014cdb4 JB |
581 | if (no_splits) |
582 | goto next; | |
3b951516 | 583 | |
ee20a983 | 584 | if (em->start < start) { |
3b951516 CM |
585 | split->start = em->start; |
586 | split->len = start - em->start; | |
ee20a983 JB |
587 | |
588 | if (em->block_start < EXTENT_MAP_LAST_BYTE) { | |
589 | split->orig_start = em->orig_start; | |
590 | split->block_start = em->block_start; | |
591 | ||
592 | if (compressed) | |
593 | split->block_len = em->block_len; | |
594 | else | |
595 | split->block_len = split->len; | |
596 | split->orig_block_len = max(split->block_len, | |
597 | em->orig_block_len); | |
598 | split->ram_bytes = em->ram_bytes; | |
599 | } else { | |
600 | split->orig_start = split->start; | |
601 | split->block_len = 0; | |
602 | split->block_start = em->block_start; | |
603 | split->orig_block_len = 0; | |
604 | split->ram_bytes = split->len; | |
605 | } | |
606 | ||
5dc562c5 | 607 | split->generation = gen; |
5b21f2ed | 608 | split->flags = flags; |
261507a0 | 609 | split->compress_type = em->compress_type; |
176840b3 | 610 | replace_extent_mapping(em_tree, em, split, modified); |
3b951516 CM |
611 | free_extent_map(split); |
612 | split = split2; | |
613 | split2 = NULL; | |
614 | } | |
ee20a983 | 615 | if (testend && em->start + em->len > start + len) { |
3b951516 CM |
616 | u64 diff = start + len - em->start; |
617 | ||
618 | split->start = start + len; | |
619 | split->len = em->start + em->len - (start + len); | |
5b21f2ed | 620 | split->flags = flags; |
261507a0 | 621 | split->compress_type = em->compress_type; |
5dc562c5 | 622 | split->generation = gen; |
ee20a983 JB |
623 | |
624 | if (em->block_start < EXTENT_MAP_LAST_BYTE) { | |
625 | split->orig_block_len = max(em->block_len, | |
b4939680 | 626 | em->orig_block_len); |
3b951516 | 627 | |
ee20a983 JB |
628 | split->ram_bytes = em->ram_bytes; |
629 | if (compressed) { | |
630 | split->block_len = em->block_len; | |
631 | split->block_start = em->block_start; | |
632 | split->orig_start = em->orig_start; | |
633 | } else { | |
634 | split->block_len = split->len; | |
635 | split->block_start = em->block_start | |
636 | + diff; | |
637 | split->orig_start = em->orig_start; | |
638 | } | |
c8b97818 | 639 | } else { |
ee20a983 JB |
640 | split->ram_bytes = split->len; |
641 | split->orig_start = split->start; | |
642 | split->block_len = 0; | |
643 | split->block_start = em->block_start; | |
644 | split->orig_block_len = 0; | |
c8b97818 | 645 | } |
3b951516 | 646 | |
176840b3 FM |
647 | if (extent_map_in_tree(em)) { |
648 | replace_extent_mapping(em_tree, em, split, | |
649 | modified); | |
650 | } else { | |
651 | ret = add_extent_mapping(em_tree, split, | |
652 | modified); | |
653 | ASSERT(ret == 0); /* Logic error */ | |
654 | } | |
3b951516 CM |
655 | free_extent_map(split); |
656 | split = NULL; | |
657 | } | |
7014cdb4 | 658 | next: |
176840b3 FM |
659 | if (extent_map_in_tree(em)) |
660 | remove_extent_mapping(em_tree, em); | |
890871be | 661 | write_unlock(&em_tree->lock); |
d1310b2e | 662 | |
a52d9a80 CM |
663 | /* once for us */ |
664 | free_extent_map(em); | |
665 | /* once for the tree*/ | |
666 | free_extent_map(em); | |
667 | } | |
3b951516 CM |
668 | if (split) |
669 | free_extent_map(split); | |
670 | if (split2) | |
671 | free_extent_map(split2); | |
a52d9a80 CM |
672 | } |
673 | ||
39279cc3 CM |
674 | /* |
675 | * this is very complex, but the basic idea is to drop all extents | |
676 | * in the range start - end. hint_block is filled in with a block number | |
677 | * that would be a good hint to the block allocator for this file. | |
678 | * | |
679 | * If an extent intersects the range but is not entirely inside the range | |
680 | * it is either truncated or split. Anything entirely inside the range | |
681 | * is deleted from the tree. | |
2766ff61 FM |
682 | * |
683 | * Note: the VFS' inode number of bytes is not updated, it's up to the caller | |
684 | * to deal with that. We set the field 'bytes_found' of the arguments structure | |
685 | * with the number of allocated bytes found in the target range, so that the | |
686 | * caller can update the inode's number of bytes in an atomic way when | |
687 | * replacing extents in a range to avoid races with stat(2). | |
39279cc3 | 688 | */ |
5893dfb9 FM |
689 | int btrfs_drop_extents(struct btrfs_trans_handle *trans, |
690 | struct btrfs_root *root, struct btrfs_inode *inode, | |
691 | struct btrfs_drop_extents_args *args) | |
39279cc3 | 692 | { |
0b246afa | 693 | struct btrfs_fs_info *fs_info = root->fs_info; |
5f39d397 | 694 | struct extent_buffer *leaf; |
920bbbfb | 695 | struct btrfs_file_extent_item *fi; |
82fa113f | 696 | struct btrfs_ref ref = { 0 }; |
00f5c795 | 697 | struct btrfs_key key; |
920bbbfb | 698 | struct btrfs_key new_key; |
906c448c | 699 | u64 ino = btrfs_ino(inode); |
5893dfb9 | 700 | u64 search_start = args->start; |
920bbbfb YZ |
701 | u64 disk_bytenr = 0; |
702 | u64 num_bytes = 0; | |
703 | u64 extent_offset = 0; | |
704 | u64 extent_end = 0; | |
5893dfb9 | 705 | u64 last_end = args->start; |
920bbbfb YZ |
706 | int del_nr = 0; |
707 | int del_slot = 0; | |
708 | int extent_type; | |
ccd467d6 | 709 | int recow; |
00f5c795 | 710 | int ret; |
dc7fdde3 | 711 | int modify_tree = -1; |
27cdeb70 | 712 | int update_refs; |
c3308f84 | 713 | int found = 0; |
1acae57b | 714 | int leafs_visited = 0; |
5893dfb9 FM |
715 | struct btrfs_path *path = args->path; |
716 | ||
2766ff61 | 717 | args->bytes_found = 0; |
5893dfb9 FM |
718 | args->extent_inserted = false; |
719 | ||
720 | /* Must always have a path if ->replace_extent is true */ | |
721 | ASSERT(!(args->replace_extent && !args->path)); | |
722 | ||
723 | if (!path) { | |
724 | path = btrfs_alloc_path(); | |
725 | if (!path) { | |
726 | ret = -ENOMEM; | |
727 | goto out; | |
728 | } | |
729 | } | |
39279cc3 | 730 | |
5893dfb9 FM |
731 | if (args->drop_cache) |
732 | btrfs_drop_extent_cache(inode, args->start, args->end - 1, 0); | |
a52d9a80 | 733 | |
5893dfb9 | 734 | if (args->start >= inode->disk_i_size && !args->replace_extent) |
dc7fdde3 CM |
735 | modify_tree = 0; |
736 | ||
d175209b | 737 | update_refs = (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID); |
d397712b | 738 | while (1) { |
ccd467d6 | 739 | recow = 0; |
33345d01 | 740 | ret = btrfs_lookup_file_extent(trans, root, path, ino, |
dc7fdde3 | 741 | search_start, modify_tree); |
39279cc3 | 742 | if (ret < 0) |
920bbbfb | 743 | break; |
5893dfb9 | 744 | if (ret > 0 && path->slots[0] > 0 && search_start == args->start) { |
920bbbfb YZ |
745 | leaf = path->nodes[0]; |
746 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1); | |
33345d01 | 747 | if (key.objectid == ino && |
920bbbfb YZ |
748 | key.type == BTRFS_EXTENT_DATA_KEY) |
749 | path->slots[0]--; | |
39279cc3 | 750 | } |
920bbbfb | 751 | ret = 0; |
1acae57b | 752 | leafs_visited++; |
8c2383c3 | 753 | next_slot: |
5f39d397 | 754 | leaf = path->nodes[0]; |
920bbbfb YZ |
755 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { |
756 | BUG_ON(del_nr > 0); | |
757 | ret = btrfs_next_leaf(root, path); | |
758 | if (ret < 0) | |
759 | break; | |
760 | if (ret > 0) { | |
761 | ret = 0; | |
762 | break; | |
8c2383c3 | 763 | } |
1acae57b | 764 | leafs_visited++; |
920bbbfb YZ |
765 | leaf = path->nodes[0]; |
766 | recow = 1; | |
767 | } | |
768 | ||
769 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); | |
aeafbf84 FM |
770 | |
771 | if (key.objectid > ino) | |
772 | break; | |
773 | if (WARN_ON_ONCE(key.objectid < ino) || | |
774 | key.type < BTRFS_EXTENT_DATA_KEY) { | |
775 | ASSERT(del_nr == 0); | |
776 | path->slots[0]++; | |
777 | goto next_slot; | |
778 | } | |
5893dfb9 | 779 | if (key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= args->end) |
920bbbfb YZ |
780 | break; |
781 | ||
782 | fi = btrfs_item_ptr(leaf, path->slots[0], | |
783 | struct btrfs_file_extent_item); | |
784 | extent_type = btrfs_file_extent_type(leaf, fi); | |
785 | ||
786 | if (extent_type == BTRFS_FILE_EXTENT_REG || | |
787 | extent_type == BTRFS_FILE_EXTENT_PREALLOC) { | |
788 | disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi); | |
789 | num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi); | |
790 | extent_offset = btrfs_file_extent_offset(leaf, fi); | |
791 | extent_end = key.offset + | |
792 | btrfs_file_extent_num_bytes(leaf, fi); | |
793 | } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) { | |
794 | extent_end = key.offset + | |
e41ca589 | 795 | btrfs_file_extent_ram_bytes(leaf, fi); |
8c2383c3 | 796 | } else { |
aeafbf84 FM |
797 | /* can't happen */ |
798 | BUG(); | |
39279cc3 CM |
799 | } |
800 | ||
fc19c5e7 FM |
801 | /* |
802 | * Don't skip extent items representing 0 byte lengths. They | |
803 | * used to be created (bug) if while punching holes we hit | |
804 | * -ENOSPC condition. So if we find one here, just ensure we | |
805 | * delete it, otherwise we would insert a new file extent item | |
806 | * with the same key (offset) as that 0 bytes length file | |
807 | * extent item in the call to setup_items_for_insert() later | |
808 | * in this function. | |
809 | */ | |
62fe51c1 JB |
810 | if (extent_end == key.offset && extent_end >= search_start) { |
811 | last_end = extent_end; | |
fc19c5e7 | 812 | goto delete_extent_item; |
62fe51c1 | 813 | } |
fc19c5e7 | 814 | |
920bbbfb YZ |
815 | if (extent_end <= search_start) { |
816 | path->slots[0]++; | |
8c2383c3 | 817 | goto next_slot; |
39279cc3 CM |
818 | } |
819 | ||
c3308f84 | 820 | found = 1; |
5893dfb9 | 821 | search_start = max(key.offset, args->start); |
dc7fdde3 CM |
822 | if (recow || !modify_tree) { |
823 | modify_tree = -1; | |
b3b4aa74 | 824 | btrfs_release_path(path); |
920bbbfb | 825 | continue; |
39279cc3 | 826 | } |
6643558d | 827 | |
920bbbfb YZ |
828 | /* |
829 | * | - range to drop - | | |
830 | * | -------- extent -------- | | |
831 | */ | |
5893dfb9 | 832 | if (args->start > key.offset && args->end < extent_end) { |
920bbbfb | 833 | BUG_ON(del_nr > 0); |
00fdf13a | 834 | if (extent_type == BTRFS_FILE_EXTENT_INLINE) { |
3f9e3df8 | 835 | ret = -EOPNOTSUPP; |
00fdf13a LB |
836 | break; |
837 | } | |
920bbbfb YZ |
838 | |
839 | memcpy(&new_key, &key, sizeof(new_key)); | |
5893dfb9 | 840 | new_key.offset = args->start; |
920bbbfb YZ |
841 | ret = btrfs_duplicate_item(trans, root, path, |
842 | &new_key); | |
843 | if (ret == -EAGAIN) { | |
b3b4aa74 | 844 | btrfs_release_path(path); |
920bbbfb | 845 | continue; |
6643558d | 846 | } |
920bbbfb YZ |
847 | if (ret < 0) |
848 | break; | |
849 | ||
850 | leaf = path->nodes[0]; | |
851 | fi = btrfs_item_ptr(leaf, path->slots[0] - 1, | |
852 | struct btrfs_file_extent_item); | |
853 | btrfs_set_file_extent_num_bytes(leaf, fi, | |
5893dfb9 | 854 | args->start - key.offset); |
920bbbfb YZ |
855 | |
856 | fi = btrfs_item_ptr(leaf, path->slots[0], | |
857 | struct btrfs_file_extent_item); | |
858 | ||
5893dfb9 | 859 | extent_offset += args->start - key.offset; |
920bbbfb YZ |
860 | btrfs_set_file_extent_offset(leaf, fi, extent_offset); |
861 | btrfs_set_file_extent_num_bytes(leaf, fi, | |
5893dfb9 | 862 | extent_end - args->start); |
920bbbfb YZ |
863 | btrfs_mark_buffer_dirty(leaf); |
864 | ||
5dc562c5 | 865 | if (update_refs && disk_bytenr > 0) { |
82fa113f QW |
866 | btrfs_init_generic_ref(&ref, |
867 | BTRFS_ADD_DELAYED_REF, | |
868 | disk_bytenr, num_bytes, 0); | |
869 | btrfs_init_data_ref(&ref, | |
920bbbfb YZ |
870 | root->root_key.objectid, |
871 | new_key.objectid, | |
5893dfb9 | 872 | args->start - extent_offset); |
82fa113f | 873 | ret = btrfs_inc_extent_ref(trans, &ref); |
79787eaa | 874 | BUG_ON(ret); /* -ENOMEM */ |
771ed689 | 875 | } |
5893dfb9 | 876 | key.offset = args->start; |
6643558d | 877 | } |
62fe51c1 JB |
878 | /* |
879 | * From here on out we will have actually dropped something, so | |
880 | * last_end can be updated. | |
881 | */ | |
882 | last_end = extent_end; | |
883 | ||
920bbbfb YZ |
884 | /* |
885 | * | ---- range to drop ----- | | |
886 | * | -------- extent -------- | | |
887 | */ | |
5893dfb9 | 888 | if (args->start <= key.offset && args->end < extent_end) { |
00fdf13a | 889 | if (extent_type == BTRFS_FILE_EXTENT_INLINE) { |
3f9e3df8 | 890 | ret = -EOPNOTSUPP; |
00fdf13a LB |
891 | break; |
892 | } | |
6643558d | 893 | |
920bbbfb | 894 | memcpy(&new_key, &key, sizeof(new_key)); |
5893dfb9 | 895 | new_key.offset = args->end; |
0b246afa | 896 | btrfs_set_item_key_safe(fs_info, path, &new_key); |
6643558d | 897 | |
5893dfb9 | 898 | extent_offset += args->end - key.offset; |
920bbbfb YZ |
899 | btrfs_set_file_extent_offset(leaf, fi, extent_offset); |
900 | btrfs_set_file_extent_num_bytes(leaf, fi, | |
5893dfb9 | 901 | extent_end - args->end); |
920bbbfb | 902 | btrfs_mark_buffer_dirty(leaf); |
2671485d | 903 | if (update_refs && disk_bytenr > 0) |
2766ff61 | 904 | args->bytes_found += args->end - key.offset; |
920bbbfb | 905 | break; |
39279cc3 | 906 | } |
771ed689 | 907 | |
920bbbfb YZ |
908 | search_start = extent_end; |
909 | /* | |
910 | * | ---- range to drop ----- | | |
911 | * | -------- extent -------- | | |
912 | */ | |
5893dfb9 | 913 | if (args->start > key.offset && args->end >= extent_end) { |
920bbbfb | 914 | BUG_ON(del_nr > 0); |
00fdf13a | 915 | if (extent_type == BTRFS_FILE_EXTENT_INLINE) { |
3f9e3df8 | 916 | ret = -EOPNOTSUPP; |
00fdf13a LB |
917 | break; |
918 | } | |
8c2383c3 | 919 | |
920bbbfb | 920 | btrfs_set_file_extent_num_bytes(leaf, fi, |
5893dfb9 | 921 | args->start - key.offset); |
920bbbfb | 922 | btrfs_mark_buffer_dirty(leaf); |
2671485d | 923 | if (update_refs && disk_bytenr > 0) |
2766ff61 | 924 | args->bytes_found += extent_end - args->start; |
5893dfb9 | 925 | if (args->end == extent_end) |
920bbbfb | 926 | break; |
c8b97818 | 927 | |
920bbbfb YZ |
928 | path->slots[0]++; |
929 | goto next_slot; | |
31840ae1 ZY |
930 | } |
931 | ||
920bbbfb YZ |
932 | /* |
933 | * | ---- range to drop ----- | | |
934 | * | ------ extent ------ | | |
935 | */ | |
5893dfb9 | 936 | if (args->start <= key.offset && args->end >= extent_end) { |
fc19c5e7 | 937 | delete_extent_item: |
920bbbfb YZ |
938 | if (del_nr == 0) { |
939 | del_slot = path->slots[0]; | |
940 | del_nr = 1; | |
941 | } else { | |
942 | BUG_ON(del_slot + del_nr != path->slots[0]); | |
943 | del_nr++; | |
944 | } | |
31840ae1 | 945 | |
5dc562c5 JB |
946 | if (update_refs && |
947 | extent_type == BTRFS_FILE_EXTENT_INLINE) { | |
2766ff61 | 948 | args->bytes_found += extent_end - key.offset; |
920bbbfb | 949 | extent_end = ALIGN(extent_end, |
0b246afa | 950 | fs_info->sectorsize); |
5dc562c5 | 951 | } else if (update_refs && disk_bytenr > 0) { |
ffd4bb2a QW |
952 | btrfs_init_generic_ref(&ref, |
953 | BTRFS_DROP_DELAYED_REF, | |
954 | disk_bytenr, num_bytes, 0); | |
955 | btrfs_init_data_ref(&ref, | |
920bbbfb | 956 | root->root_key.objectid, |
ffd4bb2a QW |
957 | key.objectid, |
958 | key.offset - extent_offset); | |
959 | ret = btrfs_free_extent(trans, &ref); | |
79787eaa | 960 | BUG_ON(ret); /* -ENOMEM */ |
2766ff61 | 961 | args->bytes_found += extent_end - key.offset; |
31840ae1 | 962 | } |
31840ae1 | 963 | |
5893dfb9 | 964 | if (args->end == extent_end) |
920bbbfb YZ |
965 | break; |
966 | ||
967 | if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) { | |
968 | path->slots[0]++; | |
969 | goto next_slot; | |
970 | } | |
971 | ||
972 | ret = btrfs_del_items(trans, root, path, del_slot, | |
973 | del_nr); | |
79787eaa | 974 | if (ret) { |
66642832 | 975 | btrfs_abort_transaction(trans, ret); |
5dc562c5 | 976 | break; |
79787eaa | 977 | } |
920bbbfb YZ |
978 | |
979 | del_nr = 0; | |
980 | del_slot = 0; | |
981 | ||
b3b4aa74 | 982 | btrfs_release_path(path); |
920bbbfb | 983 | continue; |
39279cc3 | 984 | } |
920bbbfb | 985 | |
290342f6 | 986 | BUG(); |
39279cc3 | 987 | } |
920bbbfb | 988 | |
79787eaa | 989 | if (!ret && del_nr > 0) { |
1acae57b FDBM |
990 | /* |
991 | * Set path->slots[0] to first slot, so that after the delete | |
992 | * if items are move off from our leaf to its immediate left or | |
993 | * right neighbor leafs, we end up with a correct and adjusted | |
5893dfb9 | 994 | * path->slots[0] for our insertion (if args->replace_extent). |
1acae57b FDBM |
995 | */ |
996 | path->slots[0] = del_slot; | |
920bbbfb | 997 | ret = btrfs_del_items(trans, root, path, del_slot, del_nr); |
79787eaa | 998 | if (ret) |
66642832 | 999 | btrfs_abort_transaction(trans, ret); |
d5f37527 | 1000 | } |
1acae57b | 1001 | |
d5f37527 FDBM |
1002 | leaf = path->nodes[0]; |
1003 | /* | |
1004 | * If btrfs_del_items() was called, it might have deleted a leaf, in | |
1005 | * which case it unlocked our path, so check path->locks[0] matches a | |
1006 | * write lock. | |
1007 | */ | |
5893dfb9 | 1008 | if (!ret && args->replace_extent && leafs_visited == 1 && |
ac5887c8 | 1009 | path->locks[0] == BTRFS_WRITE_LOCK && |
e902baac | 1010 | btrfs_leaf_free_space(leaf) >= |
5893dfb9 | 1011 | sizeof(struct btrfs_item) + args->extent_item_size) { |
d5f37527 FDBM |
1012 | |
1013 | key.objectid = ino; | |
1014 | key.type = BTRFS_EXTENT_DATA_KEY; | |
5893dfb9 | 1015 | key.offset = args->start; |
d5f37527 FDBM |
1016 | if (!del_nr && path->slots[0] < btrfs_header_nritems(leaf)) { |
1017 | struct btrfs_key slot_key; | |
1018 | ||
1019 | btrfs_item_key_to_cpu(leaf, &slot_key, path->slots[0]); | |
1020 | if (btrfs_comp_cpu_keys(&key, &slot_key) > 0) | |
1021 | path->slots[0]++; | |
1acae57b | 1022 | } |
5893dfb9 FM |
1023 | setup_items_for_insert(root, path, &key, |
1024 | &args->extent_item_size, 1); | |
1025 | args->extent_inserted = true; | |
6643558d | 1026 | } |
920bbbfb | 1027 | |
5893dfb9 FM |
1028 | if (!args->path) |
1029 | btrfs_free_path(path); | |
1030 | else if (!args->extent_inserted) | |
1acae57b | 1031 | btrfs_release_path(path); |
5893dfb9 FM |
1032 | out: |
1033 | args->drop_end = found ? min(args->end, last_end) : args->end; | |
5dc562c5 | 1034 | |
39279cc3 CM |
1035 | return ret; |
1036 | } | |
1037 | ||
d899e052 | 1038 | static int extent_mergeable(struct extent_buffer *leaf, int slot, |
6c7d54ac YZ |
1039 | u64 objectid, u64 bytenr, u64 orig_offset, |
1040 | u64 *start, u64 *end) | |
d899e052 YZ |
1041 | { |
1042 | struct btrfs_file_extent_item *fi; | |
1043 | struct btrfs_key key; | |
1044 | u64 extent_end; | |
1045 | ||
1046 | if (slot < 0 || slot >= btrfs_header_nritems(leaf)) | |
1047 | return 0; | |
1048 | ||
1049 | btrfs_item_key_to_cpu(leaf, &key, slot); | |
1050 | if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY) | |
1051 | return 0; | |
1052 | ||
1053 | fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item); | |
1054 | if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG || | |
1055 | btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr || | |
6c7d54ac | 1056 | btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset || |
d899e052 YZ |
1057 | btrfs_file_extent_compression(leaf, fi) || |
1058 | btrfs_file_extent_encryption(leaf, fi) || | |
1059 | btrfs_file_extent_other_encoding(leaf, fi)) | |
1060 | return 0; | |
1061 | ||
1062 | extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi); | |
1063 | if ((*start && *start != key.offset) || (*end && *end != extent_end)) | |
1064 | return 0; | |
1065 | ||
1066 | *start = key.offset; | |
1067 | *end = extent_end; | |
1068 | return 1; | |
1069 | } | |
1070 | ||
1071 | /* | |
1072 | * Mark extent in the range start - end as written. | |
1073 | * | |
1074 | * This changes extent type from 'pre-allocated' to 'regular'. If only | |
1075 | * part of extent is marked as written, the extent will be split into | |
1076 | * two or three. | |
1077 | */ | |
1078 | int btrfs_mark_extent_written(struct btrfs_trans_handle *trans, | |
7a6d7067 | 1079 | struct btrfs_inode *inode, u64 start, u64 end) |
d899e052 | 1080 | { |
3ffbd68c | 1081 | struct btrfs_fs_info *fs_info = trans->fs_info; |
7a6d7067 | 1082 | struct btrfs_root *root = inode->root; |
d899e052 YZ |
1083 | struct extent_buffer *leaf; |
1084 | struct btrfs_path *path; | |
1085 | struct btrfs_file_extent_item *fi; | |
82fa113f | 1086 | struct btrfs_ref ref = { 0 }; |
d899e052 | 1087 | struct btrfs_key key; |
920bbbfb | 1088 | struct btrfs_key new_key; |
d899e052 YZ |
1089 | u64 bytenr; |
1090 | u64 num_bytes; | |
1091 | u64 extent_end; | |
5d4f98a2 | 1092 | u64 orig_offset; |
d899e052 YZ |
1093 | u64 other_start; |
1094 | u64 other_end; | |
920bbbfb YZ |
1095 | u64 split; |
1096 | int del_nr = 0; | |
1097 | int del_slot = 0; | |
6c7d54ac | 1098 | int recow; |
e7b2ec3d | 1099 | int ret = 0; |
7a6d7067 | 1100 | u64 ino = btrfs_ino(inode); |
d899e052 | 1101 | |
d899e052 | 1102 | path = btrfs_alloc_path(); |
d8926bb3 MF |
1103 | if (!path) |
1104 | return -ENOMEM; | |
d899e052 | 1105 | again: |
6c7d54ac | 1106 | recow = 0; |
920bbbfb | 1107 | split = start; |
33345d01 | 1108 | key.objectid = ino; |
d899e052 | 1109 | key.type = BTRFS_EXTENT_DATA_KEY; |
920bbbfb | 1110 | key.offset = split; |
d899e052 YZ |
1111 | |
1112 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); | |
41415730 JB |
1113 | if (ret < 0) |
1114 | goto out; | |
d899e052 YZ |
1115 | if (ret > 0 && path->slots[0] > 0) |
1116 | path->slots[0]--; | |
1117 | ||
1118 | leaf = path->nodes[0]; | |
1119 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); | |
9c8e63db JB |
1120 | if (key.objectid != ino || |
1121 | key.type != BTRFS_EXTENT_DATA_KEY) { | |
1122 | ret = -EINVAL; | |
1123 | btrfs_abort_transaction(trans, ret); | |
1124 | goto out; | |
1125 | } | |
d899e052 YZ |
1126 | fi = btrfs_item_ptr(leaf, path->slots[0], |
1127 | struct btrfs_file_extent_item); | |
9c8e63db JB |
1128 | if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_PREALLOC) { |
1129 | ret = -EINVAL; | |
1130 | btrfs_abort_transaction(trans, ret); | |
1131 | goto out; | |
1132 | } | |
d899e052 | 1133 | extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi); |
9c8e63db JB |
1134 | if (key.offset > start || extent_end < end) { |
1135 | ret = -EINVAL; | |
1136 | btrfs_abort_transaction(trans, ret); | |
1137 | goto out; | |
1138 | } | |
d899e052 YZ |
1139 | |
1140 | bytenr = btrfs_file_extent_disk_bytenr(leaf, fi); | |
1141 | num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi); | |
5d4f98a2 | 1142 | orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi); |
6c7d54ac YZ |
1143 | memcpy(&new_key, &key, sizeof(new_key)); |
1144 | ||
1145 | if (start == key.offset && end < extent_end) { | |
1146 | other_start = 0; | |
1147 | other_end = start; | |
1148 | if (extent_mergeable(leaf, path->slots[0] - 1, | |
33345d01 | 1149 | ino, bytenr, orig_offset, |
6c7d54ac YZ |
1150 | &other_start, &other_end)) { |
1151 | new_key.offset = end; | |
0b246afa | 1152 | btrfs_set_item_key_safe(fs_info, path, &new_key); |
6c7d54ac YZ |
1153 | fi = btrfs_item_ptr(leaf, path->slots[0], |
1154 | struct btrfs_file_extent_item); | |
224ecce5 JB |
1155 | btrfs_set_file_extent_generation(leaf, fi, |
1156 | trans->transid); | |
6c7d54ac YZ |
1157 | btrfs_set_file_extent_num_bytes(leaf, fi, |
1158 | extent_end - end); | |
1159 | btrfs_set_file_extent_offset(leaf, fi, | |
1160 | end - orig_offset); | |
1161 | fi = btrfs_item_ptr(leaf, path->slots[0] - 1, | |
1162 | struct btrfs_file_extent_item); | |
224ecce5 JB |
1163 | btrfs_set_file_extent_generation(leaf, fi, |
1164 | trans->transid); | |
6c7d54ac YZ |
1165 | btrfs_set_file_extent_num_bytes(leaf, fi, |
1166 | end - other_start); | |
1167 | btrfs_mark_buffer_dirty(leaf); | |
1168 | goto out; | |
1169 | } | |
1170 | } | |
1171 | ||
1172 | if (start > key.offset && end == extent_end) { | |
1173 | other_start = end; | |
1174 | other_end = 0; | |
1175 | if (extent_mergeable(leaf, path->slots[0] + 1, | |
33345d01 | 1176 | ino, bytenr, orig_offset, |
6c7d54ac YZ |
1177 | &other_start, &other_end)) { |
1178 | fi = btrfs_item_ptr(leaf, path->slots[0], | |
1179 | struct btrfs_file_extent_item); | |
1180 | btrfs_set_file_extent_num_bytes(leaf, fi, | |
1181 | start - key.offset); | |
224ecce5 JB |
1182 | btrfs_set_file_extent_generation(leaf, fi, |
1183 | trans->transid); | |
6c7d54ac YZ |
1184 | path->slots[0]++; |
1185 | new_key.offset = start; | |
0b246afa | 1186 | btrfs_set_item_key_safe(fs_info, path, &new_key); |
6c7d54ac YZ |
1187 | |
1188 | fi = btrfs_item_ptr(leaf, path->slots[0], | |
1189 | struct btrfs_file_extent_item); | |
224ecce5 JB |
1190 | btrfs_set_file_extent_generation(leaf, fi, |
1191 | trans->transid); | |
6c7d54ac YZ |
1192 | btrfs_set_file_extent_num_bytes(leaf, fi, |
1193 | other_end - start); | |
1194 | btrfs_set_file_extent_offset(leaf, fi, | |
1195 | start - orig_offset); | |
1196 | btrfs_mark_buffer_dirty(leaf); | |
1197 | goto out; | |
1198 | } | |
1199 | } | |
d899e052 | 1200 | |
920bbbfb YZ |
1201 | while (start > key.offset || end < extent_end) { |
1202 | if (key.offset == start) | |
1203 | split = end; | |
1204 | ||
920bbbfb YZ |
1205 | new_key.offset = split; |
1206 | ret = btrfs_duplicate_item(trans, root, path, &new_key); | |
1207 | if (ret == -EAGAIN) { | |
b3b4aa74 | 1208 | btrfs_release_path(path); |
920bbbfb | 1209 | goto again; |
d899e052 | 1210 | } |
79787eaa | 1211 | if (ret < 0) { |
66642832 | 1212 | btrfs_abort_transaction(trans, ret); |
79787eaa JM |
1213 | goto out; |
1214 | } | |
d899e052 | 1215 | |
920bbbfb YZ |
1216 | leaf = path->nodes[0]; |
1217 | fi = btrfs_item_ptr(leaf, path->slots[0] - 1, | |
d899e052 | 1218 | struct btrfs_file_extent_item); |
224ecce5 | 1219 | btrfs_set_file_extent_generation(leaf, fi, trans->transid); |
d899e052 | 1220 | btrfs_set_file_extent_num_bytes(leaf, fi, |
920bbbfb YZ |
1221 | split - key.offset); |
1222 | ||
1223 | fi = btrfs_item_ptr(leaf, path->slots[0], | |
1224 | struct btrfs_file_extent_item); | |
1225 | ||
224ecce5 | 1226 | btrfs_set_file_extent_generation(leaf, fi, trans->transid); |
920bbbfb YZ |
1227 | btrfs_set_file_extent_offset(leaf, fi, split - orig_offset); |
1228 | btrfs_set_file_extent_num_bytes(leaf, fi, | |
1229 | extent_end - split); | |
d899e052 YZ |
1230 | btrfs_mark_buffer_dirty(leaf); |
1231 | ||
82fa113f QW |
1232 | btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, bytenr, |
1233 | num_bytes, 0); | |
1234 | btrfs_init_data_ref(&ref, root->root_key.objectid, ino, | |
1235 | orig_offset); | |
1236 | ret = btrfs_inc_extent_ref(trans, &ref); | |
9c8e63db JB |
1237 | if (ret) { |
1238 | btrfs_abort_transaction(trans, ret); | |
1239 | goto out; | |
1240 | } | |
d899e052 | 1241 | |
920bbbfb YZ |
1242 | if (split == start) { |
1243 | key.offset = start; | |
1244 | } else { | |
9c8e63db JB |
1245 | if (start != key.offset) { |
1246 | ret = -EINVAL; | |
1247 | btrfs_abort_transaction(trans, ret); | |
1248 | goto out; | |
1249 | } | |
d899e052 | 1250 | path->slots[0]--; |
920bbbfb | 1251 | extent_end = end; |
d899e052 | 1252 | } |
6c7d54ac | 1253 | recow = 1; |
d899e052 YZ |
1254 | } |
1255 | ||
920bbbfb YZ |
1256 | other_start = end; |
1257 | other_end = 0; | |
ffd4bb2a QW |
1258 | btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr, |
1259 | num_bytes, 0); | |
1260 | btrfs_init_data_ref(&ref, root->root_key.objectid, ino, orig_offset); | |
6c7d54ac | 1261 | if (extent_mergeable(leaf, path->slots[0] + 1, |
33345d01 | 1262 | ino, bytenr, orig_offset, |
6c7d54ac YZ |
1263 | &other_start, &other_end)) { |
1264 | if (recow) { | |
b3b4aa74 | 1265 | btrfs_release_path(path); |
6c7d54ac YZ |
1266 | goto again; |
1267 | } | |
920bbbfb YZ |
1268 | extent_end = other_end; |
1269 | del_slot = path->slots[0] + 1; | |
1270 | del_nr++; | |
ffd4bb2a | 1271 | ret = btrfs_free_extent(trans, &ref); |
9c8e63db JB |
1272 | if (ret) { |
1273 | btrfs_abort_transaction(trans, ret); | |
1274 | goto out; | |
1275 | } | |
d899e052 | 1276 | } |
920bbbfb YZ |
1277 | other_start = 0; |
1278 | other_end = start; | |
6c7d54ac | 1279 | if (extent_mergeable(leaf, path->slots[0] - 1, |
33345d01 | 1280 | ino, bytenr, orig_offset, |
6c7d54ac YZ |
1281 | &other_start, &other_end)) { |
1282 | if (recow) { | |
b3b4aa74 | 1283 | btrfs_release_path(path); |
6c7d54ac YZ |
1284 | goto again; |
1285 | } | |
920bbbfb YZ |
1286 | key.offset = other_start; |
1287 | del_slot = path->slots[0]; | |
1288 | del_nr++; | |
ffd4bb2a | 1289 | ret = btrfs_free_extent(trans, &ref); |
9c8e63db JB |
1290 | if (ret) { |
1291 | btrfs_abort_transaction(trans, ret); | |
1292 | goto out; | |
1293 | } | |
920bbbfb YZ |
1294 | } |
1295 | if (del_nr == 0) { | |
3f6fae95 SL |
1296 | fi = btrfs_item_ptr(leaf, path->slots[0], |
1297 | struct btrfs_file_extent_item); | |
920bbbfb YZ |
1298 | btrfs_set_file_extent_type(leaf, fi, |
1299 | BTRFS_FILE_EXTENT_REG); | |
224ecce5 | 1300 | btrfs_set_file_extent_generation(leaf, fi, trans->transid); |
920bbbfb | 1301 | btrfs_mark_buffer_dirty(leaf); |
6c7d54ac | 1302 | } else { |
3f6fae95 SL |
1303 | fi = btrfs_item_ptr(leaf, del_slot - 1, |
1304 | struct btrfs_file_extent_item); | |
6c7d54ac YZ |
1305 | btrfs_set_file_extent_type(leaf, fi, |
1306 | BTRFS_FILE_EXTENT_REG); | |
224ecce5 | 1307 | btrfs_set_file_extent_generation(leaf, fi, trans->transid); |
6c7d54ac YZ |
1308 | btrfs_set_file_extent_num_bytes(leaf, fi, |
1309 | extent_end - key.offset); | |
1310 | btrfs_mark_buffer_dirty(leaf); | |
920bbbfb | 1311 | |
6c7d54ac | 1312 | ret = btrfs_del_items(trans, root, path, del_slot, del_nr); |
79787eaa | 1313 | if (ret < 0) { |
66642832 | 1314 | btrfs_abort_transaction(trans, ret); |
79787eaa JM |
1315 | goto out; |
1316 | } | |
6c7d54ac | 1317 | } |
920bbbfb | 1318 | out: |
d899e052 | 1319 | btrfs_free_path(path); |
e7b2ec3d | 1320 | return ret; |
d899e052 YZ |
1321 | } |
1322 | ||
b1bf862e CM |
1323 | /* |
1324 | * on error we return an unlocked page and the error value | |
1325 | * on success we return a locked page and 0 | |
1326 | */ | |
bb1591b4 CM |
1327 | static int prepare_uptodate_page(struct inode *inode, |
1328 | struct page *page, u64 pos, | |
b6316429 | 1329 | bool force_uptodate) |
b1bf862e CM |
1330 | { |
1331 | int ret = 0; | |
1332 | ||
09cbfeaf | 1333 | if (((pos & (PAGE_SIZE - 1)) || force_uptodate) && |
b6316429 | 1334 | !PageUptodate(page)) { |
b1bf862e CM |
1335 | ret = btrfs_readpage(NULL, page); |
1336 | if (ret) | |
1337 | return ret; | |
1338 | lock_page(page); | |
1339 | if (!PageUptodate(page)) { | |
1340 | unlock_page(page); | |
1341 | return -EIO; | |
1342 | } | |
e0467866 QW |
1343 | |
1344 | /* | |
1345 | * Since btrfs_readpage() will unlock the page before it | |
7c11d0ae QW |
1346 | * returns, there is a window where btrfs_releasepage() can be |
1347 | * called to release the page. Here we check both inode | |
1348 | * mapping and PagePrivate() to make sure the page was not | |
1349 | * released. | |
e0467866 QW |
1350 | * |
1351 | * The private flag check is essential for subpage as we need | |
1352 | * to store extra bitmap using page->private. | |
1353 | */ | |
1354 | if (page->mapping != inode->i_mapping || !PagePrivate(page)) { | |
bb1591b4 CM |
1355 | unlock_page(page); |
1356 | return -EAGAIN; | |
1357 | } | |
b1bf862e CM |
1358 | } |
1359 | return 0; | |
1360 | } | |
1361 | ||
39279cc3 | 1362 | /* |
376cc685 | 1363 | * this just gets pages into the page cache and locks them down. |
39279cc3 | 1364 | */ |
b37392ea MX |
1365 | static noinline int prepare_pages(struct inode *inode, struct page **pages, |
1366 | size_t num_pages, loff_t pos, | |
1367 | size_t write_bytes, bool force_uptodate) | |
39279cc3 CM |
1368 | { |
1369 | int i; | |
09cbfeaf | 1370 | unsigned long index = pos >> PAGE_SHIFT; |
3b16a4e3 | 1371 | gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping); |
fc28b62d | 1372 | int err = 0; |
376cc685 | 1373 | int faili; |
8c2383c3 | 1374 | |
39279cc3 | 1375 | for (i = 0; i < num_pages; i++) { |
bb1591b4 | 1376 | again: |
a94733d0 | 1377 | pages[i] = find_or_create_page(inode->i_mapping, index + i, |
e3a41a5b | 1378 | mask | __GFP_WRITE); |
39279cc3 | 1379 | if (!pages[i]) { |
b1bf862e CM |
1380 | faili = i - 1; |
1381 | err = -ENOMEM; | |
1382 | goto fail; | |
1383 | } | |
1384 | ||
32443de3 QW |
1385 | err = set_page_extent_mapped(pages[i]); |
1386 | if (err < 0) { | |
1387 | faili = i; | |
1388 | goto fail; | |
1389 | } | |
1390 | ||
b1bf862e | 1391 | if (i == 0) |
bb1591b4 | 1392 | err = prepare_uptodate_page(inode, pages[i], pos, |
b6316429 | 1393 | force_uptodate); |
bb1591b4 CM |
1394 | if (!err && i == num_pages - 1) |
1395 | err = prepare_uptodate_page(inode, pages[i], | |
b6316429 | 1396 | pos + write_bytes, false); |
b1bf862e | 1397 | if (err) { |
09cbfeaf | 1398 | put_page(pages[i]); |
bb1591b4 CM |
1399 | if (err == -EAGAIN) { |
1400 | err = 0; | |
1401 | goto again; | |
1402 | } | |
b1bf862e CM |
1403 | faili = i - 1; |
1404 | goto fail; | |
39279cc3 | 1405 | } |
ccd467d6 | 1406 | wait_on_page_writeback(pages[i]); |
39279cc3 | 1407 | } |
376cc685 MX |
1408 | |
1409 | return 0; | |
1410 | fail: | |
1411 | while (faili >= 0) { | |
1412 | unlock_page(pages[faili]); | |
09cbfeaf | 1413 | put_page(pages[faili]); |
376cc685 MX |
1414 | faili--; |
1415 | } | |
1416 | return err; | |
1417 | ||
1418 | } | |
1419 | ||
1420 | /* | |
1421 | * This function locks the extent and properly waits for data=ordered extents | |
1422 | * to finish before allowing the pages to be modified if need. | |
1423 | * | |
1424 | * The return value: | |
1425 | * 1 - the extent is locked | |
1426 | * 0 - the extent is not locked, and everything is OK | |
1427 | * -EAGAIN - need re-prepare the pages | |
1428 | * the other < 0 number - Something wrong happens | |
1429 | */ | |
1430 | static noinline int | |
2cff578c | 1431 | lock_and_cleanup_extent_if_need(struct btrfs_inode *inode, struct page **pages, |
376cc685 | 1432 | size_t num_pages, loff_t pos, |
2e78c927 | 1433 | size_t write_bytes, |
376cc685 MX |
1434 | u64 *lockstart, u64 *lockend, |
1435 | struct extent_state **cached_state) | |
1436 | { | |
3ffbd68c | 1437 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
376cc685 MX |
1438 | u64 start_pos; |
1439 | u64 last_pos; | |
1440 | int i; | |
1441 | int ret = 0; | |
1442 | ||
0b246afa | 1443 | start_pos = round_down(pos, fs_info->sectorsize); |
e21139c6 | 1444 | last_pos = round_up(pos + write_bytes, fs_info->sectorsize) - 1; |
376cc685 | 1445 | |
e3b8a485 | 1446 | if (start_pos < inode->vfs_inode.i_size) { |
e6dcd2dc | 1447 | struct btrfs_ordered_extent *ordered; |
a7e3b975 | 1448 | |
2cff578c NB |
1449 | lock_extent_bits(&inode->io_tree, start_pos, last_pos, |
1450 | cached_state); | |
b88935bf MX |
1451 | ordered = btrfs_lookup_ordered_range(inode, start_pos, |
1452 | last_pos - start_pos + 1); | |
e6dcd2dc | 1453 | if (ordered && |
bffe633e | 1454 | ordered->file_offset + ordered->num_bytes > start_pos && |
376cc685 | 1455 | ordered->file_offset <= last_pos) { |
2cff578c | 1456 | unlock_extent_cached(&inode->io_tree, start_pos, |
e43bbe5e | 1457 | last_pos, cached_state); |
e6dcd2dc CM |
1458 | for (i = 0; i < num_pages; i++) { |
1459 | unlock_page(pages[i]); | |
09cbfeaf | 1460 | put_page(pages[i]); |
e6dcd2dc | 1461 | } |
c0a43603 | 1462 | btrfs_start_ordered_extent(ordered, 1); |
b88935bf MX |
1463 | btrfs_put_ordered_extent(ordered); |
1464 | return -EAGAIN; | |
e6dcd2dc CM |
1465 | } |
1466 | if (ordered) | |
1467 | btrfs_put_ordered_extent(ordered); | |
7703bdd8 | 1468 | |
376cc685 MX |
1469 | *lockstart = start_pos; |
1470 | *lockend = last_pos; | |
1471 | ret = 1; | |
0762704b | 1472 | } |
376cc685 | 1473 | |
7703bdd8 | 1474 | /* |
32443de3 QW |
1475 | * We should be called after prepare_pages() which should have locked |
1476 | * all pages in the range. | |
7703bdd8 | 1477 | */ |
32443de3 | 1478 | for (i = 0; i < num_pages; i++) |
e6dcd2dc | 1479 | WARN_ON(!PageLocked(pages[i])); |
b1bf862e | 1480 | |
376cc685 | 1481 | return ret; |
39279cc3 CM |
1482 | } |
1483 | ||
38d37aa9 QW |
1484 | static int check_can_nocow(struct btrfs_inode *inode, loff_t pos, |
1485 | size_t *write_bytes, bool nowait) | |
7ee9e440 | 1486 | { |
3ffbd68c | 1487 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
85b7ab67 | 1488 | struct btrfs_root *root = inode->root; |
7ee9e440 JB |
1489 | u64 lockstart, lockend; |
1490 | u64 num_bytes; | |
1491 | int ret; | |
1492 | ||
38d37aa9 QW |
1493 | if (!(inode->flags & (BTRFS_INODE_NODATACOW | BTRFS_INODE_PREALLOC))) |
1494 | return 0; | |
1495 | ||
5dbb75ed | 1496 | if (!nowait && !btrfs_drew_try_write_lock(&root->snapshot_lock)) |
5f791ec3 | 1497 | return -EAGAIN; |
8257b2dc | 1498 | |
0b246afa | 1499 | lockstart = round_down(pos, fs_info->sectorsize); |
da17066c | 1500 | lockend = round_up(pos + *write_bytes, |
0b246afa | 1501 | fs_info->sectorsize) - 1; |
5dbb75ed | 1502 | num_bytes = lockend - lockstart + 1; |
7ee9e440 | 1503 | |
5dbb75ed FM |
1504 | if (nowait) { |
1505 | struct btrfs_ordered_extent *ordered; | |
1506 | ||
1507 | if (!try_lock_extent(&inode->io_tree, lockstart, lockend)) | |
1508 | return -EAGAIN; | |
1509 | ||
1510 | ordered = btrfs_lookup_ordered_range(inode, lockstart, | |
1511 | num_bytes); | |
1512 | if (ordered) { | |
1513 | btrfs_put_ordered_extent(ordered); | |
1514 | ret = -EAGAIN; | |
1515 | goto out_unlock; | |
1516 | } | |
1517 | } else { | |
1518 | btrfs_lock_and_flush_ordered_range(inode, lockstart, | |
1519 | lockend, NULL); | |
1520 | } | |
7ee9e440 | 1521 | |
85b7ab67 | 1522 | ret = can_nocow_extent(&inode->vfs_inode, lockstart, &num_bytes, |
a84d5d42 | 1523 | NULL, NULL, NULL, false); |
7ee9e440 JB |
1524 | if (ret <= 0) { |
1525 | ret = 0; | |
5dbb75ed FM |
1526 | if (!nowait) |
1527 | btrfs_drew_write_unlock(&root->snapshot_lock); | |
7ee9e440 | 1528 | } else { |
c933956d MX |
1529 | *write_bytes = min_t(size_t, *write_bytes , |
1530 | num_bytes - pos + lockstart); | |
7ee9e440 | 1531 | } |
5dbb75ed | 1532 | out_unlock: |
85b7ab67 | 1533 | unlock_extent(&inode->io_tree, lockstart, lockend); |
7ee9e440 JB |
1534 | |
1535 | return ret; | |
1536 | } | |
1537 | ||
38d37aa9 QW |
1538 | static int check_nocow_nolock(struct btrfs_inode *inode, loff_t pos, |
1539 | size_t *write_bytes) | |
1540 | { | |
1541 | return check_can_nocow(inode, pos, write_bytes, true); | |
1542 | } | |
1543 | ||
1544 | /* | |
1545 | * Check if we can do nocow write into the range [@pos, @pos + @write_bytes) | |
1546 | * | |
1547 | * @pos: File offset | |
1548 | * @write_bytes: The length to write, will be updated to the nocow writeable | |
1549 | * range | |
1550 | * | |
1551 | * This function will flush ordered extents in the range to ensure proper | |
1552 | * nocow checks. | |
1553 | * | |
1554 | * Return: | |
1555 | * >0 and update @write_bytes if we can do nocow write | |
1556 | * 0 if we can't do nocow write | |
1557 | * -EAGAIN if we can't get the needed lock or there are ordered extents | |
1558 | * for * (nowait == true) case | |
1559 | * <0 if other error happened | |
1560 | * | |
1561 | * NOTE: Callers need to release the lock by btrfs_check_nocow_unlock(). | |
1562 | */ | |
1563 | int btrfs_check_nocow_lock(struct btrfs_inode *inode, loff_t pos, | |
1564 | size_t *write_bytes) | |
1565 | { | |
1566 | return check_can_nocow(inode, pos, write_bytes, false); | |
1567 | } | |
1568 | ||
1569 | void btrfs_check_nocow_unlock(struct btrfs_inode *inode) | |
1570 | { | |
1571 | btrfs_drew_write_unlock(&inode->root->snapshot_lock); | |
1572 | } | |
1573 | ||
b8d8e1fd GR |
1574 | static void update_time_for_write(struct inode *inode) |
1575 | { | |
1576 | struct timespec64 now; | |
1577 | ||
1578 | if (IS_NOCMTIME(inode)) | |
1579 | return; | |
1580 | ||
1581 | now = current_time(inode); | |
1582 | if (!timespec64_equal(&inode->i_mtime, &now)) | |
1583 | inode->i_mtime = now; | |
1584 | ||
1585 | if (!timespec64_equal(&inode->i_ctime, &now)) | |
1586 | inode->i_ctime = now; | |
1587 | ||
1588 | if (IS_I_VERSION(inode)) | |
1589 | inode_inc_iversion(inode); | |
1590 | } | |
1591 | ||
1592 | static int btrfs_write_check(struct kiocb *iocb, struct iov_iter *from, | |
1593 | size_t count) | |
1594 | { | |
1595 | struct file *file = iocb->ki_filp; | |
1596 | struct inode *inode = file_inode(file); | |
1597 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); | |
1598 | loff_t pos = iocb->ki_pos; | |
1599 | int ret; | |
1600 | loff_t oldsize; | |
1601 | loff_t start_pos; | |
1602 | ||
1603 | if (iocb->ki_flags & IOCB_NOWAIT) { | |
1604 | size_t nocow_bytes = count; | |
1605 | ||
1606 | /* We will allocate space in case nodatacow is not set, so bail */ | |
1607 | if (check_nocow_nolock(BTRFS_I(inode), pos, &nocow_bytes) <= 0) | |
1608 | return -EAGAIN; | |
1609 | /* | |
1610 | * There are holes in the range or parts of the range that must | |
1611 | * be COWed (shared extents, RO block groups, etc), so just bail | |
1612 | * out. | |
1613 | */ | |
1614 | if (nocow_bytes < count) | |
1615 | return -EAGAIN; | |
1616 | } | |
1617 | ||
1618 | current->backing_dev_info = inode_to_bdi(inode); | |
1619 | ret = file_remove_privs(file); | |
1620 | if (ret) | |
1621 | return ret; | |
1622 | ||
1623 | /* | |
1624 | * We reserve space for updating the inode when we reserve space for the | |
1625 | * extent we are going to write, so we will enospc out there. We don't | |
1626 | * need to start yet another transaction to update the inode as we will | |
1627 | * update the inode when we finish writing whatever data we write. | |
1628 | */ | |
1629 | update_time_for_write(inode); | |
1630 | ||
1631 | start_pos = round_down(pos, fs_info->sectorsize); | |
1632 | oldsize = i_size_read(inode); | |
1633 | if (start_pos > oldsize) { | |
1634 | /* Expand hole size to cover write data, preventing empty gap */ | |
1635 | loff_t end_pos = round_up(pos + count, fs_info->sectorsize); | |
1636 | ||
b06359a3 | 1637 | ret = btrfs_cont_expand(BTRFS_I(inode), oldsize, end_pos); |
b8d8e1fd GR |
1638 | if (ret) { |
1639 | current->backing_dev_info = NULL; | |
1640 | return ret; | |
1641 | } | |
1642 | } | |
1643 | ||
1644 | return 0; | |
1645 | } | |
1646 | ||
e4af400a GR |
1647 | static noinline ssize_t btrfs_buffered_write(struct kiocb *iocb, |
1648 | struct iov_iter *i) | |
4b46fce2 | 1649 | { |
e4af400a | 1650 | struct file *file = iocb->ki_filp; |
c3523706 | 1651 | loff_t pos; |
496ad9aa | 1652 | struct inode *inode = file_inode(file); |
0b246afa | 1653 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
11c65dcc | 1654 | struct page **pages = NULL; |
364ecf36 | 1655 | struct extent_changeset *data_reserved = NULL; |
7ee9e440 | 1656 | u64 release_bytes = 0; |
376cc685 MX |
1657 | u64 lockstart; |
1658 | u64 lockend; | |
d0215f3e JB |
1659 | size_t num_written = 0; |
1660 | int nrptrs; | |
c3523706 | 1661 | ssize_t ret; |
7ee9e440 | 1662 | bool only_release_metadata = false; |
b6316429 | 1663 | bool force_page_uptodate = false; |
5e8b9ef3 | 1664 | loff_t old_isize = i_size_read(inode); |
c3523706 GR |
1665 | unsigned int ilock_flags = 0; |
1666 | ||
1667 | if (iocb->ki_flags & IOCB_NOWAIT) | |
1668 | ilock_flags |= BTRFS_ILOCK_TRY; | |
1669 | ||
1670 | ret = btrfs_inode_lock(inode, ilock_flags); | |
1671 | if (ret < 0) | |
1672 | return ret; | |
4b46fce2 | 1673 | |
c3523706 GR |
1674 | ret = generic_write_checks(iocb, i); |
1675 | if (ret <= 0) | |
1676 | goto out; | |
1677 | ||
1678 | ret = btrfs_write_check(iocb, i, ret); | |
1679 | if (ret < 0) | |
1680 | goto out; | |
1681 | ||
1682 | pos = iocb->ki_pos; | |
09cbfeaf KS |
1683 | nrptrs = min(DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE), |
1684 | PAGE_SIZE / (sizeof(struct page *))); | |
142349f5 WF |
1685 | nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied); |
1686 | nrptrs = max(nrptrs, 8); | |
31e818fe | 1687 | pages = kmalloc_array(nrptrs, sizeof(struct page *), GFP_KERNEL); |
c3523706 GR |
1688 | if (!pages) { |
1689 | ret = -ENOMEM; | |
1690 | goto out; | |
1691 | } | |
ab93dbec | 1692 | |
d0215f3e | 1693 | while (iov_iter_count(i) > 0) { |
c67d970f | 1694 | struct extent_state *cached_state = NULL; |
7073017a | 1695 | size_t offset = offset_in_page(pos); |
2e78c927 | 1696 | size_t sector_offset; |
d0215f3e | 1697 | size_t write_bytes = min(iov_iter_count(i), |
09cbfeaf | 1698 | nrptrs * (size_t)PAGE_SIZE - |
8c2383c3 | 1699 | offset); |
eefa45f5 | 1700 | size_t num_pages; |
7ee9e440 | 1701 | size_t reserve_bytes; |
d0215f3e JB |
1702 | size_t dirty_pages; |
1703 | size_t copied; | |
2e78c927 CR |
1704 | size_t dirty_sectors; |
1705 | size_t num_sectors; | |
79f015f2 | 1706 | int extents_locked; |
39279cc3 | 1707 | |
914ee295 XZ |
1708 | /* |
1709 | * Fault pages before locking them in prepare_pages | |
1710 | * to avoid recursive lock | |
1711 | */ | |
d0215f3e | 1712 | if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) { |
914ee295 | 1713 | ret = -EFAULT; |
d0215f3e | 1714 | break; |
914ee295 XZ |
1715 | } |
1716 | ||
a0e248bb | 1717 | only_release_metadata = false; |
da17066c | 1718 | sector_offset = pos & (fs_info->sectorsize - 1); |
d9d8b2a5 | 1719 | |
364ecf36 | 1720 | extent_changeset_release(data_reserved); |
36ea6f3e NB |
1721 | ret = btrfs_check_data_free_space(BTRFS_I(inode), |
1722 | &data_reserved, pos, | |
364ecf36 | 1723 | write_bytes); |
c6887cd1 | 1724 | if (ret < 0) { |
eefa45f5 GR |
1725 | /* |
1726 | * If we don't have to COW at the offset, reserve | |
1727 | * metadata only. write_bytes may get smaller than | |
1728 | * requested here. | |
1729 | */ | |
38d37aa9 | 1730 | if (btrfs_check_nocow_lock(BTRFS_I(inode), pos, |
eefa45f5 | 1731 | &write_bytes) > 0) |
c6887cd1 | 1732 | only_release_metadata = true; |
eefa45f5 | 1733 | else |
c6887cd1 | 1734 | break; |
c6887cd1 | 1735 | } |
1832a6d5 | 1736 | |
eefa45f5 GR |
1737 | num_pages = DIV_ROUND_UP(write_bytes + offset, PAGE_SIZE); |
1738 | WARN_ON(num_pages > nrptrs); | |
1739 | reserve_bytes = round_up(write_bytes + sector_offset, | |
1740 | fs_info->sectorsize); | |
8b62f87b | 1741 | WARN_ON(reserve_bytes == 0); |
9f3db423 NB |
1742 | ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), |
1743 | reserve_bytes); | |
7ee9e440 JB |
1744 | if (ret) { |
1745 | if (!only_release_metadata) | |
25ce28ca | 1746 | btrfs_free_reserved_data_space(BTRFS_I(inode), |
bc42bda2 QW |
1747 | data_reserved, pos, |
1748 | write_bytes); | |
8257b2dc | 1749 | else |
38d37aa9 | 1750 | btrfs_check_nocow_unlock(BTRFS_I(inode)); |
7ee9e440 JB |
1751 | break; |
1752 | } | |
1753 | ||
1754 | release_bytes = reserve_bytes; | |
376cc685 | 1755 | again: |
4a64001f JB |
1756 | /* |
1757 | * This is going to setup the pages array with the number of | |
1758 | * pages we want, so we don't really need to worry about the | |
1759 | * contents of pages from loop to loop | |
1760 | */ | |
b37392ea MX |
1761 | ret = prepare_pages(inode, pages, num_pages, |
1762 | pos, write_bytes, | |
b6316429 | 1763 | force_page_uptodate); |
8b62f87b JB |
1764 | if (ret) { |
1765 | btrfs_delalloc_release_extents(BTRFS_I(inode), | |
8702ba93 | 1766 | reserve_bytes); |
d0215f3e | 1767 | break; |
8b62f87b | 1768 | } |
39279cc3 | 1769 | |
79f015f2 GR |
1770 | extents_locked = lock_and_cleanup_extent_if_need( |
1771 | BTRFS_I(inode), pages, | |
2cff578c NB |
1772 | num_pages, pos, write_bytes, &lockstart, |
1773 | &lockend, &cached_state); | |
79f015f2 GR |
1774 | if (extents_locked < 0) { |
1775 | if (extents_locked == -EAGAIN) | |
376cc685 | 1776 | goto again; |
8b62f87b | 1777 | btrfs_delalloc_release_extents(BTRFS_I(inode), |
8702ba93 | 1778 | reserve_bytes); |
79f015f2 | 1779 | ret = extents_locked; |
376cc685 | 1780 | break; |
376cc685 MX |
1781 | } |
1782 | ||
ee22f0c4 | 1783 | copied = btrfs_copy_from_user(pos, write_bytes, pages, i); |
b1bf862e | 1784 | |
0b246afa | 1785 | num_sectors = BTRFS_BYTES_TO_BLKS(fs_info, reserve_bytes); |
56244ef1 | 1786 | dirty_sectors = round_up(copied + sector_offset, |
0b246afa JM |
1787 | fs_info->sectorsize); |
1788 | dirty_sectors = BTRFS_BYTES_TO_BLKS(fs_info, dirty_sectors); | |
56244ef1 | 1789 | |
b1bf862e CM |
1790 | /* |
1791 | * if we have trouble faulting in the pages, fall | |
1792 | * back to one page at a time | |
1793 | */ | |
1794 | if (copied < write_bytes) | |
1795 | nrptrs = 1; | |
1796 | ||
b6316429 JB |
1797 | if (copied == 0) { |
1798 | force_page_uptodate = true; | |
56244ef1 | 1799 | dirty_sectors = 0; |
b1bf862e | 1800 | dirty_pages = 0; |
b6316429 JB |
1801 | } else { |
1802 | force_page_uptodate = false; | |
ed6078f7 | 1803 | dirty_pages = DIV_ROUND_UP(copied + offset, |
09cbfeaf | 1804 | PAGE_SIZE); |
b6316429 | 1805 | } |
914ee295 | 1806 | |
2e78c927 | 1807 | if (num_sectors > dirty_sectors) { |
8b8b08cb | 1808 | /* release everything except the sectors we dirtied */ |
265fdfa6 | 1809 | release_bytes -= dirty_sectors << fs_info->sectorsize_bits; |
485290a7 | 1810 | if (only_release_metadata) { |
691fa059 | 1811 | btrfs_delalloc_release_metadata(BTRFS_I(inode), |
43b18595 | 1812 | release_bytes, true); |
485290a7 QW |
1813 | } else { |
1814 | u64 __pos; | |
1815 | ||
da17066c | 1816 | __pos = round_down(pos, |
0b246afa | 1817 | fs_info->sectorsize) + |
09cbfeaf | 1818 | (dirty_pages << PAGE_SHIFT); |
86d52921 | 1819 | btrfs_delalloc_release_space(BTRFS_I(inode), |
bc42bda2 | 1820 | data_reserved, __pos, |
43b18595 | 1821 | release_bytes, true); |
485290a7 | 1822 | } |
914ee295 XZ |
1823 | } |
1824 | ||
2e78c927 | 1825 | release_bytes = round_up(copied + sector_offset, |
0b246afa | 1826 | fs_info->sectorsize); |
376cc685 | 1827 | |
aa8c1a41 GR |
1828 | ret = btrfs_dirty_pages(BTRFS_I(inode), pages, |
1829 | dirty_pages, pos, copied, | |
1830 | &cached_state, only_release_metadata); | |
c67d970f FM |
1831 | |
1832 | /* | |
1833 | * If we have not locked the extent range, because the range's | |
1834 | * start offset is >= i_size, we might still have a non-NULL | |
1835 | * cached extent state, acquired while marking the extent range | |
1836 | * as delalloc through btrfs_dirty_pages(). Therefore free any | |
1837 | * possible cached extent state to avoid a memory leak. | |
1838 | */ | |
79f015f2 | 1839 | if (extents_locked) |
376cc685 | 1840 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, |
e43bbe5e | 1841 | lockstart, lockend, &cached_state); |
c67d970f FM |
1842 | else |
1843 | free_extent_state(cached_state); | |
1844 | ||
8702ba93 | 1845 | btrfs_delalloc_release_extents(BTRFS_I(inode), reserve_bytes); |
f1de9683 MX |
1846 | if (ret) { |
1847 | btrfs_drop_pages(pages, num_pages); | |
376cc685 | 1848 | break; |
f1de9683 | 1849 | } |
39279cc3 | 1850 | |
376cc685 | 1851 | release_bytes = 0; |
8257b2dc | 1852 | if (only_release_metadata) |
38d37aa9 | 1853 | btrfs_check_nocow_unlock(BTRFS_I(inode)); |
8257b2dc | 1854 | |
f1de9683 MX |
1855 | btrfs_drop_pages(pages, num_pages); |
1856 | ||
d0215f3e JB |
1857 | cond_resched(); |
1858 | ||
d0e1d66b | 1859 | balance_dirty_pages_ratelimited(inode->i_mapping); |
cb843a6f | 1860 | |
914ee295 XZ |
1861 | pos += copied; |
1862 | num_written += copied; | |
d0215f3e | 1863 | } |
39279cc3 | 1864 | |
d0215f3e JB |
1865 | kfree(pages); |
1866 | ||
7ee9e440 | 1867 | if (release_bytes) { |
8257b2dc | 1868 | if (only_release_metadata) { |
38d37aa9 | 1869 | btrfs_check_nocow_unlock(BTRFS_I(inode)); |
691fa059 | 1870 | btrfs_delalloc_release_metadata(BTRFS_I(inode), |
43b18595 | 1871 | release_bytes, true); |
8257b2dc | 1872 | } else { |
86d52921 NB |
1873 | btrfs_delalloc_release_space(BTRFS_I(inode), |
1874 | data_reserved, | |
bc42bda2 | 1875 | round_down(pos, fs_info->sectorsize), |
43b18595 | 1876 | release_bytes, true); |
8257b2dc | 1877 | } |
7ee9e440 JB |
1878 | } |
1879 | ||
364ecf36 | 1880 | extent_changeset_free(data_reserved); |
5e8b9ef3 GR |
1881 | if (num_written > 0) { |
1882 | pagecache_isize_extended(inode, old_isize, iocb->ki_pos); | |
1883 | iocb->ki_pos += num_written; | |
1884 | } | |
c3523706 GR |
1885 | out: |
1886 | btrfs_inode_unlock(inode, ilock_flags); | |
d0215f3e JB |
1887 | return num_written ? num_written : ret; |
1888 | } | |
1889 | ||
4e4cabec GR |
1890 | static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info, |
1891 | const struct iov_iter *iter, loff_t offset) | |
1892 | { | |
1893 | const u32 blocksize_mask = fs_info->sectorsize - 1; | |
1894 | ||
1895 | if (offset & blocksize_mask) | |
1896 | return -EINVAL; | |
1897 | ||
1898 | if (iov_iter_alignment(iter) & blocksize_mask) | |
1899 | return -EINVAL; | |
1900 | ||
1901 | return 0; | |
1902 | } | |
1903 | ||
1904 | static ssize_t btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from) | |
d0215f3e JB |
1905 | { |
1906 | struct file *file = iocb->ki_filp; | |
728404da | 1907 | struct inode *inode = file_inode(file); |
4e4cabec | 1908 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
c3523706 | 1909 | loff_t pos; |
4e4cabec | 1910 | ssize_t written = 0; |
d0215f3e JB |
1911 | ssize_t written_buffered; |
1912 | loff_t endbyte; | |
c3523706 GR |
1913 | ssize_t err; |
1914 | unsigned int ilock_flags = 0; | |
a42fa643 | 1915 | struct iomap_dio *dio = NULL; |
c3523706 GR |
1916 | |
1917 | if (iocb->ki_flags & IOCB_NOWAIT) | |
1918 | ilock_flags |= BTRFS_ILOCK_TRY; | |
1919 | ||
e9adabb9 GR |
1920 | /* If the write DIO is within EOF, use a shared lock */ |
1921 | if (iocb->ki_pos + iov_iter_count(from) <= i_size_read(inode)) | |
1922 | ilock_flags |= BTRFS_ILOCK_SHARED; | |
1923 | ||
1924 | relock: | |
c3523706 GR |
1925 | err = btrfs_inode_lock(inode, ilock_flags); |
1926 | if (err < 0) | |
1927 | return err; | |
1928 | ||
1929 | err = generic_write_checks(iocb, from); | |
1930 | if (err <= 0) { | |
1931 | btrfs_inode_unlock(inode, ilock_flags); | |
1932 | return err; | |
1933 | } | |
d0215f3e | 1934 | |
c3523706 GR |
1935 | err = btrfs_write_check(iocb, from, err); |
1936 | if (err < 0) { | |
1937 | btrfs_inode_unlock(inode, ilock_flags); | |
1938 | goto out; | |
1939 | } | |
1940 | ||
1941 | pos = iocb->ki_pos; | |
e9adabb9 GR |
1942 | /* |
1943 | * Re-check since file size may have changed just before taking the | |
1944 | * lock or pos may have changed because of O_APPEND in generic_write_check() | |
1945 | */ | |
1946 | if ((ilock_flags & BTRFS_ILOCK_SHARED) && | |
1947 | pos + iov_iter_count(from) > i_size_read(inode)) { | |
1948 | btrfs_inode_unlock(inode, ilock_flags); | |
1949 | ilock_flags &= ~BTRFS_ILOCK_SHARED; | |
1950 | goto relock; | |
1951 | } | |
c3523706 GR |
1952 | |
1953 | if (check_direct_IO(fs_info, from, pos)) { | |
1954 | btrfs_inode_unlock(inode, ilock_flags); | |
4e4cabec | 1955 | goto buffered; |
c3523706 | 1956 | } |
4e4cabec | 1957 | |
2f632965 CH |
1958 | dio = __iomap_dio_rw(iocb, from, &btrfs_dio_iomap_ops, &btrfs_dio_ops, |
1959 | 0); | |
4e4cabec | 1960 | |
e9adabb9 | 1961 | btrfs_inode_unlock(inode, ilock_flags); |
d0215f3e | 1962 | |
a42fa643 GR |
1963 | if (IS_ERR_OR_NULL(dio)) { |
1964 | err = PTR_ERR_OR_ZERO(dio); | |
1965 | if (err < 0 && err != -ENOTBLK) | |
1966 | goto out; | |
1967 | } else { | |
1968 | written = iomap_dio_complete(dio); | |
1969 | } | |
1970 | ||
c3523706 GR |
1971 | if (written < 0 || !iov_iter_count(from)) { |
1972 | err = written; | |
1973 | goto out; | |
1974 | } | |
d0215f3e | 1975 | |
4e4cabec | 1976 | buffered: |
e4af400a GR |
1977 | pos = iocb->ki_pos; |
1978 | written_buffered = btrfs_buffered_write(iocb, from); | |
d0215f3e JB |
1979 | if (written_buffered < 0) { |
1980 | err = written_buffered; | |
1981 | goto out; | |
39279cc3 | 1982 | } |
075bdbdb FM |
1983 | /* |
1984 | * Ensure all data is persisted. We want the next direct IO read to be | |
1985 | * able to read what was just written. | |
1986 | */ | |
d0215f3e | 1987 | endbyte = pos + written_buffered - 1; |
728404da | 1988 | err = btrfs_fdatawrite_range(inode, pos, endbyte); |
075bdbdb FM |
1989 | if (err) |
1990 | goto out; | |
728404da | 1991 | err = filemap_fdatawait_range(inode->i_mapping, pos, endbyte); |
d0215f3e JB |
1992 | if (err) |
1993 | goto out; | |
1994 | written += written_buffered; | |
867c4f93 | 1995 | iocb->ki_pos = pos + written_buffered; |
09cbfeaf KS |
1996 | invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT, |
1997 | endbyte >> PAGE_SHIFT); | |
39279cc3 | 1998 | out: |
d0215f3e JB |
1999 | return written ? written : err; |
2000 | } | |
5b92ee72 | 2001 | |
b30ac0fc AV |
2002 | static ssize_t btrfs_file_write_iter(struct kiocb *iocb, |
2003 | struct iov_iter *from) | |
d0215f3e JB |
2004 | { |
2005 | struct file *file = iocb->ki_filp; | |
14971657 | 2006 | struct btrfs_inode *inode = BTRFS_I(file_inode(file)); |
d0215f3e | 2007 | ssize_t num_written = 0; |
f50cb7af | 2008 | const bool sync = iocb->ki_flags & IOCB_DSYNC; |
d0215f3e | 2009 | |
c86537a4 GR |
2010 | /* |
2011 | * If the fs flips readonly due to some impossible error, although we | |
2012 | * have opened a file as writable, we have to stop this write operation | |
2013 | * to ensure consistency. | |
2014 | */ | |
14971657 | 2015 | if (test_bit(BTRFS_FS_STATE_ERROR, &inode->root->fs_info->fs_state)) |
c86537a4 GR |
2016 | return -EROFS; |
2017 | ||
91f9943e CH |
2018 | if (!(iocb->ki_flags & IOCB_DIRECT) && |
2019 | (iocb->ki_flags & IOCB_NOWAIT)) | |
2020 | return -EOPNOTSUPP; | |
2021 | ||
b812ce28 | 2022 | if (sync) |
14971657 | 2023 | atomic_inc(&inode->sync_writers); |
b812ce28 | 2024 | |
ecfdc08b | 2025 | if (iocb->ki_flags & IOCB_DIRECT) |
4e4cabec | 2026 | num_written = btrfs_direct_write(iocb, from); |
ecfdc08b | 2027 | else |
e4af400a | 2028 | num_written = btrfs_buffered_write(iocb, from); |
d0215f3e | 2029 | |
bc0939fc FM |
2030 | btrfs_set_inode_last_sub_trans(inode); |
2031 | ||
e2592217 CH |
2032 | if (num_written > 0) |
2033 | num_written = generic_write_sync(iocb, num_written); | |
0a3404dc | 2034 | |
b812ce28 | 2035 | if (sync) |
14971657 | 2036 | atomic_dec(&inode->sync_writers); |
b8d8e1fd | 2037 | |
39279cc3 | 2038 | current->backing_dev_info = NULL; |
c3523706 | 2039 | return num_written; |
39279cc3 CM |
2040 | } |
2041 | ||
d397712b | 2042 | int btrfs_release_file(struct inode *inode, struct file *filp) |
e1b81e67 | 2043 | { |
23b5ec74 JB |
2044 | struct btrfs_file_private *private = filp->private_data; |
2045 | ||
23b5ec74 JB |
2046 | if (private && private->filldir_buf) |
2047 | kfree(private->filldir_buf); | |
2048 | kfree(private); | |
2049 | filp->private_data = NULL; | |
2050 | ||
f6dc45c7 | 2051 | /* |
1fd4033d NB |
2052 | * Set by setattr when we are about to truncate a file from a non-zero |
2053 | * size to a zero size. This tries to flush down new bytes that may | |
2054 | * have been written if the application were using truncate to replace | |
2055 | * a file in place. | |
f6dc45c7 | 2056 | */ |
1fd4033d | 2057 | if (test_and_clear_bit(BTRFS_INODE_FLUSH_ON_CLOSE, |
f6dc45c7 CM |
2058 | &BTRFS_I(inode)->runtime_flags)) |
2059 | filemap_flush(inode->i_mapping); | |
e1b81e67 M |
2060 | return 0; |
2061 | } | |
2062 | ||
669249ee FM |
2063 | static int start_ordered_ops(struct inode *inode, loff_t start, loff_t end) |
2064 | { | |
2065 | int ret; | |
343e4fc1 | 2066 | struct blk_plug plug; |
669249ee | 2067 | |
343e4fc1 LB |
2068 | /* |
2069 | * This is only called in fsync, which would do synchronous writes, so | |
2070 | * a plug can merge adjacent IOs as much as possible. Esp. in case of | |
2071 | * multiple disks using raid profile, a large IO can be split to | |
2072 | * several segments of stripe length (currently 64K). | |
2073 | */ | |
2074 | blk_start_plug(&plug); | |
669249ee | 2075 | atomic_inc(&BTRFS_I(inode)->sync_writers); |
728404da | 2076 | ret = btrfs_fdatawrite_range(inode, start, end); |
669249ee | 2077 | atomic_dec(&BTRFS_I(inode)->sync_writers); |
343e4fc1 | 2078 | blk_finish_plug(&plug); |
669249ee FM |
2079 | |
2080 | return ret; | |
2081 | } | |
2082 | ||
626e9f41 FM |
2083 | static inline bool skip_inode_logging(const struct btrfs_log_ctx *ctx) |
2084 | { | |
2085 | struct btrfs_inode *inode = BTRFS_I(ctx->inode); | |
2086 | struct btrfs_fs_info *fs_info = inode->root->fs_info; | |
2087 | ||
2088 | if (btrfs_inode_in_log(inode, fs_info->generation) && | |
2089 | list_empty(&ctx->ordered_extents)) | |
2090 | return true; | |
2091 | ||
2092 | /* | |
2093 | * If we are doing a fast fsync we can not bail out if the inode's | |
2094 | * last_trans is <= then the last committed transaction, because we only | |
2095 | * update the last_trans of the inode during ordered extent completion, | |
2096 | * and for a fast fsync we don't wait for that, we only wait for the | |
2097 | * writeback to complete. | |
2098 | */ | |
2099 | if (inode->last_trans <= fs_info->last_trans_committed && | |
2100 | (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags) || | |
2101 | list_empty(&ctx->ordered_extents))) | |
2102 | return true; | |
2103 | ||
2104 | return false; | |
2105 | } | |
2106 | ||
d352ac68 CM |
2107 | /* |
2108 | * fsync call for both files and directories. This logs the inode into | |
2109 | * the tree log instead of forcing full commits whenever possible. | |
2110 | * | |
2111 | * It needs to call filemap_fdatawait so that all ordered extent updates are | |
2112 | * in the metadata btree are up to date for copying to the log. | |
2113 | * | |
2114 | * It drops the inode mutex before doing the tree log commit. This is an | |
2115 | * important optimization for directories because holding the mutex prevents | |
2116 | * new operations on the dir while we write to disk. | |
2117 | */ | |
02c24a82 | 2118 | int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync) |
39279cc3 | 2119 | { |
de17e793 | 2120 | struct dentry *dentry = file_dentry(file); |
2b0143b5 | 2121 | struct inode *inode = d_inode(dentry); |
0b246afa | 2122 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
39279cc3 | 2123 | struct btrfs_root *root = BTRFS_I(inode)->root; |
39279cc3 | 2124 | struct btrfs_trans_handle *trans; |
8b050d35 | 2125 | struct btrfs_log_ctx ctx; |
333427a5 | 2126 | int ret = 0, err; |
48778179 FM |
2127 | u64 len; |
2128 | bool full_sync; | |
39279cc3 | 2129 | |
1abe9b8a | 2130 | trace_btrfs_sync_file(file, datasync); |
257c62e1 | 2131 | |
ebb70442 LB |
2132 | btrfs_init_log_ctx(&ctx, inode); |
2133 | ||
95418ed1 | 2134 | /* |
48778179 FM |
2135 | * Always set the range to a full range, otherwise we can get into |
2136 | * several problems, from missing file extent items to represent holes | |
2137 | * when not using the NO_HOLES feature, to log tree corruption due to | |
2138 | * races between hole detection during logging and completion of ordered | |
2139 | * extents outside the range, to missing checksums due to ordered extents | |
2140 | * for which we flushed only a subset of their pages. | |
95418ed1 | 2141 | */ |
48778179 FM |
2142 | start = 0; |
2143 | end = LLONG_MAX; | |
2144 | len = (u64)LLONG_MAX + 1; | |
95418ed1 | 2145 | |
90abccf2 MX |
2146 | /* |
2147 | * We write the dirty pages in the range and wait until they complete | |
2148 | * out of the ->i_mutex. If so, we can flush the dirty pages by | |
2ab28f32 JB |
2149 | * multi-task, and make the performance up. See |
2150 | * btrfs_wait_ordered_range for an explanation of the ASYNC check. | |
90abccf2 | 2151 | */ |
669249ee | 2152 | ret = start_ordered_ops(inode, start, end); |
90abccf2 | 2153 | if (ret) |
333427a5 | 2154 | goto out; |
90abccf2 | 2155 | |
885f46d8 | 2156 | btrfs_inode_lock(inode, BTRFS_ILOCK_MMAP); |
c495144b | 2157 | |
2ecb7923 | 2158 | atomic_inc(&root->log_batch); |
b5e6c3e1 | 2159 | |
7af59743 | 2160 | /* |
48778179 FM |
2161 | * Always check for the full sync flag while holding the inode's lock, |
2162 | * to avoid races with other tasks. The flag must be either set all the | |
2163 | * time during logging or always off all the time while logging. | |
7af59743 | 2164 | */ |
48778179 FM |
2165 | full_sync = test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
2166 | &BTRFS_I(inode)->runtime_flags); | |
7af59743 | 2167 | |
aab15e8e | 2168 | /* |
885f46d8 FM |
2169 | * Before we acquired the inode's lock and the mmap lock, someone may |
2170 | * have dirtied more pages in the target range. We need to make sure | |
2171 | * that writeback for any such pages does not start while we are logging | |
2172 | * the inode, because if it does, any of the following might happen when | |
2173 | * we are not doing a full inode sync: | |
aab15e8e FM |
2174 | * |
2175 | * 1) We log an extent after its writeback finishes but before its | |
2176 | * checksums are added to the csum tree, leading to -EIO errors | |
2177 | * when attempting to read the extent after a log replay. | |
2178 | * | |
2179 | * 2) We can end up logging an extent before its writeback finishes. | |
2180 | * Therefore after the log replay we will have a file extent item | |
2181 | * pointing to an unwritten extent (and no data checksums as well). | |
2182 | * | |
2183 | * So trigger writeback for any eventual new dirty pages and then we | |
2184 | * wait for all ordered extents to complete below. | |
2185 | */ | |
2186 | ret = start_ordered_ops(inode, start, end); | |
2187 | if (ret) { | |
885f46d8 | 2188 | btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP); |
aab15e8e FM |
2189 | goto out; |
2190 | } | |
2191 | ||
669249ee | 2192 | /* |
b5e6c3e1 | 2193 | * We have to do this here to avoid the priority inversion of waiting on |
52042d8e | 2194 | * IO of a lower priority task while holding a transaction open. |
ba0b084a | 2195 | * |
48778179 FM |
2196 | * For a full fsync we wait for the ordered extents to complete while |
2197 | * for a fast fsync we wait just for writeback to complete, and then | |
2198 | * attach the ordered extents to the transaction so that a transaction | |
2199 | * commit waits for their completion, to avoid data loss if we fsync, | |
2200 | * the current transaction commits before the ordered extents complete | |
2201 | * and a power failure happens right after that. | |
d8e3fb10 NA |
2202 | * |
2203 | * For zoned filesystem, if a write IO uses a ZONE_APPEND command, the | |
2204 | * logical address recorded in the ordered extent may change. We need | |
2205 | * to wait for the IO to stabilize the logical address. | |
669249ee | 2206 | */ |
d8e3fb10 | 2207 | if (full_sync || btrfs_is_zoned(fs_info)) { |
48778179 FM |
2208 | ret = btrfs_wait_ordered_range(inode, start, len); |
2209 | } else { | |
2210 | /* | |
2211 | * Get our ordered extents as soon as possible to avoid doing | |
2212 | * checksum lookups in the csum tree, and use instead the | |
2213 | * checksums attached to the ordered extents. | |
2214 | */ | |
2215 | btrfs_get_ordered_extents_for_logging(BTRFS_I(inode), | |
2216 | &ctx.ordered_extents); | |
2217 | ret = filemap_fdatawait_range(inode->i_mapping, start, end); | |
0ef8b726 | 2218 | } |
48778179 FM |
2219 | |
2220 | if (ret) | |
2221 | goto out_release_extents; | |
2222 | ||
2ecb7923 | 2223 | atomic_inc(&root->log_batch); |
257c62e1 | 2224 | |
a4abeea4 | 2225 | smp_mb(); |
626e9f41 | 2226 | if (skip_inode_logging(&ctx)) { |
5dc562c5 | 2227 | /* |
01327610 | 2228 | * We've had everything committed since the last time we were |
5dc562c5 JB |
2229 | * modified so clear this flag in case it was set for whatever |
2230 | * reason, it's no longer relevant. | |
2231 | */ | |
2232 | clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC, | |
2233 | &BTRFS_I(inode)->runtime_flags); | |
0596a904 FM |
2234 | /* |
2235 | * An ordered extent might have started before and completed | |
2236 | * already with io errors, in which case the inode was not | |
2237 | * updated and we end up here. So check the inode's mapping | |
333427a5 JL |
2238 | * for any errors that might have happened since we last |
2239 | * checked called fsync. | |
0596a904 | 2240 | */ |
333427a5 | 2241 | ret = filemap_check_wb_err(inode->i_mapping, file->f_wb_err); |
48778179 | 2242 | goto out_release_extents; |
15ee9bc7 | 2243 | } |
15ee9bc7 | 2244 | |
5039eddc JB |
2245 | /* |
2246 | * We use start here because we will need to wait on the IO to complete | |
2247 | * in btrfs_sync_log, which could require joining a transaction (for | |
2248 | * example checking cross references in the nocow path). If we use join | |
2249 | * here we could get into a situation where we're waiting on IO to | |
2250 | * happen that is blocked on a transaction trying to commit. With start | |
2251 | * we inc the extwriter counter, so we wait for all extwriters to exit | |
52042d8e | 2252 | * before we start blocking joiners. This comment is to keep somebody |
5039eddc JB |
2253 | * from thinking they are super smart and changing this to |
2254 | * btrfs_join_transaction *cough*Josef*cough*. | |
2255 | */ | |
a22285a6 YZ |
2256 | trans = btrfs_start_transaction(root, 0); |
2257 | if (IS_ERR(trans)) { | |
2258 | ret = PTR_ERR(trans); | |
48778179 | 2259 | goto out_release_extents; |
39279cc3 | 2260 | } |
d0c2f4fa | 2261 | trans->in_fsync = true; |
e02119d5 | 2262 | |
48778179 FM |
2263 | ret = btrfs_log_dentry_safe(trans, dentry, &ctx); |
2264 | btrfs_release_log_ctx_extents(&ctx); | |
02c24a82 | 2265 | if (ret < 0) { |
a0634be5 FDBM |
2266 | /* Fallthrough and commit/free transaction. */ |
2267 | ret = 1; | |
02c24a82 | 2268 | } |
49eb7e46 CM |
2269 | |
2270 | /* we've logged all the items and now have a consistent | |
2271 | * version of the file in the log. It is possible that | |
2272 | * someone will come in and modify the file, but that's | |
2273 | * fine because the log is consistent on disk, and we | |
2274 | * have references to all of the file's extents | |
2275 | * | |
2276 | * It is possible that someone will come in and log the | |
2277 | * file again, but that will end up using the synchronization | |
2278 | * inside btrfs_sync_log to keep things safe. | |
2279 | */ | |
885f46d8 | 2280 | btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP); |
49eb7e46 | 2281 | |
257c62e1 | 2282 | if (ret != BTRFS_NO_LOG_SYNC) { |
0ef8b726 | 2283 | if (!ret) { |
8b050d35 | 2284 | ret = btrfs_sync_log(trans, root, &ctx); |
0ef8b726 | 2285 | if (!ret) { |
3a45bb20 | 2286 | ret = btrfs_end_transaction(trans); |
0ef8b726 | 2287 | goto out; |
2ab28f32 | 2288 | } |
257c62e1 | 2289 | } |
48778179 FM |
2290 | if (!full_sync) { |
2291 | ret = btrfs_wait_ordered_range(inode, start, len); | |
2292 | if (ret) { | |
2293 | btrfs_end_transaction(trans); | |
2294 | goto out; | |
2295 | } | |
2296 | } | |
3a45bb20 | 2297 | ret = btrfs_commit_transaction(trans); |
257c62e1 | 2298 | } else { |
3a45bb20 | 2299 | ret = btrfs_end_transaction(trans); |
e02119d5 | 2300 | } |
39279cc3 | 2301 | out: |
ebb70442 | 2302 | ASSERT(list_empty(&ctx.list)); |
333427a5 JL |
2303 | err = file_check_and_advance_wb_err(file); |
2304 | if (!ret) | |
2305 | ret = err; | |
014e4ac4 | 2306 | return ret > 0 ? -EIO : ret; |
48778179 FM |
2307 | |
2308 | out_release_extents: | |
2309 | btrfs_release_log_ctx_extents(&ctx); | |
885f46d8 | 2310 | btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP); |
48778179 | 2311 | goto out; |
39279cc3 CM |
2312 | } |
2313 | ||
f0f37e2f | 2314 | static const struct vm_operations_struct btrfs_file_vm_ops = { |
92fee66d | 2315 | .fault = filemap_fault, |
f1820361 | 2316 | .map_pages = filemap_map_pages, |
9ebefb18 CM |
2317 | .page_mkwrite = btrfs_page_mkwrite, |
2318 | }; | |
2319 | ||
2320 | static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma) | |
2321 | { | |
058a457e MX |
2322 | struct address_space *mapping = filp->f_mapping; |
2323 | ||
2324 | if (!mapping->a_ops->readpage) | |
2325 | return -ENOEXEC; | |
2326 | ||
9ebefb18 | 2327 | file_accessed(filp); |
058a457e | 2328 | vma->vm_ops = &btrfs_file_vm_ops; |
058a457e | 2329 | |
9ebefb18 CM |
2330 | return 0; |
2331 | } | |
2332 | ||
35339c24 | 2333 | static int hole_mergeable(struct btrfs_inode *inode, struct extent_buffer *leaf, |
2aaa6655 JB |
2334 | int slot, u64 start, u64 end) |
2335 | { | |
2336 | struct btrfs_file_extent_item *fi; | |
2337 | struct btrfs_key key; | |
2338 | ||
2339 | if (slot < 0 || slot >= btrfs_header_nritems(leaf)) | |
2340 | return 0; | |
2341 | ||
2342 | btrfs_item_key_to_cpu(leaf, &key, slot); | |
35339c24 | 2343 | if (key.objectid != btrfs_ino(inode) || |
2aaa6655 JB |
2344 | key.type != BTRFS_EXTENT_DATA_KEY) |
2345 | return 0; | |
2346 | ||
2347 | fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item); | |
2348 | ||
2349 | if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG) | |
2350 | return 0; | |
2351 | ||
2352 | if (btrfs_file_extent_disk_bytenr(leaf, fi)) | |
2353 | return 0; | |
2354 | ||
2355 | if (key.offset == end) | |
2356 | return 1; | |
2357 | if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start) | |
2358 | return 1; | |
2359 | return 0; | |
2360 | } | |
2361 | ||
a012a74e NB |
2362 | static int fill_holes(struct btrfs_trans_handle *trans, |
2363 | struct btrfs_inode *inode, | |
2364 | struct btrfs_path *path, u64 offset, u64 end) | |
2aaa6655 | 2365 | { |
3ffbd68c | 2366 | struct btrfs_fs_info *fs_info = trans->fs_info; |
a012a74e | 2367 | struct btrfs_root *root = inode->root; |
2aaa6655 JB |
2368 | struct extent_buffer *leaf; |
2369 | struct btrfs_file_extent_item *fi; | |
2370 | struct extent_map *hole_em; | |
a012a74e | 2371 | struct extent_map_tree *em_tree = &inode->extent_tree; |
2aaa6655 JB |
2372 | struct btrfs_key key; |
2373 | int ret; | |
2374 | ||
0b246afa | 2375 | if (btrfs_fs_incompat(fs_info, NO_HOLES)) |
16e7549f JB |
2376 | goto out; |
2377 | ||
a012a74e | 2378 | key.objectid = btrfs_ino(inode); |
2aaa6655 JB |
2379 | key.type = BTRFS_EXTENT_DATA_KEY; |
2380 | key.offset = offset; | |
2381 | ||
2aaa6655 | 2382 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
f94480bd JB |
2383 | if (ret <= 0) { |
2384 | /* | |
2385 | * We should have dropped this offset, so if we find it then | |
2386 | * something has gone horribly wrong. | |
2387 | */ | |
2388 | if (ret == 0) | |
2389 | ret = -EINVAL; | |
2aaa6655 | 2390 | return ret; |
f94480bd | 2391 | } |
2aaa6655 JB |
2392 | |
2393 | leaf = path->nodes[0]; | |
a012a74e | 2394 | if (hole_mergeable(inode, leaf, path->slots[0] - 1, offset, end)) { |
2aaa6655 JB |
2395 | u64 num_bytes; |
2396 | ||
2397 | path->slots[0]--; | |
2398 | fi = btrfs_item_ptr(leaf, path->slots[0], | |
2399 | struct btrfs_file_extent_item); | |
2400 | num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + | |
2401 | end - offset; | |
2402 | btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes); | |
2403 | btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes); | |
2404 | btrfs_set_file_extent_offset(leaf, fi, 0); | |
2405 | btrfs_mark_buffer_dirty(leaf); | |
2406 | goto out; | |
2407 | } | |
2408 | ||
1707e26d | 2409 | if (hole_mergeable(inode, leaf, path->slots[0], offset, end)) { |
2aaa6655 JB |
2410 | u64 num_bytes; |
2411 | ||
2aaa6655 | 2412 | key.offset = offset; |
0b246afa | 2413 | btrfs_set_item_key_safe(fs_info, path, &key); |
2aaa6655 JB |
2414 | fi = btrfs_item_ptr(leaf, path->slots[0], |
2415 | struct btrfs_file_extent_item); | |
2416 | num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end - | |
2417 | offset; | |
2418 | btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes); | |
2419 | btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes); | |
2420 | btrfs_set_file_extent_offset(leaf, fi, 0); | |
2421 | btrfs_mark_buffer_dirty(leaf); | |
2422 | goto out; | |
2423 | } | |
2424 | btrfs_release_path(path); | |
2425 | ||
a012a74e | 2426 | ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode), |
f85b7379 | 2427 | offset, 0, 0, end - offset, 0, end - offset, 0, 0, 0); |
2aaa6655 JB |
2428 | if (ret) |
2429 | return ret; | |
2430 | ||
2431 | out: | |
2432 | btrfs_release_path(path); | |
2433 | ||
2434 | hole_em = alloc_extent_map(); | |
2435 | if (!hole_em) { | |
2436 | btrfs_drop_extent_cache(inode, offset, end - 1, 0); | |
a012a74e | 2437 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags); |
2aaa6655 JB |
2438 | } else { |
2439 | hole_em->start = offset; | |
2440 | hole_em->len = end - offset; | |
cc95bef6 | 2441 | hole_em->ram_bytes = hole_em->len; |
2aaa6655 JB |
2442 | hole_em->orig_start = offset; |
2443 | ||
2444 | hole_em->block_start = EXTENT_MAP_HOLE; | |
2445 | hole_em->block_len = 0; | |
b4939680 | 2446 | hole_em->orig_block_len = 0; |
2aaa6655 JB |
2447 | hole_em->compress_type = BTRFS_COMPRESS_NONE; |
2448 | hole_em->generation = trans->transid; | |
2449 | ||
2450 | do { | |
2451 | btrfs_drop_extent_cache(inode, offset, end - 1, 0); | |
2452 | write_lock(&em_tree->lock); | |
09a2a8f9 | 2453 | ret = add_extent_mapping(em_tree, hole_em, 1); |
2aaa6655 JB |
2454 | write_unlock(&em_tree->lock); |
2455 | } while (ret == -EEXIST); | |
2456 | free_extent_map(hole_em); | |
2457 | if (ret) | |
2458 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, | |
a012a74e | 2459 | &inode->runtime_flags); |
2aaa6655 JB |
2460 | } |
2461 | ||
2462 | return 0; | |
2463 | } | |
2464 | ||
d7781546 QW |
2465 | /* |
2466 | * Find a hole extent on given inode and change start/len to the end of hole | |
2467 | * extent.(hole/vacuum extent whose em->start <= start && | |
2468 | * em->start + em->len > start) | |
2469 | * When a hole extent is found, return 1 and modify start/len. | |
2470 | */ | |
dea46d84 | 2471 | static int find_first_non_hole(struct btrfs_inode *inode, u64 *start, u64 *len) |
d7781546 | 2472 | { |
dea46d84 | 2473 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
d7781546 QW |
2474 | struct extent_map *em; |
2475 | int ret = 0; | |
2476 | ||
dea46d84 | 2477 | em = btrfs_get_extent(inode, NULL, 0, |
609805d8 | 2478 | round_down(*start, fs_info->sectorsize), |
39b07b5d | 2479 | round_up(*len, fs_info->sectorsize)); |
9986277e DC |
2480 | if (IS_ERR(em)) |
2481 | return PTR_ERR(em); | |
d7781546 QW |
2482 | |
2483 | /* Hole or vacuum extent(only exists in no-hole mode) */ | |
2484 | if (em->block_start == EXTENT_MAP_HOLE) { | |
2485 | ret = 1; | |
2486 | *len = em->start + em->len > *start + *len ? | |
2487 | 0 : *start + *len - em->start - em->len; | |
2488 | *start = em->start + em->len; | |
2489 | } | |
2490 | free_extent_map(em); | |
2491 | return ret; | |
2492 | } | |
2493 | ||
f27451f2 FM |
2494 | static int btrfs_punch_hole_lock_range(struct inode *inode, |
2495 | const u64 lockstart, | |
2496 | const u64 lockend, | |
2497 | struct extent_state **cached_state) | |
2498 | { | |
0528476b QW |
2499 | /* |
2500 | * For subpage case, if the range is not at page boundary, we could | |
2501 | * have pages at the leading/tailing part of the range. | |
2502 | * This could lead to dead loop since filemap_range_has_page() | |
2503 | * will always return true. | |
2504 | * So here we need to do extra page alignment for | |
2505 | * filemap_range_has_page(). | |
2506 | */ | |
2507 | const u64 page_lockstart = round_up(lockstart, PAGE_SIZE); | |
2508 | const u64 page_lockend = round_down(lockend + 1, PAGE_SIZE) - 1; | |
2509 | ||
f27451f2 FM |
2510 | while (1) { |
2511 | struct btrfs_ordered_extent *ordered; | |
2512 | int ret; | |
2513 | ||
2514 | truncate_pagecache_range(inode, lockstart, lockend); | |
2515 | ||
2516 | lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend, | |
2517 | cached_state); | |
6d072c8e NB |
2518 | ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode), |
2519 | lockend); | |
f27451f2 FM |
2520 | |
2521 | /* | |
2522 | * We need to make sure we have no ordered extents in this range | |
2523 | * and nobody raced in and read a page in this range, if we did | |
2524 | * we need to try again. | |
2525 | */ | |
2526 | if ((!ordered || | |
bffe633e | 2527 | (ordered->file_offset + ordered->num_bytes <= lockstart || |
f27451f2 | 2528 | ordered->file_offset > lockend)) && |
051c98eb | 2529 | !filemap_range_has_page(inode->i_mapping, |
0528476b | 2530 | page_lockstart, page_lockend)) { |
f27451f2 FM |
2531 | if (ordered) |
2532 | btrfs_put_ordered_extent(ordered); | |
2533 | break; | |
2534 | } | |
2535 | if (ordered) | |
2536 | btrfs_put_ordered_extent(ordered); | |
2537 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, | |
2538 | lockend, cached_state); | |
2539 | ret = btrfs_wait_ordered_range(inode, lockstart, | |
2540 | lockend - lockstart + 1); | |
2541 | if (ret) | |
2542 | return ret; | |
2543 | } | |
2544 | return 0; | |
2545 | } | |
2546 | ||
0cbb5bdf | 2547 | static int btrfs_insert_replace_extent(struct btrfs_trans_handle *trans, |
03fcb1ab | 2548 | struct btrfs_inode *inode, |
690a5dbf | 2549 | struct btrfs_path *path, |
bf385648 | 2550 | struct btrfs_replace_extent_info *extent_info, |
2766ff61 FM |
2551 | const u64 replace_len, |
2552 | const u64 bytes_to_drop) | |
690a5dbf | 2553 | { |
03fcb1ab NB |
2554 | struct btrfs_fs_info *fs_info = trans->fs_info; |
2555 | struct btrfs_root *root = inode->root; | |
690a5dbf FM |
2556 | struct btrfs_file_extent_item *extent; |
2557 | struct extent_buffer *leaf; | |
2558 | struct btrfs_key key; | |
2559 | int slot; | |
2560 | struct btrfs_ref ref = { 0 }; | |
690a5dbf FM |
2561 | int ret; |
2562 | ||
bf385648 | 2563 | if (replace_len == 0) |
690a5dbf FM |
2564 | return 0; |
2565 | ||
bf385648 | 2566 | if (extent_info->disk_offset == 0 && |
2766ff61 | 2567 | btrfs_fs_incompat(fs_info, NO_HOLES)) { |
03fcb1ab | 2568 | btrfs_update_inode_bytes(inode, 0, bytes_to_drop); |
690a5dbf | 2569 | return 0; |
2766ff61 | 2570 | } |
690a5dbf | 2571 | |
03fcb1ab | 2572 | key.objectid = btrfs_ino(inode); |
690a5dbf | 2573 | key.type = BTRFS_EXTENT_DATA_KEY; |
bf385648 | 2574 | key.offset = extent_info->file_offset; |
690a5dbf | 2575 | ret = btrfs_insert_empty_item(trans, root, path, &key, |
fb870f6c | 2576 | sizeof(struct btrfs_file_extent_item)); |
690a5dbf FM |
2577 | if (ret) |
2578 | return ret; | |
2579 | leaf = path->nodes[0]; | |
2580 | slot = path->slots[0]; | |
bf385648 | 2581 | write_extent_buffer(leaf, extent_info->extent_buf, |
690a5dbf | 2582 | btrfs_item_ptr_offset(leaf, slot), |
fb870f6c | 2583 | sizeof(struct btrfs_file_extent_item)); |
690a5dbf | 2584 | extent = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item); |
fb870f6c | 2585 | ASSERT(btrfs_file_extent_type(leaf, extent) != BTRFS_FILE_EXTENT_INLINE); |
bf385648 FM |
2586 | btrfs_set_file_extent_offset(leaf, extent, extent_info->data_offset); |
2587 | btrfs_set_file_extent_num_bytes(leaf, extent, replace_len); | |
2588 | if (extent_info->is_new_extent) | |
8fccebfa | 2589 | btrfs_set_file_extent_generation(leaf, extent, trans->transid); |
690a5dbf FM |
2590 | btrfs_mark_buffer_dirty(leaf); |
2591 | btrfs_release_path(path); | |
2592 | ||
03fcb1ab NB |
2593 | ret = btrfs_inode_set_file_extent_range(inode, extent_info->file_offset, |
2594 | replace_len); | |
9ddc959e JB |
2595 | if (ret) |
2596 | return ret; | |
2597 | ||
690a5dbf | 2598 | /* If it's a hole, nothing more needs to be done. */ |
2766ff61 | 2599 | if (extent_info->disk_offset == 0) { |
03fcb1ab | 2600 | btrfs_update_inode_bytes(inode, 0, bytes_to_drop); |
690a5dbf | 2601 | return 0; |
2766ff61 | 2602 | } |
690a5dbf | 2603 | |
03fcb1ab | 2604 | btrfs_update_inode_bytes(inode, replace_len, bytes_to_drop); |
8fccebfa | 2605 | |
bf385648 FM |
2606 | if (extent_info->is_new_extent && extent_info->insertions == 0) { |
2607 | key.objectid = extent_info->disk_offset; | |
8fccebfa | 2608 | key.type = BTRFS_EXTENT_ITEM_KEY; |
bf385648 | 2609 | key.offset = extent_info->disk_len; |
8fccebfa | 2610 | ret = btrfs_alloc_reserved_file_extent(trans, root, |
03fcb1ab | 2611 | btrfs_ino(inode), |
bf385648 FM |
2612 | extent_info->file_offset, |
2613 | extent_info->qgroup_reserved, | |
8fccebfa FM |
2614 | &key); |
2615 | } else { | |
2616 | u64 ref_offset; | |
2617 | ||
2618 | btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, | |
bf385648 FM |
2619 | extent_info->disk_offset, |
2620 | extent_info->disk_len, 0); | |
2621 | ref_offset = extent_info->file_offset - extent_info->data_offset; | |
8fccebfa | 2622 | btrfs_init_data_ref(&ref, root->root_key.objectid, |
03fcb1ab | 2623 | btrfs_ino(inode), ref_offset); |
8fccebfa FM |
2624 | ret = btrfs_inc_extent_ref(trans, &ref); |
2625 | } | |
2626 | ||
bf385648 | 2627 | extent_info->insertions++; |
690a5dbf FM |
2628 | |
2629 | return ret; | |
2630 | } | |
2631 | ||
9cba40a6 FM |
2632 | /* |
2633 | * The respective range must have been previously locked, as well as the inode. | |
2634 | * The end offset is inclusive (last byte of the range). | |
bf385648 FM |
2635 | * @extent_info is NULL for fallocate's hole punching and non-NULL when replacing |
2636 | * the file range with an extent. | |
2637 | * When not punching a hole, we don't want to end up in a state where we dropped | |
2638 | * extents without inserting a new one, so we must abort the transaction to avoid | |
2639 | * a corruption. | |
9cba40a6 | 2640 | */ |
bfc78479 NB |
2641 | int btrfs_replace_file_extents(struct btrfs_inode *inode, |
2642 | struct btrfs_path *path, const u64 start, | |
2643 | const u64 end, | |
2644 | struct btrfs_replace_extent_info *extent_info, | |
2645 | struct btrfs_trans_handle **trans_out) | |
9cba40a6 | 2646 | { |
5893dfb9 | 2647 | struct btrfs_drop_extents_args drop_args = { 0 }; |
bfc78479 NB |
2648 | struct btrfs_root *root = inode->root; |
2649 | struct btrfs_fs_info *fs_info = root->fs_info; | |
2bd36e7b | 2650 | u64 min_size = btrfs_calc_insert_metadata_size(fs_info, 1); |
bfc78479 | 2651 | u64 ino_size = round_up(inode->vfs_inode.i_size, fs_info->sectorsize); |
9cba40a6 FM |
2652 | struct btrfs_trans_handle *trans = NULL; |
2653 | struct btrfs_block_rsv *rsv; | |
2654 | unsigned int rsv_count; | |
2655 | u64 cur_offset; | |
9cba40a6 FM |
2656 | u64 len = end - start; |
2657 | int ret = 0; | |
2658 | ||
2659 | if (end <= start) | |
2660 | return -EINVAL; | |
2661 | ||
2662 | rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP); | |
2663 | if (!rsv) { | |
2664 | ret = -ENOMEM; | |
2665 | goto out; | |
2666 | } | |
2bd36e7b | 2667 | rsv->size = btrfs_calc_insert_metadata_size(fs_info, 1); |
9cba40a6 FM |
2668 | rsv->failfast = 1; |
2669 | ||
2670 | /* | |
2671 | * 1 - update the inode | |
2672 | * 1 - removing the extents in the range | |
bf385648 FM |
2673 | * 1 - adding the hole extent if no_holes isn't set or if we are |
2674 | * replacing the range with a new extent | |
9cba40a6 | 2675 | */ |
bf385648 | 2676 | if (!btrfs_fs_incompat(fs_info, NO_HOLES) || extent_info) |
690a5dbf FM |
2677 | rsv_count = 3; |
2678 | else | |
2679 | rsv_count = 2; | |
2680 | ||
9cba40a6 FM |
2681 | trans = btrfs_start_transaction(root, rsv_count); |
2682 | if (IS_ERR(trans)) { | |
2683 | ret = PTR_ERR(trans); | |
2684 | trans = NULL; | |
2685 | goto out_free; | |
2686 | } | |
2687 | ||
2688 | ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv, | |
2689 | min_size, false); | |
2690 | BUG_ON(ret); | |
2691 | trans->block_rsv = rsv; | |
2692 | ||
2693 | cur_offset = start; | |
5893dfb9 FM |
2694 | drop_args.path = path; |
2695 | drop_args.end = end + 1; | |
2696 | drop_args.drop_cache = true; | |
9cba40a6 | 2697 | while (cur_offset < end) { |
5893dfb9 | 2698 | drop_args.start = cur_offset; |
bfc78479 | 2699 | ret = btrfs_drop_extents(trans, root, inode, &drop_args); |
2766ff61 FM |
2700 | /* If we are punching a hole decrement the inode's byte count */ |
2701 | if (!extent_info) | |
bfc78479 | 2702 | btrfs_update_inode_bytes(inode, 0, |
2766ff61 | 2703 | drop_args.bytes_found); |
690a5dbf FM |
2704 | if (ret != -ENOSPC) { |
2705 | /* | |
4afb912f JB |
2706 | * The only time we don't want to abort is if we are |
2707 | * attempting to clone a partial inline extent, in which | |
2708 | * case we'll get EOPNOTSUPP. However if we aren't | |
2709 | * clone we need to abort no matter what, because if we | |
2710 | * got EOPNOTSUPP via prealloc then we messed up and | |
2711 | * need to abort. | |
690a5dbf | 2712 | */ |
4afb912f JB |
2713 | if (ret && |
2714 | (ret != -EOPNOTSUPP || | |
2715 | (extent_info && extent_info->is_new_extent))) | |
690a5dbf | 2716 | btrfs_abort_transaction(trans, ret); |
9cba40a6 | 2717 | break; |
690a5dbf | 2718 | } |
9cba40a6 FM |
2719 | |
2720 | trans->block_rsv = &fs_info->trans_block_rsv; | |
2721 | ||
5893dfb9 | 2722 | if (!extent_info && cur_offset < drop_args.drop_end && |
690a5dbf | 2723 | cur_offset < ino_size) { |
bfc78479 NB |
2724 | ret = fill_holes(trans, inode, path, cur_offset, |
2725 | drop_args.drop_end); | |
9cba40a6 FM |
2726 | if (ret) { |
2727 | /* | |
2728 | * If we failed then we didn't insert our hole | |
2729 | * entries for the area we dropped, so now the | |
2730 | * fs is corrupted, so we must abort the | |
2731 | * transaction. | |
2732 | */ | |
2733 | btrfs_abort_transaction(trans, ret); | |
2734 | break; | |
2735 | } | |
5893dfb9 | 2736 | } else if (!extent_info && cur_offset < drop_args.drop_end) { |
9ddc959e JB |
2737 | /* |
2738 | * We are past the i_size here, but since we didn't | |
2739 | * insert holes we need to clear the mapped area so we | |
2740 | * know to not set disk_i_size in this area until a new | |
2741 | * file extent is inserted here. | |
2742 | */ | |
bfc78479 | 2743 | ret = btrfs_inode_clear_file_extent_range(inode, |
5893dfb9 FM |
2744 | cur_offset, |
2745 | drop_args.drop_end - cur_offset); | |
9ddc959e JB |
2746 | if (ret) { |
2747 | /* | |
2748 | * We couldn't clear our area, so we could | |
2749 | * presumably adjust up and corrupt the fs, so | |
2750 | * we need to abort. | |
2751 | */ | |
2752 | btrfs_abort_transaction(trans, ret); | |
2753 | break; | |
2754 | } | |
9cba40a6 FM |
2755 | } |
2756 | ||
5893dfb9 FM |
2757 | if (extent_info && |
2758 | drop_args.drop_end > extent_info->file_offset) { | |
2759 | u64 replace_len = drop_args.drop_end - | |
2760 | extent_info->file_offset; | |
690a5dbf | 2761 | |
bfc78479 NB |
2762 | ret = btrfs_insert_replace_extent(trans, inode, path, |
2763 | extent_info, replace_len, | |
03fcb1ab | 2764 | drop_args.bytes_found); |
690a5dbf FM |
2765 | if (ret) { |
2766 | btrfs_abort_transaction(trans, ret); | |
2767 | break; | |
2768 | } | |
bf385648 FM |
2769 | extent_info->data_len -= replace_len; |
2770 | extent_info->data_offset += replace_len; | |
2771 | extent_info->file_offset += replace_len; | |
690a5dbf FM |
2772 | } |
2773 | ||
bfc78479 | 2774 | ret = btrfs_update_inode(trans, root, inode); |
9cba40a6 FM |
2775 | if (ret) |
2776 | break; | |
2777 | ||
2778 | btrfs_end_transaction(trans); | |
2779 | btrfs_btree_balance_dirty(fs_info); | |
2780 | ||
2781 | trans = btrfs_start_transaction(root, rsv_count); | |
2782 | if (IS_ERR(trans)) { | |
2783 | ret = PTR_ERR(trans); | |
2784 | trans = NULL; | |
2785 | break; | |
2786 | } | |
2787 | ||
2788 | ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, | |
2789 | rsv, min_size, false); | |
2790 | BUG_ON(ret); /* shouldn't happen */ | |
2791 | trans->block_rsv = rsv; | |
2792 | ||
3227788c BC |
2793 | cur_offset = drop_args.drop_end; |
2794 | len = end - cur_offset; | |
2795 | if (!extent_info && len) { | |
bfc78479 | 2796 | ret = find_first_non_hole(inode, &cur_offset, &len); |
690a5dbf FM |
2797 | if (unlikely(ret < 0)) |
2798 | break; | |
2799 | if (ret && !len) { | |
2800 | ret = 0; | |
2801 | break; | |
2802 | } | |
9cba40a6 FM |
2803 | } |
2804 | } | |
2805 | ||
690a5dbf FM |
2806 | /* |
2807 | * If we were cloning, force the next fsync to be a full one since we | |
2808 | * we replaced (or just dropped in the case of cloning holes when | |
e2b84217 FM |
2809 | * NO_HOLES is enabled) file extent items and did not setup new extent |
2810 | * maps for the replacement extents (or holes). | |
690a5dbf | 2811 | */ |
bf385648 | 2812 | if (extent_info && !extent_info->is_new_extent) |
bfc78479 | 2813 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags); |
690a5dbf | 2814 | |
9cba40a6 FM |
2815 | if (ret) |
2816 | goto out_trans; | |
2817 | ||
2818 | trans->block_rsv = &fs_info->trans_block_rsv; | |
2819 | /* | |
2820 | * If we are using the NO_HOLES feature we might have had already an | |
2821 | * hole that overlaps a part of the region [lockstart, lockend] and | |
2822 | * ends at (or beyond) lockend. Since we have no file extent items to | |
2823 | * represent holes, drop_end can be less than lockend and so we must | |
2824 | * make sure we have an extent map representing the existing hole (the | |
2825 | * call to __btrfs_drop_extents() might have dropped the existing extent | |
2826 | * map representing the existing hole), otherwise the fast fsync path | |
2827 | * will not record the existence of the hole region | |
2828 | * [existing_hole_start, lockend]. | |
2829 | */ | |
5893dfb9 FM |
2830 | if (drop_args.drop_end <= end) |
2831 | drop_args.drop_end = end + 1; | |
9cba40a6 FM |
2832 | /* |
2833 | * Don't insert file hole extent item if it's for a range beyond eof | |
2834 | * (because it's useless) or if it represents a 0 bytes range (when | |
2835 | * cur_offset == drop_end). | |
2836 | */ | |
5893dfb9 FM |
2837 | if (!extent_info && cur_offset < ino_size && |
2838 | cur_offset < drop_args.drop_end) { | |
bfc78479 NB |
2839 | ret = fill_holes(trans, inode, path, cur_offset, |
2840 | drop_args.drop_end); | |
9cba40a6 FM |
2841 | if (ret) { |
2842 | /* Same comment as above. */ | |
2843 | btrfs_abort_transaction(trans, ret); | |
2844 | goto out_trans; | |
2845 | } | |
5893dfb9 | 2846 | } else if (!extent_info && cur_offset < drop_args.drop_end) { |
9ddc959e | 2847 | /* See the comment in the loop above for the reasoning here. */ |
bfc78479 NB |
2848 | ret = btrfs_inode_clear_file_extent_range(inode, cur_offset, |
2849 | drop_args.drop_end - cur_offset); | |
9ddc959e JB |
2850 | if (ret) { |
2851 | btrfs_abort_transaction(trans, ret); | |
2852 | goto out_trans; | |
2853 | } | |
2854 | ||
9cba40a6 | 2855 | } |
bf385648 | 2856 | if (extent_info) { |
bfc78479 | 2857 | ret = btrfs_insert_replace_extent(trans, inode, path, |
03fcb1ab NB |
2858 | extent_info, extent_info->data_len, |
2859 | drop_args.bytes_found); | |
690a5dbf FM |
2860 | if (ret) { |
2861 | btrfs_abort_transaction(trans, ret); | |
2862 | goto out_trans; | |
2863 | } | |
2864 | } | |
9cba40a6 FM |
2865 | |
2866 | out_trans: | |
2867 | if (!trans) | |
2868 | goto out_free; | |
2869 | ||
2870 | trans->block_rsv = &fs_info->trans_block_rsv; | |
2871 | if (ret) | |
2872 | btrfs_end_transaction(trans); | |
2873 | else | |
2874 | *trans_out = trans; | |
2875 | out_free: | |
2876 | btrfs_free_block_rsv(fs_info, rsv); | |
2877 | out: | |
2878 | return ret; | |
2879 | } | |
2880 | ||
2aaa6655 JB |
2881 | static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len) |
2882 | { | |
0b246afa | 2883 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
2aaa6655 JB |
2884 | struct btrfs_root *root = BTRFS_I(inode)->root; |
2885 | struct extent_state *cached_state = NULL; | |
2886 | struct btrfs_path *path; | |
9cba40a6 | 2887 | struct btrfs_trans_handle *trans = NULL; |
d7781546 QW |
2888 | u64 lockstart; |
2889 | u64 lockend; | |
2890 | u64 tail_start; | |
2891 | u64 tail_len; | |
2892 | u64 orig_start = offset; | |
2aaa6655 | 2893 | int ret = 0; |
9703fefe | 2894 | bool same_block; |
a1a50f60 | 2895 | u64 ino_size; |
9703fefe | 2896 | bool truncated_block = false; |
e8c1c76e | 2897 | bool updated_inode = false; |
2aaa6655 | 2898 | |
0ef8b726 JB |
2899 | ret = btrfs_wait_ordered_range(inode, offset, len); |
2900 | if (ret) | |
2901 | return ret; | |
2aaa6655 | 2902 | |
8d9b4a16 | 2903 | btrfs_inode_lock(inode, BTRFS_ILOCK_MMAP); |
0b246afa | 2904 | ino_size = round_up(inode->i_size, fs_info->sectorsize); |
dea46d84 | 2905 | ret = find_first_non_hole(BTRFS_I(inode), &offset, &len); |
d7781546 QW |
2906 | if (ret < 0) |
2907 | goto out_only_mutex; | |
2908 | if (ret && !len) { | |
2909 | /* Already in a large hole */ | |
2910 | ret = 0; | |
2911 | goto out_only_mutex; | |
2912 | } | |
2913 | ||
6fee248d | 2914 | lockstart = round_up(offset, btrfs_inode_sectorsize(BTRFS_I(inode))); |
d7781546 | 2915 | lockend = round_down(offset + len, |
6fee248d | 2916 | btrfs_inode_sectorsize(BTRFS_I(inode))) - 1; |
0b246afa JM |
2917 | same_block = (BTRFS_BYTES_TO_BLKS(fs_info, offset)) |
2918 | == (BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1)); | |
7426cc04 | 2919 | /* |
9703fefe | 2920 | * We needn't truncate any block which is beyond the end of the file |
7426cc04 MX |
2921 | * because we are sure there is no data there. |
2922 | */ | |
2aaa6655 | 2923 | /* |
9703fefe CR |
2924 | * Only do this if we are in the same block and we aren't doing the |
2925 | * entire block. | |
2aaa6655 | 2926 | */ |
0b246afa | 2927 | if (same_block && len < fs_info->sectorsize) { |
e8c1c76e | 2928 | if (offset < ino_size) { |
9703fefe | 2929 | truncated_block = true; |
217f42eb NB |
2930 | ret = btrfs_truncate_block(BTRFS_I(inode), offset, len, |
2931 | 0); | |
e8c1c76e FM |
2932 | } else { |
2933 | ret = 0; | |
2934 | } | |
d7781546 | 2935 | goto out_only_mutex; |
2aaa6655 JB |
2936 | } |
2937 | ||
9703fefe | 2938 | /* zero back part of the first block */ |
12870f1c | 2939 | if (offset < ino_size) { |
9703fefe | 2940 | truncated_block = true; |
217f42eb | 2941 | ret = btrfs_truncate_block(BTRFS_I(inode), offset, 0, 0); |
7426cc04 | 2942 | if (ret) { |
8d9b4a16 | 2943 | btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP); |
7426cc04 MX |
2944 | return ret; |
2945 | } | |
2aaa6655 JB |
2946 | } |
2947 | ||
d7781546 QW |
2948 | /* Check the aligned pages after the first unaligned page, |
2949 | * if offset != orig_start, which means the first unaligned page | |
01327610 | 2950 | * including several following pages are already in holes, |
d7781546 QW |
2951 | * the extra check can be skipped */ |
2952 | if (offset == orig_start) { | |
2953 | /* after truncate page, check hole again */ | |
2954 | len = offset + len - lockstart; | |
2955 | offset = lockstart; | |
dea46d84 | 2956 | ret = find_first_non_hole(BTRFS_I(inode), &offset, &len); |
d7781546 QW |
2957 | if (ret < 0) |
2958 | goto out_only_mutex; | |
2959 | if (ret && !len) { | |
2960 | ret = 0; | |
2961 | goto out_only_mutex; | |
2962 | } | |
2963 | lockstart = offset; | |
2964 | } | |
2965 | ||
2966 | /* Check the tail unaligned part is in a hole */ | |
2967 | tail_start = lockend + 1; | |
2968 | tail_len = offset + len - tail_start; | |
2969 | if (tail_len) { | |
dea46d84 | 2970 | ret = find_first_non_hole(BTRFS_I(inode), &tail_start, &tail_len); |
d7781546 QW |
2971 | if (unlikely(ret < 0)) |
2972 | goto out_only_mutex; | |
2973 | if (!ret) { | |
2974 | /* zero the front end of the last page */ | |
2975 | if (tail_start + tail_len < ino_size) { | |
9703fefe | 2976 | truncated_block = true; |
217f42eb | 2977 | ret = btrfs_truncate_block(BTRFS_I(inode), |
9703fefe CR |
2978 | tail_start + tail_len, |
2979 | 0, 1); | |
d7781546 QW |
2980 | if (ret) |
2981 | goto out_only_mutex; | |
51f395ad | 2982 | } |
0061280d | 2983 | } |
2aaa6655 JB |
2984 | } |
2985 | ||
2986 | if (lockend < lockstart) { | |
e8c1c76e FM |
2987 | ret = 0; |
2988 | goto out_only_mutex; | |
2aaa6655 JB |
2989 | } |
2990 | ||
f27451f2 FM |
2991 | ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend, |
2992 | &cached_state); | |
8fca9550 | 2993 | if (ret) |
f27451f2 | 2994 | goto out_only_mutex; |
2aaa6655 JB |
2995 | |
2996 | path = btrfs_alloc_path(); | |
2997 | if (!path) { | |
2998 | ret = -ENOMEM; | |
2999 | goto out; | |
3000 | } | |
3001 | ||
bfc78479 NB |
3002 | ret = btrfs_replace_file_extents(BTRFS_I(inode), path, lockstart, |
3003 | lockend, NULL, &trans); | |
9cba40a6 FM |
3004 | btrfs_free_path(path); |
3005 | if (ret) | |
3006 | goto out; | |
2aaa6655 | 3007 | |
9cba40a6 | 3008 | ASSERT(trans != NULL); |
e1f5790e | 3009 | inode_inc_iversion(inode); |
c2050a45 | 3010 | inode->i_mtime = inode->i_ctime = current_time(inode); |
9a56fcd1 | 3011 | ret = btrfs_update_inode(trans, root, BTRFS_I(inode)); |
e8c1c76e | 3012 | updated_inode = true; |
3a45bb20 | 3013 | btrfs_end_transaction(trans); |
2ff7e61e | 3014 | btrfs_btree_balance_dirty(fs_info); |
2aaa6655 JB |
3015 | out: |
3016 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend, | |
e43bbe5e | 3017 | &cached_state); |
d7781546 | 3018 | out_only_mutex: |
9cba40a6 | 3019 | if (!updated_inode && truncated_block && !ret) { |
e8c1c76e FM |
3020 | /* |
3021 | * If we only end up zeroing part of a page, we still need to | |
3022 | * update the inode item, so that all the time fields are | |
3023 | * updated as well as the necessary btrfs inode in memory fields | |
3024 | * for detecting, at fsync time, if the inode isn't yet in the | |
3025 | * log tree or it's there but not up to date. | |
3026 | */ | |
17900668 FM |
3027 | struct timespec64 now = current_time(inode); |
3028 | ||
3029 | inode_inc_iversion(inode); | |
3030 | inode->i_mtime = now; | |
3031 | inode->i_ctime = now; | |
e8c1c76e FM |
3032 | trans = btrfs_start_transaction(root, 1); |
3033 | if (IS_ERR(trans)) { | |
9cba40a6 | 3034 | ret = PTR_ERR(trans); |
e8c1c76e | 3035 | } else { |
9cba40a6 FM |
3036 | int ret2; |
3037 | ||
9a56fcd1 | 3038 | ret = btrfs_update_inode(trans, root, BTRFS_I(inode)); |
9cba40a6 FM |
3039 | ret2 = btrfs_end_transaction(trans); |
3040 | if (!ret) | |
3041 | ret = ret2; | |
e8c1c76e FM |
3042 | } |
3043 | } | |
8d9b4a16 | 3044 | btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP); |
9cba40a6 | 3045 | return ret; |
2aaa6655 JB |
3046 | } |
3047 | ||
14524a84 QW |
3048 | /* Helper structure to record which range is already reserved */ |
3049 | struct falloc_range { | |
3050 | struct list_head list; | |
3051 | u64 start; | |
3052 | u64 len; | |
3053 | }; | |
3054 | ||
3055 | /* | |
3056 | * Helper function to add falloc range | |
3057 | * | |
3058 | * Caller should have locked the larger range of extent containing | |
3059 | * [start, len) | |
3060 | */ | |
3061 | static int add_falloc_range(struct list_head *head, u64 start, u64 len) | |
3062 | { | |
14524a84 QW |
3063 | struct falloc_range *range = NULL; |
3064 | ||
77d25534 NB |
3065 | if (!list_empty(head)) { |
3066 | /* | |
3067 | * As fallocate iterates by bytenr order, we only need to check | |
3068 | * the last range. | |
3069 | */ | |
3070 | range = list_last_entry(head, struct falloc_range, list); | |
3071 | if (range->start + range->len == start) { | |
3072 | range->len += len; | |
3073 | return 0; | |
3074 | } | |
14524a84 | 3075 | } |
77d25534 | 3076 | |
32fc932e | 3077 | range = kmalloc(sizeof(*range), GFP_KERNEL); |
14524a84 QW |
3078 | if (!range) |
3079 | return -ENOMEM; | |
3080 | range->start = start; | |
3081 | range->len = len; | |
3082 | list_add_tail(&range->list, head); | |
3083 | return 0; | |
3084 | } | |
3085 | ||
f27451f2 FM |
3086 | static int btrfs_fallocate_update_isize(struct inode *inode, |
3087 | const u64 end, | |
3088 | const int mode) | |
3089 | { | |
3090 | struct btrfs_trans_handle *trans; | |
3091 | struct btrfs_root *root = BTRFS_I(inode)->root; | |
3092 | int ret; | |
3093 | int ret2; | |
3094 | ||
3095 | if (mode & FALLOC_FL_KEEP_SIZE || end <= i_size_read(inode)) | |
3096 | return 0; | |
3097 | ||
3098 | trans = btrfs_start_transaction(root, 1); | |
3099 | if (IS_ERR(trans)) | |
3100 | return PTR_ERR(trans); | |
3101 | ||
3102 | inode->i_ctime = current_time(inode); | |
3103 | i_size_write(inode, end); | |
76aea537 | 3104 | btrfs_inode_safe_disk_i_size_write(BTRFS_I(inode), 0); |
9a56fcd1 | 3105 | ret = btrfs_update_inode(trans, root, BTRFS_I(inode)); |
f27451f2 FM |
3106 | ret2 = btrfs_end_transaction(trans); |
3107 | ||
3108 | return ret ? ret : ret2; | |
3109 | } | |
3110 | ||
81fdf638 | 3111 | enum { |
f262fa8d DS |
3112 | RANGE_BOUNDARY_WRITTEN_EXTENT, |
3113 | RANGE_BOUNDARY_PREALLOC_EXTENT, | |
3114 | RANGE_BOUNDARY_HOLE, | |
81fdf638 FM |
3115 | }; |
3116 | ||
948dfeb8 | 3117 | static int btrfs_zero_range_check_range_boundary(struct btrfs_inode *inode, |
f27451f2 FM |
3118 | u64 offset) |
3119 | { | |
948dfeb8 | 3120 | const u64 sectorsize = btrfs_inode_sectorsize(inode); |
f27451f2 | 3121 | struct extent_map *em; |
81fdf638 | 3122 | int ret; |
f27451f2 FM |
3123 | |
3124 | offset = round_down(offset, sectorsize); | |
948dfeb8 | 3125 | em = btrfs_get_extent(inode, NULL, 0, offset, sectorsize); |
f27451f2 FM |
3126 | if (IS_ERR(em)) |
3127 | return PTR_ERR(em); | |
3128 | ||
3129 | if (em->block_start == EXTENT_MAP_HOLE) | |
81fdf638 FM |
3130 | ret = RANGE_BOUNDARY_HOLE; |
3131 | else if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) | |
3132 | ret = RANGE_BOUNDARY_PREALLOC_EXTENT; | |
3133 | else | |
3134 | ret = RANGE_BOUNDARY_WRITTEN_EXTENT; | |
f27451f2 FM |
3135 | |
3136 | free_extent_map(em); | |
3137 | return ret; | |
3138 | } | |
3139 | ||
3140 | static int btrfs_zero_range(struct inode *inode, | |
3141 | loff_t offset, | |
3142 | loff_t len, | |
3143 | const int mode) | |
3144 | { | |
3145 | struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info; | |
3146 | struct extent_map *em; | |
3147 | struct extent_changeset *data_reserved = NULL; | |
3148 | int ret; | |
3149 | u64 alloc_hint = 0; | |
6fee248d | 3150 | const u64 sectorsize = btrfs_inode_sectorsize(BTRFS_I(inode)); |
f27451f2 FM |
3151 | u64 alloc_start = round_down(offset, sectorsize); |
3152 | u64 alloc_end = round_up(offset + len, sectorsize); | |
3153 | u64 bytes_to_reserve = 0; | |
3154 | bool space_reserved = false; | |
3155 | ||
3156 | inode_dio_wait(inode); | |
3157 | ||
39b07b5d OS |
3158 | em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start, |
3159 | alloc_end - alloc_start); | |
f27451f2 FM |
3160 | if (IS_ERR(em)) { |
3161 | ret = PTR_ERR(em); | |
3162 | goto out; | |
3163 | } | |
3164 | ||
3165 | /* | |
3166 | * Avoid hole punching and extent allocation for some cases. More cases | |
3167 | * could be considered, but these are unlikely common and we keep things | |
3168 | * as simple as possible for now. Also, intentionally, if the target | |
3169 | * range contains one or more prealloc extents together with regular | |
3170 | * extents and holes, we drop all the existing extents and allocate a | |
3171 | * new prealloc extent, so that we get a larger contiguous disk extent. | |
3172 | */ | |
3173 | if (em->start <= alloc_start && | |
3174 | test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) { | |
3175 | const u64 em_end = em->start + em->len; | |
3176 | ||
3177 | if (em_end >= offset + len) { | |
3178 | /* | |
3179 | * The whole range is already a prealloc extent, | |
3180 | * do nothing except updating the inode's i_size if | |
3181 | * needed. | |
3182 | */ | |
3183 | free_extent_map(em); | |
3184 | ret = btrfs_fallocate_update_isize(inode, offset + len, | |
3185 | mode); | |
3186 | goto out; | |
3187 | } | |
3188 | /* | |
3189 | * Part of the range is already a prealloc extent, so operate | |
3190 | * only on the remaining part of the range. | |
3191 | */ | |
3192 | alloc_start = em_end; | |
3193 | ASSERT(IS_ALIGNED(alloc_start, sectorsize)); | |
3194 | len = offset + len - alloc_start; | |
3195 | offset = alloc_start; | |
3196 | alloc_hint = em->block_start + em->len; | |
3197 | } | |
3198 | free_extent_map(em); | |
3199 | ||
3200 | if (BTRFS_BYTES_TO_BLKS(fs_info, offset) == | |
3201 | BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1)) { | |
39b07b5d OS |
3202 | em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, alloc_start, |
3203 | sectorsize); | |
f27451f2 FM |
3204 | if (IS_ERR(em)) { |
3205 | ret = PTR_ERR(em); | |
3206 | goto out; | |
3207 | } | |
3208 | ||
3209 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) { | |
3210 | free_extent_map(em); | |
3211 | ret = btrfs_fallocate_update_isize(inode, offset + len, | |
3212 | mode); | |
3213 | goto out; | |
3214 | } | |
3215 | if (len < sectorsize && em->block_start != EXTENT_MAP_HOLE) { | |
3216 | free_extent_map(em); | |
217f42eb NB |
3217 | ret = btrfs_truncate_block(BTRFS_I(inode), offset, len, |
3218 | 0); | |
f27451f2 FM |
3219 | if (!ret) |
3220 | ret = btrfs_fallocate_update_isize(inode, | |
3221 | offset + len, | |
3222 | mode); | |
3223 | return ret; | |
3224 | } | |
3225 | free_extent_map(em); | |
3226 | alloc_start = round_down(offset, sectorsize); | |
3227 | alloc_end = alloc_start + sectorsize; | |
3228 | goto reserve_space; | |
3229 | } | |
3230 | ||
3231 | alloc_start = round_up(offset, sectorsize); | |
3232 | alloc_end = round_down(offset + len, sectorsize); | |
3233 | ||
3234 | /* | |
3235 | * For unaligned ranges, check the pages at the boundaries, they might | |
3236 | * map to an extent, in which case we need to partially zero them, or | |
3237 | * they might map to a hole, in which case we need our allocation range | |
3238 | * to cover them. | |
3239 | */ | |
3240 | if (!IS_ALIGNED(offset, sectorsize)) { | |
948dfeb8 NB |
3241 | ret = btrfs_zero_range_check_range_boundary(BTRFS_I(inode), |
3242 | offset); | |
f27451f2 FM |
3243 | if (ret < 0) |
3244 | goto out; | |
81fdf638 | 3245 | if (ret == RANGE_BOUNDARY_HOLE) { |
f27451f2 FM |
3246 | alloc_start = round_down(offset, sectorsize); |
3247 | ret = 0; | |
81fdf638 | 3248 | } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) { |
217f42eb | 3249 | ret = btrfs_truncate_block(BTRFS_I(inode), offset, 0, 0); |
f27451f2 FM |
3250 | if (ret) |
3251 | goto out; | |
81fdf638 FM |
3252 | } else { |
3253 | ret = 0; | |
f27451f2 FM |
3254 | } |
3255 | } | |
3256 | ||
3257 | if (!IS_ALIGNED(offset + len, sectorsize)) { | |
948dfeb8 | 3258 | ret = btrfs_zero_range_check_range_boundary(BTRFS_I(inode), |
f27451f2 FM |
3259 | offset + len); |
3260 | if (ret < 0) | |
3261 | goto out; | |
81fdf638 | 3262 | if (ret == RANGE_BOUNDARY_HOLE) { |
f27451f2 FM |
3263 | alloc_end = round_up(offset + len, sectorsize); |
3264 | ret = 0; | |
81fdf638 | 3265 | } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) { |
217f42eb NB |
3266 | ret = btrfs_truncate_block(BTRFS_I(inode), offset + len, |
3267 | 0, 1); | |
f27451f2 FM |
3268 | if (ret) |
3269 | goto out; | |
81fdf638 FM |
3270 | } else { |
3271 | ret = 0; | |
f27451f2 FM |
3272 | } |
3273 | } | |
3274 | ||
3275 | reserve_space: | |
3276 | if (alloc_start < alloc_end) { | |
3277 | struct extent_state *cached_state = NULL; | |
3278 | const u64 lockstart = alloc_start; | |
3279 | const u64 lockend = alloc_end - 1; | |
3280 | ||
3281 | bytes_to_reserve = alloc_end - alloc_start; | |
3282 | ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), | |
3283 | bytes_to_reserve); | |
3284 | if (ret < 0) | |
3285 | goto out; | |
3286 | space_reserved = true; | |
f27451f2 FM |
3287 | ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend, |
3288 | &cached_state); | |
3289 | if (ret) | |
3290 | goto out; | |
7661a3e0 | 3291 | ret = btrfs_qgroup_reserve_data(BTRFS_I(inode), &data_reserved, |
a7f8b1c2 | 3292 | alloc_start, bytes_to_reserve); |
4f6a49de NB |
3293 | if (ret) { |
3294 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, | |
3295 | lockend, &cached_state); | |
a7f8b1c2 | 3296 | goto out; |
4f6a49de | 3297 | } |
f27451f2 FM |
3298 | ret = btrfs_prealloc_file_range(inode, mode, alloc_start, |
3299 | alloc_end - alloc_start, | |
3300 | i_blocksize(inode), | |
3301 | offset + len, &alloc_hint); | |
3302 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, | |
3303 | lockend, &cached_state); | |
3304 | /* btrfs_prealloc_file_range releases reserved space on error */ | |
9f13ce74 | 3305 | if (ret) { |
f27451f2 | 3306 | space_reserved = false; |
9f13ce74 FM |
3307 | goto out; |
3308 | } | |
f27451f2 | 3309 | } |
9f13ce74 | 3310 | ret = btrfs_fallocate_update_isize(inode, offset + len, mode); |
f27451f2 FM |
3311 | out: |
3312 | if (ret && space_reserved) | |
25ce28ca | 3313 | btrfs_free_reserved_data_space(BTRFS_I(inode), data_reserved, |
f27451f2 FM |
3314 | alloc_start, bytes_to_reserve); |
3315 | extent_changeset_free(data_reserved); | |
3316 | ||
3317 | return ret; | |
3318 | } | |
3319 | ||
2fe17c10 CH |
3320 | static long btrfs_fallocate(struct file *file, int mode, |
3321 | loff_t offset, loff_t len) | |
3322 | { | |
496ad9aa | 3323 | struct inode *inode = file_inode(file); |
2fe17c10 | 3324 | struct extent_state *cached_state = NULL; |
364ecf36 | 3325 | struct extent_changeset *data_reserved = NULL; |
14524a84 QW |
3326 | struct falloc_range *range; |
3327 | struct falloc_range *tmp; | |
3328 | struct list_head reserve_list; | |
2fe17c10 CH |
3329 | u64 cur_offset; |
3330 | u64 last_byte; | |
3331 | u64 alloc_start; | |
3332 | u64 alloc_end; | |
3333 | u64 alloc_hint = 0; | |
3334 | u64 locked_end; | |
14524a84 | 3335 | u64 actual_end = 0; |
2fe17c10 | 3336 | struct extent_map *em; |
6fee248d | 3337 | int blocksize = btrfs_inode_sectorsize(BTRFS_I(inode)); |
2fe17c10 CH |
3338 | int ret; |
3339 | ||
f1569c4c NA |
3340 | /* Do not allow fallocate in ZONED mode */ |
3341 | if (btrfs_is_zoned(btrfs_sb(inode->i_sb))) | |
3342 | return -EOPNOTSUPP; | |
3343 | ||
797f4277 MX |
3344 | alloc_start = round_down(offset, blocksize); |
3345 | alloc_end = round_up(offset + len, blocksize); | |
18513091 | 3346 | cur_offset = alloc_start; |
2fe17c10 | 3347 | |
2aaa6655 | 3348 | /* Make sure we aren't being give some crap mode */ |
f27451f2 FM |
3349 | if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | |
3350 | FALLOC_FL_ZERO_RANGE)) | |
2fe17c10 CH |
3351 | return -EOPNOTSUPP; |
3352 | ||
2aaa6655 JB |
3353 | if (mode & FALLOC_FL_PUNCH_HOLE) |
3354 | return btrfs_punch_hole(inode, offset, len); | |
3355 | ||
d98456fc | 3356 | /* |
14524a84 QW |
3357 | * Only trigger disk allocation, don't trigger qgroup reserve |
3358 | * | |
3359 | * For qgroup space, it will be checked later. | |
d98456fc | 3360 | */ |
f27451f2 FM |
3361 | if (!(mode & FALLOC_FL_ZERO_RANGE)) { |
3362 | ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), | |
3363 | alloc_end - alloc_start); | |
3364 | if (ret < 0) | |
3365 | return ret; | |
3366 | } | |
d98456fc | 3367 | |
8d9b4a16 | 3368 | btrfs_inode_lock(inode, BTRFS_ILOCK_MMAP); |
2a162ce9 DI |
3369 | |
3370 | if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) { | |
3371 | ret = inode_newsize_ok(inode, offset + len); | |
3372 | if (ret) | |
3373 | goto out; | |
3374 | } | |
2fe17c10 | 3375 | |
14524a84 QW |
3376 | /* |
3377 | * TODO: Move these two operations after we have checked | |
3378 | * accurate reserved space, or fallocate can still fail but | |
3379 | * with page truncated or size expanded. | |
3380 | * | |
3381 | * But that's a minor problem and won't do much harm BTW. | |
3382 | */ | |
2fe17c10 | 3383 | if (alloc_start > inode->i_size) { |
b06359a3 | 3384 | ret = btrfs_cont_expand(BTRFS_I(inode), i_size_read(inode), |
a41ad394 | 3385 | alloc_start); |
2fe17c10 CH |
3386 | if (ret) |
3387 | goto out; | |
0f6925fa | 3388 | } else if (offset + len > inode->i_size) { |
a71754fc JB |
3389 | /* |
3390 | * If we are fallocating from the end of the file onward we | |
9703fefe CR |
3391 | * need to zero out the end of the block if i_size lands in the |
3392 | * middle of a block. | |
a71754fc | 3393 | */ |
217f42eb | 3394 | ret = btrfs_truncate_block(BTRFS_I(inode), inode->i_size, 0, 0); |
a71754fc JB |
3395 | if (ret) |
3396 | goto out; | |
2fe17c10 CH |
3397 | } |
3398 | ||
a71754fc JB |
3399 | /* |
3400 | * wait for ordered IO before we have any locks. We'll loop again | |
3401 | * below with the locks held. | |
3402 | */ | |
0ef8b726 JB |
3403 | ret = btrfs_wait_ordered_range(inode, alloc_start, |
3404 | alloc_end - alloc_start); | |
3405 | if (ret) | |
3406 | goto out; | |
a71754fc | 3407 | |
f27451f2 FM |
3408 | if (mode & FALLOC_FL_ZERO_RANGE) { |
3409 | ret = btrfs_zero_range(inode, offset, len, mode); | |
8d9b4a16 | 3410 | btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP); |
f27451f2 FM |
3411 | return ret; |
3412 | } | |
3413 | ||
2fe17c10 CH |
3414 | locked_end = alloc_end - 1; |
3415 | while (1) { | |
3416 | struct btrfs_ordered_extent *ordered; | |
3417 | ||
3418 | /* the extent lock is ordered inside the running | |
3419 | * transaction | |
3420 | */ | |
3421 | lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start, | |
ff13db41 | 3422 | locked_end, &cached_state); |
6d072c8e NB |
3423 | ordered = btrfs_lookup_first_ordered_extent(BTRFS_I(inode), |
3424 | locked_end); | |
96b09dde | 3425 | |
2fe17c10 | 3426 | if (ordered && |
bffe633e | 3427 | ordered->file_offset + ordered->num_bytes > alloc_start && |
2fe17c10 CH |
3428 | ordered->file_offset < alloc_end) { |
3429 | btrfs_put_ordered_extent(ordered); | |
3430 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, | |
3431 | alloc_start, locked_end, | |
e43bbe5e | 3432 | &cached_state); |
2fe17c10 CH |
3433 | /* |
3434 | * we can't wait on the range with the transaction | |
3435 | * running or with the extent lock held | |
3436 | */ | |
0ef8b726 JB |
3437 | ret = btrfs_wait_ordered_range(inode, alloc_start, |
3438 | alloc_end - alloc_start); | |
3439 | if (ret) | |
3440 | goto out; | |
2fe17c10 CH |
3441 | } else { |
3442 | if (ordered) | |
3443 | btrfs_put_ordered_extent(ordered); | |
3444 | break; | |
3445 | } | |
3446 | } | |
3447 | ||
14524a84 QW |
3448 | /* First, check if we exceed the qgroup limit */ |
3449 | INIT_LIST_HEAD(&reserve_list); | |
6b7d6e93 | 3450 | while (cur_offset < alloc_end) { |
fc4f21b1 | 3451 | em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset, |
39b07b5d | 3452 | alloc_end - cur_offset); |
9986277e DC |
3453 | if (IS_ERR(em)) { |
3454 | ret = PTR_ERR(em); | |
79787eaa JM |
3455 | break; |
3456 | } | |
2fe17c10 | 3457 | last_byte = min(extent_map_end(em), alloc_end); |
f1e490a7 | 3458 | actual_end = min_t(u64, extent_map_end(em), offset + len); |
797f4277 | 3459 | last_byte = ALIGN(last_byte, blocksize); |
2fe17c10 CH |
3460 | if (em->block_start == EXTENT_MAP_HOLE || |
3461 | (cur_offset >= inode->i_size && | |
3462 | !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) { | |
14524a84 QW |
3463 | ret = add_falloc_range(&reserve_list, cur_offset, |
3464 | last_byte - cur_offset); | |
3465 | if (ret < 0) { | |
3466 | free_extent_map(em); | |
3467 | break; | |
3d850dd4 | 3468 | } |
7661a3e0 NB |
3469 | ret = btrfs_qgroup_reserve_data(BTRFS_I(inode), |
3470 | &data_reserved, cur_offset, | |
3471 | last_byte - cur_offset); | |
be2d253c | 3472 | if (ret < 0) { |
39ad3173 | 3473 | cur_offset = last_byte; |
be2d253c | 3474 | free_extent_map(em); |
14524a84 | 3475 | break; |
be2d253c | 3476 | } |
18513091 WX |
3477 | } else { |
3478 | /* | |
3479 | * Do not need to reserve unwritten extent for this | |
3480 | * range, free reserved data space first, otherwise | |
3481 | * it'll result in false ENOSPC error. | |
3482 | */ | |
25ce28ca NB |
3483 | btrfs_free_reserved_data_space(BTRFS_I(inode), |
3484 | data_reserved, cur_offset, | |
3485 | last_byte - cur_offset); | |
2fe17c10 CH |
3486 | } |
3487 | free_extent_map(em); | |
2fe17c10 | 3488 | cur_offset = last_byte; |
14524a84 QW |
3489 | } |
3490 | ||
3491 | /* | |
3492 | * If ret is still 0, means we're OK to fallocate. | |
3493 | * Or just cleanup the list and exit. | |
3494 | */ | |
3495 | list_for_each_entry_safe(range, tmp, &reserve_list, list) { | |
3496 | if (!ret) | |
3497 | ret = btrfs_prealloc_file_range(inode, mode, | |
3498 | range->start, | |
93407472 | 3499 | range->len, i_blocksize(inode), |
14524a84 | 3500 | offset + len, &alloc_hint); |
18513091 | 3501 | else |
25ce28ca | 3502 | btrfs_free_reserved_data_space(BTRFS_I(inode), |
bc42bda2 QW |
3503 | data_reserved, range->start, |
3504 | range->len); | |
14524a84 QW |
3505 | list_del(&range->list); |
3506 | kfree(range); | |
3507 | } | |
3508 | if (ret < 0) | |
3509 | goto out_unlock; | |
3510 | ||
f27451f2 FM |
3511 | /* |
3512 | * We didn't need to allocate any more space, but we still extended the | |
3513 | * size of the file so we need to update i_size and the inode item. | |
3514 | */ | |
3515 | ret = btrfs_fallocate_update_isize(inode, actual_end, mode); | |
14524a84 | 3516 | out_unlock: |
2fe17c10 | 3517 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end, |
e43bbe5e | 3518 | &cached_state); |
2fe17c10 | 3519 | out: |
8d9b4a16 | 3520 | btrfs_inode_unlock(inode, BTRFS_ILOCK_MMAP); |
d98456fc | 3521 | /* Let go of our reservation. */ |
f27451f2 | 3522 | if (ret != 0 && !(mode & FALLOC_FL_ZERO_RANGE)) |
25ce28ca | 3523 | btrfs_free_reserved_data_space(BTRFS_I(inode), data_reserved, |
39ad3173 | 3524 | cur_offset, alloc_end - cur_offset); |
364ecf36 | 3525 | extent_changeset_free(data_reserved); |
2fe17c10 CH |
3526 | return ret; |
3527 | } | |
3528 | ||
cca5de97 | 3529 | static loff_t find_desired_extent(struct btrfs_inode *inode, loff_t offset, |
bc80230e | 3530 | int whence) |
b2675157 | 3531 | { |
cca5de97 | 3532 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
7f4ca37c | 3533 | struct extent_map *em = NULL; |
b2675157 | 3534 | struct extent_state *cached_state = NULL; |
cca5de97 | 3535 | loff_t i_size = inode->vfs_inode.i_size; |
4d1a40c6 LB |
3536 | u64 lockstart; |
3537 | u64 lockend; | |
3538 | u64 start; | |
3539 | u64 len; | |
b2675157 JB |
3540 | int ret = 0; |
3541 | ||
bc80230e | 3542 | if (i_size == 0 || offset >= i_size) |
4d1a40c6 LB |
3543 | return -ENXIO; |
3544 | ||
3545 | /* | |
bc80230e | 3546 | * offset can be negative, in this case we start finding DATA/HOLE from |
4d1a40c6 LB |
3547 | * the very start of the file. |
3548 | */ | |
bc80230e | 3549 | start = max_t(loff_t, 0, offset); |
4d1a40c6 | 3550 | |
0b246afa | 3551 | lockstart = round_down(start, fs_info->sectorsize); |
d79b7c26 | 3552 | lockend = round_up(i_size, fs_info->sectorsize); |
b2675157 | 3553 | if (lockend <= lockstart) |
0b246afa | 3554 | lockend = lockstart + fs_info->sectorsize; |
1214b53f | 3555 | lockend--; |
b2675157 JB |
3556 | len = lockend - lockstart + 1; |
3557 | ||
cca5de97 | 3558 | lock_extent_bits(&inode->io_tree, lockstart, lockend, &cached_state); |
b2675157 | 3559 | |
d79b7c26 | 3560 | while (start < i_size) { |
cca5de97 | 3561 | em = btrfs_get_extent_fiemap(inode, start, len); |
b2675157 | 3562 | if (IS_ERR(em)) { |
6af021d8 | 3563 | ret = PTR_ERR(em); |
7f4ca37c | 3564 | em = NULL; |
b2675157 JB |
3565 | break; |
3566 | } | |
3567 | ||
7f4ca37c JB |
3568 | if (whence == SEEK_HOLE && |
3569 | (em->block_start == EXTENT_MAP_HOLE || | |
3570 | test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) | |
3571 | break; | |
3572 | else if (whence == SEEK_DATA && | |
3573 | (em->block_start != EXTENT_MAP_HOLE && | |
3574 | !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) | |
3575 | break; | |
b2675157 JB |
3576 | |
3577 | start = em->start + em->len; | |
b2675157 | 3578 | free_extent_map(em); |
7f4ca37c | 3579 | em = NULL; |
b2675157 JB |
3580 | cond_resched(); |
3581 | } | |
7f4ca37c | 3582 | free_extent_map(em); |
cca5de97 | 3583 | unlock_extent_cached(&inode->io_tree, lockstart, lockend, |
bc80230e NB |
3584 | &cached_state); |
3585 | if (ret) { | |
3586 | offset = ret; | |
3587 | } else { | |
d79b7c26 | 3588 | if (whence == SEEK_DATA && start >= i_size) |
bc80230e | 3589 | offset = -ENXIO; |
7f4ca37c | 3590 | else |
bc80230e | 3591 | offset = min_t(loff_t, start, i_size); |
7f4ca37c | 3592 | } |
bc80230e NB |
3593 | |
3594 | return offset; | |
b2675157 JB |
3595 | } |
3596 | ||
965c8e59 | 3597 | static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence) |
b2675157 JB |
3598 | { |
3599 | struct inode *inode = file->f_mapping->host; | |
b2675157 | 3600 | |
965c8e59 | 3601 | switch (whence) { |
2034f3b4 NB |
3602 | default: |
3603 | return generic_file_llseek(file, offset, whence); | |
b2675157 JB |
3604 | case SEEK_DATA: |
3605 | case SEEK_HOLE: | |
a14b78ad | 3606 | btrfs_inode_lock(inode, BTRFS_ILOCK_SHARED); |
cca5de97 | 3607 | offset = find_desired_extent(BTRFS_I(inode), offset, whence); |
a14b78ad | 3608 | btrfs_inode_unlock(inode, BTRFS_ILOCK_SHARED); |
bc80230e | 3609 | break; |
b2675157 JB |
3610 | } |
3611 | ||
bc80230e NB |
3612 | if (offset < 0) |
3613 | return offset; | |
3614 | ||
2034f3b4 | 3615 | return vfs_setpos(file, offset, inode->i_sb->s_maxbytes); |
b2675157 JB |
3616 | } |
3617 | ||
edf064e7 GR |
3618 | static int btrfs_file_open(struct inode *inode, struct file *filp) |
3619 | { | |
14605409 BB |
3620 | int ret; |
3621 | ||
8730f12b | 3622 | filp->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC; |
14605409 BB |
3623 | |
3624 | ret = fsverity_file_open(inode, filp); | |
3625 | if (ret) | |
3626 | return ret; | |
edf064e7 GR |
3627 | return generic_file_open(inode, filp); |
3628 | } | |
3629 | ||
4e4cabec GR |
3630 | static int check_direct_read(struct btrfs_fs_info *fs_info, |
3631 | const struct iov_iter *iter, loff_t offset) | |
3632 | { | |
3633 | int ret; | |
3634 | int i, seg; | |
3635 | ||
3636 | ret = check_direct_IO(fs_info, iter, offset); | |
3637 | if (ret < 0) | |
3638 | return ret; | |
3639 | ||
3640 | if (!iter_is_iovec(iter)) | |
3641 | return 0; | |
3642 | ||
3643 | for (seg = 0; seg < iter->nr_segs; seg++) | |
3644 | for (i = seg + 1; i < iter->nr_segs; i++) | |
3645 | if (iter->iov[seg].iov_base == iter->iov[i].iov_base) | |
3646 | return -EINVAL; | |
3647 | return 0; | |
3648 | } | |
3649 | ||
3650 | static ssize_t btrfs_direct_read(struct kiocb *iocb, struct iov_iter *to) | |
3651 | { | |
3652 | struct inode *inode = file_inode(iocb->ki_filp); | |
3653 | ssize_t ret; | |
3654 | ||
14605409 BB |
3655 | if (fsverity_active(inode)) |
3656 | return 0; | |
3657 | ||
4e4cabec GR |
3658 | if (check_direct_read(btrfs_sb(inode->i_sb), to, iocb->ki_pos)) |
3659 | return 0; | |
3660 | ||
a14b78ad | 3661 | btrfs_inode_lock(inode, BTRFS_ILOCK_SHARED); |
2f632965 | 3662 | ret = iomap_dio_rw(iocb, to, &btrfs_dio_iomap_ops, &btrfs_dio_ops, 0); |
a14b78ad | 3663 | btrfs_inode_unlock(inode, BTRFS_ILOCK_SHARED); |
4e4cabec GR |
3664 | return ret; |
3665 | } | |
3666 | ||
f85781fb GR |
3667 | static ssize_t btrfs_file_read_iter(struct kiocb *iocb, struct iov_iter *to) |
3668 | { | |
3669 | ssize_t ret = 0; | |
3670 | ||
3671 | if (iocb->ki_flags & IOCB_DIRECT) { | |
4e4cabec | 3672 | ret = btrfs_direct_read(iocb, to); |
0425e7ba JT |
3673 | if (ret < 0 || !iov_iter_count(to) || |
3674 | iocb->ki_pos >= i_size_read(file_inode(iocb->ki_filp))) | |
f85781fb GR |
3675 | return ret; |
3676 | } | |
3677 | ||
87fa0f3e | 3678 | return filemap_read(iocb, to, ret); |
f85781fb GR |
3679 | } |
3680 | ||
828c0950 | 3681 | const struct file_operations btrfs_file_operations = { |
b2675157 | 3682 | .llseek = btrfs_file_llseek, |
f85781fb | 3683 | .read_iter = btrfs_file_read_iter, |
e9906a98 | 3684 | .splice_read = generic_file_splice_read, |
b30ac0fc | 3685 | .write_iter = btrfs_file_write_iter, |
d7776591 | 3686 | .splice_write = iter_file_splice_write, |
9ebefb18 | 3687 | .mmap = btrfs_file_mmap, |
edf064e7 | 3688 | .open = btrfs_file_open, |
e1b81e67 | 3689 | .release = btrfs_release_file, |
39279cc3 | 3690 | .fsync = btrfs_sync_file, |
2fe17c10 | 3691 | .fallocate = btrfs_fallocate, |
34287aa3 | 3692 | .unlocked_ioctl = btrfs_ioctl, |
39279cc3 | 3693 | #ifdef CONFIG_COMPAT |
4c63c245 | 3694 | .compat_ioctl = btrfs_compat_ioctl, |
39279cc3 | 3695 | #endif |
2e5dfc99 | 3696 | .remap_file_range = btrfs_remap_file_range, |
39279cc3 | 3697 | }; |
9247f317 | 3698 | |
e67c718b | 3699 | void __cold btrfs_auto_defrag_exit(void) |
9247f317 | 3700 | { |
5598e900 | 3701 | kmem_cache_destroy(btrfs_inode_defrag_cachep); |
9247f317 MX |
3702 | } |
3703 | ||
f5c29bd9 | 3704 | int __init btrfs_auto_defrag_init(void) |
9247f317 MX |
3705 | { |
3706 | btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag", | |
3707 | sizeof(struct inode_defrag), 0, | |
fba4b697 | 3708 | SLAB_MEM_SPREAD, |
9247f317 MX |
3709 | NULL); |
3710 | if (!btrfs_inode_defrag_cachep) | |
3711 | return -ENOMEM; | |
3712 | ||
3713 | return 0; | |
3714 | } | |
728404da FM |
3715 | |
3716 | int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end) | |
3717 | { | |
3718 | int ret; | |
3719 | ||
3720 | /* | |
3721 | * So with compression we will find and lock a dirty page and clear the | |
3722 | * first one as dirty, setup an async extent, and immediately return | |
3723 | * with the entire range locked but with nobody actually marked with | |
3724 | * writeback. So we can't just filemap_write_and_wait_range() and | |
3725 | * expect it to work since it will just kick off a thread to do the | |
3726 | * actual work. So we need to call filemap_fdatawrite_range _again_ | |
3727 | * since it will wait on the page lock, which won't be unlocked until | |
3728 | * after the pages have been marked as writeback and so we're good to go | |
3729 | * from there. We have to do this otherwise we'll miss the ordered | |
3730 | * extents and that results in badness. Please Josef, do not think you | |
3731 | * know better and pull this out at some point in the future, it is | |
3732 | * right and you are wrong. | |
3733 | */ | |
3734 | ret = filemap_fdatawrite_range(inode->i_mapping, start, end); | |
3735 | if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT, | |
3736 | &BTRFS_I(inode)->runtime_flags)) | |
3737 | ret = filemap_fdatawrite_range(inode->i_mapping, start, end); | |
3738 | ||
3739 | return ret; | |
3740 | } |