Viewing: sec_ctx.c
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2014, 2017, Intel Corporation.
*/
#define DEBUG_SUBSYSTEM S_FILTER
#include <linux/fs.h>
#include <linux/fs_struct.h>
#include <linux/mount.h>
#include <lvfs.h>
#include <obd_class.h>
#include "ptlrpc_internal.h"
/* refine later and change to seqlock or simlar from libcfs */
/* Debugging check only needed during development */
#ifdef OBD_CTXT_DEBUG
# define ASSERT_CTXT_MAGIC(magic) LASSERT((magic) == OBD_RUN_CTXT_MAGIC)
#else
# define ASSERT_CTXT_MAGIC(magic) do {} while(0)
#endif
static inline void ll_set_fs_pwd(struct fs_struct *fs, struct vfsmount *mnt,
struct dentry *dentry)
{
struct path path;
struct path old_pwd;
path.mnt = mnt;
path.dentry = dentry;
path_get(&path);
fs_write_seqlock(fs);
old_pwd = fs->pwd;
fs->pwd = path;
fs_write_sequnlock(fs);
if (old_pwd.dentry)
path_put(&old_pwd);
}
/* push / pop to root of obd store */
void push_ctxt(struct lvfs_run_ctxt *save, struct lvfs_run_ctxt *new_ctx)
{
/* if there is underlaying dt_device then push_ctxt is not needed */
if (new_ctx->dt != NULL)
return;
ASSERT_CTXT_MAGIC(new_ctx->magic);
OBD_SET_CTXT_MAGIC(save);
LASSERT(d_count(current->fs->pwd.dentry));
LASSERT(d_count(new_ctx->pwd));
save->pwd = dget(current->fs->pwd.dentry);
save->pwdmnt = mntget(current->fs->pwd.mnt);
save->umask = current_umask();
LASSERT(save->pwd);
LASSERT(save->pwdmnt);
LASSERT(new_ctx->pwd);
LASSERT(new_ctx->pwdmnt);
current->fs->umask = 0; /* umask already applied on client */
ll_set_fs_pwd(current->fs, new_ctx->pwdmnt, new_ctx->pwd);
}
EXPORT_SYMBOL(push_ctxt);
void pop_ctxt(struct lvfs_run_ctxt *saved, struct lvfs_run_ctxt *new_ctx)
{
/* if there is underlaying dt_device then pop_ctxt is not needed */
if (new_ctx->dt != NULL)
return;
ASSERT_CTXT_MAGIC(saved->magic);
LASSERTF(current->fs->pwd.dentry == new_ctx->pwd, "%px != %px\n",
current->fs->pwd.dentry, new_ctx->pwd);
LASSERTF(current->fs->pwd.mnt == new_ctx->pwdmnt, "%px != %px\n",
current->fs->pwd.mnt, new_ctx->pwdmnt);
ll_set_fs_pwd(current->fs, saved->pwdmnt, saved->pwd);
dput(saved->pwd);
mntput(saved->pwdmnt);
current->fs->umask = saved->umask;
}
EXPORT_SYMBOL(pop_ctxt);