mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
c3e9c04b89
Stable bugfixes: - Revalidate "." and ".." correctly on open - Avoid RCU usage in tracepoints - Fix ugly referral attributes - Fix a typo in nomigration mount option - Revert "NFS: Move the flock open mode check into nfs_flock()" Features: - Implement a stronger send queue accounting system for NFS over RDMA - Switch some atomics to the new refcount_t type Other bugfixes and cleanups: - Clean up access mode bits - Remove special-case revalidations in nfs_opendir() - Improve invalidating NFS over RDMA memory for async operations that time out - Handle NFS over RDMA replies with a worqueue - Handle NFS over RDMA sends with a workqueue - Fix up replaying interrupted requests - Remove dead NFS over RDMA definitions - Update NFS over RDMA copyright information - Be more consistent with bool initialization and comparisons - Mark expected switch fall throughs - Various sunrpc tracepoint cleanups - Fix various OPEN races - Fix a typo in nfs_rename() - Use common error handling code in nfs_lock_and_join_request() - Check that some structures are properly cleaned up during net_exit() - Remove net pointer from dprintk()s -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEnZ5MQTpR7cLU7KEp18tUv7ClQOsFAloPWGwACgkQ18tUv7Cl QOtMVhAAufCkDxqO2lmDH+0JyYUKMcoOMYtI8s2J1HrbEzTW/dVtI28fPAKEEd4m 2JjNqnO516Jiv+g3E6eO4uunZRb4IB3AYT6YaTwmBFE+l7tpMdPb1xybOBP02Hji Y29kzLXwxxvnoxEqFalzCzV2BeRb2kAw6mayY9FxH6AfiEEQZfmxLCYgVuYa2jTC Z/B5E0GxAf28Aj0bIP8lLKbOkFijo851DB88UffEOZQGKUDlAd3GNUSSHb81Rj0N 4ef7bKoGylkIpZ1PdTChdG1+RKqud02zrmQfmEwXui3eUwhOWy8hrKloNykqR5sj pgoDz79euAq4TDVyQKtutnbvVxfCcBeMYAXZhXkZLVcl+39in0kuLj4SxU5AmDhf ErnthG4W7jsLMM96kMvSTaoh4uwioviG1KmZfvuvUoMBSwtiX18hFTWtFKRD6x9e PNOqBdh8nkKYEFbEO4ksfYaWZJ5AuyFIQiIpj1gm+7sf039oN/zEuPV+jaEJG0oa Ef9IqHrQbbCUFYFjpBENr3HjU3igTTaxQ5iq+VYl4zg1pw6m6JTojqZ6qtQzqOYS O3N1ygeShsW934z8QcWjtEyeUXIB3JF9vUS3gEBgWPDyCltGXyq4Cq6Lod4s4JCb pWGI6wJLX1Fg6nq7cj0S4Or3QBgz2q8ZyBxssamhdvON/Ef5ccI= =2Zc1 -----END PGP SIGNATURE----- Merge tag 'nfs-for-4.15-1' of git://git.linux-nfs.org/projects/anna/linux-nfs Pull NFS client updates from Anna Schumaker: "Stable bugfixes: - Revalidate "." and ".." correctly on open - Avoid RCU usage in tracepoints - Fix ugly referral attributes - Fix a typo in nomigration mount option - Revert "NFS: Move the flock open mode check into nfs_flock()" Features: - Implement a stronger send queue accounting system for NFS over RDMA - Switch some atomics to the new refcount_t type Other bugfixes and cleanups: - Clean up access mode bits - Remove special-case revalidations in nfs_opendir() - Improve invalidating NFS over RDMA memory for async operations that time out - Handle NFS over RDMA replies with a worqueue - Handle NFS over RDMA sends with a workqueue - Fix up replaying interrupted requests - Remove dead NFS over RDMA definitions - Update NFS over RDMA copyright information - Be more consistent with bool initialization and comparisons - Mark expected switch fall throughs - Various sunrpc tracepoint cleanups - Fix various OPEN races - Fix a typo in nfs_rename() - Use common error handling code in nfs_lock_and_join_request() - Check that some structures are properly cleaned up during net_exit() - Remove net pointer from dprintk()s" * tag 'nfs-for-4.15-1' of git://git.linux-nfs.org/projects/anna/linux-nfs: (62 commits) NFS: Revert "NFS: Move the flock open mode check into nfs_flock()" NFS: Fix typo in nomigration mount option nfs: Fix ugly referral attributes NFS: super: mark expected switch fall-throughs sunrpc: remove net pointer from messages nfs: remove net pointer from messages sunrpc: exit_net cleanup check added nfs client: exit_net cleanup check added nfs/write: Use common error handling code in nfs_lock_and_join_requests() NFSv4: Replace closed stateids with the "invalid special stateid" NFSv4: nfs_set_open_stateid must not trigger state recovery for closed state NFSv4: Check the open stateid when searching for expired state NFSv4: Clean up nfs4_delegreturn_done NFSv4: cleanup nfs4_close_done NFSv4: Retry NFS4ERR_OLD_STATEID errors in layoutreturn pNFS: Retry NFS4ERR_OLD_STATEID errors in layoutreturn-on-close NFSv4: Don't try to CLOSE if the stateid 'other' field has changed NFSv4: Retry CLOSE and DELEGRETURN on NFS4ERR_OLD_STATEID. NFS: Fix a typo in nfs_rename() NFSv4: Fix open create exclusive when the server reboots ...
158 lines
3.8 KiB
C
158 lines
3.8 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* linux/fs/nfs/cache_lib.c
|
|
*
|
|
* Helper routines for the NFS client caches
|
|
*
|
|
* Copyright (c) 2009 Trond Myklebust <Trond.Myklebust@netapp.com>
|
|
*/
|
|
#include <linux/kmod.h>
|
|
#include <linux/module.h>
|
|
#include <linux/moduleparam.h>
|
|
#include <linux/mount.h>
|
|
#include <linux/namei.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/sunrpc/cache.h>
|
|
#include <linux/sunrpc/rpc_pipe_fs.h>
|
|
#include <net/net_namespace.h>
|
|
|
|
#include "cache_lib.h"
|
|
|
|
#define NFS_CACHE_UPCALL_PATHLEN 256
|
|
#define NFS_CACHE_UPCALL_TIMEOUT 15
|
|
|
|
static char nfs_cache_getent_prog[NFS_CACHE_UPCALL_PATHLEN] =
|
|
"/sbin/nfs_cache_getent";
|
|
static unsigned long nfs_cache_getent_timeout = NFS_CACHE_UPCALL_TIMEOUT;
|
|
|
|
module_param_string(cache_getent, nfs_cache_getent_prog,
|
|
sizeof(nfs_cache_getent_prog), 0600);
|
|
MODULE_PARM_DESC(cache_getent, "Path to the client cache upcall program");
|
|
module_param_named(cache_getent_timeout, nfs_cache_getent_timeout, ulong, 0600);
|
|
MODULE_PARM_DESC(cache_getent_timeout, "Timeout (in seconds) after which "
|
|
"the cache upcall is assumed to have failed");
|
|
|
|
int nfs_cache_upcall(struct cache_detail *cd, char *entry_name)
|
|
{
|
|
static char *envp[] = { "HOME=/",
|
|
"TERM=linux",
|
|
"PATH=/sbin:/usr/sbin:/bin:/usr/bin",
|
|
NULL
|
|
};
|
|
char *argv[] = {
|
|
nfs_cache_getent_prog,
|
|
cd->name,
|
|
entry_name,
|
|
NULL
|
|
};
|
|
int ret = -EACCES;
|
|
|
|
if (nfs_cache_getent_prog[0] == '\0')
|
|
goto out;
|
|
ret = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
|
|
/*
|
|
* Disable the upcall mechanism if we're getting an ENOENT or
|
|
* EACCES error. The admin can re-enable it on the fly by using
|
|
* sysfs to set the 'cache_getent' parameter once the problem
|
|
* has been fixed.
|
|
*/
|
|
if (ret == -ENOENT || ret == -EACCES)
|
|
nfs_cache_getent_prog[0] = '\0';
|
|
out:
|
|
return ret > 0 ? 0 : ret;
|
|
}
|
|
|
|
/*
|
|
* Deferred request handling
|
|
*/
|
|
void nfs_cache_defer_req_put(struct nfs_cache_defer_req *dreq)
|
|
{
|
|
if (refcount_dec_and_test(&dreq->count))
|
|
kfree(dreq);
|
|
}
|
|
|
|
static void nfs_dns_cache_revisit(struct cache_deferred_req *d, int toomany)
|
|
{
|
|
struct nfs_cache_defer_req *dreq;
|
|
|
|
dreq = container_of(d, struct nfs_cache_defer_req, deferred_req);
|
|
|
|
complete(&dreq->completion);
|
|
nfs_cache_defer_req_put(dreq);
|
|
}
|
|
|
|
static struct cache_deferred_req *nfs_dns_cache_defer(struct cache_req *req)
|
|
{
|
|
struct nfs_cache_defer_req *dreq;
|
|
|
|
dreq = container_of(req, struct nfs_cache_defer_req, req);
|
|
dreq->deferred_req.revisit = nfs_dns_cache_revisit;
|
|
refcount_inc(&dreq->count);
|
|
|
|
return &dreq->deferred_req;
|
|
}
|
|
|
|
struct nfs_cache_defer_req *nfs_cache_defer_req_alloc(void)
|
|
{
|
|
struct nfs_cache_defer_req *dreq;
|
|
|
|
dreq = kzalloc(sizeof(*dreq), GFP_KERNEL);
|
|
if (dreq) {
|
|
init_completion(&dreq->completion);
|
|
refcount_set(&dreq->count, 1);
|
|
dreq->req.defer = nfs_dns_cache_defer;
|
|
}
|
|
return dreq;
|
|
}
|
|
|
|
int nfs_cache_wait_for_upcall(struct nfs_cache_defer_req *dreq)
|
|
{
|
|
if (wait_for_completion_timeout(&dreq->completion,
|
|
nfs_cache_getent_timeout * HZ) == 0)
|
|
return -ETIMEDOUT;
|
|
return 0;
|
|
}
|
|
|
|
int nfs_cache_register_sb(struct super_block *sb, struct cache_detail *cd)
|
|
{
|
|
int ret;
|
|
struct dentry *dir;
|
|
|
|
dir = rpc_d_lookup_sb(sb, "cache");
|
|
ret = sunrpc_cache_register_pipefs(dir, cd->name, 0600, cd);
|
|
dput(dir);
|
|
return ret;
|
|
}
|
|
|
|
int nfs_cache_register_net(struct net *net, struct cache_detail *cd)
|
|
{
|
|
struct super_block *pipefs_sb;
|
|
int ret = 0;
|
|
|
|
sunrpc_init_cache_detail(cd);
|
|
pipefs_sb = rpc_get_sb_net(net);
|
|
if (pipefs_sb) {
|
|
ret = nfs_cache_register_sb(pipefs_sb, cd);
|
|
rpc_put_sb_net(net);
|
|
if (ret)
|
|
sunrpc_destroy_cache_detail(cd);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
void nfs_cache_unregister_sb(struct super_block *sb, struct cache_detail *cd)
|
|
{
|
|
sunrpc_cache_unregister_pipefs(cd);
|
|
}
|
|
|
|
void nfs_cache_unregister_net(struct net *net, struct cache_detail *cd)
|
|
{
|
|
struct super_block *pipefs_sb;
|
|
|
|
pipefs_sb = rpc_get_sb_net(net);
|
|
if (pipefs_sb) {
|
|
nfs_cache_unregister_sb(pipefs_sb, cd);
|
|
rpc_put_sb_net(net);
|
|
}
|
|
sunrpc_destroy_cache_detail(cd);
|
|
}
|