fs/ntfs3: use non-movable memory for ntfs3 MFT buffer cache
[linux-block.git] / fs / ntfs3 / ntfs_fs.h
CommitLineData
4534a70b
KK
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 *
4 * Copyright (C) 2019-2021 Paragon Software GmbH, All rights reserved.
5 *
6 */
7
8// clang-format off
87790b65
KA
9#ifndef _LINUX_NTFS3_NTFS_FS_H
10#define _LINUX_NTFS3_NTFS_FS_H
11
f239b3a9
KA
12#include <linux/blkdev.h>
13#include <linux/buffer_head.h>
f239b3a9
KA
14#include <linux/fs.h>
15#include <linux/highmem.h>
16#include <linux/kernel.h>
17#include <linux/mm.h>
18#include <linux/mutex.h>
19#include <linux/page-flags.h>
20#include <linux/pagemap.h>
21#include <linux/rbtree.h>
22#include <linux/rwsem.h>
23#include <linux/slab.h>
24#include <linux/string.h>
25#include <linux/time64.h>
26#include <linux/types.h>
27#include <linux/uidgid.h>
28#include <asm/div64.h>
29#include <asm/page.h>
30
31#include "debug.h"
32#include "ntfs.h"
33
34struct dentry;
35struct fiemap_extent_info;
36struct user_namespace;
37struct page;
38struct writeback_control;
39enum utf16_endian;
40
41
4534a70b
KK
42#define MINUS_ONE_T ((size_t)(-1))
43/* Biggest MFT / smallest cluster */
44#define MAXIMUM_BYTES_PER_MFT 4096
91a4b1ee 45#define MAXIMUM_SHIFT_BYTES_PER_MFT 12
4534a70b
KK
46#define NTFS_BLOCKS_PER_MFT_RECORD (MAXIMUM_BYTES_PER_MFT / 512)
47
48#define MAXIMUM_BYTES_PER_INDEX 4096
91a4b1ee 49#define MAXIMUM_SHIFT_BYTES_PER_INDEX 12
4534a70b
KK
50#define NTFS_BLOCKS_PER_INODE (MAXIMUM_BYTES_PER_INDEX / 512)
51
e8b8e97f 52/* NTFS specific error code when fixup failed. */
4534a70b 53#define E_NTFS_FIXUP 555
e8b8e97f 54/* NTFS specific error code about resident->nonresident. */
4534a70b 55#define E_NTFS_NONRESIDENT 556
e8b8e97f 56/* NTFS specific error code about punch hole. */
4534a70b 57#define E_NTFS_NOTALIGNED 557
e0f363a9
KK
58/* NTFS specific error code when on-disk struct is corrupted. */
59#define E_NTFS_CORRUPT 558
4534a70b
KK
60
61
62/* sbi->flags */
63#define NTFS_FLAGS_NODISCARD 0x00000001
6c3684e7 64/* ntfs in shutdown state. */
97ec56d3 65#define NTFS_FLAGS_SHUTDOWN_BIT 0x00000002 /* == 4*/
e8b8e97f 66/* Set when LogFile is replaying. */
4534a70b 67#define NTFS_FLAGS_LOG_REPLAYING 0x00000008
e8b8e97f 68/* Set when we changed first MFT's which copy must be updated in $MftMirr. */
4534a70b
KK
69#define NTFS_FLAGS_MFTMIRR 0x00001000
70#define NTFS_FLAGS_NEED_REPLAY 0x04000000
71
72
73/* ni->ni_flags */
74/*
e8b8e97f 75 * Data attribute is external compressed (LZX/Xpress)
4534a70b
KK
76 * 1 - WOF_COMPRESSION_XPRESS4K
77 * 2 - WOF_COMPRESSION_XPRESS8K
78 * 3 - WOF_COMPRESSION_XPRESS16K
79 * 4 - WOF_COMPRESSION_LZX32K
80 */
81#define NI_FLAG_COMPRESSED_MASK 0x0000000f
e8b8e97f 82/* Data attribute is deduplicated. */
4534a70b
KK
83#define NI_FLAG_DEDUPLICATED 0x00000010
84#define NI_FLAG_EA 0x00000020
85#define NI_FLAG_DIR 0x00000040
86#define NI_FLAG_RESIDENT 0x00000080
87#define NI_FLAG_UPDATE_PARENT 0x00000100
88// clang-format on
89
90struct ntfs_mount_options {
610f8f5a 91 char *nls_name;
4534a70b
KK
92 struct nls_table *nls;
93
94 kuid_t fs_uid;
95 kgid_t fs_gid;
96 u16 fs_fmask_inv;
97 u16 fs_dmask_inv;
98
15b2ae77
KA
99 unsigned fmask : 1; /* fmask was set. */
100 unsigned dmask : 1; /*dmask was set. */
101 unsigned sys_immutable : 1; /* Immutable system files. */
102 unsigned discard : 1; /* Issue discard requests on deletions. */
103 unsigned sparse : 1; /* Create sparse files. */
104 unsigned showmeta : 1; /* Show meta files. */
105 unsigned nohidden : 1; /* Do not show hidden files. */
098250db 106 unsigned hide_dot_files : 1; /* Set hidden flag on dot files. */
1d07a9df 107 unsigned windows_names : 1; /* Disallow names forbidden by Windows. */
15b2ae77 108 unsigned force : 1; /* RW mount dirty volume. */
15b2ae77 109 unsigned prealloc : 1; /* Preallocate space when file is growing. */
a3a956c7 110 unsigned nocase : 1; /* case insensitive. */
4534a70b
KK
111};
112
e8b8e97f 113/* Special value to unpack and deallocate. */
4534a70b
KK
114#define RUN_DEALLOCATE ((struct runs_tree *)(size_t)1)
115
e8b8e97f 116/* TODO: Use rb tree instead of array. */
4534a70b
KK
117struct runs_tree {
118 struct ntfs_run *runs;
e8b8e97f
KA
119 size_t count; /* Currently used size a ntfs_run storage. */
120 size_t allocated; /* Currently allocated ntfs_run storage size. */
4534a70b
KK
121};
122
123struct ntfs_buffers {
124 /* Biggest MFT / smallest cluster = 4096 / 512 = 8 */
125 /* Biggest index / smallest cluster = 4096 / 512 = 8 */
126 struct buffer_head *bh[PAGE_SIZE >> SECTOR_SHIFT];
127 u32 bytes;
128 u32 nbufs;
129 u32 off;
130};
131
132enum ALLOCATE_OPT {
e8b8e97f
KA
133 ALLOCATE_DEF = 0, // Allocate all clusters.
134 ALLOCATE_MFT = 1, // Allocate for MFT.
c380b52f 135 ALLOCATE_ZERO = 2, // Zeroout new allocated clusters
4534a70b
KK
136};
137
138enum bitmap_mutex_classes {
139 BITMAP_MUTEX_CLUSTERS = 0,
140 BITMAP_MUTEX_MFT = 1,
141};
142
143struct wnd_bitmap {
144 struct super_block *sb;
145 struct rw_semaphore rw_lock;
146
147 struct runs_tree run;
148 size_t nbits;
149
e8b8e97f
KA
150 size_t total_zeroes; // Total number of free bits.
151 u16 *free_bits; // Free bits in each window.
4534a70b 152 size_t nwnd;
e8b8e97f 153 u32 bits_last; // Bits in last window.
4534a70b 154
e8b8e97f
KA
155 struct rb_root start_tree; // Extents, sorted by 'start'.
156 struct rb_root count_tree; // Extents, sorted by 'count + start'.
157 size_t count; // Extents count.
4534a70b
KK
158
159 /*
e8b8e97f
KA
160 * -1 Tree is activated but not updated (too many fragments).
161 * 0 - Tree is not activated.
162 * 1 - Tree is activated and updated.
4534a70b
KK
163 */
164 int uptodated;
e8b8e97f
KA
165 size_t extent_min; // Minimal extent used while building.
166 size_t extent_max; // Upper estimate of biggest free block.
4534a70b
KK
167
168 /* Zone [bit, end) */
169 size_t zone_bit;
170 size_t zone_end;
171
4534a70b
KK
172 bool inited;
173};
174
175typedef int (*NTFS_CMP_FUNC)(const void *key1, size_t len1, const void *key2,
176 size_t len2, const void *param);
177
178enum index_mutex_classed {
179 INDEX_MUTEX_I30 = 0,
180 INDEX_MUTEX_SII = 1,
181 INDEX_MUTEX_SDH = 2,
182 INDEX_MUTEX_SO = 3,
183 INDEX_MUTEX_SQ = 4,
184 INDEX_MUTEX_SR = 5,
185 INDEX_MUTEX_TOTAL
186};
187
e8b8e97f 188/* ntfs_index - Allocation unit inside directory. */
4534a70b
KK
189struct ntfs_index {
190 struct runs_tree bitmap_run;
191 struct runs_tree alloc_run;
192 /* read/write access to 'bitmap_run'/'alloc_run' while ntfs_readdir */
193 struct rw_semaphore run_lock;
194
e8b8e97f 195 /*TODO: Remove 'cmp'. */
4534a70b
KK
196 NTFS_CMP_FUNC cmp;
197
198 u8 index_bits; // log2(root->index_block_size)
199 u8 idx2vbn_bits; // log2(root->index_block_clst)
200 u8 vbn2vbo_bits; // index_block_size < cluster? 9 : cluster_bits
201 u8 type; // index_mutex_classed
202};
203
e8b8e97f 204/* Minimum MFT zone. */
4534a70b 205#define NTFS_MIN_MFT_ZONE 100
97a6815e
KK
206/* Step to increase the MFT. */
207#define NTFS_MFT_INCREASE_STEP 1024
4534a70b 208
e8b8e97f 209/* Ntfs file system in-core superblock data. */
4534a70b
KK
210struct ntfs_sb_info {
211 struct super_block *sb;
212
213 u32 discard_granularity;
214 u64 discard_granularity_mask_inv; // ~(discard_granularity_mask_inv-1)
215
216 u32 cluster_size; // bytes per cluster
217 u32 cluster_mask; // == cluster_size - 1
218 u64 cluster_mask_inv; // ~(cluster_size - 1)
219 u32 block_mask; // sb->s_blocksize - 1
220 u32 blocks_per_cluster; // cluster_size / sb->s_blocksize
221
222 u32 record_size;
4534a70b
KK
223 u32 index_size;
224
4534a70b
KK
225 u8 cluster_bits;
226 u8 record_bits;
227
e8b8e97f
KA
228 u64 maxbytes; // Maximum size for normal files.
229 u64 maxbytes_sparse; // Maximum size for sparse file.
4534a70b 230
6c3684e7 231 unsigned long flags; // See NTFS_FLAGS_
4534a70b 232
8335ebe1 233 CLST zone_max; // Maximum MFT zone length in clusters
e8b8e97f 234 CLST bad_clusters; // The count of marked bad clusters.
4534a70b 235
e8b8e97f
KA
236 u16 max_bytes_per_attr; // Maximum attribute size in record.
237 u16 attr_size_tr; // Attribute size threshold (320 bytes).
4534a70b 238
e8b8e97f 239 /* Records in $Extend. */
4534a70b
KK
240 CLST objid_no;
241 CLST quota_no;
242 CLST reparse_no;
243 CLST usn_jrnl_no;
244
e8b8e97f 245 struct ATTR_DEF_ENTRY *def_table; // Attribute definition table.
4534a70b
KK
246 u32 def_entries;
247 u32 ea_max_size;
248
249 struct MFT_REC *new_rec;
250
251 u16 *upcase;
252
253 struct {
254 u64 lbo, lbo2;
255 struct ntfs_inode *ni;
256 struct wnd_bitmap bitmap; // $MFT::Bitmap
257 /*
e8b8e97f 258 * MFT records [11-24) used to expand MFT itself.
4534a70b 259 * They always marked as used in $MFT::Bitmap
e8b8e97f 260 * 'reserved_bitmap' contains real bitmap of these records.
4534a70b 261 */
e8b8e97f 262 ulong reserved_bitmap; // Bitmap of used records [11 - 24)
4534a70b 263 size_t next_free; // The next record to allocate from
e8b8e97f 264 size_t used; // MFT valid size in records.
4534a70b
KK
265 u32 recs_mirr; // Number of records in MFTMirr
266 u8 next_reserved;
267 u8 reserved_bitmap_inited;
268 } mft;
269
270 struct {
271 struct wnd_bitmap bitmap; // $Bitmap::Data
272 CLST next_free_lcn;
273 } used;
274
275 struct {
e8b8e97f
KA
276 u64 size; // In bytes.
277 u64 blocks; // In blocks.
4534a70b
KK
278 u64 ser_num;
279 struct ntfs_inode *ni;
e8b8e97f 280 __le16 flags; // Cached current VOLUME_INFO::flags, VOLUME_FLAG_DIRTY.
4534a70b
KK
281 u8 major_ver;
282 u8 minor_ver;
7832e123 283 char label[256];
e8b8e97f 284 bool real_dirty; // Real fs state.
4534a70b
KK
285 } volume;
286
287 struct {
288 struct ntfs_index index_sii;
289 struct ntfs_index index_sdh;
290 struct ntfs_inode *ni;
291 u32 next_id;
292 u64 next_off;
4534a70b
KK
293 __le32 def_security_id;
294 } security;
295
296 struct {
297 struct ntfs_index index_r;
298 struct ntfs_inode *ni;
299 u64 max_size; // 16K
300 } reparse;
301
302 struct {
303 struct ntfs_index index_o;
304 struct ntfs_inode *ni;
305 } objid;
306
307 struct {
308 struct mutex mtx_lznt;
309 struct lznt *lznt;
310#ifdef CONFIG_NTFS3_LZX_XPRESS
311 struct mutex mtx_xpress;
312 struct xpress_decompressor *xpress;
313 struct mutex mtx_lzx;
314 struct lzx_decompressor *lzx;
315#endif
316 } compress;
317
564c97bd 318 struct ntfs_mount_options *options;
4534a70b 319 struct ratelimit_state msg_ratelimit;
7832e123 320 struct proc_dir_entry *procdir;
4534a70b
KK
321};
322
e8b8e97f 323/* One MFT record(usually 1024 bytes), consists of attributes. */
4534a70b
KK
324struct mft_inode {
325 struct rb_node node;
326 struct ntfs_sb_info *sbi;
327
328 struct MFT_REC *mrec;
329 struct ntfs_buffers nb;
330
331 CLST rno;
332 bool dirty;
333};
334
e8b8e97f 335/* Nested class for ntfs_inode::ni_lock. */
4534a70b
KK
336enum ntfs_inode_mutex_lock_class {
337 NTFS_INODE_MUTEX_DIRTY,
338 NTFS_INODE_MUTEX_SECURITY,
339 NTFS_INODE_MUTEX_OBJID,
340 NTFS_INODE_MUTEX_REPARSE,
341 NTFS_INODE_MUTEX_NORMAL,
342 NTFS_INODE_MUTEX_PARENT,
0ad9dfcb 343 NTFS_INODE_MUTEX_PARENT2,
4534a70b
KK
344};
345
346/*
96de65a9 347 * struct ntfs_inode
e8b8e97f
KA
348 *
349 * Ntfs inode - extends linux inode. consists of one or more MFT inodes.
4534a70b
KK
350 */
351struct ntfs_inode {
352 struct mft_inode mi; // base record
353
354 /*
e8b8e97f
KA
355 * Valid size: [0 - i_valid) - these range in file contains valid data.
356 * Range [i_valid - inode->i_size) - contains 0.
357 * Usually i_valid <= inode->i_size.
4534a70b
KK
358 */
359 u64 i_valid;
360 struct timespec64 i_crtime;
361
362 struct mutex ni_lock;
363
e8b8e97f 364 /* File attributes from std. */
4534a70b
KK
365 enum FILE_ATTRIBUTE std_fa;
366 __le32 std_security_id;
367
368 /*
e8b8e97f
KA
369 * Tree of mft_inode.
370 * Not empty when primary MFT record (usually 1024 bytes) can't save all attributes
371 * e.g. file becomes too fragmented or contains a lot of names.
4534a70b
KK
372 */
373 struct rb_root mi_tree;
374
375 /*
376 * This member is used in ntfs_readdir to ensure that all subrecords are loaded
377 */
378 u8 mi_loaded;
379
380 union {
381 struct ntfs_index dir;
382 struct {
383 struct rw_semaphore run_lock;
384 struct runs_tree run;
385#ifdef CONFIG_NTFS3_LZX_XPRESS
386 struct page *offs_page;
387#endif
388 } file;
389 };
390
391 struct {
392 struct runs_tree run;
e8b8e97f 393 struct ATTR_LIST_ENTRY *le; // 1K aligned memory.
4534a70b
KK
394 size_t size;
395 bool dirty;
396 } attr_list;
397
398 size_t ni_flags; // NI_FLAG_XXX
399
400 struct inode vfs_inode;
401};
402
403struct indx_node {
404 struct ntfs_buffers nb;
405 struct INDEX_BUFFER *index;
406};
407
408struct ntfs_fnd {
409 int level;
410 struct indx_node *nodes[20];
411 struct NTFS_DE *de[20];
412 struct NTFS_DE *root_de;
413};
414
415enum REPARSE_SIGN {
416 REPARSE_NONE = 0,
417 REPARSE_COMPRESSED = 1,
418 REPARSE_DEDUPLICATED = 2,
419 REPARSE_LINK = 3
420};
421
e8b8e97f 422/* Functions from attrib.c */
4534a70b
KK
423int attr_allocate_clusters(struct ntfs_sb_info *sbi, struct runs_tree *run,
424 CLST vcn, CLST lcn, CLST len, CLST *pre_alloc,
425 enum ALLOCATE_OPT opt, CLST *alen, const size_t fr,
c380b52f 426 CLST *new_lcn, CLST *new_len);
4534a70b
KK
427int attr_make_nonresident(struct ntfs_inode *ni, struct ATTRIB *attr,
428 struct ATTR_LIST_ENTRY *le, struct mft_inode *mi,
429 u64 new_size, struct runs_tree *run,
430 struct ATTRIB **ins_attr, struct page *page);
431int attr_set_size(struct ntfs_inode *ni, enum ATTR_TYPE type,
432 const __le16 *name, u8 name_len, struct runs_tree *run,
433 u64 new_size, const u64 *new_valid, bool keep_prealloc,
434 struct ATTRIB **ret);
435int attr_data_get_block(struct ntfs_inode *ni, CLST vcn, CLST clen, CLST *lcn,
c380b52f 436 CLST *len, bool *new, bool zero);
4534a70b
KK
437int attr_data_read_resident(struct ntfs_inode *ni, struct page *page);
438int attr_data_write_resident(struct ntfs_inode *ni, struct page *page);
439int attr_load_runs_vcn(struct ntfs_inode *ni, enum ATTR_TYPE type,
440 const __le16 *name, u8 name_len, struct runs_tree *run,
441 CLST vcn);
442int attr_load_runs_range(struct ntfs_inode *ni, enum ATTR_TYPE type,
443 const __le16 *name, u8 name_len, struct runs_tree *run,
444 u64 from, u64 to);
445int attr_wof_frame_info(struct ntfs_inode *ni, struct ATTRIB *attr,
446 struct runs_tree *run, u64 frame, u64 frames,
447 u8 frame_bits, u32 *ondisk_size, u64 *vbo_data);
448int attr_is_frame_compressed(struct ntfs_inode *ni, struct ATTRIB *attr,
449 CLST frame, CLST *clst_data);
450int attr_allocate_frame(struct ntfs_inode *ni, CLST frame, size_t compr_size,
451 u64 new_valid);
452int attr_collapse_range(struct ntfs_inode *ni, u64 vbo, u64 bytes);
aa30eccb 453int attr_insert_range(struct ntfs_inode *ni, u64 vbo, u64 bytes);
4534a70b
KK
454int attr_punch_hole(struct ntfs_inode *ni, u64 vbo, u64 bytes, u32 *frame_size);
455
e8b8e97f 456/* Functions from attrlist.c */
4534a70b
KK
457void al_destroy(struct ntfs_inode *ni);
458bool al_verify(struct ntfs_inode *ni);
459int ntfs_load_attr_list(struct ntfs_inode *ni, struct ATTRIB *attr);
460struct ATTR_LIST_ENTRY *al_enumerate(struct ntfs_inode *ni,
461 struct ATTR_LIST_ENTRY *le);
462struct ATTR_LIST_ENTRY *al_find_le(struct ntfs_inode *ni,
463 struct ATTR_LIST_ENTRY *le,
464 const struct ATTRIB *attr);
465struct ATTR_LIST_ENTRY *al_find_ex(struct ntfs_inode *ni,
466 struct ATTR_LIST_ENTRY *le,
467 enum ATTR_TYPE type, const __le16 *name,
468 u8 name_len, const CLST *vcn);
469int al_add_le(struct ntfs_inode *ni, enum ATTR_TYPE type, const __le16 *name,
470 u8 name_len, CLST svcn, __le16 id, const struct MFT_REF *ref,
471 struct ATTR_LIST_ENTRY **new_le);
472bool al_remove_le(struct ntfs_inode *ni, struct ATTR_LIST_ENTRY *le);
473bool al_delete_le(struct ntfs_inode *ni, enum ATTR_TYPE type, CLST vcn,
a81f47c4 474 const __le16 *name, u8 name_len, const struct MFT_REF *ref);
63544672 475int al_update(struct ntfs_inode *ni, int sync);
4534a70b
KK
476static inline size_t al_aligned(size_t size)
477{
478 return (size + 1023) & ~(size_t)1023;
479}
480
e8b8e97f 481/* Globals from bitfunc.c */
08811ba5
KK
482bool are_bits_clear(const void *map, size_t bit, size_t nbits);
483bool are_bits_set(const void *map, size_t bit, size_t nbits);
484size_t get_set_bits_ex(const void *map, size_t bit, size_t nbits);
4534a70b 485
e8b8e97f 486/* Globals from dir.c */
2c690788 487int ntfs_utf16_to_nls(struct ntfs_sb_info *sbi, const __le16 *name, u32 len,
4534a70b
KK
488 u8 *buf, int buf_len);
489int ntfs_nls_to_utf16(struct ntfs_sb_info *sbi, const u8 *name, u32 name_len,
490 struct cpu_str *uni, u32 max_ulen,
491 enum utf16_endian endian);
492struct inode *dir_search_u(struct inode *dir, const struct cpu_str *uni,
493 struct ntfs_fnd *fnd);
494bool dir_is_empty(struct inode *dir);
495extern const struct file_operations ntfs_dir_operations;
496
e8b8e97f 497/* Globals from file.c */
b74d24f7 498int ntfs_getattr(struct mnt_idmap *idmap, const struct path *path,
4534a70b 499 struct kstat *stat, u32 request_mask, u32 flags);
c1632a0f 500int ntfs3_setattr(struct mnt_idmap *idmap, struct dentry *dentry,
4534a70b
KK
501 struct iattr *attr);
502int ntfs_file_open(struct inode *inode, struct file *file);
503int ntfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
504 __u64 start, __u64 len);
505extern const struct inode_operations ntfs_special_inode_operations;
506extern const struct inode_operations ntfs_file_inode_operations;
507extern const struct file_operations ntfs_file_operations;
508
e8b8e97f 509/* Globals from frecord.c */
4534a70b
KK
510void ni_remove_mi(struct ntfs_inode *ni, struct mft_inode *mi);
511struct ATTR_STD_INFO *ni_std(struct ntfs_inode *ni);
512struct ATTR_STD_INFO5 *ni_std5(struct ntfs_inode *ni);
513void ni_clear(struct ntfs_inode *ni);
514int ni_load_mi_ex(struct ntfs_inode *ni, CLST rno, struct mft_inode **mi);
78ab59fe 515int ni_load_mi(struct ntfs_inode *ni, const struct ATTR_LIST_ENTRY *le,
4534a70b
KK
516 struct mft_inode **mi);
517struct ATTRIB *ni_find_attr(struct ntfs_inode *ni, struct ATTRIB *attr,
518 struct ATTR_LIST_ENTRY **entry_o,
519 enum ATTR_TYPE type, const __le16 *name,
520 u8 name_len, const CLST *vcn,
521 struct mft_inode **mi);
522struct ATTRIB *ni_enum_attr_ex(struct ntfs_inode *ni, struct ATTRIB *attr,
523 struct ATTR_LIST_ENTRY **le,
524 struct mft_inode **mi);
525struct ATTRIB *ni_load_attr(struct ntfs_inode *ni, enum ATTR_TYPE type,
526 const __le16 *name, u8 name_len, CLST vcn,
527 struct mft_inode **pmi);
528int ni_load_all_mi(struct ntfs_inode *ni);
529bool ni_add_subrecord(struct ntfs_inode *ni, CLST rno, struct mft_inode **mi);
530int ni_remove_attr(struct ntfs_inode *ni, enum ATTR_TYPE type,
a81f47c4 531 const __le16 *name, u8 name_len, bool base_only,
4534a70b
KK
532 const __le16 *id);
533int ni_create_attr_list(struct ntfs_inode *ni);
534int ni_expand_list(struct ntfs_inode *ni);
535int ni_insert_nonresident(struct ntfs_inode *ni, enum ATTR_TYPE type,
536 const __le16 *name, u8 name_len,
537 const struct runs_tree *run, CLST svcn, CLST len,
538 __le16 flags, struct ATTRIB **new_attr,
c1e0ab37 539 struct mft_inode **mi, struct ATTR_LIST_ENTRY **le);
4534a70b
KK
540int ni_insert_resident(struct ntfs_inode *ni, u32 data_size,
541 enum ATTR_TYPE type, const __le16 *name, u8 name_len,
78ab59fe
KK
542 struct ATTRIB **new_attr, struct mft_inode **mi,
543 struct ATTR_LIST_ENTRY **le);
544void ni_remove_attr_le(struct ntfs_inode *ni, struct ATTRIB *attr,
545 struct mft_inode *mi, struct ATTR_LIST_ENTRY *le);
4534a70b
KK
546int ni_delete_all(struct ntfs_inode *ni);
547struct ATTR_FILE_NAME *ni_fname_name(struct ntfs_inode *ni,
d5ca7733 548 const struct le_str *uni,
4534a70b 549 const struct MFT_REF *home,
78ab59fe 550 struct mft_inode **mi,
4534a70b
KK
551 struct ATTR_LIST_ENTRY **entry);
552struct ATTR_FILE_NAME *ni_fname_type(struct ntfs_inode *ni, u8 name_type,
78ab59fe 553 struct mft_inode **mi,
4534a70b
KK
554 struct ATTR_LIST_ENTRY **entry);
555int ni_new_attr_flags(struct ntfs_inode *ni, enum FILE_ATTRIBUTE new_fa);
556enum REPARSE_SIGN ni_parse_reparse(struct ntfs_inode *ni, struct ATTRIB *attr,
cd4c76ff 557 struct REPARSE_DATA_BUFFER *buffer);
4534a70b
KK
558int ni_write_inode(struct inode *inode, int sync, const char *hint);
559#define _ni_write_inode(i, w) ni_write_inode(i, w, __func__)
560int ni_fiemap(struct ntfs_inode *ni, struct fiemap_extent_info *fieinfo,
561 __u64 vbo, __u64 len);
562int ni_readpage_cmpr(struct ntfs_inode *ni, struct page *page);
563int ni_decompress_file(struct ntfs_inode *ni);
564int ni_read_frame(struct ntfs_inode *ni, u64 frame_vbo, struct page **pages,
565 u32 pages_per_frame);
566int ni_write_frame(struct ntfs_inode *ni, struct page **pages,
567 u32 pages_per_frame);
78ab59fe
KK
568int ni_remove_name(struct ntfs_inode *dir_ni, struct ntfs_inode *ni,
569 struct NTFS_DE *de, struct NTFS_DE **de2, int *undo_step);
570
571bool ni_remove_name_undo(struct ntfs_inode *dir_ni, struct ntfs_inode *ni,
572 struct NTFS_DE *de, struct NTFS_DE *de2,
573 int undo_step);
574
575int ni_add_name(struct ntfs_inode *dir_ni, struct ntfs_inode *ni,
576 struct NTFS_DE *de);
577
578int ni_rename(struct ntfs_inode *dir_ni, struct ntfs_inode *new_dir_ni,
579 struct ntfs_inode *ni, struct NTFS_DE *de, struct NTFS_DE *new_de,
580 bool *is_bad);
581
582bool ni_is_dirty(struct inode *inode);
4534a70b 583
e8b8e97f 584/* Globals from fslog.c */
ab84eee4 585bool check_index_header(const struct INDEX_HDR *hdr, size_t bytes);
4534a70b
KK
586int log_replay(struct ntfs_inode *ni, bool *initialized);
587
e8b8e97f 588/* Globals from fsntfs.c */
4534a70b
KK
589bool ntfs_fix_pre_write(struct NTFS_RECORD_HEADER *rhdr, size_t bytes);
590int ntfs_fix_post_read(struct NTFS_RECORD_HEADER *rhdr, size_t bytes,
591 bool simple);
592int ntfs_extend_init(struct ntfs_sb_info *sbi);
593int ntfs_loadlog_and_replay(struct ntfs_inode *ni, struct ntfs_sb_info *sbi);
4534a70b
KK
594int ntfs_look_for_free_space(struct ntfs_sb_info *sbi, CLST lcn, CLST len,
595 CLST *new_lcn, CLST *new_len,
596 enum ALLOCATE_OPT opt);
910013f7 597bool ntfs_check_for_free_space(struct ntfs_sb_info *sbi, CLST clen, CLST mlen);
4534a70b
KK
598int ntfs_look_free_mft(struct ntfs_sb_info *sbi, CLST *rno, bool mft,
599 struct ntfs_inode *ni, struct mft_inode **mi);
071100ea 600void ntfs_mark_rec_free(struct ntfs_sb_info *sbi, CLST rno, bool is_mft);
4534a70b
KK
601int ntfs_clear_mft_tail(struct ntfs_sb_info *sbi, size_t from, size_t to);
602int ntfs_refresh_zone(struct ntfs_sb_info *sbi);
e66af07c 603void ntfs_update_mftmirr(struct ntfs_sb_info *sbi, int wait);
c12df45e
KK
604void ntfs_bad_inode(struct inode *inode, const char *hint);
605#define _ntfs_bad_inode(i) ntfs_bad_inode(i, __func__)
4534a70b
KK
606enum NTFS_DIRTY_FLAGS {
607 NTFS_DIRTY_CLEAR = 0,
608 NTFS_DIRTY_DIRTY = 1,
609 NTFS_DIRTY_ERROR = 2,
610};
611int ntfs_set_state(struct ntfs_sb_info *sbi, enum NTFS_DIRTY_FLAGS dirty);
612int ntfs_sb_read(struct super_block *sb, u64 lbo, size_t bytes, void *buffer);
613int ntfs_sb_write(struct super_block *sb, u64 lbo, size_t bytes,
614 const void *buffer, int wait);
615int ntfs_sb_write_run(struct ntfs_sb_info *sbi, const struct runs_tree *run,
63544672 616 u64 vbo, const void *buf, size_t bytes, int sync);
4534a70b
KK
617struct buffer_head *ntfs_bread_run(struct ntfs_sb_info *sbi,
618 const struct runs_tree *run, u64 vbo);
619int ntfs_read_run_nb(struct ntfs_sb_info *sbi, const struct runs_tree *run,
620 u64 vbo, void *buf, u32 bytes, struct ntfs_buffers *nb);
621int ntfs_read_bh(struct ntfs_sb_info *sbi, const struct runs_tree *run, u64 vbo,
622 struct NTFS_RECORD_HEADER *rhdr, u32 bytes,
623 struct ntfs_buffers *nb);
624int ntfs_get_bh(struct ntfs_sb_info *sbi, const struct runs_tree *run, u64 vbo,
625 u32 bytes, struct ntfs_buffers *nb);
626int ntfs_write_bh(struct ntfs_sb_info *sbi, struct NTFS_RECORD_HEADER *rhdr,
627 struct ntfs_buffers *nb, int sync);
628int ntfs_bio_pages(struct ntfs_sb_info *sbi, const struct runs_tree *run,
629 struct page **pages, u32 nr_pages, u64 vbo, u32 bytes,
ce6b5315 630 enum req_op op);
4534a70b
KK
631int ntfs_bio_fill_1(struct ntfs_sb_info *sbi, const struct runs_tree *run);
632int ntfs_vbo_to_lbo(struct ntfs_sb_info *sbi, const struct runs_tree *run,
633 u64 vbo, u64 *lbo, u64 *bytes);
634struct ntfs_inode *ntfs_new_inode(struct ntfs_sb_info *sbi, CLST nRec,
a81f47c4 635 enum RECORD_FLAG flag);
4534a70b
KK
636extern const u8 s_default_security[0x50];
637bool is_sd_valid(const struct SECURITY_DESCRIPTOR_RELATIVE *sd, u32 len);
638int ntfs_security_init(struct ntfs_sb_info *sbi);
639int ntfs_get_security_by_id(struct ntfs_sb_info *sbi, __le32 security_id,
640 struct SECURITY_DESCRIPTOR_RELATIVE **sd,
641 size_t *size);
642int ntfs_insert_security(struct ntfs_sb_info *sbi,
643 const struct SECURITY_DESCRIPTOR_RELATIVE *sd,
644 u32 size, __le32 *security_id, bool *inserted);
645int ntfs_reparse_init(struct ntfs_sb_info *sbi);
646int ntfs_objid_init(struct ntfs_sb_info *sbi);
647int ntfs_objid_remove(struct ntfs_sb_info *sbi, struct GUID *guid);
648int ntfs_insert_reparse(struct ntfs_sb_info *sbi, __le32 rtag,
649 const struct MFT_REF *ref);
650int ntfs_remove_reparse(struct ntfs_sb_info *sbi, __le32 rtag,
651 const struct MFT_REF *ref);
652void mark_as_free_ex(struct ntfs_sb_info *sbi, CLST lcn, CLST len, bool trim);
a81f47c4
KK
653int run_deallocate(struct ntfs_sb_info *sbi, const struct runs_tree *run,
654 bool trim);
1d07a9df 655bool valid_windows_name(struct ntfs_sb_info *sbi, const struct le_str *name);
7832e123 656int ntfs_set_label(struct ntfs_sb_info *sbi, u8 *label, int len);
4534a70b 657
e8b8e97f 658/* Globals from index.c */
4534a70b
KK
659int indx_used_bit(struct ntfs_index *indx, struct ntfs_inode *ni, size_t *bit);
660void fnd_clear(struct ntfs_fnd *fnd);
661static inline struct ntfs_fnd *fnd_get(void)
662{
195c52bd 663 return kzalloc(sizeof(struct ntfs_fnd), GFP_NOFS);
4534a70b
KK
664}
665static inline void fnd_put(struct ntfs_fnd *fnd)
666{
667 if (fnd) {
668 fnd_clear(fnd);
195c52bd 669 kfree(fnd);
4534a70b
KK
670 }
671}
672void indx_clear(struct ntfs_index *idx);
673int indx_init(struct ntfs_index *indx, struct ntfs_sb_info *sbi,
674 const struct ATTRIB *attr, enum index_mutex_classed type);
675struct INDEX_ROOT *indx_get_root(struct ntfs_index *indx, struct ntfs_inode *ni,
676 struct ATTRIB **attr, struct mft_inode **mi);
677int indx_read(struct ntfs_index *idx, struct ntfs_inode *ni, CLST vbn,
678 struct indx_node **node);
679int indx_find(struct ntfs_index *indx, struct ntfs_inode *dir,
680 const struct INDEX_ROOT *root, const void *Key, size_t KeyLen,
681 const void *param, int *diff, struct NTFS_DE **entry,
682 struct ntfs_fnd *fnd);
683int indx_find_sort(struct ntfs_index *indx, struct ntfs_inode *ni,
684 const struct INDEX_ROOT *root, struct NTFS_DE **entry,
685 struct ntfs_fnd *fnd);
686int indx_find_raw(struct ntfs_index *indx, struct ntfs_inode *ni,
687 const struct INDEX_ROOT *root, struct NTFS_DE **entry,
688 size_t *off, struct ntfs_fnd *fnd);
689int indx_insert_entry(struct ntfs_index *indx, struct ntfs_inode *ni,
690 const struct NTFS_DE *new_de, const void *param,
78ab59fe 691 struct ntfs_fnd *fnd, bool undo);
4534a70b
KK
692int indx_delete_entry(struct ntfs_index *indx, struct ntfs_inode *ni,
693 const void *key, u32 key_len, const void *param);
694int indx_update_dup(struct ntfs_inode *ni, struct ntfs_sb_info *sbi,
695 const struct ATTR_FILE_NAME *fname,
696 const struct NTFS_DUP_INFO *dup, int sync);
697
e8b8e97f 698/* Globals from inode.c */
4534a70b
KK
699struct inode *ntfs_iget5(struct super_block *sb, const struct MFT_REF *ref,
700 const struct cpu_str *name);
701int ntfs_set_size(struct inode *inode, u64 new_size);
702int reset_log_file(struct inode *inode);
703int ntfs_get_block(struct inode *inode, sector_t vbn,
704 struct buffer_head *bh_result, int create);
44ab23b9
MWO
705int ntfs_write_begin(struct file *file, struct address_space *mapping,
706 loff_t pos, u32 len, struct page **pagep, void **fsdata);
96de65a9
KK
707int ntfs_write_end(struct file *file, struct address_space *mapping, loff_t pos,
708 u32 len, u32 copied, struct page *page, void *fsdata);
4534a70b
KK
709int ntfs3_write_inode(struct inode *inode, struct writeback_control *wbc);
710int ntfs_sync_inode(struct inode *inode);
711int ntfs_flush_inodes(struct super_block *sb, struct inode *i1,
712 struct inode *i2);
713int inode_write_data(struct inode *inode, const void *data, size_t bytes);
f0377761
KK
714struct inode *ntfs_create_inode(struct mnt_idmap *idmap, struct inode *dir,
715 struct dentry *dentry,
4534a70b
KK
716 const struct cpu_str *uni, umode_t mode,
717 dev_t dev, const char *symname, u32 size,
718 struct ntfs_fnd *fnd);
719int ntfs_link_inode(struct inode *inode, struct dentry *dentry);
720int ntfs_unlink_inode(struct inode *dir, const struct dentry *dentry);
721void ntfs_evict_inode(struct inode *inode);
722extern const struct inode_operations ntfs_link_inode_operations;
723extern const struct address_space_operations ntfs_aops;
724extern const struct address_space_operations ntfs_aops_cmpr;
725
e8b8e97f 726/* Globals from name_i.c */
4534a70b
KK
727int fill_name_de(struct ntfs_sb_info *sbi, void *buf, const struct qstr *name,
728 const struct cpu_str *uni);
729struct dentry *ntfs3_get_parent(struct dentry *child);
730
731extern const struct inode_operations ntfs_dir_inode_operations;
732extern const struct inode_operations ntfs_special_inode_operations;
a3a956c7 733extern const struct dentry_operations ntfs_dentry_ops;
4534a70b 734
e8b8e97f 735/* Globals from record.c */
4534a70b
KK
736int mi_get(struct ntfs_sb_info *sbi, CLST rno, struct mft_inode **mi);
737void mi_put(struct mft_inode *mi);
738int mi_init(struct mft_inode *mi, struct ntfs_sb_info *sbi, CLST rno);
739int mi_read(struct mft_inode *mi, bool is_mft);
740struct ATTRIB *mi_enum_attr(struct mft_inode *mi, struct ATTRIB *attr);
741// TODO: id?
742struct ATTRIB *mi_find_attr(struct mft_inode *mi, struct ATTRIB *attr,
743 enum ATTR_TYPE type, const __le16 *name,
a81f47c4 744 u8 name_len, const __le16 *id);
4534a70b
KK
745static inline struct ATTRIB *rec_find_attr_le(struct mft_inode *rec,
746 struct ATTR_LIST_ENTRY *le)
747{
748 return mi_find_attr(rec, NULL, le->type, le_name(le), le->name_len,
749 &le->id);
750}
751int mi_write(struct mft_inode *mi, int wait);
752int mi_format_new(struct mft_inode *mi, struct ntfs_sb_info *sbi, CLST rno,
753 __le16 flags, bool is_mft);
4534a70b
KK
754struct ATTRIB *mi_insert_attr(struct mft_inode *mi, enum ATTR_TYPE type,
755 const __le16 *name, u8 name_len, u32 asize,
756 u16 name_off);
757
78ab59fe
KK
758bool mi_remove_attr(struct ntfs_inode *ni, struct mft_inode *mi,
759 struct ATTRIB *attr);
4534a70b
KK
760bool mi_resize_attr(struct mft_inode *mi, struct ATTRIB *attr, int bytes);
761int mi_pack_runs(struct mft_inode *mi, struct ATTRIB *attr,
762 struct runs_tree *run, CLST len);
763static inline bool mi_is_ref(const struct mft_inode *mi,
764 const struct MFT_REF *ref)
765{
766 if (le32_to_cpu(ref->low) != mi->rno)
767 return false;
768 if (ref->seq != mi->mrec->seq)
769 return false;
770
771#ifdef CONFIG_NTFS3_64BIT_CLUSTER
772 return le16_to_cpu(ref->high) == (mi->rno >> 32);
773#else
774 return !ref->high;
775#endif
776}
777
778static inline void mi_get_ref(const struct mft_inode *mi, struct MFT_REF *ref)
779{
780 ref->low = cpu_to_le32(mi->rno);
781#ifdef CONFIG_NTFS3_64BIT_CLUSTER
782 ref->high = cpu_to_le16(mi->rno >> 32);
783#else
784 ref->high = 0;
785#endif
786 ref->seq = mi->mrec->seq;
787}
788
e8b8e97f 789/* Globals from run.c */
4534a70b
KK
790bool run_lookup_entry(const struct runs_tree *run, CLST vcn, CLST *lcn,
791 CLST *len, size_t *index);
792void run_truncate(struct runs_tree *run, CLST vcn);
793void run_truncate_head(struct runs_tree *run, CLST vcn);
794void run_truncate_around(struct runs_tree *run, CLST vcn);
4534a70b
KK
795bool run_add_entry(struct runs_tree *run, CLST vcn, CLST lcn, CLST len,
796 bool is_mft);
797bool run_collapse_range(struct runs_tree *run, CLST vcn, CLST len);
aa30eccb 798bool run_insert_range(struct runs_tree *run, CLST vcn, CLST len);
4534a70b
KK
799bool run_get_entry(const struct runs_tree *run, size_t index, CLST *vcn,
800 CLST *lcn, CLST *len);
801bool run_is_mapped_full(const struct runs_tree *run, CLST svcn, CLST evcn);
802
803int run_pack(const struct runs_tree *run, CLST svcn, CLST len, u8 *run_buf,
804 u32 run_buf_size, CLST *packed_vcns);
805int run_unpack(struct runs_tree *run, struct ntfs_sb_info *sbi, CLST ino,
806 CLST svcn, CLST evcn, CLST vcn, const u8 *run_buf,
0e8235d2 807 int run_buf_size);
4534a70b
KK
808
809#ifdef NTFS3_CHECK_FREE_CLST
810int run_unpack_ex(struct runs_tree *run, struct ntfs_sb_info *sbi, CLST ino,
811 CLST svcn, CLST evcn, CLST vcn, const u8 *run_buf,
0e8235d2 812 int run_buf_size);
4534a70b
KK
813#else
814#define run_unpack_ex run_unpack
815#endif
816int run_get_highest_vcn(CLST vcn, const u8 *run_buf, u64 *highest_vcn);
20abc64f 817int run_clone(const struct runs_tree *run, struct runs_tree *new_run);
4534a70b 818
e8b8e97f 819/* Globals from super.c */
4534a70b
KK
820void *ntfs_set_shared(void *ptr, u32 bytes);
821void *ntfs_put_shared(void *ptr);
822void ntfs_unmap_meta(struct super_block *sb, CLST lcn, CLST len);
823int ntfs_discard(struct ntfs_sb_info *sbi, CLST Lcn, CLST Len);
824
e8b8e97f 825/* Globals from bitmap.c*/
4534a70b
KK
826int __init ntfs3_init_bitmap(void);
827void ntfs3_exit_bitmap(void);
828void wnd_close(struct wnd_bitmap *wnd);
829static inline size_t wnd_zeroes(const struct wnd_bitmap *wnd)
830{
831 return wnd->total_zeroes;
832}
833int wnd_init(struct wnd_bitmap *wnd, struct super_block *sb, size_t nbits);
834int wnd_set_free(struct wnd_bitmap *wnd, size_t bit, size_t bits);
835int wnd_set_used(struct wnd_bitmap *wnd, size_t bit, size_t bits);
ec5fc720
KK
836int wnd_set_used_safe(struct wnd_bitmap *wnd, size_t bit, size_t bits,
837 size_t *done);
4534a70b
KK
838bool wnd_is_free(struct wnd_bitmap *wnd, size_t bit, size_t bits);
839bool wnd_is_used(struct wnd_bitmap *wnd, size_t bit, size_t bits);
840
e8b8e97f 841/* Possible values for 'flags' 'wnd_find'. */
4534a70b
KK
842#define BITMAP_FIND_MARK_AS_USED 0x01
843#define BITMAP_FIND_FULL 0x02
844size_t wnd_find(struct wnd_bitmap *wnd, size_t to_alloc, size_t hint,
845 size_t flags, size_t *allocated);
846int wnd_extend(struct wnd_bitmap *wnd, size_t new_bits);
847void wnd_zone_set(struct wnd_bitmap *wnd, size_t Lcn, size_t Len);
848int ntfs_trim_fs(struct ntfs_sb_info *sbi, struct fstrim_range *range);
849
08811ba5
KK
850void ntfs_bitmap_set_le(void *map, unsigned int start, int len);
851void ntfs_bitmap_clear_le(void *map, unsigned int start, int len);
852unsigned int ntfs_bitmap_weight_le(const void *bitmap, int bits);
88a8d0d2 853
e8b8e97f 854/* Globals from upcase.c */
4534a70b
KK
855int ntfs_cmp_names(const __le16 *s1, size_t l1, const __le16 *s2, size_t l2,
856 const u16 *upcase, bool bothcase);
857int ntfs_cmp_names_cpu(const struct cpu_str *uni1, const struct le_str *uni2,
858 const u16 *upcase, bool bothcase);
a3a956c7
KK
859unsigned long ntfs_names_hash(const u16 *name, size_t len, const u16 *upcase,
860 unsigned long hash);
4534a70b
KK
861
862/* globals from xattr.c */
863#ifdef CONFIG_NTFS3_FS_POSIX_ACL
f0377761
KK
864struct posix_acl *ntfs_get_acl(struct mnt_idmap *idmap, struct dentry *dentry,
865 int type);
13e83a49 866int ntfs_set_acl(struct mnt_idmap *idmap, struct dentry *dentry,
4534a70b 867 struct posix_acl *acl, int type);
700b7940 868int ntfs_init_acl(struct mnt_idmap *idmap, struct inode *inode,
f0377761 869 struct inode *dir);
4534a70b
KK
870#else
871#define ntfs_get_acl NULL
872#define ntfs_set_acl NULL
873#endif
874
13e83a49 875int ntfs_acl_chmod(struct mnt_idmap *idmap, struct dentry *dentry);
4534a70b 876ssize_t ntfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
d6ca2d25 877extern const struct xattr_handler *const ntfs_xattr_handlers[];
4534a70b 878
1842fbc8 879int ntfs_save_wsl_perm(struct inode *inode, __le16 *ea_size);
4534a70b
KK
880void ntfs_get_wsl_perm(struct inode *inode);
881
882/* globals from lznt.c */
883struct lznt *get_lznt_ctx(int level);
884size_t compress_lznt(const void *uncompressed, size_t uncompressed_size,
885 void *compressed, size_t compressed_size,
886 struct lznt *ctx);
887ssize_t decompress_lznt(const void *compressed, size_t compressed_size,
888 void *uncompressed, size_t uncompressed_size);
889
890static inline bool is_ntfs3(struct ntfs_sb_info *sbi)
891{
892 return sbi->volume.major_ver >= 3;
893}
894
e8b8e97f 895/* (sb->s_flags & SB_ACTIVE) */
4534a70b
KK
896static inline bool is_mounted(struct ntfs_sb_info *sbi)
897{
898 return !!sbi->sb->s_root;
899}
900
901static inline bool ntfs_is_meta_file(struct ntfs_sb_info *sbi, CLST rno)
902{
903 return rno < MFT_REC_FREE || rno == sbi->objid_no ||
904 rno == sbi->quota_no || rno == sbi->reparse_no ||
905 rno == sbi->usn_jrnl_no;
906}
907
908static inline void ntfs_unmap_page(struct page *page)
909{
910 kunmap(page);
911 put_page(page);
912}
913
914static inline struct page *ntfs_map_page(struct address_space *mapping,
915 unsigned long index)
916{
917 struct page *page = read_mapping_page(mapping, index, NULL);
918
19cb4273 919 if (!IS_ERR(page))
4534a70b 920 kmap(page);
4534a70b
KK
921 return page;
922}
923
924static inline size_t wnd_zone_bit(const struct wnd_bitmap *wnd)
925{
926 return wnd->zone_bit;
927}
928
929static inline size_t wnd_zone_len(const struct wnd_bitmap *wnd)
930{
931 return wnd->zone_end - wnd->zone_bit;
932}
933
934static inline void run_init(struct runs_tree *run)
935{
936 run->runs = NULL;
937 run->count = 0;
938 run->allocated = 0;
939}
940
941static inline struct runs_tree *run_alloc(void)
942{
195c52bd 943 return kzalloc(sizeof(struct runs_tree), GFP_NOFS);
4534a70b
KK
944}
945
946static inline void run_close(struct runs_tree *run)
947{
195c52bd 948 kvfree(run->runs);
4534a70b
KK
949 memset(run, 0, sizeof(*run));
950}
951
952static inline void run_free(struct runs_tree *run)
953{
954 if (run) {
195c52bd
KA
955 kvfree(run->runs);
956 kfree(run);
4534a70b
KK
957 }
958}
959
960static inline bool run_is_empty(struct runs_tree *run)
961{
962 return !run->count;
963}
964
e8b8e97f 965/* NTFS uses quad aligned bitmaps. */
4534a70b
KK
966static inline size_t bitmap_size(size_t bits)
967{
fa3cacf5 968 return ALIGN((bits + 7) >> 3, 8);
4534a70b
KK
969}
970
971#define _100ns2seconds 10000000
972#define SecondsToStartOf1970 0x00000002B6109100
973
974#define NTFS_TIME_GRAN 100
975
976/*
e8b8e97f 977 * kernel2nt - Converts in-memory kernel timestamp into nt time.
4534a70b
KK
978 */
979static inline __le64 kernel2nt(const struct timespec64 *ts)
980{
981 // 10^7 units of 100 nanoseconds one second
982 return cpu_to_le64(_100ns2seconds *
983 (ts->tv_sec + SecondsToStartOf1970) +
984 ts->tv_nsec / NTFS_TIME_GRAN);
985}
986
987/*
e8b8e97f 988 * nt2kernel - Converts on-disk nt time into kernel timestamp.
4534a70b
KK
989 */
990static inline void nt2kernel(const __le64 tm, struct timespec64 *ts)
991{
992 u64 t = le64_to_cpu(tm) - _100ns2seconds * SecondsToStartOf1970;
993
994 // WARNING: do_div changes its first argument(!)
995 ts->tv_nsec = do_div(t, _100ns2seconds) * 100;
996 ts->tv_sec = t;
997}
998
999static inline struct ntfs_sb_info *ntfs_sb(struct super_block *sb)
1000{
1001 return sb->s_fs_info;
1002}
1003
97ec56d3 1004static inline int ntfs3_forced_shutdown(struct super_block *sb)
6c3684e7 1005{
97ec56d3 1006 return test_bit(NTFS_FLAGS_SHUTDOWN_BIT, &ntfs_sb(sb)->flags);
6c3684e7
KK
1007}
1008
e8b8e97f
KA
1009/*
1010 * ntfs_up_cluster - Align up on cluster boundary.
1011 */
4534a70b
KK
1012static inline u64 ntfs_up_cluster(const struct ntfs_sb_info *sbi, u64 size)
1013{
1014 return (size + sbi->cluster_mask) & sbi->cluster_mask_inv;
1015}
1016
e8b8e97f
KA
1017/*
1018 * ntfs_up_block - Align up on cluster boundary.
1019 */
4534a70b
KK
1020static inline u64 ntfs_up_block(const struct super_block *sb, u64 size)
1021{
1022 return (size + sb->s_blocksize - 1) & ~(u64)(sb->s_blocksize - 1);
1023}
1024
1025static inline CLST bytes_to_cluster(const struct ntfs_sb_info *sbi, u64 size)
1026{
1027 return (size + sbi->cluster_mask) >> sbi->cluster_bits;
1028}
1029
1030static inline u64 bytes_to_block(const struct super_block *sb, u64 size)
1031{
1032 return (size + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
1033}
1034
1035static inline struct buffer_head *ntfs_bread(struct super_block *sb,
1036 sector_t block)
1037{
d6d33f03 1038 struct buffer_head *bh = sb_bread_unmovable(sb, block);
4534a70b
KK
1039
1040 if (bh)
1041 return bh;
1042
1043 ntfs_err(sb, "failed to read volume at offset 0x%llx",
1044 (u64)block << sb->s_blocksize_bits);
1045 return NULL;
1046}
1047
4534a70b
KK
1048static inline struct ntfs_inode *ntfs_i(struct inode *inode)
1049{
1050 return container_of(inode, struct ntfs_inode, vfs_inode);
1051}
1052
1053static inline bool is_compressed(const struct ntfs_inode *ni)
1054{
1055 return (ni->std_fa & FILE_ATTRIBUTE_COMPRESSED) ||
1056 (ni->ni_flags & NI_FLAG_COMPRESSED_MASK);
1057}
1058
1059static inline int ni_ext_compress_bits(const struct ntfs_inode *ni)
1060{
1061 return 0xb + (ni->ni_flags & NI_FLAG_COMPRESSED_MASK);
1062}
1063
e8b8e97f 1064/* Bits - 0xc, 0xd, 0xe, 0xf, 0x10 */
4534a70b
KK
1065static inline void ni_set_ext_compress_bits(struct ntfs_inode *ni, u8 bits)
1066{
1067 ni->ni_flags |= (bits - 0xb) & NI_FLAG_COMPRESSED_MASK;
1068}
1069
1070static inline bool is_dedup(const struct ntfs_inode *ni)
1071{
1072 return ni->ni_flags & NI_FLAG_DEDUPLICATED;
1073}
1074
1075static inline bool is_encrypted(const struct ntfs_inode *ni)
1076{
1077 return ni->std_fa & FILE_ATTRIBUTE_ENCRYPTED;
1078}
1079
1080static inline bool is_sparsed(const struct ntfs_inode *ni)
1081{
1082 return ni->std_fa & FILE_ATTRIBUTE_SPARSE_FILE;
1083}
1084
1085static inline int is_resident(struct ntfs_inode *ni)
1086{
1087 return ni->ni_flags & NI_FLAG_RESIDENT;
1088}
1089
1090static inline void le16_sub_cpu(__le16 *var, u16 val)
1091{
1092 *var = cpu_to_le16(le16_to_cpu(*var) - val);
1093}
1094
1095static inline void le32_sub_cpu(__le32 *var, u32 val)
1096{
1097 *var = cpu_to_le32(le32_to_cpu(*var) - val);
1098}
1099
1100static inline void nb_put(struct ntfs_buffers *nb)
1101{
1102 u32 i, nbufs = nb->nbufs;
1103
1104 if (!nbufs)
1105 return;
1106
1107 for (i = 0; i < nbufs; i++)
1108 put_bh(nb->bh[i]);
1109 nb->nbufs = 0;
1110}
1111
1112static inline void put_indx_node(struct indx_node *in)
1113{
1114 if (!in)
1115 return;
1116
195c52bd 1117 kfree(in->index);
4534a70b 1118 nb_put(&in->nb);
195c52bd 1119 kfree(in);
4534a70b
KK
1120}
1121
1122static inline void mi_clear(struct mft_inode *mi)
1123{
1124 nb_put(&mi->nb);
195c52bd 1125 kfree(mi->mrec);
4534a70b
KK
1126 mi->mrec = NULL;
1127}
1128
1129static inline void ni_lock(struct ntfs_inode *ni)
1130{
1131 mutex_lock_nested(&ni->ni_lock, NTFS_INODE_MUTEX_NORMAL);
1132}
1133
1134static inline void ni_lock_dir(struct ntfs_inode *ni)
1135{
1136 mutex_lock_nested(&ni->ni_lock, NTFS_INODE_MUTEX_PARENT);
1137}
1138
0ad9dfcb
KK
1139static inline void ni_lock_dir2(struct ntfs_inode *ni)
1140{
1141 mutex_lock_nested(&ni->ni_lock, NTFS_INODE_MUTEX_PARENT2);
1142}
1143
4534a70b
KK
1144static inline void ni_unlock(struct ntfs_inode *ni)
1145{
1146 mutex_unlock(&ni->ni_lock);
1147}
1148
1149static inline int ni_trylock(struct ntfs_inode *ni)
1150{
1151 return mutex_trylock(&ni->ni_lock);
1152}
1153
1154static inline int attr_load_runs_attr(struct ntfs_inode *ni,
1155 struct ATTRIB *attr,
1156 struct runs_tree *run, CLST vcn)
1157{
1158 return attr_load_runs_vcn(ni, attr->type, attr_name(attr),
1159 attr->name_len, run, vcn);
1160}
1161
1162static inline void le64_sub_cpu(__le64 *var, u64 val)
1163{
1164 *var = cpu_to_le64(le64_to_cpu(*var) - val);
1165}
87790b65
KA
1166
1167#endif /* _LINUX_NTFS3_NTFS_FS_H */