2019-05-19 20:08:20 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
#include <linux/ceph/ceph_debug.h>
|
2009-10-07 02:31:07 +08:00
|
|
|
|
|
|
|
#include <linux/backing-dev.h>
|
2010-07-01 12:34:01 +08:00
|
|
|
#include <linux/ctype.h>
|
2009-10-07 02:31:07 +08:00
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/inet.h>
|
|
|
|
#include <linux/in6.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/mount.h>
|
2019-03-26 00:38:32 +08:00
|
|
|
#include <linux/fs_context.h>
|
|
|
|
#include <linux/fs_parser.h>
|
2009-10-07 02:31:07 +08:00
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/seq_file.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2009-10-07 02:31:07 +08:00
|
|
|
#include <linux/statfs.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
|
|
|
|
#include "super.h"
|
2010-04-07 06:14:15 +08:00
|
|
|
#include "mds_client.h"
|
2013-08-22 05:29:54 +08:00
|
|
|
#include "cache.h"
|
2020-07-27 22:16:09 +08:00
|
|
|
#include "crypto.h"
|
2010-04-07 06:14:15 +08:00
|
|
|
|
2012-07-31 07:23:22 +08:00
|
|
|
#include <linux/ceph/ceph_features.h>
|
2010-04-07 06:14:15 +08:00
|
|
|
#include <linux/ceph/decode.h>
|
|
|
|
#include <linux/ceph/mon_client.h>
|
|
|
|
#include <linux/ceph/auth.h>
|
|
|
|
#include <linux/ceph/debugfs.h>
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2022-01-11 07:28:33 +08:00
|
|
|
#include <uapi/linux/magic.h>
|
|
|
|
|
2020-07-16 22:05:57 +08:00
|
|
|
static DEFINE_SPINLOCK(ceph_fsc_lock);
|
|
|
|
static LIST_HEAD(ceph_fsc_list);
|
|
|
|
|
2009-10-07 02:31:07 +08:00
|
|
|
/*
|
|
|
|
* Ceph superblock operations
|
|
|
|
*
|
|
|
|
* Handle the basics of mounting, unmounting.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* super ops
|
|
|
|
*/
|
|
|
|
static void ceph_put_super(struct super_block *s)
|
|
|
|
{
|
2023-06-12 10:50:38 +08:00
|
|
|
struct ceph_fs_client *fsc = ceph_sb_to_fs_client(s);
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(fsc->client, "begin\n");
|
2020-09-08 21:47:40 +08:00
|
|
|
ceph_fscrypt_free_dummy_policy(fsc);
|
2010-04-07 06:14:15 +08:00
|
|
|
ceph_mdsc_close_sessions(fsc->mdsc);
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(fsc->client, "done\n");
|
2009-10-07 02:31:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ceph_statfs(struct dentry *dentry, struct kstatfs *buf)
|
|
|
|
{
|
2023-06-12 10:50:38 +08:00
|
|
|
struct ceph_fs_client *fsc = ceph_inode_to_fs_client(d_inode(dentry));
|
2018-05-29 01:37:40 +08:00
|
|
|
struct ceph_mon_client *monc = &fsc->client->monc;
|
2009-10-07 02:31:07 +08:00
|
|
|
struct ceph_statfs st;
|
2021-10-05 23:12:58 +08:00
|
|
|
int i, err;
|
2017-08-16 22:19:27 +08:00
|
|
|
u64 data_pool;
|
|
|
|
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(fsc->client, "begin\n");
|
2017-08-16 22:19:27 +08:00
|
|
|
if (fsc->mdsc->mdsmap->m_num_data_pg_pools == 1) {
|
|
|
|
data_pool = fsc->mdsc->mdsmap->m_data_pg_pools[0];
|
|
|
|
} else {
|
|
|
|
data_pool = CEPH_NOPOOL;
|
|
|
|
}
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2018-05-29 01:37:40 +08:00
|
|
|
err = ceph_monc_do_statfs(monc, data_pool, &st);
|
2009-10-07 02:31:07 +08:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
/* fill in kstatfs */
|
|
|
|
buf->f_type = CEPH_SUPER_MAGIC; /* ?? */
|
|
|
|
|
|
|
|
/*
|
2022-06-24 16:43:49 +08:00
|
|
|
* Express utilization in terms of large blocks to avoid
|
2009-10-07 02:31:07 +08:00
|
|
|
* overflow on 32-bit machines.
|
|
|
|
*/
|
2013-02-23 07:31:00 +08:00
|
|
|
buf->f_frsize = 1 << CEPH_BLOCK_SHIFT;
|
2018-01-31 18:53:13 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* By default use root quota for stats; fallback to overall filesystem
|
|
|
|
* usage if using 'noquotadf' mount option or if the root dir doesn't
|
|
|
|
* have max_bytes quota set.
|
|
|
|
*/
|
|
|
|
if (ceph_test_mount_opt(fsc, NOQUOTADF) ||
|
|
|
|
!ceph_quota_update_statfs(fsc, buf)) {
|
|
|
|
buf->f_blocks = le64_to_cpu(st.kb) >> (CEPH_BLOCK_SHIFT-10);
|
|
|
|
buf->f_bfree = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
|
|
|
|
buf->f_bavail = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
|
|
|
|
}
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2022-06-24 16:43:49 +08:00
|
|
|
/*
|
|
|
|
* NOTE: for the time being, we make bsize == frsize to humor
|
|
|
|
* not-yet-ancient versions of glibc that are broken.
|
|
|
|
* Someday, we will probably want to report a real block
|
|
|
|
* size... whatever that may mean for a network file system!
|
|
|
|
*/
|
|
|
|
buf->f_bsize = buf->f_frsize;
|
|
|
|
|
2009-10-07 02:31:07 +08:00
|
|
|
buf->f_files = le64_to_cpu(st.num_objects);
|
|
|
|
buf->f_ffree = -1;
|
2010-06-02 03:51:12 +08:00
|
|
|
buf->f_namelen = NAME_MAX;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2017-10-23 22:58:40 +08:00
|
|
|
/* Must convert the fsid, for consistent values across arches */
|
2021-10-05 23:12:58 +08:00
|
|
|
buf->f_fsid.val[0] = 0;
|
2018-05-29 01:37:40 +08:00
|
|
|
mutex_lock(&monc->mutex);
|
2021-10-05 23:12:58 +08:00
|
|
|
for (i = 0 ; i < sizeof(monc->monmap->fsid) / sizeof(__le32) ; ++i)
|
|
|
|
buf->f_fsid.val[0] ^= le32_to_cpu(((__le32 *)&monc->monmap->fsid)[i]);
|
2018-05-29 01:37:40 +08:00
|
|
|
mutex_unlock(&monc->mutex);
|
|
|
|
|
2021-10-05 23:12:58 +08:00
|
|
|
/* fold the fs_cluster_id into the upper bits */
|
|
|
|
buf->f_fsid.val[1] = monc->fs_cluster_id;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(fsc->client, "done\n");
|
2009-10-07 02:31:07 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-07-31 00:38:13 +08:00
|
|
|
static int ceph_sync_fs(struct super_block *sb, int wait)
|
2009-10-07 02:31:07 +08:00
|
|
|
{
|
2023-06-12 10:50:38 +08:00
|
|
|
struct ceph_fs_client *fsc = ceph_sb_to_fs_client(sb);
|
2023-06-12 09:04:07 +08:00
|
|
|
struct ceph_client *cl = fsc->client;
|
2010-07-31 00:38:13 +08:00
|
|
|
|
|
|
|
if (!wait) {
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "(non-blocking)\n");
|
2010-04-07 06:14:15 +08:00
|
|
|
ceph_flush_dirty_caps(fsc->mdsc);
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "(non-blocking) done\n");
|
2010-07-31 00:38:13 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "(blocking)\n");
|
2010-04-07 06:14:15 +08:00
|
|
|
ceph_osdc_sync(&fsc->client->osdc);
|
|
|
|
ceph_mdsc_sync(fsc->mdsc);
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "(blocking) done\n");
|
2009-10-07 02:31:07 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mount options
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
Opt_wsize,
|
|
|
|
Opt_rsize,
|
2011-08-04 23:03:44 +08:00
|
|
|
Opt_rasize,
|
2009-10-07 02:31:07 +08:00
|
|
|
Opt_caps_wanted_delay_min,
|
|
|
|
Opt_caps_wanted_delay_max,
|
2019-02-01 14:57:15 +08:00
|
|
|
Opt_caps_max,
|
2009-10-07 02:31:07 +08:00
|
|
|
Opt_readdir_max_entries,
|
2010-05-15 04:06:30 +08:00
|
|
|
Opt_readdir_max_bytes,
|
2009-12-19 05:51:57 +08:00
|
|
|
Opt_congestion_kb,
|
2009-10-07 02:31:07 +08:00
|
|
|
/* int args above */
|
|
|
|
Opt_snapdirname,
|
2016-07-08 11:25:38 +08:00
|
|
|
Opt_mds_namespace,
|
2019-07-25 20:16:47 +08:00
|
|
|
Opt_recover_session,
|
2019-03-26 00:38:32 +08:00
|
|
|
Opt_source,
|
2021-07-14 18:05:52 +08:00
|
|
|
Opt_mon_addr,
|
2020-09-08 21:47:40 +08:00
|
|
|
Opt_test_dummy_encryption,
|
2009-10-07 02:31:07 +08:00
|
|
|
/* string args above */
|
|
|
|
Opt_dirstat,
|
|
|
|
Opt_rbytes,
|
2012-02-15 21:43:54 +08:00
|
|
|
Opt_asyncreaddir,
|
2012-01-11 01:12:55 +08:00
|
|
|
Opt_dcache,
|
2011-01-22 08:44:03 +08:00
|
|
|
Opt_ino32,
|
2013-08-22 05:29:54 +08:00
|
|
|
Opt_fscache,
|
2015-04-27 15:33:28 +08:00
|
|
|
Opt_poolperm,
|
2016-11-10 16:02:06 +08:00
|
|
|
Opt_require_active_mds,
|
2014-02-17 02:05:29 +08:00
|
|
|
Opt_acl,
|
2018-01-31 18:53:13 +08:00
|
|
|
Opt_quotadf,
|
2018-10-15 23:46:00 +08:00
|
|
|
Opt_copyfrom,
|
ceph: perform asynchronous unlink if we have sufficient caps
The MDS is getting a new lock-caching facility that will allow it
to cache the necessary locks to allow asynchronous directory operations.
Since the CEPH_CAP_FILE_* caps are currently unused on directories,
we can repurpose those bits for this purpose.
When performing an unlink, if we have Fx on the parent directory,
and CEPH_CAP_DIR_UNLINK (aka Fr), and we know that the dentry being
removed is the primary link, then then we can fire off an unlink
request immediately and don't need to wait on reply before returning.
In that situation, just fix up the dcache and link count and return
immediately after issuing the call to the MDS. This does mean that we
need to hold an extra reference to the inode being unlinked, and extra
references to the caps to avoid races. Those references are put and
error handling is done in the r_callback routine.
If the operation ends up failing, then set a writeback error on the
directory inode, and the inode itself that can be fetched later by
an fsync on the dir.
The behavior of dir caps is slightly different from caps on normal
files. Because these are just considered an optimization, if the
session is reconnected, we will not automatically reclaim them. They
are instead considered lost until we do another synchronous op in the
parent directory.
Async dirops are enabled via the "nowsync" mount option, which is
patterned after the xfs "wsync" mount option. For now, the default
is "wsync", but eventually we may flip that.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: "Yan, Zheng" <zyan@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
2019-04-03 03:35:56 +08:00
|
|
|
Opt_wsync,
|
2021-12-01 03:12:13 +08:00
|
|
|
Opt_pagecache,
|
2022-02-26 19:33:03 +08:00
|
|
|
Opt_sparseread,
|
2009-10-07 02:31:07 +08:00
|
|
|
};
|
|
|
|
|
2019-03-26 00:38:32 +08:00
|
|
|
enum ceph_recover_session_mode {
|
|
|
|
ceph_recover_session_no,
|
|
|
|
ceph_recover_session_clean
|
|
|
|
};
|
|
|
|
|
2019-12-17 02:33:32 +08:00
|
|
|
static const struct constant_table ceph_param_recover[] = {
|
2019-09-07 10:12:08 +08:00
|
|
|
{ "no", ceph_recover_session_no },
|
|
|
|
{ "clean", ceph_recover_session_clean },
|
2019-03-26 00:38:32 +08:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2019-09-07 19:23:15 +08:00
|
|
|
static const struct fs_parameter_spec ceph_mount_parameters[] = {
|
2019-03-26 00:38:32 +08:00
|
|
|
fsparam_flag_no ("acl", Opt_acl),
|
|
|
|
fsparam_flag_no ("asyncreaddir", Opt_asyncreaddir),
|
2019-09-10 03:58:55 +08:00
|
|
|
fsparam_s32 ("caps_max", Opt_caps_max),
|
2019-03-26 00:38:32 +08:00
|
|
|
fsparam_u32 ("caps_wanted_delay_max", Opt_caps_wanted_delay_max),
|
|
|
|
fsparam_u32 ("caps_wanted_delay_min", Opt_caps_wanted_delay_min),
|
2019-09-10 03:58:55 +08:00
|
|
|
fsparam_u32 ("write_congestion_kb", Opt_congestion_kb),
|
2019-03-26 00:38:32 +08:00
|
|
|
fsparam_flag_no ("copyfrom", Opt_copyfrom),
|
|
|
|
fsparam_flag_no ("dcache", Opt_dcache),
|
|
|
|
fsparam_flag_no ("dirstat", Opt_dirstat),
|
2019-12-18 09:03:59 +08:00
|
|
|
fsparam_flag_no ("fsc", Opt_fscache), // fsc|nofsc
|
|
|
|
fsparam_string ("fsc", Opt_fscache), // fsc=...
|
2019-03-26 00:38:32 +08:00
|
|
|
fsparam_flag_no ("ino32", Opt_ino32),
|
|
|
|
fsparam_string ("mds_namespace", Opt_mds_namespace),
|
2020-09-08 21:47:40 +08:00
|
|
|
fsparam_string ("mon_addr", Opt_mon_addr),
|
2019-03-26 00:38:32 +08:00
|
|
|
fsparam_flag_no ("poolperm", Opt_poolperm),
|
|
|
|
fsparam_flag_no ("quotadf", Opt_quotadf),
|
|
|
|
fsparam_u32 ("rasize", Opt_rasize),
|
|
|
|
fsparam_flag_no ("rbytes", Opt_rbytes),
|
2019-09-10 03:58:55 +08:00
|
|
|
fsparam_u32 ("readdir_max_bytes", Opt_readdir_max_bytes),
|
|
|
|
fsparam_u32 ("readdir_max_entries", Opt_readdir_max_entries),
|
2019-09-07 10:12:08 +08:00
|
|
|
fsparam_enum ("recover_session", Opt_recover_session, ceph_param_recover),
|
2019-03-26 00:38:32 +08:00
|
|
|
fsparam_flag_no ("require_active_mds", Opt_require_active_mds),
|
|
|
|
fsparam_u32 ("rsize", Opt_rsize),
|
|
|
|
fsparam_string ("snapdirname", Opt_snapdirname),
|
|
|
|
fsparam_string ("source", Opt_source),
|
2020-09-08 21:47:40 +08:00
|
|
|
fsparam_flag ("test_dummy_encryption", Opt_test_dummy_encryption),
|
|
|
|
fsparam_string ("test_dummy_encryption", Opt_test_dummy_encryption),
|
2019-03-26 00:38:32 +08:00
|
|
|
fsparam_u32 ("wsize", Opt_wsize),
|
ceph: perform asynchronous unlink if we have sufficient caps
The MDS is getting a new lock-caching facility that will allow it
to cache the necessary locks to allow asynchronous directory operations.
Since the CEPH_CAP_FILE_* caps are currently unused on directories,
we can repurpose those bits for this purpose.
When performing an unlink, if we have Fx on the parent directory,
and CEPH_CAP_DIR_UNLINK (aka Fr), and we know that the dentry being
removed is the primary link, then then we can fire off an unlink
request immediately and don't need to wait on reply before returning.
In that situation, just fix up the dcache and link count and return
immediately after issuing the call to the MDS. This does mean that we
need to hold an extra reference to the inode being unlinked, and extra
references to the caps to avoid races. Those references are put and
error handling is done in the r_callback routine.
If the operation ends up failing, then set a writeback error on the
directory inode, and the inode itself that can be fetched later by
an fsync on the dir.
The behavior of dir caps is slightly different from caps on normal
files. Because these are just considered an optimization, if the
session is reconnected, we will not automatically reclaim them. They
are instead considered lost until we do another synchronous op in the
parent directory.
Async dirops are enabled via the "nowsync" mount option, which is
patterned after the xfs "wsync" mount option. For now, the default
is "wsync", but eventually we may flip that.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: "Yan, Zheng" <zyan@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
2019-04-03 03:35:56 +08:00
|
|
|
fsparam_flag_no ("wsync", Opt_wsync),
|
2021-12-01 03:12:13 +08:00
|
|
|
fsparam_flag_no ("pagecache", Opt_pagecache),
|
2022-02-26 19:33:03 +08:00
|
|
|
fsparam_flag_no ("sparseread", Opt_sparseread),
|
2019-03-26 00:38:32 +08:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ceph_parse_opts_ctx {
|
|
|
|
struct ceph_options *copts;
|
|
|
|
struct ceph_mount_options *opts;
|
|
|
|
};
|
|
|
|
|
2020-02-11 05:51:08 +08:00
|
|
|
/*
|
|
|
|
* Remove adjacent slashes and then the trailing slash, unless it is
|
|
|
|
* the only remaining character.
|
|
|
|
*
|
|
|
|
* E.g. "//dir1////dir2///" --> "/dir1/dir2", "///" --> "/".
|
|
|
|
*/
|
|
|
|
static void canonicalize_path(char *path)
|
|
|
|
{
|
|
|
|
int i, j = 0;
|
|
|
|
|
|
|
|
for (i = 0; path[i] != '\0'; i++) {
|
|
|
|
if (path[i] != '/' || j < 1 || path[j - 1] != '/')
|
|
|
|
path[j++] = path[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (j > 1 && path[j - 1] == '/')
|
|
|
|
j--;
|
|
|
|
path[j] = '\0';
|
|
|
|
}
|
|
|
|
|
2019-03-26 00:38:32 +08:00
|
|
|
/*
|
2021-07-14 18:05:52 +08:00
|
|
|
* Check if the mds namespace in ceph_mount_options matches
|
|
|
|
* the passed in namespace string. First time match (when
|
|
|
|
* ->mds_namespace is NULL) is treated specially, since
|
|
|
|
* ->mds_namespace needs to be initialized by the caller.
|
|
|
|
*/
|
|
|
|
static int namespace_equals(struct ceph_mount_options *fsopt,
|
|
|
|
const char *namespace, size_t len)
|
|
|
|
{
|
|
|
|
return !(fsopt->mds_namespace &&
|
|
|
|
(strlen(fsopt->mds_namespace) != len ||
|
|
|
|
strncmp(fsopt->mds_namespace, namespace, len)));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ceph_parse_old_source(const char *dev_name, const char *dev_name_end,
|
|
|
|
struct fs_context *fc)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
struct ceph_parse_opts_ctx *pctx = fc->fs_private;
|
|
|
|
struct ceph_mount_options *fsopt = pctx->opts;
|
|
|
|
|
|
|
|
if (*dev_name_end != ':')
|
|
|
|
return invalfc(fc, "separator ':' missing in source");
|
|
|
|
|
|
|
|
r = ceph_parse_mon_ips(dev_name, dev_name_end - dev_name,
|
|
|
|
pctx->copts, fc->log.log, ',');
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
fsopt->new_dev_syntax = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ceph_parse_new_source(const char *dev_name, const char *dev_name_end,
|
|
|
|
struct fs_context *fc)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
struct ceph_fsid fsid;
|
|
|
|
struct ceph_parse_opts_ctx *pctx = fc->fs_private;
|
|
|
|
struct ceph_mount_options *fsopt = pctx->opts;
|
|
|
|
char *fsid_start, *fs_name_start;
|
|
|
|
|
|
|
|
if (*dev_name_end != '=') {
|
|
|
|
dout("separator '=' missing in source");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
fsid_start = strchr(dev_name, '@');
|
|
|
|
if (!fsid_start)
|
|
|
|
return invalfc(fc, "missing cluster fsid");
|
|
|
|
++fsid_start; /* start of cluster fsid */
|
|
|
|
|
|
|
|
fs_name_start = strchr(fsid_start, '.');
|
|
|
|
if (!fs_name_start)
|
|
|
|
return invalfc(fc, "missing file system name");
|
|
|
|
|
|
|
|
if (ceph_parse_fsid(fsid_start, &fsid))
|
|
|
|
return invalfc(fc, "Invalid FSID");
|
|
|
|
|
|
|
|
++fs_name_start; /* start of file system name */
|
|
|
|
len = dev_name_end - fs_name_start;
|
|
|
|
|
|
|
|
if (!namespace_equals(fsopt, fs_name_start, len))
|
|
|
|
return invalfc(fc, "Mismatching mds_namespace");
|
|
|
|
kfree(fsopt->mds_namespace);
|
|
|
|
fsopt->mds_namespace = kstrndup(fs_name_start, len, GFP_KERNEL);
|
|
|
|
if (!fsopt->mds_namespace)
|
|
|
|
return -ENOMEM;
|
|
|
|
dout("file system (mds namespace) '%s'\n", fsopt->mds_namespace);
|
|
|
|
|
|
|
|
fsopt->new_dev_syntax = true;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse the source parameter for new device format. Distinguish the device
|
|
|
|
* spec from the path. Try parsing new device format and fallback to old
|
|
|
|
* format if needed.
|
|
|
|
*
|
|
|
|
* New device syntax will looks like:
|
|
|
|
* <device_spec>=/<path>
|
|
|
|
* where
|
|
|
|
* <device_spec> is name@fsid.fsname
|
|
|
|
* <path> is optional, but if present must begin with '/'
|
|
|
|
* (monitor addresses are passed via mount option)
|
2019-03-26 00:38:32 +08:00
|
|
|
*
|
2021-07-14 18:05:52 +08:00
|
|
|
* Old device syntax is:
|
2019-03-26 00:38:32 +08:00
|
|
|
* <server_spec>[,<server_spec>...]:[<path>]
|
|
|
|
* where
|
|
|
|
* <server_spec> is <ip>[:<port>]
|
|
|
|
* <path> is optional, but if present must begin with '/'
|
|
|
|
*/
|
|
|
|
static int ceph_parse_source(struct fs_parameter *param, struct fs_context *fc)
|
2010-07-01 12:34:01 +08:00
|
|
|
{
|
2019-03-26 00:38:32 +08:00
|
|
|
struct ceph_parse_opts_ctx *pctx = fc->fs_private;
|
|
|
|
struct ceph_mount_options *fsopt = pctx->opts;
|
|
|
|
char *dev_name = param->string, *dev_name_end;
|
|
|
|
int ret;
|
2010-04-07 06:14:15 +08:00
|
|
|
|
2023-06-12 09:04:07 +08:00
|
|
|
dout("'%s'\n", dev_name);
|
2019-03-26 00:38:32 +08:00
|
|
|
if (!dev_name || !*dev_name)
|
2019-12-22 10:31:52 +08:00
|
|
|
return invalfc(fc, "Empty source");
|
2010-04-07 06:14:15 +08:00
|
|
|
|
2019-03-26 00:38:32 +08:00
|
|
|
dev_name_end = strchr(dev_name, '/');
|
|
|
|
if (dev_name_end) {
|
2019-12-20 22:34:04 +08:00
|
|
|
/*
|
|
|
|
* The server_path will include the whole chars from userland
|
|
|
|
* including the leading '/'.
|
|
|
|
*/
|
2020-02-11 05:51:08 +08:00
|
|
|
kfree(fsopt->server_path);
|
2019-12-20 22:34:04 +08:00
|
|
|
fsopt->server_path = kstrdup(dev_name_end, GFP_KERNEL);
|
|
|
|
if (!fsopt->server_path)
|
|
|
|
return -ENOMEM;
|
2020-02-11 05:51:08 +08:00
|
|
|
|
|
|
|
canonicalize_path(fsopt->server_path);
|
2010-04-07 06:14:15 +08:00
|
|
|
} else {
|
2019-03-26 00:38:32 +08:00
|
|
|
dev_name_end = dev_name + strlen(dev_name);
|
2010-07-01 12:34:01 +08:00
|
|
|
}
|
|
|
|
|
2021-07-14 18:05:52 +08:00
|
|
|
dev_name_end--; /* back up to separator */
|
|
|
|
if (dev_name_end < dev_name)
|
|
|
|
return invalfc(fc, "Path missing in source");
|
2019-03-26 00:38:32 +08:00
|
|
|
|
|
|
|
dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
|
|
|
|
if (fsopt->server_path)
|
|
|
|
dout("server path '%s'\n", fsopt->server_path);
|
|
|
|
|
2021-07-14 18:05:52 +08:00
|
|
|
dout("trying new device syntax");
|
|
|
|
ret = ceph_parse_new_source(dev_name, dev_name_end, fc);
|
|
|
|
if (ret) {
|
|
|
|
if (ret != -EINVAL)
|
|
|
|
return ret;
|
|
|
|
dout("trying old device syntax");
|
|
|
|
ret = ceph_parse_old_source(dev_name, dev_name_end, fc);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
2019-03-26 00:38:32 +08:00
|
|
|
|
|
|
|
fc->source = param->string;
|
|
|
|
param->string = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-07-14 18:05:52 +08:00
|
|
|
static int ceph_parse_mon_addr(struct fs_parameter *param,
|
|
|
|
struct fs_context *fc)
|
|
|
|
{
|
|
|
|
struct ceph_parse_opts_ctx *pctx = fc->fs_private;
|
|
|
|
struct ceph_mount_options *fsopt = pctx->opts;
|
|
|
|
|
|
|
|
kfree(fsopt->mon_addr);
|
|
|
|
fsopt->mon_addr = param->string;
|
|
|
|
param->string = NULL;
|
|
|
|
|
|
|
|
return ceph_parse_mon_ips(fsopt->mon_addr, strlen(fsopt->mon_addr),
|
|
|
|
pctx->copts, fc->log.log, '/');
|
|
|
|
}
|
|
|
|
|
2019-03-26 00:38:32 +08:00
|
|
|
static int ceph_parse_mount_param(struct fs_context *fc,
|
|
|
|
struct fs_parameter *param)
|
|
|
|
{
|
|
|
|
struct ceph_parse_opts_ctx *pctx = fc->fs_private;
|
|
|
|
struct ceph_mount_options *fsopt = pctx->opts;
|
|
|
|
struct fs_parse_result result;
|
|
|
|
unsigned int mode;
|
|
|
|
int token, ret;
|
|
|
|
|
2019-12-21 13:16:49 +08:00
|
|
|
ret = ceph_parse_param(param, pctx->copts, fc->log.log);
|
2019-03-26 00:38:32 +08:00
|
|
|
if (ret != -ENOPARAM)
|
|
|
|
return ret;
|
|
|
|
|
2019-09-07 19:23:15 +08:00
|
|
|
token = fs_parse(fc, ceph_mount_parameters, param, &result);
|
2023-06-12 09:04:07 +08:00
|
|
|
dout("%s: fs_parse '%s' token %d\n",__func__, param->key, token);
|
2019-03-26 00:38:32 +08:00
|
|
|
if (token < 0)
|
|
|
|
return token;
|
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
switch (token) {
|
|
|
|
case Opt_snapdirname:
|
|
|
|
kfree(fsopt->snapdir_name);
|
2019-03-26 00:38:32 +08:00
|
|
|
fsopt->snapdir_name = param->string;
|
|
|
|
param->string = NULL;
|
2010-04-07 06:14:15 +08:00
|
|
|
break;
|
2016-03-30 17:18:34 +08:00
|
|
|
case Opt_mds_namespace:
|
2021-07-14 18:05:52 +08:00
|
|
|
if (!namespace_equals(fsopt, param->string, strlen(param->string)))
|
|
|
|
return invalfc(fc, "Mismatching mds_namespace");
|
2018-02-06 08:25:55 +08:00
|
|
|
kfree(fsopt->mds_namespace);
|
2019-03-26 00:38:32 +08:00
|
|
|
fsopt->mds_namespace = param->string;
|
|
|
|
param->string = NULL;
|
2016-03-30 17:18:34 +08:00
|
|
|
break;
|
2019-07-25 20:16:47 +08:00
|
|
|
case Opt_recover_session:
|
2019-03-26 00:38:32 +08:00
|
|
|
mode = result.uint_32;
|
|
|
|
if (mode == ceph_recover_session_no)
|
2019-07-25 20:16:47 +08:00
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_CLEANRECOVER;
|
2019-03-26 00:38:32 +08:00
|
|
|
else if (mode == ceph_recover_session_clean)
|
2019-07-25 20:16:47 +08:00
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_CLEANRECOVER;
|
2019-03-26 00:38:32 +08:00
|
|
|
else
|
|
|
|
BUG();
|
2017-06-27 11:57:56 +08:00
|
|
|
break;
|
2019-03-26 00:38:32 +08:00
|
|
|
case Opt_source:
|
|
|
|
if (fc->source)
|
2019-12-22 10:31:52 +08:00
|
|
|
return invalfc(fc, "Multiple sources specified");
|
2019-03-26 00:38:32 +08:00
|
|
|
return ceph_parse_source(param, fc);
|
2021-07-14 18:05:52 +08:00
|
|
|
case Opt_mon_addr:
|
|
|
|
return ceph_parse_mon_addr(param, fc);
|
2010-04-07 06:14:15 +08:00
|
|
|
case Opt_wsize:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (result.uint_32 < PAGE_SIZE ||
|
|
|
|
result.uint_32 > CEPH_MAX_WRITE_SIZE)
|
|
|
|
goto out_of_range;
|
|
|
|
fsopt->wsize = ALIGN(result.uint_32, PAGE_SIZE);
|
2010-04-07 06:14:15 +08:00
|
|
|
break;
|
|
|
|
case Opt_rsize:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (result.uint_32 < PAGE_SIZE ||
|
|
|
|
result.uint_32 > CEPH_MAX_READ_SIZE)
|
|
|
|
goto out_of_range;
|
|
|
|
fsopt->rsize = ALIGN(result.uint_32, PAGE_SIZE);
|
2010-04-07 06:14:15 +08:00
|
|
|
break;
|
2011-08-04 23:03:44 +08:00
|
|
|
case Opt_rasize:
|
2019-03-26 00:38:32 +08:00
|
|
|
fsopt->rasize = ALIGN(result.uint_32, PAGE_SIZE);
|
2011-08-04 23:03:44 +08:00
|
|
|
break;
|
2010-04-07 06:14:15 +08:00
|
|
|
case Opt_caps_wanted_delay_min:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (result.uint_32 < 1)
|
|
|
|
goto out_of_range;
|
|
|
|
fsopt->caps_wanted_delay_min = result.uint_32;
|
2010-04-07 06:14:15 +08:00
|
|
|
break;
|
|
|
|
case Opt_caps_wanted_delay_max:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (result.uint_32 < 1)
|
|
|
|
goto out_of_range;
|
|
|
|
fsopt->caps_wanted_delay_max = result.uint_32;
|
2010-04-07 06:14:15 +08:00
|
|
|
break;
|
2019-02-01 14:57:15 +08:00
|
|
|
case Opt_caps_max:
|
2019-09-10 03:58:55 +08:00
|
|
|
if (result.int_32 < 0)
|
|
|
|
goto out_of_range;
|
|
|
|
fsopt->caps_max = result.int_32;
|
2019-02-01 14:57:15 +08:00
|
|
|
break;
|
2010-04-07 06:14:15 +08:00
|
|
|
case Opt_readdir_max_entries:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (result.uint_32 < 1)
|
|
|
|
goto out_of_range;
|
|
|
|
fsopt->max_readdir = result.uint_32;
|
2010-04-07 06:14:15 +08:00
|
|
|
break;
|
|
|
|
case Opt_readdir_max_bytes:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (result.uint_32 < PAGE_SIZE && result.uint_32 != 0)
|
|
|
|
goto out_of_range;
|
|
|
|
fsopt->max_readdir_bytes = result.uint_32;
|
2010-04-07 06:14:15 +08:00
|
|
|
break;
|
|
|
|
case Opt_congestion_kb:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (result.uint_32 < 1024) /* at least 1M */
|
|
|
|
goto out_of_range;
|
|
|
|
fsopt->congestion_kb = result.uint_32;
|
2010-04-07 06:14:15 +08:00
|
|
|
break;
|
|
|
|
case Opt_dirstat:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (!result.negated)
|
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT;
|
|
|
|
else
|
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT;
|
2010-04-07 06:14:15 +08:00
|
|
|
break;
|
|
|
|
case Opt_rbytes:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (!result.negated)
|
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_RBYTES;
|
|
|
|
else
|
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES;
|
2010-04-07 06:14:15 +08:00
|
|
|
break;
|
2012-02-15 21:43:54 +08:00
|
|
|
case Opt_asyncreaddir:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (!result.negated)
|
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR;
|
|
|
|
else
|
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR;
|
2010-04-07 06:14:15 +08:00
|
|
|
break;
|
2012-01-11 01:12:55 +08:00
|
|
|
case Opt_dcache:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (!result.negated)
|
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_DCACHE;
|
|
|
|
else
|
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE;
|
2012-01-11 01:12:55 +08:00
|
|
|
break;
|
2011-01-22 08:44:03 +08:00
|
|
|
case Opt_ino32:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (!result.negated)
|
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_INO32;
|
|
|
|
else
|
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_INO32;
|
2012-02-15 21:43:54 +08:00
|
|
|
break;
|
2019-03-26 00:38:32 +08:00
|
|
|
|
2013-08-22 05:29:54 +08:00
|
|
|
case Opt_fscache:
|
2019-11-07 22:39:32 +08:00
|
|
|
#ifdef CONFIG_CEPH_FSCACHE
|
2018-02-07 10:27:06 +08:00
|
|
|
kfree(fsopt->fscache_uniq);
|
|
|
|
fsopt->fscache_uniq = NULL;
|
2019-03-26 00:38:32 +08:00
|
|
|
if (result.negated) {
|
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_FSCACHE;
|
|
|
|
} else {
|
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
|
|
|
|
fsopt->fscache_uniq = param->string;
|
|
|
|
param->string = NULL;
|
|
|
|
}
|
2013-08-22 05:29:54 +08:00
|
|
|
break;
|
2019-11-07 22:39:32 +08:00
|
|
|
#else
|
2019-12-22 10:31:52 +08:00
|
|
|
return invalfc(fc, "fscache support is disabled");
|
2019-11-07 22:39:32 +08:00
|
|
|
#endif
|
2015-04-27 15:33:28 +08:00
|
|
|
case Opt_poolperm:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (!result.negated)
|
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_NOPOOLPERM;
|
|
|
|
else
|
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_NOPOOLPERM;
|
2015-04-27 15:33:28 +08:00
|
|
|
break;
|
2016-11-10 16:02:06 +08:00
|
|
|
case Opt_require_active_mds:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (!result.negated)
|
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_MOUNTWAIT;
|
|
|
|
else
|
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_MOUNTWAIT;
|
2016-11-10 16:02:06 +08:00
|
|
|
break;
|
2018-01-31 18:53:13 +08:00
|
|
|
case Opt_quotadf:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (!result.negated)
|
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_NOQUOTADF;
|
|
|
|
else
|
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_NOQUOTADF;
|
2018-01-31 18:53:13 +08:00
|
|
|
break;
|
2018-10-15 23:46:00 +08:00
|
|
|
case Opt_copyfrom:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (!result.negated)
|
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_NOCOPYFROM;
|
|
|
|
else
|
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_NOCOPYFROM;
|
2018-10-15 23:46:00 +08:00
|
|
|
break;
|
2014-02-17 02:05:29 +08:00
|
|
|
case Opt_acl:
|
2019-03-26 00:38:32 +08:00
|
|
|
if (!result.negated) {
|
|
|
|
#ifdef CONFIG_CEPH_FS_POSIX_ACL
|
|
|
|
fc->sb_flags |= SB_POSIXACL;
|
|
|
|
#else
|
2019-12-22 10:31:52 +08:00
|
|
|
return invalfc(fc, "POSIX ACL support is disabled");
|
2014-02-17 02:05:29 +08:00
|
|
|
#endif
|
2019-03-26 00:38:32 +08:00
|
|
|
} else {
|
|
|
|
fc->sb_flags &= ~SB_POSIXACL;
|
|
|
|
}
|
2014-02-17 02:05:29 +08:00
|
|
|
break;
|
ceph: perform asynchronous unlink if we have sufficient caps
The MDS is getting a new lock-caching facility that will allow it
to cache the necessary locks to allow asynchronous directory operations.
Since the CEPH_CAP_FILE_* caps are currently unused on directories,
we can repurpose those bits for this purpose.
When performing an unlink, if we have Fx on the parent directory,
and CEPH_CAP_DIR_UNLINK (aka Fr), and we know that the dentry being
removed is the primary link, then then we can fire off an unlink
request immediately and don't need to wait on reply before returning.
In that situation, just fix up the dcache and link count and return
immediately after issuing the call to the MDS. This does mean that we
need to hold an extra reference to the inode being unlinked, and extra
references to the caps to avoid races. Those references are put and
error handling is done in the r_callback routine.
If the operation ends up failing, then set a writeback error on the
directory inode, and the inode itself that can be fetched later by
an fsync on the dir.
The behavior of dir caps is slightly different from caps on normal
files. Because these are just considered an optimization, if the
session is reconnected, we will not automatically reclaim them. They
are instead considered lost until we do another synchronous op in the
parent directory.
Async dirops are enabled via the "nowsync" mount option, which is
patterned after the xfs "wsync" mount option. For now, the default
is "wsync", but eventually we may flip that.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: "Yan, Zheng" <zyan@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
2019-04-03 03:35:56 +08:00
|
|
|
case Opt_wsync:
|
|
|
|
if (!result.negated)
|
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_ASYNC_DIROPS;
|
|
|
|
else
|
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_ASYNC_DIROPS;
|
|
|
|
break;
|
2021-12-01 03:12:13 +08:00
|
|
|
case Opt_pagecache:
|
|
|
|
if (result.negated)
|
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_NOPAGECACHE;
|
|
|
|
else
|
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_NOPAGECACHE;
|
|
|
|
break;
|
2022-02-26 19:33:03 +08:00
|
|
|
case Opt_sparseread:
|
|
|
|
if (result.negated)
|
|
|
|
fsopt->flags &= ~CEPH_MOUNT_OPT_SPARSEREAD;
|
|
|
|
else
|
|
|
|
fsopt->flags |= CEPH_MOUNT_OPT_SPARSEREAD;
|
|
|
|
break;
|
2020-09-08 21:47:40 +08:00
|
|
|
case Opt_test_dummy_encryption:
|
|
|
|
#ifdef CONFIG_FS_ENCRYPTION
|
|
|
|
fscrypt_free_dummy_policy(&fsopt->dummy_enc_policy);
|
|
|
|
ret = fscrypt_parse_test_dummy_encryption(param,
|
|
|
|
&fsopt->dummy_enc_policy);
|
|
|
|
if (ret == -EINVAL) {
|
|
|
|
warnfc(fc, "Value of option \"%s\" is unrecognized",
|
|
|
|
param->key);
|
|
|
|
} else if (ret == -EEXIST) {
|
|
|
|
warnfc(fc, "Conflicting test_dummy_encryption options");
|
|
|
|
ret = -EINVAL;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
warnfc(fc,
|
|
|
|
"FS encryption not supported: test_dummy_encryption mount option ignored");
|
|
|
|
#endif
|
|
|
|
break;
|
2010-04-07 06:14:15 +08:00
|
|
|
default:
|
2019-03-26 00:38:32 +08:00
|
|
|
BUG();
|
2010-04-07 06:14:15 +08:00
|
|
|
}
|
|
|
|
return 0;
|
2019-03-26 00:38:32 +08:00
|
|
|
|
|
|
|
out_of_range:
|
2019-12-22 10:31:52 +08:00
|
|
|
return invalfc(fc, "%s out of range", param->key);
|
2010-07-01 12:34:01 +08:00
|
|
|
}
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
static void destroy_mount_options(struct ceph_mount_options *args)
|
2009-10-07 02:31:07 +08:00
|
|
|
{
|
2010-04-07 06:14:15 +08:00
|
|
|
dout("destroy_mount_options %p\n", args);
|
2019-03-26 00:38:32 +08:00
|
|
|
if (!args)
|
|
|
|
return;
|
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
kfree(args->snapdir_name);
|
2016-07-08 11:25:38 +08:00
|
|
|
kfree(args->mds_namespace);
|
2016-04-21 11:09:55 +08:00
|
|
|
kfree(args->server_path);
|
2017-06-27 11:57:56 +08:00
|
|
|
kfree(args->fscache_uniq);
|
2021-07-14 18:05:52 +08:00
|
|
|
kfree(args->mon_addr);
|
2020-09-08 21:47:40 +08:00
|
|
|
fscrypt_free_dummy_policy(&args->dummy_enc_policy);
|
2010-04-07 06:14:15 +08:00
|
|
|
kfree(args);
|
|
|
|
}
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
static int strcmp_null(const char *s1, const char *s2)
|
|
|
|
{
|
|
|
|
if (!s1 && !s2)
|
|
|
|
return 0;
|
|
|
|
if (s1 && !s2)
|
|
|
|
return -1;
|
|
|
|
if (!s1 && s2)
|
|
|
|
return 1;
|
|
|
|
return strcmp(s1, s2);
|
|
|
|
}
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
static int compare_mount_options(struct ceph_mount_options *new_fsopt,
|
|
|
|
struct ceph_options *new_opt,
|
|
|
|
struct ceph_fs_client *fsc)
|
|
|
|
{
|
|
|
|
struct ceph_mount_options *fsopt1 = new_fsopt;
|
|
|
|
struct ceph_mount_options *fsopt2 = fsc->mount_options;
|
|
|
|
int ofs = offsetof(struct ceph_mount_options, snapdir_name);
|
|
|
|
int ret;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
ret = memcmp(fsopt1, fsopt2, ofs);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name);
|
2016-07-08 11:25:38 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2020-02-11 05:51:08 +08:00
|
|
|
|
2016-07-08 11:25:38 +08:00
|
|
|
ret = strcmp_null(fsopt1->mds_namespace, fsopt2->mds_namespace);
|
2010-04-07 06:14:15 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2019-12-20 22:34:04 +08:00
|
|
|
|
2020-02-11 05:51:08 +08:00
|
|
|
ret = strcmp_null(fsopt1->server_path, fsopt2->server_path);
|
2017-06-27 11:57:56 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2019-12-20 22:34:04 +08:00
|
|
|
|
2017-06-27 11:57:56 +08:00
|
|
|
ret = strcmp_null(fsopt1->fscache_uniq, fsopt2->fscache_uniq);
|
2016-04-21 11:09:55 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2021-07-14 18:05:52 +08:00
|
|
|
ret = strcmp_null(fsopt1->mon_addr, fsopt2->mon_addr);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
return ceph_compare_options(new_opt, fsc->client);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ceph_show_options - Show mount options in /proc/mounts
|
|
|
|
* @m: seq_file to write to
|
2011-12-09 10:32:45 +08:00
|
|
|
* @root: root of that (sub)tree
|
2010-04-07 06:14:15 +08:00
|
|
|
*/
|
2011-12-09 10:32:45 +08:00
|
|
|
static int ceph_show_options(struct seq_file *m, struct dentry *root)
|
2009-10-07 02:31:07 +08:00
|
|
|
{
|
2023-06-12 10:50:38 +08:00
|
|
|
struct ceph_fs_client *fsc = ceph_sb_to_fs_client(root->d_sb);
|
2010-04-07 06:14:15 +08:00
|
|
|
struct ceph_mount_options *fsopt = fsc->mount_options;
|
2015-03-26 02:02:16 +08:00
|
|
|
size_t pos;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* a comma between MNT/MS and client options */
|
|
|
|
seq_putc(m, ',');
|
|
|
|
pos = m->count;
|
|
|
|
|
2018-12-18 17:31:48 +08:00
|
|
|
ret = ceph_print_client_options(m, fsc->client, false);
|
2015-03-26 02:02:16 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* retract our comma if no client options */
|
|
|
|
if (m->count == pos)
|
|
|
|
m->count--;
|
2010-04-07 06:14:15 +08:00
|
|
|
|
|
|
|
if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
|
|
|
|
seq_puts(m, ",dirstat");
|
2016-01-25 10:44:33 +08:00
|
|
|
if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES))
|
|
|
|
seq_puts(m, ",rbytes");
|
2010-04-07 06:14:15 +08:00
|
|
|
if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
|
|
|
|
seq_puts(m, ",noasyncreaddir");
|
2015-03-26 02:10:09 +08:00
|
|
|
if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0)
|
2012-01-11 01:12:55 +08:00
|
|
|
seq_puts(m, ",nodcache");
|
2018-06-04 16:03:51 +08:00
|
|
|
if (fsopt->flags & CEPH_MOUNT_OPT_INO32)
|
|
|
|
seq_puts(m, ",ino32");
|
2017-06-27 11:57:56 +08:00
|
|
|
if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) {
|
2018-02-15 15:39:05 +08:00
|
|
|
seq_show_option(m, "fsc", fsopt->fscache_uniq);
|
2017-06-27 11:57:56 +08:00
|
|
|
}
|
2015-04-27 15:33:28 +08:00
|
|
|
if (fsopt->flags & CEPH_MOUNT_OPT_NOPOOLPERM)
|
|
|
|
seq_puts(m, ",nopoolperm");
|
2018-01-31 18:53:13 +08:00
|
|
|
if (fsopt->flags & CEPH_MOUNT_OPT_NOQUOTADF)
|
|
|
|
seq_puts(m, ",noquotadf");
|
2010-04-07 06:14:15 +08:00
|
|
|
|
2014-02-17 02:05:29 +08:00
|
|
|
#ifdef CONFIG_CEPH_FS_POSIX_ACL
|
2019-03-26 00:38:32 +08:00
|
|
|
if (root->d_sb->s_flags & SB_POSIXACL)
|
2014-02-17 02:05:29 +08:00
|
|
|
seq_puts(m, ",acl");
|
|
|
|
else
|
|
|
|
seq_puts(m, ",noacl");
|
|
|
|
#endif
|
|
|
|
|
2018-12-10 18:23:12 +08:00
|
|
|
if ((fsopt->flags & CEPH_MOUNT_OPT_NOCOPYFROM) == 0)
|
|
|
|
seq_puts(m, ",copyfrom");
|
2018-10-15 23:46:00 +08:00
|
|
|
|
2021-07-14 18:05:52 +08:00
|
|
|
/* dump mds_namespace when old device syntax is in use */
|
|
|
|
if (fsopt->mds_namespace && !fsopt->new_dev_syntax)
|
2018-02-15 15:39:05 +08:00
|
|
|
seq_show_option(m, "mds_namespace", fsopt->mds_namespace);
|
2019-07-25 20:16:47 +08:00
|
|
|
|
2021-07-14 18:05:52 +08:00
|
|
|
if (fsopt->mon_addr)
|
|
|
|
seq_printf(m, ",mon_addr=%s", fsopt->mon_addr);
|
|
|
|
|
2019-07-25 20:16:47 +08:00
|
|
|
if (fsopt->flags & CEPH_MOUNT_OPT_CLEANRECOVER)
|
|
|
|
seq_show_option(m, "recover_session", "clean");
|
|
|
|
|
2021-08-09 23:55:15 +08:00
|
|
|
if (!(fsopt->flags & CEPH_MOUNT_OPT_ASYNC_DIROPS))
|
|
|
|
seq_puts(m, ",wsync");
|
2021-12-01 03:12:13 +08:00
|
|
|
if (fsopt->flags & CEPH_MOUNT_OPT_NOPAGECACHE)
|
|
|
|
seq_puts(m, ",nopagecache");
|
2022-02-26 19:33:03 +08:00
|
|
|
if (fsopt->flags & CEPH_MOUNT_OPT_SPARSEREAD)
|
|
|
|
seq_puts(m, ",sparseread");
|
2021-12-01 03:12:13 +08:00
|
|
|
|
2020-09-08 21:47:40 +08:00
|
|
|
fscrypt_show_test_dummy_encryption(m, ',', root->d_sb);
|
|
|
|
|
2018-05-03 22:26:55 +08:00
|
|
|
if (fsopt->wsize != CEPH_MAX_WRITE_SIZE)
|
2019-09-10 03:58:55 +08:00
|
|
|
seq_printf(m, ",wsize=%u", fsopt->wsize);
|
2017-07-11 15:56:09 +08:00
|
|
|
if (fsopt->rsize != CEPH_MAX_READ_SIZE)
|
2019-09-10 03:58:55 +08:00
|
|
|
seq_printf(m, ",rsize=%u", fsopt->rsize);
|
2011-08-04 23:03:44 +08:00
|
|
|
if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
|
2019-09-10 03:58:55 +08:00
|
|
|
seq_printf(m, ",rasize=%u", fsopt->rasize);
|
2010-04-07 06:14:15 +08:00
|
|
|
if (fsopt->congestion_kb != default_congestion_kb())
|
2019-09-10 03:58:55 +08:00
|
|
|
seq_printf(m, ",write_congestion_kb=%u", fsopt->congestion_kb);
|
2019-02-01 14:57:15 +08:00
|
|
|
if (fsopt->caps_max)
|
|
|
|
seq_printf(m, ",caps_max=%d", fsopt->caps_max);
|
2010-04-07 06:14:15 +08:00
|
|
|
if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
|
2019-09-10 03:58:55 +08:00
|
|
|
seq_printf(m, ",caps_wanted_delay_min=%u",
|
2010-04-07 06:14:15 +08:00
|
|
|
fsopt->caps_wanted_delay_min);
|
|
|
|
if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
|
2019-09-10 03:58:55 +08:00
|
|
|
seq_printf(m, ",caps_wanted_delay_max=%u",
|
2010-04-07 06:14:15 +08:00
|
|
|
fsopt->caps_wanted_delay_max);
|
|
|
|
if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
|
2019-09-10 03:58:55 +08:00
|
|
|
seq_printf(m, ",readdir_max_entries=%u", fsopt->max_readdir);
|
2010-04-07 06:14:15 +08:00
|
|
|
if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
|
2019-09-10 03:58:55 +08:00
|
|
|
seq_printf(m, ",readdir_max_bytes=%u", fsopt->max_readdir_bytes);
|
2010-04-07 06:14:15 +08:00
|
|
|
if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
|
fs: create and use seq_show_option for escaping
Many file systems that implement the show_options hook fail to correctly
escape their output which could lead to unescaped characters (e.g. new
lines) leaking into /proc/mounts and /proc/[pid]/mountinfo files. This
could lead to confusion, spoofed entries (resulting in things like
systemd issuing false d-bus "mount" notifications), and who knows what
else. This looks like it would only be the root user stepping on
themselves, but it's possible weird things could happen in containers or
in other situations with delegated mount privileges.
Here's an example using overlay with setuid fusermount trusting the
contents of /proc/mounts (via the /etc/mtab symlink). Imagine the use
of "sudo" is something more sneaky:
$ BASE="ovl"
$ MNT="$BASE/mnt"
$ LOW="$BASE/lower"
$ UP="$BASE/upper"
$ WORK="$BASE/work/ 0 0
none /proc fuse.pwn user_id=1000"
$ mkdir -p "$LOW" "$UP" "$WORK"
$ sudo mount -t overlay -o "lowerdir=$LOW,upperdir=$UP,workdir=$WORK" none /mnt
$ cat /proc/mounts
none /root/ovl/mnt overlay rw,relatime,lowerdir=ovl/lower,upperdir=ovl/upper,workdir=ovl/work/ 0 0
none /proc fuse.pwn user_id=1000 0 0
$ fusermount -u /proc
$ cat /proc/mounts
cat: /proc/mounts: No such file or directory
This fixes the problem by adding new seq_show_option and
seq_show_option_n helpers, and updating the vulnerable show_option
handlers to use them as needed. Some, like SELinux, need to be open
coded due to unusual existing escape mechanisms.
[akpm@linux-foundation.org: add lost chunk, per Kees]
[keescook@chromium.org: seq_show_option should be using const parameters]
Signed-off-by: Kees Cook <keescook@chromium.org>
Acked-by: Serge Hallyn <serge.hallyn@canonical.com>
Acked-by: Jan Kara <jack@suse.com>
Acked-by: Paul Moore <paul@paul-moore.com>
Cc: J. R. Okajima <hooanon05g@gmail.com>
Signed-off-by: Kees Cook <keescook@chromium.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2015-09-05 06:44:57 +08:00
|
|
|
seq_show_option(m, "snapdirname", fsopt->snapdir_name);
|
2015-03-26 02:02:16 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
return 0;
|
2009-10-07 02:31:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2010-04-07 06:14:15 +08:00
|
|
|
* handle any mon messages the standard library doesn't understand.
|
|
|
|
* return error if we don't either.
|
2009-10-07 02:31:07 +08:00
|
|
|
*/
|
2010-04-07 06:14:15 +08:00
|
|
|
static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
|
2009-10-07 02:31:07 +08:00
|
|
|
{
|
2010-04-07 06:14:15 +08:00
|
|
|
struct ceph_fs_client *fsc = client->private;
|
|
|
|
int type = le16_to_cpu(msg->hdr.type);
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case CEPH_MSG_MDS_MAP:
|
2016-07-08 11:25:38 +08:00
|
|
|
ceph_mdsc_handle_mdsmap(fsc->mdsc, msg);
|
|
|
|
return 0;
|
|
|
|
case CEPH_MSG_FS_MAP_USER:
|
|
|
|
ceph_mdsc_handle_fsmap(fsc->mdsc, msg);
|
2010-04-07 06:14:15 +08:00
|
|
|
return 0;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* create a new fs client
|
2018-08-24 21:32:43 +08:00
|
|
|
*
|
|
|
|
* Success or not, this function consumes @fsopt and @opt.
|
2010-04-07 06:14:15 +08:00
|
|
|
*/
|
2011-09-24 02:53:30 +08:00
|
|
|
static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
|
2010-04-07 06:14:15 +08:00
|
|
|
struct ceph_options *opt)
|
|
|
|
{
|
|
|
|
struct ceph_fs_client *fsc;
|
2018-08-24 21:32:43 +08:00
|
|
|
int err;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
|
2018-08-24 21:32:43 +08:00
|
|
|
if (!fsc) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2017-03-04 01:16:07 +08:00
|
|
|
fsc->client = ceph_create_client(opt, fsc);
|
2010-04-07 06:14:15 +08:00
|
|
|
if (IS_ERR(fsc->client)) {
|
|
|
|
err = PTR_ERR(fsc->client);
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-08-24 21:32:43 +08:00
|
|
|
opt = NULL; /* fsc->client now owns this */
|
2018-05-30 22:29:14 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
fsc->client->extra_mon_dispatch = extra_mon_dispatch;
|
2018-12-18 17:31:48 +08:00
|
|
|
ceph_set_opt(fsc->client, ABORT_ON_FULL);
|
2016-07-08 11:25:38 +08:00
|
|
|
|
2017-08-21 02:22:02 +08:00
|
|
|
if (!fsopt->mds_namespace) {
|
2016-07-08 11:25:38 +08:00
|
|
|
ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_MDSMAP,
|
|
|
|
0, true);
|
|
|
|
} else {
|
|
|
|
ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_FSMAP,
|
|
|
|
0, false);
|
|
|
|
}
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
fsc->mount_options = fsopt;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
fsc->sb = NULL;
|
|
|
|
fsc->mount_state = CEPH_MOUNT_MOUNTING;
|
2019-07-25 20:16:46 +08:00
|
|
|
fsc->filp_gen = 1;
|
2020-01-08 18:03:53 +08:00
|
|
|
fsc->have_copy_from2 = true;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
atomic_long_set(&fsc->writeback_count, 0);
|
2022-03-23 05:39:04 +08:00
|
|
|
fsc->write_congested = false;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
|
|
|
err = -ENOMEM;
|
2011-01-03 21:49:45 +08:00
|
|
|
/*
|
|
|
|
* The number of concurrent works can be high but they don't need
|
|
|
|
* to be processed in parallel, limit concurrency.
|
|
|
|
*/
|
2019-05-18 11:18:44 +08:00
|
|
|
fsc->inode_wq = alloc_workqueue("ceph-inode", WQ_UNBOUND, 0);
|
|
|
|
if (!fsc->inode_wq)
|
2017-04-12 18:24:33 +08:00
|
|
|
goto fail_client;
|
2019-01-14 17:21:19 +08:00
|
|
|
fsc->cap_wq = alloc_workqueue("ceph-cap", 0, 1);
|
|
|
|
if (!fsc->cap_wq)
|
2019-05-18 11:18:44 +08:00
|
|
|
goto fail_inode_wq;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2022-05-10 09:47:01 +08:00
|
|
|
hash_init(fsc->async_unlink_conflict);
|
|
|
|
spin_lock_init(&fsc->async_unlink_conflict_lock);
|
|
|
|
|
2020-07-16 22:05:57 +08:00
|
|
|
spin_lock(&ceph_fsc_lock);
|
|
|
|
list_add_tail(&fsc->metric_wakeup, &ceph_fsc_list);
|
|
|
|
spin_unlock(&ceph_fsc_lock);
|
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
return fsc;
|
2009-11-19 07:08:44 +08:00
|
|
|
|
2019-05-18 11:18:44 +08:00
|
|
|
fail_inode_wq:
|
|
|
|
destroy_workqueue(fsc->inode_wq);
|
2010-04-07 06:14:15 +08:00
|
|
|
fail_client:
|
|
|
|
ceph_destroy_client(fsc->client);
|
2009-10-07 02:31:07 +08:00
|
|
|
fail:
|
2010-04-07 06:14:15 +08:00
|
|
|
kfree(fsc);
|
2018-08-24 21:32:43 +08:00
|
|
|
if (opt)
|
|
|
|
ceph_destroy_options(opt);
|
|
|
|
destroy_mount_options(fsopt);
|
2009-10-07 02:31:07 +08:00
|
|
|
return ERR_PTR(err);
|
|
|
|
}
|
|
|
|
|
2018-05-18 16:05:51 +08:00
|
|
|
static void flush_fs_workqueues(struct ceph_fs_client *fsc)
|
|
|
|
{
|
2019-05-18 11:18:44 +08:00
|
|
|
flush_workqueue(fsc->inode_wq);
|
2019-01-14 17:21:19 +08:00
|
|
|
flush_workqueue(fsc->cap_wq);
|
2018-05-18 16:05:51 +08:00
|
|
|
}
|
|
|
|
|
2011-09-24 02:53:30 +08:00
|
|
|
static void destroy_fs_client(struct ceph_fs_client *fsc)
|
2009-10-07 02:31:07 +08:00
|
|
|
{
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(fsc->client, "%p\n", fsc);
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2020-07-16 22:05:57 +08:00
|
|
|
spin_lock(&ceph_fsc_lock);
|
|
|
|
list_del(&fsc->metric_wakeup);
|
|
|
|
spin_unlock(&ceph_fsc_lock);
|
|
|
|
|
2019-09-12 20:07:56 +08:00
|
|
|
ceph_mdsc_destroy(fsc);
|
2019-05-18 11:18:44 +08:00
|
|
|
destroy_workqueue(fsc->inode_wq);
|
2019-01-14 17:21:19 +08:00
|
|
|
destroy_workqueue(fsc->cap_wq);
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
destroy_mount_options(fsc->mount_options);
|
2010-05-05 07:14:46 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
ceph_destroy_client(fsc->client);
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
kfree(fsc);
|
2023-06-12 09:04:07 +08:00
|
|
|
dout("%s: %p done\n", __func__, fsc);
|
2009-10-07 02:31:07 +08:00
|
|
|
}
|
|
|
|
|
2009-11-19 08:50:41 +08:00
|
|
|
/*
|
2010-04-07 06:14:15 +08:00
|
|
|
* caches
|
2009-11-19 08:50:41 +08:00
|
|
|
*/
|
2010-04-07 06:14:15 +08:00
|
|
|
struct kmem_cache *ceph_inode_cachep;
|
|
|
|
struct kmem_cache *ceph_cap_cachep;
|
2022-02-15 20:23:14 +08:00
|
|
|
struct kmem_cache *ceph_cap_snap_cachep;
|
2015-06-10 17:26:13 +08:00
|
|
|
struct kmem_cache *ceph_cap_flush_cachep;
|
2010-04-07 06:14:15 +08:00
|
|
|
struct kmem_cache *ceph_dentry_cachep;
|
|
|
|
struct kmem_cache *ceph_file_cachep;
|
2018-03-13 10:42:44 +08:00
|
|
|
struct kmem_cache *ceph_dir_file_cachep;
|
2020-02-18 07:38:37 +08:00
|
|
|
struct kmem_cache *ceph_mds_request_cachep;
|
2020-07-30 23:03:55 +08:00
|
|
|
mempool_t *ceph_wb_pagevec_pool;
|
2010-04-07 06:14:15 +08:00
|
|
|
|
|
|
|
static void ceph_inode_init_once(void *foo)
|
2009-11-19 08:50:41 +08:00
|
|
|
{
|
2010-04-07 06:14:15 +08:00
|
|
|
struct ceph_inode_info *ci = foo;
|
netfs: Fix gcc-12 warning by embedding vfs inode in netfs_i_context
While randstruct was satisfied with using an open-coded "void *" offset
cast for the netfs_i_context <-> inode casting, __builtin_object_size() as
used by FORTIFY_SOURCE was not as easily fooled. This was causing the
following complaint[1] from gcc v12:
In file included from include/linux/string.h:253,
from include/linux/ceph/ceph_debug.h:7,
from fs/ceph/inode.c:2:
In function 'fortify_memset_chk',
inlined from 'netfs_i_context_init' at include/linux/netfs.h:326:2,
inlined from 'ceph_alloc_inode' at fs/ceph/inode.c:463:2:
include/linux/fortify-string.h:242:25: warning: call to '__write_overflow_field' declared with attribute warning: detected write beyond size of field (1st parameter); maybe use struct_group()? [-Wattribute-warning]
242 | __write_overflow_field(p_size_field, size);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Fix this by embedding a struct inode into struct netfs_i_context (which
should perhaps be renamed to struct netfs_inode). The struct inode
vfs_inode fields are then removed from the 9p, afs, ceph and cifs inode
structs and vfs_inode is then simply changed to "netfs.inode" in those
filesystems.
Further, rename netfs_i_context to netfs_inode, get rid of the
netfs_inode() function that converted a netfs_i_context pointer to an
inode pointer (that can now be done with &ctx->inode) and rename the
netfs_i_context() function to netfs_inode() (which is now a wrapper
around container_of()).
Most of the changes were done with:
perl -p -i -e 's/vfs_inode/netfs.inode/'g \
`git grep -l 'vfs_inode' -- fs/{9p,afs,ceph,cifs}/*.[ch]`
Kees suggested doing it with a pair structure[2] and a special
declarator to insert that into the network filesystem's inode
wrapper[3], but I think it's cleaner to embed it - and then it doesn't
matter if struct randomisation reorders things.
Dave Chinner suggested using a filesystem-specific VFS_I() function in
each filesystem to convert that filesystem's own inode wrapper struct
into the VFS inode struct[4].
Version #2:
- Fix a couple of missed name changes due to a disabled cifs option.
- Rename nfs_i_context to nfs_inode
- Use "netfs" instead of "nic" as the member name in per-fs inode wrapper
structs.
[ This also undoes commit 507160f46c55 ("netfs: gcc-12: temporarily
disable '-Wattribute-warning' for now") that is no longer needed ]
Fixes: bc899ee1c898 ("netfs: Add a netfs inode context")
Reported-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: Kees Cook <keescook@chromium.org>
Reviewed-by: Xiubo Li <xiubli@redhat.com>
cc: Jonathan Corbet <corbet@lwn.net>
cc: Eric Van Hensbergen <ericvh@gmail.com>
cc: Latchesar Ionkov <lucho@ionkov.net>
cc: Dominique Martinet <asmadeus@codewreck.org>
cc: Christian Schoenebeck <linux_oss@crudebyte.com>
cc: Marc Dionne <marc.dionne@auristor.com>
cc: Ilya Dryomov <idryomov@gmail.com>
cc: Steve French <smfrench@gmail.com>
cc: William Kucharski <william.kucharski@oracle.com>
cc: "Matthew Wilcox (Oracle)" <willy@infradead.org>
cc: Dave Chinner <david@fromorbit.com>
cc: linux-doc@vger.kernel.org
cc: v9fs-developer@lists.sourceforge.net
cc: linux-afs@lists.infradead.org
cc: ceph-devel@vger.kernel.org
cc: linux-cifs@vger.kernel.org
cc: samba-technical@lists.samba.org
cc: linux-fsdevel@vger.kernel.org
cc: linux-hardening@vger.kernel.org
Link: https://lore.kernel.org/r/d2ad3a3d7bdd794c6efb562d2f2b655fb67756b9.camel@kernel.org/ [1]
Link: https://lore.kernel.org/r/20220517210230.864239-1-keescook@chromium.org/ [2]
Link: https://lore.kernel.org/r/20220518202212.2322058-1-keescook@chromium.org/ [3]
Link: https://lore.kernel.org/r/20220524101205.GI2306852@dread.disaster.area/ [4]
Link: https://lore.kernel.org/r/165296786831.3591209.12111293034669289733.stgit@warthog.procyon.org.uk/ # v1
Link: https://lore.kernel.org/r/165305805651.4094995.7763502506786714216.stgit@warthog.procyon.org.uk # v2
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2022-06-10 04:46:04 +08:00
|
|
|
inode_init_once(&ci->netfs.inode);
|
2010-04-07 06:14:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int __init init_caches(void)
|
|
|
|
{
|
2013-08-22 05:29:54 +08:00
|
|
|
int error = -ENOMEM;
|
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
|
|
|
|
sizeof(struct ceph_inode_info),
|
|
|
|
__alignof__(struct ceph_inode_info),
|
2024-03-13 11:32:19 +08:00
|
|
|
SLAB_RECLAIM_ACCOUNT | SLAB_ACCOUNT,
|
|
|
|
ceph_inode_init_once);
|
2017-08-21 02:22:02 +08:00
|
|
|
if (!ceph_inode_cachep)
|
2010-04-07 06:14:15 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2024-03-13 11:32:19 +08:00
|
|
|
ceph_cap_cachep = KMEM_CACHE(ceph_cap, 0);
|
2017-08-21 02:22:02 +08:00
|
|
|
if (!ceph_cap_cachep)
|
2010-04-07 06:14:15 +08:00
|
|
|
goto bad_cap;
|
2024-03-13 11:32:19 +08:00
|
|
|
ceph_cap_snap_cachep = KMEM_CACHE(ceph_cap_snap, 0);
|
2022-02-15 20:23:14 +08:00
|
|
|
if (!ceph_cap_snap_cachep)
|
|
|
|
goto bad_cap_snap;
|
2015-06-10 17:26:13 +08:00
|
|
|
ceph_cap_flush_cachep = KMEM_CACHE(ceph_cap_flush,
|
2024-03-13 11:32:19 +08:00
|
|
|
SLAB_RECLAIM_ACCOUNT);
|
2017-08-21 02:22:02 +08:00
|
|
|
if (!ceph_cap_flush_cachep)
|
2015-06-10 17:26:13 +08:00
|
|
|
goto bad_cap_flush;
|
2010-04-07 06:14:15 +08:00
|
|
|
|
|
|
|
ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
|
2024-03-13 11:32:19 +08:00
|
|
|
SLAB_RECLAIM_ACCOUNT);
|
2017-08-21 02:22:02 +08:00
|
|
|
if (!ceph_dentry_cachep)
|
2010-04-07 06:14:15 +08:00
|
|
|
goto bad_dentry;
|
|
|
|
|
2024-03-13 11:32:19 +08:00
|
|
|
ceph_file_cachep = KMEM_CACHE(ceph_file_info, 0);
|
2017-08-21 02:22:02 +08:00
|
|
|
if (!ceph_file_cachep)
|
2010-04-07 06:14:15 +08:00
|
|
|
goto bad_file;
|
|
|
|
|
2024-03-13 11:32:19 +08:00
|
|
|
ceph_dir_file_cachep = KMEM_CACHE(ceph_dir_file_info, 0);
|
2018-03-13 10:42:44 +08:00
|
|
|
if (!ceph_dir_file_cachep)
|
|
|
|
goto bad_dir_file;
|
|
|
|
|
2024-03-13 11:32:19 +08:00
|
|
|
ceph_mds_request_cachep = KMEM_CACHE(ceph_mds_request, 0);
|
2020-02-18 07:38:37 +08:00
|
|
|
if (!ceph_mds_request_cachep)
|
|
|
|
goto bad_mds_req;
|
|
|
|
|
2020-07-30 23:03:55 +08:00
|
|
|
ceph_wb_pagevec_pool = mempool_create_kmalloc_pool(10, CEPH_MAX_WRITE_SIZE >> PAGE_SHIFT);
|
|
|
|
if (!ceph_wb_pagevec_pool)
|
|
|
|
goto bad_pagevec_pool;
|
|
|
|
|
2013-08-22 05:29:54 +08:00
|
|
|
return 0;
|
2018-03-01 14:24:51 +08:00
|
|
|
|
2020-07-30 23:03:55 +08:00
|
|
|
bad_pagevec_pool:
|
2021-12-07 21:44:50 +08:00
|
|
|
kmem_cache_destroy(ceph_mds_request_cachep);
|
2020-02-18 07:38:37 +08:00
|
|
|
bad_mds_req:
|
2018-03-13 10:42:44 +08:00
|
|
|
kmem_cache_destroy(ceph_dir_file_cachep);
|
|
|
|
bad_dir_file:
|
2018-03-01 14:24:51 +08:00
|
|
|
kmem_cache_destroy(ceph_file_cachep);
|
2010-04-07 06:14:15 +08:00
|
|
|
bad_file:
|
|
|
|
kmem_cache_destroy(ceph_dentry_cachep);
|
|
|
|
bad_dentry:
|
2015-06-10 17:26:13 +08:00
|
|
|
kmem_cache_destroy(ceph_cap_flush_cachep);
|
|
|
|
bad_cap_flush:
|
2022-02-15 20:23:14 +08:00
|
|
|
kmem_cache_destroy(ceph_cap_snap_cachep);
|
|
|
|
bad_cap_snap:
|
2010-04-07 06:14:15 +08:00
|
|
|
kmem_cache_destroy(ceph_cap_cachep);
|
|
|
|
bad_cap:
|
|
|
|
kmem_cache_destroy(ceph_inode_cachep);
|
2013-08-22 05:29:54 +08:00
|
|
|
return error;
|
2009-11-19 08:50:41 +08:00
|
|
|
}
|
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
static void destroy_caches(void)
|
|
|
|
{
|
2012-09-26 09:33:07 +08:00
|
|
|
/*
|
|
|
|
* Make sure all delayed rcu free inodes are flushed before we
|
|
|
|
* destroy cache.
|
|
|
|
*/
|
|
|
|
rcu_barrier();
|
2013-08-22 05:29:54 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
kmem_cache_destroy(ceph_inode_cachep);
|
|
|
|
kmem_cache_destroy(ceph_cap_cachep);
|
2022-02-15 20:23:14 +08:00
|
|
|
kmem_cache_destroy(ceph_cap_snap_cachep);
|
2015-06-10 17:26:13 +08:00
|
|
|
kmem_cache_destroy(ceph_cap_flush_cachep);
|
2010-04-07 06:14:15 +08:00
|
|
|
kmem_cache_destroy(ceph_dentry_cachep);
|
|
|
|
kmem_cache_destroy(ceph_file_cachep);
|
2018-03-13 10:42:44 +08:00
|
|
|
kmem_cache_destroy(ceph_dir_file_cachep);
|
2020-02-18 07:38:37 +08:00
|
|
|
kmem_cache_destroy(ceph_mds_request_cachep);
|
2020-07-30 23:03:55 +08:00
|
|
|
mempool_destroy(ceph_wb_pagevec_pool);
|
2010-04-07 06:14:15 +08:00
|
|
|
}
|
|
|
|
|
2020-09-25 19:55:39 +08:00
|
|
|
static void __ceph_umount_begin(struct ceph_fs_client *fsc)
|
|
|
|
{
|
|
|
|
ceph_osdc_abort_requests(&fsc->client->osdc, -EIO);
|
|
|
|
ceph_mdsc_force_umount(fsc->mdsc);
|
|
|
|
fsc->filp_gen++; // invalidate open files
|
|
|
|
}
|
|
|
|
|
2009-10-07 02:31:07 +08:00
|
|
|
/*
|
2020-07-18 07:36:04 +08:00
|
|
|
* ceph_umount_begin - initiate forced umount. Tear down the
|
2010-04-07 06:14:15 +08:00
|
|
|
* mount, skipping steps that may hang while waiting for server(s).
|
2009-10-07 02:31:07 +08:00
|
|
|
*/
|
2021-10-14 23:10:47 +08:00
|
|
|
void ceph_umount_begin(struct super_block *sb)
|
2009-10-07 02:31:07 +08:00
|
|
|
{
|
2023-06-12 10:50:38 +08:00
|
|
|
struct ceph_fs_client *fsc = ceph_sb_to_fs_client(sb);
|
2010-04-07 06:14:15 +08:00
|
|
|
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(fsc->client, "starting forced umount\n");
|
2010-04-07 06:14:15 +08:00
|
|
|
if (!fsc)
|
|
|
|
return;
|
|
|
|
fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
|
2020-09-25 19:55:39 +08:00
|
|
|
__ceph_umount_begin(fsc);
|
2009-10-07 02:31:07 +08:00
|
|
|
}
|
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
static const struct super_operations ceph_super_ops = {
|
|
|
|
.alloc_inode = ceph_alloc_inode,
|
2019-04-11 03:18:50 +08:00
|
|
|
.free_inode = ceph_free_inode,
|
2010-04-07 06:14:15 +08:00
|
|
|
.write_inode = ceph_write_inode,
|
2019-07-06 00:14:56 +08:00
|
|
|
.drop_inode = generic_delete_inode,
|
2019-06-02 09:45:38 +08:00
|
|
|
.evict_inode = ceph_evict_inode,
|
2010-04-07 06:14:15 +08:00
|
|
|
.sync_fs = ceph_sync_fs,
|
|
|
|
.put_super = ceph_put_super,
|
|
|
|
.show_options = ceph_show_options,
|
|
|
|
.statfs = ceph_statfs,
|
|
|
|
.umount_begin = ceph_umount_begin,
|
|
|
|
};
|
|
|
|
|
2009-10-07 02:31:07 +08:00
|
|
|
/*
|
|
|
|
* Bootstrap mount by opening the root directory. Note the mount
|
|
|
|
* @started time from caller, and time out if this takes too long.
|
|
|
|
*/
|
2010-04-07 06:14:15 +08:00
|
|
|
static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
|
2009-10-07 02:31:07 +08:00
|
|
|
const char *path,
|
|
|
|
unsigned long started)
|
|
|
|
{
|
2023-06-12 09:04:07 +08:00
|
|
|
struct ceph_client *cl = fsc->client;
|
2010-04-07 06:14:15 +08:00
|
|
|
struct ceph_mds_client *mdsc = fsc->mdsc;
|
2009-10-07 02:31:07 +08:00
|
|
|
struct ceph_mds_request *req = NULL;
|
|
|
|
int err;
|
|
|
|
struct dentry *root;
|
|
|
|
|
|
|
|
/* open dir */
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "opening '%s'\n", path);
|
2009-10-07 02:31:07 +08:00
|
|
|
req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
|
|
|
|
if (IS_ERR(req))
|
2010-05-22 18:01:14 +08:00
|
|
|
return ERR_CAST(req);
|
2009-10-07 02:31:07 +08:00
|
|
|
req->r_path1 = kstrdup(path, GFP_NOFS);
|
2015-03-22 00:54:58 +08:00
|
|
|
if (!req->r_path1) {
|
|
|
|
root = ERR_PTR(-ENOMEM);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2009-10-07 02:31:07 +08:00
|
|
|
req->r_ino1.ino = CEPH_INO_ROOT;
|
|
|
|
req->r_ino1.snap = CEPH_NOSNAP;
|
|
|
|
req->r_started = started;
|
2015-05-15 17:02:17 +08:00
|
|
|
req->r_timeout = fsc->client->options->mount_timeout;
|
2009-10-07 02:31:07 +08:00
|
|
|
req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
|
|
|
|
req->r_num_caps = 2;
|
|
|
|
err = ceph_mdsc_do_request(mdsc, NULL, req);
|
|
|
|
if (err == 0) {
|
2012-01-10 05:34:32 +08:00
|
|
|
struct inode *inode = req->r_target_inode;
|
|
|
|
req->r_target_inode = NULL;
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "success\n");
|
2016-09-14 14:53:05 +08:00
|
|
|
root = d_make_root(inode);
|
|
|
|
if (!root) {
|
|
|
|
root = ERR_PTR(-ENOMEM);
|
|
|
|
goto out;
|
2011-11-12 01:48:08 +08:00
|
|
|
}
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "success, root dentry is %p\n", root);
|
2009-10-07 02:31:07 +08:00
|
|
|
} else {
|
|
|
|
root = ERR_PTR(err);
|
|
|
|
}
|
2012-01-10 05:34:32 +08:00
|
|
|
out:
|
2009-10-07 02:31:07 +08:00
|
|
|
ceph_mdsc_put_request(req);
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2020-09-08 21:47:40 +08:00
|
|
|
#ifdef CONFIG_FS_ENCRYPTION
|
|
|
|
static int ceph_apply_test_dummy_encryption(struct super_block *sb,
|
|
|
|
struct fs_context *fc,
|
|
|
|
struct ceph_mount_options *fsopt)
|
|
|
|
{
|
|
|
|
struct ceph_fs_client *fsc = sb->s_fs_info;
|
|
|
|
|
|
|
|
if (!fscrypt_is_dummy_policy_set(&fsopt->dummy_enc_policy))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* No changing encryption context on remount. */
|
|
|
|
if (fc->purpose == FS_CONTEXT_FOR_RECONFIGURE &&
|
|
|
|
!fscrypt_is_dummy_policy_set(&fsc->fsc_dummy_enc_policy)) {
|
|
|
|
if (fscrypt_dummy_policies_equal(&fsopt->dummy_enc_policy,
|
|
|
|
&fsc->fsc_dummy_enc_policy))
|
|
|
|
return 0;
|
|
|
|
errorfc(fc, "Can't set test_dummy_encryption on remount");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Also make sure fsopt doesn't contain a conflicting value. */
|
|
|
|
if (fscrypt_is_dummy_policy_set(&fsc->fsc_dummy_enc_policy)) {
|
|
|
|
if (fscrypt_dummy_policies_equal(&fsopt->dummy_enc_policy,
|
|
|
|
&fsc->fsc_dummy_enc_policy))
|
|
|
|
return 0;
|
|
|
|
errorfc(fc, "Conflicting test_dummy_encryption options");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
fsc->fsc_dummy_enc_policy = fsopt->dummy_enc_policy;
|
|
|
|
memset(&fsopt->dummy_enc_policy, 0, sizeof(fsopt->dummy_enc_policy));
|
|
|
|
|
|
|
|
warnfc(fc, "test_dummy_encryption mode enabled");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static int ceph_apply_test_dummy_encryption(struct super_block *sb,
|
|
|
|
struct fs_context *fc,
|
|
|
|
struct ceph_mount_options *fsopt)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-10-07 02:31:07 +08:00
|
|
|
/*
|
|
|
|
* mount: join the ceph cluster, and open root directory.
|
|
|
|
*/
|
2019-03-26 00:38:32 +08:00
|
|
|
static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc,
|
|
|
|
struct fs_context *fc)
|
2009-10-07 02:31:07 +08:00
|
|
|
{
|
2023-06-12 09:04:07 +08:00
|
|
|
struct ceph_client *cl = fsc->client;
|
2009-10-07 02:31:07 +08:00
|
|
|
int err;
|
|
|
|
unsigned long started = jiffies; /* note the start time */
|
|
|
|
struct dentry *root;
|
|
|
|
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "mount start %p\n", fsc);
|
2010-04-07 06:14:15 +08:00
|
|
|
mutex_lock(&fsc->client->mount_mutex);
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2016-03-12 13:20:48 +08:00
|
|
|
if (!fsc->sb->s_root) {
|
2020-02-11 05:51:08 +08:00
|
|
|
const char *path = fsc->mount_options->server_path ?
|
|
|
|
fsc->mount_options->server_path + 1 : "";
|
|
|
|
|
2016-03-12 13:20:48 +08:00
|
|
|
err = __ceph_open_session(fsc->client, started);
|
|
|
|
if (err < 0)
|
|
|
|
goto out;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2017-06-27 11:57:56 +08:00
|
|
|
/* setup fscache */
|
|
|
|
if (fsc->mount_options->flags & CEPH_MOUNT_OPT_FSCACHE) {
|
2019-03-26 00:38:32 +08:00
|
|
|
err = ceph_fscache_register_fs(fsc, fc);
|
2017-06-27 11:57:56 +08:00
|
|
|
if (err < 0)
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2020-09-08 21:47:40 +08:00
|
|
|
err = ceph_apply_test_dummy_encryption(fsc->sb, fc,
|
|
|
|
fsc->mount_options);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "mount opening path '%s'\n", path);
|
2018-02-09 20:40:59 +08:00
|
|
|
|
2019-06-12 22:55:38 +08:00
|
|
|
ceph_fs_debugfs_init(fsc);
|
2018-02-09 20:40:59 +08:00
|
|
|
|
2016-09-14 14:53:05 +08:00
|
|
|
root = open_root_dentry(fsc, path, started);
|
2016-03-12 13:20:48 +08:00
|
|
|
if (IS_ERR(root)) {
|
|
|
|
err = PTR_ERR(root);
|
|
|
|
goto out;
|
|
|
|
}
|
2016-09-14 14:53:05 +08:00
|
|
|
fsc->sb->s_root = dget(root);
|
2016-10-13 23:15:37 +08:00
|
|
|
} else {
|
|
|
|
root = dget(fsc->sb->s_root);
|
2010-04-07 06:14:15 +08:00
|
|
|
}
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
fsc->mount_state = CEPH_MOUNT_MOUNTED;
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "mount success\n");
|
2010-07-26 20:17:55 +08:00
|
|
|
mutex_unlock(&fsc->client->mount_mutex);
|
|
|
|
return root;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2016-03-12 13:20:48 +08:00
|
|
|
out:
|
|
|
|
mutex_unlock(&fsc->client->mount_mutex);
|
2020-09-08 21:47:40 +08:00
|
|
|
ceph_fscrypt_free_dummy_policy(fsc);
|
2016-03-12 13:20:48 +08:00
|
|
|
return ERR_PTR(err);
|
2009-10-07 02:31:07 +08:00
|
|
|
}
|
|
|
|
|
2019-03-26 00:38:32 +08:00
|
|
|
static int ceph_set_super(struct super_block *s, struct fs_context *fc)
|
2009-10-07 02:31:07 +08:00
|
|
|
{
|
2019-03-26 00:38:32 +08:00
|
|
|
struct ceph_fs_client *fsc = s->s_fs_info;
|
2023-06-12 09:04:07 +08:00
|
|
|
struct ceph_client *cl = fsc->client;
|
2009-10-07 02:31:07 +08:00
|
|
|
int ret;
|
|
|
|
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "%p\n", s);
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2018-07-19 22:15:24 +08:00
|
|
|
s->s_maxbytes = MAX_LFS_FILESIZE;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2013-11-11 15:18:03 +08:00
|
|
|
s->s_xattr = ceph_xattr_handlers;
|
2010-04-07 06:14:15 +08:00
|
|
|
fsc->sb = s;
|
2018-07-19 22:15:24 +08:00
|
|
|
fsc->max_file_size = 1ULL << 40; /* temp value until we get mdsmap */
|
2009-10-07 02:31:07 +08:00
|
|
|
|
|
|
|
s->s_op = &ceph_super_ops;
|
2016-10-29 09:52:50 +08:00
|
|
|
s->s_d_op = &ceph_dentry_ops;
|
2009-10-07 02:31:07 +08:00
|
|
|
s->s_export_op = &ceph_export_ops;
|
|
|
|
|
2019-06-27 21:51:22 +08:00
|
|
|
s->s_time_gran = 1;
|
2019-03-22 05:34:38 +08:00
|
|
|
s->s_time_min = 0;
|
|
|
|
s->s_time_max = U32_MAX;
|
2022-04-20 13:13:02 +08:00
|
|
|
s->s_flags |= SB_NODIRATIME | SB_NOATIME;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2020-07-27 22:16:09 +08:00
|
|
|
ceph_fscrypt_set_ops(s);
|
|
|
|
|
2019-03-26 00:38:32 +08:00
|
|
|
ret = set_anon_super_fc(s, fc);
|
2009-10-07 02:31:07 +08:00
|
|
|
if (ret != 0)
|
2019-03-26 00:38:32 +08:00
|
|
|
fsc->sb = NULL;
|
2009-10-07 02:31:07 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* share superblock if same fs AND options
|
|
|
|
*/
|
2019-03-26 00:38:32 +08:00
|
|
|
static int ceph_compare_super(struct super_block *sb, struct fs_context *fc)
|
2009-10-07 02:31:07 +08:00
|
|
|
{
|
2019-03-26 00:38:32 +08:00
|
|
|
struct ceph_fs_client *new = fc->s_fs_info;
|
2010-04-07 06:14:15 +08:00
|
|
|
struct ceph_mount_options *fsopt = new->mount_options;
|
|
|
|
struct ceph_options *opt = new->client->options;
|
2023-06-12 10:50:38 +08:00
|
|
|
struct ceph_fs_client *fsc = ceph_sb_to_fs_client(sb);
|
2023-06-12 09:04:07 +08:00
|
|
|
struct ceph_client *cl = fsc->client;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "%p\n", sb);
|
2010-04-07 06:14:15 +08:00
|
|
|
|
2021-09-30 20:33:13 +08:00
|
|
|
if (compare_mount_options(fsopt, opt, fsc)) {
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "monitor(s)/mount options don't match\n");
|
2010-04-07 06:14:15 +08:00
|
|
|
return 0;
|
2009-10-07 02:31:07 +08:00
|
|
|
}
|
2010-04-07 06:14:15 +08:00
|
|
|
if ((opt->flags & CEPH_OPT_FSID) &&
|
2021-09-30 20:33:13 +08:00
|
|
|
ceph_fsid_compare(&opt->fsid, &fsc->client->fsid)) {
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "fsid doesn't match\n");
|
2010-04-07 06:14:15 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2019-03-26 00:38:32 +08:00
|
|
|
if (fc->sb_flags != (sb->s_flags & ~SB_BORN)) {
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "flags differ\n");
|
2009-10-07 02:31:07 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2021-09-30 20:33:13 +08:00
|
|
|
|
|
|
|
if (fsc->blocklisted && !ceph_test_mount_opt(fsc, CLEANRECOVER)) {
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "client is blocklisted (and CLEANRECOVER is not set)\n");
|
2021-09-30 20:33:13 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fsc->mount_state == CEPH_MOUNT_SHUTDOWN) {
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "client has been forcibly unmounted\n");
|
2021-09-30 20:33:13 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-07 02:31:07 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* construct our own bdi so we can control readahead, etc.
|
|
|
|
*/
|
2010-06-10 23:13:58 +08:00
|
|
|
static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
|
2010-05-05 07:39:35 +08:00
|
|
|
|
2017-04-12 18:24:33 +08:00
|
|
|
static int ceph_setup_bdi(struct super_block *sb, struct ceph_fs_client *fsc)
|
2009-10-07 02:31:07 +08:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2017-04-12 18:24:33 +08:00
|
|
|
err = super_setup_bdi_name(sb, "ceph-%ld",
|
|
|
|
atomic_long_inc_return(&bdi_seq));
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2011-08-04 23:03:44 +08:00
|
|
|
/* set ra_pages based on rasize mount option? */
|
2017-07-11 18:49:44 +08:00
|
|
|
sb->s_bdi->ra_pages = fsc->mount_options->rasize >> PAGE_SHIFT;
|
2011-07-23 02:12:28 +08:00
|
|
|
|
2017-07-11 15:56:09 +08:00
|
|
|
/* set io_pages based on max osd read size */
|
|
|
|
sb->s_bdi->io_pages = fsc->mount_options->rsize >> PAGE_SHIFT;
|
2017-01-10 21:17:56 +08:00
|
|
|
|
2017-04-12 18:24:33 +08:00
|
|
|
return 0;
|
2009-10-07 02:31:07 +08:00
|
|
|
}
|
|
|
|
|
2019-03-26 00:38:32 +08:00
|
|
|
static int ceph_get_tree(struct fs_context *fc)
|
2009-10-07 02:31:07 +08:00
|
|
|
{
|
2019-03-26 00:38:32 +08:00
|
|
|
struct ceph_parse_opts_ctx *pctx = fc->fs_private;
|
2021-07-14 18:05:52 +08:00
|
|
|
struct ceph_mount_options *fsopt = pctx->opts;
|
2009-10-07 02:31:07 +08:00
|
|
|
struct super_block *sb;
|
2010-04-07 06:14:15 +08:00
|
|
|
struct ceph_fs_client *fsc;
|
2010-07-26 20:17:55 +08:00
|
|
|
struct dentry *res;
|
2019-03-26 00:38:32 +08:00
|
|
|
int (*compare_super)(struct super_block *, struct fs_context *) =
|
|
|
|
ceph_compare_super;
|
2009-10-07 02:31:07 +08:00
|
|
|
int err;
|
|
|
|
|
2019-03-26 00:38:32 +08:00
|
|
|
dout("ceph_get_tree\n");
|
|
|
|
|
|
|
|
if (!fc->source)
|
2019-12-22 10:31:52 +08:00
|
|
|
return invalfc(fc, "No source");
|
2021-07-14 18:05:52 +08:00
|
|
|
if (fsopt->new_dev_syntax && !fsopt->mon_addr)
|
|
|
|
return invalfc(fc, "No monitor address");
|
2014-02-17 02:05:29 +08:00
|
|
|
|
2009-10-07 02:31:07 +08:00
|
|
|
/* create client (which we may/may not use) */
|
2019-03-26 00:38:32 +08:00
|
|
|
fsc = create_fs_client(pctx->opts, pctx->copts);
|
|
|
|
pctx->opts = NULL;
|
|
|
|
pctx->copts = NULL;
|
2010-04-07 06:14:15 +08:00
|
|
|
if (IS_ERR(fsc)) {
|
2019-03-26 00:38:32 +08:00
|
|
|
err = PTR_ERR(fsc);
|
2009-10-28 02:50:50 +08:00
|
|
|
goto out_final;
|
|
|
|
}
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
err = ceph_mdsc_init(fsc);
|
2019-03-26 00:38:32 +08:00
|
|
|
if (err < 0)
|
2010-04-07 06:14:15 +08:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (ceph_test_opt(fsc->client, NOSHARE))
|
2009-10-07 02:31:07 +08:00
|
|
|
compare_super = NULL;
|
2019-03-26 00:38:32 +08:00
|
|
|
|
|
|
|
fc->s_fs_info = fsc;
|
|
|
|
sb = sget_fc(fc, compare_super, ceph_set_super);
|
|
|
|
fc->s_fs_info = NULL;
|
2009-10-07 02:31:07 +08:00
|
|
|
if (IS_ERR(sb)) {
|
2019-03-26 00:38:32 +08:00
|
|
|
err = PTR_ERR(sb);
|
2009-10-07 02:31:07 +08:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2023-06-12 10:50:38 +08:00
|
|
|
if (ceph_sb_to_fs_client(sb) != fsc) {
|
2010-04-07 06:14:15 +08:00
|
|
|
destroy_fs_client(fsc);
|
2023-06-12 10:50:38 +08:00
|
|
|
fsc = ceph_sb_to_fs_client(sb);
|
2010-04-07 06:14:15 +08:00
|
|
|
dout("get_sb got existing client %p\n", fsc);
|
2009-10-07 02:31:07 +08:00
|
|
|
} else {
|
2010-04-07 06:14:15 +08:00
|
|
|
dout("get_sb using new client %p\n", fsc);
|
2017-04-12 18:24:33 +08:00
|
|
|
err = ceph_setup_bdi(sb, fsc);
|
2019-03-26 00:38:32 +08:00
|
|
|
if (err < 0)
|
2009-10-07 02:31:07 +08:00
|
|
|
goto out_splat;
|
|
|
|
}
|
|
|
|
|
2019-03-26 00:38:32 +08:00
|
|
|
res = ceph_real_mount(fsc, fc);
|
|
|
|
if (IS_ERR(res)) {
|
|
|
|
err = PTR_ERR(res);
|
2009-10-07 02:31:07 +08:00
|
|
|
goto out_splat;
|
2019-03-26 00:38:32 +08:00
|
|
|
}
|
2023-06-12 09:04:07 +08:00
|
|
|
|
|
|
|
doutc(fsc->client, "root %p inode %p ino %llx.%llx\n", res,
|
|
|
|
d_inode(res), ceph_vinop(d_inode(res)));
|
2019-03-26 00:38:32 +08:00
|
|
|
fc->root = fsc->sb->s_root;
|
|
|
|
return 0;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
|
|
|
out_splat:
|
2019-12-11 09:29:40 +08:00
|
|
|
if (!ceph_mdsmap_is_cluster_available(fsc->mdsc->mdsmap)) {
|
|
|
|
pr_info("No mds server is up or the cluster is laggy\n");
|
|
|
|
err = -EHOSTUNREACH;
|
|
|
|
}
|
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
ceph_mdsc_close_sessions(fsc->mdsc);
|
2010-03-22 07:22:29 +08:00
|
|
|
deactivate_locked_super(sb);
|
2009-10-07 02:31:07 +08:00
|
|
|
goto out_final;
|
|
|
|
|
|
|
|
out:
|
2010-04-07 06:14:15 +08:00
|
|
|
destroy_fs_client(fsc);
|
2009-10-07 02:31:07 +08:00
|
|
|
out_final:
|
2019-03-26 00:38:32 +08:00
|
|
|
dout("ceph_get_tree fail %d\n", err);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ceph_free_fc(struct fs_context *fc)
|
|
|
|
{
|
|
|
|
struct ceph_parse_opts_ctx *pctx = fc->fs_private;
|
|
|
|
|
|
|
|
if (pctx) {
|
|
|
|
destroy_mount_options(pctx->opts);
|
|
|
|
ceph_destroy_options(pctx->copts);
|
|
|
|
kfree(pctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ceph_reconfigure_fc(struct fs_context *fc)
|
|
|
|
{
|
2020-09-08 21:47:40 +08:00
|
|
|
int err;
|
ceph: perform asynchronous unlink if we have sufficient caps
The MDS is getting a new lock-caching facility that will allow it
to cache the necessary locks to allow asynchronous directory operations.
Since the CEPH_CAP_FILE_* caps are currently unused on directories,
we can repurpose those bits for this purpose.
When performing an unlink, if we have Fx on the parent directory,
and CEPH_CAP_DIR_UNLINK (aka Fr), and we know that the dentry being
removed is the primary link, then then we can fire off an unlink
request immediately and don't need to wait on reply before returning.
In that situation, just fix up the dcache and link count and return
immediately after issuing the call to the MDS. This does mean that we
need to hold an extra reference to the inode being unlinked, and extra
references to the caps to avoid races. Those references are put and
error handling is done in the r_callback routine.
If the operation ends up failing, then set a writeback error on the
directory inode, and the inode itself that can be fetched later by
an fsync on the dir.
The behavior of dir caps is slightly different from caps on normal
files. Because these are just considered an optimization, if the
session is reconnected, we will not automatically reclaim them. They
are instead considered lost until we do another synchronous op in the
parent directory.
Async dirops are enabled via the "nowsync" mount option, which is
patterned after the xfs "wsync" mount option. For now, the default
is "wsync", but eventually we may flip that.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: "Yan, Zheng" <zyan@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
2019-04-03 03:35:56 +08:00
|
|
|
struct ceph_parse_opts_ctx *pctx = fc->fs_private;
|
|
|
|
struct ceph_mount_options *fsopt = pctx->opts;
|
2020-09-08 21:47:40 +08:00
|
|
|
struct super_block *sb = fc->root->d_sb;
|
2023-06-12 10:50:38 +08:00
|
|
|
struct ceph_fs_client *fsc = ceph_sb_to_fs_client(sb);
|
2020-09-08 21:47:40 +08:00
|
|
|
|
|
|
|
err = ceph_apply_test_dummy_encryption(sb, fc, fsopt);
|
|
|
|
if (err)
|
|
|
|
return err;
|
ceph: perform asynchronous unlink if we have sufficient caps
The MDS is getting a new lock-caching facility that will allow it
to cache the necessary locks to allow asynchronous directory operations.
Since the CEPH_CAP_FILE_* caps are currently unused on directories,
we can repurpose those bits for this purpose.
When performing an unlink, if we have Fx on the parent directory,
and CEPH_CAP_DIR_UNLINK (aka Fr), and we know that the dentry being
removed is the primary link, then then we can fire off an unlink
request immediately and don't need to wait on reply before returning.
In that situation, just fix up the dcache and link count and return
immediately after issuing the call to the MDS. This does mean that we
need to hold an extra reference to the inode being unlinked, and extra
references to the caps to avoid races. Those references are put and
error handling is done in the r_callback routine.
If the operation ends up failing, then set a writeback error on the
directory inode, and the inode itself that can be fetched later by
an fsync on the dir.
The behavior of dir caps is slightly different from caps on normal
files. Because these are just considered an optimization, if the
session is reconnected, we will not automatically reclaim them. They
are instead considered lost until we do another synchronous op in the
parent directory.
Async dirops are enabled via the "nowsync" mount option, which is
patterned after the xfs "wsync" mount option. For now, the default
is "wsync", but eventually we may flip that.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: "Yan, Zheng" <zyan@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
2019-04-03 03:35:56 +08:00
|
|
|
|
|
|
|
if (fsopt->flags & CEPH_MOUNT_OPT_ASYNC_DIROPS)
|
|
|
|
ceph_set_mount_opt(fsc, ASYNC_DIROPS);
|
|
|
|
else
|
|
|
|
ceph_clear_mount_opt(fsc, ASYNC_DIROPS);
|
|
|
|
|
2022-02-26 19:33:03 +08:00
|
|
|
if (fsopt->flags & CEPH_MOUNT_OPT_SPARSEREAD)
|
|
|
|
ceph_set_mount_opt(fsc, SPARSEREAD);
|
|
|
|
else
|
|
|
|
ceph_clear_mount_opt(fsc, SPARSEREAD);
|
|
|
|
|
2021-07-14 18:05:53 +08:00
|
|
|
if (strcmp_null(fsc->mount_options->mon_addr, fsopt->mon_addr)) {
|
|
|
|
kfree(fsc->mount_options->mon_addr);
|
|
|
|
fsc->mount_options->mon_addr = fsopt->mon_addr;
|
|
|
|
fsopt->mon_addr = NULL;
|
2023-06-12 09:04:07 +08:00
|
|
|
pr_notice_client(fsc->client,
|
|
|
|
"monitor addresses recorded, but not used for reconnection");
|
2021-07-14 18:05:53 +08:00
|
|
|
}
|
|
|
|
|
2020-09-08 21:47:40 +08:00
|
|
|
sync_filesystem(sb);
|
2019-03-26 00:38:32 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct fs_context_operations ceph_context_ops = {
|
|
|
|
.free = ceph_free_fc,
|
|
|
|
.parse_param = ceph_parse_mount_param,
|
|
|
|
.get_tree = ceph_get_tree,
|
|
|
|
.reconfigure = ceph_reconfigure_fc,
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up the filesystem mount context.
|
|
|
|
*/
|
|
|
|
static int ceph_init_fs_context(struct fs_context *fc)
|
|
|
|
{
|
|
|
|
struct ceph_parse_opts_ctx *pctx;
|
|
|
|
struct ceph_mount_options *fsopt;
|
|
|
|
|
|
|
|
pctx = kzalloc(sizeof(*pctx), GFP_KERNEL);
|
|
|
|
if (!pctx)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
pctx->copts = ceph_alloc_options();
|
|
|
|
if (!pctx->copts)
|
|
|
|
goto nomem;
|
|
|
|
|
|
|
|
pctx->opts = kzalloc(sizeof(*pctx->opts), GFP_KERNEL);
|
|
|
|
if (!pctx->opts)
|
|
|
|
goto nomem;
|
|
|
|
|
|
|
|
fsopt = pctx->opts;
|
|
|
|
fsopt->flags = CEPH_MOUNT_OPT_DEFAULT;
|
|
|
|
|
|
|
|
fsopt->wsize = CEPH_MAX_WRITE_SIZE;
|
|
|
|
fsopt->rsize = CEPH_MAX_READ_SIZE;
|
|
|
|
fsopt->rasize = CEPH_RASIZE_DEFAULT;
|
|
|
|
fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
|
|
|
|
if (!fsopt->snapdir_name)
|
|
|
|
goto nomem;
|
|
|
|
|
|
|
|
fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
|
|
|
|
fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
|
|
|
|
fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
|
|
|
|
fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
|
|
|
|
fsopt->congestion_kb = default_congestion_kb();
|
|
|
|
|
2020-02-11 14:53:16 +08:00
|
|
|
#ifdef CONFIG_CEPH_FS_POSIX_ACL
|
|
|
|
fc->sb_flags |= SB_POSIXACL;
|
|
|
|
#endif
|
|
|
|
|
2019-03-26 00:38:32 +08:00
|
|
|
fc->fs_private = pctx;
|
|
|
|
fc->ops = &ceph_context_ops;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
nomem:
|
|
|
|
destroy_mount_options(pctx->opts);
|
|
|
|
ceph_destroy_options(pctx->copts);
|
|
|
|
kfree(pctx);
|
|
|
|
return -ENOMEM;
|
2009-10-07 02:31:07 +08:00
|
|
|
}
|
|
|
|
|
2022-12-21 14:13:51 +08:00
|
|
|
/*
|
|
|
|
* Return true if it successfully increases the blocker counter,
|
|
|
|
* or false if the mdsc is in stopping and flushed state.
|
|
|
|
*/
|
|
|
|
static bool __inc_stopping_blocker(struct ceph_mds_client *mdsc)
|
|
|
|
{
|
|
|
|
spin_lock(&mdsc->stopping_lock);
|
|
|
|
if (mdsc->stopping >= CEPH_MDSC_STOPPING_FLUSHING) {
|
|
|
|
spin_unlock(&mdsc->stopping_lock);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
atomic_inc(&mdsc->stopping_blockers);
|
|
|
|
spin_unlock(&mdsc->stopping_lock);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __dec_stopping_blocker(struct ceph_mds_client *mdsc)
|
|
|
|
{
|
|
|
|
spin_lock(&mdsc->stopping_lock);
|
|
|
|
if (!atomic_dec_return(&mdsc->stopping_blockers) &&
|
|
|
|
mdsc->stopping >= CEPH_MDSC_STOPPING_FLUSHING)
|
|
|
|
complete_all(&mdsc->stopping_waiter);
|
|
|
|
spin_unlock(&mdsc->stopping_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For metadata IO requests */
|
|
|
|
bool ceph_inc_mds_stopping_blocker(struct ceph_mds_client *mdsc,
|
|
|
|
struct ceph_mds_session *session)
|
|
|
|
{
|
|
|
|
mutex_lock(&session->s_mutex);
|
|
|
|
inc_session_sequence(session);
|
|
|
|
mutex_unlock(&session->s_mutex);
|
|
|
|
|
|
|
|
return __inc_stopping_blocker(mdsc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ceph_dec_mds_stopping_blocker(struct ceph_mds_client *mdsc)
|
|
|
|
{
|
|
|
|
__dec_stopping_blocker(mdsc);
|
|
|
|
}
|
|
|
|
|
2023-05-09 16:38:49 +08:00
|
|
|
/* For data IO requests */
|
|
|
|
bool ceph_inc_osd_stopping_blocker(struct ceph_mds_client *mdsc)
|
|
|
|
{
|
|
|
|
return __inc_stopping_blocker(mdsc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ceph_dec_osd_stopping_blocker(struct ceph_mds_client *mdsc)
|
|
|
|
{
|
|
|
|
__dec_stopping_blocker(mdsc);
|
|
|
|
}
|
|
|
|
|
2009-10-07 02:31:07 +08:00
|
|
|
static void ceph_kill_sb(struct super_block *s)
|
|
|
|
{
|
2023-06-12 10:50:38 +08:00
|
|
|
struct ceph_fs_client *fsc = ceph_sb_to_fs_client(s);
|
2023-06-12 09:04:07 +08:00
|
|
|
struct ceph_client *cl = fsc->client;
|
2022-12-21 14:13:51 +08:00
|
|
|
struct ceph_mds_client *mdsc = fsc->mdsc;
|
|
|
|
bool wait;
|
2015-01-14 17:42:38 +08:00
|
|
|
|
2023-06-12 09:04:07 +08:00
|
|
|
doutc(cl, "%p\n", s);
|
2015-01-14 17:42:38 +08:00
|
|
|
|
2022-12-21 14:13:51 +08:00
|
|
|
ceph_mdsc_pre_umount(mdsc);
|
2018-05-18 16:05:51 +08:00
|
|
|
flush_fs_workqueues(fsc);
|
|
|
|
|
2023-07-25 12:03:59 +08:00
|
|
|
/*
|
|
|
|
* Though the kill_anon_super() will finally trigger the
|
2022-12-21 14:13:51 +08:00
|
|
|
* sync_filesystem() anyway, we still need to do it here and
|
|
|
|
* then bump the stage of shutdown. This will allow us to
|
|
|
|
* drop any further message, which will increase the inodes'
|
|
|
|
* i_count reference counters but makes no sense any more,
|
|
|
|
* from MDSs.
|
|
|
|
*
|
|
|
|
* Without this when evicting the inodes it may fail in the
|
|
|
|
* kill_anon_super(), which will trigger a warning when
|
|
|
|
* destroying the fscrypt keyring and then possibly trigger
|
|
|
|
* a further crash in ceph module when the iput() tries to
|
|
|
|
* evict the inodes later.
|
2023-07-25 12:03:59 +08:00
|
|
|
*/
|
|
|
|
sync_filesystem(s);
|
|
|
|
|
2022-12-21 14:13:51 +08:00
|
|
|
spin_lock(&mdsc->stopping_lock);
|
|
|
|
mdsc->stopping = CEPH_MDSC_STOPPING_FLUSHING;
|
|
|
|
wait = !!atomic_read(&mdsc->stopping_blockers);
|
|
|
|
spin_unlock(&mdsc->stopping_lock);
|
|
|
|
|
|
|
|
if (wait && atomic_read(&mdsc->stopping_blockers)) {
|
|
|
|
long timeleft = wait_for_completion_killable_timeout(
|
|
|
|
&mdsc->stopping_waiter,
|
|
|
|
fsc->client->options->mount_timeout);
|
|
|
|
if (!timeleft) /* timed out */
|
2023-06-12 09:04:07 +08:00
|
|
|
pr_warn_client(cl, "umount timed out, %ld\n", timeleft);
|
2022-12-21 14:13:51 +08:00
|
|
|
else if (timeleft < 0) /* killed */
|
2023-06-12 09:04:07 +08:00
|
|
|
pr_warn_client(cl, "umount was killed, %ld\n", timeleft);
|
2022-12-21 14:13:51 +08:00
|
|
|
}
|
2023-07-25 12:03:59 +08:00
|
|
|
|
2022-12-21 14:13:51 +08:00
|
|
|
mdsc->stopping = CEPH_MDSC_STOPPING_FLUSHED;
|
2020-09-12 03:19:00 +08:00
|
|
|
kill_anon_super(s);
|
2017-06-22 16:26:34 +08:00
|
|
|
|
|
|
|
fsc->client->extra_mon_dispatch = NULL;
|
|
|
|
ceph_fs_debugfs_cleanup(fsc);
|
|
|
|
|
2017-06-27 11:57:56 +08:00
|
|
|
ceph_fscache_unregister_fs(fsc);
|
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
destroy_fs_client(fsc);
|
2009-10-07 02:31:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct file_system_type ceph_fs_type = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.name = "ceph",
|
2019-03-26 00:38:32 +08:00
|
|
|
.init_fs_context = ceph_init_fs_context,
|
2009-10-07 02:31:07 +08:00
|
|
|
.kill_sb = ceph_kill_sb,
|
2023-08-07 21:26:26 +08:00
|
|
|
.fs_flags = FS_RENAME_DOES_D_MOVE | FS_ALLOW_IDMAP,
|
2009-10-07 02:31:07 +08:00
|
|
|
};
|
2013-03-03 11:39:14 +08:00
|
|
|
MODULE_ALIAS_FS("ceph");
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2019-07-25 20:16:44 +08:00
|
|
|
int ceph_force_reconnect(struct super_block *sb)
|
|
|
|
{
|
2023-06-12 10:50:38 +08:00
|
|
|
struct ceph_fs_client *fsc = ceph_sb_to_fs_client(sb);
|
2019-07-25 20:16:44 +08:00
|
|
|
int err = 0;
|
|
|
|
|
2020-09-25 19:55:39 +08:00
|
|
|
fsc->mount_state = CEPH_MOUNT_RECOVER;
|
|
|
|
__ceph_umount_begin(fsc);
|
2019-07-25 20:16:44 +08:00
|
|
|
|
|
|
|
/* Make sure all page caches get invalidated.
|
|
|
|
* see remove_session_caps_cb() */
|
|
|
|
flush_workqueue(fsc->inode_wq);
|
|
|
|
|
2020-09-14 19:39:19 +08:00
|
|
|
/* In case that we were blocklisted. This also reset
|
2019-07-25 20:16:44 +08:00
|
|
|
* all mon/osd connections */
|
|
|
|
ceph_reset_client_addr(fsc->client);
|
|
|
|
|
|
|
|
ceph_osdc_clear_abort_err(&fsc->client->osdc);
|
2019-07-25 20:16:47 +08:00
|
|
|
|
2020-09-14 19:39:19 +08:00
|
|
|
fsc->blocklisted = false;
|
2019-07-25 20:16:44 +08:00
|
|
|
fsc->mount_state = CEPH_MOUNT_MOUNTED;
|
|
|
|
|
|
|
|
if (sb->s_root) {
|
|
|
|
err = __ceph_do_getattr(d_inode(sb->s_root), NULL,
|
|
|
|
CEPH_STAT_CAP_INODE, true);
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2009-10-07 02:31:07 +08:00
|
|
|
static int __init init_ceph(void)
|
|
|
|
{
|
2010-04-07 06:14:15 +08:00
|
|
|
int ret = init_caches();
|
2009-10-07 02:31:07 +08:00
|
|
|
if (ret)
|
2010-04-07 06:14:15 +08:00
|
|
|
goto out;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2014-03-09 23:16:40 +08:00
|
|
|
ceph_flock_init();
|
2009-10-07 02:31:07 +08:00
|
|
|
ret = register_filesystem(&ceph_fs_type);
|
|
|
|
if (ret)
|
2019-04-18 20:15:49 +08:00
|
|
|
goto out_caches;
|
2009-10-07 02:31:07 +08:00
|
|
|
|
2010-04-07 06:14:15 +08:00
|
|
|
pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
|
|
|
|
|
2009-10-07 02:31:07 +08:00
|
|
|
return 0;
|
|
|
|
|
2019-04-18 20:15:49 +08:00
|
|
|
out_caches:
|
2009-10-07 02:31:07 +08:00
|
|
|
destroy_caches();
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit exit_ceph(void)
|
|
|
|
{
|
|
|
|
dout("exit_ceph\n");
|
|
|
|
unregister_filesystem(&ceph_fs_type);
|
|
|
|
destroy_caches();
|
|
|
|
}
|
|
|
|
|
2020-07-16 22:05:57 +08:00
|
|
|
static int param_set_metrics(const char *val, const struct kernel_param *kp)
|
|
|
|
{
|
|
|
|
struct ceph_fs_client *fsc;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = param_set_bool(val, kp);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("Failed to parse sending metrics switch value '%s'\n",
|
|
|
|
val);
|
|
|
|
return ret;
|
|
|
|
} else if (!disable_send_metrics) {
|
|
|
|
// wake up all the mds clients
|
|
|
|
spin_lock(&ceph_fsc_lock);
|
|
|
|
list_for_each_entry(fsc, &ceph_fsc_list, metric_wakeup) {
|
|
|
|
metric_schedule_delayed(&fsc->mdsc->metric);
|
|
|
|
}
|
|
|
|
spin_unlock(&ceph_fsc_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct kernel_param_ops param_ops_metrics = {
|
|
|
|
.set = param_set_metrics,
|
|
|
|
.get = param_get_bool,
|
|
|
|
};
|
|
|
|
|
|
|
|
bool disable_send_metrics = false;
|
|
|
|
module_param_cb(disable_send_metrics, ¶m_ops_metrics, &disable_send_metrics, 0644);
|
|
|
|
MODULE_PARM_DESC(disable_send_metrics, "Enable sending perf metrics to ceph cluster (default: on)");
|
|
|
|
|
2021-11-03 13:00:39 +08:00
|
|
|
/* for both v1 and v2 syntax */
|
|
|
|
static bool mount_support = true;
|
|
|
|
static const struct kernel_param_ops param_ops_mount_syntax = {
|
|
|
|
.get = param_get_bool,
|
|
|
|
};
|
|
|
|
module_param_cb(mount_syntax_v1, ¶m_ops_mount_syntax, &mount_support, 0444);
|
|
|
|
module_param_cb(mount_syntax_v2, ¶m_ops_mount_syntax, &mount_support, 0444);
|
|
|
|
|
2023-08-07 21:26:18 +08:00
|
|
|
bool enable_unsafe_idmap = false;
|
|
|
|
module_param(enable_unsafe_idmap, bool, 0644);
|
|
|
|
MODULE_PARM_DESC(enable_unsafe_idmap,
|
|
|
|
"Allow to use idmapped mounts with MDS without CEPHFS_FEATURE_HAS_OWNER_UIDGID");
|
|
|
|
|
2009-10-07 02:31:07 +08:00
|
|
|
module_init(init_ceph);
|
|
|
|
module_exit(exit_ceph);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
|
|
|
|
MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
|
|
|
|
MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
|
|
|
|
MODULE_DESCRIPTION("Ceph filesystem for Linux");
|
|
|
|
MODULE_LICENSE("GPL");
|