blob: e6c3e4c61dad76c7f4da82df9c2262aa1f646655 [file] [log] [blame]
Thomas Gleixnerb4d0d232019-05-20 19:08:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
David Howells9bc61ab2018-11-04 03:19:03 -05002/* Filesystem superblock creation and reconfiguration context.
3 *
4 * Copyright (C) 2018 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
David Howells9bc61ab2018-11-04 03:19:03 -05006 */
7
8#ifndef _LINUX_FS_CONTEXT_H
9#define _LINUX_FS_CONTEXT_H
10
11#include <linux/kernel.h>
David Howells007ec262018-11-01 23:34:29 +000012#include <linux/refcount.h>
David Howells9bc61ab2018-11-04 03:19:03 -050013#include <linux/errno.h>
14#include <linux/security.h>
David Howells24dcb3d2018-11-01 23:33:31 +000015#include <linux/mutex.h>
David Howells9bc61ab2018-11-04 03:19:03 -050016
17struct cred;
18struct dentry;
19struct file_operations;
20struct file_system_type;
Al Virof3a09c92018-12-23 18:55:56 -050021struct mnt_namespace;
David Howells9bc61ab2018-11-04 03:19:03 -050022struct net;
Al Virof3a09c92018-12-23 18:55:56 -050023struct pid_namespace;
24struct super_block;
David Howells9bc61ab2018-11-04 03:19:03 -050025struct user_namespace;
Al Virof3a09c92018-12-23 18:55:56 -050026struct vfsmount;
27struct path;
David Howells9bc61ab2018-11-04 03:19:03 -050028
29enum fs_context_purpose {
30 FS_CONTEXT_FOR_MOUNT, /* New superblock for explicit mount */
Al Viroe1a91582018-12-23 16:25:31 -050031 FS_CONTEXT_FOR_SUBMOUNT, /* New superblock for automatic submount */
David Howells8d0347f2018-11-04 09:28:36 -050032 FS_CONTEXT_FOR_RECONFIGURE, /* Superblock reconfiguration (remount) */
David Howells9bc61ab2018-11-04 03:19:03 -050033};
34
35/*
David Howells24dcb3d2018-11-01 23:33:31 +000036 * Userspace usage phase for fsopen/fspick.
37 */
38enum fs_context_phase {
39 FS_CONTEXT_CREATE_PARAMS, /* Loading params for sb creation */
40 FS_CONTEXT_CREATING, /* A superblock is being created */
41 FS_CONTEXT_AWAITING_MOUNT, /* Superblock created, awaiting fsmount() */
42 FS_CONTEXT_AWAITING_RECONF, /* Awaiting initialisation for reconfiguration */
43 FS_CONTEXT_RECONF_PARAMS, /* Loading params for reconfiguration */
44 FS_CONTEXT_RECONFIGURING, /* Reconfiguring the superblock */
45 FS_CONTEXT_FAILED, /* Failed to correctly transition a context */
46};
47
48/*
David Howells31d921c2018-11-01 23:07:24 +000049 * Type of parameter value.
50 */
51enum fs_value_type {
52 fs_value_is_undefined,
53 fs_value_is_flag, /* Value not given a value */
54 fs_value_is_string, /* Value is a string */
55 fs_value_is_blob, /* Value is a binary blob */
56 fs_value_is_filename, /* Value is a filename* + dirfd */
David Howells31d921c2018-11-01 23:07:24 +000057 fs_value_is_file, /* Value is a file* */
58};
59
60/*
61 * Configuration parameter.
62 */
63struct fs_parameter {
64 const char *key; /* Parameter name */
65 enum fs_value_type type:8; /* The type of value here */
66 union {
67 char *string;
68 void *blob;
69 struct filename *name;
70 struct file *file;
71 };
72 size_t size;
73 int dirfd;
74};
75
Al Viro3fbb8d52019-12-20 23:43:32 -050076struct p_log {
77 const char *prefix;
78 struct fc_log *log;
79};
80
David Howells31d921c2018-11-01 23:07:24 +000081/*
David Howells9bc61ab2018-11-04 03:19:03 -050082 * Filesystem context for holding the parameters used in the creation or
83 * reconfiguration of a superblock.
84 *
85 * Superblock creation fills in ->root whereas reconfiguration begins with this
86 * already set.
87 *
Mauro Carvalho Chehabcb1aaeb2019-06-07 15:54:32 -030088 * See Documentation/filesystems/mount_api.txt
David Howells9bc61ab2018-11-04 03:19:03 -050089 */
90struct fs_context {
Al Virof3a09c92018-12-23 18:55:56 -050091 const struct fs_context_operations *ops;
David Howells24dcb3d2018-11-01 23:33:31 +000092 struct mutex uapi_mutex; /* Userspace access mutex */
David Howells9bc61ab2018-11-04 03:19:03 -050093 struct file_system_type *fs_type;
94 void *fs_private; /* The filesystem's context */
David Howellsfe62c3a2019-03-27 14:15:16 +000095 void *sget_key;
David Howells9bc61ab2018-11-04 03:19:03 -050096 struct dentry *root; /* The root and superblock */
97 struct user_namespace *user_ns; /* The user namespace for this mount */
98 struct net *net_ns; /* The network namespace for this mount */
99 const struct cred *cred; /* The mounter's credentials */
Al Virocc3c0b52019-12-21 00:16:49 -0500100 struct p_log log; /* Logging buffer */
David Howells9bc61ab2018-11-04 03:19:03 -0500101 const char *source; /* The source name (eg. dev path) */
David Howells9bc61ab2018-11-04 03:19:03 -0500102 void *security; /* Linux S&M options */
Al Virocb50b342018-12-23 17:25:47 -0500103 void *s_fs_info; /* Proposed s_fs_info */
David Howells9bc61ab2018-11-04 03:19:03 -0500104 unsigned int sb_flags; /* Proposed superblock flags (SB_*) */
105 unsigned int sb_flags_mask; /* Superblock flags that were changed */
David Howellsc80fa7c2019-03-25 16:38:23 +0000106 unsigned int s_iflags; /* OR'd with sb->s_iflags */
David Howells846e5662018-11-01 23:07:24 +0000107 unsigned int lsm_flags; /* Information flags from the fs to the LSM */
David Howells9bc61ab2018-11-04 03:19:03 -0500108 enum fs_context_purpose purpose:8;
David Howells24dcb3d2018-11-01 23:33:31 +0000109 enum fs_context_phase phase:8; /* The phase the context is in */
David Howells9bc61ab2018-11-04 03:19:03 -0500110 bool need_free:1; /* Need to call ops->free() */
Al Virocb50b342018-12-23 17:25:47 -0500111 bool global:1; /* Goes into &init_user_ns */
David Howells9bc61ab2018-11-04 03:19:03 -0500112};
113
Al Virof3a09c92018-12-23 18:55:56 -0500114struct fs_context_operations {
115 void (*free)(struct fs_context *fc);
Al Viro0b520752018-12-23 16:02:47 -0500116 int (*dup)(struct fs_context *fc, struct fs_context *src_fc);
David Howells3e1aeb02018-11-01 23:07:25 +0000117 int (*parse_param)(struct fs_context *fc, struct fs_parameter *param);
Al Virof3a09c92018-12-23 18:55:56 -0500118 int (*parse_monolithic)(struct fs_context *fc, void *data);
119 int (*get_tree)(struct fs_context *fc);
120 int (*reconfigure)(struct fs_context *fc);
121};
122
David Howells9bc61ab2018-11-04 03:19:03 -0500123/*
124 * fs_context manipulation functions.
125 */
126extern struct fs_context *fs_context_for_mount(struct file_system_type *fs_type,
127 unsigned int sb_flags);
David Howells8d0347f2018-11-04 09:28:36 -0500128extern struct fs_context *fs_context_for_reconfigure(struct dentry *dentry,
129 unsigned int sb_flags,
130 unsigned int sb_flags_mask);
Al Viroe1a91582018-12-23 16:25:31 -0500131extern struct fs_context *fs_context_for_submount(struct file_system_type *fs_type,
132 struct dentry *reference);
David Howells9bc61ab2018-11-04 03:19:03 -0500133
Al Viro0b520752018-12-23 16:02:47 -0500134extern struct fs_context *vfs_dup_fs_context(struct fs_context *fc);
David Howells3e1aeb02018-11-01 23:07:25 +0000135extern int vfs_parse_fs_param(struct fs_context *fc, struct fs_parameter *param);
136extern int vfs_parse_fs_string(struct fs_context *fc, const char *key,
137 const char *value, size_t v_size);
138extern int generic_parse_monolithic(struct fs_context *fc, void *data);
David Howells9bc61ab2018-11-04 03:19:03 -0500139extern int vfs_get_tree(struct fs_context *fc);
140extern void put_fs_context(struct fs_context *fc);
141
Al Virocb50b342018-12-23 17:25:47 -0500142/*
Al Viro533770c2019-09-03 19:05:48 -0400143 * sget() wrappers to be called from the ->get_tree() op.
Al Virocb50b342018-12-23 17:25:47 -0500144 */
145enum vfs_get_super_keying {
146 vfs_get_single_super, /* Only one such superblock may exist */
David Howells43ce4c12019-03-21 09:22:36 +0000147 vfs_get_single_reconf_super, /* As above, but reconfigure if it exists */
Al Virocb50b342018-12-23 17:25:47 -0500148 vfs_get_keyed_super, /* Superblocks with different s_fs_info keys may exist */
149 vfs_get_independent_super, /* Multiple independent superblocks may exist */
150};
151extern int vfs_get_super(struct fs_context *fc,
152 enum vfs_get_super_keying keying,
153 int (*fill_super)(struct super_block *sb,
154 struct fs_context *fc));
Al Viro533770c2019-09-03 19:05:48 -0400155
Al Viro2ac295d2019-06-01 20:48:55 -0400156extern int get_tree_nodev(struct fs_context *fc,
157 int (*fill_super)(struct super_block *sb,
158 struct fs_context *fc));
Al Viroc23a0bb2019-05-22 21:23:39 -0400159extern int get_tree_single(struct fs_context *fc,
160 int (*fill_super)(struct super_block *sb,
161 struct fs_context *fc));
David Howells43ce4c12019-03-21 09:22:36 +0000162extern int get_tree_single_reconf(struct fs_context *fc,
163 int (*fill_super)(struct super_block *sb,
164 struct fs_context *fc));
Al Viro533770c2019-09-03 19:05:48 -0400165extern int get_tree_keyed(struct fs_context *fc,
166 int (*fill_super)(struct super_block *sb,
167 struct fs_context *fc),
168 void *key);
Al Virocb50b342018-12-23 17:25:47 -0500169
David Howellsfe62c3a2019-03-27 14:15:16 +0000170extern int get_tree_bdev(struct fs_context *fc,
171 int (*fill_super)(struct super_block *sb,
172 struct fs_context *fc));
173
David Howellse7582e162018-11-01 23:07:26 +0000174extern const struct file_operations fscontext_fops;
175
David Howells007ec262018-11-01 23:34:29 +0000176/*
177 * Mount error, warning and informational message logging. This structure is
178 * shareable between a mount and a subordinate mount.
179 */
180struct fc_log {
181 refcount_t usage;
182 u8 head; /* Insertion index in buffer[] */
183 u8 tail; /* Removal index in buffer[] */
184 u8 need_free; /* Mask of kfree'able items in buffer[] */
185 struct module *owner; /* Owner module for strings that don't then need freeing */
186 char *buffer[8];
187};
188
Al Viro9f09f642019-12-20 22:10:36 -0500189extern __attribute__((format(printf, 4, 5)))
190void logfc(struct fc_log *log, const char *prefix, char level, const char *fmt, ...);
David Howellsc6b82262018-11-01 23:07:23 +0000191
Al Virocc3c0b52019-12-21 00:16:49 -0500192#define __logfc(fc, l, fmt, ...) logfc((fc)->log.log, NULL, \
Al Viro7f5d3812019-12-20 23:52:55 -0500193 l, fmt, ## __VA_ARGS__)
Al Viro3fbb8d52019-12-20 23:43:32 -0500194#define __plog(p, l, fmt, ...) logfc((p)->log, (p)->prefix, \
195 l, fmt, ## __VA_ARGS__)
David Howellsc6b82262018-11-01 23:07:23 +0000196/**
197 * infof - Store supplementary informational message
198 * @fc: The context in which to log the informational message
199 * @fmt: The format string
200 *
201 * Store the supplementary informational message for the process if the process
202 * has enabled the facility.
203 */
Al Viro9f09f642019-12-20 22:10:36 -0500204#define infof(fc, fmt, ...) __logfc(fc, 'i', fmt, ## __VA_ARGS__)
Al Viro3fbb8d52019-12-20 23:43:32 -0500205#define info_plog(p, fmt, ...) __plog(p, 'i', fmt, ## __VA_ARGS__)
Al Viroa3ff9372019-12-21 21:30:50 -0500206#define infofc(p, fmt, ...) __plog((&(fc)->log), 'i', fmt, ## __VA_ARGS__)
David Howellsc6b82262018-11-01 23:07:23 +0000207
208/**
209 * warnf - Store supplementary warning message
210 * @fc: The context in which to log the error message
211 * @fmt: The format string
212 *
213 * Store the supplementary warning message for the process if the process has
214 * enabled the facility.
215 */
Al Viro9f09f642019-12-20 22:10:36 -0500216#define warnf(fc, fmt, ...) __logfc(fc, 'w', fmt, ## __VA_ARGS__)
Al Viro3fbb8d52019-12-20 23:43:32 -0500217#define warn_plog(p, fmt, ...) __plog(p, 'w', fmt, ## __VA_ARGS__)
Al Viroa3ff9372019-12-21 21:30:50 -0500218#define warnfc(fc, fmt, ...) __plog((&(fc)->log), 'w', fmt, ## __VA_ARGS__)
David Howellsc6b82262018-11-01 23:07:23 +0000219
220/**
221 * errorf - Store supplementary error message
222 * @fc: The context in which to log the error message
223 * @fmt: The format string
224 *
225 * Store the supplementary error message for the process if the process has
226 * enabled the facility.
227 */
Al Viro9f09f642019-12-20 22:10:36 -0500228#define errorf(fc, fmt, ...) __logfc(fc, 'e', fmt, ## __VA_ARGS__)
Al Viro3fbb8d52019-12-20 23:43:32 -0500229#define error_plog(p, fmt, ...) __plog(p, 'e', fmt, ## __VA_ARGS__)
Al Viroa3ff9372019-12-21 21:30:50 -0500230#define errorfc(fc, fmt, ...) __plog((&(fc)->log), 'e', fmt, ## __VA_ARGS__)
David Howellsc6b82262018-11-01 23:07:23 +0000231
232/**
233 * invalf - Store supplementary invalid argument error message
234 * @fc: The context in which to log the error message
235 * @fmt: The format string
236 *
237 * Store the supplementary error message for the process if the process has
238 * enabled the facility and return -EINVAL.
239 */
Al Viro9f09f642019-12-20 22:10:36 -0500240#define invalf(fc, fmt, ...) (errorf(fc, fmt, ## __VA_ARGS__), -EINVAL)
Al Viro3fbb8d52019-12-20 23:43:32 -0500241#define inval_plog(p, fmt, ...) (error_plog(p, fmt, ## __VA_ARGS__), -EINVAL)
Al Viroa3ff9372019-12-21 21:30:50 -0500242#define invalfc(fc, fmt, ...) (errorfc(fc, fmt, ## __VA_ARGS__), -EINVAL)
David Howellsc6b82262018-11-01 23:07:23 +0000243
David Howells9bc61ab2018-11-04 03:19:03 -0500244#endif /* _LINUX_FS_CONTEXT_H */