Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Copyright (c) 2001 The Regents of the University of Michigan. |
| 3 | * All rights reserved. |
| 4 | * |
| 5 | * Kendrick Smith <kmsmith@umich.edu> |
| 6 | * Andy Adamson <kandros@umich.edu> |
| 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions |
| 10 | * are met: |
| 11 | * |
| 12 | * 1. Redistributions of source code must retain the above copyright |
| 13 | * notice, this list of conditions and the following disclaimer. |
| 14 | * 2. Redistributions in binary form must reproduce the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer in the |
| 16 | * documentation and/or other materials provided with the distribution. |
| 17 | * 3. Neither the name of the University nor the names of its |
| 18 | * contributors may be used to endorse or promote products derived |
| 19 | * from this software without specific prior written permission. |
| 20 | * |
| 21 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 22 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 23 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 24 | * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 25 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 26 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 27 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 28 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 29 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 30 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 31 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 32 | * |
| 33 | */ |
| 34 | |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 35 | #include <linux/file.h> |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 36 | #include <linux/fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 37 | #include <linux/slab.h> |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 38 | #include <linux/namei.h> |
Meelap Shah | c2f1a55 | 2007-07-17 04:04:39 -0700 | [diff] [blame] | 39 | #include <linux/swap.h> |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 40 | #include <linux/pagemap.h> |
Olga Kornievskaia | 68e76ad | 2008-12-23 16:17:15 -0500 | [diff] [blame] | 41 | #include <linux/sunrpc/svcauth_gss.h> |
Jeff Layton | 363168b | 2009-08-14 12:57:56 -0400 | [diff] [blame] | 42 | #include <linux/sunrpc/clnt.h> |
Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame] | 43 | #include "xdr4.h" |
J. Bruce Fields | 0a3adad | 2009-11-04 18:12:35 -0500 | [diff] [blame] | 44 | #include "vfs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | #define NFSDDBG_FACILITY NFSDDBG_PROC |
| 47 | |
| 48 | /* Globals */ |
J. Bruce Fields | cf07d2e | 2010-02-28 23:20:19 -0500 | [diff] [blame] | 49 | time_t nfsd4_lease = 90; /* default lease time */ |
J. Bruce Fields | efc4bb4f | 2010-03-02 11:04:06 -0500 | [diff] [blame] | 50 | time_t nfsd4_grace = 90; |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 51 | static time_t boot_time; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | static u32 current_ownerid = 1; |
| 53 | static u32 current_fileid = 1; |
| 54 | static u32 current_delegid = 1; |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 55 | static stateid_t zerostateid; /* bits all 0 */ |
| 56 | static stateid_t onestateid; /* bits all 1 */ |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 57 | static u64 current_sessionid = 1; |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 58 | |
| 59 | #define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t))) |
| 60 | #define ONE_STATEID(stateid) (!memcmp((stateid), &onestateid, sizeof(stateid_t))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | /* forward declarations */ |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 63 | static struct nfs4_stateid * find_stateid(stateid_t *stid, int flags); |
Bryan Schumaker | e1ca12d | 2011-07-13 11:04:21 -0400 | [diff] [blame] | 64 | static struct nfs4_delegation * search_for_delegation(stateid_t *stid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | static struct nfs4_delegation * find_delegation_stateid(struct inode *ino, stateid_t *stid); |
Bryan Schumaker | e1ca12d | 2011-07-13 11:04:21 -0400 | [diff] [blame] | 66 | static int check_for_locks(struct nfs4_file *filp, struct nfs4_stateowner *lowner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 68 | /* Locking: */ |
| 69 | |
| 70 | /* Currently used for almost all code touching nfsv4 state: */ |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 71 | static DEFINE_MUTEX(client_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 73 | /* |
| 74 | * Currently used for the del_recall_lru and file hash table. In an |
| 75 | * effort to decrease the scope of the client_mutex, this spinlock may |
| 76 | * eventually cover more: |
| 77 | */ |
| 78 | static DEFINE_SPINLOCK(recall_lock); |
| 79 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 80 | static struct kmem_cache *stateowner_slab = NULL; |
| 81 | static struct kmem_cache *file_slab = NULL; |
| 82 | static struct kmem_cache *stateid_slab = NULL; |
| 83 | static struct kmem_cache *deleg_slab = NULL; |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 84 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | void |
| 86 | nfs4_lock_state(void) |
| 87 | { |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 88 | mutex_lock(&client_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | void |
| 92 | nfs4_unlock_state(void) |
| 93 | { |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 94 | mutex_unlock(&client_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | static inline u32 |
| 98 | opaque_hashval(const void *ptr, int nbytes) |
| 99 | { |
| 100 | unsigned char *cptr = (unsigned char *) ptr; |
| 101 | |
| 102 | u32 x = 0; |
| 103 | while (nbytes--) { |
| 104 | x *= 37; |
| 105 | x += *cptr++; |
| 106 | } |
| 107 | return x; |
| 108 | } |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | static struct list_head del_recall_lru; |
| 111 | |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 112 | static inline void |
| 113 | put_nfs4_file(struct nfs4_file *fi) |
| 114 | { |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 115 | if (atomic_dec_and_lock(&fi->fi_ref, &recall_lock)) { |
| 116 | list_del(&fi->fi_hash); |
| 117 | spin_unlock(&recall_lock); |
| 118 | iput(fi->fi_inode); |
| 119 | kmem_cache_free(file_slab, fi); |
| 120 | } |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | static inline void |
| 124 | get_nfs4_file(struct nfs4_file *fi) |
| 125 | { |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 126 | atomic_inc(&fi->fi_ref); |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 127 | } |
| 128 | |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 129 | static int num_delegations; |
Meelap Shah | c2f1a55 | 2007-07-17 04:04:39 -0700 | [diff] [blame] | 130 | unsigned int max_delegations; |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 131 | |
| 132 | /* |
| 133 | * Open owner state (share locks) |
| 134 | */ |
| 135 | |
J. Bruce Fields | 506f275 | 2011-08-11 18:50:18 -0400 | [diff] [blame] | 136 | /* hash tables for open owners */ |
| 137 | #define OPEN_OWNER_HASH_BITS 8 |
| 138 | #define OPEN_OWNER_HASH_SIZE (1 << OPEN_OWNER_HASH_BITS) |
| 139 | #define OPEN_OWNER_HASH_MASK (OPEN_OWNER_HASH_SIZE - 1) |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 140 | |
J. Bruce Fields | 506f275 | 2011-08-11 18:50:18 -0400 | [diff] [blame] | 141 | static unsigned int open_ownerid_hashval(const u32 id) |
J. Bruce Fields | ddc04c4 | 2011-07-30 23:46:29 -0400 | [diff] [blame] | 142 | { |
J. Bruce Fields | 506f275 | 2011-08-11 18:50:18 -0400 | [diff] [blame] | 143 | return id & OPEN_OWNER_HASH_MASK; |
J. Bruce Fields | ddc04c4 | 2011-07-30 23:46:29 -0400 | [diff] [blame] | 144 | } |
| 145 | |
J. Bruce Fields | 506f275 | 2011-08-11 18:50:18 -0400 | [diff] [blame] | 146 | static unsigned int open_ownerstr_hashval(u32 clientid, struct xdr_netobj *ownername) |
J. Bruce Fields | ddc04c4 | 2011-07-30 23:46:29 -0400 | [diff] [blame] | 147 | { |
| 148 | unsigned int ret; |
| 149 | |
| 150 | ret = opaque_hashval(ownername->data, ownername->len); |
| 151 | ret += clientid; |
J. Bruce Fields | 506f275 | 2011-08-11 18:50:18 -0400 | [diff] [blame] | 152 | return ret & OPEN_OWNER_HASH_MASK; |
J. Bruce Fields | ddc04c4 | 2011-07-30 23:46:29 -0400 | [diff] [blame] | 153 | } |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 154 | |
J. Bruce Fields | 506f275 | 2011-08-11 18:50:18 -0400 | [diff] [blame] | 155 | static struct list_head open_ownerid_hashtbl[OPEN_OWNER_HASH_SIZE]; |
| 156 | static struct list_head open_ownerstr_hashtbl[OPEN_OWNER_HASH_SIZE]; |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 157 | |
| 158 | /* hash table for nfs4_file */ |
| 159 | #define FILE_HASH_BITS 8 |
| 160 | #define FILE_HASH_SIZE (1 << FILE_HASH_BITS) |
Shan Wei | 3507958 | 2011-01-14 17:35:59 +0800 | [diff] [blame] | 161 | |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 162 | /* hash table for (open)nfs4_stateid */ |
| 163 | #define STATEID_HASH_BITS 10 |
| 164 | #define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS) |
| 165 | #define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1) |
| 166 | |
J. Bruce Fields | ddc04c4 | 2011-07-30 23:46:29 -0400 | [diff] [blame] | 167 | static unsigned int file_hashval(struct inode *ino) |
| 168 | { |
| 169 | /* XXX: why are we hashing on inode pointer, anyway? */ |
| 170 | return hash_ptr(ino, FILE_HASH_BITS); |
| 171 | } |
| 172 | |
| 173 | static unsigned int stateid_hashval(u32 owner_id, u32 file_id) |
| 174 | { |
| 175 | return (owner_id + file_id) & STATEID_HASH_MASK; |
| 176 | } |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 177 | |
| 178 | static struct list_head file_hashtbl[FILE_HASH_SIZE]; |
| 179 | static struct list_head stateid_hashtbl[STATEID_HASH_SIZE]; |
| 180 | |
J. Bruce Fields | 998db52 | 2010-08-07 09:21:41 -0400 | [diff] [blame] | 181 | static void __nfs4_file_get_access(struct nfs4_file *fp, int oflag) |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 182 | { |
| 183 | BUG_ON(!(fp->fi_fds[oflag] || fp->fi_fds[O_RDWR])); |
| 184 | atomic_inc(&fp->fi_access[oflag]); |
| 185 | } |
| 186 | |
J. Bruce Fields | 998db52 | 2010-08-07 09:21:41 -0400 | [diff] [blame] | 187 | static void nfs4_file_get_access(struct nfs4_file *fp, int oflag) |
| 188 | { |
| 189 | if (oflag == O_RDWR) { |
| 190 | __nfs4_file_get_access(fp, O_RDONLY); |
| 191 | __nfs4_file_get_access(fp, O_WRONLY); |
| 192 | } else |
| 193 | __nfs4_file_get_access(fp, oflag); |
| 194 | } |
| 195 | |
| 196 | static void nfs4_file_put_fd(struct nfs4_file *fp, int oflag) |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 197 | { |
| 198 | if (fp->fi_fds[oflag]) { |
| 199 | fput(fp->fi_fds[oflag]); |
| 200 | fp->fi_fds[oflag] = NULL; |
| 201 | } |
| 202 | } |
| 203 | |
J. Bruce Fields | 998db52 | 2010-08-07 09:21:41 -0400 | [diff] [blame] | 204 | static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag) |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 205 | { |
| 206 | if (atomic_dec_and_test(&fp->fi_access[oflag])) { |
| 207 | nfs4_file_put_fd(fp, O_RDWR); |
| 208 | nfs4_file_put_fd(fp, oflag); |
| 209 | } |
| 210 | } |
| 211 | |
J. Bruce Fields | 998db52 | 2010-08-07 09:21:41 -0400 | [diff] [blame] | 212 | static void nfs4_file_put_access(struct nfs4_file *fp, int oflag) |
| 213 | { |
| 214 | if (oflag == O_RDWR) { |
| 215 | __nfs4_file_put_access(fp, O_RDONLY); |
| 216 | __nfs4_file_put_access(fp, O_WRONLY); |
| 217 | } else |
| 218 | __nfs4_file_put_access(fp, oflag); |
| 219 | } |
| 220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | static struct nfs4_delegation * |
| 222 | alloc_init_deleg(struct nfs4_client *clp, struct nfs4_stateid *stp, struct svc_fh *current_fh, u32 type) |
| 223 | { |
| 224 | struct nfs4_delegation *dp; |
| 225 | struct nfs4_file *fp = stp->st_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
| 227 | dprintk("NFSD alloc_init_deleg\n"); |
J. Bruce Fields | c3e4808 | 2010-07-28 10:08:57 -0400 | [diff] [blame] | 228 | /* |
| 229 | * Major work on the lease subsystem (for example, to support |
| 230 | * calbacks on stat) will be required before we can support |
| 231 | * write delegations properly. |
| 232 | */ |
| 233 | if (type != NFS4_OPEN_DELEGATE_READ) |
| 234 | return NULL; |
Meelap Shah | 47f9940 | 2007-07-17 04:04:40 -0700 | [diff] [blame] | 235 | if (fp->fi_had_conflict) |
| 236 | return NULL; |
Meelap Shah | c2f1a55 | 2007-07-17 04:04:39 -0700 | [diff] [blame] | 237 | if (num_delegations > max_delegations) |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 238 | return NULL; |
NeilBrown | 5b2d21c | 2005-06-23 22:03:04 -0700 | [diff] [blame] | 239 | dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL); |
| 240 | if (dp == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | return dp; |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 242 | num_delegations++; |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 243 | INIT_LIST_HEAD(&dp->dl_perfile); |
| 244 | INIT_LIST_HEAD(&dp->dl_perclnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | INIT_LIST_HEAD(&dp->dl_recall_lru); |
| 246 | dp->dl_client = clp; |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 247 | get_nfs4_file(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | dp->dl_file = fp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | dp->dl_type = type; |
J. Bruce Fields | e4e83ea | 2010-04-22 16:21:39 -0400 | [diff] [blame] | 250 | dp->dl_stateid.si_boot = boot_time; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | dp->dl_stateid.si_stateownerid = current_delegid++; |
| 252 | dp->dl_stateid.si_fileid = 0; |
| 253 | dp->dl_stateid.si_generation = 0; |
J. Bruce Fields | 6c02eaa | 2009-02-02 17:30:51 -0500 | [diff] [blame] | 254 | fh_copy_shallow(&dp->dl_fh, ¤t_fh->fh_handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | dp->dl_time = 0; |
| 256 | atomic_set(&dp->dl_count, 1); |
J. Bruce Fields | b5a1a81 | 2010-03-03 14:52:55 -0500 | [diff] [blame] | 257 | INIT_WORK(&dp->dl_recall.cb_work, nfsd4_do_callback_rpc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | return dp; |
| 259 | } |
| 260 | |
| 261 | void |
| 262 | nfs4_put_delegation(struct nfs4_delegation *dp) |
| 263 | { |
| 264 | if (atomic_dec_and_test(&dp->dl_count)) { |
| 265 | dprintk("NFSD: freeing dp %p\n",dp); |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 266 | put_nfs4_file(dp->dl_file); |
NeilBrown | 5b2d21c | 2005-06-23 22:03:04 -0700 | [diff] [blame] | 267 | kmem_cache_free(deleg_slab, dp); |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 268 | num_delegations--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | } |
| 270 | } |
| 271 | |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 272 | static void nfs4_put_deleg_lease(struct nfs4_file *fp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | { |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 274 | if (atomic_dec_and_test(&fp->fi_delegees)) { |
| 275 | vfs_setlease(fp->fi_deleg_file, F_UNLCK, &fp->fi_lease); |
| 276 | fp->fi_lease = NULL; |
J. Bruce Fields | 4ee6362 | 2011-04-15 18:08:26 -0400 | [diff] [blame] | 277 | fput(fp->fi_deleg_file); |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 278 | fp->fi_deleg_file = NULL; |
| 279 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | /* Called under the state lock. */ |
| 283 | static void |
| 284 | unhash_delegation(struct nfs4_delegation *dp) |
| 285 | { |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 286 | list_del_init(&dp->dl_perclnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | spin_lock(&recall_lock); |
J. Bruce Fields | 5d926e8 | 2011-02-07 16:53:46 -0500 | [diff] [blame] | 288 | list_del_init(&dp->dl_perfile); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | list_del_init(&dp->dl_recall_lru); |
| 290 | spin_unlock(&recall_lock); |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 291 | nfs4_put_deleg_lease(dp->dl_file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | nfs4_put_delegation(dp); |
| 293 | } |
| 294 | |
| 295 | /* |
| 296 | * SETCLIENTID state |
| 297 | */ |
| 298 | |
Benny Halevy | 36acb66 | 2010-05-12 00:13:04 +0300 | [diff] [blame] | 299 | /* client_lock protects the client lru list and session hash table */ |
Benny Halevy | 9089f1b | 2010-05-12 00:12:26 +0300 | [diff] [blame] | 300 | static DEFINE_SPINLOCK(client_lock); |
| 301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | /* Hash tables for nfs4_clientid state */ |
| 303 | #define CLIENT_HASH_BITS 4 |
| 304 | #define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS) |
| 305 | #define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1) |
| 306 | |
J. Bruce Fields | ddc04c4 | 2011-07-30 23:46:29 -0400 | [diff] [blame] | 307 | static unsigned int clientid_hashval(u32 id) |
| 308 | { |
| 309 | return id & CLIENT_HASH_MASK; |
| 310 | } |
| 311 | |
| 312 | static unsigned int clientstr_hashval(const char *name) |
| 313 | { |
| 314 | return opaque_hashval(name, 8) & CLIENT_HASH_MASK; |
| 315 | } |
| 316 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | /* |
| 318 | * reclaim_str_hashtbl[] holds known client info from previous reset/reboot |
| 319 | * used in reboot/reset lease grace period processing |
| 320 | * |
| 321 | * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed |
| 322 | * setclientid_confirmed info. |
| 323 | * |
| 324 | * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed |
| 325 | * setclientid info. |
| 326 | * |
| 327 | * client_lru holds client queue ordered by nfs4_client.cl_time |
| 328 | * for lease renewal. |
| 329 | * |
| 330 | * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time |
| 331 | * for last close replay. |
| 332 | */ |
| 333 | static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE]; |
| 334 | static int reclaim_str_hashtbl_size = 0; |
| 335 | static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE]; |
| 336 | static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE]; |
| 337 | static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE]; |
| 338 | static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE]; |
| 339 | static struct list_head client_lru; |
| 340 | static struct list_head close_lru; |
| 341 | |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 342 | /* |
| 343 | * We store the NONE, READ, WRITE, and BOTH bits separately in the |
| 344 | * st_{access,deny}_bmap field of the stateid, in order to track not |
| 345 | * only what share bits are currently in force, but also what |
| 346 | * combinations of share bits previous opens have used. This allows us |
| 347 | * to enforce the recommendation of rfc 3530 14.2.19 that the server |
| 348 | * return an error if the client attempt to downgrade to a combination |
| 349 | * of share bits not explicable by closing some of its previous opens. |
| 350 | * |
| 351 | * XXX: This enforcement is actually incomplete, since we don't keep |
| 352 | * track of access/deny bit combinations; so, e.g., we allow: |
| 353 | * |
| 354 | * OPEN allow read, deny write |
| 355 | * OPEN allow both, deny none |
| 356 | * DOWNGRADE allow read, deny none |
| 357 | * |
| 358 | * which we should reject. |
| 359 | */ |
| 360 | static void |
| 361 | set_access(unsigned int *access, unsigned long bmap) { |
| 362 | int i; |
| 363 | |
| 364 | *access = 0; |
| 365 | for (i = 1; i < 4; i++) { |
| 366 | if (test_bit(i, &bmap)) |
| 367 | *access |= i; |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | static void |
| 372 | set_deny(unsigned int *deny, unsigned long bmap) { |
| 373 | int i; |
| 374 | |
| 375 | *deny = 0; |
| 376 | for (i = 0; i < 4; i++) { |
| 377 | if (test_bit(i, &bmap)) |
| 378 | *deny |= i ; |
| 379 | } |
| 380 | } |
| 381 | |
| 382 | static int |
| 383 | test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) { |
| 384 | unsigned int access, deny; |
| 385 | |
| 386 | set_access(&access, stp->st_access_bmap); |
| 387 | set_deny(&deny, stp->st_deny_bmap); |
| 388 | if ((access & open->op_share_deny) || (deny & open->op_share_access)) |
| 389 | return 0; |
| 390 | return 1; |
| 391 | } |
| 392 | |
| 393 | static int nfs4_access_to_omode(u32 access) |
| 394 | { |
J. Bruce Fields | 8f34a43 | 2010-09-02 15:23:16 -0400 | [diff] [blame] | 395 | switch (access & NFS4_SHARE_ACCESS_BOTH) { |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 396 | case NFS4_SHARE_ACCESS_READ: |
| 397 | return O_RDONLY; |
| 398 | case NFS4_SHARE_ACCESS_WRITE: |
| 399 | return O_WRONLY; |
| 400 | case NFS4_SHARE_ACCESS_BOTH: |
| 401 | return O_RDWR; |
| 402 | } |
| 403 | BUG(); |
| 404 | } |
| 405 | |
J. Bruce Fields | 529d7b2 | 2011-03-02 23:48:33 -0500 | [diff] [blame] | 406 | static void unhash_generic_stateid(struct nfs4_stateid *stp) |
| 407 | { |
| 408 | list_del(&stp->st_hash); |
| 409 | list_del(&stp->st_perfile); |
| 410 | list_del(&stp->st_perstateowner); |
| 411 | } |
| 412 | |
| 413 | static void free_generic_stateid(struct nfs4_stateid *stp) |
| 414 | { |
J. Bruce Fields | 499f3ed | 2011-06-27 16:57:12 -0400 | [diff] [blame] | 415 | int i; |
J. Bruce Fields | 0997b17 | 2011-03-02 18:01:35 -0500 | [diff] [blame] | 416 | |
J. Bruce Fields | 23fcf2e | 2011-03-28 15:15:09 +0800 | [diff] [blame] | 417 | if (stp->st_access_bmap) { |
J. Bruce Fields | 499f3ed | 2011-06-27 16:57:12 -0400 | [diff] [blame] | 418 | for (i = 1; i < 4; i++) { |
| 419 | if (test_bit(i, &stp->st_access_bmap)) |
| 420 | nfs4_file_put_access(stp->st_file, |
| 421 | nfs4_access_to_omode(i)); |
| 422 | } |
J. Bruce Fields | 23fcf2e | 2011-03-28 15:15:09 +0800 | [diff] [blame] | 423 | } |
OGAWA Hirofumi | a96e5b9 | 2011-04-18 11:48:55 -0400 | [diff] [blame] | 424 | put_nfs4_file(stp->st_file); |
J. Bruce Fields | 529d7b2 | 2011-03-02 23:48:33 -0500 | [diff] [blame] | 425 | kmem_cache_free(stateid_slab, stp); |
| 426 | } |
| 427 | |
| 428 | static void release_lock_stateid(struct nfs4_stateid *stp) |
| 429 | { |
| 430 | struct file *file; |
| 431 | |
| 432 | unhash_generic_stateid(stp); |
| 433 | file = find_any_file(stp->st_file); |
| 434 | if (file) |
| 435 | locks_remove_posix(file, (fl_owner_t)stp->st_stateowner); |
| 436 | free_generic_stateid(stp); |
| 437 | } |
| 438 | |
| 439 | static void unhash_lockowner(struct nfs4_stateowner *sop) |
| 440 | { |
| 441 | struct nfs4_stateid *stp; |
| 442 | |
| 443 | list_del(&sop->so_idhash); |
| 444 | list_del(&sop->so_strhash); |
| 445 | list_del(&sop->so_perstateid); |
| 446 | while (!list_empty(&sop->so_stateids)) { |
| 447 | stp = list_first_entry(&sop->so_stateids, |
| 448 | struct nfs4_stateid, st_perstateowner); |
| 449 | release_lock_stateid(stp); |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | static void release_lockowner(struct nfs4_stateowner *sop) |
| 454 | { |
| 455 | unhash_lockowner(sop); |
| 456 | nfs4_put_stateowner(sop); |
| 457 | } |
| 458 | |
| 459 | static void |
| 460 | release_stateid_lockowners(struct nfs4_stateid *open_stp) |
| 461 | { |
| 462 | struct nfs4_stateowner *lock_sop; |
| 463 | |
| 464 | while (!list_empty(&open_stp->st_lockowners)) { |
| 465 | lock_sop = list_entry(open_stp->st_lockowners.next, |
| 466 | struct nfs4_stateowner, so_perstateid); |
| 467 | /* list_del(&open_stp->st_lockowners); */ |
| 468 | BUG_ON(lock_sop->so_is_open_owner); |
| 469 | release_lockowner(lock_sop); |
| 470 | } |
| 471 | } |
| 472 | |
J. Bruce Fields | 2283963 | 2009-01-11 14:27:17 -0500 | [diff] [blame] | 473 | static void release_open_stateid(struct nfs4_stateid *stp) |
| 474 | { |
| 475 | unhash_generic_stateid(stp); |
| 476 | release_stateid_lockowners(stp); |
J. Bruce Fields | 2283963 | 2009-01-11 14:27:17 -0500 | [diff] [blame] | 477 | free_generic_stateid(stp); |
| 478 | } |
| 479 | |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 480 | static void unhash_openowner(struct nfs4_stateowner *sop) |
J. Bruce Fields | f1d110c | 2009-01-11 14:37:31 -0500 | [diff] [blame] | 481 | { |
| 482 | struct nfs4_stateid *stp; |
| 483 | |
| 484 | list_del(&sop->so_idhash); |
| 485 | list_del(&sop->so_strhash); |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 486 | list_del(&sop->so_perclient); |
| 487 | list_del(&sop->so_perstateid); /* XXX: necessary? */ |
J. Bruce Fields | f1d110c | 2009-01-11 14:37:31 -0500 | [diff] [blame] | 488 | while (!list_empty(&sop->so_stateids)) { |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 489 | stp = list_first_entry(&sop->so_stateids, |
| 490 | struct nfs4_stateid, st_perstateowner); |
| 491 | release_open_stateid(stp); |
J. Bruce Fields | f1d110c | 2009-01-11 14:37:31 -0500 | [diff] [blame] | 492 | } |
| 493 | } |
| 494 | |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 495 | static void release_openowner(struct nfs4_stateowner *sop) |
J. Bruce Fields | f1d110c | 2009-01-11 14:37:31 -0500 | [diff] [blame] | 496 | { |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 497 | unhash_openowner(sop); |
J. Bruce Fields | f1d110c | 2009-01-11 14:37:31 -0500 | [diff] [blame] | 498 | list_del(&sop->so_close_lru); |
| 499 | nfs4_put_stateowner(sop); |
| 500 | } |
| 501 | |
Marc Eshel | 5282fd7 | 2009-04-03 08:27:52 +0300 | [diff] [blame] | 502 | #define SESSION_HASH_SIZE 512 |
| 503 | static struct list_head sessionid_hashtbl[SESSION_HASH_SIZE]; |
| 504 | |
| 505 | static inline int |
| 506 | hash_sessionid(struct nfs4_sessionid *sessionid) |
| 507 | { |
| 508 | struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid; |
| 509 | |
| 510 | return sid->sequence % SESSION_HASH_SIZE; |
| 511 | } |
| 512 | |
| 513 | static inline void |
| 514 | dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid) |
| 515 | { |
| 516 | u32 *ptr = (u32 *)(&sessionid->data[0]); |
| 517 | dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]); |
| 518 | } |
| 519 | |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 520 | static void |
| 521 | gen_sessionid(struct nfsd4_session *ses) |
| 522 | { |
| 523 | struct nfs4_client *clp = ses->se_client; |
| 524 | struct nfsd4_sessionid *sid; |
| 525 | |
| 526 | sid = (struct nfsd4_sessionid *)ses->se_sessionid.data; |
| 527 | sid->clientid = clp->cl_clientid; |
| 528 | sid->sequence = current_sessionid++; |
| 529 | sid->reserved = 0; |
| 530 | } |
| 531 | |
| 532 | /* |
Andy Adamson | a649637 | 2009-08-28 08:45:01 -0400 | [diff] [blame] | 533 | * The protocol defines ca_maxresponssize_cached to include the size of |
| 534 | * the rpc header, but all we need to cache is the data starting after |
| 535 | * the end of the initial SEQUENCE operation--the rest we regenerate |
| 536 | * each time. Therefore we can advertise a ca_maxresponssize_cached |
| 537 | * value that is the number of bytes in our cache plus a few additional |
| 538 | * bytes. In order to stay on the safe side, and not promise more than |
| 539 | * we can cache, those additional bytes must be the minimum possible: 24 |
| 540 | * bytes of rpc header (xid through accept state, with AUTH_NULL |
| 541 | * verifier), 12 for the compound header (with zero-length tag), and 44 |
| 542 | * for the SEQUENCE op response: |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 543 | */ |
Andy Adamson | a649637 | 2009-08-28 08:45:01 -0400 | [diff] [blame] | 544 | #define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44) |
| 545 | |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 546 | static void |
| 547 | free_session_slots(struct nfsd4_session *ses) |
| 548 | { |
| 549 | int i; |
| 550 | |
| 551 | for (i = 0; i < ses->se_fchannel.maxreqs; i++) |
| 552 | kfree(ses->se_slots[i]); |
| 553 | } |
| 554 | |
J. Bruce Fields | efe0cb6 | 2009-10-24 20:52:16 -0400 | [diff] [blame] | 555 | /* |
| 556 | * We don't actually need to cache the rpc and session headers, so we |
| 557 | * can allocate a little less for each slot: |
| 558 | */ |
| 559 | static inline int slot_bytes(struct nfsd4_channel_attrs *ca) |
| 560 | { |
| 561 | return ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ; |
| 562 | } |
| 563 | |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 564 | static int nfsd4_sanitize_slot_size(u32 size) |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 565 | { |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 566 | size -= NFSD_MIN_HDR_SEQ_SZ; /* We don't cache the rpc header */ |
| 567 | size = min_t(u32, size, NFSD_SLOT_CACHE_SIZE); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 568 | |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 569 | return size; |
| 570 | } |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 571 | |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 572 | /* |
| 573 | * XXX: If we run out of reserved DRC memory we could (up to a point) |
| 574 | * re-negotiate active sessions and reduce their slot usage to make |
| 575 | * rooom for new connections. For now we just fail the create session. |
| 576 | */ |
| 577 | static int nfsd4_get_drc_mem(int slotsize, u32 num) |
| 578 | { |
| 579 | int avail; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 580 | |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 581 | num = min_t(u32, num, NFSD_MAX_SLOTS_PER_SESSION); |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 582 | |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 583 | spin_lock(&nfsd_drc_lock); |
| 584 | avail = min_t(int, NFSD_MAX_MEM_PER_SESSION, |
| 585 | nfsd_drc_max_mem - nfsd_drc_mem_used); |
| 586 | num = min_t(int, num, avail / slotsize); |
| 587 | nfsd_drc_mem_used += num * slotsize; |
| 588 | spin_unlock(&nfsd_drc_lock); |
| 589 | |
| 590 | return num; |
| 591 | } |
| 592 | |
| 593 | static void nfsd4_put_drc_mem(int slotsize, int num) |
| 594 | { |
| 595 | spin_lock(&nfsd_drc_lock); |
| 596 | nfsd_drc_mem_used -= slotsize * num; |
| 597 | spin_unlock(&nfsd_drc_lock); |
| 598 | } |
| 599 | |
| 600 | static struct nfsd4_session *alloc_session(int slotsize, int numslots) |
| 601 | { |
| 602 | struct nfsd4_session *new; |
| 603 | int mem, i; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 604 | |
J. Bruce Fields | c23753d | 2010-09-27 16:22:30 -0400 | [diff] [blame] | 605 | BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *) |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 606 | + sizeof(struct nfsd4_session) > PAGE_SIZE); |
| 607 | mem = numslots * sizeof(struct nfsd4_slot *); |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 608 | |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 609 | new = kzalloc(sizeof(*new) + mem, GFP_KERNEL); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 610 | if (!new) |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 611 | return NULL; |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 612 | /* allocate each struct nfsd4_slot and data cache in one piece */ |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 613 | for (i = 0; i < numslots; i++) { |
| 614 | mem = sizeof(struct nfsd4_slot) + slotsize; |
| 615 | new->se_slots[i] = kzalloc(mem, GFP_KERNEL); |
| 616 | if (!new->se_slots[i]) |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 617 | goto out_free; |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 618 | } |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 619 | return new; |
| 620 | out_free: |
| 621 | while (i--) |
| 622 | kfree(new->se_slots[i]); |
| 623 | kfree(new); |
| 624 | return NULL; |
| 625 | } |
| 626 | |
| 627 | static void init_forechannel_attrs(struct nfsd4_channel_attrs *new, struct nfsd4_channel_attrs *req, int numslots, int slotsize) |
| 628 | { |
| 629 | u32 maxrpc = nfsd_serv->sv_max_mesg; |
| 630 | |
| 631 | new->maxreqs = numslots; |
Mi Jinlong | d2b2174 | 2011-03-10 17:43:37 +0800 | [diff] [blame] | 632 | new->maxresp_cached = min_t(u32, req->maxresp_cached, |
| 633 | slotsize + NFSD_MIN_HDR_SEQ_SZ); |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 634 | new->maxreq_sz = min_t(u32, req->maxreq_sz, maxrpc); |
| 635 | new->maxresp_sz = min_t(u32, req->maxresp_sz, maxrpc); |
| 636 | new->maxops = min_t(u32, req->maxops, NFSD_MAX_OPS_PER_COMPOUND); |
| 637 | } |
| 638 | |
J. Bruce Fields | 19cf5c0 | 2010-06-06 18:37:16 -0400 | [diff] [blame] | 639 | static void free_conn(struct nfsd4_conn *c) |
| 640 | { |
| 641 | svc_xprt_put(c->cn_xprt); |
| 642 | kfree(c); |
| 643 | } |
| 644 | |
| 645 | static void nfsd4_conn_lost(struct svc_xpt_user *u) |
| 646 | { |
| 647 | struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user); |
| 648 | struct nfs4_client *clp = c->cn_session->se_client; |
| 649 | |
| 650 | spin_lock(&clp->cl_lock); |
| 651 | if (!list_empty(&c->cn_persession)) { |
| 652 | list_del(&c->cn_persession); |
| 653 | free_conn(c); |
| 654 | } |
| 655 | spin_unlock(&clp->cl_lock); |
J. Bruce Fields | eea4980 | 2010-11-18 08:34:12 -0500 | [diff] [blame] | 656 | nfsd4_probe_callback(clp); |
J. Bruce Fields | 19cf5c0 | 2010-06-06 18:37:16 -0400 | [diff] [blame] | 657 | } |
| 658 | |
J. Bruce Fields | d29c374 | 2010-06-15 17:34:11 -0400 | [diff] [blame] | 659 | static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags) |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 660 | { |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 661 | struct nfsd4_conn *conn; |
| 662 | |
| 663 | conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL); |
| 664 | if (!conn) |
J. Bruce Fields | db90681 | 2010-09-29 15:29:32 -0400 | [diff] [blame] | 665 | return NULL; |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 666 | svc_xprt_get(rqstp->rq_xprt); |
| 667 | conn->cn_xprt = rqstp->rq_xprt; |
J. Bruce Fields | d29c374 | 2010-06-15 17:34:11 -0400 | [diff] [blame] | 668 | conn->cn_flags = flags; |
J. Bruce Fields | db90681 | 2010-09-29 15:29:32 -0400 | [diff] [blame] | 669 | INIT_LIST_HEAD(&conn->cn_xpt_user.list); |
| 670 | return conn; |
| 671 | } |
| 672 | |
J. Bruce Fields | 328ead2 | 2010-09-29 16:11:06 -0400 | [diff] [blame] | 673 | static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses) |
| 674 | { |
| 675 | conn->cn_session = ses; |
| 676 | list_add(&conn->cn_persession, &ses->se_conns); |
| 677 | } |
| 678 | |
J. Bruce Fields | db90681 | 2010-09-29 15:29:32 -0400 | [diff] [blame] | 679 | static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses) |
| 680 | { |
| 681 | struct nfs4_client *clp = ses->se_client; |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 682 | |
| 683 | spin_lock(&clp->cl_lock); |
J. Bruce Fields | 328ead2 | 2010-09-29 16:11:06 -0400 | [diff] [blame] | 684 | __nfsd4_hash_conn(conn, ses); |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 685 | spin_unlock(&clp->cl_lock); |
J. Bruce Fields | db90681 | 2010-09-29 15:29:32 -0400 | [diff] [blame] | 686 | } |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 687 | |
J. Bruce Fields | 21b75b0 | 2010-10-26 10:07:17 -0400 | [diff] [blame] | 688 | static int nfsd4_register_conn(struct nfsd4_conn *conn) |
J. Bruce Fields | db90681 | 2010-09-29 15:29:32 -0400 | [diff] [blame] | 689 | { |
J. Bruce Fields | 19cf5c0 | 2010-06-06 18:37:16 -0400 | [diff] [blame] | 690 | conn->cn_xpt_user.callback = nfsd4_conn_lost; |
J. Bruce Fields | 21b75b0 | 2010-10-26 10:07:17 -0400 | [diff] [blame] | 691 | return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user); |
J. Bruce Fields | db90681 | 2010-09-29 15:29:32 -0400 | [diff] [blame] | 692 | } |
| 693 | |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 694 | static __be32 nfsd4_new_conn(struct svc_rqst *rqstp, struct nfsd4_session *ses, u32 dir) |
J. Bruce Fields | db90681 | 2010-09-29 15:29:32 -0400 | [diff] [blame] | 695 | { |
| 696 | struct nfsd4_conn *conn; |
J. Bruce Fields | 21b75b0 | 2010-10-26 10:07:17 -0400 | [diff] [blame] | 697 | int ret; |
J. Bruce Fields | db90681 | 2010-09-29 15:29:32 -0400 | [diff] [blame] | 698 | |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 699 | conn = alloc_conn(rqstp, dir); |
J. Bruce Fields | db90681 | 2010-09-29 15:29:32 -0400 | [diff] [blame] | 700 | if (!conn) |
| 701 | return nfserr_jukebox; |
| 702 | nfsd4_hash_conn(conn, ses); |
J. Bruce Fields | 21b75b0 | 2010-10-26 10:07:17 -0400 | [diff] [blame] | 703 | ret = nfsd4_register_conn(conn); |
| 704 | if (ret) |
| 705 | /* oops; xprt is already down: */ |
| 706 | nfsd4_conn_lost(&conn->cn_xpt_user); |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 707 | return nfs_ok; |
| 708 | } |
| 709 | |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 710 | static __be32 nfsd4_new_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_session *ses) |
| 711 | { |
| 712 | u32 dir = NFS4_CDFC4_FORE; |
| 713 | |
| 714 | if (ses->se_flags & SESSION4_BACK_CHAN) |
| 715 | dir |= NFS4_CDFC4_BACK; |
| 716 | |
| 717 | return nfsd4_new_conn(rqstp, ses, dir); |
| 718 | } |
| 719 | |
| 720 | /* must be called under client_lock */ |
J. Bruce Fields | 19cf5c0 | 2010-06-06 18:37:16 -0400 | [diff] [blame] | 721 | static void nfsd4_del_conns(struct nfsd4_session *s) |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 722 | { |
J. Bruce Fields | 19cf5c0 | 2010-06-06 18:37:16 -0400 | [diff] [blame] | 723 | struct nfs4_client *clp = s->se_client; |
| 724 | struct nfsd4_conn *c; |
| 725 | |
| 726 | spin_lock(&clp->cl_lock); |
| 727 | while (!list_empty(&s->se_conns)) { |
| 728 | c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession); |
| 729 | list_del_init(&c->cn_persession); |
| 730 | spin_unlock(&clp->cl_lock); |
| 731 | |
| 732 | unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user); |
| 733 | free_conn(c); |
| 734 | |
| 735 | spin_lock(&clp->cl_lock); |
| 736 | } |
| 737 | spin_unlock(&clp->cl_lock); |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | void free_session(struct kref *kref) |
| 741 | { |
| 742 | struct nfsd4_session *ses; |
| 743 | int mem; |
| 744 | |
| 745 | ses = container_of(kref, struct nfsd4_session, se_ref); |
J. Bruce Fields | 19cf5c0 | 2010-06-06 18:37:16 -0400 | [diff] [blame] | 746 | nfsd4_del_conns(ses); |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 747 | spin_lock(&nfsd_drc_lock); |
| 748 | mem = ses->se_fchannel.maxreqs * slot_bytes(&ses->se_fchannel); |
| 749 | nfsd_drc_mem_used -= mem; |
| 750 | spin_unlock(&nfsd_drc_lock); |
| 751 | free_session_slots(ses); |
| 752 | kfree(ses); |
| 753 | } |
| 754 | |
J. Bruce Fields | ac7c46f | 2010-06-14 19:01:57 -0400 | [diff] [blame] | 755 | static struct nfsd4_session *alloc_init_session(struct svc_rqst *rqstp, struct nfs4_client *clp, struct nfsd4_create_session *cses) |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 756 | { |
| 757 | struct nfsd4_session *new; |
| 758 | struct nfsd4_channel_attrs *fchan = &cses->fore_channel; |
| 759 | int numslots, slotsize; |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 760 | int status; |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 761 | int idx; |
| 762 | |
| 763 | /* |
| 764 | * Note decreasing slot size below client's request may |
| 765 | * make it difficult for client to function correctly, whereas |
| 766 | * decreasing the number of slots will (just?) affect |
| 767 | * performance. When short on memory we therefore prefer to |
| 768 | * decrease number of slots instead of their size. |
| 769 | */ |
| 770 | slotsize = nfsd4_sanitize_slot_size(fchan->maxresp_cached); |
| 771 | numslots = nfsd4_get_drc_mem(slotsize, fchan->maxreqs); |
Mi Jinlong | ced6dfe | 2010-11-11 18:03:50 +0800 | [diff] [blame] | 772 | if (numslots < 1) |
| 773 | return NULL; |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 774 | |
| 775 | new = alloc_session(slotsize, numslots); |
| 776 | if (!new) { |
| 777 | nfsd4_put_drc_mem(slotsize, fchan->maxreqs); |
J. Bruce Fields | ac7c46f | 2010-06-14 19:01:57 -0400 | [diff] [blame] | 778 | return NULL; |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 779 | } |
| 780 | init_forechannel_attrs(&new->se_fchannel, fchan, numslots, slotsize); |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 781 | |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 782 | new->se_client = clp; |
| 783 | gen_sessionid(new); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 784 | |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 785 | INIT_LIST_HEAD(&new->se_conns); |
| 786 | |
J. Bruce Fields | ac7c46f | 2010-06-14 19:01:57 -0400 | [diff] [blame] | 787 | new->se_cb_seq_nr = 1; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 788 | new->se_flags = cses->flags; |
J. Bruce Fields | 8b5ce5c | 2010-10-19 17:31:50 -0400 | [diff] [blame] | 789 | new->se_cb_prog = cses->callback_prog; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 790 | kref_init(&new->se_ref); |
J. Bruce Fields | 5b6feee | 2010-09-27 17:12:05 -0400 | [diff] [blame] | 791 | idx = hash_sessionid(&new->se_sessionid); |
Benny Halevy | 9089f1b | 2010-05-12 00:12:26 +0300 | [diff] [blame] | 792 | spin_lock(&client_lock); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 793 | list_add(&new->se_hash, &sessionid_hashtbl[idx]); |
J. Bruce Fields | 4c64937 | 2010-06-15 14:22:37 -0400 | [diff] [blame] | 794 | spin_lock(&clp->cl_lock); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 795 | list_add(&new->se_perclnt, &clp->cl_sessions); |
J. Bruce Fields | 4c64937 | 2010-06-15 14:22:37 -0400 | [diff] [blame] | 796 | spin_unlock(&clp->cl_lock); |
Benny Halevy | 9089f1b | 2010-05-12 00:12:26 +0300 | [diff] [blame] | 797 | spin_unlock(&client_lock); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 798 | |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 799 | status = nfsd4_new_conn_from_crses(rqstp, new); |
J. Bruce Fields | ac7c46f | 2010-06-14 19:01:57 -0400 | [diff] [blame] | 800 | /* whoops: benny points out, status is ignored! (err, or bogus) */ |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 801 | if (status) { |
| 802 | free_session(&new->se_ref); |
J. Bruce Fields | ac7c46f | 2010-06-14 19:01:57 -0400 | [diff] [blame] | 803 | return NULL; |
J. Bruce Fields | c766251 | 2010-06-06 18:12:14 -0400 | [diff] [blame] | 804 | } |
J. Bruce Fields | dcbeaa6 | 2010-06-15 17:25:45 -0400 | [diff] [blame] | 805 | if (cses->flags & SESSION4_BACK_CHAN) { |
J. Bruce Fields | edd7678 | 2010-06-14 22:26:31 -0400 | [diff] [blame] | 806 | struct sockaddr *sa = svc_addr(rqstp); |
J. Bruce Fields | dcbeaa6 | 2010-06-15 17:25:45 -0400 | [diff] [blame] | 807 | /* |
| 808 | * This is a little silly; with sessions there's no real |
| 809 | * use for the callback address. Use the peer address |
| 810 | * as a reasonable default for now, but consider fixing |
| 811 | * the rpc client not to require an address in the |
| 812 | * future: |
| 813 | */ |
J. Bruce Fields | edd7678 | 2010-06-14 22:26:31 -0400 | [diff] [blame] | 814 | rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa); |
| 815 | clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa); |
J. Bruce Fields | edd7678 | 2010-06-14 22:26:31 -0400 | [diff] [blame] | 816 | } |
J. Bruce Fields | dcbeaa6 | 2010-06-15 17:25:45 -0400 | [diff] [blame] | 817 | nfsd4_probe_callback(clp); |
J. Bruce Fields | ac7c46f | 2010-06-14 19:01:57 -0400 | [diff] [blame] | 818 | return new; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 819 | } |
| 820 | |
Benny Halevy | 9089f1b | 2010-05-12 00:12:26 +0300 | [diff] [blame] | 821 | /* caller must hold client_lock */ |
Marc Eshel | 5282fd7 | 2009-04-03 08:27:52 +0300 | [diff] [blame] | 822 | static struct nfsd4_session * |
| 823 | find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid) |
| 824 | { |
| 825 | struct nfsd4_session *elem; |
| 826 | int idx; |
| 827 | |
| 828 | dump_sessionid(__func__, sessionid); |
| 829 | idx = hash_sessionid(sessionid); |
Marc Eshel | 5282fd7 | 2009-04-03 08:27:52 +0300 | [diff] [blame] | 830 | /* Search in the appropriate list */ |
| 831 | list_for_each_entry(elem, &sessionid_hashtbl[idx], se_hash) { |
Marc Eshel | 5282fd7 | 2009-04-03 08:27:52 +0300 | [diff] [blame] | 832 | if (!memcmp(elem->se_sessionid.data, sessionid->data, |
| 833 | NFS4_MAX_SESSIONID_LEN)) { |
| 834 | return elem; |
| 835 | } |
| 836 | } |
| 837 | |
| 838 | dprintk("%s: session not found\n", __func__); |
| 839 | return NULL; |
| 840 | } |
| 841 | |
Benny Halevy | 9089f1b | 2010-05-12 00:12:26 +0300 | [diff] [blame] | 842 | /* caller must hold client_lock */ |
Andy Adamson | 7116ed6 | 2009-04-03 08:27:43 +0300 | [diff] [blame] | 843 | static void |
Marc Eshel | 5282fd7 | 2009-04-03 08:27:52 +0300 | [diff] [blame] | 844 | unhash_session(struct nfsd4_session *ses) |
Andy Adamson | 7116ed6 | 2009-04-03 08:27:43 +0300 | [diff] [blame] | 845 | { |
| 846 | list_del(&ses->se_hash); |
J. Bruce Fields | 4c64937 | 2010-06-15 14:22:37 -0400 | [diff] [blame] | 847 | spin_lock(&ses->se_client->cl_lock); |
Andy Adamson | 7116ed6 | 2009-04-03 08:27:43 +0300 | [diff] [blame] | 848 | list_del(&ses->se_perclnt); |
J. Bruce Fields | 4c64937 | 2010-06-15 14:22:37 -0400 | [diff] [blame] | 849 | spin_unlock(&ses->se_client->cl_lock); |
Marc Eshel | 5282fd7 | 2009-04-03 08:27:52 +0300 | [diff] [blame] | 850 | } |
| 851 | |
Benny Halevy | 36acb66 | 2010-05-12 00:13:04 +0300 | [diff] [blame] | 852 | /* must be called under the client_lock */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | static inline void |
Benny Halevy | 36acb66 | 2010-05-12 00:13:04 +0300 | [diff] [blame] | 854 | renew_client_locked(struct nfs4_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | { |
Benny Halevy | 07cd490 | 2010-05-12 00:13:41 +0300 | [diff] [blame] | 856 | if (is_client_expired(clp)) { |
| 857 | dprintk("%s: client (clientid %08x/%08x) already expired\n", |
| 858 | __func__, |
| 859 | clp->cl_clientid.cl_boot, |
| 860 | clp->cl_clientid.cl_id); |
| 861 | return; |
| 862 | } |
| 863 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | /* |
| 865 | * Move client to the end to the LRU list. |
| 866 | */ |
| 867 | dprintk("renewing client (clientid %08x/%08x)\n", |
| 868 | clp->cl_clientid.cl_boot, |
| 869 | clp->cl_clientid.cl_id); |
| 870 | list_move_tail(&clp->cl_lru, &client_lru); |
| 871 | clp->cl_time = get_seconds(); |
| 872 | } |
| 873 | |
Benny Halevy | 36acb66 | 2010-05-12 00:13:04 +0300 | [diff] [blame] | 874 | static inline void |
| 875 | renew_client(struct nfs4_client *clp) |
| 876 | { |
| 877 | spin_lock(&client_lock); |
| 878 | renew_client_locked(clp); |
| 879 | spin_unlock(&client_lock); |
| 880 | } |
| 881 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */ |
| 883 | static int |
| 884 | STALE_CLIENTID(clientid_t *clid) |
| 885 | { |
| 886 | if (clid->cl_boot == boot_time) |
| 887 | return 0; |
Andy Adamson | 60adfc5 | 2009-04-03 08:28:50 +0300 | [diff] [blame] | 888 | dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n", |
| 889 | clid->cl_boot, clid->cl_id, boot_time); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | return 1; |
| 891 | } |
| 892 | |
| 893 | /* |
| 894 | * XXX Should we use a slab cache ? |
| 895 | * This type of memory management is somewhat inefficient, but we use it |
| 896 | * anyway since SETCLIENTID is not a common operation. |
| 897 | */ |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 898 | static struct nfs4_client *alloc_client(struct xdr_netobj name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | { |
| 900 | struct nfs4_client *clp; |
| 901 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 902 | clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL); |
| 903 | if (clp == NULL) |
| 904 | return NULL; |
| 905 | clp->cl_name.data = kmalloc(name.len, GFP_KERNEL); |
| 906 | if (clp->cl_name.data == NULL) { |
| 907 | kfree(clp); |
| 908 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | } |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 910 | memcpy(clp->cl_name.data, name.data, name.len); |
| 911 | clp->cl_name.len = name.len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | return clp; |
| 913 | } |
| 914 | |
| 915 | static inline void |
| 916 | free_client(struct nfs4_client *clp) |
| 917 | { |
J. Bruce Fields | 792c95d | 2010-10-12 19:55:25 -0400 | [diff] [blame] | 918 | while (!list_empty(&clp->cl_sessions)) { |
| 919 | struct nfsd4_session *ses; |
| 920 | ses = list_entry(clp->cl_sessions.next, struct nfsd4_session, |
| 921 | se_perclnt); |
| 922 | list_del(&ses->se_perclnt); |
| 923 | nfsd4_put_session(ses); |
| 924 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | if (clp->cl_cred.cr_group_info) |
| 926 | put_group_info(clp->cl_cred.cr_group_info); |
Olga Kornievskaia | 68e76ad | 2008-12-23 16:17:15 -0500 | [diff] [blame] | 927 | kfree(clp->cl_principal); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | kfree(clp->cl_name.data); |
| 929 | kfree(clp); |
| 930 | } |
| 931 | |
Benny Halevy | d768298 | 2010-05-12 00:13:54 +0300 | [diff] [blame] | 932 | void |
| 933 | release_session_client(struct nfsd4_session *session) |
| 934 | { |
| 935 | struct nfs4_client *clp = session->se_client; |
| 936 | |
| 937 | if (!atomic_dec_and_lock(&clp->cl_refcount, &client_lock)) |
| 938 | return; |
| 939 | if (is_client_expired(clp)) { |
| 940 | free_client(clp); |
| 941 | session->se_client = NULL; |
| 942 | } else |
| 943 | renew_client_locked(clp); |
| 944 | spin_unlock(&client_lock); |
Benny Halevy | d768298 | 2010-05-12 00:13:54 +0300 | [diff] [blame] | 945 | } |
| 946 | |
Benny Halevy | 84d38ac | 2010-05-12 00:13:16 +0300 | [diff] [blame] | 947 | /* must be called under the client_lock */ |
| 948 | static inline void |
| 949 | unhash_client_locked(struct nfs4_client *clp) |
| 950 | { |
J. Bruce Fields | 792c95d | 2010-10-12 19:55:25 -0400 | [diff] [blame] | 951 | struct nfsd4_session *ses; |
| 952 | |
Benny Halevy | 07cd490 | 2010-05-12 00:13:41 +0300 | [diff] [blame] | 953 | mark_client_expired(clp); |
Benny Halevy | 84d38ac | 2010-05-12 00:13:16 +0300 | [diff] [blame] | 954 | list_del(&clp->cl_lru); |
J. Bruce Fields | 4c64937 | 2010-06-15 14:22:37 -0400 | [diff] [blame] | 955 | spin_lock(&clp->cl_lock); |
J. Bruce Fields | 792c95d | 2010-10-12 19:55:25 -0400 | [diff] [blame] | 956 | list_for_each_entry(ses, &clp->cl_sessions, se_perclnt) |
| 957 | list_del_init(&ses->se_hash); |
J. Bruce Fields | 4c64937 | 2010-06-15 14:22:37 -0400 | [diff] [blame] | 958 | spin_unlock(&clp->cl_lock); |
Benny Halevy | 84d38ac | 2010-05-12 00:13:16 +0300 | [diff] [blame] | 959 | } |
| 960 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | static void |
| 962 | expire_client(struct nfs4_client *clp) |
| 963 | { |
| 964 | struct nfs4_stateowner *sop; |
| 965 | struct nfs4_delegation *dp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | struct list_head reaplist; |
| 967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | INIT_LIST_HEAD(&reaplist); |
| 969 | spin_lock(&recall_lock); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 970 | while (!list_empty(&clp->cl_delegations)) { |
| 971 | dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 972 | list_del_init(&dp->dl_perclnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | list_move(&dp->dl_recall_lru, &reaplist); |
| 974 | } |
| 975 | spin_unlock(&recall_lock); |
| 976 | while (!list_empty(&reaplist)) { |
| 977 | dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru); |
| 978 | list_del_init(&dp->dl_recall_lru); |
| 979 | unhash_delegation(dp); |
| 980 | } |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 981 | while (!list_empty(&clp->cl_openowners)) { |
| 982 | sop = list_entry(clp->cl_openowners.next, struct nfs4_stateowner, so_perclient); |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 983 | release_openowner(sop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | } |
J. Bruce Fields | 6ff8da0 | 2010-06-04 20:04:45 -0400 | [diff] [blame] | 985 | nfsd4_shutdown_callback(clp); |
J. Bruce Fields | 2bf2387 | 2010-03-08 12:37:27 -0500 | [diff] [blame] | 986 | if (clp->cl_cb_conn.cb_xprt) |
| 987 | svc_xprt_put(clp->cl_cb_conn.cb_xprt); |
Benny Halevy | 84d38ac | 2010-05-12 00:13:16 +0300 | [diff] [blame] | 988 | list_del(&clp->cl_idhash); |
| 989 | list_del(&clp->cl_strhash); |
| 990 | spin_lock(&client_lock); |
| 991 | unhash_client_locked(clp); |
Benny Halevy | 46583e2 | 2010-05-12 00:13:29 +0300 | [diff] [blame] | 992 | if (atomic_read(&clp->cl_refcount) == 0) |
| 993 | free_client(clp); |
Benny Halevy | 84d38ac | 2010-05-12 00:13:16 +0300 | [diff] [blame] | 994 | spin_unlock(&client_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | } |
| 996 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 997 | static void copy_verf(struct nfs4_client *target, nfs4_verifier *source) |
| 998 | { |
| 999 | memcpy(target->cl_verifier.data, source->data, |
| 1000 | sizeof(target->cl_verifier.data)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | } |
| 1002 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 1003 | static void copy_clid(struct nfs4_client *target, struct nfs4_client *source) |
| 1004 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | target->cl_clientid.cl_boot = source->cl_clientid.cl_boot; |
| 1006 | target->cl_clientid.cl_id = source->cl_clientid.cl_id; |
| 1007 | } |
| 1008 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 1009 | static void copy_cred(struct svc_cred *target, struct svc_cred *source) |
| 1010 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | target->cr_uid = source->cr_uid; |
| 1012 | target->cr_gid = source->cr_gid; |
| 1013 | target->cr_group_info = source->cr_group_info; |
| 1014 | get_group_info(target->cr_group_info); |
| 1015 | } |
| 1016 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 1017 | static int same_name(const char *n1, const char *n2) |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 1018 | { |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 1019 | return 0 == memcmp(n1, n2, HEXDIR_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | } |
| 1021 | |
| 1022 | static int |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 1023 | same_verf(nfs4_verifier *v1, nfs4_verifier *v2) |
| 1024 | { |
| 1025 | return 0 == memcmp(v1->data, v2->data, sizeof(v1->data)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | } |
| 1027 | |
| 1028 | static int |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 1029 | same_clid(clientid_t *cl1, clientid_t *cl2) |
| 1030 | { |
| 1031 | return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | } |
| 1033 | |
| 1034 | /* XXX what about NGROUP */ |
| 1035 | static int |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 1036 | same_creds(struct svc_cred *cr1, struct svc_cred *cr2) |
| 1037 | { |
| 1038 | return cr1->cr_uid == cr2->cr_uid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | } |
| 1040 | |
J. Bruce Fields | 5ec7b46 | 2007-11-21 21:58:56 -0500 | [diff] [blame] | 1041 | static void gen_clid(struct nfs4_client *clp) |
| 1042 | { |
| 1043 | static u32 current_clientid = 1; |
| 1044 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | clp->cl_clientid.cl_boot = boot_time; |
| 1046 | clp->cl_clientid.cl_id = current_clientid++; |
| 1047 | } |
| 1048 | |
J. Bruce Fields | deda2fa | 2007-11-19 20:31:04 -0500 | [diff] [blame] | 1049 | static void gen_confirm(struct nfs4_client *clp) |
| 1050 | { |
| 1051 | static u32 i; |
| 1052 | u32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | p = (u32 *)clp->cl_confirm.data; |
J. Bruce Fields | deda2fa | 2007-11-19 20:31:04 -0500 | [diff] [blame] | 1055 | *p++ = get_seconds(); |
| 1056 | *p++ = i++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | } |
| 1058 | |
Ricardo Labiaga | b09333c | 2009-09-10 12:27:34 +0300 | [diff] [blame] | 1059 | static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir, |
| 1060 | struct svc_rqst *rqstp, nfs4_verifier *verf) |
| 1061 | { |
| 1062 | struct nfs4_client *clp; |
| 1063 | struct sockaddr *sa = svc_addr(rqstp); |
| 1064 | char *princ; |
| 1065 | |
| 1066 | clp = alloc_client(name); |
| 1067 | if (clp == NULL) |
| 1068 | return NULL; |
| 1069 | |
J. Bruce Fields | 792c95d | 2010-10-12 19:55:25 -0400 | [diff] [blame] | 1070 | INIT_LIST_HEAD(&clp->cl_sessions); |
| 1071 | |
Ricardo Labiaga | b09333c | 2009-09-10 12:27:34 +0300 | [diff] [blame] | 1072 | princ = svc_gss_principal(rqstp); |
| 1073 | if (princ) { |
| 1074 | clp->cl_principal = kstrdup(princ, GFP_KERNEL); |
| 1075 | if (clp->cl_principal == NULL) { |
| 1076 | free_client(clp); |
| 1077 | return NULL; |
| 1078 | } |
| 1079 | } |
| 1080 | |
| 1081 | memcpy(clp->cl_recdir, recdir, HEXDIR_LEN); |
Benny Halevy | 46583e2 | 2010-05-12 00:13:29 +0300 | [diff] [blame] | 1082 | atomic_set(&clp->cl_refcount, 0); |
J. Bruce Fields | 77a3569 | 2010-04-30 18:51:44 -0400 | [diff] [blame] | 1083 | clp->cl_cb_state = NFSD4_CB_UNKNOWN; |
Ricardo Labiaga | b09333c | 2009-09-10 12:27:34 +0300 | [diff] [blame] | 1084 | INIT_LIST_HEAD(&clp->cl_idhash); |
| 1085 | INIT_LIST_HEAD(&clp->cl_strhash); |
| 1086 | INIT_LIST_HEAD(&clp->cl_openowners); |
| 1087 | INIT_LIST_HEAD(&clp->cl_delegations); |
Ricardo Labiaga | b09333c | 2009-09-10 12:27:34 +0300 | [diff] [blame] | 1088 | INIT_LIST_HEAD(&clp->cl_lru); |
J. Bruce Fields | 5ce8ba2 | 2011-01-10 16:44:41 -0500 | [diff] [blame] | 1089 | INIT_LIST_HEAD(&clp->cl_callbacks); |
J. Bruce Fields | 6ff8da0 | 2010-06-04 20:04:45 -0400 | [diff] [blame] | 1090 | spin_lock_init(&clp->cl_lock); |
J. Bruce Fields | cee277d | 2010-05-26 17:52:14 -0400 | [diff] [blame] | 1091 | INIT_WORK(&clp->cl_cb_null.cb_work, nfsd4_do_callback_rpc); |
Benny Halevy | 07cd490 | 2010-05-12 00:13:41 +0300 | [diff] [blame] | 1092 | clp->cl_time = get_seconds(); |
Ricardo Labiaga | b09333c | 2009-09-10 12:27:34 +0300 | [diff] [blame] | 1093 | clear_bit(0, &clp->cl_cb_slot_busy); |
| 1094 | rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table"); |
| 1095 | copy_verf(clp, verf); |
| 1096 | rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa); |
| 1097 | clp->cl_flavor = rqstp->rq_flavor; |
| 1098 | copy_cred(&clp->cl_cred, &rqstp->rq_cred); |
| 1099 | gen_confirm(clp); |
J. Bruce Fields | edd7678 | 2010-06-14 22:26:31 -0400 | [diff] [blame] | 1100 | clp->cl_cb_session = NULL; |
Ricardo Labiaga | b09333c | 2009-09-10 12:27:34 +0300 | [diff] [blame] | 1101 | return clp; |
| 1102 | } |
| 1103 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 1104 | static int check_name(struct xdr_netobj name) |
| 1105 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | if (name.len == 0) |
| 1107 | return 0; |
| 1108 | if (name.len > NFS4_OPAQUE_LIMIT) { |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 1109 | dprintk("NFSD: check_name: name too long(%d)!\n", name.len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | return 0; |
| 1111 | } |
| 1112 | return 1; |
| 1113 | } |
| 1114 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 1115 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval) |
| 1117 | { |
| 1118 | unsigned int idhashval; |
| 1119 | |
| 1120 | list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]); |
| 1121 | idhashval = clientid_hashval(clp->cl_clientid.cl_id); |
| 1122 | list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]); |
Benny Halevy | 36acb66 | 2010-05-12 00:13:04 +0300 | [diff] [blame] | 1123 | renew_client(clp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | } |
| 1125 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 1126 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | move_to_confirmed(struct nfs4_client *clp) |
| 1128 | { |
| 1129 | unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id); |
| 1130 | unsigned int strhashval; |
| 1131 | |
| 1132 | dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp); |
Akinobu Mita | f116629 | 2006-06-26 00:24:46 -0700 | [diff] [blame] | 1133 | list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 1134 | strhashval = clientstr_hashval(clp->cl_recdir); |
Benny Halevy | 328efba | 2010-05-12 00:12:51 +0300 | [diff] [blame] | 1135 | list_move(&clp->cl_strhash, &conf_str_hashtbl[strhashval]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | renew_client(clp); |
| 1137 | } |
| 1138 | |
| 1139 | static struct nfs4_client * |
| 1140 | find_confirmed_client(clientid_t *clid) |
| 1141 | { |
| 1142 | struct nfs4_client *clp; |
| 1143 | unsigned int idhashval = clientid_hashval(clid->cl_id); |
| 1144 | |
| 1145 | list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) { |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 1146 | if (same_clid(&clp->cl_clientid, clid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | return clp; |
| 1148 | } |
| 1149 | return NULL; |
| 1150 | } |
| 1151 | |
| 1152 | static struct nfs4_client * |
| 1153 | find_unconfirmed_client(clientid_t *clid) |
| 1154 | { |
| 1155 | struct nfs4_client *clp; |
| 1156 | unsigned int idhashval = clientid_hashval(clid->cl_id); |
| 1157 | |
| 1158 | list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) { |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 1159 | if (same_clid(&clp->cl_clientid, clid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | return clp; |
| 1161 | } |
| 1162 | return NULL; |
| 1163 | } |
| 1164 | |
J. Bruce Fields | 6e5f15c | 2010-11-24 17:17:34 -0500 | [diff] [blame] | 1165 | static bool clp_used_exchangeid(struct nfs4_client *clp) |
Andy Adamson | a1bcecd | 2009-04-03 08:28:05 +0300 | [diff] [blame] | 1166 | { |
J. Bruce Fields | 6e5f15c | 2010-11-24 17:17:34 -0500 | [diff] [blame] | 1167 | return clp->cl_exchange_flags != 0; |
J. Bruce Fields | e203d50 | 2010-11-24 17:30:54 -0500 | [diff] [blame] | 1168 | } |
Andy Adamson | a1bcecd | 2009-04-03 08:28:05 +0300 | [diff] [blame] | 1169 | |
NeilBrown | 28ce605 | 2005-06-23 22:03:56 -0700 | [diff] [blame] | 1170 | static struct nfs4_client * |
J. Bruce Fields | e203d50 | 2010-11-24 17:30:54 -0500 | [diff] [blame] | 1171 | find_confirmed_client_by_str(const char *dname, unsigned int hashval) |
NeilBrown | 28ce605 | 2005-06-23 22:03:56 -0700 | [diff] [blame] | 1172 | { |
| 1173 | struct nfs4_client *clp; |
| 1174 | |
| 1175 | list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) { |
J. Bruce Fields | e203d50 | 2010-11-24 17:30:54 -0500 | [diff] [blame] | 1176 | if (same_name(clp->cl_recdir, dname)) |
NeilBrown | 28ce605 | 2005-06-23 22:03:56 -0700 | [diff] [blame] | 1177 | return clp; |
| 1178 | } |
| 1179 | return NULL; |
| 1180 | } |
| 1181 | |
| 1182 | static struct nfs4_client * |
J. Bruce Fields | e203d50 | 2010-11-24 17:30:54 -0500 | [diff] [blame] | 1183 | find_unconfirmed_client_by_str(const char *dname, unsigned int hashval) |
NeilBrown | 28ce605 | 2005-06-23 22:03:56 -0700 | [diff] [blame] | 1184 | { |
| 1185 | struct nfs4_client *clp; |
| 1186 | |
| 1187 | list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) { |
J. Bruce Fields | e203d50 | 2010-11-24 17:30:54 -0500 | [diff] [blame] | 1188 | if (same_name(clp->cl_recdir, dname)) |
NeilBrown | 28ce605 | 2005-06-23 22:03:56 -0700 | [diff] [blame] | 1189 | return clp; |
| 1190 | } |
| 1191 | return NULL; |
| 1192 | } |
| 1193 | |
Takuma Umeya | 6f3d772 | 2010-12-15 14:09:01 +0900 | [diff] [blame] | 1194 | static void rpc_svcaddr2sockaddr(struct sockaddr *sa, unsigned short family, union svc_addr_u *svcaddr) |
| 1195 | { |
| 1196 | switch (family) { |
| 1197 | case AF_INET: |
| 1198 | ((struct sockaddr_in *)sa)->sin_family = AF_INET; |
| 1199 | ((struct sockaddr_in *)sa)->sin_addr = svcaddr->addr; |
| 1200 | return; |
| 1201 | case AF_INET6: |
| 1202 | ((struct sockaddr_in6 *)sa)->sin6_family = AF_INET6; |
| 1203 | ((struct sockaddr_in6 *)sa)->sin6_addr = svcaddr->addr6; |
| 1204 | return; |
| 1205 | } |
| 1206 | } |
| 1207 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 1208 | static void |
Takuma Umeya | 6f3d772 | 2010-12-15 14:09:01 +0900 | [diff] [blame] | 1209 | gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | { |
J. Bruce Fields | 07263f1 | 2010-05-31 19:09:40 -0400 | [diff] [blame] | 1211 | struct nfs4_cb_conn *conn = &clp->cl_cb_conn; |
Takuma Umeya | 6f3d772 | 2010-12-15 14:09:01 +0900 | [diff] [blame] | 1212 | struct sockaddr *sa = svc_addr(rqstp); |
| 1213 | u32 scopeid = rpc_get_scope_id(sa); |
Jeff Layton | 7077ecb | 2009-08-14 12:57:58 -0400 | [diff] [blame] | 1214 | unsigned short expected_family; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | |
Jeff Layton | 7077ecb | 2009-08-14 12:57:58 -0400 | [diff] [blame] | 1216 | /* Currently, we only support tcp and tcp6 for the callback channel */ |
| 1217 | if (se->se_callback_netid_len == 3 && |
| 1218 | !memcmp(se->se_callback_netid_val, "tcp", 3)) |
| 1219 | expected_family = AF_INET; |
| 1220 | else if (se->se_callback_netid_len == 4 && |
| 1221 | !memcmp(se->se_callback_netid_val, "tcp6", 4)) |
| 1222 | expected_family = AF_INET6; |
| 1223 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | goto out_err; |
| 1225 | |
J. Bruce Fields | 07263f1 | 2010-05-31 19:09:40 -0400 | [diff] [blame] | 1226 | conn->cb_addrlen = rpc_uaddr2sockaddr(se->se_callback_addr_val, |
Jeff Layton | aa9a4ec | 2009-08-14 12:57:57 -0400 | [diff] [blame] | 1227 | se->se_callback_addr_len, |
J. Bruce Fields | 07263f1 | 2010-05-31 19:09:40 -0400 | [diff] [blame] | 1228 | (struct sockaddr *)&conn->cb_addr, |
| 1229 | sizeof(conn->cb_addr)); |
Jeff Layton | aa9a4ec | 2009-08-14 12:57:57 -0400 | [diff] [blame] | 1230 | |
J. Bruce Fields | 07263f1 | 2010-05-31 19:09:40 -0400 | [diff] [blame] | 1231 | if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | goto out_err; |
Jeff Layton | aa9a4ec | 2009-08-14 12:57:57 -0400 | [diff] [blame] | 1233 | |
J. Bruce Fields | 07263f1 | 2010-05-31 19:09:40 -0400 | [diff] [blame] | 1234 | if (conn->cb_addr.ss_family == AF_INET6) |
| 1235 | ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid; |
Jeff Layton | fbf4665 | 2009-08-14 12:57:59 -0400 | [diff] [blame] | 1236 | |
J. Bruce Fields | 07263f1 | 2010-05-31 19:09:40 -0400 | [diff] [blame] | 1237 | conn->cb_prog = se->se_callback_prog; |
| 1238 | conn->cb_ident = se->se_callback_ident; |
Takuma Umeya | 6f3d772 | 2010-12-15 14:09:01 +0900 | [diff] [blame] | 1239 | rpc_svcaddr2sockaddr((struct sockaddr *)&conn->cb_saddr, expected_family, &rqstp->rq_daddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | return; |
| 1241 | out_err: |
J. Bruce Fields | 07263f1 | 2010-05-31 19:09:40 -0400 | [diff] [blame] | 1242 | conn->cb_addr.ss_family = AF_UNSPEC; |
| 1243 | conn->cb_addrlen = 0; |
Neil Brown | 849823c | 2005-09-13 01:25:36 -0700 | [diff] [blame] | 1244 | dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | "will not receive delegations\n", |
| 1246 | clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id); |
| 1247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | return; |
| 1249 | } |
| 1250 | |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1251 | /* |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1252 | * Cache a reply. nfsd4_check_drc_limit() has bounded the cache size. |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1253 | */ |
| 1254 | void |
| 1255 | nfsd4_store_cache_entry(struct nfsd4_compoundres *resp) |
| 1256 | { |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1257 | struct nfsd4_slot *slot = resp->cstate.slot; |
| 1258 | unsigned int base; |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1259 | |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1260 | dprintk("--> %s slot %p\n", __func__, slot); |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1261 | |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1262 | slot->sl_opcnt = resp->opcnt; |
| 1263 | slot->sl_status = resp->cstate.status; |
Andy Adamson | bf864a3 | 2009-04-03 08:28:35 +0300 | [diff] [blame] | 1264 | |
| 1265 | if (nfsd4_not_cached(resp)) { |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1266 | slot->sl_datalen = 0; |
Andy Adamson | bf864a3 | 2009-04-03 08:28:35 +0300 | [diff] [blame] | 1267 | return; |
| 1268 | } |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1269 | slot->sl_datalen = (char *)resp->p - (char *)resp->cstate.datap; |
| 1270 | base = (char *)resp->cstate.datap - |
| 1271 | (char *)resp->xbuf->head[0].iov_base; |
| 1272 | if (read_bytes_from_xdr_buf(resp->xbuf, base, slot->sl_data, |
| 1273 | slot->sl_datalen)) |
| 1274 | WARN("%s: sessions DRC could not cache compound\n", __func__); |
| 1275 | return; |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1276 | } |
| 1277 | |
| 1278 | /* |
Andy Adamson | abfabf8 | 2009-07-23 19:02:18 -0400 | [diff] [blame] | 1279 | * Encode the replay sequence operation from the slot values. |
| 1280 | * If cachethis is FALSE encode the uncached rep error on the next |
| 1281 | * operation which sets resp->p and increments resp->opcnt for |
| 1282 | * nfs4svc_encode_compoundres. |
| 1283 | * |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1284 | */ |
Andy Adamson | abfabf8 | 2009-07-23 19:02:18 -0400 | [diff] [blame] | 1285 | static __be32 |
| 1286 | nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args, |
| 1287 | struct nfsd4_compoundres *resp) |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1288 | { |
Andy Adamson | abfabf8 | 2009-07-23 19:02:18 -0400 | [diff] [blame] | 1289 | struct nfsd4_op *op; |
| 1290 | struct nfsd4_slot *slot = resp->cstate.slot; |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1291 | |
Andy Adamson | abfabf8 | 2009-07-23 19:02:18 -0400 | [diff] [blame] | 1292 | dprintk("--> %s resp->opcnt %d cachethis %u \n", __func__, |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1293 | resp->opcnt, resp->cstate.slot->sl_cachethis); |
Andy Adamson | abfabf8 | 2009-07-23 19:02:18 -0400 | [diff] [blame] | 1294 | |
| 1295 | /* Encode the replayed sequence operation */ |
| 1296 | op = &args->ops[resp->opcnt - 1]; |
| 1297 | nfsd4_encode_operation(resp, op); |
| 1298 | |
| 1299 | /* Return nfserr_retry_uncached_rep in next operation. */ |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1300 | if (args->opcnt > 1 && slot->sl_cachethis == 0) { |
Andy Adamson | abfabf8 | 2009-07-23 19:02:18 -0400 | [diff] [blame] | 1301 | op = &args->ops[resp->opcnt++]; |
| 1302 | op->status = nfserr_retry_uncached_rep; |
| 1303 | nfsd4_encode_operation(resp, op); |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1304 | } |
Andy Adamson | abfabf8 | 2009-07-23 19:02:18 -0400 | [diff] [blame] | 1305 | return op->status; |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1306 | } |
| 1307 | |
| 1308 | /* |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1309 | * The sequence operation is not cached because we can use the slot and |
| 1310 | * session values. |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1311 | */ |
| 1312 | __be32 |
Andy Adamson | bf864a3 | 2009-04-03 08:28:35 +0300 | [diff] [blame] | 1313 | nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp, |
| 1314 | struct nfsd4_sequence *seq) |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1315 | { |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1316 | struct nfsd4_slot *slot = resp->cstate.slot; |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1317 | __be32 status; |
| 1318 | |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1319 | dprintk("--> %s slot %p\n", __func__, slot); |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1320 | |
Andy Adamson | abfabf8 | 2009-07-23 19:02:18 -0400 | [diff] [blame] | 1321 | /* Either returns 0 or nfserr_retry_uncached */ |
| 1322 | status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp); |
| 1323 | if (status == nfserr_retry_uncached_rep) |
| 1324 | return status; |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1325 | |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1326 | /* The sequence operation has been encoded, cstate->datap set. */ |
| 1327 | memcpy(resp->cstate.datap, slot->sl_data, slot->sl_datalen); |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1328 | |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1329 | resp->opcnt = slot->sl_opcnt; |
| 1330 | resp->p = resp->cstate.datap + XDR_QUADLEN(slot->sl_datalen); |
| 1331 | status = slot->sl_status; |
Andy Adamson | 074fe89 | 2009-04-03 08:28:15 +0300 | [diff] [blame] | 1332 | |
| 1333 | return status; |
| 1334 | } |
| 1335 | |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1336 | /* |
| 1337 | * Set the exchange_id flags returned by the server. |
| 1338 | */ |
| 1339 | static void |
| 1340 | nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid) |
| 1341 | { |
| 1342 | /* pNFS is not supported */ |
| 1343 | new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS; |
| 1344 | |
| 1345 | /* Referrals are supported, Migration is not. */ |
| 1346 | new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER; |
| 1347 | |
| 1348 | /* set the wire flags to return to client. */ |
| 1349 | clid->flags = new->cl_exchange_flags; |
| 1350 | } |
| 1351 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1352 | __be32 |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1353 | nfsd4_exchange_id(struct svc_rqst *rqstp, |
| 1354 | struct nfsd4_compound_state *cstate, |
| 1355 | struct nfsd4_exchange_id *exid) |
| 1356 | { |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1357 | struct nfs4_client *unconf, *conf, *new; |
| 1358 | int status; |
| 1359 | unsigned int strhashval; |
| 1360 | char dname[HEXDIR_LEN]; |
Jeff Layton | 363168b | 2009-08-14 12:57:56 -0400 | [diff] [blame] | 1361 | char addr_str[INET6_ADDRSTRLEN]; |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1362 | nfs4_verifier verf = exid->verifier; |
Jeff Layton | 363168b | 2009-08-14 12:57:56 -0400 | [diff] [blame] | 1363 | struct sockaddr *sa = svc_addr(rqstp); |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1364 | |
Jeff Layton | 363168b | 2009-08-14 12:57:56 -0400 | [diff] [blame] | 1365 | rpc_ntop(sa, addr_str, sizeof(addr_str)); |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1366 | dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p " |
Jeff Layton | 363168b | 2009-08-14 12:57:56 -0400 | [diff] [blame] | 1367 | "ip_addr=%s flags %x, spa_how %d\n", |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1368 | __func__, rqstp, exid, exid->clname.len, exid->clname.data, |
Jeff Layton | 363168b | 2009-08-14 12:57:56 -0400 | [diff] [blame] | 1369 | addr_str, exid->flags, exid->spa_how); |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1370 | |
| 1371 | if (!check_name(exid->clname) || (exid->flags & ~EXCHGID4_FLAG_MASK_A)) |
| 1372 | return nfserr_inval; |
| 1373 | |
| 1374 | /* Currently only support SP4_NONE */ |
| 1375 | switch (exid->spa_how) { |
| 1376 | case SP4_NONE: |
| 1377 | break; |
| 1378 | case SP4_SSV: |
J. Bruce Fields | 044bc1d | 2010-11-12 14:36:06 -0500 | [diff] [blame] | 1379 | return nfserr_serverfault; |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1380 | default: |
| 1381 | BUG(); /* checked by xdr code */ |
| 1382 | case SP4_MACH_CRED: |
| 1383 | return nfserr_serverfault; /* no excuse :-/ */ |
| 1384 | } |
| 1385 | |
| 1386 | status = nfs4_make_rec_clidname(dname, &exid->clname); |
| 1387 | |
| 1388 | if (status) |
| 1389 | goto error; |
| 1390 | |
| 1391 | strhashval = clientstr_hashval(dname); |
| 1392 | |
| 1393 | nfs4_lock_state(); |
| 1394 | status = nfs_ok; |
| 1395 | |
J. Bruce Fields | e203d50 | 2010-11-24 17:30:54 -0500 | [diff] [blame] | 1396 | conf = find_confirmed_client_by_str(dname, strhashval); |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1397 | if (conf) { |
J. Bruce Fields | e203d50 | 2010-11-24 17:30:54 -0500 | [diff] [blame] | 1398 | if (!clp_used_exchangeid(conf)) { |
| 1399 | status = nfserr_clid_inuse; /* XXX: ? */ |
| 1400 | goto out; |
| 1401 | } |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1402 | if (!same_verf(&verf, &conf->cl_verifier)) { |
| 1403 | /* 18.35.4 case 8 */ |
| 1404 | if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) { |
| 1405 | status = nfserr_not_same; |
| 1406 | goto out; |
| 1407 | } |
| 1408 | /* Client reboot: destroy old state */ |
| 1409 | expire_client(conf); |
| 1410 | goto out_new; |
| 1411 | } |
| 1412 | if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) { |
| 1413 | /* 18.35.4 case 9 */ |
| 1414 | if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) { |
| 1415 | status = nfserr_perm; |
| 1416 | goto out; |
| 1417 | } |
| 1418 | expire_client(conf); |
| 1419 | goto out_new; |
| 1420 | } |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1421 | /* |
| 1422 | * Set bit when the owner id and verifier map to an already |
| 1423 | * confirmed client id (18.35.3). |
| 1424 | */ |
| 1425 | exid->flags |= EXCHGID4_FLAG_CONFIRMED_R; |
| 1426 | |
| 1427 | /* |
| 1428 | * Falling into 18.35.4 case 2, possible router replay. |
| 1429 | * Leave confirmed record intact and return same result. |
| 1430 | */ |
| 1431 | copy_verf(conf, &verf); |
| 1432 | new = conf; |
| 1433 | goto out_copy; |
Mike Sager | 6ddbbbf | 2009-06-16 04:20:47 +0300 | [diff] [blame] | 1434 | } |
| 1435 | |
| 1436 | /* 18.35.4 case 7 */ |
| 1437 | if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) { |
| 1438 | status = nfserr_noent; |
| 1439 | goto out; |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1440 | } |
| 1441 | |
J. Bruce Fields | e203d50 | 2010-11-24 17:30:54 -0500 | [diff] [blame] | 1442 | unconf = find_unconfirmed_client_by_str(dname, strhashval); |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1443 | if (unconf) { |
| 1444 | /* |
| 1445 | * Possible retry or client restart. Per 18.35.4 case 4, |
| 1446 | * a new unconfirmed record should be generated regardless |
| 1447 | * of whether any properties have changed. |
| 1448 | */ |
| 1449 | expire_client(unconf); |
| 1450 | } |
| 1451 | |
| 1452 | out_new: |
| 1453 | /* Normal case */ |
Ricardo Labiaga | b09333c | 2009-09-10 12:27:34 +0300 | [diff] [blame] | 1454 | new = create_client(exid->clname, dname, rqstp, &verf); |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1455 | if (new == NULL) { |
J. Bruce Fields | 4731030 | 2010-06-22 16:17:12 -0400 | [diff] [blame] | 1456 | status = nfserr_jukebox; |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1457 | goto out; |
| 1458 | } |
| 1459 | |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1460 | gen_clid(new); |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1461 | add_to_unconfirmed(new, strhashval); |
| 1462 | out_copy: |
| 1463 | exid->clientid.cl_boot = new->cl_clientid.cl_boot; |
| 1464 | exid->clientid.cl_id = new->cl_clientid.cl_id; |
| 1465 | |
Andy Adamson | 38eb76a | 2009-04-03 08:28:32 +0300 | [diff] [blame] | 1466 | exid->seqid = 1; |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1467 | nfsd4_set_ex_flags(new, exid); |
| 1468 | |
| 1469 | dprintk("nfsd4_exchange_id seqid %d flags %x\n", |
Andy Adamson | 49557cc | 2009-07-23 19:02:16 -0400 | [diff] [blame] | 1470 | new->cl_cs_slot.sl_seqid, new->cl_exchange_flags); |
Andy Adamson | 0733d21 | 2009-04-03 08:28:01 +0300 | [diff] [blame] | 1471 | status = nfs_ok; |
| 1472 | |
| 1473 | out: |
| 1474 | nfs4_unlock_state(); |
| 1475 | error: |
| 1476 | dprintk("nfsd4_exchange_id returns %d\n", ntohl(status)); |
| 1477 | return status; |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1478 | } |
| 1479 | |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1480 | static int |
Andy Adamson | 88e588d | 2009-07-23 19:02:15 -0400 | [diff] [blame] | 1481 | check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse) |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1482 | { |
Andy Adamson | 88e588d | 2009-07-23 19:02:15 -0400 | [diff] [blame] | 1483 | dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid, |
| 1484 | slot_seqid); |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1485 | |
| 1486 | /* The slot is in use, and no response has been sent. */ |
Andy Adamson | 88e588d | 2009-07-23 19:02:15 -0400 | [diff] [blame] | 1487 | if (slot_inuse) { |
| 1488 | if (seqid == slot_seqid) |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1489 | return nfserr_jukebox; |
| 1490 | else |
| 1491 | return nfserr_seq_misordered; |
| 1492 | } |
| 1493 | /* Normal */ |
Andy Adamson | 88e588d | 2009-07-23 19:02:15 -0400 | [diff] [blame] | 1494 | if (likely(seqid == slot_seqid + 1)) |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1495 | return nfs_ok; |
| 1496 | /* Replay */ |
Andy Adamson | 88e588d | 2009-07-23 19:02:15 -0400 | [diff] [blame] | 1497 | if (seqid == slot_seqid) |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1498 | return nfserr_replay_cache; |
| 1499 | /* Wraparound */ |
Andy Adamson | 88e588d | 2009-07-23 19:02:15 -0400 | [diff] [blame] | 1500 | if (seqid == 1 && (slot_seqid + 1) == 0) |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1501 | return nfs_ok; |
| 1502 | /* Misordered replay or misordered new request */ |
| 1503 | return nfserr_seq_misordered; |
| 1504 | } |
| 1505 | |
Andy Adamson | 49557cc | 2009-07-23 19:02:16 -0400 | [diff] [blame] | 1506 | /* |
| 1507 | * Cache the create session result into the create session single DRC |
| 1508 | * slot cache by saving the xdr structure. sl_seqid has been set. |
| 1509 | * Do this for solo or embedded create session operations. |
| 1510 | */ |
| 1511 | static void |
| 1512 | nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses, |
| 1513 | struct nfsd4_clid_slot *slot, int nfserr) |
| 1514 | { |
| 1515 | slot->sl_status = nfserr; |
| 1516 | memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses)); |
| 1517 | } |
| 1518 | |
| 1519 | static __be32 |
| 1520 | nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses, |
| 1521 | struct nfsd4_clid_slot *slot) |
| 1522 | { |
| 1523 | memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses)); |
| 1524 | return slot->sl_status; |
| 1525 | } |
| 1526 | |
Mi Jinlong | 1b74c25 | 2011-07-14 14:50:17 +0800 | [diff] [blame] | 1527 | #define NFSD_MIN_REQ_HDR_SEQ_SZ ((\ |
| 1528 | 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \ |
| 1529 | 1 + /* MIN tag is length with zero, only length */ \ |
| 1530 | 3 + /* version, opcount, opcode */ \ |
| 1531 | XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \ |
| 1532 | /* seqid, slotID, slotID, cache */ \ |
| 1533 | 4 ) * sizeof(__be32)) |
| 1534 | |
| 1535 | #define NFSD_MIN_RESP_HDR_SEQ_SZ ((\ |
| 1536 | 2 + /* verifier: AUTH_NULL, length 0 */\ |
| 1537 | 1 + /* status */ \ |
| 1538 | 1 + /* MIN tag is length with zero, only length */ \ |
| 1539 | 3 + /* opcount, opcode, opstatus*/ \ |
| 1540 | XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \ |
| 1541 | /* seqid, slotID, slotID, slotID, status */ \ |
| 1542 | 5 ) * sizeof(__be32)) |
| 1543 | |
| 1544 | static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs fchannel) |
| 1545 | { |
| 1546 | return fchannel.maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ |
| 1547 | || fchannel.maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ; |
| 1548 | } |
| 1549 | |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1550 | __be32 |
| 1551 | nfsd4_create_session(struct svc_rqst *rqstp, |
| 1552 | struct nfsd4_compound_state *cstate, |
| 1553 | struct nfsd4_create_session *cr_ses) |
| 1554 | { |
Jeff Layton | 363168b | 2009-08-14 12:57:56 -0400 | [diff] [blame] | 1555 | struct sockaddr *sa = svc_addr(rqstp); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1556 | struct nfs4_client *conf, *unconf; |
J. Bruce Fields | ac7c46f | 2010-06-14 19:01:57 -0400 | [diff] [blame] | 1557 | struct nfsd4_session *new; |
Andy Adamson | 49557cc | 2009-07-23 19:02:16 -0400 | [diff] [blame] | 1558 | struct nfsd4_clid_slot *cs_slot = NULL; |
J. Bruce Fields | 86c3e16 | 2010-10-02 17:04:00 -0400 | [diff] [blame] | 1559 | bool confirm_me = false; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1560 | int status = 0; |
| 1561 | |
Mi Jinlong | a62573d | 2011-03-23 17:57:07 +0800 | [diff] [blame] | 1562 | if (cr_ses->flags & ~SESSION4_FLAG_MASK_A) |
| 1563 | return nfserr_inval; |
| 1564 | |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1565 | nfs4_lock_state(); |
| 1566 | unconf = find_unconfirmed_client(&cr_ses->clientid); |
| 1567 | conf = find_confirmed_client(&cr_ses->clientid); |
| 1568 | |
| 1569 | if (conf) { |
Andy Adamson | 49557cc | 2009-07-23 19:02:16 -0400 | [diff] [blame] | 1570 | cs_slot = &conf->cl_cs_slot; |
| 1571 | status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0); |
Andy Adamson | 38eb76a | 2009-04-03 08:28:32 +0300 | [diff] [blame] | 1572 | if (status == nfserr_replay_cache) { |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1573 | dprintk("Got a create_session replay! seqid= %d\n", |
Andy Adamson | 49557cc | 2009-07-23 19:02:16 -0400 | [diff] [blame] | 1574 | cs_slot->sl_seqid); |
Andy Adamson | 38eb76a | 2009-04-03 08:28:32 +0300 | [diff] [blame] | 1575 | /* Return the cached reply status */ |
Andy Adamson | 49557cc | 2009-07-23 19:02:16 -0400 | [diff] [blame] | 1576 | status = nfsd4_replay_create_session(cr_ses, cs_slot); |
Andy Adamson | 38eb76a | 2009-04-03 08:28:32 +0300 | [diff] [blame] | 1577 | goto out; |
Andy Adamson | 49557cc | 2009-07-23 19:02:16 -0400 | [diff] [blame] | 1578 | } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) { |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1579 | status = nfserr_seq_misordered; |
| 1580 | dprintk("Sequence misordered!\n"); |
| 1581 | dprintk("Expected seqid= %d but got seqid= %d\n", |
Andy Adamson | 49557cc | 2009-07-23 19:02:16 -0400 | [diff] [blame] | 1582 | cs_slot->sl_seqid, cr_ses->seqid); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1583 | goto out; |
| 1584 | } |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1585 | } else if (unconf) { |
| 1586 | if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) || |
Jeff Layton | 363168b | 2009-08-14 12:57:56 -0400 | [diff] [blame] | 1587 | !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) { |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1588 | status = nfserr_clid_inuse; |
| 1589 | goto out; |
| 1590 | } |
| 1591 | |
Andy Adamson | 49557cc | 2009-07-23 19:02:16 -0400 | [diff] [blame] | 1592 | cs_slot = &unconf->cl_cs_slot; |
| 1593 | status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0); |
Andy Adamson | 38eb76a | 2009-04-03 08:28:32 +0300 | [diff] [blame] | 1594 | if (status) { |
| 1595 | /* an unconfirmed replay returns misordered */ |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1596 | status = nfserr_seq_misordered; |
J. Bruce Fields | cd5b814 | 2010-10-02 17:03:35 -0400 | [diff] [blame] | 1597 | goto out; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1598 | } |
| 1599 | |
J. Bruce Fields | 86c3e16 | 2010-10-02 17:04:00 -0400 | [diff] [blame] | 1600 | confirm_me = true; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1601 | conf = unconf; |
| 1602 | } else { |
| 1603 | status = nfserr_stale_clientid; |
| 1604 | goto out; |
| 1605 | } |
| 1606 | |
J. Bruce Fields | 408b79b | 2010-04-15 15:11:09 -0400 | [diff] [blame] | 1607 | /* |
J. Bruce Fields | 8323c3b | 2010-10-19 19:36:51 -0400 | [diff] [blame] | 1608 | * XXX: we should probably set this at creation time, and check |
| 1609 | * for consistent minorversion use throughout: |
| 1610 | */ |
| 1611 | conf->cl_minorversion = 1; |
| 1612 | /* |
J. Bruce Fields | 408b79b | 2010-04-15 15:11:09 -0400 | [diff] [blame] | 1613 | * We do not support RDMA or persistent sessions |
| 1614 | */ |
| 1615 | cr_ses->flags &= ~SESSION4_PERSIST; |
| 1616 | cr_ses->flags &= ~SESSION4_RDMA; |
| 1617 | |
Mi Jinlong | 1b74c25 | 2011-07-14 14:50:17 +0800 | [diff] [blame] | 1618 | status = nfserr_toosmall; |
| 1619 | if (check_forechannel_attrs(cr_ses->fore_channel)) |
| 1620 | goto out; |
| 1621 | |
J. Bruce Fields | ac7c46f | 2010-06-14 19:01:57 -0400 | [diff] [blame] | 1622 | status = nfserr_jukebox; |
| 1623 | new = alloc_init_session(rqstp, conf, cr_ses); |
| 1624 | if (!new) |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1625 | goto out; |
J. Bruce Fields | ac7c46f | 2010-06-14 19:01:57 -0400 | [diff] [blame] | 1626 | status = nfs_ok; |
| 1627 | memcpy(cr_ses->sessionid.data, new->se_sessionid.data, |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1628 | NFS4_MAX_SESSIONID_LEN); |
Mi Jinlong | 1205065 | 2010-11-11 18:03:40 +0800 | [diff] [blame] | 1629 | memcpy(&cr_ses->fore_channel, &new->se_fchannel, |
| 1630 | sizeof(struct nfsd4_channel_attrs)); |
J. Bruce Fields | 86c3e16 | 2010-10-02 17:04:00 -0400 | [diff] [blame] | 1631 | cs_slot->sl_seqid++; |
Andy Adamson | 49557cc | 2009-07-23 19:02:16 -0400 | [diff] [blame] | 1632 | cr_ses->seqid = cs_slot->sl_seqid; |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1633 | |
Andy Adamson | 49557cc | 2009-07-23 19:02:16 -0400 | [diff] [blame] | 1634 | /* cache solo and embedded create sessions under the state lock */ |
| 1635 | nfsd4_cache_create_session(cr_ses, cs_slot, status); |
J. Bruce Fields | 86c3e16 | 2010-10-02 17:04:00 -0400 | [diff] [blame] | 1636 | if (confirm_me) |
| 1637 | move_to_confirmed(conf); |
Andy Adamson | ec6b5d7 | 2009-04-03 08:28:28 +0300 | [diff] [blame] | 1638 | out: |
| 1639 | nfs4_unlock_state(); |
| 1640 | dprintk("%s returns %d\n", __func__, ntohl(status)); |
| 1641 | return status; |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1642 | } |
| 1643 | |
J. Bruce Fields | 5771635 | 2010-04-21 12:27:19 -0400 | [diff] [blame] | 1644 | static bool nfsd4_last_compound_op(struct svc_rqst *rqstp) |
| 1645 | { |
| 1646 | struct nfsd4_compoundres *resp = rqstp->rq_resp; |
| 1647 | struct nfsd4_compoundargs *argp = rqstp->rq_argp; |
| 1648 | |
| 1649 | return argp->opcnt == resp->opcnt; |
| 1650 | } |
| 1651 | |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 1652 | static __be32 nfsd4_map_bcts_dir(u32 *dir) |
| 1653 | { |
| 1654 | switch (*dir) { |
| 1655 | case NFS4_CDFC4_FORE: |
| 1656 | case NFS4_CDFC4_BACK: |
| 1657 | return nfs_ok; |
| 1658 | case NFS4_CDFC4_FORE_OR_BOTH: |
| 1659 | case NFS4_CDFC4_BACK_OR_BOTH: |
| 1660 | *dir = NFS4_CDFC4_BOTH; |
| 1661 | return nfs_ok; |
| 1662 | }; |
| 1663 | return nfserr_inval; |
| 1664 | } |
| 1665 | |
| 1666 | __be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp, |
| 1667 | struct nfsd4_compound_state *cstate, |
| 1668 | struct nfsd4_bind_conn_to_session *bcts) |
| 1669 | { |
| 1670 | __be32 status; |
| 1671 | |
| 1672 | if (!nfsd4_last_compound_op(rqstp)) |
| 1673 | return nfserr_not_only_op; |
| 1674 | spin_lock(&client_lock); |
| 1675 | cstate->session = find_in_sessionid_hashtbl(&bcts->sessionid); |
| 1676 | /* Sorta weird: we only need the refcnt'ing because new_conn acquires |
| 1677 | * client_lock iself: */ |
| 1678 | if (cstate->session) { |
| 1679 | nfsd4_get_session(cstate->session); |
| 1680 | atomic_inc(&cstate->session->se_client->cl_refcount); |
| 1681 | } |
| 1682 | spin_unlock(&client_lock); |
| 1683 | if (!cstate->session) |
| 1684 | return nfserr_badsession; |
| 1685 | |
| 1686 | status = nfsd4_map_bcts_dir(&bcts->dir); |
Bryan Schumaker | 1db2b9d | 2011-04-27 15:47:15 -0400 | [diff] [blame] | 1687 | if (!status) |
| 1688 | nfsd4_new_conn(rqstp, cstate->session, bcts->dir); |
| 1689 | return status; |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 1690 | } |
| 1691 | |
J. Bruce Fields | 5d4cec2 | 2010-05-01 12:56:06 -0400 | [diff] [blame] | 1692 | static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid) |
| 1693 | { |
| 1694 | if (!session) |
| 1695 | return 0; |
| 1696 | return !memcmp(sid, &session->se_sessionid, sizeof(*sid)); |
| 1697 | } |
| 1698 | |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1699 | __be32 |
| 1700 | nfsd4_destroy_session(struct svc_rqst *r, |
| 1701 | struct nfsd4_compound_state *cstate, |
| 1702 | struct nfsd4_destroy_session *sessionid) |
| 1703 | { |
Benny Halevy | e10e0cf | 2009-04-03 08:28:38 +0300 | [diff] [blame] | 1704 | struct nfsd4_session *ses; |
| 1705 | u32 status = nfserr_badsession; |
| 1706 | |
| 1707 | /* Notes: |
| 1708 | * - The confirmed nfs4_client->cl_sessionid holds destroyed sessinid |
| 1709 | * - Should we return nfserr_back_chan_busy if waiting for |
| 1710 | * callbacks on to-be-destroyed session? |
| 1711 | * - Do we need to clear any callback info from previous session? |
| 1712 | */ |
| 1713 | |
J. Bruce Fields | 5d4cec2 | 2010-05-01 12:56:06 -0400 | [diff] [blame] | 1714 | if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) { |
J. Bruce Fields | 5771635 | 2010-04-21 12:27:19 -0400 | [diff] [blame] | 1715 | if (!nfsd4_last_compound_op(r)) |
| 1716 | return nfserr_not_only_op; |
| 1717 | } |
Benny Halevy | e10e0cf | 2009-04-03 08:28:38 +0300 | [diff] [blame] | 1718 | dump_sessionid(__func__, &sessionid->sessionid); |
Benny Halevy | 9089f1b | 2010-05-12 00:12:26 +0300 | [diff] [blame] | 1719 | spin_lock(&client_lock); |
Benny Halevy | e10e0cf | 2009-04-03 08:28:38 +0300 | [diff] [blame] | 1720 | ses = find_in_sessionid_hashtbl(&sessionid->sessionid); |
| 1721 | if (!ses) { |
Benny Halevy | 9089f1b | 2010-05-12 00:12:26 +0300 | [diff] [blame] | 1722 | spin_unlock(&client_lock); |
Benny Halevy | e10e0cf | 2009-04-03 08:28:38 +0300 | [diff] [blame] | 1723 | goto out; |
| 1724 | } |
| 1725 | |
| 1726 | unhash_session(ses); |
Benny Halevy | 9089f1b | 2010-05-12 00:12:26 +0300 | [diff] [blame] | 1727 | spin_unlock(&client_lock); |
Benny Halevy | e10e0cf | 2009-04-03 08:28:38 +0300 | [diff] [blame] | 1728 | |
Benny Halevy | ab707e15 | 2010-05-12 00:14:06 +0300 | [diff] [blame] | 1729 | nfs4_lock_state(); |
J. Bruce Fields | 84f5f7c | 2010-12-09 15:52:19 -0500 | [diff] [blame] | 1730 | nfsd4_probe_callback_sync(ses->se_client); |
Benny Halevy | ab707e15 | 2010-05-12 00:14:06 +0300 | [diff] [blame] | 1731 | nfs4_unlock_state(); |
J. Bruce Fields | 19cf5c0 | 2010-06-06 18:37:16 -0400 | [diff] [blame] | 1732 | |
| 1733 | nfsd4_del_conns(ses); |
| 1734 | |
Benny Halevy | e10e0cf | 2009-04-03 08:28:38 +0300 | [diff] [blame] | 1735 | nfsd4_put_session(ses); |
| 1736 | status = nfs_ok; |
| 1737 | out: |
| 1738 | dprintk("%s returns %d\n", __func__, ntohl(status)); |
| 1739 | return status; |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1740 | } |
| 1741 | |
J. Bruce Fields | a663bdd | 2010-10-21 17:17:31 -0400 | [diff] [blame] | 1742 | static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s) |
J. Bruce Fields | 328ead2 | 2010-09-29 16:11:06 -0400 | [diff] [blame] | 1743 | { |
| 1744 | struct nfsd4_conn *c; |
| 1745 | |
| 1746 | list_for_each_entry(c, &s->se_conns, cn_persession) { |
J. Bruce Fields | a663bdd | 2010-10-21 17:17:31 -0400 | [diff] [blame] | 1747 | if (c->cn_xprt == xpt) { |
J. Bruce Fields | 328ead2 | 2010-09-29 16:11:06 -0400 | [diff] [blame] | 1748 | return c; |
| 1749 | } |
| 1750 | } |
| 1751 | return NULL; |
| 1752 | } |
| 1753 | |
J. Bruce Fields | a663bdd | 2010-10-21 17:17:31 -0400 | [diff] [blame] | 1754 | static void nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses) |
J. Bruce Fields | 328ead2 | 2010-09-29 16:11:06 -0400 | [diff] [blame] | 1755 | { |
| 1756 | struct nfs4_client *clp = ses->se_client; |
J. Bruce Fields | a663bdd | 2010-10-21 17:17:31 -0400 | [diff] [blame] | 1757 | struct nfsd4_conn *c; |
J. Bruce Fields | 21b75b0 | 2010-10-26 10:07:17 -0400 | [diff] [blame] | 1758 | int ret; |
J. Bruce Fields | 328ead2 | 2010-09-29 16:11:06 -0400 | [diff] [blame] | 1759 | |
| 1760 | spin_lock(&clp->cl_lock); |
J. Bruce Fields | a663bdd | 2010-10-21 17:17:31 -0400 | [diff] [blame] | 1761 | c = __nfsd4_find_conn(new->cn_xprt, ses); |
J. Bruce Fields | 328ead2 | 2010-09-29 16:11:06 -0400 | [diff] [blame] | 1762 | if (c) { |
| 1763 | spin_unlock(&clp->cl_lock); |
| 1764 | free_conn(new); |
| 1765 | return; |
| 1766 | } |
| 1767 | __nfsd4_hash_conn(new, ses); |
| 1768 | spin_unlock(&clp->cl_lock); |
J. Bruce Fields | 21b75b0 | 2010-10-26 10:07:17 -0400 | [diff] [blame] | 1769 | ret = nfsd4_register_conn(new); |
| 1770 | if (ret) |
| 1771 | /* oops; xprt is already down: */ |
| 1772 | nfsd4_conn_lost(&new->cn_xpt_user); |
J. Bruce Fields | 328ead2 | 2010-09-29 16:11:06 -0400 | [diff] [blame] | 1773 | return; |
| 1774 | } |
| 1775 | |
Mi Jinlong | 868b89c | 2011-04-27 09:09:58 +0800 | [diff] [blame] | 1776 | static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session) |
| 1777 | { |
| 1778 | struct nfsd4_compoundargs *args = rqstp->rq_argp; |
| 1779 | |
| 1780 | return args->opcnt > session->se_fchannel.maxops; |
| 1781 | } |
| 1782 | |
Mi Jinlong | ae82a8d | 2011-07-14 14:56:02 +0800 | [diff] [blame] | 1783 | static bool nfsd4_request_too_big(struct svc_rqst *rqstp, |
| 1784 | struct nfsd4_session *session) |
| 1785 | { |
| 1786 | struct xdr_buf *xb = &rqstp->rq_arg; |
| 1787 | |
| 1788 | return xb->len > session->se_fchannel.maxreq_sz; |
| 1789 | } |
| 1790 | |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1791 | __be32 |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1792 | nfsd4_sequence(struct svc_rqst *rqstp, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1793 | struct nfsd4_compound_state *cstate, |
| 1794 | struct nfsd4_sequence *seq) |
| 1795 | { |
Andy Adamson | f9bb94c4 | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 1796 | struct nfsd4_compoundres *resp = rqstp->rq_resp; |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1797 | struct nfsd4_session *session; |
| 1798 | struct nfsd4_slot *slot; |
J. Bruce Fields | a663bdd | 2010-10-21 17:17:31 -0400 | [diff] [blame] | 1799 | struct nfsd4_conn *conn; |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1800 | int status; |
| 1801 | |
Andy Adamson | f9bb94c4 | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 1802 | if (resp->opcnt != 1) |
| 1803 | return nfserr_sequence_pos; |
| 1804 | |
J. Bruce Fields | a663bdd | 2010-10-21 17:17:31 -0400 | [diff] [blame] | 1805 | /* |
| 1806 | * Will be either used or freed by nfsd4_sequence_check_conn |
| 1807 | * below. |
| 1808 | */ |
| 1809 | conn = alloc_conn(rqstp, NFS4_CDFC4_FORE); |
| 1810 | if (!conn) |
| 1811 | return nfserr_jukebox; |
| 1812 | |
Benny Halevy | 9089f1b | 2010-05-12 00:12:26 +0300 | [diff] [blame] | 1813 | spin_lock(&client_lock); |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1814 | status = nfserr_badsession; |
| 1815 | session = find_in_sessionid_hashtbl(&seq->sessionid); |
| 1816 | if (!session) |
| 1817 | goto out; |
| 1818 | |
Mi Jinlong | 868b89c | 2011-04-27 09:09:58 +0800 | [diff] [blame] | 1819 | status = nfserr_too_many_ops; |
| 1820 | if (nfsd4_session_too_many_ops(rqstp, session)) |
| 1821 | goto out; |
| 1822 | |
Mi Jinlong | ae82a8d | 2011-07-14 14:56:02 +0800 | [diff] [blame] | 1823 | status = nfserr_req_too_big; |
| 1824 | if (nfsd4_request_too_big(rqstp, session)) |
| 1825 | goto out; |
| 1826 | |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1827 | status = nfserr_badslot; |
Alexandros Batsakis | 6c18ba9 | 2009-06-16 04:19:13 +0300 | [diff] [blame] | 1828 | if (seq->slotid >= session->se_fchannel.maxreqs) |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1829 | goto out; |
| 1830 | |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1831 | slot = session->se_slots[seq->slotid]; |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1832 | dprintk("%s: slotid %d\n", __func__, seq->slotid); |
| 1833 | |
Andy Adamson | a8dfdae | 2009-08-28 08:45:02 -0400 | [diff] [blame] | 1834 | /* We do not negotiate the number of slots yet, so set the |
| 1835 | * maxslots to the session maxreqs which is used to encode |
| 1836 | * sr_highest_slotid and the sr_target_slot id to maxslots */ |
| 1837 | seq->maxslots = session->se_fchannel.maxreqs; |
| 1838 | |
Andy Adamson | 88e588d | 2009-07-23 19:02:15 -0400 | [diff] [blame] | 1839 | status = check_slot_seqid(seq->seqid, slot->sl_seqid, slot->sl_inuse); |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1840 | if (status == nfserr_replay_cache) { |
| 1841 | cstate->slot = slot; |
| 1842 | cstate->session = session; |
Andy Adamson | da3846a | 2009-04-03 08:28:22 +0300 | [diff] [blame] | 1843 | /* Return the cached reply status and set cstate->status |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1844 | * for nfsd4_proc_compound processing */ |
Andy Adamson | bf864a3 | 2009-04-03 08:28:35 +0300 | [diff] [blame] | 1845 | status = nfsd4_replay_cache_entry(resp, seq); |
Andy Adamson | da3846a | 2009-04-03 08:28:22 +0300 | [diff] [blame] | 1846 | cstate->status = nfserr_replay_cache; |
Benny Halevy | aaf84eb | 2009-08-20 03:21:56 +0300 | [diff] [blame] | 1847 | goto out; |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1848 | } |
| 1849 | if (status) |
| 1850 | goto out; |
| 1851 | |
J. Bruce Fields | a663bdd | 2010-10-21 17:17:31 -0400 | [diff] [blame] | 1852 | nfsd4_sequence_check_conn(conn, session); |
| 1853 | conn = NULL; |
J. Bruce Fields | 328ead2 | 2010-09-29 16:11:06 -0400 | [diff] [blame] | 1854 | |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1855 | /* Success! bump slot seqid */ |
| 1856 | slot->sl_inuse = true; |
| 1857 | slot->sl_seqid = seq->seqid; |
Andy Adamson | 557ce26 | 2009-08-28 08:45:04 -0400 | [diff] [blame] | 1858 | slot->sl_cachethis = seq->cachethis; |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1859 | |
| 1860 | cstate->slot = slot; |
| 1861 | cstate->session = session; |
| 1862 | |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1863 | out: |
J. Bruce Fields | 26c0c75 | 2010-04-24 15:35:43 -0400 | [diff] [blame] | 1864 | /* Hold a session reference until done processing the compound. */ |
Benny Halevy | aaf84eb | 2009-08-20 03:21:56 +0300 | [diff] [blame] | 1865 | if (cstate->session) { |
J. Bruce Fields | 0d7bb71 | 2010-11-18 08:30:33 -0500 | [diff] [blame] | 1866 | struct nfs4_client *clp = session->se_client; |
| 1867 | |
Benny Halevy | 36acb66 | 2010-05-12 00:13:04 +0300 | [diff] [blame] | 1868 | nfsd4_get_session(cstate->session); |
J. Bruce Fields | 0d7bb71 | 2010-11-18 08:30:33 -0500 | [diff] [blame] | 1869 | atomic_inc(&clp->cl_refcount); |
| 1870 | if (clp->cl_cb_state == NFSD4_CB_DOWN) |
| 1871 | seq->status_flags |= SEQ4_STATUS_CB_PATH_DOWN; |
Benny Halevy | aaf84eb | 2009-08-20 03:21:56 +0300 | [diff] [blame] | 1872 | } |
J. Bruce Fields | a663bdd | 2010-10-21 17:17:31 -0400 | [diff] [blame] | 1873 | kfree(conn); |
Benny Halevy | 36acb66 | 2010-05-12 00:13:04 +0300 | [diff] [blame] | 1874 | spin_unlock(&client_lock); |
Benny Halevy | b85d4c0 | 2009-04-03 08:28:08 +0300 | [diff] [blame] | 1875 | dprintk("%s: return %d\n", __func__, ntohl(status)); |
| 1876 | return status; |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 1877 | } |
| 1878 | |
| 1879 | __be32 |
J. Bruce Fields | 4dc6ec0 | 2010-04-19 15:11:28 -0400 | [diff] [blame] | 1880 | nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc) |
| 1881 | { |
Mi Jinlong | bcecf1c | 2011-04-27 09:14:30 +0800 | [diff] [blame] | 1882 | int status = 0; |
| 1883 | |
J. Bruce Fields | 4dc6ec0 | 2010-04-19 15:11:28 -0400 | [diff] [blame] | 1884 | if (rc->rca_one_fs) { |
| 1885 | if (!cstate->current_fh.fh_dentry) |
| 1886 | return nfserr_nofilehandle; |
| 1887 | /* |
| 1888 | * We don't take advantage of the rca_one_fs case. |
| 1889 | * That's OK, it's optional, we can safely ignore it. |
| 1890 | */ |
| 1891 | return nfs_ok; |
| 1892 | } |
Mi Jinlong | bcecf1c | 2011-04-27 09:14:30 +0800 | [diff] [blame] | 1893 | |
J. Bruce Fields | 4dc6ec0 | 2010-04-19 15:11:28 -0400 | [diff] [blame] | 1894 | nfs4_lock_state(); |
Mi Jinlong | bcecf1c | 2011-04-27 09:14:30 +0800 | [diff] [blame] | 1895 | status = nfserr_complete_already; |
| 1896 | if (cstate->session->se_client->cl_firststate) |
| 1897 | goto out; |
| 1898 | |
| 1899 | status = nfserr_stale_clientid; |
| 1900 | if (is_client_expired(cstate->session->se_client)) |
J. Bruce Fields | 4dc6ec0 | 2010-04-19 15:11:28 -0400 | [diff] [blame] | 1901 | /* |
| 1902 | * The following error isn't really legal. |
| 1903 | * But we only get here if the client just explicitly |
| 1904 | * destroyed the client. Surely it no longer cares what |
| 1905 | * error it gets back on an operation for the dead |
| 1906 | * client. |
| 1907 | */ |
Mi Jinlong | bcecf1c | 2011-04-27 09:14:30 +0800 | [diff] [blame] | 1908 | goto out; |
| 1909 | |
| 1910 | status = nfs_ok; |
J. Bruce Fields | 4dc6ec0 | 2010-04-19 15:11:28 -0400 | [diff] [blame] | 1911 | nfsd4_create_clid_dir(cstate->session->se_client); |
Mi Jinlong | bcecf1c | 2011-04-27 09:14:30 +0800 | [diff] [blame] | 1912 | out: |
J. Bruce Fields | 4dc6ec0 | 2010-04-19 15:11:28 -0400 | [diff] [blame] | 1913 | nfs4_unlock_state(); |
Mi Jinlong | bcecf1c | 2011-04-27 09:14:30 +0800 | [diff] [blame] | 1914 | return status; |
J. Bruce Fields | 4dc6ec0 | 2010-04-19 15:11:28 -0400 | [diff] [blame] | 1915 | } |
| 1916 | |
| 1917 | __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1918 | nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 1919 | struct nfsd4_setclientid *setclid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1920 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1921 | struct xdr_netobj clname = { |
| 1922 | .len = setclid->se_namelen, |
| 1923 | .data = setclid->se_name, |
| 1924 | }; |
| 1925 | nfs4_verifier clverifier = setclid->se_verf; |
| 1926 | unsigned int strhashval; |
NeilBrown | 28ce605 | 2005-06-23 22:03:56 -0700 | [diff] [blame] | 1927 | struct nfs4_client *conf, *unconf, *new; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1928 | __be32 status; |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 1929 | char dname[HEXDIR_LEN]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1930 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1931 | if (!check_name(clname)) |
Neil Brown | 73aea4e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 1932 | return nfserr_inval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 1934 | status = nfs4_make_rec_clidname(dname, &clname); |
| 1935 | if (status) |
Neil Brown | 73aea4e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 1936 | return status; |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 1937 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1938 | /* |
| 1939 | * XXX The Duplicate Request Cache (DRC) has been checked (??) |
| 1940 | * We get here on a DRC miss. |
| 1941 | */ |
| 1942 | |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 1943 | strhashval = clientstr_hashval(dname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1945 | nfs4_lock_state(); |
J. Bruce Fields | e203d50 | 2010-11-24 17:30:54 -0500 | [diff] [blame] | 1946 | conf = find_confirmed_client_by_str(dname, strhashval); |
NeilBrown | 28ce605 | 2005-06-23 22:03:56 -0700 | [diff] [blame] | 1947 | if (conf) { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 1948 | /* RFC 3530 14.2.33 CASE 0: */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1949 | status = nfserr_clid_inuse; |
J. Bruce Fields | e203d50 | 2010-11-24 17:30:54 -0500 | [diff] [blame] | 1950 | if (clp_used_exchangeid(conf)) |
| 1951 | goto out; |
J. Bruce Fields | 026722c | 2009-03-18 15:06:26 -0400 | [diff] [blame] | 1952 | if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) { |
Jeff Layton | 363168b | 2009-08-14 12:57:56 -0400 | [diff] [blame] | 1953 | char addr_str[INET6_ADDRSTRLEN]; |
| 1954 | rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str, |
| 1955 | sizeof(addr_str)); |
| 1956 | dprintk("NFSD: setclientid: string in use by client " |
| 1957 | "at %s\n", addr_str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1958 | goto out; |
| 1959 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1960 | } |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 1961 | /* |
| 1962 | * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION") |
| 1963 | * has a description of SETCLIENTID request processing consisting |
| 1964 | * of 5 bullet points, labeled as CASE0 - CASE4 below. |
| 1965 | */ |
J. Bruce Fields | e203d50 | 2010-11-24 17:30:54 -0500 | [diff] [blame] | 1966 | unconf = find_unconfirmed_client_by_str(dname, strhashval); |
J. Bruce Fields | 3e77246 | 2011-08-10 19:07:33 -0400 | [diff] [blame] | 1967 | status = nfserr_jukebox; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | if (!conf) { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 1969 | /* |
| 1970 | * RFC 3530 14.2.33 CASE 4: |
| 1971 | * placed first, because it is the normal case |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1972 | */ |
| 1973 | if (unconf) |
| 1974 | expire_client(unconf); |
Ricardo Labiaga | b09333c | 2009-09-10 12:27:34 +0300 | [diff] [blame] | 1975 | new = create_client(clname, dname, rqstp, &clverifier); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 1976 | if (new == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | gen_clid(new); |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 1979 | } else if (same_verf(&conf->cl_verifier, &clverifier)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | /* |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 1981 | * RFC 3530 14.2.33 CASE 1: |
| 1982 | * probable callback update |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | */ |
NeilBrown | 31f4a6c | 2005-06-23 22:04:06 -0700 | [diff] [blame] | 1984 | if (unconf) { |
| 1985 | /* Note this is removing unconfirmed {*x***}, |
| 1986 | * which is stronger than RFC recommended {vxc**}. |
| 1987 | * This has the advantage that there is at most |
| 1988 | * one {*x***} in either list at any time. |
| 1989 | */ |
| 1990 | expire_client(unconf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | } |
Ricardo Labiaga | b09333c | 2009-09-10 12:27:34 +0300 | [diff] [blame] | 1992 | new = create_client(clname, dname, rqstp, &clverifier); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 1993 | if (new == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1994 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | copy_clid(new, conf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1996 | } else if (!unconf) { |
| 1997 | /* |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 1998 | * RFC 3530 14.2.33 CASE 2: |
| 1999 | * probable client reboot; state will be removed if |
| 2000 | * confirmed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | */ |
Ricardo Labiaga | b09333c | 2009-09-10 12:27:34 +0300 | [diff] [blame] | 2002 | new = create_client(clname, dname, rqstp, &clverifier); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 2003 | if (new == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | gen_clid(new); |
J. Bruce Fields | 49ba878 | 2007-11-19 19:09:50 -0500 | [diff] [blame] | 2006 | } else { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 2007 | /* |
| 2008 | * RFC 3530 14.2.33 CASE 3: |
| 2009 | * probable client reboot; state will be removed if |
| 2010 | * confirmed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | */ |
| 2012 | expire_client(unconf); |
Ricardo Labiaga | b09333c | 2009-09-10 12:27:34 +0300 | [diff] [blame] | 2013 | new = create_client(clname, dname, rqstp, &clverifier); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 2014 | if (new == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2016 | gen_clid(new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | } |
J. Bruce Fields | 8323c3b | 2010-10-19 19:36:51 -0400 | [diff] [blame] | 2018 | /* |
| 2019 | * XXX: we should probably set this at creation time, and check |
| 2020 | * for consistent minorversion use throughout: |
| 2021 | */ |
| 2022 | new->cl_minorversion = 0; |
Takuma Umeya | 6f3d772 | 2010-12-15 14:09:01 +0900 | [diff] [blame] | 2023 | gen_callback(new, setclid, rqstp); |
J. Bruce Fields | c175b83 | 2007-08-09 18:34:32 -0400 | [diff] [blame] | 2024 | add_to_unconfirmed(new, strhashval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2025 | setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot; |
| 2026 | setclid->se_clientid.cl_id = new->cl_clientid.cl_id; |
| 2027 | memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data)); |
| 2028 | status = nfs_ok; |
| 2029 | out: |
| 2030 | nfs4_unlock_state(); |
| 2031 | return status; |
| 2032 | } |
| 2033 | |
| 2034 | |
| 2035 | /* |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 2036 | * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has |
| 2037 | * a description of SETCLIENTID_CONFIRM request processing consisting of 4 |
| 2038 | * bullets, labeled as CASE1 - CASE4 below. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2039 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2040 | __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2041 | nfsd4_setclientid_confirm(struct svc_rqst *rqstp, |
| 2042 | struct nfsd4_compound_state *cstate, |
| 2043 | struct nfsd4_setclientid_confirm *setclientid_confirm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2044 | { |
Jeff Layton | 363168b | 2009-08-14 12:57:56 -0400 | [diff] [blame] | 2045 | struct sockaddr *sa = svc_addr(rqstp); |
NeilBrown | 21ab45a | 2005-06-23 22:04:14 -0700 | [diff] [blame] | 2046 | struct nfs4_client *conf, *unconf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | nfs4_verifier confirm = setclientid_confirm->sc_confirm; |
| 2048 | clientid_t * clid = &setclientid_confirm->sc_clientid; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2049 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | |
| 2051 | if (STALE_CLIENTID(clid)) |
| 2052 | return nfserr_stale_clientid; |
| 2053 | /* |
| 2054 | * XXX The Duplicate Request Cache (DRC) has been checked (??) |
| 2055 | * We get here on a DRC miss. |
| 2056 | */ |
| 2057 | |
| 2058 | nfs4_lock_state(); |
NeilBrown | 21ab45a | 2005-06-23 22:04:14 -0700 | [diff] [blame] | 2059 | |
| 2060 | conf = find_confirmed_client(clid); |
| 2061 | unconf = find_unconfirmed_client(clid); |
| 2062 | |
| 2063 | status = nfserr_clid_inuse; |
Jeff Layton | 363168b | 2009-08-14 12:57:56 -0400 | [diff] [blame] | 2064 | if (conf && !rpc_cmp_addr((struct sockaddr *) &conf->cl_addr, sa)) |
NeilBrown | 21ab45a | 2005-06-23 22:04:14 -0700 | [diff] [blame] | 2065 | goto out; |
Jeff Layton | 363168b | 2009-08-14 12:57:56 -0400 | [diff] [blame] | 2066 | if (unconf && !rpc_cmp_addr((struct sockaddr *) &unconf->cl_addr, sa)) |
NeilBrown | 21ab45a | 2005-06-23 22:04:14 -0700 | [diff] [blame] | 2067 | goto out; |
| 2068 | |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 2069 | /* |
| 2070 | * section 14.2.34 of RFC 3530 has a description of |
| 2071 | * SETCLIENTID_CONFIRM request processing consisting |
| 2072 | * of 4 bullet points, labeled as CASE1 - CASE4 below. |
| 2073 | */ |
J. Bruce Fields | 366e0c1 | 2007-11-20 15:54:10 -0500 | [diff] [blame] | 2074 | if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 2075 | /* |
| 2076 | * RFC 3530 14.2.34 CASE 1: |
| 2077 | * callback update |
| 2078 | */ |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 2079 | if (!same_creds(&conf->cl_cred, &unconf->cl_cred)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | status = nfserr_clid_inuse; |
| 2081 | else { |
J. Bruce Fields | 5a3c9d7 | 2010-10-19 17:56:52 -0400 | [diff] [blame] | 2082 | nfsd4_change_callback(conf, &unconf->cl_cb_conn); |
| 2083 | nfsd4_probe_callback(conf); |
NeilBrown | 1a69c17 | 2005-06-23 22:04:08 -0700 | [diff] [blame] | 2084 | expire_client(unconf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2085 | status = nfs_ok; |
NeilBrown | 1a69c17 | 2005-06-23 22:04:08 -0700 | [diff] [blame] | 2086 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | } |
J. Bruce Fields | f3aba4e | 2007-11-20 16:52:07 -0500 | [diff] [blame] | 2088 | } else if (conf && !unconf) { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 2089 | /* |
| 2090 | * RFC 3530 14.2.34 CASE 2: |
| 2091 | * probable retransmitted request; play it safe and |
| 2092 | * do nothing. |
NeilBrown | 7c79f73 | 2005-06-23 22:04:13 -0700 | [diff] [blame] | 2093 | */ |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 2094 | if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | status = nfserr_clid_inuse; |
NeilBrown | 21ab45a | 2005-06-23 22:04:14 -0700 | [diff] [blame] | 2096 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2097 | status = nfs_ok; |
NeilBrown | 7c79f73 | 2005-06-23 22:04:13 -0700 | [diff] [blame] | 2098 | } else if (!conf && unconf |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 2099 | && same_verf(&unconf->cl_confirm, &confirm)) { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 2100 | /* |
| 2101 | * RFC 3530 14.2.34 CASE 3: |
| 2102 | * Normal case; new or rebooted client: |
NeilBrown | 7c79f73 | 2005-06-23 22:04:13 -0700 | [diff] [blame] | 2103 | */ |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 2104 | if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2105 | status = nfserr_clid_inuse; |
| 2106 | } else { |
NeilBrown | 1a69c17 | 2005-06-23 22:04:08 -0700 | [diff] [blame] | 2107 | unsigned int hash = |
| 2108 | clientstr_hashval(unconf->cl_recdir); |
| 2109 | conf = find_confirmed_client_by_str(unconf->cl_recdir, |
J. Bruce Fields | e203d50 | 2010-11-24 17:30:54 -0500 | [diff] [blame] | 2110 | hash); |
NeilBrown | 1a69c17 | 2005-06-23 22:04:08 -0700 | [diff] [blame] | 2111 | if (conf) { |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 2112 | nfsd4_remove_clid_dir(conf); |
NeilBrown | 1a69c17 | 2005-06-23 22:04:08 -0700 | [diff] [blame] | 2113 | expire_client(conf); |
| 2114 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | move_to_confirmed(unconf); |
NeilBrown | 21ab45a | 2005-06-23 22:04:14 -0700 | [diff] [blame] | 2116 | conf = unconf; |
J. Bruce Fields | 5a3c9d7 | 2010-10-19 17:56:52 -0400 | [diff] [blame] | 2117 | nfsd4_probe_callback(conf); |
NeilBrown | 1a69c17 | 2005-06-23 22:04:08 -0700 | [diff] [blame] | 2118 | status = nfs_ok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2119 | } |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 2120 | } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm))) |
| 2121 | && (!unconf || (unconf && !same_verf(&unconf->cl_confirm, |
NeilBrown | 7c79f73 | 2005-06-23 22:04:13 -0700 | [diff] [blame] | 2122 | &confirm)))) { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 2123 | /* |
| 2124 | * RFC 3530 14.2.34 CASE 4: |
| 2125 | * Client probably hasn't noticed that we rebooted yet. |
NeilBrown | 7c79f73 | 2005-06-23 22:04:13 -0700 | [diff] [blame] | 2126 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | status = nfserr_stale_clientid; |
NeilBrown | 7c79f73 | 2005-06-23 22:04:13 -0700 | [diff] [blame] | 2128 | } else { |
NeilBrown | 08e8987 | 2005-06-23 22:04:11 -0700 | [diff] [blame] | 2129 | /* check that we have hit one of the cases...*/ |
| 2130 | status = nfserr_clid_inuse; |
| 2131 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2133 | nfs4_unlock_state(); |
| 2134 | return status; |
| 2135 | } |
| 2136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2137 | /* OPEN Share state helper functions */ |
| 2138 | static inline struct nfs4_file * |
| 2139 | alloc_init_file(struct inode *ino) |
| 2140 | { |
| 2141 | struct nfs4_file *fp; |
| 2142 | unsigned int hashval = file_hashval(ino); |
| 2143 | |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 2144 | fp = kmem_cache_alloc(file_slab, GFP_KERNEL); |
| 2145 | if (fp) { |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 2146 | atomic_set(&fp->fi_ref, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2147 | INIT_LIST_HEAD(&fp->fi_hash); |
NeilBrown | 8beefa2 | 2005-06-23 22:03:08 -0700 | [diff] [blame] | 2148 | INIT_LIST_HEAD(&fp->fi_stateids); |
| 2149 | INIT_LIST_HEAD(&fp->fi_delegations); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2150 | fp->fi_inode = igrab(ino); |
| 2151 | fp->fi_id = current_fileid++; |
Meelap Shah | 47f9940 | 2007-07-17 04:04:40 -0700 | [diff] [blame] | 2152 | fp->fi_had_conflict = false; |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2153 | fp->fi_lease = NULL; |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2154 | memset(fp->fi_fds, 0, sizeof(fp->fi_fds)); |
| 2155 | memset(fp->fi_access, 0, sizeof(fp->fi_access)); |
Pavel Emelyanov | 47cee54 | 2010-05-17 20:00:37 +0400 | [diff] [blame] | 2156 | spin_lock(&recall_lock); |
| 2157 | list_add(&fp->fi_hash, &file_hashtbl[hashval]); |
| 2158 | spin_unlock(&recall_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | return fp; |
| 2160 | } |
| 2161 | return NULL; |
| 2162 | } |
| 2163 | |
| 2164 | static void |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 2165 | nfsd4_free_slab(struct kmem_cache **slab) |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 2166 | { |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 2167 | if (*slab == NULL) |
| 2168 | return; |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 2169 | kmem_cache_destroy(*slab); |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 2170 | *slab = NULL; |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 2171 | } |
| 2172 | |
J. Bruce Fields | e8ff2a8 | 2007-08-01 15:30:59 -0400 | [diff] [blame] | 2173 | void |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 2174 | nfsd4_free_slabs(void) |
| 2175 | { |
| 2176 | nfsd4_free_slab(&stateowner_slab); |
| 2177 | nfsd4_free_slab(&file_slab); |
NeilBrown | 5ac049a | 2005-06-23 22:03:03 -0700 | [diff] [blame] | 2178 | nfsd4_free_slab(&stateid_slab); |
NeilBrown | 5b2d21c | 2005-06-23 22:03:04 -0700 | [diff] [blame] | 2179 | nfsd4_free_slab(&deleg_slab); |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 2180 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | |
| 2182 | static int |
| 2183 | nfsd4_init_slabs(void) |
| 2184 | { |
| 2185 | stateowner_slab = kmem_cache_create("nfsd4_stateowners", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 2186 | sizeof(struct nfs4_stateowner), 0, 0, NULL); |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 2187 | if (stateowner_slab == NULL) |
| 2188 | goto out_nomem; |
| 2189 | file_slab = kmem_cache_create("nfsd4_files", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 2190 | sizeof(struct nfs4_file), 0, 0, NULL); |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 2191 | if (file_slab == NULL) |
| 2192 | goto out_nomem; |
NeilBrown | 5ac049a | 2005-06-23 22:03:03 -0700 | [diff] [blame] | 2193 | stateid_slab = kmem_cache_create("nfsd4_stateids", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 2194 | sizeof(struct nfs4_stateid), 0, 0, NULL); |
NeilBrown | 5ac049a | 2005-06-23 22:03:03 -0700 | [diff] [blame] | 2195 | if (stateid_slab == NULL) |
| 2196 | goto out_nomem; |
NeilBrown | 5b2d21c | 2005-06-23 22:03:04 -0700 | [diff] [blame] | 2197 | deleg_slab = kmem_cache_create("nfsd4_delegations", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 2198 | sizeof(struct nfs4_delegation), 0, 0, NULL); |
NeilBrown | 5b2d21c | 2005-06-23 22:03:04 -0700 | [diff] [blame] | 2199 | if (deleg_slab == NULL) |
| 2200 | goto out_nomem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | return 0; |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 2202 | out_nomem: |
| 2203 | nfsd4_free_slabs(); |
| 2204 | dprintk("nfsd4: out of memory while initializing nfsv4\n"); |
| 2205 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | } |
| 2207 | |
| 2208 | void |
| 2209 | nfs4_free_stateowner(struct kref *kref) |
| 2210 | { |
| 2211 | struct nfs4_stateowner *sop = |
| 2212 | container_of(kref, struct nfs4_stateowner, so_ref); |
| 2213 | kfree(sop->so_owner.data); |
| 2214 | kmem_cache_free(stateowner_slab, sop); |
| 2215 | } |
| 2216 | |
J. Bruce Fields | ff194bd | 2011-08-12 09:42:57 -0400 | [diff] [blame] | 2217 | static void init_nfs4_replay(struct nfs4_replay *rp) |
| 2218 | { |
| 2219 | rp->rp_status = nfserr_serverfault; |
| 2220 | rp->rp_buflen = 0; |
| 2221 | rp->rp_buf = rp->rp_ibuf; |
| 2222 | } |
| 2223 | |
| 2224 | static inline struct nfs4_stateowner *alloc_stateowner(struct xdr_netobj *owner, struct nfs4_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2225 | { |
| 2226 | struct nfs4_stateowner *sop; |
| 2227 | |
J. Bruce Fields | ff194bd | 2011-08-12 09:42:57 -0400 | [diff] [blame] | 2228 | sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL); |
| 2229 | if (!sop) |
| 2230 | return NULL; |
| 2231 | |
| 2232 | sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL); |
| 2233 | if (!sop->so_owner.data) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2234 | kmem_cache_free(stateowner_slab, sop); |
J. Bruce Fields | ff194bd | 2011-08-12 09:42:57 -0400 | [diff] [blame] | 2235 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | } |
J. Bruce Fields | ff194bd | 2011-08-12 09:42:57 -0400 | [diff] [blame] | 2237 | sop->so_owner.len = owner->len; |
| 2238 | |
| 2239 | kref_init(&sop->so_ref); |
| 2240 | INIT_LIST_HEAD(&sop->so_perclient); |
| 2241 | INIT_LIST_HEAD(&sop->so_stateids); |
| 2242 | INIT_LIST_HEAD(&sop->so_perstateid); |
| 2243 | INIT_LIST_HEAD(&sop->so_close_lru); |
| 2244 | sop->so_id = current_ownerid++; |
| 2245 | sop->so_time = 0; |
| 2246 | sop->so_client = clp; |
| 2247 | init_nfs4_replay(&sop->so_replay); |
| 2248 | return sop; |
| 2249 | } |
| 2250 | |
| 2251 | static void hash_openowner(struct nfs4_stateowner *sop, struct nfs4_client *clp, unsigned int strhashval) |
| 2252 | { |
| 2253 | unsigned int idhashval; |
| 2254 | |
| 2255 | idhashval = open_ownerid_hashval(sop->so_id); |
| 2256 | list_add(&sop->so_idhash, &open_ownerid_hashtbl[idhashval]); |
| 2257 | list_add(&sop->so_strhash, &open_ownerstr_hashtbl[strhashval]); |
| 2258 | list_add(&sop->so_perclient, &clp->cl_openowners); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | } |
| 2260 | |
| 2261 | static struct nfs4_stateowner * |
| 2262 | alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) { |
| 2263 | struct nfs4_stateowner *sop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | |
J. Bruce Fields | ff194bd | 2011-08-12 09:42:57 -0400 | [diff] [blame] | 2265 | sop = alloc_stateowner(&open->op_owner, clp); |
| 2266 | if (!sop) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2267 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | sop->so_is_open_owner = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2269 | sop->so_seqid = open->op_seqid; |
| 2270 | sop->so_confirmed = 0; |
J. Bruce Fields | ff194bd | 2011-08-12 09:42:57 -0400 | [diff] [blame] | 2271 | hash_openowner(sop, clp, strhashval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2272 | return sop; |
| 2273 | } |
| 2274 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2275 | static inline void |
| 2276 | init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) { |
| 2277 | struct nfs4_stateowner *sop = open->op_stateowner; |
| 2278 | unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id); |
| 2279 | |
| 2280 | INIT_LIST_HEAD(&stp->st_hash); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 2281 | INIT_LIST_HEAD(&stp->st_perstateowner); |
| 2282 | INIT_LIST_HEAD(&stp->st_lockowners); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | INIT_LIST_HEAD(&stp->st_perfile); |
| 2284 | list_add(&stp->st_hash, &stateid_hashtbl[hashval]); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 2285 | list_add(&stp->st_perstateowner, &sop->so_stateids); |
NeilBrown | 8beefa2 | 2005-06-23 22:03:08 -0700 | [diff] [blame] | 2286 | list_add(&stp->st_perfile, &fp->fi_stateids); |
J. Bruce Fields | 5fa0bbb | 2011-08-31 15:25:46 -0400 | [diff] [blame] | 2287 | stp->st_type = NFS4_OPEN_STID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2288 | stp->st_stateowner = sop; |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 2289 | get_nfs4_file(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2290 | stp->st_file = fp; |
J. Bruce Fields | e4e83ea | 2010-04-22 16:21:39 -0400 | [diff] [blame] | 2291 | stp->st_stateid.si_boot = boot_time; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2292 | stp->st_stateid.si_stateownerid = sop->so_id; |
| 2293 | stp->st_stateid.si_fileid = fp->fi_id; |
| 2294 | stp->st_stateid.si_generation = 0; |
| 2295 | stp->st_access_bmap = 0; |
| 2296 | stp->st_deny_bmap = 0; |
Andy Adamson | 84459a1 | 2009-04-03 08:28:56 +0300 | [diff] [blame] | 2297 | __set_bit(open->op_share_access & ~NFS4_SHARE_WANT_MASK, |
| 2298 | &stp->st_access_bmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2299 | __set_bit(open->op_share_deny, &stp->st_deny_bmap); |
NeilBrown | 4c4cd22 | 2005-07-07 17:59:27 -0700 | [diff] [blame] | 2300 | stp->st_openstp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2301 | } |
| 2302 | |
| 2303 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2304 | move_to_close_lru(struct nfs4_stateowner *sop) |
| 2305 | { |
| 2306 | dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop); |
| 2307 | |
NeilBrown | 358dd55 | 2006-04-10 22:55:42 -0700 | [diff] [blame] | 2308 | list_move_tail(&sop->so_close_lru, &close_lru); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2309 | sop->so_time = get_seconds(); |
| 2310 | } |
| 2311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2312 | static int |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 2313 | same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner, |
| 2314 | clientid_t *clid) |
| 2315 | { |
| 2316 | return (sop->so_owner.len == owner->len) && |
| 2317 | 0 == memcmp(sop->so_owner.data, owner->data, owner->len) && |
| 2318 | (sop->so_client->cl_clientid.cl_id == clid->cl_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | } |
| 2320 | |
| 2321 | static struct nfs4_stateowner * |
| 2322 | find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open) |
| 2323 | { |
| 2324 | struct nfs4_stateowner *so = NULL; |
| 2325 | |
J. Bruce Fields | 506f275 | 2011-08-11 18:50:18 -0400 | [diff] [blame] | 2326 | list_for_each_entry(so, &open_ownerstr_hashtbl[hashval], so_strhash) { |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 2327 | if (same_owner_str(so, &open->op_owner, &open->op_clientid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2328 | return so; |
| 2329 | } |
| 2330 | return NULL; |
| 2331 | } |
| 2332 | |
| 2333 | /* search file_hashtbl[] for file */ |
| 2334 | static struct nfs4_file * |
| 2335 | find_file(struct inode *ino) |
| 2336 | { |
| 2337 | unsigned int hashval = file_hashval(ino); |
| 2338 | struct nfs4_file *fp; |
| 2339 | |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 2340 | spin_lock(&recall_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2341 | list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) { |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 2342 | if (fp->fi_inode == ino) { |
| 2343 | get_nfs4_file(fp); |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 2344 | spin_unlock(&recall_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2345 | return fp; |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 2346 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2347 | } |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 2348 | spin_unlock(&recall_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2349 | return NULL; |
| 2350 | } |
| 2351 | |
Andy Adamson | d87a8ad | 2009-04-03 08:28:53 +0300 | [diff] [blame] | 2352 | static inline int access_valid(u32 x, u32 minorversion) |
J. Bruce Fields | ba5a6a1 | 2006-06-30 01:56:16 -0700 | [diff] [blame] | 2353 | { |
Andy Adamson | d87a8ad | 2009-04-03 08:28:53 +0300 | [diff] [blame] | 2354 | if ((x & NFS4_SHARE_ACCESS_MASK) < NFS4_SHARE_ACCESS_READ) |
J. Bruce Fields | 8838dc4 | 2008-01-14 13:12:19 -0500 | [diff] [blame] | 2355 | return 0; |
Andy Adamson | d87a8ad | 2009-04-03 08:28:53 +0300 | [diff] [blame] | 2356 | if ((x & NFS4_SHARE_ACCESS_MASK) > NFS4_SHARE_ACCESS_BOTH) |
| 2357 | return 0; |
| 2358 | x &= ~NFS4_SHARE_ACCESS_MASK; |
| 2359 | if (minorversion && x) { |
| 2360 | if ((x & NFS4_SHARE_WANT_MASK) > NFS4_SHARE_WANT_CANCEL) |
| 2361 | return 0; |
| 2362 | if ((x & NFS4_SHARE_WHEN_MASK) > NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED) |
| 2363 | return 0; |
| 2364 | x &= ~(NFS4_SHARE_WANT_MASK | NFS4_SHARE_WHEN_MASK); |
| 2365 | } |
| 2366 | if (x) |
J. Bruce Fields | 8838dc4 | 2008-01-14 13:12:19 -0500 | [diff] [blame] | 2367 | return 0; |
| 2368 | return 1; |
J. Bruce Fields | ba5a6a1 | 2006-06-30 01:56:16 -0700 | [diff] [blame] | 2369 | } |
| 2370 | |
J. Bruce Fields | 8838dc4 | 2008-01-14 13:12:19 -0500 | [diff] [blame] | 2371 | static inline int deny_valid(u32 x) |
J. Bruce Fields | ba5a6a1 | 2006-06-30 01:56:16 -0700 | [diff] [blame] | 2372 | { |
J. Bruce Fields | 8838dc4 | 2008-01-14 13:12:19 -0500 | [diff] [blame] | 2373 | /* Note: unlike access bits, deny bits may be zero. */ |
| 2374 | return x <= NFS4_SHARE_DENY_BOTH; |
J. Bruce Fields | ba5a6a1 | 2006-06-30 01:56:16 -0700 | [diff] [blame] | 2375 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2376 | |
J. Bruce Fields | 4f83aa3 | 2008-07-07 15:02:02 -0400 | [diff] [blame] | 2377 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2378 | * Called to check deny when READ with all zero stateid or |
| 2379 | * WRITE with all zero or all one stateid |
| 2380 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2381 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2382 | nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type) |
| 2383 | { |
| 2384 | struct inode *ino = current_fh->fh_dentry->d_inode; |
| 2385 | struct nfs4_file *fp; |
| 2386 | struct nfs4_stateid *stp; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2387 | __be32 ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2388 | |
| 2389 | dprintk("NFSD: nfs4_share_conflict\n"); |
| 2390 | |
| 2391 | fp = find_file(ino); |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 2392 | if (!fp) |
| 2393 | return nfs_ok; |
NeilBrown | b700949 | 2005-07-07 17:59:23 -0700 | [diff] [blame] | 2394 | ret = nfserr_locked; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2395 | /* Search for conflicting share reservations */ |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 2396 | list_for_each_entry(stp, &fp->fi_stateids, st_perfile) { |
| 2397 | if (test_bit(deny_type, &stp->st_deny_bmap) || |
| 2398 | test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap)) |
| 2399 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | } |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 2401 | ret = nfs_ok; |
| 2402 | out: |
| 2403 | put_nfs4_file(fp); |
| 2404 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2405 | } |
| 2406 | |
J. Bruce Fields | 6b57d9c | 2011-01-31 11:54:04 -0500 | [diff] [blame] | 2407 | static void nfsd_break_one_deleg(struct nfs4_delegation *dp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2408 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | /* We're assuming the state code never drops its reference |
| 2410 | * without first removing the lease. Since we're in this lease |
| 2411 | * callback (and since the lease code is serialized by the kernel |
| 2412 | * lock) we know the server hasn't removed the lease yet, we know |
| 2413 | * it's safe to take a reference: */ |
| 2414 | atomic_inc(&dp->dl_count); |
| 2415 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2416 | list_add_tail(&dp->dl_recall_lru, &del_recall_lru); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2417 | |
Arnd Bergmann | 460781b | 2010-11-17 16:26:56 +0100 | [diff] [blame] | 2418 | /* only place dl_time is set. protected by lock_flocks*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2419 | dp->dl_time = get_seconds(); |
| 2420 | |
J. Bruce Fields | 6b57d9c | 2011-01-31 11:54:04 -0500 | [diff] [blame] | 2421 | nfsd4_cb_recall(dp); |
| 2422 | } |
| 2423 | |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2424 | /* Called from break_lease() with lock_flocks() held. */ |
J. Bruce Fields | 6b57d9c | 2011-01-31 11:54:04 -0500 | [diff] [blame] | 2425 | static void nfsd_break_deleg_cb(struct file_lock *fl) |
| 2426 | { |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2427 | struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner; |
| 2428 | struct nfs4_delegation *dp; |
J. Bruce Fields | 6b57d9c | 2011-01-31 11:54:04 -0500 | [diff] [blame] | 2429 | |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2430 | BUG_ON(!fp); |
| 2431 | /* We assume break_lease is only called once per lease: */ |
| 2432 | BUG_ON(fp->fi_had_conflict); |
J. Bruce Fields | 0272e1f | 2007-09-12 18:56:12 -0400 | [diff] [blame] | 2433 | /* |
| 2434 | * We don't want the locks code to timeout the lease for us; |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2435 | * we'll remove it ourself if a delegation isn't returned |
J. Bruce Fields | 6b57d9c | 2011-01-31 11:54:04 -0500 | [diff] [blame] | 2436 | * in time: |
J. Bruce Fields | 0272e1f | 2007-09-12 18:56:12 -0400 | [diff] [blame] | 2437 | */ |
| 2438 | fl->fl_break_time = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2439 | |
J. Bruce Fields | 5d926e8 | 2011-02-07 16:53:46 -0500 | [diff] [blame] | 2440 | spin_lock(&recall_lock); |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2441 | fp->fi_had_conflict = true; |
| 2442 | list_for_each_entry(dp, &fp->fi_delegations, dl_perfile) |
| 2443 | nfsd_break_one_deleg(dp); |
J. Bruce Fields | 5d926e8 | 2011-02-07 16:53:46 -0500 | [diff] [blame] | 2444 | spin_unlock(&recall_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2445 | } |
| 2446 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2447 | static |
| 2448 | int nfsd_change_deleg_cb(struct file_lock **onlist, int arg) |
| 2449 | { |
| 2450 | if (arg & F_UNLCK) |
| 2451 | return lease_modify(onlist, arg); |
| 2452 | else |
| 2453 | return -EAGAIN; |
| 2454 | } |
| 2455 | |
Alexey Dobriyan | 7b02196 | 2009-09-21 17:01:12 -0700 | [diff] [blame] | 2456 | static const struct lock_manager_operations nfsd_lease_mng_ops = { |
J. Bruce Fields | 8fb47a4 | 2011-07-20 20:21:59 -0400 | [diff] [blame] | 2457 | .lm_break = nfsd_break_deleg_cb, |
| 2458 | .lm_change = nfsd_change_deleg_cb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2459 | }; |
| 2460 | |
| 2461 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2462 | __be32 |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 2463 | nfsd4_process_open1(struct nfsd4_compound_state *cstate, |
| 2464 | struct nfsd4_open *open) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2465 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2466 | clientid_t *clientid = &open->op_clientid; |
| 2467 | struct nfs4_client *clp = NULL; |
| 2468 | unsigned int strhashval; |
| 2469 | struct nfs4_stateowner *sop = NULL; |
| 2470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2471 | if (!check_name(open->op_owner)) |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 2472 | return nfserr_inval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2473 | |
| 2474 | if (STALE_CLIENTID(&open->op_clientid)) |
| 2475 | return nfserr_stale_clientid; |
| 2476 | |
J. Bruce Fields | 506f275 | 2011-08-11 18:50:18 -0400 | [diff] [blame] | 2477 | strhashval = open_ownerstr_hashval(clientid->cl_id, &open->op_owner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2478 | sop = find_openstateowner_str(strhashval, open); |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 2479 | open->op_stateowner = sop; |
| 2480 | if (!sop) { |
| 2481 | /* Make sure the client's lease hasn't expired. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2482 | clp = find_confirmed_client(clientid); |
| 2483 | if (clp == NULL) |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 2484 | return nfserr_expired; |
| 2485 | goto renew; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2486 | } |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 2487 | /* When sessions are used, skip open sequenceid processing */ |
| 2488 | if (nfsd4_has_session(cstate)) |
| 2489 | goto renew; |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 2490 | if (!sop->so_confirmed) { |
| 2491 | /* Replace unconfirmed owners without checking for replay. */ |
| 2492 | clp = sop->so_client; |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 2493 | release_openowner(sop); |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 2494 | open->op_stateowner = NULL; |
| 2495 | goto renew; |
| 2496 | } |
| 2497 | if (open->op_seqid == sop->so_seqid - 1) { |
| 2498 | if (sop->so_replay.rp_buflen) |
Al Viro | a90b061 | 2006-10-19 23:29:03 -0700 | [diff] [blame] | 2499 | return nfserr_replay_me; |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 2500 | /* The original OPEN failed so spectacularly |
| 2501 | * that we don't even have replay data saved! |
| 2502 | * Therefore, we have no choice but to continue |
| 2503 | * processing this OPEN; presumably, we'll |
| 2504 | * fail again for the same reason. |
| 2505 | */ |
| 2506 | dprintk("nfsd4_process_open1: replay with no replay cache\n"); |
| 2507 | goto renew; |
| 2508 | } |
| 2509 | if (open->op_seqid != sop->so_seqid) |
| 2510 | return nfserr_bad_seqid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2511 | renew: |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 2512 | if (open->op_stateowner == NULL) { |
| 2513 | sop = alloc_init_open_stateowner(strhashval, clp, open); |
| 2514 | if (sop == NULL) |
J. Bruce Fields | 3e77246 | 2011-08-10 19:07:33 -0400 | [diff] [blame] | 2515 | return nfserr_jukebox; |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 2516 | open->op_stateowner = sop; |
| 2517 | } |
| 2518 | list_del_init(&sop->so_close_lru); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2519 | renew_client(sop->so_client); |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 2520 | return nfs_ok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2521 | } |
| 2522 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2523 | static inline __be32 |
NeilBrown | 4a6e43e | 2005-06-23 22:02:50 -0700 | [diff] [blame] | 2524 | nfs4_check_delegmode(struct nfs4_delegation *dp, int flags) |
| 2525 | { |
| 2526 | if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ)) |
| 2527 | return nfserr_openmode; |
| 2528 | else |
| 2529 | return nfs_ok; |
| 2530 | } |
| 2531 | |
NeilBrown | 52f4fb4 | 2005-06-23 22:02:49 -0700 | [diff] [blame] | 2532 | static struct nfs4_delegation * |
| 2533 | find_delegation_file(struct nfs4_file *fp, stateid_t *stid) |
| 2534 | { |
J. Bruce Fields | 32b007b | 2011-03-06 19:11:03 -0500 | [diff] [blame] | 2535 | struct nfs4_delegation *dp; |
NeilBrown | 52f4fb4 | 2005-06-23 22:02:49 -0700 | [diff] [blame] | 2536 | |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2537 | spin_lock(&recall_lock); |
J. Bruce Fields | 32b007b | 2011-03-06 19:11:03 -0500 | [diff] [blame] | 2538 | list_for_each_entry(dp, &fp->fi_delegations, dl_perfile) |
| 2539 | if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid) { |
| 2540 | spin_unlock(&recall_lock); |
| 2541 | return dp; |
| 2542 | } |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2543 | spin_unlock(&recall_lock); |
J. Bruce Fields | 32b007b | 2011-03-06 19:11:03 -0500 | [diff] [blame] | 2544 | return NULL; |
NeilBrown | 52f4fb4 | 2005-06-23 22:02:49 -0700 | [diff] [blame] | 2545 | } |
| 2546 | |
Daniel Mack | c47d832 | 2011-05-16 16:38:14 +0200 | [diff] [blame] | 2547 | static int share_access_to_flags(u32 share_access) |
J. Bruce Fields | 24a0111 | 2010-05-18 20:01:35 -0400 | [diff] [blame] | 2548 | { |
| 2549 | share_access &= ~NFS4_SHARE_WANT_MASK; |
| 2550 | |
| 2551 | return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE; |
| 2552 | } |
| 2553 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2554 | static __be32 |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 2555 | nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open, |
| 2556 | struct nfs4_delegation **dp) |
| 2557 | { |
| 2558 | int flags; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2559 | __be32 status = nfserr_bad_stateid; |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 2560 | |
| 2561 | *dp = find_delegation_file(fp, &open->op_delegate_stateid); |
| 2562 | if (*dp == NULL) |
NeilBrown | c44c5ee | 2005-06-23 22:02:54 -0700 | [diff] [blame] | 2563 | goto out; |
J. Bruce Fields | 24a0111 | 2010-05-18 20:01:35 -0400 | [diff] [blame] | 2564 | flags = share_access_to_flags(open->op_share_access); |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 2565 | status = nfs4_check_delegmode(*dp, flags); |
| 2566 | if (status) |
| 2567 | *dp = NULL; |
NeilBrown | c44c5ee | 2005-06-23 22:02:54 -0700 | [diff] [blame] | 2568 | out: |
| 2569 | if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR) |
| 2570 | return nfs_ok; |
| 2571 | if (status) |
| 2572 | return status; |
| 2573 | open->op_stateowner->so_confirmed = 1; |
| 2574 | return nfs_ok; |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 2575 | } |
| 2576 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2577 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2578 | nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp) |
| 2579 | { |
| 2580 | struct nfs4_stateid *local; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2581 | __be32 status = nfserr_share_denied; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2582 | struct nfs4_stateowner *sop = open->op_stateowner; |
| 2583 | |
NeilBrown | 8beefa2 | 2005-06-23 22:03:08 -0700 | [diff] [blame] | 2584 | list_for_each_entry(local, &fp->fi_stateids, st_perfile) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2585 | /* ignore lock owners */ |
| 2586 | if (local->st_stateowner->so_is_open_owner == 0) |
| 2587 | continue; |
| 2588 | /* remember if we have seen this open owner */ |
| 2589 | if (local->st_stateowner == sop) |
| 2590 | *stpp = local; |
| 2591 | /* check for conflicting share reservations */ |
| 2592 | if (!test_share(local, open)) |
| 2593 | goto out; |
| 2594 | } |
| 2595 | status = 0; |
| 2596 | out: |
| 2597 | return status; |
| 2598 | } |
| 2599 | |
NeilBrown | 5ac049a | 2005-06-23 22:03:03 -0700 | [diff] [blame] | 2600 | static inline struct nfs4_stateid * |
| 2601 | nfs4_alloc_stateid(void) |
| 2602 | { |
| 2603 | return kmem_cache_alloc(stateid_slab, GFP_KERNEL); |
| 2604 | } |
| 2605 | |
J. Bruce Fields | 21fb401 | 2010-07-28 12:21:23 -0400 | [diff] [blame] | 2606 | static inline int nfs4_access_to_access(u32 nfs4_access) |
| 2607 | { |
| 2608 | int flags = 0; |
| 2609 | |
| 2610 | if (nfs4_access & NFS4_SHARE_ACCESS_READ) |
| 2611 | flags |= NFSD_MAY_READ; |
| 2612 | if (nfs4_access & NFS4_SHARE_ACCESS_WRITE) |
| 2613 | flags |= NFSD_MAY_WRITE; |
| 2614 | return flags; |
| 2615 | } |
| 2616 | |
Casey Bodley | 0c12eaf | 2011-07-23 14:58:10 -0400 | [diff] [blame] | 2617 | static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp, |
| 2618 | struct svc_fh *cur_fh, struct nfsd4_open *open) |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2619 | { |
| 2620 | __be32 status; |
Casey Bodley | 0c12eaf | 2011-07-23 14:58:10 -0400 | [diff] [blame] | 2621 | int oflag = nfs4_access_to_omode(open->op_share_access); |
| 2622 | int access = nfs4_access_to_access(open->op_share_access); |
| 2623 | |
| 2624 | /* CLAIM_DELEGATE_CUR is used in response to a broken lease; |
| 2625 | * allowing it to break the lease and return EAGAIN leaves the |
| 2626 | * client unable to make progress in returning the delegation */ |
| 2627 | if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR) |
| 2628 | access |= NFSD_MAY_NOT_BREAK_LEASE; |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2629 | |
| 2630 | if (!fp->fi_fds[oflag]) { |
| 2631 | status = nfsd_open(rqstp, cur_fh, S_IFREG, access, |
| 2632 | &fp->fi_fds[oflag]); |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2633 | if (status) |
| 2634 | return status; |
| 2635 | } |
| 2636 | nfs4_file_get_access(fp, oflag); |
| 2637 | |
| 2638 | return nfs_ok; |
| 2639 | } |
| 2640 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2641 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2642 | nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp, |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2643 | struct nfs4_file *fp, struct svc_fh *cur_fh, |
| 2644 | struct nfsd4_open *open) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2645 | { |
| 2646 | struct nfs4_stateid *stp; |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2647 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2648 | |
NeilBrown | 5ac049a | 2005-06-23 22:03:03 -0700 | [diff] [blame] | 2649 | stp = nfs4_alloc_stateid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2650 | if (stp == NULL) |
J. Bruce Fields | 3e77246 | 2011-08-10 19:07:33 -0400 | [diff] [blame] | 2651 | return nfserr_jukebox; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2652 | |
Casey Bodley | 0c12eaf | 2011-07-23 14:58:10 -0400 | [diff] [blame] | 2653 | status = nfs4_get_vfs_file(rqstp, fp, cur_fh, open); |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2654 | if (status) { |
| 2655 | kmem_cache_free(stateid_slab, stp); |
| 2656 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2657 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2658 | *stpp = stp; |
| 2659 | return 0; |
| 2660 | } |
| 2661 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2662 | static inline __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2663 | nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh, |
| 2664 | struct nfsd4_open *open) |
| 2665 | { |
| 2666 | struct iattr iattr = { |
| 2667 | .ia_valid = ATTR_SIZE, |
| 2668 | .ia_size = 0, |
| 2669 | }; |
| 2670 | if (!open->op_truncate) |
| 2671 | return 0; |
| 2672 | if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE)) |
Al Viro | 9246585 | 2006-01-18 17:43:46 -0800 | [diff] [blame] | 2673 | return nfserr_inval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2674 | return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0); |
| 2675 | } |
| 2676 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2677 | static __be32 |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2678 | nfs4_upgrade_open(struct svc_rqst *rqstp, struct nfs4_file *fp, struct svc_fh *cur_fh, struct nfs4_stateid *stp, struct nfsd4_open *open) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2679 | { |
J. Bruce Fields | 7d94784 | 2010-08-20 18:09:31 -0400 | [diff] [blame] | 2680 | u32 op_share_access = open->op_share_access & ~NFS4_SHARE_WANT_MASK; |
| 2681 | bool new_access; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2682 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2683 | |
J. Bruce Fields | 7d94784 | 2010-08-20 18:09:31 -0400 | [diff] [blame] | 2684 | new_access = !test_bit(op_share_access, &stp->st_access_bmap); |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2685 | if (new_access) { |
Casey Bodley | 0c12eaf | 2011-07-23 14:58:10 -0400 | [diff] [blame] | 2686 | status = nfs4_get_vfs_file(rqstp, fp, cur_fh, open); |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2687 | if (status) |
| 2688 | return status; |
J. Bruce Fields | 6c26d08 | 2006-01-18 17:43:38 -0800 | [diff] [blame] | 2689 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2690 | status = nfsd4_truncate(rqstp, cur_fh, open); |
| 2691 | if (status) { |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2692 | if (new_access) { |
J. Bruce Fields | f197c27 | 2011-06-29 08:23:50 -0400 | [diff] [blame] | 2693 | int oflag = nfs4_access_to_omode(op_share_access); |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2694 | nfs4_file_put_access(fp, oflag); |
| 2695 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2696 | return status; |
| 2697 | } |
| 2698 | /* remember the open */ |
J. Bruce Fields | 24a0111 | 2010-05-18 20:01:35 -0400 | [diff] [blame] | 2699 | __set_bit(op_share_access, &stp->st_access_bmap); |
J. Bruce Fields | b55e0ba | 2008-04-28 18:22:50 -0400 | [diff] [blame] | 2700 | __set_bit(open->op_share_deny, &stp->st_deny_bmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2701 | |
| 2702 | return nfs_ok; |
| 2703 | } |
| 2704 | |
| 2705 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2706 | static void |
NeilBrown | 3751517 | 2005-07-07 17:59:16 -0700 | [diff] [blame] | 2707 | nfs4_set_claim_prev(struct nfsd4_open *open) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2708 | { |
NeilBrown | 3751517 | 2005-07-07 17:59:16 -0700 | [diff] [blame] | 2709 | open->op_stateowner->so_confirmed = 1; |
| 2710 | open->op_stateowner->so_client->cl_firststate = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2711 | } |
| 2712 | |
J. Bruce Fields | 14a24e9 | 2010-12-10 19:02:49 -0500 | [diff] [blame] | 2713 | /* Should we give out recallable state?: */ |
| 2714 | static bool nfsd4_cb_channel_good(struct nfs4_client *clp) |
| 2715 | { |
| 2716 | if (clp->cl_cb_state == NFSD4_CB_UP) |
| 2717 | return true; |
| 2718 | /* |
| 2719 | * In the sessions case, since we don't have to establish a |
| 2720 | * separate connection for callbacks, we assume it's OK |
| 2721 | * until we hear otherwise: |
| 2722 | */ |
| 2723 | return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN; |
| 2724 | } |
| 2725 | |
J. Bruce Fields | 22d38c4 | 2011-01-31 11:55:12 -0500 | [diff] [blame] | 2726 | static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp, int flag) |
| 2727 | { |
| 2728 | struct file_lock *fl; |
| 2729 | |
| 2730 | fl = locks_alloc_lock(); |
| 2731 | if (!fl) |
| 2732 | return NULL; |
| 2733 | locks_init_lock(fl); |
| 2734 | fl->fl_lmops = &nfsd_lease_mng_ops; |
| 2735 | fl->fl_flags = FL_LEASE; |
| 2736 | fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK; |
| 2737 | fl->fl_end = OFFSET_MAX; |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2738 | fl->fl_owner = (fl_owner_t)(dp->dl_file); |
J. Bruce Fields | 22d38c4 | 2011-01-31 11:55:12 -0500 | [diff] [blame] | 2739 | fl->fl_pid = current->tgid; |
J. Bruce Fields | 22d38c4 | 2011-01-31 11:55:12 -0500 | [diff] [blame] | 2740 | return fl; |
| 2741 | } |
| 2742 | |
J. Bruce Fields | edab978 | 2011-01-31 17:58:10 -0500 | [diff] [blame] | 2743 | static int nfs4_setlease(struct nfs4_delegation *dp, int flag) |
| 2744 | { |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2745 | struct nfs4_file *fp = dp->dl_file; |
J. Bruce Fields | edab978 | 2011-01-31 17:58:10 -0500 | [diff] [blame] | 2746 | struct file_lock *fl; |
| 2747 | int status; |
| 2748 | |
| 2749 | fl = nfs4_alloc_init_lease(dp, flag); |
| 2750 | if (!fl) |
| 2751 | return -ENOMEM; |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2752 | fl->fl_file = find_readable_file(fp); |
| 2753 | list_add(&dp->dl_perclnt, &dp->dl_client->cl_delegations); |
| 2754 | status = vfs_setlease(fl->fl_file, fl->fl_type, &fl); |
J. Bruce Fields | edab978 | 2011-01-31 17:58:10 -0500 | [diff] [blame] | 2755 | if (status) { |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2756 | list_del_init(&dp->dl_perclnt); |
J. Bruce Fields | edab978 | 2011-01-31 17:58:10 -0500 | [diff] [blame] | 2757 | locks_free_lock(fl); |
| 2758 | return -ENOMEM; |
| 2759 | } |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2760 | fp->fi_lease = fl; |
| 2761 | fp->fi_deleg_file = fl->fl_file; |
| 2762 | get_file(fp->fi_deleg_file); |
| 2763 | atomic_set(&fp->fi_delegees, 1); |
| 2764 | list_add(&dp->dl_perfile, &fp->fi_delegations); |
| 2765 | return 0; |
| 2766 | } |
| 2767 | |
| 2768 | static int nfs4_set_delegation(struct nfs4_delegation *dp, int flag) |
| 2769 | { |
| 2770 | struct nfs4_file *fp = dp->dl_file; |
| 2771 | |
| 2772 | if (!fp->fi_lease) |
| 2773 | return nfs4_setlease(dp, flag); |
| 2774 | spin_lock(&recall_lock); |
| 2775 | if (fp->fi_had_conflict) { |
| 2776 | spin_unlock(&recall_lock); |
| 2777 | return -EAGAIN; |
| 2778 | } |
| 2779 | atomic_inc(&fp->fi_delegees); |
| 2780 | list_add(&dp->dl_perfile, &fp->fi_delegations); |
| 2781 | spin_unlock(&recall_lock); |
| 2782 | list_add(&dp->dl_perclnt, &dp->dl_client->cl_delegations); |
J. Bruce Fields | edab978 | 2011-01-31 17:58:10 -0500 | [diff] [blame] | 2783 | return 0; |
| 2784 | } |
| 2785 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2786 | /* |
| 2787 | * Attempt to hand out a delegation. |
| 2788 | */ |
| 2789 | static void |
| 2790 | nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp) |
| 2791 | { |
| 2792 | struct nfs4_delegation *dp; |
| 2793 | struct nfs4_stateowner *sop = stp->st_stateowner; |
J. Bruce Fields | 14a24e9 | 2010-12-10 19:02:49 -0500 | [diff] [blame] | 2794 | int cb_up; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2795 | int status, flag = 0; |
| 2796 | |
J. Bruce Fields | 14a24e9 | 2010-12-10 19:02:49 -0500 | [diff] [blame] | 2797 | cb_up = nfsd4_cb_channel_good(sop->so_client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2798 | flag = NFS4_OPEN_DELEGATE_NONE; |
NeilBrown | 7b190fe | 2005-06-23 22:03:23 -0700 | [diff] [blame] | 2799 | open->op_recall = 0; |
| 2800 | switch (open->op_claim_type) { |
| 2801 | case NFS4_OPEN_CLAIM_PREVIOUS: |
J. Bruce Fields | 2bf2387 | 2010-03-08 12:37:27 -0500 | [diff] [blame] | 2802 | if (!cb_up) |
NeilBrown | 7b190fe | 2005-06-23 22:03:23 -0700 | [diff] [blame] | 2803 | open->op_recall = 1; |
| 2804 | flag = open->op_delegate_type; |
| 2805 | if (flag == NFS4_OPEN_DELEGATE_NONE) |
| 2806 | goto out; |
| 2807 | break; |
| 2808 | case NFS4_OPEN_CLAIM_NULL: |
| 2809 | /* Let's not give out any delegations till everyone's |
| 2810 | * had the chance to reclaim theirs.... */ |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 2811 | if (locks_in_grace()) |
NeilBrown | 7b190fe | 2005-06-23 22:03:23 -0700 | [diff] [blame] | 2812 | goto out; |
J. Bruce Fields | 2bf2387 | 2010-03-08 12:37:27 -0500 | [diff] [blame] | 2813 | if (!cb_up || !sop->so_confirmed) |
NeilBrown | 7b190fe | 2005-06-23 22:03:23 -0700 | [diff] [blame] | 2814 | goto out; |
| 2815 | if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE) |
| 2816 | flag = NFS4_OPEN_DELEGATE_WRITE; |
| 2817 | else |
| 2818 | flag = NFS4_OPEN_DELEGATE_READ; |
| 2819 | break; |
| 2820 | default: |
| 2821 | goto out; |
| 2822 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2823 | |
| 2824 | dp = alloc_init_deleg(sop->so_client, stp, fh, flag); |
J. Bruce Fields | dd239cc | 2011-01-31 17:14:55 -0500 | [diff] [blame] | 2825 | if (dp == NULL) |
| 2826 | goto out_no_deleg; |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2827 | status = nfs4_set_delegation(dp, flag); |
J. Bruce Fields | edab978 | 2011-01-31 17:58:10 -0500 | [diff] [blame] | 2828 | if (status) |
J. Bruce Fields | dd239cc | 2011-01-31 17:14:55 -0500 | [diff] [blame] | 2829 | goto out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | |
| 2831 | memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid)); |
| 2832 | |
Benny Halevy | 8c10cbd | 2009-10-19 12:04:53 +0200 | [diff] [blame] | 2833 | dprintk("NFSD: delegation stateid=" STATEID_FMT "\n", |
| 2834 | STATEID_VAL(&dp->dl_stateid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2835 | out: |
NeilBrown | 7b190fe | 2005-06-23 22:03:23 -0700 | [diff] [blame] | 2836 | if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS |
| 2837 | && flag == NFS4_OPEN_DELEGATE_NONE |
| 2838 | && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 2839 | dprintk("NFSD: WARNING: refusing delegation reclaim\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2840 | open->op_delegate_type = flag; |
J. Bruce Fields | dd239cc | 2011-01-31 17:14:55 -0500 | [diff] [blame] | 2841 | return; |
| 2842 | out_free: |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 2843 | nfs4_put_delegation(dp); |
J. Bruce Fields | dd239cc | 2011-01-31 17:14:55 -0500 | [diff] [blame] | 2844 | out_no_deleg: |
| 2845 | flag = NFS4_OPEN_DELEGATE_NONE; |
| 2846 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2847 | } |
| 2848 | |
| 2849 | /* |
| 2850 | * called with nfs4_lock_state() held. |
| 2851 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2852 | __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2853 | nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open) |
| 2854 | { |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 2855 | struct nfsd4_compoundres *resp = rqstp->rq_resp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2856 | struct nfs4_file *fp = NULL; |
| 2857 | struct inode *ino = current_fh->fh_dentry->d_inode; |
| 2858 | struct nfs4_stateid *stp = NULL; |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 2859 | struct nfs4_delegation *dp = NULL; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2860 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2861 | |
| 2862 | status = nfserr_inval; |
Andy Adamson | d87a8ad | 2009-04-03 08:28:53 +0300 | [diff] [blame] | 2863 | if (!access_valid(open->op_share_access, resp->cstate.minorversion) |
J. Bruce Fields | ba5a6a1 | 2006-06-30 01:56:16 -0700 | [diff] [blame] | 2864 | || !deny_valid(open->op_share_deny)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2865 | goto out; |
| 2866 | /* |
| 2867 | * Lookup file; if found, lookup stateid and check open request, |
| 2868 | * and check for delegations in the process of being recalled. |
| 2869 | * If not found, create the nfs4_file struct |
| 2870 | */ |
| 2871 | fp = find_file(ino); |
| 2872 | if (fp) { |
| 2873 | if ((status = nfs4_check_open(fp, open, &stp))) |
| 2874 | goto out; |
NeilBrown | c44c5ee | 2005-06-23 22:02:54 -0700 | [diff] [blame] | 2875 | status = nfs4_check_deleg(fp, open, &dp); |
| 2876 | if (status) |
| 2877 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2878 | } else { |
NeilBrown | c44c5ee | 2005-06-23 22:02:54 -0700 | [diff] [blame] | 2879 | status = nfserr_bad_stateid; |
| 2880 | if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR) |
| 2881 | goto out; |
J. Bruce Fields | 3e77246 | 2011-08-10 19:07:33 -0400 | [diff] [blame] | 2882 | status = nfserr_jukebox; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2883 | fp = alloc_init_file(ino); |
| 2884 | if (fp == NULL) |
| 2885 | goto out; |
| 2886 | } |
| 2887 | |
| 2888 | /* |
| 2889 | * OPEN the file, or upgrade an existing OPEN. |
| 2890 | * If truncate fails, the OPEN fails. |
| 2891 | */ |
| 2892 | if (stp) { |
| 2893 | /* Stateid was found, this is an OPEN upgrade */ |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2894 | status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2895 | if (status) |
| 2896 | goto out; |
NeilBrown | 444c2c0 | 2005-07-07 17:59:22 -0700 | [diff] [blame] | 2897 | update_stateid(&stp->st_stateid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2898 | } else { |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 2899 | status = nfs4_new_open(rqstp, &stp, fp, current_fh, open); |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 2900 | if (status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2901 | goto out; |
| 2902 | init_stateid(stp, fp, open); |
| 2903 | status = nfsd4_truncate(rqstp, current_fh, open); |
| 2904 | if (status) { |
J. Bruce Fields | 2283963 | 2009-01-11 14:27:17 -0500 | [diff] [blame] | 2905 | release_open_stateid(stp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2906 | goto out; |
| 2907 | } |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 2908 | if (nfsd4_has_session(&resp->cstate)) |
| 2909 | update_stateid(&stp->st_stateid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2910 | } |
| 2911 | memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t)); |
| 2912 | |
J. Bruce Fields | 4dc6ec0 | 2010-04-19 15:11:28 -0400 | [diff] [blame] | 2913 | if (nfsd4_has_session(&resp->cstate)) |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 2914 | open->op_stateowner->so_confirmed = 1; |
| 2915 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2916 | /* |
| 2917 | * Attempt to hand out a delegation. No error return, because the |
| 2918 | * OPEN succeeds even if we fail. |
| 2919 | */ |
| 2920 | nfs4_open_delegation(current_fh, open, stp); |
| 2921 | |
| 2922 | status = nfs_ok; |
| 2923 | |
Benny Halevy | 8c10cbd | 2009-10-19 12:04:53 +0200 | [diff] [blame] | 2924 | dprintk("%s: stateid=" STATEID_FMT "\n", __func__, |
| 2925 | STATEID_VAL(&stp->st_stateid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2926 | out: |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 2927 | if (fp) |
| 2928 | put_nfs4_file(fp); |
NeilBrown | 3751517 | 2005-07-07 17:59:16 -0700 | [diff] [blame] | 2929 | if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS) |
| 2930 | nfs4_set_claim_prev(open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2931 | /* |
| 2932 | * To finish the open response, we just need to set the rflags. |
| 2933 | */ |
| 2934 | open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX; |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 2935 | if (!open->op_stateowner->so_confirmed && |
| 2936 | !nfsd4_has_session(&resp->cstate)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2937 | open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM; |
| 2938 | |
| 2939 | return status; |
| 2940 | } |
| 2941 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2942 | __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2943 | nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 2944 | clientid_t *clid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2945 | { |
| 2946 | struct nfs4_client *clp; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2947 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2948 | |
| 2949 | nfs4_lock_state(); |
| 2950 | dprintk("process_renew(%08x/%08x): starting\n", |
| 2951 | clid->cl_boot, clid->cl_id); |
| 2952 | status = nfserr_stale_clientid; |
| 2953 | if (STALE_CLIENTID(clid)) |
| 2954 | goto out; |
| 2955 | clp = find_confirmed_client(clid); |
| 2956 | status = nfserr_expired; |
| 2957 | if (clp == NULL) { |
| 2958 | /* We assume the client took too long to RENEW. */ |
| 2959 | dprintk("nfsd4_renew: clientid not found!\n"); |
| 2960 | goto out; |
| 2961 | } |
| 2962 | renew_client(clp); |
| 2963 | status = nfserr_cb_path_down; |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 2964 | if (!list_empty(&clp->cl_delegations) |
J. Bruce Fields | 77a3569 | 2010-04-30 18:51:44 -0400 | [diff] [blame] | 2965 | && clp->cl_cb_state != NFSD4_CB_UP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2966 | goto out; |
| 2967 | status = nfs_ok; |
| 2968 | out: |
| 2969 | nfs4_unlock_state(); |
| 2970 | return status; |
| 2971 | } |
| 2972 | |
Daniel Mack | c47d832 | 2011-05-16 16:38:14 +0200 | [diff] [blame] | 2973 | static struct lock_manager nfsd4_manager = { |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 2974 | }; |
| 2975 | |
NeilBrown | a76b431 | 2005-06-23 22:04:01 -0700 | [diff] [blame] | 2976 | static void |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 2977 | nfsd4_end_grace(void) |
NeilBrown | a76b431 | 2005-06-23 22:04:01 -0700 | [diff] [blame] | 2978 | { |
| 2979 | dprintk("NFSD: end of grace period\n"); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 2980 | nfsd4_recdir_purge_old(); |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 2981 | locks_end_grace(&nfsd4_manager); |
J. Bruce Fields | e46b498 | 2010-03-01 19:21:21 -0500 | [diff] [blame] | 2982 | /* |
| 2983 | * Now that every NFSv4 client has had the chance to recover and |
| 2984 | * to see the (possibly new, possibly shorter) lease time, we |
| 2985 | * can safely set the next grace time to the current lease time: |
| 2986 | */ |
| 2987 | nfsd4_grace = nfsd4_lease; |
NeilBrown | a76b431 | 2005-06-23 22:04:01 -0700 | [diff] [blame] | 2988 | } |
| 2989 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 2990 | static time_t |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2991 | nfs4_laundromat(void) |
| 2992 | { |
| 2993 | struct nfs4_client *clp; |
| 2994 | struct nfs4_stateowner *sop; |
| 2995 | struct nfs4_delegation *dp; |
| 2996 | struct list_head *pos, *next, reaplist; |
J. Bruce Fields | cf07d2e | 2010-02-28 23:20:19 -0500 | [diff] [blame] | 2997 | time_t cutoff = get_seconds() - nfsd4_lease; |
| 2998 | time_t t, clientid_val = nfsd4_lease; |
| 2999 | time_t u, test_val = nfsd4_lease; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3000 | |
| 3001 | nfs4_lock_state(); |
| 3002 | |
| 3003 | dprintk("NFSD: laundromat service - starting\n"); |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 3004 | if (locks_in_grace()) |
| 3005 | nfsd4_end_grace(); |
Benny Halevy | 36acb66 | 2010-05-12 00:13:04 +0300 | [diff] [blame] | 3006 | INIT_LIST_HEAD(&reaplist); |
| 3007 | spin_lock(&client_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3008 | list_for_each_safe(pos, next, &client_lru) { |
| 3009 | clp = list_entry(pos, struct nfs4_client, cl_lru); |
| 3010 | if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) { |
| 3011 | t = clp->cl_time - cutoff; |
| 3012 | if (clientid_val > t) |
| 3013 | clientid_val = t; |
| 3014 | break; |
| 3015 | } |
Benny Halevy | d768298 | 2010-05-12 00:13:54 +0300 | [diff] [blame] | 3016 | if (atomic_read(&clp->cl_refcount)) { |
| 3017 | dprintk("NFSD: client in use (clientid %08x)\n", |
| 3018 | clp->cl_clientid.cl_id); |
| 3019 | continue; |
| 3020 | } |
| 3021 | unhash_client_locked(clp); |
| 3022 | list_add(&clp->cl_lru, &reaplist); |
Benny Halevy | 36acb66 | 2010-05-12 00:13:04 +0300 | [diff] [blame] | 3023 | } |
| 3024 | spin_unlock(&client_lock); |
| 3025 | list_for_each_safe(pos, next, &reaplist) { |
| 3026 | clp = list_entry(pos, struct nfs4_client, cl_lru); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3027 | dprintk("NFSD: purging unused client (clientid %08x)\n", |
| 3028 | clp->cl_clientid.cl_id); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 3029 | nfsd4_remove_clid_dir(clp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3030 | expire_client(clp); |
| 3031 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3032 | spin_lock(&recall_lock); |
| 3033 | list_for_each_safe(pos, next, &del_recall_lru) { |
| 3034 | dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru); |
| 3035 | if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) { |
| 3036 | u = dp->dl_time - cutoff; |
| 3037 | if (test_val > u) |
| 3038 | test_val = u; |
| 3039 | break; |
| 3040 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3041 | list_move(&dp->dl_recall_lru, &reaplist); |
| 3042 | } |
| 3043 | spin_unlock(&recall_lock); |
| 3044 | list_for_each_safe(pos, next, &reaplist) { |
| 3045 | dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru); |
| 3046 | list_del_init(&dp->dl_recall_lru); |
| 3047 | unhash_delegation(dp); |
| 3048 | } |
J. Bruce Fields | cf07d2e | 2010-02-28 23:20:19 -0500 | [diff] [blame] | 3049 | test_val = nfsd4_lease; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3050 | list_for_each_safe(pos, next, &close_lru) { |
| 3051 | sop = list_entry(pos, struct nfs4_stateowner, so_close_lru); |
| 3052 | if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) { |
| 3053 | u = sop->so_time - cutoff; |
| 3054 | if (test_val > u) |
| 3055 | test_val = u; |
| 3056 | break; |
| 3057 | } |
| 3058 | dprintk("NFSD: purging unused open stateowner (so_id %d)\n", |
| 3059 | sop->so_id); |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 3060 | release_openowner(sop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3061 | } |
| 3062 | if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT) |
| 3063 | clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT; |
| 3064 | nfs4_unlock_state(); |
| 3065 | return clientid_val; |
| 3066 | } |
| 3067 | |
Harvey Harrison | a254b24 | 2008-02-20 12:49:00 -0800 | [diff] [blame] | 3068 | static struct workqueue_struct *laundry_wq; |
| 3069 | static void laundromat_main(struct work_struct *); |
| 3070 | static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main); |
| 3071 | |
| 3072 | static void |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 3073 | laundromat_main(struct work_struct *not_used) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3074 | { |
| 3075 | time_t t; |
| 3076 | |
| 3077 | t = nfs4_laundromat(); |
| 3078 | dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t); |
NeilBrown | 58da282 | 2005-06-23 22:03:19 -0700 | [diff] [blame] | 3079 | queue_delayed_work(laundry_wq, &laundromat_work, t*HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3080 | } |
| 3081 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 3082 | static struct nfs4_stateowner * |
NeilBrown | f881651 | 2005-07-07 17:59:25 -0700 | [diff] [blame] | 3083 | search_close_lru(u32 st_id, int flags) |
| 3084 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3085 | struct nfs4_stateowner *local = NULL; |
| 3086 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3087 | if (flags & CLOSE_STATE) { |
| 3088 | list_for_each_entry(local, &close_lru, so_close_lru) { |
| 3089 | if (local->so_id == st_id) |
| 3090 | return local; |
| 3091 | } |
| 3092 | } |
| 3093 | return NULL; |
| 3094 | } |
| 3095 | |
| 3096 | static inline int |
| 3097 | nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp) |
| 3098 | { |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 3099 | return fhp->fh_dentry->d_inode != stp->st_file->fi_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3100 | } |
| 3101 | |
| 3102 | static int |
| 3103 | STALE_STATEID(stateid_t *stateid) |
| 3104 | { |
J. Bruce Fields | e4e83ea | 2010-04-22 16:21:39 -0400 | [diff] [blame] | 3105 | if (stateid->si_boot == boot_time) |
| 3106 | return 0; |
| 3107 | dprintk("NFSD: stale stateid " STATEID_FMT "!\n", |
Benny Halevy | 8c10cbd | 2009-10-19 12:04:53 +0200 | [diff] [blame] | 3108 | STATEID_VAL(stateid)); |
J. Bruce Fields | e4e83ea | 2010-04-22 16:21:39 -0400 | [diff] [blame] | 3109 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3110 | } |
| 3111 | |
| 3112 | static inline int |
| 3113 | access_permit_read(unsigned long access_bmap) |
| 3114 | { |
| 3115 | return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) || |
| 3116 | test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) || |
| 3117 | test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap); |
| 3118 | } |
| 3119 | |
| 3120 | static inline int |
| 3121 | access_permit_write(unsigned long access_bmap) |
| 3122 | { |
| 3123 | return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) || |
| 3124 | test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap); |
| 3125 | } |
| 3126 | |
| 3127 | static |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3128 | __be32 nfs4_check_openmode(struct nfs4_stateid *stp, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3129 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3130 | __be32 status = nfserr_openmode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3131 | |
J. Bruce Fields | 0292191 | 2010-07-29 15:16:59 -0400 | [diff] [blame] | 3132 | /* For lock stateid's, we test the parent open, not the lock: */ |
| 3133 | if (stp->st_openstp) |
| 3134 | stp = stp->st_openstp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3135 | if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap))) |
| 3136 | goto out; |
| 3137 | if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap))) |
| 3138 | goto out; |
| 3139 | status = nfs_ok; |
| 3140 | out: |
| 3141 | return status; |
| 3142 | } |
| 3143 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3144 | static inline __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3145 | check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags) |
| 3146 | { |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 3147 | if (ONE_STATEID(stateid) && (flags & RD_STATE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3148 | return nfs_ok; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 3149 | else if (locks_in_grace()) { |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 3150 | /* Answer in remaining cases depends on existence of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3151 | * conflicting state; so we must wait out the grace period. */ |
| 3152 | return nfserr_grace; |
| 3153 | } else if (flags & WR_STATE) |
| 3154 | return nfs4_share_conflict(current_fh, |
| 3155 | NFS4_SHARE_DENY_WRITE); |
| 3156 | else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */ |
| 3157 | return nfs4_share_conflict(current_fh, |
| 3158 | NFS4_SHARE_DENY_READ); |
| 3159 | } |
| 3160 | |
| 3161 | /* |
| 3162 | * Allow READ/WRITE during grace period on recovered state only for files |
| 3163 | * that are not able to provide mandatory locking. |
| 3164 | */ |
| 3165 | static inline int |
J. Bruce Fields | 18f8273 | 2009-02-21 15:23:01 -0800 | [diff] [blame] | 3166 | grace_disallows_io(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3167 | { |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 3168 | return locks_in_grace() && mandatory_lock(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3169 | } |
| 3170 | |
J. Bruce Fields | 28dde24 | 2011-08-22 10:07:12 -0400 | [diff] [blame] | 3171 | static int check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session) |
J. Bruce Fields | 0836f58 | 2008-01-26 19:08:12 -0500 | [diff] [blame] | 3172 | { |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 3173 | /* |
| 3174 | * When sessions are used the stateid generation number is ignored |
| 3175 | * when it is zero. |
| 3176 | */ |
J. Bruce Fields | 28dde24 | 2011-08-22 10:07:12 -0400 | [diff] [blame] | 3177 | if (has_session && in->si_generation == 0) |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 3178 | goto out; |
| 3179 | |
J. Bruce Fields | 0836f58 | 2008-01-26 19:08:12 -0500 | [diff] [blame] | 3180 | /* If the client sends us a stateid from the future, it's buggy: */ |
| 3181 | if (in->si_generation > ref->si_generation) |
| 3182 | return nfserr_bad_stateid; |
| 3183 | /* |
| 3184 | * The following, however, can happen. For example, if the |
| 3185 | * client sends an open and some IO at the same time, the open |
| 3186 | * may bump si_generation while the IO is still in flight. |
| 3187 | * Thanks to hard links and renames, the client never knows what |
| 3188 | * file an open will affect. So it could avoid that situation |
| 3189 | * only by serializing all opens and IO from the same open |
| 3190 | * owner. To recover from the old_stateid error, the client |
| 3191 | * will just have to retry the IO: |
| 3192 | */ |
| 3193 | if (in->si_generation < ref->si_generation) |
| 3194 | return nfserr_old_stateid; |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 3195 | out: |
J. Bruce Fields | 0836f58 | 2008-01-26 19:08:12 -0500 | [diff] [blame] | 3196 | return nfs_ok; |
| 3197 | } |
| 3198 | |
J. Bruce Fields | 3e63307 | 2009-02-21 13:17:19 -0800 | [diff] [blame] | 3199 | static int is_delegation_stateid(stateid_t *stateid) |
| 3200 | { |
| 3201 | return stateid->si_fileid == 0; |
| 3202 | } |
| 3203 | |
J. Bruce Fields | 28dde24 | 2011-08-22 10:07:12 -0400 | [diff] [blame] | 3204 | __be32 nfs4_validate_stateid(stateid_t *stateid, bool has_session) |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 3205 | { |
| 3206 | struct nfs4_stateid *stp = NULL; |
| 3207 | __be32 status = nfserr_stale_stateid; |
| 3208 | |
| 3209 | if (STALE_STATEID(stateid)) |
| 3210 | goto out; |
| 3211 | |
| 3212 | status = nfserr_expired; |
J. Bruce Fields | b79abad | 2011-08-22 18:01:43 -0400 | [diff] [blame^] | 3213 | stp = find_stateid(stateid, 0); |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 3214 | if (!stp) |
| 3215 | goto out; |
| 3216 | status = nfserr_bad_stateid; |
| 3217 | |
| 3218 | if (!stp->st_stateowner->so_confirmed) |
| 3219 | goto out; |
| 3220 | |
J. Bruce Fields | 28dde24 | 2011-08-22 10:07:12 -0400 | [diff] [blame] | 3221 | status = check_stateid_generation(stateid, &stp->st_stateid, has_session); |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 3222 | if (status) |
| 3223 | goto out; |
| 3224 | |
| 3225 | status = nfs_ok; |
| 3226 | out: |
| 3227 | return status; |
| 3228 | } |
| 3229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3230 | /* |
| 3231 | * Checks for stateid operations |
| 3232 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3233 | __be32 |
Benny Halevy | dd453df | 2009-04-03 08:28:41 +0300 | [diff] [blame] | 3234 | nfs4_preprocess_stateid_op(struct nfsd4_compound_state *cstate, |
| 3235 | stateid_t *stateid, int flags, struct file **filpp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3236 | { |
| 3237 | struct nfs4_stateid *stp = NULL; |
| 3238 | struct nfs4_delegation *dp = NULL; |
Benny Halevy | dd453df | 2009-04-03 08:28:41 +0300 | [diff] [blame] | 3239 | struct svc_fh *current_fh = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3240 | struct inode *ino = current_fh->fh_dentry->d_inode; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3241 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3243 | if (filpp) |
| 3244 | *filpp = NULL; |
| 3245 | |
J. Bruce Fields | 18f8273 | 2009-02-21 15:23:01 -0800 | [diff] [blame] | 3246 | if (grace_disallows_io(ino)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3247 | return nfserr_grace; |
| 3248 | |
| 3249 | if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) |
| 3250 | return check_special_stateids(current_fh, stateid, flags); |
| 3251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3252 | status = nfserr_stale_stateid; |
| 3253 | if (STALE_STATEID(stateid)) |
| 3254 | goto out; |
| 3255 | |
J. Bruce Fields | 3351514 | 2010-10-02 18:42:39 -0400 | [diff] [blame] | 3256 | /* |
| 3257 | * We assume that any stateid that has the current boot time, |
| 3258 | * but that we can't find, is expired: |
| 3259 | */ |
| 3260 | status = nfserr_expired; |
J. Bruce Fields | 3e63307 | 2009-02-21 13:17:19 -0800 | [diff] [blame] | 3261 | if (is_delegation_stateid(stateid)) { |
J. Bruce Fields | a4455be | 2009-02-21 10:40:22 -0800 | [diff] [blame] | 3262 | dp = find_delegation_stateid(ino, stateid); |
J. Bruce Fields | e4e83ea | 2010-04-22 16:21:39 -0400 | [diff] [blame] | 3263 | if (!dp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3264 | goto out; |
J. Bruce Fields | 28dde24 | 2011-08-22 10:07:12 -0400 | [diff] [blame] | 3265 | status = check_stateid_generation(stateid, &dp->dl_stateid, nfsd4_has_session(cstate)); |
J. Bruce Fields | 0c2a498 | 2009-02-21 11:11:50 -0800 | [diff] [blame] | 3266 | if (status) |
| 3267 | goto out; |
J. Bruce Fields | dc9bf70 | 2009-02-21 11:14:43 -0800 | [diff] [blame] | 3268 | status = nfs4_check_delegmode(dp, flags); |
| 3269 | if (status) |
| 3270 | goto out; |
| 3271 | renew_client(dp->dl_client); |
Dan Carpenter | 43b0178 | 2010-10-27 23:19:04 +0200 | [diff] [blame] | 3272 | if (filpp) { |
J. Bruce Fields | acfdf5c | 2011-01-31 19:20:39 -0500 | [diff] [blame] | 3273 | *filpp = dp->dl_file->fi_deleg_file; |
Dan Carpenter | 43b0178 | 2010-10-27 23:19:04 +0200 | [diff] [blame] | 3274 | BUG_ON(!*filpp); |
| 3275 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3276 | } else { /* open or lock stateid */ |
J. Bruce Fields | a4455be | 2009-02-21 10:40:22 -0800 | [diff] [blame] | 3277 | stp = find_stateid(stateid, flags); |
J. Bruce Fields | e4e83ea | 2010-04-22 16:21:39 -0400 | [diff] [blame] | 3278 | if (!stp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3279 | goto out; |
J. Bruce Fields | 3351514 | 2010-10-02 18:42:39 -0400 | [diff] [blame] | 3280 | status = nfserr_bad_stateid; |
J. Bruce Fields | 6150ef0 | 2009-02-21 13:36:16 -0800 | [diff] [blame] | 3281 | if (nfs4_check_fh(current_fh, stp)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3282 | goto out; |
| 3283 | if (!stp->st_stateowner->so_confirmed) |
| 3284 | goto out; |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 3285 | status = check_stateid_generation(stateid, &stp->st_stateid, |
J. Bruce Fields | 28dde24 | 2011-08-22 10:07:12 -0400 | [diff] [blame] | 3286 | nfsd4_has_session(cstate)); |
J. Bruce Fields | 0c2a498 | 2009-02-21 11:11:50 -0800 | [diff] [blame] | 3287 | if (status) |
| 3288 | goto out; |
J. Bruce Fields | a4455be | 2009-02-21 10:40:22 -0800 | [diff] [blame] | 3289 | status = nfs4_check_openmode(stp, flags); |
| 3290 | if (status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3291 | goto out; |
| 3292 | renew_client(stp->st_stateowner->so_client); |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 3293 | if (filpp) { |
| 3294 | if (flags & RD_STATE) |
| 3295 | *filpp = find_readable_file(stp->st_file); |
| 3296 | else |
| 3297 | *filpp = find_writeable_file(stp->st_file); |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 3298 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3299 | } |
| 3300 | status = nfs_ok; |
| 3301 | out: |
| 3302 | return status; |
| 3303 | } |
| 3304 | |
Bryan Schumaker | e1ca12d | 2011-07-13 11:04:21 -0400 | [diff] [blame] | 3305 | static __be32 |
| 3306 | nfsd4_free_delegation_stateid(stateid_t *stateid) |
| 3307 | { |
| 3308 | struct nfs4_delegation *dp = search_for_delegation(stateid); |
| 3309 | if (dp) |
| 3310 | return nfserr_locks_held; |
| 3311 | return nfserr_bad_stateid; |
| 3312 | } |
| 3313 | |
| 3314 | static __be32 |
| 3315 | nfsd4_free_lock_stateid(struct nfs4_stateid *stp) |
| 3316 | { |
| 3317 | if (check_for_locks(stp->st_file, stp->st_stateowner)) |
| 3318 | return nfserr_locks_held; |
| 3319 | release_lock_stateid(stp); |
| 3320 | return nfs_ok; |
| 3321 | } |
| 3322 | |
| 3323 | /* |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 3324 | * Test if the stateid is valid |
| 3325 | */ |
| 3326 | __be32 |
| 3327 | nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 3328 | struct nfsd4_test_stateid *test_stateid) |
| 3329 | { |
| 3330 | test_stateid->ts_has_session = nfsd4_has_session(cstate); |
| 3331 | return nfs_ok; |
| 3332 | } |
| 3333 | |
| 3334 | /* |
Bryan Schumaker | e1ca12d | 2011-07-13 11:04:21 -0400 | [diff] [blame] | 3335 | * Free a state id |
| 3336 | */ |
| 3337 | __be32 |
| 3338 | nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 3339 | struct nfsd4_free_stateid *free_stateid) |
| 3340 | { |
| 3341 | stateid_t *stateid = &free_stateid->fr_stateid; |
| 3342 | struct nfs4_stateid *stp; |
| 3343 | __be32 ret; |
| 3344 | |
| 3345 | nfs4_lock_state(); |
| 3346 | if (is_delegation_stateid(stateid)) { |
| 3347 | ret = nfsd4_free_delegation_stateid(stateid); |
| 3348 | goto out; |
| 3349 | } |
| 3350 | |
J. Bruce Fields | b79abad | 2011-08-22 18:01:43 -0400 | [diff] [blame^] | 3351 | stp = find_stateid(stateid, 0); |
Bryan Schumaker | e1ca12d | 2011-07-13 11:04:21 -0400 | [diff] [blame] | 3352 | if (!stp) { |
| 3353 | ret = nfserr_bad_stateid; |
| 3354 | goto out; |
| 3355 | } |
| 3356 | if (stateid->si_generation != 0) { |
| 3357 | if (stateid->si_generation < stp->st_stateid.si_generation) { |
| 3358 | ret = nfserr_old_stateid; |
| 3359 | goto out; |
| 3360 | } |
| 3361 | if (stateid->si_generation > stp->st_stateid.si_generation) { |
| 3362 | ret = nfserr_bad_stateid; |
| 3363 | goto out; |
| 3364 | } |
| 3365 | } |
| 3366 | |
J. Bruce Fields | 5fa0bbb | 2011-08-31 15:25:46 -0400 | [diff] [blame] | 3367 | if (stp->st_type == NFS4_OPEN_STID) { |
Bryan Schumaker | e1ca12d | 2011-07-13 11:04:21 -0400 | [diff] [blame] | 3368 | ret = nfserr_locks_held; |
| 3369 | goto out; |
| 3370 | } else { |
| 3371 | ret = nfsd4_free_lock_stateid(stp); |
| 3372 | goto out; |
| 3373 | } |
| 3374 | |
| 3375 | out: |
| 3376 | nfs4_unlock_state(); |
| 3377 | return ret; |
| 3378 | } |
| 3379 | |
NeilBrown | 4c4cd22 | 2005-07-07 17:59:27 -0700 | [diff] [blame] | 3380 | static inline int |
| 3381 | setlkflg (int type) |
| 3382 | { |
| 3383 | return (type == NFS4_READW_LT || type == NFS4_READ_LT) ? |
| 3384 | RD_STATE : WR_STATE; |
| 3385 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3386 | |
| 3387 | /* |
| 3388 | * Checks for sequence id mutating operations. |
| 3389 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3390 | static __be32 |
Benny Halevy | dd453df | 2009-04-03 08:28:41 +0300 | [diff] [blame] | 3391 | nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid, |
| 3392 | stateid_t *stateid, int flags, |
| 3393 | struct nfs4_stateowner **sopp, |
J. Bruce Fields | b34f27a | 2011-08-22 13:13:31 -0400 | [diff] [blame] | 3394 | struct nfs4_stateid **stpp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3395 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3396 | struct nfs4_stateid *stp; |
| 3397 | struct nfs4_stateowner *sop; |
Benny Halevy | dd453df | 2009-04-03 08:28:41 +0300 | [diff] [blame] | 3398 | struct svc_fh *current_fh = &cstate->current_fh; |
J. Bruce Fields | 0836f58 | 2008-01-26 19:08:12 -0500 | [diff] [blame] | 3399 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3400 | |
Benny Halevy | 8c10cbd | 2009-10-19 12:04:53 +0200 | [diff] [blame] | 3401 | dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__, |
| 3402 | seqid, STATEID_VAL(stateid)); |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 3403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3404 | *stpp = NULL; |
| 3405 | *sopp = NULL; |
| 3406 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3407 | if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) { |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 3408 | dprintk("NFSD: preprocess_seqid_op: magic stateid!\n"); |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 3409 | return nfserr_bad_stateid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3410 | } |
| 3411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3412 | if (STALE_STATEID(stateid)) |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 3413 | return nfserr_stale_stateid; |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 3414 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3415 | /* |
| 3416 | * We return BAD_STATEID if filehandle doesn't match stateid, |
| 3417 | * the confirmed flag is incorrecly set, or the generation |
| 3418 | * number is incorrect. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3419 | */ |
NeilBrown | f881651 | 2005-07-07 17:59:25 -0700 | [diff] [blame] | 3420 | stp = find_stateid(stateid, flags); |
| 3421 | if (stp == NULL) { |
| 3422 | /* |
| 3423 | * Also, we should make sure this isn't just the result of |
| 3424 | * a replayed close: |
| 3425 | */ |
| 3426 | sop = search_close_lru(stateid->si_stateownerid, flags); |
J. Bruce Fields | 3351514 | 2010-10-02 18:42:39 -0400 | [diff] [blame] | 3427 | /* It's not stale; let's assume it's expired: */ |
NeilBrown | f881651 | 2005-07-07 17:59:25 -0700 | [diff] [blame] | 3428 | if (sop == NULL) |
J. Bruce Fields | 3351514 | 2010-10-02 18:42:39 -0400 | [diff] [blame] | 3429 | return nfserr_expired; |
NeilBrown | f881651 | 2005-07-07 17:59:25 -0700 | [diff] [blame] | 3430 | *sopp = sop; |
| 3431 | goto check_replay; |
| 3432 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3433 | |
J. Bruce Fields | 39325bd | 2007-11-26 17:06:39 -0500 | [diff] [blame] | 3434 | *stpp = stp; |
| 3435 | *sopp = sop = stp->st_stateowner; |
| 3436 | |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 3437 | if (nfs4_check_fh(current_fh, stp)) { |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 3438 | dprintk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n"); |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 3439 | return nfserr_bad_stateid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3440 | } |
| 3441 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3442 | /* |
| 3443 | * We now validate the seqid and stateid generation numbers. |
| 3444 | * For the moment, we ignore the possibility of |
| 3445 | * generation number wraparound. |
| 3446 | */ |
J. Bruce Fields | 28dde24 | 2011-08-22 10:07:12 -0400 | [diff] [blame] | 3447 | if (!nfsd4_has_session(cstate) && seqid != sop->so_seqid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3448 | goto check_replay; |
| 3449 | |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 3450 | if (sop->so_confirmed && flags & CONFIRM) { |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 3451 | dprintk("NFSD: preprocess_seqid_op: expected" |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 3452 | " unconfirmed stateowner!\n"); |
| 3453 | return nfserr_bad_stateid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3454 | } |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 3455 | if (!sop->so_confirmed && !(flags & CONFIRM)) { |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 3456 | dprintk("NFSD: preprocess_seqid_op: stateowner not" |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 3457 | " confirmed yet!\n"); |
| 3458 | return nfserr_bad_stateid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3459 | } |
J. Bruce Fields | 28dde24 | 2011-08-22 10:07:12 -0400 | [diff] [blame] | 3460 | status = check_stateid_generation(stateid, &stp->st_stateid, nfsd4_has_session(cstate)); |
J. Bruce Fields | 0836f58 | 2008-01-26 19:08:12 -0500 | [diff] [blame] | 3461 | if (status) |
| 3462 | return status; |
NeilBrown | 52fd004 | 2005-07-07 17:59:24 -0700 | [diff] [blame] | 3463 | renew_client(sop->so_client); |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 3464 | return nfs_ok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3465 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3466 | check_replay: |
NeilBrown | bd9aac5 | 2005-07-07 17:59:19 -0700 | [diff] [blame] | 3467 | if (seqid == sop->so_seqid - 1) { |
Neil Brown | 849823c | 2005-09-13 01:25:36 -0700 | [diff] [blame] | 3468 | dprintk("NFSD: preprocess_seqid_op: retransmission?\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3469 | /* indicate replay to calling function */ |
Al Viro | a90b061 | 2006-10-19 23:29:03 -0700 | [diff] [blame] | 3470 | return nfserr_replay_me; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3471 | } |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 3472 | dprintk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n", |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 3473 | sop->so_seqid, seqid); |
| 3474 | *sopp = NULL; |
| 3475 | return nfserr_bad_seqid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3476 | } |
| 3477 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3478 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3479 | nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 3480 | struct nfsd4_open_confirm *oc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3481 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3482 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3483 | struct nfs4_stateowner *sop; |
| 3484 | struct nfs4_stateid *stp; |
| 3485 | |
| 3486 | dprintk("NFSD: nfsd4_open_confirm on file %.*s\n", |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3487 | (int)cstate->current_fh.fh_dentry->d_name.len, |
| 3488 | cstate->current_fh.fh_dentry->d_name.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3489 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3490 | status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0); |
J. Bruce Fields | a8cddc5 | 2006-06-30 01:56:13 -0700 | [diff] [blame] | 3491 | if (status) |
| 3492 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3493 | |
| 3494 | nfs4_lock_state(); |
| 3495 | |
Benny Halevy | dd453df | 2009-04-03 08:28:41 +0300 | [diff] [blame] | 3496 | if ((status = nfs4_preprocess_seqid_op(cstate, |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3497 | oc->oc_seqid, &oc->oc_req_stateid, |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 3498 | CONFIRM | OPEN_STATE, |
J. Bruce Fields | b34f27a | 2011-08-22 13:13:31 -0400 | [diff] [blame] | 3499 | &oc->oc_stateowner, &stp))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3500 | goto out; |
| 3501 | |
| 3502 | sop = oc->oc_stateowner; |
| 3503 | sop->so_confirmed = 1; |
| 3504 | update_stateid(&stp->st_stateid); |
| 3505 | memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t)); |
Benny Halevy | 8c10cbd | 2009-10-19 12:04:53 +0200 | [diff] [blame] | 3506 | dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n", |
| 3507 | __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stateid)); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 3508 | |
| 3509 | nfsd4_create_clid_dir(sop->so_client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3510 | out: |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 3511 | if (oc->oc_stateowner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3512 | nfs4_get_stateowner(oc->oc_stateowner); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 3513 | cstate->replay_owner = oc->oc_stateowner; |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 3514 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3515 | nfs4_unlock_state(); |
| 3516 | return status; |
| 3517 | } |
| 3518 | |
J. Bruce Fields | f197c27 | 2011-06-29 08:23:50 -0400 | [diff] [blame] | 3519 | static inline void nfs4_file_downgrade(struct nfs4_stateid *stp, unsigned int to_access) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3520 | { |
| 3521 | int i; |
J. Bruce Fields | f197c27 | 2011-06-29 08:23:50 -0400 | [diff] [blame] | 3522 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3523 | for (i = 1; i < 4; i++) { |
J. Bruce Fields | f197c27 | 2011-06-29 08:23:50 -0400 | [diff] [blame] | 3524 | if (test_bit(i, &stp->st_access_bmap) && !(i & to_access)) { |
| 3525 | nfs4_file_put_access(stp->st_file, i); |
| 3526 | __clear_bit(i, &stp->st_access_bmap); |
| 3527 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3528 | } |
| 3529 | } |
| 3530 | |
| 3531 | static void |
| 3532 | reset_union_bmap_deny(unsigned long deny, unsigned long *bmap) |
| 3533 | { |
| 3534 | int i; |
| 3535 | for (i = 0; i < 4; i++) { |
| 3536 | if ((i & deny) != i) |
| 3537 | __clear_bit(i, bmap); |
| 3538 | } |
| 3539 | } |
| 3540 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3541 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3542 | nfsd4_open_downgrade(struct svc_rqst *rqstp, |
| 3543 | struct nfsd4_compound_state *cstate, |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 3544 | struct nfsd4_open_downgrade *od) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3545 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3546 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3547 | struct nfs4_stateid *stp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3548 | |
| 3549 | dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n", |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3550 | (int)cstate->current_fh.fh_dentry->d_name.len, |
| 3551 | cstate->current_fh.fh_dentry->d_name.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3552 | |
Andy Adamson | d87a8ad | 2009-04-03 08:28:53 +0300 | [diff] [blame] | 3553 | if (!access_valid(od->od_share_access, cstate->minorversion) |
J. Bruce Fields | ba5a6a1 | 2006-06-30 01:56:16 -0700 | [diff] [blame] | 3554 | || !deny_valid(od->od_share_deny)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3555 | return nfserr_inval; |
| 3556 | |
| 3557 | nfs4_lock_state(); |
Benny Halevy | dd453df | 2009-04-03 08:28:41 +0300 | [diff] [blame] | 3558 | if ((status = nfs4_preprocess_seqid_op(cstate, |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3559 | od->od_seqid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3560 | &od->od_stateid, |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 3561 | OPEN_STATE, |
J. Bruce Fields | b34f27a | 2011-08-22 13:13:31 -0400 | [diff] [blame] | 3562 | &od->od_stateowner, &stp))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3563 | goto out; |
| 3564 | |
| 3565 | status = nfserr_inval; |
| 3566 | if (!test_bit(od->od_share_access, &stp->st_access_bmap)) { |
| 3567 | dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n", |
| 3568 | stp->st_access_bmap, od->od_share_access); |
| 3569 | goto out; |
| 3570 | } |
| 3571 | if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) { |
| 3572 | dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n", |
| 3573 | stp->st_deny_bmap, od->od_share_deny); |
| 3574 | goto out; |
| 3575 | } |
J. Bruce Fields | f197c27 | 2011-06-29 08:23:50 -0400 | [diff] [blame] | 3576 | nfs4_file_downgrade(stp, od->od_share_access); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3577 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3578 | reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap); |
| 3579 | |
| 3580 | update_stateid(&stp->st_stateid); |
| 3581 | memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t)); |
| 3582 | status = nfs_ok; |
| 3583 | out: |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 3584 | if (od->od_stateowner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3585 | nfs4_get_stateowner(od->od_stateowner); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 3586 | cstate->replay_owner = od->od_stateowner; |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 3587 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3588 | nfs4_unlock_state(); |
| 3589 | return status; |
| 3590 | } |
| 3591 | |
| 3592 | /* |
| 3593 | * nfs4_unlock_state() called after encode |
| 3594 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3595 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3596 | nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 3597 | struct nfsd4_close *close) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3598 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3599 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3600 | struct nfs4_stateid *stp; |
| 3601 | |
| 3602 | dprintk("NFSD: nfsd4_close on file %.*s\n", |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3603 | (int)cstate->current_fh.fh_dentry->d_name.len, |
| 3604 | cstate->current_fh.fh_dentry->d_name.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3605 | |
| 3606 | nfs4_lock_state(); |
| 3607 | /* check close_lru for replay */ |
Benny Halevy | dd453df | 2009-04-03 08:28:41 +0300 | [diff] [blame] | 3608 | if ((status = nfs4_preprocess_seqid_op(cstate, |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3609 | close->cl_seqid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3610 | &close->cl_stateid, |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 3611 | OPEN_STATE | CLOSE_STATE, |
J. Bruce Fields | b34f27a | 2011-08-22 13:13:31 -0400 | [diff] [blame] | 3612 | &close->cl_stateowner, &stp))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3613 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3614 | status = nfs_ok; |
| 3615 | update_stateid(&stp->st_stateid); |
| 3616 | memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t)); |
| 3617 | |
J. Bruce Fields | 04ef595 | 2006-01-18 17:43:21 -0800 | [diff] [blame] | 3618 | /* release_stateid() calls nfsd_close() if needed */ |
J. Bruce Fields | 2283963 | 2009-01-11 14:27:17 -0500 | [diff] [blame] | 3619 | release_open_stateid(stp); |
J. Bruce Fields | 04ef595 | 2006-01-18 17:43:21 -0800 | [diff] [blame] | 3620 | |
| 3621 | /* place unused nfs4_stateowners on so_close_lru list to be |
| 3622 | * released by the laundromat service after the lease period |
| 3623 | * to enable us to handle CLOSE replay |
| 3624 | */ |
| 3625 | if (list_empty(&close->cl_stateowner->so_stateids)) |
| 3626 | move_to_close_lru(close->cl_stateowner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3627 | out: |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 3628 | if (close->cl_stateowner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3629 | nfs4_get_stateowner(close->cl_stateowner); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 3630 | cstate->replay_owner = close->cl_stateowner; |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 3631 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3632 | nfs4_unlock_state(); |
| 3633 | return status; |
| 3634 | } |
| 3635 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3636 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3637 | nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 3638 | struct nfsd4_delegreturn *dr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3639 | { |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 3640 | struct nfs4_delegation *dp; |
| 3641 | stateid_t *stateid = &dr->dr_stateid; |
| 3642 | struct inode *inode; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3643 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3644 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3645 | if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0))) |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 3646 | return status; |
| 3647 | inode = cstate->current_fh.fh_dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3648 | |
| 3649 | nfs4_lock_state(); |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 3650 | status = nfserr_bad_stateid; |
| 3651 | if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) |
| 3652 | goto out; |
| 3653 | status = nfserr_stale_stateid; |
| 3654 | if (STALE_STATEID(stateid)) |
| 3655 | goto out; |
J. Bruce Fields | 7e0f7cf | 2009-02-21 13:32:28 -0800 | [diff] [blame] | 3656 | status = nfserr_bad_stateid; |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 3657 | if (!is_delegation_stateid(stateid)) |
| 3658 | goto out; |
J. Bruce Fields | 3351514 | 2010-10-02 18:42:39 -0400 | [diff] [blame] | 3659 | status = nfserr_expired; |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 3660 | dp = find_delegation_stateid(inode, stateid); |
J. Bruce Fields | e4e83ea | 2010-04-22 16:21:39 -0400 | [diff] [blame] | 3661 | if (!dp) |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 3662 | goto out; |
J. Bruce Fields | 28dde24 | 2011-08-22 10:07:12 -0400 | [diff] [blame] | 3663 | status = check_stateid_generation(stateid, &dp->dl_stateid, nfsd4_has_session(cstate)); |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 3664 | if (status) |
| 3665 | goto out; |
| 3666 | renew_client(dp->dl_client); |
| 3667 | |
| 3668 | unhash_delegation(dp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3669 | out: |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 3670 | nfs4_unlock_state(); |
| 3671 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3672 | return status; |
| 3673 | } |
| 3674 | |
| 3675 | |
| 3676 | /* |
| 3677 | * Lock owner state (byte-range locks) |
| 3678 | */ |
| 3679 | #define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start)) |
| 3680 | #define LOCK_HASH_BITS 8 |
| 3681 | #define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS) |
| 3682 | #define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1) |
| 3683 | |
Benny Halevy | 87df4de | 2008-12-15 19:42:03 +0200 | [diff] [blame] | 3684 | static inline u64 |
| 3685 | end_offset(u64 start, u64 len) |
| 3686 | { |
| 3687 | u64 end; |
| 3688 | |
| 3689 | end = start + len; |
| 3690 | return end >= start ? end: NFS4_MAX_UINT64; |
| 3691 | } |
| 3692 | |
| 3693 | /* last octet in a range */ |
| 3694 | static inline u64 |
| 3695 | last_byte_offset(u64 start, u64 len) |
| 3696 | { |
| 3697 | u64 end; |
| 3698 | |
| 3699 | BUG_ON(!len); |
| 3700 | end = start + len; |
| 3701 | return end > start ? end - 1: NFS4_MAX_UINT64; |
| 3702 | } |
| 3703 | |
J. Bruce Fields | ddc04c4 | 2011-07-30 23:46:29 -0400 | [diff] [blame] | 3704 | static unsigned int lockownerid_hashval(u32 id) |
| 3705 | { |
| 3706 | return id & LOCK_HASH_MASK; |
| 3707 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3708 | |
| 3709 | static inline unsigned int |
| 3710 | lock_ownerstr_hashval(struct inode *inode, u32 cl_id, |
| 3711 | struct xdr_netobj *ownername) |
| 3712 | { |
| 3713 | return (file_hashval(inode) + cl_id |
| 3714 | + opaque_hashval(ownername->data, ownername->len)) |
| 3715 | & LOCK_HASH_MASK; |
| 3716 | } |
| 3717 | |
| 3718 | static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE]; |
| 3719 | static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3720 | |
Bryan Schumaker | e1ca12d | 2011-07-13 11:04:21 -0400 | [diff] [blame] | 3721 | static int |
| 3722 | same_stateid(stateid_t *id_one, stateid_t *id_two) |
| 3723 | { |
| 3724 | if (id_one->si_stateownerid != id_two->si_stateownerid) |
| 3725 | return 0; |
| 3726 | return id_one->si_fileid == id_two->si_fileid; |
| 3727 | } |
| 3728 | |
J. Bruce Fields | b79abad | 2011-08-22 18:01:43 -0400 | [diff] [blame^] | 3729 | static struct nfs4_stateid *find_stateid(stateid_t *t, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3730 | { |
J. Bruce Fields | b79abad | 2011-08-22 18:01:43 -0400 | [diff] [blame^] | 3731 | struct nfs4_stateid *s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3732 | unsigned int hashval; |
| 3733 | |
J. Bruce Fields | b79abad | 2011-08-22 18:01:43 -0400 | [diff] [blame^] | 3734 | hashval = stateid_hashval(t->si_stateownerid, t->si_fileid); |
| 3735 | list_for_each_entry(s, &stateid_hashtbl[hashval], st_hash) { |
| 3736 | if (!same_stateid(&s->st_stateid, t)) |
| 3737 | continue; |
| 3738 | if (flags & LOCK_STATE && s->st_type != NFS4_LOCK_STID) |
| 3739 | return NULL; |
| 3740 | if (flags & OPEN_STATE && s->st_type != NFS4_OPEN_STID) |
| 3741 | return NULL; |
| 3742 | return s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3743 | } |
Bryan Schumaker | e1ca12d | 2011-07-13 11:04:21 -0400 | [diff] [blame] | 3744 | return NULL; |
| 3745 | } |
| 3746 | |
| 3747 | static struct nfs4_delegation * |
| 3748 | search_for_delegation(stateid_t *stid) |
| 3749 | { |
| 3750 | struct nfs4_file *fp; |
| 3751 | struct nfs4_delegation *dp; |
| 3752 | struct list_head *pos; |
| 3753 | int i; |
| 3754 | |
| 3755 | for (i = 0; i < FILE_HASH_SIZE; i++) { |
| 3756 | list_for_each_entry(fp, &file_hashtbl[i], fi_hash) { |
| 3757 | list_for_each(pos, &fp->fi_delegations) { |
| 3758 | dp = list_entry(pos, struct nfs4_delegation, dl_perfile); |
| 3759 | if (same_stateid(&dp->dl_stateid, stid)) |
| 3760 | return dp; |
| 3761 | } |
| 3762 | } |
| 3763 | } |
| 3764 | return NULL; |
| 3765 | } |
| 3766 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3767 | static struct nfs4_delegation * |
| 3768 | find_delegation_stateid(struct inode *ino, stateid_t *stid) |
| 3769 | { |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 3770 | struct nfs4_file *fp; |
| 3771 | struct nfs4_delegation *dl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3772 | |
Benny Halevy | 8c10cbd | 2009-10-19 12:04:53 +0200 | [diff] [blame] | 3773 | dprintk("NFSD: %s: stateid=" STATEID_FMT "\n", __func__, |
| 3774 | STATEID_VAL(stid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3775 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3776 | fp = find_file(ino); |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 3777 | if (!fp) |
| 3778 | return NULL; |
| 3779 | dl = find_delegation_file(fp, stid); |
| 3780 | put_nfs4_file(fp); |
| 3781 | return dl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3782 | } |
| 3783 | |
| 3784 | /* |
| 3785 | * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that |
| 3786 | * we can't properly handle lock requests that go beyond the (2^63 - 1)-th |
| 3787 | * byte, because of sign extension problems. Since NFSv4 calls for 64-bit |
| 3788 | * locking, this prevents us from being completely protocol-compliant. The |
| 3789 | * real solution to this problem is to start using unsigned file offsets in |
| 3790 | * the VFS, but this is a very deep change! |
| 3791 | */ |
| 3792 | static inline void |
| 3793 | nfs4_transform_lock_offset(struct file_lock *lock) |
| 3794 | { |
| 3795 | if (lock->fl_start < 0) |
| 3796 | lock->fl_start = OFFSET_MAX; |
| 3797 | if (lock->fl_end < 0) |
| 3798 | lock->fl_end = OFFSET_MAX; |
| 3799 | } |
| 3800 | |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 3801 | /* Hack!: For now, we're defining this just so we can use a pointer to it |
| 3802 | * as a unique cookie to identify our (NFSv4's) posix locks. */ |
Alexey Dobriyan | 7b02196 | 2009-09-21 17:01:12 -0700 | [diff] [blame] | 3803 | static const struct lock_manager_operations nfsd_posix_mng_ops = { |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 3804 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3805 | |
| 3806 | static inline void |
| 3807 | nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny) |
| 3808 | { |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 3809 | struct nfs4_stateowner *sop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3810 | |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 3811 | if (fl->fl_lmops == &nfsd_posix_mng_ops) { |
| 3812 | sop = (struct nfs4_stateowner *) fl->fl_owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3813 | kref_get(&sop->so_ref); |
| 3814 | deny->ld_sop = sop; |
| 3815 | deny->ld_clientid = sop->so_client->cl_clientid; |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 3816 | } else { |
| 3817 | deny->ld_sop = NULL; |
| 3818 | deny->ld_clientid.cl_boot = 0; |
| 3819 | deny->ld_clientid.cl_id = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3820 | } |
| 3821 | deny->ld_start = fl->fl_start; |
Benny Halevy | 87df4de | 2008-12-15 19:42:03 +0200 | [diff] [blame] | 3822 | deny->ld_length = NFS4_MAX_UINT64; |
| 3823 | if (fl->fl_end != NFS4_MAX_UINT64) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3824 | deny->ld_length = fl->fl_end - fl->fl_start + 1; |
| 3825 | deny->ld_type = NFS4_READ_LT; |
| 3826 | if (fl->fl_type != F_RDLCK) |
| 3827 | deny->ld_type = NFS4_WRITE_LT; |
| 3828 | } |
| 3829 | |
| 3830 | static struct nfs4_stateowner * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3831 | find_lockstateowner_str(struct inode *inode, clientid_t *clid, |
| 3832 | struct xdr_netobj *owner) |
| 3833 | { |
| 3834 | unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner); |
| 3835 | struct nfs4_stateowner *op; |
| 3836 | |
| 3837 | list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) { |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 3838 | if (same_owner_str(op, owner, clid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3839 | return op; |
| 3840 | } |
| 3841 | return NULL; |
| 3842 | } |
| 3843 | |
J. Bruce Fields | ff194bd | 2011-08-12 09:42:57 -0400 | [diff] [blame] | 3844 | static void hash_lockowner(struct nfs4_stateowner *sop, unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp) |
| 3845 | { |
| 3846 | unsigned int idhashval; |
| 3847 | |
| 3848 | idhashval = lockownerid_hashval(sop->so_id); |
| 3849 | list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]); |
| 3850 | list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]); |
| 3851 | list_add(&sop->so_perstateid, &open_stp->st_lockowners); |
| 3852 | } |
| 3853 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3854 | /* |
| 3855 | * Alloc a lock owner structure. |
| 3856 | * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 3857 | * occurred. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3858 | * |
| 3859 | * strhashval = lock_ownerstr_hashval |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3860 | */ |
| 3861 | |
| 3862 | static struct nfs4_stateowner * |
| 3863 | alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) { |
| 3864 | struct nfs4_stateowner *sop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3865 | |
J. Bruce Fields | ff194bd | 2011-08-12 09:42:57 -0400 | [diff] [blame] | 3866 | sop = alloc_stateowner(&lock->lk_new_owner, clp); |
| 3867 | if (!sop) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3868 | return NULL; |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 3869 | INIT_LIST_HEAD(&sop->so_stateids); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3870 | sop->so_is_open_owner = 0; |
Neil Brown | b59e3c0 | 2005-09-13 01:25:38 -0700 | [diff] [blame] | 3871 | /* It is the openowner seqid that will be incremented in encode in the |
| 3872 | * case of new lockowners; so increment the lock seqid manually: */ |
| 3873 | sop->so_seqid = lock->lk_new_lock_seqid + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3874 | sop->so_confirmed = 1; |
J. Bruce Fields | ff194bd | 2011-08-12 09:42:57 -0400 | [diff] [blame] | 3875 | hash_lockowner(sop, strhashval, clp, open_stp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3876 | return sop; |
| 3877 | } |
| 3878 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 3879 | static struct nfs4_stateid * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3880 | alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp) |
| 3881 | { |
| 3882 | struct nfs4_stateid *stp; |
| 3883 | unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id); |
| 3884 | |
NeilBrown | 5ac049a | 2005-06-23 22:03:03 -0700 | [diff] [blame] | 3885 | stp = nfs4_alloc_stateid(); |
| 3886 | if (stp == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3887 | goto out; |
| 3888 | INIT_LIST_HEAD(&stp->st_hash); |
| 3889 | INIT_LIST_HEAD(&stp->st_perfile); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 3890 | INIT_LIST_HEAD(&stp->st_perstateowner); |
| 3891 | INIT_LIST_HEAD(&stp->st_lockowners); /* not used */ |
J. Bruce Fields | b79abad | 2011-08-22 18:01:43 -0400 | [diff] [blame^] | 3892 | list_add(&stp->st_hash, &stateid_hashtbl[hashval]); |
NeilBrown | 8beefa2 | 2005-06-23 22:03:08 -0700 | [diff] [blame] | 3893 | list_add(&stp->st_perfile, &fp->fi_stateids); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 3894 | list_add(&stp->st_perstateowner, &sop->so_stateids); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3895 | stp->st_stateowner = sop; |
J. Bruce Fields | 5fa0bbb | 2011-08-31 15:25:46 -0400 | [diff] [blame] | 3896 | stp->st_type = NFS4_LOCK_STID; |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 3897 | get_nfs4_file(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3898 | stp->st_file = fp; |
J. Bruce Fields | e4e83ea | 2010-04-22 16:21:39 -0400 | [diff] [blame] | 3899 | stp->st_stateid.si_boot = boot_time; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3900 | stp->st_stateid.si_stateownerid = sop->so_id; |
| 3901 | stp->st_stateid.si_fileid = fp->fi_id; |
| 3902 | stp->st_stateid.si_generation = 0; |
J. Bruce Fields | 0997b17 | 2011-03-02 18:01:35 -0500 | [diff] [blame] | 3903 | stp->st_access_bmap = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3904 | stp->st_deny_bmap = open_stp->st_deny_bmap; |
NeilBrown | 4c4cd22 | 2005-07-07 17:59:27 -0700 | [diff] [blame] | 3905 | stp->st_openstp = open_stp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3906 | |
| 3907 | out: |
| 3908 | return stp; |
| 3909 | } |
| 3910 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 3911 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3912 | check_lock_length(u64 offset, u64 length) |
| 3913 | { |
Benny Halevy | 87df4de | 2008-12-15 19:42:03 +0200 | [diff] [blame] | 3914 | return ((length == 0) || ((length != NFS4_MAX_UINT64) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3915 | LOFF_OVERFLOW(offset, length))); |
| 3916 | } |
| 3917 | |
J. Bruce Fields | 0997b17 | 2011-03-02 18:01:35 -0500 | [diff] [blame] | 3918 | static void get_lock_access(struct nfs4_stateid *lock_stp, u32 access) |
| 3919 | { |
| 3920 | struct nfs4_file *fp = lock_stp->st_file; |
| 3921 | int oflag = nfs4_access_to_omode(access); |
| 3922 | |
| 3923 | if (test_bit(access, &lock_stp->st_access_bmap)) |
| 3924 | return; |
| 3925 | nfs4_file_get_access(fp, oflag); |
| 3926 | __set_bit(access, &lock_stp->st_access_bmap); |
| 3927 | } |
| 3928 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3929 | /* |
| 3930 | * LOCK operation |
| 3931 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3932 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3933 | nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 3934 | struct nfsd4_lock *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3935 | { |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 3936 | struct nfs4_stateowner *open_sop = NULL; |
Neil Brown | b59e3c0 | 2005-09-13 01:25:38 -0700 | [diff] [blame] | 3937 | struct nfs4_stateowner *lock_sop = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3938 | struct nfs4_stateid *lock_stp; |
J. Bruce Fields | 7d94784 | 2010-08-20 18:09:31 -0400 | [diff] [blame] | 3939 | struct nfs4_file *fp; |
| 3940 | struct file *filp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3941 | struct file_lock file_lock; |
Andy Adamson | 8dc7c31 | 2006-03-20 13:44:26 -0500 | [diff] [blame] | 3942 | struct file_lock conflock; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3943 | __be32 status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3944 | unsigned int strhashval; |
J. Bruce Fields | b34f27a | 2011-08-22 13:13:31 -0400 | [diff] [blame] | 3945 | int lkflg; |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 3946 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3947 | |
| 3948 | dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n", |
| 3949 | (long long) lock->lk_offset, |
| 3950 | (long long) lock->lk_length); |
| 3951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3952 | if (check_lock_length(lock->lk_offset, lock->lk_length)) |
| 3953 | return nfserr_inval; |
| 3954 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 3955 | if ((status = fh_verify(rqstp, &cstate->current_fh, |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 3956 | S_IFREG, NFSD_MAY_LOCK))) { |
Andy Adamson | a6f6ef2 | 2006-01-18 17:43:17 -0800 | [diff] [blame] | 3957 | dprintk("NFSD: nfsd4_lock: permission denied!\n"); |
| 3958 | return status; |
| 3959 | } |
| 3960 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3961 | nfs4_lock_state(); |
| 3962 | |
| 3963 | if (lock->lk_is_new) { |
NeilBrown | 893f877 | 2005-07-07 17:59:17 -0700 | [diff] [blame] | 3964 | /* |
| 3965 | * Client indicates that this is a new lockowner. |
| 3966 | * Use open owner and open stateid to create lock owner and |
| 3967 | * lock stateid. |
| 3968 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3969 | struct nfs4_stateid *open_stp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3970 | |
| 3971 | status = nfserr_stale_clientid; |
Andy Adamson | 60adfc5 | 2009-04-03 08:28:50 +0300 | [diff] [blame] | 3972 | if (!nfsd4_has_session(cstate) && |
| 3973 | STALE_CLIENTID(&lock->lk_new_clientid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3974 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3975 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3976 | /* validate and update open stateid and open seqid */ |
Benny Halevy | dd453df | 2009-04-03 08:28:41 +0300 | [diff] [blame] | 3977 | status = nfs4_preprocess_seqid_op(cstate, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3978 | lock->lk_new_open_seqid, |
| 3979 | &lock->lk_new_open_stateid, |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 3980 | OPEN_STATE, |
J. Bruce Fields | b34f27a | 2011-08-22 13:13:31 -0400 | [diff] [blame] | 3981 | &lock->lk_replay_owner, &open_stp); |
NeilBrown | 3751517 | 2005-07-07 17:59:16 -0700 | [diff] [blame] | 3982 | if (status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3983 | goto out; |
J. Bruce Fields | b34f27a | 2011-08-22 13:13:31 -0400 | [diff] [blame] | 3984 | status = nfserr_bad_stateid; |
J. Bruce Fields | 3a65588 | 2006-01-18 17:43:19 -0800 | [diff] [blame] | 3985 | open_sop = lock->lk_replay_owner; |
J. Bruce Fields | b34f27a | 2011-08-22 13:13:31 -0400 | [diff] [blame] | 3986 | if (!nfsd4_has_session(cstate) && |
| 3987 | !same_clid(&open_sop->so_client->cl_clientid, |
| 3988 | &lock->v.new.clientid)) |
| 3989 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3990 | /* create lockowner and lock stateid */ |
| 3991 | fp = open_stp->st_file; |
| 3992 | strhashval = lock_ownerstr_hashval(fp->fi_inode, |
| 3993 | open_sop->so_client->cl_clientid.cl_id, |
| 3994 | &lock->v.new.owner); |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 3995 | /* XXX: Do we need to check for duplicate stateowners on |
| 3996 | * the same file, or should they just be allowed (and |
| 3997 | * create new stateids)? */ |
J. Bruce Fields | 3e77246 | 2011-08-10 19:07:33 -0400 | [diff] [blame] | 3998 | status = nfserr_jukebox; |
Neil Brown | b59e3c0 | 2005-09-13 01:25:38 -0700 | [diff] [blame] | 3999 | lock_sop = alloc_init_lock_stateowner(strhashval, |
| 4000 | open_sop->so_client, open_stp, lock); |
| 4001 | if (lock_sop == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4002 | goto out; |
Neil Brown | b59e3c0 | 2005-09-13 01:25:38 -0700 | [diff] [blame] | 4003 | lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp); |
J. Bruce Fields | 8a28051 | 2006-01-18 17:43:18 -0800 | [diff] [blame] | 4004 | if (lock_stp == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4005 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4006 | } else { |
| 4007 | /* lock (lock owner + lock stateid) already exists */ |
Benny Halevy | dd453df | 2009-04-03 08:28:41 +0300 | [diff] [blame] | 4008 | status = nfs4_preprocess_seqid_op(cstate, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4009 | lock->lk_old_lock_seqid, |
| 4010 | &lock->lk_old_lock_stateid, |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 4011 | LOCK_STATE, |
J. Bruce Fields | b34f27a | 2011-08-22 13:13:31 -0400 | [diff] [blame] | 4012 | &lock->lk_replay_owner, &lock_stp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4013 | if (status) |
| 4014 | goto out; |
J. Bruce Fields | 3a65588 | 2006-01-18 17:43:19 -0800 | [diff] [blame] | 4015 | lock_sop = lock->lk_replay_owner; |
J. Bruce Fields | 7d94784 | 2010-08-20 18:09:31 -0400 | [diff] [blame] | 4016 | fp = lock_stp->st_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4017 | } |
J. Bruce Fields | 3a65588 | 2006-01-18 17:43:19 -0800 | [diff] [blame] | 4018 | /* lock->lk_replay_owner and lock_stp have been created or found */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4019 | |
J. Bruce Fields | b34f27a | 2011-08-22 13:13:31 -0400 | [diff] [blame] | 4020 | lkflg = setlkflg(lock->lk_type); |
| 4021 | status = nfs4_check_openmode(lock_stp, lkflg); |
| 4022 | if (status) |
| 4023 | goto out; |
| 4024 | |
NeilBrown | 0dd395d | 2005-07-07 17:59:15 -0700 | [diff] [blame] | 4025 | status = nfserr_grace; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 4026 | if (locks_in_grace() && !lock->lk_reclaim) |
NeilBrown | 0dd395d | 2005-07-07 17:59:15 -0700 | [diff] [blame] | 4027 | goto out; |
| 4028 | status = nfserr_no_grace; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 4029 | if (!locks_in_grace() && lock->lk_reclaim) |
NeilBrown | 0dd395d | 2005-07-07 17:59:15 -0700 | [diff] [blame] | 4030 | goto out; |
| 4031 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4032 | locks_init_lock(&file_lock); |
| 4033 | switch (lock->lk_type) { |
| 4034 | case NFS4_READ_LT: |
| 4035 | case NFS4_READW_LT: |
J. Bruce Fields | 0997b17 | 2011-03-02 18:01:35 -0500 | [diff] [blame] | 4036 | filp = find_readable_file(lock_stp->st_file); |
| 4037 | if (filp) |
| 4038 | get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4039 | file_lock.fl_type = F_RDLCK; |
J. Bruce Fields | 529d7b2 | 2011-03-02 23:48:33 -0500 | [diff] [blame] | 4040 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4041 | case NFS4_WRITE_LT: |
| 4042 | case NFS4_WRITEW_LT: |
J. Bruce Fields | 0997b17 | 2011-03-02 18:01:35 -0500 | [diff] [blame] | 4043 | filp = find_writeable_file(lock_stp->st_file); |
| 4044 | if (filp) |
| 4045 | get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4046 | file_lock.fl_type = F_WRLCK; |
J. Bruce Fields | 529d7b2 | 2011-03-02 23:48:33 -0500 | [diff] [blame] | 4047 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4048 | default: |
| 4049 | status = nfserr_inval; |
| 4050 | goto out; |
| 4051 | } |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 4052 | if (!filp) { |
| 4053 | status = nfserr_openmode; |
| 4054 | goto out; |
| 4055 | } |
Neil Brown | b59e3c0 | 2005-09-13 01:25:38 -0700 | [diff] [blame] | 4056 | file_lock.fl_owner = (fl_owner_t)lock_sop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4057 | file_lock.fl_pid = current->tgid; |
| 4058 | file_lock.fl_file = filp; |
| 4059 | file_lock.fl_flags = FL_POSIX; |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 4060 | file_lock.fl_lmops = &nfsd_posix_mng_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4061 | |
| 4062 | file_lock.fl_start = lock->lk_offset; |
Benny Halevy | 87df4de | 2008-12-15 19:42:03 +0200 | [diff] [blame] | 4063 | file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4064 | nfs4_transform_lock_offset(&file_lock); |
| 4065 | |
| 4066 | /* |
| 4067 | * Try to lock the file in the VFS. |
| 4068 | * Note: locks.c uses the BKL to protect the inode's lock list. |
| 4069 | */ |
| 4070 | |
J. Bruce Fields | 529d7b2 | 2011-03-02 23:48:33 -0500 | [diff] [blame] | 4071 | err = vfs_lock_file(filp, F_SETLK, &file_lock, &conflock); |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 4072 | switch (-err) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4073 | case 0: /* success! */ |
| 4074 | update_stateid(&lock_stp->st_stateid); |
| 4075 | memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid, |
| 4076 | sizeof(stateid_t)); |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 4077 | status = 0; |
Andy Adamson | eb76b3f | 2006-03-26 01:37:26 -0800 | [diff] [blame] | 4078 | break; |
| 4079 | case (EAGAIN): /* conflock holds conflicting lock */ |
| 4080 | status = nfserr_denied; |
| 4081 | dprintk("NFSD: nfsd4_lock: conflicting lock found!\n"); |
| 4082 | nfs4_set_lock_denied(&conflock, &lock->lk_denied); |
| 4083 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4084 | case (EDEADLK): |
| 4085 | status = nfserr_deadlock; |
Andy Adamson | eb76b3f | 2006-03-26 01:37:26 -0800 | [diff] [blame] | 4086 | break; |
J. Bruce Fields | 3e77246 | 2011-08-10 19:07:33 -0400 | [diff] [blame] | 4087 | default: |
Marc Eshel | fd85b81 | 2006-11-28 16:26:41 -0500 | [diff] [blame] | 4088 | dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err); |
J. Bruce Fields | 3e77246 | 2011-08-10 19:07:33 -0400 | [diff] [blame] | 4089 | status = nfserrno(err); |
Andy Adamson | eb76b3f | 2006-03-26 01:37:26 -0800 | [diff] [blame] | 4090 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4091 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4092 | out: |
J. Bruce Fields | 8a28051 | 2006-01-18 17:43:18 -0800 | [diff] [blame] | 4093 | if (status && lock->lk_is_new && lock_sop) |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 4094 | release_lockowner(lock_sop); |
J. Bruce Fields | 3a65588 | 2006-01-18 17:43:19 -0800 | [diff] [blame] | 4095 | if (lock->lk_replay_owner) { |
| 4096 | nfs4_get_stateowner(lock->lk_replay_owner); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 4097 | cstate->replay_owner = lock->lk_replay_owner; |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 4098 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4099 | nfs4_unlock_state(); |
| 4100 | return status; |
| 4101 | } |
| 4102 | |
| 4103 | /* |
J. Bruce Fields | 55ef127 | 2008-12-20 11:58:38 -0800 | [diff] [blame] | 4104 | * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN, |
| 4105 | * so we do a temporary open here just to get an open file to pass to |
| 4106 | * vfs_test_lock. (Arguably perhaps test_lock should be done with an |
| 4107 | * inode operation.) |
| 4108 | */ |
| 4109 | static int nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock) |
| 4110 | { |
| 4111 | struct file *file; |
| 4112 | int err; |
| 4113 | |
| 4114 | err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file); |
| 4115 | if (err) |
| 4116 | return err; |
| 4117 | err = vfs_test_lock(file, lock); |
| 4118 | nfsd_close(file); |
| 4119 | return err; |
| 4120 | } |
| 4121 | |
| 4122 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4123 | * LOCKT operation |
| 4124 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 4125 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 4126 | nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 4127 | struct nfsd4_lockt *lockt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4128 | { |
| 4129 | struct inode *inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4130 | struct file_lock file_lock; |
Marc Eshel | fd85b81 | 2006-11-28 16:26:41 -0500 | [diff] [blame] | 4131 | int error; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 4132 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4133 | |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 4134 | if (locks_in_grace()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4135 | return nfserr_grace; |
| 4136 | |
| 4137 | if (check_lock_length(lockt->lt_offset, lockt->lt_length)) |
| 4138 | return nfserr_inval; |
| 4139 | |
| 4140 | lockt->lt_stateowner = NULL; |
| 4141 | nfs4_lock_state(); |
| 4142 | |
| 4143 | status = nfserr_stale_clientid; |
Andy Adamson | 60adfc5 | 2009-04-03 08:28:50 +0300 | [diff] [blame] | 4144 | if (!nfsd4_has_session(cstate) && STALE_CLIENTID(&lockt->lt_clientid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4145 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4146 | |
J. Bruce Fields | 75c096f | 2011-08-15 18:39:32 -0400 | [diff] [blame] | 4147 | if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4148 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4149 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 4150 | inode = cstate->current_fh.fh_dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4151 | locks_init_lock(&file_lock); |
| 4152 | switch (lockt->lt_type) { |
| 4153 | case NFS4_READ_LT: |
| 4154 | case NFS4_READW_LT: |
| 4155 | file_lock.fl_type = F_RDLCK; |
| 4156 | break; |
| 4157 | case NFS4_WRITE_LT: |
| 4158 | case NFS4_WRITEW_LT: |
| 4159 | file_lock.fl_type = F_WRLCK; |
| 4160 | break; |
| 4161 | default: |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 4162 | dprintk("NFSD: nfs4_lockt: bad lock type!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4163 | status = nfserr_inval; |
| 4164 | goto out; |
| 4165 | } |
| 4166 | |
| 4167 | lockt->lt_stateowner = find_lockstateowner_str(inode, |
| 4168 | &lockt->lt_clientid, &lockt->lt_owner); |
| 4169 | if (lockt->lt_stateowner) |
| 4170 | file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner; |
| 4171 | file_lock.fl_pid = current->tgid; |
| 4172 | file_lock.fl_flags = FL_POSIX; |
| 4173 | |
| 4174 | file_lock.fl_start = lockt->lt_offset; |
Benny Halevy | 87df4de | 2008-12-15 19:42:03 +0200 | [diff] [blame] | 4175 | file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4176 | |
| 4177 | nfs4_transform_lock_offset(&file_lock); |
| 4178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4179 | status = nfs_ok; |
J. Bruce Fields | 55ef127 | 2008-12-20 11:58:38 -0800 | [diff] [blame] | 4180 | error = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock); |
Marc Eshel | fd85b81 | 2006-11-28 16:26:41 -0500 | [diff] [blame] | 4181 | if (error) { |
| 4182 | status = nfserrno(error); |
| 4183 | goto out; |
| 4184 | } |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 4185 | if (file_lock.fl_type != F_UNLCK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4186 | status = nfserr_denied; |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 4187 | nfs4_set_lock_denied(&file_lock, &lockt->lt_denied); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4188 | } |
| 4189 | out: |
| 4190 | nfs4_unlock_state(); |
| 4191 | return status; |
| 4192 | } |
| 4193 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 4194 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 4195 | nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 4196 | struct nfsd4_locku *locku) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4197 | { |
| 4198 | struct nfs4_stateid *stp; |
| 4199 | struct file *filp = NULL; |
| 4200 | struct file_lock file_lock; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 4201 | __be32 status; |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 4202 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4203 | |
| 4204 | dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n", |
| 4205 | (long long) locku->lu_offset, |
| 4206 | (long long) locku->lu_length); |
| 4207 | |
| 4208 | if (check_lock_length(locku->lu_offset, locku->lu_length)) |
| 4209 | return nfserr_inval; |
| 4210 | |
| 4211 | nfs4_lock_state(); |
| 4212 | |
Benny Halevy | dd453df | 2009-04-03 08:28:41 +0300 | [diff] [blame] | 4213 | if ((status = nfs4_preprocess_seqid_op(cstate, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4214 | locku->lu_seqid, |
| 4215 | &locku->lu_stateid, |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 4216 | LOCK_STATE, |
J. Bruce Fields | b34f27a | 2011-08-22 13:13:31 -0400 | [diff] [blame] | 4217 | &locku->lu_stateowner, &stp))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4218 | goto out; |
| 4219 | |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 4220 | filp = find_any_file(stp->st_file); |
| 4221 | if (!filp) { |
| 4222 | status = nfserr_lock_range; |
| 4223 | goto out; |
| 4224 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4225 | BUG_ON(!filp); |
| 4226 | locks_init_lock(&file_lock); |
| 4227 | file_lock.fl_type = F_UNLCK; |
| 4228 | file_lock.fl_owner = (fl_owner_t) locku->lu_stateowner; |
| 4229 | file_lock.fl_pid = current->tgid; |
| 4230 | file_lock.fl_file = filp; |
| 4231 | file_lock.fl_flags = FL_POSIX; |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 4232 | file_lock.fl_lmops = &nfsd_posix_mng_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4233 | file_lock.fl_start = locku->lu_offset; |
| 4234 | |
Benny Halevy | 87df4de | 2008-12-15 19:42:03 +0200 | [diff] [blame] | 4235 | file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4236 | nfs4_transform_lock_offset(&file_lock); |
| 4237 | |
| 4238 | /* |
| 4239 | * Try to unlock the file in the VFS. |
| 4240 | */ |
Marc Eshel | fd85b81 | 2006-11-28 16:26:41 -0500 | [diff] [blame] | 4241 | err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL); |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 4242 | if (err) { |
Marc Eshel | fd85b81 | 2006-11-28 16:26:41 -0500 | [diff] [blame] | 4243 | dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4244 | goto out_nfserr; |
| 4245 | } |
| 4246 | /* |
| 4247 | * OK, unlock succeeded; the only thing left to do is update the stateid. |
| 4248 | */ |
| 4249 | update_stateid(&stp->st_stateid); |
| 4250 | memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t)); |
| 4251 | |
| 4252 | out: |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 4253 | if (locku->lu_stateowner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4254 | nfs4_get_stateowner(locku->lu_stateowner); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 4255 | cstate->replay_owner = locku->lu_stateowner; |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 4256 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4257 | nfs4_unlock_state(); |
| 4258 | return status; |
| 4259 | |
| 4260 | out_nfserr: |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 4261 | status = nfserrno(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4262 | goto out; |
| 4263 | } |
| 4264 | |
| 4265 | /* |
| 4266 | * returns |
| 4267 | * 1: locks held by lockowner |
| 4268 | * 0: no locks held by lockowner |
| 4269 | */ |
| 4270 | static int |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 4271 | check_for_locks(struct nfs4_file *filp, struct nfs4_stateowner *lowner) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4272 | { |
| 4273 | struct file_lock **flpp; |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 4274 | struct inode *inode = filp->fi_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4275 | int status = 0; |
| 4276 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 4277 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4278 | for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) { |
J. Bruce Fields | 796dadf | 2006-01-18 17:43:22 -0800 | [diff] [blame] | 4279 | if ((*flpp)->fl_owner == (fl_owner_t)lowner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4280 | status = 1; |
| 4281 | goto out; |
J. Bruce Fields | 796dadf | 2006-01-18 17:43:22 -0800 | [diff] [blame] | 4282 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4283 | } |
| 4284 | out: |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 4285 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4286 | return status; |
| 4287 | } |
| 4288 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 4289 | __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 4290 | nfsd4_release_lockowner(struct svc_rqst *rqstp, |
| 4291 | struct nfsd4_compound_state *cstate, |
| 4292 | struct nfsd4_release_lockowner *rlockowner) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4293 | { |
| 4294 | clientid_t *clid = &rlockowner->rl_clientid; |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 4295 | struct nfs4_stateowner *sop; |
| 4296 | struct nfs4_stateid *stp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4297 | struct xdr_netobj *owner = &rlockowner->rl_owner; |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 4298 | struct list_head matches; |
| 4299 | int i; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 4300 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4301 | |
| 4302 | dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n", |
| 4303 | clid->cl_boot, clid->cl_id); |
| 4304 | |
| 4305 | /* XXX check for lease expiration */ |
| 4306 | |
| 4307 | status = nfserr_stale_clientid; |
Neil Brown | 849823c | 2005-09-13 01:25:36 -0700 | [diff] [blame] | 4308 | if (STALE_CLIENTID(clid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4309 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4310 | |
| 4311 | nfs4_lock_state(); |
| 4312 | |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 4313 | status = nfserr_locks_held; |
| 4314 | /* XXX: we're doing a linear search through all the lockowners. |
| 4315 | * Yipes! For now we'll just hope clients aren't really using |
| 4316 | * release_lockowner much, but eventually we have to fix these |
| 4317 | * data structures. */ |
| 4318 | INIT_LIST_HEAD(&matches); |
| 4319 | for (i = 0; i < LOCK_HASH_SIZE; i++) { |
| 4320 | list_for_each_entry(sop, &lock_ownerid_hashtbl[i], so_idhash) { |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 4321 | if (!same_owner_str(sop, owner, clid)) |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 4322 | continue; |
| 4323 | list_for_each_entry(stp, &sop->so_stateids, |
| 4324 | st_perstateowner) { |
J. Bruce Fields | f9d7562 | 2010-07-08 11:02:09 -0400 | [diff] [blame] | 4325 | if (check_for_locks(stp->st_file, sop)) |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 4326 | goto out; |
| 4327 | /* Note: so_perclient unused for lockowners, |
| 4328 | * so it's OK to fool with here. */ |
| 4329 | list_add(&sop->so_perclient, &matches); |
| 4330 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4331 | } |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 4332 | } |
| 4333 | /* Clients probably won't expect us to return with some (but not all) |
| 4334 | * of the lockowner state released; so don't release any until all |
| 4335 | * have been checked. */ |
| 4336 | status = nfs_ok; |
NeilBrown | 0fa822e | 2005-07-07 17:59:14 -0700 | [diff] [blame] | 4337 | while (!list_empty(&matches)) { |
| 4338 | sop = list_entry(matches.next, struct nfs4_stateowner, |
| 4339 | so_perclient); |
| 4340 | /* unhash_stateowner deletes so_perclient only |
| 4341 | * for openowners. */ |
| 4342 | list_del(&sop->so_perclient); |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 4343 | release_lockowner(sop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4344 | } |
| 4345 | out: |
| 4346 | nfs4_unlock_state(); |
| 4347 | return status; |
| 4348 | } |
| 4349 | |
| 4350 | static inline struct nfs4_client_reclaim * |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 4351 | alloc_reclaim(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4352 | { |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 4353 | return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4354 | } |
| 4355 | |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 4356 | int |
Andy Adamson | a1bcecd | 2009-04-03 08:28:05 +0300 | [diff] [blame] | 4357 | nfs4_has_reclaimed_state(const char *name, bool use_exchange_id) |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 4358 | { |
| 4359 | unsigned int strhashval = clientstr_hashval(name); |
| 4360 | struct nfs4_client *clp; |
| 4361 | |
J. Bruce Fields | e203d50 | 2010-11-24 17:30:54 -0500 | [diff] [blame] | 4362 | clp = find_confirmed_client_by_str(name, strhashval); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 4363 | return clp ? 1 : 0; |
| 4364 | } |
| 4365 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4366 | /* |
| 4367 | * failure => all reset bets are off, nfserr_no_grace... |
| 4368 | */ |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 4369 | int |
| 4370 | nfs4_client_to_reclaim(const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4371 | { |
| 4372 | unsigned int strhashval; |
| 4373 | struct nfs4_client_reclaim *crp = NULL; |
| 4374 | |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 4375 | dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name); |
| 4376 | crp = alloc_reclaim(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4377 | if (!crp) |
| 4378 | return 0; |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 4379 | strhashval = clientstr_hashval(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4380 | INIT_LIST_HEAD(&crp->cr_strhash); |
| 4381 | list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 4382 | memcpy(crp->cr_recdir, name, HEXDIR_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4383 | reclaim_str_hashtbl_size++; |
| 4384 | return 1; |
| 4385 | } |
| 4386 | |
| 4387 | static void |
| 4388 | nfs4_release_reclaim(void) |
| 4389 | { |
| 4390 | struct nfs4_client_reclaim *crp = NULL; |
| 4391 | int i; |
| 4392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4393 | for (i = 0; i < CLIENT_HASH_SIZE; i++) { |
| 4394 | while (!list_empty(&reclaim_str_hashtbl[i])) { |
| 4395 | crp = list_entry(reclaim_str_hashtbl[i].next, |
| 4396 | struct nfs4_client_reclaim, cr_strhash); |
| 4397 | list_del(&crp->cr_strhash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4398 | kfree(crp); |
| 4399 | reclaim_str_hashtbl_size--; |
| 4400 | } |
| 4401 | } |
| 4402 | BUG_ON(reclaim_str_hashtbl_size); |
| 4403 | } |
| 4404 | |
| 4405 | /* |
| 4406 | * called from OPEN, CLAIM_PREVIOUS with a new clientid. */ |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 4407 | static struct nfs4_client_reclaim * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4408 | nfs4_find_reclaim_client(clientid_t *clid) |
| 4409 | { |
| 4410 | unsigned int strhashval; |
| 4411 | struct nfs4_client *clp; |
| 4412 | struct nfs4_client_reclaim *crp = NULL; |
| 4413 | |
| 4414 | |
| 4415 | /* find clientid in conf_id_hashtbl */ |
| 4416 | clp = find_confirmed_client(clid); |
| 4417 | if (clp == NULL) |
| 4418 | return NULL; |
| 4419 | |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 4420 | dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n", |
| 4421 | clp->cl_name.len, clp->cl_name.data, |
| 4422 | clp->cl_recdir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4423 | |
| 4424 | /* find clp->cl_name in reclaim_str_hashtbl */ |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 4425 | strhashval = clientstr_hashval(clp->cl_recdir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4426 | list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) { |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 4427 | if (same_name(crp->cr_recdir, clp->cl_recdir)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4428 | return crp; |
| 4429 | } |
| 4430 | } |
| 4431 | return NULL; |
| 4432 | } |
| 4433 | |
| 4434 | /* |
| 4435 | * Called from OPEN. Look for clientid in reclaim list. |
| 4436 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 4437 | __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4438 | nfs4_check_open_reclaim(clientid_t *clid) |
| 4439 | { |
NeilBrown | dfc8356 | 2005-06-23 22:03:16 -0700 | [diff] [blame] | 4440 | return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4441 | } |
| 4442 | |
NeilBrown | ac4d8ff2 | 2005-06-23 22:03:30 -0700 | [diff] [blame] | 4443 | /* initialization to perform at module load time: */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4444 | |
J. Bruce Fields | e8ff2a8 | 2007-08-01 15:30:59 -0400 | [diff] [blame] | 4445 | int |
NeilBrown | ac4d8ff2 | 2005-06-23 22:03:30 -0700 | [diff] [blame] | 4446 | nfs4_state_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4447 | { |
J. Bruce Fields | e8ff2a8 | 2007-08-01 15:30:59 -0400 | [diff] [blame] | 4448 | int i, status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4449 | |
J. Bruce Fields | e8ff2a8 | 2007-08-01 15:30:59 -0400 | [diff] [blame] | 4450 | status = nfsd4_init_slabs(); |
| 4451 | if (status) |
| 4452 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4453 | for (i = 0; i < CLIENT_HASH_SIZE; i++) { |
| 4454 | INIT_LIST_HEAD(&conf_id_hashtbl[i]); |
| 4455 | INIT_LIST_HEAD(&conf_str_hashtbl[i]); |
| 4456 | INIT_LIST_HEAD(&unconf_str_hashtbl[i]); |
| 4457 | INIT_LIST_HEAD(&unconf_id_hashtbl[i]); |
Wang Chen | 02cb285 | 2009-04-24 15:41:57 +0800 | [diff] [blame] | 4458 | INIT_LIST_HEAD(&reclaim_str_hashtbl[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4459 | } |
Marc Eshel | 5282fd7 | 2009-04-03 08:27:52 +0300 | [diff] [blame] | 4460 | for (i = 0; i < SESSION_HASH_SIZE; i++) |
| 4461 | INIT_LIST_HEAD(&sessionid_hashtbl[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4462 | for (i = 0; i < FILE_HASH_SIZE; i++) { |
| 4463 | INIT_LIST_HEAD(&file_hashtbl[i]); |
| 4464 | } |
J. Bruce Fields | 506f275 | 2011-08-11 18:50:18 -0400 | [diff] [blame] | 4465 | for (i = 0; i < OPEN_OWNER_HASH_SIZE; i++) { |
| 4466 | INIT_LIST_HEAD(&open_ownerstr_hashtbl[i]); |
| 4467 | INIT_LIST_HEAD(&open_ownerid_hashtbl[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4468 | } |
J. Bruce Fields | b79abad | 2011-08-22 18:01:43 -0400 | [diff] [blame^] | 4469 | for (i = 0; i < STATEID_HASH_SIZE; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4470 | INIT_LIST_HEAD(&stateid_hashtbl[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4471 | for (i = 0; i < LOCK_HASH_SIZE; i++) { |
| 4472 | INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]); |
| 4473 | INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]); |
| 4474 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4475 | memset(&onestateid, ~0, sizeof(stateid_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4476 | INIT_LIST_HEAD(&close_lru); |
| 4477 | INIT_LIST_HEAD(&client_lru); |
| 4478 | INIT_LIST_HEAD(&del_recall_lru); |
NeilBrown | ac4d8ff2 | 2005-06-23 22:03:30 -0700 | [diff] [blame] | 4479 | reclaim_str_hashtbl_size = 0; |
J. Bruce Fields | e8ff2a8 | 2007-08-01 15:30:59 -0400 | [diff] [blame] | 4480 | return 0; |
NeilBrown | ac4d8ff2 | 2005-06-23 22:03:30 -0700 | [diff] [blame] | 4481 | } |
| 4482 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 4483 | static void |
| 4484 | nfsd4_load_reboot_recovery_data(void) |
| 4485 | { |
| 4486 | int status; |
| 4487 | |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 4488 | nfs4_lock_state(); |
J. Bruce Fields | 48483bf | 2011-08-26 20:40:28 -0400 | [diff] [blame] | 4489 | nfsd4_init_recdir(); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 4490 | status = nfsd4_recdir_load(); |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 4491 | nfs4_unlock_state(); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 4492 | if (status) |
| 4493 | printk("NFSD: Failure reading reboot recovery data\n"); |
| 4494 | } |
| 4495 | |
Meelap Shah | c2f1a55 | 2007-07-17 04:04:39 -0700 | [diff] [blame] | 4496 | /* |
| 4497 | * Since the lifetime of a delegation isn't limited to that of an open, a |
| 4498 | * client may quite reasonably hang on to a delegation as long as it has |
| 4499 | * the inode cached. This becomes an obvious problem the first time a |
| 4500 | * client's inode cache approaches the size of the server's total memory. |
| 4501 | * |
| 4502 | * For now we avoid this problem by imposing a hard limit on the number |
| 4503 | * of delegations, which varies according to the server's memory size. |
| 4504 | */ |
| 4505 | static void |
| 4506 | set_max_delegations(void) |
| 4507 | { |
| 4508 | /* |
| 4509 | * Allow at most 4 delegations per megabyte of RAM. Quick |
| 4510 | * estimates suggest that in the worst case (where every delegation |
| 4511 | * is for a different inode), a delegation could take about 1.5K, |
| 4512 | * giving a worst case usage of about 6% of memory. |
| 4513 | */ |
| 4514 | max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT); |
| 4515 | } |
| 4516 | |
NeilBrown | ac4d8ff2 | 2005-06-23 22:03:30 -0700 | [diff] [blame] | 4517 | /* initialization to perform when the nfsd service is started: */ |
| 4518 | |
J. Bruce Fields | 29ab23c | 2009-09-15 15:56:50 -0400 | [diff] [blame] | 4519 | static int |
NeilBrown | ac4d8ff2 | 2005-06-23 22:03:30 -0700 | [diff] [blame] | 4520 | __nfs4_state_start(void) |
| 4521 | { |
J. Bruce Fields | b5a1a81 | 2010-03-03 14:52:55 -0500 | [diff] [blame] | 4522 | int ret; |
| 4523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4524 | boot_time = get_seconds(); |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 4525 | locks_start_grace(&nfsd4_manager); |
Marc Eshel | 9a8db97 | 2007-07-17 04:04:35 -0700 | [diff] [blame] | 4526 | printk(KERN_INFO "NFSD: starting %ld-second grace period\n", |
J. Bruce Fields | e46b498 | 2010-03-01 19:21:21 -0500 | [diff] [blame] | 4527 | nfsd4_grace); |
J. Bruce Fields | b5a1a81 | 2010-03-03 14:52:55 -0500 | [diff] [blame] | 4528 | ret = set_callback_cred(); |
| 4529 | if (ret) |
| 4530 | return -ENOMEM; |
NeilBrown | 58da282 | 2005-06-23 22:03:19 -0700 | [diff] [blame] | 4531 | laundry_wq = create_singlethread_workqueue("nfsd4"); |
J. Bruce Fields | 29ab23c | 2009-09-15 15:56:50 -0400 | [diff] [blame] | 4532 | if (laundry_wq == NULL) |
| 4533 | return -ENOMEM; |
J. Bruce Fields | b5a1a81 | 2010-03-03 14:52:55 -0500 | [diff] [blame] | 4534 | ret = nfsd4_create_callback_queue(); |
| 4535 | if (ret) |
| 4536 | goto out_free_laundry; |
J. Bruce Fields | e46b498 | 2010-03-01 19:21:21 -0500 | [diff] [blame] | 4537 | queue_delayed_work(laundry_wq, &laundromat_work, nfsd4_grace * HZ); |
Meelap Shah | c2f1a55 | 2007-07-17 04:04:39 -0700 | [diff] [blame] | 4538 | set_max_delegations(); |
J. Bruce Fields | b5a1a81 | 2010-03-03 14:52:55 -0500 | [diff] [blame] | 4539 | return 0; |
| 4540 | out_free_laundry: |
| 4541 | destroy_workqueue(laundry_wq); |
| 4542 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4543 | } |
| 4544 | |
J. Bruce Fields | 29ab23c | 2009-09-15 15:56:50 -0400 | [diff] [blame] | 4545 | int |
NeilBrown | 76a3550 | 2005-06-23 22:03:26 -0700 | [diff] [blame] | 4546 | nfs4_state_start(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4547 | { |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 4548 | nfsd4_load_reboot_recovery_data(); |
Jeff Layton | 4ad9a34 | 2010-07-19 16:50:04 -0400 | [diff] [blame] | 4549 | return __nfs4_state_start(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4550 | } |
| 4551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4552 | static void |
| 4553 | __nfs4_state_shutdown(void) |
| 4554 | { |
| 4555 | int i; |
| 4556 | struct nfs4_client *clp = NULL; |
| 4557 | struct nfs4_delegation *dp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4558 | struct list_head *pos, *next, reaplist; |
| 4559 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4560 | for (i = 0; i < CLIENT_HASH_SIZE; i++) { |
| 4561 | while (!list_empty(&conf_id_hashtbl[i])) { |
| 4562 | clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash); |
| 4563 | expire_client(clp); |
| 4564 | } |
| 4565 | while (!list_empty(&unconf_str_hashtbl[i])) { |
| 4566 | clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash); |
| 4567 | expire_client(clp); |
| 4568 | } |
| 4569 | } |
| 4570 | INIT_LIST_HEAD(&reaplist); |
| 4571 | spin_lock(&recall_lock); |
| 4572 | list_for_each_safe(pos, next, &del_recall_lru) { |
| 4573 | dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru); |
| 4574 | list_move(&dp->dl_recall_lru, &reaplist); |
| 4575 | } |
| 4576 | spin_unlock(&recall_lock); |
| 4577 | list_for_each_safe(pos, next, &reaplist) { |
| 4578 | dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru); |
| 4579 | list_del_init(&dp->dl_recall_lru); |
| 4580 | unhash_delegation(dp); |
| 4581 | } |
| 4582 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 4583 | nfsd4_shutdown_recdir(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4584 | } |
| 4585 | |
| 4586 | void |
| 4587 | nfs4_state_shutdown(void) |
| 4588 | { |
Tejun Heo | afe2c51 | 2010-12-14 16:21:17 +0100 | [diff] [blame] | 4589 | cancel_delayed_work_sync(&laundromat_work); |
NeilBrown | 5e8d5c2 | 2006-04-10 22:55:37 -0700 | [diff] [blame] | 4590 | destroy_workqueue(laundry_wq); |
J. Bruce Fields | 2c5e761 | 2008-11-20 14:36:17 -0600 | [diff] [blame] | 4591 | locks_end_grace(&nfsd4_manager); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4592 | nfs4_lock_state(); |
| 4593 | nfs4_release_reclaim(); |
| 4594 | __nfs4_state_shutdown(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4595 | nfs4_unlock_state(); |
J. Bruce Fields | c3935e3 | 2010-06-04 16:42:08 -0400 | [diff] [blame] | 4596 | nfsd4_destroy_callback_queue(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4597 | } |