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