]>
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 | ||
8f18cf13 | 6 | #include <linux/kernel.h> |
065631f6 | 7 | #include <linux/bio.h> |
39279cc3 | 8 | #include <linux/buffer_head.h> |
f2eb0a24 | 9 | #include <linux/file.h> |
39279cc3 CM |
10 | #include <linux/fs.h> |
11 | #include <linux/pagemap.h> | |
12 | #include <linux/highmem.h> | |
13 | #include <linux/time.h> | |
14 | #include <linux/init.h> | |
15 | #include <linux/string.h> | |
39279cc3 | 16 | #include <linux/backing-dev.h> |
39279cc3 | 17 | #include <linux/writeback.h> |
39279cc3 | 18 | #include <linux/compat.h> |
5103e947 | 19 | #include <linux/xattr.h> |
33268eaf | 20 | #include <linux/posix_acl.h> |
d899e052 | 21 | #include <linux/falloc.h> |
5a0e3ad6 | 22 | #include <linux/slab.h> |
7a36ddec | 23 | #include <linux/ratelimit.h> |
55e301fd | 24 | #include <linux/btrfs.h> |
53b381b3 | 25 | #include <linux/blkdev.h> |
f23b5a59 | 26 | #include <linux/posix_acl_xattr.h> |
e2e40f2c | 27 | #include <linux/uio.h> |
69fe2d75 | 28 | #include <linux/magic.h> |
ae5e165d | 29 | #include <linux/iversion.h> |
ed46ff3d | 30 | #include <linux/swap.h> |
92d32170 | 31 | #include <asm/unaligned.h> |
39279cc3 CM |
32 | #include "ctree.h" |
33 | #include "disk-io.h" | |
34 | #include "transaction.h" | |
35 | #include "btrfs_inode.h" | |
39279cc3 | 36 | #include "print-tree.h" |
e6dcd2dc | 37 | #include "ordered-data.h" |
95819c05 | 38 | #include "xattr.h" |
e02119d5 | 39 | #include "tree-log.h" |
4a54c8c1 | 40 | #include "volumes.h" |
c8b97818 | 41 | #include "compression.h" |
b4ce94de | 42 | #include "locking.h" |
dc89e982 | 43 | #include "free-space-cache.h" |
581bb050 | 44 | #include "inode-map.h" |
38c227d8 | 45 | #include "backref.h" |
63541927 | 46 | #include "props.h" |
31193213 | 47 | #include "qgroup.h" |
dda3245e | 48 | #include "dedupe.h" |
39279cc3 CM |
49 | |
50 | struct btrfs_iget_args { | |
90d3e592 | 51 | struct btrfs_key *location; |
39279cc3 CM |
52 | struct btrfs_root *root; |
53 | }; | |
54 | ||
f28a4928 | 55 | struct btrfs_dio_data { |
f28a4928 FM |
56 | u64 reserve; |
57 | u64 unsubmitted_oe_range_start; | |
58 | u64 unsubmitted_oe_range_end; | |
4aaedfb0 | 59 | int overwrite; |
f28a4928 FM |
60 | }; |
61 | ||
6e1d5dcc AD |
62 | static const struct inode_operations btrfs_dir_inode_operations; |
63 | static const struct inode_operations btrfs_symlink_inode_operations; | |
64 | static const struct inode_operations btrfs_dir_ro_inode_operations; | |
65 | static const struct inode_operations btrfs_special_inode_operations; | |
66 | static const struct inode_operations btrfs_file_inode_operations; | |
7f09410b | 67 | static const struct address_space_operations btrfs_aops; |
828c0950 | 68 | static const struct file_operations btrfs_dir_file_operations; |
20e5506b | 69 | static const struct extent_io_ops btrfs_extent_io_ops; |
39279cc3 CM |
70 | |
71 | static struct kmem_cache *btrfs_inode_cachep; | |
72 | struct kmem_cache *btrfs_trans_handle_cachep; | |
39279cc3 | 73 | struct kmem_cache *btrfs_path_cachep; |
dc89e982 | 74 | struct kmem_cache *btrfs_free_space_cachep; |
39279cc3 CM |
75 | |
76 | #define S_SHIFT 12 | |
4d4ab6d6 | 77 | static const unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = { |
39279cc3 CM |
78 | [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE, |
79 | [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR, | |
80 | [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV, | |
81 | [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV, | |
82 | [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO, | |
83 | [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK, | |
84 | [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK, | |
85 | }; | |
86 | ||
3972f260 | 87 | static int btrfs_setsize(struct inode *inode, struct iattr *attr); |
213e8c55 | 88 | static int btrfs_truncate(struct inode *inode, bool skip_writeback); |
5fd02043 | 89 | static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent); |
771ed689 CM |
90 | static noinline int cow_file_range(struct inode *inode, |
91 | struct page *locked_page, | |
dda3245e WX |
92 | u64 start, u64 end, u64 delalloc_end, |
93 | int *page_started, unsigned long *nr_written, | |
94 | int unlock, struct btrfs_dedupe_hash *hash); | |
6f9994db LB |
95 | static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len, |
96 | u64 orig_start, u64 block_start, | |
97 | u64 block_len, u64 orig_block_len, | |
98 | u64 ram_bytes, int compress_type, | |
99 | int type); | |
7b128766 | 100 | |
52427260 QW |
101 | static void __endio_write_update_ordered(struct inode *inode, |
102 | const u64 offset, const u64 bytes, | |
103 | const bool uptodate); | |
104 | ||
105 | /* | |
106 | * Cleanup all submitted ordered extents in specified range to handle errors | |
52042d8e | 107 | * from the btrfs_run_delalloc_range() callback. |
52427260 QW |
108 | * |
109 | * NOTE: caller must ensure that when an error happens, it can not call | |
110 | * extent_clear_unlock_delalloc() to clear both the bits EXTENT_DO_ACCOUNTING | |
111 | * and EXTENT_DELALLOC simultaneously, because that causes the reserved metadata | |
112 | * to be released, which we want to happen only when finishing the ordered | |
d1051d6e | 113 | * extent (btrfs_finish_ordered_io()). |
52427260 QW |
114 | */ |
115 | static inline void btrfs_cleanup_ordered_extents(struct inode *inode, | |
d1051d6e NB |
116 | struct page *locked_page, |
117 | u64 offset, u64 bytes) | |
52427260 | 118 | { |
63d71450 NA |
119 | unsigned long index = offset >> PAGE_SHIFT; |
120 | unsigned long end_index = (offset + bytes - 1) >> PAGE_SHIFT; | |
d1051d6e NB |
121 | u64 page_start = page_offset(locked_page); |
122 | u64 page_end = page_start + PAGE_SIZE - 1; | |
123 | ||
63d71450 NA |
124 | struct page *page; |
125 | ||
126 | while (index <= end_index) { | |
127 | page = find_get_page(inode->i_mapping, index); | |
128 | index++; | |
129 | if (!page) | |
130 | continue; | |
131 | ClearPagePrivate2(page); | |
132 | put_page(page); | |
133 | } | |
d1051d6e NB |
134 | |
135 | /* | |
136 | * In case this page belongs to the delalloc range being instantiated | |
137 | * then skip it, since the first page of a range is going to be | |
138 | * properly cleaned up by the caller of run_delalloc_range | |
139 | */ | |
140 | if (page_start >= offset && page_end <= (offset + bytes - 1)) { | |
141 | offset += PAGE_SIZE; | |
142 | bytes -= PAGE_SIZE; | |
143 | } | |
144 | ||
145 | return __endio_write_update_ordered(inode, offset, bytes, false); | |
52427260 QW |
146 | } |
147 | ||
48a3b636 | 148 | static int btrfs_dirty_inode(struct inode *inode); |
7b128766 | 149 | |
6a3891c5 JB |
150 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
151 | void btrfs_test_inode_set_ops(struct inode *inode) | |
152 | { | |
153 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; | |
154 | } | |
155 | #endif | |
156 | ||
f34f57a3 | 157 | static int btrfs_init_inode_security(struct btrfs_trans_handle *trans, |
2a7dba39 EP |
158 | struct inode *inode, struct inode *dir, |
159 | const struct qstr *qstr) | |
0279b4cd JO |
160 | { |
161 | int err; | |
162 | ||
f34f57a3 | 163 | err = btrfs_init_acl(trans, inode, dir); |
0279b4cd | 164 | if (!err) |
2a7dba39 | 165 | err = btrfs_xattr_security_init(trans, inode, dir, qstr); |
0279b4cd JO |
166 | return err; |
167 | } | |
168 | ||
c8b97818 CM |
169 | /* |
170 | * this does all the hard work for inserting an inline extent into | |
171 | * the btree. The caller should have done a btrfs_drop_extents so that | |
172 | * no overlapping inline items exist in the btree | |
173 | */ | |
40f76580 | 174 | static int insert_inline_extent(struct btrfs_trans_handle *trans, |
1acae57b | 175 | struct btrfs_path *path, int extent_inserted, |
c8b97818 CM |
176 | struct btrfs_root *root, struct inode *inode, |
177 | u64 start, size_t size, size_t compressed_size, | |
fe3f566c | 178 | int compress_type, |
c8b97818 CM |
179 | struct page **compressed_pages) |
180 | { | |
c8b97818 CM |
181 | struct extent_buffer *leaf; |
182 | struct page *page = NULL; | |
183 | char *kaddr; | |
184 | unsigned long ptr; | |
185 | struct btrfs_file_extent_item *ei; | |
c8b97818 CM |
186 | int ret; |
187 | size_t cur_size = size; | |
c8b97818 | 188 | unsigned long offset; |
c8b97818 | 189 | |
fe3f566c | 190 | if (compressed_size && compressed_pages) |
c8b97818 | 191 | cur_size = compressed_size; |
c8b97818 | 192 | |
1acae57b | 193 | inode_add_bytes(inode, size); |
c8b97818 | 194 | |
1acae57b FDBM |
195 | if (!extent_inserted) { |
196 | struct btrfs_key key; | |
197 | size_t datasize; | |
c8b97818 | 198 | |
4a0cc7ca | 199 | key.objectid = btrfs_ino(BTRFS_I(inode)); |
1acae57b | 200 | key.offset = start; |
962a298f | 201 | key.type = BTRFS_EXTENT_DATA_KEY; |
c8b97818 | 202 | |
1acae57b FDBM |
203 | datasize = btrfs_file_extent_calc_inline_size(cur_size); |
204 | path->leave_spinning = 1; | |
205 | ret = btrfs_insert_empty_item(trans, root, path, &key, | |
206 | datasize); | |
79b4f4c6 | 207 | if (ret) |
1acae57b | 208 | goto fail; |
c8b97818 CM |
209 | } |
210 | leaf = path->nodes[0]; | |
211 | ei = btrfs_item_ptr(leaf, path->slots[0], | |
212 | struct btrfs_file_extent_item); | |
213 | btrfs_set_file_extent_generation(leaf, ei, trans->transid); | |
214 | btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE); | |
215 | btrfs_set_file_extent_encryption(leaf, ei, 0); | |
216 | btrfs_set_file_extent_other_encoding(leaf, ei, 0); | |
217 | btrfs_set_file_extent_ram_bytes(leaf, ei, size); | |
218 | ptr = btrfs_file_extent_inline_start(ei); | |
219 | ||
261507a0 | 220 | if (compress_type != BTRFS_COMPRESS_NONE) { |
c8b97818 CM |
221 | struct page *cpage; |
222 | int i = 0; | |
d397712b | 223 | while (compressed_size > 0) { |
c8b97818 | 224 | cpage = compressed_pages[i]; |
5b050f04 | 225 | cur_size = min_t(unsigned long, compressed_size, |
09cbfeaf | 226 | PAGE_SIZE); |
c8b97818 | 227 | |
7ac687d9 | 228 | kaddr = kmap_atomic(cpage); |
c8b97818 | 229 | write_extent_buffer(leaf, kaddr, ptr, cur_size); |
7ac687d9 | 230 | kunmap_atomic(kaddr); |
c8b97818 CM |
231 | |
232 | i++; | |
233 | ptr += cur_size; | |
234 | compressed_size -= cur_size; | |
235 | } | |
236 | btrfs_set_file_extent_compression(leaf, ei, | |
261507a0 | 237 | compress_type); |
c8b97818 CM |
238 | } else { |
239 | page = find_get_page(inode->i_mapping, | |
09cbfeaf | 240 | start >> PAGE_SHIFT); |
c8b97818 | 241 | btrfs_set_file_extent_compression(leaf, ei, 0); |
7ac687d9 | 242 | kaddr = kmap_atomic(page); |
7073017a | 243 | offset = offset_in_page(start); |
c8b97818 | 244 | write_extent_buffer(leaf, kaddr + offset, ptr, size); |
7ac687d9 | 245 | kunmap_atomic(kaddr); |
09cbfeaf | 246 | put_page(page); |
c8b97818 CM |
247 | } |
248 | btrfs_mark_buffer_dirty(leaf); | |
1acae57b | 249 | btrfs_release_path(path); |
c8b97818 | 250 | |
c2167754 YZ |
251 | /* |
252 | * we're an inline extent, so nobody can | |
253 | * extend the file past i_size without locking | |
254 | * a page we already have locked. | |
255 | * | |
256 | * We must do any isize and inode updates | |
257 | * before we unlock the pages. Otherwise we | |
258 | * could end up racing with unlink. | |
259 | */ | |
c8b97818 | 260 | BTRFS_I(inode)->disk_i_size = inode->i_size; |
79787eaa | 261 | ret = btrfs_update_inode(trans, root, inode); |
c2167754 | 262 | |
c8b97818 | 263 | fail: |
79b4f4c6 | 264 | return ret; |
c8b97818 CM |
265 | } |
266 | ||
267 | ||
268 | /* | |
269 | * conditionally insert an inline extent into the file. This | |
270 | * does the checks required to make sure the data is small enough | |
271 | * to fit as an inline extent. | |
272 | */ | |
d02c0e20 | 273 | static noinline int cow_file_range_inline(struct inode *inode, u64 start, |
00361589 JB |
274 | u64 end, size_t compressed_size, |
275 | int compress_type, | |
276 | struct page **compressed_pages) | |
c8b97818 | 277 | { |
d02c0e20 | 278 | struct btrfs_root *root = BTRFS_I(inode)->root; |
0b246afa | 279 | struct btrfs_fs_info *fs_info = root->fs_info; |
00361589 | 280 | struct btrfs_trans_handle *trans; |
c8b97818 CM |
281 | u64 isize = i_size_read(inode); |
282 | u64 actual_end = min(end + 1, isize); | |
283 | u64 inline_len = actual_end - start; | |
0b246afa | 284 | u64 aligned_end = ALIGN(end, fs_info->sectorsize); |
c8b97818 CM |
285 | u64 data_len = inline_len; |
286 | int ret; | |
1acae57b FDBM |
287 | struct btrfs_path *path; |
288 | int extent_inserted = 0; | |
289 | u32 extent_item_size; | |
c8b97818 CM |
290 | |
291 | if (compressed_size) | |
292 | data_len = compressed_size; | |
293 | ||
294 | if (start > 0 || | |
0b246afa JM |
295 | actual_end > fs_info->sectorsize || |
296 | data_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info) || | |
c8b97818 | 297 | (!compressed_size && |
0b246afa | 298 | (actual_end & (fs_info->sectorsize - 1)) == 0) || |
c8b97818 | 299 | end + 1 < isize || |
0b246afa | 300 | data_len > fs_info->max_inline) { |
c8b97818 CM |
301 | return 1; |
302 | } | |
303 | ||
1acae57b FDBM |
304 | path = btrfs_alloc_path(); |
305 | if (!path) | |
306 | return -ENOMEM; | |
307 | ||
00361589 | 308 | trans = btrfs_join_transaction(root); |
1acae57b FDBM |
309 | if (IS_ERR(trans)) { |
310 | btrfs_free_path(path); | |
00361589 | 311 | return PTR_ERR(trans); |
1acae57b | 312 | } |
69fe2d75 | 313 | trans->block_rsv = &BTRFS_I(inode)->block_rsv; |
00361589 | 314 | |
1acae57b FDBM |
315 | if (compressed_size && compressed_pages) |
316 | extent_item_size = btrfs_file_extent_calc_inline_size( | |
317 | compressed_size); | |
318 | else | |
319 | extent_item_size = btrfs_file_extent_calc_inline_size( | |
320 | inline_len); | |
321 | ||
322 | ret = __btrfs_drop_extents(trans, root, inode, path, | |
323 | start, aligned_end, NULL, | |
324 | 1, 1, extent_item_size, &extent_inserted); | |
00361589 | 325 | if (ret) { |
66642832 | 326 | btrfs_abort_transaction(trans, ret); |
00361589 JB |
327 | goto out; |
328 | } | |
c8b97818 CM |
329 | |
330 | if (isize > actual_end) | |
331 | inline_len = min_t(u64, isize, actual_end); | |
1acae57b FDBM |
332 | ret = insert_inline_extent(trans, path, extent_inserted, |
333 | root, inode, start, | |
c8b97818 | 334 | inline_len, compressed_size, |
fe3f566c | 335 | compress_type, compressed_pages); |
2adcac1a | 336 | if (ret && ret != -ENOSPC) { |
66642832 | 337 | btrfs_abort_transaction(trans, ret); |
00361589 | 338 | goto out; |
2adcac1a | 339 | } else if (ret == -ENOSPC) { |
00361589 JB |
340 | ret = 1; |
341 | goto out; | |
79787eaa | 342 | } |
2adcac1a | 343 | |
bdc20e67 | 344 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags); |
dcdbc059 | 345 | btrfs_drop_extent_cache(BTRFS_I(inode), start, aligned_end - 1, 0); |
00361589 | 346 | out: |
94ed938a QW |
347 | /* |
348 | * Don't forget to free the reserved space, as for inlined extent | |
349 | * it won't count as data extent, free them directly here. | |
350 | * And at reserve time, it's always aligned to page size, so | |
351 | * just free one page here. | |
352 | */ | |
bc42bda2 | 353 | btrfs_qgroup_free_data(inode, NULL, 0, PAGE_SIZE); |
1acae57b | 354 | btrfs_free_path(path); |
3a45bb20 | 355 | btrfs_end_transaction(trans); |
00361589 | 356 | return ret; |
c8b97818 CM |
357 | } |
358 | ||
771ed689 CM |
359 | struct async_extent { |
360 | u64 start; | |
361 | u64 ram_size; | |
362 | u64 compressed_size; | |
363 | struct page **pages; | |
364 | unsigned long nr_pages; | |
261507a0 | 365 | int compress_type; |
771ed689 CM |
366 | struct list_head list; |
367 | }; | |
368 | ||
369 | struct async_cow { | |
370 | struct inode *inode; | |
600b6cf4 | 371 | struct btrfs_fs_info *fs_info; |
771ed689 CM |
372 | struct page *locked_page; |
373 | u64 start; | |
374 | u64 end; | |
f82b7359 | 375 | unsigned int write_flags; |
771ed689 CM |
376 | struct list_head extents; |
377 | struct btrfs_work work; | |
378 | }; | |
379 | ||
380 | static noinline int add_async_extent(struct async_cow *cow, | |
381 | u64 start, u64 ram_size, | |
382 | u64 compressed_size, | |
383 | struct page **pages, | |
261507a0 LZ |
384 | unsigned long nr_pages, |
385 | int compress_type) | |
771ed689 CM |
386 | { |
387 | struct async_extent *async_extent; | |
388 | ||
389 | async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS); | |
79787eaa | 390 | BUG_ON(!async_extent); /* -ENOMEM */ |
771ed689 CM |
391 | async_extent->start = start; |
392 | async_extent->ram_size = ram_size; | |
393 | async_extent->compressed_size = compressed_size; | |
394 | async_extent->pages = pages; | |
395 | async_extent->nr_pages = nr_pages; | |
261507a0 | 396 | async_extent->compress_type = compress_type; |
771ed689 CM |
397 | list_add_tail(&async_extent->list, &cow->extents); |
398 | return 0; | |
399 | } | |
400 | ||
c2fcdcdf | 401 | static inline int inode_need_compress(struct inode *inode, u64 start, u64 end) |
f79707b0 | 402 | { |
0b246afa | 403 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
f79707b0 WS |
404 | |
405 | /* force compress */ | |
0b246afa | 406 | if (btrfs_test_opt(fs_info, FORCE_COMPRESS)) |
f79707b0 | 407 | return 1; |
eec63c65 DS |
408 | /* defrag ioctl */ |
409 | if (BTRFS_I(inode)->defrag_compress) | |
410 | return 1; | |
f79707b0 WS |
411 | /* bad compression ratios */ |
412 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) | |
413 | return 0; | |
0b246afa | 414 | if (btrfs_test_opt(fs_info, COMPRESS) || |
f79707b0 | 415 | BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS || |
b52aa8c9 | 416 | BTRFS_I(inode)->prop_compress) |
c2fcdcdf | 417 | return btrfs_compress_heuristic(inode, start, end); |
f79707b0 WS |
418 | return 0; |
419 | } | |
420 | ||
6158e1ce | 421 | static inline void inode_should_defrag(struct btrfs_inode *inode, |
26d30f85 AJ |
422 | u64 start, u64 end, u64 num_bytes, u64 small_write) |
423 | { | |
424 | /* If this is a small write inside eof, kick off a defrag */ | |
425 | if (num_bytes < small_write && | |
6158e1ce | 426 | (start > 0 || end + 1 < inode->disk_i_size)) |
26d30f85 AJ |
427 | btrfs_add_inode_defrag(NULL, inode); |
428 | } | |
429 | ||
d352ac68 | 430 | /* |
771ed689 CM |
431 | * we create compressed extents in two phases. The first |
432 | * phase compresses a range of pages that have already been | |
433 | * locked (both pages and state bits are locked). | |
c8b97818 | 434 | * |
771ed689 CM |
435 | * This is done inside an ordered work queue, and the compression |
436 | * is spread across many cpus. The actual IO submission is step | |
437 | * two, and the ordered work queue takes care of making sure that | |
438 | * happens in the same order things were put onto the queue by | |
439 | * writepages and friends. | |
c8b97818 | 440 | * |
771ed689 CM |
441 | * If this code finds it can't get good compression, it puts an |
442 | * entry onto the work queue to write the uncompressed bytes. This | |
443 | * makes sure that both compressed inodes and uncompressed inodes | |
b2570314 AB |
444 | * are written in the same order that the flusher thread sent them |
445 | * down. | |
d352ac68 | 446 | */ |
c44f649e | 447 | static noinline void compress_file_range(struct inode *inode, |
771ed689 CM |
448 | struct page *locked_page, |
449 | u64 start, u64 end, | |
450 | struct async_cow *async_cow, | |
451 | int *num_added) | |
b888db2b | 452 | { |
0b246afa | 453 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
0b246afa | 454 | u64 blocksize = fs_info->sectorsize; |
c8b97818 | 455 | u64 actual_end; |
42dc7bab | 456 | u64 isize = i_size_read(inode); |
e6dcd2dc | 457 | int ret = 0; |
c8b97818 CM |
458 | struct page **pages = NULL; |
459 | unsigned long nr_pages; | |
c8b97818 CM |
460 | unsigned long total_compressed = 0; |
461 | unsigned long total_in = 0; | |
c8b97818 CM |
462 | int i; |
463 | int will_compress; | |
0b246afa | 464 | int compress_type = fs_info->compress_type; |
4adaa611 | 465 | int redirty = 0; |
b888db2b | 466 | |
6158e1ce NB |
467 | inode_should_defrag(BTRFS_I(inode), start, end, end - start + 1, |
468 | SZ_16K); | |
4cb5300b | 469 | |
42dc7bab | 470 | actual_end = min_t(u64, isize, end + 1); |
c8b97818 CM |
471 | again: |
472 | will_compress = 0; | |
09cbfeaf | 473 | nr_pages = (end >> PAGE_SHIFT) - (start >> PAGE_SHIFT) + 1; |
069eac78 DS |
474 | BUILD_BUG_ON((BTRFS_MAX_COMPRESSED % PAGE_SIZE) != 0); |
475 | nr_pages = min_t(unsigned long, nr_pages, | |
476 | BTRFS_MAX_COMPRESSED / PAGE_SIZE); | |
be20aa9d | 477 | |
f03d9301 CM |
478 | /* |
479 | * we don't want to send crud past the end of i_size through | |
480 | * compression, that's just a waste of CPU time. So, if the | |
481 | * end of the file is before the start of our current | |
482 | * requested range of bytes, we bail out to the uncompressed | |
483 | * cleanup code that can deal with all of this. | |
484 | * | |
485 | * It isn't really the fastest way to fix things, but this is a | |
486 | * very uncommon corner. | |
487 | */ | |
488 | if (actual_end <= start) | |
489 | goto cleanup_and_bail_uncompressed; | |
490 | ||
c8b97818 CM |
491 | total_compressed = actual_end - start; |
492 | ||
4bcbb332 SW |
493 | /* |
494 | * skip compression for a small file range(<=blocksize) that | |
01327610 | 495 | * isn't an inline extent, since it doesn't save disk space at all. |
4bcbb332 SW |
496 | */ |
497 | if (total_compressed <= blocksize && | |
498 | (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size)) | |
499 | goto cleanup_and_bail_uncompressed; | |
500 | ||
069eac78 DS |
501 | total_compressed = min_t(unsigned long, total_compressed, |
502 | BTRFS_MAX_UNCOMPRESSED); | |
c8b97818 CM |
503 | total_in = 0; |
504 | ret = 0; | |
db94535d | 505 | |
771ed689 CM |
506 | /* |
507 | * we do compression for mount -o compress and when the | |
508 | * inode has not been flagged as nocompress. This flag can | |
509 | * change at any time if we discover bad compression ratios. | |
c8b97818 | 510 | */ |
c2fcdcdf | 511 | if (inode_need_compress(inode, start, end)) { |
c8b97818 | 512 | WARN_ON(pages); |
31e818fe | 513 | pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS); |
560f7d75 LZ |
514 | if (!pages) { |
515 | /* just bail out to the uncompressed code */ | |
3527a018 | 516 | nr_pages = 0; |
560f7d75 LZ |
517 | goto cont; |
518 | } | |
c8b97818 | 519 | |
eec63c65 DS |
520 | if (BTRFS_I(inode)->defrag_compress) |
521 | compress_type = BTRFS_I(inode)->defrag_compress; | |
522 | else if (BTRFS_I(inode)->prop_compress) | |
b52aa8c9 | 523 | compress_type = BTRFS_I(inode)->prop_compress; |
261507a0 | 524 | |
4adaa611 CM |
525 | /* |
526 | * we need to call clear_page_dirty_for_io on each | |
527 | * page in the range. Otherwise applications with the file | |
528 | * mmap'd can wander in and change the page contents while | |
529 | * we are compressing them. | |
530 | * | |
531 | * If the compression fails for any reason, we set the pages | |
532 | * dirty again later on. | |
e9679de3 TT |
533 | * |
534 | * Note that the remaining part is redirtied, the start pointer | |
535 | * has moved, the end is the original one. | |
4adaa611 | 536 | */ |
e9679de3 TT |
537 | if (!redirty) { |
538 | extent_range_clear_dirty_for_io(inode, start, end); | |
539 | redirty = 1; | |
540 | } | |
f51d2b59 DS |
541 | |
542 | /* Compression level is applied here and only here */ | |
543 | ret = btrfs_compress_pages( | |
544 | compress_type | (fs_info->compress_level << 4), | |
261507a0 | 545 | inode->i_mapping, start, |
38c31464 | 546 | pages, |
4d3a800e | 547 | &nr_pages, |
261507a0 | 548 | &total_in, |
e5d74902 | 549 | &total_compressed); |
c8b97818 CM |
550 | |
551 | if (!ret) { | |
7073017a | 552 | unsigned long offset = offset_in_page(total_compressed); |
4d3a800e | 553 | struct page *page = pages[nr_pages - 1]; |
c8b97818 CM |
554 | char *kaddr; |
555 | ||
556 | /* zero the tail end of the last page, we might be | |
557 | * sending it down to disk | |
558 | */ | |
559 | if (offset) { | |
7ac687d9 | 560 | kaddr = kmap_atomic(page); |
c8b97818 | 561 | memset(kaddr + offset, 0, |
09cbfeaf | 562 | PAGE_SIZE - offset); |
7ac687d9 | 563 | kunmap_atomic(kaddr); |
c8b97818 CM |
564 | } |
565 | will_compress = 1; | |
566 | } | |
567 | } | |
560f7d75 | 568 | cont: |
c8b97818 CM |
569 | if (start == 0) { |
570 | /* lets try to make an inline extent */ | |
6018ba0a | 571 | if (ret || total_in < actual_end) { |
c8b97818 | 572 | /* we didn't compress the entire range, try |
771ed689 | 573 | * to make an uncompressed inline extent. |
c8b97818 | 574 | */ |
d02c0e20 NB |
575 | ret = cow_file_range_inline(inode, start, end, 0, |
576 | BTRFS_COMPRESS_NONE, NULL); | |
c8b97818 | 577 | } else { |
771ed689 | 578 | /* try making a compressed inline extent */ |
d02c0e20 | 579 | ret = cow_file_range_inline(inode, start, end, |
fe3f566c LZ |
580 | total_compressed, |
581 | compress_type, pages); | |
c8b97818 | 582 | } |
79787eaa | 583 | if (ret <= 0) { |
151a41bc | 584 | unsigned long clear_flags = EXTENT_DELALLOC | |
8b62f87b JB |
585 | EXTENT_DELALLOC_NEW | EXTENT_DEFRAG | |
586 | EXTENT_DO_ACCOUNTING; | |
e6eb4314 FM |
587 | unsigned long page_error_op; |
588 | ||
e6eb4314 | 589 | page_error_op = ret < 0 ? PAGE_SET_ERROR : 0; |
151a41bc | 590 | |
771ed689 | 591 | /* |
79787eaa JM |
592 | * inline extent creation worked or returned error, |
593 | * we don't need to create any more async work items. | |
594 | * Unlock and free up our temp pages. | |
8b62f87b JB |
595 | * |
596 | * We use DO_ACCOUNTING here because we need the | |
597 | * delalloc_release_metadata to be done _after_ we drop | |
598 | * our outstanding extent for clearing delalloc for this | |
599 | * range. | |
771ed689 | 600 | */ |
ba8b04c1 QW |
601 | extent_clear_unlock_delalloc(inode, start, end, end, |
602 | NULL, clear_flags, | |
603 | PAGE_UNLOCK | | |
c2790a2e JB |
604 | PAGE_CLEAR_DIRTY | |
605 | PAGE_SET_WRITEBACK | | |
e6eb4314 | 606 | page_error_op | |
c2790a2e | 607 | PAGE_END_WRITEBACK); |
c8b97818 CM |
608 | goto free_pages_out; |
609 | } | |
610 | } | |
611 | ||
612 | if (will_compress) { | |
613 | /* | |
614 | * we aren't doing an inline extent round the compressed size | |
615 | * up to a block size boundary so the allocator does sane | |
616 | * things | |
617 | */ | |
fda2832f | 618 | total_compressed = ALIGN(total_compressed, blocksize); |
c8b97818 CM |
619 | |
620 | /* | |
621 | * one last check to make sure the compression is really a | |
170607eb TT |
622 | * win, compare the page count read with the blocks on disk, |
623 | * compression must free at least one sector size | |
c8b97818 | 624 | */ |
09cbfeaf | 625 | total_in = ALIGN(total_in, PAGE_SIZE); |
170607eb | 626 | if (total_compressed + blocksize <= total_in) { |
c8bb0c8b AS |
627 | *num_added += 1; |
628 | ||
629 | /* | |
630 | * The async work queues will take care of doing actual | |
631 | * allocation on disk for these compressed pages, and | |
632 | * will submit them to the elevator. | |
633 | */ | |
1170862d | 634 | add_async_extent(async_cow, start, total_in, |
4d3a800e | 635 | total_compressed, pages, nr_pages, |
c8bb0c8b AS |
636 | compress_type); |
637 | ||
1170862d TT |
638 | if (start + total_in < end) { |
639 | start += total_in; | |
c8bb0c8b AS |
640 | pages = NULL; |
641 | cond_resched(); | |
642 | goto again; | |
643 | } | |
644 | return; | |
c8b97818 CM |
645 | } |
646 | } | |
c8bb0c8b | 647 | if (pages) { |
c8b97818 CM |
648 | /* |
649 | * the compression code ran but failed to make things smaller, | |
650 | * free any pages it allocated and our page pointer array | |
651 | */ | |
4d3a800e | 652 | for (i = 0; i < nr_pages; i++) { |
70b99e69 | 653 | WARN_ON(pages[i]->mapping); |
09cbfeaf | 654 | put_page(pages[i]); |
c8b97818 CM |
655 | } |
656 | kfree(pages); | |
657 | pages = NULL; | |
658 | total_compressed = 0; | |
4d3a800e | 659 | nr_pages = 0; |
c8b97818 CM |
660 | |
661 | /* flag the file so we don't compress in the future */ | |
0b246afa | 662 | if (!btrfs_test_opt(fs_info, FORCE_COMPRESS) && |
b52aa8c9 | 663 | !(BTRFS_I(inode)->prop_compress)) { |
a555f810 | 664 | BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS; |
1e701a32 | 665 | } |
c8b97818 | 666 | } |
f03d9301 | 667 | cleanup_and_bail_uncompressed: |
c8bb0c8b AS |
668 | /* |
669 | * No compression, but we still need to write the pages in the file | |
670 | * we've been given so far. redirty the locked page if it corresponds | |
671 | * to our extent and set things up for the async work queue to run | |
672 | * cow_file_range to do the normal delalloc dance. | |
673 | */ | |
674 | if (page_offset(locked_page) >= start && | |
675 | page_offset(locked_page) <= end) | |
676 | __set_page_dirty_nobuffers(locked_page); | |
677 | /* unlocked later on in the async handlers */ | |
678 | ||
679 | if (redirty) | |
680 | extent_range_redirty_for_io(inode, start, end); | |
681 | add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0, | |
682 | BTRFS_COMPRESS_NONE); | |
683 | *num_added += 1; | |
3b951516 | 684 | |
c44f649e | 685 | return; |
771ed689 CM |
686 | |
687 | free_pages_out: | |
4d3a800e | 688 | for (i = 0; i < nr_pages; i++) { |
771ed689 | 689 | WARN_ON(pages[i]->mapping); |
09cbfeaf | 690 | put_page(pages[i]); |
771ed689 | 691 | } |
d397712b | 692 | kfree(pages); |
771ed689 | 693 | } |
771ed689 | 694 | |
40ae837b FM |
695 | static void free_async_extent_pages(struct async_extent *async_extent) |
696 | { | |
697 | int i; | |
698 | ||
699 | if (!async_extent->pages) | |
700 | return; | |
701 | ||
702 | for (i = 0; i < async_extent->nr_pages; i++) { | |
703 | WARN_ON(async_extent->pages[i]->mapping); | |
09cbfeaf | 704 | put_page(async_extent->pages[i]); |
40ae837b FM |
705 | } |
706 | kfree(async_extent->pages); | |
707 | async_extent->nr_pages = 0; | |
708 | async_extent->pages = NULL; | |
771ed689 CM |
709 | } |
710 | ||
711 | /* | |
712 | * phase two of compressed writeback. This is the ordered portion | |
713 | * of the code, which only gets called in the order the work was | |
714 | * queued. We walk all the async extents created by compress_file_range | |
715 | * and send them down to the disk. | |
716 | */ | |
dec8f175 | 717 | static noinline void submit_compressed_extents(struct inode *inode, |
771ed689 CM |
718 | struct async_cow *async_cow) |
719 | { | |
0b246afa | 720 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
771ed689 CM |
721 | struct async_extent *async_extent; |
722 | u64 alloc_hint = 0; | |
771ed689 CM |
723 | struct btrfs_key ins; |
724 | struct extent_map *em; | |
725 | struct btrfs_root *root = BTRFS_I(inode)->root; | |
771ed689 | 726 | struct extent_io_tree *io_tree; |
f5a84ee3 | 727 | int ret = 0; |
771ed689 | 728 | |
3e04e7f1 | 729 | again: |
d397712b | 730 | while (!list_empty(&async_cow->extents)) { |
771ed689 CM |
731 | async_extent = list_entry(async_cow->extents.next, |
732 | struct async_extent, list); | |
733 | list_del(&async_extent->list); | |
c8b97818 | 734 | |
771ed689 CM |
735 | io_tree = &BTRFS_I(inode)->io_tree; |
736 | ||
f5a84ee3 | 737 | retry: |
771ed689 CM |
738 | /* did the compression code fall back to uncompressed IO? */ |
739 | if (!async_extent->pages) { | |
740 | int page_started = 0; | |
741 | unsigned long nr_written = 0; | |
742 | ||
743 | lock_extent(io_tree, async_extent->start, | |
2ac55d41 | 744 | async_extent->start + |
d0082371 | 745 | async_extent->ram_size - 1); |
771ed689 CM |
746 | |
747 | /* allocate blocks */ | |
f5a84ee3 JB |
748 | ret = cow_file_range(inode, async_cow->locked_page, |
749 | async_extent->start, | |
750 | async_extent->start + | |
751 | async_extent->ram_size - 1, | |
dda3245e WX |
752 | async_extent->start + |
753 | async_extent->ram_size - 1, | |
754 | &page_started, &nr_written, 0, | |
755 | NULL); | |
771ed689 | 756 | |
79787eaa JM |
757 | /* JDM XXX */ |
758 | ||
771ed689 CM |
759 | /* |
760 | * if page_started, cow_file_range inserted an | |
761 | * inline extent and took care of all the unlocking | |
762 | * and IO for us. Otherwise, we need to submit | |
763 | * all those pages down to the drive. | |
764 | */ | |
f5a84ee3 | 765 | if (!page_started && !ret) |
5e3ee236 NB |
766 | extent_write_locked_range(inode, |
767 | async_extent->start, | |
d397712b | 768 | async_extent->start + |
771ed689 | 769 | async_extent->ram_size - 1, |
771ed689 | 770 | WB_SYNC_ALL); |
3e04e7f1 JB |
771 | else if (ret) |
772 | unlock_page(async_cow->locked_page); | |
771ed689 CM |
773 | kfree(async_extent); |
774 | cond_resched(); | |
775 | continue; | |
776 | } | |
777 | ||
778 | lock_extent(io_tree, async_extent->start, | |
d0082371 | 779 | async_extent->start + async_extent->ram_size - 1); |
771ed689 | 780 | |
18513091 | 781 | ret = btrfs_reserve_extent(root, async_extent->ram_size, |
771ed689 CM |
782 | async_extent->compressed_size, |
783 | async_extent->compressed_size, | |
e570fd27 | 784 | 0, alloc_hint, &ins, 1, 1); |
f5a84ee3 | 785 | if (ret) { |
40ae837b | 786 | free_async_extent_pages(async_extent); |
3e04e7f1 | 787 | |
fdf8e2ea JB |
788 | if (ret == -ENOSPC) { |
789 | unlock_extent(io_tree, async_extent->start, | |
790 | async_extent->start + | |
791 | async_extent->ram_size - 1); | |
ce62003f LB |
792 | |
793 | /* | |
794 | * we need to redirty the pages if we decide to | |
795 | * fallback to uncompressed IO, otherwise we | |
796 | * will not submit these pages down to lower | |
797 | * layers. | |
798 | */ | |
799 | extent_range_redirty_for_io(inode, | |
800 | async_extent->start, | |
801 | async_extent->start + | |
802 | async_extent->ram_size - 1); | |
803 | ||
79787eaa | 804 | goto retry; |
fdf8e2ea | 805 | } |
3e04e7f1 | 806 | goto out_free; |
f5a84ee3 | 807 | } |
c2167754 YZ |
808 | /* |
809 | * here we're doing allocation and writeback of the | |
810 | * compressed pages | |
811 | */ | |
6f9994db LB |
812 | em = create_io_em(inode, async_extent->start, |
813 | async_extent->ram_size, /* len */ | |
814 | async_extent->start, /* orig_start */ | |
815 | ins.objectid, /* block_start */ | |
816 | ins.offset, /* block_len */ | |
817 | ins.offset, /* orig_block_len */ | |
818 | async_extent->ram_size, /* ram_bytes */ | |
819 | async_extent->compress_type, | |
820 | BTRFS_ORDERED_COMPRESSED); | |
821 | if (IS_ERR(em)) | |
822 | /* ret value is not necessary due to void function */ | |
3e04e7f1 | 823 | goto out_free_reserve; |
6f9994db | 824 | free_extent_map(em); |
3e04e7f1 | 825 | |
261507a0 LZ |
826 | ret = btrfs_add_ordered_extent_compress(inode, |
827 | async_extent->start, | |
828 | ins.objectid, | |
829 | async_extent->ram_size, | |
830 | ins.offset, | |
831 | BTRFS_ORDERED_COMPRESSED, | |
832 | async_extent->compress_type); | |
d9f85963 | 833 | if (ret) { |
dcdbc059 NB |
834 | btrfs_drop_extent_cache(BTRFS_I(inode), |
835 | async_extent->start, | |
d9f85963 FM |
836 | async_extent->start + |
837 | async_extent->ram_size - 1, 0); | |
3e04e7f1 | 838 | goto out_free_reserve; |
d9f85963 | 839 | } |
0b246afa | 840 | btrfs_dec_block_group_reservations(fs_info, ins.objectid); |
771ed689 | 841 | |
771ed689 CM |
842 | /* |
843 | * clear dirty, set writeback and unlock the pages. | |
844 | */ | |
c2790a2e | 845 | extent_clear_unlock_delalloc(inode, async_extent->start, |
ba8b04c1 QW |
846 | async_extent->start + |
847 | async_extent->ram_size - 1, | |
a791e35e CM |
848 | async_extent->start + |
849 | async_extent->ram_size - 1, | |
151a41bc JB |
850 | NULL, EXTENT_LOCKED | EXTENT_DELALLOC, |
851 | PAGE_UNLOCK | PAGE_CLEAR_DIRTY | | |
c2790a2e | 852 | PAGE_SET_WRITEBACK); |
4e4cbee9 | 853 | if (btrfs_submit_compressed_write(inode, |
d397712b CM |
854 | async_extent->start, |
855 | async_extent->ram_size, | |
856 | ins.objectid, | |
857 | ins.offset, async_extent->pages, | |
f82b7359 LB |
858 | async_extent->nr_pages, |
859 | async_cow->write_flags)) { | |
fce2a4e6 FM |
860 | struct page *p = async_extent->pages[0]; |
861 | const u64 start = async_extent->start; | |
862 | const u64 end = start + async_extent->ram_size - 1; | |
863 | ||
864 | p->mapping = inode->i_mapping; | |
c629732d | 865 | btrfs_writepage_endio_finish_ordered(p, start, end, 0); |
7087a9d8 | 866 | |
fce2a4e6 | 867 | p->mapping = NULL; |
ba8b04c1 QW |
868 | extent_clear_unlock_delalloc(inode, start, end, end, |
869 | NULL, 0, | |
fce2a4e6 FM |
870 | PAGE_END_WRITEBACK | |
871 | PAGE_SET_ERROR); | |
40ae837b | 872 | free_async_extent_pages(async_extent); |
fce2a4e6 | 873 | } |
771ed689 CM |
874 | alloc_hint = ins.objectid + ins.offset; |
875 | kfree(async_extent); | |
876 | cond_resched(); | |
877 | } | |
dec8f175 | 878 | return; |
3e04e7f1 | 879 | out_free_reserve: |
0b246afa | 880 | btrfs_dec_block_group_reservations(fs_info, ins.objectid); |
2ff7e61e | 881 | btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1); |
79787eaa | 882 | out_free: |
c2790a2e | 883 | extent_clear_unlock_delalloc(inode, async_extent->start, |
ba8b04c1 QW |
884 | async_extent->start + |
885 | async_extent->ram_size - 1, | |
3e04e7f1 JB |
886 | async_extent->start + |
887 | async_extent->ram_size - 1, | |
c2790a2e | 888 | NULL, EXTENT_LOCKED | EXTENT_DELALLOC | |
a7e3b975 | 889 | EXTENT_DELALLOC_NEW | |
151a41bc JB |
890 | EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING, |
891 | PAGE_UNLOCK | PAGE_CLEAR_DIRTY | | |
704de49d FM |
892 | PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK | |
893 | PAGE_SET_ERROR); | |
40ae837b | 894 | free_async_extent_pages(async_extent); |
79787eaa | 895 | kfree(async_extent); |
3e04e7f1 | 896 | goto again; |
771ed689 CM |
897 | } |
898 | ||
4b46fce2 JB |
899 | static u64 get_extent_allocation_hint(struct inode *inode, u64 start, |
900 | u64 num_bytes) | |
901 | { | |
902 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; | |
903 | struct extent_map *em; | |
904 | u64 alloc_hint = 0; | |
905 | ||
906 | read_lock(&em_tree->lock); | |
907 | em = search_extent_mapping(em_tree, start, num_bytes); | |
908 | if (em) { | |
909 | /* | |
910 | * if block start isn't an actual block number then find the | |
911 | * first block in this inode and use that as a hint. If that | |
912 | * block is also bogus then just don't worry about it. | |
913 | */ | |
914 | if (em->block_start >= EXTENT_MAP_LAST_BYTE) { | |
915 | free_extent_map(em); | |
916 | em = search_extent_mapping(em_tree, 0, 0); | |
917 | if (em && em->block_start < EXTENT_MAP_LAST_BYTE) | |
918 | alloc_hint = em->block_start; | |
919 | if (em) | |
920 | free_extent_map(em); | |
921 | } else { | |
922 | alloc_hint = em->block_start; | |
923 | free_extent_map(em); | |
924 | } | |
925 | } | |
926 | read_unlock(&em_tree->lock); | |
927 | ||
928 | return alloc_hint; | |
929 | } | |
930 | ||
771ed689 CM |
931 | /* |
932 | * when extent_io.c finds a delayed allocation range in the file, | |
933 | * the call backs end up in this code. The basic idea is to | |
934 | * allocate extents on disk for the range, and create ordered data structs | |
935 | * in ram to track those extents. | |
936 | * | |
937 | * locked_page is the page that writepage had locked already. We use | |
938 | * it to make sure we don't do extra locks or unlocks. | |
939 | * | |
940 | * *page_started is set to one if we unlock locked_page and do everything | |
941 | * required to start IO on it. It may be clean and already done with | |
942 | * IO when we return. | |
943 | */ | |
00361589 JB |
944 | static noinline int cow_file_range(struct inode *inode, |
945 | struct page *locked_page, | |
dda3245e WX |
946 | u64 start, u64 end, u64 delalloc_end, |
947 | int *page_started, unsigned long *nr_written, | |
948 | int unlock, struct btrfs_dedupe_hash *hash) | |
771ed689 | 949 | { |
0b246afa | 950 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
00361589 | 951 | struct btrfs_root *root = BTRFS_I(inode)->root; |
771ed689 CM |
952 | u64 alloc_hint = 0; |
953 | u64 num_bytes; | |
954 | unsigned long ram_size; | |
a315e68f | 955 | u64 cur_alloc_size = 0; |
0b246afa | 956 | u64 blocksize = fs_info->sectorsize; |
771ed689 CM |
957 | struct btrfs_key ins; |
958 | struct extent_map *em; | |
a315e68f FM |
959 | unsigned clear_bits; |
960 | unsigned long page_ops; | |
961 | bool extent_reserved = false; | |
771ed689 CM |
962 | int ret = 0; |
963 | ||
70ddc553 | 964 | if (btrfs_is_free_space_inode(BTRFS_I(inode))) { |
02ecd2c2 | 965 | WARN_ON_ONCE(1); |
29bce2f3 JB |
966 | ret = -EINVAL; |
967 | goto out_unlock; | |
02ecd2c2 | 968 | } |
771ed689 | 969 | |
fda2832f | 970 | num_bytes = ALIGN(end - start + 1, blocksize); |
771ed689 | 971 | num_bytes = max(blocksize, num_bytes); |
566b1760 | 972 | ASSERT(num_bytes <= btrfs_super_total_bytes(fs_info->super_copy)); |
771ed689 | 973 | |
6158e1ce | 974 | inode_should_defrag(BTRFS_I(inode), start, end, num_bytes, SZ_64K); |
4cb5300b | 975 | |
771ed689 CM |
976 | if (start == 0) { |
977 | /* lets try to make an inline extent */ | |
d02c0e20 NB |
978 | ret = cow_file_range_inline(inode, start, end, 0, |
979 | BTRFS_COMPRESS_NONE, NULL); | |
771ed689 | 980 | if (ret == 0) { |
8b62f87b JB |
981 | /* |
982 | * We use DO_ACCOUNTING here because we need the | |
983 | * delalloc_release_metadata to be run _after_ we drop | |
984 | * our outstanding extent for clearing delalloc for this | |
985 | * range. | |
986 | */ | |
ba8b04c1 QW |
987 | extent_clear_unlock_delalloc(inode, start, end, |
988 | delalloc_end, NULL, | |
c2790a2e | 989 | EXTENT_LOCKED | EXTENT_DELALLOC | |
8b62f87b JB |
990 | EXTENT_DELALLOC_NEW | EXTENT_DEFRAG | |
991 | EXTENT_DO_ACCOUNTING, PAGE_UNLOCK | | |
c2790a2e JB |
992 | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK | |
993 | PAGE_END_WRITEBACK); | |
771ed689 | 994 | *nr_written = *nr_written + |
09cbfeaf | 995 | (end - start + PAGE_SIZE) / PAGE_SIZE; |
771ed689 | 996 | *page_started = 1; |
771ed689 | 997 | goto out; |
79787eaa | 998 | } else if (ret < 0) { |
79787eaa | 999 | goto out_unlock; |
771ed689 CM |
1000 | } |
1001 | } | |
1002 | ||
4b46fce2 | 1003 | alloc_hint = get_extent_allocation_hint(inode, start, num_bytes); |
dcdbc059 NB |
1004 | btrfs_drop_extent_cache(BTRFS_I(inode), start, |
1005 | start + num_bytes - 1, 0); | |
771ed689 | 1006 | |
3752d22f AJ |
1007 | while (num_bytes > 0) { |
1008 | cur_alloc_size = num_bytes; | |
18513091 | 1009 | ret = btrfs_reserve_extent(root, cur_alloc_size, cur_alloc_size, |
0b246afa | 1010 | fs_info->sectorsize, 0, alloc_hint, |
e570fd27 | 1011 | &ins, 1, 1); |
00361589 | 1012 | if (ret < 0) |
79787eaa | 1013 | goto out_unlock; |
a315e68f FM |
1014 | cur_alloc_size = ins.offset; |
1015 | extent_reserved = true; | |
d397712b | 1016 | |
771ed689 | 1017 | ram_size = ins.offset; |
6f9994db LB |
1018 | em = create_io_em(inode, start, ins.offset, /* len */ |
1019 | start, /* orig_start */ | |
1020 | ins.objectid, /* block_start */ | |
1021 | ins.offset, /* block_len */ | |
1022 | ins.offset, /* orig_block_len */ | |
1023 | ram_size, /* ram_bytes */ | |
1024 | BTRFS_COMPRESS_NONE, /* compress_type */ | |
1af4a0aa | 1025 | BTRFS_ORDERED_REGULAR /* type */); |
090a127a SY |
1026 | if (IS_ERR(em)) { |
1027 | ret = PTR_ERR(em); | |
ace68bac | 1028 | goto out_reserve; |
090a127a | 1029 | } |
6f9994db | 1030 | free_extent_map(em); |
e6dcd2dc | 1031 | |
e6dcd2dc | 1032 | ret = btrfs_add_ordered_extent(inode, start, ins.objectid, |
771ed689 | 1033 | ram_size, cur_alloc_size, 0); |
ace68bac | 1034 | if (ret) |
d9f85963 | 1035 | goto out_drop_extent_cache; |
c8b97818 | 1036 | |
17d217fe YZ |
1037 | if (root->root_key.objectid == |
1038 | BTRFS_DATA_RELOC_TREE_OBJECTID) { | |
1039 | ret = btrfs_reloc_clone_csums(inode, start, | |
1040 | cur_alloc_size); | |
4dbd80fb QW |
1041 | /* |
1042 | * Only drop cache here, and process as normal. | |
1043 | * | |
1044 | * We must not allow extent_clear_unlock_delalloc() | |
1045 | * at out_unlock label to free meta of this ordered | |
1046 | * extent, as its meta should be freed by | |
1047 | * btrfs_finish_ordered_io(). | |
1048 | * | |
1049 | * So we must continue until @start is increased to | |
1050 | * skip current ordered extent. | |
1051 | */ | |
00361589 | 1052 | if (ret) |
4dbd80fb QW |
1053 | btrfs_drop_extent_cache(BTRFS_I(inode), start, |
1054 | start + ram_size - 1, 0); | |
17d217fe YZ |
1055 | } |
1056 | ||
0b246afa | 1057 | btrfs_dec_block_group_reservations(fs_info, ins.objectid); |
9cfa3e34 | 1058 | |
c8b97818 CM |
1059 | /* we're not doing compressed IO, don't unlock the first |
1060 | * page (which the caller expects to stay locked), don't | |
1061 | * clear any dirty bits and don't set any writeback bits | |
8b62b72b CM |
1062 | * |
1063 | * Do set the Private2 bit so we know this page was properly | |
1064 | * setup for writepage | |
c8b97818 | 1065 | */ |
a315e68f FM |
1066 | page_ops = unlock ? PAGE_UNLOCK : 0; |
1067 | page_ops |= PAGE_SET_PRIVATE2; | |
a791e35e | 1068 | |
c2790a2e | 1069 | extent_clear_unlock_delalloc(inode, start, |
ba8b04c1 QW |
1070 | start + ram_size - 1, |
1071 | delalloc_end, locked_page, | |
c2790a2e | 1072 | EXTENT_LOCKED | EXTENT_DELALLOC, |
a315e68f | 1073 | page_ops); |
3752d22f AJ |
1074 | if (num_bytes < cur_alloc_size) |
1075 | num_bytes = 0; | |
4dbd80fb | 1076 | else |
3752d22f | 1077 | num_bytes -= cur_alloc_size; |
c59f8951 CM |
1078 | alloc_hint = ins.objectid + ins.offset; |
1079 | start += cur_alloc_size; | |
a315e68f | 1080 | extent_reserved = false; |
4dbd80fb QW |
1081 | |
1082 | /* | |
1083 | * btrfs_reloc_clone_csums() error, since start is increased | |
1084 | * extent_clear_unlock_delalloc() at out_unlock label won't | |
1085 | * free metadata of current ordered extent, we're OK to exit. | |
1086 | */ | |
1087 | if (ret) | |
1088 | goto out_unlock; | |
b888db2b | 1089 | } |
79787eaa | 1090 | out: |
be20aa9d | 1091 | return ret; |
b7d5b0a8 | 1092 | |
d9f85963 | 1093 | out_drop_extent_cache: |
dcdbc059 | 1094 | btrfs_drop_extent_cache(BTRFS_I(inode), start, start + ram_size - 1, 0); |
ace68bac | 1095 | out_reserve: |
0b246afa | 1096 | btrfs_dec_block_group_reservations(fs_info, ins.objectid); |
2ff7e61e | 1097 | btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 1); |
79787eaa | 1098 | out_unlock: |
a7e3b975 FM |
1099 | clear_bits = EXTENT_LOCKED | EXTENT_DELALLOC | EXTENT_DELALLOC_NEW | |
1100 | EXTENT_DEFRAG | EXTENT_CLEAR_META_RESV; | |
a315e68f FM |
1101 | page_ops = PAGE_UNLOCK | PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK | |
1102 | PAGE_END_WRITEBACK; | |
1103 | /* | |
1104 | * If we reserved an extent for our delalloc range (or a subrange) and | |
1105 | * failed to create the respective ordered extent, then it means that | |
1106 | * when we reserved the extent we decremented the extent's size from | |
1107 | * the data space_info's bytes_may_use counter and incremented the | |
1108 | * space_info's bytes_reserved counter by the same amount. We must make | |
1109 | * sure extent_clear_unlock_delalloc() does not try to decrement again | |
1110 | * the data space_info's bytes_may_use counter, therefore we do not pass | |
1111 | * it the flag EXTENT_CLEAR_DATA_RESV. | |
1112 | */ | |
1113 | if (extent_reserved) { | |
1114 | extent_clear_unlock_delalloc(inode, start, | |
1115 | start + cur_alloc_size, | |
1116 | start + cur_alloc_size, | |
1117 | locked_page, | |
1118 | clear_bits, | |
1119 | page_ops); | |
1120 | start += cur_alloc_size; | |
1121 | if (start >= end) | |
1122 | goto out; | |
1123 | } | |
ba8b04c1 QW |
1124 | extent_clear_unlock_delalloc(inode, start, end, delalloc_end, |
1125 | locked_page, | |
a315e68f FM |
1126 | clear_bits | EXTENT_CLEAR_DATA_RESV, |
1127 | page_ops); | |
79787eaa | 1128 | goto out; |
771ed689 | 1129 | } |
c8b97818 | 1130 | |
771ed689 CM |
1131 | /* |
1132 | * work queue call back to started compression on a file and pages | |
1133 | */ | |
1134 | static noinline void async_cow_start(struct btrfs_work *work) | |
1135 | { | |
1136 | struct async_cow *async_cow; | |
1137 | int num_added = 0; | |
1138 | async_cow = container_of(work, struct async_cow, work); | |
1139 | ||
1140 | compress_file_range(async_cow->inode, async_cow->locked_page, | |
1141 | async_cow->start, async_cow->end, async_cow, | |
1142 | &num_added); | |
8180ef88 | 1143 | if (num_added == 0) { |
cb77fcd8 | 1144 | btrfs_add_delayed_iput(async_cow->inode); |
771ed689 | 1145 | async_cow->inode = NULL; |
8180ef88 | 1146 | } |
771ed689 CM |
1147 | } |
1148 | ||
1149 | /* | |
1150 | * work queue call back to submit previously compressed pages | |
1151 | */ | |
1152 | static noinline void async_cow_submit(struct btrfs_work *work) | |
1153 | { | |
0b246afa | 1154 | struct btrfs_fs_info *fs_info; |
771ed689 | 1155 | struct async_cow *async_cow; |
771ed689 CM |
1156 | unsigned long nr_pages; |
1157 | ||
1158 | async_cow = container_of(work, struct async_cow, work); | |
1159 | ||
600b6cf4 | 1160 | fs_info = async_cow->fs_info; |
09cbfeaf KS |
1161 | nr_pages = (async_cow->end - async_cow->start + PAGE_SIZE) >> |
1162 | PAGE_SHIFT; | |
771ed689 | 1163 | |
093258e6 | 1164 | /* atomic_sub_return implies a barrier */ |
0b246afa | 1165 | if (atomic_sub_return(nr_pages, &fs_info->async_delalloc_pages) < |
093258e6 DS |
1166 | 5 * SZ_1M) |
1167 | cond_wake_up_nomb(&fs_info->async_submit_wait); | |
771ed689 | 1168 | |
d397712b | 1169 | if (async_cow->inode) |
771ed689 | 1170 | submit_compressed_extents(async_cow->inode, async_cow); |
771ed689 | 1171 | } |
c8b97818 | 1172 | |
771ed689 CM |
1173 | static noinline void async_cow_free(struct btrfs_work *work) |
1174 | { | |
1175 | struct async_cow *async_cow; | |
1176 | async_cow = container_of(work, struct async_cow, work); | |
8180ef88 | 1177 | if (async_cow->inode) |
cb77fcd8 | 1178 | btrfs_add_delayed_iput(async_cow->inode); |
771ed689 CM |
1179 | kfree(async_cow); |
1180 | } | |
1181 | ||
1182 | static int cow_file_range_async(struct inode *inode, struct page *locked_page, | |
1183 | u64 start, u64 end, int *page_started, | |
f82b7359 LB |
1184 | unsigned long *nr_written, |
1185 | unsigned int write_flags) | |
771ed689 | 1186 | { |
0b246afa | 1187 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
771ed689 | 1188 | struct async_cow *async_cow; |
771ed689 CM |
1189 | unsigned long nr_pages; |
1190 | u64 cur_end; | |
771ed689 | 1191 | |
a3429ab7 | 1192 | clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED, |
ae0f1625 | 1193 | 1, 0, NULL); |
d397712b | 1194 | while (start < end) { |
771ed689 | 1195 | async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS); |
79787eaa | 1196 | BUG_ON(!async_cow); /* -ENOMEM */ |
8180ef88 | 1197 | async_cow->inode = igrab(inode); |
600b6cf4 | 1198 | async_cow->fs_info = fs_info; |
771ed689 CM |
1199 | async_cow->locked_page = locked_page; |
1200 | async_cow->start = start; | |
f82b7359 | 1201 | async_cow->write_flags = write_flags; |
771ed689 | 1202 | |
f79707b0 | 1203 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS && |
0b246afa | 1204 | !btrfs_test_opt(fs_info, FORCE_COMPRESS)) |
771ed689 CM |
1205 | cur_end = end; |
1206 | else | |
ee22184b | 1207 | cur_end = min(end, start + SZ_512K - 1); |
771ed689 CM |
1208 | |
1209 | async_cow->end = cur_end; | |
1210 | INIT_LIST_HEAD(&async_cow->extents); | |
1211 | ||
9e0af237 LB |
1212 | btrfs_init_work(&async_cow->work, |
1213 | btrfs_delalloc_helper, | |
1214 | async_cow_start, async_cow_submit, | |
1215 | async_cow_free); | |
771ed689 | 1216 | |
09cbfeaf KS |
1217 | nr_pages = (cur_end - start + PAGE_SIZE) >> |
1218 | PAGE_SHIFT; | |
0b246afa | 1219 | atomic_add(nr_pages, &fs_info->async_delalloc_pages); |
771ed689 | 1220 | |
0b246afa | 1221 | btrfs_queue_work(fs_info->delalloc_workers, &async_cow->work); |
771ed689 | 1222 | |
771ed689 CM |
1223 | *nr_written += nr_pages; |
1224 | start = cur_end + 1; | |
1225 | } | |
1226 | *page_started = 1; | |
1227 | return 0; | |
be20aa9d CM |
1228 | } |
1229 | ||
2ff7e61e | 1230 | static noinline int csum_exist_in_range(struct btrfs_fs_info *fs_info, |
17d217fe YZ |
1231 | u64 bytenr, u64 num_bytes) |
1232 | { | |
1233 | int ret; | |
1234 | struct btrfs_ordered_sum *sums; | |
1235 | LIST_HEAD(list); | |
1236 | ||
0b246afa | 1237 | ret = btrfs_lookup_csums_range(fs_info->csum_root, bytenr, |
a2de733c | 1238 | bytenr + num_bytes - 1, &list, 0); |
17d217fe YZ |
1239 | if (ret == 0 && list_empty(&list)) |
1240 | return 0; | |
1241 | ||
1242 | while (!list_empty(&list)) { | |
1243 | sums = list_entry(list.next, struct btrfs_ordered_sum, list); | |
1244 | list_del(&sums->list); | |
1245 | kfree(sums); | |
1246 | } | |
58113753 LB |
1247 | if (ret < 0) |
1248 | return ret; | |
17d217fe YZ |
1249 | return 1; |
1250 | } | |
1251 | ||
d352ac68 CM |
1252 | /* |
1253 | * when nowcow writeback call back. This checks for snapshots or COW copies | |
1254 | * of the extents that exist in the file, and COWs the file as required. | |
1255 | * | |
1256 | * If no cow copies or snapshots exist, we write directly to the existing | |
1257 | * blocks on disk | |
1258 | */ | |
7f366cfe CM |
1259 | static noinline int run_delalloc_nocow(struct inode *inode, |
1260 | struct page *locked_page, | |
771ed689 CM |
1261 | u64 start, u64 end, int *page_started, int force, |
1262 | unsigned long *nr_written) | |
be20aa9d | 1263 | { |
0b246afa | 1264 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
be20aa9d CM |
1265 | struct btrfs_root *root = BTRFS_I(inode)->root; |
1266 | struct extent_buffer *leaf; | |
be20aa9d | 1267 | struct btrfs_path *path; |
80ff3856 | 1268 | struct btrfs_file_extent_item *fi; |
be20aa9d | 1269 | struct btrfs_key found_key; |
6f9994db | 1270 | struct extent_map *em; |
80ff3856 YZ |
1271 | u64 cow_start; |
1272 | u64 cur_offset; | |
1273 | u64 extent_end; | |
5d4f98a2 | 1274 | u64 extent_offset; |
80ff3856 YZ |
1275 | u64 disk_bytenr; |
1276 | u64 num_bytes; | |
b4939680 | 1277 | u64 disk_num_bytes; |
cc95bef6 | 1278 | u64 ram_bytes; |
80ff3856 | 1279 | int extent_type; |
8ecebf4d | 1280 | int ret; |
d899e052 | 1281 | int type; |
80ff3856 YZ |
1282 | int nocow; |
1283 | int check_prev = 1; | |
82d5902d | 1284 | bool nolock; |
4a0cc7ca | 1285 | u64 ino = btrfs_ino(BTRFS_I(inode)); |
be20aa9d CM |
1286 | |
1287 | path = btrfs_alloc_path(); | |
17ca04af | 1288 | if (!path) { |
ba8b04c1 QW |
1289 | extent_clear_unlock_delalloc(inode, start, end, end, |
1290 | locked_page, | |
c2790a2e | 1291 | EXTENT_LOCKED | EXTENT_DELALLOC | |
151a41bc JB |
1292 | EXTENT_DO_ACCOUNTING | |
1293 | EXTENT_DEFRAG, PAGE_UNLOCK | | |
c2790a2e JB |
1294 | PAGE_CLEAR_DIRTY | |
1295 | PAGE_SET_WRITEBACK | | |
1296 | PAGE_END_WRITEBACK); | |
d8926bb3 | 1297 | return -ENOMEM; |
17ca04af | 1298 | } |
82d5902d | 1299 | |
70ddc553 | 1300 | nolock = btrfs_is_free_space_inode(BTRFS_I(inode)); |
82d5902d | 1301 | |
80ff3856 YZ |
1302 | cow_start = (u64)-1; |
1303 | cur_offset = start; | |
1304 | while (1) { | |
e4c3b2dc | 1305 | ret = btrfs_lookup_file_extent(NULL, root, path, ino, |
80ff3856 | 1306 | cur_offset, 0); |
d788a349 | 1307 | if (ret < 0) |
79787eaa | 1308 | goto error; |
80ff3856 YZ |
1309 | if (ret > 0 && path->slots[0] > 0 && check_prev) { |
1310 | leaf = path->nodes[0]; | |
1311 | btrfs_item_key_to_cpu(leaf, &found_key, | |
1312 | path->slots[0] - 1); | |
33345d01 | 1313 | if (found_key.objectid == ino && |
80ff3856 YZ |
1314 | found_key.type == BTRFS_EXTENT_DATA_KEY) |
1315 | path->slots[0]--; | |
1316 | } | |
1317 | check_prev = 0; | |
1318 | next_slot: | |
1319 | leaf = path->nodes[0]; | |
1320 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { | |
1321 | ret = btrfs_next_leaf(root, path); | |
e8916699 LB |
1322 | if (ret < 0) { |
1323 | if (cow_start != (u64)-1) | |
1324 | cur_offset = cow_start; | |
79787eaa | 1325 | goto error; |
e8916699 | 1326 | } |
80ff3856 YZ |
1327 | if (ret > 0) |
1328 | break; | |
1329 | leaf = path->nodes[0]; | |
1330 | } | |
be20aa9d | 1331 | |
80ff3856 YZ |
1332 | nocow = 0; |
1333 | disk_bytenr = 0; | |
17d217fe | 1334 | num_bytes = 0; |
80ff3856 YZ |
1335 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
1336 | ||
1d512cb7 FM |
1337 | if (found_key.objectid > ino) |
1338 | break; | |
1339 | if (WARN_ON_ONCE(found_key.objectid < ino) || | |
1340 | found_key.type < BTRFS_EXTENT_DATA_KEY) { | |
1341 | path->slots[0]++; | |
1342 | goto next_slot; | |
1343 | } | |
1344 | if (found_key.type > BTRFS_EXTENT_DATA_KEY || | |
80ff3856 YZ |
1345 | found_key.offset > end) |
1346 | break; | |
1347 | ||
1348 | if (found_key.offset > cur_offset) { | |
1349 | extent_end = found_key.offset; | |
e9061e21 | 1350 | extent_type = 0; |
80ff3856 YZ |
1351 | goto out_check; |
1352 | } | |
1353 | ||
1354 | fi = btrfs_item_ptr(leaf, path->slots[0], | |
1355 | struct btrfs_file_extent_item); | |
1356 | extent_type = btrfs_file_extent_type(leaf, fi); | |
1357 | ||
cc95bef6 | 1358 | ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi); |
d899e052 YZ |
1359 | if (extent_type == BTRFS_FILE_EXTENT_REG || |
1360 | extent_type == BTRFS_FILE_EXTENT_PREALLOC) { | |
80ff3856 | 1361 | disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi); |
5d4f98a2 | 1362 | extent_offset = btrfs_file_extent_offset(leaf, fi); |
80ff3856 YZ |
1363 | extent_end = found_key.offset + |
1364 | btrfs_file_extent_num_bytes(leaf, fi); | |
b4939680 JB |
1365 | disk_num_bytes = |
1366 | btrfs_file_extent_disk_num_bytes(leaf, fi); | |
80ff3856 YZ |
1367 | if (extent_end <= start) { |
1368 | path->slots[0]++; | |
1369 | goto next_slot; | |
1370 | } | |
17d217fe YZ |
1371 | if (disk_bytenr == 0) |
1372 | goto out_check; | |
80ff3856 YZ |
1373 | if (btrfs_file_extent_compression(leaf, fi) || |
1374 | btrfs_file_extent_encryption(leaf, fi) || | |
1375 | btrfs_file_extent_other_encoding(leaf, fi)) | |
1376 | goto out_check; | |
78d4295b EL |
1377 | /* |
1378 | * Do the same check as in btrfs_cross_ref_exist but | |
1379 | * without the unnecessary search. | |
1380 | */ | |
27a7ff55 LF |
1381 | if (!nolock && |
1382 | btrfs_file_extent_generation(leaf, fi) <= | |
78d4295b EL |
1383 | btrfs_root_last_snapshot(&root->root_item)) |
1384 | goto out_check; | |
d899e052 YZ |
1385 | if (extent_type == BTRFS_FILE_EXTENT_REG && !force) |
1386 | goto out_check; | |
2ff7e61e | 1387 | if (btrfs_extent_readonly(fs_info, disk_bytenr)) |
80ff3856 | 1388 | goto out_check; |
58113753 LB |
1389 | ret = btrfs_cross_ref_exist(root, ino, |
1390 | found_key.offset - | |
1391 | extent_offset, disk_bytenr); | |
1392 | if (ret) { | |
1393 | /* | |
1394 | * ret could be -EIO if the above fails to read | |
1395 | * metadata. | |
1396 | */ | |
1397 | if (ret < 0) { | |
1398 | if (cow_start != (u64)-1) | |
1399 | cur_offset = cow_start; | |
1400 | goto error; | |
1401 | } | |
1402 | ||
1403 | WARN_ON_ONCE(nolock); | |
17d217fe | 1404 | goto out_check; |
58113753 | 1405 | } |
5d4f98a2 | 1406 | disk_bytenr += extent_offset; |
17d217fe YZ |
1407 | disk_bytenr += cur_offset - found_key.offset; |
1408 | num_bytes = min(end + 1, extent_end) - cur_offset; | |
e9894fd3 WS |
1409 | /* |
1410 | * if there are pending snapshots for this root, | |
1411 | * we fall into common COW way. | |
1412 | */ | |
8ecebf4d RK |
1413 | if (!nolock && atomic_read(&root->snapshot_force_cow)) |
1414 | goto out_check; | |
17d217fe YZ |
1415 | /* |
1416 | * force cow if csum exists in the range. | |
1417 | * this ensure that csum for a given extent are | |
1418 | * either valid or do not exist. | |
1419 | */ | |
58113753 LB |
1420 | ret = csum_exist_in_range(fs_info, disk_bytenr, |
1421 | num_bytes); | |
1422 | if (ret) { | |
58113753 LB |
1423 | /* |
1424 | * ret could be -EIO if the above fails to read | |
1425 | * metadata. | |
1426 | */ | |
1427 | if (ret < 0) { | |
1428 | if (cow_start != (u64)-1) | |
1429 | cur_offset = cow_start; | |
1430 | goto error; | |
1431 | } | |
1432 | WARN_ON_ONCE(nolock); | |
17d217fe | 1433 | goto out_check; |
91e1f56a | 1434 | } |
8ecebf4d | 1435 | if (!btrfs_inc_nocow_writers(fs_info, disk_bytenr)) |
f78c436c | 1436 | goto out_check; |
80ff3856 YZ |
1437 | nocow = 1; |
1438 | } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) { | |
1439 | extent_end = found_key.offset + | |
e41ca589 | 1440 | btrfs_file_extent_ram_bytes(leaf, fi); |
da17066c | 1441 | extent_end = ALIGN(extent_end, |
0b246afa | 1442 | fs_info->sectorsize); |
80ff3856 YZ |
1443 | } else { |
1444 | BUG_ON(1); | |
1445 | } | |
1446 | out_check: | |
1447 | if (extent_end <= start) { | |
1448 | path->slots[0]++; | |
f78c436c | 1449 | if (nocow) |
0b246afa | 1450 | btrfs_dec_nocow_writers(fs_info, disk_bytenr); |
80ff3856 YZ |
1451 | goto next_slot; |
1452 | } | |
1453 | if (!nocow) { | |
1454 | if (cow_start == (u64)-1) | |
1455 | cow_start = cur_offset; | |
1456 | cur_offset = extent_end; | |
1457 | if (cur_offset > end) | |
1458 | break; | |
1459 | path->slots[0]++; | |
1460 | goto next_slot; | |
7ea394f1 YZ |
1461 | } |
1462 | ||
b3b4aa74 | 1463 | btrfs_release_path(path); |
80ff3856 | 1464 | if (cow_start != (u64)-1) { |
00361589 JB |
1465 | ret = cow_file_range(inode, locked_page, |
1466 | cow_start, found_key.offset - 1, | |
dda3245e WX |
1467 | end, page_started, nr_written, 1, |
1468 | NULL); | |
e9894fd3 | 1469 | if (ret) { |
f78c436c | 1470 | if (nocow) |
0b246afa | 1471 | btrfs_dec_nocow_writers(fs_info, |
f78c436c | 1472 | disk_bytenr); |
79787eaa | 1473 | goto error; |
e9894fd3 | 1474 | } |
80ff3856 | 1475 | cow_start = (u64)-1; |
7ea394f1 | 1476 | } |
80ff3856 | 1477 | |
d899e052 | 1478 | if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) { |
6f9994db LB |
1479 | u64 orig_start = found_key.offset - extent_offset; |
1480 | ||
1481 | em = create_io_em(inode, cur_offset, num_bytes, | |
1482 | orig_start, | |
1483 | disk_bytenr, /* block_start */ | |
1484 | num_bytes, /* block_len */ | |
1485 | disk_num_bytes, /* orig_block_len */ | |
1486 | ram_bytes, BTRFS_COMPRESS_NONE, | |
1487 | BTRFS_ORDERED_PREALLOC); | |
1488 | if (IS_ERR(em)) { | |
6f9994db LB |
1489 | if (nocow) |
1490 | btrfs_dec_nocow_writers(fs_info, | |
1491 | disk_bytenr); | |
1492 | ret = PTR_ERR(em); | |
1493 | goto error; | |
d899e052 | 1494 | } |
6f9994db LB |
1495 | free_extent_map(em); |
1496 | } | |
1497 | ||
1498 | if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) { | |
d899e052 YZ |
1499 | type = BTRFS_ORDERED_PREALLOC; |
1500 | } else { | |
1501 | type = BTRFS_ORDERED_NOCOW; | |
1502 | } | |
80ff3856 YZ |
1503 | |
1504 | ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr, | |
d899e052 | 1505 | num_bytes, num_bytes, type); |
f78c436c | 1506 | if (nocow) |
0b246afa | 1507 | btrfs_dec_nocow_writers(fs_info, disk_bytenr); |
79787eaa | 1508 | BUG_ON(ret); /* -ENOMEM */ |
771ed689 | 1509 | |
efa56464 | 1510 | if (root->root_key.objectid == |
4dbd80fb QW |
1511 | BTRFS_DATA_RELOC_TREE_OBJECTID) |
1512 | /* | |
1513 | * Error handled later, as we must prevent | |
1514 | * extent_clear_unlock_delalloc() in error handler | |
1515 | * from freeing metadata of created ordered extent. | |
1516 | */ | |
efa56464 YZ |
1517 | ret = btrfs_reloc_clone_csums(inode, cur_offset, |
1518 | num_bytes); | |
efa56464 | 1519 | |
c2790a2e | 1520 | extent_clear_unlock_delalloc(inode, cur_offset, |
ba8b04c1 | 1521 | cur_offset + num_bytes - 1, end, |
c2790a2e | 1522 | locked_page, EXTENT_LOCKED | |
18513091 WX |
1523 | EXTENT_DELALLOC | |
1524 | EXTENT_CLEAR_DATA_RESV, | |
1525 | PAGE_UNLOCK | PAGE_SET_PRIVATE2); | |
1526 | ||
80ff3856 | 1527 | cur_offset = extent_end; |
4dbd80fb QW |
1528 | |
1529 | /* | |
1530 | * btrfs_reloc_clone_csums() error, now we're OK to call error | |
1531 | * handler, as metadata for created ordered extent will only | |
1532 | * be freed by btrfs_finish_ordered_io(). | |
1533 | */ | |
1534 | if (ret) | |
1535 | goto error; | |
80ff3856 YZ |
1536 | if (cur_offset > end) |
1537 | break; | |
be20aa9d | 1538 | } |
b3b4aa74 | 1539 | btrfs_release_path(path); |
80ff3856 | 1540 | |
506481b2 | 1541 | if (cur_offset <= end && cow_start == (u64)-1) |
80ff3856 | 1542 | cow_start = cur_offset; |
17ca04af | 1543 | |
80ff3856 | 1544 | if (cow_start != (u64)-1) { |
506481b2 | 1545 | cur_offset = end; |
dda3245e WX |
1546 | ret = cow_file_range(inode, locked_page, cow_start, end, end, |
1547 | page_started, nr_written, 1, NULL); | |
d788a349 | 1548 | if (ret) |
79787eaa | 1549 | goto error; |
80ff3856 YZ |
1550 | } |
1551 | ||
79787eaa | 1552 | error: |
17ca04af | 1553 | if (ret && cur_offset < end) |
ba8b04c1 | 1554 | extent_clear_unlock_delalloc(inode, cur_offset, end, end, |
c2790a2e | 1555 | locked_page, EXTENT_LOCKED | |
151a41bc JB |
1556 | EXTENT_DELALLOC | EXTENT_DEFRAG | |
1557 | EXTENT_DO_ACCOUNTING, PAGE_UNLOCK | | |
1558 | PAGE_CLEAR_DIRTY | | |
c2790a2e JB |
1559 | PAGE_SET_WRITEBACK | |
1560 | PAGE_END_WRITEBACK); | |
7ea394f1 | 1561 | btrfs_free_path(path); |
79787eaa | 1562 | return ret; |
be20aa9d CM |
1563 | } |
1564 | ||
47059d93 WS |
1565 | static inline int need_force_cow(struct inode *inode, u64 start, u64 end) |
1566 | { | |
1567 | ||
1568 | if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) && | |
1569 | !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)) | |
1570 | return 0; | |
1571 | ||
1572 | /* | |
1573 | * @defrag_bytes is a hint value, no spinlock held here, | |
1574 | * if is not zero, it means the file is defragging. | |
1575 | * Force cow if given extent needs to be defragged. | |
1576 | */ | |
1577 | if (BTRFS_I(inode)->defrag_bytes && | |
1578 | test_range_bit(&BTRFS_I(inode)->io_tree, start, end, | |
1579 | EXTENT_DEFRAG, 0, NULL)) | |
1580 | return 1; | |
1581 | ||
1582 | return 0; | |
1583 | } | |
1584 | ||
d352ac68 | 1585 | /* |
5eaad97a NB |
1586 | * Function to process delayed allocation (create CoW) for ranges which are |
1587 | * being touched for the first time. | |
d352ac68 | 1588 | */ |
5eaad97a NB |
1589 | int btrfs_run_delalloc_range(void *private_data, struct page *locked_page, |
1590 | u64 start, u64 end, int *page_started, unsigned long *nr_written, | |
1591 | struct writeback_control *wbc) | |
be20aa9d | 1592 | { |
c6100a4b | 1593 | struct inode *inode = private_data; |
be20aa9d | 1594 | int ret; |
47059d93 | 1595 | int force_cow = need_force_cow(inode, start, end); |
f82b7359 | 1596 | unsigned int write_flags = wbc_to_write_flags(wbc); |
a2135011 | 1597 | |
47059d93 | 1598 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW && !force_cow) { |
c8b97818 | 1599 | ret = run_delalloc_nocow(inode, locked_page, start, end, |
d397712b | 1600 | page_started, 1, nr_written); |
47059d93 | 1601 | } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC && !force_cow) { |
d899e052 | 1602 | ret = run_delalloc_nocow(inode, locked_page, start, end, |
d397712b | 1603 | page_started, 0, nr_written); |
c2fcdcdf | 1604 | } else if (!inode_need_compress(inode, start, end)) { |
dda3245e WX |
1605 | ret = cow_file_range(inode, locked_page, start, end, end, |
1606 | page_started, nr_written, 1, NULL); | |
7ddf5a42 JB |
1607 | } else { |
1608 | set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT, | |
1609 | &BTRFS_I(inode)->runtime_flags); | |
771ed689 | 1610 | ret = cow_file_range_async(inode, locked_page, start, end, |
f82b7359 LB |
1611 | page_started, nr_written, |
1612 | write_flags); | |
7ddf5a42 | 1613 | } |
52427260 | 1614 | if (ret) |
d1051d6e NB |
1615 | btrfs_cleanup_ordered_extents(inode, locked_page, start, |
1616 | end - start + 1); | |
b888db2b CM |
1617 | return ret; |
1618 | } | |
1619 | ||
abbb55f4 NB |
1620 | void btrfs_split_delalloc_extent(struct inode *inode, |
1621 | struct extent_state *orig, u64 split) | |
9ed74f2d | 1622 | { |
dcab6a3b JB |
1623 | u64 size; |
1624 | ||
0ca1f7ce | 1625 | /* not delalloc, ignore it */ |
9ed74f2d | 1626 | if (!(orig->state & EXTENT_DELALLOC)) |
1bf85046 | 1627 | return; |
9ed74f2d | 1628 | |
dcab6a3b JB |
1629 | size = orig->end - orig->start + 1; |
1630 | if (size > BTRFS_MAX_EXTENT_SIZE) { | |
823bb20a | 1631 | u32 num_extents; |
dcab6a3b JB |
1632 | u64 new_size; |
1633 | ||
1634 | /* | |
5c848198 | 1635 | * See the explanation in btrfs_merge_delalloc_extent, the same |
ba117213 | 1636 | * applies here, just in reverse. |
dcab6a3b JB |
1637 | */ |
1638 | new_size = orig->end - split + 1; | |
823bb20a | 1639 | num_extents = count_max_extents(new_size); |
ba117213 | 1640 | new_size = split - orig->start; |
823bb20a DS |
1641 | num_extents += count_max_extents(new_size); |
1642 | if (count_max_extents(size) >= num_extents) | |
dcab6a3b JB |
1643 | return; |
1644 | } | |
1645 | ||
9e0baf60 | 1646 | spin_lock(&BTRFS_I(inode)->lock); |
8b62f87b | 1647 | btrfs_mod_outstanding_extents(BTRFS_I(inode), 1); |
9e0baf60 | 1648 | spin_unlock(&BTRFS_I(inode)->lock); |
9ed74f2d JB |
1649 | } |
1650 | ||
1651 | /* | |
5c848198 NB |
1652 | * Handle merged delayed allocation extents so we can keep track of new extents |
1653 | * that are just merged onto old extents, such as when we are doing sequential | |
1654 | * writes, so we can properly account for the metadata space we'll need. | |
9ed74f2d | 1655 | */ |
5c848198 NB |
1656 | void btrfs_merge_delalloc_extent(struct inode *inode, struct extent_state *new, |
1657 | struct extent_state *other) | |
9ed74f2d | 1658 | { |
dcab6a3b | 1659 | u64 new_size, old_size; |
823bb20a | 1660 | u32 num_extents; |
dcab6a3b | 1661 | |
9ed74f2d JB |
1662 | /* not delalloc, ignore it */ |
1663 | if (!(other->state & EXTENT_DELALLOC)) | |
1bf85046 | 1664 | return; |
9ed74f2d | 1665 | |
8461a3de JB |
1666 | if (new->start > other->start) |
1667 | new_size = new->end - other->start + 1; | |
1668 | else | |
1669 | new_size = other->end - new->start + 1; | |
dcab6a3b JB |
1670 | |
1671 | /* we're not bigger than the max, unreserve the space and go */ | |
1672 | if (new_size <= BTRFS_MAX_EXTENT_SIZE) { | |
1673 | spin_lock(&BTRFS_I(inode)->lock); | |
8b62f87b | 1674 | btrfs_mod_outstanding_extents(BTRFS_I(inode), -1); |
dcab6a3b JB |
1675 | spin_unlock(&BTRFS_I(inode)->lock); |
1676 | return; | |
1677 | } | |
1678 | ||
1679 | /* | |
ba117213 JB |
1680 | * We have to add up either side to figure out how many extents were |
1681 | * accounted for before we merged into one big extent. If the number of | |
1682 | * extents we accounted for is <= the amount we need for the new range | |
1683 | * then we can return, otherwise drop. Think of it like this | |
1684 | * | |
1685 | * [ 4k][MAX_SIZE] | |
1686 | * | |
1687 | * So we've grown the extent by a MAX_SIZE extent, this would mean we | |
1688 | * need 2 outstanding extents, on one side we have 1 and the other side | |
1689 | * we have 1 so they are == and we can return. But in this case | |
1690 | * | |
1691 | * [MAX_SIZE+4k][MAX_SIZE+4k] | |
1692 | * | |
1693 | * Each range on their own accounts for 2 extents, but merged together | |
1694 | * they are only 3 extents worth of accounting, so we need to drop in | |
1695 | * this case. | |
dcab6a3b | 1696 | */ |
ba117213 | 1697 | old_size = other->end - other->start + 1; |
823bb20a | 1698 | num_extents = count_max_extents(old_size); |
ba117213 | 1699 | old_size = new->end - new->start + 1; |
823bb20a DS |
1700 | num_extents += count_max_extents(old_size); |
1701 | if (count_max_extents(new_size) >= num_extents) | |
dcab6a3b JB |
1702 | return; |
1703 | ||
9e0baf60 | 1704 | spin_lock(&BTRFS_I(inode)->lock); |
8b62f87b | 1705 | btrfs_mod_outstanding_extents(BTRFS_I(inode), -1); |
9e0baf60 | 1706 | spin_unlock(&BTRFS_I(inode)->lock); |
9ed74f2d JB |
1707 | } |
1708 | ||
eb73c1b7 MX |
1709 | static void btrfs_add_delalloc_inodes(struct btrfs_root *root, |
1710 | struct inode *inode) | |
1711 | { | |
0b246afa JM |
1712 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
1713 | ||
eb73c1b7 MX |
1714 | spin_lock(&root->delalloc_lock); |
1715 | if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) { | |
1716 | list_add_tail(&BTRFS_I(inode)->delalloc_inodes, | |
1717 | &root->delalloc_inodes); | |
1718 | set_bit(BTRFS_INODE_IN_DELALLOC_LIST, | |
1719 | &BTRFS_I(inode)->runtime_flags); | |
1720 | root->nr_delalloc_inodes++; | |
1721 | if (root->nr_delalloc_inodes == 1) { | |
0b246afa | 1722 | spin_lock(&fs_info->delalloc_root_lock); |
eb73c1b7 MX |
1723 | BUG_ON(!list_empty(&root->delalloc_root)); |
1724 | list_add_tail(&root->delalloc_root, | |
0b246afa JM |
1725 | &fs_info->delalloc_roots); |
1726 | spin_unlock(&fs_info->delalloc_root_lock); | |
eb73c1b7 MX |
1727 | } |
1728 | } | |
1729 | spin_unlock(&root->delalloc_lock); | |
1730 | } | |
1731 | ||
2b877331 NB |
1732 | |
1733 | void __btrfs_del_delalloc_inode(struct btrfs_root *root, | |
1734 | struct btrfs_inode *inode) | |
eb73c1b7 | 1735 | { |
3ffbd68c | 1736 | struct btrfs_fs_info *fs_info = root->fs_info; |
0b246afa | 1737 | |
9e3e97f4 NB |
1738 | if (!list_empty(&inode->delalloc_inodes)) { |
1739 | list_del_init(&inode->delalloc_inodes); | |
eb73c1b7 | 1740 | clear_bit(BTRFS_INODE_IN_DELALLOC_LIST, |
9e3e97f4 | 1741 | &inode->runtime_flags); |
eb73c1b7 MX |
1742 | root->nr_delalloc_inodes--; |
1743 | if (!root->nr_delalloc_inodes) { | |
7c8a0d36 | 1744 | ASSERT(list_empty(&root->delalloc_inodes)); |
0b246afa | 1745 | spin_lock(&fs_info->delalloc_root_lock); |
eb73c1b7 MX |
1746 | BUG_ON(list_empty(&root->delalloc_root)); |
1747 | list_del_init(&root->delalloc_root); | |
0b246afa | 1748 | spin_unlock(&fs_info->delalloc_root_lock); |
eb73c1b7 MX |
1749 | } |
1750 | } | |
2b877331 NB |
1751 | } |
1752 | ||
1753 | static void btrfs_del_delalloc_inode(struct btrfs_root *root, | |
1754 | struct btrfs_inode *inode) | |
1755 | { | |
1756 | spin_lock(&root->delalloc_lock); | |
1757 | __btrfs_del_delalloc_inode(root, inode); | |
eb73c1b7 MX |
1758 | spin_unlock(&root->delalloc_lock); |
1759 | } | |
1760 | ||
d352ac68 | 1761 | /* |
e06a1fc9 NB |
1762 | * Properly track delayed allocation bytes in the inode and to maintain the |
1763 | * list of inodes that have pending delalloc work to be done. | |
d352ac68 | 1764 | */ |
e06a1fc9 NB |
1765 | void btrfs_set_delalloc_extent(struct inode *inode, struct extent_state *state, |
1766 | unsigned *bits) | |
291d673e | 1767 | { |
0b246afa JM |
1768 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
1769 | ||
47059d93 WS |
1770 | if ((*bits & EXTENT_DEFRAG) && !(*bits & EXTENT_DELALLOC)) |
1771 | WARN_ON(1); | |
75eff68e CM |
1772 | /* |
1773 | * set_bit and clear bit hooks normally require _irqsave/restore | |
27160b6b | 1774 | * but in this case, we are only testing for the DELALLOC |
75eff68e CM |
1775 | * bit, which is only set or cleared with irqs on |
1776 | */ | |
0ca1f7ce | 1777 | if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { |
291d673e | 1778 | struct btrfs_root *root = BTRFS_I(inode)->root; |
0ca1f7ce | 1779 | u64 len = state->end + 1 - state->start; |
8b62f87b | 1780 | u32 num_extents = count_max_extents(len); |
70ddc553 | 1781 | bool do_list = !btrfs_is_free_space_inode(BTRFS_I(inode)); |
9ed74f2d | 1782 | |
8b62f87b JB |
1783 | spin_lock(&BTRFS_I(inode)->lock); |
1784 | btrfs_mod_outstanding_extents(BTRFS_I(inode), num_extents); | |
1785 | spin_unlock(&BTRFS_I(inode)->lock); | |
287a0ab9 | 1786 | |
6a3891c5 | 1787 | /* For sanity tests */ |
0b246afa | 1788 | if (btrfs_is_testing(fs_info)) |
6a3891c5 JB |
1789 | return; |
1790 | ||
104b4e51 NB |
1791 | percpu_counter_add_batch(&fs_info->delalloc_bytes, len, |
1792 | fs_info->delalloc_batch); | |
df0af1a5 | 1793 | spin_lock(&BTRFS_I(inode)->lock); |
0ca1f7ce | 1794 | BTRFS_I(inode)->delalloc_bytes += len; |
47059d93 WS |
1795 | if (*bits & EXTENT_DEFRAG) |
1796 | BTRFS_I(inode)->defrag_bytes += len; | |
df0af1a5 | 1797 | if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST, |
eb73c1b7 MX |
1798 | &BTRFS_I(inode)->runtime_flags)) |
1799 | btrfs_add_delalloc_inodes(root, inode); | |
df0af1a5 | 1800 | spin_unlock(&BTRFS_I(inode)->lock); |
291d673e | 1801 | } |
a7e3b975 FM |
1802 | |
1803 | if (!(state->state & EXTENT_DELALLOC_NEW) && | |
1804 | (*bits & EXTENT_DELALLOC_NEW)) { | |
1805 | spin_lock(&BTRFS_I(inode)->lock); | |
1806 | BTRFS_I(inode)->new_delalloc_bytes += state->end + 1 - | |
1807 | state->start; | |
1808 | spin_unlock(&BTRFS_I(inode)->lock); | |
1809 | } | |
291d673e CM |
1810 | } |
1811 | ||
d352ac68 | 1812 | /* |
a36bb5f9 NB |
1813 | * Once a range is no longer delalloc this function ensures that proper |
1814 | * accounting happens. | |
d352ac68 | 1815 | */ |
a36bb5f9 NB |
1816 | void btrfs_clear_delalloc_extent(struct inode *vfs_inode, |
1817 | struct extent_state *state, unsigned *bits) | |
291d673e | 1818 | { |
a36bb5f9 NB |
1819 | struct btrfs_inode *inode = BTRFS_I(vfs_inode); |
1820 | struct btrfs_fs_info *fs_info = btrfs_sb(vfs_inode->i_sb); | |
47059d93 | 1821 | u64 len = state->end + 1 - state->start; |
823bb20a | 1822 | u32 num_extents = count_max_extents(len); |
47059d93 | 1823 | |
4a4b964f FM |
1824 | if ((state->state & EXTENT_DEFRAG) && (*bits & EXTENT_DEFRAG)) { |
1825 | spin_lock(&inode->lock); | |
6fc0ef68 | 1826 | inode->defrag_bytes -= len; |
4a4b964f FM |
1827 | spin_unlock(&inode->lock); |
1828 | } | |
47059d93 | 1829 | |
75eff68e CM |
1830 | /* |
1831 | * set_bit and clear bit hooks normally require _irqsave/restore | |
27160b6b | 1832 | * but in this case, we are only testing for the DELALLOC |
75eff68e CM |
1833 | * bit, which is only set or cleared with irqs on |
1834 | */ | |
0ca1f7ce | 1835 | if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { |
6fc0ef68 | 1836 | struct btrfs_root *root = inode->root; |
83eea1f1 | 1837 | bool do_list = !btrfs_is_free_space_inode(inode); |
bcbfce8a | 1838 | |
8b62f87b JB |
1839 | spin_lock(&inode->lock); |
1840 | btrfs_mod_outstanding_extents(inode, -num_extents); | |
1841 | spin_unlock(&inode->lock); | |
0ca1f7ce | 1842 | |
b6d08f06 JB |
1843 | /* |
1844 | * We don't reserve metadata space for space cache inodes so we | |
52042d8e | 1845 | * don't need to call delalloc_release_metadata if there is an |
b6d08f06 JB |
1846 | * error. |
1847 | */ | |
a315e68f | 1848 | if (*bits & EXTENT_CLEAR_META_RESV && |
0b246afa | 1849 | root != fs_info->tree_root) |
43b18595 | 1850 | btrfs_delalloc_release_metadata(inode, len, false); |
0ca1f7ce | 1851 | |
6a3891c5 | 1852 | /* For sanity tests. */ |
0b246afa | 1853 | if (btrfs_is_testing(fs_info)) |
6a3891c5 JB |
1854 | return; |
1855 | ||
a315e68f FM |
1856 | if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID && |
1857 | do_list && !(state->state & EXTENT_NORESERVE) && | |
1858 | (*bits & EXTENT_CLEAR_DATA_RESV)) | |
6fc0ef68 NB |
1859 | btrfs_free_reserved_data_space_noquota( |
1860 | &inode->vfs_inode, | |
51773bec | 1861 | state->start, len); |
9ed74f2d | 1862 | |
104b4e51 NB |
1863 | percpu_counter_add_batch(&fs_info->delalloc_bytes, -len, |
1864 | fs_info->delalloc_batch); | |
6fc0ef68 NB |
1865 | spin_lock(&inode->lock); |
1866 | inode->delalloc_bytes -= len; | |
1867 | if (do_list && inode->delalloc_bytes == 0 && | |
df0af1a5 | 1868 | test_bit(BTRFS_INODE_IN_DELALLOC_LIST, |
9e3e97f4 | 1869 | &inode->runtime_flags)) |
eb73c1b7 | 1870 | btrfs_del_delalloc_inode(root, inode); |
6fc0ef68 | 1871 | spin_unlock(&inode->lock); |
291d673e | 1872 | } |
a7e3b975 FM |
1873 | |
1874 | if ((state->state & EXTENT_DELALLOC_NEW) && | |
1875 | (*bits & EXTENT_DELALLOC_NEW)) { | |
1876 | spin_lock(&inode->lock); | |
1877 | ASSERT(inode->new_delalloc_bytes >= len); | |
1878 | inode->new_delalloc_bytes -= len; | |
1879 | spin_unlock(&inode->lock); | |
1880 | } | |
291d673e CM |
1881 | } |
1882 | ||
d352ac68 | 1883 | /* |
da12fe54 NB |
1884 | * btrfs_bio_fits_in_stripe - Checks whether the size of the given bio will fit |
1885 | * in a chunk's stripe. This function ensures that bios do not span a | |
1886 | * stripe/chunk | |
6f034ece | 1887 | * |
da12fe54 NB |
1888 | * @page - The page we are about to add to the bio |
1889 | * @size - size we want to add to the bio | |
1890 | * @bio - bio we want to ensure is smaller than a stripe | |
1891 | * @bio_flags - flags of the bio | |
1892 | * | |
1893 | * return 1 if page cannot be added to the bio | |
1894 | * return 0 if page can be added to the bio | |
6f034ece | 1895 | * return error otherwise |
d352ac68 | 1896 | */ |
da12fe54 NB |
1897 | int btrfs_bio_fits_in_stripe(struct page *page, size_t size, struct bio *bio, |
1898 | unsigned long bio_flags) | |
239b14b3 | 1899 | { |
0b246afa JM |
1900 | struct inode *inode = page->mapping->host; |
1901 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); | |
4f024f37 | 1902 | u64 logical = (u64)bio->bi_iter.bi_sector << 9; |
239b14b3 CM |
1903 | u64 length = 0; |
1904 | u64 map_length; | |
239b14b3 CM |
1905 | int ret; |
1906 | ||
771ed689 CM |
1907 | if (bio_flags & EXTENT_BIO_COMPRESSED) |
1908 | return 0; | |
1909 | ||
4f024f37 | 1910 | length = bio->bi_iter.bi_size; |
239b14b3 | 1911 | map_length = length; |
0b246afa JM |
1912 | ret = btrfs_map_block(fs_info, btrfs_op(bio), logical, &map_length, |
1913 | NULL, 0); | |
6f034ece LB |
1914 | if (ret < 0) |
1915 | return ret; | |
d397712b | 1916 | if (map_length < length + size) |
239b14b3 | 1917 | return 1; |
3444a972 | 1918 | return 0; |
239b14b3 CM |
1919 | } |
1920 | ||
d352ac68 CM |
1921 | /* |
1922 | * in order to insert checksums into the metadata in large chunks, | |
1923 | * we wait until bio submission time. All the pages in the bio are | |
1924 | * checksummed and sums are attached onto the ordered extent record. | |
1925 | * | |
1926 | * At IO completion time the cums attached on the ordered extent record | |
1927 | * are inserted into the btree | |
1928 | */ | |
d0ee3934 | 1929 | static blk_status_t btrfs_submit_bio_start(void *private_data, struct bio *bio, |
eaf25d93 | 1930 | u64 bio_offset) |
065631f6 | 1931 | { |
c6100a4b | 1932 | struct inode *inode = private_data; |
4e4cbee9 | 1933 | blk_status_t ret = 0; |
e015640f | 1934 | |
2ff7e61e | 1935 | ret = btrfs_csum_one_bio(inode, bio, 0, 0); |
79787eaa | 1936 | BUG_ON(ret); /* -ENOMEM */ |
4a69a410 CM |
1937 | return 0; |
1938 | } | |
e015640f | 1939 | |
d352ac68 | 1940 | /* |
cad321ad | 1941 | * extent_io.c submission hook. This does the right thing for csum calculation |
4c274bc6 LB |
1942 | * on write, or reading the csums from the tree before a read. |
1943 | * | |
1944 | * Rules about async/sync submit, | |
1945 | * a) read: sync submit | |
1946 | * | |
1947 | * b) write without checksum: sync submit | |
1948 | * | |
1949 | * c) write with checksum: | |
1950 | * c-1) if bio is issued by fsync: sync submit | |
1951 | * (sync_writers != 0) | |
1952 | * | |
1953 | * c-2) if root is reloc root: sync submit | |
1954 | * (only in case of buffered IO) | |
1955 | * | |
1956 | * c-3) otherwise: async submit | |
d352ac68 | 1957 | */ |
8c27cb35 | 1958 | static blk_status_t btrfs_submit_bio_hook(void *private_data, struct bio *bio, |
c6100a4b JB |
1959 | int mirror_num, unsigned long bio_flags, |
1960 | u64 bio_offset) | |
44b8bd7e | 1961 | { |
c6100a4b | 1962 | struct inode *inode = private_data; |
0b246afa | 1963 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
44b8bd7e | 1964 | struct btrfs_root *root = BTRFS_I(inode)->root; |
0d51e28a | 1965 | enum btrfs_wq_endio_type metadata = BTRFS_WQ_ENDIO_DATA; |
4e4cbee9 | 1966 | blk_status_t ret = 0; |
19b9bdb0 | 1967 | int skip_sum; |
b812ce28 | 1968 | int async = !atomic_read(&BTRFS_I(inode)->sync_writers); |
44b8bd7e | 1969 | |
6cbff00f | 1970 | skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM; |
cad321ad | 1971 | |
70ddc553 | 1972 | if (btrfs_is_free_space_inode(BTRFS_I(inode))) |
0d51e28a | 1973 | metadata = BTRFS_WQ_ENDIO_FREE_SPACE; |
0417341e | 1974 | |
37226b21 | 1975 | if (bio_op(bio) != REQ_OP_WRITE) { |
0b246afa | 1976 | ret = btrfs_bio_wq_end_io(fs_info, bio, metadata); |
5fd02043 | 1977 | if (ret) |
61891923 | 1978 | goto out; |
5fd02043 | 1979 | |
d20f7043 | 1980 | if (bio_flags & EXTENT_BIO_COMPRESSED) { |
61891923 SB |
1981 | ret = btrfs_submit_compressed_read(inode, bio, |
1982 | mirror_num, | |
1983 | bio_flags); | |
1984 | goto out; | |
c2db1073 | 1985 | } else if (!skip_sum) { |
2ff7e61e | 1986 | ret = btrfs_lookup_bio_sums(inode, bio, NULL); |
c2db1073 | 1987 | if (ret) |
61891923 | 1988 | goto out; |
c2db1073 | 1989 | } |
4d1b5fb4 | 1990 | goto mapit; |
b812ce28 | 1991 | } else if (async && !skip_sum) { |
17d217fe YZ |
1992 | /* csum items have already been cloned */ |
1993 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID) | |
1994 | goto mapit; | |
19b9bdb0 | 1995 | /* we're doing a write, do the async checksumming */ |
c6100a4b JB |
1996 | ret = btrfs_wq_submit_bio(fs_info, bio, mirror_num, bio_flags, |
1997 | bio_offset, inode, | |
e288c080 | 1998 | btrfs_submit_bio_start); |
61891923 | 1999 | goto out; |
b812ce28 | 2000 | } else if (!skip_sum) { |
2ff7e61e | 2001 | ret = btrfs_csum_one_bio(inode, bio, 0, 0); |
b812ce28 JB |
2002 | if (ret) |
2003 | goto out; | |
19b9bdb0 CM |
2004 | } |
2005 | ||
0b86a832 | 2006 | mapit: |
2ff7e61e | 2007 | ret = btrfs_map_bio(fs_info, bio, mirror_num, 0); |
61891923 SB |
2008 | |
2009 | out: | |
4e4cbee9 CH |
2010 | if (ret) { |
2011 | bio->bi_status = ret; | |
4246a0b6 CH |
2012 | bio_endio(bio); |
2013 | } | |
61891923 | 2014 | return ret; |
065631f6 | 2015 | } |
6885f308 | 2016 | |
d352ac68 CM |
2017 | /* |
2018 | * given a list of ordered sums record them in the inode. This happens | |
2019 | * at IO completion time based on sums calculated at bio submission time. | |
2020 | */ | |
ba1da2f4 | 2021 | static noinline int add_pending_csums(struct btrfs_trans_handle *trans, |
df9f628e | 2022 | struct inode *inode, struct list_head *list) |
e6dcd2dc | 2023 | { |
e6dcd2dc | 2024 | struct btrfs_ordered_sum *sum; |
ac01f26a | 2025 | int ret; |
e6dcd2dc | 2026 | |
c6e30871 | 2027 | list_for_each_entry(sum, list, list) { |
7c2871a2 | 2028 | trans->adding_csums = true; |
ac01f26a | 2029 | ret = btrfs_csum_file_blocks(trans, |
d20f7043 | 2030 | BTRFS_I(inode)->root->fs_info->csum_root, sum); |
7c2871a2 | 2031 | trans->adding_csums = false; |
ac01f26a NB |
2032 | if (ret) |
2033 | return ret; | |
e6dcd2dc CM |
2034 | } |
2035 | return 0; | |
2036 | } | |
2037 | ||
2ac55d41 | 2038 | int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end, |
e3b8a485 | 2039 | unsigned int extra_bits, |
ba8b04c1 | 2040 | struct extent_state **cached_state, int dedupe) |
ea8c2819 | 2041 | { |
fdb1e121 | 2042 | WARN_ON(PAGE_ALIGNED(end)); |
ea8c2819 | 2043 | return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end, |
e3b8a485 | 2044 | extra_bits, cached_state); |
ea8c2819 CM |
2045 | } |
2046 | ||
d352ac68 | 2047 | /* see btrfs_writepage_start_hook for details on why this is required */ |
247e743c CM |
2048 | struct btrfs_writepage_fixup { |
2049 | struct page *page; | |
2050 | struct btrfs_work work; | |
2051 | }; | |
2052 | ||
b2950863 | 2053 | static void btrfs_writepage_fixup_worker(struct btrfs_work *work) |
247e743c CM |
2054 | { |
2055 | struct btrfs_writepage_fixup *fixup; | |
2056 | struct btrfs_ordered_extent *ordered; | |
2ac55d41 | 2057 | struct extent_state *cached_state = NULL; |
364ecf36 | 2058 | struct extent_changeset *data_reserved = NULL; |
247e743c CM |
2059 | struct page *page; |
2060 | struct inode *inode; | |
2061 | u64 page_start; | |
2062 | u64 page_end; | |
87826df0 | 2063 | int ret; |
247e743c CM |
2064 | |
2065 | fixup = container_of(work, struct btrfs_writepage_fixup, work); | |
2066 | page = fixup->page; | |
4a096752 | 2067 | again: |
247e743c CM |
2068 | lock_page(page); |
2069 | if (!page->mapping || !PageDirty(page) || !PageChecked(page)) { | |
2070 | ClearPageChecked(page); | |
2071 | goto out_page; | |
2072 | } | |
2073 | ||
2074 | inode = page->mapping->host; | |
2075 | page_start = page_offset(page); | |
09cbfeaf | 2076 | page_end = page_offset(page) + PAGE_SIZE - 1; |
247e743c | 2077 | |
ff13db41 | 2078 | lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, |
d0082371 | 2079 | &cached_state); |
4a096752 CM |
2080 | |
2081 | /* already ordered? We're done */ | |
8b62b72b | 2082 | if (PagePrivate2(page)) |
247e743c | 2083 | goto out; |
4a096752 | 2084 | |
a776c6fa | 2085 | ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start, |
09cbfeaf | 2086 | PAGE_SIZE); |
4a096752 | 2087 | if (ordered) { |
2ac55d41 | 2088 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, |
e43bbe5e | 2089 | page_end, &cached_state); |
4a096752 CM |
2090 | unlock_page(page); |
2091 | btrfs_start_ordered_extent(inode, ordered, 1); | |
87826df0 | 2092 | btrfs_put_ordered_extent(ordered); |
4a096752 CM |
2093 | goto again; |
2094 | } | |
247e743c | 2095 | |
364ecf36 | 2096 | ret = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start, |
09cbfeaf | 2097 | PAGE_SIZE); |
87826df0 JM |
2098 | if (ret) { |
2099 | mapping_set_error(page->mapping, ret); | |
2100 | end_extent_writepage(page, ret, page_start, page_end); | |
2101 | ClearPageChecked(page); | |
2102 | goto out; | |
2103 | } | |
2104 | ||
f3038ee3 NB |
2105 | ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0, |
2106 | &cached_state, 0); | |
2107 | if (ret) { | |
2108 | mapping_set_error(page->mapping, ret); | |
2109 | end_extent_writepage(page, ret, page_start, page_end); | |
2110 | ClearPageChecked(page); | |
2111 | goto out; | |
2112 | } | |
2113 | ||
247e743c | 2114 | ClearPageChecked(page); |
87826df0 | 2115 | set_page_dirty(page); |
43b18595 | 2116 | btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, false); |
247e743c | 2117 | out: |
2ac55d41 | 2118 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end, |
e43bbe5e | 2119 | &cached_state); |
247e743c CM |
2120 | out_page: |
2121 | unlock_page(page); | |
09cbfeaf | 2122 | put_page(page); |
b897abec | 2123 | kfree(fixup); |
364ecf36 | 2124 | extent_changeset_free(data_reserved); |
247e743c CM |
2125 | } |
2126 | ||
2127 | /* | |
2128 | * There are a few paths in the higher layers of the kernel that directly | |
2129 | * set the page dirty bit without asking the filesystem if it is a | |
2130 | * good idea. This causes problems because we want to make sure COW | |
2131 | * properly happens and the data=ordered rules are followed. | |
2132 | * | |
c8b97818 | 2133 | * In our case any range that doesn't have the ORDERED bit set |
247e743c CM |
2134 | * hasn't been properly setup for IO. We kick off an async process |
2135 | * to fix it up. The async helper will wait for ordered extents, set | |
2136 | * the delalloc bit and make it safe to write the page. | |
2137 | */ | |
d75855b4 | 2138 | int btrfs_writepage_cow_fixup(struct page *page, u64 start, u64 end) |
247e743c CM |
2139 | { |
2140 | struct inode *inode = page->mapping->host; | |
0b246afa | 2141 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
247e743c | 2142 | struct btrfs_writepage_fixup *fixup; |
247e743c | 2143 | |
8b62b72b CM |
2144 | /* this page is properly in the ordered list */ |
2145 | if (TestClearPagePrivate2(page)) | |
247e743c CM |
2146 | return 0; |
2147 | ||
2148 | if (PageChecked(page)) | |
2149 | return -EAGAIN; | |
2150 | ||
2151 | fixup = kzalloc(sizeof(*fixup), GFP_NOFS); | |
2152 | if (!fixup) | |
2153 | return -EAGAIN; | |
f421950f | 2154 | |
247e743c | 2155 | SetPageChecked(page); |
09cbfeaf | 2156 | get_page(page); |
9e0af237 LB |
2157 | btrfs_init_work(&fixup->work, btrfs_fixup_helper, |
2158 | btrfs_writepage_fixup_worker, NULL, NULL); | |
247e743c | 2159 | fixup->page = page; |
0b246afa | 2160 | btrfs_queue_work(fs_info->fixup_workers, &fixup->work); |
87826df0 | 2161 | return -EBUSY; |
247e743c CM |
2162 | } |
2163 | ||
d899e052 YZ |
2164 | static int insert_reserved_file_extent(struct btrfs_trans_handle *trans, |
2165 | struct inode *inode, u64 file_pos, | |
2166 | u64 disk_bytenr, u64 disk_num_bytes, | |
2167 | u64 num_bytes, u64 ram_bytes, | |
2168 | u8 compression, u8 encryption, | |
2169 | u16 other_encoding, int extent_type) | |
2170 | { | |
2171 | struct btrfs_root *root = BTRFS_I(inode)->root; | |
2172 | struct btrfs_file_extent_item *fi; | |
2173 | struct btrfs_path *path; | |
2174 | struct extent_buffer *leaf; | |
2175 | struct btrfs_key ins; | |
a12b877b | 2176 | u64 qg_released; |
1acae57b | 2177 | int extent_inserted = 0; |
d899e052 YZ |
2178 | int ret; |
2179 | ||
2180 | path = btrfs_alloc_path(); | |
d8926bb3 MF |
2181 | if (!path) |
2182 | return -ENOMEM; | |
d899e052 | 2183 | |
a1ed835e CM |
2184 | /* |
2185 | * we may be replacing one extent in the tree with another. | |
2186 | * The new extent is pinned in the extent map, and we don't want | |
2187 | * to drop it from the cache until it is completely in the btree. | |
2188 | * | |
2189 | * So, tell btrfs_drop_extents to leave this extent in the cache. | |
2190 | * the caller is expected to unpin it and allow it to be merged | |
2191 | * with the others. | |
2192 | */ | |
1acae57b FDBM |
2193 | ret = __btrfs_drop_extents(trans, root, inode, path, file_pos, |
2194 | file_pos + num_bytes, NULL, 0, | |
2195 | 1, sizeof(*fi), &extent_inserted); | |
79787eaa JM |
2196 | if (ret) |
2197 | goto out; | |
d899e052 | 2198 | |
1acae57b | 2199 | if (!extent_inserted) { |
4a0cc7ca | 2200 | ins.objectid = btrfs_ino(BTRFS_I(inode)); |
1acae57b FDBM |
2201 | ins.offset = file_pos; |
2202 | ins.type = BTRFS_EXTENT_DATA_KEY; | |
2203 | ||
2204 | path->leave_spinning = 1; | |
2205 | ret = btrfs_insert_empty_item(trans, root, path, &ins, | |
2206 | sizeof(*fi)); | |
2207 | if (ret) | |
2208 | goto out; | |
2209 | } | |
d899e052 YZ |
2210 | leaf = path->nodes[0]; |
2211 | fi = btrfs_item_ptr(leaf, path->slots[0], | |
2212 | struct btrfs_file_extent_item); | |
2213 | btrfs_set_file_extent_generation(leaf, fi, trans->transid); | |
2214 | btrfs_set_file_extent_type(leaf, fi, extent_type); | |
2215 | btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr); | |
2216 | btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes); | |
2217 | btrfs_set_file_extent_offset(leaf, fi, 0); | |
2218 | btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes); | |
2219 | btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes); | |
2220 | btrfs_set_file_extent_compression(leaf, fi, compression); | |
2221 | btrfs_set_file_extent_encryption(leaf, fi, encryption); | |
2222 | btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding); | |
b9473439 | 2223 | |
d899e052 | 2224 | btrfs_mark_buffer_dirty(leaf); |
ce195332 | 2225 | btrfs_release_path(path); |
d899e052 YZ |
2226 | |
2227 | inode_add_bytes(inode, num_bytes); | |
d899e052 YZ |
2228 | |
2229 | ins.objectid = disk_bytenr; | |
2230 | ins.offset = disk_num_bytes; | |
2231 | ins.type = BTRFS_EXTENT_ITEM_KEY; | |
a12b877b | 2232 | |
297d750b | 2233 | /* |
5846a3c2 QW |
2234 | * Release the reserved range from inode dirty range map, as it is |
2235 | * already moved into delayed_ref_head | |
297d750b | 2236 | */ |
a12b877b QW |
2237 | ret = btrfs_qgroup_release_data(inode, file_pos, ram_bytes); |
2238 | if (ret < 0) | |
2239 | goto out; | |
2240 | qg_released = ret; | |
84f7d8e6 JB |
2241 | ret = btrfs_alloc_reserved_file_extent(trans, root, |
2242 | btrfs_ino(BTRFS_I(inode)), | |
2243 | file_pos, qg_released, &ins); | |
79787eaa | 2244 | out: |
d899e052 | 2245 | btrfs_free_path(path); |
b9473439 | 2246 | |
79787eaa | 2247 | return ret; |
d899e052 YZ |
2248 | } |
2249 | ||
38c227d8 LB |
2250 | /* snapshot-aware defrag */ |
2251 | struct sa_defrag_extent_backref { | |
2252 | struct rb_node node; | |
2253 | struct old_sa_defrag_extent *old; | |
2254 | u64 root_id; | |
2255 | u64 inum; | |
2256 | u64 file_pos; | |
2257 | u64 extent_offset; | |
2258 | u64 num_bytes; | |
2259 | u64 generation; | |
2260 | }; | |
2261 | ||
2262 | struct old_sa_defrag_extent { | |
2263 | struct list_head list; | |
2264 | struct new_sa_defrag_extent *new; | |
2265 | ||
2266 | u64 extent_offset; | |
2267 | u64 bytenr; | |
2268 | u64 offset; | |
2269 | u64 len; | |
2270 | int count; | |
2271 | }; | |
2272 | ||
2273 | struct new_sa_defrag_extent { | |
2274 | struct rb_root root; | |
2275 | struct list_head head; | |
2276 | struct btrfs_path *path; | |
2277 | struct inode *inode; | |
2278 | u64 file_pos; | |
2279 | u64 len; | |
2280 | u64 bytenr; | |
2281 | u64 disk_len; | |
2282 | u8 compress_type; | |
2283 | }; | |
2284 | ||
2285 | static int backref_comp(struct sa_defrag_extent_backref *b1, | |
2286 | struct sa_defrag_extent_backref *b2) | |
2287 | { | |
2288 | if (b1->root_id < b2->root_id) | |
2289 | return -1; | |
2290 | else if (b1->root_id > b2->root_id) | |
2291 | return 1; | |
2292 | ||
2293 | if (b1->inum < b2->inum) | |
2294 | return -1; | |
2295 | else if (b1->inum > b2->inum) | |
2296 | return 1; | |
2297 | ||
2298 | if (b1->file_pos < b2->file_pos) | |
2299 | return -1; | |
2300 | else if (b1->file_pos > b2->file_pos) | |
2301 | return 1; | |
2302 | ||
2303 | /* | |
2304 | * [------------------------------] ===> (a range of space) | |
2305 | * |<--->| |<---->| =============> (fs/file tree A) | |
2306 | * |<---------------------------->| ===> (fs/file tree B) | |
2307 | * | |
2308 | * A range of space can refer to two file extents in one tree while | |
2309 | * refer to only one file extent in another tree. | |
2310 | * | |
2311 | * So we may process a disk offset more than one time(two extents in A) | |
2312 | * and locate at the same extent(one extent in B), then insert two same | |
2313 | * backrefs(both refer to the extent in B). | |
2314 | */ | |
2315 | return 0; | |
2316 | } | |
2317 | ||
2318 | static void backref_insert(struct rb_root *root, | |
2319 | struct sa_defrag_extent_backref *backref) | |
2320 | { | |
2321 | struct rb_node **p = &root->rb_node; | |
2322 | struct rb_node *parent = NULL; | |
2323 | struct sa_defrag_extent_backref *entry; | |
2324 | int ret; | |
2325 | ||
2326 | while (*p) { | |
2327 | parent = *p; | |
2328 | entry = rb_entry(parent, struct sa_defrag_extent_backref, node); | |
2329 | ||
2330 | ret = backref_comp(backref, entry); | |
2331 | if (ret < 0) | |
2332 | p = &(*p)->rb_left; | |
2333 | else | |
2334 | p = &(*p)->rb_right; | |
2335 | } | |
2336 | ||
2337 | rb_link_node(&backref->node, parent, p); | |
2338 | rb_insert_color(&backref->node, root); | |
2339 | } | |
2340 | ||
2341 | /* | |
2342 | * Note the backref might has changed, and in this case we just return 0. | |
2343 | */ | |
2344 | static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id, | |
2345 | void *ctx) | |
2346 | { | |
2347 | struct btrfs_file_extent_item *extent; | |
38c227d8 LB |
2348 | struct old_sa_defrag_extent *old = ctx; |
2349 | struct new_sa_defrag_extent *new = old->new; | |
2350 | struct btrfs_path *path = new->path; | |
2351 | struct btrfs_key key; | |
2352 | struct btrfs_root *root; | |
2353 | struct sa_defrag_extent_backref *backref; | |
2354 | struct extent_buffer *leaf; | |
2355 | struct inode *inode = new->inode; | |
0b246afa | 2356 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
38c227d8 LB |
2357 | int slot; |
2358 | int ret; | |
2359 | u64 extent_offset; | |
2360 | u64 num_bytes; | |
2361 | ||
2362 | if (BTRFS_I(inode)->root->root_key.objectid == root_id && | |
4a0cc7ca | 2363 | inum == btrfs_ino(BTRFS_I(inode))) |
38c227d8 LB |
2364 | return 0; |
2365 | ||
2366 | key.objectid = root_id; | |
2367 | key.type = BTRFS_ROOT_ITEM_KEY; | |
2368 | key.offset = (u64)-1; | |
2369 | ||
38c227d8 LB |
2370 | root = btrfs_read_fs_root_no_name(fs_info, &key); |
2371 | if (IS_ERR(root)) { | |
2372 | if (PTR_ERR(root) == -ENOENT) | |
2373 | return 0; | |
2374 | WARN_ON(1); | |
ab8d0fc4 | 2375 | btrfs_debug(fs_info, "inum=%llu, offset=%llu, root_id=%llu", |
38c227d8 LB |
2376 | inum, offset, root_id); |
2377 | return PTR_ERR(root); | |
2378 | } | |
2379 | ||
2380 | key.objectid = inum; | |
2381 | key.type = BTRFS_EXTENT_DATA_KEY; | |
2382 | if (offset > (u64)-1 << 32) | |
2383 | key.offset = 0; | |
2384 | else | |
2385 | key.offset = offset; | |
2386 | ||
2387 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | |
fae7f21c | 2388 | if (WARN_ON(ret < 0)) |
38c227d8 | 2389 | return ret; |
50f1319c | 2390 | ret = 0; |
38c227d8 LB |
2391 | |
2392 | while (1) { | |
2393 | cond_resched(); | |
2394 | ||
2395 | leaf = path->nodes[0]; | |
2396 | slot = path->slots[0]; | |
2397 | ||
2398 | if (slot >= btrfs_header_nritems(leaf)) { | |
2399 | ret = btrfs_next_leaf(root, path); | |
2400 | if (ret < 0) { | |
2401 | goto out; | |
2402 | } else if (ret > 0) { | |
2403 | ret = 0; | |
2404 | goto out; | |
2405 | } | |
2406 | continue; | |
2407 | } | |
2408 | ||
2409 | path->slots[0]++; | |
2410 | ||
2411 | btrfs_item_key_to_cpu(leaf, &key, slot); | |
2412 | ||
2413 | if (key.objectid > inum) | |
2414 | goto out; | |
2415 | ||
2416 | if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY) | |
2417 | continue; | |
2418 | ||
2419 | extent = btrfs_item_ptr(leaf, slot, | |
2420 | struct btrfs_file_extent_item); | |
2421 | ||
2422 | if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr) | |
2423 | continue; | |
2424 | ||
e68afa49 LB |
2425 | /* |
2426 | * 'offset' refers to the exact key.offset, | |
2427 | * NOT the 'offset' field in btrfs_extent_data_ref, ie. | |
2428 | * (key.offset - extent_offset). | |
2429 | */ | |
2430 | if (key.offset != offset) | |
38c227d8 LB |
2431 | continue; |
2432 | ||
e68afa49 | 2433 | extent_offset = btrfs_file_extent_offset(leaf, extent); |
38c227d8 | 2434 | num_bytes = btrfs_file_extent_num_bytes(leaf, extent); |
e68afa49 | 2435 | |
38c227d8 LB |
2436 | if (extent_offset >= old->extent_offset + old->offset + |
2437 | old->len || extent_offset + num_bytes <= | |
2438 | old->extent_offset + old->offset) | |
2439 | continue; | |
38c227d8 LB |
2440 | break; |
2441 | } | |
2442 | ||
2443 | backref = kmalloc(sizeof(*backref), GFP_NOFS); | |
2444 | if (!backref) { | |
2445 | ret = -ENOENT; | |
2446 | goto out; | |
2447 | } | |
2448 | ||
2449 | backref->root_id = root_id; | |
2450 | backref->inum = inum; | |
e68afa49 | 2451 | backref->file_pos = offset; |
38c227d8 LB |
2452 | backref->num_bytes = num_bytes; |
2453 | backref->extent_offset = extent_offset; | |
2454 | backref->generation = btrfs_file_extent_generation(leaf, extent); | |
2455 | backref->old = old; | |
2456 | backref_insert(&new->root, backref); | |
2457 | old->count++; | |
2458 | out: | |
2459 | btrfs_release_path(path); | |
2460 | WARN_ON(ret); | |
2461 | return ret; | |
2462 | } | |
2463 | ||
2464 | static noinline bool record_extent_backrefs(struct btrfs_path *path, | |
2465 | struct new_sa_defrag_extent *new) | |
2466 | { | |
0b246afa | 2467 | struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb); |
38c227d8 LB |
2468 | struct old_sa_defrag_extent *old, *tmp; |
2469 | int ret; | |
2470 | ||
2471 | new->path = path; | |
2472 | ||
2473 | list_for_each_entry_safe(old, tmp, &new->head, list) { | |
e68afa49 LB |
2474 | ret = iterate_inodes_from_logical(old->bytenr + |
2475 | old->extent_offset, fs_info, | |
38c227d8 | 2476 | path, record_one_backref, |
c995ab3c | 2477 | old, false); |
4724b106 JB |
2478 | if (ret < 0 && ret != -ENOENT) |
2479 | return false; | |
38c227d8 LB |
2480 | |
2481 | /* no backref to be processed for this extent */ | |
2482 | if (!old->count) { | |
2483 | list_del(&old->list); | |
2484 | kfree(old); | |
2485 | } | |
2486 | } | |
2487 | ||
2488 | if (list_empty(&new->head)) | |
2489 | return false; | |
2490 | ||
2491 | return true; | |
2492 | } | |
2493 | ||
2494 | static int relink_is_mergable(struct extent_buffer *leaf, | |
2495 | struct btrfs_file_extent_item *fi, | |
116e0024 | 2496 | struct new_sa_defrag_extent *new) |
38c227d8 | 2497 | { |
116e0024 | 2498 | if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr) |
38c227d8 LB |
2499 | return 0; |
2500 | ||
2501 | if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG) | |
2502 | return 0; | |
2503 | ||
116e0024 LB |
2504 | if (btrfs_file_extent_compression(leaf, fi) != new->compress_type) |
2505 | return 0; | |
2506 | ||
2507 | if (btrfs_file_extent_encryption(leaf, fi) || | |
38c227d8 LB |
2508 | btrfs_file_extent_other_encoding(leaf, fi)) |
2509 | return 0; | |
2510 | ||
2511 | return 1; | |
2512 | } | |
2513 | ||
2514 | /* | |
2515 | * Note the backref might has changed, and in this case we just return 0. | |
2516 | */ | |
2517 | static noinline int relink_extent_backref(struct btrfs_path *path, | |
2518 | struct sa_defrag_extent_backref *prev, | |
2519 | struct sa_defrag_extent_backref *backref) | |
2520 | { | |
2521 | struct btrfs_file_extent_item *extent; | |
2522 | struct btrfs_file_extent_item *item; | |
2523 | struct btrfs_ordered_extent *ordered; | |
2524 | struct btrfs_trans_handle *trans; | |
38c227d8 LB |
2525 | struct btrfs_root *root; |
2526 | struct btrfs_key key; | |
2527 | struct extent_buffer *leaf; | |
2528 | struct old_sa_defrag_extent *old = backref->old; | |
2529 | struct new_sa_defrag_extent *new = old->new; | |
0b246afa | 2530 | struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb); |
38c227d8 LB |
2531 | struct inode *inode; |
2532 | struct extent_state *cached = NULL; | |
2533 | int ret = 0; | |
2534 | u64 start; | |
2535 | u64 len; | |
2536 | u64 lock_start; | |
2537 | u64 lock_end; | |
2538 | bool merge = false; | |
2539 | int index; | |
2540 | ||
2541 | if (prev && prev->root_id == backref->root_id && | |
2542 | prev->inum == backref->inum && | |
2543 | prev->file_pos + prev->num_bytes == backref->file_pos) | |
2544 | merge = true; | |
2545 | ||
2546 | /* step 1: get root */ | |
2547 | key.objectid = backref->root_id; | |
2548 | key.type = BTRFS_ROOT_ITEM_KEY; | |
2549 | key.offset = (u64)-1; | |
2550 | ||
38c227d8 LB |
2551 | index = srcu_read_lock(&fs_info->subvol_srcu); |
2552 | ||
2553 | root = btrfs_read_fs_root_no_name(fs_info, &key); | |
2554 | if (IS_ERR(root)) { | |
2555 | srcu_read_unlock(&fs_info->subvol_srcu, index); | |
2556 | if (PTR_ERR(root) == -ENOENT) | |
2557 | return 0; | |
2558 | return PTR_ERR(root); | |
2559 | } | |
38c227d8 | 2560 | |
bcbba5e6 WS |
2561 | if (btrfs_root_readonly(root)) { |
2562 | srcu_read_unlock(&fs_info->subvol_srcu, index); | |
2563 | return 0; | |
2564 | } | |
2565 | ||
38c227d8 LB |
2566 | /* step 2: get inode */ |
2567 | key.objectid = backref->inum; | |
2568 | key.type = BTRFS_INODE_ITEM_KEY; | |
2569 | key.offset = 0; | |
2570 | ||
2571 | inode = btrfs_iget(fs_info->sb, &key, root, NULL); | |
2572 | if (IS_ERR(inode)) { | |
2573 | srcu_read_unlock(&fs_info->subvol_srcu, index); | |
2574 | return 0; | |
2575 | } | |
2576 | ||
2577 | srcu_read_unlock(&fs_info->subvol_srcu, index); | |
2578 | ||
2579 | /* step 3: relink backref */ | |
2580 | lock_start = backref->file_pos; | |
2581 | lock_end = backref->file_pos + backref->num_bytes - 1; | |
2582 | lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end, | |
ff13db41 | 2583 | &cached); |
38c227d8 LB |
2584 | |
2585 | ordered = btrfs_lookup_first_ordered_extent(inode, lock_end); | |
2586 | if (ordered) { | |
2587 | btrfs_put_ordered_extent(ordered); | |
2588 | goto out_unlock; | |
2589 | } | |
2590 | ||
2591 | trans = btrfs_join_transaction(root); | |
2592 | if (IS_ERR(trans)) { | |
2593 | ret = PTR_ERR(trans); | |
2594 | goto out_unlock; | |
2595 | } | |
2596 | ||
2597 | key.objectid = backref->inum; | |
2598 | key.type = BTRFS_EXTENT_DATA_KEY; | |
2599 | key.offset = backref->file_pos; | |
2600 | ||
2601 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | |
2602 | if (ret < 0) { | |
2603 | goto out_free_path; | |
2604 | } else if (ret > 0) { | |
2605 | ret = 0; | |
2606 | goto out_free_path; | |
2607 | } | |
2608 | ||
2609 | extent = btrfs_item_ptr(path->nodes[0], path->slots[0], | |
2610 | struct btrfs_file_extent_item); | |
2611 | ||
2612 | if (btrfs_file_extent_generation(path->nodes[0], extent) != | |
2613 | backref->generation) | |
2614 | goto out_free_path; | |
2615 | ||
2616 | btrfs_release_path(path); | |
2617 | ||
2618 | start = backref->file_pos; | |
2619 | if (backref->extent_offset < old->extent_offset + old->offset) | |
2620 | start += old->extent_offset + old->offset - | |
2621 | backref->extent_offset; | |
2622 | ||
2623 | len = min(backref->extent_offset + backref->num_bytes, | |
2624 | old->extent_offset + old->offset + old->len); | |
2625 | len -= max(backref->extent_offset, old->extent_offset + old->offset); | |
2626 | ||
2627 | ret = btrfs_drop_extents(trans, root, inode, start, | |
2628 | start + len, 1); | |
2629 | if (ret) | |
2630 | goto out_free_path; | |
2631 | again: | |
4a0cc7ca | 2632 | key.objectid = btrfs_ino(BTRFS_I(inode)); |
38c227d8 LB |
2633 | key.type = BTRFS_EXTENT_DATA_KEY; |
2634 | key.offset = start; | |
2635 | ||
a09a0a70 | 2636 | path->leave_spinning = 1; |
38c227d8 LB |
2637 | if (merge) { |
2638 | struct btrfs_file_extent_item *fi; | |
2639 | u64 extent_len; | |
2640 | struct btrfs_key found_key; | |
2641 | ||
3c9665df | 2642 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); |
38c227d8 LB |
2643 | if (ret < 0) |
2644 | goto out_free_path; | |
2645 | ||
2646 | path->slots[0]--; | |
2647 | leaf = path->nodes[0]; | |
2648 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | |
2649 | ||
2650 | fi = btrfs_item_ptr(leaf, path->slots[0], | |
2651 | struct btrfs_file_extent_item); | |
2652 | extent_len = btrfs_file_extent_num_bytes(leaf, fi); | |
2653 | ||
116e0024 LB |
2654 | if (extent_len + found_key.offset == start && |
2655 | relink_is_mergable(leaf, fi, new)) { | |
38c227d8 LB |
2656 | btrfs_set_file_extent_num_bytes(leaf, fi, |
2657 | extent_len + len); | |
2658 | btrfs_mark_buffer_dirty(leaf); | |
2659 | inode_add_bytes(inode, len); | |
2660 | ||
2661 | ret = 1; | |
2662 | goto out_free_path; | |
2663 | } else { | |
2664 | merge = false; | |
2665 | btrfs_release_path(path); | |
2666 | goto again; | |
2667 | } | |
2668 | } | |
2669 | ||
2670 | ret = btrfs_insert_empty_item(trans, root, path, &key, | |
2671 | sizeof(*extent)); | |
2672 | if (ret) { | |
66642832 | 2673 | btrfs_abort_transaction(trans, ret); |
38c227d8 LB |
2674 | goto out_free_path; |
2675 | } | |
2676 | ||
2677 | leaf = path->nodes[0]; | |
2678 | item = btrfs_item_ptr(leaf, path->slots[0], | |
2679 | struct btrfs_file_extent_item); | |
2680 | btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr); | |
2681 | btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len); | |
2682 | btrfs_set_file_extent_offset(leaf, item, start - new->file_pos); | |
2683 | btrfs_set_file_extent_num_bytes(leaf, item, len); | |
2684 | btrfs_set_file_extent_ram_bytes(leaf, item, new->len); | |
2685 | btrfs_set_file_extent_generation(leaf, item, trans->transid); | |
2686 | btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG); | |
2687 | btrfs_set_file_extent_compression(leaf, item, new->compress_type); | |
2688 | btrfs_set_file_extent_encryption(leaf, item, 0); | |
2689 | btrfs_set_file_extent_other_encoding(leaf, item, 0); | |
2690 | ||
2691 | btrfs_mark_buffer_dirty(leaf); | |
2692 | inode_add_bytes(inode, len); | |
a09a0a70 | 2693 | btrfs_release_path(path); |
38c227d8 | 2694 | |
84f7d8e6 | 2695 | ret = btrfs_inc_extent_ref(trans, root, new->bytenr, |
38c227d8 LB |
2696 | new->disk_len, 0, |
2697 | backref->root_id, backref->inum, | |
b06c4bf5 | 2698 | new->file_pos); /* start - extent_offset */ |
38c227d8 | 2699 | if (ret) { |
66642832 | 2700 | btrfs_abort_transaction(trans, ret); |
38c227d8 LB |
2701 | goto out_free_path; |
2702 | } | |
2703 | ||
2704 | ret = 1; | |
2705 | out_free_path: | |
2706 | btrfs_release_path(path); | |
a09a0a70 | 2707 | path->leave_spinning = 0; |
3a45bb20 | 2708 | btrfs_end_transaction(trans); |
38c227d8 LB |
2709 | out_unlock: |
2710 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end, | |
e43bbe5e | 2711 | &cached); |
38c227d8 LB |
2712 | iput(inode); |
2713 | return ret; | |
2714 | } | |
2715 | ||
6f519564 LB |
2716 | static void free_sa_defrag_extent(struct new_sa_defrag_extent *new) |
2717 | { | |
2718 | struct old_sa_defrag_extent *old, *tmp; | |
2719 | ||
2720 | if (!new) | |
2721 | return; | |
2722 | ||
2723 | list_for_each_entry_safe(old, tmp, &new->head, list) { | |
6f519564 LB |
2724 | kfree(old); |
2725 | } | |
2726 | kfree(new); | |
2727 | } | |
2728 | ||
38c227d8 LB |
2729 | static void relink_file_extents(struct new_sa_defrag_extent *new) |
2730 | { | |
0b246afa | 2731 | struct btrfs_fs_info *fs_info = btrfs_sb(new->inode->i_sb); |
38c227d8 | 2732 | struct btrfs_path *path; |
38c227d8 LB |
2733 | struct sa_defrag_extent_backref *backref; |
2734 | struct sa_defrag_extent_backref *prev = NULL; | |
38c227d8 LB |
2735 | struct rb_node *node; |
2736 | int ret; | |
2737 | ||
38c227d8 LB |
2738 | path = btrfs_alloc_path(); |
2739 | if (!path) | |
2740 | return; | |
2741 | ||
2742 | if (!record_extent_backrefs(path, new)) { | |
2743 | btrfs_free_path(path); | |
2744 | goto out; | |
2745 | } | |
2746 | btrfs_release_path(path); | |
2747 | ||
2748 | while (1) { | |
2749 | node = rb_first(&new->root); | |
2750 | if (!node) | |
2751 | break; | |
2752 | rb_erase(node, &new->root); | |
2753 | ||
2754 | backref = rb_entry(node, struct sa_defrag_extent_backref, node); | |
2755 | ||
2756 | ret = relink_extent_backref(path, prev, backref); | |
2757 | WARN_ON(ret < 0); | |
2758 | ||
2759 | kfree(prev); | |
2760 | ||
2761 | if (ret == 1) | |
2762 | prev = backref; | |
2763 | else | |
2764 | prev = NULL; | |
2765 | cond_resched(); | |
2766 | } | |
2767 | kfree(prev); | |
2768 | ||
2769 | btrfs_free_path(path); | |
38c227d8 | 2770 | out: |
6f519564 LB |
2771 | free_sa_defrag_extent(new); |
2772 | ||
0b246afa JM |
2773 | atomic_dec(&fs_info->defrag_running); |
2774 | wake_up(&fs_info->transaction_wait); | |
38c227d8 LB |
2775 | } |
2776 | ||
2777 | static struct new_sa_defrag_extent * | |
2778 | record_old_file_extents(struct inode *inode, | |
2779 | struct btrfs_ordered_extent *ordered) | |
2780 | { | |
0b246afa | 2781 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
38c227d8 LB |
2782 | struct btrfs_root *root = BTRFS_I(inode)->root; |
2783 | struct btrfs_path *path; | |
2784 | struct btrfs_key key; | |
6f519564 | 2785 | struct old_sa_defrag_extent *old; |
38c227d8 LB |
2786 | struct new_sa_defrag_extent *new; |
2787 | int ret; | |
2788 | ||
2789 | new = kmalloc(sizeof(*new), GFP_NOFS); | |
2790 | if (!new) | |
2791 | return NULL; | |
2792 | ||
2793 | new->inode = inode; | |
2794 | new->file_pos = ordered->file_offset; | |
2795 | new->len = ordered->len; | |
2796 | new->bytenr = ordered->start; | |
2797 | new->disk_len = ordered->disk_len; | |
2798 | new->compress_type = ordered->compress_type; | |
2799 | new->root = RB_ROOT; | |
2800 | INIT_LIST_HEAD(&new->head); | |
2801 | ||
2802 | path = btrfs_alloc_path(); | |
2803 | if (!path) | |
2804 | goto out_kfree; | |
2805 | ||
4a0cc7ca | 2806 | key.objectid = btrfs_ino(BTRFS_I(inode)); |
38c227d8 LB |
2807 | key.type = BTRFS_EXTENT_DATA_KEY; |
2808 | key.offset = new->file_pos; | |
2809 | ||
2810 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | |
2811 | if (ret < 0) | |
2812 | goto out_free_path; | |
2813 | if (ret > 0 && path->slots[0] > 0) | |
2814 | path->slots[0]--; | |
2815 | ||
2816 | /* find out all the old extents for the file range */ | |
2817 | while (1) { | |
2818 | struct btrfs_file_extent_item *extent; | |
2819 | struct extent_buffer *l; | |
2820 | int slot; | |
2821 | u64 num_bytes; | |
2822 | u64 offset; | |
2823 | u64 end; | |
2824 | u64 disk_bytenr; | |
2825 | u64 extent_offset; | |
2826 | ||
2827 | l = path->nodes[0]; | |
2828 | slot = path->slots[0]; | |
2829 | ||
2830 | if (slot >= btrfs_header_nritems(l)) { | |
2831 | ret = btrfs_next_leaf(root, path); | |
2832 | if (ret < 0) | |
6f519564 | 2833 | goto out_free_path; |
38c227d8 LB |
2834 | else if (ret > 0) |
2835 | break; | |
2836 | continue; | |
2837 | } | |
2838 | ||
2839 | btrfs_item_key_to_cpu(l, &key, slot); | |
2840 | ||
4a0cc7ca | 2841 | if (key.objectid != btrfs_ino(BTRFS_I(inode))) |
38c227d8 LB |
2842 | break; |
2843 | if (key.type != BTRFS_EXTENT_DATA_KEY) | |
2844 | break; | |
2845 | if (key.offset >= new->file_pos + new->len) | |
2846 | break; | |
2847 | ||
2848 | extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item); | |
2849 | ||
2850 | num_bytes = btrfs_file_extent_num_bytes(l, extent); | |
2851 | if (key.offset + num_bytes < new->file_pos) | |
2852 | goto next; | |
2853 | ||
2854 | disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent); | |
2855 | if (!disk_bytenr) | |
2856 | goto next; | |
2857 | ||
2858 | extent_offset = btrfs_file_extent_offset(l, extent); | |
2859 | ||
2860 | old = kmalloc(sizeof(*old), GFP_NOFS); | |
2861 | if (!old) | |
6f519564 | 2862 | goto out_free_path; |
38c227d8 LB |
2863 | |
2864 | offset = max(new->file_pos, key.offset); | |
2865 | end = min(new->file_pos + new->len, key.offset + num_bytes); | |
2866 | ||
2867 | old->bytenr = disk_bytenr; | |
2868 | old->extent_offset = extent_offset; | |
2869 | old->offset = offset - key.offset; | |
2870 | old->len = end - offset; | |
2871 | old->new = new; | |
2872 | old->count = 0; | |
2873 | list_add_tail(&old->list, &new->head); | |
2874 | next: | |
2875 | path->slots[0]++; | |
2876 | cond_resched(); | |
2877 | } | |
2878 | ||
2879 | btrfs_free_path(path); | |
0b246afa | 2880 | atomic_inc(&fs_info->defrag_running); |
38c227d8 LB |
2881 | |
2882 | return new; | |
2883 | ||
38c227d8 LB |
2884 | out_free_path: |
2885 | btrfs_free_path(path); | |
2886 | out_kfree: | |
6f519564 | 2887 | free_sa_defrag_extent(new); |
38c227d8 LB |
2888 | return NULL; |
2889 | } | |
2890 | ||
2ff7e61e | 2891 | static void btrfs_release_delalloc_bytes(struct btrfs_fs_info *fs_info, |
e570fd27 MX |
2892 | u64 start, u64 len) |
2893 | { | |
2894 | struct btrfs_block_group_cache *cache; | |
2895 | ||
0b246afa | 2896 | cache = btrfs_lookup_block_group(fs_info, start); |
e570fd27 MX |
2897 | ASSERT(cache); |
2898 | ||
2899 | spin_lock(&cache->lock); | |
2900 | cache->delalloc_bytes -= len; | |
2901 | spin_unlock(&cache->lock); | |
2902 | ||
2903 | btrfs_put_block_group(cache); | |
2904 | } | |
2905 | ||
d352ac68 CM |
2906 | /* as ordered data IO finishes, this gets called so we can finish |
2907 | * an ordered extent if the range of bytes in the file it covers are | |
2908 | * fully written. | |
2909 | */ | |
5fd02043 | 2910 | static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent) |
e6dcd2dc | 2911 | { |
5fd02043 | 2912 | struct inode *inode = ordered_extent->inode; |
0b246afa | 2913 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
e6dcd2dc | 2914 | struct btrfs_root *root = BTRFS_I(inode)->root; |
0ca1f7ce | 2915 | struct btrfs_trans_handle *trans = NULL; |
e6dcd2dc | 2916 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
2ac55d41 | 2917 | struct extent_state *cached_state = NULL; |
38c227d8 | 2918 | struct new_sa_defrag_extent *new = NULL; |
261507a0 | 2919 | int compress_type = 0; |
77cef2ec JB |
2920 | int ret = 0; |
2921 | u64 logical_len = ordered_extent->len; | |
82d5902d | 2922 | bool nolock; |
77cef2ec | 2923 | bool truncated = false; |
a7e3b975 FM |
2924 | bool range_locked = false; |
2925 | bool clear_new_delalloc_bytes = false; | |
49940bdd | 2926 | bool clear_reserved_extent = true; |
a7e3b975 FM |
2927 | |
2928 | if (!test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) && | |
2929 | !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags) && | |
2930 | !test_bit(BTRFS_ORDERED_DIRECT, &ordered_extent->flags)) | |
2931 | clear_new_delalloc_bytes = true; | |
e6dcd2dc | 2932 | |
70ddc553 | 2933 | nolock = btrfs_is_free_space_inode(BTRFS_I(inode)); |
0cb59c99 | 2934 | |
5fd02043 JB |
2935 | if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) { |
2936 | ret = -EIO; | |
2937 | goto out; | |
2938 | } | |
2939 | ||
7ab7956e NB |
2940 | btrfs_free_io_failure_record(BTRFS_I(inode), |
2941 | ordered_extent->file_offset, | |
2942 | ordered_extent->file_offset + | |
2943 | ordered_extent->len - 1); | |
f612496b | 2944 | |
77cef2ec JB |
2945 | if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) { |
2946 | truncated = true; | |
2947 | logical_len = ordered_extent->truncated_len; | |
2948 | /* Truncated the entire extent, don't bother adding */ | |
2949 | if (!logical_len) | |
2950 | goto out; | |
2951 | } | |
2952 | ||
c2167754 | 2953 | if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) { |
79787eaa | 2954 | BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */ |
94ed938a QW |
2955 | |
2956 | /* | |
2957 | * For mwrite(mmap + memset to write) case, we still reserve | |
2958 | * space for NOCOW range. | |
2959 | * As NOCOW won't cause a new delayed ref, just free the space | |
2960 | */ | |
bc42bda2 | 2961 | btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset, |
94ed938a | 2962 | ordered_extent->len); |
6c760c07 JB |
2963 | btrfs_ordered_update_i_size(inode, 0, ordered_extent); |
2964 | if (nolock) | |
2965 | trans = btrfs_join_transaction_nolock(root); | |
2966 | else | |
2967 | trans = btrfs_join_transaction(root); | |
2968 | if (IS_ERR(trans)) { | |
2969 | ret = PTR_ERR(trans); | |
2970 | trans = NULL; | |
2971 | goto out; | |
c2167754 | 2972 | } |
69fe2d75 | 2973 | trans->block_rsv = &BTRFS_I(inode)->block_rsv; |
6c760c07 JB |
2974 | ret = btrfs_update_inode_fallback(trans, root, inode); |
2975 | if (ret) /* -ENOMEM or corruption */ | |
66642832 | 2976 | btrfs_abort_transaction(trans, ret); |
c2167754 YZ |
2977 | goto out; |
2978 | } | |
e6dcd2dc | 2979 | |
a7e3b975 | 2980 | range_locked = true; |
2ac55d41 JB |
2981 | lock_extent_bits(io_tree, ordered_extent->file_offset, |
2982 | ordered_extent->file_offset + ordered_extent->len - 1, | |
ff13db41 | 2983 | &cached_state); |
e6dcd2dc | 2984 | |
38c227d8 LB |
2985 | ret = test_range_bit(io_tree, ordered_extent->file_offset, |
2986 | ordered_extent->file_offset + ordered_extent->len - 1, | |
452e62b7 | 2987 | EXTENT_DEFRAG, 0, cached_state); |
38c227d8 LB |
2988 | if (ret) { |
2989 | u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item); | |
8101c8db | 2990 | if (0 && last_snapshot >= BTRFS_I(inode)->generation) |
38c227d8 LB |
2991 | /* the inode is shared */ |
2992 | new = record_old_file_extents(inode, ordered_extent); | |
2993 | ||
2994 | clear_extent_bit(io_tree, ordered_extent->file_offset, | |
2995 | ordered_extent->file_offset + ordered_extent->len - 1, | |
ae0f1625 | 2996 | EXTENT_DEFRAG, 0, 0, &cached_state); |
38c227d8 LB |
2997 | } |
2998 | ||
0cb59c99 | 2999 | if (nolock) |
7a7eaa40 | 3000 | trans = btrfs_join_transaction_nolock(root); |
0cb59c99 | 3001 | else |
7a7eaa40 | 3002 | trans = btrfs_join_transaction(root); |
79787eaa JM |
3003 | if (IS_ERR(trans)) { |
3004 | ret = PTR_ERR(trans); | |
3005 | trans = NULL; | |
a7e3b975 | 3006 | goto out; |
79787eaa | 3007 | } |
a79b7d4b | 3008 | |
69fe2d75 | 3009 | trans->block_rsv = &BTRFS_I(inode)->block_rsv; |
c2167754 | 3010 | |
c8b97818 | 3011 | if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags)) |
261507a0 | 3012 | compress_type = ordered_extent->compress_type; |
d899e052 | 3013 | if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) { |
261507a0 | 3014 | BUG_ON(compress_type); |
b430b775 JM |
3015 | btrfs_qgroup_free_data(inode, NULL, ordered_extent->file_offset, |
3016 | ordered_extent->len); | |
7a6d7067 | 3017 | ret = btrfs_mark_extent_written(trans, BTRFS_I(inode), |
d899e052 YZ |
3018 | ordered_extent->file_offset, |
3019 | ordered_extent->file_offset + | |
77cef2ec | 3020 | logical_len); |
d899e052 | 3021 | } else { |
0b246afa | 3022 | BUG_ON(root == fs_info->tree_root); |
d899e052 YZ |
3023 | ret = insert_reserved_file_extent(trans, inode, |
3024 | ordered_extent->file_offset, | |
3025 | ordered_extent->start, | |
3026 | ordered_extent->disk_len, | |
77cef2ec | 3027 | logical_len, logical_len, |
261507a0 | 3028 | compress_type, 0, 0, |
d899e052 | 3029 | BTRFS_FILE_EXTENT_REG); |
49940bdd JB |
3030 | if (!ret) { |
3031 | clear_reserved_extent = false; | |
2ff7e61e | 3032 | btrfs_release_delalloc_bytes(fs_info, |
e570fd27 MX |
3033 | ordered_extent->start, |
3034 | ordered_extent->disk_len); | |
49940bdd | 3035 | } |
d899e052 | 3036 | } |
5dc562c5 JB |
3037 | unpin_extent_cache(&BTRFS_I(inode)->extent_tree, |
3038 | ordered_extent->file_offset, ordered_extent->len, | |
3039 | trans->transid); | |
79787eaa | 3040 | if (ret < 0) { |
66642832 | 3041 | btrfs_abort_transaction(trans, ret); |
a7e3b975 | 3042 | goto out; |
79787eaa | 3043 | } |
2ac55d41 | 3044 | |
ac01f26a NB |
3045 | ret = add_pending_csums(trans, inode, &ordered_extent->list); |
3046 | if (ret) { | |
3047 | btrfs_abort_transaction(trans, ret); | |
3048 | goto out; | |
3049 | } | |
e6dcd2dc | 3050 | |
6c760c07 JB |
3051 | btrfs_ordered_update_i_size(inode, 0, ordered_extent); |
3052 | ret = btrfs_update_inode_fallback(trans, root, inode); | |
3053 | if (ret) { /* -ENOMEM or corruption */ | |
66642832 | 3054 | btrfs_abort_transaction(trans, ret); |
a7e3b975 | 3055 | goto out; |
1ef30be1 JB |
3056 | } |
3057 | ret = 0; | |
c2167754 | 3058 | out: |
a7e3b975 FM |
3059 | if (range_locked || clear_new_delalloc_bytes) { |
3060 | unsigned int clear_bits = 0; | |
3061 | ||
3062 | if (range_locked) | |
3063 | clear_bits |= EXTENT_LOCKED; | |
3064 | if (clear_new_delalloc_bytes) | |
3065 | clear_bits |= EXTENT_DELALLOC_NEW; | |
3066 | clear_extent_bit(&BTRFS_I(inode)->io_tree, | |
3067 | ordered_extent->file_offset, | |
3068 | ordered_extent->file_offset + | |
3069 | ordered_extent->len - 1, | |
3070 | clear_bits, | |
3071 | (clear_bits & EXTENT_LOCKED) ? 1 : 0, | |
ae0f1625 | 3072 | 0, &cached_state); |
a7e3b975 FM |
3073 | } |
3074 | ||
a698d075 | 3075 | if (trans) |
3a45bb20 | 3076 | btrfs_end_transaction(trans); |
0cb59c99 | 3077 | |
77cef2ec JB |
3078 | if (ret || truncated) { |
3079 | u64 start, end; | |
3080 | ||
3081 | if (truncated) | |
3082 | start = ordered_extent->file_offset + logical_len; | |
3083 | else | |
3084 | start = ordered_extent->file_offset; | |
3085 | end = ordered_extent->file_offset + ordered_extent->len - 1; | |
f08dc36f | 3086 | clear_extent_uptodate(io_tree, start, end, NULL); |
77cef2ec JB |
3087 | |
3088 | /* Drop the cache for the part of the extent we didn't write. */ | |
dcdbc059 | 3089 | btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 0); |
5fd02043 | 3090 | |
0bec9ef5 JB |
3091 | /* |
3092 | * If the ordered extent had an IOERR or something else went | |
3093 | * wrong we need to return the space for this ordered extent | |
77cef2ec JB |
3094 | * back to the allocator. We only free the extent in the |
3095 | * truncated case if we didn't write out the extent at all. | |
49940bdd JB |
3096 | * |
3097 | * If we made it past insert_reserved_file_extent before we | |
3098 | * errored out then we don't need to do this as the accounting | |
3099 | * has already been done. | |
0bec9ef5 | 3100 | */ |
77cef2ec | 3101 | if ((ret || !logical_len) && |
49940bdd | 3102 | clear_reserved_extent && |
77cef2ec | 3103 | !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) && |
0bec9ef5 | 3104 | !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) |
2ff7e61e JM |
3105 | btrfs_free_reserved_extent(fs_info, |
3106 | ordered_extent->start, | |
e570fd27 | 3107 | ordered_extent->disk_len, 1); |
0bec9ef5 JB |
3108 | } |
3109 | ||
3110 | ||
5fd02043 | 3111 | /* |
8bad3c02 LB |
3112 | * This needs to be done to make sure anybody waiting knows we are done |
3113 | * updating everything for this ordered extent. | |
5fd02043 JB |
3114 | */ |
3115 | btrfs_remove_ordered_extent(inode, ordered_extent); | |
3116 | ||
38c227d8 | 3117 | /* for snapshot-aware defrag */ |
6f519564 LB |
3118 | if (new) { |
3119 | if (ret) { | |
3120 | free_sa_defrag_extent(new); | |
0b246afa | 3121 | atomic_dec(&fs_info->defrag_running); |
6f519564 LB |
3122 | } else { |
3123 | relink_file_extents(new); | |
3124 | } | |
3125 | } | |
38c227d8 | 3126 | |
e6dcd2dc CM |
3127 | /* once for us */ |
3128 | btrfs_put_ordered_extent(ordered_extent); | |
3129 | /* once for the tree */ | |
3130 | btrfs_put_ordered_extent(ordered_extent); | |
3131 | ||
5fd02043 JB |
3132 | return ret; |
3133 | } | |
3134 | ||
3135 | static void finish_ordered_fn(struct btrfs_work *work) | |
3136 | { | |
3137 | struct btrfs_ordered_extent *ordered_extent; | |
3138 | ordered_extent = container_of(work, struct btrfs_ordered_extent, work); | |
3139 | btrfs_finish_ordered_io(ordered_extent); | |
e6dcd2dc CM |
3140 | } |
3141 | ||
c629732d NB |
3142 | void btrfs_writepage_endio_finish_ordered(struct page *page, u64 start, |
3143 | u64 end, int uptodate) | |
211f90e6 | 3144 | { |
5fd02043 | 3145 | struct inode *inode = page->mapping->host; |
0b246afa | 3146 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
5fd02043 | 3147 | struct btrfs_ordered_extent *ordered_extent = NULL; |
9e0af237 LB |
3148 | struct btrfs_workqueue *wq; |
3149 | btrfs_work_func_t func; | |
5fd02043 | 3150 | |
1abe9b8a | 3151 | trace_btrfs_writepage_end_io_hook(page, start, end, uptodate); |
3152 | ||
8b62b72b | 3153 | ClearPagePrivate2(page); |
5fd02043 JB |
3154 | if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start, |
3155 | end - start + 1, uptodate)) | |
c3988d63 | 3156 | return; |
5fd02043 | 3157 | |
70ddc553 | 3158 | if (btrfs_is_free_space_inode(BTRFS_I(inode))) { |
0b246afa | 3159 | wq = fs_info->endio_freespace_worker; |
9e0af237 LB |
3160 | func = btrfs_freespace_write_helper; |
3161 | } else { | |
0b246afa | 3162 | wq = fs_info->endio_write_workers; |
9e0af237 LB |
3163 | func = btrfs_endio_write_helper; |
3164 | } | |
5fd02043 | 3165 | |
9e0af237 LB |
3166 | btrfs_init_work(&ordered_extent->work, func, finish_ordered_fn, NULL, |
3167 | NULL); | |
3168 | btrfs_queue_work(wq, &ordered_extent->work); | |
211f90e6 CM |
3169 | } |
3170 | ||
dc380aea MX |
3171 | static int __readpage_endio_check(struct inode *inode, |
3172 | struct btrfs_io_bio *io_bio, | |
3173 | int icsum, struct page *page, | |
3174 | int pgoff, u64 start, size_t len) | |
3175 | { | |
3176 | char *kaddr; | |
3177 | u32 csum_expected; | |
3178 | u32 csum = ~(u32)0; | |
dc380aea MX |
3179 | |
3180 | csum_expected = *(((u32 *)io_bio->csum) + icsum); | |
3181 | ||
3182 | kaddr = kmap_atomic(page); | |
3183 | csum = btrfs_csum_data(kaddr + pgoff, csum, len); | |
0b5e3daf | 3184 | btrfs_csum_final(csum, (u8 *)&csum); |
dc380aea MX |
3185 | if (csum != csum_expected) |
3186 | goto zeroit; | |
3187 | ||
3188 | kunmap_atomic(kaddr); | |
3189 | return 0; | |
3190 | zeroit: | |
0970a22e | 3191 | btrfs_print_data_csum_error(BTRFS_I(inode), start, csum, csum_expected, |
6f6b643e | 3192 | io_bio->mirror_num); |
dc380aea MX |
3193 | memset(kaddr + pgoff, 1, len); |
3194 | flush_dcache_page(page); | |
3195 | kunmap_atomic(kaddr); | |
dc380aea MX |
3196 | return -EIO; |
3197 | } | |
3198 | ||
d352ac68 CM |
3199 | /* |
3200 | * when reads are done, we need to check csums to verify the data is correct | |
4a54c8c1 JS |
3201 | * if there's a match, we allow the bio to finish. If not, the code in |
3202 | * extent_io.c will try to find good copies for us. | |
d352ac68 | 3203 | */ |
facc8a22 MX |
3204 | static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio, |
3205 | u64 phy_offset, struct page *page, | |
3206 | u64 start, u64 end, int mirror) | |
07157aac | 3207 | { |
4eee4fa4 | 3208 | size_t offset = start - page_offset(page); |
07157aac | 3209 | struct inode *inode = page->mapping->host; |
d1310b2e | 3210 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
ff79f819 | 3211 | struct btrfs_root *root = BTRFS_I(inode)->root; |
d1310b2e | 3212 | |
d20f7043 CM |
3213 | if (PageChecked(page)) { |
3214 | ClearPageChecked(page); | |
dc380aea | 3215 | return 0; |
d20f7043 | 3216 | } |
6cbff00f CH |
3217 | |
3218 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM) | |
dc380aea | 3219 | return 0; |
17d217fe YZ |
3220 | |
3221 | if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID && | |
9655d298 | 3222 | test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) { |
91166212 | 3223 | clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM); |
b6cda9bc | 3224 | return 0; |
17d217fe | 3225 | } |
d20f7043 | 3226 | |
facc8a22 | 3227 | phy_offset >>= inode->i_sb->s_blocksize_bits; |
dc380aea MX |
3228 | return __readpage_endio_check(inode, io_bio, phy_offset, page, offset, |
3229 | start, (size_t)(end - start + 1)); | |
07157aac | 3230 | } |
b888db2b | 3231 | |
c1c3fac2 NB |
3232 | /* |
3233 | * btrfs_add_delayed_iput - perform a delayed iput on @inode | |
3234 | * | |
3235 | * @inode: The inode we want to perform iput on | |
3236 | * | |
3237 | * This function uses the generic vfs_inode::i_count to track whether we should | |
3238 | * just decrement it (in case it's > 1) or if this is the last iput then link | |
3239 | * the inode to the delayed iput machinery. Delayed iputs are processed at | |
3240 | * transaction commit time/superblock commit/cleaner kthread. | |
3241 | */ | |
24bbcf04 YZ |
3242 | void btrfs_add_delayed_iput(struct inode *inode) |
3243 | { | |
0b246afa | 3244 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
8089fe62 | 3245 | struct btrfs_inode *binode = BTRFS_I(inode); |
24bbcf04 YZ |
3246 | |
3247 | if (atomic_add_unless(&inode->i_count, -1, 1)) | |
3248 | return; | |
3249 | ||
24bbcf04 | 3250 | spin_lock(&fs_info->delayed_iput_lock); |
c1c3fac2 NB |
3251 | ASSERT(list_empty(&binode->delayed_iput)); |
3252 | list_add_tail(&binode->delayed_iput, &fs_info->delayed_iputs); | |
24bbcf04 | 3253 | spin_unlock(&fs_info->delayed_iput_lock); |
fd340d0f JB |
3254 | if (!test_bit(BTRFS_FS_CLEANER_RUNNING, &fs_info->flags)) |
3255 | wake_up_process(fs_info->cleaner_kthread); | |
24bbcf04 YZ |
3256 | } |
3257 | ||
2ff7e61e | 3258 | void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info) |
24bbcf04 | 3259 | { |
24bbcf04 | 3260 | |
24bbcf04 | 3261 | spin_lock(&fs_info->delayed_iput_lock); |
8089fe62 DS |
3262 | while (!list_empty(&fs_info->delayed_iputs)) { |
3263 | struct btrfs_inode *inode; | |
3264 | ||
3265 | inode = list_first_entry(&fs_info->delayed_iputs, | |
3266 | struct btrfs_inode, delayed_iput); | |
c1c3fac2 | 3267 | list_del_init(&inode->delayed_iput); |
8089fe62 DS |
3268 | spin_unlock(&fs_info->delayed_iput_lock); |
3269 | iput(&inode->vfs_inode); | |
3270 | spin_lock(&fs_info->delayed_iput_lock); | |
24bbcf04 | 3271 | } |
8089fe62 | 3272 | spin_unlock(&fs_info->delayed_iput_lock); |
24bbcf04 YZ |
3273 | } |
3274 | ||
7b128766 | 3275 | /* |
f7e9e8fc OS |
3276 | * This creates an orphan entry for the given inode in case something goes wrong |
3277 | * in the middle of an unlink. | |
7b128766 | 3278 | */ |
73f2e545 | 3279 | int btrfs_orphan_add(struct btrfs_trans_handle *trans, |
27919067 | 3280 | struct btrfs_inode *inode) |
7b128766 | 3281 | { |
d68fc57b | 3282 | int ret; |
7b128766 | 3283 | |
27919067 OS |
3284 | ret = btrfs_insert_orphan_item(trans, inode->root, btrfs_ino(inode)); |
3285 | if (ret && ret != -EEXIST) { | |
3286 | btrfs_abort_transaction(trans, ret); | |
3287 | return ret; | |
d68fc57b YZ |
3288 | } |
3289 | ||
d68fc57b | 3290 | return 0; |
7b128766 JB |
3291 | } |
3292 | ||
3293 | /* | |
f7e9e8fc OS |
3294 | * We have done the delete so we can go ahead and remove the orphan item for |
3295 | * this particular inode. | |
7b128766 | 3296 | */ |
48a3b636 | 3297 | static int btrfs_orphan_del(struct btrfs_trans_handle *trans, |
3d6ae7bb | 3298 | struct btrfs_inode *inode) |
7b128766 | 3299 | { |
27919067 | 3300 | return btrfs_del_orphan_item(trans, inode->root, btrfs_ino(inode)); |
7b128766 JB |
3301 | } |
3302 | ||
3303 | /* | |
3304 | * this cleans up any orphans that may be left on the list from the last use | |
3305 | * of this root. | |
3306 | */ | |
66b4ffd1 | 3307 | int btrfs_orphan_cleanup(struct btrfs_root *root) |
7b128766 | 3308 | { |
0b246afa | 3309 | struct btrfs_fs_info *fs_info = root->fs_info; |
7b128766 JB |
3310 | struct btrfs_path *path; |
3311 | struct extent_buffer *leaf; | |
7b128766 JB |
3312 | struct btrfs_key key, found_key; |
3313 | struct btrfs_trans_handle *trans; | |
3314 | struct inode *inode; | |
8f6d7f4f | 3315 | u64 last_objectid = 0; |
f7e9e8fc | 3316 | int ret = 0, nr_unlink = 0; |
7b128766 | 3317 | |
d68fc57b | 3318 | if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED)) |
66b4ffd1 | 3319 | return 0; |
c71bf099 YZ |
3320 | |
3321 | path = btrfs_alloc_path(); | |
66b4ffd1 JB |
3322 | if (!path) { |
3323 | ret = -ENOMEM; | |
3324 | goto out; | |
3325 | } | |
e4058b54 | 3326 | path->reada = READA_BACK; |
7b128766 JB |
3327 | |
3328 | key.objectid = BTRFS_ORPHAN_OBJECTID; | |
962a298f | 3329 | key.type = BTRFS_ORPHAN_ITEM_KEY; |
7b128766 JB |
3330 | key.offset = (u64)-1; |
3331 | ||
7b128766 JB |
3332 | while (1) { |
3333 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | |
66b4ffd1 JB |
3334 | if (ret < 0) |
3335 | goto out; | |
7b128766 JB |
3336 | |
3337 | /* | |
3338 | * if ret == 0 means we found what we were searching for, which | |
25985edc | 3339 | * is weird, but possible, so only screw with path if we didn't |
7b128766 JB |
3340 | * find the key and see if we have stuff that matches |
3341 | */ | |
3342 | if (ret > 0) { | |
66b4ffd1 | 3343 | ret = 0; |
7b128766 JB |
3344 | if (path->slots[0] == 0) |
3345 | break; | |
3346 | path->slots[0]--; | |
3347 | } | |
3348 | ||
3349 | /* pull out the item */ | |
3350 | leaf = path->nodes[0]; | |
7b128766 JB |
3351 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
3352 | ||
3353 | /* make sure the item matches what we want */ | |
3354 | if (found_key.objectid != BTRFS_ORPHAN_OBJECTID) | |
3355 | break; | |
962a298f | 3356 | if (found_key.type != BTRFS_ORPHAN_ITEM_KEY) |
7b128766 JB |
3357 | break; |
3358 | ||
3359 | /* release the path since we're done with it */ | |
b3b4aa74 | 3360 | btrfs_release_path(path); |
7b128766 JB |
3361 | |
3362 | /* | |
3363 | * this is where we are basically btrfs_lookup, without the | |
3364 | * crossing root thing. we store the inode number in the | |
3365 | * offset of the orphan item. | |
3366 | */ | |
8f6d7f4f JB |
3367 | |
3368 | if (found_key.offset == last_objectid) { | |
0b246afa JM |
3369 | btrfs_err(fs_info, |
3370 | "Error removing orphan entry, stopping orphan cleanup"); | |
8f6d7f4f JB |
3371 | ret = -EINVAL; |
3372 | goto out; | |
3373 | } | |
3374 | ||
3375 | last_objectid = found_key.offset; | |
3376 | ||
5d4f98a2 YZ |
3377 | found_key.objectid = found_key.offset; |
3378 | found_key.type = BTRFS_INODE_ITEM_KEY; | |
3379 | found_key.offset = 0; | |
0b246afa | 3380 | inode = btrfs_iget(fs_info->sb, &found_key, root, NULL); |
8c6ffba0 | 3381 | ret = PTR_ERR_OR_ZERO(inode); |
67710892 | 3382 | if (ret && ret != -ENOENT) |
66b4ffd1 | 3383 | goto out; |
7b128766 | 3384 | |
0b246afa | 3385 | if (ret == -ENOENT && root == fs_info->tree_root) { |
f8e9e0b0 AJ |
3386 | struct btrfs_root *dead_root; |
3387 | struct btrfs_fs_info *fs_info = root->fs_info; | |
3388 | int is_dead_root = 0; | |
3389 | ||
3390 | /* | |
3391 | * this is an orphan in the tree root. Currently these | |
3392 | * could come from 2 sources: | |
3393 | * a) a snapshot deletion in progress | |
3394 | * b) a free space cache inode | |
3395 | * We need to distinguish those two, as the snapshot | |
3396 | * orphan must not get deleted. | |
3397 | * find_dead_roots already ran before us, so if this | |
3398 | * is a snapshot deletion, we should find the root | |
3399 | * in the dead_roots list | |
3400 | */ | |
3401 | spin_lock(&fs_info->trans_lock); | |
3402 | list_for_each_entry(dead_root, &fs_info->dead_roots, | |
3403 | root_list) { | |
3404 | if (dead_root->root_key.objectid == | |
3405 | found_key.objectid) { | |
3406 | is_dead_root = 1; | |
3407 | break; | |
3408 | } | |
3409 | } | |
3410 | spin_unlock(&fs_info->trans_lock); | |
3411 | if (is_dead_root) { | |
3412 | /* prevent this orphan from being found again */ | |
3413 | key.offset = found_key.objectid - 1; | |
3414 | continue; | |
3415 | } | |
f7e9e8fc | 3416 | |
f8e9e0b0 | 3417 | } |
f7e9e8fc | 3418 | |
7b128766 | 3419 | /* |
f7e9e8fc OS |
3420 | * If we have an inode with links, there are a couple of |
3421 | * possibilities. Old kernels (before v3.12) used to create an | |
3422 | * orphan item for truncate indicating that there were possibly | |
3423 | * extent items past i_size that needed to be deleted. In v3.12, | |
3424 | * truncate was changed to update i_size in sync with the extent | |
3425 | * items, but the (useless) orphan item was still created. Since | |
3426 | * v4.18, we don't create the orphan item for truncate at all. | |
3427 | * | |
3428 | * So, this item could mean that we need to do a truncate, but | |
3429 | * only if this filesystem was last used on a pre-v3.12 kernel | |
3430 | * and was not cleanly unmounted. The odds of that are quite | |
3431 | * slim, and it's a pain to do the truncate now, so just delete | |
3432 | * the orphan item. | |
3433 | * | |
3434 | * It's also possible that this orphan item was supposed to be | |
3435 | * deleted but wasn't. The inode number may have been reused, | |
3436 | * but either way, we can delete the orphan item. | |
7b128766 | 3437 | */ |
f7e9e8fc OS |
3438 | if (ret == -ENOENT || inode->i_nlink) { |
3439 | if (!ret) | |
3440 | iput(inode); | |
a8c9e576 | 3441 | trans = btrfs_start_transaction(root, 1); |
66b4ffd1 JB |
3442 | if (IS_ERR(trans)) { |
3443 | ret = PTR_ERR(trans); | |
3444 | goto out; | |
3445 | } | |
0b246afa JM |
3446 | btrfs_debug(fs_info, "auto deleting %Lu", |
3447 | found_key.objectid); | |
a8c9e576 JB |
3448 | ret = btrfs_del_orphan_item(trans, root, |
3449 | found_key.objectid); | |
3a45bb20 | 3450 | btrfs_end_transaction(trans); |
4ef31a45 JB |
3451 | if (ret) |
3452 | goto out; | |
7b128766 JB |
3453 | continue; |
3454 | } | |
3455 | ||
f7e9e8fc | 3456 | nr_unlink++; |
7b128766 JB |
3457 | |
3458 | /* this will do delete_inode and everything for us */ | |
3459 | iput(inode); | |
3460 | } | |
3254c876 MX |
3461 | /* release the path since we're done with it */ |
3462 | btrfs_release_path(path); | |
3463 | ||
d68fc57b YZ |
3464 | root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE; |
3465 | ||
a575ceeb | 3466 | if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) { |
7a7eaa40 | 3467 | trans = btrfs_join_transaction(root); |
66b4ffd1 | 3468 | if (!IS_ERR(trans)) |
3a45bb20 | 3469 | btrfs_end_transaction(trans); |
d68fc57b | 3470 | } |
7b128766 JB |
3471 | |
3472 | if (nr_unlink) | |
0b246afa | 3473 | btrfs_debug(fs_info, "unlinked %d orphans", nr_unlink); |
66b4ffd1 JB |
3474 | |
3475 | out: | |
3476 | if (ret) | |
0b246afa | 3477 | btrfs_err(fs_info, "could not do orphan cleanup %d", ret); |
66b4ffd1 JB |
3478 | btrfs_free_path(path); |
3479 | return ret; | |
7b128766 JB |
3480 | } |
3481 | ||
46a53cca CM |
3482 | /* |
3483 | * very simple check to peek ahead in the leaf looking for xattrs. If we | |
3484 | * don't find any xattrs, we know there can't be any acls. | |
3485 | * | |
3486 | * slot is the slot the inode is in, objectid is the objectid of the inode | |
3487 | */ | |
3488 | static noinline int acls_after_inode_item(struct extent_buffer *leaf, | |
63541927 FDBM |
3489 | int slot, u64 objectid, |
3490 | int *first_xattr_slot) | |
46a53cca CM |
3491 | { |
3492 | u32 nritems = btrfs_header_nritems(leaf); | |
3493 | struct btrfs_key found_key; | |
f23b5a59 JB |
3494 | static u64 xattr_access = 0; |
3495 | static u64 xattr_default = 0; | |
46a53cca CM |
3496 | int scanned = 0; |
3497 | ||
f23b5a59 | 3498 | if (!xattr_access) { |
97d79299 AG |
3499 | xattr_access = btrfs_name_hash(XATTR_NAME_POSIX_ACL_ACCESS, |
3500 | strlen(XATTR_NAME_POSIX_ACL_ACCESS)); | |
3501 | xattr_default = btrfs_name_hash(XATTR_NAME_POSIX_ACL_DEFAULT, | |
3502 | strlen(XATTR_NAME_POSIX_ACL_DEFAULT)); | |
f23b5a59 JB |
3503 | } |
3504 | ||
46a53cca | 3505 | slot++; |
63541927 | 3506 | *first_xattr_slot = -1; |
46a53cca CM |
3507 | while (slot < nritems) { |
3508 | btrfs_item_key_to_cpu(leaf, &found_key, slot); | |
3509 | ||
3510 | /* we found a different objectid, there must not be acls */ | |
3511 | if (found_key.objectid != objectid) | |
3512 | return 0; | |
3513 | ||
3514 | /* we found an xattr, assume we've got an acl */ | |
f23b5a59 | 3515 | if (found_key.type == BTRFS_XATTR_ITEM_KEY) { |
63541927 FDBM |
3516 | if (*first_xattr_slot == -1) |
3517 | *first_xattr_slot = slot; | |
f23b5a59 JB |
3518 | if (found_key.offset == xattr_access || |
3519 | found_key.offset == xattr_default) | |
3520 | return 1; | |
3521 | } | |
46a53cca CM |
3522 | |
3523 | /* | |
3524 | * we found a key greater than an xattr key, there can't | |
3525 | * be any acls later on | |
3526 | */ | |
3527 | if (found_key.type > BTRFS_XATTR_ITEM_KEY) | |
3528 | return 0; | |
3529 | ||
3530 | slot++; | |
3531 | scanned++; | |
3532 | ||
3533 | /* | |
3534 | * it goes inode, inode backrefs, xattrs, extents, | |
3535 | * so if there are a ton of hard links to an inode there can | |
3536 | * be a lot of backrefs. Don't waste time searching too hard, | |
3537 | * this is just an optimization | |
3538 | */ | |
3539 | if (scanned >= 8) | |
3540 | break; | |
3541 | } | |
3542 | /* we hit the end of the leaf before we found an xattr or | |
3543 | * something larger than an xattr. We have to assume the inode | |
3544 | * has acls | |
3545 | */ | |
63541927 FDBM |
3546 | if (*first_xattr_slot == -1) |
3547 | *first_xattr_slot = slot; | |
46a53cca CM |
3548 | return 1; |
3549 | } | |
3550 | ||
d352ac68 CM |
3551 | /* |
3552 | * read an inode from the btree into the in-memory inode | |
3553 | */ | |
4222ea71 FM |
3554 | static int btrfs_read_locked_inode(struct inode *inode, |
3555 | struct btrfs_path *in_path) | |
39279cc3 | 3556 | { |
0b246afa | 3557 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
4222ea71 | 3558 | struct btrfs_path *path = in_path; |
5f39d397 | 3559 | struct extent_buffer *leaf; |
39279cc3 CM |
3560 | struct btrfs_inode_item *inode_item; |
3561 | struct btrfs_root *root = BTRFS_I(inode)->root; | |
3562 | struct btrfs_key location; | |
67de1176 | 3563 | unsigned long ptr; |
46a53cca | 3564 | int maybe_acls; |
618e21d5 | 3565 | u32 rdev; |
39279cc3 | 3566 | int ret; |
2f7e33d4 | 3567 | bool filled = false; |
63541927 | 3568 | int first_xattr_slot; |
2f7e33d4 MX |
3569 | |
3570 | ret = btrfs_fill_inode(inode, &rdev); | |
3571 | if (!ret) | |
3572 | filled = true; | |
39279cc3 | 3573 | |
4222ea71 FM |
3574 | if (!path) { |
3575 | path = btrfs_alloc_path(); | |
3576 | if (!path) | |
3577 | return -ENOMEM; | |
3578 | } | |
1748f843 | 3579 | |
39279cc3 | 3580 | memcpy(&location, &BTRFS_I(inode)->location, sizeof(location)); |
dc17ff8f | 3581 | |
39279cc3 | 3582 | ret = btrfs_lookup_inode(NULL, root, path, &location, 0); |
67710892 | 3583 | if (ret) { |
4222ea71 FM |
3584 | if (path != in_path) |
3585 | btrfs_free_path(path); | |
f5b3a417 | 3586 | return ret; |
67710892 | 3587 | } |
39279cc3 | 3588 | |
5f39d397 | 3589 | leaf = path->nodes[0]; |
2f7e33d4 MX |
3590 | |
3591 | if (filled) | |
67de1176 | 3592 | goto cache_index; |
2f7e33d4 | 3593 | |
5f39d397 CM |
3594 | inode_item = btrfs_item_ptr(leaf, path->slots[0], |
3595 | struct btrfs_inode_item); | |
5f39d397 | 3596 | inode->i_mode = btrfs_inode_mode(leaf, inode_item); |
bfe86848 | 3597 | set_nlink(inode, btrfs_inode_nlink(leaf, inode_item)); |
2f2f43d3 EB |
3598 | i_uid_write(inode, btrfs_inode_uid(leaf, inode_item)); |
3599 | i_gid_write(inode, btrfs_inode_gid(leaf, inode_item)); | |
6ef06d27 | 3600 | btrfs_i_size_write(BTRFS_I(inode), btrfs_inode_size(leaf, inode_item)); |
5f39d397 | 3601 | |
a937b979 DS |
3602 | inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->atime); |
3603 | inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->atime); | |
5f39d397 | 3604 | |
a937b979 DS |
3605 | inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->mtime); |
3606 | inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->mtime); | |
5f39d397 | 3607 | |
a937b979 DS |
3608 | inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, &inode_item->ctime); |
3609 | inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, &inode_item->ctime); | |
5f39d397 | 3610 | |
9cc97d64 | 3611 | BTRFS_I(inode)->i_otime.tv_sec = |
3612 | btrfs_timespec_sec(leaf, &inode_item->otime); | |
3613 | BTRFS_I(inode)->i_otime.tv_nsec = | |
3614 | btrfs_timespec_nsec(leaf, &inode_item->otime); | |
5f39d397 | 3615 | |
a76a3cd4 | 3616 | inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item)); |
e02119d5 | 3617 | BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item); |
5dc562c5 JB |
3618 | BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item); |
3619 | ||
c7f88c4e JL |
3620 | inode_set_iversion_queried(inode, |
3621 | btrfs_inode_sequence(leaf, inode_item)); | |
6e17d30b YD |
3622 | inode->i_generation = BTRFS_I(inode)->generation; |
3623 | inode->i_rdev = 0; | |
3624 | rdev = btrfs_inode_rdev(leaf, inode_item); | |
3625 | ||
3626 | BTRFS_I(inode)->index_cnt = (u64)-1; | |
3627 | BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item); | |
3628 | ||
3629 | cache_index: | |
5dc562c5 JB |
3630 | /* |
3631 | * If we were modified in the current generation and evicted from memory | |
3632 | * and then re-read we need to do a full sync since we don't have any | |
3633 | * idea about which extents were modified before we were evicted from | |
3634 | * cache. | |
6e17d30b YD |
3635 | * |
3636 | * This is required for both inode re-read from disk and delayed inode | |
3637 | * in delayed_nodes_tree. | |
5dc562c5 | 3638 | */ |
0b246afa | 3639 | if (BTRFS_I(inode)->last_trans == fs_info->generation) |
5dc562c5 JB |
3640 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, |
3641 | &BTRFS_I(inode)->runtime_flags); | |
3642 | ||
bde6c242 FM |
3643 | /* |
3644 | * We don't persist the id of the transaction where an unlink operation | |
3645 | * against the inode was last made. So here we assume the inode might | |
3646 | * have been evicted, and therefore the exact value of last_unlink_trans | |
3647 | * lost, and set it to last_trans to avoid metadata inconsistencies | |
3648 | * between the inode and its parent if the inode is fsync'ed and the log | |
3649 | * replayed. For example, in the scenario: | |
3650 | * | |
3651 | * touch mydir/foo | |
3652 | * ln mydir/foo mydir/bar | |
3653 | * sync | |
3654 | * unlink mydir/bar | |
3655 | * echo 2 > /proc/sys/vm/drop_caches # evicts inode | |
3656 | * xfs_io -c fsync mydir/foo | |
3657 | * <power failure> | |
3658 | * mount fs, triggers fsync log replay | |
3659 | * | |
3660 | * We must make sure that when we fsync our inode foo we also log its | |
3661 | * parent inode, otherwise after log replay the parent still has the | |
3662 | * dentry with the "bar" name but our inode foo has a link count of 1 | |
3663 | * and doesn't have an inode ref with the name "bar" anymore. | |
3664 | * | |
3665 | * Setting last_unlink_trans to last_trans is a pessimistic approach, | |
01327610 | 3666 | * but it guarantees correctness at the expense of occasional full |
bde6c242 FM |
3667 | * transaction commits on fsync if our inode is a directory, or if our |
3668 | * inode is not a directory, logging its parent unnecessarily. | |
3669 | */ | |
3670 | BTRFS_I(inode)->last_unlink_trans = BTRFS_I(inode)->last_trans; | |
41bd6067 FM |
3671 | /* |
3672 | * Similar reasoning for last_link_trans, needs to be set otherwise | |
3673 | * for a case like the following: | |
3674 | * | |
3675 | * mkdir A | |
3676 | * touch foo | |
3677 | * ln foo A/bar | |
3678 | * echo 2 > /proc/sys/vm/drop_caches | |
3679 | * fsync foo | |
3680 | * <power failure> | |
3681 | * | |
3682 | * Would result in link bar and directory A not existing after the power | |
3683 | * failure. | |
3684 | */ | |
3685 | BTRFS_I(inode)->last_link_trans = BTRFS_I(inode)->last_trans; | |
bde6c242 | 3686 | |
67de1176 MX |
3687 | path->slots[0]++; |
3688 | if (inode->i_nlink != 1 || | |
3689 | path->slots[0] >= btrfs_header_nritems(leaf)) | |
3690 | goto cache_acl; | |
3691 | ||
3692 | btrfs_item_key_to_cpu(leaf, &location, path->slots[0]); | |
4a0cc7ca | 3693 | if (location.objectid != btrfs_ino(BTRFS_I(inode))) |
67de1176 MX |
3694 | goto cache_acl; |
3695 | ||
3696 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); | |
3697 | if (location.type == BTRFS_INODE_REF_KEY) { | |
3698 | struct btrfs_inode_ref *ref; | |
3699 | ||
3700 | ref = (struct btrfs_inode_ref *)ptr; | |
3701 | BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref); | |
3702 | } else if (location.type == BTRFS_INODE_EXTREF_KEY) { | |
3703 | struct btrfs_inode_extref *extref; | |
3704 | ||
3705 | extref = (struct btrfs_inode_extref *)ptr; | |
3706 | BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf, | |
3707 | extref); | |
3708 | } | |
2f7e33d4 | 3709 | cache_acl: |
46a53cca CM |
3710 | /* |
3711 | * try to precache a NULL acl entry for files that don't have | |
3712 | * any xattrs or acls | |
3713 | */ | |
33345d01 | 3714 | maybe_acls = acls_after_inode_item(leaf, path->slots[0], |
f85b7379 | 3715 | btrfs_ino(BTRFS_I(inode)), &first_xattr_slot); |
63541927 FDBM |
3716 | if (first_xattr_slot != -1) { |
3717 | path->slots[0] = first_xattr_slot; | |
3718 | ret = btrfs_load_inode_props(inode, path); | |
3719 | if (ret) | |
0b246afa | 3720 | btrfs_err(fs_info, |
351fd353 | 3721 | "error loading props for ino %llu (root %llu): %d", |
4a0cc7ca | 3722 | btrfs_ino(BTRFS_I(inode)), |
63541927 FDBM |
3723 | root->root_key.objectid, ret); |
3724 | } | |
4222ea71 FM |
3725 | if (path != in_path) |
3726 | btrfs_free_path(path); | |
63541927 | 3727 | |
72c04902 AV |
3728 | if (!maybe_acls) |
3729 | cache_no_acl(inode); | |
46a53cca | 3730 | |
39279cc3 | 3731 | switch (inode->i_mode & S_IFMT) { |
39279cc3 CM |
3732 | case S_IFREG: |
3733 | inode->i_mapping->a_ops = &btrfs_aops; | |
d1310b2e | 3734 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; |
39279cc3 CM |
3735 | inode->i_fop = &btrfs_file_operations; |
3736 | inode->i_op = &btrfs_file_inode_operations; | |
3737 | break; | |
3738 | case S_IFDIR: | |
3739 | inode->i_fop = &btrfs_dir_file_operations; | |
67ade058 | 3740 | inode->i_op = &btrfs_dir_inode_operations; |
39279cc3 CM |
3741 | break; |
3742 | case S_IFLNK: | |
3743 | inode->i_op = &btrfs_symlink_inode_operations; | |
21fc61c7 | 3744 | inode_nohighmem(inode); |
4779cc04 | 3745 | inode->i_mapping->a_ops = &btrfs_aops; |
39279cc3 | 3746 | break; |
618e21d5 | 3747 | default: |
0279b4cd | 3748 | inode->i_op = &btrfs_special_inode_operations; |
618e21d5 JB |
3749 | init_special_inode(inode, inode->i_mode, rdev); |
3750 | break; | |
39279cc3 | 3751 | } |
6cbff00f | 3752 | |
7b6a221e | 3753 | btrfs_sync_inode_flags_to_i_flags(inode); |
67710892 | 3754 | return 0; |
39279cc3 CM |
3755 | } |
3756 | ||
d352ac68 CM |
3757 | /* |
3758 | * given a leaf and an inode, copy the inode fields into the leaf | |
3759 | */ | |
e02119d5 CM |
3760 | static void fill_inode_item(struct btrfs_trans_handle *trans, |
3761 | struct extent_buffer *leaf, | |
5f39d397 | 3762 | struct btrfs_inode_item *item, |
39279cc3 CM |
3763 | struct inode *inode) |
3764 | { | |
51fab693 LB |
3765 | struct btrfs_map_token token; |
3766 | ||
3767 | btrfs_init_map_token(&token); | |
5f39d397 | 3768 | |
51fab693 LB |
3769 | btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token); |
3770 | btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token); | |
3771 | btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size, | |
3772 | &token); | |
3773 | btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token); | |
3774 | btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token); | |
5f39d397 | 3775 | |
a937b979 | 3776 | btrfs_set_token_timespec_sec(leaf, &item->atime, |
51fab693 | 3777 | inode->i_atime.tv_sec, &token); |
a937b979 | 3778 | btrfs_set_token_timespec_nsec(leaf, &item->atime, |
51fab693 | 3779 | inode->i_atime.tv_nsec, &token); |
5f39d397 | 3780 | |
a937b979 | 3781 | btrfs_set_token_timespec_sec(leaf, &item->mtime, |
51fab693 | 3782 | inode->i_mtime.tv_sec, &token); |
a937b979 | 3783 | btrfs_set_token_timespec_nsec(leaf, &item->mtime, |
51fab693 | 3784 | inode->i_mtime.tv_nsec, &token); |
5f39d397 | 3785 | |
a937b979 | 3786 | btrfs_set_token_timespec_sec(leaf, &item->ctime, |
51fab693 | 3787 | inode->i_ctime.tv_sec, &token); |
a937b979 | 3788 | btrfs_set_token_timespec_nsec(leaf, &item->ctime, |
51fab693 | 3789 | inode->i_ctime.tv_nsec, &token); |
5f39d397 | 3790 | |
9cc97d64 | 3791 | btrfs_set_token_timespec_sec(leaf, &item->otime, |
3792 | BTRFS_I(inode)->i_otime.tv_sec, &token); | |
3793 | btrfs_set_token_timespec_nsec(leaf, &item->otime, | |
3794 | BTRFS_I(inode)->i_otime.tv_nsec, &token); | |
3795 | ||
51fab693 LB |
3796 | btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode), |
3797 | &token); | |
3798 | btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation, | |
3799 | &token); | |
c7f88c4e JL |
3800 | btrfs_set_token_inode_sequence(leaf, item, inode_peek_iversion(inode), |
3801 | &token); | |
51fab693 LB |
3802 | btrfs_set_token_inode_transid(leaf, item, trans->transid, &token); |
3803 | btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token); | |
3804 | btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token); | |
3805 | btrfs_set_token_inode_block_group(leaf, item, 0, &token); | |
39279cc3 CM |
3806 | } |
3807 | ||
d352ac68 CM |
3808 | /* |
3809 | * copy everything in the in-memory inode into the btree. | |
3810 | */ | |
2115133f | 3811 | static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans, |
d397712b | 3812 | struct btrfs_root *root, struct inode *inode) |
39279cc3 CM |
3813 | { |
3814 | struct btrfs_inode_item *inode_item; | |
3815 | struct btrfs_path *path; | |
5f39d397 | 3816 | struct extent_buffer *leaf; |
39279cc3 CM |
3817 | int ret; |
3818 | ||
3819 | path = btrfs_alloc_path(); | |
16cdcec7 MX |
3820 | if (!path) |
3821 | return -ENOMEM; | |
3822 | ||
b9473439 | 3823 | path->leave_spinning = 1; |
16cdcec7 MX |
3824 | ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location, |
3825 | 1); | |
39279cc3 CM |
3826 | if (ret) { |
3827 | if (ret > 0) | |
3828 | ret = -ENOENT; | |
3829 | goto failed; | |
3830 | } | |
3831 | ||
5f39d397 CM |
3832 | leaf = path->nodes[0]; |
3833 | inode_item = btrfs_item_ptr(leaf, path->slots[0], | |
16cdcec7 | 3834 | struct btrfs_inode_item); |
39279cc3 | 3835 | |
e02119d5 | 3836 | fill_inode_item(trans, leaf, inode_item, inode); |
5f39d397 | 3837 | btrfs_mark_buffer_dirty(leaf); |
15ee9bc7 | 3838 | btrfs_set_inode_last_trans(trans, inode); |
39279cc3 CM |
3839 | ret = 0; |
3840 | failed: | |
39279cc3 CM |
3841 | btrfs_free_path(path); |
3842 | return ret; | |
3843 | } | |
3844 | ||
2115133f CM |
3845 | /* |
3846 | * copy everything in the in-memory inode into the btree. | |
3847 | */ | |
3848 | noinline int btrfs_update_inode(struct btrfs_trans_handle *trans, | |
3849 | struct btrfs_root *root, struct inode *inode) | |
3850 | { | |
0b246afa | 3851 | struct btrfs_fs_info *fs_info = root->fs_info; |
2115133f CM |
3852 | int ret; |
3853 | ||
3854 | /* | |
3855 | * If the inode is a free space inode, we can deadlock during commit | |
3856 | * if we put it into the delayed code. | |
3857 | * | |
3858 | * The data relocation inode should also be directly updated | |
3859 | * without delay | |
3860 | */ | |
70ddc553 | 3861 | if (!btrfs_is_free_space_inode(BTRFS_I(inode)) |
1d52c78a | 3862 | && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID |
0b246afa | 3863 | && !test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) { |
8ea05e3a AB |
3864 | btrfs_update_root_times(trans, root); |
3865 | ||
2115133f CM |
3866 | ret = btrfs_delayed_update_inode(trans, root, inode); |
3867 | if (!ret) | |
3868 | btrfs_set_inode_last_trans(trans, inode); | |
3869 | return ret; | |
3870 | } | |
3871 | ||
3872 | return btrfs_update_inode_item(trans, root, inode); | |
3873 | } | |
3874 | ||
be6aef60 JB |
3875 | noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans, |
3876 | struct btrfs_root *root, | |
3877 | struct inode *inode) | |
2115133f CM |
3878 | { |
3879 | int ret; | |
3880 | ||
3881 | ret = btrfs_update_inode(trans, root, inode); | |
3882 | if (ret == -ENOSPC) | |
3883 | return btrfs_update_inode_item(trans, root, inode); | |
3884 | return ret; | |
3885 | } | |
3886 | ||
d352ac68 CM |
3887 | /* |
3888 | * unlink helper that gets used here in inode.c and in the tree logging | |
3889 | * recovery code. It remove a link in a directory with a given name, and | |
3890 | * also drops the back refs in the inode to the directory | |
3891 | */ | |
92986796 AV |
3892 | static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans, |
3893 | struct btrfs_root *root, | |
4ec5934e NB |
3894 | struct btrfs_inode *dir, |
3895 | struct btrfs_inode *inode, | |
92986796 | 3896 | const char *name, int name_len) |
39279cc3 | 3897 | { |
0b246afa | 3898 | struct btrfs_fs_info *fs_info = root->fs_info; |
39279cc3 | 3899 | struct btrfs_path *path; |
39279cc3 | 3900 | int ret = 0; |
5f39d397 | 3901 | struct extent_buffer *leaf; |
39279cc3 | 3902 | struct btrfs_dir_item *di; |
5f39d397 | 3903 | struct btrfs_key key; |
aec7477b | 3904 | u64 index; |
33345d01 LZ |
3905 | u64 ino = btrfs_ino(inode); |
3906 | u64 dir_ino = btrfs_ino(dir); | |
39279cc3 CM |
3907 | |
3908 | path = btrfs_alloc_path(); | |
54aa1f4d CM |
3909 | if (!path) { |
3910 | ret = -ENOMEM; | |
554233a6 | 3911 | goto out; |
54aa1f4d CM |
3912 | } |
3913 | ||
b9473439 | 3914 | path->leave_spinning = 1; |
33345d01 | 3915 | di = btrfs_lookup_dir_item(trans, root, path, dir_ino, |
39279cc3 | 3916 | name, name_len, -1); |
3cf5068f LB |
3917 | if (IS_ERR_OR_NULL(di)) { |
3918 | ret = di ? PTR_ERR(di) : -ENOENT; | |
39279cc3 CM |
3919 | goto err; |
3920 | } | |
5f39d397 CM |
3921 | leaf = path->nodes[0]; |
3922 | btrfs_dir_item_key_to_cpu(leaf, di, &key); | |
39279cc3 | 3923 | ret = btrfs_delete_one_dir_name(trans, root, path, di); |
54aa1f4d CM |
3924 | if (ret) |
3925 | goto err; | |
b3b4aa74 | 3926 | btrfs_release_path(path); |
39279cc3 | 3927 | |
67de1176 MX |
3928 | /* |
3929 | * If we don't have dir index, we have to get it by looking up | |
3930 | * the inode ref, since we get the inode ref, remove it directly, | |
3931 | * it is unnecessary to do delayed deletion. | |
3932 | * | |
3933 | * But if we have dir index, needn't search inode ref to get it. | |
3934 | * Since the inode ref is close to the inode item, it is better | |
3935 | * that we delay to delete it, and just do this deletion when | |
3936 | * we update the inode item. | |
3937 | */ | |
4ec5934e | 3938 | if (inode->dir_index) { |
67de1176 MX |
3939 | ret = btrfs_delayed_delete_inode_ref(inode); |
3940 | if (!ret) { | |
4ec5934e | 3941 | index = inode->dir_index; |
67de1176 MX |
3942 | goto skip_backref; |
3943 | } | |
3944 | } | |
3945 | ||
33345d01 LZ |
3946 | ret = btrfs_del_inode_ref(trans, root, name, name_len, ino, |
3947 | dir_ino, &index); | |
aec7477b | 3948 | if (ret) { |
0b246afa | 3949 | btrfs_info(fs_info, |
c2cf52eb | 3950 | "failed to delete reference to %.*s, inode %llu parent %llu", |
c1c9ff7c | 3951 | name_len, name, ino, dir_ino); |
66642832 | 3952 | btrfs_abort_transaction(trans, ret); |
aec7477b JB |
3953 | goto err; |
3954 | } | |
67de1176 | 3955 | skip_backref: |
9add2945 | 3956 | ret = btrfs_delete_delayed_dir_index(trans, dir, index); |
79787eaa | 3957 | if (ret) { |
66642832 | 3958 | btrfs_abort_transaction(trans, ret); |
39279cc3 | 3959 | goto err; |
79787eaa | 3960 | } |
39279cc3 | 3961 | |
4ec5934e NB |
3962 | ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len, inode, |
3963 | dir_ino); | |
79787eaa | 3964 | if (ret != 0 && ret != -ENOENT) { |
66642832 | 3965 | btrfs_abort_transaction(trans, ret); |
79787eaa JM |
3966 | goto err; |
3967 | } | |
e02119d5 | 3968 | |
4ec5934e NB |
3969 | ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len, dir, |
3970 | index); | |
6418c961 CM |
3971 | if (ret == -ENOENT) |
3972 | ret = 0; | |
d4e3991b | 3973 | else if (ret) |
66642832 | 3974 | btrfs_abort_transaction(trans, ret); |
39279cc3 CM |
3975 | err: |
3976 | btrfs_free_path(path); | |
e02119d5 CM |
3977 | if (ret) |
3978 | goto out; | |
3979 | ||
6ef06d27 | 3980 | btrfs_i_size_write(dir, dir->vfs_inode.i_size - name_len * 2); |
4ec5934e NB |
3981 | inode_inc_iversion(&inode->vfs_inode); |
3982 | inode_inc_iversion(&dir->vfs_inode); | |
3983 | inode->vfs_inode.i_ctime = dir->vfs_inode.i_mtime = | |
3984 | dir->vfs_inode.i_ctime = current_time(&inode->vfs_inode); | |
3985 | ret = btrfs_update_inode(trans, root, &dir->vfs_inode); | |
e02119d5 | 3986 | out: |
39279cc3 CM |
3987 | return ret; |
3988 | } | |
3989 | ||
92986796 AV |
3990 | int btrfs_unlink_inode(struct btrfs_trans_handle *trans, |
3991 | struct btrfs_root *root, | |
4ec5934e | 3992 | struct btrfs_inode *dir, struct btrfs_inode *inode, |
92986796 AV |
3993 | const char *name, int name_len) |
3994 | { | |
3995 | int ret; | |
3996 | ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len); | |
3997 | if (!ret) { | |
4ec5934e NB |
3998 | drop_nlink(&inode->vfs_inode); |
3999 | ret = btrfs_update_inode(trans, root, &inode->vfs_inode); | |
92986796 AV |
4000 | } |
4001 | return ret; | |
4002 | } | |
39279cc3 | 4003 | |
a22285a6 YZ |
4004 | /* |
4005 | * helper to start transaction for unlink and rmdir. | |
4006 | * | |
d52be818 JB |
4007 | * unlink and rmdir are special in btrfs, they do not always free space, so |
4008 | * if we cannot make our reservations the normal way try and see if there is | |
4009 | * plenty of slack room in the global reserve to migrate, otherwise we cannot | |
4010 | * allow the unlink to occur. | |
a22285a6 | 4011 | */ |
d52be818 | 4012 | static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir) |
4df27c4d | 4013 | { |
a22285a6 | 4014 | struct btrfs_root *root = BTRFS_I(dir)->root; |
4df27c4d | 4015 | |
e70bea5f JB |
4016 | /* |
4017 | * 1 for the possible orphan item | |
4018 | * 1 for the dir item | |
4019 | * 1 for the dir index | |
4020 | * 1 for the inode ref | |
e70bea5f JB |
4021 | * 1 for the inode |
4022 | */ | |
8eab77ff | 4023 | return btrfs_start_transaction_fallback_global_rsv(root, 5, 5); |
a22285a6 YZ |
4024 | } |
4025 | ||
4026 | static int btrfs_unlink(struct inode *dir, struct dentry *dentry) | |
4027 | { | |
4028 | struct btrfs_root *root = BTRFS_I(dir)->root; | |
4029 | struct btrfs_trans_handle *trans; | |
2b0143b5 | 4030 | struct inode *inode = d_inode(dentry); |
a22285a6 | 4031 | int ret; |
a22285a6 | 4032 | |
d52be818 | 4033 | trans = __unlink_start_trans(dir); |
a22285a6 YZ |
4034 | if (IS_ERR(trans)) |
4035 | return PTR_ERR(trans); | |
5f39d397 | 4036 | |
4ec5934e NB |
4037 | btrfs_record_unlink_dir(trans, BTRFS_I(dir), BTRFS_I(d_inode(dentry)), |
4038 | 0); | |
12fcfd22 | 4039 | |
4ec5934e NB |
4040 | ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir), |
4041 | BTRFS_I(d_inode(dentry)), dentry->d_name.name, | |
4042 | dentry->d_name.len); | |
b532402e TI |
4043 | if (ret) |
4044 | goto out; | |
7b128766 | 4045 | |
a22285a6 | 4046 | if (inode->i_nlink == 0) { |
73f2e545 | 4047 | ret = btrfs_orphan_add(trans, BTRFS_I(inode)); |
b532402e TI |
4048 | if (ret) |
4049 | goto out; | |
a22285a6 | 4050 | } |
7b128766 | 4051 | |
b532402e | 4052 | out: |
3a45bb20 | 4053 | btrfs_end_transaction(trans); |
2ff7e61e | 4054 | btrfs_btree_balance_dirty(root->fs_info); |
39279cc3 CM |
4055 | return ret; |
4056 | } | |
4057 | ||
f60a2364 | 4058 | static int btrfs_unlink_subvol(struct btrfs_trans_handle *trans, |
401b3b19 LF |
4059 | struct inode *dir, u64 objectid, |
4060 | const char *name, int name_len) | |
4df27c4d | 4061 | { |
401b3b19 | 4062 | struct btrfs_root *root = BTRFS_I(dir)->root; |
4df27c4d YZ |
4063 | struct btrfs_path *path; |
4064 | struct extent_buffer *leaf; | |
4065 | struct btrfs_dir_item *di; | |
4066 | struct btrfs_key key; | |
4067 | u64 index; | |
4068 | int ret; | |
4a0cc7ca | 4069 | u64 dir_ino = btrfs_ino(BTRFS_I(dir)); |
4df27c4d YZ |
4070 | |
4071 | path = btrfs_alloc_path(); | |
4072 | if (!path) | |
4073 | return -ENOMEM; | |
4074 | ||
33345d01 | 4075 | di = btrfs_lookup_dir_item(trans, root, path, dir_ino, |
4df27c4d | 4076 | name, name_len, -1); |
79787eaa | 4077 | if (IS_ERR_OR_NULL(di)) { |
3cf5068f | 4078 | ret = di ? PTR_ERR(di) : -ENOENT; |
79787eaa JM |
4079 | goto out; |
4080 | } | |
4df27c4d YZ |
4081 | |
4082 | leaf = path->nodes[0]; | |
4083 | btrfs_dir_item_key_to_cpu(leaf, di, &key); | |
4084 | WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid); | |
4085 | ret = btrfs_delete_one_dir_name(trans, root, path, di); | |
79787eaa | 4086 | if (ret) { |
66642832 | 4087 | btrfs_abort_transaction(trans, ret); |
79787eaa JM |
4088 | goto out; |
4089 | } | |
b3b4aa74 | 4090 | btrfs_release_path(path); |
4df27c4d | 4091 | |
3ee1c553 LF |
4092 | ret = btrfs_del_root_ref(trans, objectid, root->root_key.objectid, |
4093 | dir_ino, &index, name, name_len); | |
4df27c4d | 4094 | if (ret < 0) { |
79787eaa | 4095 | if (ret != -ENOENT) { |
66642832 | 4096 | btrfs_abort_transaction(trans, ret); |
79787eaa JM |
4097 | goto out; |
4098 | } | |
33345d01 | 4099 | di = btrfs_search_dir_index_item(root, path, dir_ino, |
4df27c4d | 4100 | name, name_len); |
79787eaa JM |
4101 | if (IS_ERR_OR_NULL(di)) { |
4102 | if (!di) | |
4103 | ret = -ENOENT; | |
4104 | else | |
4105 | ret = PTR_ERR(di); | |
66642832 | 4106 | btrfs_abort_transaction(trans, ret); |
79787eaa JM |
4107 | goto out; |
4108 | } | |
4df27c4d YZ |
4109 | |
4110 | leaf = path->nodes[0]; | |
4111 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); | |
4df27c4d YZ |
4112 | index = key.offset; |
4113 | } | |
945d8962 | 4114 | btrfs_release_path(path); |
4df27c4d | 4115 | |
9add2945 | 4116 | ret = btrfs_delete_delayed_dir_index(trans, BTRFS_I(dir), index); |
79787eaa | 4117 | if (ret) { |
66642832 | 4118 | btrfs_abort_transaction(trans, ret); |
79787eaa JM |
4119 | goto out; |
4120 | } | |
4df27c4d | 4121 | |
6ef06d27 | 4122 | btrfs_i_size_write(BTRFS_I(dir), dir->i_size - name_len * 2); |
0c4d2d95 | 4123 | inode_inc_iversion(dir); |
c2050a45 | 4124 | dir->i_mtime = dir->i_ctime = current_time(dir); |
5a24e84c | 4125 | ret = btrfs_update_inode_fallback(trans, root, dir); |
79787eaa | 4126 | if (ret) |
66642832 | 4127 | btrfs_abort_transaction(trans, ret); |
79787eaa | 4128 | out: |
71d7aed0 | 4129 | btrfs_free_path(path); |
79787eaa | 4130 | return ret; |
4df27c4d YZ |
4131 | } |
4132 | ||
ec42f167 MT |
4133 | /* |
4134 | * Helper to check if the subvolume references other subvolumes or if it's | |
4135 | * default. | |
4136 | */ | |
f60a2364 | 4137 | static noinline int may_destroy_subvol(struct btrfs_root *root) |
ec42f167 MT |
4138 | { |
4139 | struct btrfs_fs_info *fs_info = root->fs_info; | |
4140 | struct btrfs_path *path; | |
4141 | struct btrfs_dir_item *di; | |
4142 | struct btrfs_key key; | |
4143 | u64 dir_id; | |
4144 | int ret; | |
4145 | ||
4146 | path = btrfs_alloc_path(); | |
4147 | if (!path) | |
4148 | return -ENOMEM; | |
4149 | ||
4150 | /* Make sure this root isn't set as the default subvol */ | |
4151 | dir_id = btrfs_super_root_dir(fs_info->super_copy); | |
4152 | di = btrfs_lookup_dir_item(NULL, fs_info->tree_root, path, | |
4153 | dir_id, "default", 7, 0); | |
4154 | if (di && !IS_ERR(di)) { | |
4155 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key); | |
4156 | if (key.objectid == root->root_key.objectid) { | |
4157 | ret = -EPERM; | |
4158 | btrfs_err(fs_info, | |
4159 | "deleting default subvolume %llu is not allowed", | |
4160 | key.objectid); | |
4161 | goto out; | |
4162 | } | |
4163 | btrfs_release_path(path); | |
4164 | } | |
4165 | ||
4166 | key.objectid = root->root_key.objectid; | |
4167 | key.type = BTRFS_ROOT_REF_KEY; | |
4168 | key.offset = (u64)-1; | |
4169 | ||
4170 | ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0); | |
4171 | if (ret < 0) | |
4172 | goto out; | |
4173 | BUG_ON(ret == 0); | |
4174 | ||
4175 | ret = 0; | |
4176 | if (path->slots[0] > 0) { | |
4177 | path->slots[0]--; | |
4178 | btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); | |
4179 | if (key.objectid == root->root_key.objectid && | |
4180 | key.type == BTRFS_ROOT_REF_KEY) | |
4181 | ret = -ENOTEMPTY; | |
4182 | } | |
4183 | out: | |
4184 | btrfs_free_path(path); | |
4185 | return ret; | |
4186 | } | |
4187 | ||
20a68004 NB |
4188 | /* Delete all dentries for inodes belonging to the root */ |
4189 | static void btrfs_prune_dentries(struct btrfs_root *root) | |
4190 | { | |
4191 | struct btrfs_fs_info *fs_info = root->fs_info; | |
4192 | struct rb_node *node; | |
4193 | struct rb_node *prev; | |
4194 | struct btrfs_inode *entry; | |
4195 | struct inode *inode; | |
4196 | u64 objectid = 0; | |
4197 | ||
4198 | if (!test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) | |
4199 | WARN_ON(btrfs_root_refs(&root->root_item) != 0); | |
4200 | ||
4201 | spin_lock(&root->inode_lock); | |
4202 | again: | |
4203 | node = root->inode_tree.rb_node; | |
4204 | prev = NULL; | |
4205 | while (node) { | |
4206 | prev = node; | |
4207 | entry = rb_entry(node, struct btrfs_inode, rb_node); | |
4208 | ||
37508515 | 4209 | if (objectid < btrfs_ino(entry)) |
20a68004 | 4210 | node = node->rb_left; |
37508515 | 4211 | else if (objectid > btrfs_ino(entry)) |
20a68004 NB |
4212 | node = node->rb_right; |
4213 | else | |
4214 | break; | |
4215 | } | |
4216 | if (!node) { | |
4217 | while (prev) { | |
4218 | entry = rb_entry(prev, struct btrfs_inode, rb_node); | |
37508515 | 4219 | if (objectid <= btrfs_ino(entry)) { |
20a68004 NB |
4220 | node = prev; |
4221 | break; | |
4222 | } | |
4223 | prev = rb_next(prev); | |
4224 | } | |
4225 | } | |
4226 | while (node) { | |
4227 | entry = rb_entry(node, struct btrfs_inode, rb_node); | |
37508515 | 4228 | objectid = btrfs_ino(entry) + 1; |
20a68004 NB |
4229 | inode = igrab(&entry->vfs_inode); |
4230 | if (inode) { | |
4231 | spin_unlock(&root->inode_lock); | |
4232 | if (atomic_read(&inode->i_count) > 1) | |
4233 | d_prune_aliases(inode); | |
4234 | /* | |
4235 | * btrfs_drop_inode will have it removed from the inode | |
4236 | * cache when its usage count hits zero. | |
4237 | */ | |
4238 | iput(inode); | |
4239 | cond_resched(); | |
4240 | spin_lock(&root->inode_lock); | |
4241 | goto again; | |
4242 | } | |
4243 | ||
4244 | if (cond_resched_lock(&root->inode_lock)) | |
4245 | goto again; | |
4246 | ||
4247 | node = rb_next(node); | |
4248 | } | |
4249 | spin_unlock(&root->inode_lock); | |
4250 | } | |
4251 | ||
f60a2364 MT |
4252 | int btrfs_delete_subvolume(struct inode *dir, struct dentry *dentry) |
4253 | { | |
4254 | struct btrfs_fs_info *fs_info = btrfs_sb(dentry->d_sb); | |
4255 | struct btrfs_root *root = BTRFS_I(dir)->root; | |
4256 | struct inode *inode = d_inode(dentry); | |
4257 | struct btrfs_root *dest = BTRFS_I(inode)->root; | |
4258 | struct btrfs_trans_handle *trans; | |
4259 | struct btrfs_block_rsv block_rsv; | |
4260 | u64 root_flags; | |
f60a2364 MT |
4261 | int ret; |
4262 | int err; | |
4263 | ||
4264 | /* | |
4265 | * Don't allow to delete a subvolume with send in progress. This is | |
4266 | * inside the inode lock so the error handling that has to drop the bit | |
4267 | * again is not run concurrently. | |
4268 | */ | |
4269 | spin_lock(&dest->root_item_lock); | |
a7176f74 | 4270 | if (dest->send_in_progress) { |
f60a2364 MT |
4271 | spin_unlock(&dest->root_item_lock); |
4272 | btrfs_warn(fs_info, | |
4273 | "attempt to delete subvolume %llu during send", | |
4274 | dest->root_key.objectid); | |
4275 | return -EPERM; | |
4276 | } | |
a7176f74 LF |
4277 | root_flags = btrfs_root_flags(&dest->root_item); |
4278 | btrfs_set_root_flags(&dest->root_item, | |
4279 | root_flags | BTRFS_ROOT_SUBVOL_DEAD); | |
4280 | spin_unlock(&dest->root_item_lock); | |
f60a2364 MT |
4281 | |
4282 | down_write(&fs_info->subvol_sem); | |
4283 | ||
4284 | err = may_destroy_subvol(dest); | |
4285 | if (err) | |
4286 | goto out_up_write; | |
4287 | ||
4288 | btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP); | |
4289 | /* | |
4290 | * One for dir inode, | |
4291 | * two for dir entries, | |
4292 | * two for root ref/backref. | |
4293 | */ | |
c4c129db | 4294 | err = btrfs_subvolume_reserve_metadata(root, &block_rsv, 5, true); |
f60a2364 MT |
4295 | if (err) |
4296 | goto out_up_write; | |
4297 | ||
4298 | trans = btrfs_start_transaction(root, 0); | |
4299 | if (IS_ERR(trans)) { | |
4300 | err = PTR_ERR(trans); | |
4301 | goto out_release; | |
4302 | } | |
4303 | trans->block_rsv = &block_rsv; | |
4304 | trans->bytes_reserved = block_rsv.size; | |
4305 | ||
4306 | btrfs_record_snapshot_destroy(trans, BTRFS_I(dir)); | |
4307 | ||
401b3b19 LF |
4308 | ret = btrfs_unlink_subvol(trans, dir, dest->root_key.objectid, |
4309 | dentry->d_name.name, dentry->d_name.len); | |
f60a2364 MT |
4310 | if (ret) { |
4311 | err = ret; | |
4312 | btrfs_abort_transaction(trans, ret); | |
4313 | goto out_end_trans; | |
4314 | } | |
4315 | ||
4316 | btrfs_record_root_in_trans(trans, dest); | |
4317 | ||
4318 | memset(&dest->root_item.drop_progress, 0, | |
4319 | sizeof(dest->root_item.drop_progress)); | |
4320 | dest->root_item.drop_level = 0; | |
4321 | btrfs_set_root_refs(&dest->root_item, 0); | |
4322 | ||
4323 | if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) { | |
4324 | ret = btrfs_insert_orphan_item(trans, | |
4325 | fs_info->tree_root, | |
4326 | dest->root_key.objectid); | |
4327 | if (ret) { | |
4328 | btrfs_abort_transaction(trans, ret); | |
4329 | err = ret; | |
4330 | goto out_end_trans; | |
4331 | } | |
4332 | } | |
4333 | ||
d1957791 | 4334 | ret = btrfs_uuid_tree_remove(trans, dest->root_item.uuid, |
f60a2364 MT |
4335 | BTRFS_UUID_KEY_SUBVOL, |
4336 | dest->root_key.objectid); | |
4337 | if (ret && ret != -ENOENT) { | |
4338 | btrfs_abort_transaction(trans, ret); | |
4339 | err = ret; | |
4340 | goto out_end_trans; | |
4341 | } | |
4342 | if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) { | |
d1957791 | 4343 | ret = btrfs_uuid_tree_remove(trans, |
f60a2364 MT |
4344 | dest->root_item.received_uuid, |
4345 | BTRFS_UUID_KEY_RECEIVED_SUBVOL, | |
4346 | dest->root_key.objectid); | |
4347 | if (ret && ret != -ENOENT) { | |
4348 | btrfs_abort_transaction(trans, ret); | |
4349 | err = ret; | |
4350 | goto out_end_trans; | |
4351 | } | |
4352 | } | |
4353 | ||
4354 | out_end_trans: | |
4355 | trans->block_rsv = NULL; | |
4356 | trans->bytes_reserved = 0; | |
4357 | ret = btrfs_end_transaction(trans); | |
4358 | if (ret && !err) | |
4359 | err = ret; | |
4360 | inode->i_flags |= S_DEAD; | |
4361 | out_release: | |
4362 | btrfs_subvolume_release_metadata(fs_info, &block_rsv); | |
4363 | out_up_write: | |
4364 | up_write(&fs_info->subvol_sem); | |
4365 | if (err) { | |
4366 | spin_lock(&dest->root_item_lock); | |
4367 | root_flags = btrfs_root_flags(&dest->root_item); | |
4368 | btrfs_set_root_flags(&dest->root_item, | |
4369 | root_flags & ~BTRFS_ROOT_SUBVOL_DEAD); | |
4370 | spin_unlock(&dest->root_item_lock); | |
4371 | } else { | |
4372 | d_invalidate(dentry); | |
20a68004 | 4373 | btrfs_prune_dentries(dest); |
f60a2364 MT |
4374 | ASSERT(dest->send_in_progress == 0); |
4375 | ||
4376 | /* the last ref */ | |
4377 | if (dest->ino_cache_inode) { | |
4378 | iput(dest->ino_cache_inode); | |
4379 | dest->ino_cache_inode = NULL; | |
4380 | } | |
4381 | } | |
4382 | ||
4383 | return err; | |
4384 | } | |
4385 | ||
39279cc3 CM |
4386 | static int btrfs_rmdir(struct inode *dir, struct dentry *dentry) |
4387 | { | |
2b0143b5 | 4388 | struct inode *inode = d_inode(dentry); |
1832a6d5 | 4389 | int err = 0; |
39279cc3 | 4390 | struct btrfs_root *root = BTRFS_I(dir)->root; |
39279cc3 | 4391 | struct btrfs_trans_handle *trans; |
44f714da | 4392 | u64 last_unlink_trans; |
39279cc3 | 4393 | |
b3ae244e | 4394 | if (inode->i_size > BTRFS_EMPTY_DIR_SIZE) |
134d4512 | 4395 | return -ENOTEMPTY; |
4a0cc7ca | 4396 | if (btrfs_ino(BTRFS_I(inode)) == BTRFS_FIRST_FREE_OBJECTID) |
a79a464d | 4397 | return btrfs_delete_subvolume(dir, dentry); |
134d4512 | 4398 | |
d52be818 | 4399 | trans = __unlink_start_trans(dir); |
a22285a6 | 4400 | if (IS_ERR(trans)) |
5df6a9f6 | 4401 | return PTR_ERR(trans); |
5df6a9f6 | 4402 | |
4a0cc7ca | 4403 | if (unlikely(btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { |
401b3b19 | 4404 | err = btrfs_unlink_subvol(trans, dir, |
4df27c4d YZ |
4405 | BTRFS_I(inode)->location.objectid, |
4406 | dentry->d_name.name, | |
4407 | dentry->d_name.len); | |
4408 | goto out; | |
4409 | } | |
4410 | ||
73f2e545 | 4411 | err = btrfs_orphan_add(trans, BTRFS_I(inode)); |
7b128766 | 4412 | if (err) |
4df27c4d | 4413 | goto out; |
7b128766 | 4414 | |
44f714da FM |
4415 | last_unlink_trans = BTRFS_I(inode)->last_unlink_trans; |
4416 | ||
39279cc3 | 4417 | /* now the directory is empty */ |
4ec5934e NB |
4418 | err = btrfs_unlink_inode(trans, root, BTRFS_I(dir), |
4419 | BTRFS_I(d_inode(dentry)), dentry->d_name.name, | |
4420 | dentry->d_name.len); | |
44f714da | 4421 | if (!err) { |
6ef06d27 | 4422 | btrfs_i_size_write(BTRFS_I(inode), 0); |
44f714da FM |
4423 | /* |
4424 | * Propagate the last_unlink_trans value of the deleted dir to | |
4425 | * its parent directory. This is to prevent an unrecoverable | |
4426 | * log tree in the case we do something like this: | |
4427 | * 1) create dir foo | |
4428 | * 2) create snapshot under dir foo | |
4429 | * 3) delete the snapshot | |
4430 | * 4) rmdir foo | |
4431 | * 5) mkdir foo | |
4432 | * 6) fsync foo or some file inside foo | |
4433 | */ | |
4434 | if (last_unlink_trans >= trans->transid) | |
4435 | BTRFS_I(dir)->last_unlink_trans = last_unlink_trans; | |
4436 | } | |
4df27c4d | 4437 | out: |
3a45bb20 | 4438 | btrfs_end_transaction(trans); |
2ff7e61e | 4439 | btrfs_btree_balance_dirty(root->fs_info); |
3954401f | 4440 | |
39279cc3 CM |
4441 | return err; |
4442 | } | |
4443 | ||
ddfae63c JB |
4444 | /* |
4445 | * Return this if we need to call truncate_block for the last bit of the | |
4446 | * truncate. | |
4447 | */ | |
4448 | #define NEED_TRUNCATE_BLOCK 1 | |
0305cd5f | 4449 | |
39279cc3 CM |
4450 | /* |
4451 | * this can truncate away extent items, csum items and directory items. | |
4452 | * It starts at a high offset and removes keys until it can't find | |
d352ac68 | 4453 | * any higher than new_size |
39279cc3 CM |
4454 | * |
4455 | * csum items that cross the new i_size are truncated to the new size | |
4456 | * as well. | |
7b128766 JB |
4457 | * |
4458 | * min_type is the minimum key type to truncate down to. If set to 0, this | |
4459 | * will kill all the items on this inode, including the INODE_ITEM_KEY. | |
39279cc3 | 4460 | */ |
8082510e YZ |
4461 | int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans, |
4462 | struct btrfs_root *root, | |
4463 | struct inode *inode, | |
4464 | u64 new_size, u32 min_type) | |
39279cc3 | 4465 | { |
0b246afa | 4466 | struct btrfs_fs_info *fs_info = root->fs_info; |
39279cc3 | 4467 | struct btrfs_path *path; |
5f39d397 | 4468 | struct extent_buffer *leaf; |
39279cc3 | 4469 | struct btrfs_file_extent_item *fi; |
8082510e YZ |
4470 | struct btrfs_key key; |
4471 | struct btrfs_key found_key; | |
39279cc3 | 4472 | u64 extent_start = 0; |
db94535d | 4473 | u64 extent_num_bytes = 0; |
5d4f98a2 | 4474 | u64 extent_offset = 0; |
39279cc3 | 4475 | u64 item_end = 0; |
c1aa4575 | 4476 | u64 last_size = new_size; |
8082510e | 4477 | u32 found_type = (u8)-1; |
39279cc3 CM |
4478 | int found_extent; |
4479 | int del_item; | |
85e21bac CM |
4480 | int pending_del_nr = 0; |
4481 | int pending_del_slot = 0; | |
179e29e4 | 4482 | int extent_type = -1; |
8082510e | 4483 | int ret; |
4a0cc7ca | 4484 | u64 ino = btrfs_ino(BTRFS_I(inode)); |
28ed1345 | 4485 | u64 bytes_deleted = 0; |
897ca819 TM |
4486 | bool be_nice = false; |
4487 | bool should_throttle = false; | |
8082510e YZ |
4488 | |
4489 | BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY); | |
39279cc3 | 4490 | |
28ed1345 CM |
4491 | /* |
4492 | * for non-free space inodes and ref cows, we want to back off from | |
4493 | * time to time | |
4494 | */ | |
70ddc553 | 4495 | if (!btrfs_is_free_space_inode(BTRFS_I(inode)) && |
28ed1345 | 4496 | test_bit(BTRFS_ROOT_REF_COWS, &root->state)) |
897ca819 | 4497 | be_nice = true; |
28ed1345 | 4498 | |
0eb0e19c MF |
4499 | path = btrfs_alloc_path(); |
4500 | if (!path) | |
4501 | return -ENOMEM; | |
e4058b54 | 4502 | path->reada = READA_BACK; |
0eb0e19c | 4503 | |
5dc562c5 JB |
4504 | /* |
4505 | * We want to drop from the next block forward in case this new size is | |
4506 | * not block aligned since we will be keeping the last block of the | |
4507 | * extent just the way it is. | |
4508 | */ | |
27cdeb70 | 4509 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) || |
0b246afa | 4510 | root == fs_info->tree_root) |
dcdbc059 | 4511 | btrfs_drop_extent_cache(BTRFS_I(inode), ALIGN(new_size, |
0b246afa | 4512 | fs_info->sectorsize), |
da17066c | 4513 | (u64)-1, 0); |
8082510e | 4514 | |
16cdcec7 MX |
4515 | /* |
4516 | * This function is also used to drop the items in the log tree before | |
4517 | * we relog the inode, so if root != BTRFS_I(inode)->root, it means | |
52042d8e | 4518 | * it is used to drop the logged items. So we shouldn't kill the delayed |
16cdcec7 MX |
4519 | * items. |
4520 | */ | |
4521 | if (min_type == 0 && root == BTRFS_I(inode)->root) | |
4ccb5c72 | 4522 | btrfs_kill_delayed_inode_items(BTRFS_I(inode)); |
16cdcec7 | 4523 | |
33345d01 | 4524 | key.objectid = ino; |
39279cc3 | 4525 | key.offset = (u64)-1; |
5f39d397 CM |
4526 | key.type = (u8)-1; |
4527 | ||
85e21bac | 4528 | search_again: |
28ed1345 CM |
4529 | /* |
4530 | * with a 16K leaf size and 128MB extents, you can actually queue | |
4531 | * up a huge file in a single leaf. Most of the time that | |
4532 | * bytes_deleted is > 0, it will be huge by the time we get here | |
4533 | */ | |
fd86a3a3 OS |
4534 | if (be_nice && bytes_deleted > SZ_32M && |
4535 | btrfs_should_end_transaction(trans)) { | |
4536 | ret = -EAGAIN; | |
4537 | goto out; | |
28ed1345 CM |
4538 | } |
4539 | ||
b9473439 | 4540 | path->leave_spinning = 1; |
85e21bac | 4541 | ret = btrfs_search_slot(trans, root, &key, path, -1, 1); |
fd86a3a3 | 4542 | if (ret < 0) |
8082510e | 4543 | goto out; |
d397712b | 4544 | |
85e21bac | 4545 | if (ret > 0) { |
fd86a3a3 | 4546 | ret = 0; |
e02119d5 CM |
4547 | /* there are no items in the tree for us to truncate, we're |
4548 | * done | |
4549 | */ | |
8082510e YZ |
4550 | if (path->slots[0] == 0) |
4551 | goto out; | |
85e21bac CM |
4552 | path->slots[0]--; |
4553 | } | |
4554 | ||
d397712b | 4555 | while (1) { |
39279cc3 | 4556 | fi = NULL; |
5f39d397 CM |
4557 | leaf = path->nodes[0]; |
4558 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | |
962a298f | 4559 | found_type = found_key.type; |
39279cc3 | 4560 | |
33345d01 | 4561 | if (found_key.objectid != ino) |
39279cc3 | 4562 | break; |
5f39d397 | 4563 | |
85e21bac | 4564 | if (found_type < min_type) |
39279cc3 CM |
4565 | break; |
4566 | ||
5f39d397 | 4567 | item_end = found_key.offset; |
39279cc3 | 4568 | if (found_type == BTRFS_EXTENT_DATA_KEY) { |
5f39d397 | 4569 | fi = btrfs_item_ptr(leaf, path->slots[0], |
39279cc3 | 4570 | struct btrfs_file_extent_item); |
179e29e4 CM |
4571 | extent_type = btrfs_file_extent_type(leaf, fi); |
4572 | if (extent_type != BTRFS_FILE_EXTENT_INLINE) { | |
5f39d397 | 4573 | item_end += |
db94535d | 4574 | btrfs_file_extent_num_bytes(leaf, fi); |
09ed2f16 LB |
4575 | |
4576 | trace_btrfs_truncate_show_fi_regular( | |
4577 | BTRFS_I(inode), leaf, fi, | |
4578 | found_key.offset); | |
179e29e4 | 4579 | } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) { |
e41ca589 QW |
4580 | item_end += btrfs_file_extent_ram_bytes(leaf, |
4581 | fi); | |
09ed2f16 LB |
4582 | |
4583 | trace_btrfs_truncate_show_fi_inline( | |
4584 | BTRFS_I(inode), leaf, fi, path->slots[0], | |
4585 | found_key.offset); | |
39279cc3 | 4586 | } |
008630c1 | 4587 | item_end--; |
39279cc3 | 4588 | } |
8082510e YZ |
4589 | if (found_type > min_type) { |
4590 | del_item = 1; | |
4591 | } else { | |
76b42abb | 4592 | if (item_end < new_size) |
b888db2b | 4593 | break; |
8082510e YZ |
4594 | if (found_key.offset >= new_size) |
4595 | del_item = 1; | |
4596 | else | |
4597 | del_item = 0; | |
39279cc3 | 4598 | } |
39279cc3 | 4599 | found_extent = 0; |
39279cc3 | 4600 | /* FIXME, shrink the extent if the ref count is only 1 */ |
179e29e4 CM |
4601 | if (found_type != BTRFS_EXTENT_DATA_KEY) |
4602 | goto delete; | |
4603 | ||
4604 | if (extent_type != BTRFS_FILE_EXTENT_INLINE) { | |
39279cc3 | 4605 | u64 num_dec; |
db94535d | 4606 | extent_start = btrfs_file_extent_disk_bytenr(leaf, fi); |
f70a9a6b | 4607 | if (!del_item) { |
db94535d CM |
4608 | u64 orig_num_bytes = |
4609 | btrfs_file_extent_num_bytes(leaf, fi); | |
fda2832f QW |
4610 | extent_num_bytes = ALIGN(new_size - |
4611 | found_key.offset, | |
0b246afa | 4612 | fs_info->sectorsize); |
db94535d CM |
4613 | btrfs_set_file_extent_num_bytes(leaf, fi, |
4614 | extent_num_bytes); | |
4615 | num_dec = (orig_num_bytes - | |
9069218d | 4616 | extent_num_bytes); |
27cdeb70 MX |
4617 | if (test_bit(BTRFS_ROOT_REF_COWS, |
4618 | &root->state) && | |
4619 | extent_start != 0) | |
a76a3cd4 | 4620 | inode_sub_bytes(inode, num_dec); |
5f39d397 | 4621 | btrfs_mark_buffer_dirty(leaf); |
39279cc3 | 4622 | } else { |
db94535d CM |
4623 | extent_num_bytes = |
4624 | btrfs_file_extent_disk_num_bytes(leaf, | |
4625 | fi); | |
5d4f98a2 YZ |
4626 | extent_offset = found_key.offset - |
4627 | btrfs_file_extent_offset(leaf, fi); | |
4628 | ||
39279cc3 | 4629 | /* FIXME blocksize != 4096 */ |
9069218d | 4630 | num_dec = btrfs_file_extent_num_bytes(leaf, fi); |
39279cc3 CM |
4631 | if (extent_start != 0) { |
4632 | found_extent = 1; | |
27cdeb70 MX |
4633 | if (test_bit(BTRFS_ROOT_REF_COWS, |
4634 | &root->state)) | |
a76a3cd4 | 4635 | inode_sub_bytes(inode, num_dec); |
e02119d5 | 4636 | } |
39279cc3 | 4637 | } |
9069218d | 4638 | } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) { |
c8b97818 CM |
4639 | /* |
4640 | * we can't truncate inline items that have had | |
4641 | * special encodings | |
4642 | */ | |
4643 | if (!del_item && | |
c8b97818 | 4644 | btrfs_file_extent_encryption(leaf, fi) == 0 && |
ddfae63c JB |
4645 | btrfs_file_extent_other_encoding(leaf, fi) == 0 && |
4646 | btrfs_file_extent_compression(leaf, fi) == 0) { | |
4647 | u32 size = (u32)(new_size - found_key.offset); | |
4648 | ||
4649 | btrfs_set_file_extent_ram_bytes(leaf, fi, size); | |
4650 | size = btrfs_file_extent_calc_inline_size(size); | |
4651 | btrfs_truncate_item(root->fs_info, path, size, 1); | |
4652 | } else if (!del_item) { | |
514ac8ad | 4653 | /* |
ddfae63c JB |
4654 | * We have to bail so the last_size is set to |
4655 | * just before this extent. | |
514ac8ad | 4656 | */ |
fd86a3a3 | 4657 | ret = NEED_TRUNCATE_BLOCK; |
ddfae63c JB |
4658 | break; |
4659 | } | |
0305cd5f | 4660 | |
ddfae63c | 4661 | if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) |
0305cd5f | 4662 | inode_sub_bytes(inode, item_end + 1 - new_size); |
39279cc3 | 4663 | } |
179e29e4 | 4664 | delete: |
ddfae63c JB |
4665 | if (del_item) |
4666 | last_size = found_key.offset; | |
4667 | else | |
4668 | last_size = new_size; | |
39279cc3 | 4669 | if (del_item) { |
85e21bac CM |
4670 | if (!pending_del_nr) { |
4671 | /* no pending yet, add ourselves */ | |
4672 | pending_del_slot = path->slots[0]; | |
4673 | pending_del_nr = 1; | |
4674 | } else if (pending_del_nr && | |
4675 | path->slots[0] + 1 == pending_del_slot) { | |
4676 | /* hop on the pending chunk */ | |
4677 | pending_del_nr++; | |
4678 | pending_del_slot = path->slots[0]; | |
4679 | } else { | |
d397712b | 4680 | BUG(); |
85e21bac | 4681 | } |
39279cc3 CM |
4682 | } else { |
4683 | break; | |
4684 | } | |
897ca819 | 4685 | should_throttle = false; |
28f75a0e | 4686 | |
27cdeb70 MX |
4687 | if (found_extent && |
4688 | (test_bit(BTRFS_ROOT_REF_COWS, &root->state) || | |
0b246afa | 4689 | root == fs_info->tree_root)) { |
b9473439 | 4690 | btrfs_set_path_blocking(path); |
28ed1345 | 4691 | bytes_deleted += extent_num_bytes; |
84f7d8e6 | 4692 | ret = btrfs_free_extent(trans, root, extent_start, |
5d4f98a2 YZ |
4693 | extent_num_bytes, 0, |
4694 | btrfs_header_owner(leaf), | |
b06c4bf5 | 4695 | ino, extent_offset); |
05522109 OS |
4696 | if (ret) { |
4697 | btrfs_abort_transaction(trans, ret); | |
4698 | break; | |
4699 | } | |
28f75a0e | 4700 | if (be_nice) { |
7c861627 | 4701 | if (btrfs_should_throttle_delayed_refs(trans)) |
897ca819 | 4702 | should_throttle = true; |
28f75a0e | 4703 | } |
39279cc3 | 4704 | } |
85e21bac | 4705 | |
8082510e YZ |
4706 | if (found_type == BTRFS_INODE_ITEM_KEY) |
4707 | break; | |
4708 | ||
4709 | if (path->slots[0] == 0 || | |
1262133b | 4710 | path->slots[0] != pending_del_slot || |
28bad212 | 4711 | should_throttle) { |
8082510e YZ |
4712 | if (pending_del_nr) { |
4713 | ret = btrfs_del_items(trans, root, path, | |
4714 | pending_del_slot, | |
4715 | pending_del_nr); | |
79787eaa | 4716 | if (ret) { |
66642832 | 4717 | btrfs_abort_transaction(trans, ret); |
fd86a3a3 | 4718 | break; |
79787eaa | 4719 | } |
8082510e YZ |
4720 | pending_del_nr = 0; |
4721 | } | |
b3b4aa74 | 4722 | btrfs_release_path(path); |
28bad212 | 4723 | |
28f75a0e | 4724 | /* |
28bad212 JB |
4725 | * We can generate a lot of delayed refs, so we need to |
4726 | * throttle every once and a while and make sure we're | |
4727 | * adding enough space to keep up with the work we are | |
4728 | * generating. Since we hold a transaction here we | |
4729 | * can't flush, and we don't want to FLUSH_LIMIT because | |
4730 | * we could have generated too many delayed refs to | |
4731 | * actually allocate, so just bail if we're short and | |
4732 | * let the normal reservation dance happen higher up. | |
28f75a0e | 4733 | */ |
28bad212 JB |
4734 | if (should_throttle) { |
4735 | ret = btrfs_delayed_refs_rsv_refill(fs_info, | |
4736 | BTRFS_RESERVE_NO_FLUSH); | |
4737 | if (ret) { | |
4738 | ret = -EAGAIN; | |
4739 | break; | |
4740 | } | |
28f75a0e | 4741 | } |
85e21bac | 4742 | goto search_again; |
8082510e YZ |
4743 | } else { |
4744 | path->slots[0]--; | |
85e21bac | 4745 | } |
39279cc3 | 4746 | } |
8082510e | 4747 | out: |
fd86a3a3 OS |
4748 | if (ret >= 0 && pending_del_nr) { |
4749 | int err; | |
4750 | ||
4751 | err = btrfs_del_items(trans, root, path, pending_del_slot, | |
85e21bac | 4752 | pending_del_nr); |
fd86a3a3 OS |
4753 | if (err) { |
4754 | btrfs_abort_transaction(trans, err); | |
4755 | ret = err; | |
4756 | } | |
85e21bac | 4757 | } |
76b42abb FM |
4758 | if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) { |
4759 | ASSERT(last_size >= new_size); | |
fd86a3a3 | 4760 | if (!ret && last_size > new_size) |
76b42abb | 4761 | last_size = new_size; |
7f4f6e0a | 4762 | btrfs_ordered_update_i_size(inode, last_size, NULL); |
76b42abb | 4763 | } |
28ed1345 | 4764 | |
39279cc3 | 4765 | btrfs_free_path(path); |
fd86a3a3 | 4766 | return ret; |
39279cc3 CM |
4767 | } |
4768 | ||
4769 | /* | |
9703fefe | 4770 | * btrfs_truncate_block - read, zero a chunk and write a block |
2aaa6655 JB |
4771 | * @inode - inode that we're zeroing |
4772 | * @from - the offset to start zeroing | |
4773 | * @len - the length to zero, 0 to zero the entire range respective to the | |
4774 | * offset | |
4775 | * @front - zero up to the offset instead of from the offset on | |
4776 | * | |
9703fefe | 4777 | * This will find the block for the "from" offset and cow the block and zero the |
2aaa6655 | 4778 | * part we want to zero. This is used with truncate and hole punching. |
39279cc3 | 4779 | */ |
9703fefe | 4780 | int btrfs_truncate_block(struct inode *inode, loff_t from, loff_t len, |
2aaa6655 | 4781 | int front) |
39279cc3 | 4782 | { |
0b246afa | 4783 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
2aaa6655 | 4784 | struct address_space *mapping = inode->i_mapping; |
e6dcd2dc CM |
4785 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
4786 | struct btrfs_ordered_extent *ordered; | |
2ac55d41 | 4787 | struct extent_state *cached_state = NULL; |
364ecf36 | 4788 | struct extent_changeset *data_reserved = NULL; |
e6dcd2dc | 4789 | char *kaddr; |
0b246afa | 4790 | u32 blocksize = fs_info->sectorsize; |
09cbfeaf | 4791 | pgoff_t index = from >> PAGE_SHIFT; |
9703fefe | 4792 | unsigned offset = from & (blocksize - 1); |
39279cc3 | 4793 | struct page *page; |
3b16a4e3 | 4794 | gfp_t mask = btrfs_alloc_write_mask(mapping); |
39279cc3 | 4795 | int ret = 0; |
9703fefe CR |
4796 | u64 block_start; |
4797 | u64 block_end; | |
39279cc3 | 4798 | |
b03ebd99 NB |
4799 | if (IS_ALIGNED(offset, blocksize) && |
4800 | (!len || IS_ALIGNED(len, blocksize))) | |
39279cc3 | 4801 | goto out; |
9703fefe | 4802 | |
8b62f87b JB |
4803 | block_start = round_down(from, blocksize); |
4804 | block_end = block_start + blocksize - 1; | |
4805 | ||
364ecf36 | 4806 | ret = btrfs_delalloc_reserve_space(inode, &data_reserved, |
8b62f87b | 4807 | block_start, blocksize); |
5d5e103a JB |
4808 | if (ret) |
4809 | goto out; | |
39279cc3 | 4810 | |
211c17f5 | 4811 | again: |
3b16a4e3 | 4812 | page = find_or_create_page(mapping, index, mask); |
5d5e103a | 4813 | if (!page) { |
bc42bda2 | 4814 | btrfs_delalloc_release_space(inode, data_reserved, |
43b18595 QW |
4815 | block_start, blocksize, true); |
4816 | btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize, true); | |
ac6a2b36 | 4817 | ret = -ENOMEM; |
39279cc3 | 4818 | goto out; |
5d5e103a | 4819 | } |
e6dcd2dc | 4820 | |
39279cc3 | 4821 | if (!PageUptodate(page)) { |
9ebefb18 | 4822 | ret = btrfs_readpage(NULL, page); |
39279cc3 | 4823 | lock_page(page); |
211c17f5 CM |
4824 | if (page->mapping != mapping) { |
4825 | unlock_page(page); | |
09cbfeaf | 4826 | put_page(page); |
211c17f5 CM |
4827 | goto again; |
4828 | } | |
39279cc3 CM |
4829 | if (!PageUptodate(page)) { |
4830 | ret = -EIO; | |
89642229 | 4831 | goto out_unlock; |
39279cc3 CM |
4832 | } |
4833 | } | |
211c17f5 | 4834 | wait_on_page_writeback(page); |
e6dcd2dc | 4835 | |
9703fefe | 4836 | lock_extent_bits(io_tree, block_start, block_end, &cached_state); |
e6dcd2dc CM |
4837 | set_page_extent_mapped(page); |
4838 | ||
9703fefe | 4839 | ordered = btrfs_lookup_ordered_extent(inode, block_start); |
e6dcd2dc | 4840 | if (ordered) { |
9703fefe | 4841 | unlock_extent_cached(io_tree, block_start, block_end, |
e43bbe5e | 4842 | &cached_state); |
e6dcd2dc | 4843 | unlock_page(page); |
09cbfeaf | 4844 | put_page(page); |
eb84ae03 | 4845 | btrfs_start_ordered_extent(inode, ordered, 1); |
e6dcd2dc CM |
4846 | btrfs_put_ordered_extent(ordered); |
4847 | goto again; | |
4848 | } | |
4849 | ||
9703fefe | 4850 | clear_extent_bit(&BTRFS_I(inode)->io_tree, block_start, block_end, |
9e8a4a8b LB |
4851 | EXTENT_DIRTY | EXTENT_DELALLOC | |
4852 | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, | |
ae0f1625 | 4853 | 0, 0, &cached_state); |
5d5e103a | 4854 | |
e3b8a485 | 4855 | ret = btrfs_set_extent_delalloc(inode, block_start, block_end, 0, |
ba8b04c1 | 4856 | &cached_state, 0); |
9ed74f2d | 4857 | if (ret) { |
9703fefe | 4858 | unlock_extent_cached(io_tree, block_start, block_end, |
e43bbe5e | 4859 | &cached_state); |
9ed74f2d JB |
4860 | goto out_unlock; |
4861 | } | |
4862 | ||
9703fefe | 4863 | if (offset != blocksize) { |
2aaa6655 | 4864 | if (!len) |
9703fefe | 4865 | len = blocksize - offset; |
e6dcd2dc | 4866 | kaddr = kmap(page); |
2aaa6655 | 4867 | if (front) |
9703fefe CR |
4868 | memset(kaddr + (block_start - page_offset(page)), |
4869 | 0, offset); | |
2aaa6655 | 4870 | else |
9703fefe CR |
4871 | memset(kaddr + (block_start - page_offset(page)) + offset, |
4872 | 0, len); | |
e6dcd2dc CM |
4873 | flush_dcache_page(page); |
4874 | kunmap(page); | |
4875 | } | |
247e743c | 4876 | ClearPageChecked(page); |
e6dcd2dc | 4877 | set_page_dirty(page); |
e43bbe5e | 4878 | unlock_extent_cached(io_tree, block_start, block_end, &cached_state); |
39279cc3 | 4879 | |
89642229 | 4880 | out_unlock: |
5d5e103a | 4881 | if (ret) |
bc42bda2 | 4882 | btrfs_delalloc_release_space(inode, data_reserved, block_start, |
43b18595 QW |
4883 | blocksize, true); |
4884 | btrfs_delalloc_release_extents(BTRFS_I(inode), blocksize, (ret != 0)); | |
39279cc3 | 4885 | unlock_page(page); |
09cbfeaf | 4886 | put_page(page); |
39279cc3 | 4887 | out: |
364ecf36 | 4888 | extent_changeset_free(data_reserved); |
39279cc3 CM |
4889 | return ret; |
4890 | } | |
4891 | ||
16e7549f JB |
4892 | static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode, |
4893 | u64 offset, u64 len) | |
4894 | { | |
0b246afa | 4895 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
16e7549f JB |
4896 | struct btrfs_trans_handle *trans; |
4897 | int ret; | |
4898 | ||
4899 | /* | |
4900 | * Still need to make sure the inode looks like it's been updated so | |
4901 | * that any holes get logged if we fsync. | |
4902 | */ | |
0b246afa JM |
4903 | if (btrfs_fs_incompat(fs_info, NO_HOLES)) { |
4904 | BTRFS_I(inode)->last_trans = fs_info->generation; | |
16e7549f JB |
4905 | BTRFS_I(inode)->last_sub_trans = root->log_transid; |
4906 | BTRFS_I(inode)->last_log_commit = root->last_log_commit; | |
4907 | return 0; | |
4908 | } | |
4909 | ||
4910 | /* | |
4911 | * 1 - for the one we're dropping | |
4912 | * 1 - for the one we're adding | |
4913 | * 1 - for updating the inode. | |
4914 | */ | |
4915 | trans = btrfs_start_transaction(root, 3); | |
4916 | if (IS_ERR(trans)) | |
4917 | return PTR_ERR(trans); | |
4918 | ||
4919 | ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1); | |
4920 | if (ret) { | |
66642832 | 4921 | btrfs_abort_transaction(trans, ret); |
3a45bb20 | 4922 | btrfs_end_transaction(trans); |
16e7549f JB |
4923 | return ret; |
4924 | } | |
4925 | ||
f85b7379 DS |
4926 | ret = btrfs_insert_file_extent(trans, root, btrfs_ino(BTRFS_I(inode)), |
4927 | offset, 0, 0, len, 0, len, 0, 0, 0); | |
16e7549f | 4928 | if (ret) |
66642832 | 4929 | btrfs_abort_transaction(trans, ret); |
16e7549f JB |
4930 | else |
4931 | btrfs_update_inode(trans, root, inode); | |
3a45bb20 | 4932 | btrfs_end_transaction(trans); |
16e7549f JB |
4933 | return ret; |
4934 | } | |
4935 | ||
695a0d0d JB |
4936 | /* |
4937 | * This function puts in dummy file extents for the area we're creating a hole | |
4938 | * for. So if we are truncating this file to a larger size we need to insert | |
4939 | * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for | |
4940 | * the range between oldsize and size | |
4941 | */ | |
a41ad394 | 4942 | int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size) |
39279cc3 | 4943 | { |
0b246afa | 4944 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
9036c102 YZ |
4945 | struct btrfs_root *root = BTRFS_I(inode)->root; |
4946 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; | |
a22285a6 | 4947 | struct extent_map *em = NULL; |
2ac55d41 | 4948 | struct extent_state *cached_state = NULL; |
5dc562c5 | 4949 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
0b246afa JM |
4950 | u64 hole_start = ALIGN(oldsize, fs_info->sectorsize); |
4951 | u64 block_end = ALIGN(size, fs_info->sectorsize); | |
9036c102 YZ |
4952 | u64 last_byte; |
4953 | u64 cur_offset; | |
4954 | u64 hole_size; | |
9ed74f2d | 4955 | int err = 0; |
39279cc3 | 4956 | |
a71754fc | 4957 | /* |
9703fefe CR |
4958 | * If our size started in the middle of a block we need to zero out the |
4959 | * rest of the block before we expand the i_size, otherwise we could | |
a71754fc JB |
4960 | * expose stale data. |
4961 | */ | |
9703fefe | 4962 | err = btrfs_truncate_block(inode, oldsize, 0, 0); |
a71754fc JB |
4963 | if (err) |
4964 | return err; | |
4965 | ||
9036c102 YZ |
4966 | if (size <= hole_start) |
4967 | return 0; | |
4968 | ||
9036c102 YZ |
4969 | while (1) { |
4970 | struct btrfs_ordered_extent *ordered; | |
fa7c1494 | 4971 | |
ff13db41 | 4972 | lock_extent_bits(io_tree, hole_start, block_end - 1, |
d0082371 | 4973 | &cached_state); |
a776c6fa | 4974 | ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), hole_start, |
fa7c1494 | 4975 | block_end - hole_start); |
9036c102 YZ |
4976 | if (!ordered) |
4977 | break; | |
2ac55d41 | 4978 | unlock_extent_cached(io_tree, hole_start, block_end - 1, |
e43bbe5e | 4979 | &cached_state); |
fa7c1494 | 4980 | btrfs_start_ordered_extent(inode, ordered, 1); |
9036c102 YZ |
4981 | btrfs_put_ordered_extent(ordered); |
4982 | } | |
39279cc3 | 4983 | |
9036c102 YZ |
4984 | cur_offset = hole_start; |
4985 | while (1) { | |
fc4f21b1 | 4986 | em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset, |
9036c102 | 4987 | block_end - cur_offset, 0); |
79787eaa JM |
4988 | if (IS_ERR(em)) { |
4989 | err = PTR_ERR(em); | |
f2767956 | 4990 | em = NULL; |
79787eaa JM |
4991 | break; |
4992 | } | |
9036c102 | 4993 | last_byte = min(extent_map_end(em), block_end); |
0b246afa | 4994 | last_byte = ALIGN(last_byte, fs_info->sectorsize); |
8082510e | 4995 | if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) { |
5dc562c5 | 4996 | struct extent_map *hole_em; |
9036c102 | 4997 | hole_size = last_byte - cur_offset; |
9ed74f2d | 4998 | |
16e7549f JB |
4999 | err = maybe_insert_hole(root, inode, cur_offset, |
5000 | hole_size); | |
5001 | if (err) | |
3893e33b | 5002 | break; |
dcdbc059 | 5003 | btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset, |
5dc562c5 JB |
5004 | cur_offset + hole_size - 1, 0); |
5005 | hole_em = alloc_extent_map(); | |
5006 | if (!hole_em) { | |
5007 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, | |
5008 | &BTRFS_I(inode)->runtime_flags); | |
5009 | goto next; | |
5010 | } | |
5011 | hole_em->start = cur_offset; | |
5012 | hole_em->len = hole_size; | |
5013 | hole_em->orig_start = cur_offset; | |
8082510e | 5014 | |
5dc562c5 JB |
5015 | hole_em->block_start = EXTENT_MAP_HOLE; |
5016 | hole_em->block_len = 0; | |
b4939680 | 5017 | hole_em->orig_block_len = 0; |
cc95bef6 | 5018 | hole_em->ram_bytes = hole_size; |
0b246afa | 5019 | hole_em->bdev = fs_info->fs_devices->latest_bdev; |
5dc562c5 | 5020 | hole_em->compress_type = BTRFS_COMPRESS_NONE; |
0b246afa | 5021 | hole_em->generation = fs_info->generation; |
8082510e | 5022 | |
5dc562c5 JB |
5023 | while (1) { |
5024 | write_lock(&em_tree->lock); | |
09a2a8f9 | 5025 | err = add_extent_mapping(em_tree, hole_em, 1); |
5dc562c5 JB |
5026 | write_unlock(&em_tree->lock); |
5027 | if (err != -EEXIST) | |
5028 | break; | |
dcdbc059 NB |
5029 | btrfs_drop_extent_cache(BTRFS_I(inode), |
5030 | cur_offset, | |
5dc562c5 JB |
5031 | cur_offset + |
5032 | hole_size - 1, 0); | |
5033 | } | |
5034 | free_extent_map(hole_em); | |
9036c102 | 5035 | } |
16e7549f | 5036 | next: |
9036c102 | 5037 | free_extent_map(em); |
a22285a6 | 5038 | em = NULL; |
9036c102 | 5039 | cur_offset = last_byte; |
8082510e | 5040 | if (cur_offset >= block_end) |
9036c102 YZ |
5041 | break; |
5042 | } | |
a22285a6 | 5043 | free_extent_map(em); |
e43bbe5e | 5044 | unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state); |
9036c102 YZ |
5045 | return err; |
5046 | } | |
39279cc3 | 5047 | |
3972f260 | 5048 | static int btrfs_setsize(struct inode *inode, struct iattr *attr) |
8082510e | 5049 | { |
f4a2f4c5 MX |
5050 | struct btrfs_root *root = BTRFS_I(inode)->root; |
5051 | struct btrfs_trans_handle *trans; | |
a41ad394 | 5052 | loff_t oldsize = i_size_read(inode); |
3972f260 ES |
5053 | loff_t newsize = attr->ia_size; |
5054 | int mask = attr->ia_valid; | |
8082510e YZ |
5055 | int ret; |
5056 | ||
3972f260 ES |
5057 | /* |
5058 | * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a | |
5059 | * special case where we need to update the times despite not having | |
5060 | * these flags set. For all other operations the VFS set these flags | |
5061 | * explicitly if it wants a timestamp update. | |
5062 | */ | |
dff6efc3 CH |
5063 | if (newsize != oldsize) { |
5064 | inode_inc_iversion(inode); | |
5065 | if (!(mask & (ATTR_CTIME | ATTR_MTIME))) | |
5066 | inode->i_ctime = inode->i_mtime = | |
c2050a45 | 5067 | current_time(inode); |
dff6efc3 | 5068 | } |
3972f260 | 5069 | |
a41ad394 | 5070 | if (newsize > oldsize) { |
9ea24bbe | 5071 | /* |
ea14b57f | 5072 | * Don't do an expanding truncate while snapshotting is ongoing. |
9ea24bbe FM |
5073 | * This is to ensure the snapshot captures a fully consistent |
5074 | * state of this file - if the snapshot captures this expanding | |
5075 | * truncation, it must capture all writes that happened before | |
5076 | * this truncation. | |
5077 | */ | |
0bc19f90 | 5078 | btrfs_wait_for_snapshot_creation(root); |
a41ad394 | 5079 | ret = btrfs_cont_expand(inode, oldsize, newsize); |
9ea24bbe | 5080 | if (ret) { |
ea14b57f | 5081 | btrfs_end_write_no_snapshotting(root); |
8082510e | 5082 | return ret; |
9ea24bbe | 5083 | } |
8082510e | 5084 | |
f4a2f4c5 | 5085 | trans = btrfs_start_transaction(root, 1); |
9ea24bbe | 5086 | if (IS_ERR(trans)) { |
ea14b57f | 5087 | btrfs_end_write_no_snapshotting(root); |
f4a2f4c5 | 5088 | return PTR_ERR(trans); |
9ea24bbe | 5089 | } |
f4a2f4c5 MX |
5090 | |
5091 | i_size_write(inode, newsize); | |
5092 | btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL); | |
27772b68 | 5093 | pagecache_isize_extended(inode, oldsize, newsize); |
f4a2f4c5 | 5094 | ret = btrfs_update_inode(trans, root, inode); |
ea14b57f | 5095 | btrfs_end_write_no_snapshotting(root); |
3a45bb20 | 5096 | btrfs_end_transaction(trans); |
a41ad394 | 5097 | } else { |
8082510e | 5098 | |
a41ad394 JB |
5099 | /* |
5100 | * We're truncating a file that used to have good data down to | |
5101 | * zero. Make sure it gets into the ordered flush list so that | |
5102 | * any new writes get down to disk quickly. | |
5103 | */ | |
5104 | if (newsize == 0) | |
72ac3c0d JB |
5105 | set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE, |
5106 | &BTRFS_I(inode)->runtime_flags); | |
8082510e | 5107 | |
a41ad394 | 5108 | truncate_setsize(inode, newsize); |
2e60a51e | 5109 | |
52042d8e | 5110 | /* Disable nonlocked read DIO to avoid the endless truncate */ |
abcefb1e | 5111 | btrfs_inode_block_unlocked_dio(BTRFS_I(inode)); |
2e60a51e | 5112 | inode_dio_wait(inode); |
0b581701 | 5113 | btrfs_inode_resume_unlocked_dio(BTRFS_I(inode)); |
2e60a51e | 5114 | |
213e8c55 | 5115 | ret = btrfs_truncate(inode, newsize == oldsize); |
7f4f6e0a JB |
5116 | if (ret && inode->i_nlink) { |
5117 | int err; | |
5118 | ||
5119 | /* | |
f7e9e8fc OS |
5120 | * Truncate failed, so fix up the in-memory size. We |
5121 | * adjusted disk_i_size down as we removed extents, so | |
5122 | * wait for disk_i_size to be stable and then update the | |
5123 | * in-memory size to match. | |
7f4f6e0a | 5124 | */ |
f7e9e8fc | 5125 | err = btrfs_wait_ordered_range(inode, 0, (u64)-1); |
7f4f6e0a | 5126 | if (err) |
f7e9e8fc OS |
5127 | return err; |
5128 | i_size_write(inode, BTRFS_I(inode)->disk_i_size); | |
7f4f6e0a | 5129 | } |
8082510e YZ |
5130 | } |
5131 | ||
a41ad394 | 5132 | return ret; |
8082510e YZ |
5133 | } |
5134 | ||
9036c102 YZ |
5135 | static int btrfs_setattr(struct dentry *dentry, struct iattr *attr) |
5136 | { | |
2b0143b5 | 5137 | struct inode *inode = d_inode(dentry); |
b83cc969 | 5138 | struct btrfs_root *root = BTRFS_I(inode)->root; |
9036c102 | 5139 | int err; |
39279cc3 | 5140 | |
b83cc969 LZ |
5141 | if (btrfs_root_readonly(root)) |
5142 | return -EROFS; | |
5143 | ||
31051c85 | 5144 | err = setattr_prepare(dentry, attr); |
9036c102 YZ |
5145 | if (err) |
5146 | return err; | |
2bf5a725 | 5147 | |
5a3f23d5 | 5148 | if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) { |
3972f260 | 5149 | err = btrfs_setsize(inode, attr); |
8082510e YZ |
5150 | if (err) |
5151 | return err; | |
39279cc3 | 5152 | } |
9036c102 | 5153 | |
1025774c CH |
5154 | if (attr->ia_valid) { |
5155 | setattr_copy(inode, attr); | |
0c4d2d95 | 5156 | inode_inc_iversion(inode); |
22c44fe6 | 5157 | err = btrfs_dirty_inode(inode); |
1025774c | 5158 | |
22c44fe6 | 5159 | if (!err && attr->ia_valid & ATTR_MODE) |
996a710d | 5160 | err = posix_acl_chmod(inode, inode->i_mode); |
1025774c | 5161 | } |
33268eaf | 5162 | |
39279cc3 CM |
5163 | return err; |
5164 | } | |
61295eb8 | 5165 | |
131e404a FDBM |
5166 | /* |
5167 | * While truncating the inode pages during eviction, we get the VFS calling | |
5168 | * btrfs_invalidatepage() against each page of the inode. This is slow because | |
5169 | * the calls to btrfs_invalidatepage() result in a huge amount of calls to | |
5170 | * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting | |
5171 | * extent_state structures over and over, wasting lots of time. | |
5172 | * | |
5173 | * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all | |
5174 | * those expensive operations on a per page basis and do only the ordered io | |
5175 | * finishing, while we release here the extent_map and extent_state structures, | |
5176 | * without the excessive merging and splitting. | |
5177 | */ | |
5178 | static void evict_inode_truncate_pages(struct inode *inode) | |
5179 | { | |
5180 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; | |
5181 | struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree; | |
5182 | struct rb_node *node; | |
5183 | ||
5184 | ASSERT(inode->i_state & I_FREEING); | |
91b0abe3 | 5185 | truncate_inode_pages_final(&inode->i_data); |
131e404a FDBM |
5186 | |
5187 | write_lock(&map_tree->lock); | |
07e1ce09 | 5188 | while (!RB_EMPTY_ROOT(&map_tree->map.rb_root)) { |
131e404a FDBM |
5189 | struct extent_map *em; |
5190 | ||
07e1ce09 | 5191 | node = rb_first_cached(&map_tree->map); |
131e404a | 5192 | em = rb_entry(node, struct extent_map, rb_node); |
180589ef WS |
5193 | clear_bit(EXTENT_FLAG_PINNED, &em->flags); |
5194 | clear_bit(EXTENT_FLAG_LOGGING, &em->flags); | |
131e404a FDBM |
5195 | remove_extent_mapping(map_tree, em); |
5196 | free_extent_map(em); | |
7064dd5c FM |
5197 | if (need_resched()) { |
5198 | write_unlock(&map_tree->lock); | |
5199 | cond_resched(); | |
5200 | write_lock(&map_tree->lock); | |
5201 | } | |
131e404a FDBM |
5202 | } |
5203 | write_unlock(&map_tree->lock); | |
5204 | ||
6ca07097 FM |
5205 | /* |
5206 | * Keep looping until we have no more ranges in the io tree. | |
5207 | * We can have ongoing bios started by readpages (called from readahead) | |
9c6429d9 FM |
5208 | * that have their endio callback (extent_io.c:end_bio_extent_readpage) |
5209 | * still in progress (unlocked the pages in the bio but did not yet | |
5210 | * unlocked the ranges in the io tree). Therefore this means some | |
6ca07097 FM |
5211 | * ranges can still be locked and eviction started because before |
5212 | * submitting those bios, which are executed by a separate task (work | |
5213 | * queue kthread), inode references (inode->i_count) were not taken | |
5214 | * (which would be dropped in the end io callback of each bio). | |
5215 | * Therefore here we effectively end up waiting for those bios and | |
5216 | * anyone else holding locked ranges without having bumped the inode's | |
5217 | * reference count - if we don't do it, when they access the inode's | |
5218 | * io_tree to unlock a range it may be too late, leading to an | |
5219 | * use-after-free issue. | |
5220 | */ | |
131e404a FDBM |
5221 | spin_lock(&io_tree->lock); |
5222 | while (!RB_EMPTY_ROOT(&io_tree->state)) { | |
5223 | struct extent_state *state; | |
5224 | struct extent_state *cached_state = NULL; | |
6ca07097 FM |
5225 | u64 start; |
5226 | u64 end; | |
421f0922 | 5227 | unsigned state_flags; |
131e404a FDBM |
5228 | |
5229 | node = rb_first(&io_tree->state); | |
5230 | state = rb_entry(node, struct extent_state, rb_node); | |
6ca07097 FM |
5231 | start = state->start; |
5232 | end = state->end; | |
421f0922 | 5233 | state_flags = state->state; |
131e404a FDBM |
5234 | spin_unlock(&io_tree->lock); |
5235 | ||
ff13db41 | 5236 | lock_extent_bits(io_tree, start, end, &cached_state); |
b9d0b389 QW |
5237 | |
5238 | /* | |
5239 | * If still has DELALLOC flag, the extent didn't reach disk, | |
5240 | * and its reserved space won't be freed by delayed_ref. | |
5241 | * So we need to free its reserved space here. | |
5242 | * (Refer to comment in btrfs_invalidatepage, case 2) | |
5243 | * | |
5244 | * Note, end is the bytenr of last byte, so we need + 1 here. | |
5245 | */ | |
421f0922 | 5246 | if (state_flags & EXTENT_DELALLOC) |
bc42bda2 | 5247 | btrfs_qgroup_free_data(inode, NULL, start, end - start + 1); |
b9d0b389 | 5248 | |
6ca07097 | 5249 | clear_extent_bit(io_tree, start, end, |
131e404a FDBM |
5250 | EXTENT_LOCKED | EXTENT_DIRTY | |
5251 | EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING | | |
ae0f1625 | 5252 | EXTENT_DEFRAG, 1, 1, &cached_state); |
131e404a | 5253 | |
7064dd5c | 5254 | cond_resched(); |
131e404a FDBM |
5255 | spin_lock(&io_tree->lock); |
5256 | } | |
5257 | spin_unlock(&io_tree->lock); | |
5258 | } | |
5259 | ||
4b9d7b59 | 5260 | static struct btrfs_trans_handle *evict_refill_and_join(struct btrfs_root *root, |
ad80cf50 | 5261 | struct btrfs_block_rsv *rsv) |
4b9d7b59 OS |
5262 | { |
5263 | struct btrfs_fs_info *fs_info = root->fs_info; | |
5264 | struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv; | |
5265 | int failures = 0; | |
5266 | ||
5267 | for (;;) { | |
5268 | struct btrfs_trans_handle *trans; | |
5269 | int ret; | |
5270 | ||
ad80cf50 | 5271 | ret = btrfs_block_rsv_refill(root, rsv, rsv->size, |
4b9d7b59 OS |
5272 | BTRFS_RESERVE_FLUSH_LIMIT); |
5273 | ||
5274 | if (ret && ++failures > 2) { | |
5275 | btrfs_warn(fs_info, | |
5276 | "could not allocate space for a delete; will truncate on mount"); | |
5277 | return ERR_PTR(-ENOSPC); | |
5278 | } | |
5279 | ||
5280 | trans = btrfs_join_transaction(root); | |
5281 | if (IS_ERR(trans) || !ret) | |
5282 | return trans; | |
5283 | ||
5284 | /* | |
5285 | * Try to steal from the global reserve if there is space for | |
5286 | * it. | |
5287 | */ | |
64403612 JB |
5288 | if (!btrfs_check_space_for_delayed_refs(fs_info) && |
5289 | !btrfs_block_rsv_migrate(global_rsv, rsv, rsv->size, 0)) | |
4b9d7b59 OS |
5290 | return trans; |
5291 | ||
5292 | /* If not, commit and try again. */ | |
5293 | ret = btrfs_commit_transaction(trans); | |
5294 | if (ret) | |
5295 | return ERR_PTR(ret); | |
5296 | } | |
5297 | } | |
5298 | ||
bd555975 | 5299 | void btrfs_evict_inode(struct inode *inode) |
39279cc3 | 5300 | { |
0b246afa | 5301 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
39279cc3 CM |
5302 | struct btrfs_trans_handle *trans; |
5303 | struct btrfs_root *root = BTRFS_I(inode)->root; | |
4b9d7b59 | 5304 | struct btrfs_block_rsv *rsv; |
39279cc3 CM |
5305 | int ret; |
5306 | ||
1abe9b8a | 5307 | trace_btrfs_inode_evict(inode); |
5308 | ||
3d48d981 | 5309 | if (!root) { |
e8f1bc14 | 5310 | clear_inode(inode); |
3d48d981 NB |
5311 | return; |
5312 | } | |
5313 | ||
131e404a FDBM |
5314 | evict_inode_truncate_pages(inode); |
5315 | ||
69e9c6c6 SB |
5316 | if (inode->i_nlink && |
5317 | ((btrfs_root_refs(&root->root_item) != 0 && | |
5318 | root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) || | |
70ddc553 | 5319 | btrfs_is_free_space_inode(BTRFS_I(inode)))) |
bd555975 AV |
5320 | goto no_delete; |
5321 | ||
27919067 | 5322 | if (is_bad_inode(inode)) |
39279cc3 | 5323 | goto no_delete; |
5f39d397 | 5324 | |
7ab7956e | 5325 | btrfs_free_io_failure_record(BTRFS_I(inode), 0, (u64)-1); |
f612496b | 5326 | |
7b40b695 | 5327 | if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) |
c71bf099 | 5328 | goto no_delete; |
c71bf099 | 5329 | |
76dda93c | 5330 | if (inode->i_nlink > 0) { |
69e9c6c6 SB |
5331 | BUG_ON(btrfs_root_refs(&root->root_item) != 0 && |
5332 | root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID); | |
76dda93c YZ |
5333 | goto no_delete; |
5334 | } | |
5335 | ||
aa79021f | 5336 | ret = btrfs_commit_inode_delayed_inode(BTRFS_I(inode)); |
27919067 | 5337 | if (ret) |
0e8c36a9 | 5338 | goto no_delete; |
0e8c36a9 | 5339 | |
2ff7e61e | 5340 | rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP); |
27919067 | 5341 | if (!rsv) |
4289a667 | 5342 | goto no_delete; |
ad80cf50 | 5343 | rsv->size = btrfs_calc_trunc_metadata_size(fs_info, 1); |
ca7e70f5 | 5344 | rsv->failfast = 1; |
4289a667 | 5345 | |
6ef06d27 | 5346 | btrfs_i_size_write(BTRFS_I(inode), 0); |
5f39d397 | 5347 | |
8082510e | 5348 | while (1) { |
ad80cf50 | 5349 | trans = evict_refill_and_join(root, rsv); |
27919067 OS |
5350 | if (IS_ERR(trans)) |
5351 | goto free_rsv; | |
7b128766 | 5352 | |
4289a667 JB |
5353 | trans->block_rsv = rsv; |
5354 | ||
d68fc57b | 5355 | ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0); |
27919067 OS |
5356 | trans->block_rsv = &fs_info->trans_block_rsv; |
5357 | btrfs_end_transaction(trans); | |
5358 | btrfs_btree_balance_dirty(fs_info); | |
5359 | if (ret && ret != -ENOSPC && ret != -EAGAIN) | |
5360 | goto free_rsv; | |
5361 | else if (!ret) | |
8082510e | 5362 | break; |
8082510e | 5363 | } |
5f39d397 | 5364 | |
4ef31a45 | 5365 | /* |
27919067 OS |
5366 | * Errors here aren't a big deal, it just means we leave orphan items in |
5367 | * the tree. They will be cleaned up on the next mount. If the inode | |
5368 | * number gets reused, cleanup deletes the orphan item without doing | |
5369 | * anything, and unlink reuses the existing orphan item. | |
5370 | * | |
5371 | * If it turns out that we are dropping too many of these, we might want | |
5372 | * to add a mechanism for retrying these after a commit. | |
4ef31a45 | 5373 | */ |
ad80cf50 | 5374 | trans = evict_refill_and_join(root, rsv); |
27919067 OS |
5375 | if (!IS_ERR(trans)) { |
5376 | trans->block_rsv = rsv; | |
5377 | btrfs_orphan_del(trans, BTRFS_I(inode)); | |
5378 | trans->block_rsv = &fs_info->trans_block_rsv; | |
5379 | btrfs_end_transaction(trans); | |
5380 | } | |
54aa1f4d | 5381 | |
0b246afa | 5382 | if (!(root == fs_info->tree_root || |
581bb050 | 5383 | root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)) |
4a0cc7ca | 5384 | btrfs_return_ino(root, btrfs_ino(BTRFS_I(inode))); |
581bb050 | 5385 | |
27919067 OS |
5386 | free_rsv: |
5387 | btrfs_free_block_rsv(fs_info, rsv); | |
39279cc3 | 5388 | no_delete: |
27919067 OS |
5389 | /* |
5390 | * If we didn't successfully delete, the orphan item will still be in | |
5391 | * the tree and we'll retry on the next mount. Again, we might also want | |
5392 | * to retry these periodically in the future. | |
5393 | */ | |
f48d1cf5 | 5394 | btrfs_remove_delayed_node(BTRFS_I(inode)); |
dbd5768f | 5395 | clear_inode(inode); |
39279cc3 CM |
5396 | } |
5397 | ||
5398 | /* | |
5399 | * this returns the key found in the dir entry in the location pointer. | |
005d6712 SY |
5400 | * If no dir entries were found, returns -ENOENT. |
5401 | * If found a corrupted location in dir entry, returns -EUCLEAN. | |
39279cc3 CM |
5402 | */ |
5403 | static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry, | |
5404 | struct btrfs_key *location) | |
5405 | { | |
5406 | const char *name = dentry->d_name.name; | |
5407 | int namelen = dentry->d_name.len; | |
5408 | struct btrfs_dir_item *di; | |
5409 | struct btrfs_path *path; | |
5410 | struct btrfs_root *root = BTRFS_I(dir)->root; | |
0d9f7f3e | 5411 | int ret = 0; |
39279cc3 CM |
5412 | |
5413 | path = btrfs_alloc_path(); | |
d8926bb3 MF |
5414 | if (!path) |
5415 | return -ENOMEM; | |
3954401f | 5416 | |
f85b7379 DS |
5417 | di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(BTRFS_I(dir)), |
5418 | name, namelen, 0); | |
3cf5068f LB |
5419 | if (IS_ERR_OR_NULL(di)) { |
5420 | ret = di ? PTR_ERR(di) : -ENOENT; | |
005d6712 SY |
5421 | goto out; |
5422 | } | |
d397712b | 5423 | |
5f39d397 | 5424 | btrfs_dir_item_key_to_cpu(path->nodes[0], di, location); |
56a0e706 LB |
5425 | if (location->type != BTRFS_INODE_ITEM_KEY && |
5426 | location->type != BTRFS_ROOT_ITEM_KEY) { | |
005d6712 | 5427 | ret = -EUCLEAN; |
56a0e706 LB |
5428 | btrfs_warn(root->fs_info, |
5429 | "%s gets something invalid in DIR_ITEM (name %s, directory ino %llu, location(%llu %u %llu))", | |
5430 | __func__, name, btrfs_ino(BTRFS_I(dir)), | |
5431 | location->objectid, location->type, location->offset); | |
56a0e706 | 5432 | } |
39279cc3 | 5433 | out: |
39279cc3 CM |
5434 | btrfs_free_path(path); |
5435 | return ret; | |
5436 | } | |
5437 | ||
5438 | /* | |
5439 | * when we hit a tree root in a directory, the btrfs part of the inode | |
5440 | * needs to be changed to reflect the root directory of the tree root. This | |
5441 | * is kind of like crossing a mount point. | |
5442 | */ | |
2ff7e61e | 5443 | static int fixup_tree_root_location(struct btrfs_fs_info *fs_info, |
4df27c4d YZ |
5444 | struct inode *dir, |
5445 | struct dentry *dentry, | |
5446 | struct btrfs_key *location, | |
5447 | struct btrfs_root **sub_root) | |
39279cc3 | 5448 | { |
4df27c4d YZ |
5449 | struct btrfs_path *path; |
5450 | struct btrfs_root *new_root; | |
5451 | struct btrfs_root_ref *ref; | |
5452 | struct extent_buffer *leaf; | |
1d4c08e0 | 5453 | struct btrfs_key key; |
4df27c4d YZ |
5454 | int ret; |
5455 | int err = 0; | |
39279cc3 | 5456 | |
4df27c4d YZ |
5457 | path = btrfs_alloc_path(); |
5458 | if (!path) { | |
5459 | err = -ENOMEM; | |
5460 | goto out; | |
5461 | } | |
39279cc3 | 5462 | |
4df27c4d | 5463 | err = -ENOENT; |
1d4c08e0 DS |
5464 | key.objectid = BTRFS_I(dir)->root->root_key.objectid; |
5465 | key.type = BTRFS_ROOT_REF_KEY; | |
5466 | key.offset = location->objectid; | |
5467 | ||
0b246afa | 5468 | ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0); |
4df27c4d YZ |
5469 | if (ret) { |
5470 | if (ret < 0) | |
5471 | err = ret; | |
5472 | goto out; | |
5473 | } | |
39279cc3 | 5474 | |
4df27c4d YZ |
5475 | leaf = path->nodes[0]; |
5476 | ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref); | |
4a0cc7ca | 5477 | if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(BTRFS_I(dir)) || |
4df27c4d YZ |
5478 | btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len) |
5479 | goto out; | |
39279cc3 | 5480 | |
4df27c4d YZ |
5481 | ret = memcmp_extent_buffer(leaf, dentry->d_name.name, |
5482 | (unsigned long)(ref + 1), | |
5483 | dentry->d_name.len); | |
5484 | if (ret) | |
5485 | goto out; | |
5486 | ||
b3b4aa74 | 5487 | btrfs_release_path(path); |
4df27c4d | 5488 | |
0b246afa | 5489 | new_root = btrfs_read_fs_root_no_name(fs_info, location); |
4df27c4d YZ |
5490 | if (IS_ERR(new_root)) { |
5491 | err = PTR_ERR(new_root); | |
5492 | goto out; | |
5493 | } | |
5494 | ||
4df27c4d YZ |
5495 | *sub_root = new_root; |
5496 | location->objectid = btrfs_root_dirid(&new_root->root_item); | |
5497 | location->type = BTRFS_INODE_ITEM_KEY; | |
5498 | location->offset = 0; | |
5499 | err = 0; | |
5500 | out: | |
5501 | btrfs_free_path(path); | |
5502 | return err; | |
39279cc3 CM |
5503 | } |
5504 | ||
5d4f98a2 YZ |
5505 | static void inode_tree_add(struct inode *inode) |
5506 | { | |
5507 | struct btrfs_root *root = BTRFS_I(inode)->root; | |
5508 | struct btrfs_inode *entry; | |
03e860bd NP |
5509 | struct rb_node **p; |
5510 | struct rb_node *parent; | |
cef21937 | 5511 | struct rb_node *new = &BTRFS_I(inode)->rb_node; |
4a0cc7ca | 5512 | u64 ino = btrfs_ino(BTRFS_I(inode)); |
5d4f98a2 | 5513 | |
1d3382cb | 5514 | if (inode_unhashed(inode)) |
76dda93c | 5515 | return; |
e1409cef | 5516 | parent = NULL; |
5d4f98a2 | 5517 | spin_lock(&root->inode_lock); |
e1409cef | 5518 | p = &root->inode_tree.rb_node; |
5d4f98a2 YZ |
5519 | while (*p) { |
5520 | parent = *p; | |
5521 | entry = rb_entry(parent, struct btrfs_inode, rb_node); | |
5522 | ||
37508515 | 5523 | if (ino < btrfs_ino(entry)) |
03e860bd | 5524 | p = &parent->rb_left; |
37508515 | 5525 | else if (ino > btrfs_ino(entry)) |
03e860bd | 5526 | p = &parent->rb_right; |
5d4f98a2 YZ |
5527 | else { |
5528 | WARN_ON(!(entry->vfs_inode.i_state & | |
a4ffdde6 | 5529 | (I_WILL_FREE | I_FREEING))); |
cef21937 | 5530 | rb_replace_node(parent, new, &root->inode_tree); |
03e860bd NP |
5531 | RB_CLEAR_NODE(parent); |
5532 | spin_unlock(&root->inode_lock); | |
cef21937 | 5533 | return; |
5d4f98a2 YZ |
5534 | } |
5535 | } | |
cef21937 FDBM |
5536 | rb_link_node(new, parent, p); |
5537 | rb_insert_color(new, &root->inode_tree); | |
5d4f98a2 YZ |
5538 | spin_unlock(&root->inode_lock); |
5539 | } | |
5540 | ||
5541 | static void inode_tree_del(struct inode *inode) | |
5542 | { | |
0b246afa | 5543 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
5d4f98a2 | 5544 | struct btrfs_root *root = BTRFS_I(inode)->root; |
76dda93c | 5545 | int empty = 0; |
5d4f98a2 | 5546 | |
03e860bd | 5547 | spin_lock(&root->inode_lock); |
5d4f98a2 | 5548 | if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) { |
5d4f98a2 | 5549 | rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree); |
5d4f98a2 | 5550 | RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node); |
76dda93c | 5551 | empty = RB_EMPTY_ROOT(&root->inode_tree); |
5d4f98a2 | 5552 | } |
03e860bd | 5553 | spin_unlock(&root->inode_lock); |
76dda93c | 5554 | |
69e9c6c6 | 5555 | if (empty && btrfs_root_refs(&root->root_item) == 0) { |
0b246afa | 5556 | synchronize_srcu(&fs_info->subvol_srcu); |
76dda93c YZ |
5557 | spin_lock(&root->inode_lock); |
5558 | empty = RB_EMPTY_ROOT(&root->inode_tree); | |
5559 | spin_unlock(&root->inode_lock); | |
5560 | if (empty) | |
5561 | btrfs_add_dead_root(root); | |
5562 | } | |
5563 | } | |
5564 | ||
5d4f98a2 | 5565 | |
e02119d5 CM |
5566 | static int btrfs_init_locked_inode(struct inode *inode, void *p) |
5567 | { | |
5568 | struct btrfs_iget_args *args = p; | |
90d3e592 CM |
5569 | inode->i_ino = args->location->objectid; |
5570 | memcpy(&BTRFS_I(inode)->location, args->location, | |
5571 | sizeof(*args->location)); | |
e02119d5 | 5572 | BTRFS_I(inode)->root = args->root; |
39279cc3 CM |
5573 | return 0; |
5574 | } | |
5575 | ||
5576 | static int btrfs_find_actor(struct inode *inode, void *opaque) | |
5577 | { | |
5578 | struct btrfs_iget_args *args = opaque; | |
90d3e592 | 5579 | return args->location->objectid == BTRFS_I(inode)->location.objectid && |
d397712b | 5580 | args->root == BTRFS_I(inode)->root; |
39279cc3 CM |
5581 | } |
5582 | ||
5d4f98a2 | 5583 | static struct inode *btrfs_iget_locked(struct super_block *s, |
90d3e592 | 5584 | struct btrfs_key *location, |
5d4f98a2 | 5585 | struct btrfs_root *root) |
39279cc3 CM |
5586 | { |
5587 | struct inode *inode; | |
5588 | struct btrfs_iget_args args; | |
90d3e592 | 5589 | unsigned long hashval = btrfs_inode_hash(location->objectid, root); |
778ba82b | 5590 | |
90d3e592 | 5591 | args.location = location; |
39279cc3 CM |
5592 | args.root = root; |
5593 | ||
778ba82b | 5594 | inode = iget5_locked(s, hashval, btrfs_find_actor, |
39279cc3 CM |
5595 | btrfs_init_locked_inode, |
5596 | (void *)&args); | |
5597 | return inode; | |
5598 | } | |
5599 | ||
1a54ef8c BR |
5600 | /* Get an inode object given its location and corresponding root. |
5601 | * Returns in *is_new if the inode was read from disk | |
5602 | */ | |
4222ea71 FM |
5603 | struct inode *btrfs_iget_path(struct super_block *s, struct btrfs_key *location, |
5604 | struct btrfs_root *root, int *new, | |
5605 | struct btrfs_path *path) | |
1a54ef8c BR |
5606 | { |
5607 | struct inode *inode; | |
5608 | ||
90d3e592 | 5609 | inode = btrfs_iget_locked(s, location, root); |
1a54ef8c | 5610 | if (!inode) |
5d4f98a2 | 5611 | return ERR_PTR(-ENOMEM); |
1a54ef8c BR |
5612 | |
5613 | if (inode->i_state & I_NEW) { | |
67710892 FM |
5614 | int ret; |
5615 | ||
4222ea71 | 5616 | ret = btrfs_read_locked_inode(inode, path); |
9bc2ceff | 5617 | if (!ret) { |
1748f843 MF |
5618 | inode_tree_add(inode); |
5619 | unlock_new_inode(inode); | |
5620 | if (new) | |
5621 | *new = 1; | |
5622 | } else { | |
f5b3a417 AV |
5623 | iget_failed(inode); |
5624 | /* | |
5625 | * ret > 0 can come from btrfs_search_slot called by | |
5626 | * btrfs_read_locked_inode, this means the inode item | |
5627 | * was not found. | |
5628 | */ | |
5629 | if (ret > 0) | |
5630 | ret = -ENOENT; | |
5631 | inode = ERR_PTR(ret); | |
1748f843 MF |
5632 | } |
5633 | } | |
5634 | ||
1a54ef8c BR |
5635 | return inode; |
5636 | } | |
5637 | ||
4222ea71 FM |
5638 | struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location, |
5639 | struct btrfs_root *root, int *new) | |
5640 | { | |
5641 | return btrfs_iget_path(s, location, root, new, NULL); | |
5642 | } | |
5643 | ||
4df27c4d YZ |
5644 | static struct inode *new_simple_dir(struct super_block *s, |
5645 | struct btrfs_key *key, | |
5646 | struct btrfs_root *root) | |
5647 | { | |
5648 | struct inode *inode = new_inode(s); | |
5649 | ||
5650 | if (!inode) | |
5651 | return ERR_PTR(-ENOMEM); | |
5652 | ||
4df27c4d YZ |
5653 | BTRFS_I(inode)->root = root; |
5654 | memcpy(&BTRFS_I(inode)->location, key, sizeof(*key)); | |
72ac3c0d | 5655 | set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags); |
4df27c4d YZ |
5656 | |
5657 | inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID; | |
848cce0d | 5658 | inode->i_op = &btrfs_dir_ro_inode_operations; |
1fdf4194 | 5659 | inode->i_opflags &= ~IOP_XATTR; |
4df27c4d YZ |
5660 | inode->i_fop = &simple_dir_operations; |
5661 | inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO; | |
c2050a45 | 5662 | inode->i_mtime = current_time(inode); |
9cc97d64 | 5663 | inode->i_atime = inode->i_mtime; |
5664 | inode->i_ctime = inode->i_mtime; | |
d3c6be6f | 5665 | BTRFS_I(inode)->i_otime = inode->i_mtime; |
4df27c4d YZ |
5666 | |
5667 | return inode; | |
5668 | } | |
5669 | ||
3de4586c | 5670 | struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry) |
39279cc3 | 5671 | { |
0b246afa | 5672 | struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb); |
d397712b | 5673 | struct inode *inode; |
4df27c4d | 5674 | struct btrfs_root *root = BTRFS_I(dir)->root; |
39279cc3 CM |
5675 | struct btrfs_root *sub_root = root; |
5676 | struct btrfs_key location; | |
76dda93c | 5677 | int index; |
b4aff1f8 | 5678 | int ret = 0; |
39279cc3 CM |
5679 | |
5680 | if (dentry->d_name.len > BTRFS_NAME_LEN) | |
5681 | return ERR_PTR(-ENAMETOOLONG); | |
5f39d397 | 5682 | |
39e3c955 | 5683 | ret = btrfs_inode_by_name(dir, dentry, &location); |
39279cc3 CM |
5684 | if (ret < 0) |
5685 | return ERR_PTR(ret); | |
5f39d397 | 5686 | |
4df27c4d | 5687 | if (location.type == BTRFS_INODE_ITEM_KEY) { |
73f73415 | 5688 | inode = btrfs_iget(dir->i_sb, &location, root, NULL); |
4df27c4d YZ |
5689 | return inode; |
5690 | } | |
5691 | ||
0b246afa | 5692 | index = srcu_read_lock(&fs_info->subvol_srcu); |
2ff7e61e | 5693 | ret = fixup_tree_root_location(fs_info, dir, dentry, |
4df27c4d YZ |
5694 | &location, &sub_root); |
5695 | if (ret < 0) { | |
5696 | if (ret != -ENOENT) | |
5697 | inode = ERR_PTR(ret); | |
5698 | else | |
5699 | inode = new_simple_dir(dir->i_sb, &location, sub_root); | |
5700 | } else { | |
73f73415 | 5701 | inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL); |
39279cc3 | 5702 | } |
0b246afa | 5703 | srcu_read_unlock(&fs_info->subvol_srcu, index); |
76dda93c | 5704 | |
34d19bad | 5705 | if (!IS_ERR(inode) && root != sub_root) { |
0b246afa | 5706 | down_read(&fs_info->cleanup_work_sem); |
bc98a42c | 5707 | if (!sb_rdonly(inode->i_sb)) |
66b4ffd1 | 5708 | ret = btrfs_orphan_cleanup(sub_root); |
0b246afa | 5709 | up_read(&fs_info->cleanup_work_sem); |
01cd3367 JB |
5710 | if (ret) { |
5711 | iput(inode); | |
66b4ffd1 | 5712 | inode = ERR_PTR(ret); |
01cd3367 | 5713 | } |
c71bf099 YZ |
5714 | } |
5715 | ||
3de4586c CM |
5716 | return inode; |
5717 | } | |
5718 | ||
fe15ce44 | 5719 | static int btrfs_dentry_delete(const struct dentry *dentry) |
76dda93c YZ |
5720 | { |
5721 | struct btrfs_root *root; | |
2b0143b5 | 5722 | struct inode *inode = d_inode(dentry); |
76dda93c | 5723 | |
848cce0d | 5724 | if (!inode && !IS_ROOT(dentry)) |
2b0143b5 | 5725 | inode = d_inode(dentry->d_parent); |
76dda93c | 5726 | |
848cce0d LZ |
5727 | if (inode) { |
5728 | root = BTRFS_I(inode)->root; | |
efefb143 YZ |
5729 | if (btrfs_root_refs(&root->root_item) == 0) |
5730 | return 1; | |
848cce0d | 5731 | |
4a0cc7ca | 5732 | if (btrfs_ino(BTRFS_I(inode)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) |
848cce0d | 5733 | return 1; |
efefb143 | 5734 | } |
76dda93c YZ |
5735 | return 0; |
5736 | } | |
5737 | ||
3de4586c | 5738 | static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry, |
00cd8dd3 | 5739 | unsigned int flags) |
3de4586c | 5740 | { |
3837d208 | 5741 | struct inode *inode = btrfs_lookup_dentry(dir, dentry); |
5662344b | 5742 | |
3837d208 AV |
5743 | if (inode == ERR_PTR(-ENOENT)) |
5744 | inode = NULL; | |
41d28bca | 5745 | return d_splice_alias(inode, dentry); |
39279cc3 CM |
5746 | } |
5747 | ||
16cdcec7 | 5748 | unsigned char btrfs_filetype_table[] = { |
39279cc3 CM |
5749 | DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK |
5750 | }; | |
5751 | ||
23b5ec74 JB |
5752 | /* |
5753 | * All this infrastructure exists because dir_emit can fault, and we are holding | |
5754 | * the tree lock when doing readdir. For now just allocate a buffer and copy | |
5755 | * our information into that, and then dir_emit from the buffer. This is | |
5756 | * similar to what NFS does, only we don't keep the buffer around in pagecache | |
5757 | * because I'm afraid I'll mess that up. Long term we need to make filldir do | |
5758 | * copy_to_user_inatomic so we don't have to worry about page faulting under the | |
5759 | * tree lock. | |
5760 | */ | |
5761 | static int btrfs_opendir(struct inode *inode, struct file *file) | |
5762 | { | |
5763 | struct btrfs_file_private *private; | |
5764 | ||
5765 | private = kzalloc(sizeof(struct btrfs_file_private), GFP_KERNEL); | |
5766 | if (!private) | |
5767 | return -ENOMEM; | |
5768 | private->filldir_buf = kzalloc(PAGE_SIZE, GFP_KERNEL); | |
5769 | if (!private->filldir_buf) { | |
5770 | kfree(private); | |
5771 | return -ENOMEM; | |
5772 | } | |
5773 | file->private_data = private; | |
5774 | return 0; | |
5775 | } | |
5776 | ||
5777 | struct dir_entry { | |
5778 | u64 ino; | |
5779 | u64 offset; | |
5780 | unsigned type; | |
5781 | int name_len; | |
5782 | }; | |
5783 | ||
5784 | static int btrfs_filldir(void *addr, int entries, struct dir_context *ctx) | |
5785 | { | |
5786 | while (entries--) { | |
5787 | struct dir_entry *entry = addr; | |
5788 | char *name = (char *)(entry + 1); | |
5789 | ||
92d32170 DS |
5790 | ctx->pos = get_unaligned(&entry->offset); |
5791 | if (!dir_emit(ctx, name, get_unaligned(&entry->name_len), | |
5792 | get_unaligned(&entry->ino), | |
5793 | get_unaligned(&entry->type))) | |
23b5ec74 | 5794 | return 1; |
92d32170 DS |
5795 | addr += sizeof(struct dir_entry) + |
5796 | get_unaligned(&entry->name_len); | |
23b5ec74 JB |
5797 | ctx->pos++; |
5798 | } | |
5799 | return 0; | |
5800 | } | |
5801 | ||
9cdda8d3 | 5802 | static int btrfs_real_readdir(struct file *file, struct dir_context *ctx) |
39279cc3 | 5803 | { |
9cdda8d3 | 5804 | struct inode *inode = file_inode(file); |
39279cc3 | 5805 | struct btrfs_root *root = BTRFS_I(inode)->root; |
23b5ec74 | 5806 | struct btrfs_file_private *private = file->private_data; |
39279cc3 CM |
5807 | struct btrfs_dir_item *di; |
5808 | struct btrfs_key key; | |
5f39d397 | 5809 | struct btrfs_key found_key; |
39279cc3 | 5810 | struct btrfs_path *path; |
23b5ec74 | 5811 | void *addr; |
16cdcec7 MX |
5812 | struct list_head ins_list; |
5813 | struct list_head del_list; | |
39279cc3 | 5814 | int ret; |
5f39d397 | 5815 | struct extent_buffer *leaf; |
39279cc3 | 5816 | int slot; |
5f39d397 CM |
5817 | char *name_ptr; |
5818 | int name_len; | |
23b5ec74 JB |
5819 | int entries = 0; |
5820 | int total_len = 0; | |
02dbfc99 | 5821 | bool put = false; |
c2951f32 | 5822 | struct btrfs_key location; |
5f39d397 | 5823 | |
9cdda8d3 AV |
5824 | if (!dir_emit_dots(file, ctx)) |
5825 | return 0; | |
5826 | ||
49593bfa | 5827 | path = btrfs_alloc_path(); |
16cdcec7 MX |
5828 | if (!path) |
5829 | return -ENOMEM; | |
ff5714cc | 5830 | |
23b5ec74 | 5831 | addr = private->filldir_buf; |
e4058b54 | 5832 | path->reada = READA_FORWARD; |
49593bfa | 5833 | |
c2951f32 JM |
5834 | INIT_LIST_HEAD(&ins_list); |
5835 | INIT_LIST_HEAD(&del_list); | |
5836 | put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list); | |
16cdcec7 | 5837 | |
23b5ec74 | 5838 | again: |
c2951f32 | 5839 | key.type = BTRFS_DIR_INDEX_KEY; |
9cdda8d3 | 5840 | key.offset = ctx->pos; |
4a0cc7ca | 5841 | key.objectid = btrfs_ino(BTRFS_I(inode)); |
5f39d397 | 5842 | |
39279cc3 CM |
5843 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
5844 | if (ret < 0) | |
5845 | goto err; | |
49593bfa DW |
5846 | |
5847 | while (1) { | |
23b5ec74 JB |
5848 | struct dir_entry *entry; |
5849 | ||
5f39d397 | 5850 | leaf = path->nodes[0]; |
39279cc3 | 5851 | slot = path->slots[0]; |
b9e03af0 LZ |
5852 | if (slot >= btrfs_header_nritems(leaf)) { |
5853 | ret = btrfs_next_leaf(root, path); | |
5854 | if (ret < 0) | |
5855 | goto err; | |
5856 | else if (ret > 0) | |
5857 | break; | |
5858 | continue; | |
39279cc3 | 5859 | } |
3de4586c | 5860 | |
5f39d397 CM |
5861 | btrfs_item_key_to_cpu(leaf, &found_key, slot); |
5862 | ||
5863 | if (found_key.objectid != key.objectid) | |
39279cc3 | 5864 | break; |
c2951f32 | 5865 | if (found_key.type != BTRFS_DIR_INDEX_KEY) |
39279cc3 | 5866 | break; |
9cdda8d3 | 5867 | if (found_key.offset < ctx->pos) |
b9e03af0 | 5868 | goto next; |
c2951f32 | 5869 | if (btrfs_should_delete_dir_index(&del_list, found_key.offset)) |
16cdcec7 | 5870 | goto next; |
39279cc3 | 5871 | di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item); |
c2951f32 | 5872 | name_len = btrfs_dir_name_len(leaf, di); |
23b5ec74 JB |
5873 | if ((total_len + sizeof(struct dir_entry) + name_len) >= |
5874 | PAGE_SIZE) { | |
5875 | btrfs_release_path(path); | |
5876 | ret = btrfs_filldir(private->filldir_buf, entries, ctx); | |
5877 | if (ret) | |
5878 | goto nopos; | |
5879 | addr = private->filldir_buf; | |
5880 | entries = 0; | |
5881 | total_len = 0; | |
5882 | goto again; | |
c2951f32 | 5883 | } |
23b5ec74 JB |
5884 | |
5885 | entry = addr; | |
92d32170 | 5886 | put_unaligned(name_len, &entry->name_len); |
23b5ec74 | 5887 | name_ptr = (char *)(entry + 1); |
c2951f32 JM |
5888 | read_extent_buffer(leaf, name_ptr, (unsigned long)(di + 1), |
5889 | name_len); | |
92d32170 DS |
5890 | put_unaligned(btrfs_filetype_table[btrfs_dir_type(leaf, di)], |
5891 | &entry->type); | |
c2951f32 | 5892 | btrfs_dir_item_key_to_cpu(leaf, di, &location); |
92d32170 DS |
5893 | put_unaligned(location.objectid, &entry->ino); |
5894 | put_unaligned(found_key.offset, &entry->offset); | |
23b5ec74 JB |
5895 | entries++; |
5896 | addr += sizeof(struct dir_entry) + name_len; | |
5897 | total_len += sizeof(struct dir_entry) + name_len; | |
b9e03af0 LZ |
5898 | next: |
5899 | path->slots[0]++; | |
39279cc3 | 5900 | } |
23b5ec74 JB |
5901 | btrfs_release_path(path); |
5902 | ||
5903 | ret = btrfs_filldir(private->filldir_buf, entries, ctx); | |
5904 | if (ret) | |
5905 | goto nopos; | |
49593bfa | 5906 | |
d2fbb2b5 | 5907 | ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list); |
c2951f32 | 5908 | if (ret) |
bc4ef759 DS |
5909 | goto nopos; |
5910 | ||
db62efbb ZB |
5911 | /* |
5912 | * Stop new entries from being returned after we return the last | |
5913 | * entry. | |
5914 | * | |
5915 | * New directory entries are assigned a strictly increasing | |
5916 | * offset. This means that new entries created during readdir | |
5917 | * are *guaranteed* to be seen in the future by that readdir. | |
5918 | * This has broken buggy programs which operate on names as | |
5919 | * they're returned by readdir. Until we re-use freed offsets | |
5920 | * we have this hack to stop new entries from being returned | |
5921 | * under the assumption that they'll never reach this huge | |
5922 | * offset. | |
5923 | * | |
5924 | * This is being careful not to overflow 32bit loff_t unless the | |
5925 | * last entry requires it because doing so has broken 32bit apps | |
5926 | * in the past. | |
5927 | */ | |
c2951f32 JM |
5928 | if (ctx->pos >= INT_MAX) |
5929 | ctx->pos = LLONG_MAX; | |
5930 | else | |
5931 | ctx->pos = INT_MAX; | |
39279cc3 CM |
5932 | nopos: |
5933 | ret = 0; | |
5934 | err: | |
02dbfc99 OS |
5935 | if (put) |
5936 | btrfs_readdir_put_delayed_items(inode, &ins_list, &del_list); | |
39279cc3 | 5937 | btrfs_free_path(path); |
39279cc3 CM |
5938 | return ret; |
5939 | } | |
5940 | ||
39279cc3 | 5941 | /* |
54aa1f4d | 5942 | * This is somewhat expensive, updating the tree every time the |
39279cc3 CM |
5943 | * inode changes. But, it is most likely to find the inode in cache. |
5944 | * FIXME, needs more benchmarking...there are no reasons other than performance | |
5945 | * to keep or drop this code. | |
5946 | */ | |
48a3b636 | 5947 | static int btrfs_dirty_inode(struct inode *inode) |
39279cc3 | 5948 | { |
2ff7e61e | 5949 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
39279cc3 CM |
5950 | struct btrfs_root *root = BTRFS_I(inode)->root; |
5951 | struct btrfs_trans_handle *trans; | |
8929ecfa YZ |
5952 | int ret; |
5953 | ||
72ac3c0d | 5954 | if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags)) |
22c44fe6 | 5955 | return 0; |
39279cc3 | 5956 | |
7a7eaa40 | 5957 | trans = btrfs_join_transaction(root); |
22c44fe6 JB |
5958 | if (IS_ERR(trans)) |
5959 | return PTR_ERR(trans); | |
8929ecfa YZ |
5960 | |
5961 | ret = btrfs_update_inode(trans, root, inode); | |
94b60442 CM |
5962 | if (ret && ret == -ENOSPC) { |
5963 | /* whoops, lets try again with the full transaction */ | |
3a45bb20 | 5964 | btrfs_end_transaction(trans); |
94b60442 | 5965 | trans = btrfs_start_transaction(root, 1); |
22c44fe6 JB |
5966 | if (IS_ERR(trans)) |
5967 | return PTR_ERR(trans); | |
8929ecfa | 5968 | |
94b60442 | 5969 | ret = btrfs_update_inode(trans, root, inode); |
94b60442 | 5970 | } |
3a45bb20 | 5971 | btrfs_end_transaction(trans); |
16cdcec7 | 5972 | if (BTRFS_I(inode)->delayed_node) |
2ff7e61e | 5973 | btrfs_balance_delayed_items(fs_info); |
22c44fe6 JB |
5974 | |
5975 | return ret; | |
5976 | } | |
5977 | ||
5978 | /* | |
5979 | * This is a copy of file_update_time. We need this so we can return error on | |
5980 | * ENOSPC for updating the inode in the case of file write and mmap writes. | |
5981 | */ | |
95582b00 | 5982 | static int btrfs_update_time(struct inode *inode, struct timespec64 *now, |
e41f941a | 5983 | int flags) |
22c44fe6 | 5984 | { |
2bc55652 | 5985 | struct btrfs_root *root = BTRFS_I(inode)->root; |
3a8c7231 | 5986 | bool dirty = flags & ~S_VERSION; |
2bc55652 AB |
5987 | |
5988 | if (btrfs_root_readonly(root)) | |
5989 | return -EROFS; | |
5990 | ||
e41f941a | 5991 | if (flags & S_VERSION) |
3a8c7231 | 5992 | dirty |= inode_maybe_inc_iversion(inode, dirty); |
e41f941a JB |
5993 | if (flags & S_CTIME) |
5994 | inode->i_ctime = *now; | |
5995 | if (flags & S_MTIME) | |
5996 | inode->i_mtime = *now; | |
5997 | if (flags & S_ATIME) | |
5998 | inode->i_atime = *now; | |
3a8c7231 | 5999 | return dirty ? btrfs_dirty_inode(inode) : 0; |
39279cc3 CM |
6000 | } |
6001 | ||
d352ac68 CM |
6002 | /* |
6003 | * find the highest existing sequence number in a directory | |
6004 | * and then set the in-memory index_cnt variable to reflect | |
6005 | * free sequence numbers | |
6006 | */ | |
4c570655 | 6007 | static int btrfs_set_inode_index_count(struct btrfs_inode *inode) |
aec7477b | 6008 | { |
4c570655 | 6009 | struct btrfs_root *root = inode->root; |
aec7477b JB |
6010 | struct btrfs_key key, found_key; |
6011 | struct btrfs_path *path; | |
6012 | struct extent_buffer *leaf; | |
6013 | int ret; | |
6014 | ||
4c570655 | 6015 | key.objectid = btrfs_ino(inode); |
962a298f | 6016 | key.type = BTRFS_DIR_INDEX_KEY; |
aec7477b JB |
6017 | key.offset = (u64)-1; |
6018 | ||
6019 | path = btrfs_alloc_path(); | |
6020 | if (!path) | |
6021 | return -ENOMEM; | |
6022 | ||
6023 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); | |
6024 | if (ret < 0) | |
6025 | goto out; | |
6026 | /* FIXME: we should be able to handle this */ | |
6027 | if (ret == 0) | |
6028 | goto out; | |
6029 | ret = 0; | |
6030 | ||
6031 | /* | |
6032 | * MAGIC NUMBER EXPLANATION: | |
6033 | * since we search a directory based on f_pos we have to start at 2 | |
6034 | * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody | |
6035 | * else has to start at 2 | |
6036 | */ | |
6037 | if (path->slots[0] == 0) { | |
4c570655 | 6038 | inode->index_cnt = 2; |
aec7477b JB |
6039 | goto out; |
6040 | } | |
6041 | ||
6042 | path->slots[0]--; | |
6043 | ||
6044 | leaf = path->nodes[0]; | |
6045 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); | |
6046 | ||
4c570655 | 6047 | if (found_key.objectid != btrfs_ino(inode) || |
962a298f | 6048 | found_key.type != BTRFS_DIR_INDEX_KEY) { |
4c570655 | 6049 | inode->index_cnt = 2; |
aec7477b JB |
6050 | goto out; |
6051 | } | |
6052 | ||
4c570655 | 6053 | inode->index_cnt = found_key.offset + 1; |
aec7477b JB |
6054 | out: |
6055 | btrfs_free_path(path); | |
6056 | return ret; | |
6057 | } | |
6058 | ||
d352ac68 CM |
6059 | /* |
6060 | * helper to find a free sequence number in a given directory. This current | |
6061 | * code is very simple, later versions will do smarter things in the btree | |
6062 | */ | |
877574e2 | 6063 | int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index) |
aec7477b JB |
6064 | { |
6065 | int ret = 0; | |
6066 | ||
877574e2 NB |
6067 | if (dir->index_cnt == (u64)-1) { |
6068 | ret = btrfs_inode_delayed_dir_index_count(dir); | |
16cdcec7 MX |
6069 | if (ret) { |
6070 | ret = btrfs_set_inode_index_count(dir); | |
6071 | if (ret) | |
6072 | return ret; | |
6073 | } | |
aec7477b JB |
6074 | } |
6075 | ||
877574e2 NB |
6076 | *index = dir->index_cnt; |
6077 | dir->index_cnt++; | |
aec7477b JB |
6078 | |
6079 | return ret; | |
6080 | } | |
6081 | ||
b0d5d10f CM |
6082 | static int btrfs_insert_inode_locked(struct inode *inode) |
6083 | { | |
6084 | struct btrfs_iget_args args; | |
6085 | args.location = &BTRFS_I(inode)->location; | |
6086 | args.root = BTRFS_I(inode)->root; | |
6087 | ||
6088 | return insert_inode_locked4(inode, | |
6089 | btrfs_inode_hash(inode->i_ino, BTRFS_I(inode)->root), | |
6090 | btrfs_find_actor, &args); | |
6091 | } | |
6092 | ||
19aee8de AJ |
6093 | /* |
6094 | * Inherit flags from the parent inode. | |
6095 | * | |
6096 | * Currently only the compression flags and the cow flags are inherited. | |
6097 | */ | |
6098 | static void btrfs_inherit_iflags(struct inode *inode, struct inode *dir) | |
6099 | { | |
6100 | unsigned int flags; | |
6101 | ||
6102 | if (!dir) | |
6103 | return; | |
6104 | ||
6105 | flags = BTRFS_I(dir)->flags; | |
6106 | ||
6107 | if (flags & BTRFS_INODE_NOCOMPRESS) { | |
6108 | BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS; | |
6109 | BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS; | |
6110 | } else if (flags & BTRFS_INODE_COMPRESS) { | |
6111 | BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS; | |
6112 | BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS; | |
6113 | } | |
6114 | ||
6115 | if (flags & BTRFS_INODE_NODATACOW) { | |
6116 | BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW; | |
6117 | if (S_ISREG(inode->i_mode)) | |
6118 | BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM; | |
6119 | } | |
6120 | ||
7b6a221e | 6121 | btrfs_sync_inode_flags_to_i_flags(inode); |
19aee8de AJ |
6122 | } |
6123 | ||
39279cc3 CM |
6124 | static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans, |
6125 | struct btrfs_root *root, | |
aec7477b | 6126 | struct inode *dir, |
9c58309d | 6127 | const char *name, int name_len, |
175a4eb7 AV |
6128 | u64 ref_objectid, u64 objectid, |
6129 | umode_t mode, u64 *index) | |
39279cc3 | 6130 | { |
0b246afa | 6131 | struct btrfs_fs_info *fs_info = root->fs_info; |
39279cc3 | 6132 | struct inode *inode; |
5f39d397 | 6133 | struct btrfs_inode_item *inode_item; |
39279cc3 | 6134 | struct btrfs_key *location; |
5f39d397 | 6135 | struct btrfs_path *path; |
9c58309d CM |
6136 | struct btrfs_inode_ref *ref; |
6137 | struct btrfs_key key[2]; | |
6138 | u32 sizes[2]; | |
ef3b9af5 | 6139 | int nitems = name ? 2 : 1; |
9c58309d | 6140 | unsigned long ptr; |
39279cc3 | 6141 | int ret; |
39279cc3 | 6142 | |
5f39d397 | 6143 | path = btrfs_alloc_path(); |
d8926bb3 MF |
6144 | if (!path) |
6145 | return ERR_PTR(-ENOMEM); | |
5f39d397 | 6146 | |
0b246afa | 6147 | inode = new_inode(fs_info->sb); |
8fb27640 YS |
6148 | if (!inode) { |
6149 | btrfs_free_path(path); | |
39279cc3 | 6150 | return ERR_PTR(-ENOMEM); |
8fb27640 | 6151 | } |
39279cc3 | 6152 | |
5762b5c9 FM |
6153 | /* |
6154 | * O_TMPFILE, set link count to 0, so that after this point, | |
6155 | * we fill in an inode item with the correct link count. | |
6156 | */ | |
6157 | if (!name) | |
6158 | set_nlink(inode, 0); | |
6159 | ||
581bb050 LZ |
6160 | /* |
6161 | * we have to initialize this early, so we can reclaim the inode | |
6162 | * number if we fail afterwards in this function. | |
6163 | */ | |
6164 | inode->i_ino = objectid; | |
6165 | ||
ef3b9af5 | 6166 | if (dir && name) { |
1abe9b8a | 6167 | trace_btrfs_inode_request(dir); |
6168 | ||
877574e2 | 6169 | ret = btrfs_set_inode_index(BTRFS_I(dir), index); |
09771430 | 6170 | if (ret) { |
8fb27640 | 6171 | btrfs_free_path(path); |
09771430 | 6172 | iput(inode); |
aec7477b | 6173 | return ERR_PTR(ret); |
09771430 | 6174 | } |
ef3b9af5 FM |
6175 | } else if (dir) { |
6176 | *index = 0; | |
aec7477b JB |
6177 | } |
6178 | /* | |
6179 | * index_cnt is ignored for everything but a dir, | |
df6703e1 | 6180 | * btrfs_set_inode_index_count has an explanation for the magic |
aec7477b JB |
6181 | * number |
6182 | */ | |
6183 | BTRFS_I(inode)->index_cnt = 2; | |
67de1176 | 6184 | BTRFS_I(inode)->dir_index = *index; |
39279cc3 | 6185 | BTRFS_I(inode)->root = root; |
e02119d5 | 6186 | BTRFS_I(inode)->generation = trans->transid; |
76195853 | 6187 | inode->i_generation = BTRFS_I(inode)->generation; |
b888db2b | 6188 | |
5dc562c5 JB |
6189 | /* |
6190 | * We could have gotten an inode number from somebody who was fsynced | |
6191 | * and then removed in this same transaction, so let's just set full | |
6192 | * sync since it will be a full sync anyway and this will blow away the | |
6193 | * old info in the log. | |
6194 | */ | |
6195 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags); | |
6196 | ||
9c58309d | 6197 | key[0].objectid = objectid; |
962a298f | 6198 | key[0].type = BTRFS_INODE_ITEM_KEY; |
9c58309d CM |
6199 | key[0].offset = 0; |
6200 | ||
9c58309d | 6201 | sizes[0] = sizeof(struct btrfs_inode_item); |
ef3b9af5 FM |
6202 | |
6203 | if (name) { | |
6204 | /* | |
6205 | * Start new inodes with an inode_ref. This is slightly more | |
6206 | * efficient for small numbers of hard links since they will | |
6207 | * be packed into one item. Extended refs will kick in if we | |
6208 | * add more hard links than can fit in the ref item. | |
6209 | */ | |
6210 | key[1].objectid = objectid; | |
962a298f | 6211 | key[1].type = BTRFS_INODE_REF_KEY; |
ef3b9af5 FM |
6212 | key[1].offset = ref_objectid; |
6213 | ||
6214 | sizes[1] = name_len + sizeof(*ref); | |
6215 | } | |
9c58309d | 6216 | |
b0d5d10f CM |
6217 | location = &BTRFS_I(inode)->location; |
6218 | location->objectid = objectid; | |
6219 | location->offset = 0; | |
962a298f | 6220 | location->type = BTRFS_INODE_ITEM_KEY; |
b0d5d10f CM |
6221 | |
6222 | ret = btrfs_insert_inode_locked(inode); | |
32955c54 AV |
6223 | if (ret < 0) { |
6224 | iput(inode); | |
b0d5d10f | 6225 | goto fail; |
32955c54 | 6226 | } |
b0d5d10f | 6227 | |
b9473439 | 6228 | path->leave_spinning = 1; |
ef3b9af5 | 6229 | ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems); |
9c58309d | 6230 | if (ret != 0) |
b0d5d10f | 6231 | goto fail_unlock; |
5f39d397 | 6232 | |
ecc11fab | 6233 | inode_init_owner(inode, dir, mode); |
a76a3cd4 | 6234 | inode_set_bytes(inode, 0); |
9cc97d64 | 6235 | |
c2050a45 | 6236 | inode->i_mtime = current_time(inode); |
9cc97d64 | 6237 | inode->i_atime = inode->i_mtime; |
6238 | inode->i_ctime = inode->i_mtime; | |
d3c6be6f | 6239 | BTRFS_I(inode)->i_otime = inode->i_mtime; |
9cc97d64 | 6240 | |
5f39d397 CM |
6241 | inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0], |
6242 | struct btrfs_inode_item); | |
b159fa28 | 6243 | memzero_extent_buffer(path->nodes[0], (unsigned long)inode_item, |
293f7e07 | 6244 | sizeof(*inode_item)); |
e02119d5 | 6245 | fill_inode_item(trans, path->nodes[0], inode_item, inode); |
9c58309d | 6246 | |
ef3b9af5 FM |
6247 | if (name) { |
6248 | ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1, | |
6249 | struct btrfs_inode_ref); | |
6250 | btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len); | |
6251 | btrfs_set_inode_ref_index(path->nodes[0], ref, *index); | |
6252 | ptr = (unsigned long)(ref + 1); | |
6253 | write_extent_buffer(path->nodes[0], name, ptr, name_len); | |
6254 | } | |
9c58309d | 6255 | |
5f39d397 CM |
6256 | btrfs_mark_buffer_dirty(path->nodes[0]); |
6257 | btrfs_free_path(path); | |
6258 | ||
6cbff00f CH |
6259 | btrfs_inherit_iflags(inode, dir); |
6260 | ||
569254b0 | 6261 | if (S_ISREG(mode)) { |
0b246afa | 6262 | if (btrfs_test_opt(fs_info, NODATASUM)) |
94272164 | 6263 | BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM; |
0b246afa | 6264 | if (btrfs_test_opt(fs_info, NODATACOW)) |
f2bdf9a8 JB |
6265 | BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW | |
6266 | BTRFS_INODE_NODATASUM; | |
94272164 CM |
6267 | } |
6268 | ||
5d4f98a2 | 6269 | inode_tree_add(inode); |
1abe9b8a | 6270 | |
6271 | trace_btrfs_inode_new(inode); | |
1973f0fa | 6272 | btrfs_set_inode_last_trans(trans, inode); |
1abe9b8a | 6273 | |
8ea05e3a AB |
6274 | btrfs_update_root_times(trans, root); |
6275 | ||
63541927 FDBM |
6276 | ret = btrfs_inode_inherit_props(trans, inode, dir); |
6277 | if (ret) | |
0b246afa | 6278 | btrfs_err(fs_info, |
63541927 | 6279 | "error inheriting props for ino %llu (root %llu): %d", |
f85b7379 | 6280 | btrfs_ino(BTRFS_I(inode)), root->root_key.objectid, ret); |
63541927 | 6281 | |
39279cc3 | 6282 | return inode; |
b0d5d10f CM |
6283 | |
6284 | fail_unlock: | |
32955c54 | 6285 | discard_new_inode(inode); |
5f39d397 | 6286 | fail: |
ef3b9af5 | 6287 | if (dir && name) |
aec7477b | 6288 | BTRFS_I(dir)->index_cnt--; |
5f39d397 CM |
6289 | btrfs_free_path(path); |
6290 | return ERR_PTR(ret); | |
39279cc3 CM |
6291 | } |
6292 | ||
6293 | static inline u8 btrfs_inode_type(struct inode *inode) | |
6294 | { | |
6295 | return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT]; | |
6296 | } | |
6297 | ||
d352ac68 CM |
6298 | /* |
6299 | * utility function to add 'inode' into 'parent_inode' with | |
6300 | * a give name and a given sequence number. | |
6301 | * if 'add_backref' is true, also insert a backref from the | |
6302 | * inode to the parent directory. | |
6303 | */ | |
e02119d5 | 6304 | int btrfs_add_link(struct btrfs_trans_handle *trans, |
db0a669f | 6305 | struct btrfs_inode *parent_inode, struct btrfs_inode *inode, |
e02119d5 | 6306 | const char *name, int name_len, int add_backref, u64 index) |
39279cc3 | 6307 | { |
4df27c4d | 6308 | int ret = 0; |
39279cc3 | 6309 | struct btrfs_key key; |
db0a669f NB |
6310 | struct btrfs_root *root = parent_inode->root; |
6311 | u64 ino = btrfs_ino(inode); | |
6312 | u64 parent_ino = btrfs_ino(parent_inode); | |
5f39d397 | 6313 | |
33345d01 | 6314 | if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) { |
db0a669f | 6315 | memcpy(&key, &inode->root->root_key, sizeof(key)); |
4df27c4d | 6316 | } else { |
33345d01 | 6317 | key.objectid = ino; |
962a298f | 6318 | key.type = BTRFS_INODE_ITEM_KEY; |
4df27c4d YZ |
6319 | key.offset = 0; |
6320 | } | |
6321 | ||
33345d01 | 6322 | if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) { |
6025c19f | 6323 | ret = btrfs_add_root_ref(trans, key.objectid, |
0b246afa JM |
6324 | root->root_key.objectid, parent_ino, |
6325 | index, name, name_len); | |
4df27c4d | 6326 | } else if (add_backref) { |
33345d01 LZ |
6327 | ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino, |
6328 | parent_ino, index); | |
4df27c4d | 6329 | } |
39279cc3 | 6330 | |
79787eaa JM |
6331 | /* Nothing to clean up yet */ |
6332 | if (ret) | |
6333 | return ret; | |
4df27c4d | 6334 | |
684572df | 6335 | ret = btrfs_insert_dir_item(trans, name, name_len, parent_inode, &key, |
db0a669f | 6336 | btrfs_inode_type(&inode->vfs_inode), index); |
9c52057c | 6337 | if (ret == -EEXIST || ret == -EOVERFLOW) |
79787eaa JM |
6338 | goto fail_dir_item; |
6339 | else if (ret) { | |
66642832 | 6340 | btrfs_abort_transaction(trans, ret); |
79787eaa | 6341 | return ret; |
39279cc3 | 6342 | } |
79787eaa | 6343 | |
db0a669f | 6344 | btrfs_i_size_write(parent_inode, parent_inode->vfs_inode.i_size + |
79787eaa | 6345 | name_len * 2); |
db0a669f NB |
6346 | inode_inc_iversion(&parent_inode->vfs_inode); |
6347 | parent_inode->vfs_inode.i_mtime = parent_inode->vfs_inode.i_ctime = | |
6348 | current_time(&parent_inode->vfs_inode); | |
6349 | ret = btrfs_update_inode(trans, root, &parent_inode->vfs_inode); | |
79787eaa | 6350 | if (ret) |
66642832 | 6351 | btrfs_abort_transaction(trans, ret); |
39279cc3 | 6352 | return ret; |
fe66a05a CM |
6353 | |
6354 | fail_dir_item: | |
6355 | if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) { | |
6356 | u64 local_index; | |
6357 | int err; | |
3ee1c553 | 6358 | err = btrfs_del_root_ref(trans, key.objectid, |
0b246afa JM |
6359 | root->root_key.objectid, parent_ino, |
6360 | &local_index, name, name_len); | |
1690dd41 JT |
6361 | if (err) |
6362 | btrfs_abort_transaction(trans, err); | |
fe66a05a CM |
6363 | } else if (add_backref) { |
6364 | u64 local_index; | |
6365 | int err; | |
6366 | ||
6367 | err = btrfs_del_inode_ref(trans, root, name, name_len, | |
6368 | ino, parent_ino, &local_index); | |
1690dd41 JT |
6369 | if (err) |
6370 | btrfs_abort_transaction(trans, err); | |
fe66a05a | 6371 | } |
1690dd41 JT |
6372 | |
6373 | /* Return the original error code */ | |
fe66a05a | 6374 | return ret; |
39279cc3 CM |
6375 | } |
6376 | ||
6377 | static int btrfs_add_nondir(struct btrfs_trans_handle *trans, | |
cef415af NB |
6378 | struct btrfs_inode *dir, struct dentry *dentry, |
6379 | struct btrfs_inode *inode, int backref, u64 index) | |
39279cc3 | 6380 | { |
a1b075d2 JB |
6381 | int err = btrfs_add_link(trans, dir, inode, |
6382 | dentry->d_name.name, dentry->d_name.len, | |
6383 | backref, index); | |
39279cc3 CM |
6384 | if (err > 0) |
6385 | err = -EEXIST; | |
6386 | return err; | |
6387 | } | |
6388 | ||
618e21d5 | 6389 | static int btrfs_mknod(struct inode *dir, struct dentry *dentry, |
1a67aafb | 6390 | umode_t mode, dev_t rdev) |
618e21d5 | 6391 | { |
2ff7e61e | 6392 | struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb); |
618e21d5 JB |
6393 | struct btrfs_trans_handle *trans; |
6394 | struct btrfs_root *root = BTRFS_I(dir)->root; | |
1832a6d5 | 6395 | struct inode *inode = NULL; |
618e21d5 | 6396 | int err; |
618e21d5 | 6397 | u64 objectid; |
00e4e6b3 | 6398 | u64 index = 0; |
618e21d5 | 6399 | |
9ed74f2d JB |
6400 | /* |
6401 | * 2 for inode item and ref | |
6402 | * 2 for dir items | |
6403 | * 1 for xattr if selinux is on | |
6404 | */ | |
a22285a6 YZ |
6405 | trans = btrfs_start_transaction(root, 5); |
6406 | if (IS_ERR(trans)) | |
6407 | return PTR_ERR(trans); | |
1832a6d5 | 6408 | |
581bb050 LZ |
6409 | err = btrfs_find_free_ino(root, &objectid); |
6410 | if (err) | |
6411 | goto out_unlock; | |
6412 | ||
aec7477b | 6413 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
f85b7379 DS |
6414 | dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid, |
6415 | mode, &index); | |
7cf96da3 TI |
6416 | if (IS_ERR(inode)) { |
6417 | err = PTR_ERR(inode); | |
32955c54 | 6418 | inode = NULL; |
618e21d5 | 6419 | goto out_unlock; |
7cf96da3 | 6420 | } |
618e21d5 | 6421 | |
ad19db71 CS |
6422 | /* |
6423 | * If the active LSM wants to access the inode during | |
6424 | * d_instantiate it needs these. Smack checks to see | |
6425 | * if the filesystem supports xattrs by looking at the | |
6426 | * ops vector. | |
6427 | */ | |
ad19db71 | 6428 | inode->i_op = &btrfs_special_inode_operations; |
b0d5d10f CM |
6429 | init_special_inode(inode, inode->i_mode, rdev); |
6430 | ||
6431 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); | |
618e21d5 | 6432 | if (err) |
32955c54 | 6433 | goto out_unlock; |
b0d5d10f | 6434 | |
cef415af NB |
6435 | err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode), |
6436 | 0, index); | |
32955c54 AV |
6437 | if (err) |
6438 | goto out_unlock; | |
6439 | ||
6440 | btrfs_update_inode(trans, root, inode); | |
6441 | d_instantiate_new(dentry, inode); | |
b0d5d10f | 6442 | |
618e21d5 | 6443 | out_unlock: |
3a45bb20 | 6444 | btrfs_end_transaction(trans); |
2ff7e61e | 6445 | btrfs_btree_balance_dirty(fs_info); |
32955c54 | 6446 | if (err && inode) { |
618e21d5 | 6447 | inode_dec_link_count(inode); |
32955c54 | 6448 | discard_new_inode(inode); |
618e21d5 | 6449 | } |
618e21d5 JB |
6450 | return err; |
6451 | } | |
6452 | ||
39279cc3 | 6453 | static int btrfs_create(struct inode *dir, struct dentry *dentry, |
ebfc3b49 | 6454 | umode_t mode, bool excl) |
39279cc3 | 6455 | { |
2ff7e61e | 6456 | struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb); |
39279cc3 CM |
6457 | struct btrfs_trans_handle *trans; |
6458 | struct btrfs_root *root = BTRFS_I(dir)->root; | |
1832a6d5 | 6459 | struct inode *inode = NULL; |
a22285a6 | 6460 | int err; |
39279cc3 | 6461 | u64 objectid; |
00e4e6b3 | 6462 | u64 index = 0; |
39279cc3 | 6463 | |
9ed74f2d JB |
6464 | /* |
6465 | * 2 for inode item and ref | |
6466 | * 2 for dir items | |
6467 | * 1 for xattr if selinux is on | |
6468 | */ | |
a22285a6 YZ |
6469 | trans = btrfs_start_transaction(root, 5); |
6470 | if (IS_ERR(trans)) | |
6471 | return PTR_ERR(trans); | |
9ed74f2d | 6472 | |
581bb050 LZ |
6473 | err = btrfs_find_free_ino(root, &objectid); |
6474 | if (err) | |
6475 | goto out_unlock; | |
6476 | ||
aec7477b | 6477 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
f85b7379 DS |
6478 | dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid, |
6479 | mode, &index); | |
7cf96da3 TI |
6480 | if (IS_ERR(inode)) { |
6481 | err = PTR_ERR(inode); | |
32955c54 | 6482 | inode = NULL; |
39279cc3 | 6483 | goto out_unlock; |
7cf96da3 | 6484 | } |
ad19db71 CS |
6485 | /* |
6486 | * If the active LSM wants to access the inode during | |
6487 | * d_instantiate it needs these. Smack checks to see | |
6488 | * if the filesystem supports xattrs by looking at the | |
6489 | * ops vector. | |
6490 | */ | |
6491 | inode->i_fop = &btrfs_file_operations; | |
6492 | inode->i_op = &btrfs_file_inode_operations; | |
b0d5d10f | 6493 | inode->i_mapping->a_ops = &btrfs_aops; |
b0d5d10f CM |
6494 | |
6495 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); | |
6496 | if (err) | |
32955c54 | 6497 | goto out_unlock; |
b0d5d10f CM |
6498 | |
6499 | err = btrfs_update_inode(trans, root, inode); | |
6500 | if (err) | |
32955c54 | 6501 | goto out_unlock; |
ad19db71 | 6502 | |
cef415af NB |
6503 | err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode), |
6504 | 0, index); | |
39279cc3 | 6505 | if (err) |
32955c54 | 6506 | goto out_unlock; |
43baa579 | 6507 | |
43baa579 | 6508 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; |
1e2e547a | 6509 | d_instantiate_new(dentry, inode); |
43baa579 | 6510 | |
39279cc3 | 6511 | out_unlock: |
3a45bb20 | 6512 | btrfs_end_transaction(trans); |
32955c54 | 6513 | if (err && inode) { |
39279cc3 | 6514 | inode_dec_link_count(inode); |
32955c54 | 6515 | discard_new_inode(inode); |
39279cc3 | 6516 | } |
2ff7e61e | 6517 | btrfs_btree_balance_dirty(fs_info); |
39279cc3 CM |
6518 | return err; |
6519 | } | |
6520 | ||
6521 | static int btrfs_link(struct dentry *old_dentry, struct inode *dir, | |
6522 | struct dentry *dentry) | |
6523 | { | |
271dba45 | 6524 | struct btrfs_trans_handle *trans = NULL; |
39279cc3 | 6525 | struct btrfs_root *root = BTRFS_I(dir)->root; |
2b0143b5 | 6526 | struct inode *inode = d_inode(old_dentry); |
2ff7e61e | 6527 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
00e4e6b3 | 6528 | u64 index; |
39279cc3 CM |
6529 | int err; |
6530 | int drop_inode = 0; | |
6531 | ||
4a8be425 | 6532 | /* do not allow sys_link's with other subvols of the same device */ |
4fd786e6 | 6533 | if (root->root_key.objectid != BTRFS_I(inode)->root->root_key.objectid) |
3ab3564f | 6534 | return -EXDEV; |
4a8be425 | 6535 | |
f186373f | 6536 | if (inode->i_nlink >= BTRFS_LINK_MAX) |
c055e99e | 6537 | return -EMLINK; |
4a8be425 | 6538 | |
877574e2 | 6539 | err = btrfs_set_inode_index(BTRFS_I(dir), &index); |
aec7477b JB |
6540 | if (err) |
6541 | goto fail; | |
6542 | ||
a22285a6 | 6543 | /* |
7e6b6465 | 6544 | * 2 items for inode and inode ref |
a22285a6 | 6545 | * 2 items for dir items |
7e6b6465 | 6546 | * 1 item for parent inode |
399b0bbf | 6547 | * 1 item for orphan item deletion if O_TMPFILE |
a22285a6 | 6548 | */ |
399b0bbf | 6549 | trans = btrfs_start_transaction(root, inode->i_nlink ? 5 : 6); |
a22285a6 YZ |
6550 | if (IS_ERR(trans)) { |
6551 | err = PTR_ERR(trans); | |
271dba45 | 6552 | trans = NULL; |
a22285a6 YZ |
6553 | goto fail; |
6554 | } | |
5f39d397 | 6555 | |
67de1176 MX |
6556 | /* There are several dir indexes for this inode, clear the cache. */ |
6557 | BTRFS_I(inode)->dir_index = 0ULL; | |
8b558c5f | 6558 | inc_nlink(inode); |
0c4d2d95 | 6559 | inode_inc_iversion(inode); |
c2050a45 | 6560 | inode->i_ctime = current_time(inode); |
7de9c6ee | 6561 | ihold(inode); |
e9976151 | 6562 | set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags); |
aec7477b | 6563 | |
cef415af NB |
6564 | err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, BTRFS_I(inode), |
6565 | 1, index); | |
5f39d397 | 6566 | |
a5719521 | 6567 | if (err) { |
54aa1f4d | 6568 | drop_inode = 1; |
a5719521 | 6569 | } else { |
10d9f309 | 6570 | struct dentry *parent = dentry->d_parent; |
d4682ba0 FM |
6571 | int ret; |
6572 | ||
a5719521 | 6573 | err = btrfs_update_inode(trans, root, inode); |
79787eaa JM |
6574 | if (err) |
6575 | goto fail; | |
ef3b9af5 FM |
6576 | if (inode->i_nlink == 1) { |
6577 | /* | |
6578 | * If new hard link count is 1, it's a file created | |
6579 | * with open(2) O_TMPFILE flag. | |
6580 | */ | |
3d6ae7bb | 6581 | err = btrfs_orphan_del(trans, BTRFS_I(inode)); |
ef3b9af5 FM |
6582 | if (err) |
6583 | goto fail; | |
6584 | } | |
41bd6067 | 6585 | BTRFS_I(inode)->last_link_trans = trans->transid; |
08c422c2 | 6586 | d_instantiate(dentry, inode); |
d4682ba0 FM |
6587 | ret = btrfs_log_new_name(trans, BTRFS_I(inode), NULL, parent, |
6588 | true, NULL); | |
6589 | if (ret == BTRFS_NEED_TRANS_COMMIT) { | |
6590 | err = btrfs_commit_transaction(trans); | |
6591 | trans = NULL; | |
6592 | } | |
a5719521 | 6593 | } |
39279cc3 | 6594 | |
1832a6d5 | 6595 | fail: |
271dba45 | 6596 | if (trans) |
3a45bb20 | 6597 | btrfs_end_transaction(trans); |
39279cc3 CM |
6598 | if (drop_inode) { |
6599 | inode_dec_link_count(inode); | |
6600 | iput(inode); | |
6601 | } | |
2ff7e61e | 6602 | btrfs_btree_balance_dirty(fs_info); |
39279cc3 CM |
6603 | return err; |
6604 | } | |
6605 | ||
18bb1db3 | 6606 | static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) |
39279cc3 | 6607 | { |
2ff7e61e | 6608 | struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb); |
b9d86667 | 6609 | struct inode *inode = NULL; |
39279cc3 CM |
6610 | struct btrfs_trans_handle *trans; |
6611 | struct btrfs_root *root = BTRFS_I(dir)->root; | |
6612 | int err = 0; | |
b9d86667 | 6613 | u64 objectid = 0; |
00e4e6b3 | 6614 | u64 index = 0; |
39279cc3 | 6615 | |
9ed74f2d JB |
6616 | /* |
6617 | * 2 items for inode and ref | |
6618 | * 2 items for dir items | |
6619 | * 1 for xattr if selinux is on | |
6620 | */ | |
a22285a6 YZ |
6621 | trans = btrfs_start_transaction(root, 5); |
6622 | if (IS_ERR(trans)) | |
6623 | return PTR_ERR(trans); | |
39279cc3 | 6624 | |
581bb050 LZ |
6625 | err = btrfs_find_free_ino(root, &objectid); |
6626 | if (err) | |
6627 | goto out_fail; | |
6628 | ||
aec7477b | 6629 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
f85b7379 DS |
6630 | dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), objectid, |
6631 | S_IFDIR | mode, &index); | |
39279cc3 CM |
6632 | if (IS_ERR(inode)) { |
6633 | err = PTR_ERR(inode); | |
32955c54 | 6634 | inode = NULL; |
39279cc3 CM |
6635 | goto out_fail; |
6636 | } | |
5f39d397 | 6637 | |
b0d5d10f CM |
6638 | /* these must be set before we unlock the inode */ |
6639 | inode->i_op = &btrfs_dir_inode_operations; | |
6640 | inode->i_fop = &btrfs_dir_file_operations; | |
33268eaf | 6641 | |
2a7dba39 | 6642 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); |
33268eaf | 6643 | if (err) |
32955c54 | 6644 | goto out_fail; |
39279cc3 | 6645 | |
6ef06d27 | 6646 | btrfs_i_size_write(BTRFS_I(inode), 0); |
39279cc3 CM |
6647 | err = btrfs_update_inode(trans, root, inode); |
6648 | if (err) | |
32955c54 | 6649 | goto out_fail; |
5f39d397 | 6650 | |
db0a669f NB |
6651 | err = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode), |
6652 | dentry->d_name.name, | |
6653 | dentry->d_name.len, 0, index); | |
39279cc3 | 6654 | if (err) |
32955c54 | 6655 | goto out_fail; |
5f39d397 | 6656 | |
1e2e547a | 6657 | d_instantiate_new(dentry, inode); |
39279cc3 CM |
6658 | |
6659 | out_fail: | |
3a45bb20 | 6660 | btrfs_end_transaction(trans); |
32955c54 | 6661 | if (err && inode) { |
c7cfb8a5 | 6662 | inode_dec_link_count(inode); |
32955c54 | 6663 | discard_new_inode(inode); |
c7cfb8a5 | 6664 | } |
2ff7e61e | 6665 | btrfs_btree_balance_dirty(fs_info); |
39279cc3 CM |
6666 | return err; |
6667 | } | |
6668 | ||
c8b97818 | 6669 | static noinline int uncompress_inline(struct btrfs_path *path, |
e40da0e5 | 6670 | struct page *page, |
c8b97818 CM |
6671 | size_t pg_offset, u64 extent_offset, |
6672 | struct btrfs_file_extent_item *item) | |
6673 | { | |
6674 | int ret; | |
6675 | struct extent_buffer *leaf = path->nodes[0]; | |
6676 | char *tmp; | |
6677 | size_t max_size; | |
6678 | unsigned long inline_size; | |
6679 | unsigned long ptr; | |
261507a0 | 6680 | int compress_type; |
c8b97818 CM |
6681 | |
6682 | WARN_ON(pg_offset != 0); | |
261507a0 | 6683 | compress_type = btrfs_file_extent_compression(leaf, item); |
c8b97818 CM |
6684 | max_size = btrfs_file_extent_ram_bytes(leaf, item); |
6685 | inline_size = btrfs_file_extent_inline_item_len(leaf, | |
dd3cc16b | 6686 | btrfs_item_nr(path->slots[0])); |
c8b97818 | 6687 | tmp = kmalloc(inline_size, GFP_NOFS); |
8d413713 TI |
6688 | if (!tmp) |
6689 | return -ENOMEM; | |
c8b97818 CM |
6690 | ptr = btrfs_file_extent_inline_start(item); |
6691 | ||
6692 | read_extent_buffer(leaf, tmp, ptr, inline_size); | |
6693 | ||
09cbfeaf | 6694 | max_size = min_t(unsigned long, PAGE_SIZE, max_size); |
261507a0 LZ |
6695 | ret = btrfs_decompress(compress_type, tmp, page, |
6696 | extent_offset, inline_size, max_size); | |
e1699d2d ZB |
6697 | |
6698 | /* | |
6699 | * decompression code contains a memset to fill in any space between the end | |
6700 | * of the uncompressed data and the end of max_size in case the decompressed | |
6701 | * data ends up shorter than ram_bytes. That doesn't cover the hole between | |
6702 | * the end of an inline extent and the beginning of the next block, so we | |
6703 | * cover that region here. | |
6704 | */ | |
6705 | ||
6706 | if (max_size + pg_offset < PAGE_SIZE) { | |
6707 | char *map = kmap(page); | |
6708 | memset(map + pg_offset + max_size, 0, PAGE_SIZE - max_size - pg_offset); | |
6709 | kunmap(page); | |
6710 | } | |
c8b97818 | 6711 | kfree(tmp); |
166ae5a4 | 6712 | return ret; |
c8b97818 CM |
6713 | } |
6714 | ||
d352ac68 CM |
6715 | /* |
6716 | * a bit scary, this does extent mapping from logical file offset to the disk. | |
d397712b CM |
6717 | * the ugly parts come from merging extents from the disk with the in-ram |
6718 | * representation. This gets more complex because of the data=ordered code, | |
d352ac68 CM |
6719 | * where the in-ram extents might be locked pending data=ordered completion. |
6720 | * | |
6721 | * This also copies inline extents directly into the page. | |
6722 | */ | |
fc4f21b1 | 6723 | struct extent_map *btrfs_get_extent(struct btrfs_inode *inode, |
de2c6615 LB |
6724 | struct page *page, |
6725 | size_t pg_offset, u64 start, u64 len, | |
6726 | int create) | |
a52d9a80 | 6727 | { |
3ffbd68c | 6728 | struct btrfs_fs_info *fs_info = inode->root->fs_info; |
a52d9a80 CM |
6729 | int ret; |
6730 | int err = 0; | |
a52d9a80 CM |
6731 | u64 extent_start = 0; |
6732 | u64 extent_end = 0; | |
fc4f21b1 | 6733 | u64 objectid = btrfs_ino(inode); |
a52d9a80 | 6734 | u32 found_type; |
f421950f | 6735 | struct btrfs_path *path = NULL; |
fc4f21b1 | 6736 | struct btrfs_root *root = inode->root; |
a52d9a80 | 6737 | struct btrfs_file_extent_item *item; |
5f39d397 CM |
6738 | struct extent_buffer *leaf; |
6739 | struct btrfs_key found_key; | |
a52d9a80 | 6740 | struct extent_map *em = NULL; |
fc4f21b1 NB |
6741 | struct extent_map_tree *em_tree = &inode->extent_tree; |
6742 | struct extent_io_tree *io_tree = &inode->io_tree; | |
7ffbb598 | 6743 | const bool new_inline = !page || create; |
a52d9a80 | 6744 | |
890871be | 6745 | read_lock(&em_tree->lock); |
d1310b2e | 6746 | em = lookup_extent_mapping(em_tree, start, len); |
a061fc8d | 6747 | if (em) |
0b246afa | 6748 | em->bdev = fs_info->fs_devices->latest_bdev; |
890871be | 6749 | read_unlock(&em_tree->lock); |
d1310b2e | 6750 | |
a52d9a80 | 6751 | if (em) { |
e1c4b745 CM |
6752 | if (em->start > start || em->start + em->len <= start) |
6753 | free_extent_map(em); | |
6754 | else if (em->block_start == EXTENT_MAP_INLINE && page) | |
70dec807 CM |
6755 | free_extent_map(em); |
6756 | else | |
6757 | goto out; | |
a52d9a80 | 6758 | } |
172ddd60 | 6759 | em = alloc_extent_map(); |
a52d9a80 | 6760 | if (!em) { |
d1310b2e CM |
6761 | err = -ENOMEM; |
6762 | goto out; | |
a52d9a80 | 6763 | } |
0b246afa | 6764 | em->bdev = fs_info->fs_devices->latest_bdev; |
d1310b2e | 6765 | em->start = EXTENT_MAP_HOLE; |
445a6944 | 6766 | em->orig_start = EXTENT_MAP_HOLE; |
d1310b2e | 6767 | em->len = (u64)-1; |
c8b97818 | 6768 | em->block_len = (u64)-1; |
f421950f | 6769 | |
bee6ec82 | 6770 | path = btrfs_alloc_path(); |
f421950f | 6771 | if (!path) { |
bee6ec82 LB |
6772 | err = -ENOMEM; |
6773 | goto out; | |
f421950f CM |
6774 | } |
6775 | ||
bee6ec82 LB |
6776 | /* Chances are we'll be called again, so go ahead and do readahead */ |
6777 | path->reada = READA_FORWARD; | |
6778 | ||
e49aabd9 LB |
6779 | /* |
6780 | * Unless we're going to uncompress the inline extent, no sleep would | |
6781 | * happen. | |
6782 | */ | |
6783 | path->leave_spinning = 1; | |
6784 | ||
5c9a702e | 6785 | ret = btrfs_lookup_file_extent(NULL, root, path, objectid, start, 0); |
a52d9a80 CM |
6786 | if (ret < 0) { |
6787 | err = ret; | |
6788 | goto out; | |
6789 | } | |
6790 | ||
6791 | if (ret != 0) { | |
6792 | if (path->slots[0] == 0) | |
6793 | goto not_found; | |
6794 | path->slots[0]--; | |
6795 | } | |
6796 | ||
5f39d397 CM |
6797 | leaf = path->nodes[0]; |
6798 | item = btrfs_item_ptr(leaf, path->slots[0], | |
a52d9a80 | 6799 | struct btrfs_file_extent_item); |
a52d9a80 | 6800 | /* are we inside the extent that was found? */ |
5f39d397 | 6801 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
962a298f | 6802 | found_type = found_key.type; |
5f39d397 | 6803 | if (found_key.objectid != objectid || |
a52d9a80 | 6804 | found_type != BTRFS_EXTENT_DATA_KEY) { |
25a50341 JB |
6805 | /* |
6806 | * If we backup past the first extent we want to move forward | |
6807 | * and see if there is an extent in front of us, otherwise we'll | |
6808 | * say there is a hole for our whole search range which can | |
6809 | * cause problems. | |
6810 | */ | |
6811 | extent_end = start; | |
6812 | goto next; | |
a52d9a80 CM |
6813 | } |
6814 | ||
5f39d397 CM |
6815 | found_type = btrfs_file_extent_type(leaf, item); |
6816 | extent_start = found_key.offset; | |
d899e052 YZ |
6817 | if (found_type == BTRFS_FILE_EXTENT_REG || |
6818 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { | |
a52d9a80 | 6819 | extent_end = extent_start + |
db94535d | 6820 | btrfs_file_extent_num_bytes(leaf, item); |
09ed2f16 LB |
6821 | |
6822 | trace_btrfs_get_extent_show_fi_regular(inode, leaf, item, | |
6823 | extent_start); | |
9036c102 YZ |
6824 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { |
6825 | size_t size; | |
e41ca589 QW |
6826 | |
6827 | size = btrfs_file_extent_ram_bytes(leaf, item); | |
da17066c | 6828 | extent_end = ALIGN(extent_start + size, |
0b246afa | 6829 | fs_info->sectorsize); |
09ed2f16 LB |
6830 | |
6831 | trace_btrfs_get_extent_show_fi_inline(inode, leaf, item, | |
6832 | path->slots[0], | |
6833 | extent_start); | |
9036c102 | 6834 | } |
25a50341 | 6835 | next: |
9036c102 YZ |
6836 | if (start >= extent_end) { |
6837 | path->slots[0]++; | |
6838 | if (path->slots[0] >= btrfs_header_nritems(leaf)) { | |
6839 | ret = btrfs_next_leaf(root, path); | |
6840 | if (ret < 0) { | |
6841 | err = ret; | |
6842 | goto out; | |
a52d9a80 | 6843 | } |
9036c102 YZ |
6844 | if (ret > 0) |
6845 | goto not_found; | |
6846 | leaf = path->nodes[0]; | |
a52d9a80 | 6847 | } |
9036c102 YZ |
6848 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
6849 | if (found_key.objectid != objectid || | |
6850 | found_key.type != BTRFS_EXTENT_DATA_KEY) | |
6851 | goto not_found; | |
6852 | if (start + len <= found_key.offset) | |
6853 | goto not_found; | |
e2eca69d WS |
6854 | if (start > found_key.offset) |
6855 | goto next; | |
9036c102 | 6856 | em->start = start; |
70c8a91c | 6857 | em->orig_start = start; |
9036c102 YZ |
6858 | em->len = found_key.offset - start; |
6859 | goto not_found_em; | |
6860 | } | |
6861 | ||
fc4f21b1 | 6862 | btrfs_extent_item_to_extent_map(inode, path, item, |
9cdc5124 | 6863 | new_inline, em); |
7ffbb598 | 6864 | |
d899e052 YZ |
6865 | if (found_type == BTRFS_FILE_EXTENT_REG || |
6866 | found_type == BTRFS_FILE_EXTENT_PREALLOC) { | |
a52d9a80 CM |
6867 | goto insert; |
6868 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { | |
5f39d397 | 6869 | unsigned long ptr; |
a52d9a80 | 6870 | char *map; |
3326d1b0 CM |
6871 | size_t size; |
6872 | size_t extent_offset; | |
6873 | size_t copy_size; | |
a52d9a80 | 6874 | |
7ffbb598 | 6875 | if (new_inline) |
689f9346 | 6876 | goto out; |
5f39d397 | 6877 | |
e41ca589 | 6878 | size = btrfs_file_extent_ram_bytes(leaf, item); |
9036c102 | 6879 | extent_offset = page_offset(page) + pg_offset - extent_start; |
09cbfeaf KS |
6880 | copy_size = min_t(u64, PAGE_SIZE - pg_offset, |
6881 | size - extent_offset); | |
3326d1b0 | 6882 | em->start = extent_start + extent_offset; |
0b246afa | 6883 | em->len = ALIGN(copy_size, fs_info->sectorsize); |
b4939680 | 6884 | em->orig_block_len = em->len; |
70c8a91c | 6885 | em->orig_start = em->start; |
689f9346 | 6886 | ptr = btrfs_file_extent_inline_start(item) + extent_offset; |
e49aabd9 LB |
6887 | |
6888 | btrfs_set_path_blocking(path); | |
bf46f52d | 6889 | if (!PageUptodate(page)) { |
261507a0 LZ |
6890 | if (btrfs_file_extent_compression(leaf, item) != |
6891 | BTRFS_COMPRESS_NONE) { | |
e40da0e5 | 6892 | ret = uncompress_inline(path, page, pg_offset, |
c8b97818 | 6893 | extent_offset, item); |
166ae5a4 ZB |
6894 | if (ret) { |
6895 | err = ret; | |
6896 | goto out; | |
6897 | } | |
c8b97818 CM |
6898 | } else { |
6899 | map = kmap(page); | |
6900 | read_extent_buffer(leaf, map + pg_offset, ptr, | |
6901 | copy_size); | |
09cbfeaf | 6902 | if (pg_offset + copy_size < PAGE_SIZE) { |
93c82d57 | 6903 | memset(map + pg_offset + copy_size, 0, |
09cbfeaf | 6904 | PAGE_SIZE - pg_offset - |
93c82d57 CM |
6905 | copy_size); |
6906 | } | |
c8b97818 CM |
6907 | kunmap(page); |
6908 | } | |
179e29e4 | 6909 | flush_dcache_page(page); |
a52d9a80 | 6910 | } |
d1310b2e | 6911 | set_extent_uptodate(io_tree, em->start, |
507903b8 | 6912 | extent_map_end(em) - 1, NULL, GFP_NOFS); |
a52d9a80 | 6913 | goto insert; |
a52d9a80 CM |
6914 | } |
6915 | not_found: | |
6916 | em->start = start; | |
70c8a91c | 6917 | em->orig_start = start; |
d1310b2e | 6918 | em->len = len; |
a52d9a80 | 6919 | not_found_em: |
5f39d397 | 6920 | em->block_start = EXTENT_MAP_HOLE; |
a52d9a80 | 6921 | insert: |
b3b4aa74 | 6922 | btrfs_release_path(path); |
d1310b2e | 6923 | if (em->start > start || extent_map_end(em) <= start) { |
0b246afa | 6924 | btrfs_err(fs_info, |
5d163e0e JM |
6925 | "bad extent! em: [%llu %llu] passed [%llu %llu]", |
6926 | em->start, em->len, start, len); | |
a52d9a80 CM |
6927 | err = -EIO; |
6928 | goto out; | |
6929 | } | |
d1310b2e CM |
6930 | |
6931 | err = 0; | |
890871be | 6932 | write_lock(&em_tree->lock); |
f46b24c9 | 6933 | err = btrfs_add_extent_mapping(fs_info, em_tree, &em, start, len); |
890871be | 6934 | write_unlock(&em_tree->lock); |
a52d9a80 | 6935 | out: |
c6414280 | 6936 | btrfs_free_path(path); |
1abe9b8a | 6937 | |
fc4f21b1 | 6938 | trace_btrfs_get_extent(root, inode, em); |
1abe9b8a | 6939 | |
a52d9a80 CM |
6940 | if (err) { |
6941 | free_extent_map(em); | |
a52d9a80 CM |
6942 | return ERR_PTR(err); |
6943 | } | |
79787eaa | 6944 | BUG_ON(!em); /* Error is always set */ |
a52d9a80 CM |
6945 | return em; |
6946 | } | |
6947 | ||
fc4f21b1 NB |
6948 | struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode, |
6949 | struct page *page, | |
6950 | size_t pg_offset, u64 start, u64 len, | |
6951 | int create) | |
ec29ed5b CM |
6952 | { |
6953 | struct extent_map *em; | |
6954 | struct extent_map *hole_em = NULL; | |
6955 | u64 range_start = start; | |
6956 | u64 end; | |
6957 | u64 found; | |
6958 | u64 found_end; | |
6959 | int err = 0; | |
6960 | ||
6961 | em = btrfs_get_extent(inode, page, pg_offset, start, len, create); | |
6962 | if (IS_ERR(em)) | |
6963 | return em; | |
9986277e DC |
6964 | /* |
6965 | * If our em maps to: | |
6966 | * - a hole or | |
6967 | * - a pre-alloc extent, | |
6968 | * there might actually be delalloc bytes behind it. | |
6969 | */ | |
6970 | if (em->block_start != EXTENT_MAP_HOLE && | |
6971 | !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) | |
6972 | return em; | |
6973 | else | |
6974 | hole_em = em; | |
ec29ed5b CM |
6975 | |
6976 | /* check to see if we've wrapped (len == -1 or similar) */ | |
6977 | end = start + len; | |
6978 | if (end < start) | |
6979 | end = (u64)-1; | |
6980 | else | |
6981 | end -= 1; | |
6982 | ||
6983 | em = NULL; | |
6984 | ||
6985 | /* ok, we didn't find anything, lets look for delalloc */ | |
fc4f21b1 | 6986 | found = count_range_bits(&inode->io_tree, &range_start, |
ec29ed5b CM |
6987 | end, len, EXTENT_DELALLOC, 1); |
6988 | found_end = range_start + found; | |
6989 | if (found_end < range_start) | |
6990 | found_end = (u64)-1; | |
6991 | ||
6992 | /* | |
6993 | * we didn't find anything useful, return | |
6994 | * the original results from get_extent() | |
6995 | */ | |
6996 | if (range_start > end || found_end <= start) { | |
6997 | em = hole_em; | |
6998 | hole_em = NULL; | |
6999 | goto out; | |
7000 | } | |
7001 | ||
7002 | /* adjust the range_start to make sure it doesn't | |
7003 | * go backwards from the start they passed in | |
7004 | */ | |
67871254 | 7005 | range_start = max(start, range_start); |
ec29ed5b CM |
7006 | found = found_end - range_start; |
7007 | ||
7008 | if (found > 0) { | |
7009 | u64 hole_start = start; | |
7010 | u64 hole_len = len; | |
7011 | ||
172ddd60 | 7012 | em = alloc_extent_map(); |
ec29ed5b CM |
7013 | if (!em) { |
7014 | err = -ENOMEM; | |
7015 | goto out; | |
7016 | } | |
7017 | /* | |
7018 | * when btrfs_get_extent can't find anything it | |
7019 | * returns one huge hole | |
7020 | * | |
7021 | * make sure what it found really fits our range, and | |
7022 | * adjust to make sure it is based on the start from | |
7023 | * the caller | |
7024 | */ | |
7025 | if (hole_em) { | |
7026 | u64 calc_end = extent_map_end(hole_em); | |
7027 | ||
7028 | if (calc_end <= start || (hole_em->start > end)) { | |
7029 | free_extent_map(hole_em); | |
7030 | hole_em = NULL; | |
7031 | } else { | |
7032 | hole_start = max(hole_em->start, start); | |
7033 | hole_len = calc_end - hole_start; | |
7034 | } | |
7035 | } | |
7036 | em->bdev = NULL; | |
7037 | if (hole_em && range_start > hole_start) { | |
7038 | /* our hole starts before our delalloc, so we | |
7039 | * have to return just the parts of the hole | |
7040 | * that go until the delalloc starts | |
7041 | */ | |
7042 | em->len = min(hole_len, | |
7043 | range_start - hole_start); | |
7044 | em->start = hole_start; | |
7045 | em->orig_start = hole_start; | |
7046 | /* | |
7047 | * don't adjust block start at all, | |
7048 | * it is fixed at EXTENT_MAP_HOLE | |
7049 | */ | |
7050 | em->block_start = hole_em->block_start; | |
7051 | em->block_len = hole_len; | |
f9e4fb53 LB |
7052 | if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags)) |
7053 | set_bit(EXTENT_FLAG_PREALLOC, &em->flags); | |
ec29ed5b CM |
7054 | } else { |
7055 | em->start = range_start; | |
7056 | em->len = found; | |
7057 | em->orig_start = range_start; | |
7058 | em->block_start = EXTENT_MAP_DELALLOC; | |
7059 | em->block_len = found; | |
7060 | } | |
bf8d32b9 | 7061 | } else { |
ec29ed5b CM |
7062 | return hole_em; |
7063 | } | |
7064 | out: | |
7065 | ||
7066 | free_extent_map(hole_em); | |
7067 | if (err) { | |
7068 | free_extent_map(em); | |
7069 | return ERR_PTR(err); | |
7070 | } | |
7071 | return em; | |
7072 | } | |
7073 | ||
5f9a8a51 FM |
7074 | static struct extent_map *btrfs_create_dio_extent(struct inode *inode, |
7075 | const u64 start, | |
7076 | const u64 len, | |
7077 | const u64 orig_start, | |
7078 | const u64 block_start, | |
7079 | const u64 block_len, | |
7080 | const u64 orig_block_len, | |
7081 | const u64 ram_bytes, | |
7082 | const int type) | |
7083 | { | |
7084 | struct extent_map *em = NULL; | |
7085 | int ret; | |
7086 | ||
5f9a8a51 | 7087 | if (type != BTRFS_ORDERED_NOCOW) { |
6f9994db LB |
7088 | em = create_io_em(inode, start, len, orig_start, |
7089 | block_start, block_len, orig_block_len, | |
7090 | ram_bytes, | |
7091 | BTRFS_COMPRESS_NONE, /* compress_type */ | |
7092 | type); | |
5f9a8a51 FM |
7093 | if (IS_ERR(em)) |
7094 | goto out; | |
7095 | } | |
7096 | ret = btrfs_add_ordered_extent_dio(inode, start, block_start, | |
7097 | len, block_len, type); | |
7098 | if (ret) { | |
7099 | if (em) { | |
7100 | free_extent_map(em); | |
dcdbc059 | 7101 | btrfs_drop_extent_cache(BTRFS_I(inode), start, |
5f9a8a51 FM |
7102 | start + len - 1, 0); |
7103 | } | |
7104 | em = ERR_PTR(ret); | |
7105 | } | |
7106 | out: | |
5f9a8a51 FM |
7107 | |
7108 | return em; | |
7109 | } | |
7110 | ||
4b46fce2 JB |
7111 | static struct extent_map *btrfs_new_extent_direct(struct inode *inode, |
7112 | u64 start, u64 len) | |
7113 | { | |
0b246afa | 7114 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
4b46fce2 | 7115 | struct btrfs_root *root = BTRFS_I(inode)->root; |
70c8a91c | 7116 | struct extent_map *em; |
4b46fce2 JB |
7117 | struct btrfs_key ins; |
7118 | u64 alloc_hint; | |
7119 | int ret; | |
4b46fce2 | 7120 | |
4b46fce2 | 7121 | alloc_hint = get_extent_allocation_hint(inode, start, len); |
0b246afa | 7122 | ret = btrfs_reserve_extent(root, len, len, fs_info->sectorsize, |
da17066c | 7123 | 0, alloc_hint, &ins, 1, 1); |
00361589 JB |
7124 | if (ret) |
7125 | return ERR_PTR(ret); | |
4b46fce2 | 7126 | |
5f9a8a51 FM |
7127 | em = btrfs_create_dio_extent(inode, start, ins.offset, start, |
7128 | ins.objectid, ins.offset, ins.offset, | |
6288d6ea | 7129 | ins.offset, BTRFS_ORDERED_REGULAR); |
0b246afa | 7130 | btrfs_dec_block_group_reservations(fs_info, ins.objectid); |
5f9a8a51 | 7131 | if (IS_ERR(em)) |
2ff7e61e JM |
7132 | btrfs_free_reserved_extent(fs_info, ins.objectid, |
7133 | ins.offset, 1); | |
de0ee0ed | 7134 | |
4b46fce2 JB |
7135 | return em; |
7136 | } | |
7137 | ||
46bfbb5c CM |
7138 | /* |
7139 | * returns 1 when the nocow is safe, < 1 on error, 0 if the | |
7140 | * block must be cow'd | |
7141 | */ | |
00361589 | 7142 | noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len, |
7ee9e440 JB |
7143 | u64 *orig_start, u64 *orig_block_len, |
7144 | u64 *ram_bytes) | |
46bfbb5c | 7145 | { |
2ff7e61e | 7146 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
46bfbb5c CM |
7147 | struct btrfs_path *path; |
7148 | int ret; | |
7149 | struct extent_buffer *leaf; | |
7150 | struct btrfs_root *root = BTRFS_I(inode)->root; | |
7b2b7085 | 7151 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
46bfbb5c CM |
7152 | struct btrfs_file_extent_item *fi; |
7153 | struct btrfs_key key; | |
7154 | u64 disk_bytenr; | |
7155 | u64 backref_offset; | |
7156 | u64 extent_end; | |
7157 | u64 num_bytes; | |
7158 | int slot; | |
7159 | int found_type; | |
7ee9e440 | 7160 | bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW); |
e77751aa | 7161 | |
46bfbb5c CM |
7162 | path = btrfs_alloc_path(); |
7163 | if (!path) | |
7164 | return -ENOMEM; | |
7165 | ||
f85b7379 DS |
7166 | ret = btrfs_lookup_file_extent(NULL, root, path, |
7167 | btrfs_ino(BTRFS_I(inode)), offset, 0); | |
46bfbb5c CM |
7168 | if (ret < 0) |
7169 | goto out; | |
7170 | ||
7171 | slot = path->slots[0]; | |
7172 | if (ret == 1) { | |
7173 | if (slot == 0) { | |
7174 | /* can't find the item, must cow */ | |
7175 | ret = 0; | |
7176 | goto out; | |
7177 | } | |
7178 | slot--; | |
7179 | } | |
7180 | ret = 0; | |
7181 | leaf = path->nodes[0]; | |
7182 | btrfs_item_key_to_cpu(leaf, &key, slot); | |
4a0cc7ca | 7183 | if (key.objectid != btrfs_ino(BTRFS_I(inode)) || |
46bfbb5c CM |
7184 | key.type != BTRFS_EXTENT_DATA_KEY) { |
7185 | /* not our file or wrong item type, must cow */ | |
7186 | goto out; | |
7187 | } | |
7188 | ||
7189 | if (key.offset > offset) { | |
7190 | /* Wrong offset, must cow */ | |
7191 | goto out; | |
7192 | } | |
7193 | ||
7194 | fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item); | |
7195 | found_type = btrfs_file_extent_type(leaf, fi); | |
7196 | if (found_type != BTRFS_FILE_EXTENT_REG && | |
7197 | found_type != BTRFS_FILE_EXTENT_PREALLOC) { | |
7198 | /* not a regular extent, must cow */ | |
7199 | goto out; | |
7200 | } | |
7ee9e440 JB |
7201 | |
7202 | if (!nocow && found_type == BTRFS_FILE_EXTENT_REG) | |
7203 | goto out; | |
7204 | ||
e77751aa MX |
7205 | extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi); |
7206 | if (extent_end <= offset) | |
7207 | goto out; | |
7208 | ||
46bfbb5c | 7209 | disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi); |
7ee9e440 JB |
7210 | if (disk_bytenr == 0) |
7211 | goto out; | |
7212 | ||
7213 | if (btrfs_file_extent_compression(leaf, fi) || | |
7214 | btrfs_file_extent_encryption(leaf, fi) || | |
7215 | btrfs_file_extent_other_encoding(leaf, fi)) | |
7216 | goto out; | |
7217 | ||
78d4295b EL |
7218 | /* |
7219 | * Do the same check as in btrfs_cross_ref_exist but without the | |
7220 | * unnecessary search. | |
7221 | */ | |
7222 | if (btrfs_file_extent_generation(leaf, fi) <= | |
7223 | btrfs_root_last_snapshot(&root->root_item)) | |
7224 | goto out; | |
7225 | ||
46bfbb5c CM |
7226 | backref_offset = btrfs_file_extent_offset(leaf, fi); |
7227 | ||
7ee9e440 JB |
7228 | if (orig_start) { |
7229 | *orig_start = key.offset - backref_offset; | |
7230 | *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi); | |
7231 | *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi); | |
7232 | } | |
eb384b55 | 7233 | |
2ff7e61e | 7234 | if (btrfs_extent_readonly(fs_info, disk_bytenr)) |
46bfbb5c | 7235 | goto out; |
7b2b7085 MX |
7236 | |
7237 | num_bytes = min(offset + *len, extent_end) - offset; | |
7238 | if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) { | |
7239 | u64 range_end; | |
7240 | ||
da17066c JM |
7241 | range_end = round_up(offset + num_bytes, |
7242 | root->fs_info->sectorsize) - 1; | |
7b2b7085 MX |
7243 | ret = test_range_bit(io_tree, offset, range_end, |
7244 | EXTENT_DELALLOC, 0, NULL); | |
7245 | if (ret) { | |
7246 | ret = -EAGAIN; | |
7247 | goto out; | |
7248 | } | |
7249 | } | |
7250 | ||
1bda19eb | 7251 | btrfs_release_path(path); |
46bfbb5c CM |
7252 | |
7253 | /* | |
7254 | * look for other files referencing this extent, if we | |
7255 | * find any we must cow | |
7256 | */ | |
00361589 | 7257 | |
e4c3b2dc | 7258 | ret = btrfs_cross_ref_exist(root, btrfs_ino(BTRFS_I(inode)), |
00361589 | 7259 | key.offset - backref_offset, disk_bytenr); |
00361589 JB |
7260 | if (ret) { |
7261 | ret = 0; | |
7262 | goto out; | |
7263 | } | |
46bfbb5c CM |
7264 | |
7265 | /* | |
7266 | * adjust disk_bytenr and num_bytes to cover just the bytes | |
7267 | * in this extent we are about to write. If there | |
7268 | * are any csums in that range we have to cow in order | |
7269 | * to keep the csums correct | |
7270 | */ | |
7271 | disk_bytenr += backref_offset; | |
7272 | disk_bytenr += offset - key.offset; | |
2ff7e61e JM |
7273 | if (csum_exist_in_range(fs_info, disk_bytenr, num_bytes)) |
7274 | goto out; | |
46bfbb5c CM |
7275 | /* |
7276 | * all of the above have passed, it is safe to overwrite this extent | |
7277 | * without cow | |
7278 | */ | |
eb384b55 | 7279 | *len = num_bytes; |
46bfbb5c CM |
7280 | ret = 1; |
7281 | out: | |
7282 | btrfs_free_path(path); | |
7283 | return ret; | |
7284 | } | |
7285 | ||
eb838e73 JB |
7286 | static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend, |
7287 | struct extent_state **cached_state, int writing) | |
7288 | { | |
7289 | struct btrfs_ordered_extent *ordered; | |
7290 | int ret = 0; | |
7291 | ||
7292 | while (1) { | |
7293 | lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend, | |
ff13db41 | 7294 | cached_state); |
eb838e73 JB |
7295 | /* |
7296 | * We're concerned with the entire range that we're going to be | |
01327610 | 7297 | * doing DIO to, so we need to make sure there's no ordered |
eb838e73 JB |
7298 | * extents in this range. |
7299 | */ | |
a776c6fa | 7300 | ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), lockstart, |
eb838e73 JB |
7301 | lockend - lockstart + 1); |
7302 | ||
7303 | /* | |
7304 | * We need to make sure there are no buffered pages in this | |
7305 | * range either, we could have raced between the invalidate in | |
7306 | * generic_file_direct_write and locking the extent. The | |
7307 | * invalidate needs to happen so that reads after a write do not | |
7308 | * get stale data. | |
7309 | */ | |
fc4adbff | 7310 | if (!ordered && |
051c98eb DS |
7311 | (!writing || !filemap_range_has_page(inode->i_mapping, |
7312 | lockstart, lockend))) | |
eb838e73 JB |
7313 | break; |
7314 | ||
7315 | unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend, | |
e43bbe5e | 7316 | cached_state); |
eb838e73 JB |
7317 | |
7318 | if (ordered) { | |
ade77029 FM |
7319 | /* |
7320 | * If we are doing a DIO read and the ordered extent we | |
7321 | * found is for a buffered write, we can not wait for it | |
7322 | * to complete and retry, because if we do so we can | |
7323 | * deadlock with concurrent buffered writes on page | |
7324 | * locks. This happens only if our DIO read covers more | |
7325 | * than one extent map, if at this point has already | |
7326 | * created an ordered extent for a previous extent map | |
7327 | * and locked its range in the inode's io tree, and a | |
7328 | * concurrent write against that previous extent map's | |
7329 | * range and this range started (we unlock the ranges | |
7330 | * in the io tree only when the bios complete and | |
7331 | * buffered writes always lock pages before attempting | |
7332 | * to lock range in the io tree). | |
7333 | */ | |
7334 | if (writing || | |
7335 | test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags)) | |
7336 | btrfs_start_ordered_extent(inode, ordered, 1); | |
7337 | else | |
7338 | ret = -ENOTBLK; | |
eb838e73 JB |
7339 | btrfs_put_ordered_extent(ordered); |
7340 | } else { | |
eb838e73 | 7341 | /* |
b850ae14 FM |
7342 | * We could trigger writeback for this range (and wait |
7343 | * for it to complete) and then invalidate the pages for | |
7344 | * this range (through invalidate_inode_pages2_range()), | |
7345 | * but that can lead us to a deadlock with a concurrent | |
7346 | * call to readpages() (a buffered read or a defrag call | |
7347 | * triggered a readahead) on a page lock due to an | |
7348 | * ordered dio extent we created before but did not have | |
7349 | * yet a corresponding bio submitted (whence it can not | |
7350 | * complete), which makes readpages() wait for that | |
7351 | * ordered extent to complete while holding a lock on | |
7352 | * that page. | |
eb838e73 | 7353 | */ |
b850ae14 | 7354 | ret = -ENOTBLK; |
eb838e73 JB |
7355 | } |
7356 | ||
ade77029 FM |
7357 | if (ret) |
7358 | break; | |
7359 | ||
eb838e73 JB |
7360 | cond_resched(); |
7361 | } | |
7362 | ||
7363 | return ret; | |
7364 | } | |
7365 | ||
6f9994db LB |
7366 | /* The callers of this must take lock_extent() */ |
7367 | static struct extent_map *create_io_em(struct inode *inode, u64 start, u64 len, | |
7368 | u64 orig_start, u64 block_start, | |
7369 | u64 block_len, u64 orig_block_len, | |
7370 | u64 ram_bytes, int compress_type, | |
7371 | int type) | |
69ffb543 JB |
7372 | { |
7373 | struct extent_map_tree *em_tree; | |
7374 | struct extent_map *em; | |
7375 | struct btrfs_root *root = BTRFS_I(inode)->root; | |
7376 | int ret; | |
7377 | ||
6f9994db LB |
7378 | ASSERT(type == BTRFS_ORDERED_PREALLOC || |
7379 | type == BTRFS_ORDERED_COMPRESSED || | |
7380 | type == BTRFS_ORDERED_NOCOW || | |
1af4a0aa | 7381 | type == BTRFS_ORDERED_REGULAR); |
6f9994db | 7382 | |
69ffb543 JB |
7383 | em_tree = &BTRFS_I(inode)->extent_tree; |
7384 | em = alloc_extent_map(); | |
7385 | if (!em) | |
7386 | return ERR_PTR(-ENOMEM); | |
7387 | ||
7388 | em->start = start; | |
7389 | em->orig_start = orig_start; | |
7390 | em->len = len; | |
7391 | em->block_len = block_len; | |
7392 | em->block_start = block_start; | |
7393 | em->bdev = root->fs_info->fs_devices->latest_bdev; | |
b4939680 | 7394 | em->orig_block_len = orig_block_len; |
cc95bef6 | 7395 | em->ram_bytes = ram_bytes; |
70c8a91c | 7396 | em->generation = -1; |
69ffb543 | 7397 | set_bit(EXTENT_FLAG_PINNED, &em->flags); |
1af4a0aa | 7398 | if (type == BTRFS_ORDERED_PREALLOC) { |
b11e234d | 7399 | set_bit(EXTENT_FLAG_FILLING, &em->flags); |
1af4a0aa | 7400 | } else if (type == BTRFS_ORDERED_COMPRESSED) { |
6f9994db LB |
7401 | set_bit(EXTENT_FLAG_COMPRESSED, &em->flags); |
7402 | em->compress_type = compress_type; | |
7403 | } | |
69ffb543 JB |
7404 | |
7405 | do { | |
dcdbc059 | 7406 | btrfs_drop_extent_cache(BTRFS_I(inode), em->start, |
69ffb543 JB |
7407 | em->start + em->len - 1, 0); |
7408 | write_lock(&em_tree->lock); | |
09a2a8f9 | 7409 | ret = add_extent_mapping(em_tree, em, 1); |
69ffb543 | 7410 | write_unlock(&em_tree->lock); |
6f9994db LB |
7411 | /* |
7412 | * The caller has taken lock_extent(), who could race with us | |
7413 | * to add em? | |
7414 | */ | |
69ffb543 JB |
7415 | } while (ret == -EEXIST); |
7416 | ||
7417 | if (ret) { | |
7418 | free_extent_map(em); | |
7419 | return ERR_PTR(ret); | |
7420 | } | |
7421 | ||
6f9994db | 7422 | /* em got 2 refs now, callers needs to do free_extent_map once. */ |
69ffb543 JB |
7423 | return em; |
7424 | } | |
7425 | ||
1c8d0175 NB |
7426 | |
7427 | static int btrfs_get_blocks_direct_read(struct extent_map *em, | |
7428 | struct buffer_head *bh_result, | |
7429 | struct inode *inode, | |
7430 | u64 start, u64 len) | |
7431 | { | |
7432 | if (em->block_start == EXTENT_MAP_HOLE || | |
7433 | test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) | |
7434 | return -ENOENT; | |
7435 | ||
7436 | len = min(len, em->len - (start - em->start)); | |
7437 | ||
7438 | bh_result->b_blocknr = (em->block_start + (start - em->start)) >> | |
7439 | inode->i_blkbits; | |
7440 | bh_result->b_size = len; | |
7441 | bh_result->b_bdev = em->bdev; | |
7442 | set_buffer_mapped(bh_result); | |
7443 | ||
7444 | return 0; | |
7445 | } | |
7446 | ||
c5794e51 NB |
7447 | static int btrfs_get_blocks_direct_write(struct extent_map **map, |
7448 | struct buffer_head *bh_result, | |
7449 | struct inode *inode, | |
7450 | struct btrfs_dio_data *dio_data, | |
7451 | u64 start, u64 len) | |
7452 | { | |
7453 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); | |
7454 | struct extent_map *em = *map; | |
7455 | int ret = 0; | |
7456 | ||
7457 | /* | |
7458 | * We don't allocate a new extent in the following cases | |
7459 | * | |
7460 | * 1) The inode is marked as NODATACOW. In this case we'll just use the | |
7461 | * existing extent. | |
7462 | * 2) The extent is marked as PREALLOC. We're good to go here and can | |
7463 | * just use the extent. | |
7464 | * | |
7465 | */ | |
7466 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) || | |
7467 | ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) && | |
7468 | em->block_start != EXTENT_MAP_HOLE)) { | |
7469 | int type; | |
7470 | u64 block_start, orig_start, orig_block_len, ram_bytes; | |
7471 | ||
7472 | if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) | |
7473 | type = BTRFS_ORDERED_PREALLOC; | |
7474 | else | |
7475 | type = BTRFS_ORDERED_NOCOW; | |
7476 | len = min(len, em->len - (start - em->start)); | |
7477 | block_start = em->block_start + (start - em->start); | |
7478 | ||
7479 | if (can_nocow_extent(inode, start, &len, &orig_start, | |
7480 | &orig_block_len, &ram_bytes) == 1 && | |
7481 | btrfs_inc_nocow_writers(fs_info, block_start)) { | |
7482 | struct extent_map *em2; | |
7483 | ||
7484 | em2 = btrfs_create_dio_extent(inode, start, len, | |
7485 | orig_start, block_start, | |
7486 | len, orig_block_len, | |
7487 | ram_bytes, type); | |
7488 | btrfs_dec_nocow_writers(fs_info, block_start); | |
7489 | if (type == BTRFS_ORDERED_PREALLOC) { | |
7490 | free_extent_map(em); | |
7491 | *map = em = em2; | |
7492 | } | |
7493 | ||
7494 | if (em2 && IS_ERR(em2)) { | |
7495 | ret = PTR_ERR(em2); | |
7496 | goto out; | |
7497 | } | |
7498 | /* | |
7499 | * For inode marked NODATACOW or extent marked PREALLOC, | |
7500 | * use the existing or preallocated extent, so does not | |
7501 | * need to adjust btrfs_space_info's bytes_may_use. | |
7502 | */ | |
7503 | btrfs_free_reserved_data_space_noquota(inode, start, | |
7504 | len); | |
7505 | goto skip_cow; | |
7506 | } | |
7507 | } | |
7508 | ||
7509 | /* this will cow the extent */ | |
7510 | len = bh_result->b_size; | |
7511 | free_extent_map(em); | |
7512 | *map = em = btrfs_new_extent_direct(inode, start, len); | |
7513 | if (IS_ERR(em)) { | |
7514 | ret = PTR_ERR(em); | |
7515 | goto out; | |
7516 | } | |
7517 | ||
7518 | len = min(len, em->len - (start - em->start)); | |
7519 | ||
7520 | skip_cow: | |
7521 | bh_result->b_blocknr = (em->block_start + (start - em->start)) >> | |
7522 | inode->i_blkbits; | |
7523 | bh_result->b_size = len; | |
7524 | bh_result->b_bdev = em->bdev; | |
7525 | set_buffer_mapped(bh_result); | |
7526 | ||
7527 | if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) | |
7528 | set_buffer_new(bh_result); | |
7529 | ||
7530 | /* | |
7531 | * Need to update the i_size under the extent lock so buffered | |
7532 | * readers will get the updated i_size when we unlock. | |
7533 | */ | |
7534 | if (!dio_data->overwrite && start + len > i_size_read(inode)) | |
7535 | i_size_write(inode, start + len); | |
7536 | ||
7537 | WARN_ON(dio_data->reserve < len); | |
7538 | dio_data->reserve -= len; | |
7539 | dio_data->unsubmitted_oe_range_end = start + len; | |
7540 | current->journal_info = dio_data; | |
7541 | out: | |
7542 | return ret; | |
7543 | } | |
7544 | ||
4b46fce2 JB |
7545 | static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock, |
7546 | struct buffer_head *bh_result, int create) | |
7547 | { | |
0b246afa | 7548 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
4b46fce2 | 7549 | struct extent_map *em; |
eb838e73 | 7550 | struct extent_state *cached_state = NULL; |
50745b0a | 7551 | struct btrfs_dio_data *dio_data = NULL; |
4b46fce2 | 7552 | u64 start = iblock << inode->i_blkbits; |
eb838e73 | 7553 | u64 lockstart, lockend; |
4b46fce2 | 7554 | u64 len = bh_result->b_size; |
eb838e73 | 7555 | int unlock_bits = EXTENT_LOCKED; |
0934856d | 7556 | int ret = 0; |
eb838e73 | 7557 | |
172a5049 | 7558 | if (create) |
3266789f | 7559 | unlock_bits |= EXTENT_DIRTY; |
172a5049 | 7560 | else |
0b246afa | 7561 | len = min_t(u64, len, fs_info->sectorsize); |
eb838e73 | 7562 | |
c329861d JB |
7563 | lockstart = start; |
7564 | lockend = start + len - 1; | |
7565 | ||
e1cbbfa5 JB |
7566 | if (current->journal_info) { |
7567 | /* | |
7568 | * Need to pull our outstanding extents and set journal_info to NULL so | |
01327610 | 7569 | * that anything that needs to check if there's a transaction doesn't get |
e1cbbfa5 JB |
7570 | * confused. |
7571 | */ | |
50745b0a | 7572 | dio_data = current->journal_info; |
e1cbbfa5 JB |
7573 | current->journal_info = NULL; |
7574 | } | |
7575 | ||
eb838e73 JB |
7576 | /* |
7577 | * If this errors out it's because we couldn't invalidate pagecache for | |
7578 | * this range and we need to fallback to buffered. | |
7579 | */ | |
9c9464cc FM |
7580 | if (lock_extent_direct(inode, lockstart, lockend, &cached_state, |
7581 | create)) { | |
7582 | ret = -ENOTBLK; | |
7583 | goto err; | |
7584 | } | |
eb838e73 | 7585 | |
fc4f21b1 | 7586 | em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0); |
eb838e73 JB |
7587 | if (IS_ERR(em)) { |
7588 | ret = PTR_ERR(em); | |
7589 | goto unlock_err; | |
7590 | } | |
4b46fce2 JB |
7591 | |
7592 | /* | |
7593 | * Ok for INLINE and COMPRESSED extents we need to fallback on buffered | |
7594 | * io. INLINE is special, and we could probably kludge it in here, but | |
7595 | * it's still buffered so for safety lets just fall back to the generic | |
7596 | * buffered path. | |
7597 | * | |
7598 | * For COMPRESSED we _have_ to read the entire extent in so we can | |
7599 | * decompress it, so there will be buffering required no matter what we | |
7600 | * do, so go ahead and fallback to buffered. | |
7601 | * | |
01327610 | 7602 | * We return -ENOTBLK because that's what makes DIO go ahead and go back |
4b46fce2 JB |
7603 | * to buffered IO. Don't blame me, this is the price we pay for using |
7604 | * the generic code. | |
7605 | */ | |
7606 | if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) || | |
7607 | em->block_start == EXTENT_MAP_INLINE) { | |
7608 | free_extent_map(em); | |
eb838e73 JB |
7609 | ret = -ENOTBLK; |
7610 | goto unlock_err; | |
4b46fce2 JB |
7611 | } |
7612 | ||
c5794e51 NB |
7613 | if (create) { |
7614 | ret = btrfs_get_blocks_direct_write(&em, bh_result, inode, | |
7615 | dio_data, start, len); | |
7616 | if (ret < 0) | |
7617 | goto unlock_err; | |
7618 | ||
7619 | /* clear and unlock the entire range */ | |
7620 | clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend, | |
7621 | unlock_bits, 1, 0, &cached_state); | |
7622 | } else { | |
1c8d0175 NB |
7623 | ret = btrfs_get_blocks_direct_read(em, bh_result, inode, |
7624 | start, len); | |
7625 | /* Can be negative only if we read from a hole */ | |
7626 | if (ret < 0) { | |
7627 | ret = 0; | |
7628 | free_extent_map(em); | |
7629 | goto unlock_err; | |
7630 | } | |
7631 | /* | |
7632 | * We need to unlock only the end area that we aren't using. | |
7633 | * The rest is going to be unlocked by the endio routine. | |
7634 | */ | |
7635 | lockstart = start + bh_result->b_size; | |
7636 | if (lockstart < lockend) { | |
7637 | clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, | |
7638 | lockend, unlock_bits, 1, 0, | |
7639 | &cached_state); | |
7640 | } else { | |
7641 | free_extent_state(cached_state); | |
7642 | } | |
4b46fce2 JB |
7643 | } |
7644 | ||
4b46fce2 JB |
7645 | free_extent_map(em); |
7646 | ||
7647 | return 0; | |
eb838e73 JB |
7648 | |
7649 | unlock_err: | |
eb838e73 | 7650 | clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend, |
ae0f1625 | 7651 | unlock_bits, 1, 0, &cached_state); |
9c9464cc | 7652 | err: |
50745b0a | 7653 | if (dio_data) |
7654 | current->journal_info = dio_data; | |
eb838e73 | 7655 | return ret; |
4b46fce2 JB |
7656 | } |
7657 | ||
58efbc9f OS |
7658 | static inline blk_status_t submit_dio_repair_bio(struct inode *inode, |
7659 | struct bio *bio, | |
7660 | int mirror_num) | |
8b110e39 | 7661 | { |
2ff7e61e | 7662 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
58efbc9f | 7663 | blk_status_t ret; |
8b110e39 | 7664 | |
37226b21 | 7665 | BUG_ON(bio_op(bio) == REQ_OP_WRITE); |
8b110e39 | 7666 | |
2ff7e61e | 7667 | ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DIO_REPAIR); |
8b110e39 | 7668 | if (ret) |
ea057f6d | 7669 | return ret; |
8b110e39 | 7670 | |
2ff7e61e | 7671 | ret = btrfs_map_bio(fs_info, bio, mirror_num, 0); |
ea057f6d | 7672 | |
8b110e39 MX |
7673 | return ret; |
7674 | } | |
7675 | ||
7676 | static int btrfs_check_dio_repairable(struct inode *inode, | |
7677 | struct bio *failed_bio, | |
7678 | struct io_failure_record *failrec, | |
7679 | int failed_mirror) | |
7680 | { | |
ab8d0fc4 | 7681 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
8b110e39 MX |
7682 | int num_copies; |
7683 | ||
ab8d0fc4 | 7684 | num_copies = btrfs_num_copies(fs_info, failrec->logical, failrec->len); |
8b110e39 MX |
7685 | if (num_copies == 1) { |
7686 | /* | |
7687 | * we only have a single copy of the data, so don't bother with | |
7688 | * all the retry and error correction code that follows. no | |
7689 | * matter what the error is, it is very likely to persist. | |
7690 | */ | |
ab8d0fc4 JM |
7691 | btrfs_debug(fs_info, |
7692 | "Check DIO Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d", | |
7693 | num_copies, failrec->this_mirror, failed_mirror); | |
8b110e39 MX |
7694 | return 0; |
7695 | } | |
7696 | ||
7697 | failrec->failed_mirror = failed_mirror; | |
7698 | failrec->this_mirror++; | |
7699 | if (failrec->this_mirror == failed_mirror) | |
7700 | failrec->this_mirror++; | |
7701 | ||
7702 | if (failrec->this_mirror > num_copies) { | |
ab8d0fc4 JM |
7703 | btrfs_debug(fs_info, |
7704 | "Check DIO Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d", | |
7705 | num_copies, failrec->this_mirror, failed_mirror); | |
8b110e39 MX |
7706 | return 0; |
7707 | } | |
7708 | ||
7709 | return 1; | |
7710 | } | |
7711 | ||
58efbc9f OS |
7712 | static blk_status_t dio_read_error(struct inode *inode, struct bio *failed_bio, |
7713 | struct page *page, unsigned int pgoff, | |
7714 | u64 start, u64 end, int failed_mirror, | |
7715 | bio_end_io_t *repair_endio, void *repair_arg) | |
8b110e39 MX |
7716 | { |
7717 | struct io_failure_record *failrec; | |
7870d082 JB |
7718 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
7719 | struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree; | |
8b110e39 MX |
7720 | struct bio *bio; |
7721 | int isector; | |
f1c77c55 | 7722 | unsigned int read_mode = 0; |
17347cec | 7723 | int segs; |
8b110e39 | 7724 | int ret; |
58efbc9f | 7725 | blk_status_t status; |
c16a8ac3 | 7726 | struct bio_vec bvec; |
8b110e39 | 7727 | |
37226b21 | 7728 | BUG_ON(bio_op(failed_bio) == REQ_OP_WRITE); |
8b110e39 MX |
7729 | |
7730 | ret = btrfs_get_io_failure_record(inode, start, end, &failrec); | |
7731 | if (ret) | |
58efbc9f | 7732 | return errno_to_blk_status(ret); |
8b110e39 MX |
7733 | |
7734 | ret = btrfs_check_dio_repairable(inode, failed_bio, failrec, | |
7735 | failed_mirror); | |
7736 | if (!ret) { | |
7870d082 | 7737 | free_io_failure(failure_tree, io_tree, failrec); |
58efbc9f | 7738 | return BLK_STS_IOERR; |
8b110e39 MX |
7739 | } |
7740 | ||
17347cec | 7741 | segs = bio_segments(failed_bio); |
c16a8ac3 | 7742 | bio_get_first_bvec(failed_bio, &bvec); |
17347cec | 7743 | if (segs > 1 || |
c16a8ac3 | 7744 | (bvec.bv_len > btrfs_inode_sectorsize(inode))) |
70fd7614 | 7745 | read_mode |= REQ_FAILFAST_DEV; |
8b110e39 MX |
7746 | |
7747 | isector = start - btrfs_io_bio(failed_bio)->logical; | |
7748 | isector >>= inode->i_sb->s_blocksize_bits; | |
7749 | bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page, | |
2dabb324 | 7750 | pgoff, isector, repair_endio, repair_arg); |
ebcc3263 | 7751 | bio->bi_opf = REQ_OP_READ | read_mode; |
8b110e39 MX |
7752 | |
7753 | btrfs_debug(BTRFS_I(inode)->root->fs_info, | |
913e1535 | 7754 | "repair DIO read error: submitting new dio read[%#x] to this_mirror=%d, in_validation=%d", |
8b110e39 MX |
7755 | read_mode, failrec->this_mirror, failrec->in_validation); |
7756 | ||
58efbc9f OS |
7757 | status = submit_dio_repair_bio(inode, bio, failrec->this_mirror); |
7758 | if (status) { | |
7870d082 | 7759 | free_io_failure(failure_tree, io_tree, failrec); |
8b110e39 MX |
7760 | bio_put(bio); |
7761 | } | |
7762 | ||
58efbc9f | 7763 | return status; |
8b110e39 MX |
7764 | } |
7765 | ||
7766 | struct btrfs_retry_complete { | |
7767 | struct completion done; | |
7768 | struct inode *inode; | |
7769 | u64 start; | |
7770 | int uptodate; | |
7771 | }; | |
7772 | ||
4246a0b6 | 7773 | static void btrfs_retry_endio_nocsum(struct bio *bio) |
8b110e39 MX |
7774 | { |
7775 | struct btrfs_retry_complete *done = bio->bi_private; | |
7870d082 | 7776 | struct inode *inode = done->inode; |
8b110e39 | 7777 | struct bio_vec *bvec; |
7870d082 | 7778 | struct extent_io_tree *io_tree, *failure_tree; |
8b110e39 MX |
7779 | int i; |
7780 | ||
4e4cbee9 | 7781 | if (bio->bi_status) |
8b110e39 MX |
7782 | goto end; |
7783 | ||
2dabb324 | 7784 | ASSERT(bio->bi_vcnt == 1); |
7870d082 JB |
7785 | io_tree = &BTRFS_I(inode)->io_tree; |
7786 | failure_tree = &BTRFS_I(inode)->io_failure_tree; | |
263663cd | 7787 | ASSERT(bio_first_bvec_all(bio)->bv_len == btrfs_inode_sectorsize(inode)); |
2dabb324 | 7788 | |
8b110e39 | 7789 | done->uptodate = 1; |
c09abff8 | 7790 | ASSERT(!bio_flagged(bio, BIO_CLONED)); |
8b110e39 | 7791 | bio_for_each_segment_all(bvec, bio, i) |
7870d082 JB |
7792 | clean_io_failure(BTRFS_I(inode)->root->fs_info, failure_tree, |
7793 | io_tree, done->start, bvec->bv_page, | |
7794 | btrfs_ino(BTRFS_I(inode)), 0); | |
8b110e39 MX |
7795 | end: |
7796 | complete(&done->done); | |
7797 | bio_put(bio); | |
7798 | } | |
7799 | ||
58efbc9f OS |
7800 | static blk_status_t __btrfs_correct_data_nocsum(struct inode *inode, |
7801 | struct btrfs_io_bio *io_bio) | |
4b46fce2 | 7802 | { |
2dabb324 | 7803 | struct btrfs_fs_info *fs_info; |
17347cec LB |
7804 | struct bio_vec bvec; |
7805 | struct bvec_iter iter; | |
8b110e39 | 7806 | struct btrfs_retry_complete done; |
4b46fce2 | 7807 | u64 start; |
2dabb324 CR |
7808 | unsigned int pgoff; |
7809 | u32 sectorsize; | |
7810 | int nr_sectors; | |
58efbc9f OS |
7811 | blk_status_t ret; |
7812 | blk_status_t err = BLK_STS_OK; | |
4b46fce2 | 7813 | |
2dabb324 | 7814 | fs_info = BTRFS_I(inode)->root->fs_info; |
da17066c | 7815 | sectorsize = fs_info->sectorsize; |
2dabb324 | 7816 | |
8b110e39 MX |
7817 | start = io_bio->logical; |
7818 | done.inode = inode; | |
17347cec | 7819 | io_bio->bio.bi_iter = io_bio->iter; |
8b110e39 | 7820 | |
17347cec LB |
7821 | bio_for_each_segment(bvec, &io_bio->bio, iter) { |
7822 | nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len); | |
7823 | pgoff = bvec.bv_offset; | |
2dabb324 CR |
7824 | |
7825 | next_block_or_try_again: | |
8b110e39 MX |
7826 | done.uptodate = 0; |
7827 | done.start = start; | |
7828 | init_completion(&done.done); | |
7829 | ||
17347cec | 7830 | ret = dio_read_error(inode, &io_bio->bio, bvec.bv_page, |
2dabb324 CR |
7831 | pgoff, start, start + sectorsize - 1, |
7832 | io_bio->mirror_num, | |
7833 | btrfs_retry_endio_nocsum, &done); | |
629ebf4f LB |
7834 | if (ret) { |
7835 | err = ret; | |
7836 | goto next; | |
7837 | } | |
8b110e39 | 7838 | |
9c17f6cd | 7839 | wait_for_completion_io(&done.done); |
8b110e39 MX |
7840 | |
7841 | if (!done.uptodate) { | |
7842 | /* We might have another mirror, so try again */ | |
2dabb324 | 7843 | goto next_block_or_try_again; |
8b110e39 MX |
7844 | } |
7845 | ||
629ebf4f | 7846 | next: |
2dabb324 CR |
7847 | start += sectorsize; |
7848 | ||
97bf5a55 LB |
7849 | nr_sectors--; |
7850 | if (nr_sectors) { | |
2dabb324 | 7851 | pgoff += sectorsize; |
97bf5a55 | 7852 | ASSERT(pgoff < PAGE_SIZE); |
2dabb324 CR |
7853 | goto next_block_or_try_again; |
7854 | } | |
8b110e39 MX |
7855 | } |
7856 | ||
629ebf4f | 7857 | return err; |
8b110e39 MX |
7858 | } |
7859 | ||
4246a0b6 | 7860 | static void btrfs_retry_endio(struct bio *bio) |
8b110e39 MX |
7861 | { |
7862 | struct btrfs_retry_complete *done = bio->bi_private; | |
7863 | struct btrfs_io_bio *io_bio = btrfs_io_bio(bio); | |
7870d082 JB |
7864 | struct extent_io_tree *io_tree, *failure_tree; |
7865 | struct inode *inode = done->inode; | |
8b110e39 MX |
7866 | struct bio_vec *bvec; |
7867 | int uptodate; | |
7868 | int ret; | |
7869 | int i; | |
7870 | ||
4e4cbee9 | 7871 | if (bio->bi_status) |
8b110e39 MX |
7872 | goto end; |
7873 | ||
7874 | uptodate = 1; | |
2dabb324 | 7875 | |
2dabb324 | 7876 | ASSERT(bio->bi_vcnt == 1); |
263663cd | 7877 | ASSERT(bio_first_bvec_all(bio)->bv_len == btrfs_inode_sectorsize(done->inode)); |
2dabb324 | 7878 | |
7870d082 JB |
7879 | io_tree = &BTRFS_I(inode)->io_tree; |
7880 | failure_tree = &BTRFS_I(inode)->io_failure_tree; | |
7881 | ||
c09abff8 | 7882 | ASSERT(!bio_flagged(bio, BIO_CLONED)); |
8b110e39 | 7883 | bio_for_each_segment_all(bvec, bio, i) { |
7870d082 JB |
7884 | ret = __readpage_endio_check(inode, io_bio, i, bvec->bv_page, |
7885 | bvec->bv_offset, done->start, | |
7886 | bvec->bv_len); | |
8b110e39 | 7887 | if (!ret) |
7870d082 JB |
7888 | clean_io_failure(BTRFS_I(inode)->root->fs_info, |
7889 | failure_tree, io_tree, done->start, | |
7890 | bvec->bv_page, | |
7891 | btrfs_ino(BTRFS_I(inode)), | |
7892 | bvec->bv_offset); | |
8b110e39 MX |
7893 | else |
7894 | uptodate = 0; | |
7895 | } | |
7896 | ||
7897 | done->uptodate = uptodate; | |
7898 | end: | |
7899 | complete(&done->done); | |
7900 | bio_put(bio); | |
7901 | } | |
7902 | ||
4e4cbee9 CH |
7903 | static blk_status_t __btrfs_subio_endio_read(struct inode *inode, |
7904 | struct btrfs_io_bio *io_bio, blk_status_t err) | |
8b110e39 | 7905 | { |
2dabb324 | 7906 | struct btrfs_fs_info *fs_info; |
17347cec LB |
7907 | struct bio_vec bvec; |
7908 | struct bvec_iter iter; | |
8b110e39 MX |
7909 | struct btrfs_retry_complete done; |
7910 | u64 start; | |
7911 | u64 offset = 0; | |
2dabb324 CR |
7912 | u32 sectorsize; |
7913 | int nr_sectors; | |
7914 | unsigned int pgoff; | |
7915 | int csum_pos; | |
ef7cdac1 | 7916 | bool uptodate = (err == 0); |
8b110e39 | 7917 | int ret; |
58efbc9f | 7918 | blk_status_t status; |
dc380aea | 7919 | |
2dabb324 | 7920 | fs_info = BTRFS_I(inode)->root->fs_info; |
da17066c | 7921 | sectorsize = fs_info->sectorsize; |
2dabb324 | 7922 | |
58efbc9f | 7923 | err = BLK_STS_OK; |
c1dc0896 | 7924 | start = io_bio->logical; |
8b110e39 | 7925 | done.inode = inode; |
17347cec | 7926 | io_bio->bio.bi_iter = io_bio->iter; |
8b110e39 | 7927 | |
17347cec LB |
7928 | bio_for_each_segment(bvec, &io_bio->bio, iter) { |
7929 | nr_sectors = BTRFS_BYTES_TO_BLKS(fs_info, bvec.bv_len); | |
2dabb324 | 7930 | |
17347cec | 7931 | pgoff = bvec.bv_offset; |
2dabb324 | 7932 | next_block: |
ef7cdac1 LB |
7933 | if (uptodate) { |
7934 | csum_pos = BTRFS_BYTES_TO_BLKS(fs_info, offset); | |
7935 | ret = __readpage_endio_check(inode, io_bio, csum_pos, | |
7936 | bvec.bv_page, pgoff, start, sectorsize); | |
7937 | if (likely(!ret)) | |
7938 | goto next; | |
7939 | } | |
8b110e39 MX |
7940 | try_again: |
7941 | done.uptodate = 0; | |
7942 | done.start = start; | |
7943 | init_completion(&done.done); | |
7944 | ||
58efbc9f OS |
7945 | status = dio_read_error(inode, &io_bio->bio, bvec.bv_page, |
7946 | pgoff, start, start + sectorsize - 1, | |
7947 | io_bio->mirror_num, btrfs_retry_endio, | |
7948 | &done); | |
7949 | if (status) { | |
7950 | err = status; | |
8b110e39 MX |
7951 | goto next; |
7952 | } | |
7953 | ||
9c17f6cd | 7954 | wait_for_completion_io(&done.done); |
8b110e39 MX |
7955 | |
7956 | if (!done.uptodate) { | |
7957 | /* We might have another mirror, so try again */ | |
7958 | goto try_again; | |
7959 | } | |
7960 | next: | |
2dabb324 CR |
7961 | offset += sectorsize; |
7962 | start += sectorsize; | |
7963 | ||
7964 | ASSERT(nr_sectors); | |
7965 | ||
97bf5a55 LB |
7966 | nr_sectors--; |
7967 | if (nr_sectors) { | |
2dabb324 | 7968 | pgoff += sectorsize; |
97bf5a55 | 7969 | ASSERT(pgoff < PAGE_SIZE); |
2dabb324 CR |
7970 | goto next_block; |
7971 | } | |
2c30c71b | 7972 | } |
c1dc0896 MX |
7973 | |
7974 | return err; | |
7975 | } | |
7976 | ||
4e4cbee9 CH |
7977 | static blk_status_t btrfs_subio_endio_read(struct inode *inode, |
7978 | struct btrfs_io_bio *io_bio, blk_status_t err) | |
8b110e39 MX |
7979 | { |
7980 | bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM; | |
7981 | ||
7982 | if (skip_csum) { | |
7983 | if (unlikely(err)) | |
7984 | return __btrfs_correct_data_nocsum(inode, io_bio); | |
7985 | else | |
58efbc9f | 7986 | return BLK_STS_OK; |
8b110e39 MX |
7987 | } else { |
7988 | return __btrfs_subio_endio_read(inode, io_bio, err); | |
7989 | } | |
7990 | } | |
7991 | ||
4246a0b6 | 7992 | static void btrfs_endio_direct_read(struct bio *bio) |
c1dc0896 MX |
7993 | { |
7994 | struct btrfs_dio_private *dip = bio->bi_private; | |
7995 | struct inode *inode = dip->inode; | |
7996 | struct bio *dio_bio; | |
7997 | struct btrfs_io_bio *io_bio = btrfs_io_bio(bio); | |
4e4cbee9 | 7998 | blk_status_t err = bio->bi_status; |
c1dc0896 | 7999 | |
99c4e3b9 | 8000 | if (dip->flags & BTRFS_DIO_ORIG_BIO_SUBMITTED) |
8b110e39 | 8001 | err = btrfs_subio_endio_read(inode, io_bio, err); |
c1dc0896 | 8002 | |
4b46fce2 | 8003 | unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset, |
d0082371 | 8004 | dip->logical_offset + dip->bytes - 1); |
9be3395b | 8005 | dio_bio = dip->dio_bio; |
4b46fce2 | 8006 | |
4b46fce2 | 8007 | kfree(dip); |
c0da7aa1 | 8008 | |
99c4e3b9 | 8009 | dio_bio->bi_status = err; |
4055351c | 8010 | dio_end_io(dio_bio); |
b3a0dd50 | 8011 | btrfs_io_bio_free_csum(io_bio); |
9be3395b | 8012 | bio_put(bio); |
4b46fce2 JB |
8013 | } |
8014 | ||
52427260 QW |
8015 | static void __endio_write_update_ordered(struct inode *inode, |
8016 | const u64 offset, const u64 bytes, | |
8017 | const bool uptodate) | |
4b46fce2 | 8018 | { |
0b246afa | 8019 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
4b46fce2 | 8020 | struct btrfs_ordered_extent *ordered = NULL; |
52427260 QW |
8021 | struct btrfs_workqueue *wq; |
8022 | btrfs_work_func_t func; | |
14543774 FM |
8023 | u64 ordered_offset = offset; |
8024 | u64 ordered_bytes = bytes; | |
67c003f9 | 8025 | u64 last_offset; |
4b46fce2 | 8026 | |
52427260 QW |
8027 | if (btrfs_is_free_space_inode(BTRFS_I(inode))) { |
8028 | wq = fs_info->endio_freespace_worker; | |
8029 | func = btrfs_freespace_write_helper; | |
8030 | } else { | |
8031 | wq = fs_info->endio_write_workers; | |
8032 | func = btrfs_endio_write_helper; | |
8033 | } | |
8034 | ||
b25f0d00 NB |
8035 | while (ordered_offset < offset + bytes) { |
8036 | last_offset = ordered_offset; | |
8037 | if (btrfs_dec_test_first_ordered_pending(inode, &ordered, | |
8038 | &ordered_offset, | |
8039 | ordered_bytes, | |
8040 | uptodate)) { | |
8041 | btrfs_init_work(&ordered->work, func, | |
8042 | finish_ordered_fn, | |
8043 | NULL, NULL); | |
8044 | btrfs_queue_work(wq, &ordered->work); | |
8045 | } | |
8046 | /* | |
8047 | * If btrfs_dec_test_ordered_pending does not find any ordered | |
8048 | * extent in the range, we can exit. | |
8049 | */ | |
8050 | if (ordered_offset == last_offset) | |
8051 | return; | |
8052 | /* | |
8053 | * Our bio might span multiple ordered extents. In this case | |
52042d8e | 8054 | * we keep going until we have accounted the whole dio. |
b25f0d00 NB |
8055 | */ |
8056 | if (ordered_offset < offset + bytes) { | |
8057 | ordered_bytes = offset + bytes - ordered_offset; | |
8058 | ordered = NULL; | |
8059 | } | |
163cf09c | 8060 | } |
14543774 FM |
8061 | } |
8062 | ||
8063 | static void btrfs_endio_direct_write(struct bio *bio) | |
8064 | { | |
8065 | struct btrfs_dio_private *dip = bio->bi_private; | |
8066 | struct bio *dio_bio = dip->dio_bio; | |
8067 | ||
52427260 | 8068 | __endio_write_update_ordered(dip->inode, dip->logical_offset, |
4e4cbee9 | 8069 | dip->bytes, !bio->bi_status); |
4b46fce2 | 8070 | |
4b46fce2 | 8071 | kfree(dip); |
c0da7aa1 | 8072 | |
4e4cbee9 | 8073 | dio_bio->bi_status = bio->bi_status; |
4055351c | 8074 | dio_end_io(dio_bio); |
9be3395b | 8075 | bio_put(bio); |
4b46fce2 JB |
8076 | } |
8077 | ||
d0ee3934 | 8078 | static blk_status_t btrfs_submit_bio_start_direct_io(void *private_data, |
d0779291 | 8079 | struct bio *bio, u64 offset) |
eaf25d93 | 8080 | { |
c6100a4b | 8081 | struct inode *inode = private_data; |
4e4cbee9 | 8082 | blk_status_t ret; |
2ff7e61e | 8083 | ret = btrfs_csum_one_bio(inode, bio, offset, 1); |
79787eaa | 8084 | BUG_ON(ret); /* -ENOMEM */ |
eaf25d93 CM |
8085 | return 0; |
8086 | } | |
8087 | ||
4246a0b6 | 8088 | static void btrfs_end_dio_bio(struct bio *bio) |
e65e1535 MX |
8089 | { |
8090 | struct btrfs_dio_private *dip = bio->bi_private; | |
4e4cbee9 | 8091 | blk_status_t err = bio->bi_status; |
e65e1535 | 8092 | |
8b110e39 MX |
8093 | if (err) |
8094 | btrfs_warn(BTRFS_I(dip->inode)->root->fs_info, | |
6296b960 | 8095 | "direct IO failed ino %llu rw %d,%u sector %#Lx len %u err no %d", |
f85b7379 DS |
8096 | btrfs_ino(BTRFS_I(dip->inode)), bio_op(bio), |
8097 | bio->bi_opf, | |
8b110e39 MX |
8098 | (unsigned long long)bio->bi_iter.bi_sector, |
8099 | bio->bi_iter.bi_size, err); | |
8100 | ||
8101 | if (dip->subio_endio) | |
8102 | err = dip->subio_endio(dip->inode, btrfs_io_bio(bio), err); | |
c1dc0896 MX |
8103 | |
8104 | if (err) { | |
e65e1535 | 8105 | /* |
de224b7c NB |
8106 | * We want to perceive the errors flag being set before |
8107 | * decrementing the reference count. We don't need a barrier | |
8108 | * since atomic operations with a return value are fully | |
8109 | * ordered as per atomic_t.txt | |
e65e1535 | 8110 | */ |
de224b7c | 8111 | dip->errors = 1; |
e65e1535 MX |
8112 | } |
8113 | ||
8114 | /* if there are more bios still pending for this dio, just exit */ | |
8115 | if (!atomic_dec_and_test(&dip->pending_bios)) | |
8116 | goto out; | |
8117 | ||
9be3395b | 8118 | if (dip->errors) { |
e65e1535 | 8119 | bio_io_error(dip->orig_bio); |
9be3395b | 8120 | } else { |
2dbe0c77 | 8121 | dip->dio_bio->bi_status = BLK_STS_OK; |
4246a0b6 | 8122 | bio_endio(dip->orig_bio); |
e65e1535 MX |
8123 | } |
8124 | out: | |
8125 | bio_put(bio); | |
8126 | } | |
8127 | ||
4e4cbee9 | 8128 | static inline blk_status_t btrfs_lookup_and_bind_dio_csum(struct inode *inode, |
c1dc0896 MX |
8129 | struct btrfs_dio_private *dip, |
8130 | struct bio *bio, | |
8131 | u64 file_offset) | |
8132 | { | |
8133 | struct btrfs_io_bio *io_bio = btrfs_io_bio(bio); | |
8134 | struct btrfs_io_bio *orig_io_bio = btrfs_io_bio(dip->orig_bio); | |
4e4cbee9 | 8135 | blk_status_t ret; |
c1dc0896 MX |
8136 | |
8137 | /* | |
8138 | * We load all the csum data we need when we submit | |
8139 | * the first bio to reduce the csum tree search and | |
8140 | * contention. | |
8141 | */ | |
8142 | if (dip->logical_offset == file_offset) { | |
2ff7e61e | 8143 | ret = btrfs_lookup_bio_sums_dio(inode, dip->orig_bio, |
c1dc0896 MX |
8144 | file_offset); |
8145 | if (ret) | |
8146 | return ret; | |
8147 | } | |
8148 | ||
8149 | if (bio == dip->orig_bio) | |
8150 | return 0; | |
8151 | ||
8152 | file_offset -= dip->logical_offset; | |
8153 | file_offset >>= inode->i_sb->s_blocksize_bits; | |
8154 | io_bio->csum = (u8 *)(((u32 *)orig_io_bio->csum) + file_offset); | |
8155 | ||
8156 | return 0; | |
8157 | } | |
8158 | ||
d0ee3934 DS |
8159 | static inline blk_status_t btrfs_submit_dio_bio(struct bio *bio, |
8160 | struct inode *inode, u64 file_offset, int async_submit) | |
e65e1535 | 8161 | { |
0b246afa | 8162 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
facc8a22 | 8163 | struct btrfs_dio_private *dip = bio->bi_private; |
37226b21 | 8164 | bool write = bio_op(bio) == REQ_OP_WRITE; |
4e4cbee9 | 8165 | blk_status_t ret; |
e65e1535 | 8166 | |
4c274bc6 | 8167 | /* Check btrfs_submit_bio_hook() for rules about async submit. */ |
b812ce28 JB |
8168 | if (async_submit) |
8169 | async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers); | |
8170 | ||
5fd02043 | 8171 | if (!write) { |
0b246afa | 8172 | ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA); |
5fd02043 JB |
8173 | if (ret) |
8174 | goto err; | |
8175 | } | |
e65e1535 | 8176 | |
e6961cac | 8177 | if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM) |
1ae39938 JB |
8178 | goto map; |
8179 | ||
8180 | if (write && async_submit) { | |
c6100a4b JB |
8181 | ret = btrfs_wq_submit_bio(fs_info, bio, 0, 0, |
8182 | file_offset, inode, | |
e288c080 | 8183 | btrfs_submit_bio_start_direct_io); |
e65e1535 | 8184 | goto err; |
1ae39938 JB |
8185 | } else if (write) { |
8186 | /* | |
8187 | * If we aren't doing async submit, calculate the csum of the | |
8188 | * bio now. | |
8189 | */ | |
2ff7e61e | 8190 | ret = btrfs_csum_one_bio(inode, bio, file_offset, 1); |
1ae39938 JB |
8191 | if (ret) |
8192 | goto err; | |
23ea8e5a | 8193 | } else { |
2ff7e61e | 8194 | ret = btrfs_lookup_and_bind_dio_csum(inode, dip, bio, |
c1dc0896 | 8195 | file_offset); |
c2db1073 TI |
8196 | if (ret) |
8197 | goto err; | |
8198 | } | |
1ae39938 | 8199 | map: |
9b4a9b28 | 8200 | ret = btrfs_map_bio(fs_info, bio, 0, 0); |
e65e1535 | 8201 | err: |
e65e1535 MX |
8202 | return ret; |
8203 | } | |
8204 | ||
e6961cac | 8205 | static int btrfs_submit_direct_hook(struct btrfs_dio_private *dip) |
e65e1535 MX |
8206 | { |
8207 | struct inode *inode = dip->inode; | |
0b246afa | 8208 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
e65e1535 MX |
8209 | struct bio *bio; |
8210 | struct bio *orig_bio = dip->orig_bio; | |
4f024f37 | 8211 | u64 start_sector = orig_bio->bi_iter.bi_sector; |
e65e1535 | 8212 | u64 file_offset = dip->logical_offset; |
e65e1535 | 8213 | u64 map_length; |
1ae39938 | 8214 | int async_submit = 0; |
725130ba LB |
8215 | u64 submit_len; |
8216 | int clone_offset = 0; | |
8217 | int clone_len; | |
5f4dc8fc | 8218 | int ret; |
58efbc9f | 8219 | blk_status_t status; |
e65e1535 | 8220 | |
4f024f37 | 8221 | map_length = orig_bio->bi_iter.bi_size; |
725130ba | 8222 | submit_len = map_length; |
0b246afa JM |
8223 | ret = btrfs_map_block(fs_info, btrfs_op(orig_bio), start_sector << 9, |
8224 | &map_length, NULL, 0); | |
7a5c3c9b | 8225 | if (ret) |
e65e1535 | 8226 | return -EIO; |
facc8a22 | 8227 | |
725130ba | 8228 | if (map_length >= submit_len) { |
02f57c7a | 8229 | bio = orig_bio; |
c1dc0896 | 8230 | dip->flags |= BTRFS_DIO_ORIG_BIO_SUBMITTED; |
02f57c7a JB |
8231 | goto submit; |
8232 | } | |
8233 | ||
53b381b3 | 8234 | /* async crcs make it difficult to collect full stripe writes. */ |
1b86826d | 8235 | if (btrfs_data_alloc_profile(fs_info) & BTRFS_BLOCK_GROUP_RAID56_MASK) |
53b381b3 DW |
8236 | async_submit = 0; |
8237 | else | |
8238 | async_submit = 1; | |
8239 | ||
725130ba LB |
8240 | /* bio split */ |
8241 | ASSERT(map_length <= INT_MAX); | |
02f57c7a | 8242 | atomic_inc(&dip->pending_bios); |
3c91ee69 | 8243 | do { |
725130ba | 8244 | clone_len = min_t(int, submit_len, map_length); |
02f57c7a | 8245 | |
725130ba LB |
8246 | /* |
8247 | * This will never fail as it's passing GPF_NOFS and | |
8248 | * the allocation is backed by btrfs_bioset. | |
8249 | */ | |
e477094f | 8250 | bio = btrfs_bio_clone_partial(orig_bio, clone_offset, |
725130ba LB |
8251 | clone_len); |
8252 | bio->bi_private = dip; | |
8253 | bio->bi_end_io = btrfs_end_dio_bio; | |
8254 | btrfs_io_bio(bio)->logical = file_offset; | |
8255 | ||
8256 | ASSERT(submit_len >= clone_len); | |
8257 | submit_len -= clone_len; | |
8258 | if (submit_len == 0) | |
8259 | break; | |
e65e1535 | 8260 | |
725130ba LB |
8261 | /* |
8262 | * Increase the count before we submit the bio so we know | |
8263 | * the end IO handler won't happen before we increase the | |
8264 | * count. Otherwise, the dip might get freed before we're | |
8265 | * done setting it up. | |
8266 | */ | |
8267 | atomic_inc(&dip->pending_bios); | |
e65e1535 | 8268 | |
d0ee3934 | 8269 | status = btrfs_submit_dio_bio(bio, inode, file_offset, |
58efbc9f OS |
8270 | async_submit); |
8271 | if (status) { | |
725130ba LB |
8272 | bio_put(bio); |
8273 | atomic_dec(&dip->pending_bios); | |
8274 | goto out_err; | |
8275 | } | |
e65e1535 | 8276 | |
725130ba LB |
8277 | clone_offset += clone_len; |
8278 | start_sector += clone_len >> 9; | |
8279 | file_offset += clone_len; | |
5f4dc8fc | 8280 | |
725130ba LB |
8281 | map_length = submit_len; |
8282 | ret = btrfs_map_block(fs_info, btrfs_op(orig_bio), | |
8283 | start_sector << 9, &map_length, NULL, 0); | |
8284 | if (ret) | |
8285 | goto out_err; | |
3c91ee69 | 8286 | } while (submit_len > 0); |
e65e1535 | 8287 | |
02f57c7a | 8288 | submit: |
d0ee3934 | 8289 | status = btrfs_submit_dio_bio(bio, inode, file_offset, async_submit); |
58efbc9f | 8290 | if (!status) |
e65e1535 MX |
8291 | return 0; |
8292 | ||
8293 | bio_put(bio); | |
8294 | out_err: | |
8295 | dip->errors = 1; | |
8296 | /* | |
de224b7c NB |
8297 | * Before atomic variable goto zero, we must make sure dip->errors is |
8298 | * perceived to be set. This ordering is ensured by the fact that an | |
8299 | * atomic operations with a return value are fully ordered as per | |
8300 | * atomic_t.txt | |
e65e1535 | 8301 | */ |
e65e1535 MX |
8302 | if (atomic_dec_and_test(&dip->pending_bios)) |
8303 | bio_io_error(dip->orig_bio); | |
8304 | ||
8305 | /* bio_end_io() will handle error, so we needn't return it */ | |
8306 | return 0; | |
8307 | } | |
8308 | ||
8a4c1e42 MC |
8309 | static void btrfs_submit_direct(struct bio *dio_bio, struct inode *inode, |
8310 | loff_t file_offset) | |
4b46fce2 | 8311 | { |
61de718f | 8312 | struct btrfs_dio_private *dip = NULL; |
3892ac90 LB |
8313 | struct bio *bio = NULL; |
8314 | struct btrfs_io_bio *io_bio; | |
8a4c1e42 | 8315 | bool write = (bio_op(dio_bio) == REQ_OP_WRITE); |
4b46fce2 JB |
8316 | int ret = 0; |
8317 | ||
8b6c1d56 | 8318 | bio = btrfs_bio_clone(dio_bio); |
9be3395b | 8319 | |
c1dc0896 | 8320 | dip = kzalloc(sizeof(*dip), GFP_NOFS); |
4b46fce2 JB |
8321 | if (!dip) { |
8322 | ret = -ENOMEM; | |
61de718f | 8323 | goto free_ordered; |
4b46fce2 | 8324 | } |
4b46fce2 | 8325 | |
9be3395b | 8326 | dip->private = dio_bio->bi_private; |
4b46fce2 JB |
8327 | dip->inode = inode; |
8328 | dip->logical_offset = file_offset; | |
4f024f37 KO |
8329 | dip->bytes = dio_bio->bi_iter.bi_size; |
8330 | dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9; | |
3892ac90 LB |
8331 | bio->bi_private = dip; |
8332 | dip->orig_bio = bio; | |
9be3395b | 8333 | dip->dio_bio = dio_bio; |
e65e1535 | 8334 | atomic_set(&dip->pending_bios, 0); |
3892ac90 LB |
8335 | io_bio = btrfs_io_bio(bio); |
8336 | io_bio->logical = file_offset; | |
4b46fce2 | 8337 | |
c1dc0896 | 8338 | if (write) { |
3892ac90 | 8339 | bio->bi_end_io = btrfs_endio_direct_write; |
c1dc0896 | 8340 | } else { |
3892ac90 | 8341 | bio->bi_end_io = btrfs_endio_direct_read; |
c1dc0896 MX |
8342 | dip->subio_endio = btrfs_subio_endio_read; |
8343 | } | |
4b46fce2 | 8344 | |
f28a4928 FM |
8345 | /* |
8346 | * Reset the range for unsubmitted ordered extents (to a 0 length range) | |
8347 | * even if we fail to submit a bio, because in such case we do the | |
8348 | * corresponding error handling below and it must not be done a second | |
8349 | * time by btrfs_direct_IO(). | |
8350 | */ | |
8351 | if (write) { | |
8352 | struct btrfs_dio_data *dio_data = current->journal_info; | |
8353 | ||
8354 | dio_data->unsubmitted_oe_range_end = dip->logical_offset + | |
8355 | dip->bytes; | |
8356 | dio_data->unsubmitted_oe_range_start = | |
8357 | dio_data->unsubmitted_oe_range_end; | |
8358 | } | |
8359 | ||
e6961cac | 8360 | ret = btrfs_submit_direct_hook(dip); |
e65e1535 | 8361 | if (!ret) |
eaf25d93 | 8362 | return; |
9be3395b | 8363 | |
b3a0dd50 | 8364 | btrfs_io_bio_free_csum(io_bio); |
9be3395b | 8365 | |
4b46fce2 JB |
8366 | free_ordered: |
8367 | /* | |
61de718f FM |
8368 | * If we arrived here it means either we failed to submit the dip |
8369 | * or we either failed to clone the dio_bio or failed to allocate the | |
8370 | * dip. If we cloned the dio_bio and allocated the dip, we can just | |
8371 | * call bio_endio against our io_bio so that we get proper resource | |
8372 | * cleanup if we fail to submit the dip, otherwise, we must do the | |
8373 | * same as btrfs_endio_direct_[write|read] because we can't call these | |
8374 | * callbacks - they require an allocated dip and a clone of dio_bio. | |
4b46fce2 | 8375 | */ |
3892ac90 | 8376 | if (bio && dip) { |
054ec2f6 | 8377 | bio_io_error(bio); |
61de718f | 8378 | /* |
3892ac90 | 8379 | * The end io callbacks free our dip, do the final put on bio |
61de718f FM |
8380 | * and all the cleanup and final put for dio_bio (through |
8381 | * dio_end_io()). | |
8382 | */ | |
8383 | dip = NULL; | |
3892ac90 | 8384 | bio = NULL; |
61de718f | 8385 | } else { |
14543774 | 8386 | if (write) |
52427260 | 8387 | __endio_write_update_ordered(inode, |
14543774 FM |
8388 | file_offset, |
8389 | dio_bio->bi_iter.bi_size, | |
52427260 | 8390 | false); |
14543774 | 8391 | else |
61de718f FM |
8392 | unlock_extent(&BTRFS_I(inode)->io_tree, file_offset, |
8393 | file_offset + dio_bio->bi_iter.bi_size - 1); | |
14543774 | 8394 | |
4e4cbee9 | 8395 | dio_bio->bi_status = BLK_STS_IOERR; |
61de718f FM |
8396 | /* |
8397 | * Releases and cleans up our dio_bio, no need to bio_put() | |
8398 | * nor bio_endio()/bio_io_error() against dio_bio. | |
8399 | */ | |
4055351c | 8400 | dio_end_io(dio_bio); |
4b46fce2 | 8401 | } |
3892ac90 LB |
8402 | if (bio) |
8403 | bio_put(bio); | |
61de718f | 8404 | kfree(dip); |
4b46fce2 JB |
8405 | } |
8406 | ||
2ff7e61e | 8407 | static ssize_t check_direct_IO(struct btrfs_fs_info *fs_info, |
2ff7e61e | 8408 | const struct iov_iter *iter, loff_t offset) |
5a5f79b5 CM |
8409 | { |
8410 | int seg; | |
a1b75f7d | 8411 | int i; |
0b246afa | 8412 | unsigned int blocksize_mask = fs_info->sectorsize - 1; |
5a5f79b5 | 8413 | ssize_t retval = -EINVAL; |
5a5f79b5 CM |
8414 | |
8415 | if (offset & blocksize_mask) | |
8416 | goto out; | |
8417 | ||
28060d5d AV |
8418 | if (iov_iter_alignment(iter) & blocksize_mask) |
8419 | goto out; | |
a1b75f7d | 8420 | |
28060d5d | 8421 | /* If this is a write we don't need to check anymore */ |
cd27e455 | 8422 | if (iov_iter_rw(iter) != READ || !iter_is_iovec(iter)) |
28060d5d AV |
8423 | return 0; |
8424 | /* | |
8425 | * Check to make sure we don't have duplicate iov_base's in this | |
8426 | * iovec, if so return EINVAL, otherwise we'll get csum errors | |
8427 | * when reading back. | |
8428 | */ | |
8429 | for (seg = 0; seg < iter->nr_segs; seg++) { | |
8430 | for (i = seg + 1; i < iter->nr_segs; i++) { | |
8431 | if (iter->iov[seg].iov_base == iter->iov[i].iov_base) | |
a1b75f7d JB |
8432 | goto out; |
8433 | } | |
5a5f79b5 CM |
8434 | } |
8435 | retval = 0; | |
8436 | out: | |
8437 | return retval; | |
8438 | } | |
eb838e73 | 8439 | |
c8b8e32d | 8440 | static ssize_t btrfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter) |
16432985 | 8441 | { |
4b46fce2 JB |
8442 | struct file *file = iocb->ki_filp; |
8443 | struct inode *inode = file->f_mapping->host; | |
0b246afa | 8444 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
50745b0a | 8445 | struct btrfs_dio_data dio_data = { 0 }; |
364ecf36 | 8446 | struct extent_changeset *data_reserved = NULL; |
c8b8e32d | 8447 | loff_t offset = iocb->ki_pos; |
0934856d | 8448 | size_t count = 0; |
2e60a51e | 8449 | int flags = 0; |
38851cc1 MX |
8450 | bool wakeup = true; |
8451 | bool relock = false; | |
0934856d | 8452 | ssize_t ret; |
4b46fce2 | 8453 | |
8c70c9f8 | 8454 | if (check_direct_IO(fs_info, iter, offset)) |
5a5f79b5 | 8455 | return 0; |
3f7c579c | 8456 | |
fe0f07d0 | 8457 | inode_dio_begin(inode); |
38851cc1 | 8458 | |
0e267c44 | 8459 | /* |
41bd9ca4 MX |
8460 | * The generic stuff only does filemap_write_and_wait_range, which |
8461 | * isn't enough if we've written compressed pages to this area, so | |
8462 | * we need to flush the dirty pages again to make absolutely sure | |
8463 | * that any outstanding dirty pages are on disk. | |
0e267c44 | 8464 | */ |
a6cbcd4a | 8465 | count = iov_iter_count(iter); |
41bd9ca4 MX |
8466 | if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT, |
8467 | &BTRFS_I(inode)->runtime_flags)) | |
9a025a08 WS |
8468 | filemap_fdatawrite_range(inode->i_mapping, offset, |
8469 | offset + count - 1); | |
0e267c44 | 8470 | |
6f673763 | 8471 | if (iov_iter_rw(iter) == WRITE) { |
38851cc1 MX |
8472 | /* |
8473 | * If the write DIO is beyond the EOF, we need update | |
8474 | * the isize, but it is protected by i_mutex. So we can | |
8475 | * not unlock the i_mutex at this case. | |
8476 | */ | |
8477 | if (offset + count <= inode->i_size) { | |
4aaedfb0 | 8478 | dio_data.overwrite = 1; |
5955102c | 8479 | inode_unlock(inode); |
38851cc1 | 8480 | relock = true; |
edf064e7 GR |
8481 | } else if (iocb->ki_flags & IOCB_NOWAIT) { |
8482 | ret = -EAGAIN; | |
8483 | goto out; | |
38851cc1 | 8484 | } |
364ecf36 QW |
8485 | ret = btrfs_delalloc_reserve_space(inode, &data_reserved, |
8486 | offset, count); | |
0934856d | 8487 | if (ret) |
38851cc1 | 8488 | goto out; |
e1cbbfa5 JB |
8489 | |
8490 | /* | |
8491 | * We need to know how many extents we reserved so that we can | |
8492 | * do the accounting properly if we go over the number we | |
8493 | * originally calculated. Abuse current->journal_info for this. | |
8494 | */ | |
da17066c | 8495 | dio_data.reserve = round_up(count, |
0b246afa | 8496 | fs_info->sectorsize); |
f28a4928 FM |
8497 | dio_data.unsubmitted_oe_range_start = (u64)offset; |
8498 | dio_data.unsubmitted_oe_range_end = (u64)offset; | |
50745b0a | 8499 | current->journal_info = &dio_data; |
97dcdea0 | 8500 | down_read(&BTRFS_I(inode)->dio_sem); |
ee39b432 DS |
8501 | } else if (test_bit(BTRFS_INODE_READDIO_NEED_LOCK, |
8502 | &BTRFS_I(inode)->runtime_flags)) { | |
fe0f07d0 | 8503 | inode_dio_end(inode); |
38851cc1 MX |
8504 | flags = DIO_LOCKING | DIO_SKIP_HOLES; |
8505 | wakeup = false; | |
0934856d MX |
8506 | } |
8507 | ||
17f8c842 | 8508 | ret = __blockdev_direct_IO(iocb, inode, |
0b246afa | 8509 | fs_info->fs_devices->latest_bdev, |
c8b8e32d | 8510 | iter, btrfs_get_blocks_direct, NULL, |
17f8c842 | 8511 | btrfs_submit_direct, flags); |
6f673763 | 8512 | if (iov_iter_rw(iter) == WRITE) { |
97dcdea0 | 8513 | up_read(&BTRFS_I(inode)->dio_sem); |
e1cbbfa5 | 8514 | current->journal_info = NULL; |
ddba1bfc | 8515 | if (ret < 0 && ret != -EIOCBQUEUED) { |
50745b0a | 8516 | if (dio_data.reserve) |
bc42bda2 | 8517 | btrfs_delalloc_release_space(inode, data_reserved, |
43b18595 | 8518 | offset, dio_data.reserve, true); |
f28a4928 FM |
8519 | /* |
8520 | * On error we might have left some ordered extents | |
8521 | * without submitting corresponding bios for them, so | |
8522 | * cleanup them up to avoid other tasks getting them | |
8523 | * and waiting for them to complete forever. | |
8524 | */ | |
8525 | if (dio_data.unsubmitted_oe_range_start < | |
8526 | dio_data.unsubmitted_oe_range_end) | |
52427260 | 8527 | __endio_write_update_ordered(inode, |
f28a4928 FM |
8528 | dio_data.unsubmitted_oe_range_start, |
8529 | dio_data.unsubmitted_oe_range_end - | |
8530 | dio_data.unsubmitted_oe_range_start, | |
52427260 | 8531 | false); |
ddba1bfc | 8532 | } else if (ret >= 0 && (size_t)ret < count) |
bc42bda2 | 8533 | btrfs_delalloc_release_space(inode, data_reserved, |
43b18595 QW |
8534 | offset, count - (size_t)ret, true); |
8535 | btrfs_delalloc_release_extents(BTRFS_I(inode), count, false); | |
0934856d | 8536 | } |
38851cc1 | 8537 | out: |
2e60a51e | 8538 | if (wakeup) |
fe0f07d0 | 8539 | inode_dio_end(inode); |
38851cc1 | 8540 | if (relock) |
5955102c | 8541 | inode_lock(inode); |
0934856d | 8542 | |
364ecf36 | 8543 | extent_changeset_free(data_reserved); |
0934856d | 8544 | return ret; |
16432985 CM |
8545 | } |
8546 | ||
05dadc09 TI |
8547 | #define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC) |
8548 | ||
1506fcc8 YS |
8549 | static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, |
8550 | __u64 start, __u64 len) | |
8551 | { | |
05dadc09 TI |
8552 | int ret; |
8553 | ||
8554 | ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS); | |
8555 | if (ret) | |
8556 | return ret; | |
8557 | ||
2135fb9b | 8558 | return extent_fiemap(inode, fieinfo, start, len); |
1506fcc8 YS |
8559 | } |
8560 | ||
a52d9a80 | 8561 | int btrfs_readpage(struct file *file, struct page *page) |
9ebefb18 | 8562 | { |
d1310b2e CM |
8563 | struct extent_io_tree *tree; |
8564 | tree = &BTRFS_I(page->mapping->host)->io_tree; | |
8ddc7d9c | 8565 | return extent_read_full_page(tree, page, btrfs_get_extent, 0); |
9ebefb18 | 8566 | } |
1832a6d5 | 8567 | |
a52d9a80 | 8568 | static int btrfs_writepage(struct page *page, struct writeback_control *wbc) |
39279cc3 | 8569 | { |
be7bd730 JB |
8570 | struct inode *inode = page->mapping->host; |
8571 | int ret; | |
b888db2b CM |
8572 | |
8573 | if (current->flags & PF_MEMALLOC) { | |
8574 | redirty_page_for_writepage(wbc, page); | |
8575 | unlock_page(page); | |
8576 | return 0; | |
8577 | } | |
be7bd730 JB |
8578 | |
8579 | /* | |
8580 | * If we are under memory pressure we will call this directly from the | |
8581 | * VM, we need to make sure we have the inode referenced for the ordered | |
8582 | * extent. If not just return like we didn't do anything. | |
8583 | */ | |
8584 | if (!igrab(inode)) { | |
8585 | redirty_page_for_writepage(wbc, page); | |
8586 | return AOP_WRITEPAGE_ACTIVATE; | |
8587 | } | |
0a9b0e53 | 8588 | ret = extent_write_full_page(page, wbc); |
be7bd730 JB |
8589 | btrfs_add_delayed_iput(inode); |
8590 | return ret; | |
9ebefb18 CM |
8591 | } |
8592 | ||
48a3b636 ES |
8593 | static int btrfs_writepages(struct address_space *mapping, |
8594 | struct writeback_control *wbc) | |
b293f02e | 8595 | { |
8ae225a8 | 8596 | return extent_writepages(mapping, wbc); |
b293f02e CM |
8597 | } |
8598 | ||
3ab2fb5a CM |
8599 | static int |
8600 | btrfs_readpages(struct file *file, struct address_space *mapping, | |
8601 | struct list_head *pages, unsigned nr_pages) | |
8602 | { | |
2a3ff0ad | 8603 | return extent_readpages(mapping, pages, nr_pages); |
3ab2fb5a | 8604 | } |
2a3ff0ad | 8605 | |
e6dcd2dc | 8606 | static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags) |
9ebefb18 | 8607 | { |
477a30ba | 8608 | int ret = try_release_extent_mapping(page, gfp_flags); |
a52d9a80 CM |
8609 | if (ret == 1) { |
8610 | ClearPagePrivate(page); | |
8611 | set_page_private(page, 0); | |
09cbfeaf | 8612 | put_page(page); |
39279cc3 | 8613 | } |
a52d9a80 | 8614 | return ret; |
39279cc3 CM |
8615 | } |
8616 | ||
e6dcd2dc CM |
8617 | static int btrfs_releasepage(struct page *page, gfp_t gfp_flags) |
8618 | { | |
98509cfc CM |
8619 | if (PageWriteback(page) || PageDirty(page)) |
8620 | return 0; | |
3ba7ab22 | 8621 | return __btrfs_releasepage(page, gfp_flags); |
e6dcd2dc CM |
8622 | } |
8623 | ||
d47992f8 LC |
8624 | static void btrfs_invalidatepage(struct page *page, unsigned int offset, |
8625 | unsigned int length) | |
39279cc3 | 8626 | { |
5fd02043 | 8627 | struct inode *inode = page->mapping->host; |
d1310b2e | 8628 | struct extent_io_tree *tree; |
e6dcd2dc | 8629 | struct btrfs_ordered_extent *ordered; |
2ac55d41 | 8630 | struct extent_state *cached_state = NULL; |
e6dcd2dc | 8631 | u64 page_start = page_offset(page); |
09cbfeaf | 8632 | u64 page_end = page_start + PAGE_SIZE - 1; |
dbfdb6d1 CR |
8633 | u64 start; |
8634 | u64 end; | |
131e404a | 8635 | int inode_evicting = inode->i_state & I_FREEING; |
39279cc3 | 8636 | |
8b62b72b CM |
8637 | /* |
8638 | * we have the page locked, so new writeback can't start, | |
8639 | * and the dirty bit won't be cleared while we are here. | |
8640 | * | |
8641 | * Wait for IO on this page so that we can safely clear | |
8642 | * the PagePrivate2 bit and do ordered accounting | |
8643 | */ | |
e6dcd2dc | 8644 | wait_on_page_writeback(page); |
8b62b72b | 8645 | |
5fd02043 | 8646 | tree = &BTRFS_I(inode)->io_tree; |
e6dcd2dc CM |
8647 | if (offset) { |
8648 | btrfs_releasepage(page, GFP_NOFS); | |
8649 | return; | |
8650 | } | |
131e404a FDBM |
8651 | |
8652 | if (!inode_evicting) | |
ff13db41 | 8653 | lock_extent_bits(tree, page_start, page_end, &cached_state); |
dbfdb6d1 CR |
8654 | again: |
8655 | start = page_start; | |
a776c6fa | 8656 | ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), start, |
dbfdb6d1 | 8657 | page_end - start + 1); |
e6dcd2dc | 8658 | if (ordered) { |
dbfdb6d1 | 8659 | end = min(page_end, ordered->file_offset + ordered->len - 1); |
eb84ae03 CM |
8660 | /* |
8661 | * IO on this page will never be started, so we need | |
8662 | * to account for any ordered extents now | |
8663 | */ | |
131e404a | 8664 | if (!inode_evicting) |
dbfdb6d1 | 8665 | clear_extent_bit(tree, start, end, |
131e404a | 8666 | EXTENT_DIRTY | EXTENT_DELALLOC | |
a7e3b975 | 8667 | EXTENT_DELALLOC_NEW | |
131e404a | 8668 | EXTENT_LOCKED | EXTENT_DO_ACCOUNTING | |
ae0f1625 | 8669 | EXTENT_DEFRAG, 1, 0, &cached_state); |
8b62b72b CM |
8670 | /* |
8671 | * whoever cleared the private bit is responsible | |
8672 | * for the finish_ordered_io | |
8673 | */ | |
77cef2ec JB |
8674 | if (TestClearPagePrivate2(page)) { |
8675 | struct btrfs_ordered_inode_tree *tree; | |
8676 | u64 new_len; | |
8677 | ||
8678 | tree = &BTRFS_I(inode)->ordered_tree; | |
8679 | ||
8680 | spin_lock_irq(&tree->lock); | |
8681 | set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags); | |
dbfdb6d1 | 8682 | new_len = start - ordered->file_offset; |
77cef2ec JB |
8683 | if (new_len < ordered->truncated_len) |
8684 | ordered->truncated_len = new_len; | |
8685 | spin_unlock_irq(&tree->lock); | |
8686 | ||
8687 | if (btrfs_dec_test_ordered_pending(inode, &ordered, | |
dbfdb6d1 CR |
8688 | start, |
8689 | end - start + 1, 1)) | |
77cef2ec | 8690 | btrfs_finish_ordered_io(ordered); |
8b62b72b | 8691 | } |
e6dcd2dc | 8692 | btrfs_put_ordered_extent(ordered); |
131e404a FDBM |
8693 | if (!inode_evicting) { |
8694 | cached_state = NULL; | |
dbfdb6d1 | 8695 | lock_extent_bits(tree, start, end, |
131e404a FDBM |
8696 | &cached_state); |
8697 | } | |
dbfdb6d1 CR |
8698 | |
8699 | start = end + 1; | |
8700 | if (start < page_end) | |
8701 | goto again; | |
131e404a FDBM |
8702 | } |
8703 | ||
b9d0b389 QW |
8704 | /* |
8705 | * Qgroup reserved space handler | |
8706 | * Page here will be either | |
8707 | * 1) Already written to disk | |
8708 | * In this case, its reserved space is released from data rsv map | |
8709 | * and will be freed by delayed_ref handler finally. | |
8710 | * So even we call qgroup_free_data(), it won't decrease reserved | |
8711 | * space. | |
8712 | * 2) Not written to disk | |
0b34c261 GR |
8713 | * This means the reserved space should be freed here. However, |
8714 | * if a truncate invalidates the page (by clearing PageDirty) | |
8715 | * and the page is accounted for while allocating extent | |
8716 | * in btrfs_check_data_free_space() we let delayed_ref to | |
8717 | * free the entire extent. | |
b9d0b389 | 8718 | */ |
0b34c261 | 8719 | if (PageDirty(page)) |
bc42bda2 | 8720 | btrfs_qgroup_free_data(inode, NULL, page_start, PAGE_SIZE); |
131e404a FDBM |
8721 | if (!inode_evicting) { |
8722 | clear_extent_bit(tree, page_start, page_end, | |
8723 | EXTENT_LOCKED | EXTENT_DIRTY | | |
a7e3b975 FM |
8724 | EXTENT_DELALLOC | EXTENT_DELALLOC_NEW | |
8725 | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 1, 1, | |
ae0f1625 | 8726 | &cached_state); |
131e404a FDBM |
8727 | |
8728 | __btrfs_releasepage(page, GFP_NOFS); | |
e6dcd2dc | 8729 | } |
e6dcd2dc | 8730 | |
4a096752 | 8731 | ClearPageChecked(page); |
9ad6b7bc | 8732 | if (PagePrivate(page)) { |
9ad6b7bc CM |
8733 | ClearPagePrivate(page); |
8734 | set_page_private(page, 0); | |
09cbfeaf | 8735 | put_page(page); |
9ad6b7bc | 8736 | } |
39279cc3 CM |
8737 | } |
8738 | ||
9ebefb18 CM |
8739 | /* |
8740 | * btrfs_page_mkwrite() is not allowed to change the file size as it gets | |
8741 | * called from a page fault handler when a page is first dirtied. Hence we must | |
8742 | * be careful to check for EOF conditions here. We set the page up correctly | |
8743 | * for a written page which means we get ENOSPC checking when writing into | |
8744 | * holes and correct delalloc and unwritten extent mapping on filesystems that | |
8745 | * support these features. | |
8746 | * | |
8747 | * We are not allowed to take the i_mutex here so we have to play games to | |
8748 | * protect against truncate races as the page could now be beyond EOF. Because | |
d1342aad OS |
8749 | * truncate_setsize() writes the inode size before removing pages, once we have |
8750 | * the page lock we can determine safely if the page is beyond EOF. If it is not | |
9ebefb18 CM |
8751 | * beyond EOF, then the page is guaranteed safe against truncation until we |
8752 | * unlock the page. | |
8753 | */ | |
a528a241 | 8754 | vm_fault_t btrfs_page_mkwrite(struct vm_fault *vmf) |
9ebefb18 | 8755 | { |
c2ec175c | 8756 | struct page *page = vmf->page; |
11bac800 | 8757 | struct inode *inode = file_inode(vmf->vma->vm_file); |
0b246afa | 8758 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
e6dcd2dc CM |
8759 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; |
8760 | struct btrfs_ordered_extent *ordered; | |
2ac55d41 | 8761 | struct extent_state *cached_state = NULL; |
364ecf36 | 8762 | struct extent_changeset *data_reserved = NULL; |
e6dcd2dc CM |
8763 | char *kaddr; |
8764 | unsigned long zero_start; | |
9ebefb18 | 8765 | loff_t size; |
a528a241 SJ |
8766 | vm_fault_t ret; |
8767 | int ret2; | |
9998eb70 | 8768 | int reserved = 0; |
d0b7da88 | 8769 | u64 reserved_space; |
a52d9a80 | 8770 | u64 page_start; |
e6dcd2dc | 8771 | u64 page_end; |
d0b7da88 CR |
8772 | u64 end; |
8773 | ||
09cbfeaf | 8774 | reserved_space = PAGE_SIZE; |
9ebefb18 | 8775 | |
b2b5ef5c | 8776 | sb_start_pagefault(inode->i_sb); |
df480633 | 8777 | page_start = page_offset(page); |
09cbfeaf | 8778 | page_end = page_start + PAGE_SIZE - 1; |
d0b7da88 | 8779 | end = page_end; |
df480633 | 8780 | |
d0b7da88 CR |
8781 | /* |
8782 | * Reserving delalloc space after obtaining the page lock can lead to | |
8783 | * deadlock. For example, if a dirty page is locked by this function | |
8784 | * and the call to btrfs_delalloc_reserve_space() ends up triggering | |
8785 | * dirty page write out, then the btrfs_writepage() function could | |
8786 | * end up waiting indefinitely to get a lock on the page currently | |
8787 | * being processed by btrfs_page_mkwrite() function. | |
8788 | */ | |
a528a241 | 8789 | ret2 = btrfs_delalloc_reserve_space(inode, &data_reserved, page_start, |
d0b7da88 | 8790 | reserved_space); |
a528a241 SJ |
8791 | if (!ret2) { |
8792 | ret2 = file_update_time(vmf->vma->vm_file); | |
9998eb70 CM |
8793 | reserved = 1; |
8794 | } | |
a528a241 SJ |
8795 | if (ret2) { |
8796 | ret = vmf_error(ret2); | |
9998eb70 CM |
8797 | if (reserved) |
8798 | goto out; | |
8799 | goto out_noreserve; | |
56a76f82 | 8800 | } |
1832a6d5 | 8801 | |
56a76f82 | 8802 | ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */ |
e6dcd2dc | 8803 | again: |
9ebefb18 | 8804 | lock_page(page); |
9ebefb18 | 8805 | size = i_size_read(inode); |
a52d9a80 | 8806 | |
9ebefb18 | 8807 | if ((page->mapping != inode->i_mapping) || |
e6dcd2dc | 8808 | (page_start >= size)) { |
9ebefb18 CM |
8809 | /* page got truncated out from underneath us */ |
8810 | goto out_unlock; | |
8811 | } | |
e6dcd2dc CM |
8812 | wait_on_page_writeback(page); |
8813 | ||
ff13db41 | 8814 | lock_extent_bits(io_tree, page_start, page_end, &cached_state); |
e6dcd2dc CM |
8815 | set_page_extent_mapped(page); |
8816 | ||
eb84ae03 CM |
8817 | /* |
8818 | * we can't set the delalloc bits if there are pending ordered | |
8819 | * extents. Drop our locks and wait for them to finish | |
8820 | */ | |
a776c6fa NB |
8821 | ordered = btrfs_lookup_ordered_range(BTRFS_I(inode), page_start, |
8822 | PAGE_SIZE); | |
e6dcd2dc | 8823 | if (ordered) { |
2ac55d41 | 8824 | unlock_extent_cached(io_tree, page_start, page_end, |
e43bbe5e | 8825 | &cached_state); |
e6dcd2dc | 8826 | unlock_page(page); |
eb84ae03 | 8827 | btrfs_start_ordered_extent(inode, ordered, 1); |
e6dcd2dc CM |
8828 | btrfs_put_ordered_extent(ordered); |
8829 | goto again; | |
8830 | } | |
8831 | ||
09cbfeaf | 8832 | if (page->index == ((size - 1) >> PAGE_SHIFT)) { |
da17066c | 8833 | reserved_space = round_up(size - page_start, |
0b246afa | 8834 | fs_info->sectorsize); |
09cbfeaf | 8835 | if (reserved_space < PAGE_SIZE) { |
d0b7da88 | 8836 | end = page_start + reserved_space - 1; |
bc42bda2 | 8837 | btrfs_delalloc_release_space(inode, data_reserved, |
43b18595 QW |
8838 | page_start, PAGE_SIZE - reserved_space, |
8839 | true); | |
d0b7da88 CR |
8840 | } |
8841 | } | |
8842 | ||
fbf19087 | 8843 | /* |
5416034f LB |
8844 | * page_mkwrite gets called when the page is firstly dirtied after it's |
8845 | * faulted in, but write(2) could also dirty a page and set delalloc | |
8846 | * bits, thus in this case for space account reason, we still need to | |
8847 | * clear any delalloc bits within this page range since we have to | |
8848 | * reserve data&meta space before lock_page() (see above comments). | |
fbf19087 | 8849 | */ |
d0b7da88 | 8850 | clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, end, |
9e8a4a8b LB |
8851 | EXTENT_DIRTY | EXTENT_DELALLOC | |
8852 | EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, | |
ae0f1625 | 8853 | 0, 0, &cached_state); |
fbf19087 | 8854 | |
a528a241 | 8855 | ret2 = btrfs_set_extent_delalloc(inode, page_start, end, 0, |
ba8b04c1 | 8856 | &cached_state, 0); |
a528a241 | 8857 | if (ret2) { |
2ac55d41 | 8858 | unlock_extent_cached(io_tree, page_start, page_end, |
e43bbe5e | 8859 | &cached_state); |
9ed74f2d JB |
8860 | ret = VM_FAULT_SIGBUS; |
8861 | goto out_unlock; | |
8862 | } | |
a528a241 | 8863 | ret2 = 0; |
9ebefb18 CM |
8864 | |
8865 | /* page is wholly or partially inside EOF */ | |
09cbfeaf | 8866 | if (page_start + PAGE_SIZE > size) |
7073017a | 8867 | zero_start = offset_in_page(size); |
9ebefb18 | 8868 | else |
09cbfeaf | 8869 | zero_start = PAGE_SIZE; |
9ebefb18 | 8870 | |
09cbfeaf | 8871 | if (zero_start != PAGE_SIZE) { |
e6dcd2dc | 8872 | kaddr = kmap(page); |
09cbfeaf | 8873 | memset(kaddr + zero_start, 0, PAGE_SIZE - zero_start); |
e6dcd2dc CM |
8874 | flush_dcache_page(page); |
8875 | kunmap(page); | |
8876 | } | |
247e743c | 8877 | ClearPageChecked(page); |
e6dcd2dc | 8878 | set_page_dirty(page); |
50a9b214 | 8879 | SetPageUptodate(page); |
5a3f23d5 | 8880 | |
0b246afa | 8881 | BTRFS_I(inode)->last_trans = fs_info->generation; |
257c62e1 | 8882 | BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid; |
46d8bc34 | 8883 | BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit; |
257c62e1 | 8884 | |
e43bbe5e | 8885 | unlock_extent_cached(io_tree, page_start, page_end, &cached_state); |
9ebefb18 | 8886 | |
a528a241 | 8887 | if (!ret2) { |
43b18595 | 8888 | btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, true); |
b2b5ef5c | 8889 | sb_end_pagefault(inode->i_sb); |
364ecf36 | 8890 | extent_changeset_free(data_reserved); |
50a9b214 | 8891 | return VM_FAULT_LOCKED; |
b2b5ef5c | 8892 | } |
717beb96 CM |
8893 | |
8894 | out_unlock: | |
9ebefb18 | 8895 | unlock_page(page); |
1832a6d5 | 8896 | out: |
43b18595 | 8897 | btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE, (ret != 0)); |
bc42bda2 | 8898 | btrfs_delalloc_release_space(inode, data_reserved, page_start, |
43b18595 | 8899 | reserved_space, (ret != 0)); |
9998eb70 | 8900 | out_noreserve: |
b2b5ef5c | 8901 | sb_end_pagefault(inode->i_sb); |
364ecf36 | 8902 | extent_changeset_free(data_reserved); |
9ebefb18 CM |
8903 | return ret; |
8904 | } | |
8905 | ||
213e8c55 | 8906 | static int btrfs_truncate(struct inode *inode, bool skip_writeback) |
39279cc3 | 8907 | { |
0b246afa | 8908 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
39279cc3 | 8909 | struct btrfs_root *root = BTRFS_I(inode)->root; |
fcb80c2a | 8910 | struct btrfs_block_rsv *rsv; |
ad7e1a74 | 8911 | int ret; |
39279cc3 | 8912 | struct btrfs_trans_handle *trans; |
0b246afa JM |
8913 | u64 mask = fs_info->sectorsize - 1; |
8914 | u64 min_size = btrfs_calc_trunc_metadata_size(fs_info, 1); | |
39279cc3 | 8915 | |
213e8c55 FM |
8916 | if (!skip_writeback) { |
8917 | ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask), | |
8918 | (u64)-1); | |
8919 | if (ret) | |
8920 | return ret; | |
8921 | } | |
39279cc3 | 8922 | |
fcb80c2a | 8923 | /* |
f7e9e8fc OS |
8924 | * Yes ladies and gentlemen, this is indeed ugly. We have a couple of |
8925 | * things going on here: | |
fcb80c2a | 8926 | * |
f7e9e8fc | 8927 | * 1) We need to reserve space to update our inode. |
fcb80c2a | 8928 | * |
f7e9e8fc | 8929 | * 2) We need to have something to cache all the space that is going to |
fcb80c2a JB |
8930 | * be free'd up by the truncate operation, but also have some slack |
8931 | * space reserved in case it uses space during the truncate (thank you | |
8932 | * very much snapshotting). | |
8933 | * | |
f7e9e8fc | 8934 | * And we need these to be separate. The fact is we can use a lot of |
fcb80c2a | 8935 | * space doing the truncate, and we have no earthly idea how much space |
01327610 | 8936 | * we will use, so we need the truncate reservation to be separate so it |
f7e9e8fc OS |
8937 | * doesn't end up using space reserved for updating the inode. We also |
8938 | * need to be able to stop the transaction and start a new one, which | |
8939 | * means we need to be able to update the inode several times, and we | |
8940 | * have no idea of knowing how many times that will be, so we can't just | |
8941 | * reserve 1 item for the entirety of the operation, so that has to be | |
8942 | * done separately as well. | |
fcb80c2a JB |
8943 | * |
8944 | * So that leaves us with | |
8945 | * | |
f7e9e8fc | 8946 | * 1) rsv - for the truncate reservation, which we will steal from the |
fcb80c2a | 8947 | * transaction reservation. |
f7e9e8fc | 8948 | * 2) fs_info->trans_block_rsv - this will have 1 items worth left for |
fcb80c2a JB |
8949 | * updating the inode. |
8950 | */ | |
2ff7e61e | 8951 | rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP); |
fcb80c2a JB |
8952 | if (!rsv) |
8953 | return -ENOMEM; | |
4a338542 | 8954 | rsv->size = min_size; |
ca7e70f5 | 8955 | rsv->failfast = 1; |
f0cd846e | 8956 | |
907cbceb | 8957 | /* |
07127184 | 8958 | * 1 for the truncate slack space |
907cbceb JB |
8959 | * 1 for updating the inode. |
8960 | */ | |
f3fe820c | 8961 | trans = btrfs_start_transaction(root, 2); |
fcb80c2a | 8962 | if (IS_ERR(trans)) { |
ad7e1a74 | 8963 | ret = PTR_ERR(trans); |
fcb80c2a JB |
8964 | goto out; |
8965 | } | |
f0cd846e | 8966 | |
907cbceb | 8967 | /* Migrate the slack space for the truncate to our reserve */ |
0b246afa | 8968 | ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv, |
3a584174 | 8969 | min_size, false); |
fcb80c2a | 8970 | BUG_ON(ret); |
f0cd846e | 8971 | |
5dc562c5 JB |
8972 | /* |
8973 | * So if we truncate and then write and fsync we normally would just | |
8974 | * write the extents that changed, which is a problem if we need to | |
8975 | * first truncate that entire inode. So set this flag so we write out | |
8976 | * all of the extents in the inode to the sync log so we're completely | |
8977 | * safe. | |
8978 | */ | |
8979 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags); | |
ca7e70f5 | 8980 | trans->block_rsv = rsv; |
907cbceb | 8981 | |
8082510e YZ |
8982 | while (1) { |
8983 | ret = btrfs_truncate_inode_items(trans, root, inode, | |
8984 | inode->i_size, | |
8985 | BTRFS_EXTENT_DATA_KEY); | |
ddfae63c | 8986 | trans->block_rsv = &fs_info->trans_block_rsv; |
ad7e1a74 | 8987 | if (ret != -ENOSPC && ret != -EAGAIN) |
8082510e | 8988 | break; |
39279cc3 | 8989 | |
8082510e | 8990 | ret = btrfs_update_inode(trans, root, inode); |
ad7e1a74 | 8991 | if (ret) |
3893e33b | 8992 | break; |
ca7e70f5 | 8993 | |
3a45bb20 | 8994 | btrfs_end_transaction(trans); |
2ff7e61e | 8995 | btrfs_btree_balance_dirty(fs_info); |
ca7e70f5 JB |
8996 | |
8997 | trans = btrfs_start_transaction(root, 2); | |
8998 | if (IS_ERR(trans)) { | |
ad7e1a74 | 8999 | ret = PTR_ERR(trans); |
ca7e70f5 JB |
9000 | trans = NULL; |
9001 | break; | |
9002 | } | |
9003 | ||
47b5d646 | 9004 | btrfs_block_rsv_release(fs_info, rsv, -1); |
0b246afa | 9005 | ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, |
3a584174 | 9006 | rsv, min_size, false); |
ca7e70f5 JB |
9007 | BUG_ON(ret); /* shouldn't happen */ |
9008 | trans->block_rsv = rsv; | |
8082510e YZ |
9009 | } |
9010 | ||
ddfae63c JB |
9011 | /* |
9012 | * We can't call btrfs_truncate_block inside a trans handle as we could | |
9013 | * deadlock with freeze, if we got NEED_TRUNCATE_BLOCK then we know | |
9014 | * we've truncated everything except the last little bit, and can do | |
9015 | * btrfs_truncate_block and then update the disk_i_size. | |
9016 | */ | |
9017 | if (ret == NEED_TRUNCATE_BLOCK) { | |
9018 | btrfs_end_transaction(trans); | |
9019 | btrfs_btree_balance_dirty(fs_info); | |
9020 | ||
9021 | ret = btrfs_truncate_block(inode, inode->i_size, 0, 0); | |
9022 | if (ret) | |
9023 | goto out; | |
9024 | trans = btrfs_start_transaction(root, 1); | |
9025 | if (IS_ERR(trans)) { | |
9026 | ret = PTR_ERR(trans); | |
9027 | goto out; | |
9028 | } | |
9029 | btrfs_ordered_update_i_size(inode, inode->i_size, NULL); | |
9030 | } | |
9031 | ||
917c16b2 | 9032 | if (trans) { |
ad7e1a74 OS |
9033 | int ret2; |
9034 | ||
0b246afa | 9035 | trans->block_rsv = &fs_info->trans_block_rsv; |
ad7e1a74 OS |
9036 | ret2 = btrfs_update_inode(trans, root, inode); |
9037 | if (ret2 && !ret) | |
9038 | ret = ret2; | |
7b128766 | 9039 | |
ad7e1a74 OS |
9040 | ret2 = btrfs_end_transaction(trans); |
9041 | if (ret2 && !ret) | |
9042 | ret = ret2; | |
2ff7e61e | 9043 | btrfs_btree_balance_dirty(fs_info); |
917c16b2 | 9044 | } |
fcb80c2a | 9045 | out: |
2ff7e61e | 9046 | btrfs_free_block_rsv(fs_info, rsv); |
fcb80c2a | 9047 | |
ad7e1a74 | 9048 | return ret; |
39279cc3 CM |
9049 | } |
9050 | ||
d352ac68 CM |
9051 | /* |
9052 | * create a new subvolume directory/inode (helper for the ioctl). | |
9053 | */ | |
d2fb3437 | 9054 | int btrfs_create_subvol_root(struct btrfs_trans_handle *trans, |
63541927 FDBM |
9055 | struct btrfs_root *new_root, |
9056 | struct btrfs_root *parent_root, | |
9057 | u64 new_dirid) | |
39279cc3 | 9058 | { |
39279cc3 | 9059 | struct inode *inode; |
76dda93c | 9060 | int err; |
00e4e6b3 | 9061 | u64 index = 0; |
39279cc3 | 9062 | |
12fc9d09 FA |
9063 | inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, |
9064 | new_dirid, new_dirid, | |
9065 | S_IFDIR | (~current_umask() & S_IRWXUGO), | |
9066 | &index); | |
54aa1f4d | 9067 | if (IS_ERR(inode)) |
f46b5a66 | 9068 | return PTR_ERR(inode); |
39279cc3 CM |
9069 | inode->i_op = &btrfs_dir_inode_operations; |
9070 | inode->i_fop = &btrfs_dir_file_operations; | |
9071 | ||
bfe86848 | 9072 | set_nlink(inode, 1); |
6ef06d27 | 9073 | btrfs_i_size_write(BTRFS_I(inode), 0); |
b0d5d10f | 9074 | unlock_new_inode(inode); |
3b96362c | 9075 | |
63541927 FDBM |
9076 | err = btrfs_subvol_inherit_props(trans, new_root, parent_root); |
9077 | if (err) | |
9078 | btrfs_err(new_root->fs_info, | |
351fd353 | 9079 | "error inheriting subvolume %llu properties: %d", |
63541927 FDBM |
9080 | new_root->root_key.objectid, err); |
9081 | ||
76dda93c | 9082 | err = btrfs_update_inode(trans, new_root, inode); |
cb8e7090 | 9083 | |
76dda93c | 9084 | iput(inode); |
ce598979 | 9085 | return err; |
39279cc3 CM |
9086 | } |
9087 | ||
39279cc3 CM |
9088 | struct inode *btrfs_alloc_inode(struct super_block *sb) |
9089 | { | |
69fe2d75 | 9090 | struct btrfs_fs_info *fs_info = btrfs_sb(sb); |
39279cc3 | 9091 | struct btrfs_inode *ei; |
2ead6ae7 | 9092 | struct inode *inode; |
39279cc3 | 9093 | |
712e36c5 | 9094 | ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_KERNEL); |
39279cc3 CM |
9095 | if (!ei) |
9096 | return NULL; | |
2ead6ae7 YZ |
9097 | |
9098 | ei->root = NULL; | |
2ead6ae7 | 9099 | ei->generation = 0; |
15ee9bc7 | 9100 | ei->last_trans = 0; |
257c62e1 | 9101 | ei->last_sub_trans = 0; |
e02119d5 | 9102 | ei->logged_trans = 0; |
2ead6ae7 | 9103 | ei->delalloc_bytes = 0; |
a7e3b975 | 9104 | ei->new_delalloc_bytes = 0; |
47059d93 | 9105 | ei->defrag_bytes = 0; |
2ead6ae7 YZ |
9106 | ei->disk_i_size = 0; |
9107 | ei->flags = 0; | |
7709cde3 | 9108 | ei->csum_bytes = 0; |
2ead6ae7 | 9109 | ei->index_cnt = (u64)-1; |
67de1176 | 9110 | ei->dir_index = 0; |
2ead6ae7 | 9111 | ei->last_unlink_trans = 0; |
41bd6067 | 9112 | ei->last_link_trans = 0; |
46d8bc34 | 9113 | ei->last_log_commit = 0; |
2ead6ae7 | 9114 | |
9e0baf60 JB |
9115 | spin_lock_init(&ei->lock); |
9116 | ei->outstanding_extents = 0; | |
69fe2d75 JB |
9117 | if (sb->s_magic != BTRFS_TEST_MAGIC) |
9118 | btrfs_init_metadata_block_rsv(fs_info, &ei->block_rsv, | |
9119 | BTRFS_BLOCK_RSV_DELALLOC); | |
72ac3c0d | 9120 | ei->runtime_flags = 0; |
b52aa8c9 | 9121 | ei->prop_compress = BTRFS_COMPRESS_NONE; |
eec63c65 | 9122 | ei->defrag_compress = BTRFS_COMPRESS_NONE; |
2ead6ae7 | 9123 | |
16cdcec7 MX |
9124 | ei->delayed_node = NULL; |
9125 | ||
9cc97d64 | 9126 | ei->i_otime.tv_sec = 0; |
9127 | ei->i_otime.tv_nsec = 0; | |
9128 | ||
2ead6ae7 | 9129 | inode = &ei->vfs_inode; |
a8067e02 | 9130 | extent_map_tree_init(&ei->extent_tree); |
c6100a4b JB |
9131 | extent_io_tree_init(&ei->io_tree, inode); |
9132 | extent_io_tree_init(&ei->io_failure_tree, inode); | |
0b32f4bb JB |
9133 | ei->io_tree.track_uptodate = 1; |
9134 | ei->io_failure_tree.track_uptodate = 1; | |
b812ce28 | 9135 | atomic_set(&ei->sync_writers, 0); |
2ead6ae7 | 9136 | mutex_init(&ei->log_mutex); |
f248679e | 9137 | mutex_init(&ei->delalloc_mutex); |
e6dcd2dc | 9138 | btrfs_ordered_inode_tree_init(&ei->ordered_tree); |
2ead6ae7 | 9139 | INIT_LIST_HEAD(&ei->delalloc_inodes); |
8089fe62 | 9140 | INIT_LIST_HEAD(&ei->delayed_iput); |
2ead6ae7 | 9141 | RB_CLEAR_NODE(&ei->rb_node); |
5f9a8a51 | 9142 | init_rwsem(&ei->dio_sem); |
2ead6ae7 YZ |
9143 | |
9144 | return inode; | |
39279cc3 CM |
9145 | } |
9146 | ||
aaedb55b JB |
9147 | #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS |
9148 | void btrfs_test_destroy_inode(struct inode *inode) | |
9149 | { | |
dcdbc059 | 9150 | btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0); |
aaedb55b JB |
9151 | kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode)); |
9152 | } | |
9153 | #endif | |
9154 | ||
fa0d7e3d NP |
9155 | static void btrfs_i_callback(struct rcu_head *head) |
9156 | { | |
9157 | struct inode *inode = container_of(head, struct inode, i_rcu); | |
fa0d7e3d NP |
9158 | kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode)); |
9159 | } | |
9160 | ||
39279cc3 CM |
9161 | void btrfs_destroy_inode(struct inode *inode) |
9162 | { | |
0b246afa | 9163 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
e6dcd2dc | 9164 | struct btrfs_ordered_extent *ordered; |
5a3f23d5 CM |
9165 | struct btrfs_root *root = BTRFS_I(inode)->root; |
9166 | ||
b3d9b7a3 | 9167 | WARN_ON(!hlist_empty(&inode->i_dentry)); |
39279cc3 | 9168 | WARN_ON(inode->i_data.nrpages); |
69fe2d75 JB |
9169 | WARN_ON(BTRFS_I(inode)->block_rsv.reserved); |
9170 | WARN_ON(BTRFS_I(inode)->block_rsv.size); | |
9e0baf60 | 9171 | WARN_ON(BTRFS_I(inode)->outstanding_extents); |
7709cde3 | 9172 | WARN_ON(BTRFS_I(inode)->delalloc_bytes); |
a7e3b975 | 9173 | WARN_ON(BTRFS_I(inode)->new_delalloc_bytes); |
7709cde3 | 9174 | WARN_ON(BTRFS_I(inode)->csum_bytes); |
47059d93 | 9175 | WARN_ON(BTRFS_I(inode)->defrag_bytes); |
39279cc3 | 9176 | |
a6dbd429 JB |
9177 | /* |
9178 | * This can happen where we create an inode, but somebody else also | |
9179 | * created the same inode and we need to destroy the one we already | |
9180 | * created. | |
9181 | */ | |
9182 | if (!root) | |
9183 | goto free; | |
9184 | ||
d397712b | 9185 | while (1) { |
e6dcd2dc CM |
9186 | ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1); |
9187 | if (!ordered) | |
9188 | break; | |
9189 | else { | |
0b246afa | 9190 | btrfs_err(fs_info, |
5d163e0e JM |
9191 | "found ordered extent %llu %llu on inode cleanup", |
9192 | ordered->file_offset, ordered->len); | |
e6dcd2dc CM |
9193 | btrfs_remove_ordered_extent(inode, ordered); |
9194 | btrfs_put_ordered_extent(ordered); | |
9195 | btrfs_put_ordered_extent(ordered); | |
9196 | } | |
9197 | } | |
56fa9d07 | 9198 | btrfs_qgroup_check_reserved_leak(inode); |
5d4f98a2 | 9199 | inode_tree_del(inode); |
dcdbc059 | 9200 | btrfs_drop_extent_cache(BTRFS_I(inode), 0, (u64)-1, 0); |
a6dbd429 | 9201 | free: |
fa0d7e3d | 9202 | call_rcu(&inode->i_rcu, btrfs_i_callback); |
39279cc3 CM |
9203 | } |
9204 | ||
45321ac5 | 9205 | int btrfs_drop_inode(struct inode *inode) |
76dda93c YZ |
9206 | { |
9207 | struct btrfs_root *root = BTRFS_I(inode)->root; | |
45321ac5 | 9208 | |
6379ef9f NA |
9209 | if (root == NULL) |
9210 | return 1; | |
9211 | ||
fa6ac876 | 9212 | /* the snap/subvol tree is on deleting */ |
69e9c6c6 | 9213 | if (btrfs_root_refs(&root->root_item) == 0) |
45321ac5 | 9214 | return 1; |
76dda93c | 9215 | else |
45321ac5 | 9216 | return generic_drop_inode(inode); |
76dda93c YZ |
9217 | } |
9218 | ||
0ee0fda0 | 9219 | static void init_once(void *foo) |
39279cc3 CM |
9220 | { |
9221 | struct btrfs_inode *ei = (struct btrfs_inode *) foo; | |
9222 | ||
9223 | inode_init_once(&ei->vfs_inode); | |
9224 | } | |
9225 | ||
e67c718b | 9226 | void __cold btrfs_destroy_cachep(void) |
39279cc3 | 9227 | { |
8c0a8537 KS |
9228 | /* |
9229 | * Make sure all delayed rcu free inodes are flushed before we | |
9230 | * destroy cache. | |
9231 | */ | |
9232 | rcu_barrier(); | |
5598e900 KM |
9233 | kmem_cache_destroy(btrfs_inode_cachep); |
9234 | kmem_cache_destroy(btrfs_trans_handle_cachep); | |
5598e900 KM |
9235 | kmem_cache_destroy(btrfs_path_cachep); |
9236 | kmem_cache_destroy(btrfs_free_space_cachep); | |
39279cc3 CM |
9237 | } |
9238 | ||
f5c29bd9 | 9239 | int __init btrfs_init_cachep(void) |
39279cc3 | 9240 | { |
837e1972 | 9241 | btrfs_inode_cachep = kmem_cache_create("btrfs_inode", |
9601e3f6 | 9242 | sizeof(struct btrfs_inode), 0, |
5d097056 VD |
9243 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT, |
9244 | init_once); | |
39279cc3 CM |
9245 | if (!btrfs_inode_cachep) |
9246 | goto fail; | |
9601e3f6 | 9247 | |
837e1972 | 9248 | btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle", |
9601e3f6 | 9249 | sizeof(struct btrfs_trans_handle), 0, |
fba4b697 | 9250 | SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL); |
39279cc3 CM |
9251 | if (!btrfs_trans_handle_cachep) |
9252 | goto fail; | |
9601e3f6 | 9253 | |
837e1972 | 9254 | btrfs_path_cachep = kmem_cache_create("btrfs_path", |
9601e3f6 | 9255 | sizeof(struct btrfs_path), 0, |
fba4b697 | 9256 | SLAB_MEM_SPREAD, NULL); |
39279cc3 CM |
9257 | if (!btrfs_path_cachep) |
9258 | goto fail; | |
9601e3f6 | 9259 | |
837e1972 | 9260 | btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space", |
dc89e982 | 9261 | sizeof(struct btrfs_free_space), 0, |
fba4b697 | 9262 | SLAB_MEM_SPREAD, NULL); |
dc89e982 JB |
9263 | if (!btrfs_free_space_cachep) |
9264 | goto fail; | |
9265 | ||
39279cc3 CM |
9266 | return 0; |
9267 | fail: | |
9268 | btrfs_destroy_cachep(); | |
9269 | return -ENOMEM; | |
9270 | } | |
9271 | ||
a528d35e DH |
9272 | static int btrfs_getattr(const struct path *path, struct kstat *stat, |
9273 | u32 request_mask, unsigned int flags) | |
39279cc3 | 9274 | { |
df0af1a5 | 9275 | u64 delalloc_bytes; |
a528d35e | 9276 | struct inode *inode = d_inode(path->dentry); |
fadc0d8b | 9277 | u32 blocksize = inode->i_sb->s_blocksize; |
04a87e34 YS |
9278 | u32 bi_flags = BTRFS_I(inode)->flags; |
9279 | ||
9280 | stat->result_mask |= STATX_BTIME; | |
9281 | stat->btime.tv_sec = BTRFS_I(inode)->i_otime.tv_sec; | |
9282 | stat->btime.tv_nsec = BTRFS_I(inode)->i_otime.tv_nsec; | |
9283 | if (bi_flags & BTRFS_INODE_APPEND) | |
9284 | stat->attributes |= STATX_ATTR_APPEND; | |
9285 | if (bi_flags & BTRFS_INODE_COMPRESS) | |
9286 | stat->attributes |= STATX_ATTR_COMPRESSED; | |
9287 | if (bi_flags & BTRFS_INODE_IMMUTABLE) | |
9288 | stat->attributes |= STATX_ATTR_IMMUTABLE; | |
9289 | if (bi_flags & BTRFS_INODE_NODUMP) | |
9290 | stat->attributes |= STATX_ATTR_NODUMP; | |
9291 | ||
9292 | stat->attributes_mask |= (STATX_ATTR_APPEND | | |
9293 | STATX_ATTR_COMPRESSED | | |
9294 | STATX_ATTR_IMMUTABLE | | |
9295 | STATX_ATTR_NODUMP); | |
fadc0d8b | 9296 | |
39279cc3 | 9297 | generic_fillattr(inode, stat); |
0ee5dc67 | 9298 | stat->dev = BTRFS_I(inode)->root->anon_dev; |
df0af1a5 MX |
9299 | |
9300 | spin_lock(&BTRFS_I(inode)->lock); | |
a7e3b975 | 9301 | delalloc_bytes = BTRFS_I(inode)->new_delalloc_bytes; |
df0af1a5 | 9302 | spin_unlock(&BTRFS_I(inode)->lock); |
fadc0d8b | 9303 | stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) + |
df0af1a5 | 9304 | ALIGN(delalloc_bytes, blocksize)) >> 9; |
39279cc3 CM |
9305 | return 0; |
9306 | } | |
9307 | ||
cdd1fedf DF |
9308 | static int btrfs_rename_exchange(struct inode *old_dir, |
9309 | struct dentry *old_dentry, | |
9310 | struct inode *new_dir, | |
9311 | struct dentry *new_dentry) | |
9312 | { | |
0b246afa | 9313 | struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb); |
cdd1fedf DF |
9314 | struct btrfs_trans_handle *trans; |
9315 | struct btrfs_root *root = BTRFS_I(old_dir)->root; | |
9316 | struct btrfs_root *dest = BTRFS_I(new_dir)->root; | |
9317 | struct inode *new_inode = new_dentry->d_inode; | |
9318 | struct inode *old_inode = old_dentry->d_inode; | |
95582b00 | 9319 | struct timespec64 ctime = current_time(old_inode); |
cdd1fedf | 9320 | struct dentry *parent; |
4a0cc7ca NB |
9321 | u64 old_ino = btrfs_ino(BTRFS_I(old_inode)); |
9322 | u64 new_ino = btrfs_ino(BTRFS_I(new_inode)); | |
cdd1fedf DF |
9323 | u64 old_idx = 0; |
9324 | u64 new_idx = 0; | |
9325 | u64 root_objectid; | |
9326 | int ret; | |
86e8aa0e FM |
9327 | bool root_log_pinned = false; |
9328 | bool dest_log_pinned = false; | |
d4682ba0 FM |
9329 | struct btrfs_log_ctx ctx_root; |
9330 | struct btrfs_log_ctx ctx_dest; | |
9331 | bool sync_log_root = false; | |
9332 | bool sync_log_dest = false; | |
9333 | bool commit_transaction = false; | |
cdd1fedf DF |
9334 | |
9335 | /* we only allow rename subvolume link between subvolumes */ | |
9336 | if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest) | |
9337 | return -EXDEV; | |
9338 | ||
d4682ba0 FM |
9339 | btrfs_init_log_ctx(&ctx_root, old_inode); |
9340 | btrfs_init_log_ctx(&ctx_dest, new_inode); | |
9341 | ||
cdd1fedf DF |
9342 | /* close the race window with snapshot create/destroy ioctl */ |
9343 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) | |
0b246afa | 9344 | down_read(&fs_info->subvol_sem); |
cdd1fedf | 9345 | if (new_ino == BTRFS_FIRST_FREE_OBJECTID) |
0b246afa | 9346 | down_read(&fs_info->subvol_sem); |
cdd1fedf DF |
9347 | |
9348 | /* | |
9349 | * We want to reserve the absolute worst case amount of items. So if | |
9350 | * both inodes are subvols and we need to unlink them then that would | |
9351 | * require 4 item modifications, but if they are both normal inodes it | |
9352 | * would require 5 item modifications, so we'll assume their normal | |
9353 | * inodes. So 5 * 2 is 10, plus 2 for the new links, so 12 total items | |
9354 | * should cover the worst case number of items we'll modify. | |
9355 | */ | |
9356 | trans = btrfs_start_transaction(root, 12); | |
9357 | if (IS_ERR(trans)) { | |
9358 | ret = PTR_ERR(trans); | |
9359 | goto out_notrans; | |
9360 | } | |
9361 | ||
9362 | /* | |
9363 | * We need to find a free sequence number both in the source and | |
9364 | * in the destination directory for the exchange. | |
9365 | */ | |
877574e2 | 9366 | ret = btrfs_set_inode_index(BTRFS_I(new_dir), &old_idx); |
cdd1fedf DF |
9367 | if (ret) |
9368 | goto out_fail; | |
877574e2 | 9369 | ret = btrfs_set_inode_index(BTRFS_I(old_dir), &new_idx); |
cdd1fedf DF |
9370 | if (ret) |
9371 | goto out_fail; | |
9372 | ||
9373 | BTRFS_I(old_inode)->dir_index = 0ULL; | |
9374 | BTRFS_I(new_inode)->dir_index = 0ULL; | |
9375 | ||
9376 | /* Reference for the source. */ | |
9377 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) { | |
9378 | /* force full log commit if subvolume involved. */ | |
0b246afa | 9379 | btrfs_set_log_full_commit(fs_info, trans); |
cdd1fedf | 9380 | } else { |
376e5a57 FM |
9381 | btrfs_pin_log_trans(root); |
9382 | root_log_pinned = true; | |
cdd1fedf DF |
9383 | ret = btrfs_insert_inode_ref(trans, dest, |
9384 | new_dentry->d_name.name, | |
9385 | new_dentry->d_name.len, | |
9386 | old_ino, | |
f85b7379 DS |
9387 | btrfs_ino(BTRFS_I(new_dir)), |
9388 | old_idx); | |
cdd1fedf DF |
9389 | if (ret) |
9390 | goto out_fail; | |
cdd1fedf DF |
9391 | } |
9392 | ||
9393 | /* And now for the dest. */ | |
9394 | if (new_ino == BTRFS_FIRST_FREE_OBJECTID) { | |
9395 | /* force full log commit if subvolume involved. */ | |
0b246afa | 9396 | btrfs_set_log_full_commit(fs_info, trans); |
cdd1fedf | 9397 | } else { |
376e5a57 FM |
9398 | btrfs_pin_log_trans(dest); |
9399 | dest_log_pinned = true; | |
cdd1fedf DF |
9400 | ret = btrfs_insert_inode_ref(trans, root, |
9401 | old_dentry->d_name.name, | |
9402 | old_dentry->d_name.len, | |
9403 | new_ino, | |
f85b7379 DS |
9404 | btrfs_ino(BTRFS_I(old_dir)), |
9405 | new_idx); | |
cdd1fedf DF |
9406 | if (ret) |
9407 | goto out_fail; | |
cdd1fedf DF |
9408 | } |
9409 | ||
9410 | /* Update inode version and ctime/mtime. */ | |
9411 | inode_inc_iversion(old_dir); | |
9412 | inode_inc_iversion(new_dir); | |
9413 | inode_inc_iversion(old_inode); | |
9414 | inode_inc_iversion(new_inode); | |
9415 | old_dir->i_ctime = old_dir->i_mtime = ctime; | |
9416 | new_dir->i_ctime = new_dir->i_mtime = ctime; | |
9417 | old_inode->i_ctime = ctime; | |
9418 | new_inode->i_ctime = ctime; | |
9419 | ||
9420 | if (old_dentry->d_parent != new_dentry->d_parent) { | |
f85b7379 DS |
9421 | btrfs_record_unlink_dir(trans, BTRFS_I(old_dir), |
9422 | BTRFS_I(old_inode), 1); | |
9423 | btrfs_record_unlink_dir(trans, BTRFS_I(new_dir), | |
9424 | BTRFS_I(new_inode), 1); | |
cdd1fedf DF |
9425 | } |
9426 | ||
9427 | /* src is a subvolume */ | |
9428 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) { | |
9429 | root_objectid = BTRFS_I(old_inode)->root->root_key.objectid; | |
401b3b19 | 9430 | ret = btrfs_unlink_subvol(trans, old_dir, root_objectid, |
cdd1fedf DF |
9431 | old_dentry->d_name.name, |
9432 | old_dentry->d_name.len); | |
9433 | } else { /* src is an inode */ | |
4ec5934e NB |
9434 | ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir), |
9435 | BTRFS_I(old_dentry->d_inode), | |
cdd1fedf DF |
9436 | old_dentry->d_name.name, |
9437 | old_dentry->d_name.len); | |
9438 | if (!ret) | |
9439 | ret = btrfs_update_inode(trans, root, old_inode); | |
9440 | } | |
9441 | if (ret) { | |
66642832 | 9442 | btrfs_abort_transaction(trans, ret); |
cdd1fedf DF |
9443 | goto out_fail; |
9444 | } | |
9445 | ||
9446 | /* dest is a subvolume */ | |
9447 | if (new_ino == BTRFS_FIRST_FREE_OBJECTID) { | |
9448 | root_objectid = BTRFS_I(new_inode)->root->root_key.objectid; | |
401b3b19 | 9449 | ret = btrfs_unlink_subvol(trans, new_dir, root_objectid, |
cdd1fedf DF |
9450 | new_dentry->d_name.name, |
9451 | new_dentry->d_name.len); | |
9452 | } else { /* dest is an inode */ | |
4ec5934e NB |
9453 | ret = __btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir), |
9454 | BTRFS_I(new_dentry->d_inode), | |
cdd1fedf DF |
9455 | new_dentry->d_name.name, |
9456 | new_dentry->d_name.len); | |
9457 | if (!ret) | |
9458 | ret = btrfs_update_inode(trans, dest, new_inode); | |
9459 | } | |
9460 | if (ret) { | |
66642832 | 9461 | btrfs_abort_transaction(trans, ret); |
cdd1fedf DF |
9462 | goto out_fail; |
9463 | } | |
9464 | ||
db0a669f | 9465 | ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode), |
cdd1fedf DF |
9466 | new_dentry->d_name.name, |
9467 | new_dentry->d_name.len, 0, old_idx); | |
9468 | if (ret) { | |
66642832 | 9469 | btrfs_abort_transaction(trans, ret); |
cdd1fedf DF |
9470 | goto out_fail; |
9471 | } | |
9472 | ||
db0a669f | 9473 | ret = btrfs_add_link(trans, BTRFS_I(old_dir), BTRFS_I(new_inode), |
cdd1fedf DF |
9474 | old_dentry->d_name.name, |
9475 | old_dentry->d_name.len, 0, new_idx); | |
9476 | if (ret) { | |
66642832 | 9477 | btrfs_abort_transaction(trans, ret); |
cdd1fedf DF |
9478 | goto out_fail; |
9479 | } | |
9480 | ||
9481 | if (old_inode->i_nlink == 1) | |
9482 | BTRFS_I(old_inode)->dir_index = old_idx; | |
9483 | if (new_inode->i_nlink == 1) | |
9484 | BTRFS_I(new_inode)->dir_index = new_idx; | |
9485 | ||
86e8aa0e | 9486 | if (root_log_pinned) { |
cdd1fedf | 9487 | parent = new_dentry->d_parent; |
d4682ba0 FM |
9488 | ret = btrfs_log_new_name(trans, BTRFS_I(old_inode), |
9489 | BTRFS_I(old_dir), parent, | |
9490 | false, &ctx_root); | |
9491 | if (ret == BTRFS_NEED_LOG_SYNC) | |
9492 | sync_log_root = true; | |
9493 | else if (ret == BTRFS_NEED_TRANS_COMMIT) | |
9494 | commit_transaction = true; | |
9495 | ret = 0; | |
cdd1fedf | 9496 | btrfs_end_log_trans(root); |
86e8aa0e | 9497 | root_log_pinned = false; |
cdd1fedf | 9498 | } |
86e8aa0e | 9499 | if (dest_log_pinned) { |
d4682ba0 FM |
9500 | if (!commit_transaction) { |
9501 | parent = old_dentry->d_parent; | |
9502 | ret = btrfs_log_new_name(trans, BTRFS_I(new_inode), | |
9503 | BTRFS_I(new_dir), parent, | |
9504 | false, &ctx_dest); | |
9505 | if (ret == BTRFS_NEED_LOG_SYNC) | |
9506 | sync_log_dest = true; | |
9507 | else if (ret == BTRFS_NEED_TRANS_COMMIT) | |
9508 | commit_transaction = true; | |
9509 | ret = 0; | |
9510 | } | |
cdd1fedf | 9511 | btrfs_end_log_trans(dest); |
86e8aa0e | 9512 | dest_log_pinned = false; |
cdd1fedf DF |
9513 | } |
9514 | out_fail: | |
86e8aa0e FM |
9515 | /* |
9516 | * If we have pinned a log and an error happened, we unpin tasks | |
9517 | * trying to sync the log and force them to fallback to a transaction | |
9518 | * commit if the log currently contains any of the inodes involved in | |
9519 | * this rename operation (to ensure we do not persist a log with an | |
9520 | * inconsistent state for any of these inodes or leading to any | |
9521 | * inconsistencies when replayed). If the transaction was aborted, the | |
9522 | * abortion reason is propagated to userspace when attempting to commit | |
9523 | * the transaction. If the log does not contain any of these inodes, we | |
9524 | * allow the tasks to sync it. | |
9525 | */ | |
9526 | if (ret && (root_log_pinned || dest_log_pinned)) { | |
0f8939b8 NB |
9527 | if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) || |
9528 | btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) || | |
9529 | btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) || | |
86e8aa0e | 9530 | (new_inode && |
0f8939b8 | 9531 | btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation))) |
0b246afa | 9532 | btrfs_set_log_full_commit(fs_info, trans); |
86e8aa0e FM |
9533 | |
9534 | if (root_log_pinned) { | |
9535 | btrfs_end_log_trans(root); | |
9536 | root_log_pinned = false; | |
9537 | } | |
9538 | if (dest_log_pinned) { | |
9539 | btrfs_end_log_trans(dest); | |
9540 | dest_log_pinned = false; | |
9541 | } | |
9542 | } | |
d4682ba0 FM |
9543 | if (!ret && sync_log_root && !commit_transaction) { |
9544 | ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root, | |
9545 | &ctx_root); | |
9546 | if (ret) | |
9547 | commit_transaction = true; | |
9548 | } | |
9549 | if (!ret && sync_log_dest && !commit_transaction) { | |
9550 | ret = btrfs_sync_log(trans, BTRFS_I(new_inode)->root, | |
9551 | &ctx_dest); | |
9552 | if (ret) | |
9553 | commit_transaction = true; | |
9554 | } | |
9555 | if (commit_transaction) { | |
9556 | ret = btrfs_commit_transaction(trans); | |
9557 | } else { | |
9558 | int ret2; | |
9559 | ||
9560 | ret2 = btrfs_end_transaction(trans); | |
9561 | ret = ret ? ret : ret2; | |
9562 | } | |
cdd1fedf DF |
9563 | out_notrans: |
9564 | if (new_ino == BTRFS_FIRST_FREE_OBJECTID) | |
0b246afa | 9565 | up_read(&fs_info->subvol_sem); |
cdd1fedf | 9566 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) |
0b246afa | 9567 | up_read(&fs_info->subvol_sem); |
cdd1fedf DF |
9568 | |
9569 | return ret; | |
9570 | } | |
9571 | ||
9572 | static int btrfs_whiteout_for_rename(struct btrfs_trans_handle *trans, | |
9573 | struct btrfs_root *root, | |
9574 | struct inode *dir, | |
9575 | struct dentry *dentry) | |
9576 | { | |
9577 | int ret; | |
9578 | struct inode *inode; | |
9579 | u64 objectid; | |
9580 | u64 index; | |
9581 | ||
9582 | ret = btrfs_find_free_ino(root, &objectid); | |
9583 | if (ret) | |
9584 | return ret; | |
9585 | ||
9586 | inode = btrfs_new_inode(trans, root, dir, | |
9587 | dentry->d_name.name, | |
9588 | dentry->d_name.len, | |
4a0cc7ca | 9589 | btrfs_ino(BTRFS_I(dir)), |
cdd1fedf DF |
9590 | objectid, |
9591 | S_IFCHR | WHITEOUT_MODE, | |
9592 | &index); | |
9593 | ||
9594 | if (IS_ERR(inode)) { | |
9595 | ret = PTR_ERR(inode); | |
9596 | return ret; | |
9597 | } | |
9598 | ||
9599 | inode->i_op = &btrfs_special_inode_operations; | |
9600 | init_special_inode(inode, inode->i_mode, | |
9601 | WHITEOUT_DEV); | |
9602 | ||
9603 | ret = btrfs_init_inode_security(trans, inode, dir, | |
9604 | &dentry->d_name); | |
9605 | if (ret) | |
c9901618 | 9606 | goto out; |
cdd1fedf | 9607 | |
cef415af NB |
9608 | ret = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, |
9609 | BTRFS_I(inode), 0, index); | |
cdd1fedf | 9610 | if (ret) |
c9901618 | 9611 | goto out; |
cdd1fedf DF |
9612 | |
9613 | ret = btrfs_update_inode(trans, root, inode); | |
c9901618 | 9614 | out: |
cdd1fedf | 9615 | unlock_new_inode(inode); |
c9901618 FM |
9616 | if (ret) |
9617 | inode_dec_link_count(inode); | |
cdd1fedf DF |
9618 | iput(inode); |
9619 | ||
c9901618 | 9620 | return ret; |
cdd1fedf DF |
9621 | } |
9622 | ||
d397712b | 9623 | static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry, |
cdd1fedf DF |
9624 | struct inode *new_dir, struct dentry *new_dentry, |
9625 | unsigned int flags) | |
39279cc3 | 9626 | { |
0b246afa | 9627 | struct btrfs_fs_info *fs_info = btrfs_sb(old_dir->i_sb); |
39279cc3 | 9628 | struct btrfs_trans_handle *trans; |
5062af35 | 9629 | unsigned int trans_num_items; |
39279cc3 | 9630 | struct btrfs_root *root = BTRFS_I(old_dir)->root; |
4df27c4d | 9631 | struct btrfs_root *dest = BTRFS_I(new_dir)->root; |
2b0143b5 DH |
9632 | struct inode *new_inode = d_inode(new_dentry); |
9633 | struct inode *old_inode = d_inode(old_dentry); | |
00e4e6b3 | 9634 | u64 index = 0; |
4df27c4d | 9635 | u64 root_objectid; |
39279cc3 | 9636 | int ret; |
4a0cc7ca | 9637 | u64 old_ino = btrfs_ino(BTRFS_I(old_inode)); |
3dc9e8f7 | 9638 | bool log_pinned = false; |
d4682ba0 FM |
9639 | struct btrfs_log_ctx ctx; |
9640 | bool sync_log = false; | |
9641 | bool commit_transaction = false; | |
39279cc3 | 9642 | |
4a0cc7ca | 9643 | if (btrfs_ino(BTRFS_I(new_dir)) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID) |
f679a840 YZ |
9644 | return -EPERM; |
9645 | ||
4df27c4d | 9646 | /* we only allow rename subvolume link between subvolumes */ |
33345d01 | 9647 | if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest) |
3394e160 CM |
9648 | return -EXDEV; |
9649 | ||
33345d01 | 9650 | if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID || |
4a0cc7ca | 9651 | (new_inode && btrfs_ino(BTRFS_I(new_inode)) == BTRFS_FIRST_FREE_OBJECTID)) |
39279cc3 | 9652 | return -ENOTEMPTY; |
5f39d397 | 9653 | |
4df27c4d YZ |
9654 | if (S_ISDIR(old_inode->i_mode) && new_inode && |
9655 | new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) | |
9656 | return -ENOTEMPTY; | |
9c52057c CM |
9657 | |
9658 | ||
9659 | /* check for collisions, even if the name isn't there */ | |
4871c158 | 9660 | ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino, |
9c52057c CM |
9661 | new_dentry->d_name.name, |
9662 | new_dentry->d_name.len); | |
9663 | ||
9664 | if (ret) { | |
9665 | if (ret == -EEXIST) { | |
9666 | /* we shouldn't get | |
9667 | * eexist without a new_inode */ | |
fae7f21c | 9668 | if (WARN_ON(!new_inode)) { |
9c52057c CM |
9669 | return ret; |
9670 | } | |
9671 | } else { | |
9672 | /* maybe -EOVERFLOW */ | |
9673 | return ret; | |
9674 | } | |
9675 | } | |
9676 | ret = 0; | |
9677 | ||
5a3f23d5 | 9678 | /* |
8d875f95 CM |
9679 | * we're using rename to replace one file with another. Start IO on it |
9680 | * now so we don't add too much work to the end of the transaction | |
5a3f23d5 | 9681 | */ |
8d875f95 | 9682 | if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size) |
5a3f23d5 CM |
9683 | filemap_flush(old_inode->i_mapping); |
9684 | ||
76dda93c | 9685 | /* close the racy window with snapshot create/destroy ioctl */ |
33345d01 | 9686 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) |
0b246afa | 9687 | down_read(&fs_info->subvol_sem); |
a22285a6 YZ |
9688 | /* |
9689 | * We want to reserve the absolute worst case amount of items. So if | |
9690 | * both inodes are subvols and we need to unlink them then that would | |
9691 | * require 4 item modifications, but if they are both normal inodes it | |
cdd1fedf | 9692 | * would require 5 item modifications, so we'll assume they are normal |
a22285a6 YZ |
9693 | * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items |
9694 | * should cover the worst case number of items we'll modify. | |
5062af35 FM |
9695 | * If our rename has the whiteout flag, we need more 5 units for the |
9696 | * new inode (1 inode item, 1 inode ref, 2 dir items and 1 xattr item | |
9697 | * when selinux is enabled). | |
a22285a6 | 9698 | */ |
5062af35 FM |
9699 | trans_num_items = 11; |
9700 | if (flags & RENAME_WHITEOUT) | |
9701 | trans_num_items += 5; | |
9702 | trans = btrfs_start_transaction(root, trans_num_items); | |
b44c59a8 | 9703 | if (IS_ERR(trans)) { |
cdd1fedf DF |
9704 | ret = PTR_ERR(trans); |
9705 | goto out_notrans; | |
9706 | } | |
76dda93c | 9707 | |
4df27c4d YZ |
9708 | if (dest != root) |
9709 | btrfs_record_root_in_trans(trans, dest); | |
5f39d397 | 9710 | |
877574e2 | 9711 | ret = btrfs_set_inode_index(BTRFS_I(new_dir), &index); |
a5719521 YZ |
9712 | if (ret) |
9713 | goto out_fail; | |
5a3f23d5 | 9714 | |
67de1176 | 9715 | BTRFS_I(old_inode)->dir_index = 0ULL; |
33345d01 | 9716 | if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) { |
4df27c4d | 9717 | /* force full log commit if subvolume involved. */ |
0b246afa | 9718 | btrfs_set_log_full_commit(fs_info, trans); |
4df27c4d | 9719 | } else { |
c4aba954 FM |
9720 | btrfs_pin_log_trans(root); |
9721 | log_pinned = true; | |
a5719521 YZ |
9722 | ret = btrfs_insert_inode_ref(trans, dest, |
9723 | new_dentry->d_name.name, | |
9724 | new_dentry->d_name.len, | |
33345d01 | 9725 | old_ino, |
4a0cc7ca | 9726 | btrfs_ino(BTRFS_I(new_dir)), index); |
a5719521 YZ |
9727 | if (ret) |
9728 | goto out_fail; | |
4df27c4d | 9729 | } |
5a3f23d5 | 9730 | |
0c4d2d95 JB |
9731 | inode_inc_iversion(old_dir); |
9732 | inode_inc_iversion(new_dir); | |
9733 | inode_inc_iversion(old_inode); | |
04b285f3 DD |
9734 | old_dir->i_ctime = old_dir->i_mtime = |
9735 | new_dir->i_ctime = new_dir->i_mtime = | |
c2050a45 | 9736 | old_inode->i_ctime = current_time(old_dir); |
5f39d397 | 9737 | |
12fcfd22 | 9738 | if (old_dentry->d_parent != new_dentry->d_parent) |
f85b7379 DS |
9739 | btrfs_record_unlink_dir(trans, BTRFS_I(old_dir), |
9740 | BTRFS_I(old_inode), 1); | |
12fcfd22 | 9741 | |
33345d01 | 9742 | if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) { |
4df27c4d | 9743 | root_objectid = BTRFS_I(old_inode)->root->root_key.objectid; |
401b3b19 | 9744 | ret = btrfs_unlink_subvol(trans, old_dir, root_objectid, |
4df27c4d YZ |
9745 | old_dentry->d_name.name, |
9746 | old_dentry->d_name.len); | |
9747 | } else { | |
4ec5934e NB |
9748 | ret = __btrfs_unlink_inode(trans, root, BTRFS_I(old_dir), |
9749 | BTRFS_I(d_inode(old_dentry)), | |
92986796 AV |
9750 | old_dentry->d_name.name, |
9751 | old_dentry->d_name.len); | |
9752 | if (!ret) | |
9753 | ret = btrfs_update_inode(trans, root, old_inode); | |
4df27c4d | 9754 | } |
79787eaa | 9755 | if (ret) { |
66642832 | 9756 | btrfs_abort_transaction(trans, ret); |
79787eaa JM |
9757 | goto out_fail; |
9758 | } | |
39279cc3 CM |
9759 | |
9760 | if (new_inode) { | |
0c4d2d95 | 9761 | inode_inc_iversion(new_inode); |
c2050a45 | 9762 | new_inode->i_ctime = current_time(new_inode); |
4a0cc7ca | 9763 | if (unlikely(btrfs_ino(BTRFS_I(new_inode)) == |
4df27c4d YZ |
9764 | BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) { |
9765 | root_objectid = BTRFS_I(new_inode)->location.objectid; | |
401b3b19 | 9766 | ret = btrfs_unlink_subvol(trans, new_dir, root_objectid, |
4df27c4d YZ |
9767 | new_dentry->d_name.name, |
9768 | new_dentry->d_name.len); | |
9769 | BUG_ON(new_inode->i_nlink == 0); | |
9770 | } else { | |
4ec5934e NB |
9771 | ret = btrfs_unlink_inode(trans, dest, BTRFS_I(new_dir), |
9772 | BTRFS_I(d_inode(new_dentry)), | |
4df27c4d YZ |
9773 | new_dentry->d_name.name, |
9774 | new_dentry->d_name.len); | |
9775 | } | |
4ef31a45 | 9776 | if (!ret && new_inode->i_nlink == 0) |
73f2e545 NB |
9777 | ret = btrfs_orphan_add(trans, |
9778 | BTRFS_I(d_inode(new_dentry))); | |
79787eaa | 9779 | if (ret) { |
66642832 | 9780 | btrfs_abort_transaction(trans, ret); |
79787eaa JM |
9781 | goto out_fail; |
9782 | } | |
39279cc3 | 9783 | } |
aec7477b | 9784 | |
db0a669f | 9785 | ret = btrfs_add_link(trans, BTRFS_I(new_dir), BTRFS_I(old_inode), |
4df27c4d | 9786 | new_dentry->d_name.name, |
a5719521 | 9787 | new_dentry->d_name.len, 0, index); |
79787eaa | 9788 | if (ret) { |
66642832 | 9789 | btrfs_abort_transaction(trans, ret); |
79787eaa JM |
9790 | goto out_fail; |
9791 | } | |
39279cc3 | 9792 | |
67de1176 MX |
9793 | if (old_inode->i_nlink == 1) |
9794 | BTRFS_I(old_inode)->dir_index = index; | |
9795 | ||
3dc9e8f7 | 9796 | if (log_pinned) { |
10d9f309 | 9797 | struct dentry *parent = new_dentry->d_parent; |
3dc9e8f7 | 9798 | |
d4682ba0 FM |
9799 | btrfs_init_log_ctx(&ctx, old_inode); |
9800 | ret = btrfs_log_new_name(trans, BTRFS_I(old_inode), | |
9801 | BTRFS_I(old_dir), parent, | |
9802 | false, &ctx); | |
9803 | if (ret == BTRFS_NEED_LOG_SYNC) | |
9804 | sync_log = true; | |
9805 | else if (ret == BTRFS_NEED_TRANS_COMMIT) | |
9806 | commit_transaction = true; | |
9807 | ret = 0; | |
4df27c4d | 9808 | btrfs_end_log_trans(root); |
3dc9e8f7 | 9809 | log_pinned = false; |
4df27c4d | 9810 | } |
cdd1fedf DF |
9811 | |
9812 | if (flags & RENAME_WHITEOUT) { | |
9813 | ret = btrfs_whiteout_for_rename(trans, root, old_dir, | |
9814 | old_dentry); | |
9815 | ||
9816 | if (ret) { | |
66642832 | 9817 | btrfs_abort_transaction(trans, ret); |
cdd1fedf DF |
9818 | goto out_fail; |
9819 | } | |
4df27c4d | 9820 | } |
39279cc3 | 9821 | out_fail: |
3dc9e8f7 FM |
9822 | /* |
9823 | * If we have pinned the log and an error happened, we unpin tasks | |
9824 | * trying to sync the log and force them to fallback to a transaction | |
9825 | * commit if the log currently contains any of the inodes involved in | |
9826 | * this rename operation (to ensure we do not persist a log with an | |
9827 | * inconsistent state for any of these inodes or leading to any | |
9828 | * inconsistencies when replayed). If the transaction was aborted, the | |
9829 | * abortion reason is propagated to userspace when attempting to commit | |
9830 | * the transaction. If the log does not contain any of these inodes, we | |
9831 | * allow the tasks to sync it. | |
9832 | */ | |
9833 | if (ret && log_pinned) { | |
0f8939b8 NB |
9834 | if (btrfs_inode_in_log(BTRFS_I(old_dir), fs_info->generation) || |
9835 | btrfs_inode_in_log(BTRFS_I(new_dir), fs_info->generation) || | |
9836 | btrfs_inode_in_log(BTRFS_I(old_inode), fs_info->generation) || | |
3dc9e8f7 | 9837 | (new_inode && |
0f8939b8 | 9838 | btrfs_inode_in_log(BTRFS_I(new_inode), fs_info->generation))) |
0b246afa | 9839 | btrfs_set_log_full_commit(fs_info, trans); |
3dc9e8f7 FM |
9840 | |
9841 | btrfs_end_log_trans(root); | |
9842 | log_pinned = false; | |
9843 | } | |
d4682ba0 FM |
9844 | if (!ret && sync_log) { |
9845 | ret = btrfs_sync_log(trans, BTRFS_I(old_inode)->root, &ctx); | |
9846 | if (ret) | |
9847 | commit_transaction = true; | |
9848 | } | |
9849 | if (commit_transaction) { | |
9850 | ret = btrfs_commit_transaction(trans); | |
9851 | } else { | |
9852 | int ret2; | |
9853 | ||
9854 | ret2 = btrfs_end_transaction(trans); | |
9855 | ret = ret ? ret : ret2; | |
9856 | } | |
b44c59a8 | 9857 | out_notrans: |
33345d01 | 9858 | if (old_ino == BTRFS_FIRST_FREE_OBJECTID) |
0b246afa | 9859 | up_read(&fs_info->subvol_sem); |
9ed74f2d | 9860 | |
39279cc3 CM |
9861 | return ret; |
9862 | } | |
9863 | ||
80ace85c MS |
9864 | static int btrfs_rename2(struct inode *old_dir, struct dentry *old_dentry, |
9865 | struct inode *new_dir, struct dentry *new_dentry, | |
9866 | unsigned int flags) | |
9867 | { | |
cdd1fedf | 9868 | if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT)) |
80ace85c MS |
9869 | return -EINVAL; |
9870 | ||
cdd1fedf DF |
9871 | if (flags & RENAME_EXCHANGE) |
9872 | return btrfs_rename_exchange(old_dir, old_dentry, new_dir, | |
9873 | new_dentry); | |
9874 | ||
9875 | return btrfs_rename(old_dir, old_dentry, new_dir, new_dentry, flags); | |
80ace85c MS |
9876 | } |
9877 | ||
3a2f8c07 NB |
9878 | struct btrfs_delalloc_work { |
9879 | struct inode *inode; | |
9880 | struct completion completion; | |
9881 | struct list_head list; | |
9882 | struct btrfs_work work; | |
9883 | }; | |
9884 | ||
8ccf6f19 MX |
9885 | static void btrfs_run_delalloc_work(struct btrfs_work *work) |
9886 | { | |
9887 | struct btrfs_delalloc_work *delalloc_work; | |
9f23e289 | 9888 | struct inode *inode; |
8ccf6f19 MX |
9889 | |
9890 | delalloc_work = container_of(work, struct btrfs_delalloc_work, | |
9891 | work); | |
9f23e289 | 9892 | inode = delalloc_work->inode; |
30424601 DS |
9893 | filemap_flush(inode->i_mapping); |
9894 | if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT, | |
9895 | &BTRFS_I(inode)->runtime_flags)) | |
9f23e289 | 9896 | filemap_flush(inode->i_mapping); |
8ccf6f19 | 9897 | |
076da91c | 9898 | iput(inode); |
8ccf6f19 MX |
9899 | complete(&delalloc_work->completion); |
9900 | } | |
9901 | ||
3a2f8c07 | 9902 | static struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode) |
8ccf6f19 MX |
9903 | { |
9904 | struct btrfs_delalloc_work *work; | |
9905 | ||
100d5702 | 9906 | work = kmalloc(sizeof(*work), GFP_NOFS); |
8ccf6f19 MX |
9907 | if (!work) |
9908 | return NULL; | |
9909 | ||
9910 | init_completion(&work->completion); | |
9911 | INIT_LIST_HEAD(&work->list); | |
9912 | work->inode = inode; | |
9e0af237 LB |
9913 | WARN_ON_ONCE(!inode); |
9914 | btrfs_init_work(&work->work, btrfs_flush_delalloc_helper, | |
9915 | btrfs_run_delalloc_work, NULL, NULL); | |
8ccf6f19 MX |
9916 | |
9917 | return work; | |
9918 | } | |
9919 | ||
d352ac68 CM |
9920 | /* |
9921 | * some fairly slow code that needs optimization. This walks the list | |
9922 | * of all the inodes with pending delalloc and forces them to disk. | |
9923 | */ | |
3cd24c69 | 9924 | static int start_delalloc_inodes(struct btrfs_root *root, int nr, bool snapshot) |
ea8c2819 | 9925 | { |
ea8c2819 | 9926 | struct btrfs_inode *binode; |
5b21f2ed | 9927 | struct inode *inode; |
8ccf6f19 MX |
9928 | struct btrfs_delalloc_work *work, *next; |
9929 | struct list_head works; | |
1eafa6c7 | 9930 | struct list_head splice; |
8ccf6f19 | 9931 | int ret = 0; |
ea8c2819 | 9932 | |
8ccf6f19 | 9933 | INIT_LIST_HEAD(&works); |
1eafa6c7 | 9934 | INIT_LIST_HEAD(&splice); |
63607cc8 | 9935 | |
573bfb72 | 9936 | mutex_lock(&root->delalloc_mutex); |
eb73c1b7 MX |
9937 | spin_lock(&root->delalloc_lock); |
9938 | list_splice_init(&root->delalloc_inodes, &splice); | |
1eafa6c7 MX |
9939 | while (!list_empty(&splice)) { |
9940 | binode = list_entry(splice.next, struct btrfs_inode, | |
ea8c2819 | 9941 | delalloc_inodes); |
1eafa6c7 | 9942 | |
eb73c1b7 MX |
9943 | list_move_tail(&binode->delalloc_inodes, |
9944 | &root->delalloc_inodes); | |
5b21f2ed | 9945 | inode = igrab(&binode->vfs_inode); |
df0af1a5 | 9946 | if (!inode) { |
eb73c1b7 | 9947 | cond_resched_lock(&root->delalloc_lock); |
1eafa6c7 | 9948 | continue; |
df0af1a5 | 9949 | } |
eb73c1b7 | 9950 | spin_unlock(&root->delalloc_lock); |
1eafa6c7 | 9951 | |
3cd24c69 EL |
9952 | if (snapshot) |
9953 | set_bit(BTRFS_INODE_SNAPSHOT_FLUSH, | |
9954 | &binode->runtime_flags); | |
076da91c | 9955 | work = btrfs_alloc_delalloc_work(inode); |
5d99a998 | 9956 | if (!work) { |
4fbb5147 | 9957 | iput(inode); |
1eafa6c7 | 9958 | ret = -ENOMEM; |
a1ecaabb | 9959 | goto out; |
5b21f2ed | 9960 | } |
1eafa6c7 | 9961 | list_add_tail(&work->list, &works); |
a44903ab QW |
9962 | btrfs_queue_work(root->fs_info->flush_workers, |
9963 | &work->work); | |
6c255e67 MX |
9964 | ret++; |
9965 | if (nr != -1 && ret >= nr) | |
a1ecaabb | 9966 | goto out; |
5b21f2ed | 9967 | cond_resched(); |
eb73c1b7 | 9968 | spin_lock(&root->delalloc_lock); |
ea8c2819 | 9969 | } |
eb73c1b7 | 9970 | spin_unlock(&root->delalloc_lock); |
8c8bee1d | 9971 | |
a1ecaabb | 9972 | out: |
eb73c1b7 MX |
9973 | list_for_each_entry_safe(work, next, &works, list) { |
9974 | list_del_init(&work->list); | |
40012f96 NB |
9975 | wait_for_completion(&work->completion); |
9976 | kfree(work); | |
eb73c1b7 MX |
9977 | } |
9978 | ||
81f1d390 | 9979 | if (!list_empty(&splice)) { |
eb73c1b7 MX |
9980 | spin_lock(&root->delalloc_lock); |
9981 | list_splice_tail(&splice, &root->delalloc_inodes); | |
9982 | spin_unlock(&root->delalloc_lock); | |
9983 | } | |
573bfb72 | 9984 | mutex_unlock(&root->delalloc_mutex); |
eb73c1b7 MX |
9985 | return ret; |
9986 | } | |
1eafa6c7 | 9987 | |
3cd24c69 | 9988 | int btrfs_start_delalloc_snapshot(struct btrfs_root *root) |
eb73c1b7 | 9989 | { |
0b246afa | 9990 | struct btrfs_fs_info *fs_info = root->fs_info; |
eb73c1b7 | 9991 | int ret; |
1eafa6c7 | 9992 | |
0b246afa | 9993 | if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) |
eb73c1b7 MX |
9994 | return -EROFS; |
9995 | ||
3cd24c69 | 9996 | ret = start_delalloc_inodes(root, -1, true); |
6c255e67 MX |
9997 | if (ret > 0) |
9998 | ret = 0; | |
eb73c1b7 MX |
9999 | return ret; |
10000 | } | |
10001 | ||
82b3e53b | 10002 | int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int nr) |
eb73c1b7 MX |
10003 | { |
10004 | struct btrfs_root *root; | |
10005 | struct list_head splice; | |
10006 | int ret; | |
10007 | ||
2c21b4d7 | 10008 | if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) |
eb73c1b7 MX |
10009 | return -EROFS; |
10010 | ||
10011 | INIT_LIST_HEAD(&splice); | |
10012 | ||
573bfb72 | 10013 | mutex_lock(&fs_info->delalloc_root_mutex); |
eb73c1b7 MX |
10014 | spin_lock(&fs_info->delalloc_root_lock); |
10015 | list_splice_init(&fs_info->delalloc_roots, &splice); | |
6c255e67 | 10016 | while (!list_empty(&splice) && nr) { |
eb73c1b7 MX |
10017 | root = list_first_entry(&splice, struct btrfs_root, |
10018 | delalloc_root); | |
10019 | root = btrfs_grab_fs_root(root); | |
10020 | BUG_ON(!root); | |
10021 | list_move_tail(&root->delalloc_root, | |
10022 | &fs_info->delalloc_roots); | |
10023 | spin_unlock(&fs_info->delalloc_root_lock); | |
10024 | ||
3cd24c69 | 10025 | ret = start_delalloc_inodes(root, nr, false); |
eb73c1b7 | 10026 | btrfs_put_fs_root(root); |
6c255e67 | 10027 | if (ret < 0) |
eb73c1b7 MX |
10028 | goto out; |
10029 | ||
6c255e67 MX |
10030 | if (nr != -1) { |
10031 | nr -= ret; | |
10032 | WARN_ON(nr < 0); | |
10033 | } | |
eb73c1b7 | 10034 | spin_lock(&fs_info->delalloc_root_lock); |
8ccf6f19 | 10035 | } |
eb73c1b7 | 10036 | spin_unlock(&fs_info->delalloc_root_lock); |
1eafa6c7 | 10037 | |
6c255e67 | 10038 | ret = 0; |
eb73c1b7 | 10039 | out: |
81f1d390 | 10040 | if (!list_empty(&splice)) { |
eb73c1b7 MX |
10041 | spin_lock(&fs_info->delalloc_root_lock); |
10042 | list_splice_tail(&splice, &fs_info->delalloc_roots); | |
10043 | spin_unlock(&fs_info->delalloc_root_lock); | |
1eafa6c7 | 10044 | } |
573bfb72 | 10045 | mutex_unlock(&fs_info->delalloc_root_mutex); |
8ccf6f19 | 10046 | return ret; |
ea8c2819 CM |
10047 | } |
10048 | ||
39279cc3 CM |
10049 | static int btrfs_symlink(struct inode *dir, struct dentry *dentry, |
10050 | const char *symname) | |
10051 | { | |
0b246afa | 10052 | struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb); |
39279cc3 CM |
10053 | struct btrfs_trans_handle *trans; |
10054 | struct btrfs_root *root = BTRFS_I(dir)->root; | |
10055 | struct btrfs_path *path; | |
10056 | struct btrfs_key key; | |
1832a6d5 | 10057 | struct inode *inode = NULL; |
39279cc3 | 10058 | int err; |
39279cc3 | 10059 | u64 objectid; |
67871254 | 10060 | u64 index = 0; |
39279cc3 CM |
10061 | int name_len; |
10062 | int datasize; | |
5f39d397 | 10063 | unsigned long ptr; |
39279cc3 | 10064 | struct btrfs_file_extent_item *ei; |
5f39d397 | 10065 | struct extent_buffer *leaf; |
39279cc3 | 10066 | |
f06becc4 | 10067 | name_len = strlen(symname); |
0b246afa | 10068 | if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(fs_info)) |
39279cc3 | 10069 | return -ENAMETOOLONG; |
1832a6d5 | 10070 | |
9ed74f2d JB |
10071 | /* |
10072 | * 2 items for inode item and ref | |
10073 | * 2 items for dir items | |
9269d12b FM |
10074 | * 1 item for updating parent inode item |
10075 | * 1 item for the inline extent item | |
9ed74f2d JB |
10076 | * 1 item for xattr if selinux is on |
10077 | */ | |
9269d12b | 10078 | trans = btrfs_start_transaction(root, 7); |
a22285a6 YZ |
10079 | if (IS_ERR(trans)) |
10080 | return PTR_ERR(trans); | |
1832a6d5 | 10081 | |
581bb050 LZ |
10082 | err = btrfs_find_free_ino(root, &objectid); |
10083 | if (err) | |
10084 | goto out_unlock; | |
10085 | ||
aec7477b | 10086 | inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name, |
f85b7379 DS |
10087 | dentry->d_name.len, btrfs_ino(BTRFS_I(dir)), |
10088 | objectid, S_IFLNK|S_IRWXUGO, &index); | |
7cf96da3 TI |
10089 | if (IS_ERR(inode)) { |
10090 | err = PTR_ERR(inode); | |
32955c54 | 10091 | inode = NULL; |
39279cc3 | 10092 | goto out_unlock; |
7cf96da3 | 10093 | } |
39279cc3 | 10094 | |
ad19db71 CS |
10095 | /* |
10096 | * If the active LSM wants to access the inode during | |
10097 | * d_instantiate it needs these. Smack checks to see | |
10098 | * if the filesystem supports xattrs by looking at the | |
10099 | * ops vector. | |
10100 | */ | |
10101 | inode->i_fop = &btrfs_file_operations; | |
10102 | inode->i_op = &btrfs_file_inode_operations; | |
b0d5d10f | 10103 | inode->i_mapping->a_ops = &btrfs_aops; |
b0d5d10f CM |
10104 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; |
10105 | ||
10106 | err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name); | |
10107 | if (err) | |
32955c54 | 10108 | goto out_unlock; |
ad19db71 | 10109 | |
39279cc3 | 10110 | path = btrfs_alloc_path(); |
d8926bb3 MF |
10111 | if (!path) { |
10112 | err = -ENOMEM; | |
32955c54 | 10113 | goto out_unlock; |
d8926bb3 | 10114 | } |
4a0cc7ca | 10115 | key.objectid = btrfs_ino(BTRFS_I(inode)); |
39279cc3 | 10116 | key.offset = 0; |
962a298f | 10117 | key.type = BTRFS_EXTENT_DATA_KEY; |
39279cc3 CM |
10118 | datasize = btrfs_file_extent_calc_inline_size(name_len); |
10119 | err = btrfs_insert_empty_item(trans, root, path, &key, | |
10120 | datasize); | |
54aa1f4d | 10121 | if (err) { |
b0839166 | 10122 | btrfs_free_path(path); |
32955c54 | 10123 | goto out_unlock; |
54aa1f4d | 10124 | } |
5f39d397 CM |
10125 | leaf = path->nodes[0]; |
10126 | ei = btrfs_item_ptr(leaf, path->slots[0], | |
10127 | struct btrfs_file_extent_item); | |
10128 | btrfs_set_file_extent_generation(leaf, ei, trans->transid); | |
10129 | btrfs_set_file_extent_type(leaf, ei, | |
39279cc3 | 10130 | BTRFS_FILE_EXTENT_INLINE); |
c8b97818 CM |
10131 | btrfs_set_file_extent_encryption(leaf, ei, 0); |
10132 | btrfs_set_file_extent_compression(leaf, ei, 0); | |
10133 | btrfs_set_file_extent_other_encoding(leaf, ei, 0); | |
10134 | btrfs_set_file_extent_ram_bytes(leaf, ei, name_len); | |
10135 | ||
39279cc3 | 10136 | ptr = btrfs_file_extent_inline_start(ei); |
5f39d397 CM |
10137 | write_extent_buffer(leaf, symname, ptr, name_len); |
10138 | btrfs_mark_buffer_dirty(leaf); | |
39279cc3 | 10139 | btrfs_free_path(path); |
5f39d397 | 10140 | |
39279cc3 | 10141 | inode->i_op = &btrfs_symlink_inode_operations; |
21fc61c7 | 10142 | inode_nohighmem(inode); |
4779cc04 | 10143 | inode->i_mapping->a_ops = &btrfs_aops; |
d899e052 | 10144 | inode_set_bytes(inode, name_len); |
6ef06d27 | 10145 | btrfs_i_size_write(BTRFS_I(inode), name_len); |
54aa1f4d | 10146 | err = btrfs_update_inode(trans, root, inode); |
d50866d0 FM |
10147 | /* |
10148 | * Last step, add directory indexes for our symlink inode. This is the | |
10149 | * last step to avoid extra cleanup of these indexes if an error happens | |
10150 | * elsewhere above. | |
10151 | */ | |
10152 | if (!err) | |
cef415af NB |
10153 | err = btrfs_add_nondir(trans, BTRFS_I(dir), dentry, |
10154 | BTRFS_I(inode), 0, index); | |
32955c54 AV |
10155 | if (err) |
10156 | goto out_unlock; | |
b0d5d10f | 10157 | |
1e2e547a | 10158 | d_instantiate_new(dentry, inode); |
39279cc3 CM |
10159 | |
10160 | out_unlock: | |
3a45bb20 | 10161 | btrfs_end_transaction(trans); |
32955c54 | 10162 | if (err && inode) { |
39279cc3 | 10163 | inode_dec_link_count(inode); |
32955c54 | 10164 | discard_new_inode(inode); |
39279cc3 | 10165 | } |
2ff7e61e | 10166 | btrfs_btree_balance_dirty(fs_info); |
39279cc3 CM |
10167 | return err; |
10168 | } | |
16432985 | 10169 | |
0af3d00b JB |
10170 | static int __btrfs_prealloc_file_range(struct inode *inode, int mode, |
10171 | u64 start, u64 num_bytes, u64 min_size, | |
10172 | loff_t actual_len, u64 *alloc_hint, | |
10173 | struct btrfs_trans_handle *trans) | |
d899e052 | 10174 | { |
0b246afa | 10175 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
5dc562c5 JB |
10176 | struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree; |
10177 | struct extent_map *em; | |
d899e052 YZ |
10178 | struct btrfs_root *root = BTRFS_I(inode)->root; |
10179 | struct btrfs_key ins; | |
d899e052 | 10180 | u64 cur_offset = start; |
55a61d1d | 10181 | u64 i_size; |
154ea289 | 10182 | u64 cur_bytes; |
0b670dc4 | 10183 | u64 last_alloc = (u64)-1; |
d899e052 | 10184 | int ret = 0; |
0af3d00b | 10185 | bool own_trans = true; |
18513091 | 10186 | u64 end = start + num_bytes - 1; |
d899e052 | 10187 | |
0af3d00b JB |
10188 | if (trans) |
10189 | own_trans = false; | |
d899e052 | 10190 | while (num_bytes > 0) { |
0af3d00b JB |
10191 | if (own_trans) { |
10192 | trans = btrfs_start_transaction(root, 3); | |
10193 | if (IS_ERR(trans)) { | |
10194 | ret = PTR_ERR(trans); | |
10195 | break; | |
10196 | } | |
5a303d5d YZ |
10197 | } |
10198 | ||
ee22184b | 10199 | cur_bytes = min_t(u64, num_bytes, SZ_256M); |
154ea289 | 10200 | cur_bytes = max(cur_bytes, min_size); |
0b670dc4 JB |
10201 | /* |
10202 | * If we are severely fragmented we could end up with really | |
10203 | * small allocations, so if the allocator is returning small | |
10204 | * chunks lets make its job easier by only searching for those | |
10205 | * sized chunks. | |
10206 | */ | |
10207 | cur_bytes = min(cur_bytes, last_alloc); | |
18513091 WX |
10208 | ret = btrfs_reserve_extent(root, cur_bytes, cur_bytes, |
10209 | min_size, 0, *alloc_hint, &ins, 1, 0); | |
5a303d5d | 10210 | if (ret) { |
0af3d00b | 10211 | if (own_trans) |
3a45bb20 | 10212 | btrfs_end_transaction(trans); |
a22285a6 | 10213 | break; |
d899e052 | 10214 | } |
0b246afa | 10215 | btrfs_dec_block_group_reservations(fs_info, ins.objectid); |
5a303d5d | 10216 | |
0b670dc4 | 10217 | last_alloc = ins.offset; |
d899e052 YZ |
10218 | ret = insert_reserved_file_extent(trans, inode, |
10219 | cur_offset, ins.objectid, | |
10220 | ins.offset, ins.offset, | |
920bbbfb | 10221 | ins.offset, 0, 0, 0, |
d899e052 | 10222 | BTRFS_FILE_EXTENT_PREALLOC); |
79787eaa | 10223 | if (ret) { |
2ff7e61e | 10224 | btrfs_free_reserved_extent(fs_info, ins.objectid, |
e570fd27 | 10225 | ins.offset, 0); |
66642832 | 10226 | btrfs_abort_transaction(trans, ret); |
79787eaa | 10227 | if (own_trans) |
3a45bb20 | 10228 | btrfs_end_transaction(trans); |
79787eaa JM |
10229 | break; |
10230 | } | |
31193213 | 10231 | |
dcdbc059 | 10232 | btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset, |
a1ed835e | 10233 | cur_offset + ins.offset -1, 0); |
5a303d5d | 10234 | |
5dc562c5 JB |
10235 | em = alloc_extent_map(); |
10236 | if (!em) { | |
10237 | set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, | |
10238 | &BTRFS_I(inode)->runtime_flags); | |
10239 | goto next; | |
10240 | } | |
10241 | ||
10242 | em->start = cur_offset; | |
10243 | em->orig_start = cur_offset; | |
10244 | em->len = ins.offset; | |
10245 | em->block_start = ins.objectid; | |
10246 | em->block_len = ins.offset; | |
b4939680 | 10247 | em->orig_block_len = ins.offset; |
cc95bef6 | 10248 | em->ram_bytes = ins.offset; |
0b246afa | 10249 | em->bdev = fs_info->fs_devices->latest_bdev; |
5dc562c5 JB |
10250 | set_bit(EXTENT_FLAG_PREALLOC, &em->flags); |
10251 | em->generation = trans->transid; | |
10252 | ||
10253 | while (1) { | |
10254 | write_lock(&em_tree->lock); | |
09a2a8f9 | 10255 | ret = add_extent_mapping(em_tree, em, 1); |
5dc562c5 JB |
10256 | write_unlock(&em_tree->lock); |
10257 | if (ret != -EEXIST) | |
10258 | break; | |
dcdbc059 | 10259 | btrfs_drop_extent_cache(BTRFS_I(inode), cur_offset, |
5dc562c5 JB |
10260 | cur_offset + ins.offset - 1, |
10261 | 0); | |
10262 | } | |
10263 | free_extent_map(em); | |
10264 | next: | |
d899e052 YZ |
10265 | num_bytes -= ins.offset; |
10266 | cur_offset += ins.offset; | |
efa56464 | 10267 | *alloc_hint = ins.objectid + ins.offset; |
5a303d5d | 10268 | |
0c4d2d95 | 10269 | inode_inc_iversion(inode); |
c2050a45 | 10270 | inode->i_ctime = current_time(inode); |
6cbff00f | 10271 | BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC; |
d899e052 | 10272 | if (!(mode & FALLOC_FL_KEEP_SIZE) && |
efa56464 YZ |
10273 | (actual_len > inode->i_size) && |
10274 | (cur_offset > inode->i_size)) { | |
d1ea6a61 | 10275 | if (cur_offset > actual_len) |
55a61d1d | 10276 | i_size = actual_len; |
d1ea6a61 | 10277 | else |
55a61d1d JB |
10278 | i_size = cur_offset; |
10279 | i_size_write(inode, i_size); | |
10280 | btrfs_ordered_update_i_size(inode, i_size, NULL); | |
5a303d5d YZ |
10281 | } |
10282 | ||
d899e052 | 10283 | ret = btrfs_update_inode(trans, root, inode); |
79787eaa JM |
10284 | |
10285 | if (ret) { | |
66642832 | 10286 | btrfs_abort_transaction(trans, ret); |
79787eaa | 10287 | if (own_trans) |
3a45bb20 | 10288 | btrfs_end_transaction(trans); |
79787eaa JM |
10289 | break; |
10290 | } | |
d899e052 | 10291 | |
0af3d00b | 10292 | if (own_trans) |
3a45bb20 | 10293 | btrfs_end_transaction(trans); |
5a303d5d | 10294 | } |
18513091 | 10295 | if (cur_offset < end) |
bc42bda2 | 10296 | btrfs_free_reserved_data_space(inode, NULL, cur_offset, |
18513091 | 10297 | end - cur_offset + 1); |
d899e052 YZ |
10298 | return ret; |
10299 | } | |
10300 | ||
0af3d00b JB |
10301 | int btrfs_prealloc_file_range(struct inode *inode, int mode, |
10302 | u64 start, u64 num_bytes, u64 min_size, | |
10303 | loff_t actual_len, u64 *alloc_hint) | |
10304 | { | |
10305 | return __btrfs_prealloc_file_range(inode, mode, start, num_bytes, | |
10306 | min_size, actual_len, alloc_hint, | |
10307 | NULL); | |
10308 | } | |
10309 | ||
10310 | int btrfs_prealloc_file_range_trans(struct inode *inode, | |
10311 | struct btrfs_trans_handle *trans, int mode, | |
10312 | u64 start, u64 num_bytes, u64 min_size, | |
10313 | loff_t actual_len, u64 *alloc_hint) | |
10314 | { | |
10315 | return __btrfs_prealloc_file_range(inode, mode, start, num_bytes, | |
10316 | min_size, actual_len, alloc_hint, trans); | |
10317 | } | |
10318 | ||
e6dcd2dc CM |
10319 | static int btrfs_set_page_dirty(struct page *page) |
10320 | { | |
e6dcd2dc CM |
10321 | return __set_page_dirty_nobuffers(page); |
10322 | } | |
10323 | ||
10556cb2 | 10324 | static int btrfs_permission(struct inode *inode, int mask) |
fdebe2bd | 10325 | { |
b83cc969 | 10326 | struct btrfs_root *root = BTRFS_I(inode)->root; |
cb6db4e5 | 10327 | umode_t mode = inode->i_mode; |
b83cc969 | 10328 | |
cb6db4e5 JM |
10329 | if (mask & MAY_WRITE && |
10330 | (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) { | |
10331 | if (btrfs_root_readonly(root)) | |
10332 | return -EROFS; | |
10333 | if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY) | |
10334 | return -EACCES; | |
10335 | } | |
2830ba7f | 10336 | return generic_permission(inode, mask); |
fdebe2bd | 10337 | } |
39279cc3 | 10338 | |
ef3b9af5 FM |
10339 | static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode) |
10340 | { | |
2ff7e61e | 10341 | struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb); |
ef3b9af5 FM |
10342 | struct btrfs_trans_handle *trans; |
10343 | struct btrfs_root *root = BTRFS_I(dir)->root; | |
10344 | struct inode *inode = NULL; | |
10345 | u64 objectid; | |
10346 | u64 index; | |
10347 | int ret = 0; | |
10348 | ||
10349 | /* | |
10350 | * 5 units required for adding orphan entry | |
10351 | */ | |
10352 | trans = btrfs_start_transaction(root, 5); | |
10353 | if (IS_ERR(trans)) | |
10354 | return PTR_ERR(trans); | |
10355 | ||
10356 | ret = btrfs_find_free_ino(root, &objectid); | |
10357 | if (ret) | |
10358 | goto out; | |
10359 | ||
10360 | inode = btrfs_new_inode(trans, root, dir, NULL, 0, | |
f85b7379 | 10361 | btrfs_ino(BTRFS_I(dir)), objectid, mode, &index); |
ef3b9af5 FM |
10362 | if (IS_ERR(inode)) { |
10363 | ret = PTR_ERR(inode); | |
10364 | inode = NULL; | |
10365 | goto out; | |
10366 | } | |
10367 | ||
ef3b9af5 FM |
10368 | inode->i_fop = &btrfs_file_operations; |
10369 | inode->i_op = &btrfs_file_inode_operations; | |
10370 | ||
10371 | inode->i_mapping->a_ops = &btrfs_aops; | |
ef3b9af5 FM |
10372 | BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops; |
10373 | ||
b0d5d10f CM |
10374 | ret = btrfs_init_inode_security(trans, inode, dir, NULL); |
10375 | if (ret) | |
32955c54 | 10376 | goto out; |
b0d5d10f CM |
10377 | |
10378 | ret = btrfs_update_inode(trans, root, inode); | |
10379 | if (ret) | |
32955c54 | 10380 | goto out; |
73f2e545 | 10381 | ret = btrfs_orphan_add(trans, BTRFS_I(inode)); |
ef3b9af5 | 10382 | if (ret) |
32955c54 | 10383 | goto out; |
ef3b9af5 | 10384 | |
5762b5c9 FM |
10385 | /* |
10386 | * We set number of links to 0 in btrfs_new_inode(), and here we set | |
10387 | * it to 1 because d_tmpfile() will issue a warning if the count is 0, | |
10388 | * through: | |
10389 | * | |
10390 | * d_tmpfile() -> inode_dec_link_count() -> drop_nlink() | |
10391 | */ | |
10392 | set_nlink(inode, 1); | |
ef3b9af5 | 10393 | d_tmpfile(dentry, inode); |
32955c54 | 10394 | unlock_new_inode(inode); |
ef3b9af5 | 10395 | mark_inode_dirty(inode); |
ef3b9af5 | 10396 | out: |
3a45bb20 | 10397 | btrfs_end_transaction(trans); |
32955c54 AV |
10398 | if (ret && inode) |
10399 | discard_new_inode(inode); | |
2ff7e61e | 10400 | btrfs_btree_balance_dirty(fs_info); |
ef3b9af5 FM |
10401 | return ret; |
10402 | } | |
10403 | ||
5cdc84bf | 10404 | void btrfs_set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end) |
c6100a4b | 10405 | { |
5cdc84bf | 10406 | struct inode *inode = tree->private_data; |
c6100a4b JB |
10407 | unsigned long index = start >> PAGE_SHIFT; |
10408 | unsigned long end_index = end >> PAGE_SHIFT; | |
10409 | struct page *page; | |
10410 | ||
10411 | while (index <= end_index) { | |
10412 | page = find_get_page(inode->i_mapping, index); | |
10413 | ASSERT(page); /* Pages should be in the extent_io_tree */ | |
10414 | set_page_writeback(page); | |
10415 | put_page(page); | |
10416 | index++; | |
10417 | } | |
10418 | } | |
10419 | ||
ed46ff3d OS |
10420 | #ifdef CONFIG_SWAP |
10421 | /* | |
10422 | * Add an entry indicating a block group or device which is pinned by a | |
10423 | * swapfile. Returns 0 on success, 1 if there is already an entry for it, or a | |
10424 | * negative errno on failure. | |
10425 | */ | |
10426 | static int btrfs_add_swapfile_pin(struct inode *inode, void *ptr, | |
10427 | bool is_block_group) | |
10428 | { | |
10429 | struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info; | |
10430 | struct btrfs_swapfile_pin *sp, *entry; | |
10431 | struct rb_node **p; | |
10432 | struct rb_node *parent = NULL; | |
10433 | ||
10434 | sp = kmalloc(sizeof(*sp), GFP_NOFS); | |
10435 | if (!sp) | |
10436 | return -ENOMEM; | |
10437 | sp->ptr = ptr; | |
10438 | sp->inode = inode; | |
10439 | sp->is_block_group = is_block_group; | |
10440 | ||
10441 | spin_lock(&fs_info->swapfile_pins_lock); | |
10442 | p = &fs_info->swapfile_pins.rb_node; | |
10443 | while (*p) { | |
10444 | parent = *p; | |
10445 | entry = rb_entry(parent, struct btrfs_swapfile_pin, node); | |
10446 | if (sp->ptr < entry->ptr || | |
10447 | (sp->ptr == entry->ptr && sp->inode < entry->inode)) { | |
10448 | p = &(*p)->rb_left; | |
10449 | } else if (sp->ptr > entry->ptr || | |
10450 | (sp->ptr == entry->ptr && sp->inode > entry->inode)) { | |
10451 | p = &(*p)->rb_right; | |
10452 | } else { | |
10453 | spin_unlock(&fs_info->swapfile_pins_lock); | |
10454 | kfree(sp); | |
10455 | return 1; | |
10456 | } | |
10457 | } | |
10458 | rb_link_node(&sp->node, parent, p); | |
10459 | rb_insert_color(&sp->node, &fs_info->swapfile_pins); | |
10460 | spin_unlock(&fs_info->swapfile_pins_lock); | |
10461 | return 0; | |
10462 | } | |
10463 | ||
10464 | /* Free all of the entries pinned by this swapfile. */ | |
10465 | static void btrfs_free_swapfile_pins(struct inode *inode) | |
10466 | { | |
10467 | struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info; | |
10468 | struct btrfs_swapfile_pin *sp; | |
10469 | struct rb_node *node, *next; | |
10470 | ||
10471 | spin_lock(&fs_info->swapfile_pins_lock); | |
10472 | node = rb_first(&fs_info->swapfile_pins); | |
10473 | while (node) { | |
10474 | next = rb_next(node); | |
10475 | sp = rb_entry(node, struct btrfs_swapfile_pin, node); | |
10476 | if (sp->inode == inode) { | |
10477 | rb_erase(&sp->node, &fs_info->swapfile_pins); | |
10478 | if (sp->is_block_group) | |
10479 | btrfs_put_block_group(sp->ptr); | |
10480 | kfree(sp); | |
10481 | } | |
10482 | node = next; | |
10483 | } | |
10484 | spin_unlock(&fs_info->swapfile_pins_lock); | |
10485 | } | |
10486 | ||
10487 | struct btrfs_swap_info { | |
10488 | u64 start; | |
10489 | u64 block_start; | |
10490 | u64 block_len; | |
10491 | u64 lowest_ppage; | |
10492 | u64 highest_ppage; | |
10493 | unsigned long nr_pages; | |
10494 | int nr_extents; | |
10495 | }; | |
10496 | ||
10497 | static int btrfs_add_swap_extent(struct swap_info_struct *sis, | |
10498 | struct btrfs_swap_info *bsi) | |
10499 | { | |
10500 | unsigned long nr_pages; | |
10501 | u64 first_ppage, first_ppage_reported, next_ppage; | |
10502 | int ret; | |
10503 | ||
10504 | first_ppage = ALIGN(bsi->block_start, PAGE_SIZE) >> PAGE_SHIFT; | |
10505 | next_ppage = ALIGN_DOWN(bsi->block_start + bsi->block_len, | |
10506 | PAGE_SIZE) >> PAGE_SHIFT; | |
10507 | ||
10508 | if (first_ppage >= next_ppage) | |
10509 | return 0; | |
10510 | nr_pages = next_ppage - first_ppage; | |
10511 | ||
10512 | first_ppage_reported = first_ppage; | |
10513 | if (bsi->start == 0) | |
10514 | first_ppage_reported++; | |
10515 | if (bsi->lowest_ppage > first_ppage_reported) | |
10516 | bsi->lowest_ppage = first_ppage_reported; | |
10517 | if (bsi->highest_ppage < (next_ppage - 1)) | |
10518 | bsi->highest_ppage = next_ppage - 1; | |
10519 | ||
10520 | ret = add_swap_extent(sis, bsi->nr_pages, nr_pages, first_ppage); | |
10521 | if (ret < 0) | |
10522 | return ret; | |
10523 | bsi->nr_extents += ret; | |
10524 | bsi->nr_pages += nr_pages; | |
10525 | return 0; | |
10526 | } | |
10527 | ||
10528 | static void btrfs_swap_deactivate(struct file *file) | |
10529 | { | |
10530 | struct inode *inode = file_inode(file); | |
10531 | ||
10532 | btrfs_free_swapfile_pins(inode); | |
10533 | atomic_dec(&BTRFS_I(inode)->root->nr_swapfiles); | |
10534 | } | |
10535 | ||
10536 | static int btrfs_swap_activate(struct swap_info_struct *sis, struct file *file, | |
10537 | sector_t *span) | |
10538 | { | |
10539 | struct inode *inode = file_inode(file); | |
10540 | struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info; | |
10541 | struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; | |
10542 | struct extent_state *cached_state = NULL; | |
10543 | struct extent_map *em = NULL; | |
10544 | struct btrfs_device *device = NULL; | |
10545 | struct btrfs_swap_info bsi = { | |
10546 | .lowest_ppage = (sector_t)-1ULL, | |
10547 | }; | |
10548 | int ret = 0; | |
10549 | u64 isize; | |
10550 | u64 start; | |
10551 | ||
10552 | /* | |
10553 | * If the swap file was just created, make sure delalloc is done. If the | |
10554 | * file changes again after this, the user is doing something stupid and | |
10555 | * we don't really care. | |
10556 | */ | |
10557 | ret = btrfs_wait_ordered_range(inode, 0, (u64)-1); | |
10558 | if (ret) | |
10559 | return ret; | |
10560 | ||
10561 | /* | |
10562 | * The inode is locked, so these flags won't change after we check them. | |
10563 | */ | |
10564 | if (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS) { | |
10565 | btrfs_warn(fs_info, "swapfile must not be compressed"); | |
10566 | return -EINVAL; | |
10567 | } | |
10568 | if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW)) { | |
10569 | btrfs_warn(fs_info, "swapfile must not be copy-on-write"); | |
10570 | return -EINVAL; | |
10571 | } | |
10572 | if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) { | |
10573 | btrfs_warn(fs_info, "swapfile must not be checksummed"); | |
10574 | return -EINVAL; | |
10575 | } | |
10576 | ||
10577 | /* | |
10578 | * Balance or device remove/replace/resize can move stuff around from | |
10579 | * under us. The EXCL_OP flag makes sure they aren't running/won't run | |
10580 | * concurrently while we are mapping the swap extents, and | |
10581 | * fs_info->swapfile_pins prevents them from running while the swap file | |
10582 | * is active and moving the extents. Note that this also prevents a | |
10583 | * concurrent device add which isn't actually necessary, but it's not | |
10584 | * really worth the trouble to allow it. | |
10585 | */ | |
10586 | if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) { | |
10587 | btrfs_warn(fs_info, | |
10588 | "cannot activate swapfile while exclusive operation is running"); | |
10589 | return -EBUSY; | |
10590 | } | |
10591 | /* | |
10592 | * Snapshots can create extents which require COW even if NODATACOW is | |
10593 | * set. We use this counter to prevent snapshots. We must increment it | |
10594 | * before walking the extents because we don't want a concurrent | |
10595 | * snapshot to run after we've already checked the extents. | |
10596 | */ | |
10597 | atomic_inc(&BTRFS_I(inode)->root->nr_swapfiles); | |
10598 | ||
10599 | isize = ALIGN_DOWN(inode->i_size, fs_info->sectorsize); | |
10600 | ||
10601 | lock_extent_bits(io_tree, 0, isize - 1, &cached_state); | |
10602 | start = 0; | |
10603 | while (start < isize) { | |
10604 | u64 logical_block_start, physical_block_start; | |
10605 | struct btrfs_block_group_cache *bg; | |
10606 | u64 len = isize - start; | |
10607 | ||
10608 | em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0); | |
10609 | if (IS_ERR(em)) { | |
10610 | ret = PTR_ERR(em); | |
10611 | goto out; | |
10612 | } | |
10613 | ||
10614 | if (em->block_start == EXTENT_MAP_HOLE) { | |
10615 | btrfs_warn(fs_info, "swapfile must not have holes"); | |
10616 | ret = -EINVAL; | |
10617 | goto out; | |
10618 | } | |
10619 | if (em->block_start == EXTENT_MAP_INLINE) { | |
10620 | /* | |
10621 | * It's unlikely we'll ever actually find ourselves | |
10622 | * here, as a file small enough to fit inline won't be | |
10623 | * big enough to store more than the swap header, but in | |
10624 | * case something changes in the future, let's catch it | |
10625 | * here rather than later. | |
10626 | */ | |
10627 | btrfs_warn(fs_info, "swapfile must not be inline"); | |
10628 | ret = -EINVAL; | |
10629 | goto out; | |
10630 | } | |
10631 | if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) { | |
10632 | btrfs_warn(fs_info, "swapfile must not be compressed"); | |
10633 | ret = -EINVAL; | |
10634 | goto out; | |
10635 | } | |
10636 | ||
10637 | logical_block_start = em->block_start + (start - em->start); | |
10638 | len = min(len, em->len - (start - em->start)); | |
10639 | free_extent_map(em); | |
10640 | em = NULL; | |
10641 | ||
10642 | ret = can_nocow_extent(inode, start, &len, NULL, NULL, NULL); | |
10643 | if (ret < 0) { | |
10644 | goto out; | |
10645 | } else if (ret) { | |
10646 | ret = 0; | |
10647 | } else { | |
10648 | btrfs_warn(fs_info, | |
10649 | "swapfile must not be copy-on-write"); | |
10650 | ret = -EINVAL; | |
10651 | goto out; | |
10652 | } | |
10653 | ||
10654 | em = btrfs_get_chunk_map(fs_info, logical_block_start, len); | |
10655 | if (IS_ERR(em)) { | |
10656 | ret = PTR_ERR(em); | |
10657 | goto out; | |
10658 | } | |
10659 | ||
10660 | if (em->map_lookup->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) { | |
10661 | btrfs_warn(fs_info, | |
10662 | "swapfile must have single data profile"); | |
10663 | ret = -EINVAL; | |
10664 | goto out; | |
10665 | } | |
10666 | ||
10667 | if (device == NULL) { | |
10668 | device = em->map_lookup->stripes[0].dev; | |
10669 | ret = btrfs_add_swapfile_pin(inode, device, false); | |
10670 | if (ret == 1) | |
10671 | ret = 0; | |
10672 | else if (ret) | |
10673 | goto out; | |
10674 | } else if (device != em->map_lookup->stripes[0].dev) { | |
10675 | btrfs_warn(fs_info, "swapfile must be on one device"); | |
10676 | ret = -EINVAL; | |
10677 | goto out; | |
10678 | } | |
10679 | ||
10680 | physical_block_start = (em->map_lookup->stripes[0].physical + | |
10681 | (logical_block_start - em->start)); | |
10682 | len = min(len, em->len - (logical_block_start - em->start)); | |
10683 | free_extent_map(em); | |
10684 | em = NULL; | |
10685 | ||
10686 | bg = btrfs_lookup_block_group(fs_info, logical_block_start); | |
10687 | if (!bg) { | |
10688 | btrfs_warn(fs_info, | |
10689 | "could not find block group containing swapfile"); | |
10690 | ret = -EINVAL; | |
10691 | goto out; | |
10692 | } | |
10693 | ||
10694 | ret = btrfs_add_swapfile_pin(inode, bg, true); | |
10695 | if (ret) { | |
10696 | btrfs_put_block_group(bg); | |
10697 | if (ret == 1) | |
10698 | ret = 0; | |
10699 | else | |
10700 | goto out; | |
10701 | } | |
10702 | ||
10703 | if (bsi.block_len && | |
10704 | bsi.block_start + bsi.block_len == physical_block_start) { | |
10705 | bsi.block_len += len; | |
10706 | } else { | |
10707 | if (bsi.block_len) { | |
10708 | ret = btrfs_add_swap_extent(sis, &bsi); | |
10709 | if (ret) | |
10710 | goto out; | |
10711 | } | |
10712 | bsi.start = start; | |
10713 | bsi.block_start = physical_block_start; | |
10714 | bsi.block_len = len; | |
10715 | } | |
10716 | ||
10717 | start += len; | |
10718 | } | |
10719 | ||
10720 | if (bsi.block_len) | |
10721 | ret = btrfs_add_swap_extent(sis, &bsi); | |
10722 | ||
10723 | out: | |
10724 | if (!IS_ERR_OR_NULL(em)) | |
10725 | free_extent_map(em); | |
10726 | ||
10727 | unlock_extent_cached(io_tree, 0, isize - 1, &cached_state); | |
10728 | ||
10729 | if (ret) | |
10730 | btrfs_swap_deactivate(file); | |
10731 | ||
10732 | clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags); | |
10733 | ||
10734 | if (ret) | |
10735 | return ret; | |
10736 | ||
10737 | if (device) | |
10738 | sis->bdev = device->bdev; | |
10739 | *span = bsi.highest_ppage - bsi.lowest_ppage + 1; | |
10740 | sis->max = bsi.nr_pages; | |
10741 | sis->pages = bsi.nr_pages - 1; | |
10742 | sis->highest_bit = bsi.nr_pages - 1; | |
10743 | return bsi.nr_extents; | |
10744 | } | |
10745 | #else | |
10746 | static void btrfs_swap_deactivate(struct file *file) | |
10747 | { | |
10748 | } | |
10749 | ||
10750 | static int btrfs_swap_activate(struct swap_info_struct *sis, struct file *file, | |
10751 | sector_t *span) | |
10752 | { | |
10753 | return -EOPNOTSUPP; | |
10754 | } | |
10755 | #endif | |
10756 | ||
6e1d5dcc | 10757 | static const struct inode_operations btrfs_dir_inode_operations = { |
3394e160 | 10758 | .getattr = btrfs_getattr, |
39279cc3 CM |
10759 | .lookup = btrfs_lookup, |
10760 | .create = btrfs_create, | |
10761 | .unlink = btrfs_unlink, | |
10762 | .link = btrfs_link, | |
10763 | .mkdir = btrfs_mkdir, | |
10764 | .rmdir = btrfs_rmdir, | |
2773bf00 | 10765 | .rename = btrfs_rename2, |
39279cc3 CM |
10766 | .symlink = btrfs_symlink, |
10767 | .setattr = btrfs_setattr, | |
618e21d5 | 10768 | .mknod = btrfs_mknod, |
5103e947 | 10769 | .listxattr = btrfs_listxattr, |
fdebe2bd | 10770 | .permission = btrfs_permission, |
4e34e719 | 10771 | .get_acl = btrfs_get_acl, |
996a710d | 10772 | .set_acl = btrfs_set_acl, |
93fd63c2 | 10773 | .update_time = btrfs_update_time, |
ef3b9af5 | 10774 | .tmpfile = btrfs_tmpfile, |
39279cc3 | 10775 | }; |
6e1d5dcc | 10776 | static const struct inode_operations btrfs_dir_ro_inode_operations = { |
39279cc3 | 10777 | .lookup = btrfs_lookup, |
fdebe2bd | 10778 | .permission = btrfs_permission, |
93fd63c2 | 10779 | .update_time = btrfs_update_time, |
39279cc3 | 10780 | }; |
76dda93c | 10781 | |
828c0950 | 10782 | static const struct file_operations btrfs_dir_file_operations = { |
39279cc3 CM |
10783 | .llseek = generic_file_llseek, |
10784 | .read = generic_read_dir, | |
02dbfc99 | 10785 | .iterate_shared = btrfs_real_readdir, |
23b5ec74 | 10786 | .open = btrfs_opendir, |
34287aa3 | 10787 | .unlocked_ioctl = btrfs_ioctl, |
39279cc3 | 10788 | #ifdef CONFIG_COMPAT |
4c63c245 | 10789 | .compat_ioctl = btrfs_compat_ioctl, |
39279cc3 | 10790 | #endif |
6bf13c0c | 10791 | .release = btrfs_release_file, |
e02119d5 | 10792 | .fsync = btrfs_sync_file, |
39279cc3 CM |
10793 | }; |
10794 | ||
20e5506b | 10795 | static const struct extent_io_ops btrfs_extent_io_ops = { |
4d53dddb | 10796 | /* mandatory callbacks */ |
065631f6 | 10797 | .submit_bio_hook = btrfs_submit_bio_hook, |
07157aac CM |
10798 | .readpage_end_io_hook = btrfs_readpage_end_io_hook, |
10799 | }; | |
10800 | ||
35054394 CM |
10801 | /* |
10802 | * btrfs doesn't support the bmap operation because swapfiles | |
10803 | * use bmap to make a mapping of extents in the file. They assume | |
10804 | * these extents won't change over the life of the file and they | |
10805 | * use the bmap result to do IO directly to the drive. | |
10806 | * | |
10807 | * the btrfs bmap call would return logical addresses that aren't | |
10808 | * suitable for IO and they also will change frequently as COW | |
10809 | * operations happen. So, swapfile + btrfs == corruption. | |
10810 | * | |
10811 | * For now we're avoiding this by dropping bmap. | |
10812 | */ | |
7f09410b | 10813 | static const struct address_space_operations btrfs_aops = { |
39279cc3 CM |
10814 | .readpage = btrfs_readpage, |
10815 | .writepage = btrfs_writepage, | |
b293f02e | 10816 | .writepages = btrfs_writepages, |
3ab2fb5a | 10817 | .readpages = btrfs_readpages, |
16432985 | 10818 | .direct_IO = btrfs_direct_IO, |
a52d9a80 CM |
10819 | .invalidatepage = btrfs_invalidatepage, |
10820 | .releasepage = btrfs_releasepage, | |
e6dcd2dc | 10821 | .set_page_dirty = btrfs_set_page_dirty, |
465fdd97 | 10822 | .error_remove_page = generic_error_remove_page, |
ed46ff3d OS |
10823 | .swap_activate = btrfs_swap_activate, |
10824 | .swap_deactivate = btrfs_swap_deactivate, | |
39279cc3 CM |
10825 | }; |
10826 | ||
6e1d5dcc | 10827 | static const struct inode_operations btrfs_file_inode_operations = { |
39279cc3 CM |
10828 | .getattr = btrfs_getattr, |
10829 | .setattr = btrfs_setattr, | |
5103e947 | 10830 | .listxattr = btrfs_listxattr, |
fdebe2bd | 10831 | .permission = btrfs_permission, |
1506fcc8 | 10832 | .fiemap = btrfs_fiemap, |
4e34e719 | 10833 | .get_acl = btrfs_get_acl, |
996a710d | 10834 | .set_acl = btrfs_set_acl, |
e41f941a | 10835 | .update_time = btrfs_update_time, |
39279cc3 | 10836 | }; |
6e1d5dcc | 10837 | static const struct inode_operations btrfs_special_inode_operations = { |
618e21d5 JB |
10838 | .getattr = btrfs_getattr, |
10839 | .setattr = btrfs_setattr, | |
fdebe2bd | 10840 | .permission = btrfs_permission, |
33268eaf | 10841 | .listxattr = btrfs_listxattr, |
4e34e719 | 10842 | .get_acl = btrfs_get_acl, |
996a710d | 10843 | .set_acl = btrfs_set_acl, |
e41f941a | 10844 | .update_time = btrfs_update_time, |
618e21d5 | 10845 | }; |
6e1d5dcc | 10846 | static const struct inode_operations btrfs_symlink_inode_operations = { |
6b255391 | 10847 | .get_link = page_get_link, |
f209561a | 10848 | .getattr = btrfs_getattr, |
22c44fe6 | 10849 | .setattr = btrfs_setattr, |
fdebe2bd | 10850 | .permission = btrfs_permission, |
0279b4cd | 10851 | .listxattr = btrfs_listxattr, |
e41f941a | 10852 | .update_time = btrfs_update_time, |
39279cc3 | 10853 | }; |
76dda93c | 10854 | |
82d339d9 | 10855 | const struct dentry_operations btrfs_dentry_operations = { |
76dda93c YZ |
10856 | .d_delete = btrfs_dentry_delete, |
10857 | }; |