don't bother with explicit length argument for __lookup_constant()
[linux-block.git] / fs / fs_context.c
CommitLineData
b4d0d230 1// SPDX-License-Identifier: GPL-2.0-or-later
9bc61ab1
DH
2/* Provide a way to create a superblock configuration context within the kernel
3 * that allows a superblock to be set up prior to mounting.
4 *
5 * Copyright (C) 2017 Red Hat, Inc. All Rights Reserved.
6 * Written by David Howells (dhowells@redhat.com)
9bc61ab1
DH
7 */
8
9#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
007ec26c 10#include <linux/module.h>
9bc61ab1 11#include <linux/fs_context.h>
3e1aeb00 12#include <linux/fs_parser.h>
9bc61ab1
DH
13#include <linux/fs.h>
14#include <linux/mount.h>
15#include <linux/nsproxy.h>
16#include <linux/slab.h>
17#include <linux/magic.h>
18#include <linux/security.h>
19#include <linux/mnt_namespace.h>
20#include <linux/pid_namespace.h>
21#include <linux/user_namespace.h>
22#include <net/net_namespace.h>
007ec26c 23#include <asm/sections.h>
9bc61ab1
DH
24#include "mount.h"
25#include "internal.h"
26
3e1aeb00
DH
27enum legacy_fs_param {
28 LEGACY_FS_UNSET_PARAMS,
29 LEGACY_FS_MONOLITHIC_PARAMS,
30 LEGACY_FS_INDIVIDUAL_PARAMS,
31};
32
9bc61ab1
DH
33struct legacy_fs_context {
34 char *legacy_data; /* Data page for legacy filesystems */
35 size_t data_size;
3e1aeb00 36 enum legacy_fs_param param_type;
9bc61ab1
DH
37};
38
39static int legacy_init_fs_context(struct fs_context *fc);
40
3e1aeb00
DH
41static const struct constant_table common_set_sb_flag[] = {
42 { "dirsync", SB_DIRSYNC },
43 { "lazytime", SB_LAZYTIME },
44 { "mand", SB_MANDLOCK },
45 { "posixacl", SB_POSIXACL },
46 { "ro", SB_RDONLY },
47 { "sync", SB_SYNCHRONOUS },
34264ae3 48 { },
3e1aeb00
DH
49};
50
51static const struct constant_table common_clear_sb_flag[] = {
52 { "async", SB_SYNCHRONOUS },
53 { "nolazytime", SB_LAZYTIME },
54 { "nomand", SB_MANDLOCK },
55 { "rw", SB_RDONLY },
56 { "silent", SB_SILENT },
34264ae3 57 { },
3e1aeb00
DH
58};
59
60static const char *const forbidden_sb_flag[] = {
61 "bind",
62 "dev",
63 "exec",
64 "move",
65 "noatime",
66 "nodev",
67 "nodiratime",
68 "noexec",
69 "norelatime",
70 "nostrictatime",
71 "nosuid",
72 "private",
73 "rec",
74 "relatime",
75 "remount",
76 "shared",
77 "slave",
78 "strictatime",
79 "suid",
80 "unbindable",
81};
82
83/*
84 * Check for a common mount option that manipulates s_flags.
85 */
86static int vfs_parse_sb_flag(struct fs_context *fc, const char *key)
87{
88 unsigned int token;
89 unsigned int i;
90
91 for (i = 0; i < ARRAY_SIZE(forbidden_sb_flag); i++)
92 if (strcmp(key, forbidden_sb_flag[i]) == 0)
93 return -EINVAL;
94
95 token = lookup_constant(common_set_sb_flag, key, 0);
96 if (token) {
97 fc->sb_flags |= token;
98 fc->sb_flags_mask |= token;
99 return 0;
100 }
101
102 token = lookup_constant(common_clear_sb_flag, key, 0);
103 if (token) {
104 fc->sb_flags &= ~token;
105 fc->sb_flags_mask |= token;
106 return 0;
107 }
108
109 return -ENOPARAM;
110}
111
112/**
113 * vfs_parse_fs_param - Add a single parameter to a superblock config
114 * @fc: The filesystem context to modify
115 * @param: The parameter
116 *
117 * A single mount option in string form is applied to the filesystem context
118 * being set up. Certain standard options (for example "ro") are translated
119 * into flag bits without going to the filesystem. The active security module
120 * is allowed to observe and poach options. Any other options are passed over
121 * to the filesystem to parse.
122 *
123 * This may be called multiple times for a context.
124 *
125 * Returns 0 on success and a negative error code on failure. In the event of
126 * failure, supplementary error information may have been set.
127 */
128int vfs_parse_fs_param(struct fs_context *fc, struct fs_parameter *param)
129{
130 int ret;
131
132 if (!param->key)
133 return invalf(fc, "Unnamed parameter\n");
134
135 ret = vfs_parse_sb_flag(fc, param->key);
136 if (ret != -ENOPARAM)
137 return ret;
138
139 ret = security_fs_context_parse_param(fc, param);
140 if (ret != -ENOPARAM)
141 /* Param belongs to the LSM or is disallowed by the LSM; so
142 * don't pass to the FS.
143 */
144 return ret;
145
146 if (fc->ops->parse_param) {
147 ret = fc->ops->parse_param(fc, param);
148 if (ret != -ENOPARAM)
149 return ret;
150 }
151
152 /* If the filesystem doesn't take any arguments, give it the
153 * default handling of source.
154 */
155 if (strcmp(param->key, "source") == 0) {
156 if (param->type != fs_value_is_string)
157 return invalf(fc, "VFS: Non-string source");
158 if (fc->source)
159 return invalf(fc, "VFS: Multiple sources");
160 fc->source = param->string;
161 param->string = NULL;
162 return 0;
163 }
164
165 return invalf(fc, "%s: Unknown parameter '%s'",
166 fc->fs_type->name, param->key);
167}
168EXPORT_SYMBOL(vfs_parse_fs_param);
169
170/**
171 * vfs_parse_fs_string - Convenience function to just parse a string.
172 */
173int vfs_parse_fs_string(struct fs_context *fc, const char *key,
174 const char *value, size_t v_size)
175{
176 int ret;
177
178 struct fs_parameter param = {
179 .key = key,
0f89589a 180 .type = fs_value_is_flag,
3e1aeb00
DH
181 .size = v_size,
182 };
183
0f89589a 184 if (value) {
3e1aeb00
DH
185 param.string = kmemdup_nul(value, v_size, GFP_KERNEL);
186 if (!param.string)
187 return -ENOMEM;
0f89589a 188 param.type = fs_value_is_string;
3e1aeb00
DH
189 }
190
191 ret = vfs_parse_fs_param(fc, &param);
192 kfree(param.string);
193 return ret;
194}
195EXPORT_SYMBOL(vfs_parse_fs_string);
196
197/**
198 * generic_parse_monolithic - Parse key[=val][,key[=val]]* mount data
199 * @ctx: The superblock configuration to fill in.
200 * @data: The data to parse
201 *
202 * Parse a blob of data that's in key[=val][,key[=val]]* form. This can be
203 * called from the ->monolithic_mount_data() fs_context operation.
204 *
205 * Returns 0 on success or the error returned by the ->parse_option() fs_context
206 * operation on failure.
207 */
208int generic_parse_monolithic(struct fs_context *fc, void *data)
209{
210 char *options = data, *key;
211 int ret = 0;
212
213 if (!options)
214 return 0;
215
216 ret = security_sb_eat_lsm_opts(options, &fc->security);
217 if (ret)
218 return ret;
219
220 while ((key = strsep(&options, ",")) != NULL) {
221 if (*key) {
222 size_t v_len = 0;
223 char *value = strchr(key, '=');
224
225 if (value) {
226 if (value == key)
227 continue;
228 *value++ = 0;
229 v_len = strlen(value);
230 }
231 ret = vfs_parse_fs_string(fc, key, value, v_len);
232 if (ret < 0)
233 break;
234 }
235 }
236
237 return ret;
238}
239EXPORT_SYMBOL(generic_parse_monolithic);
240
9bc61ab1
DH
241/**
242 * alloc_fs_context - Create a filesystem context.
243 * @fs_type: The filesystem type.
244 * @reference: The dentry from which this one derives (or NULL)
245 * @sb_flags: Filesystem/superblock flags (SB_*)
246 * @sb_flags_mask: Applicable members of @sb_flags
247 * @purpose: The purpose that this configuration shall be used for.
248 *
249 * Open a filesystem and create a mount context. The mount context is
250 * initialised with the supplied flags and, if a submount/automount from
251 * another superblock (referred to by @reference) is supplied, may have
252 * parameters such as namespaces copied across from that superblock.
253 */
254static struct fs_context *alloc_fs_context(struct file_system_type *fs_type,
255 struct dentry *reference,
256 unsigned int sb_flags,
257 unsigned int sb_flags_mask,
258 enum fs_context_purpose purpose)
259{
f3a09c92 260 int (*init_fs_context)(struct fs_context *);
9bc61ab1
DH
261 struct fs_context *fc;
262 int ret = -ENOMEM;
263
264 fc = kzalloc(sizeof(struct fs_context), GFP_KERNEL);
265 if (!fc)
266 return ERR_PTR(-ENOMEM);
267
268 fc->purpose = purpose;
269 fc->sb_flags = sb_flags;
270 fc->sb_flags_mask = sb_flags_mask;
271 fc->fs_type = get_filesystem(fs_type);
272 fc->cred = get_current_cred();
273 fc->net_ns = get_net(current->nsproxy->net_ns);
274
24dcb3d9
DH
275 mutex_init(&fc->uapi_mutex);
276
9bc61ab1
DH
277 switch (purpose) {
278 case FS_CONTEXT_FOR_MOUNT:
279 fc->user_ns = get_user_ns(fc->cred->user_ns);
280 break;
e1a91586
AV
281 case FS_CONTEXT_FOR_SUBMOUNT:
282 fc->user_ns = get_user_ns(reference->d_sb->s_user_ns);
283 break;
8d0347f6 284 case FS_CONTEXT_FOR_RECONFIGURE:
8d0347f6 285 atomic_inc(&reference->d_sb->s_active);
1dd9bc08 286 fc->user_ns = get_user_ns(reference->d_sb->s_user_ns);
8d0347f6
DH
287 fc->root = dget(reference);
288 break;
9bc61ab1
DH
289 }
290
f3a09c92
AV
291 /* TODO: Make all filesystems support this unconditionally */
292 init_fs_context = fc->fs_type->init_fs_context;
293 if (!init_fs_context)
294 init_fs_context = legacy_init_fs_context;
295
296 ret = init_fs_context(fc);
9bc61ab1
DH
297 if (ret < 0)
298 goto err_fc;
299 fc->need_free = true;
300 return fc;
301
302err_fc:
303 put_fs_context(fc);
304 return ERR_PTR(ret);
305}
306
307struct fs_context *fs_context_for_mount(struct file_system_type *fs_type,
308 unsigned int sb_flags)
309{
310 return alloc_fs_context(fs_type, NULL, sb_flags, 0,
311 FS_CONTEXT_FOR_MOUNT);
312}
313EXPORT_SYMBOL(fs_context_for_mount);
314
8d0347f6
DH
315struct fs_context *fs_context_for_reconfigure(struct dentry *dentry,
316 unsigned int sb_flags,
317 unsigned int sb_flags_mask)
318{
319 return alloc_fs_context(dentry->d_sb->s_type, dentry, sb_flags,
320 sb_flags_mask, FS_CONTEXT_FOR_RECONFIGURE);
321}
322EXPORT_SYMBOL(fs_context_for_reconfigure);
323
e1a91586
AV
324struct fs_context *fs_context_for_submount(struct file_system_type *type,
325 struct dentry *reference)
326{
327 return alloc_fs_context(type, reference, 0, 0, FS_CONTEXT_FOR_SUBMOUNT);
328}
329EXPORT_SYMBOL(fs_context_for_submount);
330
c9ce29ed
AV
331void fc_drop_locked(struct fs_context *fc)
332{
333 struct super_block *sb = fc->root->d_sb;
334 dput(fc->root);
335 fc->root = NULL;
336 deactivate_locked_super(sb);
337}
338
9bc61ab1 339static void legacy_fs_context_free(struct fs_context *fc);
8d0347f6 340
0b52075e
AV
341/**
342 * vfs_dup_fc_config: Duplicate a filesystem context.
343 * @src_fc: The context to copy.
344 */
345struct fs_context *vfs_dup_fs_context(struct fs_context *src_fc)
346{
347 struct fs_context *fc;
348 int ret;
349
350 if (!src_fc->ops->dup)
351 return ERR_PTR(-EOPNOTSUPP);
352
353 fc = kmemdup(src_fc, sizeof(struct fs_context), GFP_KERNEL);
354 if (!fc)
355 return ERR_PTR(-ENOMEM);
356
24dcb3d9
DH
357 mutex_init(&fc->uapi_mutex);
358
0b52075e
AV
359 fc->fs_private = NULL;
360 fc->s_fs_info = NULL;
361 fc->source = NULL;
362 fc->security = NULL;
363 get_filesystem(fc->fs_type);
364 get_net(fc->net_ns);
365 get_user_ns(fc->user_ns);
366 get_cred(fc->cred);
007ec26c
DH
367 if (fc->log)
368 refcount_inc(&fc->log->usage);
0b52075e
AV
369
370 /* Can't call put until we've called ->dup */
371 ret = fc->ops->dup(fc, src_fc);
372 if (ret < 0)
373 goto err_fc;
374
375 ret = security_fs_context_dup(fc, src_fc);
376 if (ret < 0)
377 goto err_fc;
378 return fc;
379
380err_fc:
381 put_fs_context(fc);
382 return ERR_PTR(ret);
383}
384EXPORT_SYMBOL(vfs_dup_fs_context);
385
e7582e16
DH
386/**
387 * logfc - Log a message to a filesystem context
388 * @fc: The filesystem context to log to.
389 * @fmt: The format of the buffer.
390 */
391void logfc(struct fs_context *fc, const char *fmt, ...)
392{
007ec26c
DH
393 static const char store_failure[] = "OOM: Can't store error string";
394 struct fc_log *log = fc ? fc->log : NULL;
395 const char *p;
e7582e16 396 va_list va;
007ec26c
DH
397 char *q;
398 u8 freeable;
e7582e16
DH
399
400 va_start(va, fmt);
007ec26c
DH
401 if (!strchr(fmt, '%')) {
402 p = fmt;
403 goto unformatted_string;
e7582e16 404 }
007ec26c
DH
405 if (strcmp(fmt, "%s") == 0) {
406 p = va_arg(va, const char *);
407 goto unformatted_string;
408 }
409
410 q = kvasprintf(GFP_KERNEL, fmt, va);
411copied_string:
412 if (!q)
413 goto store_failure;
414 freeable = 1;
415 goto store_string;
416
417unformatted_string:
418 if ((unsigned long)p >= (unsigned long)__start_rodata &&
419 (unsigned long)p < (unsigned long)__end_rodata)
420 goto const_string;
421 if (log && within_module_core((unsigned long)p, log->owner))
422 goto const_string;
423 q = kstrdup(p, GFP_KERNEL);
424 goto copied_string;
425
426store_failure:
427 p = store_failure;
428const_string:
429 q = (char *)p;
430 freeable = 0;
431store_string:
432 if (!log) {
433 switch (fmt[0]) {
434 case 'w':
435 printk(KERN_WARNING "%s\n", q + 2);
436 break;
437 case 'e':
438 printk(KERN_ERR "%s\n", q + 2);
439 break;
440 default:
441 printk(KERN_NOTICE "%s\n", q + 2);
442 break;
443 }
444 if (freeable)
445 kfree(q);
446 } else {
447 unsigned int logsize = ARRAY_SIZE(log->buffer);
448 u8 index;
449
450 index = log->head & (logsize - 1);
451 BUILD_BUG_ON(sizeof(log->head) != sizeof(u8) ||
452 sizeof(log->tail) != sizeof(u8));
453 if ((u8)(log->head - log->tail) == logsize) {
454 /* The buffer is full, discard the oldest message */
455 if (log->need_free & (1 << index))
456 kfree(log->buffer[index]);
457 log->tail++;
458 }
e7582e16 459
007ec26c
DH
460 log->buffer[index] = q;
461 log->need_free &= ~(1 << index);
462 log->need_free |= freeable << index;
463 log->head++;
464 }
e7582e16
DH
465 va_end(va);
466}
467EXPORT_SYMBOL(logfc);
007ec26c
DH
468
469/*
470 * Free a logging structure.
471 */
472static void put_fc_log(struct fs_context *fc)
473{
474 struct fc_log *log = fc->log;
475 int i;
476
477 if (log) {
478 if (refcount_dec_and_test(&log->usage)) {
479 fc->log = NULL;
480 for (i = 0; i <= 7; i++)
481 if (log->need_free & (1 << i))
482 kfree(log->buffer[i]);
483 kfree(log);
484 }
485 }
486}
e7582e16 487
9bc61ab1
DH
488/**
489 * put_fs_context - Dispose of a superblock configuration context.
490 * @fc: The context to dispose of.
491 */
492void put_fs_context(struct fs_context *fc)
493{
494 struct super_block *sb;
495
496 if (fc->root) {
497 sb = fc->root->d_sb;
498 dput(fc->root);
499 fc->root = NULL;
500 deactivate_super(sb);
501 }
502
f3a09c92
AV
503 if (fc->need_free && fc->ops && fc->ops->free)
504 fc->ops->free(fc);
9bc61ab1
DH
505
506 security_free_mnt_opts(&fc->security);
8d0347f6 507 put_net(fc->net_ns);
9bc61ab1
DH
508 put_user_ns(fc->user_ns);
509 put_cred(fc->cred);
007ec26c 510 put_fc_log(fc);
9bc61ab1
DH
511 put_filesystem(fc->fs_type);
512 kfree(fc->source);
513 kfree(fc);
514}
515EXPORT_SYMBOL(put_fs_context);
516
517/*
518 * Free the config for a filesystem that doesn't support fs_context.
519 */
520static void legacy_fs_context_free(struct fs_context *fc)
521{
3e1aeb00
DH
522 struct legacy_fs_context *ctx = fc->fs_private;
523
524 if (ctx) {
525 if (ctx->param_type == LEGACY_FS_INDIVIDUAL_PARAMS)
526 kfree(ctx->legacy_data);
527 kfree(ctx);
528 }
529}
530
0b52075e
AV
531/*
532 * Duplicate a legacy config.
533 */
534static int legacy_fs_context_dup(struct fs_context *fc, struct fs_context *src_fc)
535{
536 struct legacy_fs_context *ctx;
537 struct legacy_fs_context *src_ctx = src_fc->fs_private;
538
539 ctx = kmemdup(src_ctx, sizeof(*src_ctx), GFP_KERNEL);
540 if (!ctx)
541 return -ENOMEM;
542
543 if (ctx->param_type == LEGACY_FS_INDIVIDUAL_PARAMS) {
544 ctx->legacy_data = kmemdup(src_ctx->legacy_data,
545 src_ctx->data_size, GFP_KERNEL);
546 if (!ctx->legacy_data) {
547 kfree(ctx);
548 return -ENOMEM;
549 }
550 }
551
552 fc->fs_private = ctx;
553 return 0;
554}
555
3e1aeb00
DH
556/*
557 * Add a parameter to a legacy config. We build up a comma-separated list of
558 * options.
559 */
560static int legacy_parse_param(struct fs_context *fc, struct fs_parameter *param)
561{
562 struct legacy_fs_context *ctx = fc->fs_private;
563 unsigned int size = ctx->data_size;
564 size_t len = 0;
565
566 if (strcmp(param->key, "source") == 0) {
567 if (param->type != fs_value_is_string)
568 return invalf(fc, "VFS: Legacy: Non-string source");
569 if (fc->source)
570 return invalf(fc, "VFS: Legacy: Multiple sources");
571 fc->source = param->string;
572 param->string = NULL;
573 return 0;
574 }
575
3e1aeb00
DH
576 if (ctx->param_type == LEGACY_FS_MONOLITHIC_PARAMS)
577 return invalf(fc, "VFS: Legacy: Can't mix monolithic and individual options");
578
579 switch (param->type) {
580 case fs_value_is_string:
581 len = 1 + param->size;
582 /* Fall through */
583 case fs_value_is_flag:
584 len += strlen(param->key);
585 break;
586 default:
587 return invalf(fc, "VFS: Legacy: Parameter type for '%s' not supported",
588 param->key);
589 }
590
591 if (len > PAGE_SIZE - 2 - size)
592 return invalf(fc, "VFS: Legacy: Cumulative options too large");
593 if (strchr(param->key, ',') ||
594 (param->type == fs_value_is_string &&
595 memchr(param->string, ',', param->size)))
596 return invalf(fc, "VFS: Legacy: Option '%s' contained comma",
597 param->key);
598 if (!ctx->legacy_data) {
599 ctx->legacy_data = kmalloc(PAGE_SIZE, GFP_KERNEL);
600 if (!ctx->legacy_data)
601 return -ENOMEM;
602 }
603
604 ctx->legacy_data[size++] = ',';
605 len = strlen(param->key);
606 memcpy(ctx->legacy_data + size, param->key, len);
607 size += len;
608 if (param->type == fs_value_is_string) {
609 ctx->legacy_data[size++] = '=';
610 memcpy(ctx->legacy_data + size, param->string, param->size);
611 size += param->size;
612 }
613 ctx->legacy_data[size] = '\0';
614 ctx->data_size = size;
615 ctx->param_type = LEGACY_FS_INDIVIDUAL_PARAMS;
616 return 0;
9bc61ab1
DH
617}
618
619/*
620 * Add monolithic mount data.
621 */
622static int legacy_parse_monolithic(struct fs_context *fc, void *data)
623{
624 struct legacy_fs_context *ctx = fc->fs_private;
3e1aeb00
DH
625
626 if (ctx->param_type != LEGACY_FS_UNSET_PARAMS) {
627 pr_warn("VFS: Can't mix monolithic and individual options\n");
628 return -EINVAL;
629 }
630
9bc61ab1 631 ctx->legacy_data = data;
3e1aeb00 632 ctx->param_type = LEGACY_FS_MONOLITHIC_PARAMS;
9bc61ab1
DH
633 if (!ctx->legacy_data)
634 return 0;
3e1aeb00 635
9bc61ab1
DH
636 if (fc->fs_type->fs_flags & FS_BINARY_MOUNTDATA)
637 return 0;
638 return security_sb_eat_lsm_opts(ctx->legacy_data, &fc->security);
639}
640
641/*
642 * Get a mountable root with the legacy mount command.
643 */
f3a09c92 644static int legacy_get_tree(struct fs_context *fc)
9bc61ab1
DH
645{
646 struct legacy_fs_context *ctx = fc->fs_private;
647 struct super_block *sb;
648 struct dentry *root;
649
650 root = fc->fs_type->mount(fc->fs_type, fc->sb_flags,
651 fc->source, ctx->legacy_data);
652 if (IS_ERR(root))
653 return PTR_ERR(root);
654
655 sb = root->d_sb;
656 BUG_ON(!sb);
657
658 fc->root = root;
659 return 0;
660}
661
8d0347f6
DH
662/*
663 * Handle remount.
664 */
f3a09c92 665static int legacy_reconfigure(struct fs_context *fc)
8d0347f6
DH
666{
667 struct legacy_fs_context *ctx = fc->fs_private;
668 struct super_block *sb = fc->root->d_sb;
669
670 if (!sb->s_op->remount_fs)
671 return 0;
672
673 return sb->s_op->remount_fs(sb, &fc->sb_flags,
674 ctx ? ctx->legacy_data : NULL);
675}
676
f3a09c92
AV
677const struct fs_context_operations legacy_fs_context_ops = {
678 .free = legacy_fs_context_free,
0b52075e 679 .dup = legacy_fs_context_dup,
3e1aeb00 680 .parse_param = legacy_parse_param,
f3a09c92
AV
681 .parse_monolithic = legacy_parse_monolithic,
682 .get_tree = legacy_get_tree,
683 .reconfigure = legacy_reconfigure,
684};
685
9bc61ab1
DH
686/*
687 * Initialise a legacy context for a filesystem that doesn't support
688 * fs_context.
689 */
690static int legacy_init_fs_context(struct fs_context *fc)
691{
692 fc->fs_private = kzalloc(sizeof(struct legacy_fs_context), GFP_KERNEL);
693 if (!fc->fs_private)
694 return -ENOMEM;
f3a09c92 695 fc->ops = &legacy_fs_context_ops;
9bc61ab1
DH
696 return 0;
697}
698
699int parse_monolithic_mount_data(struct fs_context *fc, void *data)
700{
f3a09c92 701 int (*monolithic_mount_data)(struct fs_context *, void *);
3e1aeb00 702
f3a09c92 703 monolithic_mount_data = fc->ops->parse_monolithic;
3e1aeb00
DH
704 if (!monolithic_mount_data)
705 monolithic_mount_data = generic_parse_monolithic;
706
f3a09c92 707 return monolithic_mount_data(fc, data);
9bc61ab1 708}
ecdab150
DH
709
710/*
711 * Clean up a context after performing an action on it and put it into a state
712 * from where it can be used to reconfigure a superblock.
713 *
714 * Note that here we do only the parts that can't fail; the rest is in
715 * finish_clean_context() below and in between those fs_context is marked
716 * FS_CONTEXT_AWAITING_RECONF. The reason for splitup is that after
717 * successful mount or remount we need to report success to userland.
718 * Trying to do full reinit (for the sake of possible subsequent remount)
719 * and failing to allocate memory would've put us into a nasty situation.
720 * So here we only discard the old state and reinitialization is left
721 * until we actually try to reconfigure.
722 */
723void vfs_clean_context(struct fs_context *fc)
724{
725 if (fc->need_free && fc->ops && fc->ops->free)
726 fc->ops->free(fc);
727 fc->need_free = false;
728 fc->fs_private = NULL;
729 fc->s_fs_info = NULL;
730 fc->sb_flags = 0;
731 security_free_mnt_opts(&fc->security);
ecdab150
DH
732 kfree(fc->source);
733 fc->source = NULL;
734
735 fc->purpose = FS_CONTEXT_FOR_RECONFIGURE;
736 fc->phase = FS_CONTEXT_AWAITING_RECONF;
737}
738
739int finish_clean_context(struct fs_context *fc)
740{
741 int error;
742
743 if (fc->phase != FS_CONTEXT_AWAITING_RECONF)
744 return 0;
745
746 if (fc->fs_type->init_fs_context)
747 error = fc->fs_type->init_fs_context(fc);
748 else
749 error = legacy_init_fs_context(fc);
750 if (unlikely(error)) {
751 fc->phase = FS_CONTEXT_FAILED;
752 return error;
753 }
754 fc->need_free = true;
755 fc->phase = FS_CONTEXT_RECONF_PARAMS;
756 return 0;
757}