Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/nfsd/nfs4state.c |
| 3 | * |
| 4 | * Copyright (c) 2001 The Regents of the University of Michigan. |
| 5 | * All rights reserved. |
| 6 | * |
| 7 | * Kendrick Smith <kmsmith@umich.edu> |
| 8 | * Andy Adamson <kandros@umich.edu> |
| 9 | * |
| 10 | * Redistribution and use in source and binary forms, with or without |
| 11 | * modification, are permitted provided that the following conditions |
| 12 | * are met: |
| 13 | * |
| 14 | * 1. Redistributions of source code must retain the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer. |
| 16 | * 2. Redistributions in binary form must reproduce the above copyright |
| 17 | * notice, this list of conditions and the following disclaimer in the |
| 18 | * documentation and/or other materials provided with the distribution. |
| 19 | * 3. Neither the name of the University nor the names of its |
| 20 | * contributors may be used to endorse or promote products derived |
| 21 | * from this software without specific prior written permission. |
| 22 | * |
| 23 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 24 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 25 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 26 | * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 27 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 28 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 29 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 30 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 31 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 32 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 33 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 34 | * |
| 35 | */ |
| 36 | |
| 37 | #include <linux/param.h> |
| 38 | #include <linux/major.h> |
| 39 | #include <linux/slab.h> |
| 40 | |
| 41 | #include <linux/sunrpc/svc.h> |
| 42 | #include <linux/nfsd/nfsd.h> |
| 43 | #include <linux/nfsd/cache.h> |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 44 | #include <linux/file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <linux/mount.h> |
| 46 | #include <linux/workqueue.h> |
| 47 | #include <linux/smp_lock.h> |
| 48 | #include <linux/kthread.h> |
| 49 | #include <linux/nfs4.h> |
| 50 | #include <linux/nfsd/state.h> |
| 51 | #include <linux/nfsd/xdr4.h> |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 52 | #include <linux/namei.h> |
Meelap Shah | c2f1a55 | 2007-07-17 04:04:39 -0700 | [diff] [blame] | 53 | #include <linux/swap.h> |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 54 | #include <linux/mutex.h> |
Marc Eshel | fd85b81 | 2006-11-28 16:26:41 -0500 | [diff] [blame] | 55 | #include <linux/lockd/bind.h> |
Marc Eshel | 9a8db97 | 2007-07-17 04:04:35 -0700 | [diff] [blame] | 56 | #include <linux/module.h> |
Olga Kornievskaia | 68e76ad | 2008-12-23 16:17:15 -0500 | [diff] [blame] | 57 | #include <linux/sunrpc/svcauth_gss.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | #define NFSDDBG_FACILITY NFSDDBG_PROC |
| 60 | |
| 61 | /* Globals */ |
| 62 | static time_t lease_time = 90; /* default lease time */ |
NeilBrown | d99a05a | 2005-06-23 22:03:21 -0700 | [diff] [blame] | 63 | static time_t user_lease_time = 90; |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 64 | static time_t boot_time; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | static u32 current_ownerid = 1; |
| 66 | static u32 current_fileid = 1; |
| 67 | static u32 current_delegid = 1; |
| 68 | static u32 nfs4_init; |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 69 | static stateid_t zerostateid; /* bits all 0 */ |
| 70 | static stateid_t onestateid; /* bits all 1 */ |
| 71 | |
| 72 | #define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t))) |
| 73 | #define ONE_STATEID(stateid) (!memcmp((stateid), &onestateid, sizeof(stateid_t))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | /* forward declarations */ |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 76 | static struct nfs4_stateid * find_stateid(stateid_t *stid, int flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | static struct nfs4_delegation * find_delegation_stateid(struct inode *ino, stateid_t *stid); |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 78 | static char user_recovery_dirname[PATH_MAX] = "/var/lib/nfs/v4recovery"; |
| 79 | static void nfs4_set_recdir(char *recdir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 81 | /* Locking: */ |
| 82 | |
| 83 | /* Currently used for almost all code touching nfsv4 state: */ |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 84 | static DEFINE_MUTEX(client_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 86 | /* |
| 87 | * Currently used for the del_recall_lru and file hash table. In an |
| 88 | * effort to decrease the scope of the client_mutex, this spinlock may |
| 89 | * eventually cover more: |
| 90 | */ |
| 91 | static DEFINE_SPINLOCK(recall_lock); |
| 92 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 93 | static struct kmem_cache *stateowner_slab = NULL; |
| 94 | static struct kmem_cache *file_slab = NULL; |
| 95 | static struct kmem_cache *stateid_slab = NULL; |
| 96 | static struct kmem_cache *deleg_slab = NULL; |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 97 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | void |
| 99 | nfs4_lock_state(void) |
| 100 | { |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 101 | mutex_lock(&client_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | void |
| 105 | nfs4_unlock_state(void) |
| 106 | { |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 107 | mutex_unlock(&client_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | static inline u32 |
| 111 | opaque_hashval(const void *ptr, int nbytes) |
| 112 | { |
| 113 | unsigned char *cptr = (unsigned char *) ptr; |
| 114 | |
| 115 | u32 x = 0; |
| 116 | while (nbytes--) { |
| 117 | x *= 37; |
| 118 | x += *cptr++; |
| 119 | } |
| 120 | return x; |
| 121 | } |
| 122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | static struct list_head del_recall_lru; |
| 124 | |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 125 | static inline void |
| 126 | put_nfs4_file(struct nfs4_file *fi) |
| 127 | { |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 128 | if (atomic_dec_and_lock(&fi->fi_ref, &recall_lock)) { |
| 129 | list_del(&fi->fi_hash); |
| 130 | spin_unlock(&recall_lock); |
| 131 | iput(fi->fi_inode); |
| 132 | kmem_cache_free(file_slab, fi); |
| 133 | } |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | static inline void |
| 137 | get_nfs4_file(struct nfs4_file *fi) |
| 138 | { |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 139 | atomic_inc(&fi->fi_ref); |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 140 | } |
| 141 | |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 142 | static int num_delegations; |
Meelap Shah | c2f1a55 | 2007-07-17 04:04:39 -0700 | [diff] [blame] | 143 | unsigned int max_delegations; |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 144 | |
| 145 | /* |
| 146 | * Open owner state (share locks) |
| 147 | */ |
| 148 | |
| 149 | /* hash tables for nfs4_stateowner */ |
| 150 | #define OWNER_HASH_BITS 8 |
| 151 | #define OWNER_HASH_SIZE (1 << OWNER_HASH_BITS) |
| 152 | #define OWNER_HASH_MASK (OWNER_HASH_SIZE - 1) |
| 153 | |
| 154 | #define ownerid_hashval(id) \ |
| 155 | ((id) & OWNER_HASH_MASK) |
| 156 | #define ownerstr_hashval(clientid, ownername) \ |
| 157 | (((clientid) + opaque_hashval((ownername.data), (ownername.len))) & OWNER_HASH_MASK) |
| 158 | |
| 159 | static struct list_head ownerid_hashtbl[OWNER_HASH_SIZE]; |
| 160 | static struct list_head ownerstr_hashtbl[OWNER_HASH_SIZE]; |
| 161 | |
| 162 | /* hash table for nfs4_file */ |
| 163 | #define FILE_HASH_BITS 8 |
| 164 | #define FILE_HASH_SIZE (1 << FILE_HASH_BITS) |
| 165 | #define FILE_HASH_MASK (FILE_HASH_SIZE - 1) |
| 166 | /* hash table for (open)nfs4_stateid */ |
| 167 | #define STATEID_HASH_BITS 10 |
| 168 | #define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS) |
| 169 | #define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1) |
| 170 | |
| 171 | #define file_hashval(x) \ |
| 172 | hash_ptr(x, FILE_HASH_BITS) |
| 173 | #define stateid_hashval(owner_id, file_id) \ |
| 174 | (((owner_id) + (file_id)) & STATEID_HASH_MASK) |
| 175 | |
| 176 | static struct list_head file_hashtbl[FILE_HASH_SIZE]; |
| 177 | static struct list_head stateid_hashtbl[STATEID_HASH_SIZE]; |
| 178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | static struct nfs4_delegation * |
| 180 | alloc_init_deleg(struct nfs4_client *clp, struct nfs4_stateid *stp, struct svc_fh *current_fh, u32 type) |
| 181 | { |
| 182 | struct nfs4_delegation *dp; |
| 183 | struct nfs4_file *fp = stp->st_file; |
| 184 | struct nfs4_callback *cb = &stp->st_stateowner->so_client->cl_callback; |
| 185 | |
| 186 | dprintk("NFSD alloc_init_deleg\n"); |
Meelap Shah | 47f9940 | 2007-07-17 04:04:40 -0700 | [diff] [blame] | 187 | if (fp->fi_had_conflict) |
| 188 | return NULL; |
Meelap Shah | c2f1a55 | 2007-07-17 04:04:39 -0700 | [diff] [blame] | 189 | if (num_delegations > max_delegations) |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 190 | return NULL; |
NeilBrown | 5b2d21c | 2005-06-23 22:03:04 -0700 | [diff] [blame] | 191 | dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL); |
| 192 | if (dp == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | return dp; |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 194 | num_delegations++; |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 195 | INIT_LIST_HEAD(&dp->dl_perfile); |
| 196 | INIT_LIST_HEAD(&dp->dl_perclnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | INIT_LIST_HEAD(&dp->dl_recall_lru); |
| 198 | dp->dl_client = clp; |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 199 | get_nfs4_file(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | dp->dl_file = fp; |
| 201 | dp->dl_flock = NULL; |
| 202 | get_file(stp->st_vfs_file); |
| 203 | dp->dl_vfs_file = stp->st_vfs_file; |
| 204 | dp->dl_type = type; |
| 205 | dp->dl_recall.cbr_dp = NULL; |
| 206 | dp->dl_recall.cbr_ident = cb->cb_ident; |
| 207 | dp->dl_recall.cbr_trunc = 0; |
| 208 | dp->dl_stateid.si_boot = boot_time; |
| 209 | dp->dl_stateid.si_stateownerid = current_delegid++; |
| 210 | dp->dl_stateid.si_fileid = 0; |
| 211 | dp->dl_stateid.si_generation = 0; |
J. Bruce Fields | 6c02eaa | 2009-02-02 17:30:51 -0500 | [diff] [blame] | 212 | fh_copy_shallow(&dp->dl_fh, ¤t_fh->fh_handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | dp->dl_time = 0; |
| 214 | atomic_set(&dp->dl_count, 1); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 215 | list_add(&dp->dl_perfile, &fp->fi_delegations); |
| 216 | list_add(&dp->dl_perclnt, &clp->cl_delegations); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | return dp; |
| 218 | } |
| 219 | |
| 220 | void |
| 221 | nfs4_put_delegation(struct nfs4_delegation *dp) |
| 222 | { |
| 223 | if (atomic_dec_and_test(&dp->dl_count)) { |
| 224 | dprintk("NFSD: freeing dp %p\n",dp); |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 225 | put_nfs4_file(dp->dl_file); |
NeilBrown | 5b2d21c | 2005-06-23 22:03:04 -0700 | [diff] [blame] | 226 | kmem_cache_free(deleg_slab, dp); |
NeilBrown | ef0f339 | 2006-04-10 22:55:41 -0700 | [diff] [blame] | 227 | num_delegations--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } |
| 229 | } |
| 230 | |
| 231 | /* Remove the associated file_lock first, then remove the delegation. |
| 232 | * lease_modify() is called to remove the FS_LEASE file_lock from |
| 233 | * the i_flock list, eventually calling nfsd's lock_manager |
| 234 | * fl_release_callback. |
| 235 | */ |
| 236 | static void |
| 237 | nfs4_close_delegation(struct nfs4_delegation *dp) |
| 238 | { |
| 239 | struct file *filp = dp->dl_vfs_file; |
| 240 | |
| 241 | dprintk("NFSD: close_delegation dp %p\n",dp); |
| 242 | dp->dl_vfs_file = NULL; |
| 243 | /* The following nfsd_close may not actually close the file, |
| 244 | * but we want to remove the lease in any case. */ |
NeilBrown | c907132 | 2005-04-16 15:26:38 -0700 | [diff] [blame] | 245 | if (dp->dl_flock) |
J. Bruce Fields | a9933ce | 2007-06-07 17:09:49 -0400 | [diff] [blame] | 246 | vfs_setlease(filp, F_UNLCK, &dp->dl_flock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | nfsd_close(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | /* Called under the state lock. */ |
| 251 | static void |
| 252 | unhash_delegation(struct nfs4_delegation *dp) |
| 253 | { |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 254 | list_del_init(&dp->dl_perfile); |
| 255 | list_del_init(&dp->dl_perclnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | spin_lock(&recall_lock); |
| 257 | list_del_init(&dp->dl_recall_lru); |
| 258 | spin_unlock(&recall_lock); |
| 259 | nfs4_close_delegation(dp); |
| 260 | nfs4_put_delegation(dp); |
| 261 | } |
| 262 | |
| 263 | /* |
| 264 | * SETCLIENTID state |
| 265 | */ |
| 266 | |
| 267 | /* Hash tables for nfs4_clientid state */ |
| 268 | #define CLIENT_HASH_BITS 4 |
| 269 | #define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS) |
| 270 | #define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1) |
| 271 | |
| 272 | #define clientid_hashval(id) \ |
| 273 | ((id) & CLIENT_HASH_MASK) |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 274 | #define clientstr_hashval(name) \ |
| 275 | (opaque_hashval((name), 8) & CLIENT_HASH_MASK) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | /* |
| 277 | * reclaim_str_hashtbl[] holds known client info from previous reset/reboot |
| 278 | * used in reboot/reset lease grace period processing |
| 279 | * |
| 280 | * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed |
| 281 | * setclientid_confirmed info. |
| 282 | * |
| 283 | * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed |
| 284 | * setclientid info. |
| 285 | * |
| 286 | * client_lru holds client queue ordered by nfs4_client.cl_time |
| 287 | * for lease renewal. |
| 288 | * |
| 289 | * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time |
| 290 | * for last close replay. |
| 291 | */ |
| 292 | static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE]; |
| 293 | static int reclaim_str_hashtbl_size = 0; |
| 294 | static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE]; |
| 295 | static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE]; |
| 296 | static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE]; |
| 297 | static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE]; |
| 298 | static struct list_head client_lru; |
| 299 | static struct list_head close_lru; |
| 300 | |
J. Bruce Fields | 2283963 | 2009-01-11 14:27:17 -0500 | [diff] [blame] | 301 | static void unhash_generic_stateid(struct nfs4_stateid *stp) |
| 302 | { |
| 303 | list_del(&stp->st_hash); |
| 304 | list_del(&stp->st_perfile); |
| 305 | list_del(&stp->st_perstateowner); |
| 306 | } |
| 307 | |
| 308 | static void free_generic_stateid(struct nfs4_stateid *stp) |
| 309 | { |
| 310 | put_nfs4_file(stp->st_file); |
| 311 | kmem_cache_free(stateid_slab, stp); |
| 312 | } |
| 313 | |
| 314 | static void release_lock_stateid(struct nfs4_stateid *stp) |
| 315 | { |
| 316 | unhash_generic_stateid(stp); |
| 317 | locks_remove_posix(stp->st_vfs_file, (fl_owner_t)stp->st_stateowner); |
| 318 | free_generic_stateid(stp); |
| 319 | } |
| 320 | |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 321 | static void unhash_lockowner(struct nfs4_stateowner *sop) |
| 322 | { |
| 323 | struct nfs4_stateid *stp; |
| 324 | |
| 325 | list_del(&sop->so_idhash); |
| 326 | list_del(&sop->so_strhash); |
| 327 | list_del(&sop->so_perstateid); |
| 328 | while (!list_empty(&sop->so_stateids)) { |
| 329 | stp = list_first_entry(&sop->so_stateids, |
| 330 | struct nfs4_stateid, st_perstateowner); |
| 331 | release_lock_stateid(stp); |
| 332 | } |
| 333 | } |
| 334 | |
| 335 | static void release_lockowner(struct nfs4_stateowner *sop) |
| 336 | { |
| 337 | unhash_lockowner(sop); |
| 338 | nfs4_put_stateowner(sop); |
| 339 | } |
| 340 | |
J. Bruce Fields | f1d110c | 2009-01-11 14:37:31 -0500 | [diff] [blame] | 341 | static void |
| 342 | release_stateid_lockowners(struct nfs4_stateid *open_stp) |
| 343 | { |
| 344 | struct nfs4_stateowner *lock_sop; |
| 345 | |
| 346 | while (!list_empty(&open_stp->st_lockowners)) { |
| 347 | lock_sop = list_entry(open_stp->st_lockowners.next, |
| 348 | struct nfs4_stateowner, so_perstateid); |
| 349 | /* list_del(&open_stp->st_lockowners); */ |
| 350 | BUG_ON(lock_sop->so_is_open_owner); |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 351 | release_lockowner(lock_sop); |
J. Bruce Fields | f1d110c | 2009-01-11 14:37:31 -0500 | [diff] [blame] | 352 | } |
| 353 | } |
| 354 | |
J. Bruce Fields | 2283963 | 2009-01-11 14:27:17 -0500 | [diff] [blame] | 355 | static void release_open_stateid(struct nfs4_stateid *stp) |
| 356 | { |
| 357 | unhash_generic_stateid(stp); |
| 358 | release_stateid_lockowners(stp); |
| 359 | nfsd_close(stp->st_vfs_file); |
| 360 | free_generic_stateid(stp); |
| 361 | } |
| 362 | |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 363 | static void unhash_openowner(struct nfs4_stateowner *sop) |
J. Bruce Fields | f1d110c | 2009-01-11 14:37:31 -0500 | [diff] [blame] | 364 | { |
| 365 | struct nfs4_stateid *stp; |
| 366 | |
| 367 | list_del(&sop->so_idhash); |
| 368 | list_del(&sop->so_strhash); |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 369 | list_del(&sop->so_perclient); |
| 370 | list_del(&sop->so_perstateid); /* XXX: necessary? */ |
J. Bruce Fields | f1d110c | 2009-01-11 14:37:31 -0500 | [diff] [blame] | 371 | while (!list_empty(&sop->so_stateids)) { |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 372 | stp = list_first_entry(&sop->so_stateids, |
| 373 | struct nfs4_stateid, st_perstateowner); |
| 374 | release_open_stateid(stp); |
J. Bruce Fields | f1d110c | 2009-01-11 14:37:31 -0500 | [diff] [blame] | 375 | } |
| 376 | } |
| 377 | |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 378 | static void release_openowner(struct nfs4_stateowner *sop) |
J. Bruce Fields | f1d110c | 2009-01-11 14:37:31 -0500 | [diff] [blame] | 379 | { |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 380 | unhash_openowner(sop); |
J. Bruce Fields | f1d110c | 2009-01-11 14:37:31 -0500 | [diff] [blame] | 381 | list_del(&sop->so_close_lru); |
| 382 | nfs4_put_stateowner(sop); |
| 383 | } |
| 384 | |
Andy Adamson | 7116ed6 | 2009-04-03 08:27:43 +0300 | [diff] [blame] | 385 | static void |
| 386 | release_session(struct nfsd4_session *ses) |
| 387 | { |
| 388 | list_del(&ses->se_hash); |
| 389 | list_del(&ses->se_perclnt); |
| 390 | nfsd4_put_session(ses); |
| 391 | } |
| 392 | |
| 393 | void |
| 394 | free_session(struct kref *kref) |
| 395 | { |
| 396 | struct nfsd4_session *ses; |
| 397 | |
| 398 | ses = container_of(kref, struct nfsd4_session, se_ref); |
| 399 | kfree(ses->se_slots); |
| 400 | kfree(ses); |
| 401 | } |
| 402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | static inline void |
| 404 | renew_client(struct nfs4_client *clp) |
| 405 | { |
| 406 | /* |
| 407 | * Move client to the end to the LRU list. |
| 408 | */ |
| 409 | dprintk("renewing client (clientid %08x/%08x)\n", |
| 410 | clp->cl_clientid.cl_boot, |
| 411 | clp->cl_clientid.cl_id); |
| 412 | list_move_tail(&clp->cl_lru, &client_lru); |
| 413 | clp->cl_time = get_seconds(); |
| 414 | } |
| 415 | |
| 416 | /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */ |
| 417 | static int |
| 418 | STALE_CLIENTID(clientid_t *clid) |
| 419 | { |
| 420 | if (clid->cl_boot == boot_time) |
| 421 | return 0; |
| 422 | dprintk("NFSD stale clientid (%08x/%08x)\n", |
| 423 | clid->cl_boot, clid->cl_id); |
| 424 | return 1; |
| 425 | } |
| 426 | |
| 427 | /* |
| 428 | * XXX Should we use a slab cache ? |
| 429 | * This type of memory management is somewhat inefficient, but we use it |
| 430 | * anyway since SETCLIENTID is not a common operation. |
| 431 | */ |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 432 | static struct nfs4_client *alloc_client(struct xdr_netobj name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | { |
| 434 | struct nfs4_client *clp; |
| 435 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 436 | clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL); |
| 437 | if (clp == NULL) |
| 438 | return NULL; |
| 439 | clp->cl_name.data = kmalloc(name.len, GFP_KERNEL); |
| 440 | if (clp->cl_name.data == NULL) { |
| 441 | kfree(clp); |
| 442 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | } |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 444 | memcpy(clp->cl_name.data, name.data, name.len); |
| 445 | clp->cl_name.len = name.len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | return clp; |
| 447 | } |
| 448 | |
J. Bruce Fields | 1b1a9b3 | 2007-09-12 08:43:59 -0400 | [diff] [blame] | 449 | static void |
| 450 | shutdown_callback_client(struct nfs4_client *clp) |
| 451 | { |
| 452 | struct rpc_clnt *clnt = clp->cl_callback.cb_client; |
| 453 | |
J. Bruce Fields | 1b1a9b3 | 2007-09-12 08:43:59 -0400 | [diff] [blame] | 454 | if (clnt) { |
J. Bruce Fields | 404ec11 | 2007-11-23 22:26:18 -0500 | [diff] [blame] | 455 | /* |
| 456 | * Callback threads take a reference on the client, so there |
| 457 | * should be no outstanding callbacks at this point. |
| 458 | */ |
J. Bruce Fields | 1b1a9b3 | 2007-09-12 08:43:59 -0400 | [diff] [blame] | 459 | clp->cl_callback.cb_client = NULL; |
| 460 | rpc_shutdown_client(clnt); |
| 461 | } |
| 462 | } |
| 463 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | static inline void |
| 465 | free_client(struct nfs4_client *clp) |
| 466 | { |
J. Bruce Fields | 1b1a9b3 | 2007-09-12 08:43:59 -0400 | [diff] [blame] | 467 | shutdown_callback_client(clp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | if (clp->cl_cred.cr_group_info) |
| 469 | put_group_info(clp->cl_cred.cr_group_info); |
Olga Kornievskaia | 68e76ad | 2008-12-23 16:17:15 -0500 | [diff] [blame] | 470 | kfree(clp->cl_principal); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | kfree(clp->cl_name.data); |
| 472 | kfree(clp); |
| 473 | } |
| 474 | |
| 475 | void |
| 476 | put_nfs4_client(struct nfs4_client *clp) |
| 477 | { |
| 478 | if (atomic_dec_and_test(&clp->cl_count)) |
| 479 | free_client(clp); |
| 480 | } |
| 481 | |
| 482 | static void |
| 483 | expire_client(struct nfs4_client *clp) |
| 484 | { |
| 485 | struct nfs4_stateowner *sop; |
| 486 | struct nfs4_delegation *dp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | struct list_head reaplist; |
| 488 | |
| 489 | dprintk("NFSD: expire_client cl_count %d\n", |
| 490 | atomic_read(&clp->cl_count)); |
| 491 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | INIT_LIST_HEAD(&reaplist); |
| 493 | spin_lock(&recall_lock); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 494 | while (!list_empty(&clp->cl_delegations)) { |
| 495 | dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | dprintk("NFSD: expire client. dp %p, fp %p\n", dp, |
| 497 | dp->dl_flock); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 498 | list_del_init(&dp->dl_perclnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | list_move(&dp->dl_recall_lru, &reaplist); |
| 500 | } |
| 501 | spin_unlock(&recall_lock); |
| 502 | while (!list_empty(&reaplist)) { |
| 503 | dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru); |
| 504 | list_del_init(&dp->dl_recall_lru); |
| 505 | unhash_delegation(dp); |
| 506 | } |
| 507 | list_del(&clp->cl_idhash); |
| 508 | list_del(&clp->cl_strhash); |
| 509 | list_del(&clp->cl_lru); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 510 | while (!list_empty(&clp->cl_openowners)) { |
| 511 | 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] | 512 | release_openowner(sop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | } |
Marc Eshel | c4bf786 | 2009-04-03 08:27:49 +0300 | [diff] [blame^] | 514 | while (!list_empty(&clp->cl_sessions)) { |
| 515 | struct nfsd4_session *ses; |
| 516 | ses = list_entry(clp->cl_sessions.next, struct nfsd4_session, |
| 517 | se_perclnt); |
| 518 | release_session(ses); |
| 519 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | put_nfs4_client(clp); |
| 521 | } |
| 522 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 523 | static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir) |
| 524 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | struct nfs4_client *clp; |
| 526 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 527 | clp = alloc_client(name); |
| 528 | if (clp == NULL) |
| 529 | return NULL; |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 530 | memcpy(clp->cl_recdir, recdir, HEXDIR_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | atomic_set(&clp->cl_count, 1); |
| 532 | atomic_set(&clp->cl_callback.cb_set, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | INIT_LIST_HEAD(&clp->cl_idhash); |
| 534 | INIT_LIST_HEAD(&clp->cl_strhash); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 535 | INIT_LIST_HEAD(&clp->cl_openowners); |
| 536 | INIT_LIST_HEAD(&clp->cl_delegations); |
Marc Eshel | 9fb8707 | 2009-04-03 08:27:46 +0300 | [diff] [blame] | 537 | INIT_LIST_HEAD(&clp->cl_sessions); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | INIT_LIST_HEAD(&clp->cl_lru); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | return clp; |
| 540 | } |
| 541 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 542 | static void copy_verf(struct nfs4_client *target, nfs4_verifier *source) |
| 543 | { |
| 544 | memcpy(target->cl_verifier.data, source->data, |
| 545 | sizeof(target->cl_verifier.data)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | } |
| 547 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 548 | static void copy_clid(struct nfs4_client *target, struct nfs4_client *source) |
| 549 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | target->cl_clientid.cl_boot = source->cl_clientid.cl_boot; |
| 551 | target->cl_clientid.cl_id = source->cl_clientid.cl_id; |
| 552 | } |
| 553 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 554 | static void copy_cred(struct svc_cred *target, struct svc_cred *source) |
| 555 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | target->cr_uid = source->cr_uid; |
| 557 | target->cr_gid = source->cr_gid; |
| 558 | target->cr_group_info = source->cr_group_info; |
| 559 | get_group_info(target->cr_group_info); |
| 560 | } |
| 561 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 562 | static int same_name(const char *n1, const char *n2) |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 563 | { |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 564 | return 0 == memcmp(n1, n2, HEXDIR_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | } |
| 566 | |
| 567 | static int |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 568 | same_verf(nfs4_verifier *v1, nfs4_verifier *v2) |
| 569 | { |
| 570 | return 0 == memcmp(v1->data, v2->data, sizeof(v1->data)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | } |
| 572 | |
| 573 | static int |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 574 | same_clid(clientid_t *cl1, clientid_t *cl2) |
| 575 | { |
| 576 | 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] | 577 | } |
| 578 | |
| 579 | /* XXX what about NGROUP */ |
| 580 | static int |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 581 | same_creds(struct svc_cred *cr1, struct svc_cred *cr2) |
| 582 | { |
| 583 | return cr1->cr_uid == cr2->cr_uid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | } |
| 585 | |
J. Bruce Fields | 5ec7b46 | 2007-11-21 21:58:56 -0500 | [diff] [blame] | 586 | static void gen_clid(struct nfs4_client *clp) |
| 587 | { |
| 588 | static u32 current_clientid = 1; |
| 589 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | clp->cl_clientid.cl_boot = boot_time; |
| 591 | clp->cl_clientid.cl_id = current_clientid++; |
| 592 | } |
| 593 | |
J. Bruce Fields | deda2fa | 2007-11-19 20:31:04 -0500 | [diff] [blame] | 594 | static void gen_confirm(struct nfs4_client *clp) |
| 595 | { |
| 596 | static u32 i; |
| 597 | u32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | p = (u32 *)clp->cl_confirm.data; |
J. Bruce Fields | deda2fa | 2007-11-19 20:31:04 -0500 | [diff] [blame] | 600 | *p++ = get_seconds(); |
| 601 | *p++ = i++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | } |
| 603 | |
J. Bruce Fields | 35bba9a | 2007-11-21 22:07:08 -0500 | [diff] [blame] | 604 | static int check_name(struct xdr_netobj name) |
| 605 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | if (name.len == 0) |
| 607 | return 0; |
| 608 | if (name.len > NFS4_OPAQUE_LIMIT) { |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 609 | dprintk("NFSD: check_name: name too long(%d)!\n", name.len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | return 0; |
| 611 | } |
| 612 | return 1; |
| 613 | } |
| 614 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 615 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval) |
| 617 | { |
| 618 | unsigned int idhashval; |
| 619 | |
| 620 | list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]); |
| 621 | idhashval = clientid_hashval(clp->cl_clientid.cl_id); |
| 622 | list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]); |
| 623 | list_add_tail(&clp->cl_lru, &client_lru); |
| 624 | clp->cl_time = get_seconds(); |
| 625 | } |
| 626 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 627 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | move_to_confirmed(struct nfs4_client *clp) |
| 629 | { |
| 630 | unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id); |
| 631 | unsigned int strhashval; |
| 632 | |
| 633 | dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp); |
| 634 | list_del_init(&clp->cl_strhash); |
Akinobu Mita | f116629 | 2006-06-26 00:24:46 -0700 | [diff] [blame] | 635 | list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 636 | strhashval = clientstr_hashval(clp->cl_recdir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | list_add(&clp->cl_strhash, &conf_str_hashtbl[strhashval]); |
| 638 | renew_client(clp); |
| 639 | } |
| 640 | |
| 641 | static struct nfs4_client * |
| 642 | find_confirmed_client(clientid_t *clid) |
| 643 | { |
| 644 | struct nfs4_client *clp; |
| 645 | unsigned int idhashval = clientid_hashval(clid->cl_id); |
| 646 | |
| 647 | list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) { |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 648 | if (same_clid(&clp->cl_clientid, clid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | return clp; |
| 650 | } |
| 651 | return NULL; |
| 652 | } |
| 653 | |
| 654 | static struct nfs4_client * |
| 655 | find_unconfirmed_client(clientid_t *clid) |
| 656 | { |
| 657 | struct nfs4_client *clp; |
| 658 | unsigned int idhashval = clientid_hashval(clid->cl_id); |
| 659 | |
| 660 | list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) { |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 661 | if (same_clid(&clp->cl_clientid, clid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | return clp; |
| 663 | } |
| 664 | return NULL; |
| 665 | } |
| 666 | |
NeilBrown | 28ce605 | 2005-06-23 22:03:56 -0700 | [diff] [blame] | 667 | static struct nfs4_client * |
| 668 | find_confirmed_client_by_str(const char *dname, unsigned int hashval) |
| 669 | { |
| 670 | struct nfs4_client *clp; |
| 671 | |
| 672 | list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) { |
| 673 | if (same_name(clp->cl_recdir, dname)) |
| 674 | return clp; |
| 675 | } |
| 676 | return NULL; |
| 677 | } |
| 678 | |
| 679 | static struct nfs4_client * |
| 680 | find_unconfirmed_client_by_str(const char *dname, unsigned int hashval) |
| 681 | { |
| 682 | struct nfs4_client *clp; |
| 683 | |
| 684 | list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) { |
| 685 | if (same_name(clp->cl_recdir, dname)) |
| 686 | return clp; |
| 687 | } |
| 688 | return NULL; |
| 689 | } |
| 690 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | /* a helper function for parse_callback */ |
| 692 | static int |
| 693 | parse_octet(unsigned int *lenp, char **addrp) |
| 694 | { |
| 695 | unsigned int len = *lenp; |
| 696 | char *p = *addrp; |
| 697 | int n = -1; |
| 698 | char c; |
| 699 | |
| 700 | for (;;) { |
| 701 | if (!len) |
| 702 | break; |
| 703 | len--; |
| 704 | c = *p++; |
| 705 | if (c == '.') |
| 706 | break; |
| 707 | if ((c < '0') || (c > '9')) { |
| 708 | n = -1; |
| 709 | break; |
| 710 | } |
| 711 | if (n < 0) |
| 712 | n = 0; |
| 713 | n = (n * 10) + (c - '0'); |
| 714 | if (n > 255) { |
| 715 | n = -1; |
| 716 | break; |
| 717 | } |
| 718 | } |
| 719 | *lenp = len; |
| 720 | *addrp = p; |
| 721 | return n; |
| 722 | } |
| 723 | |
| 724 | /* parse and set the setclientid ipv4 callback address */ |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 725 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | parse_ipv4(unsigned int addr_len, char *addr_val, unsigned int *cbaddrp, unsigned short *cbportp) |
| 727 | { |
| 728 | int temp = 0; |
| 729 | u32 cbaddr = 0; |
| 730 | u16 cbport = 0; |
| 731 | u32 addrlen = addr_len; |
| 732 | char *addr = addr_val; |
| 733 | int i, shift; |
| 734 | |
| 735 | /* ipaddress */ |
| 736 | shift = 24; |
| 737 | for(i = 4; i > 0 ; i--) { |
| 738 | if ((temp = parse_octet(&addrlen, &addr)) < 0) { |
| 739 | return 0; |
| 740 | } |
| 741 | cbaddr |= (temp << shift); |
| 742 | if (shift > 0) |
| 743 | shift -= 8; |
| 744 | } |
| 745 | *cbaddrp = cbaddr; |
| 746 | |
| 747 | /* port */ |
| 748 | shift = 8; |
| 749 | for(i = 2; i > 0 ; i--) { |
| 750 | if ((temp = parse_octet(&addrlen, &addr)) < 0) { |
| 751 | return 0; |
| 752 | } |
| 753 | cbport |= (temp << shift); |
| 754 | if (shift > 0) |
| 755 | shift -= 8; |
| 756 | } |
| 757 | *cbportp = cbport; |
| 758 | return 1; |
| 759 | } |
| 760 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 761 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se) |
| 763 | { |
| 764 | struct nfs4_callback *cb = &clp->cl_callback; |
| 765 | |
| 766 | /* Currently, we only support tcp for the callback channel */ |
| 767 | if ((se->se_callback_netid_len != 3) || memcmp((char *)se->se_callback_netid_val, "tcp", 3)) |
| 768 | goto out_err; |
| 769 | |
| 770 | if ( !(parse_ipv4(se->se_callback_addr_len, se->se_callback_addr_val, |
| 771 | &cb->cb_addr, &cb->cb_port))) |
| 772 | goto out_err; |
| 773 | cb->cb_prog = se->se_callback_prog; |
| 774 | cb->cb_ident = se->se_callback_ident; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | return; |
| 776 | out_err: |
Neil Brown | 849823c | 2005-09-13 01:25:36 -0700 | [diff] [blame] | 777 | dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | "will not receive delegations\n", |
| 779 | clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id); |
| 780 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | return; |
| 782 | } |
| 783 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 784 | __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 785 | nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 786 | struct nfsd4_setclientid *setclid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | { |
Chuck Lever | 27459f0 | 2007-02-12 00:53:34 -0800 | [diff] [blame] | 788 | struct sockaddr_in *sin = svc_addr_in(rqstp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | struct xdr_netobj clname = { |
| 790 | .len = setclid->se_namelen, |
| 791 | .data = setclid->se_name, |
| 792 | }; |
| 793 | nfs4_verifier clverifier = setclid->se_verf; |
| 794 | unsigned int strhashval; |
NeilBrown | 28ce605 | 2005-06-23 22:03:56 -0700 | [diff] [blame] | 795 | struct nfs4_client *conf, *unconf, *new; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 796 | __be32 status; |
Olga Kornievskaia | 68e76ad | 2008-12-23 16:17:15 -0500 | [diff] [blame] | 797 | char *princ; |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 798 | char dname[HEXDIR_LEN]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | if (!check_name(clname)) |
Neil Brown | 73aea4e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 801 | return nfserr_inval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 803 | status = nfs4_make_rec_clidname(dname, &clname); |
| 804 | if (status) |
Neil Brown | 73aea4e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 805 | return status; |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 806 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | /* |
| 808 | * XXX The Duplicate Request Cache (DRC) has been checked (??) |
| 809 | * We get here on a DRC miss. |
| 810 | */ |
| 811 | |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 812 | strhashval = clientstr_hashval(dname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | nfs4_lock_state(); |
NeilBrown | 28ce605 | 2005-06-23 22:03:56 -0700 | [diff] [blame] | 815 | conf = find_confirmed_client_by_str(dname, strhashval); |
| 816 | if (conf) { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 817 | /* RFC 3530 14.2.33 CASE 0: */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | status = nfserr_clid_inuse; |
J. Bruce Fields | 026722c | 2009-03-18 15:06:26 -0400 | [diff] [blame] | 819 | if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) { |
| 820 | dprintk("NFSD: setclientid: string in use by client" |
| 821 | " at %pI4\n", &conf->cl_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | goto out; |
| 823 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | } |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 825 | /* |
| 826 | * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION") |
| 827 | * has a description of SETCLIENTID request processing consisting |
| 828 | * of 5 bullet points, labeled as CASE0 - CASE4 below. |
| 829 | */ |
NeilBrown | 28ce605 | 2005-06-23 22:03:56 -0700 | [diff] [blame] | 830 | unconf = find_unconfirmed_client_by_str(dname, strhashval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | status = nfserr_resource; |
| 832 | if (!conf) { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 833 | /* |
| 834 | * RFC 3530 14.2.33 CASE 4: |
| 835 | * placed first, because it is the normal case |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | */ |
| 837 | if (unconf) |
| 838 | expire_client(unconf); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 839 | new = create_client(clname, dname); |
| 840 | if (new == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | gen_clid(new); |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 843 | } else if (same_verf(&conf->cl_verifier, &clverifier)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | /* |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 845 | * RFC 3530 14.2.33 CASE 1: |
| 846 | * probable callback update |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | */ |
NeilBrown | 31f4a6c | 2005-06-23 22:04:06 -0700 | [diff] [blame] | 848 | if (unconf) { |
| 849 | /* Note this is removing unconfirmed {*x***}, |
| 850 | * which is stronger than RFC recommended {vxc**}. |
| 851 | * This has the advantage that there is at most |
| 852 | * one {*x***} in either list at any time. |
| 853 | */ |
| 854 | expire_client(unconf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | } |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 856 | new = create_client(clname, dname); |
| 857 | if (new == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | copy_clid(new, conf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | } else if (!unconf) { |
| 861 | /* |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 862 | * RFC 3530 14.2.33 CASE 2: |
| 863 | * probable client reboot; state will be removed if |
| 864 | * confirmed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | */ |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 866 | new = create_client(clname, dname); |
| 867 | if (new == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | gen_clid(new); |
J. Bruce Fields | 49ba878 | 2007-11-19 19:09:50 -0500 | [diff] [blame] | 870 | } else { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 871 | /* |
| 872 | * RFC 3530 14.2.33 CASE 3: |
| 873 | * probable client reboot; state will be removed if |
| 874 | * confirmed. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | */ |
| 876 | expire_client(unconf); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 877 | new = create_client(clname, dname); |
| 878 | if (new == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | gen_clid(new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | } |
J. Bruce Fields | c175b83 | 2007-08-09 18:34:32 -0400 | [diff] [blame] | 882 | copy_verf(new, &clverifier); |
| 883 | new->cl_addr = sin->sin_addr.s_addr; |
Olga Kornievskaia | 61054b1 | 2008-12-23 16:19:00 -0500 | [diff] [blame] | 884 | new->cl_flavor = rqstp->rq_flavor; |
Olga Kornievskaia | 68e76ad | 2008-12-23 16:17:15 -0500 | [diff] [blame] | 885 | princ = svc_gss_principal(rqstp); |
| 886 | if (princ) { |
| 887 | new->cl_principal = kstrdup(princ, GFP_KERNEL); |
| 888 | if (new->cl_principal == NULL) { |
| 889 | free_client(new); |
| 890 | goto out; |
| 891 | } |
| 892 | } |
J. Bruce Fields | c175b83 | 2007-08-09 18:34:32 -0400 | [diff] [blame] | 893 | copy_cred(&new->cl_cred, &rqstp->rq_cred); |
| 894 | gen_confirm(new); |
| 895 | gen_callback(new, setclid); |
| 896 | add_to_unconfirmed(new, strhashval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot; |
| 898 | setclid->se_clientid.cl_id = new->cl_clientid.cl_id; |
| 899 | memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data)); |
| 900 | status = nfs_ok; |
| 901 | out: |
| 902 | nfs4_unlock_state(); |
| 903 | return status; |
| 904 | } |
| 905 | |
| 906 | |
| 907 | /* |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 908 | * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has |
| 909 | * a description of SETCLIENTID_CONFIRM request processing consisting of 4 |
| 910 | * bullets, labeled as CASE1 - CASE4 below. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 912 | __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 913 | nfsd4_setclientid_confirm(struct svc_rqst *rqstp, |
| 914 | struct nfsd4_compound_state *cstate, |
| 915 | struct nfsd4_setclientid_confirm *setclientid_confirm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | { |
Chuck Lever | 27459f0 | 2007-02-12 00:53:34 -0800 | [diff] [blame] | 917 | struct sockaddr_in *sin = svc_addr_in(rqstp); |
NeilBrown | 21ab45a | 2005-06-23 22:04:14 -0700 | [diff] [blame] | 918 | struct nfs4_client *conf, *unconf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | nfs4_verifier confirm = setclientid_confirm->sc_confirm; |
| 920 | clientid_t * clid = &setclientid_confirm->sc_clientid; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 921 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | |
| 923 | if (STALE_CLIENTID(clid)) |
| 924 | return nfserr_stale_clientid; |
| 925 | /* |
| 926 | * XXX The Duplicate Request Cache (DRC) has been checked (??) |
| 927 | * We get here on a DRC miss. |
| 928 | */ |
| 929 | |
| 930 | nfs4_lock_state(); |
NeilBrown | 21ab45a | 2005-06-23 22:04:14 -0700 | [diff] [blame] | 931 | |
| 932 | conf = find_confirmed_client(clid); |
| 933 | unconf = find_unconfirmed_client(clid); |
| 934 | |
| 935 | status = nfserr_clid_inuse; |
Chuck Lever | 27459f0 | 2007-02-12 00:53:34 -0800 | [diff] [blame] | 936 | if (conf && conf->cl_addr != sin->sin_addr.s_addr) |
NeilBrown | 21ab45a | 2005-06-23 22:04:14 -0700 | [diff] [blame] | 937 | goto out; |
Chuck Lever | 27459f0 | 2007-02-12 00:53:34 -0800 | [diff] [blame] | 938 | if (unconf && unconf->cl_addr != sin->sin_addr.s_addr) |
NeilBrown | 21ab45a | 2005-06-23 22:04:14 -0700 | [diff] [blame] | 939 | goto out; |
| 940 | |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 941 | /* |
| 942 | * section 14.2.34 of RFC 3530 has a description of |
| 943 | * SETCLIENTID_CONFIRM request processing consisting |
| 944 | * of 4 bullet points, labeled as CASE1 - CASE4 below. |
| 945 | */ |
J. Bruce Fields | 366e0c1 | 2007-11-20 15:54:10 -0500 | [diff] [blame] | 946 | if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 947 | /* |
| 948 | * RFC 3530 14.2.34 CASE 1: |
| 949 | * callback update |
| 950 | */ |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 951 | if (!same_creds(&conf->cl_cred, &unconf->cl_cred)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | status = nfserr_clid_inuse; |
| 953 | else { |
NeilBrown | 1a69c17 | 2005-06-23 22:04:08 -0700 | [diff] [blame] | 954 | /* XXX: We just turn off callbacks until we can handle |
| 955 | * change request correctly. */ |
NeilBrown | cb36d63 | 2005-06-23 22:04:23 -0700 | [diff] [blame] | 956 | atomic_set(&conf->cl_callback.cb_set, 0); |
NeilBrown | 21ab45a | 2005-06-23 22:04:14 -0700 | [diff] [blame] | 957 | gen_confirm(conf); |
NeilBrown | 4630902 | 2005-07-07 17:59:10 -0700 | [diff] [blame] | 958 | nfsd4_remove_clid_dir(unconf); |
NeilBrown | 1a69c17 | 2005-06-23 22:04:08 -0700 | [diff] [blame] | 959 | expire_client(unconf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | status = nfs_ok; |
NeilBrown | 1a69c17 | 2005-06-23 22:04:08 -0700 | [diff] [blame] | 961 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | } |
J. Bruce Fields | f3aba4e | 2007-11-20 16:52:07 -0500 | [diff] [blame] | 963 | } else if (conf && !unconf) { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 964 | /* |
| 965 | * RFC 3530 14.2.34 CASE 2: |
| 966 | * probable retransmitted request; play it safe and |
| 967 | * do nothing. |
NeilBrown | 7c79f73 | 2005-06-23 22:04:13 -0700 | [diff] [blame] | 968 | */ |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 969 | if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | status = nfserr_clid_inuse; |
NeilBrown | 21ab45a | 2005-06-23 22:04:14 -0700 | [diff] [blame] | 971 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | status = nfs_ok; |
NeilBrown | 7c79f73 | 2005-06-23 22:04:13 -0700 | [diff] [blame] | 973 | } else if (!conf && unconf |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 974 | && same_verf(&unconf->cl_confirm, &confirm)) { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 975 | /* |
| 976 | * RFC 3530 14.2.34 CASE 3: |
| 977 | * Normal case; new or rebooted client: |
NeilBrown | 7c79f73 | 2005-06-23 22:04:13 -0700 | [diff] [blame] | 978 | */ |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 979 | if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | status = nfserr_clid_inuse; |
| 981 | } else { |
NeilBrown | 1a69c17 | 2005-06-23 22:04:08 -0700 | [diff] [blame] | 982 | unsigned int hash = |
| 983 | clientstr_hashval(unconf->cl_recdir); |
| 984 | conf = find_confirmed_client_by_str(unconf->cl_recdir, |
| 985 | hash); |
| 986 | if (conf) { |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 987 | nfsd4_remove_clid_dir(conf); |
NeilBrown | 1a69c17 | 2005-06-23 22:04:08 -0700 | [diff] [blame] | 988 | expire_client(conf); |
| 989 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | move_to_confirmed(unconf); |
NeilBrown | 21ab45a | 2005-06-23 22:04:14 -0700 | [diff] [blame] | 991 | conf = unconf; |
J. Bruce Fields | 46f8a64 | 2007-11-22 13:54:18 -0500 | [diff] [blame] | 992 | nfsd4_probe_callback(conf); |
NeilBrown | 1a69c17 | 2005-06-23 22:04:08 -0700 | [diff] [blame] | 993 | status = nfs_ok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | } |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 995 | } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm))) |
| 996 | && (!unconf || (unconf && !same_verf(&unconf->cl_confirm, |
NeilBrown | 7c79f73 | 2005-06-23 22:04:13 -0700 | [diff] [blame] | 997 | &confirm)))) { |
J. Bruce Fields | a186e76 | 2007-11-20 16:11:27 -0500 | [diff] [blame] | 998 | /* |
| 999 | * RFC 3530 14.2.34 CASE 4: |
| 1000 | * Client probably hasn't noticed that we rebooted yet. |
NeilBrown | 7c79f73 | 2005-06-23 22:04:13 -0700 | [diff] [blame] | 1001 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | status = nfserr_stale_clientid; |
NeilBrown | 7c79f73 | 2005-06-23 22:04:13 -0700 | [diff] [blame] | 1003 | } else { |
NeilBrown | 08e8987 | 2005-06-23 22:04:11 -0700 | [diff] [blame] | 1004 | /* check that we have hit one of the cases...*/ |
| 1005 | status = nfserr_clid_inuse; |
| 1006 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | nfs4_unlock_state(); |
| 1009 | return status; |
| 1010 | } |
| 1011 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | /* OPEN Share state helper functions */ |
| 1013 | static inline struct nfs4_file * |
| 1014 | alloc_init_file(struct inode *ino) |
| 1015 | { |
| 1016 | struct nfs4_file *fp; |
| 1017 | unsigned int hashval = file_hashval(ino); |
| 1018 | |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 1019 | fp = kmem_cache_alloc(file_slab, GFP_KERNEL); |
| 1020 | if (fp) { |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 1021 | atomic_set(&fp->fi_ref, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | INIT_LIST_HEAD(&fp->fi_hash); |
NeilBrown | 8beefa2 | 2005-06-23 22:03:08 -0700 | [diff] [blame] | 1023 | INIT_LIST_HEAD(&fp->fi_stateids); |
| 1024 | INIT_LIST_HEAD(&fp->fi_delegations); |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 1025 | spin_lock(&recall_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | list_add(&fp->fi_hash, &file_hashtbl[hashval]); |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 1027 | spin_unlock(&recall_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | fp->fi_inode = igrab(ino); |
| 1029 | fp->fi_id = current_fileid++; |
Meelap Shah | 47f9940 | 2007-07-17 04:04:40 -0700 | [diff] [blame] | 1030 | fp->fi_had_conflict = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | return fp; |
| 1032 | } |
| 1033 | return NULL; |
| 1034 | } |
| 1035 | |
| 1036 | static void |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 1037 | nfsd4_free_slab(struct kmem_cache **slab) |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 1038 | { |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 1039 | if (*slab == NULL) |
| 1040 | return; |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 1041 | kmem_cache_destroy(*slab); |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 1042 | *slab = NULL; |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 1043 | } |
| 1044 | |
J. Bruce Fields | e8ff2a8 | 2007-08-01 15:30:59 -0400 | [diff] [blame] | 1045 | void |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 1046 | nfsd4_free_slabs(void) |
| 1047 | { |
| 1048 | nfsd4_free_slab(&stateowner_slab); |
| 1049 | nfsd4_free_slab(&file_slab); |
NeilBrown | 5ac049a | 2005-06-23 22:03:03 -0700 | [diff] [blame] | 1050 | nfsd4_free_slab(&stateid_slab); |
NeilBrown | 5b2d21c | 2005-06-23 22:03:04 -0700 | [diff] [blame] | 1051 | nfsd4_free_slab(&deleg_slab); |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 1052 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | |
| 1054 | static int |
| 1055 | nfsd4_init_slabs(void) |
| 1056 | { |
| 1057 | stateowner_slab = kmem_cache_create("nfsd4_stateowners", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1058 | sizeof(struct nfs4_stateowner), 0, 0, NULL); |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 1059 | if (stateowner_slab == NULL) |
| 1060 | goto out_nomem; |
| 1061 | file_slab = kmem_cache_create("nfsd4_files", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1062 | sizeof(struct nfs4_file), 0, 0, NULL); |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 1063 | if (file_slab == NULL) |
| 1064 | goto out_nomem; |
NeilBrown | 5ac049a | 2005-06-23 22:03:03 -0700 | [diff] [blame] | 1065 | stateid_slab = kmem_cache_create("nfsd4_stateids", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1066 | sizeof(struct nfs4_stateid), 0, 0, NULL); |
NeilBrown | 5ac049a | 2005-06-23 22:03:03 -0700 | [diff] [blame] | 1067 | if (stateid_slab == NULL) |
| 1068 | goto out_nomem; |
NeilBrown | 5b2d21c | 2005-06-23 22:03:04 -0700 | [diff] [blame] | 1069 | deleg_slab = kmem_cache_create("nfsd4_delegations", |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1070 | sizeof(struct nfs4_delegation), 0, 0, NULL); |
NeilBrown | 5b2d21c | 2005-06-23 22:03:04 -0700 | [diff] [blame] | 1071 | if (deleg_slab == NULL) |
| 1072 | goto out_nomem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | return 0; |
NeilBrown | e60d439 | 2005-06-23 22:03:01 -0700 | [diff] [blame] | 1074 | out_nomem: |
| 1075 | nfsd4_free_slabs(); |
| 1076 | dprintk("nfsd4: out of memory while initializing nfsv4\n"); |
| 1077 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | } |
| 1079 | |
| 1080 | void |
| 1081 | nfs4_free_stateowner(struct kref *kref) |
| 1082 | { |
| 1083 | struct nfs4_stateowner *sop = |
| 1084 | container_of(kref, struct nfs4_stateowner, so_ref); |
| 1085 | kfree(sop->so_owner.data); |
| 1086 | kmem_cache_free(stateowner_slab, sop); |
| 1087 | } |
| 1088 | |
| 1089 | static inline struct nfs4_stateowner * |
| 1090 | alloc_stateowner(struct xdr_netobj *owner) |
| 1091 | { |
| 1092 | struct nfs4_stateowner *sop; |
| 1093 | |
| 1094 | if ((sop = kmem_cache_alloc(stateowner_slab, GFP_KERNEL))) { |
| 1095 | if ((sop->so_owner.data = kmalloc(owner->len, GFP_KERNEL))) { |
| 1096 | memcpy(sop->so_owner.data, owner->data, owner->len); |
| 1097 | sop->so_owner.len = owner->len; |
| 1098 | kref_init(&sop->so_ref); |
| 1099 | return sop; |
| 1100 | } |
| 1101 | kmem_cache_free(stateowner_slab, sop); |
| 1102 | } |
| 1103 | return NULL; |
| 1104 | } |
| 1105 | |
| 1106 | static struct nfs4_stateowner * |
| 1107 | alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) { |
| 1108 | struct nfs4_stateowner *sop; |
| 1109 | struct nfs4_replay *rp; |
| 1110 | unsigned int idhashval; |
| 1111 | |
| 1112 | if (!(sop = alloc_stateowner(&open->op_owner))) |
| 1113 | return NULL; |
| 1114 | idhashval = ownerid_hashval(current_ownerid); |
| 1115 | INIT_LIST_HEAD(&sop->so_idhash); |
| 1116 | INIT_LIST_HEAD(&sop->so_strhash); |
| 1117 | INIT_LIST_HEAD(&sop->so_perclient); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 1118 | INIT_LIST_HEAD(&sop->so_stateids); |
| 1119 | INIT_LIST_HEAD(&sop->so_perstateid); /* not used */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | INIT_LIST_HEAD(&sop->so_close_lru); |
| 1121 | sop->so_time = 0; |
| 1122 | list_add(&sop->so_idhash, &ownerid_hashtbl[idhashval]); |
| 1123 | list_add(&sop->so_strhash, &ownerstr_hashtbl[strhashval]); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 1124 | list_add(&sop->so_perclient, &clp->cl_openowners); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | sop->so_is_open_owner = 1; |
| 1126 | sop->so_id = current_ownerid++; |
| 1127 | sop->so_client = clp; |
| 1128 | sop->so_seqid = open->op_seqid; |
| 1129 | sop->so_confirmed = 0; |
| 1130 | rp = &sop->so_replay; |
Al Viro | de1ae28 | 2006-01-18 17:43:47 -0800 | [diff] [blame] | 1131 | rp->rp_status = nfserr_serverfault; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | rp->rp_buflen = 0; |
| 1133 | rp->rp_buf = rp->rp_ibuf; |
| 1134 | return sop; |
| 1135 | } |
| 1136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | static inline void |
| 1138 | init_stateid(struct nfs4_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) { |
| 1139 | struct nfs4_stateowner *sop = open->op_stateowner; |
| 1140 | unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id); |
| 1141 | |
| 1142 | INIT_LIST_HEAD(&stp->st_hash); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 1143 | INIT_LIST_HEAD(&stp->st_perstateowner); |
| 1144 | INIT_LIST_HEAD(&stp->st_lockowners); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | INIT_LIST_HEAD(&stp->st_perfile); |
| 1146 | list_add(&stp->st_hash, &stateid_hashtbl[hashval]); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 1147 | list_add(&stp->st_perstateowner, &sop->so_stateids); |
NeilBrown | 8beefa2 | 2005-06-23 22:03:08 -0700 | [diff] [blame] | 1148 | list_add(&stp->st_perfile, &fp->fi_stateids); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | stp->st_stateowner = sop; |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 1150 | get_nfs4_file(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | stp->st_file = fp; |
| 1152 | stp->st_stateid.si_boot = boot_time; |
| 1153 | stp->st_stateid.si_stateownerid = sop->so_id; |
| 1154 | stp->st_stateid.si_fileid = fp->fi_id; |
| 1155 | stp->st_stateid.si_generation = 0; |
| 1156 | stp->st_access_bmap = 0; |
| 1157 | stp->st_deny_bmap = 0; |
| 1158 | __set_bit(open->op_share_access, &stp->st_access_bmap); |
| 1159 | __set_bit(open->op_share_deny, &stp->st_deny_bmap); |
NeilBrown | 4c4cd22 | 2005-07-07 17:59:27 -0700 | [diff] [blame] | 1160 | stp->st_openstp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | } |
| 1162 | |
| 1163 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | move_to_close_lru(struct nfs4_stateowner *sop) |
| 1165 | { |
| 1166 | dprintk("NFSD: move_to_close_lru nfs4_stateowner %p\n", sop); |
| 1167 | |
NeilBrown | 358dd55 | 2006-04-10 22:55:42 -0700 | [diff] [blame] | 1168 | list_move_tail(&sop->so_close_lru, &close_lru); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | sop->so_time = get_seconds(); |
| 1170 | } |
| 1171 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | static int |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 1173 | same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner, |
| 1174 | clientid_t *clid) |
| 1175 | { |
| 1176 | return (sop->so_owner.len == owner->len) && |
| 1177 | 0 == memcmp(sop->so_owner.data, owner->data, owner->len) && |
| 1178 | (sop->so_client->cl_clientid.cl_id == clid->cl_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | } |
| 1180 | |
| 1181 | static struct nfs4_stateowner * |
| 1182 | find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open) |
| 1183 | { |
| 1184 | struct nfs4_stateowner *so = NULL; |
| 1185 | |
| 1186 | list_for_each_entry(so, &ownerstr_hashtbl[hashval], so_strhash) { |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 1187 | if (same_owner_str(so, &open->op_owner, &open->op_clientid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | return so; |
| 1189 | } |
| 1190 | return NULL; |
| 1191 | } |
| 1192 | |
| 1193 | /* search file_hashtbl[] for file */ |
| 1194 | static struct nfs4_file * |
| 1195 | find_file(struct inode *ino) |
| 1196 | { |
| 1197 | unsigned int hashval = file_hashval(ino); |
| 1198 | struct nfs4_file *fp; |
| 1199 | |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 1200 | spin_lock(&recall_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) { |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 1202 | if (fp->fi_inode == ino) { |
| 1203 | get_nfs4_file(fp); |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 1204 | spin_unlock(&recall_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | return fp; |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 1206 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | } |
J. Bruce Fields | 8b671b8 | 2009-02-22 14:51:34 -0800 | [diff] [blame] | 1208 | spin_unlock(&recall_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | return NULL; |
| 1210 | } |
| 1211 | |
J. Bruce Fields | 8838dc4 | 2008-01-14 13:12:19 -0500 | [diff] [blame] | 1212 | static inline int access_valid(u32 x) |
J. Bruce Fields | ba5a6a1 | 2006-06-30 01:56:16 -0700 | [diff] [blame] | 1213 | { |
J. Bruce Fields | 8838dc4 | 2008-01-14 13:12:19 -0500 | [diff] [blame] | 1214 | if (x < NFS4_SHARE_ACCESS_READ) |
| 1215 | return 0; |
| 1216 | if (x > NFS4_SHARE_ACCESS_BOTH) |
| 1217 | return 0; |
| 1218 | return 1; |
J. Bruce Fields | ba5a6a1 | 2006-06-30 01:56:16 -0700 | [diff] [blame] | 1219 | } |
| 1220 | |
J. Bruce Fields | 8838dc4 | 2008-01-14 13:12:19 -0500 | [diff] [blame] | 1221 | static inline int deny_valid(u32 x) |
J. Bruce Fields | ba5a6a1 | 2006-06-30 01:56:16 -0700 | [diff] [blame] | 1222 | { |
J. Bruce Fields | 8838dc4 | 2008-01-14 13:12:19 -0500 | [diff] [blame] | 1223 | /* Note: unlike access bits, deny bits may be zero. */ |
| 1224 | return x <= NFS4_SHARE_DENY_BOTH; |
J. Bruce Fields | ba5a6a1 | 2006-06-30 01:56:16 -0700 | [diff] [blame] | 1225 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | |
J. Bruce Fields | 4f83aa3 | 2008-07-07 15:02:02 -0400 | [diff] [blame] | 1227 | /* |
| 1228 | * We store the NONE, READ, WRITE, and BOTH bits separately in the |
| 1229 | * st_{access,deny}_bmap field of the stateid, in order to track not |
| 1230 | * only what share bits are currently in force, but also what |
| 1231 | * combinations of share bits previous opens have used. This allows us |
| 1232 | * to enforce the recommendation of rfc 3530 14.2.19 that the server |
| 1233 | * return an error if the client attempt to downgrade to a combination |
| 1234 | * of share bits not explicable by closing some of its previous opens. |
| 1235 | * |
| 1236 | * XXX: This enforcement is actually incomplete, since we don't keep |
| 1237 | * track of access/deny bit combinations; so, e.g., we allow: |
| 1238 | * |
| 1239 | * OPEN allow read, deny write |
| 1240 | * OPEN allow both, deny none |
| 1241 | * DOWNGRADE allow read, deny none |
| 1242 | * |
| 1243 | * which we should reject. |
| 1244 | */ |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 1245 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | set_access(unsigned int *access, unsigned long bmap) { |
| 1247 | int i; |
| 1248 | |
| 1249 | *access = 0; |
| 1250 | for (i = 1; i < 4; i++) { |
| 1251 | if (test_bit(i, &bmap)) |
| 1252 | *access |= i; |
| 1253 | } |
| 1254 | } |
| 1255 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 1256 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | set_deny(unsigned int *deny, unsigned long bmap) { |
| 1258 | int i; |
| 1259 | |
| 1260 | *deny = 0; |
| 1261 | for (i = 0; i < 4; i++) { |
| 1262 | if (test_bit(i, &bmap)) |
| 1263 | *deny |= i ; |
| 1264 | } |
| 1265 | } |
| 1266 | |
| 1267 | static int |
| 1268 | test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) { |
| 1269 | unsigned int access, deny; |
| 1270 | |
| 1271 | set_access(&access, stp->st_access_bmap); |
| 1272 | set_deny(&deny, stp->st_deny_bmap); |
| 1273 | if ((access & open->op_share_deny) || (deny & open->op_share_access)) |
| 1274 | return 0; |
| 1275 | return 1; |
| 1276 | } |
| 1277 | |
| 1278 | /* |
| 1279 | * Called to check deny when READ with all zero stateid or |
| 1280 | * WRITE with all zero or all one stateid |
| 1281 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1282 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type) |
| 1284 | { |
| 1285 | struct inode *ino = current_fh->fh_dentry->d_inode; |
| 1286 | struct nfs4_file *fp; |
| 1287 | struct nfs4_stateid *stp; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1288 | __be32 ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | |
| 1290 | dprintk("NFSD: nfs4_share_conflict\n"); |
| 1291 | |
| 1292 | fp = find_file(ino); |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 1293 | if (!fp) |
| 1294 | return nfs_ok; |
NeilBrown | b700949 | 2005-07-07 17:59:23 -0700 | [diff] [blame] | 1295 | ret = nfserr_locked; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | /* Search for conflicting share reservations */ |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 1297 | list_for_each_entry(stp, &fp->fi_stateids, st_perfile) { |
| 1298 | if (test_bit(deny_type, &stp->st_deny_bmap) || |
| 1299 | test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap)) |
| 1300 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | } |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 1302 | ret = nfs_ok; |
| 1303 | out: |
| 1304 | put_nfs4_file(fp); |
| 1305 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | } |
| 1307 | |
| 1308 | static inline void |
| 1309 | nfs4_file_downgrade(struct file *filp, unsigned int share_access) |
| 1310 | { |
| 1311 | if (share_access & NFS4_SHARE_ACCESS_WRITE) { |
Dave Hansen | aceaf78 | 2008-02-15 14:37:31 -0800 | [diff] [blame] | 1312 | drop_file_write_access(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | filp->f_mode = (filp->f_mode | FMODE_READ) & ~FMODE_WRITE; |
| 1314 | } |
| 1315 | } |
| 1316 | |
| 1317 | /* |
| 1318 | * Recall a delegation |
| 1319 | */ |
| 1320 | static int |
| 1321 | do_recall(void *__dp) |
| 1322 | { |
| 1323 | struct nfs4_delegation *dp = __dp; |
| 1324 | |
Meelap Shah | 47f9940 | 2007-07-17 04:04:40 -0700 | [diff] [blame] | 1325 | dp->dl_file->fi_had_conflict = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | nfsd4_cb_recall(dp); |
| 1327 | return 0; |
| 1328 | } |
| 1329 | |
| 1330 | /* |
| 1331 | * Spawn a thread to perform a recall on the delegation represented |
| 1332 | * by the lease (file_lock) |
| 1333 | * |
| 1334 | * Called from break_lease() with lock_kernel() held. |
| 1335 | * Note: we assume break_lease will only call this *once* for any given |
| 1336 | * lease. |
| 1337 | */ |
| 1338 | static |
| 1339 | void nfsd_break_deleg_cb(struct file_lock *fl) |
| 1340 | { |
| 1341 | struct nfs4_delegation *dp= (struct nfs4_delegation *)fl->fl_owner; |
| 1342 | struct task_struct *t; |
| 1343 | |
| 1344 | dprintk("NFSD nfsd_break_deleg_cb: dp %p fl %p\n",dp,fl); |
| 1345 | if (!dp) |
| 1346 | return; |
| 1347 | |
| 1348 | /* We're assuming the state code never drops its reference |
| 1349 | * without first removing the lease. Since we're in this lease |
| 1350 | * callback (and since the lease code is serialized by the kernel |
| 1351 | * lock) we know the server hasn't removed the lease yet, we know |
| 1352 | * it's safe to take a reference: */ |
| 1353 | atomic_inc(&dp->dl_count); |
J. Bruce Fields | cfdcad4 | 2007-09-12 20:35:15 -0400 | [diff] [blame] | 1354 | atomic_inc(&dp->dl_client->cl_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | |
| 1356 | spin_lock(&recall_lock); |
| 1357 | list_add_tail(&dp->dl_recall_lru, &del_recall_lru); |
| 1358 | spin_unlock(&recall_lock); |
| 1359 | |
| 1360 | /* only place dl_time is set. protected by lock_kernel*/ |
| 1361 | dp->dl_time = get_seconds(); |
| 1362 | |
J. Bruce Fields | 0272e1f | 2007-09-12 18:56:12 -0400 | [diff] [blame] | 1363 | /* |
| 1364 | * We don't want the locks code to timeout the lease for us; |
| 1365 | * we'll remove it ourself if the delegation isn't returned |
| 1366 | * in time. |
| 1367 | */ |
| 1368 | fl->fl_break_time = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | |
| 1370 | t = kthread_run(do_recall, dp, "%s", "nfs4_cb_recall"); |
| 1371 | if (IS_ERR(t)) { |
| 1372 | struct nfs4_client *clp = dp->dl_client; |
| 1373 | |
| 1374 | printk(KERN_INFO "NFSD: Callback thread failed for " |
| 1375 | "for client (clientid %08x/%08x)\n", |
| 1376 | clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id); |
J. Bruce Fields | cfdcad4 | 2007-09-12 20:35:15 -0400 | [diff] [blame] | 1377 | put_nfs4_client(dp->dl_client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | nfs4_put_delegation(dp); |
| 1379 | } |
| 1380 | } |
| 1381 | |
| 1382 | /* |
| 1383 | * The file_lock is being reapd. |
| 1384 | * |
| 1385 | * Called by locks_free_lock() with lock_kernel() held. |
| 1386 | */ |
| 1387 | static |
| 1388 | void nfsd_release_deleg_cb(struct file_lock *fl) |
| 1389 | { |
| 1390 | struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner; |
| 1391 | |
| 1392 | dprintk("NFSD nfsd_release_deleg_cb: fl %p dp %p dl_count %d\n", fl,dp, atomic_read(&dp->dl_count)); |
| 1393 | |
| 1394 | if (!(fl->fl_flags & FL_LEASE) || !dp) |
| 1395 | return; |
| 1396 | dp->dl_flock = NULL; |
| 1397 | } |
| 1398 | |
| 1399 | /* |
| 1400 | * Set the delegation file_lock back pointer. |
| 1401 | * |
J. Bruce Fields | a9933ce | 2007-06-07 17:09:49 -0400 | [diff] [blame] | 1402 | * Called from setlease() with lock_kernel() held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | */ |
| 1404 | static |
| 1405 | void nfsd_copy_lock_deleg_cb(struct file_lock *new, struct file_lock *fl) |
| 1406 | { |
| 1407 | struct nfs4_delegation *dp = (struct nfs4_delegation *)new->fl_owner; |
| 1408 | |
| 1409 | dprintk("NFSD: nfsd_copy_lock_deleg_cb: new fl %p dp %p\n", new, dp); |
| 1410 | if (!dp) |
| 1411 | return; |
| 1412 | dp->dl_flock = new; |
| 1413 | } |
| 1414 | |
| 1415 | /* |
J. Bruce Fields | a9933ce | 2007-06-07 17:09:49 -0400 | [diff] [blame] | 1416 | * Called from setlease() with lock_kernel() held |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | */ |
| 1418 | static |
| 1419 | int nfsd_same_client_deleg_cb(struct file_lock *onlist, struct file_lock *try) |
| 1420 | { |
| 1421 | struct nfs4_delegation *onlistd = |
| 1422 | (struct nfs4_delegation *)onlist->fl_owner; |
| 1423 | struct nfs4_delegation *tryd = |
| 1424 | (struct nfs4_delegation *)try->fl_owner; |
| 1425 | |
| 1426 | if (onlist->fl_lmops != try->fl_lmops) |
| 1427 | return 0; |
| 1428 | |
| 1429 | return onlistd->dl_client == tryd->dl_client; |
| 1430 | } |
| 1431 | |
| 1432 | |
| 1433 | static |
| 1434 | int nfsd_change_deleg_cb(struct file_lock **onlist, int arg) |
| 1435 | { |
| 1436 | if (arg & F_UNLCK) |
| 1437 | return lease_modify(onlist, arg); |
| 1438 | else |
| 1439 | return -EAGAIN; |
| 1440 | } |
| 1441 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 1442 | static struct lock_manager_operations nfsd_lease_mng_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | .fl_break = nfsd_break_deleg_cb, |
| 1444 | .fl_release_private = nfsd_release_deleg_cb, |
| 1445 | .fl_copy_lock = nfsd_copy_lock_deleg_cb, |
| 1446 | .fl_mylease = nfsd_same_client_deleg_cb, |
| 1447 | .fl_change = nfsd_change_deleg_cb, |
| 1448 | }; |
| 1449 | |
| 1450 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1451 | __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | nfsd4_process_open1(struct nfsd4_open *open) |
| 1453 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1454 | clientid_t *clientid = &open->op_clientid; |
| 1455 | struct nfs4_client *clp = NULL; |
| 1456 | unsigned int strhashval; |
| 1457 | struct nfs4_stateowner *sop = NULL; |
| 1458 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | if (!check_name(open->op_owner)) |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 1460 | return nfserr_inval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | |
| 1462 | if (STALE_CLIENTID(&open->op_clientid)) |
| 1463 | return nfserr_stale_clientid; |
| 1464 | |
| 1465 | strhashval = ownerstr_hashval(clientid->cl_id, open->op_owner); |
| 1466 | sop = find_openstateowner_str(strhashval, open); |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 1467 | open->op_stateowner = sop; |
| 1468 | if (!sop) { |
| 1469 | /* Make sure the client's lease hasn't expired. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | clp = find_confirmed_client(clientid); |
| 1471 | if (clp == NULL) |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 1472 | return nfserr_expired; |
| 1473 | goto renew; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1474 | } |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 1475 | if (!sop->so_confirmed) { |
| 1476 | /* Replace unconfirmed owners without checking for replay. */ |
| 1477 | clp = sop->so_client; |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 1478 | release_openowner(sop); |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 1479 | open->op_stateowner = NULL; |
| 1480 | goto renew; |
| 1481 | } |
| 1482 | if (open->op_seqid == sop->so_seqid - 1) { |
| 1483 | if (sop->so_replay.rp_buflen) |
Al Viro | a90b061 | 2006-10-19 23:29:03 -0700 | [diff] [blame] | 1484 | return nfserr_replay_me; |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 1485 | /* The original OPEN failed so spectacularly |
| 1486 | * that we don't even have replay data saved! |
| 1487 | * Therefore, we have no choice but to continue |
| 1488 | * processing this OPEN; presumably, we'll |
| 1489 | * fail again for the same reason. |
| 1490 | */ |
| 1491 | dprintk("nfsd4_process_open1: replay with no replay cache\n"); |
| 1492 | goto renew; |
| 1493 | } |
| 1494 | if (open->op_seqid != sop->so_seqid) |
| 1495 | return nfserr_bad_seqid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | renew: |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 1497 | if (open->op_stateowner == NULL) { |
| 1498 | sop = alloc_init_open_stateowner(strhashval, clp, open); |
| 1499 | if (sop == NULL) |
| 1500 | return nfserr_resource; |
| 1501 | open->op_stateowner = sop; |
| 1502 | } |
| 1503 | list_del_init(&sop->so_close_lru); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | renew_client(sop->so_client); |
J. Bruce Fields | 0f442aa | 2006-01-18 17:43:34 -0800 | [diff] [blame] | 1505 | return nfs_ok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | } |
| 1507 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1508 | static inline __be32 |
NeilBrown | 4a6e43e | 2005-06-23 22:02:50 -0700 | [diff] [blame] | 1509 | nfs4_check_delegmode(struct nfs4_delegation *dp, int flags) |
| 1510 | { |
| 1511 | if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ)) |
| 1512 | return nfserr_openmode; |
| 1513 | else |
| 1514 | return nfs_ok; |
| 1515 | } |
| 1516 | |
NeilBrown | 52f4fb4 | 2005-06-23 22:02:49 -0700 | [diff] [blame] | 1517 | static struct nfs4_delegation * |
| 1518 | find_delegation_file(struct nfs4_file *fp, stateid_t *stid) |
| 1519 | { |
| 1520 | struct nfs4_delegation *dp; |
| 1521 | |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 1522 | list_for_each_entry(dp, &fp->fi_delegations, dl_perfile) { |
NeilBrown | 52f4fb4 | 2005-06-23 22:02:49 -0700 | [diff] [blame] | 1523 | if (dp->dl_stateid.si_stateownerid == stid->si_stateownerid) |
| 1524 | return dp; |
| 1525 | } |
| 1526 | return NULL; |
| 1527 | } |
| 1528 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1529 | static __be32 |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 1530 | nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open, |
| 1531 | struct nfs4_delegation **dp) |
| 1532 | { |
| 1533 | int flags; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1534 | __be32 status = nfserr_bad_stateid; |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 1535 | |
| 1536 | *dp = find_delegation_file(fp, &open->op_delegate_stateid); |
| 1537 | if (*dp == NULL) |
NeilBrown | c44c5ee | 2005-06-23 22:02:54 -0700 | [diff] [blame] | 1538 | goto out; |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 1539 | flags = open->op_share_access == NFS4_SHARE_ACCESS_READ ? |
| 1540 | RD_STATE : WR_STATE; |
| 1541 | status = nfs4_check_delegmode(*dp, flags); |
| 1542 | if (status) |
| 1543 | *dp = NULL; |
NeilBrown | c44c5ee | 2005-06-23 22:02:54 -0700 | [diff] [blame] | 1544 | out: |
| 1545 | if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR) |
| 1546 | return nfs_ok; |
| 1547 | if (status) |
| 1548 | return status; |
| 1549 | open->op_stateowner->so_confirmed = 1; |
| 1550 | return nfs_ok; |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 1551 | } |
| 1552 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1553 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1554 | nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_stateid **stpp) |
| 1555 | { |
| 1556 | struct nfs4_stateid *local; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1557 | __be32 status = nfserr_share_denied; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1558 | struct nfs4_stateowner *sop = open->op_stateowner; |
| 1559 | |
NeilBrown | 8beefa2 | 2005-06-23 22:03:08 -0700 | [diff] [blame] | 1560 | list_for_each_entry(local, &fp->fi_stateids, st_perfile) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1561 | /* ignore lock owners */ |
| 1562 | if (local->st_stateowner->so_is_open_owner == 0) |
| 1563 | continue; |
| 1564 | /* remember if we have seen this open owner */ |
| 1565 | if (local->st_stateowner == sop) |
| 1566 | *stpp = local; |
| 1567 | /* check for conflicting share reservations */ |
| 1568 | if (!test_share(local, open)) |
| 1569 | goto out; |
| 1570 | } |
| 1571 | status = 0; |
| 1572 | out: |
| 1573 | return status; |
| 1574 | } |
| 1575 | |
NeilBrown | 5ac049a | 2005-06-23 22:03:03 -0700 | [diff] [blame] | 1576 | static inline struct nfs4_stateid * |
| 1577 | nfs4_alloc_stateid(void) |
| 1578 | { |
| 1579 | return kmem_cache_alloc(stateid_slab, GFP_KERNEL); |
| 1580 | } |
| 1581 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1582 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_stateid **stpp, |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 1584 | struct nfs4_delegation *dp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | struct svc_fh *cur_fh, int flags) |
| 1586 | { |
| 1587 | struct nfs4_stateid *stp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1588 | |
NeilBrown | 5ac049a | 2005-06-23 22:03:03 -0700 | [diff] [blame] | 1589 | stp = nfs4_alloc_stateid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | if (stp == NULL) |
| 1591 | return nfserr_resource; |
| 1592 | |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 1593 | if (dp) { |
| 1594 | get_file(dp->dl_vfs_file); |
| 1595 | stp->st_vfs_file = dp->dl_vfs_file; |
| 1596 | } else { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1597 | __be32 status; |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 1598 | status = nfsd_open(rqstp, cur_fh, S_IFREG, flags, |
| 1599 | &stp->st_vfs_file); |
| 1600 | if (status) { |
| 1601 | if (status == nfserr_dropit) |
| 1602 | status = nfserr_jukebox; |
NeilBrown | 5ac049a | 2005-06-23 22:03:03 -0700 | [diff] [blame] | 1603 | kmem_cache_free(stateid_slab, stp); |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 1604 | return status; |
| 1605 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1606 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | *stpp = stp; |
| 1608 | return 0; |
| 1609 | } |
| 1610 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1611 | static inline __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh, |
| 1613 | struct nfsd4_open *open) |
| 1614 | { |
| 1615 | struct iattr iattr = { |
| 1616 | .ia_valid = ATTR_SIZE, |
| 1617 | .ia_size = 0, |
| 1618 | }; |
| 1619 | if (!open->op_truncate) |
| 1620 | return 0; |
| 1621 | if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE)) |
Al Viro | 9246585 | 2006-01-18 17:43:46 -0800 | [diff] [blame] | 1622 | return nfserr_inval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0); |
| 1624 | } |
| 1625 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1626 | static __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | nfs4_upgrade_open(struct svc_rqst *rqstp, struct svc_fh *cur_fh, struct nfs4_stateid *stp, struct nfsd4_open *open) |
| 1628 | { |
| 1629 | struct file *filp = stp->st_vfs_file; |
Josef "Jeff" Sipek | 7eaa36e | 2006-12-08 02:36:41 -0800 | [diff] [blame] | 1630 | struct inode *inode = filp->f_path.dentry->d_inode; |
J. Bruce Fields | 6c26d08 | 2006-01-18 17:43:38 -0800 | [diff] [blame] | 1631 | unsigned int share_access, new_writer; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1632 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | |
| 1634 | set_access(&share_access, stp->st_access_bmap); |
J. Bruce Fields | 6c26d08 | 2006-01-18 17:43:38 -0800 | [diff] [blame] | 1635 | new_writer = (~share_access) & open->op_share_access |
| 1636 | & NFS4_SHARE_ACCESS_WRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1637 | |
J. Bruce Fields | 6c26d08 | 2006-01-18 17:43:38 -0800 | [diff] [blame] | 1638 | if (new_writer) { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1639 | int err = get_write_access(inode); |
| 1640 | if (err) |
| 1641 | return nfserrno(err); |
Benny Halevy | e518f05 | 2008-07-04 15:38:41 +0300 | [diff] [blame] | 1642 | err = mnt_want_write(cur_fh->fh_export->ex_path.mnt); |
| 1643 | if (err) |
| 1644 | return nfserrno(err); |
| 1645 | file_take_write(filp); |
J. Bruce Fields | 6c26d08 | 2006-01-18 17:43:38 -0800 | [diff] [blame] | 1646 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | status = nfsd4_truncate(rqstp, cur_fh, open); |
| 1648 | if (status) { |
J. Bruce Fields | 6c26d08 | 2006-01-18 17:43:38 -0800 | [diff] [blame] | 1649 | if (new_writer) |
| 1650 | put_write_access(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | return status; |
| 1652 | } |
| 1653 | /* remember the open */ |
J. Bruce Fields | 6c26d08 | 2006-01-18 17:43:38 -0800 | [diff] [blame] | 1654 | filp->f_mode |= open->op_share_access; |
J. Bruce Fields | b55e0ba | 2008-04-28 18:22:50 -0400 | [diff] [blame] | 1655 | __set_bit(open->op_share_access, &stp->st_access_bmap); |
| 1656 | __set_bit(open->op_share_deny, &stp->st_deny_bmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1657 | |
| 1658 | return nfs_ok; |
| 1659 | } |
| 1660 | |
| 1661 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | static void |
NeilBrown | 3751517 | 2005-07-07 17:59:16 -0700 | [diff] [blame] | 1663 | nfs4_set_claim_prev(struct nfsd4_open *open) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | { |
NeilBrown | 3751517 | 2005-07-07 17:59:16 -0700 | [diff] [blame] | 1665 | open->op_stateowner->so_confirmed = 1; |
| 1666 | open->op_stateowner->so_client->cl_firststate = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | } |
| 1668 | |
| 1669 | /* |
| 1670 | * Attempt to hand out a delegation. |
| 1671 | */ |
| 1672 | static void |
| 1673 | nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_stateid *stp) |
| 1674 | { |
| 1675 | struct nfs4_delegation *dp; |
| 1676 | struct nfs4_stateowner *sop = stp->st_stateowner; |
| 1677 | struct nfs4_callback *cb = &sop->so_client->cl_callback; |
| 1678 | struct file_lock fl, *flp = &fl; |
| 1679 | int status, flag = 0; |
| 1680 | |
| 1681 | flag = NFS4_OPEN_DELEGATE_NONE; |
NeilBrown | 7b190fe | 2005-06-23 22:03:23 -0700 | [diff] [blame] | 1682 | open->op_recall = 0; |
| 1683 | switch (open->op_claim_type) { |
| 1684 | case NFS4_OPEN_CLAIM_PREVIOUS: |
| 1685 | if (!atomic_read(&cb->cb_set)) |
| 1686 | open->op_recall = 1; |
| 1687 | flag = open->op_delegate_type; |
| 1688 | if (flag == NFS4_OPEN_DELEGATE_NONE) |
| 1689 | goto out; |
| 1690 | break; |
| 1691 | case NFS4_OPEN_CLAIM_NULL: |
| 1692 | /* Let's not give out any delegations till everyone's |
| 1693 | * had the chance to reclaim theirs.... */ |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 1694 | if (locks_in_grace()) |
NeilBrown | 7b190fe | 2005-06-23 22:03:23 -0700 | [diff] [blame] | 1695 | goto out; |
| 1696 | if (!atomic_read(&cb->cb_set) || !sop->so_confirmed) |
| 1697 | goto out; |
| 1698 | if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE) |
| 1699 | flag = NFS4_OPEN_DELEGATE_WRITE; |
| 1700 | else |
| 1701 | flag = NFS4_OPEN_DELEGATE_READ; |
| 1702 | break; |
| 1703 | default: |
| 1704 | goto out; |
| 1705 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1706 | |
| 1707 | dp = alloc_init_deleg(sop->so_client, stp, fh, flag); |
| 1708 | if (dp == NULL) { |
| 1709 | flag = NFS4_OPEN_DELEGATE_NONE; |
| 1710 | goto out; |
| 1711 | } |
| 1712 | locks_init_lock(&fl); |
| 1713 | fl.fl_lmops = &nfsd_lease_mng_ops; |
| 1714 | fl.fl_flags = FL_LEASE; |
Felix Blyakher | 9167f50 | 2008-02-26 10:54:36 -0800 | [diff] [blame] | 1715 | fl.fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | fl.fl_end = OFFSET_MAX; |
| 1717 | fl.fl_owner = (fl_owner_t)dp; |
| 1718 | fl.fl_file = stp->st_vfs_file; |
| 1719 | fl.fl_pid = current->tgid; |
| 1720 | |
J. Bruce Fields | a9933ce | 2007-06-07 17:09:49 -0400 | [diff] [blame] | 1721 | /* vfs_setlease checks to see if delegation should be handed out. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | * the lock_manager callbacks fl_mylease and fl_change are used |
| 1723 | */ |
Felix Blyakher | 9167f50 | 2008-02-26 10:54:36 -0800 | [diff] [blame] | 1724 | if ((status = vfs_setlease(stp->st_vfs_file, fl.fl_type, &flp))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | dprintk("NFSD: setlease failed [%d], no delegation\n", status); |
NeilBrown | c907132 | 2005-04-16 15:26:38 -0700 | [diff] [blame] | 1726 | unhash_delegation(dp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | flag = NFS4_OPEN_DELEGATE_NONE; |
| 1728 | goto out; |
| 1729 | } |
| 1730 | |
| 1731 | memcpy(&open->op_delegate_stateid, &dp->dl_stateid, sizeof(dp->dl_stateid)); |
| 1732 | |
| 1733 | dprintk("NFSD: delegation stateid=(%08x/%08x/%08x/%08x)\n\n", |
| 1734 | dp->dl_stateid.si_boot, |
| 1735 | dp->dl_stateid.si_stateownerid, |
| 1736 | dp->dl_stateid.si_fileid, |
| 1737 | dp->dl_stateid.si_generation); |
| 1738 | out: |
NeilBrown | 7b190fe | 2005-06-23 22:03:23 -0700 | [diff] [blame] | 1739 | if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS |
| 1740 | && flag == NFS4_OPEN_DELEGATE_NONE |
| 1741 | && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE) |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 1742 | dprintk("NFSD: WARNING: refusing delegation reclaim\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | open->op_delegate_type = flag; |
| 1744 | } |
| 1745 | |
| 1746 | /* |
| 1747 | * called with nfs4_lock_state() held. |
| 1748 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1749 | __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open) |
| 1751 | { |
| 1752 | struct nfs4_file *fp = NULL; |
| 1753 | struct inode *ino = current_fh->fh_dentry->d_inode; |
| 1754 | struct nfs4_stateid *stp = NULL; |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 1755 | struct nfs4_delegation *dp = NULL; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1756 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | |
| 1758 | status = nfserr_inval; |
J. Bruce Fields | ba5a6a1 | 2006-06-30 01:56:16 -0700 | [diff] [blame] | 1759 | if (!access_valid(open->op_share_access) |
| 1760 | || !deny_valid(open->op_share_deny)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | goto out; |
| 1762 | /* |
| 1763 | * Lookup file; if found, lookup stateid and check open request, |
| 1764 | * and check for delegations in the process of being recalled. |
| 1765 | * If not found, create the nfs4_file struct |
| 1766 | */ |
| 1767 | fp = find_file(ino); |
| 1768 | if (fp) { |
| 1769 | if ((status = nfs4_check_open(fp, open, &stp))) |
| 1770 | goto out; |
NeilBrown | c44c5ee | 2005-06-23 22:02:54 -0700 | [diff] [blame] | 1771 | status = nfs4_check_deleg(fp, open, &dp); |
| 1772 | if (status) |
| 1773 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 | } else { |
NeilBrown | c44c5ee | 2005-06-23 22:02:54 -0700 | [diff] [blame] | 1775 | status = nfserr_bad_stateid; |
| 1776 | if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR) |
| 1777 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | status = nfserr_resource; |
| 1779 | fp = alloc_init_file(ino); |
| 1780 | if (fp == NULL) |
| 1781 | goto out; |
| 1782 | } |
| 1783 | |
| 1784 | /* |
| 1785 | * OPEN the file, or upgrade an existing OPEN. |
| 1786 | * If truncate fails, the OPEN fails. |
| 1787 | */ |
| 1788 | if (stp) { |
| 1789 | /* Stateid was found, this is an OPEN upgrade */ |
| 1790 | status = nfs4_upgrade_open(rqstp, current_fh, stp, open); |
| 1791 | if (status) |
| 1792 | goto out; |
NeilBrown | 444c2c0 | 2005-07-07 17:59:22 -0700 | [diff] [blame] | 1793 | update_stateid(&stp->st_stateid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | } else { |
| 1795 | /* Stateid was not found, this is a new OPEN */ |
| 1796 | int flags = 0; |
J. Bruce Fields | 9ecb6a0 | 2006-06-30 01:56:17 -0700 | [diff] [blame] | 1797 | if (open->op_share_access & NFS4_SHARE_ACCESS_READ) |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 1798 | flags |= NFSD_MAY_READ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1799 | if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE) |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 1800 | flags |= NFSD_MAY_WRITE; |
NeilBrown | 567d982 | 2005-06-23 22:02:53 -0700 | [diff] [blame] | 1801 | status = nfs4_new_open(rqstp, &stp, dp, current_fh, flags); |
| 1802 | if (status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1803 | goto out; |
| 1804 | init_stateid(stp, fp, open); |
| 1805 | status = nfsd4_truncate(rqstp, current_fh, open); |
| 1806 | if (status) { |
J. Bruce Fields | 2283963 | 2009-01-11 14:27:17 -0500 | [diff] [blame] | 1807 | release_open_stateid(stp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | goto out; |
| 1809 | } |
| 1810 | } |
| 1811 | memcpy(&open->op_stateid, &stp->st_stateid, sizeof(stateid_t)); |
| 1812 | |
| 1813 | /* |
| 1814 | * Attempt to hand out a delegation. No error return, because the |
| 1815 | * OPEN succeeds even if we fail. |
| 1816 | */ |
| 1817 | nfs4_open_delegation(current_fh, open, stp); |
| 1818 | |
| 1819 | status = nfs_ok; |
| 1820 | |
| 1821 | dprintk("nfs4_process_open2: stateid=(%08x/%08x/%08x/%08x)\n", |
| 1822 | stp->st_stateid.si_boot, stp->st_stateid.si_stateownerid, |
| 1823 | stp->st_stateid.si_fileid, stp->st_stateid.si_generation); |
| 1824 | out: |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 1825 | if (fp) |
| 1826 | put_nfs4_file(fp); |
NeilBrown | 3751517 | 2005-07-07 17:59:16 -0700 | [diff] [blame] | 1827 | if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS) |
| 1828 | nfs4_set_claim_prev(open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | /* |
| 1830 | * To finish the open response, we just need to set the rflags. |
| 1831 | */ |
| 1832 | open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX; |
| 1833 | if (!open->op_stateowner->so_confirmed) |
| 1834 | open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM; |
| 1835 | |
| 1836 | return status; |
| 1837 | } |
| 1838 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1839 | __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 1840 | nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 1841 | clientid_t *clid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | { |
| 1843 | struct nfs4_client *clp; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1844 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | |
| 1846 | nfs4_lock_state(); |
| 1847 | dprintk("process_renew(%08x/%08x): starting\n", |
| 1848 | clid->cl_boot, clid->cl_id); |
| 1849 | status = nfserr_stale_clientid; |
| 1850 | if (STALE_CLIENTID(clid)) |
| 1851 | goto out; |
| 1852 | clp = find_confirmed_client(clid); |
| 1853 | status = nfserr_expired; |
| 1854 | if (clp == NULL) { |
| 1855 | /* We assume the client took too long to RENEW. */ |
| 1856 | dprintk("nfsd4_renew: clientid not found!\n"); |
| 1857 | goto out; |
| 1858 | } |
| 1859 | renew_client(clp); |
| 1860 | status = nfserr_cb_path_down; |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 1861 | if (!list_empty(&clp->cl_delegations) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | && !atomic_read(&clp->cl_callback.cb_set)) |
| 1863 | goto out; |
| 1864 | status = nfs_ok; |
| 1865 | out: |
| 1866 | nfs4_unlock_state(); |
| 1867 | return status; |
| 1868 | } |
| 1869 | |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 1870 | struct lock_manager nfsd4_manager = { |
| 1871 | }; |
| 1872 | |
NeilBrown | a76b431 | 2005-06-23 22:04:01 -0700 | [diff] [blame] | 1873 | static void |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 1874 | nfsd4_end_grace(void) |
NeilBrown | a76b431 | 2005-06-23 22:04:01 -0700 | [diff] [blame] | 1875 | { |
| 1876 | dprintk("NFSD: end of grace period\n"); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 1877 | nfsd4_recdir_purge_old(); |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 1878 | locks_end_grace(&nfsd4_manager); |
NeilBrown | a76b431 | 2005-06-23 22:04:01 -0700 | [diff] [blame] | 1879 | } |
| 1880 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 1881 | static time_t |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | nfs4_laundromat(void) |
| 1883 | { |
| 1884 | struct nfs4_client *clp; |
| 1885 | struct nfs4_stateowner *sop; |
| 1886 | struct nfs4_delegation *dp; |
| 1887 | struct list_head *pos, *next, reaplist; |
| 1888 | time_t cutoff = get_seconds() - NFSD_LEASE_TIME; |
| 1889 | time_t t, clientid_val = NFSD_LEASE_TIME; |
| 1890 | time_t u, test_val = NFSD_LEASE_TIME; |
| 1891 | |
| 1892 | nfs4_lock_state(); |
| 1893 | |
| 1894 | dprintk("NFSD: laundromat service - starting\n"); |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 1895 | if (locks_in_grace()) |
| 1896 | nfsd4_end_grace(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | list_for_each_safe(pos, next, &client_lru) { |
| 1898 | clp = list_entry(pos, struct nfs4_client, cl_lru); |
| 1899 | if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) { |
| 1900 | t = clp->cl_time - cutoff; |
| 1901 | if (clientid_val > t) |
| 1902 | clientid_val = t; |
| 1903 | break; |
| 1904 | } |
| 1905 | dprintk("NFSD: purging unused client (clientid %08x)\n", |
| 1906 | clp->cl_clientid.cl_id); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 1907 | nfsd4_remove_clid_dir(clp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | expire_client(clp); |
| 1909 | } |
| 1910 | INIT_LIST_HEAD(&reaplist); |
| 1911 | spin_lock(&recall_lock); |
| 1912 | list_for_each_safe(pos, next, &del_recall_lru) { |
| 1913 | dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru); |
| 1914 | if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) { |
| 1915 | u = dp->dl_time - cutoff; |
| 1916 | if (test_val > u) |
| 1917 | test_val = u; |
| 1918 | break; |
| 1919 | } |
| 1920 | dprintk("NFSD: purging unused delegation dp %p, fp %p\n", |
| 1921 | dp, dp->dl_flock); |
| 1922 | list_move(&dp->dl_recall_lru, &reaplist); |
| 1923 | } |
| 1924 | spin_unlock(&recall_lock); |
| 1925 | list_for_each_safe(pos, next, &reaplist) { |
| 1926 | dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru); |
| 1927 | list_del_init(&dp->dl_recall_lru); |
| 1928 | unhash_delegation(dp); |
| 1929 | } |
| 1930 | test_val = NFSD_LEASE_TIME; |
| 1931 | list_for_each_safe(pos, next, &close_lru) { |
| 1932 | sop = list_entry(pos, struct nfs4_stateowner, so_close_lru); |
| 1933 | if (time_after((unsigned long)sop->so_time, (unsigned long)cutoff)) { |
| 1934 | u = sop->so_time - cutoff; |
| 1935 | if (test_val > u) |
| 1936 | test_val = u; |
| 1937 | break; |
| 1938 | } |
| 1939 | dprintk("NFSD: purging unused open stateowner (so_id %d)\n", |
| 1940 | sop->so_id); |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 1941 | release_openowner(sop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | } |
| 1943 | if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT) |
| 1944 | clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT; |
| 1945 | nfs4_unlock_state(); |
| 1946 | return clientid_val; |
| 1947 | } |
| 1948 | |
Harvey Harrison | a254b24 | 2008-02-20 12:49:00 -0800 | [diff] [blame] | 1949 | static struct workqueue_struct *laundry_wq; |
| 1950 | static void laundromat_main(struct work_struct *); |
| 1951 | static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main); |
| 1952 | |
| 1953 | static void |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1954 | laundromat_main(struct work_struct *not_used) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1955 | { |
| 1956 | time_t t; |
| 1957 | |
| 1958 | t = nfs4_laundromat(); |
| 1959 | dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t); |
NeilBrown | 58da282 | 2005-06-23 22:03:19 -0700 | [diff] [blame] | 1960 | queue_delayed_work(laundry_wq, &laundromat_work, t*HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | } |
| 1962 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 1963 | static struct nfs4_stateowner * |
NeilBrown | f881651 | 2005-07-07 17:59:25 -0700 | [diff] [blame] | 1964 | search_close_lru(u32 st_id, int flags) |
| 1965 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | struct nfs4_stateowner *local = NULL; |
| 1967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | if (flags & CLOSE_STATE) { |
| 1969 | list_for_each_entry(local, &close_lru, so_close_lru) { |
| 1970 | if (local->so_id == st_id) |
| 1971 | return local; |
| 1972 | } |
| 1973 | } |
| 1974 | return NULL; |
| 1975 | } |
| 1976 | |
| 1977 | static inline int |
| 1978 | nfs4_check_fh(struct svc_fh *fhp, struct nfs4_stateid *stp) |
| 1979 | { |
Josef "Jeff" Sipek | 7eaa36e | 2006-12-08 02:36:41 -0800 | [diff] [blame] | 1980 | return fhp->fh_dentry->d_inode != stp->st_vfs_file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | } |
| 1982 | |
| 1983 | static int |
| 1984 | STALE_STATEID(stateid_t *stateid) |
| 1985 | { |
| 1986 | if (stateid->si_boot == boot_time) |
| 1987 | return 0; |
Neil Brown | 849823c | 2005-09-13 01:25:36 -0700 | [diff] [blame] | 1988 | dprintk("NFSD: stale stateid (%08x/%08x/%08x/%08x)!\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid, |
| 1990 | stateid->si_generation); |
| 1991 | return 1; |
| 1992 | } |
| 1993 | |
| 1994 | static inline int |
| 1995 | access_permit_read(unsigned long access_bmap) |
| 1996 | { |
| 1997 | return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) || |
| 1998 | test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) || |
| 1999 | test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap); |
| 2000 | } |
| 2001 | |
| 2002 | static inline int |
| 2003 | access_permit_write(unsigned long access_bmap) |
| 2004 | { |
| 2005 | return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) || |
| 2006 | test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap); |
| 2007 | } |
| 2008 | |
| 2009 | static |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2010 | __be32 nfs4_check_openmode(struct nfs4_stateid *stp, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2012 | __be32 status = nfserr_openmode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | |
| 2014 | if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap))) |
| 2015 | goto out; |
| 2016 | if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap))) |
| 2017 | goto out; |
| 2018 | status = nfs_ok; |
| 2019 | out: |
| 2020 | return status; |
| 2021 | } |
| 2022 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2023 | static inline __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags) |
| 2025 | { |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 2026 | if (ONE_STATEID(stateid) && (flags & RD_STATE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | return nfs_ok; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 2028 | else if (locks_in_grace()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 | /* Answer in remaining cases depends on existance of |
| 2030 | * conflicting state; so we must wait out the grace period. */ |
| 2031 | return nfserr_grace; |
| 2032 | } else if (flags & WR_STATE) |
| 2033 | return nfs4_share_conflict(current_fh, |
| 2034 | NFS4_SHARE_DENY_WRITE); |
| 2035 | else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */ |
| 2036 | return nfs4_share_conflict(current_fh, |
| 2037 | NFS4_SHARE_DENY_READ); |
| 2038 | } |
| 2039 | |
| 2040 | /* |
| 2041 | * Allow READ/WRITE during grace period on recovered state only for files |
| 2042 | * that are not able to provide mandatory locking. |
| 2043 | */ |
| 2044 | static inline int |
J. Bruce Fields | 18f8273 | 2009-02-21 15:23:01 -0800 | [diff] [blame] | 2045 | grace_disallows_io(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | { |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 2047 | return locks_in_grace() && mandatory_lock(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2048 | } |
| 2049 | |
J. Bruce Fields | 0836f58 | 2008-01-26 19:08:12 -0500 | [diff] [blame] | 2050 | static int check_stateid_generation(stateid_t *in, stateid_t *ref) |
| 2051 | { |
| 2052 | /* If the client sends us a stateid from the future, it's buggy: */ |
| 2053 | if (in->si_generation > ref->si_generation) |
| 2054 | return nfserr_bad_stateid; |
| 2055 | /* |
| 2056 | * The following, however, can happen. For example, if the |
| 2057 | * client sends an open and some IO at the same time, the open |
| 2058 | * may bump si_generation while the IO is still in flight. |
| 2059 | * Thanks to hard links and renames, the client never knows what |
| 2060 | * file an open will affect. So it could avoid that situation |
| 2061 | * only by serializing all opens and IO from the same open |
| 2062 | * owner. To recover from the old_stateid error, the client |
| 2063 | * will just have to retry the IO: |
| 2064 | */ |
| 2065 | if (in->si_generation < ref->si_generation) |
| 2066 | return nfserr_old_stateid; |
| 2067 | return nfs_ok; |
| 2068 | } |
| 2069 | |
J. Bruce Fields | 3e63307 | 2009-02-21 13:17:19 -0800 | [diff] [blame] | 2070 | static int is_delegation_stateid(stateid_t *stateid) |
| 2071 | { |
| 2072 | return stateid->si_fileid == 0; |
| 2073 | } |
| 2074 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | /* |
| 2076 | * Checks for stateid operations |
| 2077 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2078 | __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2079 | nfs4_preprocess_stateid_op(struct svc_fh *current_fh, stateid_t *stateid, int flags, struct file **filpp) |
| 2080 | { |
| 2081 | struct nfs4_stateid *stp = NULL; |
| 2082 | struct nfs4_delegation *dp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2083 | struct inode *ino = current_fh->fh_dentry->d_inode; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2084 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2085 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | if (filpp) |
| 2087 | *filpp = NULL; |
| 2088 | |
J. Bruce Fields | 18f8273 | 2009-02-21 15:23:01 -0800 | [diff] [blame] | 2089 | if (grace_disallows_io(ino)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | return nfserr_grace; |
| 2091 | |
| 2092 | if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) |
| 2093 | return check_special_stateids(current_fh, stateid, flags); |
| 2094 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | status = nfserr_stale_stateid; |
| 2096 | if (STALE_STATEID(stateid)) |
| 2097 | goto out; |
| 2098 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | status = nfserr_bad_stateid; |
J. Bruce Fields | 3e63307 | 2009-02-21 13:17:19 -0800 | [diff] [blame] | 2100 | if (is_delegation_stateid(stateid)) { |
J. Bruce Fields | a4455be | 2009-02-21 10:40:22 -0800 | [diff] [blame] | 2101 | dp = find_delegation_stateid(ino, stateid); |
J. Bruce Fields | 819a8f5 | 2009-02-21 12:13:24 -0800 | [diff] [blame] | 2102 | if (!dp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | goto out; |
J. Bruce Fields | fd03b09 | 2009-02-21 11:27:30 -0800 | [diff] [blame] | 2104 | status = check_stateid_generation(stateid, &dp->dl_stateid); |
J. Bruce Fields | 0c2a498 | 2009-02-21 11:11:50 -0800 | [diff] [blame] | 2105 | if (status) |
| 2106 | goto out; |
J. Bruce Fields | dc9bf70 | 2009-02-21 11:14:43 -0800 | [diff] [blame] | 2107 | status = nfs4_check_delegmode(dp, flags); |
| 2108 | if (status) |
| 2109 | goto out; |
| 2110 | renew_client(dp->dl_client); |
J. Bruce Fields | dc9bf70 | 2009-02-21 11:14:43 -0800 | [diff] [blame] | 2111 | if (filpp) |
| 2112 | *filpp = dp->dl_vfs_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2113 | } else { /* open or lock stateid */ |
J. Bruce Fields | a4455be | 2009-02-21 10:40:22 -0800 | [diff] [blame] | 2114 | stp = find_stateid(stateid, flags); |
J. Bruce Fields | 819a8f5 | 2009-02-21 12:13:24 -0800 | [diff] [blame] | 2115 | if (!stp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | goto out; |
J. Bruce Fields | 6150ef0 | 2009-02-21 13:36:16 -0800 | [diff] [blame] | 2117 | if (nfs4_check_fh(current_fh, stp)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | goto out; |
| 2119 | if (!stp->st_stateowner->so_confirmed) |
| 2120 | goto out; |
J. Bruce Fields | fd03b09 | 2009-02-21 11:27:30 -0800 | [diff] [blame] | 2121 | status = check_stateid_generation(stateid, &stp->st_stateid); |
J. Bruce Fields | 0c2a498 | 2009-02-21 11:11:50 -0800 | [diff] [blame] | 2122 | if (status) |
| 2123 | goto out; |
J. Bruce Fields | a4455be | 2009-02-21 10:40:22 -0800 | [diff] [blame] | 2124 | status = nfs4_check_openmode(stp, flags); |
| 2125 | if (status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2126 | goto out; |
| 2127 | renew_client(stp->st_stateowner->so_client); |
| 2128 | if (filpp) |
| 2129 | *filpp = stp->st_vfs_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | } |
| 2131 | status = nfs_ok; |
| 2132 | out: |
| 2133 | return status; |
| 2134 | } |
| 2135 | |
NeilBrown | 4c4cd22 | 2005-07-07 17:59:27 -0700 | [diff] [blame] | 2136 | static inline int |
| 2137 | setlkflg (int type) |
| 2138 | { |
| 2139 | return (type == NFS4_READW_LT || type == NFS4_READ_LT) ? |
| 2140 | RD_STATE : WR_STATE; |
| 2141 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | |
| 2143 | /* |
| 2144 | * Checks for sequence id mutating operations. |
| 2145 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2146 | static __be32 |
NeilBrown | 4c4cd22 | 2005-07-07 17:59:27 -0700 | [diff] [blame] | 2147 | nfs4_preprocess_seqid_op(struct svc_fh *current_fh, u32 seqid, stateid_t *stateid, int flags, struct nfs4_stateowner **sopp, struct nfs4_stateid **stpp, struct nfsd4_lock *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2148 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | struct nfs4_stateid *stp; |
| 2150 | struct nfs4_stateowner *sop; |
J. Bruce Fields | 0836f58 | 2008-01-26 19:08:12 -0500 | [diff] [blame] | 2151 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | |
| 2153 | dprintk("NFSD: preprocess_seqid_op: seqid=%d " |
| 2154 | "stateid = (%08x/%08x/%08x/%08x)\n", seqid, |
| 2155 | stateid->si_boot, stateid->si_stateownerid, stateid->si_fileid, |
| 2156 | stateid->si_generation); |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 2157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2158 | *stpp = NULL; |
| 2159 | *sopp = NULL; |
| 2160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2161 | if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) { |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 2162 | dprintk("NFSD: preprocess_seqid_op: magic stateid!\n"); |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 2163 | return nfserr_bad_stateid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | } |
| 2165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2166 | if (STALE_STATEID(stateid)) |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 2167 | return nfserr_stale_stateid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | /* |
| 2169 | * We return BAD_STATEID if filehandle doesn't match stateid, |
| 2170 | * the confirmed flag is incorrecly set, or the generation |
| 2171 | * number is incorrect. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | */ |
NeilBrown | f881651 | 2005-07-07 17:59:25 -0700 | [diff] [blame] | 2173 | stp = find_stateid(stateid, flags); |
| 2174 | if (stp == NULL) { |
| 2175 | /* |
| 2176 | * Also, we should make sure this isn't just the result of |
| 2177 | * a replayed close: |
| 2178 | */ |
| 2179 | sop = search_close_lru(stateid->si_stateownerid, flags); |
| 2180 | if (sop == NULL) |
| 2181 | return nfserr_bad_stateid; |
| 2182 | *sopp = sop; |
| 2183 | goto check_replay; |
| 2184 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2185 | |
J. Bruce Fields | 39325bd | 2007-11-26 17:06:39 -0500 | [diff] [blame] | 2186 | *stpp = stp; |
| 2187 | *sopp = sop = stp->st_stateowner; |
| 2188 | |
NeilBrown | 4c4cd22 | 2005-07-07 17:59:27 -0700 | [diff] [blame] | 2189 | if (lock) { |
NeilBrown | 4c4cd22 | 2005-07-07 17:59:27 -0700 | [diff] [blame] | 2190 | clientid_t *lockclid = &lock->v.new.clientid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2191 | struct nfs4_client *clp = sop->so_client; |
NeilBrown | 4c4cd22 | 2005-07-07 17:59:27 -0700 | [diff] [blame] | 2192 | int lkflg = 0; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2193 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | |
NeilBrown | 4c4cd22 | 2005-07-07 17:59:27 -0700 | [diff] [blame] | 2195 | lkflg = setlkflg(lock->lk_type); |
| 2196 | |
| 2197 | if (lock->lk_is_new) { |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 2198 | if (!sop->so_is_open_owner) |
| 2199 | return nfserr_bad_stateid; |
| 2200 | if (!same_clid(&clp->cl_clientid, lockclid)) |
NeilBrown | 4c4cd22 | 2005-07-07 17:59:27 -0700 | [diff] [blame] | 2201 | return nfserr_bad_stateid; |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 2202 | /* stp is the open stateid */ |
| 2203 | status = nfs4_check_openmode(stp, lkflg); |
| 2204 | if (status) |
| 2205 | return status; |
| 2206 | } else { |
| 2207 | /* stp is the lock stateid */ |
| 2208 | status = nfs4_check_openmode(stp->st_openstp, lkflg); |
| 2209 | if (status) |
| 2210 | return status; |
NeilBrown | 4c4cd22 | 2005-07-07 17:59:27 -0700 | [diff] [blame] | 2211 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2212 | } |
| 2213 | |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 2214 | if (nfs4_check_fh(current_fh, stp)) { |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 2215 | dprintk("NFSD: preprocess_seqid_op: fh-stateid mismatch!\n"); |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 2216 | return nfserr_bad_stateid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | } |
| 2218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2219 | /* |
| 2220 | * We now validate the seqid and stateid generation numbers. |
| 2221 | * For the moment, we ignore the possibility of |
| 2222 | * generation number wraparound. |
| 2223 | */ |
NeilBrown | bd9aac5 | 2005-07-07 17:59:19 -0700 | [diff] [blame] | 2224 | if (seqid != sop->so_seqid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2225 | goto check_replay; |
| 2226 | |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 2227 | if (sop->so_confirmed && flags & CONFIRM) { |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 2228 | dprintk("NFSD: preprocess_seqid_op: expected" |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 2229 | " unconfirmed stateowner!\n"); |
| 2230 | return nfserr_bad_stateid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2231 | } |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 2232 | if (!sop->so_confirmed && !(flags & CONFIRM)) { |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 2233 | dprintk("NFSD: preprocess_seqid_op: stateowner not" |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 2234 | " confirmed yet!\n"); |
| 2235 | return nfserr_bad_stateid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | } |
J. Bruce Fields | 0836f58 | 2008-01-26 19:08:12 -0500 | [diff] [blame] | 2237 | status = check_stateid_generation(stateid, &stp->st_stateid); |
| 2238 | if (status) |
| 2239 | return status; |
NeilBrown | 52fd004 | 2005-07-07 17:59:24 -0700 | [diff] [blame] | 2240 | renew_client(sop->so_client); |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 2241 | return nfs_ok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2243 | check_replay: |
NeilBrown | bd9aac5 | 2005-07-07 17:59:19 -0700 | [diff] [blame] | 2244 | if (seqid == sop->so_seqid - 1) { |
Neil Brown | 849823c | 2005-09-13 01:25:36 -0700 | [diff] [blame] | 2245 | dprintk("NFSD: preprocess_seqid_op: retransmission?\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | /* indicate replay to calling function */ |
Al Viro | a90b061 | 2006-10-19 23:29:03 -0700 | [diff] [blame] | 2247 | return nfserr_replay_me; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | } |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 2249 | dprintk("NFSD: preprocess_seqid_op: bad seqid (expected %d, got %d)\n", |
NeilBrown | 3a4f98b | 2005-07-07 17:59:26 -0700 | [diff] [blame] | 2250 | sop->so_seqid, seqid); |
| 2251 | *sopp = NULL; |
| 2252 | return nfserr_bad_seqid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2253 | } |
| 2254 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2255 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2256 | 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] | 2257 | struct nfsd4_open_confirm *oc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2258 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2259 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2260 | struct nfs4_stateowner *sop; |
| 2261 | struct nfs4_stateid *stp; |
| 2262 | |
| 2263 | dprintk("NFSD: nfsd4_open_confirm on file %.*s\n", |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2264 | (int)cstate->current_fh.fh_dentry->d_name.len, |
| 2265 | cstate->current_fh.fh_dentry->d_name.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2267 | status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0); |
J. Bruce Fields | a8cddc5 | 2006-06-30 01:56:13 -0700 | [diff] [blame] | 2268 | if (status) |
| 2269 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2270 | |
| 2271 | nfs4_lock_state(); |
| 2272 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2273 | if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh, |
| 2274 | oc->oc_seqid, &oc->oc_req_stateid, |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 2275 | CONFIRM | OPEN_STATE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2276 | &oc->oc_stateowner, &stp, NULL))) |
| 2277 | goto out; |
| 2278 | |
| 2279 | sop = oc->oc_stateowner; |
| 2280 | sop->so_confirmed = 1; |
| 2281 | update_stateid(&stp->st_stateid); |
| 2282 | memcpy(&oc->oc_resp_stateid, &stp->st_stateid, sizeof(stateid_t)); |
| 2283 | dprintk("NFSD: nfsd4_open_confirm: success, seqid=%d " |
| 2284 | "stateid=(%08x/%08x/%08x/%08x)\n", oc->oc_seqid, |
| 2285 | stp->st_stateid.si_boot, |
| 2286 | stp->st_stateid.si_stateownerid, |
| 2287 | stp->st_stateid.si_fileid, |
| 2288 | stp->st_stateid.si_generation); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 2289 | |
| 2290 | nfsd4_create_clid_dir(sop->so_client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2291 | out: |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 2292 | if (oc->oc_stateowner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | nfs4_get_stateowner(oc->oc_stateowner); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 2294 | cstate->replay_owner = oc->oc_stateowner; |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 2295 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2296 | nfs4_unlock_state(); |
| 2297 | return status; |
| 2298 | } |
| 2299 | |
| 2300 | |
| 2301 | /* |
| 2302 | * unset all bits in union bitmap (bmap) that |
| 2303 | * do not exist in share (from successful OPEN_DOWNGRADE) |
| 2304 | */ |
| 2305 | static void |
| 2306 | reset_union_bmap_access(unsigned long access, unsigned long *bmap) |
| 2307 | { |
| 2308 | int i; |
| 2309 | for (i = 1; i < 4; i++) { |
| 2310 | if ((i & access) != i) |
| 2311 | __clear_bit(i, bmap); |
| 2312 | } |
| 2313 | } |
| 2314 | |
| 2315 | static void |
| 2316 | reset_union_bmap_deny(unsigned long deny, unsigned long *bmap) |
| 2317 | { |
| 2318 | int i; |
| 2319 | for (i = 0; i < 4; i++) { |
| 2320 | if ((i & deny) != i) |
| 2321 | __clear_bit(i, bmap); |
| 2322 | } |
| 2323 | } |
| 2324 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2325 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2326 | nfsd4_open_downgrade(struct svc_rqst *rqstp, |
| 2327 | struct nfsd4_compound_state *cstate, |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 2328 | struct nfsd4_open_downgrade *od) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2329 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2330 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | struct nfs4_stateid *stp; |
| 2332 | unsigned int share_access; |
| 2333 | |
| 2334 | dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n", |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2335 | (int)cstate->current_fh.fh_dentry->d_name.len, |
| 2336 | cstate->current_fh.fh_dentry->d_name.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2337 | |
J. Bruce Fields | ba5a6a1 | 2006-06-30 01:56:16 -0700 | [diff] [blame] | 2338 | if (!access_valid(od->od_share_access) |
| 2339 | || !deny_valid(od->od_share_deny)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2340 | return nfserr_inval; |
| 2341 | |
| 2342 | nfs4_lock_state(); |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2343 | if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh, |
| 2344 | od->od_seqid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2345 | &od->od_stateid, |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 2346 | OPEN_STATE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2347 | &od->od_stateowner, &stp, NULL))) |
| 2348 | goto out; |
| 2349 | |
| 2350 | status = nfserr_inval; |
| 2351 | if (!test_bit(od->od_share_access, &stp->st_access_bmap)) { |
| 2352 | dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n", |
| 2353 | stp->st_access_bmap, od->od_share_access); |
| 2354 | goto out; |
| 2355 | } |
| 2356 | if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) { |
| 2357 | dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n", |
| 2358 | stp->st_deny_bmap, od->od_share_deny); |
| 2359 | goto out; |
| 2360 | } |
| 2361 | set_access(&share_access, stp->st_access_bmap); |
| 2362 | nfs4_file_downgrade(stp->st_vfs_file, |
| 2363 | share_access & ~od->od_share_access); |
| 2364 | |
| 2365 | reset_union_bmap_access(od->od_share_access, &stp->st_access_bmap); |
| 2366 | reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap); |
| 2367 | |
| 2368 | update_stateid(&stp->st_stateid); |
| 2369 | memcpy(&od->od_stateid, &stp->st_stateid, sizeof(stateid_t)); |
| 2370 | status = nfs_ok; |
| 2371 | out: |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 2372 | if (od->od_stateowner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2373 | nfs4_get_stateowner(od->od_stateowner); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 2374 | cstate->replay_owner = od->od_stateowner; |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 2375 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2376 | nfs4_unlock_state(); |
| 2377 | return status; |
| 2378 | } |
| 2379 | |
| 2380 | /* |
| 2381 | * nfs4_unlock_state() called after encode |
| 2382 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2383 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2384 | nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 2385 | struct nfsd4_close *close) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2386 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2387 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2388 | struct nfs4_stateid *stp; |
| 2389 | |
| 2390 | dprintk("NFSD: nfsd4_close on file %.*s\n", |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2391 | (int)cstate->current_fh.fh_dentry->d_name.len, |
| 2392 | cstate->current_fh.fh_dentry->d_name.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2393 | |
| 2394 | nfs4_lock_state(); |
| 2395 | /* check close_lru for replay */ |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2396 | if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh, |
| 2397 | close->cl_seqid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2398 | &close->cl_stateid, |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 2399 | OPEN_STATE | CLOSE_STATE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | &close->cl_stateowner, &stp, NULL))) |
| 2401 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2402 | status = nfs_ok; |
| 2403 | update_stateid(&stp->st_stateid); |
| 2404 | memcpy(&close->cl_stateid, &stp->st_stateid, sizeof(stateid_t)); |
| 2405 | |
J. Bruce Fields | 04ef595 | 2006-01-18 17:43:21 -0800 | [diff] [blame] | 2406 | /* release_stateid() calls nfsd_close() if needed */ |
J. Bruce Fields | 2283963 | 2009-01-11 14:27:17 -0500 | [diff] [blame] | 2407 | release_open_stateid(stp); |
J. Bruce Fields | 04ef595 | 2006-01-18 17:43:21 -0800 | [diff] [blame] | 2408 | |
| 2409 | /* place unused nfs4_stateowners on so_close_lru list to be |
| 2410 | * released by the laundromat service after the lease period |
| 2411 | * to enable us to handle CLOSE replay |
| 2412 | */ |
| 2413 | if (list_empty(&close->cl_stateowner->so_stateids)) |
| 2414 | move_to_close_lru(close->cl_stateowner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2415 | out: |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 2416 | if (close->cl_stateowner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2417 | nfs4_get_stateowner(close->cl_stateowner); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 2418 | cstate->replay_owner = close->cl_stateowner; |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 2419 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2420 | nfs4_unlock_state(); |
| 2421 | return status; |
| 2422 | } |
| 2423 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2424 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2425 | nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 2426 | struct nfsd4_delegreturn *dr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2427 | { |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 2428 | struct nfs4_delegation *dp; |
| 2429 | stateid_t *stateid = &dr->dr_stateid; |
| 2430 | struct inode *inode; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2431 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2432 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2433 | if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0))) |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 2434 | return status; |
| 2435 | inode = cstate->current_fh.fh_dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2436 | |
| 2437 | nfs4_lock_state(); |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 2438 | status = nfserr_bad_stateid; |
| 2439 | if (ZERO_STATEID(stateid) || ONE_STATEID(stateid)) |
| 2440 | goto out; |
| 2441 | status = nfserr_stale_stateid; |
| 2442 | if (STALE_STATEID(stateid)) |
| 2443 | goto out; |
J. Bruce Fields | 7e0f7cf | 2009-02-21 13:32:28 -0800 | [diff] [blame] | 2444 | status = nfserr_bad_stateid; |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 2445 | if (!is_delegation_stateid(stateid)) |
| 2446 | goto out; |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 2447 | dp = find_delegation_stateid(inode, stateid); |
| 2448 | if (!dp) |
| 2449 | goto out; |
| 2450 | status = check_stateid_generation(stateid, &dp->dl_stateid); |
| 2451 | if (status) |
| 2452 | goto out; |
| 2453 | renew_client(dp->dl_client); |
| 2454 | |
| 2455 | unhash_delegation(dp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2456 | out: |
J. Bruce Fields | 203a8c8 | 2009-02-21 13:29:14 -0800 | [diff] [blame] | 2457 | nfs4_unlock_state(); |
| 2458 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2459 | return status; |
| 2460 | } |
| 2461 | |
| 2462 | |
| 2463 | /* |
| 2464 | * Lock owner state (byte-range locks) |
| 2465 | */ |
| 2466 | #define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start)) |
| 2467 | #define LOCK_HASH_BITS 8 |
| 2468 | #define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS) |
| 2469 | #define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1) |
| 2470 | |
Benny Halevy | 87df4de | 2008-12-15 19:42:03 +0200 | [diff] [blame] | 2471 | static inline u64 |
| 2472 | end_offset(u64 start, u64 len) |
| 2473 | { |
| 2474 | u64 end; |
| 2475 | |
| 2476 | end = start + len; |
| 2477 | return end >= start ? end: NFS4_MAX_UINT64; |
| 2478 | } |
| 2479 | |
| 2480 | /* last octet in a range */ |
| 2481 | static inline u64 |
| 2482 | last_byte_offset(u64 start, u64 len) |
| 2483 | { |
| 2484 | u64 end; |
| 2485 | |
| 2486 | BUG_ON(!len); |
| 2487 | end = start + len; |
| 2488 | return end > start ? end - 1: NFS4_MAX_UINT64; |
| 2489 | } |
| 2490 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2491 | #define lockownerid_hashval(id) \ |
| 2492 | ((id) & LOCK_HASH_MASK) |
| 2493 | |
| 2494 | static inline unsigned int |
| 2495 | lock_ownerstr_hashval(struct inode *inode, u32 cl_id, |
| 2496 | struct xdr_netobj *ownername) |
| 2497 | { |
| 2498 | return (file_hashval(inode) + cl_id |
| 2499 | + opaque_hashval(ownername->data, ownername->len)) |
| 2500 | & LOCK_HASH_MASK; |
| 2501 | } |
| 2502 | |
| 2503 | static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE]; |
| 2504 | static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE]; |
| 2505 | static struct list_head lockstateid_hashtbl[STATEID_HASH_SIZE]; |
| 2506 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 2507 | static struct nfs4_stateid * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2508 | find_stateid(stateid_t *stid, int flags) |
| 2509 | { |
Krishna Kumar | 9346eff | 2008-10-20 11:44:28 +0530 | [diff] [blame] | 2510 | struct nfs4_stateid *local; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2511 | u32 st_id = stid->si_stateownerid; |
| 2512 | u32 f_id = stid->si_fileid; |
| 2513 | unsigned int hashval; |
| 2514 | |
| 2515 | dprintk("NFSD: find_stateid flags 0x%x\n",flags); |
Krishna Kumar | 9346eff | 2008-10-20 11:44:28 +0530 | [diff] [blame] | 2516 | if (flags & (LOCK_STATE | RD_STATE | WR_STATE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2517 | hashval = stateid_hashval(st_id, f_id); |
| 2518 | list_for_each_entry(local, &lockstateid_hashtbl[hashval], st_hash) { |
| 2519 | if ((local->st_stateid.si_stateownerid == st_id) && |
| 2520 | (local->st_stateid.si_fileid == f_id)) |
| 2521 | return local; |
| 2522 | } |
| 2523 | } |
Krishna Kumar | 9346eff | 2008-10-20 11:44:28 +0530 | [diff] [blame] | 2524 | |
| 2525 | if (flags & (OPEN_STATE | RD_STATE | WR_STATE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2526 | hashval = stateid_hashval(st_id, f_id); |
| 2527 | list_for_each_entry(local, &stateid_hashtbl[hashval], st_hash) { |
| 2528 | if ((local->st_stateid.si_stateownerid == st_id) && |
| 2529 | (local->st_stateid.si_fileid == f_id)) |
| 2530 | return local; |
| 2531 | } |
Neil Brown | 849823c | 2005-09-13 01:25:36 -0700 | [diff] [blame] | 2532 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2533 | return NULL; |
| 2534 | } |
| 2535 | |
| 2536 | static struct nfs4_delegation * |
| 2537 | find_delegation_stateid(struct inode *ino, stateid_t *stid) |
| 2538 | { |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 2539 | struct nfs4_file *fp; |
| 2540 | struct nfs4_delegation *dl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2541 | |
| 2542 | dprintk("NFSD:find_delegation_stateid stateid=(%08x/%08x/%08x/%08x)\n", |
| 2543 | stid->si_boot, stid->si_stateownerid, |
| 2544 | stid->si_fileid, stid->si_generation); |
| 2545 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2546 | fp = find_file(ino); |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 2547 | if (!fp) |
| 2548 | return NULL; |
| 2549 | dl = find_delegation_file(fp, stid); |
| 2550 | put_nfs4_file(fp); |
| 2551 | return dl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2552 | } |
| 2553 | |
| 2554 | /* |
| 2555 | * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that |
| 2556 | * we can't properly handle lock requests that go beyond the (2^63 - 1)-th |
| 2557 | * byte, because of sign extension problems. Since NFSv4 calls for 64-bit |
| 2558 | * locking, this prevents us from being completely protocol-compliant. The |
| 2559 | * real solution to this problem is to start using unsigned file offsets in |
| 2560 | * the VFS, but this is a very deep change! |
| 2561 | */ |
| 2562 | static inline void |
| 2563 | nfs4_transform_lock_offset(struct file_lock *lock) |
| 2564 | { |
| 2565 | if (lock->fl_start < 0) |
| 2566 | lock->fl_start = OFFSET_MAX; |
| 2567 | if (lock->fl_end < 0) |
| 2568 | lock->fl_end = OFFSET_MAX; |
| 2569 | } |
| 2570 | |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 2571 | /* Hack!: For now, we're defining this just so we can use a pointer to it |
| 2572 | * as a unique cookie to identify our (NFSv4's) posix locks. */ |
Adrian Bunk | e465a77 | 2006-04-10 22:55:23 -0700 | [diff] [blame] | 2573 | static struct lock_manager_operations nfsd_posix_mng_ops = { |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 2574 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | |
| 2576 | static inline void |
| 2577 | nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny) |
| 2578 | { |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 2579 | struct nfs4_stateowner *sop; |
| 2580 | unsigned int hval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2581 | |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 2582 | if (fl->fl_lmops == &nfsd_posix_mng_ops) { |
| 2583 | sop = (struct nfs4_stateowner *) fl->fl_owner; |
| 2584 | hval = lockownerid_hashval(sop->so_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2585 | kref_get(&sop->so_ref); |
| 2586 | deny->ld_sop = sop; |
| 2587 | deny->ld_clientid = sop->so_client->cl_clientid; |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 2588 | } else { |
| 2589 | deny->ld_sop = NULL; |
| 2590 | deny->ld_clientid.cl_boot = 0; |
| 2591 | deny->ld_clientid.cl_id = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | } |
| 2593 | deny->ld_start = fl->fl_start; |
Benny Halevy | 87df4de | 2008-12-15 19:42:03 +0200 | [diff] [blame] | 2594 | deny->ld_length = NFS4_MAX_UINT64; |
| 2595 | if (fl->fl_end != NFS4_MAX_UINT64) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2596 | deny->ld_length = fl->fl_end - fl->fl_start + 1; |
| 2597 | deny->ld_type = NFS4_READ_LT; |
| 2598 | if (fl->fl_type != F_RDLCK) |
| 2599 | deny->ld_type = NFS4_WRITE_LT; |
| 2600 | } |
| 2601 | |
| 2602 | static struct nfs4_stateowner * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2603 | find_lockstateowner_str(struct inode *inode, clientid_t *clid, |
| 2604 | struct xdr_netobj *owner) |
| 2605 | { |
| 2606 | unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner); |
| 2607 | struct nfs4_stateowner *op; |
| 2608 | |
| 2609 | list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) { |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 2610 | if (same_owner_str(op, owner, clid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | return op; |
| 2612 | } |
| 2613 | return NULL; |
| 2614 | } |
| 2615 | |
| 2616 | /* |
| 2617 | * Alloc a lock owner structure. |
| 2618 | * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has |
| 2619 | * occured. |
| 2620 | * |
| 2621 | * strhashval = lock_ownerstr_hashval |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2622 | */ |
| 2623 | |
| 2624 | static struct nfs4_stateowner * |
| 2625 | alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_stateid *open_stp, struct nfsd4_lock *lock) { |
| 2626 | struct nfs4_stateowner *sop; |
| 2627 | struct nfs4_replay *rp; |
| 2628 | unsigned int idhashval; |
| 2629 | |
| 2630 | if (!(sop = alloc_stateowner(&lock->lk_new_owner))) |
| 2631 | return NULL; |
| 2632 | idhashval = lockownerid_hashval(current_ownerid); |
| 2633 | INIT_LIST_HEAD(&sop->so_idhash); |
| 2634 | INIT_LIST_HEAD(&sop->so_strhash); |
| 2635 | INIT_LIST_HEAD(&sop->so_perclient); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 2636 | INIT_LIST_HEAD(&sop->so_stateids); |
| 2637 | INIT_LIST_HEAD(&sop->so_perstateid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2638 | INIT_LIST_HEAD(&sop->so_close_lru); /* not used */ |
| 2639 | sop->so_time = 0; |
| 2640 | list_add(&sop->so_idhash, &lock_ownerid_hashtbl[idhashval]); |
| 2641 | list_add(&sop->so_strhash, &lock_ownerstr_hashtbl[strhashval]); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 2642 | list_add(&sop->so_perstateid, &open_stp->st_lockowners); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2643 | sop->so_is_open_owner = 0; |
| 2644 | sop->so_id = current_ownerid++; |
| 2645 | sop->so_client = clp; |
Neil Brown | b59e3c0 | 2005-09-13 01:25:38 -0700 | [diff] [blame] | 2646 | /* It is the openowner seqid that will be incremented in encode in the |
| 2647 | * case of new lockowners; so increment the lock seqid manually: */ |
| 2648 | sop->so_seqid = lock->lk_new_lock_seqid + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2649 | sop->so_confirmed = 1; |
| 2650 | rp = &sop->so_replay; |
Al Viro | de1ae28 | 2006-01-18 17:43:47 -0800 | [diff] [blame] | 2651 | rp->rp_status = nfserr_serverfault; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2652 | rp->rp_buflen = 0; |
| 2653 | rp->rp_buf = rp->rp_ibuf; |
| 2654 | return sop; |
| 2655 | } |
| 2656 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 2657 | static struct nfs4_stateid * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2658 | alloc_init_lock_stateid(struct nfs4_stateowner *sop, struct nfs4_file *fp, struct nfs4_stateid *open_stp) |
| 2659 | { |
| 2660 | struct nfs4_stateid *stp; |
| 2661 | unsigned int hashval = stateid_hashval(sop->so_id, fp->fi_id); |
| 2662 | |
NeilBrown | 5ac049a | 2005-06-23 22:03:03 -0700 | [diff] [blame] | 2663 | stp = nfs4_alloc_stateid(); |
| 2664 | if (stp == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2665 | goto out; |
| 2666 | INIT_LIST_HEAD(&stp->st_hash); |
| 2667 | INIT_LIST_HEAD(&stp->st_perfile); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 2668 | INIT_LIST_HEAD(&stp->st_perstateowner); |
| 2669 | INIT_LIST_HEAD(&stp->st_lockowners); /* not used */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2670 | list_add(&stp->st_hash, &lockstateid_hashtbl[hashval]); |
NeilBrown | 8beefa2 | 2005-06-23 22:03:08 -0700 | [diff] [blame] | 2671 | list_add(&stp->st_perfile, &fp->fi_stateids); |
NeilBrown | ea1da63 | 2005-06-23 22:04:17 -0700 | [diff] [blame] | 2672 | list_add(&stp->st_perstateowner, &sop->so_stateids); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2673 | stp->st_stateowner = sop; |
NeilBrown | 13cd218 | 2005-06-23 22:03:10 -0700 | [diff] [blame] | 2674 | get_nfs4_file(fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2675 | stp->st_file = fp; |
| 2676 | stp->st_stateid.si_boot = boot_time; |
| 2677 | stp->st_stateid.si_stateownerid = sop->so_id; |
| 2678 | stp->st_stateid.si_fileid = fp->fi_id; |
| 2679 | stp->st_stateid.si_generation = 0; |
| 2680 | stp->st_vfs_file = open_stp->st_vfs_file; /* FIXME refcount?? */ |
| 2681 | stp->st_access_bmap = open_stp->st_access_bmap; |
| 2682 | stp->st_deny_bmap = open_stp->st_deny_bmap; |
NeilBrown | 4c4cd22 | 2005-07-07 17:59:27 -0700 | [diff] [blame] | 2683 | stp->st_openstp = open_stp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2684 | |
| 2685 | out: |
| 2686 | return stp; |
| 2687 | } |
| 2688 | |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 2689 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2690 | check_lock_length(u64 offset, u64 length) |
| 2691 | { |
Benny Halevy | 87df4de | 2008-12-15 19:42:03 +0200 | [diff] [blame] | 2692 | return ((length == 0) || ((length != NFS4_MAX_UINT64) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2693 | LOFF_OVERFLOW(offset, length))); |
| 2694 | } |
| 2695 | |
| 2696 | /* |
| 2697 | * LOCK operation |
| 2698 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2699 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2700 | nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 2701 | struct nfsd4_lock *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2702 | { |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 2703 | struct nfs4_stateowner *open_sop = NULL; |
Neil Brown | b59e3c0 | 2005-09-13 01:25:38 -0700 | [diff] [blame] | 2704 | struct nfs4_stateowner *lock_sop = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2705 | struct nfs4_stateid *lock_stp; |
| 2706 | struct file *filp; |
| 2707 | struct file_lock file_lock; |
Andy Adamson | 8dc7c31 | 2006-03-20 13:44:26 -0500 | [diff] [blame] | 2708 | struct file_lock conflock; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2709 | __be32 status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2710 | unsigned int strhashval; |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 2711 | unsigned int cmd; |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 2712 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2713 | |
| 2714 | dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n", |
| 2715 | (long long) lock->lk_offset, |
| 2716 | (long long) lock->lk_length); |
| 2717 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2718 | if (check_lock_length(lock->lk_offset, lock->lk_length)) |
| 2719 | return nfserr_inval; |
| 2720 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2721 | if ((status = fh_verify(rqstp, &cstate->current_fh, |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 2722 | S_IFREG, NFSD_MAY_LOCK))) { |
Andy Adamson | a6f6ef2 | 2006-01-18 17:43:17 -0800 | [diff] [blame] | 2723 | dprintk("NFSD: nfsd4_lock: permission denied!\n"); |
| 2724 | return status; |
| 2725 | } |
| 2726 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2727 | nfs4_lock_state(); |
| 2728 | |
| 2729 | if (lock->lk_is_new) { |
NeilBrown | 893f877 | 2005-07-07 17:59:17 -0700 | [diff] [blame] | 2730 | /* |
| 2731 | * Client indicates that this is a new lockowner. |
| 2732 | * Use open owner and open stateid to create lock owner and |
| 2733 | * lock stateid. |
| 2734 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2735 | struct nfs4_stateid *open_stp = NULL; |
| 2736 | struct nfs4_file *fp; |
| 2737 | |
| 2738 | status = nfserr_stale_clientid; |
Neil Brown | 849823c | 2005-09-13 01:25:36 -0700 | [diff] [blame] | 2739 | if (STALE_CLIENTID(&lock->lk_new_clientid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2740 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2741 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2742 | /* validate and update open stateid and open seqid */ |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2743 | status = nfs4_preprocess_seqid_op(&cstate->current_fh, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2744 | lock->lk_new_open_seqid, |
| 2745 | &lock->lk_new_open_stateid, |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 2746 | OPEN_STATE, |
J. Bruce Fields | 3a65588 | 2006-01-18 17:43:19 -0800 | [diff] [blame] | 2747 | &lock->lk_replay_owner, &open_stp, |
Neil Brown | b59e3c0 | 2005-09-13 01:25:38 -0700 | [diff] [blame] | 2748 | lock); |
NeilBrown | 3751517 | 2005-07-07 17:59:16 -0700 | [diff] [blame] | 2749 | if (status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2750 | goto out; |
J. Bruce Fields | 3a65588 | 2006-01-18 17:43:19 -0800 | [diff] [blame] | 2751 | open_sop = lock->lk_replay_owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2752 | /* create lockowner and lock stateid */ |
| 2753 | fp = open_stp->st_file; |
| 2754 | strhashval = lock_ownerstr_hashval(fp->fi_inode, |
| 2755 | open_sop->so_client->cl_clientid.cl_id, |
| 2756 | &lock->v.new.owner); |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 2757 | /* XXX: Do we need to check for duplicate stateowners on |
| 2758 | * the same file, or should they just be allowed (and |
| 2759 | * create new stateids)? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2760 | status = nfserr_resource; |
Neil Brown | b59e3c0 | 2005-09-13 01:25:38 -0700 | [diff] [blame] | 2761 | lock_sop = alloc_init_lock_stateowner(strhashval, |
| 2762 | open_sop->so_client, open_stp, lock); |
| 2763 | if (lock_sop == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2764 | goto out; |
Neil Brown | b59e3c0 | 2005-09-13 01:25:38 -0700 | [diff] [blame] | 2765 | lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp); |
J. Bruce Fields | 8a28051 | 2006-01-18 17:43:18 -0800 | [diff] [blame] | 2766 | if (lock_stp == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2767 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2768 | } else { |
| 2769 | /* lock (lock owner + lock stateid) already exists */ |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2770 | status = nfs4_preprocess_seqid_op(&cstate->current_fh, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2771 | lock->lk_old_lock_seqid, |
| 2772 | &lock->lk_old_lock_stateid, |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 2773 | LOCK_STATE, |
J. Bruce Fields | 3a65588 | 2006-01-18 17:43:19 -0800 | [diff] [blame] | 2774 | &lock->lk_replay_owner, &lock_stp, lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2775 | if (status) |
| 2776 | goto out; |
J. Bruce Fields | 3a65588 | 2006-01-18 17:43:19 -0800 | [diff] [blame] | 2777 | lock_sop = lock->lk_replay_owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2778 | } |
J. Bruce Fields | 3a65588 | 2006-01-18 17:43:19 -0800 | [diff] [blame] | 2779 | /* lock->lk_replay_owner and lock_stp have been created or found */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2780 | filp = lock_stp->st_vfs_file; |
| 2781 | |
NeilBrown | 0dd395d | 2005-07-07 17:59:15 -0700 | [diff] [blame] | 2782 | status = nfserr_grace; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 2783 | if (locks_in_grace() && !lock->lk_reclaim) |
NeilBrown | 0dd395d | 2005-07-07 17:59:15 -0700 | [diff] [blame] | 2784 | goto out; |
| 2785 | status = nfserr_no_grace; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 2786 | if (!locks_in_grace() && lock->lk_reclaim) |
NeilBrown | 0dd395d | 2005-07-07 17:59:15 -0700 | [diff] [blame] | 2787 | goto out; |
| 2788 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2789 | locks_init_lock(&file_lock); |
| 2790 | switch (lock->lk_type) { |
| 2791 | case NFS4_READ_LT: |
| 2792 | case NFS4_READW_LT: |
| 2793 | file_lock.fl_type = F_RDLCK; |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 2794 | cmd = F_SETLK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2795 | break; |
| 2796 | case NFS4_WRITE_LT: |
| 2797 | case NFS4_WRITEW_LT: |
| 2798 | file_lock.fl_type = F_WRLCK; |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 2799 | cmd = F_SETLK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2800 | break; |
| 2801 | default: |
| 2802 | status = nfserr_inval; |
| 2803 | goto out; |
| 2804 | } |
Neil Brown | b59e3c0 | 2005-09-13 01:25:38 -0700 | [diff] [blame] | 2805 | file_lock.fl_owner = (fl_owner_t)lock_sop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2806 | file_lock.fl_pid = current->tgid; |
| 2807 | file_lock.fl_file = filp; |
| 2808 | file_lock.fl_flags = FL_POSIX; |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 2809 | file_lock.fl_lmops = &nfsd_posix_mng_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2810 | |
| 2811 | file_lock.fl_start = lock->lk_offset; |
Benny Halevy | 87df4de | 2008-12-15 19:42:03 +0200 | [diff] [blame] | 2812 | 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] | 2813 | nfs4_transform_lock_offset(&file_lock); |
| 2814 | |
| 2815 | /* |
| 2816 | * Try to lock the file in the VFS. |
| 2817 | * Note: locks.c uses the BKL to protect the inode's lock list. |
| 2818 | */ |
| 2819 | |
Marc Eshel | fd85b81 | 2006-11-28 16:26:41 -0500 | [diff] [blame] | 2820 | err = vfs_lock_file(filp, cmd, &file_lock, &conflock); |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 2821 | switch (-err) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2822 | case 0: /* success! */ |
| 2823 | update_stateid(&lock_stp->st_stateid); |
| 2824 | memcpy(&lock->lk_resp_stateid, &lock_stp->st_stateid, |
| 2825 | sizeof(stateid_t)); |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 2826 | status = 0; |
Andy Adamson | eb76b3f | 2006-03-26 01:37:26 -0800 | [diff] [blame] | 2827 | break; |
| 2828 | case (EAGAIN): /* conflock holds conflicting lock */ |
| 2829 | status = nfserr_denied; |
| 2830 | dprintk("NFSD: nfsd4_lock: conflicting lock found!\n"); |
| 2831 | nfs4_set_lock_denied(&conflock, &lock->lk_denied); |
| 2832 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2833 | case (EDEADLK): |
| 2834 | status = nfserr_deadlock; |
Andy Adamson | eb76b3f | 2006-03-26 01:37:26 -0800 | [diff] [blame] | 2835 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2836 | default: |
Marc Eshel | fd85b81 | 2006-11-28 16:26:41 -0500 | [diff] [blame] | 2837 | dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err); |
Andy Adamson | eb76b3f | 2006-03-26 01:37:26 -0800 | [diff] [blame] | 2838 | status = nfserr_resource; |
| 2839 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2840 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2841 | out: |
J. Bruce Fields | 8a28051 | 2006-01-18 17:43:18 -0800 | [diff] [blame] | 2842 | if (status && lock->lk_is_new && lock_sop) |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 2843 | release_lockowner(lock_sop); |
J. Bruce Fields | 3a65588 | 2006-01-18 17:43:19 -0800 | [diff] [blame] | 2844 | if (lock->lk_replay_owner) { |
| 2845 | nfs4_get_stateowner(lock->lk_replay_owner); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 2846 | cstate->replay_owner = lock->lk_replay_owner; |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 2847 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2848 | nfs4_unlock_state(); |
| 2849 | return status; |
| 2850 | } |
| 2851 | |
| 2852 | /* |
J. Bruce Fields | 55ef127 | 2008-12-20 11:58:38 -0800 | [diff] [blame] | 2853 | * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN, |
| 2854 | * so we do a temporary open here just to get an open file to pass to |
| 2855 | * vfs_test_lock. (Arguably perhaps test_lock should be done with an |
| 2856 | * inode operation.) |
| 2857 | */ |
| 2858 | static int nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock) |
| 2859 | { |
| 2860 | struct file *file; |
| 2861 | int err; |
| 2862 | |
| 2863 | err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file); |
| 2864 | if (err) |
| 2865 | return err; |
| 2866 | err = vfs_test_lock(file, lock); |
| 2867 | nfsd_close(file); |
| 2868 | return err; |
| 2869 | } |
| 2870 | |
| 2871 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2872 | * LOCKT operation |
| 2873 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2874 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2875 | nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 2876 | struct nfsd4_lockt *lockt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2877 | { |
| 2878 | struct inode *inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2879 | struct file_lock file_lock; |
Marc Eshel | fd85b81 | 2006-11-28 16:26:41 -0500 | [diff] [blame] | 2880 | int error; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2881 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2882 | |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 2883 | if (locks_in_grace()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2884 | return nfserr_grace; |
| 2885 | |
| 2886 | if (check_lock_length(lockt->lt_offset, lockt->lt_length)) |
| 2887 | return nfserr_inval; |
| 2888 | |
| 2889 | lockt->lt_stateowner = NULL; |
| 2890 | nfs4_lock_state(); |
| 2891 | |
| 2892 | status = nfserr_stale_clientid; |
Neil Brown | 849823c | 2005-09-13 01:25:36 -0700 | [diff] [blame] | 2893 | if (STALE_CLIENTID(&lockt->lt_clientid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2894 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2895 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2896 | if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0))) { |
Neil Brown | 849823c | 2005-09-13 01:25:36 -0700 | [diff] [blame] | 2897 | dprintk("NFSD: nfsd4_lockt: fh_verify() failed!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2898 | if (status == nfserr_symlink) |
| 2899 | status = nfserr_inval; |
| 2900 | goto out; |
| 2901 | } |
| 2902 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2903 | inode = cstate->current_fh.fh_dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2904 | locks_init_lock(&file_lock); |
| 2905 | switch (lockt->lt_type) { |
| 2906 | case NFS4_READ_LT: |
| 2907 | case NFS4_READW_LT: |
| 2908 | file_lock.fl_type = F_RDLCK; |
| 2909 | break; |
| 2910 | case NFS4_WRITE_LT: |
| 2911 | case NFS4_WRITEW_LT: |
| 2912 | file_lock.fl_type = F_WRLCK; |
| 2913 | break; |
| 2914 | default: |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 2915 | dprintk("NFSD: nfs4_lockt: bad lock type!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2916 | status = nfserr_inval; |
| 2917 | goto out; |
| 2918 | } |
| 2919 | |
| 2920 | lockt->lt_stateowner = find_lockstateowner_str(inode, |
| 2921 | &lockt->lt_clientid, &lockt->lt_owner); |
| 2922 | if (lockt->lt_stateowner) |
| 2923 | file_lock.fl_owner = (fl_owner_t)lockt->lt_stateowner; |
| 2924 | file_lock.fl_pid = current->tgid; |
| 2925 | file_lock.fl_flags = FL_POSIX; |
| 2926 | |
| 2927 | file_lock.fl_start = lockt->lt_offset; |
Benny Halevy | 87df4de | 2008-12-15 19:42:03 +0200 | [diff] [blame] | 2928 | 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] | 2929 | |
| 2930 | nfs4_transform_lock_offset(&file_lock); |
| 2931 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2932 | status = nfs_ok; |
J. Bruce Fields | 55ef127 | 2008-12-20 11:58:38 -0800 | [diff] [blame] | 2933 | error = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock); |
Marc Eshel | fd85b81 | 2006-11-28 16:26:41 -0500 | [diff] [blame] | 2934 | if (error) { |
| 2935 | status = nfserrno(error); |
| 2936 | goto out; |
| 2937 | } |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 2938 | if (file_lock.fl_type != F_UNLCK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2939 | status = nfserr_denied; |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 2940 | nfs4_set_lock_denied(&file_lock, &lockt->lt_denied); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2941 | } |
| 2942 | out: |
| 2943 | nfs4_unlock_state(); |
| 2944 | return status; |
| 2945 | } |
| 2946 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2947 | __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2948 | nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 2949 | struct nfsd4_locku *locku) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2950 | { |
| 2951 | struct nfs4_stateid *stp; |
| 2952 | struct file *filp = NULL; |
| 2953 | struct file_lock file_lock; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2954 | __be32 status; |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 2955 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2956 | |
| 2957 | dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n", |
| 2958 | (long long) locku->lu_offset, |
| 2959 | (long long) locku->lu_length); |
| 2960 | |
| 2961 | if (check_lock_length(locku->lu_offset, locku->lu_length)) |
| 2962 | return nfserr_inval; |
| 2963 | |
| 2964 | nfs4_lock_state(); |
| 2965 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 2966 | if ((status = nfs4_preprocess_seqid_op(&cstate->current_fh, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2967 | locku->lu_seqid, |
| 2968 | &locku->lu_stateid, |
J. Bruce Fields | f336273 | 2008-01-26 14:58:45 -0500 | [diff] [blame] | 2969 | LOCK_STATE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2970 | &locku->lu_stateowner, &stp, NULL))) |
| 2971 | goto out; |
| 2972 | |
| 2973 | filp = stp->st_vfs_file; |
| 2974 | BUG_ON(!filp); |
| 2975 | locks_init_lock(&file_lock); |
| 2976 | file_lock.fl_type = F_UNLCK; |
| 2977 | file_lock.fl_owner = (fl_owner_t) locku->lu_stateowner; |
| 2978 | file_lock.fl_pid = current->tgid; |
| 2979 | file_lock.fl_file = filp; |
| 2980 | file_lock.fl_flags = FL_POSIX; |
NeilBrown | d5b9026 | 2006-04-10 22:55:22 -0700 | [diff] [blame] | 2981 | file_lock.fl_lmops = &nfsd_posix_mng_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2982 | file_lock.fl_start = locku->lu_offset; |
| 2983 | |
Benny Halevy | 87df4de | 2008-12-15 19:42:03 +0200 | [diff] [blame] | 2984 | 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] | 2985 | nfs4_transform_lock_offset(&file_lock); |
| 2986 | |
| 2987 | /* |
| 2988 | * Try to unlock the file in the VFS. |
| 2989 | */ |
Marc Eshel | fd85b81 | 2006-11-28 16:26:41 -0500 | [diff] [blame] | 2990 | err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL); |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 2991 | if (err) { |
Marc Eshel | fd85b81 | 2006-11-28 16:26:41 -0500 | [diff] [blame] | 2992 | dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2993 | goto out_nfserr; |
| 2994 | } |
| 2995 | /* |
| 2996 | * OK, unlock succeeded; the only thing left to do is update the stateid. |
| 2997 | */ |
| 2998 | update_stateid(&stp->st_stateid); |
| 2999 | memcpy(&locku->lu_stateid, &stp->st_stateid, sizeof(stateid_t)); |
| 3000 | |
| 3001 | out: |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 3002 | if (locku->lu_stateowner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3003 | nfs4_get_stateowner(locku->lu_stateowner); |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 3004 | cstate->replay_owner = locku->lu_stateowner; |
Neil Brown | f2327d9 | 2005-09-13 01:25:37 -0700 | [diff] [blame] | 3005 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3006 | nfs4_unlock_state(); |
| 3007 | return status; |
| 3008 | |
| 3009 | out_nfserr: |
Al Viro | b8dd7b9 | 2006-10-19 23:29:01 -0700 | [diff] [blame] | 3010 | status = nfserrno(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3011 | goto out; |
| 3012 | } |
| 3013 | |
| 3014 | /* |
| 3015 | * returns |
| 3016 | * 1: locks held by lockowner |
| 3017 | * 0: no locks held by lockowner |
| 3018 | */ |
| 3019 | static int |
| 3020 | check_for_locks(struct file *filp, struct nfs4_stateowner *lowner) |
| 3021 | { |
| 3022 | struct file_lock **flpp; |
Josef "Jeff" Sipek | 7eaa36e | 2006-12-08 02:36:41 -0800 | [diff] [blame] | 3023 | struct inode *inode = filp->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3024 | int status = 0; |
| 3025 | |
| 3026 | lock_kernel(); |
| 3027 | for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) { |
J. Bruce Fields | 796dadf | 2006-01-18 17:43:22 -0800 | [diff] [blame] | 3028 | if ((*flpp)->fl_owner == (fl_owner_t)lowner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3029 | status = 1; |
| 3030 | goto out; |
J. Bruce Fields | 796dadf | 2006-01-18 17:43:22 -0800 | [diff] [blame] | 3031 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3032 | } |
| 3033 | out: |
| 3034 | unlock_kernel(); |
| 3035 | return status; |
| 3036 | } |
| 3037 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3038 | __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 3039 | nfsd4_release_lockowner(struct svc_rqst *rqstp, |
| 3040 | struct nfsd4_compound_state *cstate, |
| 3041 | struct nfsd4_release_lockowner *rlockowner) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3042 | { |
| 3043 | clientid_t *clid = &rlockowner->rl_clientid; |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 3044 | struct nfs4_stateowner *sop; |
| 3045 | struct nfs4_stateid *stp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3046 | struct xdr_netobj *owner = &rlockowner->rl_owner; |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 3047 | struct list_head matches; |
| 3048 | int i; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3049 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3050 | |
| 3051 | dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n", |
| 3052 | clid->cl_boot, clid->cl_id); |
| 3053 | |
| 3054 | /* XXX check for lease expiration */ |
| 3055 | |
| 3056 | status = nfserr_stale_clientid; |
Neil Brown | 849823c | 2005-09-13 01:25:36 -0700 | [diff] [blame] | 3057 | if (STALE_CLIENTID(clid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3058 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3059 | |
| 3060 | nfs4_lock_state(); |
| 3061 | |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 3062 | status = nfserr_locks_held; |
| 3063 | /* XXX: we're doing a linear search through all the lockowners. |
| 3064 | * Yipes! For now we'll just hope clients aren't really using |
| 3065 | * release_lockowner much, but eventually we have to fix these |
| 3066 | * data structures. */ |
| 3067 | INIT_LIST_HEAD(&matches); |
| 3068 | for (i = 0; i < LOCK_HASH_SIZE; i++) { |
| 3069 | list_for_each_entry(sop, &lock_ownerid_hashtbl[i], so_idhash) { |
J. Bruce Fields | 599e0a2 | 2007-07-26 17:04:54 -0400 | [diff] [blame] | 3070 | if (!same_owner_str(sop, owner, clid)) |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 3071 | continue; |
| 3072 | list_for_each_entry(stp, &sop->so_stateids, |
| 3073 | st_perstateowner) { |
| 3074 | if (check_for_locks(stp->st_vfs_file, sop)) |
| 3075 | goto out; |
| 3076 | /* Note: so_perclient unused for lockowners, |
| 3077 | * so it's OK to fool with here. */ |
| 3078 | list_add(&sop->so_perclient, &matches); |
| 3079 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3080 | } |
NeilBrown | 3e9e3db | 2005-06-23 22:04:20 -0700 | [diff] [blame] | 3081 | } |
| 3082 | /* Clients probably won't expect us to return with some (but not all) |
| 3083 | * of the lockowner state released; so don't release any until all |
| 3084 | * have been checked. */ |
| 3085 | status = nfs_ok; |
NeilBrown | 0fa822e | 2005-07-07 17:59:14 -0700 | [diff] [blame] | 3086 | while (!list_empty(&matches)) { |
| 3087 | sop = list_entry(matches.next, struct nfs4_stateowner, |
| 3088 | so_perclient); |
| 3089 | /* unhash_stateowner deletes so_perclient only |
| 3090 | * for openowners. */ |
| 3091 | list_del(&sop->so_perclient); |
J. Bruce Fields | f044ff8 | 2009-01-11 15:24:04 -0500 | [diff] [blame] | 3092 | release_lockowner(sop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3093 | } |
| 3094 | out: |
| 3095 | nfs4_unlock_state(); |
| 3096 | return status; |
| 3097 | } |
| 3098 | |
| 3099 | static inline struct nfs4_client_reclaim * |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 3100 | alloc_reclaim(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3101 | { |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 3102 | return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3103 | } |
| 3104 | |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 3105 | int |
| 3106 | nfs4_has_reclaimed_state(const char *name) |
| 3107 | { |
| 3108 | unsigned int strhashval = clientstr_hashval(name); |
| 3109 | struct nfs4_client *clp; |
| 3110 | |
| 3111 | clp = find_confirmed_client_by_str(name, strhashval); |
| 3112 | return clp ? 1 : 0; |
| 3113 | } |
| 3114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3115 | /* |
| 3116 | * failure => all reset bets are off, nfserr_no_grace... |
| 3117 | */ |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 3118 | int |
| 3119 | nfs4_client_to_reclaim(const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3120 | { |
| 3121 | unsigned int strhashval; |
| 3122 | struct nfs4_client_reclaim *crp = NULL; |
| 3123 | |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 3124 | dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name); |
| 3125 | crp = alloc_reclaim(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3126 | if (!crp) |
| 3127 | return 0; |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 3128 | strhashval = clientstr_hashval(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3129 | INIT_LIST_HEAD(&crp->cr_strhash); |
| 3130 | list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 3131 | memcpy(crp->cr_recdir, name, HEXDIR_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3132 | reclaim_str_hashtbl_size++; |
| 3133 | return 1; |
| 3134 | } |
| 3135 | |
| 3136 | static void |
| 3137 | nfs4_release_reclaim(void) |
| 3138 | { |
| 3139 | struct nfs4_client_reclaim *crp = NULL; |
| 3140 | int i; |
| 3141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3142 | for (i = 0; i < CLIENT_HASH_SIZE; i++) { |
| 3143 | while (!list_empty(&reclaim_str_hashtbl[i])) { |
| 3144 | crp = list_entry(reclaim_str_hashtbl[i].next, |
| 3145 | struct nfs4_client_reclaim, cr_strhash); |
| 3146 | list_del(&crp->cr_strhash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3147 | kfree(crp); |
| 3148 | reclaim_str_hashtbl_size--; |
| 3149 | } |
| 3150 | } |
| 3151 | BUG_ON(reclaim_str_hashtbl_size); |
| 3152 | } |
| 3153 | |
| 3154 | /* |
| 3155 | * called from OPEN, CLAIM_PREVIOUS with a new clientid. */ |
NeilBrown | fd39ca9 | 2005-06-23 22:04:03 -0700 | [diff] [blame] | 3156 | static struct nfs4_client_reclaim * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3157 | nfs4_find_reclaim_client(clientid_t *clid) |
| 3158 | { |
| 3159 | unsigned int strhashval; |
| 3160 | struct nfs4_client *clp; |
| 3161 | struct nfs4_client_reclaim *crp = NULL; |
| 3162 | |
| 3163 | |
| 3164 | /* find clientid in conf_id_hashtbl */ |
| 3165 | clp = find_confirmed_client(clid); |
| 3166 | if (clp == NULL) |
| 3167 | return NULL; |
| 3168 | |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 3169 | dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n", |
| 3170 | clp->cl_name.len, clp->cl_name.data, |
| 3171 | clp->cl_recdir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3172 | |
| 3173 | /* find clp->cl_name in reclaim_str_hashtbl */ |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 3174 | strhashval = clientstr_hashval(clp->cl_recdir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3175 | list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) { |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 3176 | if (same_name(crp->cr_recdir, clp->cl_recdir)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3177 | return crp; |
| 3178 | } |
| 3179 | } |
| 3180 | return NULL; |
| 3181 | } |
| 3182 | |
| 3183 | /* |
| 3184 | * Called from OPEN. Look for clientid in reclaim list. |
| 3185 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 3186 | __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3187 | nfs4_check_open_reclaim(clientid_t *clid) |
| 3188 | { |
NeilBrown | dfc8356 | 2005-06-23 22:03:16 -0700 | [diff] [blame] | 3189 | return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3190 | } |
| 3191 | |
NeilBrown | ac4d8ff2 | 2005-06-23 22:03:30 -0700 | [diff] [blame] | 3192 | /* initialization to perform at module load time: */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3193 | |
J. Bruce Fields | e8ff2a8 | 2007-08-01 15:30:59 -0400 | [diff] [blame] | 3194 | int |
NeilBrown | ac4d8ff2 | 2005-06-23 22:03:30 -0700 | [diff] [blame] | 3195 | nfs4_state_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3196 | { |
J. Bruce Fields | e8ff2a8 | 2007-08-01 15:30:59 -0400 | [diff] [blame] | 3197 | int i, status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3198 | |
J. Bruce Fields | e8ff2a8 | 2007-08-01 15:30:59 -0400 | [diff] [blame] | 3199 | status = nfsd4_init_slabs(); |
| 3200 | if (status) |
| 3201 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3202 | for (i = 0; i < CLIENT_HASH_SIZE; i++) { |
| 3203 | INIT_LIST_HEAD(&conf_id_hashtbl[i]); |
| 3204 | INIT_LIST_HEAD(&conf_str_hashtbl[i]); |
| 3205 | INIT_LIST_HEAD(&unconf_str_hashtbl[i]); |
| 3206 | INIT_LIST_HEAD(&unconf_id_hashtbl[i]); |
| 3207 | } |
| 3208 | for (i = 0; i < FILE_HASH_SIZE; i++) { |
| 3209 | INIT_LIST_HEAD(&file_hashtbl[i]); |
| 3210 | } |
| 3211 | for (i = 0; i < OWNER_HASH_SIZE; i++) { |
| 3212 | INIT_LIST_HEAD(&ownerstr_hashtbl[i]); |
| 3213 | INIT_LIST_HEAD(&ownerid_hashtbl[i]); |
| 3214 | } |
| 3215 | for (i = 0; i < STATEID_HASH_SIZE; i++) { |
| 3216 | INIT_LIST_HEAD(&stateid_hashtbl[i]); |
| 3217 | INIT_LIST_HEAD(&lockstateid_hashtbl[i]); |
| 3218 | } |
| 3219 | for (i = 0; i < LOCK_HASH_SIZE; i++) { |
| 3220 | INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]); |
| 3221 | INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]); |
| 3222 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3223 | memset(&onestateid, ~0, sizeof(stateid_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3224 | INIT_LIST_HEAD(&close_lru); |
| 3225 | INIT_LIST_HEAD(&client_lru); |
| 3226 | INIT_LIST_HEAD(&del_recall_lru); |
NeilBrown | ac4d8ff2 | 2005-06-23 22:03:30 -0700 | [diff] [blame] | 3227 | for (i = 0; i < CLIENT_HASH_SIZE; i++) |
| 3228 | INIT_LIST_HEAD(&reclaim_str_hashtbl[i]); |
| 3229 | reclaim_str_hashtbl_size = 0; |
J. Bruce Fields | e8ff2a8 | 2007-08-01 15:30:59 -0400 | [diff] [blame] | 3230 | return 0; |
NeilBrown | ac4d8ff2 | 2005-06-23 22:03:30 -0700 | [diff] [blame] | 3231 | } |
| 3232 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 3233 | static void |
| 3234 | nfsd4_load_reboot_recovery_data(void) |
| 3235 | { |
| 3236 | int status; |
| 3237 | |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 3238 | nfs4_lock_state(); |
| 3239 | nfsd4_init_recdir(user_recovery_dirname); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 3240 | status = nfsd4_recdir_load(); |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 3241 | nfs4_unlock_state(); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 3242 | if (status) |
| 3243 | printk("NFSD: Failure reading reboot recovery data\n"); |
| 3244 | } |
| 3245 | |
Marc Eshel | 9a8db97 | 2007-07-17 04:04:35 -0700 | [diff] [blame] | 3246 | unsigned long |
| 3247 | get_nfs4_grace_period(void) |
| 3248 | { |
| 3249 | return max(user_lease_time, lease_time) * HZ; |
| 3250 | } |
| 3251 | |
Meelap Shah | c2f1a55 | 2007-07-17 04:04:39 -0700 | [diff] [blame] | 3252 | /* |
| 3253 | * Since the lifetime of a delegation isn't limited to that of an open, a |
| 3254 | * client may quite reasonably hang on to a delegation as long as it has |
| 3255 | * the inode cached. This becomes an obvious problem the first time a |
| 3256 | * client's inode cache approaches the size of the server's total memory. |
| 3257 | * |
| 3258 | * For now we avoid this problem by imposing a hard limit on the number |
| 3259 | * of delegations, which varies according to the server's memory size. |
| 3260 | */ |
| 3261 | static void |
| 3262 | set_max_delegations(void) |
| 3263 | { |
| 3264 | /* |
| 3265 | * Allow at most 4 delegations per megabyte of RAM. Quick |
| 3266 | * estimates suggest that in the worst case (where every delegation |
| 3267 | * is for a different inode), a delegation could take about 1.5K, |
| 3268 | * giving a worst case usage of about 6% of memory. |
| 3269 | */ |
| 3270 | max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT); |
| 3271 | } |
| 3272 | |
NeilBrown | ac4d8ff2 | 2005-06-23 22:03:30 -0700 | [diff] [blame] | 3273 | /* initialization to perform when the nfsd service is started: */ |
| 3274 | |
| 3275 | static void |
| 3276 | __nfs4_state_start(void) |
| 3277 | { |
Marc Eshel | 9a8db97 | 2007-07-17 04:04:35 -0700 | [diff] [blame] | 3278 | unsigned long grace_time; |
NeilBrown | ac4d8ff2 | 2005-06-23 22:03:30 -0700 | [diff] [blame] | 3279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3280 | boot_time = get_seconds(); |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 3281 | grace_time = get_nfs4_grace_period(); |
NeilBrown | d99a05a | 2005-06-23 22:03:21 -0700 | [diff] [blame] | 3282 | lease_time = user_lease_time; |
J. Bruce Fields | af558e3 | 2007-09-06 12:34:25 -0400 | [diff] [blame] | 3283 | locks_start_grace(&nfsd4_manager); |
Marc Eshel | 9a8db97 | 2007-07-17 04:04:35 -0700 | [diff] [blame] | 3284 | printk(KERN_INFO "NFSD: starting %ld-second grace period\n", |
| 3285 | grace_time/HZ); |
NeilBrown | 58da282 | 2005-06-23 22:03:19 -0700 | [diff] [blame] | 3286 | laundry_wq = create_singlethread_workqueue("nfsd4"); |
Marc Eshel | 9a8db97 | 2007-07-17 04:04:35 -0700 | [diff] [blame] | 3287 | queue_delayed_work(laundry_wq, &laundromat_work, grace_time); |
Meelap Shah | c2f1a55 | 2007-07-17 04:04:39 -0700 | [diff] [blame] | 3288 | set_max_delegations(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3289 | } |
| 3290 | |
J. Bruce Fields | e8ff2a8 | 2007-08-01 15:30:59 -0400 | [diff] [blame] | 3291 | void |
NeilBrown | 76a3550 | 2005-06-23 22:03:26 -0700 | [diff] [blame] | 3292 | nfs4_state_start(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3293 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3294 | if (nfs4_init) |
J. Bruce Fields | e8ff2a8 | 2007-08-01 15:30:59 -0400 | [diff] [blame] | 3295 | return; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 3296 | nfsd4_load_reboot_recovery_data(); |
NeilBrown | 76a3550 | 2005-06-23 22:03:26 -0700 | [diff] [blame] | 3297 | __nfs4_state_start(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3298 | nfs4_init = 1; |
J. Bruce Fields | e8ff2a8 | 2007-08-01 15:30:59 -0400 | [diff] [blame] | 3299 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3300 | } |
| 3301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3302 | time_t |
| 3303 | nfs4_lease_time(void) |
| 3304 | { |
| 3305 | return lease_time; |
| 3306 | } |
| 3307 | |
| 3308 | static void |
| 3309 | __nfs4_state_shutdown(void) |
| 3310 | { |
| 3311 | int i; |
| 3312 | struct nfs4_client *clp = NULL; |
| 3313 | struct nfs4_delegation *dp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3314 | struct list_head *pos, *next, reaplist; |
| 3315 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3316 | for (i = 0; i < CLIENT_HASH_SIZE; i++) { |
| 3317 | while (!list_empty(&conf_id_hashtbl[i])) { |
| 3318 | clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash); |
| 3319 | expire_client(clp); |
| 3320 | } |
| 3321 | while (!list_empty(&unconf_str_hashtbl[i])) { |
| 3322 | clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash); |
| 3323 | expire_client(clp); |
| 3324 | } |
| 3325 | } |
| 3326 | INIT_LIST_HEAD(&reaplist); |
| 3327 | spin_lock(&recall_lock); |
| 3328 | list_for_each_safe(pos, next, &del_recall_lru) { |
| 3329 | dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru); |
| 3330 | list_move(&dp->dl_recall_lru, &reaplist); |
| 3331 | } |
| 3332 | spin_unlock(&recall_lock); |
| 3333 | list_for_each_safe(pos, next, &reaplist) { |
| 3334 | dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru); |
| 3335 | list_del_init(&dp->dl_recall_lru); |
| 3336 | unhash_delegation(dp); |
| 3337 | } |
| 3338 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 3339 | nfsd4_shutdown_recdir(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3340 | nfs4_init = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3341 | } |
| 3342 | |
| 3343 | void |
| 3344 | nfs4_state_shutdown(void) |
| 3345 | { |
NeilBrown | 5e8d5c2 | 2006-04-10 22:55:37 -0700 | [diff] [blame] | 3346 | cancel_rearming_delayed_workqueue(laundry_wq, &laundromat_work); |
| 3347 | destroy_workqueue(laundry_wq); |
J. Bruce Fields | 2c5e761 | 2008-11-20 14:36:17 -0600 | [diff] [blame] | 3348 | locks_end_grace(&nfsd4_manager); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3349 | nfs4_lock_state(); |
| 3350 | nfs4_release_reclaim(); |
| 3351 | __nfs4_state_shutdown(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3352 | nfs4_unlock_state(); |
| 3353 | } |
| 3354 | |
Jeff Layton | 3dd98a3 | 2008-06-10 08:40:36 -0400 | [diff] [blame] | 3355 | /* |
| 3356 | * user_recovery_dirname is protected by the nfsd_mutex since it's only |
| 3357 | * accessed when nfsd is starting. |
| 3358 | */ |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 3359 | static void |
| 3360 | nfs4_set_recdir(char *recdir) |
| 3361 | { |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 3362 | strcpy(user_recovery_dirname, recdir); |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 3363 | } |
| 3364 | |
| 3365 | /* |
| 3366 | * Change the NFSv4 recovery directory to recdir. |
| 3367 | */ |
| 3368 | int |
| 3369 | nfs4_reset_recoverydir(char *recdir) |
| 3370 | { |
| 3371 | int status; |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 3372 | struct path path; |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 3373 | |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 3374 | status = kern_path(recdir, LOOKUP_FOLLOW, &path); |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 3375 | if (status) |
| 3376 | return status; |
| 3377 | status = -ENOTDIR; |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 3378 | if (S_ISDIR(path.dentry->d_inode->i_mode)) { |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 3379 | nfs4_set_recdir(recdir); |
| 3380 | status = 0; |
| 3381 | } |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 3382 | path_put(&path); |
NeilBrown | 0964a3d | 2005-06-23 22:04:32 -0700 | [diff] [blame] | 3383 | return status; |
| 3384 | } |
| 3385 | |
Jeff Layton | 3dd98a3 | 2008-06-10 08:40:36 -0400 | [diff] [blame] | 3386 | char * |
| 3387 | nfs4_recoverydir(void) |
| 3388 | { |
| 3389 | return user_recovery_dirname; |
| 3390 | } |
| 3391 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3392 | /* |
| 3393 | * Called when leasetime is changed. |
| 3394 | * |
NeilBrown | d99a05a | 2005-06-23 22:03:21 -0700 | [diff] [blame] | 3395 | * The only way the protocol gives us to handle on-the-fly lease changes is to |
| 3396 | * simulate a reboot. Instead of doing that, we just wait till the next time |
| 3397 | * we start to register any changes in lease time. If the administrator |
| 3398 | * really wants to change the lease time *now*, they can go ahead and bring |
| 3399 | * nfsd down and then back up again after changing the lease time. |
Jeff Layton | 3dd98a3 | 2008-06-10 08:40:36 -0400 | [diff] [blame] | 3400 | * |
| 3401 | * user_lease_time is protected by nfsd_mutex since it's only really accessed |
| 3402 | * when nfsd is starting |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3403 | */ |
| 3404 | void |
| 3405 | nfs4_reset_lease(time_t leasetime) |
| 3406 | { |
NeilBrown | d99a05a | 2005-06-23 22:03:21 -0700 | [diff] [blame] | 3407 | user_lease_time = leasetime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3408 | } |