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