fs/ntfs3: Keep prealloc for all types of files
[linux-block.git] / fs / ntfs3 / super.c
CommitLineData
82cae269
KK
1// SPDX-License-Identifier: GPL-2.0
2/*
3 *
4 * Copyright (C) 2019-2021 Paragon Software GmbH, All rights reserved.
5 *
6 *
7 * terminology
8 *
9 * cluster - allocation unit - 512,1K,2K,4K,...,2M
e8b8e97f
KA
10 * vcn - virtual cluster number - Offset inside the file in clusters.
11 * vbo - virtual byte offset - Offset inside the file in bytes.
12 * lcn - logical cluster number - 0 based cluster in clusters heap.
13 * lbo - logical byte offset - Absolute position inside volume.
14 * run - maps VCN to LCN - Stored in attributes in packed form.
15 * attr - attribute segment - std/name/data etc records inside MFT.
16 * mi - MFT inode - One MFT record(usually 1024 bytes or 4K), consists of attributes.
17 * ni - NTFS inode - Extends linux inode. consists of one or more mft inodes.
18 * index - unit inside directory - 2K, 4K, <=page size, does not depend on cluster size.
82cae269
KK
19 *
20 * WSL - Windows Subsystem for Linux
21 * https://docs.microsoft.com/en-us/windows/wsl/file-permissions
22 * It stores uid/gid/mode/dev in xattr
23 *
24 */
25
82cae269
KK
26#include <linux/blkdev.h>
27#include <linux/buffer_head.h>
28#include <linux/exportfs.h>
29#include <linux/fs.h>
610f8f5a
KA
30#include <linux/fs_context.h>
31#include <linux/fs_parser.h>
528c9b3d 32#include <linux/log2.h>
82cae269
KK
33#include <linux/module.h>
34#include <linux/nls.h>
82cae269
KK
35#include <linux/seq_file.h>
36#include <linux/statfs.h>
37
38#include "debug.h"
39#include "ntfs.h"
40#include "ntfs_fs.h"
41#ifdef CONFIG_NTFS3_LZX_XPRESS
42#include "lib/lib.h"
43#endif
44
45#ifdef CONFIG_PRINTK
46/*
e8b8e97f
KA
47 * ntfs_printk - Trace warnings/notices/errors.
48 *
82cae269
KK
49 * Thanks Joe Perches <joe@perches.com> for implementation
50 */
51void ntfs_printk(const struct super_block *sb, const char *fmt, ...)
52{
53 struct va_format vaf;
54 va_list args;
55 int level;
56 struct ntfs_sb_info *sbi = sb->s_fs_info;
57
e8b8e97f 58 /* Should we use different ratelimits for warnings/notices/errors? */
82cae269
KK
59 if (!___ratelimit(&sbi->msg_ratelimit, "ntfs3"))
60 return;
61
62 va_start(args, fmt);
63
64 level = printk_get_level(fmt);
65 vaf.fmt = printk_skip_level(fmt);
66 vaf.va = &args;
67 printk("%c%cntfs3: %s: %pV\n", KERN_SOH_ASCII, level, sb->s_id, &vaf);
68
69 va_end(args);
70}
71
72static char s_name_buf[512];
e8b8e97f 73static atomic_t s_name_buf_cnt = ATOMIC_INIT(1); // 1 means 'free s_name_buf'.
82cae269 74
e8b8e97f
KA
75/*
76 * ntfs_inode_printk
77 *
78 * Print warnings/notices/errors about inode using name or inode number.
79 */
82cae269
KK
80void ntfs_inode_printk(struct inode *inode, const char *fmt, ...)
81{
82 struct super_block *sb = inode->i_sb;
83 struct ntfs_sb_info *sbi = sb->s_fs_info;
84 char *name;
85 va_list args;
86 struct va_format vaf;
87 int level;
88
89 if (!___ratelimit(&sbi->msg_ratelimit, "ntfs3"))
90 return;
91
e8b8e97f 92 /* Use static allocated buffer, if possible. */
82cae269
KK
93 name = atomic_dec_and_test(&s_name_buf_cnt)
94 ? s_name_buf
95 : kmalloc(sizeof(s_name_buf), GFP_NOFS);
96
97 if (name) {
98 struct dentry *de = d_find_alias(inode);
99 const u32 name_len = ARRAY_SIZE(s_name_buf) - 1;
100
101 if (de) {
102 spin_lock(&de->d_lock);
103 snprintf(name, name_len, " \"%s\"", de->d_name.name);
104 spin_unlock(&de->d_lock);
e8b8e97f 105 name[name_len] = 0; /* To be sure. */
82cae269
KK
106 } else {
107 name[0] = 0;
108 }
e8b8e97f 109 dput(de); /* Cocci warns if placed in branch "if (de)" */
82cae269
KK
110 }
111
112 va_start(args, fmt);
113
114 level = printk_get_level(fmt);
115 vaf.fmt = printk_skip_level(fmt);
116 vaf.va = &args;
117
118 printk("%c%cntfs3: %s: ino=%lx,%s %pV\n", KERN_SOH_ASCII, level,
119 sb->s_id, inode->i_ino, name ? name : "", &vaf);
120
121 va_end(args);
122
123 atomic_inc(&s_name_buf_cnt);
124 if (name != s_name_buf)
125 kfree(name);
126}
127#endif
128
129/*
130 * Shared memory struct.
131 *
e8b8e97f
KA
132 * On-disk ntfs's upcase table is created by ntfs formatter.
133 * 'upcase' table is 128K bytes of memory.
134 * We should read it into memory when mounting.
135 * Several ntfs volumes likely use the same 'upcase' table.
136 * It is good idea to share in-memory 'upcase' table between different volumes.
137 * Unfortunately winxp/vista/win7 use different upcase tables.
82cae269
KK
138 */
139static DEFINE_SPINLOCK(s_shared_lock);
140
141static struct {
142 void *ptr;
143 u32 len;
144 int cnt;
145} s_shared[8];
146
147/*
148 * ntfs_set_shared
149 *
e8b8e97f
KA
150 * Return:
151 * * @ptr - If pointer was saved in shared memory.
152 * * NULL - If pointer was not shared.
82cae269
KK
153 */
154void *ntfs_set_shared(void *ptr, u32 bytes)
155{
156 void *ret = NULL;
157 int i, j = -1;
158
159 spin_lock(&s_shared_lock);
160 for (i = 0; i < ARRAY_SIZE(s_shared); i++) {
161 if (!s_shared[i].cnt) {
162 j = i;
163 } else if (bytes == s_shared[i].len &&
164 !memcmp(s_shared[i].ptr, ptr, bytes)) {
165 s_shared[i].cnt += 1;
166 ret = s_shared[i].ptr;
167 break;
168 }
169 }
170
171 if (!ret && j != -1) {
172 s_shared[j].ptr = ptr;
173 s_shared[j].len = bytes;
174 s_shared[j].cnt = 1;
175 ret = ptr;
176 }
177 spin_unlock(&s_shared_lock);
178
179 return ret;
180}
181
182/*
183 * ntfs_put_shared
184 *
e8b8e97f
KA
185 * Return:
186 * * @ptr - If pointer is not shared anymore.
187 * * NULL - If pointer is still shared.
82cae269
KK
188 */
189void *ntfs_put_shared(void *ptr)
190{
191 void *ret = ptr;
192 int i;
193
194 spin_lock(&s_shared_lock);
195 for (i = 0; i < ARRAY_SIZE(s_shared); i++) {
196 if (s_shared[i].cnt && s_shared[i].ptr == ptr) {
197 if (--s_shared[i].cnt)
198 ret = NULL;
199 break;
200 }
201 }
202 spin_unlock(&s_shared_lock);
203
204 return ret;
205}
206
610f8f5a 207static inline void put_mount_options(struct ntfs_mount_options *options)
82cae269 208{
610f8f5a 209 kfree(options->nls_name);
82cae269 210 unload_nls(options->nls);
610f8f5a 211 kfree(options);
82cae269
KK
212}
213
214enum Opt {
215 Opt_uid,
216 Opt_gid,
217 Opt_umask,
218 Opt_dmask,
219 Opt_fmask,
220 Opt_immutable,
221 Opt_discard,
222 Opt_force,
223 Opt_sparse,
224 Opt_nohidden,
225 Opt_showmeta,
226 Opt_acl,
e274cde8 227 Opt_iocharset,
82cae269 228 Opt_prealloc,
28a941ff 229 Opt_noacsrules,
82cae269
KK
230 Opt_err,
231};
232
610f8f5a
KA
233static const struct fs_parameter_spec ntfs_fs_parameters[] = {
234 fsparam_u32("uid", Opt_uid),
235 fsparam_u32("gid", Opt_gid),
236 fsparam_u32oct("umask", Opt_umask),
237 fsparam_u32oct("dmask", Opt_dmask),
238 fsparam_u32oct("fmask", Opt_fmask),
239 fsparam_flag_no("sys_immutable", Opt_immutable),
240 fsparam_flag_no("discard", Opt_discard),
241 fsparam_flag_no("force", Opt_force),
242 fsparam_flag_no("sparse", Opt_sparse),
9d1939f4 243 fsparam_flag_no("hidden", Opt_nohidden),
610f8f5a
KA
244 fsparam_flag_no("acl", Opt_acl),
245 fsparam_flag_no("showmeta", Opt_showmeta),
610f8f5a 246 fsparam_flag_no("prealloc", Opt_prealloc),
28a941ff 247 fsparam_flag_no("acsrules", Opt_noacsrules),
e274cde8 248 fsparam_string("iocharset", Opt_iocharset),
610f8f5a 249 {}
82cae269
KK
250};
251
610f8f5a
KA
252/*
253 * Load nls table or if @nls is utf8 then return NULL.
254 */
255static struct nls_table *ntfs_load_nls(char *nls)
82cae269 256{
610f8f5a 257 struct nls_table *ret;
82cae269 258
610f8f5a
KA
259 if (!nls)
260 nls = CONFIG_NLS_DEFAULT;
82cae269 261
610f8f5a
KA
262 if (strcmp(nls, "utf8") == 0)
263 return NULL;
82cae269 264
610f8f5a
KA
265 if (strcmp(nls, CONFIG_NLS_DEFAULT) == 0)
266 return load_nls_default();
82cae269 267
610f8f5a
KA
268 ret = load_nls(nls);
269 if (ret)
270 return ret;
82cae269 271
610f8f5a
KA
272 return ERR_PTR(-EINVAL);
273}
274
275static int ntfs_fs_parse_param(struct fs_context *fc,
276 struct fs_parameter *param)
277{
278 struct ntfs_mount_options *opts = fc->fs_private;
279 struct fs_parse_result result;
280 int opt;
281
282 opt = fs_parse(fc, ntfs_fs_parameters, param, &result);
283 if (opt < 0)
284 return opt;
285
286 switch (opt) {
287 case Opt_uid:
288 opts->fs_uid = make_kuid(current_user_ns(), result.uint_32);
289 if (!uid_valid(opts->fs_uid))
290 return invalf(fc, "ntfs3: Invalid value for uid.");
610f8f5a
KA
291 break;
292 case Opt_gid:
293 opts->fs_gid = make_kgid(current_user_ns(), result.uint_32);
294 if (!gid_valid(opts->fs_gid))
295 return invalf(fc, "ntfs3: Invalid value for gid.");
610f8f5a
KA
296 break;
297 case Opt_umask:
298 if (result.uint_32 & ~07777)
299 return invalf(fc, "ntfs3: Invalid value for umask.");
300 opts->fs_fmask_inv = ~result.uint_32;
301 opts->fs_dmask_inv = ~result.uint_32;
302 opts->fmask = 1;
303 opts->dmask = 1;
304 break;
305 case Opt_dmask:
306 if (result.uint_32 & ~07777)
307 return invalf(fc, "ntfs3: Invalid value for dmask.");
308 opts->fs_dmask_inv = ~result.uint_32;
309 opts->dmask = 1;
310 break;
311 case Opt_fmask:
312 if (result.uint_32 & ~07777)
313 return invalf(fc, "ntfs3: Invalid value for fmask.");
314 opts->fs_fmask_inv = ~result.uint_32;
315 opts->fmask = 1;
316 break;
317 case Opt_immutable:
318 opts->sys_immutable = result.negated ? 0 : 1;
319 break;
320 case Opt_discard:
321 opts->discard = result.negated ? 0 : 1;
322 break;
323 case Opt_force:
324 opts->force = result.negated ? 0 : 1;
325 break;
326 case Opt_sparse:
327 opts->sparse = result.negated ? 0 : 1;
328 break;
329 case Opt_nohidden:
9d1939f4 330 opts->nohidden = result.negated ? 1 : 0;
610f8f5a
KA
331 break;
332 case Opt_acl:
333 if (!result.negated)
82cae269 334#ifdef CONFIG_NTFS3_FS_POSIX_ACL
610f8f5a 335 fc->sb_flags |= SB_POSIXACL;
82cae269 336#else
610f8f5a 337 return invalf(fc, "ntfs3: Support for ACL not compiled in!");
82cae269 338#endif
610f8f5a
KA
339 else
340 fc->sb_flags &= ~SB_POSIXACL;
341 break;
342 case Opt_showmeta:
343 opts->showmeta = result.negated ? 0 : 1;
344 break;
e274cde8 345 case Opt_iocharset:
610f8f5a
KA
346 kfree(opts->nls_name);
347 opts->nls_name = param->string;
348 param->string = NULL;
349 break;
350 case Opt_prealloc:
351 opts->prealloc = result.negated ? 0 : 1;
352 break;
28a941ff
KA
353 case Opt_noacsrules:
354 opts->noacsrules = result.negated ? 1 : 0;
610f8f5a
KA
355 break;
356 default:
357 /* Should not be here unless we forget add case. */
358 return -EINVAL;
82cae269 359 }
82cae269
KK
360 return 0;
361}
362
610f8f5a 363static int ntfs_fs_reconfigure(struct fs_context *fc)
82cae269 364{
610f8f5a 365 struct super_block *sb = fc->root->d_sb;
82cae269 366 struct ntfs_sb_info *sbi = sb->s_fs_info;
610f8f5a
KA
367 struct ntfs_mount_options *new_opts = fc->fs_private;
368 int ro_rw;
82cae269 369
610f8f5a 370 ro_rw = sb_rdonly(sb) && !(fc->sb_flags & SB_RDONLY);
82cae269 371 if (ro_rw && (sbi->flags & NTFS_FLAGS_NEED_REPLAY)) {
610f8f5a
KA
372 errorf(fc, "ntfs3: Couldn't remount rw because journal is not replayed. Please umount/remount instead\n");
373 return -EINVAL;
374 }
375
376 new_opts->nls = ntfs_load_nls(new_opts->nls_name);
377 if (IS_ERR(new_opts->nls)) {
378 new_opts->nls = NULL;
e274cde8 379 errorf(fc, "ntfs3: Cannot load iocharset %s", new_opts->nls_name);
610f8f5a 380 return -EINVAL;
82cae269 381 }
610f8f5a 382 if (new_opts->nls != sbi->options->nls)
e274cde8 383 return invalf(fc, "ntfs3: Cannot use different iocharset when remounting!");
82cae269
KK
384
385 sync_filesystem(sb);
386
387 if (ro_rw && (sbi->volume.flags & VOLUME_FLAG_DIRTY) &&
610f8f5a
KA
388 !new_opts->force) {
389 errorf(fc, "ntfs3: Volume is dirty and \"force\" flag is not set!");
390 return -EINVAL;
82cae269
KK
391 }
392
610f8f5a 393 memcpy(sbi->options, new_opts, sizeof(*new_opts));
82cae269 394
610f8f5a 395 return 0;
82cae269
KK
396}
397
398static struct kmem_cache *ntfs_inode_cachep;
399
400static struct inode *ntfs_alloc_inode(struct super_block *sb)
401{
402 struct ntfs_inode *ni = kmem_cache_alloc(ntfs_inode_cachep, GFP_NOFS);
403
404 if (!ni)
405 return NULL;
406
407 memset(ni, 0, offsetof(struct ntfs_inode, vfs_inode));
408
409 mutex_init(&ni->ni_lock);
410
411 return &ni->vfs_inode;
412}
413
414static void ntfs_i_callback(struct rcu_head *head)
415{
416 struct inode *inode = container_of(head, struct inode, i_rcu);
417 struct ntfs_inode *ni = ntfs_i(inode);
418
419 mutex_destroy(&ni->ni_lock);
420
421 kmem_cache_free(ntfs_inode_cachep, ni);
422}
423
424static void ntfs_destroy_inode(struct inode *inode)
425{
426 call_rcu(&inode->i_rcu, ntfs_i_callback);
427}
428
429static void init_once(void *foo)
430{
431 struct ntfs_inode *ni = foo;
432
433 inode_init_once(&ni->vfs_inode);
434}
435
e8b8e97f
KA
436/*
437 * put_ntfs - Noinline to reduce binary size.
438 */
82cae269
KK
439static noinline void put_ntfs(struct ntfs_sb_info *sbi)
440{
195c52bd
KA
441 kfree(sbi->new_rec);
442 kvfree(ntfs_put_shared(sbi->upcase));
443 kfree(sbi->def_table);
82cae269
KK
444
445 wnd_close(&sbi->mft.bitmap);
446 wnd_close(&sbi->used.bitmap);
447
448 if (sbi->mft.ni)
449 iput(&sbi->mft.ni->vfs_inode);
450
451 if (sbi->security.ni)
452 iput(&sbi->security.ni->vfs_inode);
453
454 if (sbi->reparse.ni)
455 iput(&sbi->reparse.ni->vfs_inode);
456
457 if (sbi->objid.ni)
458 iput(&sbi->objid.ni->vfs_inode);
459
460 if (sbi->volume.ni)
461 iput(&sbi->volume.ni->vfs_inode);
462
463 ntfs_update_mftmirr(sbi, 0);
464
465 indx_clear(&sbi->security.index_sii);
466 indx_clear(&sbi->security.index_sdh);
467 indx_clear(&sbi->reparse.index_r);
468 indx_clear(&sbi->objid.index_o);
195c52bd 469 kfree(sbi->compress.lznt);
82cae269
KK
470#ifdef CONFIG_NTFS3_LZX_XPRESS
471 xpress_free_decompressor(sbi->compress.xpress);
472 lzx_free_decompressor(sbi->compress.lzx);
473#endif
195c52bd 474 kfree(sbi);
82cae269
KK
475}
476
477static void ntfs_put_super(struct super_block *sb)
478{
479 struct ntfs_sb_info *sbi = sb->s_fs_info;
480
e8b8e97f 481 /* Mark rw ntfs as clear, if possible. */
82cae269
KK
482 ntfs_set_state(sbi, NTFS_DIRTY_CLEAR);
483
610f8f5a 484 put_mount_options(sbi->options);
82cae269 485 put_ntfs(sbi);
610f8f5a 486 sb->s_fs_info = NULL;
82cae269
KK
487
488 sync_blockdev(sb->s_bdev);
489}
490
491static int ntfs_statfs(struct dentry *dentry, struct kstatfs *buf)
492{
493 struct super_block *sb = dentry->d_sb;
494 struct ntfs_sb_info *sbi = sb->s_fs_info;
495 struct wnd_bitmap *wnd = &sbi->used.bitmap;
496
497 buf->f_type = sb->s_magic;
498 buf->f_bsize = sbi->cluster_size;
499 buf->f_blocks = wnd->nbits;
500
501 buf->f_bfree = buf->f_bavail = wnd_zeroes(wnd);
502 buf->f_fsid.val[0] = sbi->volume.ser_num;
503 buf->f_fsid.val[1] = (sbi->volume.ser_num >> 32);
504 buf->f_namelen = NTFS_NAME_LEN;
505
506 return 0;
507}
508
509static int ntfs_show_options(struct seq_file *m, struct dentry *root)
510{
511 struct super_block *sb = root->d_sb;
512 struct ntfs_sb_info *sbi = sb->s_fs_info;
564c97bd 513 struct ntfs_mount_options *opts = sbi->options;
82cae269
KK
514 struct user_namespace *user_ns = seq_user_ns(m);
515
15b2ae77
KA
516 seq_printf(m, ",uid=%u",
517 from_kuid_munged(user_ns, opts->fs_uid));
518 seq_printf(m, ",gid=%u",
519 from_kgid_munged(user_ns, opts->fs_gid));
82cae269
KK
520 if (opts->fmask)
521 seq_printf(m, ",fmask=%04o", ~opts->fs_fmask_inv);
522 if (opts->dmask)
523 seq_printf(m, ",dmask=%04o", ~opts->fs_dmask_inv);
524 if (opts->nls)
e274cde8 525 seq_printf(m, ",iocharset=%s", opts->nls->charset);
82cae269 526 else
e274cde8 527 seq_puts(m, ",iocharset=utf8");
82cae269
KK
528 if (opts->sys_immutable)
529 seq_puts(m, ",sys_immutable");
530 if (opts->discard)
531 seq_puts(m, ",discard");
532 if (opts->sparse)
533 seq_puts(m, ",sparse");
534 if (opts->showmeta)
535 seq_puts(m, ",showmeta");
536 if (opts->nohidden)
537 seq_puts(m, ",nohidden");
538 if (opts->force)
539 seq_puts(m, ",force");
28a941ff
KA
540 if (opts->noacsrules)
541 seq_puts(m, ",noacsrules");
82cae269
KK
542 if (opts->prealloc)
543 seq_puts(m, ",prealloc");
544 if (sb->s_flags & SB_POSIXACL)
545 seq_puts(m, ",acl");
82cae269
KK
546
547 return 0;
548}
549
e8b8e97f
KA
550/*
551 * ntfs_sync_fs - super_operations::sync_fs
552 */
82cae269
KK
553static int ntfs_sync_fs(struct super_block *sb, int wait)
554{
555 int err = 0, err2;
556 struct ntfs_sb_info *sbi = sb->s_fs_info;
557 struct ntfs_inode *ni;
558 struct inode *inode;
559
560 ni = sbi->security.ni;
561 if (ni) {
562 inode = &ni->vfs_inode;
563 err2 = _ni_write_inode(inode, wait);
564 if (err2 && !err)
565 err = err2;
566 }
567
568 ni = sbi->objid.ni;
569 if (ni) {
570 inode = &ni->vfs_inode;
571 err2 = _ni_write_inode(inode, wait);
572 if (err2 && !err)
573 err = err2;
574 }
575
576 ni = sbi->reparse.ni;
577 if (ni) {
578 inode = &ni->vfs_inode;
579 err2 = _ni_write_inode(inode, wait);
580 if (err2 && !err)
581 err = err2;
582 }
583
584 if (!err)
585 ntfs_set_state(sbi, NTFS_DIRTY_CLEAR);
586
587 ntfs_update_mftmirr(sbi, wait);
588
589 return err;
590}
591
592static const struct super_operations ntfs_sops = {
593 .alloc_inode = ntfs_alloc_inode,
594 .destroy_inode = ntfs_destroy_inode,
595 .evict_inode = ntfs_evict_inode,
596 .put_super = ntfs_put_super,
597 .statfs = ntfs_statfs,
598 .show_options = ntfs_show_options,
599 .sync_fs = ntfs_sync_fs,
82cae269
KK
600 .write_inode = ntfs3_write_inode,
601};
602
603static struct inode *ntfs_export_get_inode(struct super_block *sb, u64 ino,
604 u32 generation)
605{
606 struct MFT_REF ref;
607 struct inode *inode;
608
609 ref.low = cpu_to_le32(ino);
610#ifdef CONFIG_NTFS3_64BIT_CLUSTER
611 ref.high = cpu_to_le16(ino >> 32);
612#else
613 ref.high = 0;
614#endif
615 ref.seq = cpu_to_le16(generation);
616
617 inode = ntfs_iget5(sb, &ref, NULL);
618 if (!IS_ERR(inode) && is_bad_inode(inode)) {
619 iput(inode);
620 inode = ERR_PTR(-ESTALE);
621 }
622
623 return inode;
624}
625
626static struct dentry *ntfs_fh_to_dentry(struct super_block *sb, struct fid *fid,
627 int fh_len, int fh_type)
628{
629 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
630 ntfs_export_get_inode);
631}
632
633static struct dentry *ntfs_fh_to_parent(struct super_block *sb, struct fid *fid,
634 int fh_len, int fh_type)
635{
636 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
637 ntfs_export_get_inode);
638}
639
640/* TODO: == ntfs_sync_inode */
641static int ntfs_nfs_commit_metadata(struct inode *inode)
642{
643 return _ni_write_inode(inode, 1);
644}
645
646static const struct export_operations ntfs_export_ops = {
647 .fh_to_dentry = ntfs_fh_to_dentry,
648 .fh_to_parent = ntfs_fh_to_parent,
649 .get_parent = ntfs3_get_parent,
650 .commit_metadata = ntfs_nfs_commit_metadata,
651};
652
e8b8e97f
KA
653/*
654 * format_size_gb - Return Gb,Mb to print with "%u.%02u Gb".
655 */
82cae269
KK
656static u32 format_size_gb(const u64 bytes, u32 *mb)
657{
e8b8e97f 658 /* Do simple right 30 bit shift of 64 bit value. */
82cae269
KK
659 u64 kbytes = bytes >> 10;
660 u32 kbytes32 = kbytes;
661
662 *mb = (100 * (kbytes32 & 0xfffff) + 0x7ffff) >> 20;
663 if (*mb >= 100)
664 *mb = 99;
665
666 return (kbytes32 >> 20) | (((u32)(kbytes >> 32)) << 12);
667}
668
669static u32 true_sectors_per_clst(const struct NTFS_BOOT *boot)
670{
671 return boot->sectors_per_clusters <= 0x80
672 ? boot->sectors_per_clusters
673 : (1u << (0 - boot->sectors_per_clusters));
674}
675
e8b8e97f
KA
676/*
677 * ntfs_init_from_boot - Init internal info from on-disk boot sector.
678 */
82cae269
KK
679static int ntfs_init_from_boot(struct super_block *sb, u32 sector_size,
680 u64 dev_size)
681{
682 struct ntfs_sb_info *sbi = sb->s_fs_info;
683 int err;
684 u32 mb, gb, boot_sector_size, sct_per_clst, record_size;
dbf59e2a 685 u64 sectors, clusters, mlcn, mlcn2;
82cae269
KK
686 struct NTFS_BOOT *boot;
687 struct buffer_head *bh;
688 struct MFT_REC *rec;
689 u16 fn, ao;
690
691 sbi->volume.blocks = dev_size >> PAGE_SHIFT;
692
693 bh = ntfs_bread(sb, 0);
694 if (!bh)
695 return -EIO;
696
697 err = -EINVAL;
698 boot = (struct NTFS_BOOT *)bh->b_data;
699
700 if (memcmp(boot->system_id, "NTFS ", sizeof("NTFS ") - 1))
701 goto out;
702
703 /* 0x55AA is not mandaroty. Thanks Maxim Suhanov*/
704 /*if (0x55 != boot->boot_magic[0] || 0xAA != boot->boot_magic[1])
705 * goto out;
706 */
707
708 boot_sector_size = (u32)boot->bytes_per_sector[1] << 8;
709 if (boot->bytes_per_sector[0] || boot_sector_size < SECTOR_SIZE ||
528c9b3d 710 !is_power_of_2(boot_sector_size)) {
82cae269
KK
711 goto out;
712 }
713
714 /* cluster size: 512, 1K, 2K, 4K, ... 2M */
715 sct_per_clst = true_sectors_per_clst(boot);
528c9b3d 716 if (!is_power_of_2(sct_per_clst))
82cae269
KK
717 goto out;
718
719 mlcn = le64_to_cpu(boot->mft_clst);
720 mlcn2 = le64_to_cpu(boot->mft2_clst);
721 sectors = le64_to_cpu(boot->sectors_per_volume);
722
723 if (mlcn * sct_per_clst >= sectors)
724 goto out;
725
726 if (mlcn2 * sct_per_clst >= sectors)
727 goto out;
728
e8b8e97f 729 /* Check MFT record size. */
82cae269
KK
730 if ((boot->record_size < 0 &&
731 SECTOR_SIZE > (2U << (-boot->record_size))) ||
528c9b3d 732 (boot->record_size >= 0 && !is_power_of_2(boot->record_size))) {
82cae269
KK
733 goto out;
734 }
735
e8b8e97f 736 /* Check index record size. */
82cae269
KK
737 if ((boot->index_size < 0 &&
738 SECTOR_SIZE > (2U << (-boot->index_size))) ||
528c9b3d 739 (boot->index_size >= 0 && !is_power_of_2(boot->index_size))) {
82cae269
KK
740 goto out;
741 }
742
dbf59e2a 743 sbi->volume.size = sectors * boot_sector_size;
82cae269 744
dbf59e2a 745 gb = format_size_gb(sbi->volume.size + boot_sector_size, &mb);
82cae269
KK
746
747 /*
e8b8e97f
KA
748 * - Volume formatted and mounted with the same sector size.
749 * - Volume formatted 4K and mounted as 512.
750 * - Volume formatted 512 and mounted as 4K.
82cae269 751 */
dbf59e2a
KK
752 if (boot_sector_size != sector_size) {
753 ntfs_warn(
754 sb,
755 "Different NTFS' sector size (%u) and media sector size (%u)",
756 boot_sector_size, sector_size);
82cae269
KK
757 dev_size += sector_size - 1;
758 }
759
760 sbi->cluster_size = boot_sector_size * sct_per_clst;
761 sbi->cluster_bits = blksize_bits(sbi->cluster_size);
762
763 sbi->mft.lbo = mlcn << sbi->cluster_bits;
764 sbi->mft.lbo2 = mlcn2 << sbi->cluster_bits;
765
09f7c338
KK
766 /* Compare boot's cluster and sector. */
767 if (sbi->cluster_size < boot_sector_size)
82cae269
KK
768 goto out;
769
09f7c338
KK
770 /* Compare boot's cluster and media sector. */
771 if (sbi->cluster_size < sector_size) {
772 /* No way to use ntfs_get_block in this case. */
773 ntfs_err(
774 sb,
775 "Failed to mount 'cause NTFS's cluster size (%u) is less than media sector size (%u)",
776 sbi->cluster_size, sector_size);
777 goto out;
778 }
779
82cae269
KK
780 sbi->cluster_mask = sbi->cluster_size - 1;
781 sbi->cluster_mask_inv = ~(u64)sbi->cluster_mask;
782 sbi->record_size = record_size = boot->record_size < 0
783 ? 1 << (-boot->record_size)
784 : (u32)boot->record_size
785 << sbi->cluster_bits;
786
787 if (record_size > MAXIMUM_BYTES_PER_MFT)
788 goto out;
789
790 sbi->record_bits = blksize_bits(record_size);
791 sbi->attr_size_tr = (5 * record_size >> 4); // ~320 bytes
792
793 sbi->max_bytes_per_attr =
fa3cacf5
KA
794 record_size - ALIGN(MFTRECORD_FIXUP_OFFSET_1, 8) -
795 ALIGN(((record_size >> SECTOR_SHIFT) * sizeof(short)), 8) -
796 ALIGN(sizeof(enum ATTR_TYPE), 8);
82cae269
KK
797
798 sbi->index_size = boot->index_size < 0
799 ? 1u << (-boot->index_size)
800 : (u32)boot->index_size << sbi->cluster_bits;
801
802 sbi->volume.ser_num = le64_to_cpu(boot->serial_num);
82cae269 803
e8b8e97f 804 /* Warning if RAW volume. */
dbf59e2a 805 if (dev_size < sbi->volume.size + boot_sector_size) {
82cae269
KK
806 u32 mb0, gb0;
807
808 gb0 = format_size_gb(dev_size, &mb0);
809 ntfs_warn(
810 sb,
811 "RAW NTFS volume: Filesystem size %u.%02u Gb > volume size %u.%02u Gb. Mount in read-only",
812 gb, mb, gb0, mb0);
813 sb->s_flags |= SB_RDONLY;
814 }
815
816 clusters = sbi->volume.size >> sbi->cluster_bits;
817#ifndef CONFIG_NTFS3_64BIT_CLUSTER
e8b8e97f 818 /* 32 bits per cluster. */
82cae269
KK
819 if (clusters >> 32) {
820 ntfs_notice(
821 sb,
822 "NTFS %u.%02u Gb is too big to use 32 bits per cluster",
823 gb, mb);
824 goto out;
825 }
826#elif BITS_PER_LONG < 64
827#error "CONFIG_NTFS3_64BIT_CLUSTER incompatible in 32 bit OS"
828#endif
829
830 sbi->used.bitmap.nbits = clusters;
831
195c52bd 832 rec = kzalloc(record_size, GFP_NOFS);
82cae269
KK
833 if (!rec) {
834 err = -ENOMEM;
835 goto out;
836 }
837
838 sbi->new_rec = rec;
839 rec->rhdr.sign = NTFS_FILE_SIGNATURE;
840 rec->rhdr.fix_off = cpu_to_le16(MFTRECORD_FIXUP_OFFSET_1);
841 fn = (sbi->record_size >> SECTOR_SHIFT) + 1;
842 rec->rhdr.fix_num = cpu_to_le16(fn);
fa3cacf5 843 ao = ALIGN(MFTRECORD_FIXUP_OFFSET_1 + sizeof(short) * fn, 8);
82cae269 844 rec->attr_off = cpu_to_le16(ao);
fa3cacf5 845 rec->used = cpu_to_le32(ao + ALIGN(sizeof(enum ATTR_TYPE), 8));
82cae269
KK
846 rec->total = cpu_to_le32(sbi->record_size);
847 ((struct ATTRIB *)Add2Ptr(rec, ao))->type = ATTR_END;
848
28861e3b 849 sb_set_blocksize(sb, min_t(u32, sbi->cluster_size, PAGE_SIZE));
82cae269
KK
850
851 sbi->block_mask = sb->s_blocksize - 1;
852 sbi->blocks_per_cluster = sbi->cluster_size >> sb->s_blocksize_bits;
853 sbi->volume.blocks = sbi->volume.size >> sb->s_blocksize_bits;
854
e8b8e97f 855 /* Maximum size for normal files. */
82cae269
KK
856 sbi->maxbytes = (clusters << sbi->cluster_bits) - 1;
857
858#ifdef CONFIG_NTFS3_64BIT_CLUSTER
859 if (clusters >= (1ull << (64 - sbi->cluster_bits)))
860 sbi->maxbytes = -1;
861 sbi->maxbytes_sparse = -1;
28861e3b 862 sb->s_maxbytes = MAX_LFS_FILESIZE;
82cae269 863#else
e8b8e97f 864 /* Maximum size for sparse file. */
82cae269 865 sbi->maxbytes_sparse = (1ull << (sbi->cluster_bits + 32)) - 1;
28861e3b 866 sb->s_maxbytes = 0xFFFFFFFFull << sbi->cluster_bits;
82cae269
KK
867#endif
868
869 err = 0;
870
871out:
872 brelse(bh);
873
874 return err;
875}
876
e8b8e97f
KA
877/*
878 * ntfs_fill_super - Try to mount.
879 */
610f8f5a 880static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
82cae269
KK
881{
882 int err;
610f8f5a 883 struct ntfs_sb_info *sbi = sb->s_fs_info;
82cae269 884 struct block_device *bdev = sb->s_bdev;
0e59a87e 885 struct request_queue *rq;
10b4f12c 886 struct inode *inode;
82cae269
KK
887 struct ntfs_inode *ni;
888 size_t i, tt;
889 CLST vcn, lcn, len;
890 struct ATTRIB *attr;
891 const struct VOLUME_INFO *info;
892 u32 idx, done, bytes;
893 struct ATTR_DEF_ENTRY *t;
82cae269 894 u16 *shared;
82cae269
KK
895 struct MFT_REF ref;
896
897 ref.high = 0;
898
82cae269
KK
899 sbi->sb = sb;
900 sb->s_flags |= SB_NODIRATIME;
901 sb->s_magic = 0x7366746e; // "ntfs"
902 sb->s_op = &ntfs_sops;
903 sb->s_export_op = &ntfs_export_ops;
904 sb->s_time_gran = NTFS_TIME_GRAN; // 100 nsec
905 sb->s_xattr = ntfs_xattr_handlers;
906
610f8f5a
KA
907 sbi->options->nls = ntfs_load_nls(sbi->options->nls_name);
908 if (IS_ERR(sbi->options->nls)) {
909 sbi->options->nls = NULL;
910 errorf(fc, "Cannot load nls %s", sbi->options->nls_name);
911 return -EINVAL;
912 }
82cae269 913
0e59a87e
KA
914 rq = bdev_get_queue(bdev);
915 if (blk_queue_discard(rq) && rq->limits.discard_granularity) {
82cae269
KK
916 sbi->discard_granularity = rq->limits.discard_granularity;
917 sbi->discard_granularity_mask_inv =
918 ~(u64)(sbi->discard_granularity - 1);
919 }
920
e8b8e97f 921 /* Parse boot. */
82cae269 922 err = ntfs_init_from_boot(sb, rq ? queue_logical_block_size(rq) : 512,
4ea41b3e 923 bdev->bd_inode->i_size);
82cae269 924 if (err)
bce1828f 925 return err;
82cae269 926
82cae269 927 /*
e8b8e97f
KA
928 * Load $Volume. This should be done before $LogFile
929 * 'cause 'sbi->volume.ni' is used 'ntfs_set_state'.
82cae269
KK
930 */
931 ref.low = cpu_to_le32(MFT_REC_VOL);
932 ref.seq = cpu_to_le16(MFT_REC_VOL);
933 inode = ntfs_iget5(sb, &ref, &NAME_VOLUME);
934 if (IS_ERR(inode)) {
82cae269 935 ntfs_err(sb, "Failed to load $Volume.");
bce1828f 936 return PTR_ERR(inode);
82cae269
KK
937 }
938
939 ni = ntfs_i(inode);
940
e8b8e97f 941 /* Load and save label (not necessary). */
82cae269
KK
942 attr = ni_find_attr(ni, NULL, NULL, ATTR_LABEL, NULL, 0, NULL, NULL);
943
944 if (!attr) {
945 /* It is ok if no ATTR_LABEL */
946 } else if (!attr->non_res && !is_attr_ext(attr)) {
e8b8e97f 947 /* $AttrDef allows labels to be up to 128 symbols. */
82cae269
KK
948 err = utf16s_to_utf8s(resident_data(attr),
949 le32_to_cpu(attr->res.data_size) >> 1,
950 UTF16_LITTLE_ENDIAN, sbi->volume.label,
951 sizeof(sbi->volume.label));
952 if (err < 0)
953 sbi->volume.label[0] = 0;
954 } else {
e8b8e97f 955 /* Should we break mounting here? */
82cae269
KK
956 //err = -EINVAL;
957 //goto out;
958 }
959
960 attr = ni_find_attr(ni, attr, NULL, ATTR_VOL_INFO, NULL, 0, NULL, NULL);
961 if (!attr || is_attr_ext(attr)) {
962 err = -EINVAL;
963 goto out;
964 }
965
966 info = resident_data_ex(attr, SIZEOF_ATTRIBUTE_VOLUME_INFO);
967 if (!info) {
968 err = -EINVAL;
969 goto out;
970 }
971
972 sbi->volume.major_ver = info->major_ver;
973 sbi->volume.minor_ver = info->minor_ver;
974 sbi->volume.flags = info->flags;
82cae269 975 sbi->volume.ni = ni;
82cae269 976
e8b8e97f 977 /* Load $MFTMirr to estimate recs_mirr. */
82cae269
KK
978 ref.low = cpu_to_le32(MFT_REC_MIRR);
979 ref.seq = cpu_to_le16(MFT_REC_MIRR);
980 inode = ntfs_iget5(sb, &ref, &NAME_MIRROR);
981 if (IS_ERR(inode)) {
82cae269 982 ntfs_err(sb, "Failed to load $MFTMirr.");
bce1828f 983 return PTR_ERR(inode);
82cae269
KK
984 }
985
986 sbi->mft.recs_mirr =
987 ntfs_up_cluster(sbi, inode->i_size) >> sbi->record_bits;
988
989 iput(inode);
990
d3624466 991 /* Load LogFile to replay. */
82cae269
KK
992 ref.low = cpu_to_le32(MFT_REC_LOG);
993 ref.seq = cpu_to_le16(MFT_REC_LOG);
994 inode = ntfs_iget5(sb, &ref, &NAME_LOGFILE);
995 if (IS_ERR(inode)) {
82cae269 996 ntfs_err(sb, "Failed to load \x24LogFile.");
bce1828f 997 return PTR_ERR(inode);
82cae269
KK
998 }
999
1000 ni = ntfs_i(inode);
1001
1002 err = ntfs_loadlog_and_replay(ni, sbi);
1003 if (err)
1004 goto out;
1005
1006 iput(inode);
82cae269 1007
82cae269 1008 if (sbi->flags & NTFS_FLAGS_NEED_REPLAY) {
0cde7e81 1009 if (!sb_rdonly(sb)) {
82cae269
KK
1010 ntfs_warn(sb,
1011 "failed to replay log file. Can't mount rw!");
bce1828f 1012 return -EINVAL;
82cae269
KK
1013 }
1014 } else if (sbi->volume.flags & VOLUME_FLAG_DIRTY) {
0cde7e81 1015 if (!sb_rdonly(sb) && !sbi->options->force) {
82cae269
KK
1016 ntfs_warn(
1017 sb,
1018 "volume is dirty and \"force\" flag is not set!");
bce1828f 1019 return -EINVAL;
82cae269
KK
1020 }
1021 }
1022
e8b8e97f 1023 /* Load $MFT. */
82cae269
KK
1024 ref.low = cpu_to_le32(MFT_REC_MFT);
1025 ref.seq = cpu_to_le16(1);
1026
1027 inode = ntfs_iget5(sb, &ref, &NAME_MFT);
1028 if (IS_ERR(inode)) {
82cae269 1029 ntfs_err(sb, "Failed to load $MFT.");
bce1828f 1030 return PTR_ERR(inode);
82cae269
KK
1031 }
1032
1033 ni = ntfs_i(inode);
1034
1035 sbi->mft.used = ni->i_valid >> sbi->record_bits;
1036 tt = inode->i_size >> sbi->record_bits;
1037 sbi->mft.next_free = MFT_REC_USER;
1038
1039 err = wnd_init(&sbi->mft.bitmap, sb, tt);
1040 if (err)
1041 goto out;
1042
1043 err = ni_load_all_mi(ni);
1044 if (err)
1045 goto out;
1046
1047 sbi->mft.ni = ni;
1048
e8b8e97f 1049 /* Load $BadClus. */
82cae269
KK
1050 ref.low = cpu_to_le32(MFT_REC_BADCLUST);
1051 ref.seq = cpu_to_le16(MFT_REC_BADCLUST);
1052 inode = ntfs_iget5(sb, &ref, &NAME_BADCLUS);
1053 if (IS_ERR(inode)) {
82cae269 1054 ntfs_err(sb, "Failed to load $BadClus.");
bce1828f 1055 return PTR_ERR(inode);
82cae269
KK
1056 }
1057
1058 ni = ntfs_i(inode);
1059
1060 for (i = 0; run_get_entry(&ni->file.run, i, &vcn, &lcn, &len); i++) {
1061 if (lcn == SPARSE_LCN)
1062 continue;
1063
1064 if (!sbi->bad_clusters)
1065 ntfs_notice(sb, "Volume contains bad blocks");
1066
1067 sbi->bad_clusters += len;
1068 }
1069
1070 iput(inode);
1071
e8b8e97f 1072 /* Load $Bitmap. */
82cae269
KK
1073 ref.low = cpu_to_le32(MFT_REC_BITMAP);
1074 ref.seq = cpu_to_le16(MFT_REC_BITMAP);
1075 inode = ntfs_iget5(sb, &ref, &NAME_BITMAP);
1076 if (IS_ERR(inode)) {
82cae269 1077 ntfs_err(sb, "Failed to load $Bitmap.");
bce1828f 1078 return PTR_ERR(inode);
82cae269
KK
1079 }
1080
82cae269
KK
1081#ifndef CONFIG_NTFS3_64BIT_CLUSTER
1082 if (inode->i_size >> 32) {
1083 err = -EINVAL;
1084 goto out;
1085 }
1086#endif
1087
e8b8e97f 1088 /* Check bitmap boundary. */
82cae269
KK
1089 tt = sbi->used.bitmap.nbits;
1090 if (inode->i_size < bitmap_size(tt)) {
1091 err = -EINVAL;
1092 goto out;
1093 }
1094
e8b8e97f 1095 /* Not necessary. */
82cae269 1096 sbi->used.bitmap.set_tail = true;
b4f110d6 1097 err = wnd_init(&sbi->used.bitmap, sb, tt);
82cae269
KK
1098 if (err)
1099 goto out;
1100
1101 iput(inode);
1102
e8b8e97f 1103 /* Compute the MFT zone. */
82cae269
KK
1104 err = ntfs_refresh_zone(sbi);
1105 if (err)
bce1828f 1106 return err;
82cae269 1107
e8b8e97f 1108 /* Load $AttrDef. */
82cae269
KK
1109 ref.low = cpu_to_le32(MFT_REC_ATTR);
1110 ref.seq = cpu_to_le16(MFT_REC_ATTR);
b4f110d6 1111 inode = ntfs_iget5(sb, &ref, &NAME_ATTRDEF);
82cae269 1112 if (IS_ERR(inode)) {
82cae269 1113 ntfs_err(sb, "Failed to load $AttrDef -> %d", err);
bce1828f 1114 return PTR_ERR(inode);
82cae269
KK
1115 }
1116
1117 if (inode->i_size < sizeof(struct ATTR_DEF_ENTRY)) {
1118 err = -EINVAL;
1119 goto out;
1120 }
1121 bytes = inode->i_size;
195c52bd 1122 sbi->def_table = t = kmalloc(bytes, GFP_NOFS);
82cae269
KK
1123 if (!t) {
1124 err = -ENOMEM;
1125 goto out;
1126 }
1127
1128 for (done = idx = 0; done < bytes; done += PAGE_SIZE, idx++) {
1129 unsigned long tail = bytes - done;
1130 struct page *page = ntfs_map_page(inode->i_mapping, idx);
1131
1132 if (IS_ERR(page)) {
1133 err = PTR_ERR(page);
1134 goto out;
1135 }
1136 memcpy(Add2Ptr(t, done), page_address(page),
1137 min(PAGE_SIZE, tail));
1138 ntfs_unmap_page(page);
1139
1140 if (!idx && ATTR_STD != t->type) {
1141 err = -EINVAL;
1142 goto out;
1143 }
1144 }
1145
1146 t += 1;
1147 sbi->def_entries = 1;
1148 done = sizeof(struct ATTR_DEF_ENTRY);
1149 sbi->reparse.max_size = MAXIMUM_REPARSE_DATA_BUFFER_SIZE;
f8d87ed9 1150 sbi->ea_max_size = 0x10000; /* default formatter value */
82cae269
KK
1151
1152 while (done + sizeof(struct ATTR_DEF_ENTRY) <= bytes) {
1153 u32 t32 = le32_to_cpu(t->type);
1154 u64 sz = le64_to_cpu(t->max_sz);
1155
1156 if ((t32 & 0xF) || le32_to_cpu(t[-1].type) >= t32)
1157 break;
1158
1159 if (t->type == ATTR_REPARSE)
1160 sbi->reparse.max_size = sz;
1161 else if (t->type == ATTR_EA)
1162 sbi->ea_max_size = sz;
1163
1164 done += sizeof(struct ATTR_DEF_ENTRY);
1165 t += 1;
1166 sbi->def_entries += 1;
1167 }
1168 iput(inode);
1169
e8b8e97f 1170 /* Load $UpCase. */
82cae269
KK
1171 ref.low = cpu_to_le32(MFT_REC_UPCASE);
1172 ref.seq = cpu_to_le16(MFT_REC_UPCASE);
1173 inode = ntfs_iget5(sb, &ref, &NAME_UPCASE);
1174 if (IS_ERR(inode)) {
0412016e 1175 ntfs_err(sb, "Failed to load $UpCase.");
bce1828f 1176 return PTR_ERR(inode);
82cae269
KK
1177 }
1178
82cae269
KK
1179 if (inode->i_size != 0x10000 * sizeof(short)) {
1180 err = -EINVAL;
1181 goto out;
1182 }
1183
82cae269
KK
1184 for (idx = 0; idx < (0x10000 * sizeof(short) >> PAGE_SHIFT); idx++) {
1185 const __le16 *src;
0056b273 1186 u16 *dst = Add2Ptr(sbi->upcase, idx << PAGE_SHIFT);
82cae269
KK
1187 struct page *page = ntfs_map_page(inode->i_mapping, idx);
1188
1189 if (IS_ERR(page)) {
1190 err = PTR_ERR(page);
1191 goto out;
1192 }
1193
1194 src = page_address(page);
1195
1196#ifdef __BIG_ENDIAN
1197 for (i = 0; i < PAGE_SIZE / sizeof(u16); i++)
1198 *dst++ = le16_to_cpu(*src++);
1199#else
1200 memcpy(dst, src, PAGE_SIZE);
1201#endif
1202 ntfs_unmap_page(page);
1203 }
1204
0056b273
KA
1205 shared = ntfs_set_shared(sbi->upcase, 0x10000 * sizeof(short));
1206 if (shared && sbi->upcase != shared) {
1207 kvfree(sbi->upcase);
82cae269 1208 sbi->upcase = shared;
82cae269
KK
1209 }
1210
1211 iput(inode);
82cae269
KK
1212
1213 if (is_ntfs3(sbi)) {
e8b8e97f 1214 /* Load $Secure. */
82cae269
KK
1215 err = ntfs_security_init(sbi);
1216 if (err)
bce1828f 1217 return err;
82cae269 1218
e8b8e97f 1219 /* Load $Extend. */
82cae269
KK
1220 err = ntfs_extend_init(sbi);
1221 if (err)
1222 goto load_root;
1223
e8b8e97f 1224 /* Load $Extend\$Reparse. */
82cae269
KK
1225 err = ntfs_reparse_init(sbi);
1226 if (err)
1227 goto load_root;
1228
e8b8e97f 1229 /* Load $Extend\$ObjId. */
82cae269
KK
1230 err = ntfs_objid_init(sbi);
1231 if (err)
1232 goto load_root;
1233 }
1234
1235load_root:
e8b8e97f 1236 /* Load root. */
82cae269
KK
1237 ref.low = cpu_to_le32(MFT_REC_ROOT);
1238 ref.seq = cpu_to_le16(MFT_REC_ROOT);
1239 inode = ntfs_iget5(sb, &ref, &NAME_ROOT);
1240 if (IS_ERR(inode)) {
82cae269 1241 ntfs_err(sb, "Failed to load root.");
bce1828f 1242 return PTR_ERR(inode);
82cae269
KK
1243 }
1244
82cae269 1245 sb->s_root = d_make_root(inode);
bce1828f
KA
1246 if (!sb->s_root)
1247 return -ENOMEM;
82cae269 1248
610f8f5a
KA
1249 fc->fs_private = NULL;
1250 fc->s_fs_info = NULL;
1251
82cae269 1252 return 0;
82cae269
KK
1253out:
1254 iput(inode);
82cae269
KK
1255 return err;
1256}
1257
1258void ntfs_unmap_meta(struct super_block *sb, CLST lcn, CLST len)
1259{
1260 struct ntfs_sb_info *sbi = sb->s_fs_info;
1261 struct block_device *bdev = sb->s_bdev;
1262 sector_t devblock = (u64)lcn * sbi->blocks_per_cluster;
1263 unsigned long blocks = (u64)len * sbi->blocks_per_cluster;
1264 unsigned long cnt = 0;
1265 unsigned long limit = global_zone_page_state(NR_FREE_PAGES)
1266 << (PAGE_SHIFT - sb->s_blocksize_bits);
1267
1268 if (limit >= 0x2000)
1269 limit -= 0x1000;
1270 else if (limit < 32)
1271 limit = 32;
1272 else
1273 limit >>= 1;
1274
1275 while (blocks--) {
1276 clean_bdev_aliases(bdev, devblock++, 1);
1277 if (cnt++ >= limit) {
1278 sync_blockdev(bdev);
1279 cnt = 0;
1280 }
1281 }
1282}
1283
1284/*
e8b8e97f 1285 * ntfs_discard - Issue a discard request (trim for SSD).
82cae269
KK
1286 */
1287int ntfs_discard(struct ntfs_sb_info *sbi, CLST lcn, CLST len)
1288{
1289 int err;
1290 u64 lbo, bytes, start, end;
1291 struct super_block *sb;
1292
1293 if (sbi->used.next_free_lcn == lcn + len)
1294 sbi->used.next_free_lcn = lcn;
1295
1296 if (sbi->flags & NTFS_FLAGS_NODISCARD)
1297 return -EOPNOTSUPP;
1298
564c97bd 1299 if (!sbi->options->discard)
82cae269
KK
1300 return -EOPNOTSUPP;
1301
1302 lbo = (u64)lcn << sbi->cluster_bits;
1303 bytes = (u64)len << sbi->cluster_bits;
1304
e8b8e97f 1305 /* Align up 'start' on discard_granularity. */
82cae269
KK
1306 start = (lbo + sbi->discard_granularity - 1) &
1307 sbi->discard_granularity_mask_inv;
e8b8e97f 1308 /* Align down 'end' on discard_granularity. */
82cae269
KK
1309 end = (lbo + bytes) & sbi->discard_granularity_mask_inv;
1310
1311 sb = sbi->sb;
1312 if (start >= end)
1313 return 0;
1314
1315 err = blkdev_issue_discard(sb->s_bdev, start >> 9, (end - start) >> 9,
1316 GFP_NOFS, 0);
1317
1318 if (err == -EOPNOTSUPP)
1319 sbi->flags |= NTFS_FLAGS_NODISCARD;
1320
1321 return err;
1322}
1323
610f8f5a
KA
1324static int ntfs_fs_get_tree(struct fs_context *fc)
1325{
1326 return get_tree_bdev(fc, ntfs_fill_super);
1327}
1328
1329/*
1330 * ntfs_fs_free - Free fs_context.
1331 *
1332 * Note that this will be called after fill_super and reconfigure
1333 * even when they pass. So they have to take pointers if they pass.
1334 */
1335static void ntfs_fs_free(struct fs_context *fc)
1336{
1337 struct ntfs_mount_options *opts = fc->fs_private;
1338 struct ntfs_sb_info *sbi = fc->s_fs_info;
1339
1340 if (sbi)
1341 put_ntfs(sbi);
1342
1343 if (opts)
1344 put_mount_options(opts);
1345}
1346
1347static const struct fs_context_operations ntfs_context_ops = {
1348 .parse_param = ntfs_fs_parse_param,
1349 .get_tree = ntfs_fs_get_tree,
1350 .reconfigure = ntfs_fs_reconfigure,
1351 .free = ntfs_fs_free,
1352};
1353
1354/*
1355 * ntfs_init_fs_context - Initialize spi and opts
1356 *
1357 * This will called when mount/remount. We will first initiliaze
1358 * options so that if remount we can use just that.
1359 */
1360static int ntfs_init_fs_context(struct fs_context *fc)
82cae269 1361{
610f8f5a
KA
1362 struct ntfs_mount_options *opts;
1363 struct ntfs_sb_info *sbi;
1364
1365 opts = kzalloc(sizeof(struct ntfs_mount_options), GFP_NOFS);
1366 if (!opts)
1367 return -ENOMEM;
1368
1369 /* Default options. */
1370 opts->fs_uid = current_uid();
1371 opts->fs_gid = current_gid();
1372 opts->fs_fmask_inv = ~current_umask();
1373 opts->fs_dmask_inv = ~current_umask();
1374
1375 if (fc->purpose == FS_CONTEXT_FOR_RECONFIGURE)
1376 goto ok;
1377
1378 sbi = kzalloc(sizeof(struct ntfs_sb_info), GFP_NOFS);
27fac777
KA
1379 if (!sbi)
1380 goto free_opts;
1381
1382 sbi->upcase = kvmalloc(0x10000 * sizeof(short), GFP_KERNEL);
1383 if (!sbi->upcase)
1384 goto free_sbi;
1385
1386 ratelimit_state_init(&sbi->msg_ratelimit, DEFAULT_RATELIMIT_INTERVAL,
1387 DEFAULT_RATELIMIT_BURST);
1388
1389 mutex_init(&sbi->compress.mtx_lznt);
1390#ifdef CONFIG_NTFS3_LZX_XPRESS
1391 mutex_init(&sbi->compress.mtx_xpress);
1392 mutex_init(&sbi->compress.mtx_lzx);
1393#endif
610f8f5a
KA
1394
1395 sbi->options = opts;
1396 fc->s_fs_info = sbi;
1397ok:
1398 fc->fs_private = opts;
1399 fc->ops = &ntfs_context_ops;
1400
1401 return 0;
27fac777
KA
1402free_sbi:
1403 kfree(sbi);
880301bb
CIK
1404free_opts:
1405 kfree(opts);
27fac777 1406 return -ENOMEM;
82cae269
KK
1407}
1408
1409// clang-format off
1410static struct file_system_type ntfs_fs_type = {
610f8f5a
KA
1411 .owner = THIS_MODULE,
1412 .name = "ntfs3",
1413 .init_fs_context = ntfs_init_fs_context,
1414 .parameters = ntfs_fs_parameters,
1415 .kill_sb = kill_block_super,
1416 .fs_flags = FS_REQUIRES_DEV | FS_ALLOW_IDMAP,
82cae269
KK
1417};
1418// clang-format on
1419
1420static int __init init_ntfs_fs(void)
1421{
1422 int err;
1423
2e3a51b5 1424 pr_info("ntfs3: Max link count %u\n", NTFS_LINK_MAX);
82cae269 1425
2e3a51b5
KA
1426 if (IS_ENABLED(CONFIG_NTFS3_FS_POSIX_ACL))
1427 pr_info("ntfs3: Enabled Linux POSIX ACLs support\n");
1428 if (IS_ENABLED(CONFIG_NTFS3_64BIT_CLUSTER))
1429 pr_notice("ntfs3: Warning: Activated 64 bits per cluster. Windows does not support this\n");
1430 if (IS_ENABLED(CONFIG_NTFS3_LZX_XPRESS))
1431 pr_info("ntfs3: Read-only LZX/Xpress compression included\n");
82cae269
KK
1432
1433 err = ntfs3_init_bitmap();
1434 if (err)
1435 return err;
1436
1437 ntfs_inode_cachep = kmem_cache_create(
1438 "ntfs_inode_cache", sizeof(struct ntfs_inode), 0,
1439 (SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD | SLAB_ACCOUNT),
1440 init_once);
1441 if (!ntfs_inode_cachep) {
1442 err = -ENOMEM;
1443 goto out1;
1444 }
1445
1446 err = register_filesystem(&ntfs_fs_type);
1447 if (err)
1448 goto out;
1449
1450 return 0;
1451out:
1452 kmem_cache_destroy(ntfs_inode_cachep);
1453out1:
1454 ntfs3_exit_bitmap();
1455 return err;
1456}
1457
1458static void __exit exit_ntfs_fs(void)
1459{
1460 if (ntfs_inode_cachep) {
1461 rcu_barrier();
1462 kmem_cache_destroy(ntfs_inode_cachep);
1463 }
1464
1465 unregister_filesystem(&ntfs_fs_type);
1466 ntfs3_exit_bitmap();
1467}
1468
1469MODULE_LICENSE("GPL");
1470MODULE_DESCRIPTION("ntfs3 read/write filesystem");
82cae269
KK
1471#ifdef CONFIG_NTFS3_FS_POSIX_ACL
1472MODULE_INFO(behaviour, "Enabled Linux POSIX ACLs support");
1473#endif
1474#ifdef CONFIG_NTFS3_64BIT_CLUSTER
2e3a51b5 1475MODULE_INFO(cluster, "Warning: Activated 64 bits per cluster. Windows does not support this");
82cae269
KK
1476#endif
1477#ifdef CONFIG_NTFS3_LZX_XPRESS
1478MODULE_INFO(compression, "Read-only lzx/xpress compression included");
1479#endif
1480
1481MODULE_AUTHOR("Konstantin Komarov");
1482MODULE_ALIAS_FS("ntfs3");
1483
1484module_init(init_ntfs_fs);
1485module_exit(exit_ntfs_fs);