blob: 78b08993a38b1a566ed7ecd0f957f6dc3b9c71e4 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Trond Myklebust4ce79712005-06-22 17:16:21 +000053#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "delegation.h"
Trond Myklebust101070c2008-02-19 20:04:23 -050055#include "internal.h"
Chuck Lever006ea732006-03-20 13:44:14 -050056#include "iostat.h"
Andy Adamsonfc931582009-04-01 09:22:31 -040057#include "callback.h"
Andy Adamsonb1f69b72010-10-20 00:18:03 -040058#include "pnfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#define NFSDBG_FACILITY NFSDBG_PROC
61
Trond Myklebust2066fe82006-09-15 08:30:46 -040062#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define NFS4_POLL_RETRY_MAX (15*HZ)
64
Trond Myklebusta78cb572009-08-09 15:06:19 -040065#define NFS4_MAX_LOOP_ON_RECOVER (10)
66
Trond Myklebustcdd4e682006-01-03 09:55:12 +010067struct nfs4_opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +010068static int _nfs4_proc_open(struct nfs4_opendata *data);
Alexandros Batsakisb2579572009-12-14 21:27:57 -080069static int _nfs4_recover_proc_open(struct nfs4_opendata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
Trond Myklebust9e33bed2008-12-23 15:21:46 -050071static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *, struct nfs4_state *);
Trond Myklebust99367812007-07-17 21:52:41 -040072static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
73static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
Trond Myklebust0ab64e02010-04-16 16:22:51 -040074static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
75 struct nfs_fattr *fattr, struct iattr *sattr,
76 struct nfs4_state *state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/* Prevent leaks of NFSv4 errors into userland */
WANG Cong46f72f52008-12-30 16:35:55 -050079static int nfs4_map_errors(int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Trond Myklebust52567b02009-10-23 14:46:42 -040081 if (err >= -1000)
82 return err;
83 switch (err) {
84 case -NFS4ERR_RESOURCE:
85 return -EREMOTEIO;
86 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 dprintk("%s could not handle NFSv4 error %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -070088 __func__, -err);
Trond Myklebust52567b02009-10-23 14:46:42 -040089 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 }
Trond Myklebust52567b02009-10-23 14:46:42 -040091 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94/*
95 * This is our standard bitmap for GETATTR requests.
96 */
97const u32 nfs4_fattr_bitmap[2] = {
98 FATTR4_WORD0_TYPE
99 | FATTR4_WORD0_CHANGE
100 | FATTR4_WORD0_SIZE
101 | FATTR4_WORD0_FSID
102 | FATTR4_WORD0_FILEID,
103 FATTR4_WORD1_MODE
104 | FATTR4_WORD1_NUMLINKS
105 | FATTR4_WORD1_OWNER
106 | FATTR4_WORD1_OWNER_GROUP
107 | FATTR4_WORD1_RAWDEV
108 | FATTR4_WORD1_SPACE_USED
109 | FATTR4_WORD1_TIME_ACCESS
110 | FATTR4_WORD1_TIME_METADATA
111 | FATTR4_WORD1_TIME_MODIFY
112};
113
114const u32 nfs4_statfs_bitmap[2] = {
115 FATTR4_WORD0_FILES_AVAIL
116 | FATTR4_WORD0_FILES_FREE
117 | FATTR4_WORD0_FILES_TOTAL,
118 FATTR4_WORD1_SPACE_AVAIL
119 | FATTR4_WORD1_SPACE_FREE
120 | FATTR4_WORD1_SPACE_TOTAL
121};
122
Trond Myklebust4ce79712005-06-22 17:16:21 +0000123const u32 nfs4_pathconf_bitmap[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 FATTR4_WORD0_MAXLINK
125 | FATTR4_WORD0_MAXNAME,
126 0
127};
128
129const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
130 | FATTR4_WORD0_MAXREAD
131 | FATTR4_WORD0_MAXWRITE
132 | FATTR4_WORD0_LEASE_TIME,
Ricardo Labiaga55b6e772010-10-12 16:30:06 -0700133 FATTR4_WORD1_TIME_DELTA
Andy Adamson504913f2010-10-20 00:17:57 -0400134 | FATTR4_WORD1_FS_LAYOUT_TYPES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
Manoj Naik830b8e32006-06-09 09:34:25 -0400137const u32 nfs4_fs_locations_bitmap[2] = {
138 FATTR4_WORD0_TYPE
139 | FATTR4_WORD0_CHANGE
140 | FATTR4_WORD0_SIZE
141 | FATTR4_WORD0_FSID
142 | FATTR4_WORD0_FILEID
143 | FATTR4_WORD0_FS_LOCATIONS,
144 FATTR4_WORD1_MODE
145 | FATTR4_WORD1_NUMLINKS
146 | FATTR4_WORD1_OWNER
147 | FATTR4_WORD1_OWNER_GROUP
148 | FATTR4_WORD1_RAWDEV
149 | FATTR4_WORD1_SPACE_USED
150 | FATTR4_WORD1_TIME_ACCESS
151 | FATTR4_WORD1_TIME_METADATA
152 | FATTR4_WORD1_TIME_MODIFY
153 | FATTR4_WORD1_MOUNTED_ON_FILEID
154};
155
Al Virobc4785c2006-10-19 23:28:51 -0700156static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 struct nfs4_readdir_arg *readdir)
158{
Al Viro0dbb4c62006-10-19 23:28:49 -0700159 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 BUG_ON(readdir->count < 80);
162 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000163 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
165 return;
166 }
167
168 readdir->cookie = 0;
169 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
170 if (cookie == 2)
171 return;
172
173 /*
174 * NFSv4 servers do not return entries for '.' and '..'
175 * Therefore, we fake these entries here. We let '.'
176 * have cookie 0 and '..' have cookie 1. Note that
177 * when talking to the server, we always send cookie 0
178 * instead of 1 or 2.
179 */
Al Viro0dbb4c62006-10-19 23:28:49 -0700180 start = p = kmap_atomic(*readdir->pages, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 if (cookie == 0) {
183 *p++ = xdr_one; /* next */
184 *p++ = xdr_zero; /* cookie, first word */
185 *p++ = xdr_one; /* cookie, second word */
186 *p++ = xdr_one; /* entry len */
187 memcpy(p, ".\0\0\0", 4); /* entry */
188 p++;
189 *p++ = xdr_one; /* bitmap length */
190 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
191 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400192 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194
195 *p++ = xdr_one; /* next */
196 *p++ = xdr_zero; /* cookie, first word */
197 *p++ = xdr_two; /* cookie, second word */
198 *p++ = xdr_two; /* entry len */
199 memcpy(p, "..\0\0", 4); /* entry */
200 p++;
201 *p++ = xdr_one; /* bitmap length */
202 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
203 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400204 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 readdir->pgbase = (char *)p - (char *)start;
207 readdir->count -= readdir->pgbase;
208 kunmap_atomic(start, KM_USER0);
209}
210
Trond Myklebust65de8722008-12-23 15:21:44 -0500211static int nfs4_wait_clnt_recover(struct nfs_client *clp)
212{
213 int res;
214
215 might_sleep();
216
Trond Myklebuste005e802008-12-23 15:21:48 -0500217 res = wait_on_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400218 nfs_wait_bit_killable, TASK_KILLABLE);
Trond Myklebust65de8722008-12-23 15:21:44 -0500219 return res;
220}
221
222static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
223{
224 int res = 0;
225
226 might_sleep();
227
228 if (*timeout <= 0)
229 *timeout = NFS4_POLL_RETRY_MIN;
230 if (*timeout > NFS4_POLL_RETRY_MAX)
231 *timeout = NFS4_POLL_RETRY_MAX;
232 schedule_timeout_killable(*timeout);
233 if (fatal_signal_pending(current))
234 res = -ERESTARTSYS;
235 *timeout <<= 1;
236 return res;
237}
238
239/* This is the error handling routine for processes that are allowed
240 * to sleep.
241 */
242static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
243{
244 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500245 struct nfs4_state *state = exception->state;
Trond Myklebust65de8722008-12-23 15:21:44 -0500246 int ret = errorcode;
247
248 exception->retry = 0;
249 switch(errorcode) {
250 case 0:
251 return 0;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500252 case -NFS4ERR_ADMIN_REVOKED:
253 case -NFS4ERR_BAD_STATEID:
254 case -NFS4ERR_OPENMODE:
255 if (state == NULL)
256 break;
257 nfs4_state_mark_reclaim_nograce(clp, state);
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500258 goto do_state_recovery;
Trond Myklebust65de8722008-12-23 15:21:44 -0500259 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500260 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust65de8722008-12-23 15:21:44 -0500261 case -NFS4ERR_EXPIRED:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500262 goto do_state_recovery;
Trond Myklebust03391692010-01-26 15:42:38 -0500263#if defined(CONFIG_NFS_V4_1)
Andy Adamson4745e312009-04-01 09:22:42 -0400264 case -NFS4ERR_BADSESSION:
265 case -NFS4ERR_BADSLOT:
266 case -NFS4ERR_BAD_HIGH_SLOT:
267 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
268 case -NFS4ERR_DEADSESSION:
269 case -NFS4ERR_SEQ_FALSE_RETRY:
270 case -NFS4ERR_SEQ_MISORDERED:
271 dprintk("%s ERROR: %d Reset session\n", __func__,
272 errorcode);
Andy Adamson0b9e2d42009-12-04 16:02:14 -0500273 nfs4_schedule_state_recovery(clp);
Andy Adamson4745e312009-04-01 09:22:42 -0400274 exception->retry = 1;
Andy Adamsonb9179232009-12-04 15:55:32 -0500275 break;
Trond Myklebust03391692010-01-26 15:42:38 -0500276#endif /* defined(CONFIG_NFS_V4_1) */
Trond Myklebust65de8722008-12-23 15:21:44 -0500277 case -NFS4ERR_FILE_OPEN:
NeilBrown44ed3552009-12-03 15:58:56 -0500278 if (exception->timeout > HZ) {
279 /* We have retried a decent amount, time to
280 * fail
281 */
282 ret = -EBUSY;
283 break;
284 }
Trond Myklebust65de8722008-12-23 15:21:44 -0500285 case -NFS4ERR_GRACE:
286 case -NFS4ERR_DELAY:
Jeff Layton2c643482010-01-07 09:42:03 -0500287 case -EKEYEXPIRED:
Trond Myklebust65de8722008-12-23 15:21:44 -0500288 ret = nfs4_delay(server->client, &exception->timeout);
289 if (ret != 0)
290 break;
291 case -NFS4ERR_OLD_STATEID:
292 exception->retry = 1;
293 }
294 /* We failed to handle the error */
295 return nfs4_map_errors(ret);
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500296do_state_recovery:
297 nfs4_schedule_state_recovery(clp);
298 ret = nfs4_wait_clnt_recover(clp);
299 if (ret == 0)
300 exception->retry = 1;
301 return ret;
Trond Myklebust65de8722008-12-23 15:21:44 -0500302}
303
304
Trond Myklebust452e9352010-07-31 14:29:06 -0400305static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 spin_lock(&clp->cl_lock);
308 if (time_before(clp->cl_last_renewal,timestamp))
309 clp->cl_last_renewal = timestamp;
310 spin_unlock(&clp->cl_lock);
311}
312
Trond Myklebust452e9352010-07-31 14:29:06 -0400313static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
314{
315 do_renew_lease(server->nfs_client, timestamp);
316}
317
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400318#if defined(CONFIG_NFS_V4_1)
319
Benny Halevy510b8172009-04-01 09:22:14 -0400320/*
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400321 * nfs4_free_slot - free a slot and efficiently update slot table.
322 *
323 * freeing a slot is trivially done by clearing its respective bit
324 * in the bitmap.
325 * If the freed slotid equals highest_used_slotid we want to update it
326 * so that the server would be able to size down the slot table if needed,
327 * otherwise we know that the highest_used_slotid is still in use.
328 * When updating highest_used_slotid there may be "holes" in the bitmap
329 * so we need to scan down from highest_used_slotid to 0 looking for the now
330 * highest slotid in use.
331 * If none found, highest_used_slotid is set to -1.
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500332 *
333 * Must be called while holding tbl->slot_tbl_lock
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400334 */
335static void
Benny Halevydfb4f3092010-09-24 09:17:01 -0400336nfs4_free_slot(struct nfs4_slot_table *tbl, struct nfs4_slot *free_slot)
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400337{
Benny Halevydfb4f3092010-09-24 09:17:01 -0400338 int free_slotid = free_slot - tbl->slots;
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400339 int slotid = free_slotid;
340
Benny Halevydfb4f3092010-09-24 09:17:01 -0400341 BUG_ON(slotid < 0 || slotid >= NFS4_MAX_SLOT_TABLE);
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400342 /* clear used bit in bitmap */
343 __clear_bit(slotid, tbl->used_slots);
344
345 /* update highest_used_slotid when it is freed */
346 if (slotid == tbl->highest_used_slotid) {
347 slotid = find_last_bit(tbl->used_slots, tbl->max_slots);
Trond Myklebustbcb56162009-12-05 19:32:19 -0500348 if (slotid < tbl->max_slots)
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400349 tbl->highest_used_slotid = slotid;
350 else
351 tbl->highest_used_slotid = -1;
352 }
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400353 dprintk("%s: free_slotid %u highest_used_slotid %d\n", __func__,
354 free_slotid, tbl->highest_used_slotid);
355}
356
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800357/*
358 * Signal state manager thread if session is drained
359 */
360static void nfs41_check_drain_session_complete(struct nfs4_session *ses)
361{
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800362 struct rpc_task *task;
363
Trond Myklebusta2118c32010-06-16 09:52:26 -0400364 if (!test_bit(NFS4_SESSION_DRAINING, &ses->session_state)) {
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800365 task = rpc_wake_up_next(&ses->fc_slot_table.slot_tbl_waitq);
366 if (task)
367 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800368 return;
369 }
370
371 if (ses->fc_slot_table.highest_used_slotid != -1)
372 return;
373
374 dprintk("%s COMPLETE: Session Drained\n", __func__);
375 complete(&ses->complete);
376}
377
Trond Myklebustd185a332010-06-16 09:52:25 -0400378static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res)
Andy Adamson13615872009-04-01 09:22:17 -0400379{
380 struct nfs4_slot_table *tbl;
381
Trond Myklebustd185a332010-06-16 09:52:25 -0400382 tbl = &res->sr_session->fc_slot_table;
Benny Halevydfb4f3092010-09-24 09:17:01 -0400383 if (!res->sr_slot) {
Andy Adamson13615872009-04-01 09:22:17 -0400384 /* just wake up the next guy waiting since
385 * we may have not consumed a slot after all */
Andy Adamson691daf32009-12-04 15:55:39 -0500386 dprintk("%s: No slot\n", __func__);
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500387 return;
Andy Adamson13615872009-04-01 09:22:17 -0400388 }
Andy Adamsonea028ac2009-12-04 15:55:38 -0500389
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500390 spin_lock(&tbl->slot_tbl_lock);
Benny Halevydfb4f3092010-09-24 09:17:01 -0400391 nfs4_free_slot(tbl, res->sr_slot);
Trond Myklebustd185a332010-06-16 09:52:25 -0400392 nfs41_check_drain_session_complete(res->sr_session);
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500393 spin_unlock(&tbl->slot_tbl_lock);
Benny Halevydfb4f3092010-09-24 09:17:01 -0400394 res->sr_slot = NULL;
Andy Adamson13615872009-04-01 09:22:17 -0400395}
396
Trond Myklebust14516c32010-07-31 14:29:06 -0400397static int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
Andy Adamsonb0df8062009-04-01 09:22:18 -0400398{
399 unsigned long timestamp;
Trond Myklebust14516c32010-07-31 14:29:06 -0400400 struct nfs_client *clp;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400401
402 /*
403 * sr_status remains 1 if an RPC level error occurred. The server
404 * may or may not have processed the sequence operation..
405 * Proceed as if the server received and processed the sequence
406 * operation.
407 */
408 if (res->sr_status == 1)
409 res->sr_status = NFS_OK;
410
411 /* -ERESTARTSYS can result in skipping nfs41_sequence_setup */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400412 if (!res->sr_slot)
Andy Adamsonb0df8062009-04-01 09:22:18 -0400413 goto out;
414
Andy Adamson691daf32009-12-04 15:55:39 -0500415 /* Check the SEQUENCE operation status */
Trond Myklebust14516c32010-07-31 14:29:06 -0400416 switch (res->sr_status) {
417 case 0:
Andy Adamsonb0df8062009-04-01 09:22:18 -0400418 /* Update the slot's sequence and clientid lease timer */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400419 ++res->sr_slot->seq_nr;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400420 timestamp = res->sr_renewal_time;
Trond Myklebust14516c32010-07-31 14:29:06 -0400421 clp = res->sr_session->clp;
Trond Myklebust452e9352010-07-31 14:29:06 -0400422 do_renew_lease(clp, timestamp);
Alexandros Batsakis0629e372009-12-05 13:46:14 -0500423 /* Check sequence flags */
Alexandros Batsakis71358402010-02-05 03:45:05 -0800424 if (atomic_read(&clp->cl_count) > 1)
425 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags);
Trond Myklebust14516c32010-07-31 14:29:06 -0400426 break;
427 case -NFS4ERR_DELAY:
428 /* The server detected a resend of the RPC call and
429 * returned NFS4ERR_DELAY as per Section 2.10.6.2
430 * of RFC5661.
431 */
Geert Uytterhoeven12364a42010-10-28 20:06:19 +0200432 dprintk("%s: slot=%td seq=%d: Operation in progress\n",
Benny Halevydfb4f3092010-09-24 09:17:01 -0400433 __func__,
434 res->sr_slot - res->sr_session->fc_slot_table.slots,
435 res->sr_slot->seq_nr);
Trond Myklebust14516c32010-07-31 14:29:06 -0400436 goto out_retry;
437 default:
438 /* Just update the slot sequence no. */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400439 ++res->sr_slot->seq_nr;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400440 }
441out:
442 /* The session may be reset by one of the error handlers. */
443 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
Trond Myklebustd185a332010-06-16 09:52:25 -0400444 nfs41_sequence_free_slot(res);
Trond Myklebust14516c32010-07-31 14:29:06 -0400445 return 1;
446out_retry:
Trond Myklebustd05dd4e2010-07-31 14:29:07 -0400447 if (!rpc_restart_call(task))
Trond Myklebust14516c32010-07-31 14:29:06 -0400448 goto out;
449 rpc_delay(task, NFS4_POLL_RETRY_MAX);
450 return 0;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400451}
452
Trond Myklebust14516c32010-07-31 14:29:06 -0400453static int nfs4_sequence_done(struct rpc_task *task,
454 struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -0400455{
Trond Myklebust14516c32010-07-31 14:29:06 -0400456 if (res->sr_session == NULL)
457 return 1;
458 return nfs41_sequence_done(task, res);
Trond Myklebustdf896452010-06-16 09:52:26 -0400459}
460
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400461/*
Benny Halevy510b8172009-04-01 09:22:14 -0400462 * nfs4_find_slot - efficiently look for a free slot
463 *
464 * nfs4_find_slot looks for an unset bit in the used_slots bitmap.
465 * If found, we mark the slot as used, update the highest_used_slotid,
466 * and respectively set up the sequence operation args.
467 * The slot number is returned if found, or NFS4_MAX_SLOT_TABLE otherwise.
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400468 *
469 * Note: must be called with under the slot_tbl_lock.
Benny Halevy510b8172009-04-01 09:22:14 -0400470 */
471static u8
Alexandros Batsakis40ead582009-12-14 21:27:54 -0800472nfs4_find_slot(struct nfs4_slot_table *tbl)
Benny Halevy510b8172009-04-01 09:22:14 -0400473{
474 int slotid;
475 u8 ret_id = NFS4_MAX_SLOT_TABLE;
476 BUILD_BUG_ON((u8)NFS4_MAX_SLOT_TABLE != (int)NFS4_MAX_SLOT_TABLE);
477
Benny Halevy510b8172009-04-01 09:22:14 -0400478 dprintk("--> %s used_slots=%04lx highest_used=%d max_slots=%d\n",
479 __func__, tbl->used_slots[0], tbl->highest_used_slotid,
480 tbl->max_slots);
481 slotid = find_first_zero_bit(tbl->used_slots, tbl->max_slots);
482 if (slotid >= tbl->max_slots)
483 goto out;
484 __set_bit(slotid, tbl->used_slots);
485 if (slotid > tbl->highest_used_slotid)
486 tbl->highest_used_slotid = slotid;
487 ret_id = slotid;
488out:
489 dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
490 __func__, tbl->used_slots[0], tbl->highest_used_slotid, ret_id);
Benny Halevy510b8172009-04-01 09:22:14 -0400491 return ret_id;
492}
493
Andy Adamsonce5039c2009-04-01 09:22:13 -0400494static int nfs41_setup_sequence(struct nfs4_session *session,
495 struct nfs4_sequence_args *args,
496 struct nfs4_sequence_res *res,
497 int cache_reply,
498 struct rpc_task *task)
499{
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400500 struct nfs4_slot *slot;
501 struct nfs4_slot_table *tbl;
502 u8 slotid;
503
504 dprintk("--> %s\n", __func__);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400505 /* slot already allocated? */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400506 if (res->sr_slot != NULL)
Andy Adamsonce5039c2009-04-01 09:22:13 -0400507 return 0;
508
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400509 tbl = &session->fc_slot_table;
510
511 spin_lock(&tbl->slot_tbl_lock);
Trond Myklebusta2118c32010-06-16 09:52:26 -0400512 if (test_bit(NFS4_SESSION_DRAINING, &session->session_state) &&
Alexandros Batsakis5601a002009-12-14 21:27:58 -0800513 !rpc_task_has_priority(task, RPC_PRIORITY_PRIVILEGED)) {
Andy Adamsonea028ac2009-12-04 15:55:38 -0500514 /*
515 * The state manager will wait until the slot table is empty.
516 * Schedule the reset thread
517 */
Andy Adamson05f0d232009-12-04 15:55:37 -0500518 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
Andy Adamsonb069d942009-04-01 09:22:43 -0400519 spin_unlock(&tbl->slot_tbl_lock);
Trond Myklebustbcb56162009-12-05 19:32:19 -0500520 dprintk("%s Schedule Session Reset\n", __func__);
Andy Adamson05f0d232009-12-04 15:55:37 -0500521 return -EAGAIN;
Andy Adamsonb069d942009-04-01 09:22:43 -0400522 }
523
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800524 if (!rpc_queue_empty(&tbl->slot_tbl_waitq) &&
525 !rpc_task_has_priority(task, RPC_PRIORITY_PRIVILEGED)) {
526 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
527 spin_unlock(&tbl->slot_tbl_lock);
528 dprintk("%s enforce FIFO order\n", __func__);
529 return -EAGAIN;
530 }
531
Alexandros Batsakis40ead582009-12-14 21:27:54 -0800532 slotid = nfs4_find_slot(tbl);
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400533 if (slotid == NFS4_MAX_SLOT_TABLE) {
534 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
535 spin_unlock(&tbl->slot_tbl_lock);
536 dprintk("<-- %s: no free slots\n", __func__);
537 return -EAGAIN;
538 }
539 spin_unlock(&tbl->slot_tbl_lock);
540
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800541 rpc_task_set_priority(task, RPC_PRIORITY_NORMAL);
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400542 slot = tbl->slots + slotid;
Benny Halevy99fe60d2009-04-01 09:22:29 -0400543 args->sa_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400544 args->sa_slotid = slotid;
545 args->sa_cache_this = cache_reply;
546
547 dprintk("<-- %s slotid=%d seqid=%d\n", __func__, slotid, slot->seq_nr);
548
Benny Halevy99fe60d2009-04-01 09:22:29 -0400549 res->sr_session = session;
Benny Halevydfb4f3092010-09-24 09:17:01 -0400550 res->sr_slot = slot;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400551 res->sr_renewal_time = jiffies;
Trond Myklebust2a6e26c2010-06-16 09:52:25 -0400552 res->sr_status_flags = 0;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400553 /*
554 * sr_status is only set in decode_sequence, and so will remain
555 * set to 1 if an rpc level failure occurs.
556 */
557 res->sr_status = 1;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400558 return 0;
559}
560
Trond Myklebust035168a2010-06-16 09:52:26 -0400561int nfs4_setup_sequence(const struct nfs_server *server,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400562 struct nfs4_sequence_args *args,
563 struct nfs4_sequence_res *res,
564 int cache_reply,
565 struct rpc_task *task)
566{
Trond Myklebust035168a2010-06-16 09:52:26 -0400567 struct nfs4_session *session = nfs4_get_session(server);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400568 int ret = 0;
569
Trond Myklebust035168a2010-06-16 09:52:26 -0400570 if (session == NULL) {
571 args->sa_session = NULL;
572 res->sr_session = NULL;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400573 goto out;
Trond Myklebust035168a2010-06-16 09:52:26 -0400574 }
575
Geert Uytterhoeven12364a42010-10-28 20:06:19 +0200576 dprintk("--> %s clp %p session %p sr_slot %td\n",
Benny Halevydfb4f3092010-09-24 09:17:01 -0400577 __func__, session->clp, session, res->sr_slot ?
578 res->sr_slot - session->fc_slot_table.slots : -1);
Trond Myklebust035168a2010-06-16 09:52:26 -0400579
580 ret = nfs41_setup_sequence(session, args, res, cache_reply,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400581 task);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400582out:
583 dprintk("<-- %s status=%d\n", __func__, ret);
584 return ret;
585}
586
587struct nfs41_call_sync_data {
Trond Myklebust035168a2010-06-16 09:52:26 -0400588 const struct nfs_server *seq_server;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400589 struct nfs4_sequence_args *seq_args;
590 struct nfs4_sequence_res *seq_res;
591 int cache_reply;
592};
593
594static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
595{
596 struct nfs41_call_sync_data *data = calldata;
597
Trond Myklebust035168a2010-06-16 09:52:26 -0400598 dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server);
599
600 if (nfs4_setup_sequence(data->seq_server, data->seq_args,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400601 data->seq_res, data->cache_reply, task))
602 return;
603 rpc_call_start(task);
604}
605
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800606static void nfs41_call_priv_sync_prepare(struct rpc_task *task, void *calldata)
607{
608 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
609 nfs41_call_sync_prepare(task, calldata);
610}
611
Andy Adamson69ab40c2009-04-01 09:22:19 -0400612static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
613{
614 struct nfs41_call_sync_data *data = calldata;
615
Trond Myklebust14516c32010-07-31 14:29:06 -0400616 nfs41_sequence_done(task, data->seq_res);
Andy Adamson69ab40c2009-04-01 09:22:19 -0400617}
618
Andy Adamsonce5039c2009-04-01 09:22:13 -0400619struct rpc_call_ops nfs41_call_sync_ops = {
620 .rpc_call_prepare = nfs41_call_sync_prepare,
Andy Adamson69ab40c2009-04-01 09:22:19 -0400621 .rpc_call_done = nfs41_call_sync_done,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400622};
623
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800624struct rpc_call_ops nfs41_call_priv_sync_ops = {
625 .rpc_call_prepare = nfs41_call_priv_sync_prepare,
626 .rpc_call_done = nfs41_call_sync_done,
627};
628
Trond Myklebust035168a2010-06-16 09:52:26 -0400629static int nfs4_call_sync_sequence(struct nfs_server *server,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400630 struct rpc_message *msg,
631 struct nfs4_sequence_args *args,
632 struct nfs4_sequence_res *res,
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800633 int cache_reply,
634 int privileged)
Andy Adamsonce5039c2009-04-01 09:22:13 -0400635{
636 int ret;
637 struct rpc_task *task;
638 struct nfs41_call_sync_data data = {
Trond Myklebust035168a2010-06-16 09:52:26 -0400639 .seq_server = server,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400640 .seq_args = args,
641 .seq_res = res,
642 .cache_reply = cache_reply,
643 };
644 struct rpc_task_setup task_setup = {
Trond Myklebust035168a2010-06-16 09:52:26 -0400645 .rpc_client = server->client,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400646 .rpc_message = msg,
647 .callback_ops = &nfs41_call_sync_ops,
648 .callback_data = &data
649 };
650
Benny Halevydfb4f3092010-09-24 09:17:01 -0400651 res->sr_slot = NULL;
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800652 if (privileged)
653 task_setup.callback_ops = &nfs41_call_priv_sync_ops;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400654 task = rpc_run_task(&task_setup);
655 if (IS_ERR(task))
656 ret = PTR_ERR(task);
657 else {
658 ret = task->tk_status;
659 rpc_put_task(task);
660 }
661 return ret;
662}
663
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400664int _nfs4_call_sync_session(struct nfs_server *server,
665 struct rpc_message *msg,
666 struct nfs4_sequence_args *args,
667 struct nfs4_sequence_res *res,
668 int cache_reply)
669{
Trond Myklebust035168a2010-06-16 09:52:26 -0400670 return nfs4_call_sync_sequence(server, msg, args, res, cache_reply, 0);
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400671}
672
Trond Myklebustdf896452010-06-16 09:52:26 -0400673#else
Trond Myklebust14516c32010-07-31 14:29:06 -0400674static int nfs4_sequence_done(struct rpc_task *task,
675 struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -0400676{
Trond Myklebust14516c32010-07-31 14:29:06 -0400677 return 1;
Trond Myklebustdf896452010-06-16 09:52:26 -0400678}
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400679#endif /* CONFIG_NFS_V4_1 */
680
681int _nfs4_call_sync(struct nfs_server *server,
682 struct rpc_message *msg,
683 struct nfs4_sequence_args *args,
684 struct nfs4_sequence_res *res,
685 int cache_reply)
686{
Benny Halevyf3752972009-04-01 09:22:04 -0400687 args->sa_session = res->sr_session = NULL;
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400688 return rpc_call_sync(server->client, msg, 0);
689}
690
691#define nfs4_call_sync(server, msg, args, res, cache_reply) \
Trond Myklebust97dc1352010-06-16 09:52:26 -0400692 (server)->nfs_client->cl_mvops->call_sync((server), (msg), &(args)->seq_args, \
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400693 &(res)->seq_res, (cache_reply))
694
Trond Myklebust38478b22006-05-25 01:40:57 -0400695static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Trond Myklebust38478b22006-05-25 01:40:57 -0400697 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Trond Myklebust38478b22006-05-25 01:40:57 -0400699 spin_lock(&dir->i_lock);
Trond Myklebust40d24702007-10-08 09:24:22 -0400700 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
701 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400702 nfs_force_lookup_revalidate(dir);
Trond Myklebust40d24702007-10-08 09:24:22 -0400703 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400704 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100707struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400708 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100709 struct nfs_openargs o_arg;
710 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100711 struct nfs_open_confirmargs c_arg;
712 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100713 struct nfs_fattr f_attr;
714 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400715 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100716 struct dentry *dir;
717 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400718 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100719 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100720 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400721 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100722 int rpc_status;
723 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100724};
725
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400726
727static void nfs4_init_opendata_res(struct nfs4_opendata *p)
728{
729 p->o_res.f_attr = &p->f_attr;
730 p->o_res.dir_attr = &p->dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400731 p->o_res.seqid = p->o_arg.seqid;
732 p->c_res.seqid = p->c_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400733 p->o_res.server = p->o_arg.server;
734 nfs_fattr_init(&p->f_attr);
735 nfs_fattr_init(&p->dir_attr);
736}
737
Trond Myklebustad389da2007-06-05 12:30:00 -0400738static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500739 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400740 const struct iattr *attrs,
741 gfp_t gfp_mask)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100742{
Trond Myklebustad389da2007-06-05 12:30:00 -0400743 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100744 struct inode *dir = parent->d_inode;
745 struct nfs_server *server = NFS_SERVER(dir);
746 struct nfs4_opendata *p;
747
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400748 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100749 if (p == NULL)
750 goto err;
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400751 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid, gfp_mask);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100752 if (p->o_arg.seqid == NULL)
753 goto err_free;
Al Virof6948692010-01-30 13:51:04 -0500754 path_get(path);
755 p->path = *path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100756 p->dir = parent;
757 p->owner = sp;
758 atomic_inc(&sp->so_count);
759 p->o_arg.fh = NFS_FH(dir);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500760 p->o_arg.open_flags = flags;
761 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
David Howells7539bba2006-08-22 20:06:09 -0400762 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400763 p->o_arg.id = sp->so_owner_id.id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400764 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100765 p->o_arg.server = server;
766 p->o_arg.bitmask = server->attr_bitmask;
767 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Trond Myklebustd77d76f2010-06-16 09:52:27 -0400768 if (flags & O_CREAT) {
769 u32 *s;
770
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100771 p->o_arg.u.attrs = &p->attrs;
772 memcpy(&p->attrs, attrs, sizeof(p->attrs));
Trond Myklebustd77d76f2010-06-16 09:52:27 -0400773 s = (u32 *) p->o_arg.u.verifier.data;
774 s[0] = jiffies;
775 s[1] = current->pid;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100776 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100777 p->c_arg.fh = &p->o_res.fh;
778 p->c_arg.stateid = &p->o_res.stateid;
779 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400780 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400781 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100782 return p;
783err_free:
784 kfree(p);
785err:
786 dput(parent);
787 return NULL;
788}
789
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400790static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100791{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400792 struct nfs4_opendata *p = container_of(kref,
793 struct nfs4_opendata, kref);
794
795 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400796 if (p->state != NULL)
797 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400798 nfs4_put_state_owner(p->owner);
799 dput(p->dir);
Jan Blunck31f31db12008-05-02 13:42:45 -0700800 path_put(&p->path);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400801 kfree(p);
802}
803
804static void nfs4_opendata_put(struct nfs4_opendata *p)
805{
806 if (p != NULL)
807 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100808}
809
Trond Myklebust06f814a2006-01-03 09:55:07 +0100810static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
811{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100812 int ret;
813
Trond Myklebust06f814a2006-01-03 09:55:07 +0100814 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100815 return ret;
816}
817
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500818static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400819{
820 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500821
822 if (open_mode & O_EXCL)
823 goto out;
824 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400825 case FMODE_READ:
Trond Myklebust88069f72009-12-08 08:33:16 -0500826 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0
827 && state->n_rdonly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400828 break;
829 case FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -0500830 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0
831 && state->n_wronly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400832 break;
833 case FMODE_READ|FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -0500834 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0
835 && state->n_rdwr != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400836 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500837out:
Trond Myklebust6ee41262007-07-08 14:11:36 -0400838 return ret;
839}
840
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500841static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400842{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500843 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400844 return 0;
Trond Myklebust15c831b2008-12-23 15:21:39 -0500845 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
Trond Myklebustaac00a82007-07-05 19:02:21 -0400846 return 0;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500847 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400848 return 1;
849}
850
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500851static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +0100852{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500853 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100854 case FMODE_WRITE:
855 state->n_wronly++;
856 break;
857 case FMODE_READ:
858 state->n_rdonly++;
859 break;
860 case FMODE_READ|FMODE_WRITE:
861 state->n_rdwr++;
862 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500863 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +0100864}
865
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500866static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400867{
868 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
869 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
870 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500871 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400872 case FMODE_READ:
873 set_bit(NFS_O_RDONLY_STATE, &state->flags);
874 break;
875 case FMODE_WRITE:
876 set_bit(NFS_O_WRONLY_STATE, &state->flags);
877 break;
878 case FMODE_READ|FMODE_WRITE:
879 set_bit(NFS_O_RDWR_STATE, &state->flags);
880 }
881}
882
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500883static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400884{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400885 write_seqlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500886 nfs_set_open_stateid_locked(state, stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400887 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400888}
889
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500890static 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 -0700891{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400892 /*
893 * Protect the call to nfs4_state_set_mode_locked and
894 * serialise the stateid update
895 */
896 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400897 if (deleg_stateid != NULL) {
898 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
899 set_bit(NFS_DELEGATED_STATE, &state->flags);
900 }
901 if (open_stateid != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500902 nfs_set_open_stateid_locked(state, open_stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400903 write_sequnlock(&state->seqlock);
904 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500905 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -0700906 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500909static 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 -0500910{
911 struct nfs_inode *nfsi = NFS_I(state->inode);
912 struct nfs_delegation *deleg_cur;
913 int ret = 0;
914
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500915 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -0500916
917 rcu_read_lock();
918 deleg_cur = rcu_dereference(nfsi->delegation);
919 if (deleg_cur == NULL)
920 goto no_delegation;
921
922 spin_lock(&deleg_cur->lock);
923 if (nfsi->delegation != deleg_cur ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500924 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -0500925 goto no_delegation_unlock;
926
927 if (delegation == NULL)
928 delegation = &deleg_cur->stateid;
929 else if (memcmp(deleg_cur->stateid.data, delegation->data, NFS4_STATEID_SIZE) != 0)
930 goto no_delegation_unlock;
931
Trond Myklebustb7391f42008-12-23 15:21:52 -0500932 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500933 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500934 ret = 1;
935no_delegation_unlock:
936 spin_unlock(&deleg_cur->lock);
937no_delegation:
938 rcu_read_unlock();
939
940 if (!ret && open_stateid != NULL) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500941 __update_open_stateid(state, open_stateid, NULL, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500942 ret = 1;
943 }
944
945 return ret;
946}
947
948
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500949static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400950{
951 struct nfs_delegation *delegation;
952
953 rcu_read_lock();
954 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500955 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -0400956 rcu_read_unlock();
957 return;
958 }
959 rcu_read_unlock();
960 nfs_inode_return_delegation(inode);
961}
962
Trond Myklebust6ee41262007-07-08 14:11:36 -0400963static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400964{
965 struct nfs4_state *state = opendata->state;
966 struct nfs_inode *nfsi = NFS_I(state->inode);
967 struct nfs_delegation *delegation;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500968 int open_mode = opendata->o_arg.open_flags & O_EXCL;
969 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400970 nfs4_stateid stateid;
971 int ret = -EAGAIN;
972
Trond Myklebustaac00a82007-07-05 19:02:21 -0400973 for (;;) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500974 if (can_open_cached(state, fmode, open_mode)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400975 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500976 if (can_open_cached(state, fmode, open_mode)) {
977 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400978 spin_unlock(&state->owner->so_lock);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400979 goto out_return_state;
980 }
981 spin_unlock(&state->owner->so_lock);
982 }
Trond Myklebust34310432008-12-23 15:21:38 -0500983 rcu_read_lock();
984 delegation = rcu_dereference(nfsi->delegation);
985 if (delegation == NULL ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500986 !can_open_delegated(delegation, fmode)) {
Trond Myklebust34310432008-12-23 15:21:38 -0500987 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -0400988 break;
Trond Myklebust34310432008-12-23 15:21:38 -0500989 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400990 /* Save the delegation */
991 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
992 rcu_read_unlock();
Trond Myklebustaf22f942007-08-10 17:45:10 -0400993 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400994 if (ret != 0)
995 goto out;
996 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -0500997
998 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500999 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -05001000 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001001 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001002out:
1003 return ERR_PTR(ret);
1004out_return_state:
1005 atomic_inc(&state->count);
1006 return state;
1007}
1008
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001009static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
1010{
1011 struct inode *inode;
1012 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -04001013 struct nfs_delegation *delegation;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001014 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001015
Trond Myklebustaac00a82007-07-05 19:02:21 -04001016 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -04001017 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001018 goto out;
1019 }
1020
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001021 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001022 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001023 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001024 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001025 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001026 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001027 goto err;
1028 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001029 state = nfs4_get_open_state(inode, data->owner);
1030 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001031 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -04001032 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -04001033 int delegation_flags = 0;
1034
Trond Myklebust003707c2007-07-05 18:07:55 -04001035 rcu_read_lock();
1036 delegation = rcu_dereference(NFS_I(inode)->delegation);
1037 if (delegation)
1038 delegation_flags = delegation->flags;
1039 rcu_read_unlock();
Trond Myklebust15c831b2008-12-23 15:21:39 -05001040 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Trond Myklebust549d6ed2007-07-03 16:42:45 -04001041 nfs_inode_set_delegation(state->inode,
1042 data->owner->so_cred,
1043 &data->o_res);
1044 else
1045 nfs_inode_reclaim_delegation(state->inode,
1046 data->owner->so_cred,
1047 &data->o_res);
1048 }
Trond Myklebust34310432008-12-23 15:21:38 -05001049
1050 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001051 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001052 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001053out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001054 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001055err_put_inode:
1056 iput(inode);
1057err:
1058 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001059}
1060
Trond Myklebust864472e2006-01-03 09:55:15 +01001061static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1062{
1063 struct nfs_inode *nfsi = NFS_I(state->inode);
1064 struct nfs_open_context *ctx;
1065
1066 spin_lock(&state->inode->i_lock);
1067 list_for_each_entry(ctx, &nfsi->open_files, list) {
1068 if (ctx->state != state)
1069 continue;
1070 get_nfs_open_context(ctx);
1071 spin_unlock(&state->inode->i_lock);
1072 return ctx;
1073 }
1074 spin_unlock(&state->inode->i_lock);
1075 return ERR_PTR(-ENOENT);
1076}
1077
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001078static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
1079{
1080 struct nfs4_opendata *opendata;
1081
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001082 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, 0, NULL, GFP_NOFS);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001083 if (opendata == NULL)
1084 return ERR_PTR(-ENOMEM);
1085 opendata->state = state;
1086 atomic_inc(&state->count);
1087 return opendata;
1088}
1089
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001090static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +01001091{
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001092 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001093 int ret;
1094
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001095 opendata->o_arg.open_flags = 0;
1096 opendata->o_arg.fmode = fmode;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001097 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1098 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1099 nfs4_init_opendata_res(opendata);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001100 ret = _nfs4_recover_proc_open(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001101 if (ret != 0)
1102 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001103 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001104 if (IS_ERR(newstate))
1105 return PTR_ERR(newstate);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001106 nfs4_close_state(&opendata->path, newstate, fmode);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001107 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001108 return 0;
1109}
1110
1111static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1112{
Trond Myklebust864472e2006-01-03 09:55:15 +01001113 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001114 int ret;
1115
1116 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001117 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001118 smp_rmb();
1119 if (state->n_rdwr != 0) {
Trond Myklebustb0ed9db2010-10-04 17:59:08 -04001120 clear_bit(NFS_O_RDWR_STATE, &state->flags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001121 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001122 if (ret != 0)
1123 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001124 if (newstate != state)
1125 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001126 }
1127 if (state->n_wronly != 0) {
Trond Myklebustb0ed9db2010-10-04 17:59:08 -04001128 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001129 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001130 if (ret != 0)
1131 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001132 if (newstate != state)
1133 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001134 }
1135 if (state->n_rdonly != 0) {
Trond Myklebustb0ed9db2010-10-04 17:59:08 -04001136 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001137 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001138 if (ret != 0)
1139 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001140 if (newstate != state)
1141 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001142 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001143 /*
1144 * We may have performed cached opens for all three recoveries.
1145 * Check if we need to update the current stateid.
1146 */
1147 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
1148 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001149 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001150 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1151 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001152 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001153 }
Trond Myklebust864472e2006-01-03 09:55:15 +01001154 return 0;
1155}
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157/*
1158 * OPEN_RECLAIM:
1159 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001161static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001163 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +01001164 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001165 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 int status;
1167
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001168 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1169 if (IS_ERR(opendata))
1170 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001171 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
1172 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001173 rcu_read_lock();
1174 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -05001175 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -04001176 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001177 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +01001178 opendata->o_arg.u.delegation_type = delegation_type;
1179 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001180 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return status;
1182}
1183
Trond Myklebust539cd032007-06-05 11:46:42 -04001184static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
1186 struct nfs_server *server = NFS_SERVER(state->inode);
1187 struct nfs4_exception exception = { };
1188 int err;
1189 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001190 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust168667c2010-10-19 19:47:49 -04001191 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001192 break;
1193 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 } while (exception.retry);
1195 return err;
1196}
1197
Trond Myklebust864472e2006-01-03 09:55:15 +01001198static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1199{
1200 struct nfs_open_context *ctx;
1201 int ret;
1202
1203 ctx = nfs4_state_find_open_context(state);
1204 if (IS_ERR(ctx))
1205 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001206 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001207 put_nfs_open_context(ctx);
1208 return ret;
1209}
1210
Trond Myklebust13437e12007-07-06 15:10:43 -04001211static 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 -07001212{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001213 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001214 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001216 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1217 if (IS_ERR(opendata))
1218 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001219 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -04001220 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001221 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +01001222 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001223 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001224 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
Trond Myklebust13437e12007-07-06 15:10:43 -04001227int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
1229 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -04001230 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 int err;
1232 do {
Trond Myklebust13437e12007-07-06 15:10:43 -04001233 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 switch (err) {
1235 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07001236 case -ENOENT:
1237 case -ESTALE:
1238 goto out;
Ricardo Labiagabcfa49f2009-12-07 09:22:29 -05001239 case -NFS4ERR_BADSESSION:
1240 case -NFS4ERR_BADSLOT:
1241 case -NFS4ERR_BAD_HIGH_SLOT:
1242 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1243 case -NFS4ERR_DEADSESSION:
1244 nfs4_schedule_state_recovery(
1245 server->nfs_client);
1246 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 case -NFS4ERR_STALE_CLIENTID:
1248 case -NFS4ERR_STALE_STATEID:
1249 case -NFS4ERR_EXPIRED:
1250 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -04001251 nfs4_schedule_state_recovery(server->nfs_client);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001252 goto out;
1253 case -ERESTARTSYS:
1254 /*
1255 * The show must go on: exit, but mark the
1256 * stateid as needing recovery.
1257 */
1258 case -NFS4ERR_ADMIN_REVOKED:
1259 case -NFS4ERR_BAD_STATEID:
1260 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
Trond Myklebust168667c2010-10-19 19:47:49 -04001261 case -EKEYEXPIRED:
1262 /*
1263 * User RPCSEC_GSS context has expired.
1264 * We cannot recover this stateid now, so
1265 * skip it and allow recovery thread to
1266 * proceed.
1267 */
Trond Myklebust965b5d62009-06-17 13:22:59 -07001268 case -ENOMEM:
1269 err = 0;
1270 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
1272 err = nfs4_handle_exception(server, err, &exception);
1273 } while (exception.retry);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001274out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return err;
1276}
1277
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001278static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1279{
1280 struct nfs4_opendata *data = calldata;
1281
1282 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001283 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001284 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
1285 sizeof(data->o_res.stateid.data));
Trond Myklebustbb226292008-01-02 15:19:18 -05001286 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001287 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -04001288 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001289 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001290}
1291
1292static void nfs4_open_confirm_release(void *calldata)
1293{
1294 struct nfs4_opendata *data = calldata;
1295 struct nfs4_state *state = NULL;
1296
1297 /* If this request hasn't been cancelled, do nothing */
1298 if (data->cancelled == 0)
1299 goto out_free;
1300 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001301 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001302 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001303 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001304 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001305 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001306out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001307 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001308}
1309
1310static const struct rpc_call_ops nfs4_open_confirm_ops = {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001311 .rpc_call_done = nfs4_open_confirm_done,
1312 .rpc_release = nfs4_open_confirm_release,
1313};
1314
1315/*
1316 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1317 */
1318static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
1319{
1320 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
1321 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001322 struct rpc_message msg = {
1323 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
1324 .rpc_argp = &data->c_arg,
1325 .rpc_resp = &data->c_res,
1326 .rpc_cred = data->owner->so_cred,
1327 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001328 struct rpc_task_setup task_setup_data = {
1329 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001330 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001331 .callback_ops = &nfs4_open_confirm_ops,
1332 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001333 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001334 .flags = RPC_TASK_ASYNC,
1335 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 int status;
1337
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001338 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001339 data->rpc_done = 0;
1340 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001341 data->timestamp = jiffies;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001342 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001343 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001344 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001345 status = nfs4_wait_for_completion_rpc_task(task);
1346 if (status != 0) {
1347 data->cancelled = 1;
1348 smp_wmb();
1349 } else
1350 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001351 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return status;
1353}
1354
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001355static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001357 struct nfs4_opendata *data = calldata;
1358 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001359
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001360 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
1361 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001362 /*
1363 * Check if we still need to send an OPEN call, or if we can use
1364 * a delegation instead.
1365 */
1366 if (data->state != NULL) {
1367 struct nfs_delegation *delegation;
1368
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001369 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -04001370 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001371 rcu_read_lock();
1372 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
1373 if (delegation != NULL &&
Trond Myklebust15c831b2008-12-23 15:21:39 -05001374 test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) {
Trond Myklebustaac00a82007-07-05 19:02:21 -04001375 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001376 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001377 }
1378 rcu_read_unlock();
1379 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001380 /* Update sequence id. */
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001381 data->o_arg.id = sp->so_owner_id.id;
Trond Myklebust1f0e8902010-06-24 15:11:43 -04001382 data->o_arg.clientid = sp->so_server->nfs_client->cl_clientid;
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001383 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001384 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001385 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
1386 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001387 data->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04001388 if (nfs4_setup_sequence(data->o_arg.server,
Andy Adamsond8985282009-04-01 09:22:21 -04001389 &data->o_arg.seq_args,
1390 &data->o_res.seq_res, 1, task))
1391 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001392 rpc_call_start(task);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001393 return;
1394out_no_action:
1395 task->tk_action = NULL;
1396
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001397}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001399static void nfs4_recover_open_prepare(struct rpc_task *task, void *calldata)
1400{
1401 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
1402 nfs4_open_prepare(task, calldata);
1403}
1404
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001405static void nfs4_open_done(struct rpc_task *task, void *calldata)
1406{
1407 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001409 data->rpc_status = task->tk_status;
Andy Adamsond8985282009-04-01 09:22:21 -04001410
Trond Myklebust14516c32010-07-31 14:29:06 -04001411 if (!nfs4_sequence_done(task, &data->o_res.seq_res))
1412 return;
Andy Adamsond8985282009-04-01 09:22:21 -04001413
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001414 if (task->tk_status == 0) {
1415 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -07001416 case S_IFREG:
1417 break;
1418 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001419 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001420 break;
1421 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001422 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001423 break;
1424 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001425 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001426 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001427 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -04001428 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
1429 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -07001430 }
Trond Myklebust3e309912007-07-07 13:19:59 -04001431 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001432}
Trond Myklebust6f926b52005-10-18 14:20:18 -07001433
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001434static void nfs4_open_release(void *calldata)
1435{
1436 struct nfs4_opendata *data = calldata;
1437 struct nfs4_state *state = NULL;
1438
1439 /* If this request hasn't been cancelled, do nothing */
1440 if (data->cancelled == 0)
1441 goto out_free;
1442 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001443 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001444 goto out_free;
1445 /* In case we need an open_confirm, no cleanup! */
1446 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
1447 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001448 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001449 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001450 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001451out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001452 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001453}
1454
1455static const struct rpc_call_ops nfs4_open_ops = {
1456 .rpc_call_prepare = nfs4_open_prepare,
1457 .rpc_call_done = nfs4_open_done,
1458 .rpc_release = nfs4_open_release,
1459};
1460
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001461static const struct rpc_call_ops nfs4_recover_open_ops = {
1462 .rpc_call_prepare = nfs4_recover_open_prepare,
1463 .rpc_call_done = nfs4_open_done,
1464 .rpc_release = nfs4_open_release,
1465};
1466
1467static int nfs4_run_open_task(struct nfs4_opendata *data, int isrecover)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001468{
1469 struct inode *dir = data->dir->d_inode;
1470 struct nfs_server *server = NFS_SERVER(dir);
1471 struct nfs_openargs *o_arg = &data->o_arg;
1472 struct nfs_openres *o_res = &data->o_res;
1473 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001474 struct rpc_message msg = {
1475 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
1476 .rpc_argp = o_arg,
1477 .rpc_resp = o_res,
1478 .rpc_cred = data->owner->so_cred,
1479 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001480 struct rpc_task_setup task_setup_data = {
1481 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001482 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001483 .callback_ops = &nfs4_open_ops,
1484 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001485 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001486 .flags = RPC_TASK_ASYNC,
1487 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001488 int status;
1489
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001490 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001491 data->rpc_done = 0;
1492 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001493 data->cancelled = 0;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001494 if (isrecover)
1495 task_setup_data.callback_ops = &nfs4_recover_open_ops;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001496 task = rpc_run_task(&task_setup_data);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001497 if (IS_ERR(task))
1498 return PTR_ERR(task);
1499 status = nfs4_wait_for_completion_rpc_task(task);
1500 if (status != 0) {
1501 data->cancelled = 1;
1502 smp_wmb();
1503 } else
1504 status = data->rpc_status;
1505 rpc_put_task(task);
1506
1507 return status;
1508}
1509
1510static int _nfs4_recover_proc_open(struct nfs4_opendata *data)
1511{
1512 struct inode *dir = data->dir->d_inode;
1513 struct nfs_openres *o_res = &data->o_res;
1514 int status;
1515
1516 status = nfs4_run_open_task(data, 1);
1517 if (status != 0 || !data->rpc_done)
1518 return status;
1519
1520 nfs_refresh_inode(dir, o_res->dir_attr);
1521
1522 if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
1523 status = _nfs4_proc_open_confirm(data);
1524 if (status != 0)
1525 return status;
1526 }
1527
1528 return status;
1529}
1530
1531/*
1532 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1533 */
1534static int _nfs4_proc_open(struct nfs4_opendata *data)
1535{
1536 struct inode *dir = data->dir->d_inode;
1537 struct nfs_server *server = NFS_SERVER(dir);
1538 struct nfs_openargs *o_arg = &data->o_arg;
1539 struct nfs_openres *o_res = &data->o_res;
1540 int status;
1541
1542 status = nfs4_run_open_task(data, 0);
Trond Myklebust3e309912007-07-07 13:19:59 -04001543 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001544 return status;
1545
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001546 if (o_arg->open_flags & O_CREAT) {
1547 update_changeattr(dir, &o_res->cinfo);
1548 nfs_post_op_update_inode(dir, o_res->dir_attr);
1549 } else
1550 nfs_refresh_inode(dir, o_res->dir_attr);
Trond Myklebust0df5dd42010-04-11 16:48:44 -04001551 if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0)
1552 server->caps &= ~NFS_CAP_POSIX_LOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001554 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001556 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
1558 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -04001559 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001560 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
Trond Myklebust10afec92007-05-14 17:16:04 -04001563static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +01001564{
David Howells7539bba2006-08-22 20:06:09 -04001565 struct nfs_client *clp = server->nfs_client;
Trond Myklebusta78cb572009-08-09 15:06:19 -04001566 unsigned int loop;
Trond Myklebust6b309542006-09-14 14:03:14 -04001567 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001568
Trond Myklebusta78cb572009-08-09 15:06:19 -04001569 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
Trond Myklebust65de8722008-12-23 15:21:44 -05001570 ret = nfs4_wait_clnt_recover(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001571 if (ret != 0)
Trond Myklebusta78cb572009-08-09 15:06:19 -04001572 break;
Trond Myklebuste598d842008-12-23 15:21:42 -05001573 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
1574 !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
Trond Myklebust6b309542006-09-14 14:03:14 -04001575 break;
Trond Myklebust58d97142006-01-03 09:55:24 +01001576 nfs4_schedule_state_recovery(clp);
Trond Myklebusta78cb572009-08-09 15:06:19 -04001577 ret = -EIO;
Trond Myklebust6b309542006-09-14 14:03:14 -04001578 }
Trond Myklebusta78cb572009-08-09 15:06:19 -04001579 return ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001580}
1581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582/*
1583 * OPEN_EXPIRED:
1584 * reclaim state on the server after a network partition.
1585 * Assumes caller holds the appropriate lock
1586 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001587static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001589 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001590 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001592 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1593 if (IS_ERR(opendata))
1594 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001595 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04001596 if (ret == -ESTALE)
Trond Myklebust539cd032007-06-05 11:46:42 -04001597 d_drop(ctx->path.dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001598 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001599 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001602static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001603{
Trond Myklebust539cd032007-06-05 11:46:42 -04001604 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001605 struct nfs4_exception exception = { };
1606 int err;
1607
1608 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001609 err = _nfs4_open_expired(ctx, state);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001610 switch (err) {
1611 default:
1612 goto out;
1613 case -NFS4ERR_GRACE:
1614 case -NFS4ERR_DELAY:
1615 nfs4_handle_exception(server, err, &exception);
1616 err = 0;
1617 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00001618 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001619out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00001620 return err;
1621}
1622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1624{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001626 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Trond Myklebust864472e2006-01-03 09:55:15 +01001628 ctx = nfs4_state_find_open_context(state);
1629 if (IS_ERR(ctx))
1630 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001631 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001632 put_nfs_open_context(ctx);
1633 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
1636/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001637 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1638 * fields corresponding to attributes that were used to store the verifier.
1639 * Make sure we clobber those fields in the later setattr call
1640 */
1641static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1642{
1643 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1644 !(sattr->ia_valid & ATTR_ATIME_SET))
1645 sattr->ia_valid |= ATTR_ATIME;
1646
1647 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1648 !(sattr->ia_valid & ATTR_MTIME_SET))
1649 sattr->ia_valid |= ATTR_MTIME;
1650}
1651
1652/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001653 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001655static 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 -07001656{
1657 struct nfs4_state_owner *sp;
1658 struct nfs4_state *state = NULL;
1659 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001660 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001661 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
1663 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 status = -ENOMEM;
1665 if (!(sp = nfs4_get_state_owner(server, cred))) {
1666 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1667 goto out_err;
1668 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001669 status = nfs4_recover_expired_lease(server);
1670 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001671 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001672 if (path->dentry->d_inode != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001673 nfs4_return_incompatible_delegation(path->dentry->d_inode, fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01001674 status = -ENOMEM;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001675 opendata = nfs4_opendata_alloc(path, sp, fmode, flags, sattr, GFP_KERNEL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001676 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05001677 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Trond Myklebustaac00a82007-07-05 19:02:21 -04001679 if (path->dentry->d_inode != NULL)
1680 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1681
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001682 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001684 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001686 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001687 status = PTR_ERR(state);
1688 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001689 goto err_opendata_put;
Trond Myklebust0df5dd42010-04-11 16:48:44 -04001690 if (server->caps & NFS_CAP_POSIX_LOCK)
Trond Myklebust8e469eb2010-01-26 15:42:30 -05001691 set_bit(NFS_STATE_POSIX_LOCKS, &state->flags);
Trond Myklebust0ab64e02010-04-16 16:22:51 -04001692
1693 if (opendata->o_arg.open_flags & O_EXCL) {
1694 nfs4_exclusive_attrset(opendata, sattr);
1695
1696 nfs_fattr_init(opendata->o_res.f_attr);
1697 status = nfs4_do_setattr(state->inode, cred,
1698 opendata->o_res.f_attr, sattr,
1699 state);
1700 if (status == 0)
1701 nfs_setattr_update_inode(state->inode, sattr);
1702 nfs_post_op_update_inode(state->inode, opendata->o_res.f_attr);
1703 }
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001704 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 *res = state;
1707 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001708err_opendata_put:
1709 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001710err_put_state_owner:
1711 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 *res = NULL;
1714 return status;
1715}
1716
1717
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001718static 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 -07001719{
1720 struct nfs4_exception exception = { };
1721 struct nfs4_state *res;
1722 int status;
1723
1724 do {
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001725 status = _nfs4_do_open(dir, path, fmode, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (status == 0)
1727 break;
1728 /* NOTE: BAD_SEQID means the server and client disagree about the
1729 * book-keeping w.r.t. state-changing operations
1730 * (OPEN/CLOSE/LOCK/LOCKU...)
1731 * It is actually a sign of a bug on the client or on the server.
1732 *
1733 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001734 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 * have unhashed the old state_owner for us, and that we can
1736 * therefore safely retry using a new one. We should still warn
1737 * the user though...
1738 */
1739 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001740 printk(KERN_WARNING "NFS: v4 server %s "
1741 " returned a bad sequence-id error!\n",
1742 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 exception.retry = 1;
1744 continue;
1745 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001746 /*
1747 * BAD_STATEID on OPEN means that the server cancelled our
1748 * state before it received the OPEN_CONFIRM.
1749 * Recover by retrying the request as per the discussion
1750 * on Page 181 of RFC3530.
1751 */
1752 if (status == -NFS4ERR_BAD_STATEID) {
1753 exception.retry = 1;
1754 continue;
1755 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001756 if (status == -EAGAIN) {
1757 /* We must have found a delegation */
1758 exception.retry = 1;
1759 continue;
1760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1762 status, &exception));
1763 } while (exception.retry);
1764 return res;
1765}
1766
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001767static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1768 struct nfs_fattr *fattr, struct iattr *sattr,
1769 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001771 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001773 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 .iap = sattr,
1775 .server = server,
1776 .bitmask = server->attr_bitmask,
1777 };
1778 struct nfs_setattrres res = {
1779 .fattr = fattr,
1780 .server = server,
1781 };
1782 struct rpc_message msg = {
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001783 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1784 .rpc_argp = &arg,
1785 .rpc_resp = &res,
1786 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001788 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001789 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Trond Myklebust0e574af2005-10-27 22:12:38 -04001791 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001793 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1794 /* Use that stateid */
1795 } else if (state != NULL) {
Trond Myklebust77041ed2010-07-01 12:49:11 -04001796 nfs4_copy_stateid(&arg.stateid, state, current->files, current->tgid);
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001797 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1799
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001800 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001801 if (status == 0 && state != NULL)
1802 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001803 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804}
1805
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001806static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1807 struct nfs_fattr *fattr, struct iattr *sattr,
1808 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001810 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 struct nfs4_exception exception = { };
1812 int err;
1813 do {
1814 err = nfs4_handle_exception(server,
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001815 _nfs4_do_setattr(inode, cred, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 &exception);
1817 } while (exception.retry);
1818 return err;
1819}
1820
1821struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001822 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 struct inode *inode;
1824 struct nfs4_state *state;
1825 struct nfs_closeargs arg;
1826 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001827 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001828 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829};
1830
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001831static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001832{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001833 struct nfs4_closedata *calldata = data;
1834 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001835
1836 nfs4_put_open_state(calldata->state);
1837 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001838 nfs4_put_state_owner(sp);
Jan Blunck31f31db12008-05-02 13:42:45 -07001839 path_put(&calldata->path);
Trond Myklebust95121352005-10-18 14:20:12 -07001840 kfree(calldata);
1841}
1842
Trond Myklebust88069f72009-12-08 08:33:16 -05001843static void nfs4_close_clear_stateid_flags(struct nfs4_state *state,
1844 fmode_t fmode)
1845{
1846 spin_lock(&state->owner->so_lock);
1847 if (!(fmode & FMODE_READ))
1848 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1849 if (!(fmode & FMODE_WRITE))
1850 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1851 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1852 spin_unlock(&state->owner->so_lock);
1853}
1854
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001855static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001857 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 struct nfs_server *server = NFS_SERVER(calldata->inode);
1860
Trond Myklebust14516c32010-07-31 14:29:06 -04001861 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
1862 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 /* hmm. we are done with the inode, and in the process of freeing
1864 * the state_owner. we keep this around to process errors
1865 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 switch (task->tk_status) {
1867 case 0:
Trond Myklebust45328c32007-07-26 17:47:34 -04001868 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001869 renew_lease(server, calldata->timestamp);
Trond Myklebust88069f72009-12-08 08:33:16 -05001870 nfs4_close_clear_stateid_flags(state,
1871 calldata->arg.fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 break;
1873 case -NFS4ERR_STALE_STATEID:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001874 case -NFS4ERR_OLD_STATEID:
1875 case -NFS4ERR_BAD_STATEID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 case -NFS4ERR_EXPIRED:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001877 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001878 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 default:
Trond Myklebust72211db2009-12-15 14:47:36 -05001880 if (nfs4_async_handle_error(task, server, state) == -EAGAIN)
1881 rpc_restart_call_prepare(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
Trond Myklebust72211db2009-12-15 14:47:36 -05001883 nfs_release_seqid(calldata->arg.seqid);
Trond Myklebust516a6af2005-10-27 22:12:41 -04001884 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885}
1886
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001887static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001889 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001890 struct nfs4_state *state = calldata->state;
Trond Myklebust88069f72009-12-08 08:33:16 -05001891 int call_close = 0;
Trond Myklebust95121352005-10-18 14:20:12 -07001892
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001893 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001894 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001895
Trond Myklebust88069f72009-12-08 08:33:16 -05001896 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
1897 calldata->arg.fmode = FMODE_READ|FMODE_WRITE;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001898 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001899 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001900 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001901 if (state->n_rdonly == 0) {
Trond Myklebust88069f72009-12-08 08:33:16 -05001902 call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags);
1903 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
1904 calldata->arg.fmode &= ~FMODE_READ;
Trond Myklebust003707c2007-07-05 18:07:55 -04001905 }
1906 if (state->n_wronly == 0) {
Trond Myklebust88069f72009-12-08 08:33:16 -05001907 call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags);
1908 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
1909 calldata->arg.fmode &= ~FMODE_WRITE;
Trond Myklebust003707c2007-07-05 18:07:55 -04001910 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001911 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001912 spin_unlock(&state->owner->so_lock);
Trond Myklebust88069f72009-12-08 08:33:16 -05001913
1914 if (!call_close) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001915 /* Note: exit _without_ calling nfs4_close_done */
1916 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001917 return;
1918 }
Trond Myklebust88069f72009-12-08 08:33:16 -05001919
1920 if (calldata->arg.fmode == 0)
1921 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE];
1922
Trond Myklebust516a6af2005-10-27 22:12:41 -04001923 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001924 calldata->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04001925 if (nfs4_setup_sequence(NFS_SERVER(calldata->inode),
Andy Adamson19ddab02009-04-01 09:22:20 -04001926 &calldata->arg.seq_args, &calldata->res.seq_res,
1927 1, task))
1928 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001929 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930}
1931
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001932static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001933 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001934 .rpc_call_done = nfs4_close_done,
1935 .rpc_release = nfs4_free_closedata,
1936};
1937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938/*
1939 * It is possible for data to be read/written from a mem-mapped file
1940 * after the sys_close call (which hits the vfs layer as a flush).
1941 * This means that we can't safely call nfsv4 close on a file until
1942 * the inode is cleared. This in turn means that we are not good
1943 * NFSv4 citizens - we do not indicate to the server to update the file's
1944 * share state even when we are done with one of the three share
1945 * stateid's in the inode.
1946 *
1947 * NOTE: Caller must be holding the sp->so_owner semaphore!
1948 */
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001949int nfs4_do_close(struct path *path, struct nfs4_state *state, gfp_t gfp_mask, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001951 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001953 struct nfs4_state_owner *sp = state->owner;
1954 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001955 struct rpc_message msg = {
1956 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1957 .rpc_cred = state->owner->so_cred,
1958 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001959 struct rpc_task_setup task_setup_data = {
1960 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001961 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001962 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05001963 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001964 .flags = RPC_TASK_ASYNC,
1965 };
Trond Myklebust95121352005-10-18 14:20:12 -07001966 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001968 calldata = kzalloc(sizeof(*calldata), gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001970 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001971 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001973 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04001974 calldata->arg.stateid = &state->open_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 /* Serialization for the sequence id */
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001976 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid, gfp_mask);
Trond Myklebust95121352005-10-18 14:20:12 -07001977 if (calldata->arg.seqid == NULL)
1978 goto out_free_calldata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001979 calldata->arg.fmode = 0;
Trond Myklebusta65318b2009-03-11 14:10:28 -04001980 calldata->arg.bitmask = server->cache_consistency_bitmask;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001981 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04001982 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001983 calldata->res.server = server;
Al Virof6948692010-01-30 13:51:04 -05001984 path_get(path);
1985 calldata->path = *path;
Trond Myklebust95121352005-10-18 14:20:12 -07001986
Trond Myklebust1174dd12010-12-21 10:52:24 -05001987 msg.rpc_argp = &calldata->arg;
1988 msg.rpc_resp = &calldata->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001989 task_setup_data.callback_data = calldata;
1990 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001991 if (IS_ERR(task))
1992 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001993 status = 0;
1994 if (wait)
1995 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001996 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001997 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07001998out_free_calldata:
1999 kfree(calldata);
2000out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04002001 nfs4_put_open_state(state);
2002 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07002003 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004}
2005
Trond Myklebust2b484292010-09-17 10:56:51 -04002006static struct inode *
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04002007nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx, int open_flags, struct iattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 struct nfs4_state *state;
2010
Trond Myklebust565277f2007-10-15 18:17:53 -04002011 /* Protect against concurrent sillydeletes */
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04002012 state = nfs4_do_open(dir, &ctx->path, ctx->mode, open_flags, attr, ctx->cred);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04002013 if (IS_ERR(state))
2014 return ERR_CAST(state);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04002015 ctx->state = state;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04002016 return igrab(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017}
2018
Trond Myklebust1185a552009-12-03 15:54:02 -05002019static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
Trond Myklebust7fe5c392009-03-19 15:35:50 -04002020{
2021 if (ctx->state == NULL)
2022 return;
2023 if (is_sync)
2024 nfs4_close_sync(&ctx->path, ctx->state, ctx->mode);
2025 else
2026 nfs4_close_state(&ctx->path, ctx->state, ctx->mode);
2027}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
2030{
Benny Halevy43652ad2009-04-01 09:21:54 -04002031 struct nfs4_server_caps_arg args = {
2032 .fhandle = fhandle,
2033 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 struct nfs4_server_caps_res res = {};
2035 struct rpc_message msg = {
2036 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
Benny Halevy43652ad2009-04-01 09:21:54 -04002037 .rpc_argp = &args,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 .rpc_resp = &res,
2039 };
2040 int status;
2041
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002042 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 if (status == 0) {
2044 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002045 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
2046 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
2047 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
2048 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
2049 NFS_CAP_CTIME|NFS_CAP_MTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
2051 server->caps |= NFS_CAP_ACLS;
2052 if (res.has_links != 0)
2053 server->caps |= NFS_CAP_HARDLINKS;
2054 if (res.has_symlinks != 0)
2055 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002056 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
2057 server->caps |= NFS_CAP_FILEID;
2058 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
2059 server->caps |= NFS_CAP_MODE;
2060 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
2061 server->caps |= NFS_CAP_NLINK;
2062 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
2063 server->caps |= NFS_CAP_OWNER;
2064 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
2065 server->caps |= NFS_CAP_OWNER_GROUP;
2066 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
2067 server->caps |= NFS_CAP_ATIME;
2068 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
2069 server->caps |= NFS_CAP_CTIME;
2070 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
2071 server->caps |= NFS_CAP_MTIME;
2072
Trond Myklebusta65318b2009-03-11 14:10:28 -04002073 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
2074 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
2075 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 server->acl_bitmask = res.acl_bitmask;
2077 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002078
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 return status;
2080}
2081
Trond Myklebust55a97592006-06-09 09:34:19 -04002082int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
2084 struct nfs4_exception exception = { };
2085 int err;
2086 do {
2087 err = nfs4_handle_exception(server,
2088 _nfs4_server_capabilities(server, fhandle),
2089 &exception);
2090 } while (exception.retry);
2091 return err;
2092}
2093
2094static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2095 struct nfs_fsinfo *info)
2096{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 struct nfs4_lookup_root_arg args = {
2098 .bitmask = nfs4_fattr_bitmap,
2099 };
2100 struct nfs4_lookup_res res = {
2101 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04002102 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 .fh = fhandle,
2104 };
2105 struct rpc_message msg = {
2106 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
2107 .rpc_argp = &args,
2108 .rpc_resp = &res,
2109 };
Benny Halevy008f55d2009-04-01 09:22:50 -04002110
Trond Myklebust0e574af2005-10-27 22:12:38 -04002111 nfs_fattr_init(info->fattr);
Trond Myklebustfccba802009-07-21 16:48:07 -04002112 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113}
2114
2115static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2116 struct nfs_fsinfo *info)
2117{
2118 struct nfs4_exception exception = { };
2119 int err;
2120 do {
2121 err = nfs4_handle_exception(server,
2122 _nfs4_lookup_root(server, fhandle, info),
2123 &exception);
2124 } while (exception.retry);
2125 return err;
2126}
2127
David Howells54ceac42006-08-22 20:06:13 -04002128/*
2129 * get the file handle for the "/" directory on the server
2130 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04002132 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 int status;
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 if (status == 0)
2138 status = nfs4_server_capabilities(server, fhandle);
2139 if (status == 0)
2140 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08002141 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142}
2143
Manoj Naik6b97fd32006-06-09 09:34:29 -04002144/*
2145 * Get locations and (maybe) other attributes of a referral.
2146 * Note that we'll actually follow the referral later when
2147 * we detect fsid mismatch in inode revalidation
2148 */
Trond Myklebust56659e92007-07-17 21:52:39 -04002149static 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 -04002150{
2151 int status = -ENOMEM;
2152 struct page *page = NULL;
2153 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04002154
2155 page = alloc_page(GFP_KERNEL);
2156 if (page == NULL)
2157 goto out;
2158 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
2159 if (locations == NULL)
2160 goto out;
2161
Trond Myklebustc228fd32007-01-13 02:28:11 -05002162 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002163 if (status != 0)
2164 goto out;
2165 /* Make sure server returned a different fsid for the referral */
2166 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07002167 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 -04002168 status = -EIO;
2169 goto out;
2170 }
2171
2172 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
2173 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
2174 if (!fattr->mode)
2175 fattr->mode = S_IFDIR;
2176 memset(fhandle, 0, sizeof(struct nfs_fh));
2177out:
2178 if (page)
2179 __free_page(page);
Davidlohr Bueso5d7ca352010-08-11 12:42:15 -04002180 kfree(locations);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002181 return status;
2182}
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2185{
2186 struct nfs4_getattr_arg args = {
2187 .fh = fhandle,
2188 .bitmask = server->attr_bitmask,
2189 };
2190 struct nfs4_getattr_res res = {
2191 .fattr = fattr,
2192 .server = server,
2193 };
2194 struct rpc_message msg = {
2195 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
2196 .rpc_argp = &args,
2197 .rpc_resp = &res,
2198 };
2199
Trond Myklebust0e574af2005-10-27 22:12:38 -04002200 nfs_fattr_init(fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002201 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202}
2203
2204static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2205{
2206 struct nfs4_exception exception = { };
2207 int err;
2208 do {
2209 err = nfs4_handle_exception(server,
2210 _nfs4_proc_getattr(server, fhandle, fattr),
2211 &exception);
2212 } while (exception.retry);
2213 return err;
2214}
2215
2216/*
2217 * The file is not closed if it is opened due to the a request to change
2218 * the size of the file. The open call will not be needed once the
2219 * VFS layer lookup-intents are implemented.
2220 *
2221 * Close is called when the inode is destroyed.
2222 * If we haven't opened the file for O_WRONLY, we
2223 * need to in the size_change case to obtain a stateid.
2224 *
2225 * Got race?
2226 * Because OPEN is always done by name in nfsv4, it is
2227 * possible that we opened a different file by the same
2228 * name. We can recognize this race condition, but we
2229 * can't do anything about it besides returning an error.
2230 *
2231 * This will be fixed with VFS changes (lookup-intent).
2232 */
2233static int
2234nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
2235 struct iattr *sattr)
2236{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002237 struct inode *inode = dentry->d_inode;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002238 struct rpc_cred *cred = NULL;
Trond Myklebustd5308382005-11-04 15:33:38 -05002239 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 int status;
2241
Trond Myklebust0e574af2005-10-27 22:12:38 -04002242 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Trond Myklebustd5308382005-11-04 15:33:38 -05002244 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002245 if (sattr->ia_valid & ATTR_FILE) {
2246 struct nfs_open_context *ctx;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002247
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002248 ctx = nfs_file_open_context(sattr->ia_file);
Neil Brown504e5182008-10-16 14:15:16 +11002249 if (ctx) {
2250 cred = ctx->cred;
2251 state = ctx->state;
2252 }
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002253 }
2254
2255 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04002256 if (status == 0)
2257 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 return status;
2259}
2260
Trond Myklebust56659e92007-07-17 21:52:39 -04002261static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
2262 const struct qstr *name, struct nfs_fh *fhandle,
David Howells2b3de442006-08-22 20:06:09 -04002263 struct nfs_fattr *fattr)
2264{
2265 int status;
2266 struct nfs4_lookup_arg args = {
2267 .bitmask = server->attr_bitmask,
2268 .dir_fh = dirfh,
2269 .name = name,
2270 };
2271 struct nfs4_lookup_res res = {
2272 .server = server,
2273 .fattr = fattr,
2274 .fh = fhandle,
2275 };
2276 struct rpc_message msg = {
2277 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
2278 .rpc_argp = &args,
2279 .rpc_resp = &res,
2280 };
2281
2282 nfs_fattr_init(fattr);
2283
2284 dprintk("NFS call lookupfh %s\n", name->name);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002285 status = nfs4_call_sync(server, &msg, &args, &res, 0);
David Howells2b3de442006-08-22 20:06:09 -04002286 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04002287 return status;
2288}
2289
2290static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
2291 struct qstr *name, struct nfs_fh *fhandle,
2292 struct nfs_fattr *fattr)
2293{
2294 struct nfs4_exception exception = { };
2295 int err;
2296 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04002297 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
2298 /* FIXME: !!!! */
2299 if (err == -NFS4ERR_MOVED) {
2300 err = -EREMOTE;
2301 break;
2302 }
2303 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04002304 } while (exception.retry);
2305 return err;
2306}
2307
Trond Myklebust56659e92007-07-17 21:52:39 -04002308static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2310{
Trond Myklebust4e56e082007-07-01 18:13:52 -04002311 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
2313 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04002314 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002315 if (status == -NFS4ERR_MOVED)
2316 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 dprintk("NFS reply lookup: %d\n", status);
2318 return status;
2319}
2320
2321static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2322{
2323 struct nfs4_exception exception = { };
2324 int err;
2325 do {
2326 err = nfs4_handle_exception(NFS_SERVER(dir),
2327 _nfs4_proc_lookup(dir, name, fhandle, fattr),
2328 &exception);
2329 } while (exception.retry);
2330 return err;
2331}
2332
2333static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2334{
Trond Myklebust76b32992007-08-10 17:45:11 -04002335 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 struct nfs4_accessargs args = {
2337 .fh = NFS_FH(inode),
Trond Myklebust76b32992007-08-10 17:45:11 -04002338 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 };
Trond Myklebust76b32992007-08-10 17:45:11 -04002340 struct nfs4_accessres res = {
2341 .server = server,
Trond Myklebust76b32992007-08-10 17:45:11 -04002342 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 struct rpc_message msg = {
2344 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
2345 .rpc_argp = &args,
2346 .rpc_resp = &res,
2347 .rpc_cred = entry->cred,
2348 };
2349 int mode = entry->mask;
2350 int status;
2351
2352 /*
2353 * Determine which access bits we want to ask for...
2354 */
2355 if (mode & MAY_READ)
2356 args.access |= NFS4_ACCESS_READ;
2357 if (S_ISDIR(inode->i_mode)) {
2358 if (mode & MAY_WRITE)
2359 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
2360 if (mode & MAY_EXEC)
2361 args.access |= NFS4_ACCESS_LOOKUP;
2362 } else {
2363 if (mode & MAY_WRITE)
2364 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
2365 if (mode & MAY_EXEC)
2366 args.access |= NFS4_ACCESS_EXECUTE;
2367 }
Trond Myklebustc407d412010-04-16 16:22:48 -04002368
2369 res.fattr = nfs_alloc_fattr();
2370 if (res.fattr == NULL)
2371 return -ENOMEM;
2372
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002373 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 if (!status) {
2375 entry->mask = 0;
2376 if (res.access & NFS4_ACCESS_READ)
2377 entry->mask |= MAY_READ;
2378 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
2379 entry->mask |= MAY_WRITE;
2380 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
2381 entry->mask |= MAY_EXEC;
Trond Myklebustc407d412010-04-16 16:22:48 -04002382 nfs_refresh_inode(inode, res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 }
Trond Myklebustc407d412010-04-16 16:22:48 -04002384 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 return status;
2386}
2387
2388static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2389{
2390 struct nfs4_exception exception = { };
2391 int err;
2392 do {
2393 err = nfs4_handle_exception(NFS_SERVER(inode),
2394 _nfs4_proc_access(inode, entry),
2395 &exception);
2396 } while (exception.retry);
2397 return err;
2398}
2399
2400/*
2401 * TODO: For the time being, we don't try to get any attributes
2402 * along with any of the zero-copy operations READ, READDIR,
2403 * READLINK, WRITE.
2404 *
2405 * In the case of the first three, we want to put the GETATTR
2406 * after the read-type operation -- this is because it is hard
2407 * to predict the length of a GETATTR response in v4, and thus
2408 * align the READ data correctly. This means that the GETATTR
2409 * may end up partially falling into the page cache, and we should
2410 * shift it into the 'tail' of the xdr_buf before processing.
2411 * To do this efficiently, we need to know the total length
2412 * of data received, which doesn't seem to be available outside
2413 * of the RPC layer.
2414 *
2415 * In the case of WRITE, we also want to put the GETATTR after
2416 * the operation -- in this case because we want to make sure
2417 * we get the post-operation mtime and size. This means that
2418 * we can't use xdr_encode_pages() as written: we need a variant
2419 * of it which would leave room in the 'tail' iovec.
2420 *
2421 * Both of these changes to the XDR layer would in fact be quite
2422 * minor, but I decided to leave them for a subsequent patch.
2423 */
2424static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
2425 unsigned int pgbase, unsigned int pglen)
2426{
2427 struct nfs4_readlink args = {
2428 .fh = NFS_FH(inode),
2429 .pgbase = pgbase,
2430 .pglen = pglen,
2431 .pages = &page,
2432 };
Benny Halevyf50c7002009-04-01 09:21:55 -04002433 struct nfs4_readlink_res res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 struct rpc_message msg = {
2435 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
2436 .rpc_argp = &args,
Benny Halevyf50c7002009-04-01 09:21:55 -04002437 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 };
2439
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002440 return nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441}
2442
2443static int nfs4_proc_readlink(struct inode *inode, struct page *page,
2444 unsigned int pgbase, unsigned int pglen)
2445{
2446 struct nfs4_exception exception = { };
2447 int err;
2448 do {
2449 err = nfs4_handle_exception(NFS_SERVER(inode),
2450 _nfs4_proc_readlink(inode, page, pgbase, pglen),
2451 &exception);
2452 } while (exception.retry);
2453 return err;
2454}
2455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456/*
2457 * Got race?
2458 * We will need to arrange for the VFS layer to provide an atomic open.
2459 * Until then, this create/open method is prone to inefficiency and race
2460 * conditions due to the lookup, create, and open VFS calls from sys_open()
2461 * placed on the wire.
2462 *
2463 * Given the above sorry state of affairs, I'm simply sending an OPEN.
2464 * The file will be opened again in the subsequent VFS open call
2465 * (nfs4_proc_file_open).
2466 *
2467 * The open for read will just hang around to be used by any process that
2468 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
2469 */
2470
2471static int
2472nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002473 int flags, struct nfs_open_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474{
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002475 struct path my_path = {
Trond Myklebustad389da2007-06-05 12:30:00 -04002476 .dentry = dentry,
2477 };
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002478 struct path *path = &my_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 struct nfs4_state *state;
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002480 struct rpc_cred *cred = NULL;
2481 fmode_t fmode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 int status = 0;
2483
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002484 if (ctx != NULL) {
2485 cred = ctx->cred;
2486 path = &ctx->path;
2487 fmode = ctx->mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 }
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002489 state = nfs4_do_open(dir, path, fmode, flags, sattr, cred);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002490 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 if (IS_ERR(state)) {
2492 status = PTR_ERR(state);
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002493 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002495 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04002496 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002497 if (ctx != NULL)
2498 ctx->state = state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07002499 else
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002500 nfs4_close_sync(path, state, fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501out:
2502 return status;
2503}
2504
2505static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
2506{
Trond Myklebust16e42952005-10-27 22:12:44 -04002507 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002508 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 .fh = NFS_FH(dir),
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002510 .name.len = name->len,
2511 .name.name = name->name,
Trond Myklebust16e42952005-10-27 22:12:44 -04002512 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002514 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04002515 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04002516 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002518 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
2519 .rpc_argp = &args,
2520 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 };
Trond Myklebustd3468902010-04-16 16:22:50 -04002522 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
Trond Myklebustd3468902010-04-16 16:22:50 -04002524 res.dir_attr = nfs_alloc_fattr();
2525 if (res.dir_attr == NULL)
2526 goto out;
2527
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002528 status = nfs4_call_sync(server, &msg, &args, &res, 1);
Trond Myklebust16e42952005-10-27 22:12:44 -04002529 if (status == 0) {
2530 update_changeattr(dir, &res.cinfo);
Trond Myklebustd3468902010-04-16 16:22:50 -04002531 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04002532 }
Trond Myklebustd3468902010-04-16 16:22:50 -04002533 nfs_free_fattr(res.dir_attr);
2534out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 return status;
2536}
2537
2538static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
2539{
2540 struct nfs4_exception exception = { };
2541 int err;
2542 do {
2543 err = nfs4_handle_exception(NFS_SERVER(dir),
2544 _nfs4_proc_remove(dir, name),
2545 &exception);
2546 } while (exception.retry);
2547 return err;
2548}
2549
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002550static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002552 struct nfs_server *server = NFS_SERVER(dir);
2553 struct nfs_removeargs *args = msg->rpc_argp;
2554 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Trond Myklebusta65318b2009-03-11 14:10:28 -04002556 args->bitmask = server->cache_consistency_bitmask;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002557 res->server = server;
Benny Halevydfb4f3092010-09-24 09:17:01 -04002558 res->seq_res.sr_slot = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560}
2561
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002562static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002564 struct nfs_removeres *res = task->tk_msg.rpc_resp;
2565
Trond Myklebust14516c32010-07-31 14:29:06 -04002566 if (!nfs4_sequence_done(task, &res->seq_res))
2567 return 0;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002568 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002569 return 0;
2570 update_changeattr(dir, &res->cinfo);
Trond Myklebustd3468902010-04-16 16:22:50 -04002571 nfs_post_op_update_inode(dir, res->dir_attr);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002572 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573}
2574
Jeff Laytond3d41522010-09-17 17:31:57 -04002575static void nfs4_proc_rename_setup(struct rpc_message *msg, struct inode *dir)
2576{
2577 struct nfs_server *server = NFS_SERVER(dir);
2578 struct nfs_renameargs *arg = msg->rpc_argp;
2579 struct nfs_renameres *res = msg->rpc_resp;
2580
2581 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME];
2582 arg->bitmask = server->attr_bitmask;
2583 res->server = server;
2584}
2585
2586static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
2587 struct inode *new_dir)
2588{
2589 struct nfs_renameres *res = task->tk_msg.rpc_resp;
2590
2591 if (!nfs4_sequence_done(task, &res->seq_res))
2592 return 0;
2593 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
2594 return 0;
2595
2596 update_changeattr(old_dir, &res->old_cinfo);
2597 nfs_post_op_update_inode(old_dir, res->old_fattr);
2598 update_changeattr(new_dir, &res->new_cinfo);
2599 nfs_post_op_update_inode(new_dir, res->new_fattr);
2600 return 1;
2601}
2602
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2604 struct inode *new_dir, struct qstr *new_name)
2605{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002606 struct nfs_server *server = NFS_SERVER(old_dir);
Jeff Layton920769f2010-09-17 17:30:25 -04002607 struct nfs_renameargs arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 .old_dir = NFS_FH(old_dir),
2609 .new_dir = NFS_FH(new_dir),
2610 .old_name = old_name,
2611 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002612 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 };
Jeff Laytone8582a82010-09-17 17:31:06 -04002614 struct nfs_renameres res = {
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002615 .server = server,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002616 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 struct rpc_message msg = {
2618 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2619 .rpc_argp = &arg,
2620 .rpc_resp = &res,
2621 };
Trond Myklebust011fff72010-04-16 16:22:49 -04002622 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
Trond Myklebust011fff72010-04-16 16:22:49 -04002624 res.old_fattr = nfs_alloc_fattr();
2625 res.new_fattr = nfs_alloc_fattr();
2626 if (res.old_fattr == NULL || res.new_fattr == NULL)
2627 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
Trond Myklebust011fff72010-04-16 16:22:49 -04002629 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 if (!status) {
2631 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002632 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002634 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 }
Trond Myklebust011fff72010-04-16 16:22:49 -04002636out:
2637 nfs_free_fattr(res.new_fattr);
2638 nfs_free_fattr(res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 return status;
2640}
2641
2642static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2643 struct inode *new_dir, struct qstr *new_name)
2644{
2645 struct nfs4_exception exception = { };
2646 int err;
2647 do {
2648 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2649 _nfs4_proc_rename(old_dir, old_name,
2650 new_dir, new_name),
2651 &exception);
2652 } while (exception.retry);
2653 return err;
2654}
2655
2656static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2657{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002658 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 struct nfs4_link_arg arg = {
2660 .fh = NFS_FH(inode),
2661 .dir_fh = NFS_FH(dir),
2662 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002663 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002665 struct nfs4_link_res res = {
2666 .server = server,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002667 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 struct rpc_message msg = {
2669 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2670 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002671 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 };
Trond Myklebust136f2622010-04-16 16:22:49 -04002673 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Trond Myklebust136f2622010-04-16 16:22:49 -04002675 res.fattr = nfs_alloc_fattr();
2676 res.dir_attr = nfs_alloc_fattr();
2677 if (res.fattr == NULL || res.dir_attr == NULL)
2678 goto out;
2679
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002680 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002681 if (!status) {
2682 update_changeattr(dir, &res.cinfo);
2683 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002684 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002685 }
Trond Myklebust136f2622010-04-16 16:22:49 -04002686out:
2687 nfs_free_fattr(res.dir_attr);
2688 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 return status;
2690}
2691
2692static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2693{
2694 struct nfs4_exception exception = { };
2695 int err;
2696 do {
2697 err = nfs4_handle_exception(NFS_SERVER(inode),
2698 _nfs4_proc_link(inode, dir, name),
2699 &exception);
2700 } while (exception.retry);
2701 return err;
2702}
2703
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002704struct nfs4_createdata {
2705 struct rpc_message msg;
2706 struct nfs4_create_arg arg;
2707 struct nfs4_create_res res;
2708 struct nfs_fh fh;
2709 struct nfs_fattr fattr;
2710 struct nfs_fattr dir_fattr;
2711};
2712
2713static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2714 struct qstr *name, struct iattr *sattr, u32 ftype)
2715{
2716 struct nfs4_createdata *data;
2717
2718 data = kzalloc(sizeof(*data), GFP_KERNEL);
2719 if (data != NULL) {
2720 struct nfs_server *server = NFS_SERVER(dir);
2721
2722 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2723 data->msg.rpc_argp = &data->arg;
2724 data->msg.rpc_resp = &data->res;
2725 data->arg.dir_fh = NFS_FH(dir);
2726 data->arg.server = server;
2727 data->arg.name = name;
2728 data->arg.attrs = sattr;
2729 data->arg.ftype = ftype;
2730 data->arg.bitmask = server->attr_bitmask;
2731 data->res.server = server;
2732 data->res.fh = &data->fh;
2733 data->res.fattr = &data->fattr;
2734 data->res.dir_fattr = &data->dir_fattr;
2735 nfs_fattr_init(data->res.fattr);
2736 nfs_fattr_init(data->res.dir_fattr);
2737 }
2738 return data;
2739}
2740
2741static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2742{
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002743 int status = nfs4_call_sync(NFS_SERVER(dir), &data->msg,
2744 &data->arg, &data->res, 1);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002745 if (status == 0) {
2746 update_changeattr(dir, &data->res.dir_cinfo);
2747 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2748 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2749 }
2750 return status;
2751}
2752
2753static void nfs4_free_createdata(struct nfs4_createdata *data)
2754{
2755 kfree(data);
2756}
2757
Chuck Lever4f390c12006-08-22 20:06:22 -04002758static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002759 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002761 struct nfs4_createdata *data;
2762 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Chuck Lever94a6d752006-08-22 20:06:23 -04002764 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002765 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04002766
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002767 status = -ENOMEM;
2768 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2769 if (data == NULL)
2770 goto out;
2771
2772 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2773 data->arg.u.symlink.pages = &page;
2774 data->arg.u.symlink.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002776 status = nfs4_do_create(dir, dentry, data);
2777
2778 nfs4_free_createdata(data);
2779out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 return status;
2781}
2782
Chuck Lever4f390c12006-08-22 20:06:22 -04002783static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002784 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785{
2786 struct nfs4_exception exception = { };
2787 int err;
2788 do {
2789 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002790 _nfs4_proc_symlink(dir, dentry, page,
2791 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 &exception);
2793 } while (exception.retry);
2794 return err;
2795}
2796
2797static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2798 struct iattr *sattr)
2799{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002800 struct nfs4_createdata *data;
2801 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002803 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2804 if (data == NULL)
2805 goto out;
2806
2807 status = nfs4_do_create(dir, dentry, data);
2808
2809 nfs4_free_createdata(data);
2810out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 return status;
2812}
2813
2814static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2815 struct iattr *sattr)
2816{
2817 struct nfs4_exception exception = { };
2818 int err;
2819 do {
2820 err = nfs4_handle_exception(NFS_SERVER(dir),
2821 _nfs4_proc_mkdir(dir, dentry, sattr),
2822 &exception);
2823 } while (exception.retry);
2824 return err;
2825}
2826
2827static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04002828 u64 cookie, struct page **pages, unsigned int count, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829{
2830 struct inode *dir = dentry->d_inode;
2831 struct nfs4_readdir_arg args = {
2832 .fh = NFS_FH(dir),
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04002833 .pages = pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 .pgbase = 0,
2835 .count = count,
Trond Myklebust96d25e52009-11-11 16:15:42 +09002836 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
Bryan Schumaker82f2e542010-10-21 16:33:18 -04002837 .plus = plus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 };
2839 struct nfs4_readdir_res res;
2840 struct rpc_message msg = {
2841 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2842 .rpc_argp = &args,
2843 .rpc_resp = &res,
2844 .rpc_cred = cred,
2845 };
2846 int status;
2847
Harvey Harrison3110ff82008-05-02 13:42:44 -07002848 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00002849 dentry->d_parent->d_name.name,
2850 dentry->d_name.name,
2851 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2853 res.pgbase = args.pgbase;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002854 status = nfs4_call_sync(NFS_SERVER(dir), &msg, &args, &res, 0);
Trond Myklebustac396122010-11-15 20:26:22 -05002855 if (status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustac396122010-11-15 20:26:22 -05002857 status += args.pgbase;
2858 }
Trond Myklebustc4812992007-09-28 17:11:45 -04002859
2860 nfs_invalidate_atime(dir);
2861
Harvey Harrison3110ff82008-05-02 13:42:44 -07002862 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 return status;
2864}
2865
2866static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04002867 u64 cookie, struct page **pages, unsigned int count, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868{
2869 struct nfs4_exception exception = { };
2870 int err;
2871 do {
2872 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2873 _nfs4_proc_readdir(dentry, cred, cookie,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04002874 pages, count, plus),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 &exception);
2876 } while (exception.retry);
2877 return err;
2878}
2879
2880static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2881 struct iattr *sattr, dev_t rdev)
2882{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002883 struct nfs4_createdata *data;
2884 int mode = sattr->ia_mode;
2885 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
2887 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2888 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002889
2890 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
2891 if (data == NULL)
2892 goto out;
2893
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002895 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002897 data->arg.ftype = NF4BLK;
2898 data->arg.u.device.specdata1 = MAJOR(rdev);
2899 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 }
2901 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002902 data->arg.ftype = NF4CHR;
2903 data->arg.u.device.specdata1 = MAJOR(rdev);
2904 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002907 status = nfs4_do_create(dir, dentry, data);
2908
2909 nfs4_free_createdata(data);
2910out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 return status;
2912}
2913
2914static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2915 struct iattr *sattr, dev_t rdev)
2916{
2917 struct nfs4_exception exception = { };
2918 int err;
2919 do {
2920 err = nfs4_handle_exception(NFS_SERVER(dir),
2921 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2922 &exception);
2923 } while (exception.retry);
2924 return err;
2925}
2926
2927static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2928 struct nfs_fsstat *fsstat)
2929{
2930 struct nfs4_statfs_arg args = {
2931 .fh = fhandle,
2932 .bitmask = server->attr_bitmask,
2933 };
Benny Halevy24ad1482009-04-01 09:21:56 -04002934 struct nfs4_statfs_res res = {
2935 .fsstat = fsstat,
2936 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 struct rpc_message msg = {
2938 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2939 .rpc_argp = &args,
Benny Halevy24ad1482009-04-01 09:21:56 -04002940 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 };
2942
Trond Myklebust0e574af2005-10-27 22:12:38 -04002943 nfs_fattr_init(fsstat->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002944 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945}
2946
2947static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2948{
2949 struct nfs4_exception exception = { };
2950 int err;
2951 do {
2952 err = nfs4_handle_exception(server,
2953 _nfs4_proc_statfs(server, fhandle, fsstat),
2954 &exception);
2955 } while (exception.retry);
2956 return err;
2957}
2958
2959static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2960 struct nfs_fsinfo *fsinfo)
2961{
2962 struct nfs4_fsinfo_arg args = {
2963 .fh = fhandle,
2964 .bitmask = server->attr_bitmask,
2965 };
Benny Halevy3dda5e42009-04-01 09:21:57 -04002966 struct nfs4_fsinfo_res res = {
2967 .fsinfo = fsinfo,
2968 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 struct rpc_message msg = {
2970 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2971 .rpc_argp = &args,
Benny Halevy3dda5e42009-04-01 09:21:57 -04002972 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 };
2974
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002975 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976}
2977
2978static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2979{
2980 struct nfs4_exception exception = { };
2981 int err;
2982
2983 do {
2984 err = nfs4_handle_exception(server,
2985 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2986 &exception);
2987 } while (exception.retry);
2988 return err;
2989}
2990
2991static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2992{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002993 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2995}
2996
2997static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2998 struct nfs_pathconf *pathconf)
2999{
3000 struct nfs4_pathconf_arg args = {
3001 .fh = fhandle,
3002 .bitmask = server->attr_bitmask,
3003 };
Benny Halevyd45b2982009-04-01 09:21:58 -04003004 struct nfs4_pathconf_res res = {
3005 .pathconf = pathconf,
3006 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 struct rpc_message msg = {
3008 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
3009 .rpc_argp = &args,
Benny Halevyd45b2982009-04-01 09:21:58 -04003010 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 };
3012
3013 /* None of the pathconf attributes are mandatory to implement */
3014 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
3015 memset(pathconf, 0, sizeof(*pathconf));
3016 return 0;
3017 }
3018
Trond Myklebust0e574af2005-10-27 22:12:38 -04003019 nfs_fattr_init(pathconf->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003020 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021}
3022
3023static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
3024 struct nfs_pathconf *pathconf)
3025{
3026 struct nfs4_exception exception = { };
3027 int err;
3028
3029 do {
3030 err = nfs4_handle_exception(server,
3031 _nfs4_proc_pathconf(server, fhandle, pathconf),
3032 &exception);
3033 } while (exception.retry);
3034 return err;
3035}
3036
Trond Myklebustec06c092006-03-20 13:44:27 -05003037static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038{
Trond Myklebustec06c092006-03-20 13:44:27 -05003039 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
Andy Adamsonf11c88a2009-04-01 09:22:25 -04003041 dprintk("--> %s\n", __func__);
3042
Trond Myklebust14516c32010-07-31 14:29:06 -04003043 if (!nfs4_sequence_done(task, &data->res.seq_res))
3044 return -EAGAIN;
Andy Adamsonf11c88a2009-04-01 09:22:25 -04003045
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003046 if (nfs4_async_handle_error(task, server, data->args.context->state) == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05003047 nfs_restart_rpc(task, server->nfs_client);
Trond Myklebustec06c092006-03-20 13:44:27 -05003048 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 }
Trond Myklebust8850df92007-09-28 17:20:07 -04003050
3051 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05003053 renew_lease(server, data->timestamp);
3054 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055}
3056
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003057static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 data->timestamp = jiffies;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003060 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061}
3062
Trond Myklebust788e7a82006-03-20 13:44:27 -05003063static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 struct inode *inode = data->inode;
3066
Trond Myklebust14516c32010-07-31 14:29:06 -04003067 if (!nfs4_sequence_done(task, &data->res.seq_res))
3068 return -EAGAIN;
Andy Adamsondef6ed72009-04-01 09:22:26 -04003069
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003070 if (nfs4_async_handle_error(task, NFS_SERVER(inode), data->args.context->state) == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05003071 nfs_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003072 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003074 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust70ca8852007-09-30 15:21:24 -04003076 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003077 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05003078 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079}
3080
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003081static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082{
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003083 struct nfs_server *server = NFS_SERVER(data->inode);
3084
Trond Myklebusta65318b2009-03-11 14:10:28 -04003085 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003086 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 data->timestamp = jiffies;
3088
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003089 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090}
3091
Trond Myklebust788e7a82006-03-20 13:44:27 -05003092static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 struct inode *inode = data->inode;
3095
Trond Myklebust14516c32010-07-31 14:29:06 -04003096 if (!nfs4_sequence_done(task, &data->res.seq_res))
3097 return -EAGAIN;
3098
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003099 if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05003100 nfs_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003101 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 }
Trond Myklebust9e08a3c2007-10-08 14:10:31 -04003103 nfs_refresh_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003104 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105}
3106
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003107static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108{
Trond Myklebust788e7a82006-03-20 13:44:27 -05003109 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
Trond Myklebusta65318b2009-03-11 14:10:28 -04003111 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003112 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003113 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114}
3115
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003116struct nfs4_renewdata {
3117 struct nfs_client *client;
3118 unsigned long timestamp;
3119};
3120
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121/*
3122 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
3123 * standalone procedure for queueing an asynchronous RENEW.
3124 */
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003125static void nfs4_renew_release(void *calldata)
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003126{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003127 struct nfs4_renewdata *data = calldata;
3128 struct nfs_client *clp = data->client;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003129
Alexandros Batsakis0851de062010-02-05 03:45:06 -08003130 if (atomic_read(&clp->cl_count) > 1)
3131 nfs4_schedule_state_renewal(clp);
3132 nfs_put_client(clp);
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003133 kfree(data);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003134}
3135
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003136static void nfs4_renew_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003138 struct nfs4_renewdata *data = calldata;
3139 struct nfs_client *clp = data->client;
3140 unsigned long timestamp = data->timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
3142 if (task->tk_status < 0) {
Trond Myklebust95baa252009-05-26 14:51:00 -04003143 /* Unless we're shutting down, schedule state recovery! */
3144 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) != 0)
3145 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 return;
3147 }
Trond Myklebust452e9352010-07-31 14:29:06 -04003148 do_renew_lease(clp, timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149}
3150
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003151static const struct rpc_call_ops nfs4_renew_ops = {
3152 .rpc_call_done = nfs4_renew_done,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003153 .rpc_release = nfs4_renew_release,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003154};
3155
David Howellsadfa6f92006-08-22 20:06:08 -04003156int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157{
3158 struct rpc_message msg = {
3159 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3160 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003161 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 };
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003163 struct nfs4_renewdata *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
Alexandros Batsakis0851de062010-02-05 03:45:06 -08003165 if (!atomic_inc_not_zero(&clp->cl_count))
3166 return -EIO;
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003167 data = kmalloc(sizeof(*data), GFP_KERNEL);
3168 if (data == NULL)
3169 return -ENOMEM;
3170 data->client = clp;
3171 data->timestamp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003173 &nfs4_renew_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174}
3175
David Howellsadfa6f92006-08-22 20:06:08 -04003176int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177{
3178 struct rpc_message msg = {
3179 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3180 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003181 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 };
3183 unsigned long now = jiffies;
3184 int status;
3185
3186 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3187 if (status < 0)
3188 return status;
Trond Myklebust452e9352010-07-31 14:29:06 -04003189 do_renew_lease(clp, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 return 0;
3191}
3192
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003193static inline int nfs4_server_supports_acls(struct nfs_server *server)
3194{
3195 return (server->caps & NFS_CAP_ACLS)
3196 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
3197 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
3198}
3199
3200/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
3201 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
3202 * the stack.
3203 */
3204#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
3205
3206static void buf_to_pages(const void *buf, size_t buflen,
3207 struct page **pages, unsigned int *pgbase)
3208{
3209 const void *p = buf;
3210
3211 *pgbase = offset_in_page(buf);
3212 p -= *pgbase;
3213 while (p < buf + buflen) {
3214 *(pages++) = virt_to_page(p);
3215 p += PAGE_CACHE_SIZE;
3216 }
3217}
3218
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003219struct nfs4_cached_acl {
3220 int cached;
3221 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00003222 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003223};
3224
3225static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003226{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003227 struct nfs_inode *nfsi = NFS_I(inode);
3228
3229 spin_lock(&inode->i_lock);
3230 kfree(nfsi->nfs4_acl);
3231 nfsi->nfs4_acl = acl;
3232 spin_unlock(&inode->i_lock);
3233}
3234
3235static void nfs4_zap_acl_attr(struct inode *inode)
3236{
3237 nfs4_set_cached_acl(inode, NULL);
3238}
3239
3240static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
3241{
3242 struct nfs_inode *nfsi = NFS_I(inode);
3243 struct nfs4_cached_acl *acl;
3244 int ret = -ENOENT;
3245
3246 spin_lock(&inode->i_lock);
3247 acl = nfsi->nfs4_acl;
3248 if (acl == NULL)
3249 goto out;
3250 if (buf == NULL) /* user is just asking for length */
3251 goto out_len;
3252 if (acl->cached == 0)
3253 goto out;
3254 ret = -ERANGE; /* see getxattr(2) man page */
3255 if (acl->len > buflen)
3256 goto out;
3257 memcpy(buf, acl->data, acl->len);
3258out_len:
3259 ret = acl->len;
3260out:
3261 spin_unlock(&inode->i_lock);
3262 return ret;
3263}
3264
3265static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
3266{
3267 struct nfs4_cached_acl *acl;
3268
3269 if (buf && acl_len <= PAGE_SIZE) {
3270 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
3271 if (acl == NULL)
3272 goto out;
3273 acl->cached = 1;
3274 memcpy(acl->data, buf, acl_len);
3275 } else {
3276 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
3277 if (acl == NULL)
3278 goto out;
3279 acl->cached = 0;
3280 }
3281 acl->len = acl_len;
3282out:
3283 nfs4_set_cached_acl(inode, acl);
3284}
3285
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003286static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003287{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003288 struct page *pages[NFS4ACL_MAXPAGES];
3289 struct nfs_getaclargs args = {
3290 .fh = NFS_FH(inode),
3291 .acl_pages = pages,
3292 .acl_len = buflen,
3293 };
Benny Halevy663c79b2009-04-01 09:21:59 -04003294 struct nfs_getaclres res = {
3295 .acl_len = buflen,
3296 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003297 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003298 struct rpc_message msg = {
3299 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
3300 .rpc_argp = &args,
Benny Halevy663c79b2009-04-01 09:21:59 -04003301 .rpc_resp = &res,
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003302 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003303 struct page *localpage = NULL;
3304 int ret;
3305
3306 if (buflen < PAGE_SIZE) {
3307 /* As long as we're doing a round trip to the server anyway,
3308 * let's be prepared for a page of acl data. */
3309 localpage = alloc_page(GFP_KERNEL);
3310 resp_buf = page_address(localpage);
3311 if (localpage == NULL)
3312 return -ENOMEM;
3313 args.acl_pages[0] = localpage;
3314 args.acl_pgbase = 0;
Benny Halevy663c79b2009-04-01 09:21:59 -04003315 args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003316 } else {
3317 resp_buf = buf;
3318 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
3319 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003320 ret = nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003321 if (ret)
3322 goto out_free;
Benny Halevy663c79b2009-04-01 09:21:59 -04003323 if (res.acl_len > args.acl_len)
3324 nfs4_write_cached_acl(inode, NULL, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003325 else
Benny Halevy663c79b2009-04-01 09:21:59 -04003326 nfs4_write_cached_acl(inode, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003327 if (buf) {
3328 ret = -ERANGE;
Benny Halevy663c79b2009-04-01 09:21:59 -04003329 if (res.acl_len > buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003330 goto out_free;
3331 if (localpage)
Benny Halevy663c79b2009-04-01 09:21:59 -04003332 memcpy(buf, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003333 }
Benny Halevy663c79b2009-04-01 09:21:59 -04003334 ret = res.acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003335out_free:
3336 if (localpage)
3337 __free_page(localpage);
3338 return ret;
3339}
3340
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003341static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
3342{
3343 struct nfs4_exception exception = { };
3344 ssize_t ret;
3345 do {
3346 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
3347 if (ret >= 0)
3348 break;
3349 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
3350 } while (exception.retry);
3351 return ret;
3352}
3353
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003354static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
3355{
3356 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003357 int ret;
3358
3359 if (!nfs4_server_supports_acls(server))
3360 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003361 ret = nfs_revalidate_inode(server, inode);
3362 if (ret < 0)
3363 return ret;
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00003364 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
3365 nfs_zap_acl_cache(inode);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003366 ret = nfs4_read_cached_acl(inode, buf, buflen);
3367 if (ret != -ENOENT)
3368 return ret;
3369 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003370}
3371
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003372static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003373{
3374 struct nfs_server *server = NFS_SERVER(inode);
3375 struct page *pages[NFS4ACL_MAXPAGES];
3376 struct nfs_setaclargs arg = {
3377 .fh = NFS_FH(inode),
3378 .acl_pages = pages,
3379 .acl_len = buflen,
3380 };
Benny Halevy73c403a2009-04-01 09:22:01 -04003381 struct nfs_setaclres res;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003382 struct rpc_message msg = {
3383 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
3384 .rpc_argp = &arg,
Benny Halevy73c403a2009-04-01 09:22:01 -04003385 .rpc_resp = &res,
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003386 };
3387 int ret;
3388
3389 if (!nfs4_server_supports_acls(server))
3390 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07003391 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003392 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003393 ret = nfs4_call_sync(server, &msg, &arg, &res, 1);
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00003394 /*
3395 * Acl update can result in inode attribute update.
3396 * so mark the attribute cache invalid.
3397 */
3398 spin_lock(&inode->i_lock);
3399 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR;
3400 spin_unlock(&inode->i_lock);
Trond Myklebustf41f7412008-06-11 17:39:04 -04003401 nfs_access_zap_cache(inode);
3402 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003403 return ret;
3404}
3405
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003406static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
3407{
3408 struct nfs4_exception exception = { };
3409 int err;
3410 do {
3411 err = nfs4_handle_exception(NFS_SERVER(inode),
3412 __nfs4_proc_set_acl(inode, buf, buflen),
3413 &exception);
3414 } while (exception.retry);
3415 return err;
3416}
3417
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418static int
Trond Myklebustaa5190d2010-06-16 09:52:25 -04003419nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420{
Trond Myklebustaa5190d2010-06-16 09:52:25 -04003421 struct nfs_client *clp = server->nfs_client;
3422
3423 if (task->tk_status >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 return 0;
3425 switch(task->tk_status) {
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003426 case -NFS4ERR_ADMIN_REVOKED:
3427 case -NFS4ERR_BAD_STATEID:
3428 case -NFS4ERR_OPENMODE:
3429 if (state == NULL)
3430 break;
3431 nfs4_state_mark_reclaim_nograce(clp, state);
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003432 goto do_state_recovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003434 case -NFS4ERR_STALE_CLIENTID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 case -NFS4ERR_EXPIRED:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003436 goto do_state_recovery;
Andy Adamson4745e312009-04-01 09:22:42 -04003437#if defined(CONFIG_NFS_V4_1)
3438 case -NFS4ERR_BADSESSION:
3439 case -NFS4ERR_BADSLOT:
3440 case -NFS4ERR_BAD_HIGH_SLOT:
3441 case -NFS4ERR_DEADSESSION:
3442 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
3443 case -NFS4ERR_SEQ_FALSE_RETRY:
3444 case -NFS4ERR_SEQ_MISORDERED:
3445 dprintk("%s ERROR %d, Reset session\n", __func__,
3446 task->tk_status);
Andy Adamson0b9e2d42009-12-04 16:02:14 -05003447 nfs4_schedule_state_recovery(clp);
Andy Adamson4745e312009-04-01 09:22:42 -04003448 task->tk_status = 0;
3449 return -EAGAIN;
3450#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04003452 nfs_inc_server_stats(server, NFSIOS_DELAY);
Chuck Lever006ea732006-03-20 13:44:14 -05003453 case -NFS4ERR_GRACE:
Jeff Layton2c643482010-01-07 09:42:03 -05003454 case -EKEYEXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 rpc_delay(task, NFS4_POLL_RETRY_MAX);
3456 task->tk_status = 0;
3457 return -EAGAIN;
3458 case -NFS4ERR_OLD_STATEID:
3459 task->tk_status = 0;
3460 return -EAGAIN;
3461 }
3462 task->tk_status = nfs4_map_errors(task->tk_status);
3463 return 0;
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003464do_state_recovery:
3465 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
3466 nfs4_schedule_state_recovery(clp);
3467 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
3468 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
3469 task->tk_status = 0;
3470 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471}
3472
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003473int nfs4_proc_setclientid(struct nfs_client *clp, u32 program,
3474 unsigned short port, struct rpc_cred *cred,
3475 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476{
3477 nfs4_verifier sc_verifier;
3478 struct nfs4_setclientid setclientid = {
3479 .sc_verifier = &sc_verifier,
3480 .sc_prog = program,
3481 };
3482 struct rpc_message msg = {
3483 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
3484 .rpc_argp = &setclientid,
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003485 .rpc_resp = res,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003486 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 };
Al Virobc4785c2006-10-19 23:28:51 -07003488 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 int loop = 0;
3490 int status;
3491
Al Virobc4785c2006-10-19 23:28:51 -07003492 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
3494 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
3495
3496 for(;;) {
3497 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05003498 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05003499 clp->cl_ipaddr,
3500 rpc_peeraddr2str(clp->cl_rpcclient,
3501 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05003502 rpc_peeraddr2str(clp->cl_rpcclient,
3503 RPC_DISPLAY_PROTO),
Trond Myklebust78ea3232008-04-07 20:49:28 -04003504 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 clp->cl_id_uniquifier);
3506 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003507 sizeof(setclientid.sc_netid),
3508 rpc_peeraddr2str(clp->cl_rpcclient,
3509 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003511 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 clp->cl_ipaddr, port >> 8, port & 255);
3513
3514 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3515 if (status != -NFS4ERR_CLID_INUSE)
3516 break;
3517 if (signalled())
3518 break;
3519 if (loop++ & 1)
J. Bruce Fields611c96c2010-12-13 19:05:46 -05003520 ssleep(clp->cl_lease_time / HZ + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 else
3522 if (++clp->cl_id_uniquifier == 0)
3523 break;
3524 }
3525 return status;
3526}
3527
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003528static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp,
3529 struct nfs4_setclientid_res *arg,
3530 struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531{
3532 struct nfs_fsinfo fsinfo;
3533 struct rpc_message msg = {
3534 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003535 .rpc_argp = arg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003537 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 };
3539 unsigned long now;
3540 int status;
3541
3542 now = jiffies;
3543 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3544 if (status == 0) {
3545 spin_lock(&clp->cl_lock);
3546 clp->cl_lease_time = fsinfo.lease_time * HZ;
3547 clp->cl_last_renewal = now;
3548 spin_unlock(&clp->cl_lock);
3549 }
3550 return status;
3551}
3552
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003553int nfs4_proc_setclientid_confirm(struct nfs_client *clp,
3554 struct nfs4_setclientid_res *arg,
3555 struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05003556{
Benny Halevy77e03672008-06-24 20:25:57 +03003557 long timeout = 0;
Trond Myklebust51581f32006-03-20 13:44:47 -05003558 int err;
3559 do {
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003560 err = _nfs4_proc_setclientid_confirm(clp, arg, cred);
Trond Myklebust51581f32006-03-20 13:44:47 -05003561 switch (err) {
3562 case 0:
3563 return err;
3564 case -NFS4ERR_RESOURCE:
3565 /* The IBM lawyers misread another document! */
3566 case -NFS4ERR_DELAY:
3567 err = nfs4_delay(clp->cl_rpcclient, &timeout);
3568 }
3569 } while (err == 0);
3570 return err;
3571}
3572
Trond Myklebustfe650402006-01-03 09:55:18 +01003573struct nfs4_delegreturndata {
3574 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003575 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01003576 struct nfs_fh fh;
3577 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003578 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003579 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01003580 int rpc_status;
3581};
3582
Trond Myklebustfe650402006-01-03 09:55:18 +01003583static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
3584{
3585 struct nfs4_delegreturndata *data = calldata;
Andy Adamson938e1012009-04-01 09:22:28 -04003586
Trond Myklebust14516c32010-07-31 14:29:06 -04003587 if (!nfs4_sequence_done(task, &data->res.seq_res))
3588 return;
Andy Adamson938e1012009-04-01 09:22:28 -04003589
Ricardo Labiaga79708862009-12-07 09:23:21 -05003590 switch (task->tk_status) {
3591 case -NFS4ERR_STALE_STATEID:
3592 case -NFS4ERR_EXPIRED:
3593 case 0:
Trond Myklebustfa178f22006-01-03 09:55:38 +01003594 renew_lease(data->res.server, data->timestamp);
Ricardo Labiaga79708862009-12-07 09:23:21 -05003595 break;
3596 default:
3597 if (nfs4_async_handle_error(task, data->res.server, NULL) ==
3598 -EAGAIN) {
3599 nfs_restart_rpc(task, data->res.server->nfs_client);
3600 return;
3601 }
3602 }
3603 data->rpc_status = task->tk_status;
Trond Myklebustfe650402006-01-03 09:55:18 +01003604}
3605
3606static void nfs4_delegreturn_release(void *calldata)
3607{
Trond Myklebustfe650402006-01-03 09:55:18 +01003608 kfree(calldata);
3609}
3610
Andy Adamson938e1012009-04-01 09:22:28 -04003611#if defined(CONFIG_NFS_V4_1)
3612static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
3613{
3614 struct nfs4_delegreturndata *d_data;
3615
3616 d_data = (struct nfs4_delegreturndata *)data;
3617
Trond Myklebust035168a2010-06-16 09:52:26 -04003618 if (nfs4_setup_sequence(d_data->res.server,
Andy Adamson938e1012009-04-01 09:22:28 -04003619 &d_data->args.seq_args,
3620 &d_data->res.seq_res, 1, task))
3621 return;
3622 rpc_call_start(task);
3623}
3624#endif /* CONFIG_NFS_V4_1 */
3625
Jesper Juhlc8d149f2006-03-20 13:44:07 -05003626static const struct rpc_call_ops nfs4_delegreturn_ops = {
Andy Adamson938e1012009-04-01 09:22:28 -04003627#if defined(CONFIG_NFS_V4_1)
3628 .rpc_call_prepare = nfs4_delegreturn_prepare,
3629#endif /* CONFIG_NFS_V4_1 */
Trond Myklebustfe650402006-01-03 09:55:18 +01003630 .rpc_call_done = nfs4_delegreturn_done,
3631 .rpc_release = nfs4_delegreturn_release,
3632};
3633
Trond Myklebuste6f81072008-01-24 18:14:34 -05003634static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01003635{
3636 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003637 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01003638 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003639 struct rpc_message msg = {
3640 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
3641 .rpc_cred = cred,
3642 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003643 struct rpc_task_setup task_setup_data = {
3644 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04003645 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003646 .callback_ops = &nfs4_delegreturn_ops,
3647 .flags = RPC_TASK_ASYNC,
3648 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05003649 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01003650
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003651 data = kzalloc(sizeof(*data), GFP_NOFS);
Trond Myklebustfe650402006-01-03 09:55:18 +01003652 if (data == NULL)
3653 return -ENOMEM;
3654 data->args.fhandle = &data->fh;
3655 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003656 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01003657 nfs_copy_fh(&data->fh, NFS_FH(inode));
3658 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01003659 data->res.fattr = &data->fattr;
3660 data->res.server = server;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003661 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003662 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01003663 data->rpc_status = 0;
3664
Trond Myklebustc970aa82007-07-14 15:39:59 -04003665 task_setup_data.callback_data = data;
Trond Myklebust1174dd12010-12-21 10:52:24 -05003666 msg.rpc_argp = &data->args;
3667 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04003668 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003669 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003670 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003671 if (!issync)
3672 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01003673 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003674 if (status != 0)
3675 goto out;
3676 status = data->rpc_status;
3677 if (status != 0)
3678 goto out;
3679 nfs_refresh_inode(inode, &data->fattr);
3680out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003681 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003682 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683}
3684
Trond Myklebuste6f81072008-01-24 18:14:34 -05003685int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686{
3687 struct nfs_server *server = NFS_SERVER(inode);
3688 struct nfs4_exception exception = { };
3689 int err;
3690 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05003691 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 switch (err) {
3693 case -NFS4ERR_STALE_STATEID:
3694 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 case 0:
3696 return 0;
3697 }
3698 err = nfs4_handle_exception(server, err, &exception);
3699 } while (exception.retry);
3700 return err;
3701}
3702
3703#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3704#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3705
3706/*
3707 * sleep, with exponential backoff, and retry the LOCK operation.
3708 */
3709static unsigned long
3710nfs4_set_lock_task_retry(unsigned long timeout)
3711{
Matthew Wilcox150030b2007-12-06 16:24:39 -05003712 schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 timeout <<= 1;
3714 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3715 return NFS4_LOCK_MAXTIMEOUT;
3716 return timeout;
3717}
3718
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3720{
3721 struct inode *inode = state->inode;
3722 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003723 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003724 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003726 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003728 struct nfs_lockt_res res = {
3729 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 };
3731 struct rpc_message msg = {
3732 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3733 .rpc_argp = &arg,
3734 .rpc_resp = &res,
3735 .rpc_cred = state->owner->so_cred,
3736 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 struct nfs4_lock_state *lsp;
3738 int status;
3739
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003740 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003741 status = nfs4_set_lock_state(state, request);
3742 if (status != 0)
3743 goto out;
3744 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003745 arg.lock_owner.id = lsp->ls_id.id;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003746 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003747 switch (status) {
3748 case 0:
3749 request->fl_type = F_UNLCK;
3750 break;
3751 case -NFS4ERR_DENIED:
3752 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003754 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003755out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 return status;
3757}
3758
3759static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3760{
3761 struct nfs4_exception exception = { };
3762 int err;
3763
3764 do {
3765 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3766 _nfs4_proc_getlk(state, cmd, request),
3767 &exception);
3768 } while (exception.retry);
3769 return err;
3770}
3771
3772static int do_vfs_lock(struct file *file, struct file_lock *fl)
3773{
3774 int res = 0;
3775 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3776 case FL_POSIX:
3777 res = posix_lock_file_wait(file, fl);
3778 break;
3779 case FL_FLOCK:
3780 res = flock_lock_file_wait(file, fl);
3781 break;
3782 default:
3783 BUG();
3784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 return res;
3786}
3787
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003788struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003789 struct nfs_locku_args arg;
3790 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003791 struct nfs4_lock_state *lsp;
3792 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003793 struct file_lock fl;
3794 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003795 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003796};
3797
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003798static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3799 struct nfs_open_context *ctx,
3800 struct nfs4_lock_state *lsp,
3801 struct nfs_seqid *seqid)
3802{
3803 struct nfs4_unlockdata *p;
3804 struct inode *inode = lsp->ls_state->inode;
3805
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003806 p = kzalloc(sizeof(*p), GFP_NOFS);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003807 if (p == NULL)
3808 return NULL;
3809 p->arg.fh = NFS_FH(inode);
3810 p->arg.fl = &p->fl;
3811 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003812 p->res.seqid = seqid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003813 p->arg.stateid = &lsp->ls_stateid;
3814 p->lsp = lsp;
3815 atomic_inc(&lsp->ls_count);
3816 /* Ensure we don't close file until we're done freeing locks! */
3817 p->ctx = get_nfs_open_context(ctx);
3818 memcpy(&p->fl, fl, sizeof(p->fl));
3819 p->server = NFS_SERVER(inode);
3820 return p;
3821}
3822
Trond Myklebust06f814a2006-01-03 09:55:07 +01003823static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003824{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003825 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003826 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003827 nfs4_put_lock_state(calldata->lsp);
3828 put_nfs_open_context(calldata->ctx);
3829 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003830}
3831
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003832static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003833{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003834 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003835
Trond Myklebust14516c32010-07-31 14:29:06 -04003836 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
3837 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003838 switch (task->tk_status) {
3839 case 0:
3840 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003841 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003842 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003843 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003844 break;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003845 case -NFS4ERR_BAD_STATEID:
3846 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003847 case -NFS4ERR_STALE_STATEID:
3848 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003849 break;
3850 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003851 if (nfs4_async_handle_error(task, calldata->server, NULL) == -EAGAIN)
Trond Myklebust0110ee12009-12-07 09:00:24 -05003852 nfs_restart_rpc(task,
Trond Myklebustd61e6122009-12-05 19:32:19 -05003853 calldata->server->nfs_client);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003854 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003855}
3856
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003857static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003858{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003859 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003861 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003862 return;
3863 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003864 /* Note: exit _without_ running nfs4_locku_done */
3865 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003866 return;
3867 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003868 calldata->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04003869 if (nfs4_setup_sequence(calldata->server,
Andy Adamsona8936932009-04-01 09:22:23 -04003870 &calldata->arg.seq_args,
3871 &calldata->res.seq_res, 1, task))
3872 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003873 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874}
3875
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003876static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003877 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003878 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003879 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003880};
3881
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003882static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3883 struct nfs_open_context *ctx,
3884 struct nfs4_lock_state *lsp,
3885 struct nfs_seqid *seqid)
3886{
3887 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003888 struct rpc_message msg = {
3889 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3890 .rpc_cred = ctx->cred,
3891 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003892 struct rpc_task_setup task_setup_data = {
3893 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003894 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003895 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003896 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003897 .flags = RPC_TASK_ASYNC,
3898 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003899
Frank Filz137d6ac2007-07-09 15:32:29 -07003900 /* Ensure this is an unlock - when canceling a lock, the
3901 * canceled lock is passed in, and it won't be an unlock.
3902 */
3903 fl->fl_type = F_UNLCK;
3904
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003905 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3906 if (data == NULL) {
3907 nfs_free_seqid(seqid);
3908 return ERR_PTR(-ENOMEM);
3909 }
3910
Trond Myklebust1174dd12010-12-21 10:52:24 -05003911 msg.rpc_argp = &data->arg;
3912 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04003913 task_setup_data.callback_data = data;
3914 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003915}
3916
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3918{
Trond Myklebust19e03c52008-12-23 15:21:44 -05003919 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003920 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003921 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003922 struct rpc_task *task;
3923 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003924 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925
Trond Myklebust9b073572006-06-29 16:38:34 -04003926 status = nfs4_set_lock_state(state, request);
3927 /* Unlock _before_ we do the RPC call */
3928 request->fl_flags |= FL_EXISTS;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003929 down_read(&nfsi->rwsem);
3930 if (do_vfs_lock(request->fl_file, request) == -ENOENT) {
3931 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003932 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003933 }
3934 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003935 if (status != 0)
3936 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003937 /* Is this a delegated lock? */
3938 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003939 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003940 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003941 seqid = nfs_alloc_seqid(&lsp->ls_seqid, GFP_KERNEL);
Trond Myklebust9b073572006-06-29 16:38:34 -04003942 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003943 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003944 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003945 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003946 status = PTR_ERR(task);
3947 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003948 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003949 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003950 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003951out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003952 request->fl_flags = fl_flags;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003953 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954}
3955
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003956struct nfs4_lockdata {
3957 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003958 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003959 struct nfs4_lock_state *lsp;
3960 struct nfs_open_context *ctx;
3961 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003962 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003963 int rpc_status;
3964 int cancelled;
Andy Adamson66179ef2009-04-01 09:22:22 -04003965 struct nfs_server *server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003966};
3967
3968static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003969 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp,
3970 gfp_t gfp_mask)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003971{
3972 struct nfs4_lockdata *p;
3973 struct inode *inode = lsp->ls_state->inode;
3974 struct nfs_server *server = NFS_SERVER(inode);
3975
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003976 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003977 if (p == NULL)
3978 return NULL;
3979
3980 p->arg.fh = NFS_FH(inode);
3981 p->arg.fl = &p->fl;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003982 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003983 if (p->arg.open_seqid == NULL)
3984 goto out_free;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003985 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid, gfp_mask);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003986 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003987 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003988 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003989 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003990 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003991 p->res.lock_seqid = p->arg.lock_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003992 p->lsp = lsp;
Andy Adamson66179ef2009-04-01 09:22:22 -04003993 p->server = server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003994 atomic_inc(&lsp->ls_count);
3995 p->ctx = get_nfs_open_context(ctx);
3996 memcpy(&p->fl, fl, sizeof(p->fl));
3997 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003998out_free_seqid:
3999 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004000out_free:
4001 kfree(p);
4002 return NULL;
4003}
4004
4005static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
4006{
4007 struct nfs4_lockdata *data = calldata;
4008 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
Harvey Harrison3110ff82008-05-02 13:42:44 -07004010 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004011 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
4012 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004013 /* Do we need to do an open_to_lock_owner? */
4014 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05004015 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
4016 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004017 data->arg.open_stateid = &state->stateid;
4018 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04004019 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004020 } else
4021 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01004022 data->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04004023 if (nfs4_setup_sequence(data->server,
4024 &data->arg.seq_args,
Andy Adamson66179ef2009-04-01 09:22:22 -04004025 &data->res.seq_res, 1, task))
4026 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004027 rpc_call_start(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004028 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004029}
4030
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004031static void nfs4_recover_lock_prepare(struct rpc_task *task, void *calldata)
4032{
4033 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
4034 nfs4_lock_prepare(task, calldata);
4035}
4036
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004037static void nfs4_lock_done(struct rpc_task *task, void *calldata)
4038{
4039 struct nfs4_lockdata *data = calldata;
4040
Harvey Harrison3110ff82008-05-02 13:42:44 -07004041 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004042
Trond Myklebust14516c32010-07-31 14:29:06 -04004043 if (!nfs4_sequence_done(task, &data->res.seq_res))
4044 return;
Andy Adamson66179ef2009-04-01 09:22:22 -04004045
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004046 data->rpc_status = task->tk_status;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004047 if (data->arg.new_lock_owner != 0) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004048 if (data->rpc_status == 0)
4049 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
4050 else
4051 goto out;
4052 }
4053 if (data->rpc_status == 0) {
4054 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
4055 sizeof(data->lsp->ls_stateid.data));
4056 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04004057 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004058 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004059out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004060 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004061}
4062
4063static void nfs4_lock_release(void *calldata)
4064{
4065 struct nfs4_lockdata *data = calldata;
4066
Harvey Harrison3110ff82008-05-02 13:42:44 -07004067 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004068 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004069 if (data->cancelled != 0) {
4070 struct rpc_task *task;
4071 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
4072 data->arg.lock_seqid);
4073 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05004074 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004075 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004076 } else
4077 nfs_free_seqid(data->arg.lock_seqid);
4078 nfs4_put_lock_state(data->lsp);
4079 put_nfs_open_context(data->ctx);
4080 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004081 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004082}
4083
4084static const struct rpc_call_ops nfs4_lock_ops = {
4085 .rpc_call_prepare = nfs4_lock_prepare,
4086 .rpc_call_done = nfs4_lock_done,
4087 .rpc_release = nfs4_lock_release,
4088};
4089
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004090static const struct rpc_call_ops nfs4_recover_lock_ops = {
4091 .rpc_call_prepare = nfs4_recover_lock_prepare,
4092 .rpc_call_done = nfs4_lock_done,
4093 .rpc_release = nfs4_lock_release,
4094};
4095
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004096static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error)
4097{
4098 struct nfs_client *clp = server->nfs_client;
4099 struct nfs4_state *state = lsp->ls_state;
4100
4101 switch (error) {
4102 case -NFS4ERR_ADMIN_REVOKED:
4103 case -NFS4ERR_BAD_STATEID:
4104 case -NFS4ERR_EXPIRED:
4105 if (new_lock_owner != 0 ||
4106 (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0)
4107 nfs4_state_mark_reclaim_nograce(clp, state);
4108 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05004109 break;
4110 case -NFS4ERR_STALE_STATEID:
4111 if (new_lock_owner != 0 ||
4112 (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0)
4113 nfs4_state_mark_reclaim_reboot(clp, state);
4114 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004115 };
4116}
4117
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004118static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004119{
4120 struct nfs4_lockdata *data;
4121 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004122 struct rpc_message msg = {
4123 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
4124 .rpc_cred = state->owner->so_cred,
4125 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04004126 struct rpc_task_setup task_setup_data = {
4127 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04004128 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004129 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05004130 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004131 .flags = RPC_TASK_ASYNC,
4132 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004133 int ret;
4134
Harvey Harrison3110ff82008-05-02 13:42:44 -07004135 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004136 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004137 fl->fl_u.nfs4_fl.owner,
4138 recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004139 if (data == NULL)
4140 return -ENOMEM;
4141 if (IS_SETLKW(cmd))
4142 data->arg.block = 1;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004143 if (recovery_type > NFS_LOCK_NEW) {
4144 if (recovery_type == NFS_LOCK_RECLAIM)
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004145 data->arg.reclaim = NFS_LOCK_RECLAIM;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004146 task_setup_data.callback_ops = &nfs4_recover_lock_ops;
4147 }
Trond Myklebust1174dd12010-12-21 10:52:24 -05004148 msg.rpc_argp = &data->arg;
4149 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04004150 task_setup_data.callback_data = data;
4151 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05004152 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004153 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004154 ret = nfs4_wait_for_completion_rpc_task(task);
4155 if (ret == 0) {
4156 ret = data->rpc_status;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004157 if (ret)
4158 nfs4_handle_setlk_error(data->server, data->lsp,
4159 data->arg.new_lock_owner, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004160 } else
4161 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05004162 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004163 dprintk("%s: done, ret = %d!\n", __func__, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004164 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165}
4166
4167static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
4168{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004169 struct nfs_server *server = NFS_SERVER(state->inode);
4170 struct nfs4_exception exception = { };
4171 int err;
4172
4173 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004174 /* Cache the lock if possible... */
4175 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4176 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004177 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM);
Trond Myklebust168667c2010-10-19 19:47:49 -04004178 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00004179 break;
4180 nfs4_handle_exception(server, err, &exception);
4181 } while (exception.retry);
4182 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183}
4184
4185static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
4186{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004187 struct nfs_server *server = NFS_SERVER(state->inode);
4188 struct nfs4_exception exception = { };
4189 int err;
4190
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004191 err = nfs4_set_lock_state(state, request);
4192 if (err != 0)
4193 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004194 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004195 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4196 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004197 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05004198 switch (err) {
4199 default:
4200 goto out;
4201 case -NFS4ERR_GRACE:
4202 case -NFS4ERR_DELAY:
4203 nfs4_handle_exception(server, err, &exception);
4204 err = 0;
4205 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00004206 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05004207out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00004208 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209}
4210
4211static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4212{
Trond Myklebust19e03c52008-12-23 15:21:44 -05004213 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004214 unsigned char fl_flags = request->fl_flags;
Trond Myklebust8e469eb2010-01-26 15:42:30 -05004215 int status = -ENOLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
Trond Myklebust8e469eb2010-01-26 15:42:30 -05004217 if ((fl_flags & FL_POSIX) &&
4218 !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags))
4219 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004220 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004221 status = nfs4_set_lock_state(state, request);
4222 if (status != 0)
4223 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004224 request->fl_flags |= FL_ACCESS;
4225 status = do_vfs_lock(request->fl_file, request);
4226 if (status < 0)
4227 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05004228 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004229 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04004230 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004231 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05004232 request->fl_flags = fl_flags & ~FL_SLEEP;
4233 status = do_vfs_lock(request->fl_file, request);
4234 goto out_unlock;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004235 }
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004236 status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW);
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004237 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04004238 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004239 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004240 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004241 if (do_vfs_lock(request->fl_file, request) < 0)
Harvey Harrison3110ff82008-05-02 13:42:44 -07004242 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004243out_unlock:
Trond Myklebust19e03c52008-12-23 15:21:44 -05004244 up_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004245out:
4246 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 return status;
4248}
4249
4250static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4251{
4252 struct nfs4_exception exception = { };
4253 int err;
4254
4255 do {
Trond Myklebust965b5d62009-06-17 13:22:59 -07004256 err = _nfs4_proc_setlk(state, cmd, request);
4257 if (err == -NFS4ERR_DENIED)
4258 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 err = nfs4_handle_exception(NFS_SERVER(state->inode),
Trond Myklebust965b5d62009-06-17 13:22:59 -07004260 err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 } while (exception.retry);
4262 return err;
4263}
4264
4265static int
4266nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
4267{
4268 struct nfs_open_context *ctx;
4269 struct nfs4_state *state;
4270 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
4271 int status;
4272
4273 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004274 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 state = ctx->state;
4276
4277 if (request->fl_start < 0 || request->fl_end < 0)
4278 return -EINVAL;
4279
Trond Myklebustd9531262009-07-21 19:22:38 -04004280 if (IS_GETLK(cmd)) {
4281 if (state != NULL)
4282 return nfs4_proc_getlk(state, F_GETLK, request);
4283 return 0;
4284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285
4286 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
4287 return -EINVAL;
4288
Trond Myklebustd9531262009-07-21 19:22:38 -04004289 if (request->fl_type == F_UNLCK) {
4290 if (state != NULL)
4291 return nfs4_proc_unlck(state, cmd, request);
4292 return 0;
4293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294
Trond Myklebustd9531262009-07-21 19:22:38 -04004295 if (state == NULL)
4296 return -ENOLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 do {
4298 status = nfs4_proc_setlk(state, cmd, request);
4299 if ((status != -EAGAIN) || IS_SETLK(cmd))
4300 break;
4301 timeout = nfs4_set_lock_task_retry(timeout);
4302 status = -ERESTARTSYS;
4303 if (signalled())
4304 break;
4305 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 return status;
4307}
4308
Trond Myklebust888e6942005-11-04 15:38:11 -05004309int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
4310{
4311 struct nfs_server *server = NFS_SERVER(state->inode);
4312 struct nfs4_exception exception = { };
4313 int err;
4314
4315 err = nfs4_set_lock_state(state, fl);
4316 if (err != 0)
4317 goto out;
4318 do {
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004319 err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW);
Trond Myklebustd5122202009-06-17 13:22:58 -07004320 switch (err) {
4321 default:
4322 printk(KERN_ERR "%s: unhandled error %d.\n",
4323 __func__, err);
4324 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004325 case -ESTALE:
Trond Myklebustd5122202009-06-17 13:22:58 -07004326 goto out;
4327 case -NFS4ERR_EXPIRED:
4328 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004329 case -NFS4ERR_STALE_STATEID:
Ricardo Labiaga74e7bb72009-12-07 09:48:30 -05004330 case -NFS4ERR_BADSESSION:
4331 case -NFS4ERR_BADSLOT:
4332 case -NFS4ERR_BAD_HIGH_SLOT:
4333 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
4334 case -NFS4ERR_DEADSESSION:
Trond Myklebustd5122202009-06-17 13:22:58 -07004335 nfs4_schedule_state_recovery(server->nfs_client);
4336 goto out;
Trond Myklebust965b5d62009-06-17 13:22:59 -07004337 case -ERESTARTSYS:
4338 /*
4339 * The show must go on: exit, but mark the
4340 * stateid as needing recovery.
4341 */
4342 case -NFS4ERR_ADMIN_REVOKED:
4343 case -NFS4ERR_BAD_STATEID:
4344 case -NFS4ERR_OPENMODE:
4345 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
4346 err = 0;
4347 goto out;
Trond Myklebust168667c2010-10-19 19:47:49 -04004348 case -EKEYEXPIRED:
4349 /*
4350 * User RPCSEC_GSS context has expired.
4351 * We cannot recover this stateid now, so
4352 * skip it and allow recovery thread to
4353 * proceed.
4354 */
4355 err = 0;
4356 goto out;
Trond Myklebust965b5d62009-06-17 13:22:59 -07004357 case -ENOMEM:
4358 case -NFS4ERR_DENIED:
4359 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
4360 err = 0;
4361 goto out;
Trond Myklebustd5122202009-06-17 13:22:58 -07004362 case -NFS4ERR_DELAY:
4363 break;
4364 }
Trond Myklebust888e6942005-11-04 15:38:11 -05004365 err = nfs4_handle_exception(server, err, &exception);
4366 } while (exception.retry);
4367out:
4368 return err;
4369}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004370
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004371static void nfs4_release_lockowner_release(void *calldata)
4372{
4373 kfree(calldata);
4374}
4375
4376const struct rpc_call_ops nfs4_release_lockowner_ops = {
4377 .rpc_release = nfs4_release_lockowner_release,
4378};
4379
4380void nfs4_release_lockowner(const struct nfs4_lock_state *lsp)
4381{
4382 struct nfs_server *server = lsp->ls_state->owner->so_server;
4383 struct nfs_release_lockowner_args *args;
4384 struct rpc_message msg = {
4385 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER],
4386 };
4387
4388 if (server->nfs_client->cl_mvops->minor_version != 0)
4389 return;
4390 args = kmalloc(sizeof(*args), GFP_NOFS);
4391 if (!args)
4392 return;
4393 args->lock_owner.clientid = server->nfs_client->cl_clientid;
4394 args->lock_owner.id = lsp->ls_id.id;
4395 msg.rpc_argp = args;
4396 rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, args);
4397}
4398
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004399#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
4400
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004401int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
4402 size_t buflen, int flags)
4403{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004404 struct inode *inode = dentry->d_inode;
4405
4406 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
4407 return -EOPNOTSUPP;
4408
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004409 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004410}
4411
4412/* The getxattr man page suggests returning -ENODATA for unknown attributes,
4413 * and that's what we'll do for e.g. user attributes that haven't been set.
4414 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
4415 * attributes in kernel-managed attribute namespaces. */
4416ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
4417 size_t buflen)
4418{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004419 struct inode *inode = dentry->d_inode;
4420
4421 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
4422 return -EOPNOTSUPP;
4423
4424 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004425}
4426
4427ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
4428{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004429 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004430
J. Bruce Fields096455a2006-03-20 23:23:42 -05004431 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
4432 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004433 if (buf && buflen < len)
4434 return -ERANGE;
4435 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004436 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
4437 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004438}
4439
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004440static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
4441{
4442 if (!((fattr->valid & NFS_ATTR_FATTR_FILEID) &&
4443 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
4444 (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)))
4445 return;
4446
4447 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
4448 NFS_ATTR_FATTR_NLINK;
4449 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
4450 fattr->nlink = 2;
4451}
4452
Trond Myklebust56659e92007-07-17 21:52:39 -04004453int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04004454 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004455{
4456 struct nfs_server *server = NFS_SERVER(dir);
4457 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04004458 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
4459 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004460 };
4461 struct nfs4_fs_locations_arg args = {
4462 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05004463 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004464 .page = page,
4465 .bitmask = bitmask,
4466 };
Benny Halevy22958462009-04-01 09:22:02 -04004467 struct nfs4_fs_locations_res res = {
4468 .fs_locations = fs_locations,
4469 };
Trond Myklebust683b57b2006-06-09 09:34:22 -04004470 struct rpc_message msg = {
4471 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
4472 .rpc_argp = &args,
Benny Halevy22958462009-04-01 09:22:02 -04004473 .rpc_resp = &res,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004474 };
4475 int status;
4476
Harvey Harrison3110ff82008-05-02 13:42:44 -07004477 dprintk("%s: start\n", __func__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05004478 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004479 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04004480 fs_locations->nlocations = 0;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04004481 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004482 nfs_fixup_referral_attributes(&fs_locations->fattr);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004483 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004484 return status;
4485}
4486
Andy Adamson557134a2009-04-01 09:21:53 -04004487#ifdef CONFIG_NFS_V4_1
Benny Halevy99fe60d2009-04-01 09:22:29 -04004488/*
4489 * nfs4_proc_exchange_id()
4490 *
4491 * Since the clientid has expired, all compounds using sessions
4492 * associated with the stale clientid will be returning
4493 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
4494 * be in some phase of session reset.
4495 */
Andy Adamson4d643d12009-12-04 15:52:24 -05004496int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
Benny Halevy99fe60d2009-04-01 09:22:29 -04004497{
4498 nfs4_verifier verifier;
4499 struct nfs41_exchange_id_args args = {
4500 .client = clp,
4501 .flags = clp->cl_exchange_flags,
4502 };
4503 struct nfs41_exchange_id_res res = {
4504 .client = clp,
4505 };
4506 int status;
4507 struct rpc_message msg = {
4508 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
4509 .rpc_argp = &args,
4510 .rpc_resp = &res,
4511 .rpc_cred = cred,
4512 };
4513 __be32 *p;
4514
4515 dprintk("--> %s\n", __func__);
4516 BUG_ON(clp == NULL);
Andy Adamsona7b72102009-04-01 09:22:46 -04004517
Alexandros Batsakis7b183d02009-12-05 13:33:25 -05004518 /* Remove server-only flags */
4519 args.flags &= ~EXCHGID4_FLAG_CONFIRMED_R;
4520
Benny Halevy99fe60d2009-04-01 09:22:29 -04004521 p = (u32 *)verifier.data;
4522 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
4523 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
4524 args.verifier = &verifier;
4525
4526 while (1) {
4527 args.id_len = scnprintf(args.id, sizeof(args.id),
4528 "%s/%s %u",
4529 clp->cl_ipaddr,
4530 rpc_peeraddr2str(clp->cl_rpcclient,
4531 RPC_DISPLAY_ADDR),
4532 clp->cl_id_uniquifier);
4533
4534 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
4535
Andy Adamson180b62a2010-03-02 13:19:36 -05004536 if (status != -NFS4ERR_CLID_INUSE)
Benny Halevy99fe60d2009-04-01 09:22:29 -04004537 break;
4538
4539 if (signalled())
4540 break;
4541
4542 if (++clp->cl_id_uniquifier == 0)
4543 break;
4544 }
4545
4546 dprintk("<-- %s status= %d\n", __func__, status);
4547 return status;
4548}
4549
Andy Adamson2050f0c2009-04-01 09:22:30 -04004550struct nfs4_get_lease_time_data {
4551 struct nfs4_get_lease_time_args *args;
4552 struct nfs4_get_lease_time_res *res;
4553 struct nfs_client *clp;
4554};
4555
4556static void nfs4_get_lease_time_prepare(struct rpc_task *task,
4557 void *calldata)
4558{
4559 int ret;
4560 struct nfs4_get_lease_time_data *data =
4561 (struct nfs4_get_lease_time_data *)calldata;
4562
4563 dprintk("--> %s\n", __func__);
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -08004564 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004565 /* just setup sequence, do not trigger session recovery
4566 since we're invoked within one */
4567 ret = nfs41_setup_sequence(data->clp->cl_session,
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -08004568 &data->args->la_seq_args,
4569 &data->res->lr_seq_res, 0, task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004570
4571 BUG_ON(ret == -EAGAIN);
4572 rpc_call_start(task);
4573 dprintk("<-- %s\n", __func__);
4574}
4575
4576/*
4577 * Called from nfs4_state_manager thread for session setup, so don't recover
4578 * from sequence operation or clientid errors.
4579 */
4580static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
4581{
4582 struct nfs4_get_lease_time_data *data =
4583 (struct nfs4_get_lease_time_data *)calldata;
4584
4585 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04004586 if (!nfs41_sequence_done(task, &data->res->lr_seq_res))
4587 return;
Andy Adamson2050f0c2009-04-01 09:22:30 -04004588 switch (task->tk_status) {
4589 case -NFS4ERR_DELAY:
4590 case -NFS4ERR_GRACE:
4591 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
4592 rpc_delay(task, NFS4_POLL_RETRY_MIN);
4593 task->tk_status = 0;
Trond Myklebust0110ee12009-12-07 09:00:24 -05004594 nfs_restart_rpc(task, data->clp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004595 return;
4596 }
Andy Adamson2050f0c2009-04-01 09:22:30 -04004597 dprintk("<-- %s\n", __func__);
4598}
4599
4600struct rpc_call_ops nfs4_get_lease_time_ops = {
4601 .rpc_call_prepare = nfs4_get_lease_time_prepare,
4602 .rpc_call_done = nfs4_get_lease_time_done,
4603};
4604
4605int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
4606{
4607 struct rpc_task *task;
4608 struct nfs4_get_lease_time_args args;
4609 struct nfs4_get_lease_time_res res = {
4610 .lr_fsinfo = fsinfo,
4611 };
4612 struct nfs4_get_lease_time_data data = {
4613 .args = &args,
4614 .res = &res,
4615 .clp = clp,
4616 };
4617 struct rpc_message msg = {
4618 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
4619 .rpc_argp = &args,
4620 .rpc_resp = &res,
4621 };
4622 struct rpc_task_setup task_setup = {
4623 .rpc_client = clp->cl_rpcclient,
4624 .rpc_message = &msg,
4625 .callback_ops = &nfs4_get_lease_time_ops,
4626 .callback_data = &data
4627 };
4628 int status;
4629
Andy Adamson2050f0c2009-04-01 09:22:30 -04004630 dprintk("--> %s\n", __func__);
4631 task = rpc_run_task(&task_setup);
4632
4633 if (IS_ERR(task))
4634 status = PTR_ERR(task);
4635 else {
4636 status = task->tk_status;
4637 rpc_put_task(task);
4638 }
4639 dprintk("<-- %s return %d\n", __func__, status);
4640
4641 return status;
4642}
4643
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004644/*
4645 * Reset a slot table
4646 */
Andy Adamson104aeba2010-01-14 17:45:10 -05004647static int nfs4_reset_slot_table(struct nfs4_slot_table *tbl, u32 max_reqs,
4648 int ivalue)
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004649{
Andy Adamson104aeba2010-01-14 17:45:10 -05004650 struct nfs4_slot *new = NULL;
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004651 int i;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004652 int ret = 0;
4653
Andy Adamson104aeba2010-01-14 17:45:10 -05004654 dprintk("--> %s: max_reqs=%u, tbl->max_slots %d\n", __func__,
4655 max_reqs, tbl->max_slots);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004656
Andy Adamson104aeba2010-01-14 17:45:10 -05004657 /* Does the newly negotiated max_reqs match the existing slot table? */
4658 if (max_reqs != tbl->max_slots) {
4659 ret = -ENOMEM;
4660 new = kmalloc(max_reqs * sizeof(struct nfs4_slot),
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004661 GFP_NOFS);
Andy Adamson104aeba2010-01-14 17:45:10 -05004662 if (!new)
4663 goto out;
4664 ret = 0;
4665 kfree(tbl->slots);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004666 }
4667 spin_lock(&tbl->slot_tbl_lock);
Andy Adamson104aeba2010-01-14 17:45:10 -05004668 if (new) {
4669 tbl->slots = new;
4670 tbl->max_slots = max_reqs;
4671 }
4672 for (i = 0; i < tbl->max_slots; ++i)
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004673 tbl->slots[i].seq_nr = ivalue;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004674 spin_unlock(&tbl->slot_tbl_lock);
4675 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4676 tbl, tbl->slots, tbl->max_slots);
4677out:
4678 dprintk("<-- %s: return %d\n", __func__, ret);
4679 return ret;
4680}
4681
Andy Adamsonfc931582009-04-01 09:22:31 -04004682/*
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004683 * Reset the forechannel and backchannel slot tables
4684 */
4685static int nfs4_reset_slot_tables(struct nfs4_session *session)
4686{
4687 int status;
4688
4689 status = nfs4_reset_slot_table(&session->fc_slot_table,
Andy Adamson104aeba2010-01-14 17:45:10 -05004690 session->fc_attrs.max_reqs, 1);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004691 if (status)
4692 return status;
4693
4694 status = nfs4_reset_slot_table(&session->bc_slot_table,
Andy Adamson104aeba2010-01-14 17:45:10 -05004695 session->bc_attrs.max_reqs, 0);
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004696 return status;
4697}
4698
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004699/* Destroy the slot table */
4700static void nfs4_destroy_slot_tables(struct nfs4_session *session)
4701{
4702 if (session->fc_slot_table.slots != NULL) {
4703 kfree(session->fc_slot_table.slots);
4704 session->fc_slot_table.slots = NULL;
4705 }
4706 if (session->bc_slot_table.slots != NULL) {
4707 kfree(session->bc_slot_table.slots);
4708 session->bc_slot_table.slots = NULL;
4709 }
4710 return;
4711}
4712
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004713/*
Andy Adamsonfc931582009-04-01 09:22:31 -04004714 * Initialize slot table
4715 */
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004716static int nfs4_init_slot_table(struct nfs4_slot_table *tbl,
4717 int max_slots, int ivalue)
Andy Adamsonfc931582009-04-01 09:22:31 -04004718{
Andy Adamsonfc931582009-04-01 09:22:31 -04004719 struct nfs4_slot *slot;
4720 int ret = -ENOMEM;
4721
4722 BUG_ON(max_slots > NFS4_MAX_SLOT_TABLE);
4723
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004724 dprintk("--> %s: max_reqs=%u\n", __func__, max_slots);
Andy Adamsonfc931582009-04-01 09:22:31 -04004725
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004726 slot = kcalloc(max_slots, sizeof(struct nfs4_slot), GFP_NOFS);
Andy Adamsonfc931582009-04-01 09:22:31 -04004727 if (!slot)
4728 goto out;
Andy Adamsonfc931582009-04-01 09:22:31 -04004729 ret = 0;
4730
4731 spin_lock(&tbl->slot_tbl_lock);
Andy Adamsonfc931582009-04-01 09:22:31 -04004732 tbl->max_slots = max_slots;
4733 tbl->slots = slot;
4734 tbl->highest_used_slotid = -1; /* no slot is currently used */
4735 spin_unlock(&tbl->slot_tbl_lock);
4736 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4737 tbl, tbl->slots, tbl->max_slots);
4738out:
4739 dprintk("<-- %s: return %d\n", __func__, ret);
4740 return ret;
Andy Adamsonfc931582009-04-01 09:22:31 -04004741}
4742
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004743/*
4744 * Initialize the forechannel and backchannel tables
4745 */
4746static int nfs4_init_slot_tables(struct nfs4_session *session)
4747{
Trond Myklebustf26468f2009-12-05 19:32:11 -05004748 struct nfs4_slot_table *tbl;
4749 int status = 0;
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004750
Trond Myklebustf26468f2009-12-05 19:32:11 -05004751 tbl = &session->fc_slot_table;
4752 if (tbl->slots == NULL) {
4753 status = nfs4_init_slot_table(tbl,
4754 session->fc_attrs.max_reqs, 1);
4755 if (status)
4756 return status;
4757 }
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004758
Trond Myklebustf26468f2009-12-05 19:32:11 -05004759 tbl = &session->bc_slot_table;
4760 if (tbl->slots == NULL) {
4761 status = nfs4_init_slot_table(tbl,
4762 session->bc_attrs.max_reqs, 0);
4763 if (status)
4764 nfs4_destroy_slot_tables(session);
4765 }
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004766
4767 return status;
Andy Adamson557134a2009-04-01 09:21:53 -04004768}
4769
4770struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp)
4771{
4772 struct nfs4_session *session;
4773 struct nfs4_slot_table *tbl;
4774
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004775 session = kzalloc(sizeof(struct nfs4_session), GFP_NOFS);
Andy Adamson557134a2009-04-01 09:21:53 -04004776 if (!session)
4777 return NULL;
Andy Adamson76db6d92009-04-01 09:22:38 -04004778
Andy Adamsonea028ac2009-12-04 15:55:38 -05004779 init_completion(&session->complete);
Andy Adamson76db6d92009-04-01 09:22:38 -04004780
Andy Adamson557134a2009-04-01 09:21:53 -04004781 tbl = &session->fc_slot_table;
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -05004782 tbl->highest_used_slotid = -1;
Andy Adamson557134a2009-04-01 09:21:53 -04004783 spin_lock_init(&tbl->slot_tbl_lock);
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -08004784 rpc_init_priority_wait_queue(&tbl->slot_tbl_waitq, "ForeChannel Slot table");
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004785
4786 tbl = &session->bc_slot_table;
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -05004787 tbl->highest_used_slotid = -1;
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004788 spin_lock_init(&tbl->slot_tbl_lock);
4789 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "BackChannel Slot table");
4790
Trond Myklebust1055d762010-06-16 09:52:27 -04004791 session->session_state = 1<<NFS4_SESSION_INITING;
4792
Andy Adamson557134a2009-04-01 09:21:53 -04004793 session->clp = clp;
4794 return session;
4795}
4796
4797void nfs4_destroy_session(struct nfs4_session *session)
4798{
Andy Adamson5a0ffe52009-04-01 09:23:18 -04004799 nfs4_proc_destroy_session(session);
4800 dprintk("%s Destroy backchannel for xprt %p\n",
4801 __func__, session->clp->cl_rpcclient->cl_xprt);
4802 xprt_destroy_backchannel(session->clp->cl_rpcclient->cl_xprt,
4803 NFS41_BC_MIN_CALLBACKS);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004804 nfs4_destroy_slot_tables(session);
Andy Adamson557134a2009-04-01 09:21:53 -04004805 kfree(session);
4806}
4807
Andy Adamsonfc931582009-04-01 09:22:31 -04004808/*
4809 * Initialize the values to be used by the client in CREATE_SESSION
4810 * If nfs4_init_session set the fore channel request and response sizes,
4811 * use them.
4812 *
4813 * Set the back channel max_resp_sz_cached to zero to force the client to
4814 * always set csa_cachethis to FALSE because the current implementation
4815 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
4816 */
4817static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args)
4818{
4819 struct nfs4_session *session = args->client->cl_session;
4820 unsigned int mxrqst_sz = session->fc_attrs.max_rqst_sz,
4821 mxresp_sz = session->fc_attrs.max_resp_sz;
4822
4823 if (mxrqst_sz == 0)
4824 mxrqst_sz = NFS_MAX_FILE_IO_SIZE;
4825 if (mxresp_sz == 0)
4826 mxresp_sz = NFS_MAX_FILE_IO_SIZE;
4827 /* Fore channel attributes */
4828 args->fc_attrs.headerpadsz = 0;
4829 args->fc_attrs.max_rqst_sz = mxrqst_sz;
4830 args->fc_attrs.max_resp_sz = mxresp_sz;
Andy Adamsonfc931582009-04-01 09:22:31 -04004831 args->fc_attrs.max_ops = NFS4_MAX_OPS;
4832 args->fc_attrs.max_reqs = session->clp->cl_rpcclient->cl_xprt->max_reqs;
4833
4834 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
Mike Sager8e0d46e2009-12-17 12:06:26 -05004835 "max_ops=%u max_reqs=%u\n",
Andy Adamsonfc931582009-04-01 09:22:31 -04004836 __func__,
4837 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
Mike Sager8e0d46e2009-12-17 12:06:26 -05004838 args->fc_attrs.max_ops, args->fc_attrs.max_reqs);
Andy Adamsonfc931582009-04-01 09:22:31 -04004839
4840 /* Back channel attributes */
4841 args->bc_attrs.headerpadsz = 0;
4842 args->bc_attrs.max_rqst_sz = PAGE_SIZE;
4843 args->bc_attrs.max_resp_sz = PAGE_SIZE;
4844 args->bc_attrs.max_resp_sz_cached = 0;
4845 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
4846 args->bc_attrs.max_reqs = 1;
4847
4848 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
4849 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4850 __func__,
4851 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
4852 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
4853 args->bc_attrs.max_reqs);
4854}
4855
J. Bruce Fields43c2e882010-10-02 15:19:01 -04004856static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args, struct nfs4_session *session)
Andy Adamson8d353012009-04-01 09:22:32 -04004857{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04004858 struct nfs4_channel_attrs *sent = &args->fc_attrs;
4859 struct nfs4_channel_attrs *rcvd = &session->fc_attrs;
4860
4861 if (rcvd->headerpadsz > sent->headerpadsz)
4862 return -EINVAL;
4863 if (rcvd->max_resp_sz > sent->max_resp_sz)
4864 return -EINVAL;
4865 /*
4866 * Our requested max_ops is the minimum we need; we're not
4867 * prepared to break up compounds into smaller pieces than that.
4868 * So, no point even trying to continue if the server won't
4869 * cooperate:
4870 */
4871 if (rcvd->max_ops < sent->max_ops)
4872 return -EINVAL;
4873 if (rcvd->max_reqs == 0)
4874 return -EINVAL;
4875 return 0;
Andy Adamson8d353012009-04-01 09:22:32 -04004876}
4877
J. Bruce Fields43c2e882010-10-02 15:19:01 -04004878static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args, struct nfs4_session *session)
4879{
4880 struct nfs4_channel_attrs *sent = &args->bc_attrs;
4881 struct nfs4_channel_attrs *rcvd = &session->bc_attrs;
Andy Adamson8d353012009-04-01 09:22:32 -04004882
J. Bruce Fields43c2e882010-10-02 15:19:01 -04004883 if (rcvd->max_rqst_sz > sent->max_rqst_sz)
4884 return -EINVAL;
4885 if (rcvd->max_resp_sz < sent->max_resp_sz)
4886 return -EINVAL;
4887 if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached)
4888 return -EINVAL;
4889 /* These would render the backchannel useless: */
4890 if (rcvd->max_ops == 0)
4891 return -EINVAL;
4892 if (rcvd->max_reqs == 0)
4893 return -EINVAL;
4894 return 0;
4895}
Andy Adamson8d353012009-04-01 09:22:32 -04004896
Andy Adamson8d353012009-04-01 09:22:32 -04004897static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
4898 struct nfs4_session *session)
4899{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04004900 int ret;
Andy Adamson8d353012009-04-01 09:22:32 -04004901
J. Bruce Fields43c2e882010-10-02 15:19:01 -04004902 ret = nfs4_verify_fore_channel_attrs(args, session);
4903 if (ret)
4904 return ret;
4905 return nfs4_verify_back_channel_attrs(args, session);
Andy Adamson8d353012009-04-01 09:22:32 -04004906}
4907
Andy Adamsonfc931582009-04-01 09:22:31 -04004908static int _nfs4_proc_create_session(struct nfs_client *clp)
4909{
4910 struct nfs4_session *session = clp->cl_session;
4911 struct nfs41_create_session_args args = {
4912 .client = clp,
4913 .cb_program = NFS4_CALLBACK,
4914 };
4915 struct nfs41_create_session_res res = {
4916 .client = clp,
4917 };
4918 struct rpc_message msg = {
4919 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
4920 .rpc_argp = &args,
4921 .rpc_resp = &res,
4922 };
4923 int status;
4924
4925 nfs4_init_channel_attrs(&args);
Andy Adamson0f914212009-04-01 09:23:16 -04004926 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
Andy Adamsonfc931582009-04-01 09:22:31 -04004927
4928 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
4929
Andy Adamson8d353012009-04-01 09:22:32 -04004930 if (!status)
4931 /* Verify the session's negotiated channel_attrs values */
4932 status = nfs4_verify_channel_attrs(&args, session);
Andy Adamsonfc931582009-04-01 09:22:31 -04004933 if (!status) {
4934 /* Increment the clientid slot sequence id */
4935 clp->cl_seqid++;
4936 }
4937
4938 return status;
4939}
4940
4941/*
4942 * Issues a CREATE_SESSION operation to the server.
4943 * It is the responsibility of the caller to verify the session is
4944 * expired before calling this routine.
4945 */
Trond Myklebustf26468f2009-12-05 19:32:11 -05004946int nfs4_proc_create_session(struct nfs_client *clp)
Andy Adamsonfc931582009-04-01 09:22:31 -04004947{
4948 int status;
4949 unsigned *ptr;
Andy Adamsonfc931582009-04-01 09:22:31 -04004950 struct nfs4_session *session = clp->cl_session;
4951
4952 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
4953
4954 status = _nfs4_proc_create_session(clp);
4955 if (status)
4956 goto out;
4957
Trond Myklebustf26468f2009-12-05 19:32:11 -05004958 /* Init and reset the fore channel */
4959 status = nfs4_init_slot_tables(session);
4960 dprintk("slot table initialization returned %d\n", status);
4961 if (status)
4962 goto out;
4963 status = nfs4_reset_slot_tables(session);
4964 dprintk("slot table reset returned %d\n", status);
Andy Adamsonfc931582009-04-01 09:22:31 -04004965 if (status)
4966 goto out;
4967
4968 ptr = (unsigned *)&session->sess_id.data[0];
4969 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
4970 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
Andy Adamsonfc931582009-04-01 09:22:31 -04004971out:
4972 dprintk("<-- %s\n", __func__);
4973 return status;
4974}
4975
Andy Adamson0f3e66c2009-04-01 09:22:34 -04004976/*
4977 * Issue the over-the-wire RPC DESTROY_SESSION.
4978 * The caller must serialize access to this routine.
4979 */
4980int nfs4_proc_destroy_session(struct nfs4_session *session)
4981{
4982 int status = 0;
4983 struct rpc_message msg;
4984
4985 dprintk("--> nfs4_proc_destroy_session\n");
4986
4987 /* session is still being setup */
4988 if (session->clp->cl_cons_state != NFS_CS_READY)
4989 return status;
4990
4991 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION];
4992 msg.rpc_argp = session;
4993 msg.rpc_resp = NULL;
4994 msg.rpc_cred = NULL;
4995 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
4996
4997 if (status)
4998 printk(KERN_WARNING
4999 "Got error %d from the server on DESTROY_SESSION. "
5000 "Session has been destroyed regardless...\n", status);
5001
5002 dprintk("<-- nfs4_proc_destroy_session\n");
5003 return status;
5004}
5005
Trond Myklebustfccba802009-07-21 16:48:07 -04005006int nfs4_init_session(struct nfs_server *server)
5007{
5008 struct nfs_client *clp = server->nfs_client;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05005009 struct nfs4_session *session;
Andy Adamson68bf05e2009-12-15 12:55:02 -05005010 unsigned int rsize, wsize;
Trond Myklebustfccba802009-07-21 16:48:07 -04005011 int ret;
5012
5013 if (!nfs4_has_session(clp))
5014 return 0;
5015
Trond Myklebust1055d762010-06-16 09:52:27 -04005016 session = clp->cl_session;
5017 if (!test_and_clear_bit(NFS4_SESSION_INITING, &session->session_state))
5018 return 0;
5019
Andy Adamson68bf05e2009-12-15 12:55:02 -05005020 rsize = server->rsize;
5021 if (rsize == 0)
5022 rsize = NFS_MAX_FILE_IO_SIZE;
5023 wsize = server->wsize;
5024 if (wsize == 0)
5025 wsize = NFS_MAX_FILE_IO_SIZE;
5026
Andy Adamson68bf05e2009-12-15 12:55:02 -05005027 session->fc_attrs.max_rqst_sz = wsize + nfs41_maxwrite_overhead;
5028 session->fc_attrs.max_resp_sz = rsize + nfs41_maxread_overhead;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05005029
Trond Myklebustfccba802009-07-21 16:48:07 -04005030 ret = nfs4_recover_expired_lease(server);
5031 if (!ret)
5032 ret = nfs4_check_client_ready(clp);
5033 return ret;
5034}
5035
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005036/*
5037 * Renew the cl_session lease.
5038 */
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005039struct nfs4_sequence_data {
5040 struct nfs_client *clp;
5041 struct nfs4_sequence_args args;
5042 struct nfs4_sequence_res res;
5043};
5044
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005045static void nfs41_sequence_release(void *data)
5046{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005047 struct nfs4_sequence_data *calldata = data;
5048 struct nfs_client *clp = calldata->clp;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005049
Alexandros Batsakis71358402010-02-05 03:45:05 -08005050 if (atomic_read(&clp->cl_count) > 1)
5051 nfs4_schedule_state_renewal(clp);
5052 nfs_put_client(clp);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005053 kfree(calldata);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005054}
5055
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005056static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp)
5057{
5058 switch(task->tk_status) {
5059 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005060 rpc_delay(task, NFS4_POLL_RETRY_MAX);
5061 return -EAGAIN;
5062 default:
5063 nfs4_schedule_state_recovery(clp);
5064 }
5065 return 0;
5066}
5067
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005068static void nfs41_sequence_call_done(struct rpc_task *task, void *data)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005069{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005070 struct nfs4_sequence_data *calldata = data;
5071 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005072
Trond Myklebust14516c32010-07-31 14:29:06 -04005073 if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp))
5074 return;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005075
5076 if (task->tk_status < 0) {
5077 dprintk("%s ERROR %d\n", __func__, task->tk_status);
Alexandros Batsakis71358402010-02-05 03:45:05 -08005078 if (atomic_read(&clp->cl_count) == 1)
5079 goto out;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005080
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005081 if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) {
5082 rpc_restart_call_prepare(task);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005083 return;
5084 }
5085 }
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005086 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
Alexandros Batsakis71358402010-02-05 03:45:05 -08005087out:
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005088 dprintk("<-- %s\n", __func__);
5089}
5090
5091static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
5092{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005093 struct nfs4_sequence_data *calldata = data;
5094 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005095 struct nfs4_sequence_args *args;
5096 struct nfs4_sequence_res *res;
5097
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005098 args = task->tk_msg.rpc_argp;
5099 res = task->tk_msg.rpc_resp;
5100
Trond Myklebust035168a2010-06-16 09:52:26 -04005101 if (nfs41_setup_sequence(clp->cl_session, args, res, 0, task))
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005102 return;
5103 rpc_call_start(task);
5104}
5105
5106static const struct rpc_call_ops nfs41_sequence_ops = {
5107 .rpc_call_done = nfs41_sequence_call_done,
5108 .rpc_call_prepare = nfs41_sequence_prepare,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005109 .rpc_release = nfs41_sequence_release,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005110};
5111
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005112static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005113{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005114 struct nfs4_sequence_data *calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005115 struct rpc_message msg = {
5116 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
5117 .rpc_cred = cred,
5118 };
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005119 struct rpc_task_setup task_setup_data = {
5120 .rpc_client = clp->cl_rpcclient,
5121 .rpc_message = &msg,
5122 .callback_ops = &nfs41_sequence_ops,
5123 .flags = RPC_TASK_ASYNC | RPC_TASK_SOFT,
5124 };
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005125
Alexandros Batsakis71358402010-02-05 03:45:05 -08005126 if (!atomic_inc_not_zero(&clp->cl_count))
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005127 return ERR_PTR(-EIO);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005128 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005129 if (calldata == NULL) {
Alexandros Batsakis71358402010-02-05 03:45:05 -08005130 nfs_put_client(clp);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005131 return ERR_PTR(-ENOMEM);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005132 }
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005133 msg.rpc_argp = &calldata->args;
5134 msg.rpc_resp = &calldata->res;
5135 calldata->clp = clp;
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005136 task_setup_data.callback_data = calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005137
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005138 return rpc_run_task(&task_setup_data);
5139}
5140
5141static int nfs41_proc_async_sequence(struct nfs_client *clp, struct rpc_cred *cred)
5142{
5143 struct rpc_task *task;
5144 int ret = 0;
5145
5146 task = _nfs41_proc_sequence(clp, cred);
5147 if (IS_ERR(task))
5148 ret = PTR_ERR(task);
5149 else
5150 rpc_put_task(task);
5151 dprintk("<-- %s status=%d\n", __func__, ret);
5152 return ret;
5153}
5154
5155static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
5156{
5157 struct rpc_task *task;
5158 int ret;
5159
5160 task = _nfs41_proc_sequence(clp, cred);
5161 if (IS_ERR(task)) {
5162 ret = PTR_ERR(task);
5163 goto out;
5164 }
5165 ret = rpc_wait_for_completion_task(task);
5166 if (!ret)
5167 ret = task->tk_status;
5168 rpc_put_task(task);
5169out:
5170 dprintk("<-- %s status=%d\n", __func__, ret);
5171 return ret;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005172}
5173
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005174struct nfs4_reclaim_complete_data {
5175 struct nfs_client *clp;
5176 struct nfs41_reclaim_complete_args arg;
5177 struct nfs41_reclaim_complete_res res;
5178};
5179
5180static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
5181{
5182 struct nfs4_reclaim_complete_data *calldata = data;
5183
Alexandros Batsakisb2579572009-12-14 21:27:57 -08005184 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
Trond Myklebust035168a2010-06-16 09:52:26 -04005185 if (nfs41_setup_sequence(calldata->clp->cl_session,
5186 &calldata->arg.seq_args,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005187 &calldata->res.seq_res, 0, task))
5188 return;
5189
5190 rpc_call_start(task);
5191}
5192
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005193static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp)
5194{
5195 switch(task->tk_status) {
5196 case 0:
5197 case -NFS4ERR_COMPLETE_ALREADY:
5198 case -NFS4ERR_WRONG_CRED: /* What to do here? */
5199 break;
5200 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005201 rpc_delay(task, NFS4_POLL_RETRY_MAX);
5202 return -EAGAIN;
5203 default:
5204 nfs4_schedule_state_recovery(clp);
5205 }
5206 return 0;
5207}
5208
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005209static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
5210{
5211 struct nfs4_reclaim_complete_data *calldata = data;
5212 struct nfs_client *clp = calldata->clp;
5213 struct nfs4_sequence_res *res = &calldata->res.seq_res;
5214
5215 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04005216 if (!nfs41_sequence_done(task, res))
5217 return;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005218
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005219 if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) {
5220 rpc_restart_call_prepare(task);
5221 return;
5222 }
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005223 dprintk("<-- %s\n", __func__);
5224}
5225
5226static void nfs4_free_reclaim_complete_data(void *data)
5227{
5228 struct nfs4_reclaim_complete_data *calldata = data;
5229
5230 kfree(calldata);
5231}
5232
5233static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
5234 .rpc_call_prepare = nfs4_reclaim_complete_prepare,
5235 .rpc_call_done = nfs4_reclaim_complete_done,
5236 .rpc_release = nfs4_free_reclaim_complete_data,
5237};
5238
5239/*
5240 * Issue a global reclaim complete.
5241 */
5242static int nfs41_proc_reclaim_complete(struct nfs_client *clp)
5243{
5244 struct nfs4_reclaim_complete_data *calldata;
5245 struct rpc_task *task;
5246 struct rpc_message msg = {
5247 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
5248 };
5249 struct rpc_task_setup task_setup_data = {
5250 .rpc_client = clp->cl_rpcclient,
5251 .rpc_message = &msg,
5252 .callback_ops = &nfs4_reclaim_complete_call_ops,
5253 .flags = RPC_TASK_ASYNC,
5254 };
5255 int status = -ENOMEM;
5256
5257 dprintk("--> %s\n", __func__);
Trond Myklebust8535b2b2010-05-13 12:51:01 -04005258 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005259 if (calldata == NULL)
5260 goto out;
5261 calldata->clp = clp;
5262 calldata->arg.one_fs = 0;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005263
5264 msg.rpc_argp = &calldata->arg;
5265 msg.rpc_resp = &calldata->res;
5266 task_setup_data.callback_data = calldata;
5267 task = rpc_run_task(&task_setup_data);
Dan Carpenteracf82b82010-04-22 11:28:39 +02005268 if (IS_ERR(task)) {
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005269 status = PTR_ERR(task);
Dan Carpenteracf82b82010-04-22 11:28:39 +02005270 goto out;
5271 }
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005272 rpc_put_task(task);
Dan Carpenteracf82b82010-04-22 11:28:39 +02005273 return 0;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005274out:
5275 dprintk("<-- %s status=%d\n", __func__, status);
5276 return status;
5277}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005278
5279static void
5280nfs4_layoutget_prepare(struct rpc_task *task, void *calldata)
5281{
5282 struct nfs4_layoutget *lgp = calldata;
5283 struct inode *ino = lgp->args.inode;
5284 struct nfs_server *server = NFS_SERVER(ino);
5285
5286 dprintk("--> %s\n", __func__);
5287 if (nfs4_setup_sequence(server, &lgp->args.seq_args,
5288 &lgp->res.seq_res, 0, task))
5289 return;
5290 rpc_call_start(task);
5291}
5292
5293static void nfs4_layoutget_done(struct rpc_task *task, void *calldata)
5294{
5295 struct nfs4_layoutget *lgp = calldata;
5296 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
5297
5298 dprintk("--> %s\n", __func__);
5299
5300 if (!nfs4_sequence_done(task, &lgp->res.seq_res))
5301 return;
5302
5303 switch (task->tk_status) {
5304 case 0:
5305 break;
5306 case -NFS4ERR_LAYOUTTRYLATER:
5307 case -NFS4ERR_RECALLCONFLICT:
5308 task->tk_status = -NFS4ERR_DELAY;
5309 /* Fall through */
5310 default:
5311 if (nfs4_async_handle_error(task, server, NULL) == -EAGAIN) {
5312 rpc_restart_call_prepare(task);
5313 return;
5314 }
5315 }
5316 lgp->status = task->tk_status;
5317 dprintk("<-- %s\n", __func__);
5318}
5319
5320static void nfs4_layoutget_release(void *calldata)
5321{
5322 struct nfs4_layoutget *lgp = calldata;
5323
5324 dprintk("--> %s\n", __func__);
5325 put_layout_hdr(lgp->args.inode);
5326 if (lgp->res.layout.buf != NULL)
5327 free_page((unsigned long) lgp->res.layout.buf);
5328 put_nfs_open_context(lgp->args.ctx);
5329 kfree(calldata);
5330 dprintk("<-- %s\n", __func__);
5331}
5332
5333static const struct rpc_call_ops nfs4_layoutget_call_ops = {
5334 .rpc_call_prepare = nfs4_layoutget_prepare,
5335 .rpc_call_done = nfs4_layoutget_done,
5336 .rpc_release = nfs4_layoutget_release,
5337};
5338
5339int nfs4_proc_layoutget(struct nfs4_layoutget *lgp)
5340{
5341 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
5342 struct rpc_task *task;
5343 struct rpc_message msg = {
5344 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET],
5345 .rpc_argp = &lgp->args,
5346 .rpc_resp = &lgp->res,
5347 };
5348 struct rpc_task_setup task_setup_data = {
5349 .rpc_client = server->client,
5350 .rpc_message = &msg,
5351 .callback_ops = &nfs4_layoutget_call_ops,
5352 .callback_data = lgp,
5353 .flags = RPC_TASK_ASYNC,
5354 };
5355 int status = 0;
5356
5357 dprintk("--> %s\n", __func__);
5358
5359 lgp->res.layout.buf = (void *)__get_free_page(GFP_NOFS);
5360 if (lgp->res.layout.buf == NULL) {
5361 nfs4_layoutget_release(lgp);
5362 return -ENOMEM;
5363 }
5364
5365 lgp->res.seq_res.sr_slot = NULL;
5366 task = rpc_run_task(&task_setup_data);
5367 if (IS_ERR(task))
5368 return PTR_ERR(task);
5369 status = nfs4_wait_for_completion_rpc_task(task);
5370 if (status != 0)
5371 goto out;
5372 status = lgp->status;
5373 if (status != 0)
5374 goto out;
5375 status = pnfs_layout_process(lgp);
5376out:
5377 rpc_put_task(task);
5378 dprintk("<-- %s status=%d\n", __func__, status);
5379 return status;
5380}
5381
5382static int
5383_nfs4_proc_getdeviceinfo(struct nfs_server *server, struct pnfs_device *pdev)
5384{
5385 struct nfs4_getdeviceinfo_args args = {
5386 .pdev = pdev,
5387 };
5388 struct nfs4_getdeviceinfo_res res = {
5389 .pdev = pdev,
5390 };
5391 struct rpc_message msg = {
5392 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO],
5393 .rpc_argp = &args,
5394 .rpc_resp = &res,
5395 };
5396 int status;
5397
5398 dprintk("--> %s\n", __func__);
5399 status = nfs4_call_sync(server, &msg, &args, &res, 0);
5400 dprintk("<-- %s status=%d\n", __func__, status);
5401
5402 return status;
5403}
5404
5405int nfs4_proc_getdeviceinfo(struct nfs_server *server, struct pnfs_device *pdev)
5406{
5407 struct nfs4_exception exception = { };
5408 int err;
5409
5410 do {
5411 err = nfs4_handle_exception(server,
5412 _nfs4_proc_getdeviceinfo(server, pdev),
5413 &exception);
5414 } while (exception.retry);
5415 return err;
5416}
5417EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo);
5418
Andy Adamson557134a2009-04-01 09:21:53 -04005419#endif /* CONFIG_NFS_V4_1 */
5420
Andy Adamson591d71c2009-04-01 09:22:47 -04005421struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05005422 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05005423 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424 .recover_open = nfs4_open_reclaim,
5425 .recover_lock = nfs4_lock_reclaim,
Andy Adamson591d71c2009-04-01 09:22:47 -04005426 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04005427 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428};
5429
Andy Adamson591d71c2009-04-01 09:22:47 -04005430#if defined(CONFIG_NFS_V4_1)
5431struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
5432 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
5433 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
5434 .recover_open = nfs4_open_reclaim,
5435 .recover_lock = nfs4_lock_reclaim,
Andy Adamson4d643d12009-12-04 15:52:24 -05005436 .establish_clid = nfs41_init_clientid,
Andy Adamsonb4b82602009-04-01 09:22:49 -04005437 .get_clid_cred = nfs4_get_exchange_id_cred,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005438 .reclaim_complete = nfs41_proc_reclaim_complete,
Andy Adamson591d71c2009-04-01 09:22:47 -04005439};
5440#endif /* CONFIG_NFS_V4_1 */
5441
5442struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05005443 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05005444 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445 .recover_open = nfs4_open_expired,
5446 .recover_lock = nfs4_lock_expired,
Andy Adamson591d71c2009-04-01 09:22:47 -04005447 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04005448 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449};
5450
Andy Adamson591d71c2009-04-01 09:22:47 -04005451#if defined(CONFIG_NFS_V4_1)
5452struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
5453 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
5454 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
5455 .recover_open = nfs4_open_expired,
5456 .recover_lock = nfs4_lock_expired,
Andy Adamson4d643d12009-12-04 15:52:24 -05005457 .establish_clid = nfs41_init_clientid,
Andy Adamsonb4b82602009-04-01 09:22:49 -04005458 .get_clid_cred = nfs4_get_exchange_id_cred,
Andy Adamson591d71c2009-04-01 09:22:47 -04005459};
5460#endif /* CONFIG_NFS_V4_1 */
5461
Benny Halevy29fba382009-04-01 09:22:44 -04005462struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
5463 .sched_state_renewal = nfs4_proc_async_renew,
Andy Adamsona7b72102009-04-01 09:22:46 -04005464 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04005465 .renew_lease = nfs4_proc_renew,
Benny Halevy29fba382009-04-01 09:22:44 -04005466};
5467
5468#if defined(CONFIG_NFS_V4_1)
5469struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
5470 .sched_state_renewal = nfs41_proc_async_sequence,
Andy Adamsona7b72102009-04-01 09:22:46 -04005471 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04005472 .renew_lease = nfs4_proc_sequence,
Benny Halevy29fba382009-04-01 09:22:44 -04005473};
5474#endif
5475
Trond Myklebust97dc1352010-06-16 09:52:26 -04005476static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
5477 .minor_version = 0,
5478 .call_sync = _nfs4_call_sync,
Trond Myklebuste047a102010-06-16 09:52:27 -04005479 .validate_stateid = nfs4_validate_delegation_stateid,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04005480 .reboot_recovery_ops = &nfs40_reboot_recovery_ops,
5481 .nograce_recovery_ops = &nfs40_nograce_recovery_ops,
5482 .state_renewal_ops = &nfs40_state_renewal_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04005483};
5484
5485#if defined(CONFIG_NFS_V4_1)
5486static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
5487 .minor_version = 1,
5488 .call_sync = _nfs4_call_sync_session,
Trond Myklebuste047a102010-06-16 09:52:27 -04005489 .validate_stateid = nfs41_validate_delegation_stateid,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04005490 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
5491 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
5492 .state_renewal_ops = &nfs41_state_renewal_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04005493};
5494#endif
5495
Trond Myklebust97dc1352010-06-16 09:52:26 -04005496const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = {
5497 [0] = &nfs_v4_0_minor_ops,
5498#if defined(CONFIG_NFS_V4_1)
5499 [1] = &nfs_v4_1_minor_ops,
5500#endif
5501};
5502
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08005503static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005504 .permission = nfs_permission,
5505 .getattr = nfs_getattr,
5506 .setattr = nfs_setattr,
5507 .getxattr = nfs4_getxattr,
5508 .setxattr = nfs4_setxattr,
5509 .listxattr = nfs4_listxattr,
5510};
5511
David Howells509de812006-08-22 20:06:11 -04005512const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 .version = 4, /* protocol version */
5514 .dentry_ops = &nfs4_dentry_operations,
5515 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005516 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517 .getroot = nfs4_proc_get_root,
5518 .getattr = nfs4_proc_getattr,
5519 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04005520 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521 .lookup = nfs4_proc_lookup,
5522 .access = nfs4_proc_access,
5523 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524 .create = nfs4_proc_create,
5525 .remove = nfs4_proc_remove,
5526 .unlink_setup = nfs4_proc_unlink_setup,
5527 .unlink_done = nfs4_proc_unlink_done,
5528 .rename = nfs4_proc_rename,
Jeff Laytond3d41522010-09-17 17:31:57 -04005529 .rename_setup = nfs4_proc_rename_setup,
5530 .rename_done = nfs4_proc_rename_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531 .link = nfs4_proc_link,
5532 .symlink = nfs4_proc_symlink,
5533 .mkdir = nfs4_proc_mkdir,
5534 .rmdir = nfs4_proc_remove,
5535 .readdir = nfs4_proc_readdir,
5536 .mknod = nfs4_proc_mknod,
5537 .statfs = nfs4_proc_statfs,
5538 .fsinfo = nfs4_proc_fsinfo,
5539 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04005540 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541 .decode_dirent = nfs4_decode_dirent,
5542 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05005543 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005545 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005547 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005549 .clear_acl_cache = nfs4_zap_acl_attr,
Trond Myklebust7fe5c392009-03-19 15:35:50 -04005550 .close_context = nfs4_close_context,
Trond Myklebust2b484292010-09-17 10:56:51 -04005551 .open_context = nfs4_atomic_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552};
5553
5554/*
5555 * Local variables:
5556 * c-basic-offset: 8
5557 * End:
5558 */