mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
Fixes for a umask bug on exported filesystems lacking ACL support, a
leak and a module unloading bug in the /proc/fs/nfsd/clients/ code, and a compile warning. -----BEGIN PGP SIGNATURE----- iQJJBAABCAAzFiEEYtFWavXG9hZotryuJ5vNeUKO4b4FAl79+IoVHGJmaWVsZHNA ZmllbGRzZXMub3JnAAoJECebzXlCjuG+6I8P/24e9/W50SUBsQYseG2BpwjR/RsQ YjMbqrf1XOxo+8axNpdbe0bhq2jWiyQz0esnF33RlztlDSJmSNJfueWDSezKzKwC o8afQx0qJaVZUsT/XAXa2Hk2OZd2ZYF6f3DGMiz+knBGdAzSwJjpgqhzocMCQ3Hr t/PG6DJazLB3VDIe1VziTet2uv52A0A+uBYKguK/QPlpae2uXKFJ8U7v6wCsU395 Sqd2/X2KGbeYoCrWsmpvdCDVeNmAbI0KlhY8pR6BHqGp7TYm4+AueqWzpYHlNHei PukM8AROoTBEAc6Wiqqmp0UKRR+Qn/9NIuvQtvBnC6WGIPjEG1hTkAwlRfT6VYvn oPg4oekKjRJLz/TSaqfJRpli5GwxfWAW14LTZZT+Xe0/7FhVe28/R8F1dP5ZJaeq h9//4rCt/yUYAQq1odOMbNCr0rGVcKzdSN3E36OvJFVQ9bMyXHKetKHywOki13w5 M8UQK5zb21ghT7OSICmeRXHqsXRmTFO8QhUZ8L63Qb2hfiQ5fVQdSiHmM8iRcwWY bxqrSs8YV7i+I0i1YYTYWmmFgP8Y11sL7ovAEs86cP2Rk58Bk5VA2TPT114W53AD xaZHpjsH0AfZS87dEVdvS2/dAdtbHZsFwHxGnfvyl/CKTqoz5yY5etcwULQI3+XQ 8kG8FOFpt7T/5zmB =wF3M -----END PGP SIGNATURE----- Merge tag 'nfsd-5.8-1' of git://linux-nfs.org/~bfields/linux Pull nfsd fixes from Bruce Fields: "Fixes for a umask bug on exported filesystems lacking ACL support, a leak and a module unloading bug in the /proc/fs/nfsd/clients/ code, and a compile warning" * tag 'nfsd-5.8-1' of git://linux-nfs.org/~bfields/linux: SUNRPC: Add missing definition of ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE nfsd: fix nfsdfs inode reference count leak nfsd4: fix nfsdfs reference count loop nfsd: apply umask on fs without ACL support
This commit is contained in:
commit
083176c86f
@ -7912,9 +7912,14 @@ nfs4_state_start_net(struct net *net)
|
|||||||
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
|
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = nfs4_state_create_net(net);
|
ret = get_nfsdfs(net);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
ret = nfs4_state_create_net(net);
|
||||||
|
if (ret) {
|
||||||
|
mntput(nn->nfsd_mnt);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
locks_start_grace(net, &nn->nfsd4_manager);
|
locks_start_grace(net, &nn->nfsd4_manager);
|
||||||
nfsd4_client_tracking_init(net);
|
nfsd4_client_tracking_init(net);
|
||||||
if (nn->track_reclaim_completes && nn->reclaim_str_hashtbl_size == 0)
|
if (nn->track_reclaim_completes && nn->reclaim_str_hashtbl_size == 0)
|
||||||
@ -7984,6 +7989,7 @@ nfs4_state_shutdown_net(struct net *net)
|
|||||||
|
|
||||||
nfsd4_client_tracking_exit(net);
|
nfsd4_client_tracking_exit(net);
|
||||||
nfs4_state_destroy_net(net);
|
nfs4_state_destroy_net(net);
|
||||||
|
mntput(nn->nfsd_mnt);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -1335,6 +1335,7 @@ void nfsd_client_rmdir(struct dentry *dentry)
|
|||||||
WARN_ON_ONCE(ret);
|
WARN_ON_ONCE(ret);
|
||||||
fsnotify_rmdir(dir, dentry);
|
fsnotify_rmdir(dir, dentry);
|
||||||
d_delete(dentry);
|
d_delete(dentry);
|
||||||
|
dput(dentry);
|
||||||
inode_unlock(dir);
|
inode_unlock(dir);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1424,6 +1425,18 @@ static struct file_system_type nfsd_fs_type = {
|
|||||||
};
|
};
|
||||||
MODULE_ALIAS_FS("nfsd");
|
MODULE_ALIAS_FS("nfsd");
|
||||||
|
|
||||||
|
int get_nfsdfs(struct net *net)
|
||||||
|
{
|
||||||
|
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
|
||||||
|
struct vfsmount *mnt;
|
||||||
|
|
||||||
|
mnt = vfs_kern_mount(&nfsd_fs_type, SB_KERNMOUNT, "nfsd", NULL);
|
||||||
|
if (IS_ERR(mnt))
|
||||||
|
return PTR_ERR(mnt);
|
||||||
|
nn->nfsd_mnt = mnt;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_PROC_FS
|
#ifdef CONFIG_PROC_FS
|
||||||
static int create_proc_exports_entry(void)
|
static int create_proc_exports_entry(void)
|
||||||
{
|
{
|
||||||
@ -1451,7 +1464,6 @@ unsigned int nfsd_net_id;
|
|||||||
static __net_init int nfsd_init_net(struct net *net)
|
static __net_init int nfsd_init_net(struct net *net)
|
||||||
{
|
{
|
||||||
int retval;
|
int retval;
|
||||||
struct vfsmount *mnt;
|
|
||||||
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
|
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
|
||||||
|
|
||||||
retval = nfsd_export_init(net);
|
retval = nfsd_export_init(net);
|
||||||
@ -1478,16 +1490,8 @@ static __net_init int nfsd_init_net(struct net *net)
|
|||||||
init_waitqueue_head(&nn->ntf_wq);
|
init_waitqueue_head(&nn->ntf_wq);
|
||||||
seqlock_init(&nn->boot_lock);
|
seqlock_init(&nn->boot_lock);
|
||||||
|
|
||||||
mnt = vfs_kern_mount(&nfsd_fs_type, SB_KERNMOUNT, "nfsd", NULL);
|
|
||||||
if (IS_ERR(mnt)) {
|
|
||||||
retval = PTR_ERR(mnt);
|
|
||||||
goto out_mount_err;
|
|
||||||
}
|
|
||||||
nn->nfsd_mnt = mnt;
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
out_mount_err:
|
|
||||||
nfsd_reply_cache_shutdown(nn);
|
|
||||||
out_drc_error:
|
out_drc_error:
|
||||||
nfsd_idmap_shutdown(net);
|
nfsd_idmap_shutdown(net);
|
||||||
out_idmap_error:
|
out_idmap_error:
|
||||||
@ -1500,7 +1504,6 @@ static __net_exit void nfsd_exit_net(struct net *net)
|
|||||||
{
|
{
|
||||||
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
|
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
|
||||||
|
|
||||||
mntput(nn->nfsd_mnt);
|
|
||||||
nfsd_reply_cache_shutdown(nn);
|
nfsd_reply_cache_shutdown(nn);
|
||||||
nfsd_idmap_shutdown(net);
|
nfsd_idmap_shutdown(net);
|
||||||
nfsd_export_shutdown(net);
|
nfsd_export_shutdown(net);
|
||||||
|
@ -90,6 +90,8 @@ void nfsd_destroy(struct net *net);
|
|||||||
|
|
||||||
bool i_am_nfsd(void);
|
bool i_am_nfsd(void);
|
||||||
|
|
||||||
|
int get_nfsdfs(struct net *);
|
||||||
|
|
||||||
struct nfsdfs_client {
|
struct nfsdfs_client {
|
||||||
struct kref cl_ref;
|
struct kref cl_ref;
|
||||||
void (*cl_release)(struct kref *kref);
|
void (*cl_release)(struct kref *kref);
|
||||||
@ -100,6 +102,7 @@ struct dentry *nfsd_client_mkdir(struct nfsd_net *nn,
|
|||||||
struct nfsdfs_client *ncl, u32 id, const struct tree_descr *);
|
struct nfsdfs_client *ncl, u32 id, const struct tree_descr *);
|
||||||
void nfsd_client_rmdir(struct dentry *dentry);
|
void nfsd_client_rmdir(struct dentry *dentry);
|
||||||
|
|
||||||
|
|
||||||
#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
|
#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
|
||||||
#ifdef CONFIG_NFSD_V2_ACL
|
#ifdef CONFIG_NFSD_V2_ACL
|
||||||
extern const struct svc_version nfsd_acl_version2;
|
extern const struct svc_version nfsd_acl_version2;
|
||||||
|
@ -1226,6 +1226,9 @@ nfsd_create_locked(struct svc_rqst *rqstp, struct svc_fh *fhp,
|
|||||||
iap->ia_mode = 0;
|
iap->ia_mode = 0;
|
||||||
iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
|
iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
|
||||||
|
|
||||||
|
if (!IS_POSIXACL(dirp))
|
||||||
|
iap->ia_mode &= ~current_umask();
|
||||||
|
|
||||||
err = 0;
|
err = 0;
|
||||||
host_err = 0;
|
host_err = 0;
|
||||||
switch (type) {
|
switch (type) {
|
||||||
@ -1458,6 +1461,9 @@ do_nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!IS_POSIXACL(dirp))
|
||||||
|
iap->ia_mode &= ~current_umask();
|
||||||
|
|
||||||
host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
|
host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
|
||||||
if (host_err < 0) {
|
if (host_err < 0) {
|
||||||
fh_drop_write(fhp);
|
fh_drop_write(fhp);
|
||||||
|
@ -44,6 +44,7 @@
|
|||||||
#include <net/tcp.h>
|
#include <net/tcp.h>
|
||||||
#include <net/tcp_states.h>
|
#include <net/tcp_states.h>
|
||||||
#include <linux/uaccess.h>
|
#include <linux/uaccess.h>
|
||||||
|
#include <linux/highmem.h>
|
||||||
#include <asm/ioctls.h>
|
#include <asm/ioctls.h>
|
||||||
|
|
||||||
#include <linux/sunrpc/types.h>
|
#include <linux/sunrpc/types.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user