blob: 9f5f11ecfd93853ac3e18fe5b19a95f4b24d8645 [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>
42#include <linux/sunrpc/clnt.h>
43#include <linux/nfs.h>
44#include <linux/nfs4.h>
45#include <linux/nfs_fs.h>
46#include <linux/nfs_page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/namei.h>
Trond Myklebust02a913a2005-10-18 14:20:17 -070048#include <linux/mount.h>
Benny Halevy99fe60d2009-04-01 09:22:29 -040049#include <linux/module.h>
Andy Adamson5a0ffe52009-04-01 09:23:18 -040050#include <linux/sunrpc/bc_xprt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Trond Myklebust4ce79712005-06-22 17:16:21 +000052#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include "delegation.h"
Trond Myklebust101070c2008-02-19 20:04:23 -050054#include "internal.h"
Chuck Lever006ea732006-03-20 13:44:14 -050055#include "iostat.h"
Andy Adamsonfc931582009-04-01 09:22:31 -040056#include "callback.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#define NFSDBG_FACILITY NFSDBG_PROC
59
Trond Myklebust2066fe82006-09-15 08:30:46 -040060#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define NFS4_POLL_RETRY_MAX (15*HZ)
62
Trond Myklebusta78cb572009-08-09 15:06:19 -040063#define NFS4_MAX_LOOP_ON_RECOVER (10)
64
Trond Myklebustcdd4e682006-01-03 09:55:12 +010065struct nfs4_opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +010066static int _nfs4_proc_open(struct nfs4_opendata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
Trond Myklebust9e33bed2008-12-23 15:21:46 -050068static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *, struct nfs4_state *);
Trond Myklebust99367812007-07-17 21:52:41 -040069static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
70static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* Prevent leaks of NFSv4 errors into userland */
WANG Cong46f72f52008-12-30 16:35:55 -050073static int nfs4_map_errors(int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Trond Myklebust52567b02009-10-23 14:46:42 -040075 if (err >= -1000)
76 return err;
77 switch (err) {
78 case -NFS4ERR_RESOURCE:
79 return -EREMOTEIO;
80 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 dprintk("%s could not handle NFSv4 error %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -070082 __func__, -err);
Trond Myklebust52567b02009-10-23 14:46:42 -040083 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 }
Trond Myklebust52567b02009-10-23 14:46:42 -040085 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
88/*
89 * This is our standard bitmap for GETATTR requests.
90 */
91const u32 nfs4_fattr_bitmap[2] = {
92 FATTR4_WORD0_TYPE
93 | FATTR4_WORD0_CHANGE
94 | FATTR4_WORD0_SIZE
95 | FATTR4_WORD0_FSID
96 | FATTR4_WORD0_FILEID,
97 FATTR4_WORD1_MODE
98 | FATTR4_WORD1_NUMLINKS
99 | FATTR4_WORD1_OWNER
100 | FATTR4_WORD1_OWNER_GROUP
101 | FATTR4_WORD1_RAWDEV
102 | FATTR4_WORD1_SPACE_USED
103 | FATTR4_WORD1_TIME_ACCESS
104 | FATTR4_WORD1_TIME_METADATA
105 | FATTR4_WORD1_TIME_MODIFY
106};
107
108const u32 nfs4_statfs_bitmap[2] = {
109 FATTR4_WORD0_FILES_AVAIL
110 | FATTR4_WORD0_FILES_FREE
111 | FATTR4_WORD0_FILES_TOTAL,
112 FATTR4_WORD1_SPACE_AVAIL
113 | FATTR4_WORD1_SPACE_FREE
114 | FATTR4_WORD1_SPACE_TOTAL
115};
116
Trond Myklebust4ce79712005-06-22 17:16:21 +0000117const u32 nfs4_pathconf_bitmap[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 FATTR4_WORD0_MAXLINK
119 | FATTR4_WORD0_MAXNAME,
120 0
121};
122
123const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
124 | FATTR4_WORD0_MAXREAD
125 | FATTR4_WORD0_MAXWRITE
126 | FATTR4_WORD0_LEASE_TIME,
127 0
128};
129
Manoj Naik830b8e32006-06-09 09:34:25 -0400130const u32 nfs4_fs_locations_bitmap[2] = {
131 FATTR4_WORD0_TYPE
132 | FATTR4_WORD0_CHANGE
133 | FATTR4_WORD0_SIZE
134 | FATTR4_WORD0_FSID
135 | FATTR4_WORD0_FILEID
136 | FATTR4_WORD0_FS_LOCATIONS,
137 FATTR4_WORD1_MODE
138 | FATTR4_WORD1_NUMLINKS
139 | FATTR4_WORD1_OWNER
140 | FATTR4_WORD1_OWNER_GROUP
141 | FATTR4_WORD1_RAWDEV
142 | FATTR4_WORD1_SPACE_USED
143 | FATTR4_WORD1_TIME_ACCESS
144 | FATTR4_WORD1_TIME_METADATA
145 | FATTR4_WORD1_TIME_MODIFY
146 | FATTR4_WORD1_MOUNTED_ON_FILEID
147};
148
Al Virobc4785c2006-10-19 23:28:51 -0700149static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 struct nfs4_readdir_arg *readdir)
151{
Al Viro0dbb4c62006-10-19 23:28:49 -0700152 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 BUG_ON(readdir->count < 80);
155 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000156 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
158 return;
159 }
160
161 readdir->cookie = 0;
162 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
163 if (cookie == 2)
164 return;
165
166 /*
167 * NFSv4 servers do not return entries for '.' and '..'
168 * Therefore, we fake these entries here. We let '.'
169 * have cookie 0 and '..' have cookie 1. Note that
170 * when talking to the server, we always send cookie 0
171 * instead of 1 or 2.
172 */
Al Viro0dbb4c62006-10-19 23:28:49 -0700173 start = p = kmap_atomic(*readdir->pages, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 if (cookie == 0) {
176 *p++ = xdr_one; /* next */
177 *p++ = xdr_zero; /* cookie, first word */
178 *p++ = xdr_one; /* cookie, second word */
179 *p++ = xdr_one; /* entry len */
180 memcpy(p, ".\0\0\0", 4); /* entry */
181 p++;
182 *p++ = xdr_one; /* bitmap length */
183 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
184 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400185 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187
188 *p++ = xdr_one; /* next */
189 *p++ = xdr_zero; /* cookie, first word */
190 *p++ = xdr_two; /* cookie, second word */
191 *p++ = xdr_two; /* entry len */
192 memcpy(p, "..\0\0", 4); /* entry */
193 p++;
194 *p++ = xdr_one; /* bitmap length */
195 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
196 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400197 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 readdir->pgbase = (char *)p - (char *)start;
200 readdir->count -= readdir->pgbase;
201 kunmap_atomic(start, KM_USER0);
202}
203
Trond Myklebust65de8722008-12-23 15:21:44 -0500204static int nfs4_wait_clnt_recover(struct nfs_client *clp)
205{
206 int res;
207
208 might_sleep();
209
Trond Myklebuste005e802008-12-23 15:21:48 -0500210 res = wait_on_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400211 nfs_wait_bit_killable, TASK_KILLABLE);
Trond Myklebust65de8722008-12-23 15:21:44 -0500212 return res;
213}
214
215static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
216{
217 int res = 0;
218
219 might_sleep();
220
221 if (*timeout <= 0)
222 *timeout = NFS4_POLL_RETRY_MIN;
223 if (*timeout > NFS4_POLL_RETRY_MAX)
224 *timeout = NFS4_POLL_RETRY_MAX;
225 schedule_timeout_killable(*timeout);
226 if (fatal_signal_pending(current))
227 res = -ERESTARTSYS;
228 *timeout <<= 1;
229 return res;
230}
231
232/* This is the error handling routine for processes that are allowed
233 * to sleep.
234 */
235static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
236{
237 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500238 struct nfs4_state *state = exception->state;
Trond Myklebust65de8722008-12-23 15:21:44 -0500239 int ret = errorcode;
240
241 exception->retry = 0;
242 switch(errorcode) {
243 case 0:
244 return 0;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500245 case -NFS4ERR_ADMIN_REVOKED:
246 case -NFS4ERR_BAD_STATEID:
247 case -NFS4ERR_OPENMODE:
248 if (state == NULL)
249 break;
250 nfs4_state_mark_reclaim_nograce(clp, state);
Trond Myklebust65de8722008-12-23 15:21:44 -0500251 case -NFS4ERR_STALE_CLIENTID:
252 case -NFS4ERR_STALE_STATEID:
253 case -NFS4ERR_EXPIRED:
254 nfs4_schedule_state_recovery(clp);
255 ret = nfs4_wait_clnt_recover(clp);
256 if (ret == 0)
257 exception->retry = 1;
Andy Adamson4745e312009-04-01 09:22:42 -0400258#if !defined(CONFIG_NFS_V4_1)
Trond Myklebust65de8722008-12-23 15:21:44 -0500259 break;
Andy Adamson4745e312009-04-01 09:22:42 -0400260#else /* !defined(CONFIG_NFS_V4_1) */
261 if (!nfs4_has_session(server->nfs_client))
262 break;
263 /* FALLTHROUGH */
264 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;
Andy Adamson4745e312009-04-01 09:22:42 -0400276#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:
287 ret = nfs4_delay(server->client, &exception->timeout);
288 if (ret != 0)
289 break;
290 case -NFS4ERR_OLD_STATEID:
291 exception->retry = 1;
292 }
293 /* We failed to handle the error */
294 return nfs4_map_errors(ret);
295}
296
297
Trond Myklebust26e976a2006-01-03 09:55:21 +0100298static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
David Howells7539bba2006-08-22 20:06:09 -0400300 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 spin_lock(&clp->cl_lock);
302 if (time_before(clp->cl_last_renewal,timestamp))
303 clp->cl_last_renewal = timestamp;
304 spin_unlock(&clp->cl_lock);
305}
306
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400307#if defined(CONFIG_NFS_V4_1)
308
Benny Halevy510b8172009-04-01 09:22:14 -0400309/*
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400310 * nfs4_free_slot - free a slot and efficiently update slot table.
311 *
312 * freeing a slot is trivially done by clearing its respective bit
313 * in the bitmap.
314 * If the freed slotid equals highest_used_slotid we want to update it
315 * so that the server would be able to size down the slot table if needed,
316 * otherwise we know that the highest_used_slotid is still in use.
317 * When updating highest_used_slotid there may be "holes" in the bitmap
318 * so we need to scan down from highest_used_slotid to 0 looking for the now
319 * highest slotid in use.
320 * If none found, highest_used_slotid is set to -1.
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500321 *
322 * Must be called while holding tbl->slot_tbl_lock
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400323 */
324static void
325nfs4_free_slot(struct nfs4_slot_table *tbl, u8 free_slotid)
326{
327 int slotid = free_slotid;
328
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400329 /* clear used bit in bitmap */
330 __clear_bit(slotid, tbl->used_slots);
331
332 /* update highest_used_slotid when it is freed */
333 if (slotid == tbl->highest_used_slotid) {
334 slotid = find_last_bit(tbl->used_slots, tbl->max_slots);
Trond Myklebustbcb56162009-12-05 19:32:19 -0500335 if (slotid < tbl->max_slots)
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400336 tbl->highest_used_slotid = slotid;
337 else
338 tbl->highest_used_slotid = -1;
339 }
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400340 dprintk("%s: free_slotid %u highest_used_slotid %d\n", __func__,
341 free_slotid, tbl->highest_used_slotid);
342}
343
Trond Myklebustd61e6122009-12-05 19:32:19 -0500344static void nfs41_sequence_free_slot(const struct nfs_client *clp,
Andy Adamson13615872009-04-01 09:22:17 -0400345 struct nfs4_sequence_res *res)
346{
347 struct nfs4_slot_table *tbl;
348
Andy Adamson13615872009-04-01 09:22:17 -0400349 tbl = &clp->cl_session->fc_slot_table;
350 if (res->sr_slotid == NFS4_MAX_SLOT_TABLE) {
Andy Adamson13615872009-04-01 09:22:17 -0400351 /* just wake up the next guy waiting since
352 * we may have not consumed a slot after all */
Andy Adamson691daf32009-12-04 15:55:39 -0500353 dprintk("%s: No slot\n", __func__);
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500354 return;
Andy Adamson13615872009-04-01 09:22:17 -0400355 }
Andy Adamsonea028ac2009-12-04 15:55:38 -0500356
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500357 spin_lock(&tbl->slot_tbl_lock);
358 nfs4_free_slot(tbl, res->sr_slotid);
359
Andy Adamsonea028ac2009-12-04 15:55:38 -0500360 /* Signal state manager thread if session is drained */
361 if (test_bit(NFS4CLNT_SESSION_DRAINING, &clp->cl_state)) {
Andy Adamsonea028ac2009-12-04 15:55:38 -0500362 if (tbl->highest_used_slotid == -1) {
363 dprintk("%s COMPLETE: Session Drained\n", __func__);
364 complete(&clp->cl_session->complete);
365 }
Trond Myklebustbcb56162009-12-05 19:32:19 -0500366 } else
Andy Adamson691daf32009-12-04 15:55:39 -0500367 rpc_wake_up_next(&tbl->slot_tbl_waitq);
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500368 spin_unlock(&tbl->slot_tbl_lock);
369 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
Andy Adamson13615872009-04-01 09:22:17 -0400370}
371
Andy Adamsonb0df8062009-04-01 09:22:18 -0400372static void nfs41_sequence_done(struct nfs_client *clp,
373 struct nfs4_sequence_res *res,
374 int rpc_status)
375{
376 unsigned long timestamp;
377 struct nfs4_slot_table *tbl;
378 struct nfs4_slot *slot;
379
380 /*
381 * sr_status remains 1 if an RPC level error occurred. The server
382 * may or may not have processed the sequence operation..
383 * Proceed as if the server received and processed the sequence
384 * operation.
385 */
386 if (res->sr_status == 1)
387 res->sr_status = NFS_OK;
388
389 /* -ERESTARTSYS can result in skipping nfs41_sequence_setup */
390 if (res->sr_slotid == NFS4_MAX_SLOT_TABLE)
391 goto out;
392
Andy Adamson691daf32009-12-04 15:55:39 -0500393 /* Check the SEQUENCE operation status */
Andy Adamsonb0df8062009-04-01 09:22:18 -0400394 if (res->sr_status == 0) {
Andy Adamson691daf32009-12-04 15:55:39 -0500395 tbl = &clp->cl_session->fc_slot_table;
396 slot = tbl->slots + res->sr_slotid;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400397 /* Update the slot's sequence and clientid lease timer */
398 ++slot->seq_nr;
399 timestamp = res->sr_renewal_time;
400 spin_lock(&clp->cl_lock);
401 if (time_before(clp->cl_last_renewal, timestamp))
402 clp->cl_last_renewal = timestamp;
403 spin_unlock(&clp->cl_lock);
Alexandros Batsakis0629e372009-12-05 13:46:14 -0500404 /* Check sequence flags */
405 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags);
Andy Adamsonb0df8062009-04-01 09:22:18 -0400406 }
407out:
408 /* The session may be reset by one of the error handlers. */
409 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
410 nfs41_sequence_free_slot(clp, res);
411}
412
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400413/*
Benny Halevy510b8172009-04-01 09:22:14 -0400414 * nfs4_find_slot - efficiently look for a free slot
415 *
416 * nfs4_find_slot looks for an unset bit in the used_slots bitmap.
417 * If found, we mark the slot as used, update the highest_used_slotid,
418 * and respectively set up the sequence operation args.
419 * The slot number is returned if found, or NFS4_MAX_SLOT_TABLE otherwise.
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400420 *
421 * Note: must be called with under the slot_tbl_lock.
Benny Halevy510b8172009-04-01 09:22:14 -0400422 */
423static u8
424nfs4_find_slot(struct nfs4_slot_table *tbl, struct rpc_task *task)
425{
426 int slotid;
427 u8 ret_id = NFS4_MAX_SLOT_TABLE;
428 BUILD_BUG_ON((u8)NFS4_MAX_SLOT_TABLE != (int)NFS4_MAX_SLOT_TABLE);
429
Benny Halevy510b8172009-04-01 09:22:14 -0400430 dprintk("--> %s used_slots=%04lx highest_used=%d max_slots=%d\n",
431 __func__, tbl->used_slots[0], tbl->highest_used_slotid,
432 tbl->max_slots);
433 slotid = find_first_zero_bit(tbl->used_slots, tbl->max_slots);
434 if (slotid >= tbl->max_slots)
435 goto out;
436 __set_bit(slotid, tbl->used_slots);
437 if (slotid > tbl->highest_used_slotid)
438 tbl->highest_used_slotid = slotid;
439 ret_id = slotid;
440out:
441 dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
442 __func__, tbl->used_slots[0], tbl->highest_used_slotid, ret_id);
Benny Halevy510b8172009-04-01 09:22:14 -0400443 return ret_id;
444}
445
Andy Adamsonce5039c2009-04-01 09:22:13 -0400446static int nfs41_setup_sequence(struct nfs4_session *session,
447 struct nfs4_sequence_args *args,
448 struct nfs4_sequence_res *res,
449 int cache_reply,
450 struct rpc_task *task)
451{
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400452 struct nfs4_slot *slot;
453 struct nfs4_slot_table *tbl;
454 u8 slotid;
455
456 dprintk("--> %s\n", __func__);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400457 /* slot already allocated? */
458 if (res->sr_slotid != NFS4_MAX_SLOT_TABLE)
459 return 0;
460
461 memset(res, 0, sizeof(*res));
462 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400463 tbl = &session->fc_slot_table;
464
465 spin_lock(&tbl->slot_tbl_lock);
Andy Adamson0b9e2d42009-12-04 16:02:14 -0500466 if (test_bit(NFS4CLNT_SESSION_DRAINING, &session->clp->cl_state)) {
Andy Adamsonea028ac2009-12-04 15:55:38 -0500467 /*
468 * The state manager will wait until the slot table is empty.
469 * Schedule the reset thread
470 */
Andy Adamson05f0d232009-12-04 15:55:37 -0500471 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
Andy Adamsonb069d942009-04-01 09:22:43 -0400472 spin_unlock(&tbl->slot_tbl_lock);
Trond Myklebustbcb56162009-12-05 19:32:19 -0500473 dprintk("%s Schedule Session Reset\n", __func__);
Andy Adamson05f0d232009-12-04 15:55:37 -0500474 return -EAGAIN;
Andy Adamsonb069d942009-04-01 09:22:43 -0400475 }
476
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400477 slotid = nfs4_find_slot(tbl, task);
478 if (slotid == NFS4_MAX_SLOT_TABLE) {
479 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
480 spin_unlock(&tbl->slot_tbl_lock);
481 dprintk("<-- %s: no free slots\n", __func__);
482 return -EAGAIN;
483 }
484 spin_unlock(&tbl->slot_tbl_lock);
485
486 slot = tbl->slots + slotid;
Benny Halevy99fe60d2009-04-01 09:22:29 -0400487 args->sa_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400488 args->sa_slotid = slotid;
489 args->sa_cache_this = cache_reply;
490
491 dprintk("<-- %s slotid=%d seqid=%d\n", __func__, slotid, slot->seq_nr);
492
Benny Halevy99fe60d2009-04-01 09:22:29 -0400493 res->sr_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400494 res->sr_slotid = slotid;
495 res->sr_renewal_time = jiffies;
496 /*
497 * sr_status is only set in decode_sequence, and so will remain
498 * set to 1 if an rpc level failure occurs.
499 */
500 res->sr_status = 1;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400501 return 0;
502}
503
504int nfs4_setup_sequence(struct nfs_client *clp,
505 struct nfs4_sequence_args *args,
506 struct nfs4_sequence_res *res,
507 int cache_reply,
508 struct rpc_task *task)
509{
510 int ret = 0;
511
512 dprintk("--> %s clp %p session %p sr_slotid %d\n",
513 __func__, clp, clp->cl_session, res->sr_slotid);
514
515 if (!nfs4_has_session(clp))
516 goto out;
517 ret = nfs41_setup_sequence(clp->cl_session, args, res, cache_reply,
518 task);
Andy Adamson2628edd2009-12-04 15:55:35 -0500519 if (ret && ret != -EAGAIN) {
Andy Adamsonce5039c2009-04-01 09:22:13 -0400520 /* terminate rpc task */
521 task->tk_status = ret;
522 task->tk_action = NULL;
523 }
524out:
525 dprintk("<-- %s status=%d\n", __func__, ret);
526 return ret;
527}
528
529struct nfs41_call_sync_data {
530 struct nfs_client *clp;
531 struct nfs4_sequence_args *seq_args;
532 struct nfs4_sequence_res *seq_res;
533 int cache_reply;
534};
535
536static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
537{
538 struct nfs41_call_sync_data *data = calldata;
539
540 dprintk("--> %s data->clp->cl_session %p\n", __func__,
541 data->clp->cl_session);
542 if (nfs4_setup_sequence(data->clp, data->seq_args,
543 data->seq_res, data->cache_reply, task))
544 return;
545 rpc_call_start(task);
546}
547
Andy Adamson69ab40c2009-04-01 09:22:19 -0400548static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
549{
550 struct nfs41_call_sync_data *data = calldata;
551
552 nfs41_sequence_done(data->clp, data->seq_res, task->tk_status);
Andy Adamson69ab40c2009-04-01 09:22:19 -0400553}
554
Andy Adamsonce5039c2009-04-01 09:22:13 -0400555struct rpc_call_ops nfs41_call_sync_ops = {
556 .rpc_call_prepare = nfs41_call_sync_prepare,
Andy Adamson69ab40c2009-04-01 09:22:19 -0400557 .rpc_call_done = nfs41_call_sync_done,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400558};
559
560static int nfs4_call_sync_sequence(struct nfs_client *clp,
561 struct rpc_clnt *clnt,
562 struct rpc_message *msg,
563 struct nfs4_sequence_args *args,
564 struct nfs4_sequence_res *res,
565 int cache_reply)
566{
567 int ret;
568 struct rpc_task *task;
569 struct nfs41_call_sync_data data = {
570 .clp = clp,
571 .seq_args = args,
572 .seq_res = res,
573 .cache_reply = cache_reply,
574 };
575 struct rpc_task_setup task_setup = {
576 .rpc_client = clnt,
577 .rpc_message = msg,
578 .callback_ops = &nfs41_call_sync_ops,
579 .callback_data = &data
580 };
581
582 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
583 task = rpc_run_task(&task_setup);
584 if (IS_ERR(task))
585 ret = PTR_ERR(task);
586 else {
587 ret = task->tk_status;
588 rpc_put_task(task);
589 }
590 return ret;
591}
592
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400593int _nfs4_call_sync_session(struct nfs_server *server,
594 struct rpc_message *msg,
595 struct nfs4_sequence_args *args,
596 struct nfs4_sequence_res *res,
597 int cache_reply)
598{
Andy Adamsonce5039c2009-04-01 09:22:13 -0400599 return nfs4_call_sync_sequence(server->nfs_client, server->client,
600 msg, args, res, cache_reply);
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400601}
602
603#endif /* CONFIG_NFS_V4_1 */
604
605int _nfs4_call_sync(struct nfs_server *server,
606 struct rpc_message *msg,
607 struct nfs4_sequence_args *args,
608 struct nfs4_sequence_res *res,
609 int cache_reply)
610{
Benny Halevyf3752972009-04-01 09:22:04 -0400611 args->sa_session = res->sr_session = NULL;
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400612 return rpc_call_sync(server->client, msg, 0);
613}
614
615#define nfs4_call_sync(server, msg, args, res, cache_reply) \
616 (server)->nfs_client->cl_call_sync((server), (msg), &(args)->seq_args, \
617 &(res)->seq_res, (cache_reply))
618
Andy Adamsonb0df8062009-04-01 09:22:18 -0400619static void nfs4_sequence_done(const struct nfs_server *server,
620 struct nfs4_sequence_res *res, int rpc_status)
621{
622#ifdef CONFIG_NFS_V4_1
623 if (nfs4_has_session(server->nfs_client))
624 nfs41_sequence_done(server->nfs_client, res, rpc_status);
625#endif /* CONFIG_NFS_V4_1 */
626}
627
Trond Myklebust38478b22006-05-25 01:40:57 -0400628static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Trond Myklebust38478b22006-05-25 01:40:57 -0400630 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Trond Myklebust38478b22006-05-25 01:40:57 -0400632 spin_lock(&dir->i_lock);
Trond Myklebust40d24702007-10-08 09:24:22 -0400633 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
634 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400635 nfs_force_lookup_revalidate(dir);
Trond Myklebust40d24702007-10-08 09:24:22 -0400636 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400637 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100640struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400641 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100642 struct nfs_openargs o_arg;
643 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100644 struct nfs_open_confirmargs c_arg;
645 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100646 struct nfs_fattr f_attr;
647 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400648 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100649 struct dentry *dir;
650 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400651 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100652 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100653 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400654 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100655 int rpc_status;
656 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100657};
658
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400659
660static void nfs4_init_opendata_res(struct nfs4_opendata *p)
661{
662 p->o_res.f_attr = &p->f_attr;
663 p->o_res.dir_attr = &p->dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400664 p->o_res.seqid = p->o_arg.seqid;
665 p->c_res.seqid = p->c_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400666 p->o_res.server = p->o_arg.server;
667 nfs_fattr_init(&p->f_attr);
668 nfs_fattr_init(&p->dir_attr);
Benny Halevy578e4582009-06-18 22:01:23 -0400669 p->o_res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400670}
671
Trond Myklebustad389da2007-06-05 12:30:00 -0400672static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500673 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100674 const struct iattr *attrs)
675{
Trond Myklebustad389da2007-06-05 12:30:00 -0400676 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100677 struct inode *dir = parent->d_inode;
678 struct nfs_server *server = NFS_SERVER(dir);
679 struct nfs4_opendata *p;
680
681 p = kzalloc(sizeof(*p), GFP_KERNEL);
682 if (p == NULL)
683 goto err;
684 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
685 if (p->o_arg.seqid == NULL)
686 goto err_free;
Trond Myklebustad389da2007-06-05 12:30:00 -0400687 p->path.mnt = mntget(path->mnt);
688 p->path.dentry = dget(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100689 p->dir = parent;
690 p->owner = sp;
691 atomic_inc(&sp->so_count);
692 p->o_arg.fh = NFS_FH(dir);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500693 p->o_arg.open_flags = flags;
694 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
David Howells7539bba2006-08-22 20:06:09 -0400695 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400696 p->o_arg.id = sp->so_owner_id.id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400697 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100698 p->o_arg.server = server;
699 p->o_arg.bitmask = server->attr_bitmask;
700 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100701 if (flags & O_EXCL) {
Alexandros Batsakis4882ef72009-12-05 13:30:21 -0500702 if (nfs4_has_persistent_session(server->nfs_client)) {
703 /* GUARDED */
704 p->o_arg.u.attrs = &p->attrs;
705 memcpy(&p->attrs, attrs, sizeof(p->attrs));
706 } else { /* EXCLUSIVE4_1 */
707 u32 *s = (u32 *) p->o_arg.u.verifier.data;
708 s[0] = jiffies;
709 s[1] = current->pid;
710 }
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100711 } else if (flags & O_CREAT) {
712 p->o_arg.u.attrs = &p->attrs;
713 memcpy(&p->attrs, attrs, sizeof(p->attrs));
714 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100715 p->c_arg.fh = &p->o_res.fh;
716 p->c_arg.stateid = &p->o_res.stateid;
717 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400718 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400719 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100720 return p;
721err_free:
722 kfree(p);
723err:
724 dput(parent);
725 return NULL;
726}
727
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400728static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100729{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400730 struct nfs4_opendata *p = container_of(kref,
731 struct nfs4_opendata, kref);
732
733 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400734 if (p->state != NULL)
735 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400736 nfs4_put_state_owner(p->owner);
737 dput(p->dir);
Jan Blunck31f31db12008-05-02 13:42:45 -0700738 path_put(&p->path);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400739 kfree(p);
740}
741
742static void nfs4_opendata_put(struct nfs4_opendata *p)
743{
744 if (p != NULL)
745 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100746}
747
Trond Myklebust06f814a2006-01-03 09:55:07 +0100748static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
749{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100750 int ret;
751
Trond Myklebust06f814a2006-01-03 09:55:07 +0100752 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100753 return ret;
754}
755
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500756static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400757{
758 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500759
760 if (open_mode & O_EXCL)
761 goto out;
762 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400763 case FMODE_READ:
Trond Myklebust88069f72009-12-08 08:33:16 -0500764 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0
765 && state->n_rdonly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400766 break;
767 case FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -0500768 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0
769 && state->n_wronly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400770 break;
771 case FMODE_READ|FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -0500772 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0
773 && state->n_rdwr != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400774 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500775out:
Trond Myklebust6ee41262007-07-08 14:11:36 -0400776 return ret;
777}
778
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500779static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400780{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500781 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400782 return 0;
Trond Myklebust15c831b2008-12-23 15:21:39 -0500783 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
Trond Myklebustaac00a82007-07-05 19:02:21 -0400784 return 0;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500785 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400786 return 1;
787}
788
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500789static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +0100790{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500791 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100792 case FMODE_WRITE:
793 state->n_wronly++;
794 break;
795 case FMODE_READ:
796 state->n_rdonly++;
797 break;
798 case FMODE_READ|FMODE_WRITE:
799 state->n_rdwr++;
800 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500801 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +0100802}
803
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500804static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400805{
806 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
807 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
808 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500809 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400810 case FMODE_READ:
811 set_bit(NFS_O_RDONLY_STATE, &state->flags);
812 break;
813 case FMODE_WRITE:
814 set_bit(NFS_O_WRONLY_STATE, &state->flags);
815 break;
816 case FMODE_READ|FMODE_WRITE:
817 set_bit(NFS_O_RDWR_STATE, &state->flags);
818 }
819}
820
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500821static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400822{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400823 write_seqlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500824 nfs_set_open_stateid_locked(state, stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400825 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400826}
827
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500828static 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 -0700829{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400830 /*
831 * Protect the call to nfs4_state_set_mode_locked and
832 * serialise the stateid update
833 */
834 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400835 if (deleg_stateid != NULL) {
836 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
837 set_bit(NFS_DELEGATED_STATE, &state->flags);
838 }
839 if (open_stateid != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500840 nfs_set_open_stateid_locked(state, open_stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400841 write_sequnlock(&state->seqlock);
842 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500843 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -0700844 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500847static 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 -0500848{
849 struct nfs_inode *nfsi = NFS_I(state->inode);
850 struct nfs_delegation *deleg_cur;
851 int ret = 0;
852
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500853 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -0500854
855 rcu_read_lock();
856 deleg_cur = rcu_dereference(nfsi->delegation);
857 if (deleg_cur == NULL)
858 goto no_delegation;
859
860 spin_lock(&deleg_cur->lock);
861 if (nfsi->delegation != deleg_cur ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500862 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -0500863 goto no_delegation_unlock;
864
865 if (delegation == NULL)
866 delegation = &deleg_cur->stateid;
867 else if (memcmp(deleg_cur->stateid.data, delegation->data, NFS4_STATEID_SIZE) != 0)
868 goto no_delegation_unlock;
869
Trond Myklebustb7391f42008-12-23 15:21:52 -0500870 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500871 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500872 ret = 1;
873no_delegation_unlock:
874 spin_unlock(&deleg_cur->lock);
875no_delegation:
876 rcu_read_unlock();
877
878 if (!ret && open_stateid != NULL) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500879 __update_open_stateid(state, open_stateid, NULL, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500880 ret = 1;
881 }
882
883 return ret;
884}
885
886
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500887static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400888{
889 struct nfs_delegation *delegation;
890
891 rcu_read_lock();
892 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500893 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -0400894 rcu_read_unlock();
895 return;
896 }
897 rcu_read_unlock();
898 nfs_inode_return_delegation(inode);
899}
900
Trond Myklebust6ee41262007-07-08 14:11:36 -0400901static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400902{
903 struct nfs4_state *state = opendata->state;
904 struct nfs_inode *nfsi = NFS_I(state->inode);
905 struct nfs_delegation *delegation;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500906 int open_mode = opendata->o_arg.open_flags & O_EXCL;
907 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400908 nfs4_stateid stateid;
909 int ret = -EAGAIN;
910
Trond Myklebustaac00a82007-07-05 19:02:21 -0400911 for (;;) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500912 if (can_open_cached(state, fmode, open_mode)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400913 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500914 if (can_open_cached(state, fmode, open_mode)) {
915 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400916 spin_unlock(&state->owner->so_lock);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400917 goto out_return_state;
918 }
919 spin_unlock(&state->owner->so_lock);
920 }
Trond Myklebust34310432008-12-23 15:21:38 -0500921 rcu_read_lock();
922 delegation = rcu_dereference(nfsi->delegation);
923 if (delegation == NULL ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500924 !can_open_delegated(delegation, fmode)) {
Trond Myklebust34310432008-12-23 15:21:38 -0500925 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -0400926 break;
Trond Myklebust34310432008-12-23 15:21:38 -0500927 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400928 /* Save the delegation */
929 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
930 rcu_read_unlock();
Trond Myklebustaf22f942007-08-10 17:45:10 -0400931 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400932 if (ret != 0)
933 goto out;
934 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -0500935
936 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500937 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -0500938 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400939 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400940out:
941 return ERR_PTR(ret);
942out_return_state:
943 atomic_inc(&state->count);
944 return state;
945}
946
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100947static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
948{
949 struct inode *inode;
950 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -0400951 struct nfs_delegation *delegation;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400952 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100953
Trond Myklebustaac00a82007-07-05 19:02:21 -0400954 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400955 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400956 goto out;
957 }
958
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400959 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100960 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400961 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100962 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400963 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500964 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400965 goto err;
966 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100967 state = nfs4_get_open_state(inode, data->owner);
968 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400969 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400970 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400971 int delegation_flags = 0;
972
Trond Myklebust003707c2007-07-05 18:07:55 -0400973 rcu_read_lock();
974 delegation = rcu_dereference(NFS_I(inode)->delegation);
975 if (delegation)
976 delegation_flags = delegation->flags;
977 rcu_read_unlock();
Trond Myklebust15c831b2008-12-23 15:21:39 -0500978 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400979 nfs_inode_set_delegation(state->inode,
980 data->owner->so_cred,
981 &data->o_res);
982 else
983 nfs_inode_reclaim_delegation(state->inode,
984 data->owner->so_cred,
985 &data->o_res);
986 }
Trond Myklebust34310432008-12-23 15:21:38 -0500987
988 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500989 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100990 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400991out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100992 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400993err_put_inode:
994 iput(inode);
995err:
996 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100997}
998
Trond Myklebust864472e2006-01-03 09:55:15 +0100999static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1000{
1001 struct nfs_inode *nfsi = NFS_I(state->inode);
1002 struct nfs_open_context *ctx;
1003
1004 spin_lock(&state->inode->i_lock);
1005 list_for_each_entry(ctx, &nfsi->open_files, list) {
1006 if (ctx->state != state)
1007 continue;
1008 get_nfs_open_context(ctx);
1009 spin_unlock(&state->inode->i_lock);
1010 return ctx;
1011 }
1012 spin_unlock(&state->inode->i_lock);
1013 return ERR_PTR(-ENOENT);
1014}
1015
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001016static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
1017{
1018 struct nfs4_opendata *opendata;
1019
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001020 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, 0, NULL);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001021 if (opendata == NULL)
1022 return ERR_PTR(-ENOMEM);
1023 opendata->state = state;
1024 atomic_inc(&state->count);
1025 return opendata;
1026}
1027
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001028static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +01001029{
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001030 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001031 int ret;
1032
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001033 opendata->o_arg.open_flags = 0;
1034 opendata->o_arg.fmode = fmode;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001035 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1036 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1037 nfs4_init_opendata_res(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001038 ret = _nfs4_proc_open(opendata);
1039 if (ret != 0)
1040 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001041 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001042 if (IS_ERR(newstate))
1043 return PTR_ERR(newstate);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001044 nfs4_close_state(&opendata->path, newstate, fmode);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001045 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001046 return 0;
1047}
1048
1049static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1050{
Trond Myklebust864472e2006-01-03 09:55:15 +01001051 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001052 int ret;
1053
1054 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001055 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001056 smp_rmb();
1057 if (state->n_rdwr != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001058 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001059 if (ret != 0)
1060 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001061 if (newstate != state)
1062 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001063 }
1064 if (state->n_wronly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001065 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001066 if (ret != 0)
1067 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001068 if (newstate != state)
1069 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001070 }
1071 if (state->n_rdonly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001072 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001073 if (ret != 0)
1074 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001075 if (newstate != state)
1076 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001077 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001078 /*
1079 * We may have performed cached opens for all three recoveries.
1080 * Check if we need to update the current stateid.
1081 */
1082 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
1083 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001084 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001085 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1086 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001087 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001088 }
Trond Myklebust864472e2006-01-03 09:55:15 +01001089 return 0;
1090}
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092/*
1093 * OPEN_RECLAIM:
1094 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001096static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001098 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +01001099 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001100 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 int status;
1102
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001103 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1104 if (IS_ERR(opendata))
1105 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001106 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
1107 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001108 rcu_read_lock();
1109 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -05001110 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -04001111 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001112 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +01001113 opendata->o_arg.u.delegation_type = delegation_type;
1114 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001115 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 return status;
1117}
1118
Trond Myklebust539cd032007-06-05 11:46:42 -04001119static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
1121 struct nfs_server *server = NFS_SERVER(state->inode);
1122 struct nfs4_exception exception = { };
1123 int err;
1124 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001125 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001126 if (err != -NFS4ERR_DELAY)
1127 break;
1128 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 } while (exception.retry);
1130 return err;
1131}
1132
Trond Myklebust864472e2006-01-03 09:55:15 +01001133static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1134{
1135 struct nfs_open_context *ctx;
1136 int ret;
1137
1138 ctx = nfs4_state_find_open_context(state);
1139 if (IS_ERR(ctx))
1140 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001141 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001142 put_nfs_open_context(ctx);
1143 return ret;
1144}
1145
Trond Myklebust13437e12007-07-06 15:10:43 -04001146static 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 -07001147{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001148 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001149 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001151 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1152 if (IS_ERR(opendata))
1153 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001154 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -04001155 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001156 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +01001157 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001158 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001159 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
Trond Myklebust13437e12007-07-06 15:10:43 -04001162int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
1164 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -04001165 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 int err;
1167 do {
Trond Myklebust13437e12007-07-06 15:10:43 -04001168 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 switch (err) {
1170 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07001171 case -ENOENT:
1172 case -ESTALE:
1173 goto out;
Ricardo Labiagabcfa49f2009-12-07 09:22:29 -05001174 case -NFS4ERR_BADSESSION:
1175 case -NFS4ERR_BADSLOT:
1176 case -NFS4ERR_BAD_HIGH_SLOT:
1177 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1178 case -NFS4ERR_DEADSESSION:
1179 nfs4_schedule_state_recovery(
1180 server->nfs_client);
1181 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 case -NFS4ERR_STALE_CLIENTID:
1183 case -NFS4ERR_STALE_STATEID:
1184 case -NFS4ERR_EXPIRED:
1185 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -04001186 nfs4_schedule_state_recovery(server->nfs_client);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001187 goto out;
1188 case -ERESTARTSYS:
1189 /*
1190 * The show must go on: exit, but mark the
1191 * stateid as needing recovery.
1192 */
1193 case -NFS4ERR_ADMIN_REVOKED:
1194 case -NFS4ERR_BAD_STATEID:
1195 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
1196 case -ENOMEM:
1197 err = 0;
1198 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 }
1200 err = nfs4_handle_exception(server, err, &exception);
1201 } while (exception.retry);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001202out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 return err;
1204}
1205
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001206static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1207{
1208 struct nfs4_opendata *data = calldata;
1209
1210 data->rpc_status = task->tk_status;
1211 if (RPC_ASSASSINATED(task))
1212 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001213 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001214 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
1215 sizeof(data->o_res.stateid.data));
Trond Myklebustbb226292008-01-02 15:19:18 -05001216 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001217 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -04001218 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001219 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001220}
1221
1222static void nfs4_open_confirm_release(void *calldata)
1223{
1224 struct nfs4_opendata *data = calldata;
1225 struct nfs4_state *state = NULL;
1226
1227 /* If this request hasn't been cancelled, do nothing */
1228 if (data->cancelled == 0)
1229 goto out_free;
1230 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001231 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001232 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001233 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001234 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001235 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001236out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001237 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001238}
1239
1240static const struct rpc_call_ops nfs4_open_confirm_ops = {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001241 .rpc_call_done = nfs4_open_confirm_done,
1242 .rpc_release = nfs4_open_confirm_release,
1243};
1244
1245/*
1246 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1247 */
1248static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
1249{
1250 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
1251 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001252 struct rpc_message msg = {
1253 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
1254 .rpc_argp = &data->c_arg,
1255 .rpc_resp = &data->c_res,
1256 .rpc_cred = data->owner->so_cred,
1257 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001258 struct rpc_task_setup task_setup_data = {
1259 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001260 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001261 .callback_ops = &nfs4_open_confirm_ops,
1262 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001263 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001264 .flags = RPC_TASK_ASYNC,
1265 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 int status;
1267
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001268 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001269 data->rpc_done = 0;
1270 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001271 data->timestamp = jiffies;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001272 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001273 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001274 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001275 status = nfs4_wait_for_completion_rpc_task(task);
1276 if (status != 0) {
1277 data->cancelled = 1;
1278 smp_wmb();
1279 } else
1280 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001281 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 return status;
1283}
1284
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001285static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001287 struct nfs4_opendata *data = calldata;
1288 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001289
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001290 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
1291 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001292 /*
1293 * Check if we still need to send an OPEN call, or if we can use
1294 * a delegation instead.
1295 */
1296 if (data->state != NULL) {
1297 struct nfs_delegation *delegation;
1298
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001299 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -04001300 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001301 rcu_read_lock();
1302 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
1303 if (delegation != NULL &&
Trond Myklebust15c831b2008-12-23 15:21:39 -05001304 test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) {
Trond Myklebustaac00a82007-07-05 19:02:21 -04001305 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001306 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001307 }
1308 rcu_read_unlock();
1309 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001310 /* Update sequence id. */
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001311 data->o_arg.id = sp->so_owner_id.id;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001312 data->o_arg.clientid = sp->so_client->cl_clientid;
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001313 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001314 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001315 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
1316 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001317 data->timestamp = jiffies;
Andy Adamsond8985282009-04-01 09:22:21 -04001318 if (nfs4_setup_sequence(data->o_arg.server->nfs_client,
1319 &data->o_arg.seq_args,
1320 &data->o_res.seq_res, 1, task))
1321 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001322 rpc_call_start(task);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001323 return;
1324out_no_action:
1325 task->tk_action = NULL;
1326
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001327}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001329static void nfs4_open_done(struct rpc_task *task, void *calldata)
1330{
1331 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001333 data->rpc_status = task->tk_status;
Andy Adamsond8985282009-04-01 09:22:21 -04001334
Trond Myklebustd61e6122009-12-05 19:32:19 -05001335 nfs4_sequence_done(data->o_arg.server, &data->o_res.seq_res,
1336 task->tk_status);
Andy Adamsond8985282009-04-01 09:22:21 -04001337
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001338 if (RPC_ASSASSINATED(task))
1339 return;
1340 if (task->tk_status == 0) {
1341 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -07001342 case S_IFREG:
1343 break;
1344 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001345 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001346 break;
1347 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001348 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001349 break;
1350 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001351 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001352 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001353 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -04001354 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
1355 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -07001356 }
Trond Myklebust3e309912007-07-07 13:19:59 -04001357 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001358}
Trond Myklebust6f926b52005-10-18 14:20:18 -07001359
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001360static void nfs4_open_release(void *calldata)
1361{
1362 struct nfs4_opendata *data = calldata;
1363 struct nfs4_state *state = NULL;
1364
1365 /* If this request hasn't been cancelled, do nothing */
1366 if (data->cancelled == 0)
1367 goto out_free;
1368 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001369 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001370 goto out_free;
1371 /* In case we need an open_confirm, no cleanup! */
1372 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
1373 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001374 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001375 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001376 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001377out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001378 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001379}
1380
1381static const struct rpc_call_ops nfs4_open_ops = {
1382 .rpc_call_prepare = nfs4_open_prepare,
1383 .rpc_call_done = nfs4_open_done,
1384 .rpc_release = nfs4_open_release,
1385};
1386
1387/*
1388 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1389 */
1390static int _nfs4_proc_open(struct nfs4_opendata *data)
1391{
1392 struct inode *dir = data->dir->d_inode;
1393 struct nfs_server *server = NFS_SERVER(dir);
1394 struct nfs_openargs *o_arg = &data->o_arg;
1395 struct nfs_openres *o_res = &data->o_res;
1396 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001397 struct rpc_message msg = {
1398 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
1399 .rpc_argp = o_arg,
1400 .rpc_resp = o_res,
1401 .rpc_cred = data->owner->so_cred,
1402 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001403 struct rpc_task_setup task_setup_data = {
1404 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001405 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001406 .callback_ops = &nfs4_open_ops,
1407 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001408 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001409 .flags = RPC_TASK_ASYNC,
1410 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001411 int status;
1412
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001413 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001414 data->rpc_done = 0;
1415 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001416 data->cancelled = 0;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001417 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001418 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001419 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001420 status = nfs4_wait_for_completion_rpc_task(task);
1421 if (status != 0) {
1422 data->cancelled = 1;
1423 smp_wmb();
1424 } else
1425 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001426 rpc_put_task(task);
Trond Myklebust3e309912007-07-07 13:19:59 -04001427 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001428 return status;
1429
Trond Myklebust99367812007-07-17 21:52:41 -04001430 if (o_res->fh.size == 0)
1431 _nfs4_proc_lookup(dir, o_arg->name, &o_res->fh, o_res->f_attr);
1432
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001433 if (o_arg->open_flags & O_CREAT) {
1434 update_changeattr(dir, &o_res->cinfo);
1435 nfs_post_op_update_inode(dir, o_res->dir_attr);
1436 } else
1437 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001439 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001441 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
1443 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -04001444 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001445 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447
Trond Myklebust10afec92007-05-14 17:16:04 -04001448static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +01001449{
David Howells7539bba2006-08-22 20:06:09 -04001450 struct nfs_client *clp = server->nfs_client;
Trond Myklebusta78cb572009-08-09 15:06:19 -04001451 unsigned int loop;
Trond Myklebust6b309542006-09-14 14:03:14 -04001452 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001453
Trond Myklebusta78cb572009-08-09 15:06:19 -04001454 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
Trond Myklebust65de8722008-12-23 15:21:44 -05001455 ret = nfs4_wait_clnt_recover(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001456 if (ret != 0)
Trond Myklebusta78cb572009-08-09 15:06:19 -04001457 break;
Trond Myklebuste598d842008-12-23 15:21:42 -05001458 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
1459 !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
Trond Myklebust6b309542006-09-14 14:03:14 -04001460 break;
Trond Myklebust58d97142006-01-03 09:55:24 +01001461 nfs4_schedule_state_recovery(clp);
Trond Myklebusta78cb572009-08-09 15:06:19 -04001462 ret = -EIO;
Trond Myklebust6b309542006-09-14 14:03:14 -04001463 }
Trond Myklebusta78cb572009-08-09 15:06:19 -04001464 return ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001465}
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467/*
1468 * OPEN_EXPIRED:
1469 * reclaim state on the server after a network partition.
1470 * Assumes caller holds the appropriate lock
1471 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001472static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001474 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001475 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001477 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1478 if (IS_ERR(opendata))
1479 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001480 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04001481 if (ret == -ESTALE)
Trond Myklebust539cd032007-06-05 11:46:42 -04001482 d_drop(ctx->path.dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001483 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001484 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
1486
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001487static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001488{
Trond Myklebust539cd032007-06-05 11:46:42 -04001489 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001490 struct nfs4_exception exception = { };
1491 int err;
1492
1493 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001494 err = _nfs4_open_expired(ctx, state);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001495 switch (err) {
1496 default:
1497 goto out;
1498 case -NFS4ERR_GRACE:
1499 case -NFS4ERR_DELAY:
1500 nfs4_handle_exception(server, err, &exception);
1501 err = 0;
1502 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00001503 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001504out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00001505 return err;
1506}
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1509{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001511 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Trond Myklebust864472e2006-01-03 09:55:15 +01001513 ctx = nfs4_state_find_open_context(state);
1514 if (IS_ERR(ctx))
1515 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001516 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001517 put_nfs_open_context(ctx);
1518 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519}
1520
1521/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001522 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1523 * fields corresponding to attributes that were used to store the verifier.
1524 * Make sure we clobber those fields in the later setattr call
1525 */
1526static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1527{
1528 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1529 !(sattr->ia_valid & ATTR_ATIME_SET))
1530 sattr->ia_valid |= ATTR_ATIME;
1531
1532 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1533 !(sattr->ia_valid & ATTR_MTIME_SET))
1534 sattr->ia_valid |= ATTR_MTIME;
1535}
1536
1537/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001538 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001540static 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 -07001541{
1542 struct nfs4_state_owner *sp;
1543 struct nfs4_state *state = NULL;
1544 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001545 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001546 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 status = -ENOMEM;
1550 if (!(sp = nfs4_get_state_owner(server, cred))) {
1551 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1552 goto out_err;
1553 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001554 status = nfs4_recover_expired_lease(server);
1555 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001556 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001557 if (path->dentry->d_inode != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001558 nfs4_return_incompatible_delegation(path->dentry->d_inode, fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01001559 status = -ENOMEM;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001560 opendata = nfs4_opendata_alloc(path, sp, fmode, flags, sattr);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001561 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05001562 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Trond Myklebustaac00a82007-07-05 19:02:21 -04001564 if (path->dentry->d_inode != NULL)
1565 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1566
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001567 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001569 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001571 if (opendata->o_arg.open_flags & O_EXCL)
1572 nfs4_exclusive_attrset(opendata, sattr);
1573
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001574 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001575 status = PTR_ERR(state);
1576 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001577 goto err_opendata_put;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001578 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 *res = state;
1581 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001582err_opendata_put:
1583 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001584err_put_state_owner:
1585 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 *res = NULL;
1588 return status;
1589}
1590
1591
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001592static 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 -07001593{
1594 struct nfs4_exception exception = { };
1595 struct nfs4_state *res;
1596 int status;
1597
1598 do {
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001599 status = _nfs4_do_open(dir, path, fmode, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if (status == 0)
1601 break;
1602 /* NOTE: BAD_SEQID means the server and client disagree about the
1603 * book-keeping w.r.t. state-changing operations
1604 * (OPEN/CLOSE/LOCK/LOCKU...)
1605 * It is actually a sign of a bug on the client or on the server.
1606 *
1607 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001608 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 * have unhashed the old state_owner for us, and that we can
1610 * therefore safely retry using a new one. We should still warn
1611 * the user though...
1612 */
1613 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001614 printk(KERN_WARNING "NFS: v4 server %s "
1615 " returned a bad sequence-id error!\n",
1616 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 exception.retry = 1;
1618 continue;
1619 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001620 /*
1621 * BAD_STATEID on OPEN means that the server cancelled our
1622 * state before it received the OPEN_CONFIRM.
1623 * Recover by retrying the request as per the discussion
1624 * on Page 181 of RFC3530.
1625 */
1626 if (status == -NFS4ERR_BAD_STATEID) {
1627 exception.retry = 1;
1628 continue;
1629 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001630 if (status == -EAGAIN) {
1631 /* We must have found a delegation */
1632 exception.retry = 1;
1633 continue;
1634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1636 status, &exception));
1637 } while (exception.retry);
1638 return res;
1639}
1640
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001641static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1642 struct nfs_fattr *fattr, struct iattr *sattr,
1643 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001645 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001647 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 .iap = sattr,
1649 .server = server,
1650 .bitmask = server->attr_bitmask,
1651 };
1652 struct nfs_setattrres res = {
1653 .fattr = fattr,
1654 .server = server,
1655 };
1656 struct rpc_message msg = {
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001657 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1658 .rpc_argp = &arg,
1659 .rpc_resp = &res,
1660 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001662 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001663 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Trond Myklebust0e574af2005-10-27 22:12:38 -04001665 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001667 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1668 /* Use that stateid */
1669 } else if (state != NULL) {
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001670 nfs4_copy_stateid(&arg.stateid, state, current->files);
1671 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1673
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001674 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001675 if (status == 0 && state != NULL)
1676 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001677 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678}
1679
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001680static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1681 struct nfs_fattr *fattr, struct iattr *sattr,
1682 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001684 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 struct nfs4_exception exception = { };
1686 int err;
1687 do {
1688 err = nfs4_handle_exception(server,
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001689 _nfs4_do_setattr(inode, cred, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 &exception);
1691 } while (exception.retry);
1692 return err;
1693}
1694
1695struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001696 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 struct inode *inode;
1698 struct nfs4_state *state;
1699 struct nfs_closeargs arg;
1700 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001701 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001702 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703};
1704
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001705static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001706{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001707 struct nfs4_closedata *calldata = data;
1708 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001709
1710 nfs4_put_open_state(calldata->state);
1711 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001712 nfs4_put_state_owner(sp);
Jan Blunck31f31db12008-05-02 13:42:45 -07001713 path_put(&calldata->path);
Trond Myklebust95121352005-10-18 14:20:12 -07001714 kfree(calldata);
1715}
1716
Trond Myklebust88069f72009-12-08 08:33:16 -05001717static void nfs4_close_clear_stateid_flags(struct nfs4_state *state,
1718 fmode_t fmode)
1719{
1720 spin_lock(&state->owner->so_lock);
1721 if (!(fmode & FMODE_READ))
1722 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1723 if (!(fmode & FMODE_WRITE))
1724 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1725 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1726 spin_unlock(&state->owner->so_lock);
1727}
1728
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001729static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001731 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 struct nfs_server *server = NFS_SERVER(calldata->inode);
1734
Andy Adamson19ddab02009-04-01 09:22:20 -04001735 nfs4_sequence_done(server, &calldata->res.seq_res, task->tk_status);
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001736 if (RPC_ASSASSINATED(task))
1737 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 /* hmm. we are done with the inode, and in the process of freeing
1739 * the state_owner. we keep this around to process errors
1740 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 switch (task->tk_status) {
1742 case 0:
Trond Myklebust45328c32007-07-26 17:47:34 -04001743 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001744 renew_lease(server, calldata->timestamp);
Trond Myklebust88069f72009-12-08 08:33:16 -05001745 nfs4_close_clear_stateid_flags(state,
1746 calldata->arg.fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 break;
1748 case -NFS4ERR_STALE_STATEID:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001749 case -NFS4ERR_OLD_STATEID:
1750 case -NFS4ERR_BAD_STATEID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 case -NFS4ERR_EXPIRED:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001752 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001753 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001755 if (nfs4_async_handle_error(task, server, state) == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05001756 nfs_restart_rpc(task, server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return;
1758 }
1759 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001760 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761}
1762
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001763static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001765 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001766 struct nfs4_state *state = calldata->state;
Trond Myklebust88069f72009-12-08 08:33:16 -05001767 int call_close = 0;
Trond Myklebust95121352005-10-18 14:20:12 -07001768
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001769 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001770 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001771
Trond Myklebust88069f72009-12-08 08:33:16 -05001772 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
1773 calldata->arg.fmode = FMODE_READ|FMODE_WRITE;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001774 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001775 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001776 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001777 if (state->n_rdonly == 0) {
Trond Myklebust88069f72009-12-08 08:33:16 -05001778 call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags);
1779 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
1780 calldata->arg.fmode &= ~FMODE_READ;
Trond Myklebust003707c2007-07-05 18:07:55 -04001781 }
1782 if (state->n_wronly == 0) {
Trond Myklebust88069f72009-12-08 08:33:16 -05001783 call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags);
1784 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
1785 calldata->arg.fmode &= ~FMODE_WRITE;
Trond Myklebust003707c2007-07-05 18:07:55 -04001786 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001787 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001788 spin_unlock(&state->owner->so_lock);
Trond Myklebust88069f72009-12-08 08:33:16 -05001789
1790 if (!call_close) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001791 /* Note: exit _without_ calling nfs4_close_done */
1792 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001793 return;
1794 }
Trond Myklebust88069f72009-12-08 08:33:16 -05001795
1796 if (calldata->arg.fmode == 0)
1797 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE];
1798
Trond Myklebust516a6af2005-10-27 22:12:41 -04001799 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001800 calldata->timestamp = jiffies;
Andy Adamson19ddab02009-04-01 09:22:20 -04001801 if (nfs4_setup_sequence((NFS_SERVER(calldata->inode))->nfs_client,
1802 &calldata->arg.seq_args, &calldata->res.seq_res,
1803 1, task))
1804 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001805 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806}
1807
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001808static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001809 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001810 .rpc_call_done = nfs4_close_done,
1811 .rpc_release = nfs4_free_closedata,
1812};
1813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814/*
1815 * It is possible for data to be read/written from a mem-mapped file
1816 * after the sys_close call (which hits the vfs layer as a flush).
1817 * This means that we can't safely call nfsv4 close on a file until
1818 * the inode is cleared. This in turn means that we are not good
1819 * NFSv4 citizens - we do not indicate to the server to update the file's
1820 * share state even when we are done with one of the three share
1821 * stateid's in the inode.
1822 *
1823 * NOTE: Caller must be holding the sp->so_owner semaphore!
1824 */
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001825int nfs4_do_close(struct path *path, struct nfs4_state *state, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001827 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001829 struct nfs4_state_owner *sp = state->owner;
1830 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001831 struct rpc_message msg = {
1832 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1833 .rpc_cred = state->owner->so_cred,
1834 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001835 struct rpc_task_setup task_setup_data = {
1836 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001837 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001838 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05001839 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001840 .flags = RPC_TASK_ASYNC,
1841 };
Trond Myklebust95121352005-10-18 14:20:12 -07001842 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Andy Adamson19ddab02009-04-01 09:22:20 -04001844 calldata = kzalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001846 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001847 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001849 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04001850 calldata->arg.stateid = &state->open_stateid;
Benny Halevy34dc1ad2009-04-01 09:22:52 -04001851 if (nfs4_has_session(server->nfs_client))
1852 memset(calldata->arg.stateid->data, 0, 4); /* clear seqid */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001854 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001855 if (calldata->arg.seqid == NULL)
1856 goto out_free_calldata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001857 calldata->arg.fmode = 0;
Trond Myklebusta65318b2009-03-11 14:10:28 -04001858 calldata->arg.bitmask = server->cache_consistency_bitmask;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001859 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04001860 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001861 calldata->res.server = server;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04001862 calldata->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001863 calldata->path.mnt = mntget(path->mnt);
1864 calldata->path.dentry = dget(path->dentry);
Trond Myklebust95121352005-10-18 14:20:12 -07001865
Trond Myklebust5138fde2007-07-14 15:40:01 -04001866 msg.rpc_argp = &calldata->arg,
1867 msg.rpc_resp = &calldata->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001868 task_setup_data.callback_data = calldata;
1869 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001870 if (IS_ERR(task))
1871 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001872 status = 0;
1873 if (wait)
1874 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001875 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001876 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07001877out_free_calldata:
1878 kfree(calldata);
1879out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04001880 nfs4_put_open_state(state);
1881 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07001882 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
1884
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001885static int nfs4_intent_set_file(struct nameidata *nd, struct path *path, struct nfs4_state *state, fmode_t fmode)
Trond Myklebust02a913a2005-10-18 14:20:17 -07001886{
1887 struct file *filp;
Trond Myklebust1b45c462007-07-03 13:04:56 -04001888 int ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001889
Trond Myklebust1b45c462007-07-03 13:04:56 -04001890 /* If the open_intent is for execute, we have an extra check to make */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001891 if (fmode & FMODE_EXEC) {
Trond Myklebustaf22f942007-08-10 17:45:10 -04001892 ret = nfs_may_open(state->inode,
Trond Myklebust1b45c462007-07-03 13:04:56 -04001893 state->owner->so_cred,
1894 nd->intent.open.flags);
1895 if (ret < 0)
1896 goto out_close;
1897 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001898 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001899 if (!IS_ERR(filp)) {
1900 struct nfs_open_context *ctx;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04001901 ctx = nfs_file_open_context(filp);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001902 ctx->state = state;
Trond Myklebust95cf9592006-04-18 13:14:06 -04001903 return 0;
1904 }
Trond Myklebust1b45c462007-07-03 13:04:56 -04001905 ret = PTR_ERR(filp);
1906out_close:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001907 nfs4_close_sync(path, state, fmode & (FMODE_READ|FMODE_WRITE));
Trond Myklebust1b45c462007-07-03 13:04:56 -04001908 return ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001909}
1910
1911struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1913{
Trond Myklebustad389da2007-06-05 12:30:00 -04001914 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001915 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001916 .dentry = dentry,
1917 };
Jan Blunck4ac91372008-02-14 19:34:32 -08001918 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 struct iattr attr;
1920 struct rpc_cred *cred;
1921 struct nfs4_state *state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001922 struct dentry *res;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001923 fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
1925 if (nd->flags & LOOKUP_CREATE) {
1926 attr.ia_mode = nd->intent.open.create_mode;
1927 attr.ia_valid = ATTR_MODE;
1928 if (!IS_POSIXACL(dir))
Al Viroce3b0f82009-03-29 19:08:22 -04001929 attr.ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 } else {
1931 attr.ia_valid = 0;
1932 BUG_ON(nd->intent.open.flags & O_CREAT);
1933 }
1934
Trond Myklebust98a8e322008-03-12 12:25:28 -04001935 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 if (IS_ERR(cred))
Trond Myklebust02a913a2005-10-18 14:20:17 -07001937 return (struct dentry *)cred;
Trond Myklebust565277f2007-10-15 18:17:53 -04001938 parent = dentry->d_parent;
1939 /* Protect against concurrent sillydeletes */
1940 nfs_block_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001941 state = nfs4_do_open(dir, &path, fmode, nd->intent.open.flags, &attr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001943 if (IS_ERR(state)) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001944 if (PTR_ERR(state) == -ENOENT) {
Trond Myklebust02a913a2005-10-18 14:20:17 -07001945 d_add(dentry, NULL);
Trond Myklebustd75340c2007-10-01 21:42:01 -04001946 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1947 }
Trond Myklebust565277f2007-10-15 18:17:53 -04001948 nfs_unblock_sillyrename(parent);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001949 return (struct dentry *)state;
1950 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001951 res = d_add_unique(dentry, igrab(state->inode));
Trond Myklebust02a913a2005-10-18 14:20:17 -07001952 if (res != NULL)
Trond Myklebustdeee9362007-08-27 11:33:00 -04001953 path.dentry = res;
Trond Myklebustd75340c2007-10-01 21:42:01 -04001954 nfs_set_verifier(path.dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001955 nfs_unblock_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001956 nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001957 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958}
1959
1960int
Trond Myklebust02a913a2005-10-18 14:20:17 -07001961nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962{
Trond Myklebustad389da2007-06-05 12:30:00 -04001963 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001964 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001965 .dentry = dentry,
1966 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 struct rpc_cred *cred;
1968 struct nfs4_state *state;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001969 fmode_t fmode = openflags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Trond Myklebust98a8e322008-03-12 12:25:28 -04001971 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 if (IS_ERR(cred))
1973 return PTR_ERR(cred);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001974 state = nfs4_do_open(dir, &path, fmode, openflags, NULL, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001976 if (IS_ERR(state)) {
1977 switch (PTR_ERR(state)) {
1978 case -EPERM:
1979 case -EACCES:
1980 case -EDQUOT:
1981 case -ENOSPC:
1982 case -EROFS:
1983 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1984 return 1;
Chuck Leverb87c0ad2006-10-19 23:28:42 -07001985 default:
1986 goto out_drop;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001987 }
Trond Myklebust02a913a2005-10-18 14:20:17 -07001988 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001989 if (state->inode == dentry->d_inode) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001990 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001991 nfs4_intent_set_file(nd, &path, state, fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 return 1;
1993 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001994 nfs4_close_sync(&path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001995out_drop:
1996 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 return 0;
1998}
1999
Trond Myklebust1185a552009-12-03 15:54:02 -05002000static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
Trond Myklebust7fe5c392009-03-19 15:35:50 -04002001{
2002 if (ctx->state == NULL)
2003 return;
2004 if (is_sync)
2005 nfs4_close_sync(&ctx->path, ctx->state, ctx->mode);
2006 else
2007 nfs4_close_state(&ctx->path, ctx->state, ctx->mode);
2008}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
2011{
Benny Halevy43652ad2009-04-01 09:21:54 -04002012 struct nfs4_server_caps_arg args = {
2013 .fhandle = fhandle,
2014 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 struct nfs4_server_caps_res res = {};
2016 struct rpc_message msg = {
2017 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
Benny Halevy43652ad2009-04-01 09:21:54 -04002018 .rpc_argp = &args,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 .rpc_resp = &res,
2020 };
2021 int status;
2022
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002023 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 if (status == 0) {
2025 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002026 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
2027 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
2028 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
2029 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
2030 NFS_CAP_CTIME|NFS_CAP_MTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
2032 server->caps |= NFS_CAP_ACLS;
2033 if (res.has_links != 0)
2034 server->caps |= NFS_CAP_HARDLINKS;
2035 if (res.has_symlinks != 0)
2036 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002037 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
2038 server->caps |= NFS_CAP_FILEID;
2039 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
2040 server->caps |= NFS_CAP_MODE;
2041 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
2042 server->caps |= NFS_CAP_NLINK;
2043 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
2044 server->caps |= NFS_CAP_OWNER;
2045 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
2046 server->caps |= NFS_CAP_OWNER_GROUP;
2047 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
2048 server->caps |= NFS_CAP_ATIME;
2049 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
2050 server->caps |= NFS_CAP_CTIME;
2051 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
2052 server->caps |= NFS_CAP_MTIME;
2053
Trond Myklebusta65318b2009-03-11 14:10:28 -04002054 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
2055 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
2056 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 server->acl_bitmask = res.acl_bitmask;
2058 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 return status;
2061}
2062
Trond Myklebust55a97592006-06-09 09:34:19 -04002063int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
2065 struct nfs4_exception exception = { };
2066 int err;
2067 do {
2068 err = nfs4_handle_exception(server,
2069 _nfs4_server_capabilities(server, fhandle),
2070 &exception);
2071 } while (exception.retry);
2072 return err;
2073}
2074
2075static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2076 struct nfs_fsinfo *info)
2077{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 struct nfs4_lookup_root_arg args = {
2079 .bitmask = nfs4_fattr_bitmap,
2080 };
2081 struct nfs4_lookup_res res = {
2082 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04002083 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 .fh = fhandle,
2085 };
2086 struct rpc_message msg = {
2087 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
2088 .rpc_argp = &args,
2089 .rpc_resp = &res,
2090 };
Benny Halevy008f55d2009-04-01 09:22:50 -04002091
Trond Myklebust0e574af2005-10-27 22:12:38 -04002092 nfs_fattr_init(info->fattr);
Trond Myklebustfccba802009-07-21 16:48:07 -04002093 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094}
2095
2096static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2097 struct nfs_fsinfo *info)
2098{
2099 struct nfs4_exception exception = { };
2100 int err;
2101 do {
2102 err = nfs4_handle_exception(server,
2103 _nfs4_lookup_root(server, fhandle, info),
2104 &exception);
2105 } while (exception.retry);
2106 return err;
2107}
2108
David Howells54ceac42006-08-22 20:06:13 -04002109/*
2110 * get the file handle for the "/" directory on the server
2111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04002113 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 int status;
2116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 if (status == 0)
2119 status = nfs4_server_capabilities(server, fhandle);
2120 if (status == 0)
2121 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08002122 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
Manoj Naik6b97fd32006-06-09 09:34:29 -04002125/*
2126 * Get locations and (maybe) other attributes of a referral.
2127 * Note that we'll actually follow the referral later when
2128 * we detect fsid mismatch in inode revalidation
2129 */
Trond Myklebust56659e92007-07-17 21:52:39 -04002130static 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 -04002131{
2132 int status = -ENOMEM;
2133 struct page *page = NULL;
2134 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04002135
2136 page = alloc_page(GFP_KERNEL);
2137 if (page == NULL)
2138 goto out;
2139 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
2140 if (locations == NULL)
2141 goto out;
2142
Trond Myklebustc228fd32007-01-13 02:28:11 -05002143 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002144 if (status != 0)
2145 goto out;
2146 /* Make sure server returned a different fsid for the referral */
2147 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07002148 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 -04002149 status = -EIO;
2150 goto out;
2151 }
2152
2153 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
2154 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
2155 if (!fattr->mode)
2156 fattr->mode = S_IFDIR;
2157 memset(fhandle, 0, sizeof(struct nfs_fh));
2158out:
2159 if (page)
2160 __free_page(page);
2161 if (locations)
2162 kfree(locations);
2163 return status;
2164}
2165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2167{
2168 struct nfs4_getattr_arg args = {
2169 .fh = fhandle,
2170 .bitmask = server->attr_bitmask,
2171 };
2172 struct nfs4_getattr_res res = {
2173 .fattr = fattr,
2174 .server = server,
2175 };
2176 struct rpc_message msg = {
2177 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
2178 .rpc_argp = &args,
2179 .rpc_resp = &res,
2180 };
2181
Trond Myklebust0e574af2005-10-27 22:12:38 -04002182 nfs_fattr_init(fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002183 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184}
2185
2186static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2187{
2188 struct nfs4_exception exception = { };
2189 int err;
2190 do {
2191 err = nfs4_handle_exception(server,
2192 _nfs4_proc_getattr(server, fhandle, fattr),
2193 &exception);
2194 } while (exception.retry);
2195 return err;
2196}
2197
2198/*
2199 * The file is not closed if it is opened due to the a request to change
2200 * the size of the file. The open call will not be needed once the
2201 * VFS layer lookup-intents are implemented.
2202 *
2203 * Close is called when the inode is destroyed.
2204 * If we haven't opened the file for O_WRONLY, we
2205 * need to in the size_change case to obtain a stateid.
2206 *
2207 * Got race?
2208 * Because OPEN is always done by name in nfsv4, it is
2209 * possible that we opened a different file by the same
2210 * name. We can recognize this race condition, but we
2211 * can't do anything about it besides returning an error.
2212 *
2213 * This will be fixed with VFS changes (lookup-intent).
2214 */
2215static int
2216nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
2217 struct iattr *sattr)
2218{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002219 struct inode *inode = dentry->d_inode;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002220 struct rpc_cred *cred = NULL;
Trond Myklebustd5308382005-11-04 15:33:38 -05002221 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 int status;
2223
Trond Myklebust0e574af2005-10-27 22:12:38 -04002224 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
Trond Myklebustd5308382005-11-04 15:33:38 -05002226 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002227 if (sattr->ia_valid & ATTR_FILE) {
2228 struct nfs_open_context *ctx;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002229
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002230 ctx = nfs_file_open_context(sattr->ia_file);
Neil Brown504e5182008-10-16 14:15:16 +11002231 if (ctx) {
2232 cred = ctx->cred;
2233 state = ctx->state;
2234 }
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002235 }
2236
2237 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04002238 if (status == 0)
2239 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 return status;
2241}
2242
Trond Myklebust56659e92007-07-17 21:52:39 -04002243static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
2244 const struct qstr *name, struct nfs_fh *fhandle,
David Howells2b3de442006-08-22 20:06:09 -04002245 struct nfs_fattr *fattr)
2246{
2247 int status;
2248 struct nfs4_lookup_arg args = {
2249 .bitmask = server->attr_bitmask,
2250 .dir_fh = dirfh,
2251 .name = name,
2252 };
2253 struct nfs4_lookup_res res = {
2254 .server = server,
2255 .fattr = fattr,
2256 .fh = fhandle,
2257 };
2258 struct rpc_message msg = {
2259 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
2260 .rpc_argp = &args,
2261 .rpc_resp = &res,
2262 };
2263
2264 nfs_fattr_init(fattr);
2265
2266 dprintk("NFS call lookupfh %s\n", name->name);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002267 status = nfs4_call_sync(server, &msg, &args, &res, 0);
David Howells2b3de442006-08-22 20:06:09 -04002268 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04002269 return status;
2270}
2271
2272static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
2273 struct qstr *name, struct nfs_fh *fhandle,
2274 struct nfs_fattr *fattr)
2275{
2276 struct nfs4_exception exception = { };
2277 int err;
2278 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04002279 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
2280 /* FIXME: !!!! */
2281 if (err == -NFS4ERR_MOVED) {
2282 err = -EREMOTE;
2283 break;
2284 }
2285 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04002286 } while (exception.retry);
2287 return err;
2288}
2289
Trond Myklebust56659e92007-07-17 21:52:39 -04002290static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2292{
Trond Myklebust4e56e082007-07-01 18:13:52 -04002293 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
2295 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04002296 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002297 if (status == -NFS4ERR_MOVED)
2298 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 dprintk("NFS reply lookup: %d\n", status);
2300 return status;
2301}
2302
2303static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2304{
2305 struct nfs4_exception exception = { };
2306 int err;
2307 do {
2308 err = nfs4_handle_exception(NFS_SERVER(dir),
2309 _nfs4_proc_lookup(dir, name, fhandle, fattr),
2310 &exception);
2311 } while (exception.retry);
2312 return err;
2313}
2314
2315static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2316{
Trond Myklebust76b32992007-08-10 17:45:11 -04002317 struct nfs_server *server = NFS_SERVER(inode);
2318 struct nfs_fattr fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 struct nfs4_accessargs args = {
2320 .fh = NFS_FH(inode),
Trond Myklebust76b32992007-08-10 17:45:11 -04002321 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 };
Trond Myklebust76b32992007-08-10 17:45:11 -04002323 struct nfs4_accessres res = {
2324 .server = server,
2325 .fattr = &fattr,
2326 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 struct rpc_message msg = {
2328 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
2329 .rpc_argp = &args,
2330 .rpc_resp = &res,
2331 .rpc_cred = entry->cred,
2332 };
2333 int mode = entry->mask;
2334 int status;
2335
2336 /*
2337 * Determine which access bits we want to ask for...
2338 */
2339 if (mode & MAY_READ)
2340 args.access |= NFS4_ACCESS_READ;
2341 if (S_ISDIR(inode->i_mode)) {
2342 if (mode & MAY_WRITE)
2343 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
2344 if (mode & MAY_EXEC)
2345 args.access |= NFS4_ACCESS_LOOKUP;
2346 } else {
2347 if (mode & MAY_WRITE)
2348 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
2349 if (mode & MAY_EXEC)
2350 args.access |= NFS4_ACCESS_EXECUTE;
2351 }
Trond Myklebust76b32992007-08-10 17:45:11 -04002352 nfs_fattr_init(&fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002353 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 if (!status) {
2355 entry->mask = 0;
2356 if (res.access & NFS4_ACCESS_READ)
2357 entry->mask |= MAY_READ;
2358 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
2359 entry->mask |= MAY_WRITE;
2360 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
2361 entry->mask |= MAY_EXEC;
Trond Myklebust76b32992007-08-10 17:45:11 -04002362 nfs_refresh_inode(inode, &fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 }
2364 return status;
2365}
2366
2367static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2368{
2369 struct nfs4_exception exception = { };
2370 int err;
2371 do {
2372 err = nfs4_handle_exception(NFS_SERVER(inode),
2373 _nfs4_proc_access(inode, entry),
2374 &exception);
2375 } while (exception.retry);
2376 return err;
2377}
2378
2379/*
2380 * TODO: For the time being, we don't try to get any attributes
2381 * along with any of the zero-copy operations READ, READDIR,
2382 * READLINK, WRITE.
2383 *
2384 * In the case of the first three, we want to put the GETATTR
2385 * after the read-type operation -- this is because it is hard
2386 * to predict the length of a GETATTR response in v4, and thus
2387 * align the READ data correctly. This means that the GETATTR
2388 * may end up partially falling into the page cache, and we should
2389 * shift it into the 'tail' of the xdr_buf before processing.
2390 * To do this efficiently, we need to know the total length
2391 * of data received, which doesn't seem to be available outside
2392 * of the RPC layer.
2393 *
2394 * In the case of WRITE, we also want to put the GETATTR after
2395 * the operation -- in this case because we want to make sure
2396 * we get the post-operation mtime and size. This means that
2397 * we can't use xdr_encode_pages() as written: we need a variant
2398 * of it which would leave room in the 'tail' iovec.
2399 *
2400 * Both of these changes to the XDR layer would in fact be quite
2401 * minor, but I decided to leave them for a subsequent patch.
2402 */
2403static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
2404 unsigned int pgbase, unsigned int pglen)
2405{
2406 struct nfs4_readlink args = {
2407 .fh = NFS_FH(inode),
2408 .pgbase = pgbase,
2409 .pglen = pglen,
2410 .pages = &page,
2411 };
Benny Halevyf50c7002009-04-01 09:21:55 -04002412 struct nfs4_readlink_res res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 struct rpc_message msg = {
2414 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
2415 .rpc_argp = &args,
Benny Halevyf50c7002009-04-01 09:21:55 -04002416 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 };
2418
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002419 return nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420}
2421
2422static int nfs4_proc_readlink(struct inode *inode, struct page *page,
2423 unsigned int pgbase, unsigned int pglen)
2424{
2425 struct nfs4_exception exception = { };
2426 int err;
2427 do {
2428 err = nfs4_handle_exception(NFS_SERVER(inode),
2429 _nfs4_proc_readlink(inode, page, pgbase, pglen),
2430 &exception);
2431 } while (exception.retry);
2432 return err;
2433}
2434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435/*
2436 * Got race?
2437 * We will need to arrange for the VFS layer to provide an atomic open.
2438 * Until then, this create/open method is prone to inefficiency and race
2439 * conditions due to the lookup, create, and open VFS calls from sys_open()
2440 * placed on the wire.
2441 *
2442 * Given the above sorry state of affairs, I'm simply sending an OPEN.
2443 * The file will be opened again in the subsequent VFS open call
2444 * (nfs4_proc_file_open).
2445 *
2446 * The open for read will just hang around to be used by any process that
2447 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
2448 */
2449
2450static int
2451nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07002452 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453{
Trond Myklebustad389da2007-06-05 12:30:00 -04002454 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08002455 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04002456 .dentry = dentry,
2457 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 struct nfs4_state *state;
2459 struct rpc_cred *cred;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002460 fmode_t fmode = flags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 int status = 0;
2462
Trond Myklebust98a8e322008-03-12 12:25:28 -04002463 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 if (IS_ERR(cred)) {
2465 status = PTR_ERR(cred);
2466 goto out;
2467 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002468 state = nfs4_do_open(dir, &path, fmode, flags, sattr, cred);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002469 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 if (IS_ERR(state)) {
2471 status = PTR_ERR(state);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002472 goto out_putcred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002474 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04002475 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 if (flags & O_EXCL) {
2477 struct nfs_fattr fattr;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002478 status = nfs4_do_setattr(state->inode, cred, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002479 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04002480 nfs_setattr_update_inode(state->inode, sattr);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002481 nfs_post_op_update_inode(state->inode, &fattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002482 }
Trond Myklebustad389da2007-06-05 12:30:00 -04002483 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002484 status = nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002485 else
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002486 nfs4_close_sync(&path, state, fmode);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002487out_putcred:
2488 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489out:
2490 return status;
2491}
2492
2493static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
2494{
Trond Myklebust16e42952005-10-27 22:12:44 -04002495 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002496 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 .fh = NFS_FH(dir),
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002498 .name.len = name->len,
2499 .name.name = name->name,
Trond Myklebust16e42952005-10-27 22:12:44 -04002500 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002502 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04002503 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04002504 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002506 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
2507 .rpc_argp = &args,
2508 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 };
2510 int status;
2511
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002512 nfs_fattr_init(&res.dir_attr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002513 status = nfs4_call_sync(server, &msg, &args, &res, 1);
Trond Myklebust16e42952005-10-27 22:12:44 -04002514 if (status == 0) {
2515 update_changeattr(dir, &res.cinfo);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002516 nfs_post_op_update_inode(dir, &res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04002517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 return status;
2519}
2520
2521static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
2522{
2523 struct nfs4_exception exception = { };
2524 int err;
2525 do {
2526 err = nfs4_handle_exception(NFS_SERVER(dir),
2527 _nfs4_proc_remove(dir, name),
2528 &exception);
2529 } while (exception.retry);
2530 return err;
2531}
2532
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002533static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002535 struct nfs_server *server = NFS_SERVER(dir);
2536 struct nfs_removeargs *args = msg->rpc_argp;
2537 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
Trond Myklebusta65318b2009-03-11 14:10:28 -04002539 args->bitmask = server->cache_consistency_bitmask;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002540 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542}
2543
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002544static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002546 struct nfs_removeres *res = task->tk_msg.rpc_resp;
2547
Andy Adamson472cfbd2009-04-01 09:22:24 -04002548 nfs4_sequence_done(res->server, &res->seq_res, task->tk_status);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002549 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002550 return 0;
2551 update_changeattr(dir, &res->cinfo);
2552 nfs_post_op_update_inode(dir, &res->dir_attr);
2553 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554}
2555
2556static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2557 struct inode *new_dir, struct qstr *new_name)
2558{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002559 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 struct nfs4_rename_arg arg = {
2561 .old_dir = NFS_FH(old_dir),
2562 .new_dir = NFS_FH(new_dir),
2563 .old_name = old_name,
2564 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002565 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002567 struct nfs_fattr old_fattr, new_fattr;
2568 struct nfs4_rename_res res = {
2569 .server = server,
2570 .old_fattr = &old_fattr,
2571 .new_fattr = &new_fattr,
2572 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 struct rpc_message msg = {
2574 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2575 .rpc_argp = &arg,
2576 .rpc_resp = &res,
2577 };
2578 int status;
2579
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002580 nfs_fattr_init(res.old_fattr);
2581 nfs_fattr_init(res.new_fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002582 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
2584 if (!status) {
2585 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002586 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002588 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 }
2590 return status;
2591}
2592
2593static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2594 struct inode *new_dir, struct qstr *new_name)
2595{
2596 struct nfs4_exception exception = { };
2597 int err;
2598 do {
2599 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2600 _nfs4_proc_rename(old_dir, old_name,
2601 new_dir, new_name),
2602 &exception);
2603 } while (exception.retry);
2604 return err;
2605}
2606
2607static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2608{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002609 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 struct nfs4_link_arg arg = {
2611 .fh = NFS_FH(inode),
2612 .dir_fh = NFS_FH(dir),
2613 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002614 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002616 struct nfs_fattr fattr, dir_attr;
2617 struct nfs4_link_res res = {
2618 .server = server,
2619 .fattr = &fattr,
2620 .dir_attr = &dir_attr,
2621 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 struct rpc_message msg = {
2623 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2624 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002625 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 };
2627 int status;
2628
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002629 nfs_fattr_init(res.fattr);
2630 nfs_fattr_init(res.dir_attr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002631 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002632 if (!status) {
2633 update_changeattr(dir, &res.cinfo);
2634 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002635 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
2638 return status;
2639}
2640
2641static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2642{
2643 struct nfs4_exception exception = { };
2644 int err;
2645 do {
2646 err = nfs4_handle_exception(NFS_SERVER(inode),
2647 _nfs4_proc_link(inode, dir, name),
2648 &exception);
2649 } while (exception.retry);
2650 return err;
2651}
2652
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002653struct nfs4_createdata {
2654 struct rpc_message msg;
2655 struct nfs4_create_arg arg;
2656 struct nfs4_create_res res;
2657 struct nfs_fh fh;
2658 struct nfs_fattr fattr;
2659 struct nfs_fattr dir_fattr;
2660};
2661
2662static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2663 struct qstr *name, struct iattr *sattr, u32 ftype)
2664{
2665 struct nfs4_createdata *data;
2666
2667 data = kzalloc(sizeof(*data), GFP_KERNEL);
2668 if (data != NULL) {
2669 struct nfs_server *server = NFS_SERVER(dir);
2670
2671 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2672 data->msg.rpc_argp = &data->arg;
2673 data->msg.rpc_resp = &data->res;
2674 data->arg.dir_fh = NFS_FH(dir);
2675 data->arg.server = server;
2676 data->arg.name = name;
2677 data->arg.attrs = sattr;
2678 data->arg.ftype = ftype;
2679 data->arg.bitmask = server->attr_bitmask;
2680 data->res.server = server;
2681 data->res.fh = &data->fh;
2682 data->res.fattr = &data->fattr;
2683 data->res.dir_fattr = &data->dir_fattr;
2684 nfs_fattr_init(data->res.fattr);
2685 nfs_fattr_init(data->res.dir_fattr);
2686 }
2687 return data;
2688}
2689
2690static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2691{
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002692 int status = nfs4_call_sync(NFS_SERVER(dir), &data->msg,
2693 &data->arg, &data->res, 1);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002694 if (status == 0) {
2695 update_changeattr(dir, &data->res.dir_cinfo);
2696 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2697 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2698 }
2699 return status;
2700}
2701
2702static void nfs4_free_createdata(struct nfs4_createdata *data)
2703{
2704 kfree(data);
2705}
2706
Chuck Lever4f390c12006-08-22 20:06:22 -04002707static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002708 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002710 struct nfs4_createdata *data;
2711 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Chuck Lever94a6d752006-08-22 20:06:23 -04002713 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002714 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04002715
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002716 status = -ENOMEM;
2717 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2718 if (data == NULL)
2719 goto out;
2720
2721 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2722 data->arg.u.symlink.pages = &page;
2723 data->arg.u.symlink.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002725 status = nfs4_do_create(dir, dentry, data);
2726
2727 nfs4_free_createdata(data);
2728out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 return status;
2730}
2731
Chuck Lever4f390c12006-08-22 20:06:22 -04002732static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002733 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734{
2735 struct nfs4_exception exception = { };
2736 int err;
2737 do {
2738 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002739 _nfs4_proc_symlink(dir, dentry, page,
2740 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 &exception);
2742 } while (exception.retry);
2743 return err;
2744}
2745
2746static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2747 struct iattr *sattr)
2748{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002749 struct nfs4_createdata *data;
2750 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002752 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2753 if (data == NULL)
2754 goto out;
2755
2756 status = nfs4_do_create(dir, dentry, data);
2757
2758 nfs4_free_createdata(data);
2759out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 return status;
2761}
2762
2763static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2764 struct iattr *sattr)
2765{
2766 struct nfs4_exception exception = { };
2767 int err;
2768 do {
2769 err = nfs4_handle_exception(NFS_SERVER(dir),
2770 _nfs4_proc_mkdir(dir, dentry, sattr),
2771 &exception);
2772 } while (exception.retry);
2773 return err;
2774}
2775
2776static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2777 u64 cookie, struct page *page, unsigned int count, int plus)
2778{
2779 struct inode *dir = dentry->d_inode;
2780 struct nfs4_readdir_arg args = {
2781 .fh = NFS_FH(dir),
2782 .pages = &page,
2783 .pgbase = 0,
2784 .count = count,
Trond Myklebust96d25e52009-11-11 16:15:42 +09002785 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 };
2787 struct nfs4_readdir_res res;
2788 struct rpc_message msg = {
2789 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2790 .rpc_argp = &args,
2791 .rpc_resp = &res,
2792 .rpc_cred = cred,
2793 };
2794 int status;
2795
Harvey Harrison3110ff82008-05-02 13:42:44 -07002796 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00002797 dentry->d_parent->d_name.name,
2798 dentry->d_name.name,
2799 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2801 res.pgbase = args.pgbase;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002802 status = nfs4_call_sync(NFS_SERVER(dir), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 if (status == 0)
2804 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustc4812992007-09-28 17:11:45 -04002805
2806 nfs_invalidate_atime(dir);
2807
Harvey Harrison3110ff82008-05-02 13:42:44 -07002808 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 return status;
2810}
2811
2812static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2813 u64 cookie, struct page *page, unsigned int count, int plus)
2814{
2815 struct nfs4_exception exception = { };
2816 int err;
2817 do {
2818 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2819 _nfs4_proc_readdir(dentry, cred, cookie,
2820 page, count, plus),
2821 &exception);
2822 } while (exception.retry);
2823 return err;
2824}
2825
2826static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2827 struct iattr *sattr, dev_t rdev)
2828{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002829 struct nfs4_createdata *data;
2830 int mode = sattr->ia_mode;
2831 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
2833 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2834 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002835
2836 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
2837 if (data == NULL)
2838 goto out;
2839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002841 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002843 data->arg.ftype = NF4BLK;
2844 data->arg.u.device.specdata1 = MAJOR(rdev);
2845 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 }
2847 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002848 data->arg.ftype = NF4CHR;
2849 data->arg.u.device.specdata1 = MAJOR(rdev);
2850 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002853 status = nfs4_do_create(dir, dentry, data);
2854
2855 nfs4_free_createdata(data);
2856out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 return status;
2858}
2859
2860static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2861 struct iattr *sattr, dev_t rdev)
2862{
2863 struct nfs4_exception exception = { };
2864 int err;
2865 do {
2866 err = nfs4_handle_exception(NFS_SERVER(dir),
2867 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2868 &exception);
2869 } while (exception.retry);
2870 return err;
2871}
2872
2873static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2874 struct nfs_fsstat *fsstat)
2875{
2876 struct nfs4_statfs_arg args = {
2877 .fh = fhandle,
2878 .bitmask = server->attr_bitmask,
2879 };
Benny Halevy24ad1482009-04-01 09:21:56 -04002880 struct nfs4_statfs_res res = {
2881 .fsstat = fsstat,
2882 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 struct rpc_message msg = {
2884 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2885 .rpc_argp = &args,
Benny Halevy24ad1482009-04-01 09:21:56 -04002886 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 };
2888
Trond Myklebust0e574af2005-10-27 22:12:38 -04002889 nfs_fattr_init(fsstat->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002890 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891}
2892
2893static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2894{
2895 struct nfs4_exception exception = { };
2896 int err;
2897 do {
2898 err = nfs4_handle_exception(server,
2899 _nfs4_proc_statfs(server, fhandle, fsstat),
2900 &exception);
2901 } while (exception.retry);
2902 return err;
2903}
2904
2905static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2906 struct nfs_fsinfo *fsinfo)
2907{
2908 struct nfs4_fsinfo_arg args = {
2909 .fh = fhandle,
2910 .bitmask = server->attr_bitmask,
2911 };
Benny Halevy3dda5e42009-04-01 09:21:57 -04002912 struct nfs4_fsinfo_res res = {
2913 .fsinfo = fsinfo,
2914 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 struct rpc_message msg = {
2916 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2917 .rpc_argp = &args,
Benny Halevy3dda5e42009-04-01 09:21:57 -04002918 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 };
2920
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002921 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922}
2923
2924static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2925{
2926 struct nfs4_exception exception = { };
2927 int err;
2928
2929 do {
2930 err = nfs4_handle_exception(server,
2931 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2932 &exception);
2933 } while (exception.retry);
2934 return err;
2935}
2936
2937static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2938{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002939 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2941}
2942
2943static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2944 struct nfs_pathconf *pathconf)
2945{
2946 struct nfs4_pathconf_arg args = {
2947 .fh = fhandle,
2948 .bitmask = server->attr_bitmask,
2949 };
Benny Halevyd45b2982009-04-01 09:21:58 -04002950 struct nfs4_pathconf_res res = {
2951 .pathconf = pathconf,
2952 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 struct rpc_message msg = {
2954 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2955 .rpc_argp = &args,
Benny Halevyd45b2982009-04-01 09:21:58 -04002956 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 };
2958
2959 /* None of the pathconf attributes are mandatory to implement */
2960 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2961 memset(pathconf, 0, sizeof(*pathconf));
2962 return 0;
2963 }
2964
Trond Myklebust0e574af2005-10-27 22:12:38 -04002965 nfs_fattr_init(pathconf->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002966 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967}
2968
2969static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2970 struct nfs_pathconf *pathconf)
2971{
2972 struct nfs4_exception exception = { };
2973 int err;
2974
2975 do {
2976 err = nfs4_handle_exception(server,
2977 _nfs4_proc_pathconf(server, fhandle, pathconf),
2978 &exception);
2979 } while (exception.retry);
2980 return err;
2981}
2982
Trond Myklebustec06c092006-03-20 13:44:27 -05002983static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984{
Trond Myklebustec06c092006-03-20 13:44:27 -05002985 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Andy Adamsonf11c88a2009-04-01 09:22:25 -04002987 dprintk("--> %s\n", __func__);
2988
Andy Adamsonf11c88a2009-04-01 09:22:25 -04002989 nfs4_sequence_done(server, &data->res.seq_res, task->tk_status);
2990
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002991 if (nfs4_async_handle_error(task, server, data->args.context->state) == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05002992 nfs_restart_rpc(task, server->nfs_client);
Trond Myklebustec06c092006-03-20 13:44:27 -05002993 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 }
Trond Myklebust8850df92007-09-28 17:20:07 -04002995
2996 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002998 renew_lease(server, data->timestamp);
2999 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000}
3001
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003002static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 data->timestamp = jiffies;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003005 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006}
3007
Trond Myklebust788e7a82006-03-20 13:44:27 -05003008static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 struct inode *inode = data->inode;
3011
Andy Adamsondef6ed72009-04-01 09:22:26 -04003012 nfs4_sequence_done(NFS_SERVER(inode), &data->res.seq_res,
3013 task->tk_status);
3014
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003015 if (nfs4_async_handle_error(task, NFS_SERVER(inode), data->args.context->state) == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05003016 nfs_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003017 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003019 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust70ca8852007-09-30 15:21:24 -04003021 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003022 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05003023 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024}
3025
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003026static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027{
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003028 struct nfs_server *server = NFS_SERVER(data->inode);
3029
Trond Myklebusta65318b2009-03-11 14:10:28 -04003030 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003031 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 data->timestamp = jiffies;
3033
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003034 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035}
3036
Trond Myklebust788e7a82006-03-20 13:44:27 -05003037static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 struct inode *inode = data->inode;
3040
Andy Adamson21d9a852009-04-01 09:22:27 -04003041 nfs4_sequence_done(NFS_SERVER(inode), &data->res.seq_res,
3042 task->tk_status);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003043 if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05003044 nfs_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003045 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 }
Trond Myklebust9e08a3c2007-10-08 14:10:31 -04003047 nfs_refresh_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003048 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049}
3050
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003051static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052{
Trond Myklebust788e7a82006-03-20 13:44:27 -05003053 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054
Trond Myklebusta65318b2009-03-11 14:10:28 -04003055 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003056 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003057 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058}
3059
3060/*
3061 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
3062 * standalone procedure for queueing an asynchronous RENEW.
3063 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003064static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065{
David Howellsadfa6f92006-08-22 20:06:08 -04003066 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003067 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
3069 if (task->tk_status < 0) {
Trond Myklebust95baa252009-05-26 14:51:00 -04003070 /* Unless we're shutting down, schedule state recovery! */
3071 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) != 0)
3072 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 return;
3074 }
3075 spin_lock(&clp->cl_lock);
3076 if (time_before(clp->cl_last_renewal,timestamp))
3077 clp->cl_last_renewal = timestamp;
3078 spin_unlock(&clp->cl_lock);
3079}
3080
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003081static const struct rpc_call_ops nfs4_renew_ops = {
3082 .rpc_call_done = nfs4_renew_done,
3083};
3084
David Howellsadfa6f92006-08-22 20:06:08 -04003085int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086{
3087 struct rpc_message msg = {
3088 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3089 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003090 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 };
3092
3093 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003094 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095}
3096
David Howellsadfa6f92006-08-22 20:06:08 -04003097int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098{
3099 struct rpc_message msg = {
3100 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3101 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003102 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 };
3104 unsigned long now = jiffies;
3105 int status;
3106
3107 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3108 if (status < 0)
3109 return status;
3110 spin_lock(&clp->cl_lock);
3111 if (time_before(clp->cl_last_renewal,now))
3112 clp->cl_last_renewal = now;
3113 spin_unlock(&clp->cl_lock);
3114 return 0;
3115}
3116
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003117static inline int nfs4_server_supports_acls(struct nfs_server *server)
3118{
3119 return (server->caps & NFS_CAP_ACLS)
3120 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
3121 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
3122}
3123
3124/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
3125 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
3126 * the stack.
3127 */
3128#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
3129
3130static void buf_to_pages(const void *buf, size_t buflen,
3131 struct page **pages, unsigned int *pgbase)
3132{
3133 const void *p = buf;
3134
3135 *pgbase = offset_in_page(buf);
3136 p -= *pgbase;
3137 while (p < buf + buflen) {
3138 *(pages++) = virt_to_page(p);
3139 p += PAGE_CACHE_SIZE;
3140 }
3141}
3142
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003143struct nfs4_cached_acl {
3144 int cached;
3145 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00003146 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003147};
3148
3149static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003150{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003151 struct nfs_inode *nfsi = NFS_I(inode);
3152
3153 spin_lock(&inode->i_lock);
3154 kfree(nfsi->nfs4_acl);
3155 nfsi->nfs4_acl = acl;
3156 spin_unlock(&inode->i_lock);
3157}
3158
3159static void nfs4_zap_acl_attr(struct inode *inode)
3160{
3161 nfs4_set_cached_acl(inode, NULL);
3162}
3163
3164static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
3165{
3166 struct nfs_inode *nfsi = NFS_I(inode);
3167 struct nfs4_cached_acl *acl;
3168 int ret = -ENOENT;
3169
3170 spin_lock(&inode->i_lock);
3171 acl = nfsi->nfs4_acl;
3172 if (acl == NULL)
3173 goto out;
3174 if (buf == NULL) /* user is just asking for length */
3175 goto out_len;
3176 if (acl->cached == 0)
3177 goto out;
3178 ret = -ERANGE; /* see getxattr(2) man page */
3179 if (acl->len > buflen)
3180 goto out;
3181 memcpy(buf, acl->data, acl->len);
3182out_len:
3183 ret = acl->len;
3184out:
3185 spin_unlock(&inode->i_lock);
3186 return ret;
3187}
3188
3189static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
3190{
3191 struct nfs4_cached_acl *acl;
3192
3193 if (buf && acl_len <= PAGE_SIZE) {
3194 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
3195 if (acl == NULL)
3196 goto out;
3197 acl->cached = 1;
3198 memcpy(acl->data, buf, acl_len);
3199 } else {
3200 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
3201 if (acl == NULL)
3202 goto out;
3203 acl->cached = 0;
3204 }
3205 acl->len = acl_len;
3206out:
3207 nfs4_set_cached_acl(inode, acl);
3208}
3209
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003210static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003211{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003212 struct page *pages[NFS4ACL_MAXPAGES];
3213 struct nfs_getaclargs args = {
3214 .fh = NFS_FH(inode),
3215 .acl_pages = pages,
3216 .acl_len = buflen,
3217 };
Benny Halevy663c79b2009-04-01 09:21:59 -04003218 struct nfs_getaclres res = {
3219 .acl_len = buflen,
3220 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003221 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003222 struct rpc_message msg = {
3223 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
3224 .rpc_argp = &args,
Benny Halevy663c79b2009-04-01 09:21:59 -04003225 .rpc_resp = &res,
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003226 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003227 struct page *localpage = NULL;
3228 int ret;
3229
3230 if (buflen < PAGE_SIZE) {
3231 /* As long as we're doing a round trip to the server anyway,
3232 * let's be prepared for a page of acl data. */
3233 localpage = alloc_page(GFP_KERNEL);
3234 resp_buf = page_address(localpage);
3235 if (localpage == NULL)
3236 return -ENOMEM;
3237 args.acl_pages[0] = localpage;
3238 args.acl_pgbase = 0;
Benny Halevy663c79b2009-04-01 09:21:59 -04003239 args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003240 } else {
3241 resp_buf = buf;
3242 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
3243 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003244 ret = nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003245 if (ret)
3246 goto out_free;
Benny Halevy663c79b2009-04-01 09:21:59 -04003247 if (res.acl_len > args.acl_len)
3248 nfs4_write_cached_acl(inode, NULL, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003249 else
Benny Halevy663c79b2009-04-01 09:21:59 -04003250 nfs4_write_cached_acl(inode, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003251 if (buf) {
3252 ret = -ERANGE;
Benny Halevy663c79b2009-04-01 09:21:59 -04003253 if (res.acl_len > buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003254 goto out_free;
3255 if (localpage)
Benny Halevy663c79b2009-04-01 09:21:59 -04003256 memcpy(buf, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003257 }
Benny Halevy663c79b2009-04-01 09:21:59 -04003258 ret = res.acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003259out_free:
3260 if (localpage)
3261 __free_page(localpage);
3262 return ret;
3263}
3264
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003265static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
3266{
3267 struct nfs4_exception exception = { };
3268 ssize_t ret;
3269 do {
3270 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
3271 if (ret >= 0)
3272 break;
3273 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
3274 } while (exception.retry);
3275 return ret;
3276}
3277
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003278static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
3279{
3280 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003281 int ret;
3282
3283 if (!nfs4_server_supports_acls(server))
3284 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003285 ret = nfs_revalidate_inode(server, inode);
3286 if (ret < 0)
3287 return ret;
3288 ret = nfs4_read_cached_acl(inode, buf, buflen);
3289 if (ret != -ENOENT)
3290 return ret;
3291 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003292}
3293
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003294static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003295{
3296 struct nfs_server *server = NFS_SERVER(inode);
3297 struct page *pages[NFS4ACL_MAXPAGES];
3298 struct nfs_setaclargs arg = {
3299 .fh = NFS_FH(inode),
3300 .acl_pages = pages,
3301 .acl_len = buflen,
3302 };
Benny Halevy73c403a2009-04-01 09:22:01 -04003303 struct nfs_setaclres res;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003304 struct rpc_message msg = {
3305 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
3306 .rpc_argp = &arg,
Benny Halevy73c403a2009-04-01 09:22:01 -04003307 .rpc_resp = &res,
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003308 };
3309 int ret;
3310
3311 if (!nfs4_server_supports_acls(server))
3312 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07003313 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003314 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003315 ret = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebustf41f7412008-06-11 17:39:04 -04003316 nfs_access_zap_cache(inode);
3317 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003318 return ret;
3319}
3320
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003321static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
3322{
3323 struct nfs4_exception exception = { };
3324 int err;
3325 do {
3326 err = nfs4_handle_exception(NFS_SERVER(inode),
3327 __nfs4_proc_set_acl(inode, buf, buflen),
3328 &exception);
3329 } while (exception.retry);
3330 return err;
3331}
3332
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333static int
Andy Adamson8328d592009-04-01 09:22:35 -04003334_nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, struct nfs_client *clp, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 if (!clp || task->tk_status >= 0)
3337 return 0;
3338 switch(task->tk_status) {
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003339 case -NFS4ERR_ADMIN_REVOKED:
3340 case -NFS4ERR_BAD_STATEID:
3341 case -NFS4ERR_OPENMODE:
3342 if (state == NULL)
3343 break;
3344 nfs4_state_mark_reclaim_nograce(clp, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 case -NFS4ERR_STALE_CLIENTID:
3346 case -NFS4ERR_STALE_STATEID:
3347 case -NFS4ERR_EXPIRED:
Trond Myklebust5d008372008-02-22 16:34:17 -05003348 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 nfs4_schedule_state_recovery(clp);
Trond Myklebuste005e802008-12-23 15:21:48 -05003350 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
Trond Myklebustfda13932008-02-22 16:34:12 -05003351 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 task->tk_status = 0;
3353 return -EAGAIN;
Andy Adamson4745e312009-04-01 09:22:42 -04003354#if defined(CONFIG_NFS_V4_1)
3355 case -NFS4ERR_BADSESSION:
3356 case -NFS4ERR_BADSLOT:
3357 case -NFS4ERR_BAD_HIGH_SLOT:
3358 case -NFS4ERR_DEADSESSION:
3359 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
3360 case -NFS4ERR_SEQ_FALSE_RETRY:
3361 case -NFS4ERR_SEQ_MISORDERED:
3362 dprintk("%s ERROR %d, Reset session\n", __func__,
3363 task->tk_status);
Andy Adamson0b9e2d42009-12-04 16:02:14 -05003364 nfs4_schedule_state_recovery(clp);
Andy Adamson4745e312009-04-01 09:22:42 -04003365 task->tk_status = 0;
3366 return -EAGAIN;
3367#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 case -NFS4ERR_DELAY:
Andy Adamson8328d592009-04-01 09:22:35 -04003369 if (server)
3370 nfs_inc_server_stats(server, NFSIOS_DELAY);
Chuck Lever006ea732006-03-20 13:44:14 -05003371 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 rpc_delay(task, NFS4_POLL_RETRY_MAX);
3373 task->tk_status = 0;
3374 return -EAGAIN;
3375 case -NFS4ERR_OLD_STATEID:
3376 task->tk_status = 0;
3377 return -EAGAIN;
3378 }
3379 task->tk_status = nfs4_map_errors(task->tk_status);
3380 return 0;
3381}
3382
Andy Adamson8328d592009-04-01 09:22:35 -04003383static int
3384nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, struct nfs4_state *state)
3385{
3386 return _nfs4_async_handle_error(task, server, server->nfs_client, state);
3387}
3388
David Howellsadfa6f92006-08-22 20:06:08 -04003389int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390{
3391 nfs4_verifier sc_verifier;
3392 struct nfs4_setclientid setclientid = {
3393 .sc_verifier = &sc_verifier,
3394 .sc_prog = program,
3395 };
3396 struct rpc_message msg = {
3397 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
3398 .rpc_argp = &setclientid,
3399 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003400 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 };
Al Virobc4785c2006-10-19 23:28:51 -07003402 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 int loop = 0;
3404 int status;
3405
Al Virobc4785c2006-10-19 23:28:51 -07003406 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
3408 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
3409
3410 for(;;) {
3411 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05003412 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05003413 clp->cl_ipaddr,
3414 rpc_peeraddr2str(clp->cl_rpcclient,
3415 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05003416 rpc_peeraddr2str(clp->cl_rpcclient,
3417 RPC_DISPLAY_PROTO),
Trond Myklebust78ea3232008-04-07 20:49:28 -04003418 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 clp->cl_id_uniquifier);
3420 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003421 sizeof(setclientid.sc_netid),
3422 rpc_peeraddr2str(clp->cl_rpcclient,
3423 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003425 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 clp->cl_ipaddr, port >> 8, port & 255);
3427
3428 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3429 if (status != -NFS4ERR_CLID_INUSE)
3430 break;
3431 if (signalled())
3432 break;
3433 if (loop++ & 1)
3434 ssleep(clp->cl_lease_time + 1);
3435 else
3436 if (++clp->cl_id_uniquifier == 0)
3437 break;
3438 }
3439 return status;
3440}
3441
David Howellsadfa6f92006-08-22 20:06:08 -04003442static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443{
3444 struct nfs_fsinfo fsinfo;
3445 struct rpc_message msg = {
3446 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
3447 .rpc_argp = clp,
3448 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003449 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 };
3451 unsigned long now;
3452 int status;
3453
3454 now = jiffies;
3455 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3456 if (status == 0) {
3457 spin_lock(&clp->cl_lock);
3458 clp->cl_lease_time = fsinfo.lease_time * HZ;
3459 clp->cl_last_renewal = now;
3460 spin_unlock(&clp->cl_lock);
3461 }
3462 return status;
3463}
3464
David Howellsadfa6f92006-08-22 20:06:08 -04003465int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05003466{
Benny Halevy77e03672008-06-24 20:25:57 +03003467 long timeout = 0;
Trond Myklebust51581f32006-03-20 13:44:47 -05003468 int err;
3469 do {
3470 err = _nfs4_proc_setclientid_confirm(clp, cred);
3471 switch (err) {
3472 case 0:
3473 return err;
3474 case -NFS4ERR_RESOURCE:
3475 /* The IBM lawyers misread another document! */
3476 case -NFS4ERR_DELAY:
3477 err = nfs4_delay(clp->cl_rpcclient, &timeout);
3478 }
3479 } while (err == 0);
3480 return err;
3481}
3482
Trond Myklebustfe650402006-01-03 09:55:18 +01003483struct nfs4_delegreturndata {
3484 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003485 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01003486 struct nfs_fh fh;
3487 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003488 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003489 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01003490 int rpc_status;
3491};
3492
Trond Myklebustfe650402006-01-03 09:55:18 +01003493static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
3494{
3495 struct nfs4_delegreturndata *data = calldata;
Andy Adamson938e1012009-04-01 09:22:28 -04003496
Trond Myklebustd61e6122009-12-05 19:32:19 -05003497 nfs4_sequence_done(data->res.server, &data->res.seq_res,
3498 task->tk_status);
Andy Adamson938e1012009-04-01 09:22:28 -04003499
Ricardo Labiaga79708862009-12-07 09:23:21 -05003500 switch (task->tk_status) {
3501 case -NFS4ERR_STALE_STATEID:
3502 case -NFS4ERR_EXPIRED:
3503 case 0:
Trond Myklebustfa178f22006-01-03 09:55:38 +01003504 renew_lease(data->res.server, data->timestamp);
Ricardo Labiaga79708862009-12-07 09:23:21 -05003505 break;
3506 default:
3507 if (nfs4_async_handle_error(task, data->res.server, NULL) ==
3508 -EAGAIN) {
3509 nfs_restart_rpc(task, data->res.server->nfs_client);
3510 return;
3511 }
3512 }
3513 data->rpc_status = task->tk_status;
Trond Myklebustfe650402006-01-03 09:55:18 +01003514}
3515
3516static void nfs4_delegreturn_release(void *calldata)
3517{
Trond Myklebustfe650402006-01-03 09:55:18 +01003518 kfree(calldata);
3519}
3520
Andy Adamson938e1012009-04-01 09:22:28 -04003521#if defined(CONFIG_NFS_V4_1)
3522static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
3523{
3524 struct nfs4_delegreturndata *d_data;
3525
3526 d_data = (struct nfs4_delegreturndata *)data;
3527
3528 if (nfs4_setup_sequence(d_data->res.server->nfs_client,
3529 &d_data->args.seq_args,
3530 &d_data->res.seq_res, 1, task))
3531 return;
3532 rpc_call_start(task);
3533}
3534#endif /* CONFIG_NFS_V4_1 */
3535
Jesper Juhlc8d149f2006-03-20 13:44:07 -05003536static const struct rpc_call_ops nfs4_delegreturn_ops = {
Andy Adamson938e1012009-04-01 09:22:28 -04003537#if defined(CONFIG_NFS_V4_1)
3538 .rpc_call_prepare = nfs4_delegreturn_prepare,
3539#endif /* CONFIG_NFS_V4_1 */
Trond Myklebustfe650402006-01-03 09:55:18 +01003540 .rpc_call_done = nfs4_delegreturn_done,
3541 .rpc_release = nfs4_delegreturn_release,
3542};
3543
Trond Myklebuste6f81072008-01-24 18:14:34 -05003544static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01003545{
3546 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003547 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01003548 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003549 struct rpc_message msg = {
3550 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
3551 .rpc_cred = cred,
3552 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003553 struct rpc_task_setup task_setup_data = {
3554 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04003555 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003556 .callback_ops = &nfs4_delegreturn_ops,
3557 .flags = RPC_TASK_ASYNC,
3558 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05003559 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01003560
Andy Adamson938e1012009-04-01 09:22:28 -04003561 data = kzalloc(sizeof(*data), GFP_KERNEL);
Trond Myklebustfe650402006-01-03 09:55:18 +01003562 if (data == NULL)
3563 return -ENOMEM;
3564 data->args.fhandle = &data->fh;
3565 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003566 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01003567 nfs_copy_fh(&data->fh, NFS_FH(inode));
3568 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01003569 data->res.fattr = &data->fattr;
3570 data->res.server = server;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003571 data->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003572 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003573 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01003574 data->rpc_status = 0;
3575
Trond Myklebustc970aa82007-07-14 15:39:59 -04003576 task_setup_data.callback_data = data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003577 msg.rpc_argp = &data->args,
3578 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003579 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003580 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003581 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003582 if (!issync)
3583 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01003584 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003585 if (status != 0)
3586 goto out;
3587 status = data->rpc_status;
3588 if (status != 0)
3589 goto out;
3590 nfs_refresh_inode(inode, &data->fattr);
3591out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003592 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003593 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594}
3595
Trond Myklebuste6f81072008-01-24 18:14:34 -05003596int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597{
3598 struct nfs_server *server = NFS_SERVER(inode);
3599 struct nfs4_exception exception = { };
3600 int err;
3601 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05003602 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 switch (err) {
3604 case -NFS4ERR_STALE_STATEID:
3605 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 case 0:
3607 return 0;
3608 }
3609 err = nfs4_handle_exception(server, err, &exception);
3610 } while (exception.retry);
3611 return err;
3612}
3613
3614#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3615#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3616
3617/*
3618 * sleep, with exponential backoff, and retry the LOCK operation.
3619 */
3620static unsigned long
3621nfs4_set_lock_task_retry(unsigned long timeout)
3622{
Matthew Wilcox150030b2007-12-06 16:24:39 -05003623 schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 timeout <<= 1;
3625 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3626 return NFS4_LOCK_MAXTIMEOUT;
3627 return timeout;
3628}
3629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3631{
3632 struct inode *inode = state->inode;
3633 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003634 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003635 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003637 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003639 struct nfs_lockt_res res = {
3640 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 };
3642 struct rpc_message msg = {
3643 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3644 .rpc_argp = &arg,
3645 .rpc_resp = &res,
3646 .rpc_cred = state->owner->so_cred,
3647 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 struct nfs4_lock_state *lsp;
3649 int status;
3650
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003651 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003652 status = nfs4_set_lock_state(state, request);
3653 if (status != 0)
3654 goto out;
3655 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003656 arg.lock_owner.id = lsp->ls_id.id;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003657 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003658 switch (status) {
3659 case 0:
3660 request->fl_type = F_UNLCK;
3661 break;
3662 case -NFS4ERR_DENIED:
3663 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003665 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003666out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 return status;
3668}
3669
3670static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3671{
3672 struct nfs4_exception exception = { };
3673 int err;
3674
3675 do {
3676 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3677 _nfs4_proc_getlk(state, cmd, request),
3678 &exception);
3679 } while (exception.retry);
3680 return err;
3681}
3682
3683static int do_vfs_lock(struct file *file, struct file_lock *fl)
3684{
3685 int res = 0;
3686 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3687 case FL_POSIX:
3688 res = posix_lock_file_wait(file, fl);
3689 break;
3690 case FL_FLOCK:
3691 res = flock_lock_file_wait(file, fl);
3692 break;
3693 default:
3694 BUG();
3695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 return res;
3697}
3698
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003699struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003700 struct nfs_locku_args arg;
3701 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003702 struct nfs4_lock_state *lsp;
3703 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003704 struct file_lock fl;
3705 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003706 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003707};
3708
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003709static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3710 struct nfs_open_context *ctx,
3711 struct nfs4_lock_state *lsp,
3712 struct nfs_seqid *seqid)
3713{
3714 struct nfs4_unlockdata *p;
3715 struct inode *inode = lsp->ls_state->inode;
3716
Andy Adamsona8936932009-04-01 09:22:23 -04003717 p = kzalloc(sizeof(*p), GFP_KERNEL);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003718 if (p == NULL)
3719 return NULL;
3720 p->arg.fh = NFS_FH(inode);
3721 p->arg.fl = &p->fl;
3722 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003723 p->res.seqid = seqid;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003724 p->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003725 p->arg.stateid = &lsp->ls_stateid;
3726 p->lsp = lsp;
3727 atomic_inc(&lsp->ls_count);
3728 /* Ensure we don't close file until we're done freeing locks! */
3729 p->ctx = get_nfs_open_context(ctx);
3730 memcpy(&p->fl, fl, sizeof(p->fl));
3731 p->server = NFS_SERVER(inode);
3732 return p;
3733}
3734
Trond Myklebust06f814a2006-01-03 09:55:07 +01003735static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003736{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003737 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003738 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003739 nfs4_put_lock_state(calldata->lsp);
3740 put_nfs_open_context(calldata->ctx);
3741 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003742}
3743
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003744static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003745{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003746 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003747
Andy Adamsona8936932009-04-01 09:22:23 -04003748 nfs4_sequence_done(calldata->server, &calldata->res.seq_res,
3749 task->tk_status);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003750 if (RPC_ASSASSINATED(task))
3751 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003752 switch (task->tk_status) {
3753 case 0:
3754 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003755 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003756 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003757 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003758 break;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003759 case -NFS4ERR_BAD_STATEID:
3760 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003761 case -NFS4ERR_STALE_STATEID:
3762 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003763 break;
3764 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003765 if (nfs4_async_handle_error(task, calldata->server, NULL) == -EAGAIN)
Trond Myklebust0110ee12009-12-07 09:00:24 -05003766 nfs_restart_rpc(task,
Trond Myklebustd61e6122009-12-05 19:32:19 -05003767 calldata->server->nfs_client);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003768 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003769}
3770
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003771static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003772{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003773 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003775 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003776 return;
3777 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003778 /* Note: exit _without_ running nfs4_locku_done */
3779 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003780 return;
3781 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003782 calldata->timestamp = jiffies;
Andy Adamsona8936932009-04-01 09:22:23 -04003783 if (nfs4_setup_sequence(calldata->server->nfs_client,
3784 &calldata->arg.seq_args,
3785 &calldata->res.seq_res, 1, task))
3786 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003787 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788}
3789
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003790static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003791 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003792 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003793 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003794};
3795
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003796static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3797 struct nfs_open_context *ctx,
3798 struct nfs4_lock_state *lsp,
3799 struct nfs_seqid *seqid)
3800{
3801 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003802 struct rpc_message msg = {
3803 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3804 .rpc_cred = ctx->cred,
3805 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003806 struct rpc_task_setup task_setup_data = {
3807 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003808 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003809 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003810 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003811 .flags = RPC_TASK_ASYNC,
3812 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003813
Frank Filz137d6ac2007-07-09 15:32:29 -07003814 /* Ensure this is an unlock - when canceling a lock, the
3815 * canceled lock is passed in, and it won't be an unlock.
3816 */
3817 fl->fl_type = F_UNLCK;
3818
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003819 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3820 if (data == NULL) {
3821 nfs_free_seqid(seqid);
3822 return ERR_PTR(-ENOMEM);
3823 }
3824
Trond Myklebust5138fde2007-07-14 15:40:01 -04003825 msg.rpc_argp = &data->arg,
3826 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003827 task_setup_data.callback_data = data;
3828 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003829}
3830
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3832{
Trond Myklebust19e03c52008-12-23 15:21:44 -05003833 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003834 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003835 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003836 struct rpc_task *task;
3837 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003838 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839
Trond Myklebust9b073572006-06-29 16:38:34 -04003840 status = nfs4_set_lock_state(state, request);
3841 /* Unlock _before_ we do the RPC call */
3842 request->fl_flags |= FL_EXISTS;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003843 down_read(&nfsi->rwsem);
3844 if (do_vfs_lock(request->fl_file, request) == -ENOENT) {
3845 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003846 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003847 }
3848 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003849 if (status != 0)
3850 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003851 /* Is this a delegated lock? */
3852 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003853 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003854 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003855 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003856 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003857 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003858 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003859 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003860 status = PTR_ERR(task);
3861 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003862 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003863 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003864 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003865out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003866 request->fl_flags = fl_flags;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003867 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868}
3869
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003870struct nfs4_lockdata {
3871 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003872 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003873 struct nfs4_lock_state *lsp;
3874 struct nfs_open_context *ctx;
3875 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003876 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003877 int rpc_status;
3878 int cancelled;
Andy Adamson66179ef2009-04-01 09:22:22 -04003879 struct nfs_server *server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003880};
3881
3882static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3883 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3884{
3885 struct nfs4_lockdata *p;
3886 struct inode *inode = lsp->ls_state->inode;
3887 struct nfs_server *server = NFS_SERVER(inode);
3888
3889 p = kzalloc(sizeof(*p), GFP_KERNEL);
3890 if (p == NULL)
3891 return NULL;
3892
3893 p->arg.fh = NFS_FH(inode);
3894 p->arg.fl = &p->fl;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003895 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid);
3896 if (p->arg.open_seqid == NULL)
3897 goto out_free;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003898 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3899 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003900 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003901 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003902 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003903 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003904 p->res.lock_seqid = p->arg.lock_seqid;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003905 p->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003906 p->lsp = lsp;
Andy Adamson66179ef2009-04-01 09:22:22 -04003907 p->server = server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003908 atomic_inc(&lsp->ls_count);
3909 p->ctx = get_nfs_open_context(ctx);
3910 memcpy(&p->fl, fl, sizeof(p->fl));
3911 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003912out_free_seqid:
3913 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003914out_free:
3915 kfree(p);
3916 return NULL;
3917}
3918
3919static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3920{
3921 struct nfs4_lockdata *data = calldata;
3922 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
Harvey Harrison3110ff82008-05-02 13:42:44 -07003924 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003925 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3926 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003927 /* Do we need to do an open_to_lock_owner? */
3928 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05003929 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
3930 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003931 data->arg.open_stateid = &state->stateid;
3932 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003933 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003934 } else
3935 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003936 data->timestamp = jiffies;
Andy Adamson66179ef2009-04-01 09:22:22 -04003937 if (nfs4_setup_sequence(data->server->nfs_client, &data->arg.seq_args,
3938 &data->res.seq_res, 1, task))
3939 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003940 rpc_call_start(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003941 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003942}
3943
3944static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3945{
3946 struct nfs4_lockdata *data = calldata;
3947
Harvey Harrison3110ff82008-05-02 13:42:44 -07003948 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003949
Trond Myklebustd61e6122009-12-05 19:32:19 -05003950 nfs4_sequence_done(data->server, &data->res.seq_res,
3951 task->tk_status);
Andy Adamson66179ef2009-04-01 09:22:22 -04003952
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003953 data->rpc_status = task->tk_status;
3954 if (RPC_ASSASSINATED(task))
3955 goto out;
3956 if (data->arg.new_lock_owner != 0) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003957 if (data->rpc_status == 0)
3958 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3959 else
3960 goto out;
3961 }
3962 if (data->rpc_status == 0) {
3963 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3964 sizeof(data->lsp->ls_stateid.data));
3965 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04003966 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003967 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003968out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003969 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003970}
3971
3972static void nfs4_lock_release(void *calldata)
3973{
3974 struct nfs4_lockdata *data = calldata;
3975
Harvey Harrison3110ff82008-05-02 13:42:44 -07003976 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003977 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003978 if (data->cancelled != 0) {
3979 struct rpc_task *task;
3980 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3981 data->arg.lock_seqid);
3982 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003983 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003984 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003985 } else
3986 nfs_free_seqid(data->arg.lock_seqid);
3987 nfs4_put_lock_state(data->lsp);
3988 put_nfs_open_context(data->ctx);
3989 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003990 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003991}
3992
3993static const struct rpc_call_ops nfs4_lock_ops = {
3994 .rpc_call_prepare = nfs4_lock_prepare,
3995 .rpc_call_done = nfs4_lock_done,
3996 .rpc_release = nfs4_lock_release,
3997};
3998
3999static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
4000{
4001 struct nfs4_lockdata *data;
4002 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004003 struct rpc_message msg = {
4004 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
4005 .rpc_cred = state->owner->so_cred,
4006 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04004007 struct rpc_task_setup task_setup_data = {
4008 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04004009 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004010 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05004011 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004012 .flags = RPC_TASK_ASYNC,
4013 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004014 int ret;
4015
Harvey Harrison3110ff82008-05-02 13:42:44 -07004016 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004017 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004018 fl->fl_u.nfs4_fl.owner);
4019 if (data == NULL)
4020 return -ENOMEM;
4021 if (IS_SETLKW(cmd))
4022 data->arg.block = 1;
4023 if (reclaim != 0)
4024 data->arg.reclaim = 1;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004025 msg.rpc_argp = &data->arg,
4026 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004027 task_setup_data.callback_data = data;
4028 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05004029 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004030 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004031 ret = nfs4_wait_for_completion_rpc_task(task);
4032 if (ret == 0) {
4033 ret = data->rpc_status;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004034 } else
4035 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05004036 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004037 dprintk("%s: done, ret = %d!\n", __func__, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004038 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039}
4040
4041static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
4042{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004043 struct nfs_server *server = NFS_SERVER(state->inode);
4044 struct nfs4_exception exception = { };
4045 int err;
4046
4047 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004048 /* Cache the lock if possible... */
4049 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4050 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004051 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
4052 if (err != -NFS4ERR_DELAY)
4053 break;
4054 nfs4_handle_exception(server, err, &exception);
4055 } while (exception.retry);
4056 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057}
4058
4059static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
4060{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004061 struct nfs_server *server = NFS_SERVER(state->inode);
4062 struct nfs4_exception exception = { };
4063 int err;
4064
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004065 err = nfs4_set_lock_state(state, request);
4066 if (err != 0)
4067 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004068 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004069 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4070 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004071 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05004072 switch (err) {
4073 default:
4074 goto out;
4075 case -NFS4ERR_GRACE:
4076 case -NFS4ERR_DELAY:
4077 nfs4_handle_exception(server, err, &exception);
4078 err = 0;
4079 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00004080 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05004081out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00004082 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083}
4084
4085static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4086{
Trond Myklebust19e03c52008-12-23 15:21:44 -05004087 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004088 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 int status;
4090
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004091 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004092 status = nfs4_set_lock_state(state, request);
4093 if (status != 0)
4094 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004095 request->fl_flags |= FL_ACCESS;
4096 status = do_vfs_lock(request->fl_file, request);
4097 if (status < 0)
4098 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05004099 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004100 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04004101 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004102 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05004103 request->fl_flags = fl_flags & ~FL_SLEEP;
4104 status = do_vfs_lock(request->fl_file, request);
4105 goto out_unlock;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004106 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004107 status = _nfs4_do_setlk(state, cmd, request, 0);
4108 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04004109 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004110 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004111 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004112 if (do_vfs_lock(request->fl_file, request) < 0)
Harvey Harrison3110ff82008-05-02 13:42:44 -07004113 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004114out_unlock:
Trond Myklebust19e03c52008-12-23 15:21:44 -05004115 up_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004116out:
4117 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 return status;
4119}
4120
4121static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4122{
4123 struct nfs4_exception exception = { };
4124 int err;
4125
4126 do {
Trond Myklebust965b5d62009-06-17 13:22:59 -07004127 err = _nfs4_proc_setlk(state, cmd, request);
4128 if (err == -NFS4ERR_DENIED)
4129 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 err = nfs4_handle_exception(NFS_SERVER(state->inode),
Trond Myklebust965b5d62009-06-17 13:22:59 -07004131 err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 } while (exception.retry);
4133 return err;
4134}
4135
4136static int
4137nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
4138{
4139 struct nfs_open_context *ctx;
4140 struct nfs4_state *state;
4141 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
4142 int status;
4143
4144 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004145 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 state = ctx->state;
4147
4148 if (request->fl_start < 0 || request->fl_end < 0)
4149 return -EINVAL;
4150
Trond Myklebustd9531262009-07-21 19:22:38 -04004151 if (IS_GETLK(cmd)) {
4152 if (state != NULL)
4153 return nfs4_proc_getlk(state, F_GETLK, request);
4154 return 0;
4155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156
4157 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
4158 return -EINVAL;
4159
Trond Myklebustd9531262009-07-21 19:22:38 -04004160 if (request->fl_type == F_UNLCK) {
4161 if (state != NULL)
4162 return nfs4_proc_unlck(state, cmd, request);
4163 return 0;
4164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165
Trond Myklebustd9531262009-07-21 19:22:38 -04004166 if (state == NULL)
4167 return -ENOLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 do {
4169 status = nfs4_proc_setlk(state, cmd, request);
4170 if ((status != -EAGAIN) || IS_SETLK(cmd))
4171 break;
4172 timeout = nfs4_set_lock_task_retry(timeout);
4173 status = -ERESTARTSYS;
4174 if (signalled())
4175 break;
4176 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 return status;
4178}
4179
Trond Myklebust888e6942005-11-04 15:38:11 -05004180int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
4181{
4182 struct nfs_server *server = NFS_SERVER(state->inode);
4183 struct nfs4_exception exception = { };
4184 int err;
4185
4186 err = nfs4_set_lock_state(state, fl);
4187 if (err != 0)
4188 goto out;
4189 do {
4190 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
Trond Myklebustd5122202009-06-17 13:22:58 -07004191 switch (err) {
4192 default:
4193 printk(KERN_ERR "%s: unhandled error %d.\n",
4194 __func__, err);
4195 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004196 case -ESTALE:
Trond Myklebustd5122202009-06-17 13:22:58 -07004197 goto out;
4198 case -NFS4ERR_EXPIRED:
4199 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004200 case -NFS4ERR_STALE_STATEID:
Ricardo Labiaga74e7bb72009-12-07 09:48:30 -05004201 case -NFS4ERR_BADSESSION:
4202 case -NFS4ERR_BADSLOT:
4203 case -NFS4ERR_BAD_HIGH_SLOT:
4204 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
4205 case -NFS4ERR_DEADSESSION:
Trond Myklebustd5122202009-06-17 13:22:58 -07004206 nfs4_schedule_state_recovery(server->nfs_client);
4207 goto out;
Trond Myklebust965b5d62009-06-17 13:22:59 -07004208 case -ERESTARTSYS:
4209 /*
4210 * The show must go on: exit, but mark the
4211 * stateid as needing recovery.
4212 */
4213 case -NFS4ERR_ADMIN_REVOKED:
4214 case -NFS4ERR_BAD_STATEID:
4215 case -NFS4ERR_OPENMODE:
4216 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
4217 err = 0;
4218 goto out;
4219 case -ENOMEM:
4220 case -NFS4ERR_DENIED:
4221 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
4222 err = 0;
4223 goto out;
Trond Myklebustd5122202009-06-17 13:22:58 -07004224 case -NFS4ERR_DELAY:
4225 break;
4226 }
Trond Myklebust888e6942005-11-04 15:38:11 -05004227 err = nfs4_handle_exception(server, err, &exception);
4228 } while (exception.retry);
4229out:
4230 return err;
4231}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004232
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004233#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
4234
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004235int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
4236 size_t buflen, int flags)
4237{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004238 struct inode *inode = dentry->d_inode;
4239
4240 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
4241 return -EOPNOTSUPP;
4242
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004243 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004244}
4245
4246/* The getxattr man page suggests returning -ENODATA for unknown attributes,
4247 * and that's what we'll do for e.g. user attributes that haven't been set.
4248 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
4249 * attributes in kernel-managed attribute namespaces. */
4250ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
4251 size_t buflen)
4252{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004253 struct inode *inode = dentry->d_inode;
4254
4255 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
4256 return -EOPNOTSUPP;
4257
4258 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004259}
4260
4261ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
4262{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004263 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004264
J. Bruce Fields096455a2006-03-20 23:23:42 -05004265 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
4266 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004267 if (buf && buflen < len)
4268 return -ERANGE;
4269 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004270 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
4271 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004272}
4273
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004274static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
4275{
4276 if (!((fattr->valid & NFS_ATTR_FATTR_FILEID) &&
4277 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
4278 (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)))
4279 return;
4280
4281 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
4282 NFS_ATTR_FATTR_NLINK;
4283 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
4284 fattr->nlink = 2;
4285}
4286
Trond Myklebust56659e92007-07-17 21:52:39 -04004287int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04004288 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004289{
4290 struct nfs_server *server = NFS_SERVER(dir);
4291 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04004292 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
4293 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004294 };
4295 struct nfs4_fs_locations_arg args = {
4296 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05004297 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004298 .page = page,
4299 .bitmask = bitmask,
4300 };
Benny Halevy22958462009-04-01 09:22:02 -04004301 struct nfs4_fs_locations_res res = {
4302 .fs_locations = fs_locations,
4303 };
Trond Myklebust683b57b2006-06-09 09:34:22 -04004304 struct rpc_message msg = {
4305 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
4306 .rpc_argp = &args,
Benny Halevy22958462009-04-01 09:22:02 -04004307 .rpc_resp = &res,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004308 };
4309 int status;
4310
Harvey Harrison3110ff82008-05-02 13:42:44 -07004311 dprintk("%s: start\n", __func__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05004312 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004313 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04004314 fs_locations->nlocations = 0;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04004315 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004316 nfs_fixup_referral_attributes(&fs_locations->fattr);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004317 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004318 return status;
4319}
4320
Andy Adamson557134a2009-04-01 09:21:53 -04004321#ifdef CONFIG_NFS_V4_1
Benny Halevy99fe60d2009-04-01 09:22:29 -04004322/*
4323 * nfs4_proc_exchange_id()
4324 *
4325 * Since the clientid has expired, all compounds using sessions
4326 * associated with the stale clientid will be returning
4327 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
4328 * be in some phase of session reset.
4329 */
Andy Adamson4d643d12009-12-04 15:52:24 -05004330int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
Benny Halevy99fe60d2009-04-01 09:22:29 -04004331{
4332 nfs4_verifier verifier;
4333 struct nfs41_exchange_id_args args = {
4334 .client = clp,
4335 .flags = clp->cl_exchange_flags,
4336 };
4337 struct nfs41_exchange_id_res res = {
4338 .client = clp,
4339 };
4340 int status;
4341 struct rpc_message msg = {
4342 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
4343 .rpc_argp = &args,
4344 .rpc_resp = &res,
4345 .rpc_cred = cred,
4346 };
4347 __be32 *p;
4348
4349 dprintk("--> %s\n", __func__);
4350 BUG_ON(clp == NULL);
Andy Adamsona7b72102009-04-01 09:22:46 -04004351
Alexandros Batsakis7b183d02009-12-05 13:33:25 -05004352 /* Remove server-only flags */
4353 args.flags &= ~EXCHGID4_FLAG_CONFIRMED_R;
4354
Benny Halevy99fe60d2009-04-01 09:22:29 -04004355 p = (u32 *)verifier.data;
4356 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
4357 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
4358 args.verifier = &verifier;
4359
4360 while (1) {
4361 args.id_len = scnprintf(args.id, sizeof(args.id),
4362 "%s/%s %u",
4363 clp->cl_ipaddr,
4364 rpc_peeraddr2str(clp->cl_rpcclient,
4365 RPC_DISPLAY_ADDR),
4366 clp->cl_id_uniquifier);
4367
4368 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
4369
4370 if (status != NFS4ERR_CLID_INUSE)
4371 break;
4372
4373 if (signalled())
4374 break;
4375
4376 if (++clp->cl_id_uniquifier == 0)
4377 break;
4378 }
4379
4380 dprintk("<-- %s status= %d\n", __func__, status);
4381 return status;
4382}
4383
Andy Adamson2050f0c2009-04-01 09:22:30 -04004384struct nfs4_get_lease_time_data {
4385 struct nfs4_get_lease_time_args *args;
4386 struct nfs4_get_lease_time_res *res;
4387 struct nfs_client *clp;
4388};
4389
4390static void nfs4_get_lease_time_prepare(struct rpc_task *task,
4391 void *calldata)
4392{
4393 int ret;
4394 struct nfs4_get_lease_time_data *data =
4395 (struct nfs4_get_lease_time_data *)calldata;
4396
4397 dprintk("--> %s\n", __func__);
4398 /* just setup sequence, do not trigger session recovery
4399 since we're invoked within one */
4400 ret = nfs41_setup_sequence(data->clp->cl_session,
4401 &data->args->la_seq_args,
4402 &data->res->lr_seq_res, 0, task);
4403
4404 BUG_ON(ret == -EAGAIN);
4405 rpc_call_start(task);
4406 dprintk("<-- %s\n", __func__);
4407}
4408
4409/*
4410 * Called from nfs4_state_manager thread for session setup, so don't recover
4411 * from sequence operation or clientid errors.
4412 */
4413static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
4414{
4415 struct nfs4_get_lease_time_data *data =
4416 (struct nfs4_get_lease_time_data *)calldata;
4417
4418 dprintk("--> %s\n", __func__);
4419 nfs41_sequence_done(data->clp, &data->res->lr_seq_res, task->tk_status);
4420 switch (task->tk_status) {
4421 case -NFS4ERR_DELAY:
4422 case -NFS4ERR_GRACE:
4423 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
4424 rpc_delay(task, NFS4_POLL_RETRY_MIN);
4425 task->tk_status = 0;
Trond Myklebust0110ee12009-12-07 09:00:24 -05004426 nfs_restart_rpc(task, data->clp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004427 return;
4428 }
Andy Adamson2050f0c2009-04-01 09:22:30 -04004429 dprintk("<-- %s\n", __func__);
4430}
4431
4432struct rpc_call_ops nfs4_get_lease_time_ops = {
4433 .rpc_call_prepare = nfs4_get_lease_time_prepare,
4434 .rpc_call_done = nfs4_get_lease_time_done,
4435};
4436
4437int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
4438{
4439 struct rpc_task *task;
4440 struct nfs4_get_lease_time_args args;
4441 struct nfs4_get_lease_time_res res = {
4442 .lr_fsinfo = fsinfo,
4443 };
4444 struct nfs4_get_lease_time_data data = {
4445 .args = &args,
4446 .res = &res,
4447 .clp = clp,
4448 };
4449 struct rpc_message msg = {
4450 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
4451 .rpc_argp = &args,
4452 .rpc_resp = &res,
4453 };
4454 struct rpc_task_setup task_setup = {
4455 .rpc_client = clp->cl_rpcclient,
4456 .rpc_message = &msg,
4457 .callback_ops = &nfs4_get_lease_time_ops,
4458 .callback_data = &data
4459 };
4460 int status;
4461
4462 res.lr_seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
4463 dprintk("--> %s\n", __func__);
4464 task = rpc_run_task(&task_setup);
4465
4466 if (IS_ERR(task))
4467 status = PTR_ERR(task);
4468 else {
4469 status = task->tk_status;
4470 rpc_put_task(task);
4471 }
4472 dprintk("<-- %s return %d\n", __func__, status);
4473
4474 return status;
4475}
4476
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004477/*
4478 * Reset a slot table
4479 */
4480static int nfs4_reset_slot_table(struct nfs4_slot_table *tbl, int max_slots,
4481 int old_max_slots, int ivalue)
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004482{
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004483 int i;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004484 int ret = 0;
4485
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004486 dprintk("--> %s: max_reqs=%u, tbl %p\n", __func__, max_slots, tbl);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004487
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004488 /*
4489 * Until we have dynamic slot table adjustment, insist
4490 * upon the same slot table size
4491 */
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004492 if (max_slots != old_max_slots) {
4493 dprintk("%s reset slot table does't match old\n",
4494 __func__);
4495 ret = -EINVAL; /*XXX NFS4ERR_REQ_TOO_BIG ? */
4496 goto out;
4497 }
4498 spin_lock(&tbl->slot_tbl_lock);
4499 for (i = 0; i < max_slots; ++i)
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004500 tbl->slots[i].seq_nr = ivalue;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004501 spin_unlock(&tbl->slot_tbl_lock);
4502 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4503 tbl, tbl->slots, tbl->max_slots);
4504out:
4505 dprintk("<-- %s: return %d\n", __func__, ret);
4506 return ret;
4507}
4508
Andy Adamsonfc931582009-04-01 09:22:31 -04004509/*
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004510 * Reset the forechannel and backchannel slot tables
4511 */
4512static int nfs4_reset_slot_tables(struct nfs4_session *session)
4513{
4514 int status;
4515
4516 status = nfs4_reset_slot_table(&session->fc_slot_table,
4517 session->fc_attrs.max_reqs,
4518 session->fc_slot_table.max_slots,
4519 1);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004520 if (status)
4521 return status;
4522
4523 status = nfs4_reset_slot_table(&session->bc_slot_table,
4524 session->bc_attrs.max_reqs,
4525 session->bc_slot_table.max_slots,
4526 0);
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004527 return status;
4528}
4529
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004530/* Destroy the slot table */
4531static void nfs4_destroy_slot_tables(struct nfs4_session *session)
4532{
4533 if (session->fc_slot_table.slots != NULL) {
4534 kfree(session->fc_slot_table.slots);
4535 session->fc_slot_table.slots = NULL;
4536 }
4537 if (session->bc_slot_table.slots != NULL) {
4538 kfree(session->bc_slot_table.slots);
4539 session->bc_slot_table.slots = NULL;
4540 }
4541 return;
4542}
4543
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004544/*
Andy Adamsonfc931582009-04-01 09:22:31 -04004545 * Initialize slot table
4546 */
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004547static int nfs4_init_slot_table(struct nfs4_slot_table *tbl,
4548 int max_slots, int ivalue)
Andy Adamsonfc931582009-04-01 09:22:31 -04004549{
Andy Adamsonfc931582009-04-01 09:22:31 -04004550 struct nfs4_slot *slot;
4551 int ret = -ENOMEM;
4552
4553 BUG_ON(max_slots > NFS4_MAX_SLOT_TABLE);
4554
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004555 dprintk("--> %s: max_reqs=%u\n", __func__, max_slots);
Andy Adamsonfc931582009-04-01 09:22:31 -04004556
4557 slot = kcalloc(max_slots, sizeof(struct nfs4_slot), GFP_KERNEL);
4558 if (!slot)
4559 goto out;
Andy Adamsonfc931582009-04-01 09:22:31 -04004560 ret = 0;
4561
4562 spin_lock(&tbl->slot_tbl_lock);
Andy Adamsonfc931582009-04-01 09:22:31 -04004563 tbl->max_slots = max_slots;
4564 tbl->slots = slot;
4565 tbl->highest_used_slotid = -1; /* no slot is currently used */
4566 spin_unlock(&tbl->slot_tbl_lock);
4567 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4568 tbl, tbl->slots, tbl->max_slots);
4569out:
4570 dprintk("<-- %s: return %d\n", __func__, ret);
4571 return ret;
Andy Adamsonfc931582009-04-01 09:22:31 -04004572}
4573
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004574/*
4575 * Initialize the forechannel and backchannel tables
4576 */
4577static int nfs4_init_slot_tables(struct nfs4_session *session)
4578{
Trond Myklebustf26468f2009-12-05 19:32:11 -05004579 struct nfs4_slot_table *tbl;
4580 int status = 0;
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004581
Trond Myklebustf26468f2009-12-05 19:32:11 -05004582 tbl = &session->fc_slot_table;
4583 if (tbl->slots == NULL) {
4584 status = nfs4_init_slot_table(tbl,
4585 session->fc_attrs.max_reqs, 1);
4586 if (status)
4587 return status;
4588 }
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004589
Trond Myklebustf26468f2009-12-05 19:32:11 -05004590 tbl = &session->bc_slot_table;
4591 if (tbl->slots == NULL) {
4592 status = nfs4_init_slot_table(tbl,
4593 session->bc_attrs.max_reqs, 0);
4594 if (status)
4595 nfs4_destroy_slot_tables(session);
4596 }
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004597
4598 return status;
Andy Adamson557134a2009-04-01 09:21:53 -04004599}
4600
4601struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp)
4602{
4603 struct nfs4_session *session;
4604 struct nfs4_slot_table *tbl;
4605
4606 session = kzalloc(sizeof(struct nfs4_session), GFP_KERNEL);
4607 if (!session)
4608 return NULL;
Andy Adamson76db6d92009-04-01 09:22:38 -04004609
Andy Adamson76db6d92009-04-01 09:22:38 -04004610 /*
4611 * The create session reply races with the server back
4612 * channel probe. Mark the client NFS_CS_SESSION_INITING
4613 * so that the client back channel can find the
4614 * nfs_client struct
4615 */
4616 clp->cl_cons_state = NFS_CS_SESSION_INITING;
Andy Adamsonea028ac2009-12-04 15:55:38 -05004617 init_completion(&session->complete);
Andy Adamson76db6d92009-04-01 09:22:38 -04004618
Andy Adamson557134a2009-04-01 09:21:53 -04004619 tbl = &session->fc_slot_table;
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -05004620 tbl->highest_used_slotid = -1;
Andy Adamson557134a2009-04-01 09:21:53 -04004621 spin_lock_init(&tbl->slot_tbl_lock);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004622 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "ForeChannel Slot table");
4623
4624 tbl = &session->bc_slot_table;
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -05004625 tbl->highest_used_slotid = -1;
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004626 spin_lock_init(&tbl->slot_tbl_lock);
4627 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "BackChannel Slot table");
4628
Andy Adamson557134a2009-04-01 09:21:53 -04004629 session->clp = clp;
4630 return session;
4631}
4632
4633void nfs4_destroy_session(struct nfs4_session *session)
4634{
Andy Adamson5a0ffe52009-04-01 09:23:18 -04004635 nfs4_proc_destroy_session(session);
4636 dprintk("%s Destroy backchannel for xprt %p\n",
4637 __func__, session->clp->cl_rpcclient->cl_xprt);
4638 xprt_destroy_backchannel(session->clp->cl_rpcclient->cl_xprt,
4639 NFS41_BC_MIN_CALLBACKS);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004640 nfs4_destroy_slot_tables(session);
Andy Adamson557134a2009-04-01 09:21:53 -04004641 kfree(session);
4642}
4643
Andy Adamsonfc931582009-04-01 09:22:31 -04004644/*
4645 * Initialize the values to be used by the client in CREATE_SESSION
4646 * If nfs4_init_session set the fore channel request and response sizes,
4647 * use them.
4648 *
4649 * Set the back channel max_resp_sz_cached to zero to force the client to
4650 * always set csa_cachethis to FALSE because the current implementation
4651 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
4652 */
4653static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args)
4654{
4655 struct nfs4_session *session = args->client->cl_session;
4656 unsigned int mxrqst_sz = session->fc_attrs.max_rqst_sz,
4657 mxresp_sz = session->fc_attrs.max_resp_sz;
4658
4659 if (mxrqst_sz == 0)
4660 mxrqst_sz = NFS_MAX_FILE_IO_SIZE;
4661 if (mxresp_sz == 0)
4662 mxresp_sz = NFS_MAX_FILE_IO_SIZE;
4663 /* Fore channel attributes */
4664 args->fc_attrs.headerpadsz = 0;
4665 args->fc_attrs.max_rqst_sz = mxrqst_sz;
4666 args->fc_attrs.max_resp_sz = mxresp_sz;
4667 args->fc_attrs.max_resp_sz_cached = mxresp_sz;
4668 args->fc_attrs.max_ops = NFS4_MAX_OPS;
4669 args->fc_attrs.max_reqs = session->clp->cl_rpcclient->cl_xprt->max_reqs;
4670
4671 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
4672 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4673 __func__,
4674 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
4675 args->fc_attrs.max_resp_sz_cached, args->fc_attrs.max_ops,
4676 args->fc_attrs.max_reqs);
4677
4678 /* Back channel attributes */
4679 args->bc_attrs.headerpadsz = 0;
4680 args->bc_attrs.max_rqst_sz = PAGE_SIZE;
4681 args->bc_attrs.max_resp_sz = PAGE_SIZE;
4682 args->bc_attrs.max_resp_sz_cached = 0;
4683 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
4684 args->bc_attrs.max_reqs = 1;
4685
4686 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
4687 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4688 __func__,
4689 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
4690 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
4691 args->bc_attrs.max_reqs);
4692}
4693
Andy Adamson8d353012009-04-01 09:22:32 -04004694static int _verify_channel_attr(char *chan, char *attr_name, u32 sent, u32 rcvd)
4695{
4696 if (rcvd <= sent)
4697 return 0;
4698 printk(KERN_WARNING "%s: Session INVALID: %s channel %s increased. "
4699 "sent=%u rcvd=%u\n", __func__, chan, attr_name, sent, rcvd);
4700 return -EINVAL;
4701}
4702
4703#define _verify_fore_channel_attr(_name_) \
4704 _verify_channel_attr("fore", #_name_, \
4705 args->fc_attrs._name_, \
4706 session->fc_attrs._name_)
4707
4708#define _verify_back_channel_attr(_name_) \
4709 _verify_channel_attr("back", #_name_, \
4710 args->bc_attrs._name_, \
4711 session->bc_attrs._name_)
4712
4713/*
4714 * The server is not allowed to increase the fore channel header pad size,
4715 * maximum response size, or maximum number of operations.
4716 *
4717 * The back channel attributes are only negotiatied down: We send what the
4718 * (back channel) server insists upon.
4719 */
4720static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
4721 struct nfs4_session *session)
4722{
4723 int ret = 0;
4724
4725 ret |= _verify_fore_channel_attr(headerpadsz);
4726 ret |= _verify_fore_channel_attr(max_resp_sz);
4727 ret |= _verify_fore_channel_attr(max_ops);
4728
4729 ret |= _verify_back_channel_attr(headerpadsz);
4730 ret |= _verify_back_channel_attr(max_rqst_sz);
4731 ret |= _verify_back_channel_attr(max_resp_sz);
4732 ret |= _verify_back_channel_attr(max_resp_sz_cached);
4733 ret |= _verify_back_channel_attr(max_ops);
4734 ret |= _verify_back_channel_attr(max_reqs);
4735
4736 return ret;
4737}
4738
Andy Adamsonfc931582009-04-01 09:22:31 -04004739static int _nfs4_proc_create_session(struct nfs_client *clp)
4740{
4741 struct nfs4_session *session = clp->cl_session;
4742 struct nfs41_create_session_args args = {
4743 .client = clp,
4744 .cb_program = NFS4_CALLBACK,
4745 };
4746 struct nfs41_create_session_res res = {
4747 .client = clp,
4748 };
4749 struct rpc_message msg = {
4750 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
4751 .rpc_argp = &args,
4752 .rpc_resp = &res,
4753 };
4754 int status;
4755
4756 nfs4_init_channel_attrs(&args);
Andy Adamson0f914212009-04-01 09:23:16 -04004757 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
Andy Adamsonfc931582009-04-01 09:22:31 -04004758
4759 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
4760
Andy Adamson8d353012009-04-01 09:22:32 -04004761 if (!status)
4762 /* Verify the session's negotiated channel_attrs values */
4763 status = nfs4_verify_channel_attrs(&args, session);
Andy Adamsonfc931582009-04-01 09:22:31 -04004764 if (!status) {
4765 /* Increment the clientid slot sequence id */
4766 clp->cl_seqid++;
4767 }
4768
4769 return status;
4770}
4771
4772/*
4773 * Issues a CREATE_SESSION operation to the server.
4774 * It is the responsibility of the caller to verify the session is
4775 * expired before calling this routine.
4776 */
Trond Myklebustf26468f2009-12-05 19:32:11 -05004777int nfs4_proc_create_session(struct nfs_client *clp)
Andy Adamsonfc931582009-04-01 09:22:31 -04004778{
4779 int status;
4780 unsigned *ptr;
Andy Adamsonfc931582009-04-01 09:22:31 -04004781 struct nfs4_session *session = clp->cl_session;
4782
4783 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
4784
4785 status = _nfs4_proc_create_session(clp);
4786 if (status)
4787 goto out;
4788
Trond Myklebustf26468f2009-12-05 19:32:11 -05004789 /* Init and reset the fore channel */
4790 status = nfs4_init_slot_tables(session);
4791 dprintk("slot table initialization returned %d\n", status);
4792 if (status)
4793 goto out;
4794 status = nfs4_reset_slot_tables(session);
4795 dprintk("slot table reset returned %d\n", status);
Andy Adamsonfc931582009-04-01 09:22:31 -04004796 if (status)
4797 goto out;
4798
4799 ptr = (unsigned *)&session->sess_id.data[0];
4800 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
4801 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
Andy Adamsonfc931582009-04-01 09:22:31 -04004802out:
4803 dprintk("<-- %s\n", __func__);
4804 return status;
4805}
4806
Andy Adamson0f3e66c2009-04-01 09:22:34 -04004807/*
4808 * Issue the over-the-wire RPC DESTROY_SESSION.
4809 * The caller must serialize access to this routine.
4810 */
4811int nfs4_proc_destroy_session(struct nfs4_session *session)
4812{
4813 int status = 0;
4814 struct rpc_message msg;
4815
4816 dprintk("--> nfs4_proc_destroy_session\n");
4817
4818 /* session is still being setup */
4819 if (session->clp->cl_cons_state != NFS_CS_READY)
4820 return status;
4821
4822 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION];
4823 msg.rpc_argp = session;
4824 msg.rpc_resp = NULL;
4825 msg.rpc_cred = NULL;
4826 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
4827
4828 if (status)
4829 printk(KERN_WARNING
4830 "Got error %d from the server on DESTROY_SESSION. "
4831 "Session has been destroyed regardless...\n", status);
4832
4833 dprintk("<-- nfs4_proc_destroy_session\n");
4834 return status;
4835}
4836
Trond Myklebustfccba802009-07-21 16:48:07 -04004837int nfs4_init_session(struct nfs_server *server)
4838{
4839 struct nfs_client *clp = server->nfs_client;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05004840 struct nfs4_session *session;
Trond Myklebustfccba802009-07-21 16:48:07 -04004841 int ret;
4842
4843 if (!nfs4_has_session(clp))
4844 return 0;
4845
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05004846 session = clp->cl_session;
4847 session->fc_attrs.max_rqst_sz = server->wsize + nfs41_maxwrite_overhead;
4848 session->fc_attrs.max_resp_sz = server->rsize + nfs41_maxread_overhead;
4849
Trond Myklebustfccba802009-07-21 16:48:07 -04004850 ret = nfs4_recover_expired_lease(server);
4851 if (!ret)
4852 ret = nfs4_check_client_ready(clp);
4853 return ret;
4854}
4855
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004856/*
4857 * Renew the cl_session lease.
4858 */
4859static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
4860{
4861 struct nfs4_sequence_args args;
4862 struct nfs4_sequence_res res;
4863
4864 struct rpc_message msg = {
4865 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
4866 .rpc_argp = &args,
4867 .rpc_resp = &res,
4868 .rpc_cred = cred,
4869 };
4870
4871 args.sa_cache_this = 0;
4872
4873 return nfs4_call_sync_sequence(clp, clp->cl_rpcclient, &msg, &args,
4874 &res, 0);
4875}
4876
4877void nfs41_sequence_call_done(struct rpc_task *task, void *data)
4878{
4879 struct nfs_client *clp = (struct nfs_client *)data;
4880
4881 nfs41_sequence_done(clp, task->tk_msg.rpc_resp, task->tk_status);
4882
4883 if (task->tk_status < 0) {
4884 dprintk("%s ERROR %d\n", __func__, task->tk_status);
4885
4886 if (_nfs4_async_handle_error(task, NULL, clp, NULL)
4887 == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05004888 nfs_restart_rpc(task, clp);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004889 return;
4890 }
4891 }
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004892 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
4893
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004894 kfree(task->tk_msg.rpc_argp);
4895 kfree(task->tk_msg.rpc_resp);
4896
4897 dprintk("<-- %s\n", __func__);
4898}
4899
4900static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
4901{
4902 struct nfs_client *clp;
4903 struct nfs4_sequence_args *args;
4904 struct nfs4_sequence_res *res;
4905
4906 clp = (struct nfs_client *)data;
4907 args = task->tk_msg.rpc_argp;
4908 res = task->tk_msg.rpc_resp;
4909
4910 if (nfs4_setup_sequence(clp, args, res, 0, task))
4911 return;
4912 rpc_call_start(task);
4913}
4914
4915static const struct rpc_call_ops nfs41_sequence_ops = {
4916 .rpc_call_done = nfs41_sequence_call_done,
4917 .rpc_call_prepare = nfs41_sequence_prepare,
4918};
4919
4920static int nfs41_proc_async_sequence(struct nfs_client *clp,
4921 struct rpc_cred *cred)
4922{
4923 struct nfs4_sequence_args *args;
4924 struct nfs4_sequence_res *res;
4925 struct rpc_message msg = {
4926 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
4927 .rpc_cred = cred,
4928 };
4929
4930 args = kzalloc(sizeof(*args), GFP_KERNEL);
4931 if (!args)
4932 return -ENOMEM;
4933 res = kzalloc(sizeof(*res), GFP_KERNEL);
4934 if (!res) {
4935 kfree(args);
4936 return -ENOMEM;
4937 }
4938 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
4939 msg.rpc_argp = args;
4940 msg.rpc_resp = res;
4941
4942 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
4943 &nfs41_sequence_ops, (void *)clp);
4944}
4945
Ricardo Labiagafce5c832009-12-05 16:08:41 -05004946struct nfs4_reclaim_complete_data {
4947 struct nfs_client *clp;
4948 struct nfs41_reclaim_complete_args arg;
4949 struct nfs41_reclaim_complete_res res;
4950};
4951
4952static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
4953{
4954 struct nfs4_reclaim_complete_data *calldata = data;
4955
4956 if (nfs4_setup_sequence(calldata->clp, &calldata->arg.seq_args,
4957 &calldata->res.seq_res, 0, task))
4958 return;
4959
4960 rpc_call_start(task);
4961}
4962
4963static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
4964{
4965 struct nfs4_reclaim_complete_data *calldata = data;
4966 struct nfs_client *clp = calldata->clp;
4967 struct nfs4_sequence_res *res = &calldata->res.seq_res;
4968
4969 dprintk("--> %s\n", __func__);
4970 nfs41_sequence_done(clp, res, task->tk_status);
4971 switch (task->tk_status) {
4972 case 0:
4973 case -NFS4ERR_COMPLETE_ALREADY:
4974 break;
4975 case -NFS4ERR_BADSESSION:
4976 case -NFS4ERR_DEADSESSION:
4977 /*
4978 * Handle the session error, but do not retry the operation, as
4979 * we have no way of telling whether the clientid had to be
4980 * reset before we got our reply. If reset, a new wave of
4981 * reclaim operations will follow, containing their own reclaim
4982 * complete. We don't want our retry to get on the way of
4983 * recovery by incorrectly indicating to the server that we're
4984 * done reclaiming state since the process had to be restarted.
4985 */
4986 _nfs4_async_handle_error(task, NULL, clp, NULL);
4987 break;
4988 default:
4989 if (_nfs4_async_handle_error(
4990 task, NULL, clp, NULL) == -EAGAIN) {
4991 rpc_restart_call_prepare(task);
4992 return;
4993 }
4994 }
Ricardo Labiagafce5c832009-12-05 16:08:41 -05004995
4996 dprintk("<-- %s\n", __func__);
4997}
4998
4999static void nfs4_free_reclaim_complete_data(void *data)
5000{
5001 struct nfs4_reclaim_complete_data *calldata = data;
5002
5003 kfree(calldata);
5004}
5005
5006static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
5007 .rpc_call_prepare = nfs4_reclaim_complete_prepare,
5008 .rpc_call_done = nfs4_reclaim_complete_done,
5009 .rpc_release = nfs4_free_reclaim_complete_data,
5010};
5011
5012/*
5013 * Issue a global reclaim complete.
5014 */
5015static int nfs41_proc_reclaim_complete(struct nfs_client *clp)
5016{
5017 struct nfs4_reclaim_complete_data *calldata;
5018 struct rpc_task *task;
5019 struct rpc_message msg = {
5020 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
5021 };
5022 struct rpc_task_setup task_setup_data = {
5023 .rpc_client = clp->cl_rpcclient,
5024 .rpc_message = &msg,
5025 .callback_ops = &nfs4_reclaim_complete_call_ops,
5026 .flags = RPC_TASK_ASYNC,
5027 };
5028 int status = -ENOMEM;
5029
5030 dprintk("--> %s\n", __func__);
5031 calldata = kzalloc(sizeof(*calldata), GFP_KERNEL);
5032 if (calldata == NULL)
5033 goto out;
5034 calldata->clp = clp;
5035 calldata->arg.one_fs = 0;
5036 calldata->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
5037
5038 msg.rpc_argp = &calldata->arg;
5039 msg.rpc_resp = &calldata->res;
5040 task_setup_data.callback_data = calldata;
5041 task = rpc_run_task(&task_setup_data);
5042 if (IS_ERR(task))
5043 status = PTR_ERR(task);
5044 rpc_put_task(task);
5045out:
5046 dprintk("<-- %s status=%d\n", __func__, status);
5047 return status;
5048}
Andy Adamson557134a2009-04-01 09:21:53 -04005049#endif /* CONFIG_NFS_V4_1 */
5050
Andy Adamson591d71c2009-04-01 09:22:47 -04005051struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05005052 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05005053 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054 .recover_open = nfs4_open_reclaim,
5055 .recover_lock = nfs4_lock_reclaim,
Andy Adamson591d71c2009-04-01 09:22:47 -04005056 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04005057 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058};
5059
Andy Adamson591d71c2009-04-01 09:22:47 -04005060#if defined(CONFIG_NFS_V4_1)
5061struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
5062 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
5063 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
5064 .recover_open = nfs4_open_reclaim,
5065 .recover_lock = nfs4_lock_reclaim,
Andy Adamson4d643d12009-12-04 15:52:24 -05005066 .establish_clid = nfs41_init_clientid,
Andy Adamsonb4b82602009-04-01 09:22:49 -04005067 .get_clid_cred = nfs4_get_exchange_id_cred,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005068 .reclaim_complete = nfs41_proc_reclaim_complete,
Andy Adamson591d71c2009-04-01 09:22:47 -04005069};
5070#endif /* CONFIG_NFS_V4_1 */
5071
5072struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05005073 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05005074 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075 .recover_open = nfs4_open_expired,
5076 .recover_lock = nfs4_lock_expired,
Andy Adamson591d71c2009-04-01 09:22:47 -04005077 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04005078 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079};
5080
Andy Adamson591d71c2009-04-01 09:22:47 -04005081#if defined(CONFIG_NFS_V4_1)
5082struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
5083 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
5084 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
5085 .recover_open = nfs4_open_expired,
5086 .recover_lock = nfs4_lock_expired,
Andy Adamson4d643d12009-12-04 15:52:24 -05005087 .establish_clid = nfs41_init_clientid,
Andy Adamsonb4b82602009-04-01 09:22:49 -04005088 .get_clid_cred = nfs4_get_exchange_id_cred,
Andy Adamson591d71c2009-04-01 09:22:47 -04005089};
5090#endif /* CONFIG_NFS_V4_1 */
5091
Benny Halevy29fba382009-04-01 09:22:44 -04005092struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
5093 .sched_state_renewal = nfs4_proc_async_renew,
Andy Adamsona7b72102009-04-01 09:22:46 -04005094 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04005095 .renew_lease = nfs4_proc_renew,
Benny Halevy29fba382009-04-01 09:22:44 -04005096};
5097
5098#if defined(CONFIG_NFS_V4_1)
5099struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
5100 .sched_state_renewal = nfs41_proc_async_sequence,
Andy Adamsona7b72102009-04-01 09:22:46 -04005101 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04005102 .renew_lease = nfs4_proc_sequence,
Benny Halevy29fba382009-04-01 09:22:44 -04005103};
5104#endif
5105
5106/*
5107 * Per minor version reboot and network partition recovery ops
5108 */
5109
Andy Adamson591d71c2009-04-01 09:22:47 -04005110struct nfs4_state_recovery_ops *nfs4_reboot_recovery_ops[] = {
5111 &nfs40_reboot_recovery_ops,
5112#if defined(CONFIG_NFS_V4_1)
5113 &nfs41_reboot_recovery_ops,
5114#endif
5115};
5116
5117struct nfs4_state_recovery_ops *nfs4_nograce_recovery_ops[] = {
5118 &nfs40_nograce_recovery_ops,
5119#if defined(CONFIG_NFS_V4_1)
5120 &nfs41_nograce_recovery_ops,
5121#endif
5122};
5123
Benny Halevy29fba382009-04-01 09:22:44 -04005124struct nfs4_state_maintenance_ops *nfs4_state_renewal_ops[] = {
5125 &nfs40_state_renewal_ops,
5126#if defined(CONFIG_NFS_V4_1)
5127 &nfs41_state_renewal_ops,
5128#endif
5129};
5130
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08005131static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005132 .permission = nfs_permission,
5133 .getattr = nfs_getattr,
5134 .setattr = nfs_setattr,
5135 .getxattr = nfs4_getxattr,
5136 .setxattr = nfs4_setxattr,
5137 .listxattr = nfs4_listxattr,
5138};
5139
David Howells509de812006-08-22 20:06:11 -04005140const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141 .version = 4, /* protocol version */
5142 .dentry_ops = &nfs4_dentry_operations,
5143 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005144 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 .getroot = nfs4_proc_get_root,
5146 .getattr = nfs4_proc_getattr,
5147 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04005148 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 .lookup = nfs4_proc_lookup,
5150 .access = nfs4_proc_access,
5151 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 .create = nfs4_proc_create,
5153 .remove = nfs4_proc_remove,
5154 .unlink_setup = nfs4_proc_unlink_setup,
5155 .unlink_done = nfs4_proc_unlink_done,
5156 .rename = nfs4_proc_rename,
5157 .link = nfs4_proc_link,
5158 .symlink = nfs4_proc_symlink,
5159 .mkdir = nfs4_proc_mkdir,
5160 .rmdir = nfs4_proc_remove,
5161 .readdir = nfs4_proc_readdir,
5162 .mknod = nfs4_proc_mknod,
5163 .statfs = nfs4_proc_statfs,
5164 .fsinfo = nfs4_proc_fsinfo,
5165 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04005166 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 .decode_dirent = nfs4_decode_dirent,
5168 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05005169 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005171 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005173 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005175 .clear_acl_cache = nfs4_zap_acl_attr,
Trond Myklebust7fe5c392009-03-19 15:35:50 -04005176 .close_context = nfs4_close_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177};
5178
5179/*
5180 * Local variables:
5181 * c-basic-offset: 8
5182 * End:
5183 */