blob: 78936a8f40ab43583dc5bdda2c06e433e294404b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfs/nfs4proc.c
3 *
4 * Client-side procedure declarations for NFSv4.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/delay.h>
40#include <linux/errno.h>
41#include <linux/string.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/sunrpc/clnt.h>
44#include <linux/nfs.h>
45#include <linux/nfs4.h>
46#include <linux/nfs_fs.h>
47#include <linux/nfs_page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/namei.h>
Trond Myklebust02a913a2005-10-18 14:20:17 -070049#include <linux/mount.h>
Benny Halevy99fe60d2009-04-01 09:22:29 -040050#include <linux/module.h>
Andy Adamson5a0ffe52009-04-01 09:23:18 -040051#include <linux/sunrpc/bc_xprt.h>
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +000052#include <linux/xattr.h>
Andy Adamsonc7a360b2011-01-25 19:15:32 -050053#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Trond Myklebust4ce79712005-06-22 17:16:21 +000055#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include "delegation.h"
Trond Myklebust101070c2008-02-19 20:04:23 -050057#include "internal.h"
Chuck Lever006ea732006-03-20 13:44:14 -050058#include "iostat.h"
Andy Adamsonfc931582009-04-01 09:22:31 -040059#include "callback.h"
Andy Adamsonb1f69b72010-10-20 00:18:03 -040060#include "pnfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#define NFSDBG_FACILITY NFSDBG_PROC
63
Trond Myklebust2066fe82006-09-15 08:30:46 -040064#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define NFS4_POLL_RETRY_MAX (15*HZ)
66
Trond Myklebusta78cb572009-08-09 15:06:19 -040067#define NFS4_MAX_LOOP_ON_RECOVER (10)
68
Trond Myklebustcdd4e682006-01-03 09:55:12 +010069struct nfs4_opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +010070static int _nfs4_proc_open(struct nfs4_opendata *data);
Alexandros Batsakisb2579572009-12-14 21:27:57 -080071static int _nfs4_recover_proc_open(struct nfs4_opendata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
Trond Myklebust9e33bed2008-12-23 15:21:46 -050073static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *, struct nfs4_state *);
Trond Myklebust99367812007-07-17 21:52:41 -040074static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
75static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
Trond Myklebust0ab64e02010-04-16 16:22:51 -040076static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
77 struct nfs_fattr *fattr, struct iattr *sattr,
78 struct nfs4_state *state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/* Prevent leaks of NFSv4 errors into userland */
WANG Cong46f72f52008-12-30 16:35:55 -050081static int nfs4_map_errors(int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Trond Myklebust52567b02009-10-23 14:46:42 -040083 if (err >= -1000)
84 return err;
85 switch (err) {
86 case -NFS4ERR_RESOURCE:
87 return -EREMOTEIO;
88 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 dprintk("%s could not handle NFSv4 error %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -070090 __func__, -err);
Trond Myklebust52567b02009-10-23 14:46:42 -040091 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
Trond Myklebust52567b02009-10-23 14:46:42 -040093 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
96/*
97 * This is our standard bitmap for GETATTR requests.
98 */
99const u32 nfs4_fattr_bitmap[2] = {
100 FATTR4_WORD0_TYPE
101 | FATTR4_WORD0_CHANGE
102 | FATTR4_WORD0_SIZE
103 | FATTR4_WORD0_FSID
104 | FATTR4_WORD0_FILEID,
105 FATTR4_WORD1_MODE
106 | FATTR4_WORD1_NUMLINKS
107 | FATTR4_WORD1_OWNER
108 | FATTR4_WORD1_OWNER_GROUP
109 | FATTR4_WORD1_RAWDEV
110 | FATTR4_WORD1_SPACE_USED
111 | FATTR4_WORD1_TIME_ACCESS
112 | FATTR4_WORD1_TIME_METADATA
113 | FATTR4_WORD1_TIME_MODIFY
114};
115
116const u32 nfs4_statfs_bitmap[2] = {
117 FATTR4_WORD0_FILES_AVAIL
118 | FATTR4_WORD0_FILES_FREE
119 | FATTR4_WORD0_FILES_TOTAL,
120 FATTR4_WORD1_SPACE_AVAIL
121 | FATTR4_WORD1_SPACE_FREE
122 | FATTR4_WORD1_SPACE_TOTAL
123};
124
Trond Myklebust4ce79712005-06-22 17:16:21 +0000125const u32 nfs4_pathconf_bitmap[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 FATTR4_WORD0_MAXLINK
127 | FATTR4_WORD0_MAXNAME,
128 0
129};
130
131const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
132 | FATTR4_WORD0_MAXREAD
133 | FATTR4_WORD0_MAXWRITE
134 | FATTR4_WORD0_LEASE_TIME,
Ricardo Labiaga55b6e772010-10-12 16:30:06 -0700135 FATTR4_WORD1_TIME_DELTA
Andy Adamson504913f2010-10-20 00:17:57 -0400136 | FATTR4_WORD1_FS_LAYOUT_TYPES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137};
138
Manoj Naik830b8e32006-06-09 09:34:25 -0400139const u32 nfs4_fs_locations_bitmap[2] = {
140 FATTR4_WORD0_TYPE
141 | FATTR4_WORD0_CHANGE
142 | FATTR4_WORD0_SIZE
143 | FATTR4_WORD0_FSID
144 | FATTR4_WORD0_FILEID
145 | FATTR4_WORD0_FS_LOCATIONS,
146 FATTR4_WORD1_MODE
147 | FATTR4_WORD1_NUMLINKS
148 | FATTR4_WORD1_OWNER
149 | FATTR4_WORD1_OWNER_GROUP
150 | FATTR4_WORD1_RAWDEV
151 | FATTR4_WORD1_SPACE_USED
152 | FATTR4_WORD1_TIME_ACCESS
153 | FATTR4_WORD1_TIME_METADATA
154 | FATTR4_WORD1_TIME_MODIFY
155 | FATTR4_WORD1_MOUNTED_ON_FILEID
156};
157
Al Virobc4785c2006-10-19 23:28:51 -0700158static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 struct nfs4_readdir_arg *readdir)
160{
Al Viro0dbb4c62006-10-19 23:28:49 -0700161 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 BUG_ON(readdir->count < 80);
164 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000165 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
167 return;
168 }
169
170 readdir->cookie = 0;
171 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
172 if (cookie == 2)
173 return;
174
175 /*
176 * NFSv4 servers do not return entries for '.' and '..'
177 * Therefore, we fake these entries here. We let '.'
178 * have cookie 0 and '..' have cookie 1. Note that
179 * when talking to the server, we always send cookie 0
180 * instead of 1 or 2.
181 */
Al Viro0dbb4c62006-10-19 23:28:49 -0700182 start = p = kmap_atomic(*readdir->pages, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 if (cookie == 0) {
185 *p++ = xdr_one; /* next */
186 *p++ = xdr_zero; /* cookie, first word */
187 *p++ = xdr_one; /* cookie, second word */
188 *p++ = xdr_one; /* entry len */
189 memcpy(p, ".\0\0\0", 4); /* entry */
190 p++;
191 *p++ = xdr_one; /* bitmap length */
192 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
193 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400194 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196
197 *p++ = xdr_one; /* next */
198 *p++ = xdr_zero; /* cookie, first word */
199 *p++ = xdr_two; /* cookie, second word */
200 *p++ = xdr_two; /* entry len */
201 memcpy(p, "..\0\0", 4); /* entry */
202 p++;
203 *p++ = xdr_one; /* bitmap length */
204 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
205 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400206 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 readdir->pgbase = (char *)p - (char *)start;
209 readdir->count -= readdir->pgbase;
210 kunmap_atomic(start, KM_USER0);
211}
212
Trond Myklebust65de8722008-12-23 15:21:44 -0500213static int nfs4_wait_clnt_recover(struct nfs_client *clp)
214{
215 int res;
216
217 might_sleep();
218
Trond Myklebuste005e802008-12-23 15:21:48 -0500219 res = wait_on_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400220 nfs_wait_bit_killable, TASK_KILLABLE);
Trond Myklebust65de8722008-12-23 15:21:44 -0500221 return res;
222}
223
224static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
225{
226 int res = 0;
227
228 might_sleep();
229
230 if (*timeout <= 0)
231 *timeout = NFS4_POLL_RETRY_MIN;
232 if (*timeout > NFS4_POLL_RETRY_MAX)
233 *timeout = NFS4_POLL_RETRY_MAX;
234 schedule_timeout_killable(*timeout);
235 if (fatal_signal_pending(current))
236 res = -ERESTARTSYS;
237 *timeout <<= 1;
238 return res;
239}
240
241/* This is the error handling routine for processes that are allowed
242 * to sleep.
243 */
244static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
245{
246 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500247 struct nfs4_state *state = exception->state;
Trond Myklebust65de8722008-12-23 15:21:44 -0500248 int ret = errorcode;
249
250 exception->retry = 0;
251 switch(errorcode) {
252 case 0:
253 return 0;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500254 case -NFS4ERR_ADMIN_REVOKED:
255 case -NFS4ERR_BAD_STATEID:
256 case -NFS4ERR_OPENMODE:
257 if (state == NULL)
258 break;
259 nfs4_state_mark_reclaim_nograce(clp, state);
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500260 goto do_state_recovery;
Trond Myklebust65de8722008-12-23 15:21:44 -0500261 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500262 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust65de8722008-12-23 15:21:44 -0500263 case -NFS4ERR_EXPIRED:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500264 goto do_state_recovery;
Trond Myklebust03391692010-01-26 15:42:38 -0500265#if defined(CONFIG_NFS_V4_1)
Andy Adamson4745e312009-04-01 09:22:42 -0400266 case -NFS4ERR_BADSESSION:
267 case -NFS4ERR_BADSLOT:
268 case -NFS4ERR_BAD_HIGH_SLOT:
269 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
270 case -NFS4ERR_DEADSESSION:
271 case -NFS4ERR_SEQ_FALSE_RETRY:
272 case -NFS4ERR_SEQ_MISORDERED:
273 dprintk("%s ERROR: %d Reset session\n", __func__,
274 errorcode);
Andy Adamson0b9e2d42009-12-04 16:02:14 -0500275 nfs4_schedule_state_recovery(clp);
Andy Adamson4745e312009-04-01 09:22:42 -0400276 exception->retry = 1;
Andy Adamsonb9179232009-12-04 15:55:32 -0500277 break;
Trond Myklebust03391692010-01-26 15:42:38 -0500278#endif /* defined(CONFIG_NFS_V4_1) */
Trond Myklebust65de8722008-12-23 15:21:44 -0500279 case -NFS4ERR_FILE_OPEN:
NeilBrown44ed3552009-12-03 15:58:56 -0500280 if (exception->timeout > HZ) {
281 /* We have retried a decent amount, time to
282 * fail
283 */
284 ret = -EBUSY;
285 break;
286 }
Trond Myklebust65de8722008-12-23 15:21:44 -0500287 case -NFS4ERR_GRACE:
288 case -NFS4ERR_DELAY:
Jeff Layton2c643482010-01-07 09:42:03 -0500289 case -EKEYEXPIRED:
Trond Myklebust65de8722008-12-23 15:21:44 -0500290 ret = nfs4_delay(server->client, &exception->timeout);
291 if (ret != 0)
292 break;
293 case -NFS4ERR_OLD_STATEID:
294 exception->retry = 1;
295 }
296 /* We failed to handle the error */
297 return nfs4_map_errors(ret);
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500298do_state_recovery:
299 nfs4_schedule_state_recovery(clp);
300 ret = nfs4_wait_clnt_recover(clp);
301 if (ret == 0)
302 exception->retry = 1;
303 return ret;
Trond Myklebust65de8722008-12-23 15:21:44 -0500304}
305
306
Trond Myklebust452e9352010-07-31 14:29:06 -0400307static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 spin_lock(&clp->cl_lock);
310 if (time_before(clp->cl_last_renewal,timestamp))
311 clp->cl_last_renewal = timestamp;
312 spin_unlock(&clp->cl_lock);
313}
314
Trond Myklebust452e9352010-07-31 14:29:06 -0400315static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
316{
317 do_renew_lease(server->nfs_client, timestamp);
318}
319
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400320#if defined(CONFIG_NFS_V4_1)
321
Benny Halevy510b8172009-04-01 09:22:14 -0400322/*
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400323 * nfs4_free_slot - free a slot and efficiently update slot table.
324 *
325 * freeing a slot is trivially done by clearing its respective bit
326 * in the bitmap.
327 * If the freed slotid equals highest_used_slotid we want to update it
328 * so that the server would be able to size down the slot table if needed,
329 * otherwise we know that the highest_used_slotid is still in use.
330 * When updating highest_used_slotid there may be "holes" in the bitmap
331 * so we need to scan down from highest_used_slotid to 0 looking for the now
332 * highest slotid in use.
333 * If none found, highest_used_slotid is set to -1.
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500334 *
335 * Must be called while holding tbl->slot_tbl_lock
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400336 */
337static void
Benny Halevydfb4f3092010-09-24 09:17:01 -0400338nfs4_free_slot(struct nfs4_slot_table *tbl, struct nfs4_slot *free_slot)
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400339{
Benny Halevydfb4f3092010-09-24 09:17:01 -0400340 int free_slotid = free_slot - tbl->slots;
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400341 int slotid = free_slotid;
342
Benny Halevydfb4f3092010-09-24 09:17:01 -0400343 BUG_ON(slotid < 0 || slotid >= NFS4_MAX_SLOT_TABLE);
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400344 /* clear used bit in bitmap */
345 __clear_bit(slotid, tbl->used_slots);
346
347 /* update highest_used_slotid when it is freed */
348 if (slotid == tbl->highest_used_slotid) {
349 slotid = find_last_bit(tbl->used_slots, tbl->max_slots);
Trond Myklebustbcb56162009-12-05 19:32:19 -0500350 if (slotid < tbl->max_slots)
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400351 tbl->highest_used_slotid = slotid;
352 else
353 tbl->highest_used_slotid = -1;
354 }
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400355 dprintk("%s: free_slotid %u highest_used_slotid %d\n", __func__,
356 free_slotid, tbl->highest_used_slotid);
357}
358
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800359/*
Andy Adamson42acd022011-01-06 02:04:34 +0000360 * Signal state manager thread if session fore channel is drained
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800361 */
Andy Adamson42acd022011-01-06 02:04:34 +0000362static void nfs4_check_drain_fc_complete(struct nfs4_session *ses)
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800363{
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800364 struct rpc_task *task;
365
Trond Myklebusta2118c32010-06-16 09:52:26 -0400366 if (!test_bit(NFS4_SESSION_DRAINING, &ses->session_state)) {
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800367 task = rpc_wake_up_next(&ses->fc_slot_table.slot_tbl_waitq);
368 if (task)
369 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800370 return;
371 }
372
373 if (ses->fc_slot_table.highest_used_slotid != -1)
374 return;
375
Andy Adamson42acd022011-01-06 02:04:34 +0000376 dprintk("%s COMPLETE: Session Fore Channel Drained\n", __func__);
377 complete(&ses->fc_slot_table.complete);
378}
379
380/*
381 * Signal state manager thread if session back channel is drained
382 */
383void nfs4_check_drain_bc_complete(struct nfs4_session *ses)
384{
385 if (!test_bit(NFS4_SESSION_DRAINING, &ses->session_state) ||
386 ses->bc_slot_table.highest_used_slotid != -1)
387 return;
388 dprintk("%s COMPLETE: Session Back Channel Drained\n", __func__);
389 complete(&ses->bc_slot_table.complete);
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800390}
391
Trond Myklebustd185a332010-06-16 09:52:25 -0400392static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res)
Andy Adamson13615872009-04-01 09:22:17 -0400393{
394 struct nfs4_slot_table *tbl;
395
Trond Myklebustd185a332010-06-16 09:52:25 -0400396 tbl = &res->sr_session->fc_slot_table;
Benny Halevydfb4f3092010-09-24 09:17:01 -0400397 if (!res->sr_slot) {
Andy Adamson13615872009-04-01 09:22:17 -0400398 /* just wake up the next guy waiting since
399 * we may have not consumed a slot after all */
Andy Adamson691daf32009-12-04 15:55:39 -0500400 dprintk("%s: No slot\n", __func__);
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500401 return;
Andy Adamson13615872009-04-01 09:22:17 -0400402 }
Andy Adamsonea028ac2009-12-04 15:55:38 -0500403
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500404 spin_lock(&tbl->slot_tbl_lock);
Benny Halevydfb4f3092010-09-24 09:17:01 -0400405 nfs4_free_slot(tbl, res->sr_slot);
Andy Adamson42acd022011-01-06 02:04:34 +0000406 nfs4_check_drain_fc_complete(res->sr_session);
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500407 spin_unlock(&tbl->slot_tbl_lock);
Benny Halevydfb4f3092010-09-24 09:17:01 -0400408 res->sr_slot = NULL;
Andy Adamson13615872009-04-01 09:22:17 -0400409}
410
Trond Myklebust14516c32010-07-31 14:29:06 -0400411static int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
Andy Adamsonb0df8062009-04-01 09:22:18 -0400412{
413 unsigned long timestamp;
Trond Myklebust14516c32010-07-31 14:29:06 -0400414 struct nfs_client *clp;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400415
416 /*
417 * sr_status remains 1 if an RPC level error occurred. The server
418 * may or may not have processed the sequence operation..
419 * Proceed as if the server received and processed the sequence
420 * operation.
421 */
422 if (res->sr_status == 1)
423 res->sr_status = NFS_OK;
424
425 /* -ERESTARTSYS can result in skipping nfs41_sequence_setup */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400426 if (!res->sr_slot)
Andy Adamsonb0df8062009-04-01 09:22:18 -0400427 goto out;
428
Andy Adamson691daf32009-12-04 15:55:39 -0500429 /* Check the SEQUENCE operation status */
Trond Myklebust14516c32010-07-31 14:29:06 -0400430 switch (res->sr_status) {
431 case 0:
Andy Adamsonb0df8062009-04-01 09:22:18 -0400432 /* Update the slot's sequence and clientid lease timer */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400433 ++res->sr_slot->seq_nr;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400434 timestamp = res->sr_renewal_time;
Trond Myklebust14516c32010-07-31 14:29:06 -0400435 clp = res->sr_session->clp;
Trond Myklebust452e9352010-07-31 14:29:06 -0400436 do_renew_lease(clp, timestamp);
Alexandros Batsakis0629e372009-12-05 13:46:14 -0500437 /* Check sequence flags */
Alexandros Batsakis71358402010-02-05 03:45:05 -0800438 if (atomic_read(&clp->cl_count) > 1)
439 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags);
Trond Myklebust14516c32010-07-31 14:29:06 -0400440 break;
441 case -NFS4ERR_DELAY:
442 /* The server detected a resend of the RPC call and
443 * returned NFS4ERR_DELAY as per Section 2.10.6.2
444 * of RFC5661.
445 */
Geert Uytterhoeven12364a42010-10-28 20:06:19 +0200446 dprintk("%s: slot=%td seq=%d: Operation in progress\n",
Benny Halevydfb4f3092010-09-24 09:17:01 -0400447 __func__,
448 res->sr_slot - res->sr_session->fc_slot_table.slots,
449 res->sr_slot->seq_nr);
Trond Myklebust14516c32010-07-31 14:29:06 -0400450 goto out_retry;
451 default:
452 /* Just update the slot sequence no. */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400453 ++res->sr_slot->seq_nr;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400454 }
455out:
456 /* The session may be reset by one of the error handlers. */
457 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
Trond Myklebustd185a332010-06-16 09:52:25 -0400458 nfs41_sequence_free_slot(res);
Trond Myklebust14516c32010-07-31 14:29:06 -0400459 return 1;
460out_retry:
Trond Myklebustd05dd4e2010-07-31 14:29:07 -0400461 if (!rpc_restart_call(task))
Trond Myklebust14516c32010-07-31 14:29:06 -0400462 goto out;
463 rpc_delay(task, NFS4_POLL_RETRY_MAX);
464 return 0;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400465}
466
Trond Myklebust14516c32010-07-31 14:29:06 -0400467static int nfs4_sequence_done(struct rpc_task *task,
468 struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -0400469{
Trond Myklebust14516c32010-07-31 14:29:06 -0400470 if (res->sr_session == NULL)
471 return 1;
472 return nfs41_sequence_done(task, res);
Trond Myklebustdf896452010-06-16 09:52:26 -0400473}
474
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400475/*
Benny Halevy510b8172009-04-01 09:22:14 -0400476 * nfs4_find_slot - efficiently look for a free slot
477 *
478 * nfs4_find_slot looks for an unset bit in the used_slots bitmap.
479 * If found, we mark the slot as used, update the highest_used_slotid,
480 * and respectively set up the sequence operation args.
481 * The slot number is returned if found, or NFS4_MAX_SLOT_TABLE otherwise.
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400482 *
483 * Note: must be called with under the slot_tbl_lock.
Benny Halevy510b8172009-04-01 09:22:14 -0400484 */
485static u8
Alexandros Batsakis40ead582009-12-14 21:27:54 -0800486nfs4_find_slot(struct nfs4_slot_table *tbl)
Benny Halevy510b8172009-04-01 09:22:14 -0400487{
488 int slotid;
489 u8 ret_id = NFS4_MAX_SLOT_TABLE;
490 BUILD_BUG_ON((u8)NFS4_MAX_SLOT_TABLE != (int)NFS4_MAX_SLOT_TABLE);
491
Benny Halevy510b8172009-04-01 09:22:14 -0400492 dprintk("--> %s used_slots=%04lx highest_used=%d max_slots=%d\n",
493 __func__, tbl->used_slots[0], tbl->highest_used_slotid,
494 tbl->max_slots);
495 slotid = find_first_zero_bit(tbl->used_slots, tbl->max_slots);
496 if (slotid >= tbl->max_slots)
497 goto out;
498 __set_bit(slotid, tbl->used_slots);
499 if (slotid > tbl->highest_used_slotid)
500 tbl->highest_used_slotid = slotid;
501 ret_id = slotid;
502out:
503 dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
504 __func__, tbl->used_slots[0], tbl->highest_used_slotid, ret_id);
Benny Halevy510b8172009-04-01 09:22:14 -0400505 return ret_id;
506}
507
Andy Adamsonce5039c2009-04-01 09:22:13 -0400508static int nfs41_setup_sequence(struct nfs4_session *session,
509 struct nfs4_sequence_args *args,
510 struct nfs4_sequence_res *res,
511 int cache_reply,
512 struct rpc_task *task)
513{
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400514 struct nfs4_slot *slot;
515 struct nfs4_slot_table *tbl;
516 u8 slotid;
517
518 dprintk("--> %s\n", __func__);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400519 /* slot already allocated? */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400520 if (res->sr_slot != NULL)
Andy Adamsonce5039c2009-04-01 09:22:13 -0400521 return 0;
522
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400523 tbl = &session->fc_slot_table;
524
525 spin_lock(&tbl->slot_tbl_lock);
Trond Myklebusta2118c32010-06-16 09:52:26 -0400526 if (test_bit(NFS4_SESSION_DRAINING, &session->session_state) &&
Alexandros Batsakis5601a002009-12-14 21:27:58 -0800527 !rpc_task_has_priority(task, RPC_PRIORITY_PRIVILEGED)) {
Andy Adamsonea028ac2009-12-04 15:55:38 -0500528 /*
529 * The state manager will wait until the slot table is empty.
530 * Schedule the reset thread
531 */
Andy Adamson05f0d232009-12-04 15:55:37 -0500532 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
Andy Adamsonb069d942009-04-01 09:22:43 -0400533 spin_unlock(&tbl->slot_tbl_lock);
Trond Myklebustbcb56162009-12-05 19:32:19 -0500534 dprintk("%s Schedule Session Reset\n", __func__);
Andy Adamson05f0d232009-12-04 15:55:37 -0500535 return -EAGAIN;
Andy Adamsonb069d942009-04-01 09:22:43 -0400536 }
537
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800538 if (!rpc_queue_empty(&tbl->slot_tbl_waitq) &&
539 !rpc_task_has_priority(task, RPC_PRIORITY_PRIVILEGED)) {
540 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
541 spin_unlock(&tbl->slot_tbl_lock);
542 dprintk("%s enforce FIFO order\n", __func__);
543 return -EAGAIN;
544 }
545
Alexandros Batsakis40ead582009-12-14 21:27:54 -0800546 slotid = nfs4_find_slot(tbl);
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400547 if (slotid == NFS4_MAX_SLOT_TABLE) {
548 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
549 spin_unlock(&tbl->slot_tbl_lock);
550 dprintk("<-- %s: no free slots\n", __func__);
551 return -EAGAIN;
552 }
553 spin_unlock(&tbl->slot_tbl_lock);
554
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800555 rpc_task_set_priority(task, RPC_PRIORITY_NORMAL);
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400556 slot = tbl->slots + slotid;
Benny Halevy99fe60d2009-04-01 09:22:29 -0400557 args->sa_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400558 args->sa_slotid = slotid;
559 args->sa_cache_this = cache_reply;
560
561 dprintk("<-- %s slotid=%d seqid=%d\n", __func__, slotid, slot->seq_nr);
562
Benny Halevy99fe60d2009-04-01 09:22:29 -0400563 res->sr_session = session;
Benny Halevydfb4f3092010-09-24 09:17:01 -0400564 res->sr_slot = slot;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400565 res->sr_renewal_time = jiffies;
Trond Myklebust2a6e26c2010-06-16 09:52:25 -0400566 res->sr_status_flags = 0;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400567 /*
568 * sr_status is only set in decode_sequence, and so will remain
569 * set to 1 if an rpc level failure occurs.
570 */
571 res->sr_status = 1;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400572 return 0;
573}
574
Trond Myklebust035168a2010-06-16 09:52:26 -0400575int nfs4_setup_sequence(const struct nfs_server *server,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400576 struct nfs4_sequence_args *args,
577 struct nfs4_sequence_res *res,
578 int cache_reply,
579 struct rpc_task *task)
580{
Trond Myklebust035168a2010-06-16 09:52:26 -0400581 struct nfs4_session *session = nfs4_get_session(server);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400582 int ret = 0;
583
Trond Myklebust035168a2010-06-16 09:52:26 -0400584 if (session == NULL) {
585 args->sa_session = NULL;
586 res->sr_session = NULL;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400587 goto out;
Trond Myklebust035168a2010-06-16 09:52:26 -0400588 }
589
Geert Uytterhoeven12364a42010-10-28 20:06:19 +0200590 dprintk("--> %s clp %p session %p sr_slot %td\n",
Benny Halevydfb4f3092010-09-24 09:17:01 -0400591 __func__, session->clp, session, res->sr_slot ?
592 res->sr_slot - session->fc_slot_table.slots : -1);
Trond Myklebust035168a2010-06-16 09:52:26 -0400593
594 ret = nfs41_setup_sequence(session, args, res, cache_reply,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400595 task);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400596out:
597 dprintk("<-- %s status=%d\n", __func__, ret);
598 return ret;
599}
600
601struct nfs41_call_sync_data {
Trond Myklebust035168a2010-06-16 09:52:26 -0400602 const struct nfs_server *seq_server;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400603 struct nfs4_sequence_args *seq_args;
604 struct nfs4_sequence_res *seq_res;
605 int cache_reply;
606};
607
608static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
609{
610 struct nfs41_call_sync_data *data = calldata;
611
Trond Myklebust035168a2010-06-16 09:52:26 -0400612 dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server);
613
614 if (nfs4_setup_sequence(data->seq_server, data->seq_args,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400615 data->seq_res, data->cache_reply, task))
616 return;
617 rpc_call_start(task);
618}
619
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800620static void nfs41_call_priv_sync_prepare(struct rpc_task *task, void *calldata)
621{
622 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
623 nfs41_call_sync_prepare(task, calldata);
624}
625
Andy Adamson69ab40c2009-04-01 09:22:19 -0400626static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
627{
628 struct nfs41_call_sync_data *data = calldata;
629
Trond Myklebust14516c32010-07-31 14:29:06 -0400630 nfs41_sequence_done(task, data->seq_res);
Andy Adamson69ab40c2009-04-01 09:22:19 -0400631}
632
Andy Adamsonce5039c2009-04-01 09:22:13 -0400633struct rpc_call_ops nfs41_call_sync_ops = {
634 .rpc_call_prepare = nfs41_call_sync_prepare,
Andy Adamson69ab40c2009-04-01 09:22:19 -0400635 .rpc_call_done = nfs41_call_sync_done,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400636};
637
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800638struct rpc_call_ops nfs41_call_priv_sync_ops = {
639 .rpc_call_prepare = nfs41_call_priv_sync_prepare,
640 .rpc_call_done = nfs41_call_sync_done,
641};
642
Trond Myklebust035168a2010-06-16 09:52:26 -0400643static int nfs4_call_sync_sequence(struct nfs_server *server,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400644 struct rpc_message *msg,
645 struct nfs4_sequence_args *args,
646 struct nfs4_sequence_res *res,
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800647 int cache_reply,
648 int privileged)
Andy Adamsonce5039c2009-04-01 09:22:13 -0400649{
650 int ret;
651 struct rpc_task *task;
652 struct nfs41_call_sync_data data = {
Trond Myklebust035168a2010-06-16 09:52:26 -0400653 .seq_server = server,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400654 .seq_args = args,
655 .seq_res = res,
656 .cache_reply = cache_reply,
657 };
658 struct rpc_task_setup task_setup = {
Trond Myklebust035168a2010-06-16 09:52:26 -0400659 .rpc_client = server->client,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400660 .rpc_message = msg,
661 .callback_ops = &nfs41_call_sync_ops,
662 .callback_data = &data
663 };
664
Benny Halevydfb4f3092010-09-24 09:17:01 -0400665 res->sr_slot = NULL;
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800666 if (privileged)
667 task_setup.callback_ops = &nfs41_call_priv_sync_ops;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400668 task = rpc_run_task(&task_setup);
669 if (IS_ERR(task))
670 ret = PTR_ERR(task);
671 else {
672 ret = task->tk_status;
673 rpc_put_task(task);
674 }
675 return ret;
676}
677
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400678int _nfs4_call_sync_session(struct nfs_server *server,
679 struct rpc_message *msg,
680 struct nfs4_sequence_args *args,
681 struct nfs4_sequence_res *res,
682 int cache_reply)
683{
Trond Myklebust035168a2010-06-16 09:52:26 -0400684 return nfs4_call_sync_sequence(server, msg, args, res, cache_reply, 0);
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400685}
686
Trond Myklebustdf896452010-06-16 09:52:26 -0400687#else
Trond Myklebust14516c32010-07-31 14:29:06 -0400688static int nfs4_sequence_done(struct rpc_task *task,
689 struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -0400690{
Trond Myklebust14516c32010-07-31 14:29:06 -0400691 return 1;
Trond Myklebustdf896452010-06-16 09:52:26 -0400692}
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400693#endif /* CONFIG_NFS_V4_1 */
694
695int _nfs4_call_sync(struct nfs_server *server,
696 struct rpc_message *msg,
697 struct nfs4_sequence_args *args,
698 struct nfs4_sequence_res *res,
699 int cache_reply)
700{
Benny Halevyf3752972009-04-01 09:22:04 -0400701 args->sa_session = res->sr_session = NULL;
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400702 return rpc_call_sync(server->client, msg, 0);
703}
704
705#define nfs4_call_sync(server, msg, args, res, cache_reply) \
Trond Myklebust97dc1352010-06-16 09:52:26 -0400706 (server)->nfs_client->cl_mvops->call_sync((server), (msg), &(args)->seq_args, \
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400707 &(res)->seq_res, (cache_reply))
708
Trond Myklebust38478b22006-05-25 01:40:57 -0400709static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Trond Myklebust38478b22006-05-25 01:40:57 -0400711 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Trond Myklebust38478b22006-05-25 01:40:57 -0400713 spin_lock(&dir->i_lock);
Trond Myklebust40d24702007-10-08 09:24:22 -0400714 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
715 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400716 nfs_force_lookup_revalidate(dir);
Trond Myklebust40d24702007-10-08 09:24:22 -0400717 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400718 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100721struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400722 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100723 struct nfs_openargs o_arg;
724 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100725 struct nfs_open_confirmargs c_arg;
726 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100727 struct nfs_fattr f_attr;
728 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400729 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100730 struct dentry *dir;
731 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400732 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100733 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100734 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400735 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100736 int rpc_status;
737 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100738};
739
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400740
741static void nfs4_init_opendata_res(struct nfs4_opendata *p)
742{
743 p->o_res.f_attr = &p->f_attr;
744 p->o_res.dir_attr = &p->dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400745 p->o_res.seqid = p->o_arg.seqid;
746 p->c_res.seqid = p->c_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400747 p->o_res.server = p->o_arg.server;
748 nfs_fattr_init(&p->f_attr);
749 nfs_fattr_init(&p->dir_attr);
750}
751
Trond Myklebustad389da2007-06-05 12:30:00 -0400752static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500753 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400754 const struct iattr *attrs,
755 gfp_t gfp_mask)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100756{
Trond Myklebustad389da2007-06-05 12:30:00 -0400757 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100758 struct inode *dir = parent->d_inode;
759 struct nfs_server *server = NFS_SERVER(dir);
760 struct nfs4_opendata *p;
761
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400762 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100763 if (p == NULL)
764 goto err;
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400765 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid, gfp_mask);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100766 if (p->o_arg.seqid == NULL)
767 goto err_free;
Al Virof6948692010-01-30 13:51:04 -0500768 path_get(path);
769 p->path = *path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100770 p->dir = parent;
771 p->owner = sp;
772 atomic_inc(&sp->so_count);
773 p->o_arg.fh = NFS_FH(dir);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500774 p->o_arg.open_flags = flags;
775 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
David Howells7539bba2006-08-22 20:06:09 -0400776 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400777 p->o_arg.id = sp->so_owner_id.id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400778 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100779 p->o_arg.server = server;
780 p->o_arg.bitmask = server->attr_bitmask;
781 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Trond Myklebustd77d76f2010-06-16 09:52:27 -0400782 if (flags & O_CREAT) {
783 u32 *s;
784
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100785 p->o_arg.u.attrs = &p->attrs;
786 memcpy(&p->attrs, attrs, sizeof(p->attrs));
Trond Myklebustd77d76f2010-06-16 09:52:27 -0400787 s = (u32 *) p->o_arg.u.verifier.data;
788 s[0] = jiffies;
789 s[1] = current->pid;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100790 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100791 p->c_arg.fh = &p->o_res.fh;
792 p->c_arg.stateid = &p->o_res.stateid;
793 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400794 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400795 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100796 return p;
797err_free:
798 kfree(p);
799err:
800 dput(parent);
801 return NULL;
802}
803
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400804static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100805{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400806 struct nfs4_opendata *p = container_of(kref,
807 struct nfs4_opendata, kref);
808
809 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400810 if (p->state != NULL)
811 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400812 nfs4_put_state_owner(p->owner);
813 dput(p->dir);
Jan Blunck31f31db12008-05-02 13:42:45 -0700814 path_put(&p->path);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400815 kfree(p);
816}
817
818static void nfs4_opendata_put(struct nfs4_opendata *p)
819{
820 if (p != NULL)
821 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100822}
823
Trond Myklebust06f814a2006-01-03 09:55:07 +0100824static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
825{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100826 int ret;
827
Trond Myklebust06f814a2006-01-03 09:55:07 +0100828 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100829 return ret;
830}
831
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500832static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400833{
834 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500835
836 if (open_mode & O_EXCL)
837 goto out;
838 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400839 case FMODE_READ:
Trond Myklebust88069f72009-12-08 08:33:16 -0500840 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0
841 && state->n_rdonly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400842 break;
843 case FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -0500844 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0
845 && state->n_wronly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400846 break;
847 case FMODE_READ|FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -0500848 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0
849 && state->n_rdwr != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400850 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500851out:
Trond Myklebust6ee41262007-07-08 14:11:36 -0400852 return ret;
853}
854
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500855static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400856{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500857 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400858 return 0;
Trond Myklebust15c831b2008-12-23 15:21:39 -0500859 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
Trond Myklebustaac00a82007-07-05 19:02:21 -0400860 return 0;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500861 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400862 return 1;
863}
864
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500865static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +0100866{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500867 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100868 case FMODE_WRITE:
869 state->n_wronly++;
870 break;
871 case FMODE_READ:
872 state->n_rdonly++;
873 break;
874 case FMODE_READ|FMODE_WRITE:
875 state->n_rdwr++;
876 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500877 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +0100878}
879
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500880static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400881{
882 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
883 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
884 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500885 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400886 case FMODE_READ:
887 set_bit(NFS_O_RDONLY_STATE, &state->flags);
888 break;
889 case FMODE_WRITE:
890 set_bit(NFS_O_WRONLY_STATE, &state->flags);
891 break;
892 case FMODE_READ|FMODE_WRITE:
893 set_bit(NFS_O_RDWR_STATE, &state->flags);
894 }
895}
896
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500897static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400898{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400899 write_seqlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500900 nfs_set_open_stateid_locked(state, stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400901 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400902}
903
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500904static void __update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, const nfs4_stateid *deleg_stateid, fmode_t fmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400906 /*
907 * Protect the call to nfs4_state_set_mode_locked and
908 * serialise the stateid update
909 */
910 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400911 if (deleg_stateid != NULL) {
912 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
913 set_bit(NFS_DELEGATED_STATE, &state->flags);
914 }
915 if (open_stateid != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500916 nfs_set_open_stateid_locked(state, open_stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400917 write_sequnlock(&state->seqlock);
918 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500919 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -0700920 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500923static int update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, nfs4_stateid *delegation, fmode_t fmode)
Trond Myklebust34310432008-12-23 15:21:38 -0500924{
925 struct nfs_inode *nfsi = NFS_I(state->inode);
926 struct nfs_delegation *deleg_cur;
927 int ret = 0;
928
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500929 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -0500930
931 rcu_read_lock();
932 deleg_cur = rcu_dereference(nfsi->delegation);
933 if (deleg_cur == NULL)
934 goto no_delegation;
935
936 spin_lock(&deleg_cur->lock);
937 if (nfsi->delegation != deleg_cur ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500938 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -0500939 goto no_delegation_unlock;
940
941 if (delegation == NULL)
942 delegation = &deleg_cur->stateid;
943 else if (memcmp(deleg_cur->stateid.data, delegation->data, NFS4_STATEID_SIZE) != 0)
944 goto no_delegation_unlock;
945
Trond Myklebustb7391f42008-12-23 15:21:52 -0500946 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500947 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500948 ret = 1;
949no_delegation_unlock:
950 spin_unlock(&deleg_cur->lock);
951no_delegation:
952 rcu_read_unlock();
953
954 if (!ret && open_stateid != NULL) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500955 __update_open_stateid(state, open_stateid, NULL, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500956 ret = 1;
957 }
958
959 return ret;
960}
961
962
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500963static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400964{
965 struct nfs_delegation *delegation;
966
967 rcu_read_lock();
968 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500969 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -0400970 rcu_read_unlock();
971 return;
972 }
973 rcu_read_unlock();
974 nfs_inode_return_delegation(inode);
975}
976
Trond Myklebust6ee41262007-07-08 14:11:36 -0400977static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400978{
979 struct nfs4_state *state = opendata->state;
980 struct nfs_inode *nfsi = NFS_I(state->inode);
981 struct nfs_delegation *delegation;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500982 int open_mode = opendata->o_arg.open_flags & O_EXCL;
983 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400984 nfs4_stateid stateid;
985 int ret = -EAGAIN;
986
Trond Myklebustaac00a82007-07-05 19:02:21 -0400987 for (;;) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500988 if (can_open_cached(state, fmode, open_mode)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400989 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500990 if (can_open_cached(state, fmode, open_mode)) {
991 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400992 spin_unlock(&state->owner->so_lock);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400993 goto out_return_state;
994 }
995 spin_unlock(&state->owner->so_lock);
996 }
Trond Myklebust34310432008-12-23 15:21:38 -0500997 rcu_read_lock();
998 delegation = rcu_dereference(nfsi->delegation);
999 if (delegation == NULL ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001000 !can_open_delegated(delegation, fmode)) {
Trond Myklebust34310432008-12-23 15:21:38 -05001001 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001002 break;
Trond Myklebust34310432008-12-23 15:21:38 -05001003 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001004 /* Save the delegation */
1005 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
1006 rcu_read_unlock();
Trond Myklebustaf22f942007-08-10 17:45:10 -04001007 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001008 if (ret != 0)
1009 goto out;
1010 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -05001011
1012 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001013 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -05001014 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001015 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001016out:
1017 return ERR_PTR(ret);
1018out_return_state:
1019 atomic_inc(&state->count);
1020 return state;
1021}
1022
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001023static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
1024{
1025 struct inode *inode;
1026 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -04001027 struct nfs_delegation *delegation;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001028 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001029
Trond Myklebustaac00a82007-07-05 19:02:21 -04001030 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -04001031 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001032 goto out;
1033 }
1034
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001035 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001036 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001037 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001038 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001039 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001040 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001041 goto err;
1042 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001043 state = nfs4_get_open_state(inode, data->owner);
1044 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001045 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -04001046 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -04001047 int delegation_flags = 0;
1048
Trond Myklebust003707c2007-07-05 18:07:55 -04001049 rcu_read_lock();
1050 delegation = rcu_dereference(NFS_I(inode)->delegation);
1051 if (delegation)
1052 delegation_flags = delegation->flags;
1053 rcu_read_unlock();
Trond Myklebust15c831b2008-12-23 15:21:39 -05001054 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Trond Myklebust549d6ed2007-07-03 16:42:45 -04001055 nfs_inode_set_delegation(state->inode,
1056 data->owner->so_cred,
1057 &data->o_res);
1058 else
1059 nfs_inode_reclaim_delegation(state->inode,
1060 data->owner->so_cred,
1061 &data->o_res);
1062 }
Trond Myklebust34310432008-12-23 15:21:38 -05001063
1064 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001065 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001066 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001067out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001068 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001069err_put_inode:
1070 iput(inode);
1071err:
1072 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001073}
1074
Trond Myklebust864472e2006-01-03 09:55:15 +01001075static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1076{
1077 struct nfs_inode *nfsi = NFS_I(state->inode);
1078 struct nfs_open_context *ctx;
1079
1080 spin_lock(&state->inode->i_lock);
1081 list_for_each_entry(ctx, &nfsi->open_files, list) {
1082 if (ctx->state != state)
1083 continue;
1084 get_nfs_open_context(ctx);
1085 spin_unlock(&state->inode->i_lock);
1086 return ctx;
1087 }
1088 spin_unlock(&state->inode->i_lock);
1089 return ERR_PTR(-ENOENT);
1090}
1091
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001092static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
1093{
1094 struct nfs4_opendata *opendata;
1095
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001096 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, 0, NULL, GFP_NOFS);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001097 if (opendata == NULL)
1098 return ERR_PTR(-ENOMEM);
1099 opendata->state = state;
1100 atomic_inc(&state->count);
1101 return opendata;
1102}
1103
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001104static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +01001105{
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001106 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001107 int ret;
1108
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001109 opendata->o_arg.open_flags = 0;
1110 opendata->o_arg.fmode = fmode;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001111 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1112 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1113 nfs4_init_opendata_res(opendata);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001114 ret = _nfs4_recover_proc_open(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001115 if (ret != 0)
1116 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001117 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001118 if (IS_ERR(newstate))
1119 return PTR_ERR(newstate);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001120 nfs4_close_state(&opendata->path, newstate, fmode);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001121 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001122 return 0;
1123}
1124
1125static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1126{
Trond Myklebust864472e2006-01-03 09:55:15 +01001127 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001128 int ret;
1129
1130 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001131 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001132 smp_rmb();
1133 if (state->n_rdwr != 0) {
Trond Myklebustb0ed9db2010-10-04 17:59:08 -04001134 clear_bit(NFS_O_RDWR_STATE, &state->flags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001135 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001136 if (ret != 0)
1137 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001138 if (newstate != state)
1139 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001140 }
1141 if (state->n_wronly != 0) {
Trond Myklebustb0ed9db2010-10-04 17:59:08 -04001142 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001143 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001144 if (ret != 0)
1145 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001146 if (newstate != state)
1147 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001148 }
1149 if (state->n_rdonly != 0) {
Trond Myklebustb0ed9db2010-10-04 17:59:08 -04001150 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001151 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001152 if (ret != 0)
1153 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001154 if (newstate != state)
1155 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001156 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001157 /*
1158 * We may have performed cached opens for all three recoveries.
1159 * Check if we need to update the current stateid.
1160 */
1161 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
1162 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001163 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001164 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1165 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001166 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001167 }
Trond Myklebust864472e2006-01-03 09:55:15 +01001168 return 0;
1169}
1170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171/*
1172 * OPEN_RECLAIM:
1173 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001175static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001177 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +01001178 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001179 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 int status;
1181
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001182 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1183 if (IS_ERR(opendata))
1184 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001185 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
1186 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001187 rcu_read_lock();
1188 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -05001189 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -04001190 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001191 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +01001192 opendata->o_arg.u.delegation_type = delegation_type;
1193 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001194 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 return status;
1196}
1197
Trond Myklebust539cd032007-06-05 11:46:42 -04001198static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
1200 struct nfs_server *server = NFS_SERVER(state->inode);
1201 struct nfs4_exception exception = { };
1202 int err;
1203 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001204 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust168667c2010-10-19 19:47:49 -04001205 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001206 break;
1207 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 } while (exception.retry);
1209 return err;
1210}
1211
Trond Myklebust864472e2006-01-03 09:55:15 +01001212static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1213{
1214 struct nfs_open_context *ctx;
1215 int ret;
1216
1217 ctx = nfs4_state_find_open_context(state);
1218 if (IS_ERR(ctx))
1219 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001220 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001221 put_nfs_open_context(ctx);
1222 return ret;
1223}
1224
Trond Myklebust13437e12007-07-06 15:10:43 -04001225static int _nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001227 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001228 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001230 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1231 if (IS_ERR(opendata))
1232 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001233 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -04001234 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001235 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +01001236 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001237 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001238 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
Trond Myklebust13437e12007-07-06 15:10:43 -04001241int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
1243 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -04001244 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 int err;
1246 do {
Trond Myklebust13437e12007-07-06 15:10:43 -04001247 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 switch (err) {
1249 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07001250 case -ENOENT:
1251 case -ESTALE:
1252 goto out;
Ricardo Labiagabcfa49f2009-12-07 09:22:29 -05001253 case -NFS4ERR_BADSESSION:
1254 case -NFS4ERR_BADSLOT:
1255 case -NFS4ERR_BAD_HIGH_SLOT:
1256 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1257 case -NFS4ERR_DEADSESSION:
1258 nfs4_schedule_state_recovery(
1259 server->nfs_client);
1260 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 case -NFS4ERR_STALE_CLIENTID:
1262 case -NFS4ERR_STALE_STATEID:
1263 case -NFS4ERR_EXPIRED:
1264 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -04001265 nfs4_schedule_state_recovery(server->nfs_client);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001266 goto out;
1267 case -ERESTARTSYS:
1268 /*
1269 * The show must go on: exit, but mark the
1270 * stateid as needing recovery.
1271 */
1272 case -NFS4ERR_ADMIN_REVOKED:
1273 case -NFS4ERR_BAD_STATEID:
1274 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
Trond Myklebust168667c2010-10-19 19:47:49 -04001275 case -EKEYEXPIRED:
1276 /*
1277 * User RPCSEC_GSS context has expired.
1278 * We cannot recover this stateid now, so
1279 * skip it and allow recovery thread to
1280 * proceed.
1281 */
Trond Myklebust965b5d62009-06-17 13:22:59 -07001282 case -ENOMEM:
1283 err = 0;
1284 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
1286 err = nfs4_handle_exception(server, err, &exception);
1287 } while (exception.retry);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001288out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 return err;
1290}
1291
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001292static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1293{
1294 struct nfs4_opendata *data = calldata;
1295
1296 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001297 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001298 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
1299 sizeof(data->o_res.stateid.data));
Trond Myklebustbb226292008-01-02 15:19:18 -05001300 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001301 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -04001302 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001303 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001304}
1305
1306static void nfs4_open_confirm_release(void *calldata)
1307{
1308 struct nfs4_opendata *data = calldata;
1309 struct nfs4_state *state = NULL;
1310
1311 /* If this request hasn't been cancelled, do nothing */
1312 if (data->cancelled == 0)
1313 goto out_free;
1314 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001315 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001316 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001317 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001318 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001319 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001320out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001321 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001322}
1323
1324static const struct rpc_call_ops nfs4_open_confirm_ops = {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001325 .rpc_call_done = nfs4_open_confirm_done,
1326 .rpc_release = nfs4_open_confirm_release,
1327};
1328
1329/*
1330 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1331 */
1332static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
1333{
1334 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
1335 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001336 struct rpc_message msg = {
1337 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
1338 .rpc_argp = &data->c_arg,
1339 .rpc_resp = &data->c_res,
1340 .rpc_cred = data->owner->so_cred,
1341 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001342 struct rpc_task_setup task_setup_data = {
1343 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001344 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001345 .callback_ops = &nfs4_open_confirm_ops,
1346 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001347 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001348 .flags = RPC_TASK_ASYNC,
1349 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 int status;
1351
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001352 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001353 data->rpc_done = 0;
1354 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001355 data->timestamp = jiffies;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001356 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001357 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001358 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001359 status = nfs4_wait_for_completion_rpc_task(task);
1360 if (status != 0) {
1361 data->cancelled = 1;
1362 smp_wmb();
1363 } else
1364 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001365 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return status;
1367}
1368
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001369static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001371 struct nfs4_opendata *data = calldata;
1372 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001373
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001374 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
1375 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001376 /*
1377 * Check if we still need to send an OPEN call, or if we can use
1378 * a delegation instead.
1379 */
1380 if (data->state != NULL) {
1381 struct nfs_delegation *delegation;
1382
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001383 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -04001384 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001385 rcu_read_lock();
1386 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
1387 if (delegation != NULL &&
Trond Myklebust15c831b2008-12-23 15:21:39 -05001388 test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) {
Trond Myklebustaac00a82007-07-05 19:02:21 -04001389 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001390 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001391 }
1392 rcu_read_unlock();
1393 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001394 /* Update sequence id. */
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001395 data->o_arg.id = sp->so_owner_id.id;
Trond Myklebust1f0e8902010-06-24 15:11:43 -04001396 data->o_arg.clientid = sp->so_server->nfs_client->cl_clientid;
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001397 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001398 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001399 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
1400 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001401 data->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04001402 if (nfs4_setup_sequence(data->o_arg.server,
Andy Adamsond8985282009-04-01 09:22:21 -04001403 &data->o_arg.seq_args,
1404 &data->o_res.seq_res, 1, task))
1405 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001406 rpc_call_start(task);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001407 return;
1408out_no_action:
1409 task->tk_action = NULL;
1410
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001411}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001413static void nfs4_recover_open_prepare(struct rpc_task *task, void *calldata)
1414{
1415 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
1416 nfs4_open_prepare(task, calldata);
1417}
1418
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001419static void nfs4_open_done(struct rpc_task *task, void *calldata)
1420{
1421 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001423 data->rpc_status = task->tk_status;
Andy Adamsond8985282009-04-01 09:22:21 -04001424
Trond Myklebust14516c32010-07-31 14:29:06 -04001425 if (!nfs4_sequence_done(task, &data->o_res.seq_res))
1426 return;
Andy Adamsond8985282009-04-01 09:22:21 -04001427
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001428 if (task->tk_status == 0) {
1429 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -07001430 case S_IFREG:
1431 break;
1432 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001433 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001434 break;
1435 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001436 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001437 break;
1438 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001439 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001440 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001441 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -04001442 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
1443 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -07001444 }
Trond Myklebust3e309912007-07-07 13:19:59 -04001445 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001446}
Trond Myklebust6f926b52005-10-18 14:20:18 -07001447
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001448static void nfs4_open_release(void *calldata)
1449{
1450 struct nfs4_opendata *data = calldata;
1451 struct nfs4_state *state = NULL;
1452
1453 /* If this request hasn't been cancelled, do nothing */
1454 if (data->cancelled == 0)
1455 goto out_free;
1456 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001457 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001458 goto out_free;
1459 /* In case we need an open_confirm, no cleanup! */
1460 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
1461 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001462 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001463 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001464 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001465out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001466 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001467}
1468
1469static const struct rpc_call_ops nfs4_open_ops = {
1470 .rpc_call_prepare = nfs4_open_prepare,
1471 .rpc_call_done = nfs4_open_done,
1472 .rpc_release = nfs4_open_release,
1473};
1474
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001475static const struct rpc_call_ops nfs4_recover_open_ops = {
1476 .rpc_call_prepare = nfs4_recover_open_prepare,
1477 .rpc_call_done = nfs4_open_done,
1478 .rpc_release = nfs4_open_release,
1479};
1480
1481static int nfs4_run_open_task(struct nfs4_opendata *data, int isrecover)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001482{
1483 struct inode *dir = data->dir->d_inode;
1484 struct nfs_server *server = NFS_SERVER(dir);
1485 struct nfs_openargs *o_arg = &data->o_arg;
1486 struct nfs_openres *o_res = &data->o_res;
1487 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001488 struct rpc_message msg = {
1489 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
1490 .rpc_argp = o_arg,
1491 .rpc_resp = o_res,
1492 .rpc_cred = data->owner->so_cred,
1493 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001494 struct rpc_task_setup task_setup_data = {
1495 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001496 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001497 .callback_ops = &nfs4_open_ops,
1498 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001499 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001500 .flags = RPC_TASK_ASYNC,
1501 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001502 int status;
1503
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001504 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001505 data->rpc_done = 0;
1506 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001507 data->cancelled = 0;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001508 if (isrecover)
1509 task_setup_data.callback_ops = &nfs4_recover_open_ops;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001510 task = rpc_run_task(&task_setup_data);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001511 if (IS_ERR(task))
1512 return PTR_ERR(task);
1513 status = nfs4_wait_for_completion_rpc_task(task);
1514 if (status != 0) {
1515 data->cancelled = 1;
1516 smp_wmb();
1517 } else
1518 status = data->rpc_status;
1519 rpc_put_task(task);
1520
1521 return status;
1522}
1523
1524static int _nfs4_recover_proc_open(struct nfs4_opendata *data)
1525{
1526 struct inode *dir = data->dir->d_inode;
1527 struct nfs_openres *o_res = &data->o_res;
1528 int status;
1529
1530 status = nfs4_run_open_task(data, 1);
1531 if (status != 0 || !data->rpc_done)
1532 return status;
1533
1534 nfs_refresh_inode(dir, o_res->dir_attr);
1535
1536 if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
1537 status = _nfs4_proc_open_confirm(data);
1538 if (status != 0)
1539 return status;
1540 }
1541
1542 return status;
1543}
1544
1545/*
1546 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1547 */
1548static int _nfs4_proc_open(struct nfs4_opendata *data)
1549{
1550 struct inode *dir = data->dir->d_inode;
1551 struct nfs_server *server = NFS_SERVER(dir);
1552 struct nfs_openargs *o_arg = &data->o_arg;
1553 struct nfs_openres *o_res = &data->o_res;
1554 int status;
1555
1556 status = nfs4_run_open_task(data, 0);
Trond Myklebust3e309912007-07-07 13:19:59 -04001557 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001558 return status;
1559
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001560 if (o_arg->open_flags & O_CREAT) {
1561 update_changeattr(dir, &o_res->cinfo);
1562 nfs_post_op_update_inode(dir, o_res->dir_attr);
1563 } else
1564 nfs_refresh_inode(dir, o_res->dir_attr);
Trond Myklebust0df5dd42010-04-11 16:48:44 -04001565 if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0)
1566 server->caps &= ~NFS_CAP_POSIX_LOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001568 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001570 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
1572 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -04001573 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001574 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575}
1576
Trond Myklebust10afec92007-05-14 17:16:04 -04001577static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +01001578{
David Howells7539bba2006-08-22 20:06:09 -04001579 struct nfs_client *clp = server->nfs_client;
Trond Myklebusta78cb572009-08-09 15:06:19 -04001580 unsigned int loop;
Trond Myklebust6b309542006-09-14 14:03:14 -04001581 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001582
Trond Myklebusta78cb572009-08-09 15:06:19 -04001583 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
Trond Myklebust65de8722008-12-23 15:21:44 -05001584 ret = nfs4_wait_clnt_recover(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001585 if (ret != 0)
Trond Myklebusta78cb572009-08-09 15:06:19 -04001586 break;
Trond Myklebuste598d842008-12-23 15:21:42 -05001587 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
1588 !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
Trond Myklebust6b309542006-09-14 14:03:14 -04001589 break;
Trond Myklebust58d97142006-01-03 09:55:24 +01001590 nfs4_schedule_state_recovery(clp);
Trond Myklebusta78cb572009-08-09 15:06:19 -04001591 ret = -EIO;
Trond Myklebust6b309542006-09-14 14:03:14 -04001592 }
Trond Myklebusta78cb572009-08-09 15:06:19 -04001593 return ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001594}
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596/*
1597 * OPEN_EXPIRED:
1598 * reclaim state on the server after a network partition.
1599 * Assumes caller holds the appropriate lock
1600 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001601static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001603 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001604 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001606 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1607 if (IS_ERR(opendata))
1608 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001609 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04001610 if (ret == -ESTALE)
Trond Myklebust539cd032007-06-05 11:46:42 -04001611 d_drop(ctx->path.dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001612 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001613 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614}
1615
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001616static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001617{
Trond Myklebust539cd032007-06-05 11:46:42 -04001618 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001619 struct nfs4_exception exception = { };
1620 int err;
1621
1622 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001623 err = _nfs4_open_expired(ctx, state);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001624 switch (err) {
1625 default:
1626 goto out;
1627 case -NFS4ERR_GRACE:
1628 case -NFS4ERR_DELAY:
1629 nfs4_handle_exception(server, err, &exception);
1630 err = 0;
1631 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00001632 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001633out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00001634 return err;
1635}
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1638{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001640 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Trond Myklebust864472e2006-01-03 09:55:15 +01001642 ctx = nfs4_state_find_open_context(state);
1643 if (IS_ERR(ctx))
1644 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001645 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001646 put_nfs_open_context(ctx);
1647 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648}
1649
1650/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001651 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1652 * fields corresponding to attributes that were used to store the verifier.
1653 * Make sure we clobber those fields in the later setattr call
1654 */
1655static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1656{
1657 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1658 !(sattr->ia_valid & ATTR_ATIME_SET))
1659 sattr->ia_valid |= ATTR_ATIME;
1660
1661 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1662 !(sattr->ia_valid & ATTR_MTIME_SET))
1663 sattr->ia_valid |= ATTR_MTIME;
1664}
1665
1666/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001667 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001669static int _nfs4_do_open(struct inode *dir, struct path *path, fmode_t fmode, int flags, struct iattr *sattr, struct rpc_cred *cred, struct nfs4_state **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
1671 struct nfs4_state_owner *sp;
1672 struct nfs4_state *state = NULL;
1673 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001674 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001675 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 status = -ENOMEM;
1679 if (!(sp = nfs4_get_state_owner(server, cred))) {
1680 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1681 goto out_err;
1682 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001683 status = nfs4_recover_expired_lease(server);
1684 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001685 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001686 if (path->dentry->d_inode != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001687 nfs4_return_incompatible_delegation(path->dentry->d_inode, fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01001688 status = -ENOMEM;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001689 opendata = nfs4_opendata_alloc(path, sp, fmode, flags, sattr, GFP_KERNEL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001690 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05001691 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Trond Myklebustaac00a82007-07-05 19:02:21 -04001693 if (path->dentry->d_inode != NULL)
1694 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1695
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001696 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001698 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001700 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001701 status = PTR_ERR(state);
1702 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001703 goto err_opendata_put;
Trond Myklebust0df5dd42010-04-11 16:48:44 -04001704 if (server->caps & NFS_CAP_POSIX_LOCK)
Trond Myklebust8e469eb2010-01-26 15:42:30 -05001705 set_bit(NFS_STATE_POSIX_LOCKS, &state->flags);
Trond Myklebust0ab64e02010-04-16 16:22:51 -04001706
1707 if (opendata->o_arg.open_flags & O_EXCL) {
1708 nfs4_exclusive_attrset(opendata, sattr);
1709
1710 nfs_fattr_init(opendata->o_res.f_attr);
1711 status = nfs4_do_setattr(state->inode, cred,
1712 opendata->o_res.f_attr, sattr,
1713 state);
1714 if (status == 0)
1715 nfs_setattr_update_inode(state->inode, sattr);
1716 nfs_post_op_update_inode(state->inode, opendata->o_res.f_attr);
1717 }
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001718 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 *res = state;
1721 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001722err_opendata_put:
1723 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001724err_put_state_owner:
1725 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 *res = NULL;
1728 return status;
1729}
1730
1731
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001732static struct nfs4_state *nfs4_do_open(struct inode *dir, struct path *path, fmode_t fmode, int flags, struct iattr *sattr, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733{
1734 struct nfs4_exception exception = { };
1735 struct nfs4_state *res;
1736 int status;
1737
1738 do {
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001739 status = _nfs4_do_open(dir, path, fmode, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (status == 0)
1741 break;
1742 /* NOTE: BAD_SEQID means the server and client disagree about the
1743 * book-keeping w.r.t. state-changing operations
1744 * (OPEN/CLOSE/LOCK/LOCKU...)
1745 * It is actually a sign of a bug on the client or on the server.
1746 *
1747 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001748 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 * have unhashed the old state_owner for us, and that we can
1750 * therefore safely retry using a new one. We should still warn
1751 * the user though...
1752 */
1753 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001754 printk(KERN_WARNING "NFS: v4 server %s "
1755 " returned a bad sequence-id error!\n",
1756 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 exception.retry = 1;
1758 continue;
1759 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001760 /*
1761 * BAD_STATEID on OPEN means that the server cancelled our
1762 * state before it received the OPEN_CONFIRM.
1763 * Recover by retrying the request as per the discussion
1764 * on Page 181 of RFC3530.
1765 */
1766 if (status == -NFS4ERR_BAD_STATEID) {
1767 exception.retry = 1;
1768 continue;
1769 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001770 if (status == -EAGAIN) {
1771 /* We must have found a delegation */
1772 exception.retry = 1;
1773 continue;
1774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1776 status, &exception));
1777 } while (exception.retry);
1778 return res;
1779}
1780
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001781static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1782 struct nfs_fattr *fattr, struct iattr *sattr,
1783 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001785 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001787 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 .iap = sattr,
1789 .server = server,
1790 .bitmask = server->attr_bitmask,
1791 };
1792 struct nfs_setattrres res = {
1793 .fattr = fattr,
1794 .server = server,
1795 };
1796 struct rpc_message msg = {
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001797 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1798 .rpc_argp = &arg,
1799 .rpc_resp = &res,
1800 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001802 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001803 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Trond Myklebust0e574af2005-10-27 22:12:38 -04001805 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001807 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1808 /* Use that stateid */
1809 } else if (state != NULL) {
Trond Myklebust77041ed2010-07-01 12:49:11 -04001810 nfs4_copy_stateid(&arg.stateid, state, current->files, current->tgid);
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001811 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1813
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001814 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001815 if (status == 0 && state != NULL)
1816 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001817 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818}
1819
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001820static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1821 struct nfs_fattr *fattr, struct iattr *sattr,
1822 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001824 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 struct nfs4_exception exception = { };
1826 int err;
1827 do {
1828 err = nfs4_handle_exception(server,
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001829 _nfs4_do_setattr(inode, cred, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 &exception);
1831 } while (exception.retry);
1832 return err;
1833}
1834
1835struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001836 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 struct inode *inode;
1838 struct nfs4_state *state;
1839 struct nfs_closeargs arg;
1840 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001841 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001842 unsigned long timestamp;
Fred Isamanf7e89172011-01-06 11:36:32 +00001843 bool roc;
1844 u32 roc_barrier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845};
1846
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001847static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001848{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001849 struct nfs4_closedata *calldata = data;
1850 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001851
Fred Isamanf7e89172011-01-06 11:36:32 +00001852 if (calldata->roc)
1853 pnfs_roc_release(calldata->state->inode);
Trond Myklebust95121352005-10-18 14:20:12 -07001854 nfs4_put_open_state(calldata->state);
1855 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001856 nfs4_put_state_owner(sp);
Jan Blunck31f31db12008-05-02 13:42:45 -07001857 path_put(&calldata->path);
Trond Myklebust95121352005-10-18 14:20:12 -07001858 kfree(calldata);
1859}
1860
Trond Myklebust88069f72009-12-08 08:33:16 -05001861static void nfs4_close_clear_stateid_flags(struct nfs4_state *state,
1862 fmode_t fmode)
1863{
1864 spin_lock(&state->owner->so_lock);
1865 if (!(fmode & FMODE_READ))
1866 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1867 if (!(fmode & FMODE_WRITE))
1868 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1869 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1870 spin_unlock(&state->owner->so_lock);
1871}
1872
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001873static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001875 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 struct nfs_server *server = NFS_SERVER(calldata->inode);
1878
Trond Myklebust14516c32010-07-31 14:29:06 -04001879 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
1880 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 /* hmm. we are done with the inode, and in the process of freeing
1882 * the state_owner. we keep this around to process errors
1883 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 switch (task->tk_status) {
1885 case 0:
Fred Isamanf7e89172011-01-06 11:36:32 +00001886 if (calldata->roc)
1887 pnfs_roc_set_barrier(state->inode,
1888 calldata->roc_barrier);
Trond Myklebust45328c32007-07-26 17:47:34 -04001889 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001890 renew_lease(server, calldata->timestamp);
Trond Myklebust88069f72009-12-08 08:33:16 -05001891 nfs4_close_clear_stateid_flags(state,
1892 calldata->arg.fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 break;
1894 case -NFS4ERR_STALE_STATEID:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001895 case -NFS4ERR_OLD_STATEID:
1896 case -NFS4ERR_BAD_STATEID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 case -NFS4ERR_EXPIRED:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001898 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001899 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 default:
Trond Myklebust72211db2009-12-15 14:47:36 -05001901 if (nfs4_async_handle_error(task, server, state) == -EAGAIN)
1902 rpc_restart_call_prepare(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
Trond Myklebust72211db2009-12-15 14:47:36 -05001904 nfs_release_seqid(calldata->arg.seqid);
Trond Myklebust516a6af2005-10-27 22:12:41 -04001905 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906}
1907
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001908static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001910 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001911 struct nfs4_state *state = calldata->state;
Trond Myklebust88069f72009-12-08 08:33:16 -05001912 int call_close = 0;
Trond Myklebust95121352005-10-18 14:20:12 -07001913
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001914 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001915 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001916
Trond Myklebust88069f72009-12-08 08:33:16 -05001917 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
1918 calldata->arg.fmode = FMODE_READ|FMODE_WRITE;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001919 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001920 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001921 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001922 if (state->n_rdonly == 0) {
Trond Myklebust88069f72009-12-08 08:33:16 -05001923 call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags);
1924 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
1925 calldata->arg.fmode &= ~FMODE_READ;
Trond Myklebust003707c2007-07-05 18:07:55 -04001926 }
1927 if (state->n_wronly == 0) {
Trond Myklebust88069f72009-12-08 08:33:16 -05001928 call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags);
1929 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
1930 calldata->arg.fmode &= ~FMODE_WRITE;
Trond Myklebust003707c2007-07-05 18:07:55 -04001931 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001932 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001933 spin_unlock(&state->owner->so_lock);
Trond Myklebust88069f72009-12-08 08:33:16 -05001934
1935 if (!call_close) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001936 /* Note: exit _without_ calling nfs4_close_done */
1937 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001938 return;
1939 }
Trond Myklebust88069f72009-12-08 08:33:16 -05001940
Fred Isamanf7e89172011-01-06 11:36:32 +00001941 if (calldata->arg.fmode == 0) {
Trond Myklebust88069f72009-12-08 08:33:16 -05001942 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE];
Fred Isamanf7e89172011-01-06 11:36:32 +00001943 if (calldata->roc &&
1944 pnfs_roc_drain(calldata->inode, &calldata->roc_barrier)) {
1945 rpc_sleep_on(&NFS_SERVER(calldata->inode)->roc_rpcwaitq,
1946 task, NULL);
1947 return;
1948 }
1949 }
Trond Myklebust88069f72009-12-08 08:33:16 -05001950
Trond Myklebust516a6af2005-10-27 22:12:41 -04001951 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001952 calldata->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04001953 if (nfs4_setup_sequence(NFS_SERVER(calldata->inode),
Andy Adamson19ddab02009-04-01 09:22:20 -04001954 &calldata->arg.seq_args, &calldata->res.seq_res,
1955 1, task))
1956 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001957 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958}
1959
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001960static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001961 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001962 .rpc_call_done = nfs4_close_done,
1963 .rpc_release = nfs4_free_closedata,
1964};
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966/*
1967 * It is possible for data to be read/written from a mem-mapped file
1968 * after the sys_close call (which hits the vfs layer as a flush).
1969 * This means that we can't safely call nfsv4 close on a file until
1970 * the inode is cleared. This in turn means that we are not good
1971 * NFSv4 citizens - we do not indicate to the server to update the file's
1972 * share state even when we are done with one of the three share
1973 * stateid's in the inode.
1974 *
1975 * NOTE: Caller must be holding the sp->so_owner semaphore!
1976 */
Fred Isamanf7e89172011-01-06 11:36:32 +00001977int nfs4_do_close(struct path *path, struct nfs4_state *state, gfp_t gfp_mask, int wait, bool roc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001979 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001981 struct nfs4_state_owner *sp = state->owner;
1982 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001983 struct rpc_message msg = {
1984 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1985 .rpc_cred = state->owner->so_cred,
1986 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001987 struct rpc_task_setup task_setup_data = {
1988 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001989 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001990 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05001991 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001992 .flags = RPC_TASK_ASYNC,
1993 };
Trond Myklebust95121352005-10-18 14:20:12 -07001994 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001996 calldata = kzalloc(sizeof(*calldata), gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001998 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001999 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04002001 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04002002 calldata->arg.stateid = &state->open_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 /* Serialization for the sequence id */
Trond Myklebust8535b2b2010-05-13 12:51:01 -04002004 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid, gfp_mask);
Trond Myklebust95121352005-10-18 14:20:12 -07002005 if (calldata->arg.seqid == NULL)
2006 goto out_free_calldata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002007 calldata->arg.fmode = 0;
Trond Myklebusta65318b2009-03-11 14:10:28 -04002008 calldata->arg.bitmask = server->cache_consistency_bitmask;
Trond Myklebust516a6af2005-10-27 22:12:41 -04002009 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04002010 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04002011 calldata->res.server = server;
Fred Isamanf7e89172011-01-06 11:36:32 +00002012 calldata->roc = roc;
Al Virof6948692010-01-30 13:51:04 -05002013 path_get(path);
2014 calldata->path = *path;
Trond Myklebust95121352005-10-18 14:20:12 -07002015
Trond Myklebust1174dd12010-12-21 10:52:24 -05002016 msg.rpc_argp = &calldata->arg;
2017 msg.rpc_resp = &calldata->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04002018 task_setup_data.callback_data = calldata;
2019 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04002020 if (IS_ERR(task))
2021 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04002022 status = 0;
2023 if (wait)
2024 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04002025 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04002026 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07002027out_free_calldata:
2028 kfree(calldata);
2029out:
Fred Isamanf7e89172011-01-06 11:36:32 +00002030 if (roc)
2031 pnfs_roc_release(state->inode);
Trond Myklebustb39e6252007-06-11 23:05:07 -04002032 nfs4_put_open_state(state);
2033 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07002034 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035}
2036
Trond Myklebust2b484292010-09-17 10:56:51 -04002037static struct inode *
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04002038nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx, int open_flags, struct iattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 struct nfs4_state *state;
2041
Trond Myklebust565277f2007-10-15 18:17:53 -04002042 /* Protect against concurrent sillydeletes */
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04002043 state = nfs4_do_open(dir, &ctx->path, ctx->mode, open_flags, attr, ctx->cred);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04002044 if (IS_ERR(state))
2045 return ERR_CAST(state);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04002046 ctx->state = state;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04002047 return igrab(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048}
2049
Trond Myklebust1185a552009-12-03 15:54:02 -05002050static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
Trond Myklebust7fe5c392009-03-19 15:35:50 -04002051{
2052 if (ctx->state == NULL)
2053 return;
2054 if (is_sync)
2055 nfs4_close_sync(&ctx->path, ctx->state, ctx->mode);
2056 else
2057 nfs4_close_state(&ctx->path, ctx->state, ctx->mode);
2058}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
2061{
Benny Halevy43652ad2009-04-01 09:21:54 -04002062 struct nfs4_server_caps_arg args = {
2063 .fhandle = fhandle,
2064 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 struct nfs4_server_caps_res res = {};
2066 struct rpc_message msg = {
2067 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
Benny Halevy43652ad2009-04-01 09:21:54 -04002068 .rpc_argp = &args,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 .rpc_resp = &res,
2070 };
2071 int status;
2072
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002073 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 if (status == 0) {
2075 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002076 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
2077 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
2078 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
2079 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
2080 NFS_CAP_CTIME|NFS_CAP_MTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
2082 server->caps |= NFS_CAP_ACLS;
2083 if (res.has_links != 0)
2084 server->caps |= NFS_CAP_HARDLINKS;
2085 if (res.has_symlinks != 0)
2086 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002087 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
2088 server->caps |= NFS_CAP_FILEID;
2089 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
2090 server->caps |= NFS_CAP_MODE;
2091 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
2092 server->caps |= NFS_CAP_NLINK;
2093 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
2094 server->caps |= NFS_CAP_OWNER;
2095 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
2096 server->caps |= NFS_CAP_OWNER_GROUP;
2097 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
2098 server->caps |= NFS_CAP_ATIME;
2099 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
2100 server->caps |= NFS_CAP_CTIME;
2101 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
2102 server->caps |= NFS_CAP_MTIME;
2103
Trond Myklebusta65318b2009-03-11 14:10:28 -04002104 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
2105 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
2106 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 server->acl_bitmask = res.acl_bitmask;
2108 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 return status;
2111}
2112
Trond Myklebust55a97592006-06-09 09:34:19 -04002113int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114{
2115 struct nfs4_exception exception = { };
2116 int err;
2117 do {
2118 err = nfs4_handle_exception(server,
2119 _nfs4_server_capabilities(server, fhandle),
2120 &exception);
2121 } while (exception.retry);
2122 return err;
2123}
2124
2125static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2126 struct nfs_fsinfo *info)
2127{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 struct nfs4_lookup_root_arg args = {
2129 .bitmask = nfs4_fattr_bitmap,
2130 };
2131 struct nfs4_lookup_res res = {
2132 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04002133 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 .fh = fhandle,
2135 };
2136 struct rpc_message msg = {
2137 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
2138 .rpc_argp = &args,
2139 .rpc_resp = &res,
2140 };
Benny Halevy008f55d2009-04-01 09:22:50 -04002141
Trond Myklebust0e574af2005-10-27 22:12:38 -04002142 nfs_fattr_init(info->fattr);
Trond Myklebustfccba802009-07-21 16:48:07 -04002143 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144}
2145
2146static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2147 struct nfs_fsinfo *info)
2148{
2149 struct nfs4_exception exception = { };
2150 int err;
2151 do {
2152 err = nfs4_handle_exception(server,
2153 _nfs4_lookup_root(server, fhandle, info),
2154 &exception);
2155 } while (exception.retry);
2156 return err;
2157}
2158
David Howells54ceac42006-08-22 20:06:13 -04002159/*
2160 * get the file handle for the "/" directory on the server
2161 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04002163 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 int status;
2166
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 if (status == 0)
2169 status = nfs4_server_capabilities(server, fhandle);
2170 if (status == 0)
2171 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08002172 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173}
2174
Manoj Naik6b97fd32006-06-09 09:34:29 -04002175/*
2176 * Get locations and (maybe) other attributes of a referral.
2177 * Note that we'll actually follow the referral later when
2178 * we detect fsid mismatch in inode revalidation
2179 */
Trond Myklebust56659e92007-07-17 21:52:39 -04002180static int nfs4_get_referral(struct inode *dir, const struct qstr *name, struct nfs_fattr *fattr, struct nfs_fh *fhandle)
Manoj Naik6b97fd32006-06-09 09:34:29 -04002181{
2182 int status = -ENOMEM;
2183 struct page *page = NULL;
2184 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04002185
2186 page = alloc_page(GFP_KERNEL);
2187 if (page == NULL)
2188 goto out;
2189 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
2190 if (locations == NULL)
2191 goto out;
2192
Trond Myklebustc228fd32007-01-13 02:28:11 -05002193 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002194 if (status != 0)
2195 goto out;
2196 /* Make sure server returned a different fsid for the referral */
2197 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07002198 dprintk("%s: server did not return a different fsid for a referral at %s\n", __func__, name->name);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002199 status = -EIO;
2200 goto out;
2201 }
2202
2203 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
2204 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
2205 if (!fattr->mode)
2206 fattr->mode = S_IFDIR;
2207 memset(fhandle, 0, sizeof(struct nfs_fh));
2208out:
2209 if (page)
2210 __free_page(page);
Davidlohr Bueso5d7ca352010-08-11 12:42:15 -04002211 kfree(locations);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002212 return status;
2213}
2214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2216{
2217 struct nfs4_getattr_arg args = {
2218 .fh = fhandle,
2219 .bitmask = server->attr_bitmask,
2220 };
2221 struct nfs4_getattr_res res = {
2222 .fattr = fattr,
2223 .server = server,
2224 };
2225 struct rpc_message msg = {
2226 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
2227 .rpc_argp = &args,
2228 .rpc_resp = &res,
2229 };
2230
Trond Myklebust0e574af2005-10-27 22:12:38 -04002231 nfs_fattr_init(fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002232 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233}
2234
2235static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2236{
2237 struct nfs4_exception exception = { };
2238 int err;
2239 do {
2240 err = nfs4_handle_exception(server,
2241 _nfs4_proc_getattr(server, fhandle, fattr),
2242 &exception);
2243 } while (exception.retry);
2244 return err;
2245}
2246
2247/*
2248 * The file is not closed if it is opened due to the a request to change
2249 * the size of the file. The open call will not be needed once the
2250 * VFS layer lookup-intents are implemented.
2251 *
2252 * Close is called when the inode is destroyed.
2253 * If we haven't opened the file for O_WRONLY, we
2254 * need to in the size_change case to obtain a stateid.
2255 *
2256 * Got race?
2257 * Because OPEN is always done by name in nfsv4, it is
2258 * possible that we opened a different file by the same
2259 * name. We can recognize this race condition, but we
2260 * can't do anything about it besides returning an error.
2261 *
2262 * This will be fixed with VFS changes (lookup-intent).
2263 */
2264static int
2265nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
2266 struct iattr *sattr)
2267{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002268 struct inode *inode = dentry->d_inode;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002269 struct rpc_cred *cred = NULL;
Trond Myklebustd5308382005-11-04 15:33:38 -05002270 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 int status;
2272
Trond Myklebust0e574af2005-10-27 22:12:38 -04002273 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Trond Myklebustd5308382005-11-04 15:33:38 -05002275 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002276 if (sattr->ia_valid & ATTR_FILE) {
2277 struct nfs_open_context *ctx;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002278
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002279 ctx = nfs_file_open_context(sattr->ia_file);
Neil Brown504e5182008-10-16 14:15:16 +11002280 if (ctx) {
2281 cred = ctx->cred;
2282 state = ctx->state;
2283 }
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002284 }
2285
2286 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04002287 if (status == 0)
2288 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 return status;
2290}
2291
Trond Myklebust56659e92007-07-17 21:52:39 -04002292static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
2293 const struct qstr *name, struct nfs_fh *fhandle,
David Howells2b3de442006-08-22 20:06:09 -04002294 struct nfs_fattr *fattr)
2295{
2296 int status;
2297 struct nfs4_lookup_arg args = {
2298 .bitmask = server->attr_bitmask,
2299 .dir_fh = dirfh,
2300 .name = name,
2301 };
2302 struct nfs4_lookup_res res = {
2303 .server = server,
2304 .fattr = fattr,
2305 .fh = fhandle,
2306 };
2307 struct rpc_message msg = {
2308 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
2309 .rpc_argp = &args,
2310 .rpc_resp = &res,
2311 };
2312
2313 nfs_fattr_init(fattr);
2314
2315 dprintk("NFS call lookupfh %s\n", name->name);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002316 status = nfs4_call_sync(server, &msg, &args, &res, 0);
David Howells2b3de442006-08-22 20:06:09 -04002317 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04002318 return status;
2319}
2320
2321static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
2322 struct qstr *name, struct nfs_fh *fhandle,
2323 struct nfs_fattr *fattr)
2324{
2325 struct nfs4_exception exception = { };
2326 int err;
2327 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04002328 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
2329 /* FIXME: !!!! */
2330 if (err == -NFS4ERR_MOVED) {
2331 err = -EREMOTE;
2332 break;
2333 }
2334 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04002335 } while (exception.retry);
2336 return err;
2337}
2338
Trond Myklebust56659e92007-07-17 21:52:39 -04002339static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2341{
Trond Myklebust4e56e082007-07-01 18:13:52 -04002342 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
2344 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04002345 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002346 if (status == -NFS4ERR_MOVED)
2347 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 dprintk("NFS reply lookup: %d\n", status);
2349 return status;
2350}
2351
2352static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2353{
2354 struct nfs4_exception exception = { };
2355 int err;
2356 do {
2357 err = nfs4_handle_exception(NFS_SERVER(dir),
2358 _nfs4_proc_lookup(dir, name, fhandle, fattr),
2359 &exception);
2360 } while (exception.retry);
2361 return err;
2362}
2363
2364static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2365{
Trond Myklebust76b32992007-08-10 17:45:11 -04002366 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 struct nfs4_accessargs args = {
2368 .fh = NFS_FH(inode),
Trond Myklebust76b32992007-08-10 17:45:11 -04002369 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 };
Trond Myklebust76b32992007-08-10 17:45:11 -04002371 struct nfs4_accessres res = {
2372 .server = server,
Trond Myklebust76b32992007-08-10 17:45:11 -04002373 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 struct rpc_message msg = {
2375 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
2376 .rpc_argp = &args,
2377 .rpc_resp = &res,
2378 .rpc_cred = entry->cred,
2379 };
2380 int mode = entry->mask;
2381 int status;
2382
2383 /*
2384 * Determine which access bits we want to ask for...
2385 */
2386 if (mode & MAY_READ)
2387 args.access |= NFS4_ACCESS_READ;
2388 if (S_ISDIR(inode->i_mode)) {
2389 if (mode & MAY_WRITE)
2390 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
2391 if (mode & MAY_EXEC)
2392 args.access |= NFS4_ACCESS_LOOKUP;
2393 } else {
2394 if (mode & MAY_WRITE)
2395 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
2396 if (mode & MAY_EXEC)
2397 args.access |= NFS4_ACCESS_EXECUTE;
2398 }
Trond Myklebustc407d412010-04-16 16:22:48 -04002399
2400 res.fattr = nfs_alloc_fattr();
2401 if (res.fattr == NULL)
2402 return -ENOMEM;
2403
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002404 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 if (!status) {
2406 entry->mask = 0;
2407 if (res.access & NFS4_ACCESS_READ)
2408 entry->mask |= MAY_READ;
2409 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
2410 entry->mask |= MAY_WRITE;
2411 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
2412 entry->mask |= MAY_EXEC;
Trond Myklebustc407d412010-04-16 16:22:48 -04002413 nfs_refresh_inode(inode, res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 }
Trond Myklebustc407d412010-04-16 16:22:48 -04002415 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 return status;
2417}
2418
2419static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2420{
2421 struct nfs4_exception exception = { };
2422 int err;
2423 do {
2424 err = nfs4_handle_exception(NFS_SERVER(inode),
2425 _nfs4_proc_access(inode, entry),
2426 &exception);
2427 } while (exception.retry);
2428 return err;
2429}
2430
2431/*
2432 * TODO: For the time being, we don't try to get any attributes
2433 * along with any of the zero-copy operations READ, READDIR,
2434 * READLINK, WRITE.
2435 *
2436 * In the case of the first three, we want to put the GETATTR
2437 * after the read-type operation -- this is because it is hard
2438 * to predict the length of a GETATTR response in v4, and thus
2439 * align the READ data correctly. This means that the GETATTR
2440 * may end up partially falling into the page cache, and we should
2441 * shift it into the 'tail' of the xdr_buf before processing.
2442 * To do this efficiently, we need to know the total length
2443 * of data received, which doesn't seem to be available outside
2444 * of the RPC layer.
2445 *
2446 * In the case of WRITE, we also want to put the GETATTR after
2447 * the operation -- in this case because we want to make sure
2448 * we get the post-operation mtime and size. This means that
2449 * we can't use xdr_encode_pages() as written: we need a variant
2450 * of it which would leave room in the 'tail' iovec.
2451 *
2452 * Both of these changes to the XDR layer would in fact be quite
2453 * minor, but I decided to leave them for a subsequent patch.
2454 */
2455static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
2456 unsigned int pgbase, unsigned int pglen)
2457{
2458 struct nfs4_readlink args = {
2459 .fh = NFS_FH(inode),
2460 .pgbase = pgbase,
2461 .pglen = pglen,
2462 .pages = &page,
2463 };
Benny Halevyf50c7002009-04-01 09:21:55 -04002464 struct nfs4_readlink_res res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 struct rpc_message msg = {
2466 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
2467 .rpc_argp = &args,
Benny Halevyf50c7002009-04-01 09:21:55 -04002468 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 };
2470
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002471 return nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472}
2473
2474static int nfs4_proc_readlink(struct inode *inode, struct page *page,
2475 unsigned int pgbase, unsigned int pglen)
2476{
2477 struct nfs4_exception exception = { };
2478 int err;
2479 do {
2480 err = nfs4_handle_exception(NFS_SERVER(inode),
2481 _nfs4_proc_readlink(inode, page, pgbase, pglen),
2482 &exception);
2483 } while (exception.retry);
2484 return err;
2485}
2486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487/*
2488 * Got race?
2489 * We will need to arrange for the VFS layer to provide an atomic open.
2490 * Until then, this create/open method is prone to inefficiency and race
2491 * conditions due to the lookup, create, and open VFS calls from sys_open()
2492 * placed on the wire.
2493 *
2494 * Given the above sorry state of affairs, I'm simply sending an OPEN.
2495 * The file will be opened again in the subsequent VFS open call
2496 * (nfs4_proc_file_open).
2497 *
2498 * The open for read will just hang around to be used by any process that
2499 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
2500 */
2501
2502static int
2503nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002504 int flags, struct nfs_open_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505{
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002506 struct path my_path = {
Trond Myklebustad389da2007-06-05 12:30:00 -04002507 .dentry = dentry,
2508 };
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002509 struct path *path = &my_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 struct nfs4_state *state;
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002511 struct rpc_cred *cred = NULL;
2512 fmode_t fmode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 int status = 0;
2514
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002515 if (ctx != NULL) {
2516 cred = ctx->cred;
2517 path = &ctx->path;
2518 fmode = ctx->mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 }
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00002520 sattr->ia_mode &= ~current_umask();
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002521 state = nfs4_do_open(dir, path, fmode, flags, sattr, cred);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002522 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 if (IS_ERR(state)) {
2524 status = PTR_ERR(state);
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002525 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002527 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04002528 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002529 if (ctx != NULL)
2530 ctx->state = state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07002531 else
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002532 nfs4_close_sync(path, state, fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533out:
2534 return status;
2535}
2536
2537static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
2538{
Trond Myklebust16e42952005-10-27 22:12:44 -04002539 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002540 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 .fh = NFS_FH(dir),
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002542 .name.len = name->len,
2543 .name.name = name->name,
Trond Myklebust16e42952005-10-27 22:12:44 -04002544 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002546 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04002547 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04002548 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002550 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
2551 .rpc_argp = &args,
2552 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 };
Trond Myklebustd3468902010-04-16 16:22:50 -04002554 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Trond Myklebustd3468902010-04-16 16:22:50 -04002556 res.dir_attr = nfs_alloc_fattr();
2557 if (res.dir_attr == NULL)
2558 goto out;
2559
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002560 status = nfs4_call_sync(server, &msg, &args, &res, 1);
Trond Myklebust16e42952005-10-27 22:12:44 -04002561 if (status == 0) {
2562 update_changeattr(dir, &res.cinfo);
Trond Myklebustd3468902010-04-16 16:22:50 -04002563 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04002564 }
Trond Myklebustd3468902010-04-16 16:22:50 -04002565 nfs_free_fattr(res.dir_attr);
2566out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 return status;
2568}
2569
2570static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
2571{
2572 struct nfs4_exception exception = { };
2573 int err;
2574 do {
2575 err = nfs4_handle_exception(NFS_SERVER(dir),
2576 _nfs4_proc_remove(dir, name),
2577 &exception);
2578 } while (exception.retry);
2579 return err;
2580}
2581
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002582static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002584 struct nfs_server *server = NFS_SERVER(dir);
2585 struct nfs_removeargs *args = msg->rpc_argp;
2586 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Trond Myklebusta65318b2009-03-11 14:10:28 -04002588 args->bitmask = server->cache_consistency_bitmask;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002589 res->server = server;
Benny Halevydfb4f3092010-09-24 09:17:01 -04002590 res->seq_res.sr_slot = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592}
2593
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002594static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002596 struct nfs_removeres *res = task->tk_msg.rpc_resp;
2597
Trond Myklebust14516c32010-07-31 14:29:06 -04002598 if (!nfs4_sequence_done(task, &res->seq_res))
2599 return 0;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002600 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002601 return 0;
2602 update_changeattr(dir, &res->cinfo);
Trond Myklebustd3468902010-04-16 16:22:50 -04002603 nfs_post_op_update_inode(dir, res->dir_attr);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002604 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605}
2606
Jeff Laytond3d41522010-09-17 17:31:57 -04002607static void nfs4_proc_rename_setup(struct rpc_message *msg, struct inode *dir)
2608{
2609 struct nfs_server *server = NFS_SERVER(dir);
2610 struct nfs_renameargs *arg = msg->rpc_argp;
2611 struct nfs_renameres *res = msg->rpc_resp;
2612
2613 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME];
2614 arg->bitmask = server->attr_bitmask;
2615 res->server = server;
2616}
2617
2618static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
2619 struct inode *new_dir)
2620{
2621 struct nfs_renameres *res = task->tk_msg.rpc_resp;
2622
2623 if (!nfs4_sequence_done(task, &res->seq_res))
2624 return 0;
2625 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
2626 return 0;
2627
2628 update_changeattr(old_dir, &res->old_cinfo);
2629 nfs_post_op_update_inode(old_dir, res->old_fattr);
2630 update_changeattr(new_dir, &res->new_cinfo);
2631 nfs_post_op_update_inode(new_dir, res->new_fattr);
2632 return 1;
2633}
2634
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2636 struct inode *new_dir, struct qstr *new_name)
2637{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002638 struct nfs_server *server = NFS_SERVER(old_dir);
Jeff Layton920769f2010-09-17 17:30:25 -04002639 struct nfs_renameargs arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 .old_dir = NFS_FH(old_dir),
2641 .new_dir = NFS_FH(new_dir),
2642 .old_name = old_name,
2643 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002644 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 };
Jeff Laytone8582a82010-09-17 17:31:06 -04002646 struct nfs_renameres res = {
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002647 .server = server,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002648 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 struct rpc_message msg = {
2650 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2651 .rpc_argp = &arg,
2652 .rpc_resp = &res,
2653 };
Trond Myklebust011fff72010-04-16 16:22:49 -04002654 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
Trond Myklebust011fff72010-04-16 16:22:49 -04002656 res.old_fattr = nfs_alloc_fattr();
2657 res.new_fattr = nfs_alloc_fattr();
2658 if (res.old_fattr == NULL || res.new_fattr == NULL)
2659 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
Trond Myklebust011fff72010-04-16 16:22:49 -04002661 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 if (!status) {
2663 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002664 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002666 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 }
Trond Myklebust011fff72010-04-16 16:22:49 -04002668out:
2669 nfs_free_fattr(res.new_fattr);
2670 nfs_free_fattr(res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 return status;
2672}
2673
2674static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2675 struct inode *new_dir, struct qstr *new_name)
2676{
2677 struct nfs4_exception exception = { };
2678 int err;
2679 do {
2680 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2681 _nfs4_proc_rename(old_dir, old_name,
2682 new_dir, new_name),
2683 &exception);
2684 } while (exception.retry);
2685 return err;
2686}
2687
2688static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2689{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002690 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 struct nfs4_link_arg arg = {
2692 .fh = NFS_FH(inode),
2693 .dir_fh = NFS_FH(dir),
2694 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002695 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002697 struct nfs4_link_res res = {
2698 .server = server,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002699 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 struct rpc_message msg = {
2701 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2702 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002703 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 };
Trond Myklebust136f2622010-04-16 16:22:49 -04002705 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
Trond Myklebust136f2622010-04-16 16:22:49 -04002707 res.fattr = nfs_alloc_fattr();
2708 res.dir_attr = nfs_alloc_fattr();
2709 if (res.fattr == NULL || res.dir_attr == NULL)
2710 goto out;
2711
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002712 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002713 if (!status) {
2714 update_changeattr(dir, &res.cinfo);
2715 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002716 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002717 }
Trond Myklebust136f2622010-04-16 16:22:49 -04002718out:
2719 nfs_free_fattr(res.dir_attr);
2720 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 return status;
2722}
2723
2724static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2725{
2726 struct nfs4_exception exception = { };
2727 int err;
2728 do {
2729 err = nfs4_handle_exception(NFS_SERVER(inode),
2730 _nfs4_proc_link(inode, dir, name),
2731 &exception);
2732 } while (exception.retry);
2733 return err;
2734}
2735
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002736struct nfs4_createdata {
2737 struct rpc_message msg;
2738 struct nfs4_create_arg arg;
2739 struct nfs4_create_res res;
2740 struct nfs_fh fh;
2741 struct nfs_fattr fattr;
2742 struct nfs_fattr dir_fattr;
2743};
2744
2745static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2746 struct qstr *name, struct iattr *sattr, u32 ftype)
2747{
2748 struct nfs4_createdata *data;
2749
2750 data = kzalloc(sizeof(*data), GFP_KERNEL);
2751 if (data != NULL) {
2752 struct nfs_server *server = NFS_SERVER(dir);
2753
2754 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2755 data->msg.rpc_argp = &data->arg;
2756 data->msg.rpc_resp = &data->res;
2757 data->arg.dir_fh = NFS_FH(dir);
2758 data->arg.server = server;
2759 data->arg.name = name;
2760 data->arg.attrs = sattr;
2761 data->arg.ftype = ftype;
2762 data->arg.bitmask = server->attr_bitmask;
2763 data->res.server = server;
2764 data->res.fh = &data->fh;
2765 data->res.fattr = &data->fattr;
2766 data->res.dir_fattr = &data->dir_fattr;
2767 nfs_fattr_init(data->res.fattr);
2768 nfs_fattr_init(data->res.dir_fattr);
2769 }
2770 return data;
2771}
2772
2773static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2774{
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002775 int status = nfs4_call_sync(NFS_SERVER(dir), &data->msg,
2776 &data->arg, &data->res, 1);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002777 if (status == 0) {
2778 update_changeattr(dir, &data->res.dir_cinfo);
2779 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2780 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2781 }
2782 return status;
2783}
2784
2785static void nfs4_free_createdata(struct nfs4_createdata *data)
2786{
2787 kfree(data);
2788}
2789
Chuck Lever4f390c12006-08-22 20:06:22 -04002790static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002791 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002793 struct nfs4_createdata *data;
2794 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Chuck Lever94a6d752006-08-22 20:06:23 -04002796 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002797 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04002798
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002799 status = -ENOMEM;
2800 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2801 if (data == NULL)
2802 goto out;
2803
2804 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2805 data->arg.u.symlink.pages = &page;
2806 data->arg.u.symlink.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002808 status = nfs4_do_create(dir, dentry, data);
2809
2810 nfs4_free_createdata(data);
2811out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 return status;
2813}
2814
Chuck Lever4f390c12006-08-22 20:06:22 -04002815static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002816 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817{
2818 struct nfs4_exception exception = { };
2819 int err;
2820 do {
2821 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002822 _nfs4_proc_symlink(dir, dentry, page,
2823 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 &exception);
2825 } while (exception.retry);
2826 return err;
2827}
2828
2829static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2830 struct iattr *sattr)
2831{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002832 struct nfs4_createdata *data;
2833 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002835 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2836 if (data == NULL)
2837 goto out;
2838
2839 status = nfs4_do_create(dir, dentry, data);
2840
2841 nfs4_free_createdata(data);
2842out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 return status;
2844}
2845
2846static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2847 struct iattr *sattr)
2848{
2849 struct nfs4_exception exception = { };
2850 int err;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00002851
2852 sattr->ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 do {
2854 err = nfs4_handle_exception(NFS_SERVER(dir),
2855 _nfs4_proc_mkdir(dir, dentry, sattr),
2856 &exception);
2857 } while (exception.retry);
2858 return err;
2859}
2860
2861static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04002862 u64 cookie, struct page **pages, unsigned int count, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863{
2864 struct inode *dir = dentry->d_inode;
2865 struct nfs4_readdir_arg args = {
2866 .fh = NFS_FH(dir),
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04002867 .pages = pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 .pgbase = 0,
2869 .count = count,
Trond Myklebust96d25e52009-11-11 16:15:42 +09002870 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
Bryan Schumaker82f2e542010-10-21 16:33:18 -04002871 .plus = plus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 };
2873 struct nfs4_readdir_res res;
2874 struct rpc_message msg = {
2875 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2876 .rpc_argp = &args,
2877 .rpc_resp = &res,
2878 .rpc_cred = cred,
2879 };
2880 int status;
2881
Harvey Harrison3110ff82008-05-02 13:42:44 -07002882 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00002883 dentry->d_parent->d_name.name,
2884 dentry->d_name.name,
2885 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2887 res.pgbase = args.pgbase;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002888 status = nfs4_call_sync(NFS_SERVER(dir), &msg, &args, &res, 0);
Trond Myklebustac396122010-11-15 20:26:22 -05002889 if (status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustac396122010-11-15 20:26:22 -05002891 status += args.pgbase;
2892 }
Trond Myklebustc4812992007-09-28 17:11:45 -04002893
2894 nfs_invalidate_atime(dir);
2895
Harvey Harrison3110ff82008-05-02 13:42:44 -07002896 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 return status;
2898}
2899
2900static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04002901 u64 cookie, struct page **pages, unsigned int count, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902{
2903 struct nfs4_exception exception = { };
2904 int err;
2905 do {
2906 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2907 _nfs4_proc_readdir(dentry, cred, cookie,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04002908 pages, count, plus),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 &exception);
2910 } while (exception.retry);
2911 return err;
2912}
2913
2914static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2915 struct iattr *sattr, dev_t rdev)
2916{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002917 struct nfs4_createdata *data;
2918 int mode = sattr->ia_mode;
2919 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
2921 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2922 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002923
2924 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
2925 if (data == NULL)
2926 goto out;
2927
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002929 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002931 data->arg.ftype = NF4BLK;
2932 data->arg.u.device.specdata1 = MAJOR(rdev);
2933 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 }
2935 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002936 data->arg.ftype = NF4CHR;
2937 data->arg.u.device.specdata1 = MAJOR(rdev);
2938 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002941 status = nfs4_do_create(dir, dentry, data);
2942
2943 nfs4_free_createdata(data);
2944out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 return status;
2946}
2947
2948static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2949 struct iattr *sattr, dev_t rdev)
2950{
2951 struct nfs4_exception exception = { };
2952 int err;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00002953
2954 sattr->ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 do {
2956 err = nfs4_handle_exception(NFS_SERVER(dir),
2957 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2958 &exception);
2959 } while (exception.retry);
2960 return err;
2961}
2962
2963static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2964 struct nfs_fsstat *fsstat)
2965{
2966 struct nfs4_statfs_arg args = {
2967 .fh = fhandle,
2968 .bitmask = server->attr_bitmask,
2969 };
Benny Halevy24ad1482009-04-01 09:21:56 -04002970 struct nfs4_statfs_res res = {
2971 .fsstat = fsstat,
2972 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 struct rpc_message msg = {
2974 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2975 .rpc_argp = &args,
Benny Halevy24ad1482009-04-01 09:21:56 -04002976 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 };
2978
Trond Myklebust0e574af2005-10-27 22:12:38 -04002979 nfs_fattr_init(fsstat->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002980 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981}
2982
2983static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2984{
2985 struct nfs4_exception exception = { };
2986 int err;
2987 do {
2988 err = nfs4_handle_exception(server,
2989 _nfs4_proc_statfs(server, fhandle, fsstat),
2990 &exception);
2991 } while (exception.retry);
2992 return err;
2993}
2994
2995static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2996 struct nfs_fsinfo *fsinfo)
2997{
2998 struct nfs4_fsinfo_arg args = {
2999 .fh = fhandle,
3000 .bitmask = server->attr_bitmask,
3001 };
Benny Halevy3dda5e42009-04-01 09:21:57 -04003002 struct nfs4_fsinfo_res res = {
3003 .fsinfo = fsinfo,
3004 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 struct rpc_message msg = {
3006 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
3007 .rpc_argp = &args,
Benny Halevy3dda5e42009-04-01 09:21:57 -04003008 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 };
3010
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003011 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012}
3013
3014static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
3015{
3016 struct nfs4_exception exception = { };
3017 int err;
3018
3019 do {
3020 err = nfs4_handle_exception(server,
3021 _nfs4_do_fsinfo(server, fhandle, fsinfo),
3022 &exception);
3023 } while (exception.retry);
3024 return err;
3025}
3026
3027static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
3028{
Trond Myklebust0e574af2005-10-27 22:12:38 -04003029 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 return nfs4_do_fsinfo(server, fhandle, fsinfo);
3031}
3032
3033static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
3034 struct nfs_pathconf *pathconf)
3035{
3036 struct nfs4_pathconf_arg args = {
3037 .fh = fhandle,
3038 .bitmask = server->attr_bitmask,
3039 };
Benny Halevyd45b2982009-04-01 09:21:58 -04003040 struct nfs4_pathconf_res res = {
3041 .pathconf = pathconf,
3042 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 struct rpc_message msg = {
3044 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
3045 .rpc_argp = &args,
Benny Halevyd45b2982009-04-01 09:21:58 -04003046 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 };
3048
3049 /* None of the pathconf attributes are mandatory to implement */
3050 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
3051 memset(pathconf, 0, sizeof(*pathconf));
3052 return 0;
3053 }
3054
Trond Myklebust0e574af2005-10-27 22:12:38 -04003055 nfs_fattr_init(pathconf->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003056 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057}
3058
3059static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
3060 struct nfs_pathconf *pathconf)
3061{
3062 struct nfs4_exception exception = { };
3063 int err;
3064
3065 do {
3066 err = nfs4_handle_exception(server,
3067 _nfs4_proc_pathconf(server, fhandle, pathconf),
3068 &exception);
3069 } while (exception.retry);
3070 return err;
3071}
3072
Trond Myklebustec06c092006-03-20 13:44:27 -05003073static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074{
Trond Myklebustec06c092006-03-20 13:44:27 -05003075 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
Andy Adamsonf11c88a2009-04-01 09:22:25 -04003077 dprintk("--> %s\n", __func__);
3078
Trond Myklebust14516c32010-07-31 14:29:06 -04003079 if (!nfs4_sequence_done(task, &data->res.seq_res))
3080 return -EAGAIN;
Andy Adamsonf11c88a2009-04-01 09:22:25 -04003081
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003082 if (nfs4_async_handle_error(task, server, data->args.context->state) == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05003083 nfs_restart_rpc(task, server->nfs_client);
Trond Myklebustec06c092006-03-20 13:44:27 -05003084 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 }
Trond Myklebust8850df92007-09-28 17:20:07 -04003086
3087 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05003089 renew_lease(server, data->timestamp);
3090 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091}
3092
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003093static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 data->timestamp = jiffies;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003096 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097}
3098
Trond Myklebust788e7a82006-03-20 13:44:27 -05003099static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 struct inode *inode = data->inode;
3102
Trond Myklebust14516c32010-07-31 14:29:06 -04003103 if (!nfs4_sequence_done(task, &data->res.seq_res))
3104 return -EAGAIN;
Andy Adamsondef6ed72009-04-01 09:22:26 -04003105
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003106 if (nfs4_async_handle_error(task, NFS_SERVER(inode), data->args.context->state) == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05003107 nfs_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003108 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003110 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust70ca8852007-09-30 15:21:24 -04003112 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003113 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05003114 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115}
3116
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003117static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118{
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003119 struct nfs_server *server = NFS_SERVER(data->inode);
3120
Trond Myklebusta65318b2009-03-11 14:10:28 -04003121 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003122 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 data->timestamp = jiffies;
3124
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003125 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126}
3127
Trond Myklebust788e7a82006-03-20 13:44:27 -05003128static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 struct inode *inode = data->inode;
3131
Trond Myklebust14516c32010-07-31 14:29:06 -04003132 if (!nfs4_sequence_done(task, &data->res.seq_res))
3133 return -EAGAIN;
3134
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003135 if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05003136 nfs_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003137 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 }
Trond Myklebust9e08a3c2007-10-08 14:10:31 -04003139 nfs_refresh_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003140 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141}
3142
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003143static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144{
Trond Myklebust788e7a82006-03-20 13:44:27 -05003145 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
Trond Myklebusta65318b2009-03-11 14:10:28 -04003147 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003148 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003149 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150}
3151
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003152struct nfs4_renewdata {
3153 struct nfs_client *client;
3154 unsigned long timestamp;
3155};
3156
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157/*
3158 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
3159 * standalone procedure for queueing an asynchronous RENEW.
3160 */
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003161static void nfs4_renew_release(void *calldata)
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003162{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003163 struct nfs4_renewdata *data = calldata;
3164 struct nfs_client *clp = data->client;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003165
Alexandros Batsakis0851de062010-02-05 03:45:06 -08003166 if (atomic_read(&clp->cl_count) > 1)
3167 nfs4_schedule_state_renewal(clp);
3168 nfs_put_client(clp);
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003169 kfree(data);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003170}
3171
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003172static void nfs4_renew_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003174 struct nfs4_renewdata *data = calldata;
3175 struct nfs_client *clp = data->client;
3176 unsigned long timestamp = data->timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177
3178 if (task->tk_status < 0) {
Trond Myklebust95baa252009-05-26 14:51:00 -04003179 /* Unless we're shutting down, schedule state recovery! */
3180 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) != 0)
3181 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 return;
3183 }
Trond Myklebust452e9352010-07-31 14:29:06 -04003184 do_renew_lease(clp, timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185}
3186
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003187static const struct rpc_call_ops nfs4_renew_ops = {
3188 .rpc_call_done = nfs4_renew_done,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003189 .rpc_release = nfs4_renew_release,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003190};
3191
David Howellsadfa6f92006-08-22 20:06:08 -04003192int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193{
3194 struct rpc_message msg = {
3195 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3196 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003197 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 };
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003199 struct nfs4_renewdata *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
Alexandros Batsakis0851de062010-02-05 03:45:06 -08003201 if (!atomic_inc_not_zero(&clp->cl_count))
3202 return -EIO;
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003203 data = kmalloc(sizeof(*data), GFP_KERNEL);
3204 if (data == NULL)
3205 return -ENOMEM;
3206 data->client = clp;
3207 data->timestamp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003209 &nfs4_renew_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210}
3211
David Howellsadfa6f92006-08-22 20:06:08 -04003212int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213{
3214 struct rpc_message msg = {
3215 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3216 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003217 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 };
3219 unsigned long now = jiffies;
3220 int status;
3221
3222 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3223 if (status < 0)
3224 return status;
Trond Myklebust452e9352010-07-31 14:29:06 -04003225 do_renew_lease(clp, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 return 0;
3227}
3228
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003229static inline int nfs4_server_supports_acls(struct nfs_server *server)
3230{
3231 return (server->caps & NFS_CAP_ACLS)
3232 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
3233 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
3234}
3235
3236/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
3237 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
3238 * the stack.
3239 */
3240#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
3241
3242static void buf_to_pages(const void *buf, size_t buflen,
3243 struct page **pages, unsigned int *pgbase)
3244{
3245 const void *p = buf;
3246
3247 *pgbase = offset_in_page(buf);
3248 p -= *pgbase;
3249 while (p < buf + buflen) {
3250 *(pages++) = virt_to_page(p);
3251 p += PAGE_CACHE_SIZE;
3252 }
3253}
3254
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003255struct nfs4_cached_acl {
3256 int cached;
3257 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00003258 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003259};
3260
3261static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003262{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003263 struct nfs_inode *nfsi = NFS_I(inode);
3264
3265 spin_lock(&inode->i_lock);
3266 kfree(nfsi->nfs4_acl);
3267 nfsi->nfs4_acl = acl;
3268 spin_unlock(&inode->i_lock);
3269}
3270
3271static void nfs4_zap_acl_attr(struct inode *inode)
3272{
3273 nfs4_set_cached_acl(inode, NULL);
3274}
3275
3276static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
3277{
3278 struct nfs_inode *nfsi = NFS_I(inode);
3279 struct nfs4_cached_acl *acl;
3280 int ret = -ENOENT;
3281
3282 spin_lock(&inode->i_lock);
3283 acl = nfsi->nfs4_acl;
3284 if (acl == NULL)
3285 goto out;
3286 if (buf == NULL) /* user is just asking for length */
3287 goto out_len;
3288 if (acl->cached == 0)
3289 goto out;
3290 ret = -ERANGE; /* see getxattr(2) man page */
3291 if (acl->len > buflen)
3292 goto out;
3293 memcpy(buf, acl->data, acl->len);
3294out_len:
3295 ret = acl->len;
3296out:
3297 spin_unlock(&inode->i_lock);
3298 return ret;
3299}
3300
3301static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
3302{
3303 struct nfs4_cached_acl *acl;
3304
3305 if (buf && acl_len <= PAGE_SIZE) {
3306 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
3307 if (acl == NULL)
3308 goto out;
3309 acl->cached = 1;
3310 memcpy(acl->data, buf, acl_len);
3311 } else {
3312 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
3313 if (acl == NULL)
3314 goto out;
3315 acl->cached = 0;
3316 }
3317 acl->len = acl_len;
3318out:
3319 nfs4_set_cached_acl(inode, acl);
3320}
3321
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003322static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003323{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003324 struct page *pages[NFS4ACL_MAXPAGES];
3325 struct nfs_getaclargs args = {
3326 .fh = NFS_FH(inode),
3327 .acl_pages = pages,
3328 .acl_len = buflen,
3329 };
Benny Halevy663c79b2009-04-01 09:21:59 -04003330 struct nfs_getaclres res = {
3331 .acl_len = buflen,
3332 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003333 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003334 struct rpc_message msg = {
3335 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
3336 .rpc_argp = &args,
Benny Halevy663c79b2009-04-01 09:21:59 -04003337 .rpc_resp = &res,
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003338 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003339 struct page *localpage = NULL;
3340 int ret;
3341
3342 if (buflen < PAGE_SIZE) {
3343 /* As long as we're doing a round trip to the server anyway,
3344 * let's be prepared for a page of acl data. */
3345 localpage = alloc_page(GFP_KERNEL);
3346 resp_buf = page_address(localpage);
3347 if (localpage == NULL)
3348 return -ENOMEM;
3349 args.acl_pages[0] = localpage;
3350 args.acl_pgbase = 0;
Benny Halevy663c79b2009-04-01 09:21:59 -04003351 args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003352 } else {
3353 resp_buf = buf;
3354 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
3355 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003356 ret = nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003357 if (ret)
3358 goto out_free;
Benny Halevy663c79b2009-04-01 09:21:59 -04003359 if (res.acl_len > args.acl_len)
3360 nfs4_write_cached_acl(inode, NULL, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003361 else
Benny Halevy663c79b2009-04-01 09:21:59 -04003362 nfs4_write_cached_acl(inode, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003363 if (buf) {
3364 ret = -ERANGE;
Benny Halevy663c79b2009-04-01 09:21:59 -04003365 if (res.acl_len > buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003366 goto out_free;
3367 if (localpage)
Benny Halevy663c79b2009-04-01 09:21:59 -04003368 memcpy(buf, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003369 }
Benny Halevy663c79b2009-04-01 09:21:59 -04003370 ret = res.acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003371out_free:
3372 if (localpage)
3373 __free_page(localpage);
3374 return ret;
3375}
3376
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003377static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
3378{
3379 struct nfs4_exception exception = { };
3380 ssize_t ret;
3381 do {
3382 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
3383 if (ret >= 0)
3384 break;
3385 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
3386 } while (exception.retry);
3387 return ret;
3388}
3389
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003390static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
3391{
3392 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003393 int ret;
3394
3395 if (!nfs4_server_supports_acls(server))
3396 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003397 ret = nfs_revalidate_inode(server, inode);
3398 if (ret < 0)
3399 return ret;
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00003400 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
3401 nfs_zap_acl_cache(inode);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003402 ret = nfs4_read_cached_acl(inode, buf, buflen);
3403 if (ret != -ENOENT)
3404 return ret;
3405 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003406}
3407
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003408static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003409{
3410 struct nfs_server *server = NFS_SERVER(inode);
3411 struct page *pages[NFS4ACL_MAXPAGES];
3412 struct nfs_setaclargs arg = {
3413 .fh = NFS_FH(inode),
3414 .acl_pages = pages,
3415 .acl_len = buflen,
3416 };
Benny Halevy73c403a2009-04-01 09:22:01 -04003417 struct nfs_setaclres res;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003418 struct rpc_message msg = {
3419 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
3420 .rpc_argp = &arg,
Benny Halevy73c403a2009-04-01 09:22:01 -04003421 .rpc_resp = &res,
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003422 };
3423 int ret;
3424
3425 if (!nfs4_server_supports_acls(server))
3426 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07003427 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003428 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003429 ret = nfs4_call_sync(server, &msg, &arg, &res, 1);
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00003430 /*
3431 * Acl update can result in inode attribute update.
3432 * so mark the attribute cache invalid.
3433 */
3434 spin_lock(&inode->i_lock);
3435 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR;
3436 spin_unlock(&inode->i_lock);
Trond Myklebustf41f7412008-06-11 17:39:04 -04003437 nfs_access_zap_cache(inode);
3438 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003439 return ret;
3440}
3441
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003442static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
3443{
3444 struct nfs4_exception exception = { };
3445 int err;
3446 do {
3447 err = nfs4_handle_exception(NFS_SERVER(inode),
3448 __nfs4_proc_set_acl(inode, buf, buflen),
3449 &exception);
3450 } while (exception.retry);
3451 return err;
3452}
3453
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454static int
Trond Myklebustaa5190d2010-06-16 09:52:25 -04003455nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456{
Trond Myklebustaa5190d2010-06-16 09:52:25 -04003457 struct nfs_client *clp = server->nfs_client;
3458
3459 if (task->tk_status >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 return 0;
3461 switch(task->tk_status) {
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003462 case -NFS4ERR_ADMIN_REVOKED:
3463 case -NFS4ERR_BAD_STATEID:
3464 case -NFS4ERR_OPENMODE:
3465 if (state == NULL)
3466 break;
3467 nfs4_state_mark_reclaim_nograce(clp, state);
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003468 goto do_state_recovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003470 case -NFS4ERR_STALE_CLIENTID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 case -NFS4ERR_EXPIRED:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003472 goto do_state_recovery;
Andy Adamson4745e312009-04-01 09:22:42 -04003473#if defined(CONFIG_NFS_V4_1)
3474 case -NFS4ERR_BADSESSION:
3475 case -NFS4ERR_BADSLOT:
3476 case -NFS4ERR_BAD_HIGH_SLOT:
3477 case -NFS4ERR_DEADSESSION:
3478 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
3479 case -NFS4ERR_SEQ_FALSE_RETRY:
3480 case -NFS4ERR_SEQ_MISORDERED:
3481 dprintk("%s ERROR %d, Reset session\n", __func__,
3482 task->tk_status);
Andy Adamson0b9e2d42009-12-04 16:02:14 -05003483 nfs4_schedule_state_recovery(clp);
Andy Adamson4745e312009-04-01 09:22:42 -04003484 task->tk_status = 0;
3485 return -EAGAIN;
3486#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04003488 nfs_inc_server_stats(server, NFSIOS_DELAY);
Chuck Lever006ea732006-03-20 13:44:14 -05003489 case -NFS4ERR_GRACE:
Jeff Layton2c643482010-01-07 09:42:03 -05003490 case -EKEYEXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 rpc_delay(task, NFS4_POLL_RETRY_MAX);
3492 task->tk_status = 0;
3493 return -EAGAIN;
3494 case -NFS4ERR_OLD_STATEID:
3495 task->tk_status = 0;
3496 return -EAGAIN;
3497 }
3498 task->tk_status = nfs4_map_errors(task->tk_status);
3499 return 0;
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003500do_state_recovery:
3501 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
3502 nfs4_schedule_state_recovery(clp);
3503 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
3504 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
3505 task->tk_status = 0;
3506 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507}
3508
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003509int nfs4_proc_setclientid(struct nfs_client *clp, u32 program,
3510 unsigned short port, struct rpc_cred *cred,
3511 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512{
3513 nfs4_verifier sc_verifier;
3514 struct nfs4_setclientid setclientid = {
3515 .sc_verifier = &sc_verifier,
3516 .sc_prog = program,
Andy Adamsonf4eecd52011-01-06 02:04:30 +00003517 .sc_cb_ident = clp->cl_cb_ident,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 };
3519 struct rpc_message msg = {
3520 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
3521 .rpc_argp = &setclientid,
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003522 .rpc_resp = res,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003523 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 };
Al Virobc4785c2006-10-19 23:28:51 -07003525 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 int loop = 0;
3527 int status;
3528
Al Virobc4785c2006-10-19 23:28:51 -07003529 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
3531 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
3532
3533 for(;;) {
3534 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05003535 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05003536 clp->cl_ipaddr,
3537 rpc_peeraddr2str(clp->cl_rpcclient,
3538 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05003539 rpc_peeraddr2str(clp->cl_rpcclient,
3540 RPC_DISPLAY_PROTO),
Trond Myklebust78ea3232008-04-07 20:49:28 -04003541 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 clp->cl_id_uniquifier);
3543 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003544 sizeof(setclientid.sc_netid),
3545 rpc_peeraddr2str(clp->cl_rpcclient,
3546 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003548 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 clp->cl_ipaddr, port >> 8, port & 255);
3550
3551 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3552 if (status != -NFS4ERR_CLID_INUSE)
3553 break;
3554 if (signalled())
3555 break;
3556 if (loop++ & 1)
J. Bruce Fields611c96c2010-12-13 19:05:46 -05003557 ssleep(clp->cl_lease_time / HZ + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 else
3559 if (++clp->cl_id_uniquifier == 0)
3560 break;
3561 }
3562 return status;
3563}
3564
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003565static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp,
3566 struct nfs4_setclientid_res *arg,
3567 struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568{
3569 struct nfs_fsinfo fsinfo;
3570 struct rpc_message msg = {
3571 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003572 .rpc_argp = arg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003574 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 };
3576 unsigned long now;
3577 int status;
3578
3579 now = jiffies;
3580 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3581 if (status == 0) {
3582 spin_lock(&clp->cl_lock);
3583 clp->cl_lease_time = fsinfo.lease_time * HZ;
3584 clp->cl_last_renewal = now;
3585 spin_unlock(&clp->cl_lock);
3586 }
3587 return status;
3588}
3589
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003590int nfs4_proc_setclientid_confirm(struct nfs_client *clp,
3591 struct nfs4_setclientid_res *arg,
3592 struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05003593{
Benny Halevy77e03672008-06-24 20:25:57 +03003594 long timeout = 0;
Trond Myklebust51581f32006-03-20 13:44:47 -05003595 int err;
3596 do {
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003597 err = _nfs4_proc_setclientid_confirm(clp, arg, cred);
Trond Myklebust51581f32006-03-20 13:44:47 -05003598 switch (err) {
3599 case 0:
3600 return err;
3601 case -NFS4ERR_RESOURCE:
3602 /* The IBM lawyers misread another document! */
3603 case -NFS4ERR_DELAY:
3604 err = nfs4_delay(clp->cl_rpcclient, &timeout);
3605 }
3606 } while (err == 0);
3607 return err;
3608}
3609
Trond Myklebustfe650402006-01-03 09:55:18 +01003610struct nfs4_delegreturndata {
3611 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003612 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01003613 struct nfs_fh fh;
3614 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003615 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003616 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01003617 int rpc_status;
3618};
3619
Trond Myklebustfe650402006-01-03 09:55:18 +01003620static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
3621{
3622 struct nfs4_delegreturndata *data = calldata;
Andy Adamson938e1012009-04-01 09:22:28 -04003623
Trond Myklebust14516c32010-07-31 14:29:06 -04003624 if (!nfs4_sequence_done(task, &data->res.seq_res))
3625 return;
Andy Adamson938e1012009-04-01 09:22:28 -04003626
Ricardo Labiaga79708862009-12-07 09:23:21 -05003627 switch (task->tk_status) {
3628 case -NFS4ERR_STALE_STATEID:
3629 case -NFS4ERR_EXPIRED:
3630 case 0:
Trond Myklebustfa178f22006-01-03 09:55:38 +01003631 renew_lease(data->res.server, data->timestamp);
Ricardo Labiaga79708862009-12-07 09:23:21 -05003632 break;
3633 default:
3634 if (nfs4_async_handle_error(task, data->res.server, NULL) ==
3635 -EAGAIN) {
3636 nfs_restart_rpc(task, data->res.server->nfs_client);
3637 return;
3638 }
3639 }
3640 data->rpc_status = task->tk_status;
Trond Myklebustfe650402006-01-03 09:55:18 +01003641}
3642
3643static void nfs4_delegreturn_release(void *calldata)
3644{
Trond Myklebustfe650402006-01-03 09:55:18 +01003645 kfree(calldata);
3646}
3647
Andy Adamson938e1012009-04-01 09:22:28 -04003648#if defined(CONFIG_NFS_V4_1)
3649static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
3650{
3651 struct nfs4_delegreturndata *d_data;
3652
3653 d_data = (struct nfs4_delegreturndata *)data;
3654
Trond Myklebust035168a2010-06-16 09:52:26 -04003655 if (nfs4_setup_sequence(d_data->res.server,
Andy Adamson938e1012009-04-01 09:22:28 -04003656 &d_data->args.seq_args,
3657 &d_data->res.seq_res, 1, task))
3658 return;
3659 rpc_call_start(task);
3660}
3661#endif /* CONFIG_NFS_V4_1 */
3662
Jesper Juhlc8d149f2006-03-20 13:44:07 -05003663static const struct rpc_call_ops nfs4_delegreturn_ops = {
Andy Adamson938e1012009-04-01 09:22:28 -04003664#if defined(CONFIG_NFS_V4_1)
3665 .rpc_call_prepare = nfs4_delegreturn_prepare,
3666#endif /* CONFIG_NFS_V4_1 */
Trond Myklebustfe650402006-01-03 09:55:18 +01003667 .rpc_call_done = nfs4_delegreturn_done,
3668 .rpc_release = nfs4_delegreturn_release,
3669};
3670
Trond Myklebuste6f81072008-01-24 18:14:34 -05003671static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01003672{
3673 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003674 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01003675 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003676 struct rpc_message msg = {
3677 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
3678 .rpc_cred = cred,
3679 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003680 struct rpc_task_setup task_setup_data = {
3681 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04003682 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003683 .callback_ops = &nfs4_delegreturn_ops,
3684 .flags = RPC_TASK_ASYNC,
3685 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05003686 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01003687
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003688 data = kzalloc(sizeof(*data), GFP_NOFS);
Trond Myklebustfe650402006-01-03 09:55:18 +01003689 if (data == NULL)
3690 return -ENOMEM;
3691 data->args.fhandle = &data->fh;
3692 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003693 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01003694 nfs_copy_fh(&data->fh, NFS_FH(inode));
3695 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01003696 data->res.fattr = &data->fattr;
3697 data->res.server = server;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003698 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003699 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01003700 data->rpc_status = 0;
3701
Trond Myklebustc970aa82007-07-14 15:39:59 -04003702 task_setup_data.callback_data = data;
Trond Myklebust1174dd12010-12-21 10:52:24 -05003703 msg.rpc_argp = &data->args;
3704 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04003705 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003706 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003707 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003708 if (!issync)
3709 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01003710 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003711 if (status != 0)
3712 goto out;
3713 status = data->rpc_status;
3714 if (status != 0)
3715 goto out;
3716 nfs_refresh_inode(inode, &data->fattr);
3717out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003718 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003719 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720}
3721
Trond Myklebuste6f81072008-01-24 18:14:34 -05003722int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723{
3724 struct nfs_server *server = NFS_SERVER(inode);
3725 struct nfs4_exception exception = { };
3726 int err;
3727 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05003728 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 switch (err) {
3730 case -NFS4ERR_STALE_STATEID:
3731 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 case 0:
3733 return 0;
3734 }
3735 err = nfs4_handle_exception(server, err, &exception);
3736 } while (exception.retry);
3737 return err;
3738}
3739
3740#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3741#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3742
3743/*
3744 * sleep, with exponential backoff, and retry the LOCK operation.
3745 */
3746static unsigned long
3747nfs4_set_lock_task_retry(unsigned long timeout)
3748{
Matthew Wilcox150030b2007-12-06 16:24:39 -05003749 schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 timeout <<= 1;
3751 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3752 return NFS4_LOCK_MAXTIMEOUT;
3753 return timeout;
3754}
3755
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3757{
3758 struct inode *inode = state->inode;
3759 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003760 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003761 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003763 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003765 struct nfs_lockt_res res = {
3766 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 };
3768 struct rpc_message msg = {
3769 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3770 .rpc_argp = &arg,
3771 .rpc_resp = &res,
3772 .rpc_cred = state->owner->so_cred,
3773 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 struct nfs4_lock_state *lsp;
3775 int status;
3776
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003777 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003778 status = nfs4_set_lock_state(state, request);
3779 if (status != 0)
3780 goto out;
3781 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003782 arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustd035c362010-12-21 10:45:27 -05003783 arg.lock_owner.s_dev = server->s_dev;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003784 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003785 switch (status) {
3786 case 0:
3787 request->fl_type = F_UNLCK;
3788 break;
3789 case -NFS4ERR_DENIED:
3790 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003792 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003793out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 return status;
3795}
3796
3797static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3798{
3799 struct nfs4_exception exception = { };
3800 int err;
3801
3802 do {
3803 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3804 _nfs4_proc_getlk(state, cmd, request),
3805 &exception);
3806 } while (exception.retry);
3807 return err;
3808}
3809
3810static int do_vfs_lock(struct file *file, struct file_lock *fl)
3811{
3812 int res = 0;
3813 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3814 case FL_POSIX:
3815 res = posix_lock_file_wait(file, fl);
3816 break;
3817 case FL_FLOCK:
3818 res = flock_lock_file_wait(file, fl);
3819 break;
3820 default:
3821 BUG();
3822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 return res;
3824}
3825
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003826struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003827 struct nfs_locku_args arg;
3828 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003829 struct nfs4_lock_state *lsp;
3830 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003831 struct file_lock fl;
3832 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003833 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003834};
3835
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003836static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3837 struct nfs_open_context *ctx,
3838 struct nfs4_lock_state *lsp,
3839 struct nfs_seqid *seqid)
3840{
3841 struct nfs4_unlockdata *p;
3842 struct inode *inode = lsp->ls_state->inode;
3843
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003844 p = kzalloc(sizeof(*p), GFP_NOFS);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003845 if (p == NULL)
3846 return NULL;
3847 p->arg.fh = NFS_FH(inode);
3848 p->arg.fl = &p->fl;
3849 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003850 p->res.seqid = seqid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003851 p->arg.stateid = &lsp->ls_stateid;
3852 p->lsp = lsp;
3853 atomic_inc(&lsp->ls_count);
3854 /* Ensure we don't close file until we're done freeing locks! */
3855 p->ctx = get_nfs_open_context(ctx);
3856 memcpy(&p->fl, fl, sizeof(p->fl));
3857 p->server = NFS_SERVER(inode);
3858 return p;
3859}
3860
Trond Myklebust06f814a2006-01-03 09:55:07 +01003861static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003862{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003863 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003864 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003865 nfs4_put_lock_state(calldata->lsp);
3866 put_nfs_open_context(calldata->ctx);
3867 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003868}
3869
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003870static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003871{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003872 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003873
Trond Myklebust14516c32010-07-31 14:29:06 -04003874 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
3875 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003876 switch (task->tk_status) {
3877 case 0:
3878 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003879 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003880 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003881 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003882 break;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003883 case -NFS4ERR_BAD_STATEID:
3884 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003885 case -NFS4ERR_STALE_STATEID:
3886 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003887 break;
3888 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003889 if (nfs4_async_handle_error(task, calldata->server, NULL) == -EAGAIN)
Trond Myklebust0110ee12009-12-07 09:00:24 -05003890 nfs_restart_rpc(task,
Trond Myklebustd61e6122009-12-05 19:32:19 -05003891 calldata->server->nfs_client);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003892 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003893}
3894
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003895static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003896{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003897 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003899 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003900 return;
3901 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003902 /* Note: exit _without_ running nfs4_locku_done */
3903 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003904 return;
3905 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003906 calldata->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04003907 if (nfs4_setup_sequence(calldata->server,
Andy Adamsona8936932009-04-01 09:22:23 -04003908 &calldata->arg.seq_args,
3909 &calldata->res.seq_res, 1, task))
3910 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003911 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912}
3913
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003914static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003915 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003916 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003917 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003918};
3919
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003920static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3921 struct nfs_open_context *ctx,
3922 struct nfs4_lock_state *lsp,
3923 struct nfs_seqid *seqid)
3924{
3925 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003926 struct rpc_message msg = {
3927 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3928 .rpc_cred = ctx->cred,
3929 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003930 struct rpc_task_setup task_setup_data = {
3931 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003932 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003933 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003934 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003935 .flags = RPC_TASK_ASYNC,
3936 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003937
Frank Filz137d6ac2007-07-09 15:32:29 -07003938 /* Ensure this is an unlock - when canceling a lock, the
3939 * canceled lock is passed in, and it won't be an unlock.
3940 */
3941 fl->fl_type = F_UNLCK;
3942
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003943 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3944 if (data == NULL) {
3945 nfs_free_seqid(seqid);
3946 return ERR_PTR(-ENOMEM);
3947 }
3948
Trond Myklebust1174dd12010-12-21 10:52:24 -05003949 msg.rpc_argp = &data->arg;
3950 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04003951 task_setup_data.callback_data = data;
3952 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003953}
3954
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3956{
Trond Myklebust19e03c52008-12-23 15:21:44 -05003957 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003958 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003959 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003960 struct rpc_task *task;
3961 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003962 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
Trond Myklebust9b073572006-06-29 16:38:34 -04003964 status = nfs4_set_lock_state(state, request);
3965 /* Unlock _before_ we do the RPC call */
3966 request->fl_flags |= FL_EXISTS;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003967 down_read(&nfsi->rwsem);
3968 if (do_vfs_lock(request->fl_file, request) == -ENOENT) {
3969 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003970 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003971 }
3972 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003973 if (status != 0)
3974 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003975 /* Is this a delegated lock? */
3976 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003977 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003978 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003979 seqid = nfs_alloc_seqid(&lsp->ls_seqid, GFP_KERNEL);
Trond Myklebust9b073572006-06-29 16:38:34 -04003980 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003981 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003982 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003983 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003984 status = PTR_ERR(task);
3985 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003986 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003987 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003988 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003989out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003990 request->fl_flags = fl_flags;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003991 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992}
3993
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003994struct nfs4_lockdata {
3995 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003996 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003997 struct nfs4_lock_state *lsp;
3998 struct nfs_open_context *ctx;
3999 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01004000 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004001 int rpc_status;
4002 int cancelled;
Andy Adamson66179ef2009-04-01 09:22:22 -04004003 struct nfs_server *server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004004};
4005
4006static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004007 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp,
4008 gfp_t gfp_mask)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004009{
4010 struct nfs4_lockdata *p;
4011 struct inode *inode = lsp->ls_state->inode;
4012 struct nfs_server *server = NFS_SERVER(inode);
4013
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004014 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004015 if (p == NULL)
4016 return NULL;
4017
4018 p->arg.fh = NFS_FH(inode);
4019 p->arg.fl = &p->fl;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004020 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004021 if (p->arg.open_seqid == NULL)
4022 goto out_free;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004023 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid, gfp_mask);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004024 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004025 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004026 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04004027 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04004028 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustd035c362010-12-21 10:45:27 -05004029 p->arg.lock_owner.s_dev = server->s_dev;
Trond Myklebustc1d51932008-04-07 13:20:54 -04004030 p->res.lock_seqid = p->arg.lock_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004031 p->lsp = lsp;
Andy Adamson66179ef2009-04-01 09:22:22 -04004032 p->server = server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004033 atomic_inc(&lsp->ls_count);
4034 p->ctx = get_nfs_open_context(ctx);
4035 memcpy(&p->fl, fl, sizeof(p->fl));
4036 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004037out_free_seqid:
4038 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004039out_free:
4040 kfree(p);
4041 return NULL;
4042}
4043
4044static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
4045{
4046 struct nfs4_lockdata *data = calldata;
4047 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048
Harvey Harrison3110ff82008-05-02 13:42:44 -07004049 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004050 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
4051 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004052 /* Do we need to do an open_to_lock_owner? */
4053 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05004054 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
4055 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004056 data->arg.open_stateid = &state->stateid;
4057 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04004058 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004059 } else
4060 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01004061 data->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04004062 if (nfs4_setup_sequence(data->server,
4063 &data->arg.seq_args,
Andy Adamson66179ef2009-04-01 09:22:22 -04004064 &data->res.seq_res, 1, task))
4065 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004066 rpc_call_start(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004067 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004068}
4069
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004070static void nfs4_recover_lock_prepare(struct rpc_task *task, void *calldata)
4071{
4072 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
4073 nfs4_lock_prepare(task, calldata);
4074}
4075
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004076static void nfs4_lock_done(struct rpc_task *task, void *calldata)
4077{
4078 struct nfs4_lockdata *data = calldata;
4079
Harvey Harrison3110ff82008-05-02 13:42:44 -07004080 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004081
Trond Myklebust14516c32010-07-31 14:29:06 -04004082 if (!nfs4_sequence_done(task, &data->res.seq_res))
4083 return;
Andy Adamson66179ef2009-04-01 09:22:22 -04004084
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004085 data->rpc_status = task->tk_status;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004086 if (data->arg.new_lock_owner != 0) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004087 if (data->rpc_status == 0)
4088 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
4089 else
4090 goto out;
4091 }
4092 if (data->rpc_status == 0) {
4093 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
4094 sizeof(data->lsp->ls_stateid.data));
4095 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04004096 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004097 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004098out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004099 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004100}
4101
4102static void nfs4_lock_release(void *calldata)
4103{
4104 struct nfs4_lockdata *data = calldata;
4105
Harvey Harrison3110ff82008-05-02 13:42:44 -07004106 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004107 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004108 if (data->cancelled != 0) {
4109 struct rpc_task *task;
4110 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
4111 data->arg.lock_seqid);
4112 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05004113 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004114 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004115 } else
4116 nfs_free_seqid(data->arg.lock_seqid);
4117 nfs4_put_lock_state(data->lsp);
4118 put_nfs_open_context(data->ctx);
4119 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004120 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004121}
4122
4123static const struct rpc_call_ops nfs4_lock_ops = {
4124 .rpc_call_prepare = nfs4_lock_prepare,
4125 .rpc_call_done = nfs4_lock_done,
4126 .rpc_release = nfs4_lock_release,
4127};
4128
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004129static const struct rpc_call_ops nfs4_recover_lock_ops = {
4130 .rpc_call_prepare = nfs4_recover_lock_prepare,
4131 .rpc_call_done = nfs4_lock_done,
4132 .rpc_release = nfs4_lock_release,
4133};
4134
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004135static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error)
4136{
4137 struct nfs_client *clp = server->nfs_client;
4138 struct nfs4_state *state = lsp->ls_state;
4139
4140 switch (error) {
4141 case -NFS4ERR_ADMIN_REVOKED:
4142 case -NFS4ERR_BAD_STATEID:
4143 case -NFS4ERR_EXPIRED:
4144 if (new_lock_owner != 0 ||
4145 (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0)
4146 nfs4_state_mark_reclaim_nograce(clp, state);
4147 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05004148 break;
4149 case -NFS4ERR_STALE_STATEID:
4150 if (new_lock_owner != 0 ||
4151 (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0)
4152 nfs4_state_mark_reclaim_reboot(clp, state);
4153 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004154 };
4155}
4156
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004157static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004158{
4159 struct nfs4_lockdata *data;
4160 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004161 struct rpc_message msg = {
4162 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
4163 .rpc_cred = state->owner->so_cred,
4164 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04004165 struct rpc_task_setup task_setup_data = {
4166 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04004167 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004168 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05004169 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004170 .flags = RPC_TASK_ASYNC,
4171 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004172 int ret;
4173
Harvey Harrison3110ff82008-05-02 13:42:44 -07004174 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004175 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004176 fl->fl_u.nfs4_fl.owner,
4177 recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004178 if (data == NULL)
4179 return -ENOMEM;
4180 if (IS_SETLKW(cmd))
4181 data->arg.block = 1;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004182 if (recovery_type > NFS_LOCK_NEW) {
4183 if (recovery_type == NFS_LOCK_RECLAIM)
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004184 data->arg.reclaim = NFS_LOCK_RECLAIM;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004185 task_setup_data.callback_ops = &nfs4_recover_lock_ops;
4186 }
Trond Myklebust1174dd12010-12-21 10:52:24 -05004187 msg.rpc_argp = &data->arg;
4188 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04004189 task_setup_data.callback_data = data;
4190 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05004191 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004192 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004193 ret = nfs4_wait_for_completion_rpc_task(task);
4194 if (ret == 0) {
4195 ret = data->rpc_status;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004196 if (ret)
4197 nfs4_handle_setlk_error(data->server, data->lsp,
4198 data->arg.new_lock_owner, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004199 } else
4200 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05004201 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004202 dprintk("%s: done, ret = %d!\n", __func__, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004203 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204}
4205
4206static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
4207{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004208 struct nfs_server *server = NFS_SERVER(state->inode);
4209 struct nfs4_exception exception = { };
4210 int err;
4211
4212 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004213 /* Cache the lock if possible... */
4214 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4215 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004216 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM);
Trond Myklebust168667c2010-10-19 19:47:49 -04004217 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00004218 break;
4219 nfs4_handle_exception(server, err, &exception);
4220 } while (exception.retry);
4221 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222}
4223
4224static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
4225{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004226 struct nfs_server *server = NFS_SERVER(state->inode);
4227 struct nfs4_exception exception = { };
4228 int err;
4229
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004230 err = nfs4_set_lock_state(state, request);
4231 if (err != 0)
4232 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004233 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004234 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4235 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004236 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05004237 switch (err) {
4238 default:
4239 goto out;
4240 case -NFS4ERR_GRACE:
4241 case -NFS4ERR_DELAY:
4242 nfs4_handle_exception(server, err, &exception);
4243 err = 0;
4244 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00004245 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05004246out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00004247 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248}
4249
4250static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4251{
Trond Myklebust19e03c52008-12-23 15:21:44 -05004252 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004253 unsigned char fl_flags = request->fl_flags;
Trond Myklebust8e469eb2010-01-26 15:42:30 -05004254 int status = -ENOLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255
Trond Myklebust8e469eb2010-01-26 15:42:30 -05004256 if ((fl_flags & FL_POSIX) &&
4257 !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags))
4258 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004259 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004260 status = nfs4_set_lock_state(state, request);
4261 if (status != 0)
4262 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004263 request->fl_flags |= FL_ACCESS;
4264 status = do_vfs_lock(request->fl_file, request);
4265 if (status < 0)
4266 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05004267 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004268 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04004269 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004270 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05004271 request->fl_flags = fl_flags & ~FL_SLEEP;
4272 status = do_vfs_lock(request->fl_file, request);
4273 goto out_unlock;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004274 }
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004275 status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW);
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004276 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04004277 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004278 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004279 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004280 if (do_vfs_lock(request->fl_file, request) < 0)
Harvey Harrison3110ff82008-05-02 13:42:44 -07004281 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004282out_unlock:
Trond Myklebust19e03c52008-12-23 15:21:44 -05004283 up_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004284out:
4285 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 return status;
4287}
4288
4289static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4290{
4291 struct nfs4_exception exception = { };
4292 int err;
4293
4294 do {
Trond Myklebust965b5d62009-06-17 13:22:59 -07004295 err = _nfs4_proc_setlk(state, cmd, request);
4296 if (err == -NFS4ERR_DENIED)
4297 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 err = nfs4_handle_exception(NFS_SERVER(state->inode),
Trond Myklebust965b5d62009-06-17 13:22:59 -07004299 err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 } while (exception.retry);
4301 return err;
4302}
4303
4304static int
4305nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
4306{
4307 struct nfs_open_context *ctx;
4308 struct nfs4_state *state;
4309 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
4310 int status;
4311
4312 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004313 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 state = ctx->state;
4315
4316 if (request->fl_start < 0 || request->fl_end < 0)
4317 return -EINVAL;
4318
Trond Myklebustd9531262009-07-21 19:22:38 -04004319 if (IS_GETLK(cmd)) {
4320 if (state != NULL)
4321 return nfs4_proc_getlk(state, F_GETLK, request);
4322 return 0;
4323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324
4325 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
4326 return -EINVAL;
4327
Trond Myklebustd9531262009-07-21 19:22:38 -04004328 if (request->fl_type == F_UNLCK) {
4329 if (state != NULL)
4330 return nfs4_proc_unlck(state, cmd, request);
4331 return 0;
4332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333
Trond Myklebustd9531262009-07-21 19:22:38 -04004334 if (state == NULL)
4335 return -ENOLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 do {
4337 status = nfs4_proc_setlk(state, cmd, request);
4338 if ((status != -EAGAIN) || IS_SETLK(cmd))
4339 break;
4340 timeout = nfs4_set_lock_task_retry(timeout);
4341 status = -ERESTARTSYS;
4342 if (signalled())
4343 break;
4344 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 return status;
4346}
4347
Trond Myklebust888e6942005-11-04 15:38:11 -05004348int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
4349{
4350 struct nfs_server *server = NFS_SERVER(state->inode);
4351 struct nfs4_exception exception = { };
4352 int err;
4353
4354 err = nfs4_set_lock_state(state, fl);
4355 if (err != 0)
4356 goto out;
4357 do {
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004358 err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW);
Trond Myklebustd5122202009-06-17 13:22:58 -07004359 switch (err) {
4360 default:
4361 printk(KERN_ERR "%s: unhandled error %d.\n",
4362 __func__, err);
4363 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004364 case -ESTALE:
Trond Myklebustd5122202009-06-17 13:22:58 -07004365 goto out;
4366 case -NFS4ERR_EXPIRED:
4367 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004368 case -NFS4ERR_STALE_STATEID:
Ricardo Labiaga74e7bb72009-12-07 09:48:30 -05004369 case -NFS4ERR_BADSESSION:
4370 case -NFS4ERR_BADSLOT:
4371 case -NFS4ERR_BAD_HIGH_SLOT:
4372 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
4373 case -NFS4ERR_DEADSESSION:
Trond Myklebustd5122202009-06-17 13:22:58 -07004374 nfs4_schedule_state_recovery(server->nfs_client);
4375 goto out;
Trond Myklebust965b5d62009-06-17 13:22:59 -07004376 case -ERESTARTSYS:
4377 /*
4378 * The show must go on: exit, but mark the
4379 * stateid as needing recovery.
4380 */
4381 case -NFS4ERR_ADMIN_REVOKED:
4382 case -NFS4ERR_BAD_STATEID:
4383 case -NFS4ERR_OPENMODE:
4384 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
4385 err = 0;
4386 goto out;
Trond Myklebust168667c2010-10-19 19:47:49 -04004387 case -EKEYEXPIRED:
4388 /*
4389 * User RPCSEC_GSS context has expired.
4390 * We cannot recover this stateid now, so
4391 * skip it and allow recovery thread to
4392 * proceed.
4393 */
4394 err = 0;
4395 goto out;
Trond Myklebust965b5d62009-06-17 13:22:59 -07004396 case -ENOMEM:
4397 case -NFS4ERR_DENIED:
4398 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
4399 err = 0;
4400 goto out;
Trond Myklebustd5122202009-06-17 13:22:58 -07004401 case -NFS4ERR_DELAY:
4402 break;
4403 }
Trond Myklebust888e6942005-11-04 15:38:11 -05004404 err = nfs4_handle_exception(server, err, &exception);
4405 } while (exception.retry);
4406out:
4407 return err;
4408}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004409
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004410static void nfs4_release_lockowner_release(void *calldata)
4411{
4412 kfree(calldata);
4413}
4414
4415const struct rpc_call_ops nfs4_release_lockowner_ops = {
4416 .rpc_release = nfs4_release_lockowner_release,
4417};
4418
4419void nfs4_release_lockowner(const struct nfs4_lock_state *lsp)
4420{
4421 struct nfs_server *server = lsp->ls_state->owner->so_server;
4422 struct nfs_release_lockowner_args *args;
4423 struct rpc_message msg = {
4424 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER],
4425 };
4426
4427 if (server->nfs_client->cl_mvops->minor_version != 0)
4428 return;
4429 args = kmalloc(sizeof(*args), GFP_NOFS);
4430 if (!args)
4431 return;
4432 args->lock_owner.clientid = server->nfs_client->cl_clientid;
4433 args->lock_owner.id = lsp->ls_id.id;
Trond Myklebustd035c362010-12-21 10:45:27 -05004434 args->lock_owner.s_dev = server->s_dev;
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004435 msg.rpc_argp = args;
4436 rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, args);
4437}
4438
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004439#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
4440
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004441static int nfs4_xattr_set_nfs4_acl(struct dentry *dentry, const char *key,
4442 const void *buf, size_t buflen,
4443 int flags, int type)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004444{
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004445 if (strcmp(key, "") != 0)
4446 return -EINVAL;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004447
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004448 return nfs4_proc_set_acl(dentry->d_inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004449}
4450
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004451static int nfs4_xattr_get_nfs4_acl(struct dentry *dentry, const char *key,
4452 void *buf, size_t buflen, int type)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004453{
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004454 if (strcmp(key, "") != 0)
4455 return -EINVAL;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004456
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004457 return nfs4_proc_get_acl(dentry->d_inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004458}
4459
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004460static size_t nfs4_xattr_list_nfs4_acl(struct dentry *dentry, char *list,
4461 size_t list_len, const char *name,
4462 size_t name_len, int type)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004463{
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004464 size_t len = sizeof(XATTR_NAME_NFSV4_ACL);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004465
J. Bruce Fields096455a2006-03-20 23:23:42 -05004466 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
4467 return 0;
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004468
4469 if (list && len <= list_len)
4470 memcpy(list, XATTR_NAME_NFSV4_ACL, len);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004471 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004472}
4473
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004474static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
4475{
4476 if (!((fattr->valid & NFS_ATTR_FATTR_FILEID) &&
4477 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
4478 (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)))
4479 return;
4480
4481 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
4482 NFS_ATTR_FATTR_NLINK;
4483 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
4484 fattr->nlink = 2;
4485}
4486
Trond Myklebust56659e92007-07-17 21:52:39 -04004487int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04004488 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004489{
4490 struct nfs_server *server = NFS_SERVER(dir);
4491 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04004492 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
4493 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004494 };
4495 struct nfs4_fs_locations_arg args = {
4496 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05004497 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004498 .page = page,
4499 .bitmask = bitmask,
4500 };
Benny Halevy22958462009-04-01 09:22:02 -04004501 struct nfs4_fs_locations_res res = {
4502 .fs_locations = fs_locations,
4503 };
Trond Myklebust683b57b2006-06-09 09:34:22 -04004504 struct rpc_message msg = {
4505 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
4506 .rpc_argp = &args,
Benny Halevy22958462009-04-01 09:22:02 -04004507 .rpc_resp = &res,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004508 };
4509 int status;
4510
Harvey Harrison3110ff82008-05-02 13:42:44 -07004511 dprintk("%s: start\n", __func__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05004512 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004513 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04004514 fs_locations->nlocations = 0;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04004515 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004516 nfs_fixup_referral_attributes(&fs_locations->fattr);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004517 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004518 return status;
4519}
4520
Andy Adamson557134a2009-04-01 09:21:53 -04004521#ifdef CONFIG_NFS_V4_1
Benny Halevy99fe60d2009-04-01 09:22:29 -04004522/*
Andy Adamson357f54d2010-12-14 10:11:57 -05004523 * Check the exchange flags returned by the server for invalid flags, having
4524 * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or
4525 * DS flags set.
4526 */
4527static int nfs4_check_cl_exchange_flags(u32 flags)
4528{
4529 if (flags & ~EXCHGID4_FLAG_MASK_R)
4530 goto out_inval;
4531 if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) &&
4532 (flags & EXCHGID4_FLAG_USE_NON_PNFS))
4533 goto out_inval;
4534 if (!(flags & (EXCHGID4_FLAG_MASK_PNFS)))
4535 goto out_inval;
4536 return NFS_OK;
4537out_inval:
4538 return -NFS4ERR_INVAL;
4539}
4540
4541/*
Benny Halevy99fe60d2009-04-01 09:22:29 -04004542 * nfs4_proc_exchange_id()
4543 *
4544 * Since the clientid has expired, all compounds using sessions
4545 * associated with the stale clientid will be returning
4546 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
4547 * be in some phase of session reset.
4548 */
Andy Adamson4d643d12009-12-04 15:52:24 -05004549int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
Benny Halevy99fe60d2009-04-01 09:22:29 -04004550{
4551 nfs4_verifier verifier;
4552 struct nfs41_exchange_id_args args = {
4553 .client = clp,
Andy Adamson357f54d2010-12-14 10:11:57 -05004554 .flags = EXCHGID4_FLAG_SUPP_MOVED_REFER,
Benny Halevy99fe60d2009-04-01 09:22:29 -04004555 };
4556 struct nfs41_exchange_id_res res = {
4557 .client = clp,
4558 };
4559 int status;
4560 struct rpc_message msg = {
4561 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
4562 .rpc_argp = &args,
4563 .rpc_resp = &res,
4564 .rpc_cred = cred,
4565 };
4566 __be32 *p;
4567
4568 dprintk("--> %s\n", __func__);
4569 BUG_ON(clp == NULL);
Andy Adamsona7b72102009-04-01 09:22:46 -04004570
Benny Halevy99fe60d2009-04-01 09:22:29 -04004571 p = (u32 *)verifier.data;
4572 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
4573 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
4574 args.verifier = &verifier;
4575
Andy Adamsonc7a360b2011-01-25 19:15:32 -05004576 args.id_len = scnprintf(args.id, sizeof(args.id),
4577 "%s/%s.%s/%u",
4578 clp->cl_ipaddr,
4579 init_utsname()->nodename,
4580 init_utsname()->domainname,
4581 clp->cl_rpcclient->cl_auth->au_flavor);
Benny Halevy99fe60d2009-04-01 09:22:29 -04004582
Andy Adamsonc7a360b2011-01-25 19:15:32 -05004583 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
4584 if (!status)
4585 status = nfs4_check_cl_exchange_flags(clp->cl_exchange_flags);
Benny Halevy99fe60d2009-04-01 09:22:29 -04004586 dprintk("<-- %s status= %d\n", __func__, status);
4587 return status;
4588}
4589
Andy Adamson2050f0c2009-04-01 09:22:30 -04004590struct nfs4_get_lease_time_data {
4591 struct nfs4_get_lease_time_args *args;
4592 struct nfs4_get_lease_time_res *res;
4593 struct nfs_client *clp;
4594};
4595
4596static void nfs4_get_lease_time_prepare(struct rpc_task *task,
4597 void *calldata)
4598{
4599 int ret;
4600 struct nfs4_get_lease_time_data *data =
4601 (struct nfs4_get_lease_time_data *)calldata;
4602
4603 dprintk("--> %s\n", __func__);
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -08004604 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004605 /* just setup sequence, do not trigger session recovery
4606 since we're invoked within one */
4607 ret = nfs41_setup_sequence(data->clp->cl_session,
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -08004608 &data->args->la_seq_args,
4609 &data->res->lr_seq_res, 0, task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004610
4611 BUG_ON(ret == -EAGAIN);
4612 rpc_call_start(task);
4613 dprintk("<-- %s\n", __func__);
4614}
4615
4616/*
4617 * Called from nfs4_state_manager thread for session setup, so don't recover
4618 * from sequence operation or clientid errors.
4619 */
4620static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
4621{
4622 struct nfs4_get_lease_time_data *data =
4623 (struct nfs4_get_lease_time_data *)calldata;
4624
4625 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04004626 if (!nfs41_sequence_done(task, &data->res->lr_seq_res))
4627 return;
Andy Adamson2050f0c2009-04-01 09:22:30 -04004628 switch (task->tk_status) {
4629 case -NFS4ERR_DELAY:
4630 case -NFS4ERR_GRACE:
4631 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
4632 rpc_delay(task, NFS4_POLL_RETRY_MIN);
4633 task->tk_status = 0;
Trond Myklebust0110ee12009-12-07 09:00:24 -05004634 nfs_restart_rpc(task, data->clp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004635 return;
4636 }
Andy Adamson2050f0c2009-04-01 09:22:30 -04004637 dprintk("<-- %s\n", __func__);
4638}
4639
4640struct rpc_call_ops nfs4_get_lease_time_ops = {
4641 .rpc_call_prepare = nfs4_get_lease_time_prepare,
4642 .rpc_call_done = nfs4_get_lease_time_done,
4643};
4644
4645int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
4646{
4647 struct rpc_task *task;
4648 struct nfs4_get_lease_time_args args;
4649 struct nfs4_get_lease_time_res res = {
4650 .lr_fsinfo = fsinfo,
4651 };
4652 struct nfs4_get_lease_time_data data = {
4653 .args = &args,
4654 .res = &res,
4655 .clp = clp,
4656 };
4657 struct rpc_message msg = {
4658 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
4659 .rpc_argp = &args,
4660 .rpc_resp = &res,
4661 };
4662 struct rpc_task_setup task_setup = {
4663 .rpc_client = clp->cl_rpcclient,
4664 .rpc_message = &msg,
4665 .callback_ops = &nfs4_get_lease_time_ops,
4666 .callback_data = &data
4667 };
4668 int status;
4669
Andy Adamson2050f0c2009-04-01 09:22:30 -04004670 dprintk("--> %s\n", __func__);
4671 task = rpc_run_task(&task_setup);
4672
4673 if (IS_ERR(task))
4674 status = PTR_ERR(task);
4675 else {
4676 status = task->tk_status;
4677 rpc_put_task(task);
4678 }
4679 dprintk("<-- %s return %d\n", __func__, status);
4680
4681 return status;
4682}
4683
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004684/*
4685 * Reset a slot table
4686 */
Andy Adamson104aeba2010-01-14 17:45:10 -05004687static int nfs4_reset_slot_table(struct nfs4_slot_table *tbl, u32 max_reqs,
4688 int ivalue)
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004689{
Andy Adamson104aeba2010-01-14 17:45:10 -05004690 struct nfs4_slot *new = NULL;
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004691 int i;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004692 int ret = 0;
4693
Andy Adamson104aeba2010-01-14 17:45:10 -05004694 dprintk("--> %s: max_reqs=%u, tbl->max_slots %d\n", __func__,
4695 max_reqs, tbl->max_slots);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004696
Andy Adamson104aeba2010-01-14 17:45:10 -05004697 /* Does the newly negotiated max_reqs match the existing slot table? */
4698 if (max_reqs != tbl->max_slots) {
4699 ret = -ENOMEM;
4700 new = kmalloc(max_reqs * sizeof(struct nfs4_slot),
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004701 GFP_NOFS);
Andy Adamson104aeba2010-01-14 17:45:10 -05004702 if (!new)
4703 goto out;
4704 ret = 0;
4705 kfree(tbl->slots);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004706 }
4707 spin_lock(&tbl->slot_tbl_lock);
Andy Adamson104aeba2010-01-14 17:45:10 -05004708 if (new) {
4709 tbl->slots = new;
4710 tbl->max_slots = max_reqs;
4711 }
4712 for (i = 0; i < tbl->max_slots; ++i)
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004713 tbl->slots[i].seq_nr = ivalue;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004714 spin_unlock(&tbl->slot_tbl_lock);
4715 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4716 tbl, tbl->slots, tbl->max_slots);
4717out:
4718 dprintk("<-- %s: return %d\n", __func__, ret);
4719 return ret;
4720}
4721
Andy Adamsonfc931582009-04-01 09:22:31 -04004722/*
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004723 * Reset the forechannel and backchannel slot tables
4724 */
4725static int nfs4_reset_slot_tables(struct nfs4_session *session)
4726{
4727 int status;
4728
4729 status = nfs4_reset_slot_table(&session->fc_slot_table,
Andy Adamson104aeba2010-01-14 17:45:10 -05004730 session->fc_attrs.max_reqs, 1);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004731 if (status)
4732 return status;
4733
4734 status = nfs4_reset_slot_table(&session->bc_slot_table,
Andy Adamson104aeba2010-01-14 17:45:10 -05004735 session->bc_attrs.max_reqs, 0);
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004736 return status;
4737}
4738
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004739/* Destroy the slot table */
4740static void nfs4_destroy_slot_tables(struct nfs4_session *session)
4741{
4742 if (session->fc_slot_table.slots != NULL) {
4743 kfree(session->fc_slot_table.slots);
4744 session->fc_slot_table.slots = NULL;
4745 }
4746 if (session->bc_slot_table.slots != NULL) {
4747 kfree(session->bc_slot_table.slots);
4748 session->bc_slot_table.slots = NULL;
4749 }
4750 return;
4751}
4752
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004753/*
Andy Adamsonfc931582009-04-01 09:22:31 -04004754 * Initialize slot table
4755 */
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004756static int nfs4_init_slot_table(struct nfs4_slot_table *tbl,
4757 int max_slots, int ivalue)
Andy Adamsonfc931582009-04-01 09:22:31 -04004758{
Andy Adamsonfc931582009-04-01 09:22:31 -04004759 struct nfs4_slot *slot;
4760 int ret = -ENOMEM;
4761
4762 BUG_ON(max_slots > NFS4_MAX_SLOT_TABLE);
4763
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004764 dprintk("--> %s: max_reqs=%u\n", __func__, max_slots);
Andy Adamsonfc931582009-04-01 09:22:31 -04004765
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004766 slot = kcalloc(max_slots, sizeof(struct nfs4_slot), GFP_NOFS);
Andy Adamsonfc931582009-04-01 09:22:31 -04004767 if (!slot)
4768 goto out;
Andy Adamsonfc931582009-04-01 09:22:31 -04004769 ret = 0;
4770
4771 spin_lock(&tbl->slot_tbl_lock);
Andy Adamsonfc931582009-04-01 09:22:31 -04004772 tbl->max_slots = max_slots;
4773 tbl->slots = slot;
4774 tbl->highest_used_slotid = -1; /* no slot is currently used */
4775 spin_unlock(&tbl->slot_tbl_lock);
4776 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4777 tbl, tbl->slots, tbl->max_slots);
4778out:
4779 dprintk("<-- %s: return %d\n", __func__, ret);
4780 return ret;
Andy Adamsonfc931582009-04-01 09:22:31 -04004781}
4782
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004783/*
4784 * Initialize the forechannel and backchannel tables
4785 */
4786static int nfs4_init_slot_tables(struct nfs4_session *session)
4787{
Trond Myklebustf26468f2009-12-05 19:32:11 -05004788 struct nfs4_slot_table *tbl;
4789 int status = 0;
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004790
Trond Myklebustf26468f2009-12-05 19:32:11 -05004791 tbl = &session->fc_slot_table;
4792 if (tbl->slots == NULL) {
4793 status = nfs4_init_slot_table(tbl,
4794 session->fc_attrs.max_reqs, 1);
4795 if (status)
4796 return status;
4797 }
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004798
Trond Myklebustf26468f2009-12-05 19:32:11 -05004799 tbl = &session->bc_slot_table;
4800 if (tbl->slots == NULL) {
4801 status = nfs4_init_slot_table(tbl,
4802 session->bc_attrs.max_reqs, 0);
4803 if (status)
4804 nfs4_destroy_slot_tables(session);
4805 }
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004806
4807 return status;
Andy Adamson557134a2009-04-01 09:21:53 -04004808}
4809
4810struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp)
4811{
4812 struct nfs4_session *session;
4813 struct nfs4_slot_table *tbl;
4814
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004815 session = kzalloc(sizeof(struct nfs4_session), GFP_NOFS);
Andy Adamson557134a2009-04-01 09:21:53 -04004816 if (!session)
4817 return NULL;
Andy Adamson76db6d92009-04-01 09:22:38 -04004818
Andy Adamson557134a2009-04-01 09:21:53 -04004819 tbl = &session->fc_slot_table;
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -05004820 tbl->highest_used_slotid = -1;
Andy Adamson557134a2009-04-01 09:21:53 -04004821 spin_lock_init(&tbl->slot_tbl_lock);
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -08004822 rpc_init_priority_wait_queue(&tbl->slot_tbl_waitq, "ForeChannel Slot table");
Andy Adamson42acd022011-01-06 02:04:34 +00004823 init_completion(&tbl->complete);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004824
4825 tbl = &session->bc_slot_table;
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -05004826 tbl->highest_used_slotid = -1;
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004827 spin_lock_init(&tbl->slot_tbl_lock);
4828 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "BackChannel Slot table");
Andy Adamson42acd022011-01-06 02:04:34 +00004829 init_completion(&tbl->complete);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004830
Trond Myklebust1055d762010-06-16 09:52:27 -04004831 session->session_state = 1<<NFS4_SESSION_INITING;
4832
Andy Adamson557134a2009-04-01 09:21:53 -04004833 session->clp = clp;
4834 return session;
4835}
4836
4837void nfs4_destroy_session(struct nfs4_session *session)
4838{
Andy Adamson5a0ffe52009-04-01 09:23:18 -04004839 nfs4_proc_destroy_session(session);
4840 dprintk("%s Destroy backchannel for xprt %p\n",
4841 __func__, session->clp->cl_rpcclient->cl_xprt);
4842 xprt_destroy_backchannel(session->clp->cl_rpcclient->cl_xprt,
4843 NFS41_BC_MIN_CALLBACKS);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004844 nfs4_destroy_slot_tables(session);
Andy Adamson557134a2009-04-01 09:21:53 -04004845 kfree(session);
4846}
4847
Andy Adamsonfc931582009-04-01 09:22:31 -04004848/*
4849 * Initialize the values to be used by the client in CREATE_SESSION
4850 * If nfs4_init_session set the fore channel request and response sizes,
4851 * use them.
4852 *
4853 * Set the back channel max_resp_sz_cached to zero to force the client to
4854 * always set csa_cachethis to FALSE because the current implementation
4855 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
4856 */
4857static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args)
4858{
4859 struct nfs4_session *session = args->client->cl_session;
4860 unsigned int mxrqst_sz = session->fc_attrs.max_rqst_sz,
4861 mxresp_sz = session->fc_attrs.max_resp_sz;
4862
4863 if (mxrqst_sz == 0)
4864 mxrqst_sz = NFS_MAX_FILE_IO_SIZE;
4865 if (mxresp_sz == 0)
4866 mxresp_sz = NFS_MAX_FILE_IO_SIZE;
4867 /* Fore channel attributes */
4868 args->fc_attrs.headerpadsz = 0;
4869 args->fc_attrs.max_rqst_sz = mxrqst_sz;
4870 args->fc_attrs.max_resp_sz = mxresp_sz;
Andy Adamsonfc931582009-04-01 09:22:31 -04004871 args->fc_attrs.max_ops = NFS4_MAX_OPS;
4872 args->fc_attrs.max_reqs = session->clp->cl_rpcclient->cl_xprt->max_reqs;
4873
4874 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
Mike Sager8e0d46e2009-12-17 12:06:26 -05004875 "max_ops=%u max_reqs=%u\n",
Andy Adamsonfc931582009-04-01 09:22:31 -04004876 __func__,
4877 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
Mike Sager8e0d46e2009-12-17 12:06:26 -05004878 args->fc_attrs.max_ops, args->fc_attrs.max_reqs);
Andy Adamsonfc931582009-04-01 09:22:31 -04004879
4880 /* Back channel attributes */
4881 args->bc_attrs.headerpadsz = 0;
4882 args->bc_attrs.max_rqst_sz = PAGE_SIZE;
4883 args->bc_attrs.max_resp_sz = PAGE_SIZE;
4884 args->bc_attrs.max_resp_sz_cached = 0;
4885 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
4886 args->bc_attrs.max_reqs = 1;
4887
4888 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
4889 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4890 __func__,
4891 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
4892 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
4893 args->bc_attrs.max_reqs);
4894}
4895
J. Bruce Fields43c2e882010-10-02 15:19:01 -04004896static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args, struct nfs4_session *session)
Andy Adamson8d353012009-04-01 09:22:32 -04004897{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04004898 struct nfs4_channel_attrs *sent = &args->fc_attrs;
4899 struct nfs4_channel_attrs *rcvd = &session->fc_attrs;
4900
4901 if (rcvd->headerpadsz > sent->headerpadsz)
4902 return -EINVAL;
4903 if (rcvd->max_resp_sz > sent->max_resp_sz)
4904 return -EINVAL;
4905 /*
4906 * Our requested max_ops is the minimum we need; we're not
4907 * prepared to break up compounds into smaller pieces than that.
4908 * So, no point even trying to continue if the server won't
4909 * cooperate:
4910 */
4911 if (rcvd->max_ops < sent->max_ops)
4912 return -EINVAL;
4913 if (rcvd->max_reqs == 0)
4914 return -EINVAL;
4915 return 0;
Andy Adamson8d353012009-04-01 09:22:32 -04004916}
4917
J. Bruce Fields43c2e882010-10-02 15:19:01 -04004918static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args, struct nfs4_session *session)
4919{
4920 struct nfs4_channel_attrs *sent = &args->bc_attrs;
4921 struct nfs4_channel_attrs *rcvd = &session->bc_attrs;
Andy Adamson8d353012009-04-01 09:22:32 -04004922
J. Bruce Fields43c2e882010-10-02 15:19:01 -04004923 if (rcvd->max_rqst_sz > sent->max_rqst_sz)
4924 return -EINVAL;
4925 if (rcvd->max_resp_sz < sent->max_resp_sz)
4926 return -EINVAL;
4927 if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached)
4928 return -EINVAL;
4929 /* These would render the backchannel useless: */
4930 if (rcvd->max_ops == 0)
4931 return -EINVAL;
4932 if (rcvd->max_reqs == 0)
4933 return -EINVAL;
4934 return 0;
4935}
Andy Adamson8d353012009-04-01 09:22:32 -04004936
Andy Adamson8d353012009-04-01 09:22:32 -04004937static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
4938 struct nfs4_session *session)
4939{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04004940 int ret;
Andy Adamson8d353012009-04-01 09:22:32 -04004941
J. Bruce Fields43c2e882010-10-02 15:19:01 -04004942 ret = nfs4_verify_fore_channel_attrs(args, session);
4943 if (ret)
4944 return ret;
4945 return nfs4_verify_back_channel_attrs(args, session);
Andy Adamson8d353012009-04-01 09:22:32 -04004946}
4947
Andy Adamsonfc931582009-04-01 09:22:31 -04004948static int _nfs4_proc_create_session(struct nfs_client *clp)
4949{
4950 struct nfs4_session *session = clp->cl_session;
4951 struct nfs41_create_session_args args = {
4952 .client = clp,
4953 .cb_program = NFS4_CALLBACK,
4954 };
4955 struct nfs41_create_session_res res = {
4956 .client = clp,
4957 };
4958 struct rpc_message msg = {
4959 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
4960 .rpc_argp = &args,
4961 .rpc_resp = &res,
4962 };
4963 int status;
4964
4965 nfs4_init_channel_attrs(&args);
Andy Adamson0f914212009-04-01 09:23:16 -04004966 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
Andy Adamsonfc931582009-04-01 09:22:31 -04004967
4968 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
4969
Andy Adamson8d353012009-04-01 09:22:32 -04004970 if (!status)
4971 /* Verify the session's negotiated channel_attrs values */
4972 status = nfs4_verify_channel_attrs(&args, session);
Andy Adamsonfc931582009-04-01 09:22:31 -04004973 if (!status) {
4974 /* Increment the clientid slot sequence id */
4975 clp->cl_seqid++;
4976 }
4977
4978 return status;
4979}
4980
4981/*
4982 * Issues a CREATE_SESSION operation to the server.
4983 * It is the responsibility of the caller to verify the session is
4984 * expired before calling this routine.
4985 */
Trond Myklebustf26468f2009-12-05 19:32:11 -05004986int nfs4_proc_create_session(struct nfs_client *clp)
Andy Adamsonfc931582009-04-01 09:22:31 -04004987{
4988 int status;
4989 unsigned *ptr;
Andy Adamsonfc931582009-04-01 09:22:31 -04004990 struct nfs4_session *session = clp->cl_session;
4991
4992 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
4993
4994 status = _nfs4_proc_create_session(clp);
4995 if (status)
4996 goto out;
4997
Trond Myklebustf26468f2009-12-05 19:32:11 -05004998 /* Init and reset the fore channel */
4999 status = nfs4_init_slot_tables(session);
5000 dprintk("slot table initialization returned %d\n", status);
5001 if (status)
5002 goto out;
5003 status = nfs4_reset_slot_tables(session);
5004 dprintk("slot table reset returned %d\n", status);
Andy Adamsonfc931582009-04-01 09:22:31 -04005005 if (status)
5006 goto out;
5007
5008 ptr = (unsigned *)&session->sess_id.data[0];
5009 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
5010 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
Andy Adamsonfc931582009-04-01 09:22:31 -04005011out:
5012 dprintk("<-- %s\n", __func__);
5013 return status;
5014}
5015
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005016/*
5017 * Issue the over-the-wire RPC DESTROY_SESSION.
5018 * The caller must serialize access to this routine.
5019 */
5020int nfs4_proc_destroy_session(struct nfs4_session *session)
5021{
5022 int status = 0;
5023 struct rpc_message msg;
5024
5025 dprintk("--> nfs4_proc_destroy_session\n");
5026
5027 /* session is still being setup */
5028 if (session->clp->cl_cons_state != NFS_CS_READY)
5029 return status;
5030
5031 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION];
5032 msg.rpc_argp = session;
5033 msg.rpc_resp = NULL;
5034 msg.rpc_cred = NULL;
5035 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
5036
5037 if (status)
5038 printk(KERN_WARNING
5039 "Got error %d from the server on DESTROY_SESSION. "
5040 "Session has been destroyed regardless...\n", status);
5041
5042 dprintk("<-- nfs4_proc_destroy_session\n");
5043 return status;
5044}
5045
Trond Myklebustfccba802009-07-21 16:48:07 -04005046int nfs4_init_session(struct nfs_server *server)
5047{
5048 struct nfs_client *clp = server->nfs_client;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05005049 struct nfs4_session *session;
Andy Adamson68bf05e2009-12-15 12:55:02 -05005050 unsigned int rsize, wsize;
Trond Myklebustfccba802009-07-21 16:48:07 -04005051 int ret;
5052
5053 if (!nfs4_has_session(clp))
5054 return 0;
5055
Trond Myklebust1055d762010-06-16 09:52:27 -04005056 session = clp->cl_session;
5057 if (!test_and_clear_bit(NFS4_SESSION_INITING, &session->session_state))
5058 return 0;
5059
Andy Adamson68bf05e2009-12-15 12:55:02 -05005060 rsize = server->rsize;
5061 if (rsize == 0)
5062 rsize = NFS_MAX_FILE_IO_SIZE;
5063 wsize = server->wsize;
5064 if (wsize == 0)
5065 wsize = NFS_MAX_FILE_IO_SIZE;
5066
Andy Adamson68bf05e2009-12-15 12:55:02 -05005067 session->fc_attrs.max_rqst_sz = wsize + nfs41_maxwrite_overhead;
5068 session->fc_attrs.max_resp_sz = rsize + nfs41_maxread_overhead;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05005069
Trond Myklebustfccba802009-07-21 16:48:07 -04005070 ret = nfs4_recover_expired_lease(server);
5071 if (!ret)
5072 ret = nfs4_check_client_ready(clp);
5073 return ret;
5074}
5075
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005076/*
5077 * Renew the cl_session lease.
5078 */
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005079struct nfs4_sequence_data {
5080 struct nfs_client *clp;
5081 struct nfs4_sequence_args args;
5082 struct nfs4_sequence_res res;
5083};
5084
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005085static void nfs41_sequence_release(void *data)
5086{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005087 struct nfs4_sequence_data *calldata = data;
5088 struct nfs_client *clp = calldata->clp;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005089
Alexandros Batsakis71358402010-02-05 03:45:05 -08005090 if (atomic_read(&clp->cl_count) > 1)
5091 nfs4_schedule_state_renewal(clp);
5092 nfs_put_client(clp);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005093 kfree(calldata);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005094}
5095
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005096static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp)
5097{
5098 switch(task->tk_status) {
5099 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005100 rpc_delay(task, NFS4_POLL_RETRY_MAX);
5101 return -EAGAIN;
5102 default:
5103 nfs4_schedule_state_recovery(clp);
5104 }
5105 return 0;
5106}
5107
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005108static void nfs41_sequence_call_done(struct rpc_task *task, void *data)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005109{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005110 struct nfs4_sequence_data *calldata = data;
5111 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005112
Trond Myklebust14516c32010-07-31 14:29:06 -04005113 if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp))
5114 return;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005115
5116 if (task->tk_status < 0) {
5117 dprintk("%s ERROR %d\n", __func__, task->tk_status);
Alexandros Batsakis71358402010-02-05 03:45:05 -08005118 if (atomic_read(&clp->cl_count) == 1)
5119 goto out;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005120
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005121 if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) {
5122 rpc_restart_call_prepare(task);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005123 return;
5124 }
5125 }
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005126 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
Alexandros Batsakis71358402010-02-05 03:45:05 -08005127out:
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005128 dprintk("<-- %s\n", __func__);
5129}
5130
5131static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
5132{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005133 struct nfs4_sequence_data *calldata = data;
5134 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005135 struct nfs4_sequence_args *args;
5136 struct nfs4_sequence_res *res;
5137
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005138 args = task->tk_msg.rpc_argp;
5139 res = task->tk_msg.rpc_resp;
5140
Trond Myklebust035168a2010-06-16 09:52:26 -04005141 if (nfs41_setup_sequence(clp->cl_session, args, res, 0, task))
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005142 return;
5143 rpc_call_start(task);
5144}
5145
5146static const struct rpc_call_ops nfs41_sequence_ops = {
5147 .rpc_call_done = nfs41_sequence_call_done,
5148 .rpc_call_prepare = nfs41_sequence_prepare,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005149 .rpc_release = nfs41_sequence_release,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005150};
5151
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005152static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005153{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005154 struct nfs4_sequence_data *calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005155 struct rpc_message msg = {
5156 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
5157 .rpc_cred = cred,
5158 };
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005159 struct rpc_task_setup task_setup_data = {
5160 .rpc_client = clp->cl_rpcclient,
5161 .rpc_message = &msg,
5162 .callback_ops = &nfs41_sequence_ops,
5163 .flags = RPC_TASK_ASYNC | RPC_TASK_SOFT,
5164 };
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005165
Alexandros Batsakis71358402010-02-05 03:45:05 -08005166 if (!atomic_inc_not_zero(&clp->cl_count))
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005167 return ERR_PTR(-EIO);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005168 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005169 if (calldata == NULL) {
Alexandros Batsakis71358402010-02-05 03:45:05 -08005170 nfs_put_client(clp);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005171 return ERR_PTR(-ENOMEM);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005172 }
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005173 msg.rpc_argp = &calldata->args;
5174 msg.rpc_resp = &calldata->res;
5175 calldata->clp = clp;
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005176 task_setup_data.callback_data = calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005177
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005178 return rpc_run_task(&task_setup_data);
5179}
5180
5181static int nfs41_proc_async_sequence(struct nfs_client *clp, struct rpc_cred *cred)
5182{
5183 struct rpc_task *task;
5184 int ret = 0;
5185
5186 task = _nfs41_proc_sequence(clp, cred);
5187 if (IS_ERR(task))
5188 ret = PTR_ERR(task);
5189 else
5190 rpc_put_task(task);
5191 dprintk("<-- %s status=%d\n", __func__, ret);
5192 return ret;
5193}
5194
5195static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
5196{
5197 struct rpc_task *task;
5198 int ret;
5199
5200 task = _nfs41_proc_sequence(clp, cred);
5201 if (IS_ERR(task)) {
5202 ret = PTR_ERR(task);
5203 goto out;
5204 }
5205 ret = rpc_wait_for_completion_task(task);
5206 if (!ret)
5207 ret = task->tk_status;
5208 rpc_put_task(task);
5209out:
5210 dprintk("<-- %s status=%d\n", __func__, ret);
5211 return ret;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005212}
5213
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005214struct nfs4_reclaim_complete_data {
5215 struct nfs_client *clp;
5216 struct nfs41_reclaim_complete_args arg;
5217 struct nfs41_reclaim_complete_res res;
5218};
5219
5220static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
5221{
5222 struct nfs4_reclaim_complete_data *calldata = data;
5223
Alexandros Batsakisb2579572009-12-14 21:27:57 -08005224 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
Trond Myklebust035168a2010-06-16 09:52:26 -04005225 if (nfs41_setup_sequence(calldata->clp->cl_session,
5226 &calldata->arg.seq_args,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005227 &calldata->res.seq_res, 0, task))
5228 return;
5229
5230 rpc_call_start(task);
5231}
5232
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005233static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp)
5234{
5235 switch(task->tk_status) {
5236 case 0:
5237 case -NFS4ERR_COMPLETE_ALREADY:
5238 case -NFS4ERR_WRONG_CRED: /* What to do here? */
5239 break;
5240 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005241 rpc_delay(task, NFS4_POLL_RETRY_MAX);
5242 return -EAGAIN;
5243 default:
5244 nfs4_schedule_state_recovery(clp);
5245 }
5246 return 0;
5247}
5248
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005249static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
5250{
5251 struct nfs4_reclaim_complete_data *calldata = data;
5252 struct nfs_client *clp = calldata->clp;
5253 struct nfs4_sequence_res *res = &calldata->res.seq_res;
5254
5255 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04005256 if (!nfs41_sequence_done(task, res))
5257 return;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005258
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005259 if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) {
5260 rpc_restart_call_prepare(task);
5261 return;
5262 }
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005263 dprintk("<-- %s\n", __func__);
5264}
5265
5266static void nfs4_free_reclaim_complete_data(void *data)
5267{
5268 struct nfs4_reclaim_complete_data *calldata = data;
5269
5270 kfree(calldata);
5271}
5272
5273static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
5274 .rpc_call_prepare = nfs4_reclaim_complete_prepare,
5275 .rpc_call_done = nfs4_reclaim_complete_done,
5276 .rpc_release = nfs4_free_reclaim_complete_data,
5277};
5278
5279/*
5280 * Issue a global reclaim complete.
5281 */
5282static int nfs41_proc_reclaim_complete(struct nfs_client *clp)
5283{
5284 struct nfs4_reclaim_complete_data *calldata;
5285 struct rpc_task *task;
5286 struct rpc_message msg = {
5287 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
5288 };
5289 struct rpc_task_setup task_setup_data = {
5290 .rpc_client = clp->cl_rpcclient,
5291 .rpc_message = &msg,
5292 .callback_ops = &nfs4_reclaim_complete_call_ops,
5293 .flags = RPC_TASK_ASYNC,
5294 };
5295 int status = -ENOMEM;
5296
5297 dprintk("--> %s\n", __func__);
Trond Myklebust8535b2b2010-05-13 12:51:01 -04005298 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005299 if (calldata == NULL)
5300 goto out;
5301 calldata->clp = clp;
5302 calldata->arg.one_fs = 0;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005303
5304 msg.rpc_argp = &calldata->arg;
5305 msg.rpc_resp = &calldata->res;
5306 task_setup_data.callback_data = calldata;
5307 task = rpc_run_task(&task_setup_data);
Dan Carpenteracf82b82010-04-22 11:28:39 +02005308 if (IS_ERR(task)) {
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005309 status = PTR_ERR(task);
Dan Carpenteracf82b82010-04-22 11:28:39 +02005310 goto out;
5311 }
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005312 rpc_put_task(task);
Dan Carpenteracf82b82010-04-22 11:28:39 +02005313 return 0;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005314out:
5315 dprintk("<-- %s status=%d\n", __func__, status);
5316 return status;
5317}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005318
5319static void
5320nfs4_layoutget_prepare(struct rpc_task *task, void *calldata)
5321{
5322 struct nfs4_layoutget *lgp = calldata;
Fred Isamanc31663d2011-01-06 11:36:24 +00005323 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005324
5325 dprintk("--> %s\n", __func__);
Fred Isamanc31663d2011-01-06 11:36:24 +00005326 /* Note the is a race here, where a CB_LAYOUTRECALL can come in
5327 * right now covering the LAYOUTGET we are about to send.
5328 * However, that is not so catastrophic, and there seems
5329 * to be no way to prevent it completely.
5330 */
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005331 if (nfs4_setup_sequence(server, &lgp->args.seq_args,
5332 &lgp->res.seq_res, 0, task))
5333 return;
Fred Isamancf7d63f2011-01-06 11:36:25 +00005334 if (pnfs_choose_layoutget_stateid(&lgp->args.stateid,
5335 NFS_I(lgp->args.inode)->layout,
5336 lgp->args.ctx->state)) {
5337 rpc_exit(task, NFS4_OK);
5338 return;
5339 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005340 rpc_call_start(task);
5341}
5342
5343static void nfs4_layoutget_done(struct rpc_task *task, void *calldata)
5344{
5345 struct nfs4_layoutget *lgp = calldata;
5346 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
5347
5348 dprintk("--> %s\n", __func__);
5349
5350 if (!nfs4_sequence_done(task, &lgp->res.seq_res))
5351 return;
5352
5353 switch (task->tk_status) {
5354 case 0:
5355 break;
5356 case -NFS4ERR_LAYOUTTRYLATER:
5357 case -NFS4ERR_RECALLCONFLICT:
5358 task->tk_status = -NFS4ERR_DELAY;
5359 /* Fall through */
5360 default:
5361 if (nfs4_async_handle_error(task, server, NULL) == -EAGAIN) {
5362 rpc_restart_call_prepare(task);
5363 return;
5364 }
5365 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005366 dprintk("<-- %s\n", __func__);
5367}
5368
5369static void nfs4_layoutget_release(void *calldata)
5370{
5371 struct nfs4_layoutget *lgp = calldata;
5372
5373 dprintk("--> %s\n", __func__);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005374 if (lgp->res.layout.buf != NULL)
5375 free_page((unsigned long) lgp->res.layout.buf);
5376 put_nfs_open_context(lgp->args.ctx);
5377 kfree(calldata);
5378 dprintk("<-- %s\n", __func__);
5379}
5380
5381static const struct rpc_call_ops nfs4_layoutget_call_ops = {
5382 .rpc_call_prepare = nfs4_layoutget_prepare,
5383 .rpc_call_done = nfs4_layoutget_done,
5384 .rpc_release = nfs4_layoutget_release,
5385};
5386
5387int nfs4_proc_layoutget(struct nfs4_layoutget *lgp)
5388{
5389 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
5390 struct rpc_task *task;
5391 struct rpc_message msg = {
5392 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET],
5393 .rpc_argp = &lgp->args,
5394 .rpc_resp = &lgp->res,
5395 };
5396 struct rpc_task_setup task_setup_data = {
5397 .rpc_client = server->client,
5398 .rpc_message = &msg,
5399 .callback_ops = &nfs4_layoutget_call_ops,
5400 .callback_data = lgp,
5401 .flags = RPC_TASK_ASYNC,
5402 };
5403 int status = 0;
5404
5405 dprintk("--> %s\n", __func__);
5406
5407 lgp->res.layout.buf = (void *)__get_free_page(GFP_NOFS);
5408 if (lgp->res.layout.buf == NULL) {
5409 nfs4_layoutget_release(lgp);
5410 return -ENOMEM;
5411 }
5412
5413 lgp->res.seq_res.sr_slot = NULL;
5414 task = rpc_run_task(&task_setup_data);
5415 if (IS_ERR(task))
5416 return PTR_ERR(task);
5417 status = nfs4_wait_for_completion_rpc_task(task);
Fred Isamanc31663d2011-01-06 11:36:24 +00005418 if (status == 0)
5419 status = task->tk_status;
5420 if (status == 0)
5421 status = pnfs_layout_process(lgp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005422 rpc_put_task(task);
5423 dprintk("<-- %s status=%d\n", __func__, status);
5424 return status;
5425}
5426
5427static int
5428_nfs4_proc_getdeviceinfo(struct nfs_server *server, struct pnfs_device *pdev)
5429{
5430 struct nfs4_getdeviceinfo_args args = {
5431 .pdev = pdev,
5432 };
5433 struct nfs4_getdeviceinfo_res res = {
5434 .pdev = pdev,
5435 };
5436 struct rpc_message msg = {
5437 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO],
5438 .rpc_argp = &args,
5439 .rpc_resp = &res,
5440 };
5441 int status;
5442
5443 dprintk("--> %s\n", __func__);
5444 status = nfs4_call_sync(server, &msg, &args, &res, 0);
5445 dprintk("<-- %s status=%d\n", __func__, status);
5446
5447 return status;
5448}
5449
5450int nfs4_proc_getdeviceinfo(struct nfs_server *server, struct pnfs_device *pdev)
5451{
5452 struct nfs4_exception exception = { };
5453 int err;
5454
5455 do {
5456 err = nfs4_handle_exception(server,
5457 _nfs4_proc_getdeviceinfo(server, pdev),
5458 &exception);
5459 } while (exception.retry);
5460 return err;
5461}
5462EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo);
5463
Andy Adamson557134a2009-04-01 09:21:53 -04005464#endif /* CONFIG_NFS_V4_1 */
5465
Andy Adamson591d71c2009-04-01 09:22:47 -04005466struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05005467 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05005468 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469 .recover_open = nfs4_open_reclaim,
5470 .recover_lock = nfs4_lock_reclaim,
Andy Adamson591d71c2009-04-01 09:22:47 -04005471 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04005472 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473};
5474
Andy Adamson591d71c2009-04-01 09:22:47 -04005475#if defined(CONFIG_NFS_V4_1)
5476struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
5477 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
5478 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
5479 .recover_open = nfs4_open_reclaim,
5480 .recover_lock = nfs4_lock_reclaim,
Andy Adamson4d643d12009-12-04 15:52:24 -05005481 .establish_clid = nfs41_init_clientid,
Andy Adamsonb4b82602009-04-01 09:22:49 -04005482 .get_clid_cred = nfs4_get_exchange_id_cred,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005483 .reclaim_complete = nfs41_proc_reclaim_complete,
Andy Adamson591d71c2009-04-01 09:22:47 -04005484};
5485#endif /* CONFIG_NFS_V4_1 */
5486
5487struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05005488 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05005489 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490 .recover_open = nfs4_open_expired,
5491 .recover_lock = nfs4_lock_expired,
Andy Adamson591d71c2009-04-01 09:22:47 -04005492 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04005493 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494};
5495
Andy Adamson591d71c2009-04-01 09:22:47 -04005496#if defined(CONFIG_NFS_V4_1)
5497struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
5498 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
5499 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
5500 .recover_open = nfs4_open_expired,
5501 .recover_lock = nfs4_lock_expired,
Andy Adamson4d643d12009-12-04 15:52:24 -05005502 .establish_clid = nfs41_init_clientid,
Andy Adamsonb4b82602009-04-01 09:22:49 -04005503 .get_clid_cred = nfs4_get_exchange_id_cred,
Andy Adamson591d71c2009-04-01 09:22:47 -04005504};
5505#endif /* CONFIG_NFS_V4_1 */
5506
Benny Halevy29fba382009-04-01 09:22:44 -04005507struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
5508 .sched_state_renewal = nfs4_proc_async_renew,
Andy Adamsona7b72102009-04-01 09:22:46 -04005509 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04005510 .renew_lease = nfs4_proc_renew,
Benny Halevy29fba382009-04-01 09:22:44 -04005511};
5512
5513#if defined(CONFIG_NFS_V4_1)
5514struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
5515 .sched_state_renewal = nfs41_proc_async_sequence,
Andy Adamsona7b72102009-04-01 09:22:46 -04005516 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04005517 .renew_lease = nfs4_proc_sequence,
Benny Halevy29fba382009-04-01 09:22:44 -04005518};
5519#endif
5520
Trond Myklebust97dc1352010-06-16 09:52:26 -04005521static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
5522 .minor_version = 0,
5523 .call_sync = _nfs4_call_sync,
Trond Myklebuste047a102010-06-16 09:52:27 -04005524 .validate_stateid = nfs4_validate_delegation_stateid,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04005525 .reboot_recovery_ops = &nfs40_reboot_recovery_ops,
5526 .nograce_recovery_ops = &nfs40_nograce_recovery_ops,
5527 .state_renewal_ops = &nfs40_state_renewal_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04005528};
5529
5530#if defined(CONFIG_NFS_V4_1)
5531static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
5532 .minor_version = 1,
5533 .call_sync = _nfs4_call_sync_session,
Trond Myklebuste047a102010-06-16 09:52:27 -04005534 .validate_stateid = nfs41_validate_delegation_stateid,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04005535 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
5536 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
5537 .state_renewal_ops = &nfs41_state_renewal_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04005538};
5539#endif
5540
Trond Myklebust97dc1352010-06-16 09:52:26 -04005541const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = {
5542 [0] = &nfs_v4_0_minor_ops,
5543#if defined(CONFIG_NFS_V4_1)
5544 [1] = &nfs_v4_1_minor_ops,
5545#endif
5546};
5547
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08005548static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005549 .permission = nfs_permission,
5550 .getattr = nfs_getattr,
5551 .setattr = nfs_setattr,
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00005552 .getxattr = generic_getxattr,
5553 .setxattr = generic_setxattr,
5554 .listxattr = generic_listxattr,
5555 .removexattr = generic_removexattr,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005556};
5557
David Howells509de812006-08-22 20:06:11 -04005558const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559 .version = 4, /* protocol version */
5560 .dentry_ops = &nfs4_dentry_operations,
5561 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005562 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563 .getroot = nfs4_proc_get_root,
5564 .getattr = nfs4_proc_getattr,
5565 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04005566 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567 .lookup = nfs4_proc_lookup,
5568 .access = nfs4_proc_access,
5569 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570 .create = nfs4_proc_create,
5571 .remove = nfs4_proc_remove,
5572 .unlink_setup = nfs4_proc_unlink_setup,
5573 .unlink_done = nfs4_proc_unlink_done,
5574 .rename = nfs4_proc_rename,
Jeff Laytond3d41522010-09-17 17:31:57 -04005575 .rename_setup = nfs4_proc_rename_setup,
5576 .rename_done = nfs4_proc_rename_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577 .link = nfs4_proc_link,
5578 .symlink = nfs4_proc_symlink,
5579 .mkdir = nfs4_proc_mkdir,
5580 .rmdir = nfs4_proc_remove,
5581 .readdir = nfs4_proc_readdir,
5582 .mknod = nfs4_proc_mknod,
5583 .statfs = nfs4_proc_statfs,
5584 .fsinfo = nfs4_proc_fsinfo,
5585 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04005586 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587 .decode_dirent = nfs4_decode_dirent,
5588 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05005589 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005591 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005593 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005595 .clear_acl_cache = nfs4_zap_acl_attr,
Trond Myklebust7fe5c392009-03-19 15:35:50 -04005596 .close_context = nfs4_close_context,
Trond Myklebust2b484292010-09-17 10:56:51 -04005597 .open_context = nfs4_atomic_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598};
5599
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00005600static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = {
5601 .prefix = XATTR_NAME_NFSV4_ACL,
5602 .list = nfs4_xattr_list_nfs4_acl,
5603 .get = nfs4_xattr_get_nfs4_acl,
5604 .set = nfs4_xattr_set_nfs4_acl,
5605};
5606
5607const struct xattr_handler *nfs4_xattr_handlers[] = {
5608 &nfs4_xattr_nfs4_acl_handler,
5609 NULL
5610};
5611
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612/*
5613 * Local variables:
5614 * c-basic-offset: 8
5615 * End:
5616 */