1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Copyright (C) 2007 Oracle. All rights reserved.
4 */
5
6 #ifndef BTRFS_INODE_H
7 #define BTRFS_INODE_H
8
9 #include <linux/hash.h>
10 #include <linux/refcount.h>
11 #include "extent_map.h"
12 #include "extent_io.h"
13 #include "ordered-data.h"
14 #include "delayed-inode.h"
15
16 /*
17 * Since we search a directory based on f_pos (struct dir_context::pos) we have
18 * to start at 2 since '.' and '..' have f_pos of 0 and 1 respectively, so
19 * everybody else has to start at 2 (see btrfs_real_readdir() and dir_emit_dots()).
20 */
21 #define BTRFS_DIR_START_INDEX 2
22
23 /*
24 * ordered_data_close is set by truncate when a file that used
25 * to have good data has been truncated to zero. When it is set
26 * the btrfs file release call will add this inode to the
27 * ordered operations list so that we make sure to flush out any
28 * new data the application may have written before commit.
29 */
30 enum {
31 BTRFS_INODE_FLUSH_ON_CLOSE,
32 BTRFS_INODE_DUMMY,
33 BTRFS_INODE_IN_DEFRAG,
34 BTRFS_INODE_HAS_ASYNC_EXTENT,
35 /*
36 * Always set under the VFS' inode lock, otherwise it can cause races
37 * during fsync (we start as a fast fsync and then end up in a full
38 * fsync racing with ordered extent completion).
39 */
40 BTRFS_INODE_NEEDS_FULL_SYNC,
41 BTRFS_INODE_COPY_EVERYTHING,
42 BTRFS_INODE_IN_DELALLOC_LIST,
43 BTRFS_INODE_HAS_PROPS,
44 BTRFS_INODE_SNAPSHOT_FLUSH,
45 /*
46 * Set and used when logging an inode and it serves to signal that an
47 * inode does not have xattrs, so subsequent fsyncs can avoid searching
48 * for xattrs to log. This bit must be cleared whenever a xattr is added
49 * to an inode.
50 */
51 BTRFS_INODE_NO_XATTRS,
52 /*
53 * Set when we are in a context where we need to start a transaction and
54 * have dirty pages with the respective file range locked. This is to
55 * ensure that when reserving space for the transaction, if we are low
56 * on available space and need to flush delalloc, we will not flush
57 * delalloc for this inode, because that could result in a deadlock (on
58 * the file range, inode's io_tree).
59 */
60 BTRFS_INODE_NO_DELALLOC_FLUSH,
61 /*
62 * Set when we are working on enabling verity for a file. Computing and
63 * writing the whole Merkle tree can take a while so we want to prevent
64 * races where two separate tasks attempt to simultaneously start verity
65 * on the same file.
66 */
67 BTRFS_INODE_VERITY_IN_PROGRESS,
68 /* Set when this inode is a free space inode. */
69 BTRFS_INODE_FREE_SPACE_INODE,
70 };
71
72 /* in memory btrfs inode */
73 struct btrfs_inode {
74 /* which subvolume this inode belongs to */
75 struct btrfs_root *root;
76
77 /* key used to find this inode on disk. This is used by the code
78 * to read in roots of subvolumes
79 */
80 struct btrfs_key location;
81
82 /*
83 * Lock for counters and all fields used to determine if the inode is in
84 * the log or not (last_trans, last_sub_trans, last_log_commit,
85 * logged_trans), to access/update delalloc_bytes, new_delalloc_bytes,
86 * defrag_bytes, disk_i_size, outstanding_extents, csum_bytes and to
87 * update the VFS' inode number of bytes used.
88 * Also protects setting struct file::private_data.
89 */
90 spinlock_t lock;
91
92 /* the extent_tree has caches of all the extent mappings to disk */
93 struct extent_map_tree extent_tree;
94
95 /* the io_tree does range state (DIRTY, LOCKED etc) */
96 struct extent_io_tree io_tree;
97
98 /*
99 * Keep track of where the inode has extent items mapped in order to
100 * make sure the i_size adjustments are accurate
101 */
102 struct extent_io_tree file_extent_tree;
103
104 /* held while logging the inode in tree-log.c */
105 struct mutex log_mutex;
106
107 /*
108 * Counters to keep track of the number of extent item's we may use due
109 * to delalloc and such. outstanding_extents is the number of extent
110 * items we think we'll end up using, and reserved_extents is the number
111 * of extent items we've reserved metadata for. Protected by 'lock'.
112 */
113 unsigned outstanding_extents;
114
115 /* used to order data wrt metadata */
116 struct btrfs_ordered_inode_tree ordered_tree;
117
118 /* list of all the delalloc inodes in the FS. There are times we need
119 * to write all the delalloc pages to disk, and this list is used
120 * to walk them all.
121 */
122 struct list_head delalloc_inodes;
123
124 /* node for the red-black tree that links inodes in subvolume root */
125 struct rb_node rb_node;
126
127 unsigned long runtime_flags;
128
129 /* full 64 bit generation number, struct vfs_inode doesn't have a big
130 * enough field for this.
131 */
132 u64 generation;
133
134 /*
135 * ID of the transaction handle that last modified this inode.
136 * Protected by 'lock'.
137 */
138 u64 last_trans;
139
140 /*
141 * ID of the transaction that last logged this inode.
142 * Protected by 'lock'.
143 */
144 u64 logged_trans;
145
146 /*
147 * Log transaction ID when this inode was last modified.
148 * Protected by 'lock'.
149 */
150 int last_sub_trans;
151
152 /* A local copy of root's last_log_commit. Protected by 'lock'. */
153 int last_log_commit;
154
155 union {
156 /*
157 * Total number of bytes pending delalloc, used by stat to
158 * calculate the real block usage of the file. This is used
159 * only for files. Protected by 'lock'.
160 */
161 u64 delalloc_bytes;
162 /*
163 * The lowest possible index of the next dir index key which
164 * points to an inode that needs to be logged.
165 * This is used only for directories.
166 * Use the helpers btrfs_get_first_dir_index_to_log() and
167 * btrfs_set_first_dir_index_to_log() to access this field.
168 */
169 u64 first_dir_index_to_log;
170 };
171
172 union {
173 /*
174 * Total number of bytes pending delalloc that fall within a file
175 * range that is either a hole or beyond EOF (and no prealloc extent
176 * exists in the range). This is always <= delalloc_bytes and this
177 * is used only for files. Protected by 'lock'.
178 */
179 u64 new_delalloc_bytes;
180 /*
181 * The offset of the last dir index key that was logged.
182 * This is used only for directories.
183 */
184 u64 last_dir_index_offset;
185 };
186
187 /*
188 * Total number of bytes pending defrag, used by stat to check whether
189 * it needs COW. Protected by 'lock'.
190 */
191 u64 defrag_bytes;
192
193 /*
194 * The size of the file stored in the metadata on disk. data=ordered
195 * means the in-memory i_size might be larger than the size on disk
196 * because not all the blocks are written yet. Protected by 'lock'.
197 */
198 u64 disk_i_size;
199
200 /*
201 * If this is a directory then index_cnt is the counter for the index
202 * number for new files that are created. For an empty directory, this
203 * must be initialized to BTRFS_DIR_START_INDEX.
204 */
205 u64 index_cnt;
206
207 /* Cache the directory index number to speed the dir/file remove */
208 u64 dir_index;
209
210 /* the fsync log has some corner cases that mean we have to check
211 * directories to see if any unlinks have been done before
212 * the directory was logged. See tree-log.c for all the
213 * details
214 */
215 u64 last_unlink_trans;
216
217 /*
218 * The id/generation of the last transaction where this inode was
219 * either the source or the destination of a clone/dedupe operation.
220 * Used when logging an inode to know if there are shared extents that
221 * need special care when logging checksum items, to avoid duplicate
222 * checksum items in a log (which can lead to a corruption where we end
223 * up with missing checksum ranges after log replay).
224 * Protected by the vfs inode lock.
225 */
226 u64 last_reflink_trans;
227
228 /*
229 * Number of bytes outstanding that are going to need csums. This is
230 * used in ENOSPC accounting. Protected by 'lock'.
231 */
232 u64 csum_bytes;
233
234 /* Backwards incompatible flags, lower half of inode_item::flags */
235 u32 flags;
236 /* Read-only compatibility flags, upper half of inode_item::flags */
237 u32 ro_flags;
238
239 struct btrfs_block_rsv block_rsv;
240
241 /*
242 * Cached values of inode properties
243 */
244 unsigned prop_compress; /* per-file compression algorithm */
245 /*
246 * Force compression on the file using the defrag ioctl, could be
247 * different from prop_compress and takes precedence if set
248 */
249 unsigned defrag_compress;
250
251 struct btrfs_delayed_node *delayed_node;
252
253 /* File creation time. */
254 struct timespec64 i_otime;
255
256 /* Hook into fs_info->delayed_iputs */
257 struct list_head delayed_iput;
258
259 struct rw_semaphore i_mmap_lock;
260 struct inode vfs_inode;
261 };
262
btrfs_get_first_dir_index_to_log(const struct btrfs_inode * inode)263 static inline u64 btrfs_get_first_dir_index_to_log(const struct btrfs_inode *inode)
264 {
265 return READ_ONCE(inode->first_dir_index_to_log);
266 }
267
btrfs_set_first_dir_index_to_log(struct btrfs_inode * inode,u64 index)268 static inline void btrfs_set_first_dir_index_to_log(struct btrfs_inode *inode,
269 u64 index)
270 {
271 WRITE_ONCE(inode->first_dir_index_to_log, index);
272 }
273
BTRFS_I(const struct inode * inode)274 static inline struct btrfs_inode *BTRFS_I(const struct inode *inode)
275 {
276 return container_of(inode, struct btrfs_inode, vfs_inode);
277 }
278
btrfs_inode_hash(u64 objectid,const struct btrfs_root * root)279 static inline unsigned long btrfs_inode_hash(u64 objectid,
280 const struct btrfs_root *root)
281 {
282 u64 h = objectid ^ (root->root_key.objectid * GOLDEN_RATIO_PRIME);
283
284 #if BITS_PER_LONG == 32
285 h = (h >> 32) ^ (h & 0xffffffff);
286 #endif
287
288 return (unsigned long)h;
289 }
290
291 #if BITS_PER_LONG == 32
292
293 /*
294 * On 32 bit systems the i_ino of struct inode is 32 bits (unsigned long), so
295 * we use the inode's location objectid which is a u64 to avoid truncation.
296 */
btrfs_ino(const struct btrfs_inode * inode)297 static inline u64 btrfs_ino(const struct btrfs_inode *inode)
298 {
299 u64 ino = inode->location.objectid;
300
301 /* type == BTRFS_ROOT_ITEM_KEY: subvol dir */
302 if (inode->location.type == BTRFS_ROOT_ITEM_KEY)
303 ino = inode->vfs_inode.i_ino;
304 return ino;
305 }
306
307 #else
308
btrfs_ino(const struct btrfs_inode * inode)309 static inline u64 btrfs_ino(const struct btrfs_inode *inode)
310 {
311 return inode->vfs_inode.i_ino;
312 }
313
314 #endif
315
btrfs_i_size_write(struct btrfs_inode * inode,u64 size)316 static inline void btrfs_i_size_write(struct btrfs_inode *inode, u64 size)
317 {
318 i_size_write(&inode->vfs_inode, size);
319 inode->disk_i_size = size;
320 }
321
btrfs_is_free_space_inode(struct btrfs_inode * inode)322 static inline bool btrfs_is_free_space_inode(struct btrfs_inode *inode)
323 {
324 return test_bit(BTRFS_INODE_FREE_SPACE_INODE, &inode->runtime_flags);
325 }
326
is_data_inode(struct inode * inode)327 static inline bool is_data_inode(struct inode *inode)
328 {
329 return btrfs_ino(BTRFS_I(inode)) != BTRFS_BTREE_INODE_OBJECTID;
330 }
331
btrfs_mod_outstanding_extents(struct btrfs_inode * inode,int mod)332 static inline void btrfs_mod_outstanding_extents(struct btrfs_inode *inode,
333 int mod)
334 {
335 lockdep_assert_held(&inode->lock);
336 inode->outstanding_extents += mod;
337 if (btrfs_is_free_space_inode(inode))
338 return;
339 trace_btrfs_inode_mod_outstanding_extents(inode->root, btrfs_ino(inode),
340 mod, inode->outstanding_extents);
341 }
342
343 /*
344 * Called every time after doing a buffered, direct IO or memory mapped write.
345 *
346 * This is to ensure that if we write to a file that was previously fsynced in
347 * the current transaction, then try to fsync it again in the same transaction,
348 * we will know that there were changes in the file and that it needs to be
349 * logged.
350 */
btrfs_set_inode_last_sub_trans(struct btrfs_inode * inode)351 static inline void btrfs_set_inode_last_sub_trans(struct btrfs_inode *inode)
352 {
353 spin_lock(&inode->lock);
354 inode->last_sub_trans = inode->root->log_transid;
355 spin_unlock(&inode->lock);
356 }
357
358 /*
359 * Should be called while holding the inode's VFS lock in exclusive mode or in a
360 * context where no one else can access the inode concurrently (during inode
361 * creation or when loading an inode from disk).
362 */
btrfs_set_inode_full_sync(struct btrfs_inode * inode)363 static inline void btrfs_set_inode_full_sync(struct btrfs_inode *inode)
364 {
365 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
366 /*
367 * The inode may have been part of a reflink operation in the last
368 * transaction that modified it, and then a fsync has reset the
369 * last_reflink_trans to avoid subsequent fsyncs in the same
370 * transaction to do unnecessary work. So update last_reflink_trans
371 * to the last_trans value (we have to be pessimistic and assume a
372 * reflink happened).
373 *
374 * The ->last_trans is protected by the inode's spinlock and we can
375 * have a concurrent ordered extent completion update it. Also set
376 * last_reflink_trans to ->last_trans only if the former is less than
377 * the later, because we can be called in a context where
378 * last_reflink_trans was set to the current transaction generation
379 * while ->last_trans was not yet updated in the current transaction,
380 * and therefore has a lower value.
381 */
382 spin_lock(&inode->lock);
383 if (inode->last_reflink_trans < inode->last_trans)
384 inode->last_reflink_trans = inode->last_trans;
385 spin_unlock(&inode->lock);
386 }
387
btrfs_inode_in_log(struct btrfs_inode * inode,u64 generation)388 static inline bool btrfs_inode_in_log(struct btrfs_inode *inode, u64 generation)
389 {
390 bool ret = false;
391
392 spin_lock(&inode->lock);
393 if (inode->logged_trans == generation &&
394 inode->last_sub_trans <= inode->last_log_commit &&
395 inode->last_sub_trans <= inode->root->last_log_commit)
396 ret = true;
397 spin_unlock(&inode->lock);
398 return ret;
399 }
400
401 /*
402 * Check if the inode has flags compatible with compression
403 */
btrfs_inode_can_compress(const struct btrfs_inode * inode)404 static inline bool btrfs_inode_can_compress(const struct btrfs_inode *inode)
405 {
406 if (inode->flags & BTRFS_INODE_NODATACOW ||
407 inode->flags & BTRFS_INODE_NODATASUM)
408 return false;
409 return true;
410 }
411
412 /* Array of bytes with variable length, hexadecimal format 0x1234 */
413 #define CSUM_FMT "0x%*phN"
414 #define CSUM_FMT_VALUE(size, bytes) size, bytes
415
416 int btrfs_check_sector_csum(struct btrfs_fs_info *fs_info, struct page *page,
417 u32 pgoff, u8 *csum, const u8 * const csum_expected);
418 bool btrfs_data_csum_ok(struct btrfs_bio *bbio, struct btrfs_device *dev,
419 u32 bio_offset, struct bio_vec *bv);
420 noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
421 u64 *orig_start, u64 *orig_block_len,
422 u64 *ram_bytes, bool nowait, bool strict);
423
424 void __btrfs_del_delalloc_inode(struct btrfs_root *root, struct btrfs_inode *inode);
425 struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry);
426 int btrfs_set_inode_index(struct btrfs_inode *dir, u64 *index);
427 int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
428 struct btrfs_inode *dir, struct btrfs_inode *inode,
429 const struct fscrypt_str *name);
430 int btrfs_add_link(struct btrfs_trans_handle *trans,
431 struct btrfs_inode *parent_inode, struct btrfs_inode *inode,
432 const struct fscrypt_str *name, int add_backref, u64 index);
433 int btrfs_delete_subvolume(struct btrfs_inode *dir, struct dentry *dentry);
434 int btrfs_truncate_block(struct btrfs_inode *inode, loff_t from, loff_t len,
435 int front);
436
437 int btrfs_start_delalloc_snapshot(struct btrfs_root *root, bool in_reclaim_context);
438 int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, long nr,
439 bool in_reclaim_context);
440 int btrfs_set_extent_delalloc(struct btrfs_inode *inode, u64 start, u64 end,
441 unsigned int extra_bits,
442 struct extent_state **cached_state);
443
444 struct btrfs_new_inode_args {
445 /* Input */
446 struct inode *dir;
447 struct dentry *dentry;
448 struct inode *inode;
449 bool orphan;
450 bool subvol;
451
452 /* Output from btrfs_new_inode_prepare(), input to btrfs_create_new_inode(). */
453 struct posix_acl *default_acl;
454 struct posix_acl *acl;
455 struct fscrypt_name fname;
456 };
457
458 int btrfs_new_inode_prepare(struct btrfs_new_inode_args *args,
459 unsigned int *trans_num_items);
460 int btrfs_create_new_inode(struct btrfs_trans_handle *trans,
461 struct btrfs_new_inode_args *args);
462 void btrfs_new_inode_args_destroy(struct btrfs_new_inode_args *args);
463 struct inode *btrfs_new_subvol_inode(struct mnt_idmap *idmap,
464 struct inode *dir);
465 void btrfs_set_delalloc_extent(struct btrfs_inode *inode, struct extent_state *state,
466 u32 bits);
467 void btrfs_clear_delalloc_extent(struct btrfs_inode *inode,
468 struct extent_state *state, u32 bits);
469 void btrfs_merge_delalloc_extent(struct btrfs_inode *inode, struct extent_state *new,
470 struct extent_state *other);
471 void btrfs_split_delalloc_extent(struct btrfs_inode *inode,
472 struct extent_state *orig, u64 split);
473 void btrfs_set_range_writeback(struct btrfs_inode *inode, u64 start, u64 end);
474 vm_fault_t btrfs_page_mkwrite(struct vm_fault *vmf);
475 void btrfs_evict_inode(struct inode *inode);
476 struct inode *btrfs_alloc_inode(struct super_block *sb);
477 void btrfs_destroy_inode(struct inode *inode);
478 void btrfs_free_inode(struct inode *inode);
479 int btrfs_drop_inode(struct inode *inode);
480 int __init btrfs_init_cachep(void);
481 void __cold btrfs_destroy_cachep(void);
482 struct inode *btrfs_iget_path(struct super_block *s, u64 ino,
483 struct btrfs_root *root, struct btrfs_path *path);
484 struct inode *btrfs_iget(struct super_block *s, u64 ino, struct btrfs_root *root);
485 struct extent_map *btrfs_get_extent(struct btrfs_inode *inode,
486 struct page *page, size_t pg_offset,
487 u64 start, u64 end);
488 int btrfs_update_inode(struct btrfs_trans_handle *trans,
489 struct btrfs_root *root, struct btrfs_inode *inode);
490 int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
491 struct btrfs_root *root, struct btrfs_inode *inode);
492 int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct btrfs_inode *inode);
493 int btrfs_orphan_cleanup(struct btrfs_root *root);
494 int btrfs_cont_expand(struct btrfs_inode *inode, loff_t oldsize, loff_t size);
495 void btrfs_add_delayed_iput(struct btrfs_inode *inode);
496 void btrfs_run_delayed_iputs(struct btrfs_fs_info *fs_info);
497 int btrfs_wait_on_delayed_iputs(struct btrfs_fs_info *fs_info);
498 int btrfs_prealloc_file_range(struct inode *inode, int mode,
499 u64 start, u64 num_bytes, u64 min_size,
500 loff_t actual_len, u64 *alloc_hint);
501 int btrfs_prealloc_file_range_trans(struct inode *inode,
502 struct btrfs_trans_handle *trans, int mode,
503 u64 start, u64 num_bytes, u64 min_size,
504 loff_t actual_len, u64 *alloc_hint);
505 int btrfs_run_delalloc_range(struct btrfs_inode *inode, struct page *locked_page,
506 u64 start, u64 end, struct writeback_control *wbc);
507 int btrfs_writepage_cow_fixup(struct page *page);
508 int btrfs_encoded_io_compression_from_extent(struct btrfs_fs_info *fs_info,
509 int compress_type);
510 int btrfs_encoded_read_regular_fill_pages(struct btrfs_inode *inode,
511 u64 file_offset, u64 disk_bytenr,
512 u64 disk_io_size,
513 struct page **pages);
514 ssize_t btrfs_encoded_read(struct kiocb *iocb, struct iov_iter *iter,
515 struct btrfs_ioctl_encoded_io_args *encoded);
516 ssize_t btrfs_do_encoded_write(struct kiocb *iocb, struct iov_iter *from,
517 const struct btrfs_ioctl_encoded_io_args *encoded);
518
519 ssize_t btrfs_dio_read(struct kiocb *iocb, struct iov_iter *iter,
520 size_t done_before);
521 struct iomap_dio *btrfs_dio_write(struct kiocb *iocb, struct iov_iter *iter,
522 size_t done_before);
523
524 extern const struct dentry_operations btrfs_dentry_operations;
525
526 /* Inode locking type flags, by default the exclusive lock is taken. */
527 enum btrfs_ilock_type {
528 ENUM_BIT(BTRFS_ILOCK_SHARED),
529 ENUM_BIT(BTRFS_ILOCK_TRY),
530 ENUM_BIT(BTRFS_ILOCK_MMAP),
531 };
532
533 int btrfs_inode_lock(struct btrfs_inode *inode, unsigned int ilock_flags);
534 void btrfs_inode_unlock(struct btrfs_inode *inode, unsigned int ilock_flags);
535 void btrfs_update_inode_bytes(struct btrfs_inode *inode, const u64 add_bytes,
536 const u64 del_bytes);
537 void btrfs_assert_inode_range_clean(struct btrfs_inode *inode, u64 start, u64 end);
538
539 #endif
540