blob: 9da7a872ee0ebdef14cfa38b91ea54cfb0d1c285 [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);
335 if (slotid >= 0 && slotid < tbl->max_slots)
336 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 }
Andy Adamson691daf32009-12-04 15:55:39 -0500366 } else {
367 rpc_wake_up_next(&tbl->slot_tbl_waitq);
Andy Adamsonea028ac2009-12-04 15:55:38 -0500368 }
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500369 spin_unlock(&tbl->slot_tbl_lock);
370 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
Andy Adamson13615872009-04-01 09:22:17 -0400371}
372
Andy Adamsonb0df8062009-04-01 09:22:18 -0400373static void nfs41_sequence_done(struct nfs_client *clp,
374 struct nfs4_sequence_res *res,
375 int rpc_status)
376{
377 unsigned long timestamp;
378 struct nfs4_slot_table *tbl;
379 struct nfs4_slot *slot;
380
381 /*
382 * sr_status remains 1 if an RPC level error occurred. The server
383 * may or may not have processed the sequence operation..
384 * Proceed as if the server received and processed the sequence
385 * operation.
386 */
387 if (res->sr_status == 1)
388 res->sr_status = NFS_OK;
389
390 /* -ERESTARTSYS can result in skipping nfs41_sequence_setup */
391 if (res->sr_slotid == NFS4_MAX_SLOT_TABLE)
392 goto out;
393
Andy Adamson691daf32009-12-04 15:55:39 -0500394 /* Check the SEQUENCE operation status */
Andy Adamsonb0df8062009-04-01 09:22:18 -0400395 if (res->sr_status == 0) {
Andy Adamson691daf32009-12-04 15:55:39 -0500396 tbl = &clp->cl_session->fc_slot_table;
397 slot = tbl->slots + res->sr_slotid;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400398 /* Update the slot's sequence and clientid lease timer */
399 ++slot->seq_nr;
400 timestamp = res->sr_renewal_time;
401 spin_lock(&clp->cl_lock);
402 if (time_before(clp->cl_last_renewal, timestamp))
403 clp->cl_last_renewal = timestamp;
404 spin_unlock(&clp->cl_lock);
Alexandros Batsakis0629e372009-12-05 13:46:14 -0500405 /* Check sequence flags */
406 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags);
Andy Adamsonb0df8062009-04-01 09:22:18 -0400407 }
408out:
409 /* The session may be reset by one of the error handlers. */
410 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
411 nfs41_sequence_free_slot(clp, res);
412}
413
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400414/*
Benny Halevy510b8172009-04-01 09:22:14 -0400415 * nfs4_find_slot - efficiently look for a free slot
416 *
417 * nfs4_find_slot looks for an unset bit in the used_slots bitmap.
418 * If found, we mark the slot as used, update the highest_used_slotid,
419 * and respectively set up the sequence operation args.
420 * The slot number is returned if found, or NFS4_MAX_SLOT_TABLE otherwise.
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400421 *
422 * Note: must be called with under the slot_tbl_lock.
Benny Halevy510b8172009-04-01 09:22:14 -0400423 */
424static u8
425nfs4_find_slot(struct nfs4_slot_table *tbl, struct rpc_task *task)
426{
427 int slotid;
428 u8 ret_id = NFS4_MAX_SLOT_TABLE;
429 BUILD_BUG_ON((u8)NFS4_MAX_SLOT_TABLE != (int)NFS4_MAX_SLOT_TABLE);
430
Benny Halevy510b8172009-04-01 09:22:14 -0400431 dprintk("--> %s used_slots=%04lx highest_used=%d max_slots=%d\n",
432 __func__, tbl->used_slots[0], tbl->highest_used_slotid,
433 tbl->max_slots);
434 slotid = find_first_zero_bit(tbl->used_slots, tbl->max_slots);
435 if (slotid >= tbl->max_slots)
436 goto out;
437 __set_bit(slotid, tbl->used_slots);
438 if (slotid > tbl->highest_used_slotid)
439 tbl->highest_used_slotid = slotid;
440 ret_id = slotid;
441out:
442 dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
443 __func__, tbl->used_slots[0], tbl->highest_used_slotid, ret_id);
Benny Halevy510b8172009-04-01 09:22:14 -0400444 return ret_id;
445}
446
Andy Adamsonce5039c2009-04-01 09:22:13 -0400447static int nfs41_setup_sequence(struct nfs4_session *session,
448 struct nfs4_sequence_args *args,
449 struct nfs4_sequence_res *res,
450 int cache_reply,
451 struct rpc_task *task)
452{
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400453 struct nfs4_slot *slot;
454 struct nfs4_slot_table *tbl;
455 u8 slotid;
456
457 dprintk("--> %s\n", __func__);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400458 /* slot already allocated? */
459 if (res->sr_slotid != NFS4_MAX_SLOT_TABLE)
460 return 0;
461
462 memset(res, 0, sizeof(*res));
463 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400464 tbl = &session->fc_slot_table;
465
466 spin_lock(&tbl->slot_tbl_lock);
Andy Adamson0b9e2d42009-12-04 16:02:14 -0500467 if (test_bit(NFS4CLNT_SESSION_DRAINING, &session->clp->cl_state)) {
Andy Adamsonea028ac2009-12-04 15:55:38 -0500468 /*
469 * The state manager will wait until the slot table is empty.
470 * Schedule the reset thread
471 */
472 dprintk("%s Schedule Session Reset\n", __func__);
Andy Adamson05f0d232009-12-04 15:55:37 -0500473 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
Andy Adamsonb069d942009-04-01 09:22:43 -0400474 spin_unlock(&tbl->slot_tbl_lock);
Andy Adamson05f0d232009-12-04 15:55:37 -0500475 return -EAGAIN;
Andy Adamsonb069d942009-04-01 09:22:43 -0400476 }
477
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400478 slotid = nfs4_find_slot(tbl, task);
479 if (slotid == NFS4_MAX_SLOT_TABLE) {
480 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
481 spin_unlock(&tbl->slot_tbl_lock);
482 dprintk("<-- %s: no free slots\n", __func__);
483 return -EAGAIN;
484 }
485 spin_unlock(&tbl->slot_tbl_lock);
486
487 slot = tbl->slots + slotid;
Benny Halevy99fe60d2009-04-01 09:22:29 -0400488 args->sa_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400489 args->sa_slotid = slotid;
490 args->sa_cache_this = cache_reply;
491
492 dprintk("<-- %s slotid=%d seqid=%d\n", __func__, slotid, slot->seq_nr);
493
Benny Halevy99fe60d2009-04-01 09:22:29 -0400494 res->sr_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400495 res->sr_slotid = slotid;
496 res->sr_renewal_time = jiffies;
497 /*
498 * sr_status is only set in decode_sequence, and so will remain
499 * set to 1 if an rpc level failure occurs.
500 */
501 res->sr_status = 1;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400502 return 0;
503}
504
505int nfs4_setup_sequence(struct nfs_client *clp,
506 struct nfs4_sequence_args *args,
507 struct nfs4_sequence_res *res,
508 int cache_reply,
509 struct rpc_task *task)
510{
511 int ret = 0;
512
513 dprintk("--> %s clp %p session %p sr_slotid %d\n",
514 __func__, clp, clp->cl_session, res->sr_slotid);
515
516 if (!nfs4_has_session(clp))
517 goto out;
518 ret = nfs41_setup_sequence(clp->cl_session, args, res, cache_reply,
519 task);
Andy Adamson2628edd2009-12-04 15:55:35 -0500520 if (ret && ret != -EAGAIN) {
Andy Adamsonce5039c2009-04-01 09:22:13 -0400521 /* terminate rpc task */
522 task->tk_status = ret;
523 task->tk_action = NULL;
524 }
525out:
526 dprintk("<-- %s status=%d\n", __func__, ret);
527 return ret;
528}
529
530struct nfs41_call_sync_data {
531 struct nfs_client *clp;
532 struct nfs4_sequence_args *seq_args;
533 struct nfs4_sequence_res *seq_res;
534 int cache_reply;
535};
536
537static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
538{
539 struct nfs41_call_sync_data *data = calldata;
540
541 dprintk("--> %s data->clp->cl_session %p\n", __func__,
542 data->clp->cl_session);
543 if (nfs4_setup_sequence(data->clp, data->seq_args,
544 data->seq_res, data->cache_reply, task))
545 return;
546 rpc_call_start(task);
547}
548
Andy Adamson69ab40c2009-04-01 09:22:19 -0400549static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
550{
551 struct nfs41_call_sync_data *data = calldata;
552
553 nfs41_sequence_done(data->clp, data->seq_res, task->tk_status);
Andy Adamson69ab40c2009-04-01 09:22:19 -0400554}
555
Andy Adamsonce5039c2009-04-01 09:22:13 -0400556struct rpc_call_ops nfs41_call_sync_ops = {
557 .rpc_call_prepare = nfs41_call_sync_prepare,
Andy Adamson69ab40c2009-04-01 09:22:19 -0400558 .rpc_call_done = nfs41_call_sync_done,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400559};
560
561static int nfs4_call_sync_sequence(struct nfs_client *clp,
562 struct rpc_clnt *clnt,
563 struct rpc_message *msg,
564 struct nfs4_sequence_args *args,
565 struct nfs4_sequence_res *res,
566 int cache_reply)
567{
568 int ret;
569 struct rpc_task *task;
570 struct nfs41_call_sync_data data = {
571 .clp = clp,
572 .seq_args = args,
573 .seq_res = res,
574 .cache_reply = cache_reply,
575 };
576 struct rpc_task_setup task_setup = {
577 .rpc_client = clnt,
578 .rpc_message = msg,
579 .callback_ops = &nfs41_call_sync_ops,
580 .callback_data = &data
581 };
582
583 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
584 task = rpc_run_task(&task_setup);
585 if (IS_ERR(task))
586 ret = PTR_ERR(task);
587 else {
588 ret = task->tk_status;
589 rpc_put_task(task);
590 }
591 return ret;
592}
593
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400594int _nfs4_call_sync_session(struct nfs_server *server,
595 struct rpc_message *msg,
596 struct nfs4_sequence_args *args,
597 struct nfs4_sequence_res *res,
598 int cache_reply)
599{
Andy Adamsonce5039c2009-04-01 09:22:13 -0400600 return nfs4_call_sync_sequence(server->nfs_client, server->client,
601 msg, args, res, cache_reply);
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400602}
603
604#endif /* CONFIG_NFS_V4_1 */
605
606int _nfs4_call_sync(struct nfs_server *server,
607 struct rpc_message *msg,
608 struct nfs4_sequence_args *args,
609 struct nfs4_sequence_res *res,
610 int cache_reply)
611{
Benny Halevyf3752972009-04-01 09:22:04 -0400612 args->sa_session = res->sr_session = NULL;
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400613 return rpc_call_sync(server->client, msg, 0);
614}
615
616#define nfs4_call_sync(server, msg, args, res, cache_reply) \
617 (server)->nfs_client->cl_call_sync((server), (msg), &(args)->seq_args, \
618 &(res)->seq_res, (cache_reply))
619
Andy Adamsonb0df8062009-04-01 09:22:18 -0400620static void nfs4_sequence_done(const struct nfs_server *server,
621 struct nfs4_sequence_res *res, int rpc_status)
622{
623#ifdef CONFIG_NFS_V4_1
624 if (nfs4_has_session(server->nfs_client))
625 nfs41_sequence_done(server->nfs_client, res, rpc_status);
626#endif /* CONFIG_NFS_V4_1 */
627}
628
Trond Myklebustd61e6122009-12-05 19:32:19 -0500629void nfs4_restart_rpc(struct rpc_task *task, const struct nfs_client *clp)
Andy Adamsone608e792009-12-04 15:55:29 -0500630{
631#ifdef CONFIG_NFS_V4_1
632 if (nfs4_has_session(clp)) {
Andy Adamsone608e792009-12-04 15:55:29 -0500633 rpc_restart_call_prepare(task);
634 return;
635 }
636#endif /* CONFIG_NFS_V4_1 */
637 rpc_restart_call(task);
638}
639
Trond Myklebust38478b22006-05-25 01:40:57 -0400640static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Trond Myklebust38478b22006-05-25 01:40:57 -0400642 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Trond Myklebust38478b22006-05-25 01:40:57 -0400644 spin_lock(&dir->i_lock);
Trond Myklebust40d24702007-10-08 09:24:22 -0400645 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
646 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400647 nfs_force_lookup_revalidate(dir);
Trond Myklebust40d24702007-10-08 09:24:22 -0400648 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400649 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100652struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400653 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100654 struct nfs_openargs o_arg;
655 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100656 struct nfs_open_confirmargs c_arg;
657 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100658 struct nfs_fattr f_attr;
659 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400660 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100661 struct dentry *dir;
662 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400663 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100664 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100665 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400666 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100667 int rpc_status;
668 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100669};
670
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400671
672static void nfs4_init_opendata_res(struct nfs4_opendata *p)
673{
674 p->o_res.f_attr = &p->f_attr;
675 p->o_res.dir_attr = &p->dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400676 p->o_res.seqid = p->o_arg.seqid;
677 p->c_res.seqid = p->c_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400678 p->o_res.server = p->o_arg.server;
679 nfs_fattr_init(&p->f_attr);
680 nfs_fattr_init(&p->dir_attr);
Benny Halevy578e4582009-06-18 22:01:23 -0400681 p->o_res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400682}
683
Trond Myklebustad389da2007-06-05 12:30:00 -0400684static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500685 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100686 const struct iattr *attrs)
687{
Trond Myklebustad389da2007-06-05 12:30:00 -0400688 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100689 struct inode *dir = parent->d_inode;
690 struct nfs_server *server = NFS_SERVER(dir);
691 struct nfs4_opendata *p;
692
693 p = kzalloc(sizeof(*p), GFP_KERNEL);
694 if (p == NULL)
695 goto err;
696 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
697 if (p->o_arg.seqid == NULL)
698 goto err_free;
Trond Myklebustad389da2007-06-05 12:30:00 -0400699 p->path.mnt = mntget(path->mnt);
700 p->path.dentry = dget(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100701 p->dir = parent;
702 p->owner = sp;
703 atomic_inc(&sp->so_count);
704 p->o_arg.fh = NFS_FH(dir);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500705 p->o_arg.open_flags = flags;
706 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
David Howells7539bba2006-08-22 20:06:09 -0400707 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400708 p->o_arg.id = sp->so_owner_id.id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400709 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100710 p->o_arg.server = server;
711 p->o_arg.bitmask = server->attr_bitmask;
712 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100713 if (flags & O_EXCL) {
Alexandros Batsakis4882ef72009-12-05 13:30:21 -0500714 if (nfs4_has_persistent_session(server->nfs_client)) {
715 /* GUARDED */
716 p->o_arg.u.attrs = &p->attrs;
717 memcpy(&p->attrs, attrs, sizeof(p->attrs));
718 } else { /* EXCLUSIVE4_1 */
719 u32 *s = (u32 *) p->o_arg.u.verifier.data;
720 s[0] = jiffies;
721 s[1] = current->pid;
722 }
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100723 } else if (flags & O_CREAT) {
724 p->o_arg.u.attrs = &p->attrs;
725 memcpy(&p->attrs, attrs, sizeof(p->attrs));
726 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100727 p->c_arg.fh = &p->o_res.fh;
728 p->c_arg.stateid = &p->o_res.stateid;
729 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400730 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400731 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100732 return p;
733err_free:
734 kfree(p);
735err:
736 dput(parent);
737 return NULL;
738}
739
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400740static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100741{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400742 struct nfs4_opendata *p = container_of(kref,
743 struct nfs4_opendata, kref);
744
745 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400746 if (p->state != NULL)
747 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400748 nfs4_put_state_owner(p->owner);
749 dput(p->dir);
Jan Blunck31f31db12008-05-02 13:42:45 -0700750 path_put(&p->path);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400751 kfree(p);
752}
753
754static void nfs4_opendata_put(struct nfs4_opendata *p)
755{
756 if (p != NULL)
757 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100758}
759
Trond Myklebust06f814a2006-01-03 09:55:07 +0100760static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
761{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100762 int ret;
763
Trond Myklebust06f814a2006-01-03 09:55:07 +0100764 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100765 return ret;
766}
767
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500768static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400769{
770 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500771
772 if (open_mode & O_EXCL)
773 goto out;
774 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400775 case FMODE_READ:
776 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400777 break;
778 case FMODE_WRITE:
779 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400780 break;
781 case FMODE_READ|FMODE_WRITE:
782 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0;
783 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500784out:
Trond Myklebust6ee41262007-07-08 14:11:36 -0400785 return ret;
786}
787
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500788static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400789{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500790 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400791 return 0;
Trond Myklebust15c831b2008-12-23 15:21:39 -0500792 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
Trond Myklebustaac00a82007-07-05 19:02:21 -0400793 return 0;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500794 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400795 return 1;
796}
797
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500798static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +0100799{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500800 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100801 case FMODE_WRITE:
802 state->n_wronly++;
803 break;
804 case FMODE_READ:
805 state->n_rdonly++;
806 break;
807 case FMODE_READ|FMODE_WRITE:
808 state->n_rdwr++;
809 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500810 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +0100811}
812
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500813static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400814{
815 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
816 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
817 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500818 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400819 case FMODE_READ:
820 set_bit(NFS_O_RDONLY_STATE, &state->flags);
821 break;
822 case FMODE_WRITE:
823 set_bit(NFS_O_WRONLY_STATE, &state->flags);
824 break;
825 case FMODE_READ|FMODE_WRITE:
826 set_bit(NFS_O_RDWR_STATE, &state->flags);
827 }
828}
829
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500830static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400831{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400832 write_seqlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500833 nfs_set_open_stateid_locked(state, stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400834 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400835}
836
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500837static 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 -0700838{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400839 /*
840 * Protect the call to nfs4_state_set_mode_locked and
841 * serialise the stateid update
842 */
843 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400844 if (deleg_stateid != NULL) {
845 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
846 set_bit(NFS_DELEGATED_STATE, &state->flags);
847 }
848 if (open_stateid != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500849 nfs_set_open_stateid_locked(state, open_stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400850 write_sequnlock(&state->seqlock);
851 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500852 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -0700853 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500856static 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 -0500857{
858 struct nfs_inode *nfsi = NFS_I(state->inode);
859 struct nfs_delegation *deleg_cur;
860 int ret = 0;
861
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500862 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -0500863
864 rcu_read_lock();
865 deleg_cur = rcu_dereference(nfsi->delegation);
866 if (deleg_cur == NULL)
867 goto no_delegation;
868
869 spin_lock(&deleg_cur->lock);
870 if (nfsi->delegation != deleg_cur ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500871 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -0500872 goto no_delegation_unlock;
873
874 if (delegation == NULL)
875 delegation = &deleg_cur->stateid;
876 else if (memcmp(deleg_cur->stateid.data, delegation->data, NFS4_STATEID_SIZE) != 0)
877 goto no_delegation_unlock;
878
Trond Myklebustb7391f42008-12-23 15:21:52 -0500879 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500880 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500881 ret = 1;
882no_delegation_unlock:
883 spin_unlock(&deleg_cur->lock);
884no_delegation:
885 rcu_read_unlock();
886
887 if (!ret && open_stateid != NULL) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500888 __update_open_stateid(state, open_stateid, NULL, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500889 ret = 1;
890 }
891
892 return ret;
893}
894
895
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500896static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400897{
898 struct nfs_delegation *delegation;
899
900 rcu_read_lock();
901 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500902 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -0400903 rcu_read_unlock();
904 return;
905 }
906 rcu_read_unlock();
907 nfs_inode_return_delegation(inode);
908}
909
Trond Myklebust6ee41262007-07-08 14:11:36 -0400910static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400911{
912 struct nfs4_state *state = opendata->state;
913 struct nfs_inode *nfsi = NFS_I(state->inode);
914 struct nfs_delegation *delegation;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500915 int open_mode = opendata->o_arg.open_flags & O_EXCL;
916 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400917 nfs4_stateid stateid;
918 int ret = -EAGAIN;
919
Trond Myklebustaac00a82007-07-05 19:02:21 -0400920 for (;;) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500921 if (can_open_cached(state, fmode, open_mode)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400922 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500923 if (can_open_cached(state, fmode, open_mode)) {
924 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400925 spin_unlock(&state->owner->so_lock);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400926 goto out_return_state;
927 }
928 spin_unlock(&state->owner->so_lock);
929 }
Trond Myklebust34310432008-12-23 15:21:38 -0500930 rcu_read_lock();
931 delegation = rcu_dereference(nfsi->delegation);
932 if (delegation == NULL ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500933 !can_open_delegated(delegation, fmode)) {
Trond Myklebust34310432008-12-23 15:21:38 -0500934 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -0400935 break;
Trond Myklebust34310432008-12-23 15:21:38 -0500936 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400937 /* Save the delegation */
938 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
939 rcu_read_unlock();
Trond Myklebustaf22f942007-08-10 17:45:10 -0400940 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400941 if (ret != 0)
942 goto out;
943 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -0500944
945 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500946 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -0500947 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400948 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400949out:
950 return ERR_PTR(ret);
951out_return_state:
952 atomic_inc(&state->count);
953 return state;
954}
955
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100956static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
957{
958 struct inode *inode;
959 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -0400960 struct nfs_delegation *delegation;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400961 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100962
Trond Myklebustaac00a82007-07-05 19:02:21 -0400963 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400964 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400965 goto out;
966 }
967
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400968 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100969 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400970 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100971 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400972 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500973 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400974 goto err;
975 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100976 state = nfs4_get_open_state(inode, data->owner);
977 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400978 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400979 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400980 int delegation_flags = 0;
981
Trond Myklebust003707c2007-07-05 18:07:55 -0400982 rcu_read_lock();
983 delegation = rcu_dereference(NFS_I(inode)->delegation);
984 if (delegation)
985 delegation_flags = delegation->flags;
986 rcu_read_unlock();
Trond Myklebust15c831b2008-12-23 15:21:39 -0500987 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400988 nfs_inode_set_delegation(state->inode,
989 data->owner->so_cred,
990 &data->o_res);
991 else
992 nfs_inode_reclaim_delegation(state->inode,
993 data->owner->so_cred,
994 &data->o_res);
995 }
Trond Myklebust34310432008-12-23 15:21:38 -0500996
997 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500998 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100999 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001000out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001001 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001002err_put_inode:
1003 iput(inode);
1004err:
1005 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001006}
1007
Trond Myklebust864472e2006-01-03 09:55:15 +01001008static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1009{
1010 struct nfs_inode *nfsi = NFS_I(state->inode);
1011 struct nfs_open_context *ctx;
1012
1013 spin_lock(&state->inode->i_lock);
1014 list_for_each_entry(ctx, &nfsi->open_files, list) {
1015 if (ctx->state != state)
1016 continue;
1017 get_nfs_open_context(ctx);
1018 spin_unlock(&state->inode->i_lock);
1019 return ctx;
1020 }
1021 spin_unlock(&state->inode->i_lock);
1022 return ERR_PTR(-ENOENT);
1023}
1024
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001025static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
1026{
1027 struct nfs4_opendata *opendata;
1028
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001029 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, 0, NULL);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001030 if (opendata == NULL)
1031 return ERR_PTR(-ENOMEM);
1032 opendata->state = state;
1033 atomic_inc(&state->count);
1034 return opendata;
1035}
1036
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001037static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +01001038{
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001039 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001040 int ret;
1041
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001042 opendata->o_arg.open_flags = 0;
1043 opendata->o_arg.fmode = fmode;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001044 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1045 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1046 nfs4_init_opendata_res(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001047 ret = _nfs4_proc_open(opendata);
1048 if (ret != 0)
1049 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001050 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001051 if (IS_ERR(newstate))
1052 return PTR_ERR(newstate);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001053 nfs4_close_state(&opendata->path, newstate, fmode);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001054 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001055 return 0;
1056}
1057
1058static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1059{
Trond Myklebust864472e2006-01-03 09:55:15 +01001060 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001061 int ret;
1062
1063 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001064 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001065 smp_rmb();
1066 if (state->n_rdwr != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001067 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001068 if (ret != 0)
1069 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001070 if (newstate != state)
1071 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001072 }
1073 if (state->n_wronly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001074 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001075 if (ret != 0)
1076 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001077 if (newstate != state)
1078 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001079 }
1080 if (state->n_rdonly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001081 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001082 if (ret != 0)
1083 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001084 if (newstate != state)
1085 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001086 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001087 /*
1088 * We may have performed cached opens for all three recoveries.
1089 * Check if we need to update the current stateid.
1090 */
1091 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
1092 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001093 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001094 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1095 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001096 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001097 }
Trond Myklebust864472e2006-01-03 09:55:15 +01001098 return 0;
1099}
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101/*
1102 * OPEN_RECLAIM:
1103 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001105static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001107 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +01001108 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001109 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 int status;
1111
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001112 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1113 if (IS_ERR(opendata))
1114 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001115 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
1116 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001117 rcu_read_lock();
1118 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -05001119 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -04001120 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001121 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +01001122 opendata->o_arg.u.delegation_type = delegation_type;
1123 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001124 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 return status;
1126}
1127
Trond Myklebust539cd032007-06-05 11:46:42 -04001128static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
1130 struct nfs_server *server = NFS_SERVER(state->inode);
1131 struct nfs4_exception exception = { };
1132 int err;
1133 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001134 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001135 if (err != -NFS4ERR_DELAY)
1136 break;
1137 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 } while (exception.retry);
1139 return err;
1140}
1141
Trond Myklebust864472e2006-01-03 09:55:15 +01001142static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1143{
1144 struct nfs_open_context *ctx;
1145 int ret;
1146
1147 ctx = nfs4_state_find_open_context(state);
1148 if (IS_ERR(ctx))
1149 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001150 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001151 put_nfs_open_context(ctx);
1152 return ret;
1153}
1154
Trond Myklebust13437e12007-07-06 15:10:43 -04001155static 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 -07001156{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001157 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001158 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001160 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1161 if (IS_ERR(opendata))
1162 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001163 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -04001164 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001165 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +01001166 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001167 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001168 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169}
1170
Trond Myklebust13437e12007-07-06 15:10:43 -04001171int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
1173 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -04001174 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 int err;
1176 do {
Trond Myklebust13437e12007-07-06 15:10:43 -04001177 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 switch (err) {
1179 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07001180 case -ENOENT:
1181 case -ESTALE:
1182 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 case -NFS4ERR_STALE_CLIENTID:
1184 case -NFS4ERR_STALE_STATEID:
1185 case -NFS4ERR_EXPIRED:
1186 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -04001187 nfs4_schedule_state_recovery(server->nfs_client);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001188 goto out;
1189 case -ERESTARTSYS:
1190 /*
1191 * The show must go on: exit, but mark the
1192 * stateid as needing recovery.
1193 */
1194 case -NFS4ERR_ADMIN_REVOKED:
1195 case -NFS4ERR_BAD_STATEID:
1196 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
1197 case -ENOMEM:
1198 err = 0;
1199 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
1201 err = nfs4_handle_exception(server, err, &exception);
1202 } while (exception.retry);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001203out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return err;
1205}
1206
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001207static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1208{
1209 struct nfs4_opendata *data = calldata;
1210
1211 data->rpc_status = task->tk_status;
1212 if (RPC_ASSASSINATED(task))
1213 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001214 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001215 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
1216 sizeof(data->o_res.stateid.data));
Trond Myklebustbb226292008-01-02 15:19:18 -05001217 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001218 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -04001219 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001220 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001221}
1222
1223static void nfs4_open_confirm_release(void *calldata)
1224{
1225 struct nfs4_opendata *data = calldata;
1226 struct nfs4_state *state = NULL;
1227
1228 /* If this request hasn't been cancelled, do nothing */
1229 if (data->cancelled == 0)
1230 goto out_free;
1231 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001232 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001233 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001234 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001235 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001236 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001237out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001238 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001239}
1240
1241static const struct rpc_call_ops nfs4_open_confirm_ops = {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001242 .rpc_call_done = nfs4_open_confirm_done,
1243 .rpc_release = nfs4_open_confirm_release,
1244};
1245
1246/*
1247 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1248 */
1249static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
1250{
1251 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
1252 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001253 struct rpc_message msg = {
1254 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
1255 .rpc_argp = &data->c_arg,
1256 .rpc_resp = &data->c_res,
1257 .rpc_cred = data->owner->so_cred,
1258 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001259 struct rpc_task_setup task_setup_data = {
1260 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001261 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001262 .callback_ops = &nfs4_open_confirm_ops,
1263 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001264 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001265 .flags = RPC_TASK_ASYNC,
1266 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 int status;
1268
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001269 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001270 data->rpc_done = 0;
1271 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001272 data->timestamp = jiffies;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001273 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001274 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001275 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001276 status = nfs4_wait_for_completion_rpc_task(task);
1277 if (status != 0) {
1278 data->cancelled = 1;
1279 smp_wmb();
1280 } else
1281 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001282 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return status;
1284}
1285
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001286static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001288 struct nfs4_opendata *data = calldata;
1289 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001290
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001291 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
1292 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001293 /*
1294 * Check if we still need to send an OPEN call, or if we can use
1295 * a delegation instead.
1296 */
1297 if (data->state != NULL) {
1298 struct nfs_delegation *delegation;
1299
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001300 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -04001301 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001302 rcu_read_lock();
1303 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
1304 if (delegation != NULL &&
Trond Myklebust15c831b2008-12-23 15:21:39 -05001305 test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) {
Trond Myklebustaac00a82007-07-05 19:02:21 -04001306 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001307 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001308 }
1309 rcu_read_unlock();
1310 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001311 /* Update sequence id. */
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001312 data->o_arg.id = sp->so_owner_id.id;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001313 data->o_arg.clientid = sp->so_client->cl_clientid;
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001314 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001315 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001316 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
1317 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001318 data->timestamp = jiffies;
Andy Adamsond8985282009-04-01 09:22:21 -04001319 if (nfs4_setup_sequence(data->o_arg.server->nfs_client,
1320 &data->o_arg.seq_args,
1321 &data->o_res.seq_res, 1, task))
1322 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001323 rpc_call_start(task);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001324 return;
1325out_no_action:
1326 task->tk_action = NULL;
1327
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001328}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001330static void nfs4_open_done(struct rpc_task *task, void *calldata)
1331{
1332 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001334 data->rpc_status = task->tk_status;
Andy Adamsond8985282009-04-01 09:22:21 -04001335
Trond Myklebustd61e6122009-12-05 19:32:19 -05001336 nfs4_sequence_done(data->o_arg.server, &data->o_res.seq_res,
1337 task->tk_status);
Andy Adamsond8985282009-04-01 09:22:21 -04001338
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001339 if (RPC_ASSASSINATED(task))
1340 return;
1341 if (task->tk_status == 0) {
1342 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -07001343 case S_IFREG:
1344 break;
1345 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001346 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001347 break;
1348 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001349 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001350 break;
1351 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001352 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001353 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001354 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -04001355 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
1356 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -07001357 }
Trond Myklebust3e309912007-07-07 13:19:59 -04001358 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001359}
Trond Myklebust6f926b52005-10-18 14:20:18 -07001360
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001361static void nfs4_open_release(void *calldata)
1362{
1363 struct nfs4_opendata *data = calldata;
1364 struct nfs4_state *state = NULL;
1365
1366 /* If this request hasn't been cancelled, do nothing */
1367 if (data->cancelled == 0)
1368 goto out_free;
1369 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001370 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001371 goto out_free;
1372 /* In case we need an open_confirm, no cleanup! */
1373 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
1374 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001375 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001376 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001377 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001378out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001379 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001380}
1381
1382static const struct rpc_call_ops nfs4_open_ops = {
1383 .rpc_call_prepare = nfs4_open_prepare,
1384 .rpc_call_done = nfs4_open_done,
1385 .rpc_release = nfs4_open_release,
1386};
1387
1388/*
1389 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1390 */
1391static int _nfs4_proc_open(struct nfs4_opendata *data)
1392{
1393 struct inode *dir = data->dir->d_inode;
1394 struct nfs_server *server = NFS_SERVER(dir);
1395 struct nfs_openargs *o_arg = &data->o_arg;
1396 struct nfs_openres *o_res = &data->o_res;
1397 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001398 struct rpc_message msg = {
1399 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
1400 .rpc_argp = o_arg,
1401 .rpc_resp = o_res,
1402 .rpc_cred = data->owner->so_cred,
1403 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001404 struct rpc_task_setup task_setup_data = {
1405 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001406 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001407 .callback_ops = &nfs4_open_ops,
1408 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001409 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001410 .flags = RPC_TASK_ASYNC,
1411 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001412 int status;
1413
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001414 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001415 data->rpc_done = 0;
1416 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001417 data->cancelled = 0;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001418 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001419 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001420 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001421 status = nfs4_wait_for_completion_rpc_task(task);
1422 if (status != 0) {
1423 data->cancelled = 1;
1424 smp_wmb();
1425 } else
1426 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001427 rpc_put_task(task);
Trond Myklebust3e309912007-07-07 13:19:59 -04001428 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001429 return status;
1430
Trond Myklebust99367812007-07-17 21:52:41 -04001431 if (o_res->fh.size == 0)
1432 _nfs4_proc_lookup(dir, o_arg->name, &o_res->fh, o_res->f_attr);
1433
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001434 if (o_arg->open_flags & O_CREAT) {
1435 update_changeattr(dir, &o_res->cinfo);
1436 nfs_post_op_update_inode(dir, o_res->dir_attr);
1437 } else
1438 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001440 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001442 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 }
1444 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -04001445 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001446 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
1448
Trond Myklebust10afec92007-05-14 17:16:04 -04001449static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +01001450{
David Howells7539bba2006-08-22 20:06:09 -04001451 struct nfs_client *clp = server->nfs_client;
Trond Myklebusta78cb572009-08-09 15:06:19 -04001452 unsigned int loop;
Trond Myklebust6b309542006-09-14 14:03:14 -04001453 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001454
Trond Myklebusta78cb572009-08-09 15:06:19 -04001455 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
Trond Myklebust65de8722008-12-23 15:21:44 -05001456 ret = nfs4_wait_clnt_recover(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001457 if (ret != 0)
Trond Myklebusta78cb572009-08-09 15:06:19 -04001458 break;
Trond Myklebuste598d842008-12-23 15:21:42 -05001459 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
1460 !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
Trond Myklebust6b309542006-09-14 14:03:14 -04001461 break;
Trond Myklebust58d97142006-01-03 09:55:24 +01001462 nfs4_schedule_state_recovery(clp);
Trond Myklebusta78cb572009-08-09 15:06:19 -04001463 ret = -EIO;
Trond Myklebust6b309542006-09-14 14:03:14 -04001464 }
Trond Myklebusta78cb572009-08-09 15:06:19 -04001465 return ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001466}
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468/*
1469 * OPEN_EXPIRED:
1470 * reclaim state on the server after a network partition.
1471 * Assumes caller holds the appropriate lock
1472 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001473static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001475 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001476 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001478 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1479 if (IS_ERR(opendata))
1480 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001481 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04001482 if (ret == -ESTALE)
Trond Myklebust539cd032007-06-05 11:46:42 -04001483 d_drop(ctx->path.dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001484 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001485 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486}
1487
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001488static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001489{
Trond Myklebust539cd032007-06-05 11:46:42 -04001490 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001491 struct nfs4_exception exception = { };
1492 int err;
1493
1494 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001495 err = _nfs4_open_expired(ctx, state);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001496 switch (err) {
1497 default:
1498 goto out;
1499 case -NFS4ERR_GRACE:
1500 case -NFS4ERR_DELAY:
1501 nfs4_handle_exception(server, err, &exception);
1502 err = 0;
1503 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00001504 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001505out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00001506 return err;
1507}
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1510{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001512 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Trond Myklebust864472e2006-01-03 09:55:15 +01001514 ctx = nfs4_state_find_open_context(state);
1515 if (IS_ERR(ctx))
1516 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001517 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001518 put_nfs_open_context(ctx);
1519 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520}
1521
1522/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001523 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1524 * fields corresponding to attributes that were used to store the verifier.
1525 * Make sure we clobber those fields in the later setattr call
1526 */
1527static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1528{
1529 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1530 !(sattr->ia_valid & ATTR_ATIME_SET))
1531 sattr->ia_valid |= ATTR_ATIME;
1532
1533 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1534 !(sattr->ia_valid & ATTR_MTIME_SET))
1535 sattr->ia_valid |= ATTR_MTIME;
1536}
1537
1538/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001539 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001541static 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 -07001542{
1543 struct nfs4_state_owner *sp;
1544 struct nfs4_state *state = NULL;
1545 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001546 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001547 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 status = -ENOMEM;
1551 if (!(sp = nfs4_get_state_owner(server, cred))) {
1552 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1553 goto out_err;
1554 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001555 status = nfs4_recover_expired_lease(server);
1556 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001557 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001558 if (path->dentry->d_inode != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001559 nfs4_return_incompatible_delegation(path->dentry->d_inode, fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01001560 status = -ENOMEM;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001561 opendata = nfs4_opendata_alloc(path, sp, fmode, flags, sattr);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001562 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05001563 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Trond Myklebustaac00a82007-07-05 19:02:21 -04001565 if (path->dentry->d_inode != NULL)
1566 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1567
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001568 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001570 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001572 if (opendata->o_arg.open_flags & O_EXCL)
1573 nfs4_exclusive_attrset(opendata, sattr);
1574
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001575 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001576 status = PTR_ERR(state);
1577 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001578 goto err_opendata_put;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001579 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 *res = state;
1582 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001583err_opendata_put:
1584 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001585err_put_state_owner:
1586 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 *res = NULL;
1589 return status;
1590}
1591
1592
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001593static 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 -07001594{
1595 struct nfs4_exception exception = { };
1596 struct nfs4_state *res;
1597 int status;
1598
1599 do {
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001600 status = _nfs4_do_open(dir, path, fmode, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (status == 0)
1602 break;
1603 /* NOTE: BAD_SEQID means the server and client disagree about the
1604 * book-keeping w.r.t. state-changing operations
1605 * (OPEN/CLOSE/LOCK/LOCKU...)
1606 * It is actually a sign of a bug on the client or on the server.
1607 *
1608 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001609 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 * have unhashed the old state_owner for us, and that we can
1611 * therefore safely retry using a new one. We should still warn
1612 * the user though...
1613 */
1614 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001615 printk(KERN_WARNING "NFS: v4 server %s "
1616 " returned a bad sequence-id error!\n",
1617 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 exception.retry = 1;
1619 continue;
1620 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001621 /*
1622 * BAD_STATEID on OPEN means that the server cancelled our
1623 * state before it received the OPEN_CONFIRM.
1624 * Recover by retrying the request as per the discussion
1625 * on Page 181 of RFC3530.
1626 */
1627 if (status == -NFS4ERR_BAD_STATEID) {
1628 exception.retry = 1;
1629 continue;
1630 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001631 if (status == -EAGAIN) {
1632 /* We must have found a delegation */
1633 exception.retry = 1;
1634 continue;
1635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1637 status, &exception));
1638 } while (exception.retry);
1639 return res;
1640}
1641
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001642static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1643 struct nfs_fattr *fattr, struct iattr *sattr,
1644 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001646 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001648 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 .iap = sattr,
1650 .server = server,
1651 .bitmask = server->attr_bitmask,
1652 };
1653 struct nfs_setattrres res = {
1654 .fattr = fattr,
1655 .server = server,
1656 };
1657 struct rpc_message msg = {
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001658 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1659 .rpc_argp = &arg,
1660 .rpc_resp = &res,
1661 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001663 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001664 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Trond Myklebust0e574af2005-10-27 22:12:38 -04001666 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001668 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1669 /* Use that stateid */
1670 } else if (state != NULL) {
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001671 nfs4_copy_stateid(&arg.stateid, state, current->files);
1672 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1674
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001675 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001676 if (status == 0 && state != NULL)
1677 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001678 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001681static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1682 struct nfs_fattr *fattr, struct iattr *sattr,
1683 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001685 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 struct nfs4_exception exception = { };
1687 int err;
1688 do {
1689 err = nfs4_handle_exception(server,
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001690 _nfs4_do_setattr(inode, cred, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 &exception);
1692 } while (exception.retry);
1693 return err;
1694}
1695
1696struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001697 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 struct inode *inode;
1699 struct nfs4_state *state;
1700 struct nfs_closeargs arg;
1701 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001702 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001703 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704};
1705
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001706static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001707{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001708 struct nfs4_closedata *calldata = data;
1709 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001710
1711 nfs4_put_open_state(calldata->state);
1712 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001713 nfs4_put_state_owner(sp);
Jan Blunck31f31db12008-05-02 13:42:45 -07001714 path_put(&calldata->path);
Trond Myklebust95121352005-10-18 14:20:12 -07001715 kfree(calldata);
1716}
1717
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001718static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001720 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 struct nfs_server *server = NFS_SERVER(calldata->inode);
1723
Andy Adamson19ddab02009-04-01 09:22:20 -04001724 nfs4_sequence_done(server, &calldata->res.seq_res, task->tk_status);
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001725 if (RPC_ASSASSINATED(task))
1726 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 /* hmm. we are done with the inode, and in the process of freeing
1728 * the state_owner. we keep this around to process errors
1729 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 switch (task->tk_status) {
1731 case 0:
Trond Myklebust45328c32007-07-26 17:47:34 -04001732 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001733 renew_lease(server, calldata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 break;
1735 case -NFS4ERR_STALE_STATEID:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001736 case -NFS4ERR_OLD_STATEID:
1737 case -NFS4ERR_BAD_STATEID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 case -NFS4ERR_EXPIRED:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001739 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001740 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001742 if (nfs4_async_handle_error(task, server, state) == -EAGAIN) {
Trond Myklebustd61e6122009-12-05 19:32:19 -05001743 nfs4_restart_rpc(task, server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 return;
1745 }
1746 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001747 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748}
1749
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001750static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001752 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001753 struct nfs4_state *state = calldata->state;
Trond Myklebust003707c2007-07-05 18:07:55 -04001754 int clear_rd, clear_wr, clear_rdwr;
Trond Myklebust95121352005-10-18 14:20:12 -07001755
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001756 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001757 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001758
Trond Myklebust003707c2007-07-05 18:07:55 -04001759 clear_rd = clear_wr = clear_rdwr = 0;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001760 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001761 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001762 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001763 if (state->n_rdonly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001764 clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1765 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1766 }
1767 if (state->n_wronly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001768 clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1769 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1770 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001771 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001772 spin_unlock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001773 if (!clear_rd && !clear_wr && !clear_rdwr) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001774 /* Note: exit _without_ calling nfs4_close_done */
1775 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001776 return;
1777 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001778 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust45328c32007-07-26 17:47:34 -04001779 if (test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001780 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001781 calldata->arg.fmode = FMODE_READ;
Trond Myklebust45328c32007-07-26 17:47:34 -04001782 } else if (test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001783 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001784 calldata->arg.fmode = FMODE_WRITE;
Trond Myklebust45328c32007-07-26 17:47:34 -04001785 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001786 calldata->timestamp = jiffies;
Andy Adamson19ddab02009-04-01 09:22:20 -04001787 if (nfs4_setup_sequence((NFS_SERVER(calldata->inode))->nfs_client,
1788 &calldata->arg.seq_args, &calldata->res.seq_res,
1789 1, task))
1790 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001791 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792}
1793
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001794static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001795 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001796 .rpc_call_done = nfs4_close_done,
1797 .rpc_release = nfs4_free_closedata,
1798};
1799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800/*
1801 * It is possible for data to be read/written from a mem-mapped file
1802 * after the sys_close call (which hits the vfs layer as a flush).
1803 * This means that we can't safely call nfsv4 close on a file until
1804 * the inode is cleared. This in turn means that we are not good
1805 * NFSv4 citizens - we do not indicate to the server to update the file's
1806 * share state even when we are done with one of the three share
1807 * stateid's in the inode.
1808 *
1809 * NOTE: Caller must be holding the sp->so_owner semaphore!
1810 */
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001811int nfs4_do_close(struct path *path, struct nfs4_state *state, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001813 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001815 struct nfs4_state_owner *sp = state->owner;
1816 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001817 struct rpc_message msg = {
1818 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1819 .rpc_cred = state->owner->so_cred,
1820 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001821 struct rpc_task_setup task_setup_data = {
1822 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001823 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001824 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05001825 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001826 .flags = RPC_TASK_ASYNC,
1827 };
Trond Myklebust95121352005-10-18 14:20:12 -07001828 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Andy Adamson19ddab02009-04-01 09:22:20 -04001830 calldata = kzalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001832 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001833 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001835 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04001836 calldata->arg.stateid = &state->open_stateid;
Benny Halevy34dc1ad2009-04-01 09:22:52 -04001837 if (nfs4_has_session(server->nfs_client))
1838 memset(calldata->arg.stateid->data, 0, 4); /* clear seqid */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001840 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001841 if (calldata->arg.seqid == NULL)
1842 goto out_free_calldata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001843 calldata->arg.fmode = 0;
Trond Myklebusta65318b2009-03-11 14:10:28 -04001844 calldata->arg.bitmask = server->cache_consistency_bitmask;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001845 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04001846 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001847 calldata->res.server = server;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04001848 calldata->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001849 calldata->path.mnt = mntget(path->mnt);
1850 calldata->path.dentry = dget(path->dentry);
Trond Myklebust95121352005-10-18 14:20:12 -07001851
Trond Myklebust5138fde2007-07-14 15:40:01 -04001852 msg.rpc_argp = &calldata->arg,
1853 msg.rpc_resp = &calldata->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001854 task_setup_data.callback_data = calldata;
1855 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001856 if (IS_ERR(task))
1857 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001858 status = 0;
1859 if (wait)
1860 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001861 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001862 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07001863out_free_calldata:
1864 kfree(calldata);
1865out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04001866 nfs4_put_open_state(state);
1867 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07001868 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869}
1870
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001871static 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 -07001872{
1873 struct file *filp;
Trond Myklebust1b45c462007-07-03 13:04:56 -04001874 int ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001875
Trond Myklebust1b45c462007-07-03 13:04:56 -04001876 /* If the open_intent is for execute, we have an extra check to make */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001877 if (fmode & FMODE_EXEC) {
Trond Myklebustaf22f942007-08-10 17:45:10 -04001878 ret = nfs_may_open(state->inode,
Trond Myklebust1b45c462007-07-03 13:04:56 -04001879 state->owner->so_cred,
1880 nd->intent.open.flags);
1881 if (ret < 0)
1882 goto out_close;
1883 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001884 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001885 if (!IS_ERR(filp)) {
1886 struct nfs_open_context *ctx;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04001887 ctx = nfs_file_open_context(filp);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001888 ctx->state = state;
Trond Myklebust95cf9592006-04-18 13:14:06 -04001889 return 0;
1890 }
Trond Myklebust1b45c462007-07-03 13:04:56 -04001891 ret = PTR_ERR(filp);
1892out_close:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001893 nfs4_close_sync(path, state, fmode & (FMODE_READ|FMODE_WRITE));
Trond Myklebust1b45c462007-07-03 13:04:56 -04001894 return ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001895}
1896
1897struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1899{
Trond Myklebustad389da2007-06-05 12:30:00 -04001900 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001901 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001902 .dentry = dentry,
1903 };
Jan Blunck4ac91372008-02-14 19:34:32 -08001904 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 struct iattr attr;
1906 struct rpc_cred *cred;
1907 struct nfs4_state *state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001908 struct dentry *res;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001909 fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
1911 if (nd->flags & LOOKUP_CREATE) {
1912 attr.ia_mode = nd->intent.open.create_mode;
1913 attr.ia_valid = ATTR_MODE;
1914 if (!IS_POSIXACL(dir))
Al Viroce3b0f82009-03-29 19:08:22 -04001915 attr.ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 } else {
1917 attr.ia_valid = 0;
1918 BUG_ON(nd->intent.open.flags & O_CREAT);
1919 }
1920
Trond Myklebust98a8e322008-03-12 12:25:28 -04001921 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if (IS_ERR(cred))
Trond Myklebust02a913a2005-10-18 14:20:17 -07001923 return (struct dentry *)cred;
Trond Myklebust565277f2007-10-15 18:17:53 -04001924 parent = dentry->d_parent;
1925 /* Protect against concurrent sillydeletes */
1926 nfs_block_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001927 state = nfs4_do_open(dir, &path, fmode, nd->intent.open.flags, &attr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001929 if (IS_ERR(state)) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001930 if (PTR_ERR(state) == -ENOENT) {
Trond Myklebust02a913a2005-10-18 14:20:17 -07001931 d_add(dentry, NULL);
Trond Myklebustd75340c2007-10-01 21:42:01 -04001932 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1933 }
Trond Myklebust565277f2007-10-15 18:17:53 -04001934 nfs_unblock_sillyrename(parent);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001935 return (struct dentry *)state;
1936 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001937 res = d_add_unique(dentry, igrab(state->inode));
Trond Myklebust02a913a2005-10-18 14:20:17 -07001938 if (res != NULL)
Trond Myklebustdeee9362007-08-27 11:33:00 -04001939 path.dentry = res;
Trond Myklebustd75340c2007-10-01 21:42:01 -04001940 nfs_set_verifier(path.dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001941 nfs_unblock_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001942 nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001943 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944}
1945
1946int
Trond Myklebust02a913a2005-10-18 14:20:17 -07001947nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948{
Trond Myklebustad389da2007-06-05 12:30:00 -04001949 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001950 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001951 .dentry = dentry,
1952 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 struct rpc_cred *cred;
1954 struct nfs4_state *state;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001955 fmode_t fmode = openflags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Trond Myklebust98a8e322008-03-12 12:25:28 -04001957 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 if (IS_ERR(cred))
1959 return PTR_ERR(cred);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001960 state = nfs4_do_open(dir, &path, fmode, openflags, NULL, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001962 if (IS_ERR(state)) {
1963 switch (PTR_ERR(state)) {
1964 case -EPERM:
1965 case -EACCES:
1966 case -EDQUOT:
1967 case -ENOSPC:
1968 case -EROFS:
1969 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1970 return 1;
Chuck Leverb87c0ad2006-10-19 23:28:42 -07001971 default:
1972 goto out_drop;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001973 }
Trond Myklebust02a913a2005-10-18 14:20:17 -07001974 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001975 if (state->inode == dentry->d_inode) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001976 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001977 nfs4_intent_set_file(nd, &path, state, fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 return 1;
1979 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001980 nfs4_close_sync(&path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001981out_drop:
1982 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 return 0;
1984}
1985
Trond Myklebust1185a552009-12-03 15:54:02 -05001986static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
Trond Myklebust7fe5c392009-03-19 15:35:50 -04001987{
1988 if (ctx->state == NULL)
1989 return;
1990 if (is_sync)
1991 nfs4_close_sync(&ctx->path, ctx->state, ctx->mode);
1992 else
1993 nfs4_close_state(&ctx->path, ctx->state, ctx->mode);
1994}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1997{
Benny Halevy43652ad2009-04-01 09:21:54 -04001998 struct nfs4_server_caps_arg args = {
1999 .fhandle = fhandle,
2000 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 struct nfs4_server_caps_res res = {};
2002 struct rpc_message msg = {
2003 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
Benny Halevy43652ad2009-04-01 09:21:54 -04002004 .rpc_argp = &args,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 .rpc_resp = &res,
2006 };
2007 int status;
2008
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002009 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 if (status == 0) {
2011 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002012 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
2013 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
2014 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
2015 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
2016 NFS_CAP_CTIME|NFS_CAP_MTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
2018 server->caps |= NFS_CAP_ACLS;
2019 if (res.has_links != 0)
2020 server->caps |= NFS_CAP_HARDLINKS;
2021 if (res.has_symlinks != 0)
2022 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002023 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
2024 server->caps |= NFS_CAP_FILEID;
2025 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
2026 server->caps |= NFS_CAP_MODE;
2027 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
2028 server->caps |= NFS_CAP_NLINK;
2029 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
2030 server->caps |= NFS_CAP_OWNER;
2031 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
2032 server->caps |= NFS_CAP_OWNER_GROUP;
2033 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
2034 server->caps |= NFS_CAP_ATIME;
2035 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
2036 server->caps |= NFS_CAP_CTIME;
2037 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
2038 server->caps |= NFS_CAP_MTIME;
2039
Trond Myklebusta65318b2009-03-11 14:10:28 -04002040 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
2041 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
2042 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 server->acl_bitmask = res.acl_bitmask;
2044 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 return status;
2047}
2048
Trond Myklebust55a97592006-06-09 09:34:19 -04002049int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
2051 struct nfs4_exception exception = { };
2052 int err;
2053 do {
2054 err = nfs4_handle_exception(server,
2055 _nfs4_server_capabilities(server, fhandle),
2056 &exception);
2057 } while (exception.retry);
2058 return err;
2059}
2060
2061static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2062 struct nfs_fsinfo *info)
2063{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 struct nfs4_lookup_root_arg args = {
2065 .bitmask = nfs4_fattr_bitmap,
2066 };
2067 struct nfs4_lookup_res res = {
2068 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04002069 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 .fh = fhandle,
2071 };
2072 struct rpc_message msg = {
2073 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
2074 .rpc_argp = &args,
2075 .rpc_resp = &res,
2076 };
Benny Halevy008f55d2009-04-01 09:22:50 -04002077
Trond Myklebust0e574af2005-10-27 22:12:38 -04002078 nfs_fattr_init(info->fattr);
Trond Myklebustfccba802009-07-21 16:48:07 -04002079 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080}
2081
2082static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2083 struct nfs_fsinfo *info)
2084{
2085 struct nfs4_exception exception = { };
2086 int err;
2087 do {
2088 err = nfs4_handle_exception(server,
2089 _nfs4_lookup_root(server, fhandle, info),
2090 &exception);
2091 } while (exception.retry);
2092 return err;
2093}
2094
David Howells54ceac42006-08-22 20:06:13 -04002095/*
2096 * get the file handle for the "/" directory on the server
2097 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04002099 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 int status;
2102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 if (status == 0)
2105 status = nfs4_server_capabilities(server, fhandle);
2106 if (status == 0)
2107 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08002108 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109}
2110
Manoj Naik6b97fd32006-06-09 09:34:29 -04002111/*
2112 * Get locations and (maybe) other attributes of a referral.
2113 * Note that we'll actually follow the referral later when
2114 * we detect fsid mismatch in inode revalidation
2115 */
Trond Myklebust56659e92007-07-17 21:52:39 -04002116static 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 -04002117{
2118 int status = -ENOMEM;
2119 struct page *page = NULL;
2120 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04002121
2122 page = alloc_page(GFP_KERNEL);
2123 if (page == NULL)
2124 goto out;
2125 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
2126 if (locations == NULL)
2127 goto out;
2128
Trond Myklebustc228fd32007-01-13 02:28:11 -05002129 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002130 if (status != 0)
2131 goto out;
2132 /* Make sure server returned a different fsid for the referral */
2133 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07002134 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 -04002135 status = -EIO;
2136 goto out;
2137 }
2138
2139 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
2140 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
2141 if (!fattr->mode)
2142 fattr->mode = S_IFDIR;
2143 memset(fhandle, 0, sizeof(struct nfs_fh));
2144out:
2145 if (page)
2146 __free_page(page);
2147 if (locations)
2148 kfree(locations);
2149 return status;
2150}
2151
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2153{
2154 struct nfs4_getattr_arg args = {
2155 .fh = fhandle,
2156 .bitmask = server->attr_bitmask,
2157 };
2158 struct nfs4_getattr_res res = {
2159 .fattr = fattr,
2160 .server = server,
2161 };
2162 struct rpc_message msg = {
2163 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
2164 .rpc_argp = &args,
2165 .rpc_resp = &res,
2166 };
2167
Trond Myklebust0e574af2005-10-27 22:12:38 -04002168 nfs_fattr_init(fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002169 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170}
2171
2172static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2173{
2174 struct nfs4_exception exception = { };
2175 int err;
2176 do {
2177 err = nfs4_handle_exception(server,
2178 _nfs4_proc_getattr(server, fhandle, fattr),
2179 &exception);
2180 } while (exception.retry);
2181 return err;
2182}
2183
2184/*
2185 * The file is not closed if it is opened due to the a request to change
2186 * the size of the file. The open call will not be needed once the
2187 * VFS layer lookup-intents are implemented.
2188 *
2189 * Close is called when the inode is destroyed.
2190 * If we haven't opened the file for O_WRONLY, we
2191 * need to in the size_change case to obtain a stateid.
2192 *
2193 * Got race?
2194 * Because OPEN is always done by name in nfsv4, it is
2195 * possible that we opened a different file by the same
2196 * name. We can recognize this race condition, but we
2197 * can't do anything about it besides returning an error.
2198 *
2199 * This will be fixed with VFS changes (lookup-intent).
2200 */
2201static int
2202nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
2203 struct iattr *sattr)
2204{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002205 struct inode *inode = dentry->d_inode;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002206 struct rpc_cred *cred = NULL;
Trond Myklebustd5308382005-11-04 15:33:38 -05002207 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 int status;
2209
Trond Myklebust0e574af2005-10-27 22:12:38 -04002210 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Trond Myklebustd5308382005-11-04 15:33:38 -05002212 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002213 if (sattr->ia_valid & ATTR_FILE) {
2214 struct nfs_open_context *ctx;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002215
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002216 ctx = nfs_file_open_context(sattr->ia_file);
Neil Brown504e5182008-10-16 14:15:16 +11002217 if (ctx) {
2218 cred = ctx->cred;
2219 state = ctx->state;
2220 }
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002221 }
2222
2223 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04002224 if (status == 0)
2225 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 return status;
2227}
2228
Trond Myklebust56659e92007-07-17 21:52:39 -04002229static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
2230 const struct qstr *name, struct nfs_fh *fhandle,
David Howells2b3de442006-08-22 20:06:09 -04002231 struct nfs_fattr *fattr)
2232{
2233 int status;
2234 struct nfs4_lookup_arg args = {
2235 .bitmask = server->attr_bitmask,
2236 .dir_fh = dirfh,
2237 .name = name,
2238 };
2239 struct nfs4_lookup_res res = {
2240 .server = server,
2241 .fattr = fattr,
2242 .fh = fhandle,
2243 };
2244 struct rpc_message msg = {
2245 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
2246 .rpc_argp = &args,
2247 .rpc_resp = &res,
2248 };
2249
2250 nfs_fattr_init(fattr);
2251
2252 dprintk("NFS call lookupfh %s\n", name->name);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002253 status = nfs4_call_sync(server, &msg, &args, &res, 0);
David Howells2b3de442006-08-22 20:06:09 -04002254 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04002255 return status;
2256}
2257
2258static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
2259 struct qstr *name, struct nfs_fh *fhandle,
2260 struct nfs_fattr *fattr)
2261{
2262 struct nfs4_exception exception = { };
2263 int err;
2264 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04002265 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
2266 /* FIXME: !!!! */
2267 if (err == -NFS4ERR_MOVED) {
2268 err = -EREMOTE;
2269 break;
2270 }
2271 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04002272 } while (exception.retry);
2273 return err;
2274}
2275
Trond Myklebust56659e92007-07-17 21:52:39 -04002276static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2278{
Trond Myklebust4e56e082007-07-01 18:13:52 -04002279 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04002282 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002283 if (status == -NFS4ERR_MOVED)
2284 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 dprintk("NFS reply lookup: %d\n", status);
2286 return status;
2287}
2288
2289static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2290{
2291 struct nfs4_exception exception = { };
2292 int err;
2293 do {
2294 err = nfs4_handle_exception(NFS_SERVER(dir),
2295 _nfs4_proc_lookup(dir, name, fhandle, fattr),
2296 &exception);
2297 } while (exception.retry);
2298 return err;
2299}
2300
2301static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2302{
Trond Myklebust76b32992007-08-10 17:45:11 -04002303 struct nfs_server *server = NFS_SERVER(inode);
2304 struct nfs_fattr fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 struct nfs4_accessargs args = {
2306 .fh = NFS_FH(inode),
Trond Myklebust76b32992007-08-10 17:45:11 -04002307 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 };
Trond Myklebust76b32992007-08-10 17:45:11 -04002309 struct nfs4_accessres res = {
2310 .server = server,
2311 .fattr = &fattr,
2312 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 struct rpc_message msg = {
2314 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
2315 .rpc_argp = &args,
2316 .rpc_resp = &res,
2317 .rpc_cred = entry->cred,
2318 };
2319 int mode = entry->mask;
2320 int status;
2321
2322 /*
2323 * Determine which access bits we want to ask for...
2324 */
2325 if (mode & MAY_READ)
2326 args.access |= NFS4_ACCESS_READ;
2327 if (S_ISDIR(inode->i_mode)) {
2328 if (mode & MAY_WRITE)
2329 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
2330 if (mode & MAY_EXEC)
2331 args.access |= NFS4_ACCESS_LOOKUP;
2332 } else {
2333 if (mode & MAY_WRITE)
2334 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
2335 if (mode & MAY_EXEC)
2336 args.access |= NFS4_ACCESS_EXECUTE;
2337 }
Trond Myklebust76b32992007-08-10 17:45:11 -04002338 nfs_fattr_init(&fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002339 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 if (!status) {
2341 entry->mask = 0;
2342 if (res.access & NFS4_ACCESS_READ)
2343 entry->mask |= MAY_READ;
2344 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
2345 entry->mask |= MAY_WRITE;
2346 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
2347 entry->mask |= MAY_EXEC;
Trond Myklebust76b32992007-08-10 17:45:11 -04002348 nfs_refresh_inode(inode, &fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 }
2350 return status;
2351}
2352
2353static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2354{
2355 struct nfs4_exception exception = { };
2356 int err;
2357 do {
2358 err = nfs4_handle_exception(NFS_SERVER(inode),
2359 _nfs4_proc_access(inode, entry),
2360 &exception);
2361 } while (exception.retry);
2362 return err;
2363}
2364
2365/*
2366 * TODO: For the time being, we don't try to get any attributes
2367 * along with any of the zero-copy operations READ, READDIR,
2368 * READLINK, WRITE.
2369 *
2370 * In the case of the first three, we want to put the GETATTR
2371 * after the read-type operation -- this is because it is hard
2372 * to predict the length of a GETATTR response in v4, and thus
2373 * align the READ data correctly. This means that the GETATTR
2374 * may end up partially falling into the page cache, and we should
2375 * shift it into the 'tail' of the xdr_buf before processing.
2376 * To do this efficiently, we need to know the total length
2377 * of data received, which doesn't seem to be available outside
2378 * of the RPC layer.
2379 *
2380 * In the case of WRITE, we also want to put the GETATTR after
2381 * the operation -- in this case because we want to make sure
2382 * we get the post-operation mtime and size. This means that
2383 * we can't use xdr_encode_pages() as written: we need a variant
2384 * of it which would leave room in the 'tail' iovec.
2385 *
2386 * Both of these changes to the XDR layer would in fact be quite
2387 * minor, but I decided to leave them for a subsequent patch.
2388 */
2389static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
2390 unsigned int pgbase, unsigned int pglen)
2391{
2392 struct nfs4_readlink args = {
2393 .fh = NFS_FH(inode),
2394 .pgbase = pgbase,
2395 .pglen = pglen,
2396 .pages = &page,
2397 };
Benny Halevyf50c7002009-04-01 09:21:55 -04002398 struct nfs4_readlink_res res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 struct rpc_message msg = {
2400 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
2401 .rpc_argp = &args,
Benny Halevyf50c7002009-04-01 09:21:55 -04002402 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 };
2404
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002405 return nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406}
2407
2408static int nfs4_proc_readlink(struct inode *inode, struct page *page,
2409 unsigned int pgbase, unsigned int pglen)
2410{
2411 struct nfs4_exception exception = { };
2412 int err;
2413 do {
2414 err = nfs4_handle_exception(NFS_SERVER(inode),
2415 _nfs4_proc_readlink(inode, page, pgbase, pglen),
2416 &exception);
2417 } while (exception.retry);
2418 return err;
2419}
2420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421/*
2422 * Got race?
2423 * We will need to arrange for the VFS layer to provide an atomic open.
2424 * Until then, this create/open method is prone to inefficiency and race
2425 * conditions due to the lookup, create, and open VFS calls from sys_open()
2426 * placed on the wire.
2427 *
2428 * Given the above sorry state of affairs, I'm simply sending an OPEN.
2429 * The file will be opened again in the subsequent VFS open call
2430 * (nfs4_proc_file_open).
2431 *
2432 * The open for read will just hang around to be used by any process that
2433 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
2434 */
2435
2436static int
2437nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07002438 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439{
Trond Myklebustad389da2007-06-05 12:30:00 -04002440 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08002441 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04002442 .dentry = dentry,
2443 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 struct nfs4_state *state;
2445 struct rpc_cred *cred;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002446 fmode_t fmode = flags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 int status = 0;
2448
Trond Myklebust98a8e322008-03-12 12:25:28 -04002449 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 if (IS_ERR(cred)) {
2451 status = PTR_ERR(cred);
2452 goto out;
2453 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002454 state = nfs4_do_open(dir, &path, fmode, flags, sattr, cred);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002455 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 if (IS_ERR(state)) {
2457 status = PTR_ERR(state);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002458 goto out_putcred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002460 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04002461 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 if (flags & O_EXCL) {
2463 struct nfs_fattr fattr;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002464 status = nfs4_do_setattr(state->inode, cred, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002465 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04002466 nfs_setattr_update_inode(state->inode, sattr);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002467 nfs_post_op_update_inode(state->inode, &fattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002468 }
Trond Myklebustad389da2007-06-05 12:30:00 -04002469 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002470 status = nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002471 else
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002472 nfs4_close_sync(&path, state, fmode);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002473out_putcred:
2474 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475out:
2476 return status;
2477}
2478
2479static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
2480{
Trond Myklebust16e42952005-10-27 22:12:44 -04002481 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002482 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 .fh = NFS_FH(dir),
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002484 .name.len = name->len,
2485 .name.name = name->name,
Trond Myklebust16e42952005-10-27 22:12:44 -04002486 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002488 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04002489 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04002490 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002492 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
2493 .rpc_argp = &args,
2494 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 };
2496 int status;
2497
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002498 nfs_fattr_init(&res.dir_attr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002499 status = nfs4_call_sync(server, &msg, &args, &res, 1);
Trond Myklebust16e42952005-10-27 22:12:44 -04002500 if (status == 0) {
2501 update_changeattr(dir, &res.cinfo);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002502 nfs_post_op_update_inode(dir, &res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04002503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 return status;
2505}
2506
2507static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
2508{
2509 struct nfs4_exception exception = { };
2510 int err;
2511 do {
2512 err = nfs4_handle_exception(NFS_SERVER(dir),
2513 _nfs4_proc_remove(dir, name),
2514 &exception);
2515 } while (exception.retry);
2516 return err;
2517}
2518
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002519static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002521 struct nfs_server *server = NFS_SERVER(dir);
2522 struct nfs_removeargs *args = msg->rpc_argp;
2523 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Trond Myklebusta65318b2009-03-11 14:10:28 -04002525 args->bitmask = server->cache_consistency_bitmask;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002526 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528}
2529
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002530static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002532 struct nfs_removeres *res = task->tk_msg.rpc_resp;
2533
Andy Adamson472cfbd2009-04-01 09:22:24 -04002534 nfs4_sequence_done(res->server, &res->seq_res, task->tk_status);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002535 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002536 return 0;
2537 update_changeattr(dir, &res->cinfo);
2538 nfs_post_op_update_inode(dir, &res->dir_attr);
2539 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540}
2541
2542static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2543 struct inode *new_dir, struct qstr *new_name)
2544{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002545 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 struct nfs4_rename_arg arg = {
2547 .old_dir = NFS_FH(old_dir),
2548 .new_dir = NFS_FH(new_dir),
2549 .old_name = old_name,
2550 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002551 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002553 struct nfs_fattr old_fattr, new_fattr;
2554 struct nfs4_rename_res res = {
2555 .server = server,
2556 .old_fattr = &old_fattr,
2557 .new_fattr = &new_fattr,
2558 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 struct rpc_message msg = {
2560 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2561 .rpc_argp = &arg,
2562 .rpc_resp = &res,
2563 };
2564 int status;
2565
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002566 nfs_fattr_init(res.old_fattr);
2567 nfs_fattr_init(res.new_fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002568 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
2570 if (!status) {
2571 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002572 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002574 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 }
2576 return status;
2577}
2578
2579static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2580 struct inode *new_dir, struct qstr *new_name)
2581{
2582 struct nfs4_exception exception = { };
2583 int err;
2584 do {
2585 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2586 _nfs4_proc_rename(old_dir, old_name,
2587 new_dir, new_name),
2588 &exception);
2589 } while (exception.retry);
2590 return err;
2591}
2592
2593static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2594{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002595 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 struct nfs4_link_arg arg = {
2597 .fh = NFS_FH(inode),
2598 .dir_fh = NFS_FH(dir),
2599 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002600 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002602 struct nfs_fattr fattr, dir_attr;
2603 struct nfs4_link_res res = {
2604 .server = server,
2605 .fattr = &fattr,
2606 .dir_attr = &dir_attr,
2607 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 struct rpc_message msg = {
2609 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2610 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002611 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 };
2613 int status;
2614
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002615 nfs_fattr_init(res.fattr);
2616 nfs_fattr_init(res.dir_attr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002617 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002618 if (!status) {
2619 update_changeattr(dir, &res.cinfo);
2620 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002621 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
2624 return status;
2625}
2626
2627static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2628{
2629 struct nfs4_exception exception = { };
2630 int err;
2631 do {
2632 err = nfs4_handle_exception(NFS_SERVER(inode),
2633 _nfs4_proc_link(inode, dir, name),
2634 &exception);
2635 } while (exception.retry);
2636 return err;
2637}
2638
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002639struct nfs4_createdata {
2640 struct rpc_message msg;
2641 struct nfs4_create_arg arg;
2642 struct nfs4_create_res res;
2643 struct nfs_fh fh;
2644 struct nfs_fattr fattr;
2645 struct nfs_fattr dir_fattr;
2646};
2647
2648static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2649 struct qstr *name, struct iattr *sattr, u32 ftype)
2650{
2651 struct nfs4_createdata *data;
2652
2653 data = kzalloc(sizeof(*data), GFP_KERNEL);
2654 if (data != NULL) {
2655 struct nfs_server *server = NFS_SERVER(dir);
2656
2657 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2658 data->msg.rpc_argp = &data->arg;
2659 data->msg.rpc_resp = &data->res;
2660 data->arg.dir_fh = NFS_FH(dir);
2661 data->arg.server = server;
2662 data->arg.name = name;
2663 data->arg.attrs = sattr;
2664 data->arg.ftype = ftype;
2665 data->arg.bitmask = server->attr_bitmask;
2666 data->res.server = server;
2667 data->res.fh = &data->fh;
2668 data->res.fattr = &data->fattr;
2669 data->res.dir_fattr = &data->dir_fattr;
2670 nfs_fattr_init(data->res.fattr);
2671 nfs_fattr_init(data->res.dir_fattr);
2672 }
2673 return data;
2674}
2675
2676static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2677{
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002678 int status = nfs4_call_sync(NFS_SERVER(dir), &data->msg,
2679 &data->arg, &data->res, 1);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002680 if (status == 0) {
2681 update_changeattr(dir, &data->res.dir_cinfo);
2682 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2683 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2684 }
2685 return status;
2686}
2687
2688static void nfs4_free_createdata(struct nfs4_createdata *data)
2689{
2690 kfree(data);
2691}
2692
Chuck Lever4f390c12006-08-22 20:06:22 -04002693static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002694 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002696 struct nfs4_createdata *data;
2697 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Chuck Lever94a6d752006-08-22 20:06:23 -04002699 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002700 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04002701
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002702 status = -ENOMEM;
2703 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2704 if (data == NULL)
2705 goto out;
2706
2707 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2708 data->arg.u.symlink.pages = &page;
2709 data->arg.u.symlink.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002711 status = nfs4_do_create(dir, dentry, data);
2712
2713 nfs4_free_createdata(data);
2714out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 return status;
2716}
2717
Chuck Lever4f390c12006-08-22 20:06:22 -04002718static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002719 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720{
2721 struct nfs4_exception exception = { };
2722 int err;
2723 do {
2724 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002725 _nfs4_proc_symlink(dir, dentry, page,
2726 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 &exception);
2728 } while (exception.retry);
2729 return err;
2730}
2731
2732static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2733 struct iattr *sattr)
2734{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002735 struct nfs4_createdata *data;
2736 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002738 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2739 if (data == NULL)
2740 goto out;
2741
2742 status = nfs4_do_create(dir, dentry, data);
2743
2744 nfs4_free_createdata(data);
2745out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 return status;
2747}
2748
2749static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2750 struct iattr *sattr)
2751{
2752 struct nfs4_exception exception = { };
2753 int err;
2754 do {
2755 err = nfs4_handle_exception(NFS_SERVER(dir),
2756 _nfs4_proc_mkdir(dir, dentry, sattr),
2757 &exception);
2758 } while (exception.retry);
2759 return err;
2760}
2761
2762static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2763 u64 cookie, struct page *page, unsigned int count, int plus)
2764{
2765 struct inode *dir = dentry->d_inode;
2766 struct nfs4_readdir_arg args = {
2767 .fh = NFS_FH(dir),
2768 .pages = &page,
2769 .pgbase = 0,
2770 .count = count,
Trond Myklebust96d25e52009-11-11 16:15:42 +09002771 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 };
2773 struct nfs4_readdir_res res;
2774 struct rpc_message msg = {
2775 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2776 .rpc_argp = &args,
2777 .rpc_resp = &res,
2778 .rpc_cred = cred,
2779 };
2780 int status;
2781
Harvey Harrison3110ff82008-05-02 13:42:44 -07002782 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00002783 dentry->d_parent->d_name.name,
2784 dentry->d_name.name,
2785 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2787 res.pgbase = args.pgbase;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002788 status = nfs4_call_sync(NFS_SERVER(dir), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 if (status == 0)
2790 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustc4812992007-09-28 17:11:45 -04002791
2792 nfs_invalidate_atime(dir);
2793
Harvey Harrison3110ff82008-05-02 13:42:44 -07002794 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 return status;
2796}
2797
2798static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2799 u64 cookie, struct page *page, unsigned int count, int plus)
2800{
2801 struct nfs4_exception exception = { };
2802 int err;
2803 do {
2804 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2805 _nfs4_proc_readdir(dentry, cred, cookie,
2806 page, count, plus),
2807 &exception);
2808 } while (exception.retry);
2809 return err;
2810}
2811
2812static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2813 struct iattr *sattr, dev_t rdev)
2814{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002815 struct nfs4_createdata *data;
2816 int mode = sattr->ia_mode;
2817 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
2819 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2820 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002821
2822 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
2823 if (data == NULL)
2824 goto out;
2825
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002827 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002829 data->arg.ftype = NF4BLK;
2830 data->arg.u.device.specdata1 = MAJOR(rdev);
2831 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 }
2833 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002834 data->arg.ftype = NF4CHR;
2835 data->arg.u.device.specdata1 = MAJOR(rdev);
2836 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002839 status = nfs4_do_create(dir, dentry, data);
2840
2841 nfs4_free_createdata(data);
2842out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 return status;
2844}
2845
2846static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2847 struct iattr *sattr, dev_t rdev)
2848{
2849 struct nfs4_exception exception = { };
2850 int err;
2851 do {
2852 err = nfs4_handle_exception(NFS_SERVER(dir),
2853 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2854 &exception);
2855 } while (exception.retry);
2856 return err;
2857}
2858
2859static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2860 struct nfs_fsstat *fsstat)
2861{
2862 struct nfs4_statfs_arg args = {
2863 .fh = fhandle,
2864 .bitmask = server->attr_bitmask,
2865 };
Benny Halevy24ad1482009-04-01 09:21:56 -04002866 struct nfs4_statfs_res res = {
2867 .fsstat = fsstat,
2868 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 struct rpc_message msg = {
2870 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2871 .rpc_argp = &args,
Benny Halevy24ad1482009-04-01 09:21:56 -04002872 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 };
2874
Trond Myklebust0e574af2005-10-27 22:12:38 -04002875 nfs_fattr_init(fsstat->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002876 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877}
2878
2879static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2880{
2881 struct nfs4_exception exception = { };
2882 int err;
2883 do {
2884 err = nfs4_handle_exception(server,
2885 _nfs4_proc_statfs(server, fhandle, fsstat),
2886 &exception);
2887 } while (exception.retry);
2888 return err;
2889}
2890
2891static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2892 struct nfs_fsinfo *fsinfo)
2893{
2894 struct nfs4_fsinfo_arg args = {
2895 .fh = fhandle,
2896 .bitmask = server->attr_bitmask,
2897 };
Benny Halevy3dda5e42009-04-01 09:21:57 -04002898 struct nfs4_fsinfo_res res = {
2899 .fsinfo = fsinfo,
2900 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 struct rpc_message msg = {
2902 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2903 .rpc_argp = &args,
Benny Halevy3dda5e42009-04-01 09:21:57 -04002904 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 };
2906
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002907 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908}
2909
2910static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2911{
2912 struct nfs4_exception exception = { };
2913 int err;
2914
2915 do {
2916 err = nfs4_handle_exception(server,
2917 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2918 &exception);
2919 } while (exception.retry);
2920 return err;
2921}
2922
2923static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2924{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002925 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2927}
2928
2929static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2930 struct nfs_pathconf *pathconf)
2931{
2932 struct nfs4_pathconf_arg args = {
2933 .fh = fhandle,
2934 .bitmask = server->attr_bitmask,
2935 };
Benny Halevyd45b2982009-04-01 09:21:58 -04002936 struct nfs4_pathconf_res res = {
2937 .pathconf = pathconf,
2938 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 struct rpc_message msg = {
2940 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2941 .rpc_argp = &args,
Benny Halevyd45b2982009-04-01 09:21:58 -04002942 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 };
2944
2945 /* None of the pathconf attributes are mandatory to implement */
2946 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2947 memset(pathconf, 0, sizeof(*pathconf));
2948 return 0;
2949 }
2950
Trond Myklebust0e574af2005-10-27 22:12:38 -04002951 nfs_fattr_init(pathconf->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002952 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953}
2954
2955static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2956 struct nfs_pathconf *pathconf)
2957{
2958 struct nfs4_exception exception = { };
2959 int err;
2960
2961 do {
2962 err = nfs4_handle_exception(server,
2963 _nfs4_proc_pathconf(server, fhandle, pathconf),
2964 &exception);
2965 } while (exception.retry);
2966 return err;
2967}
2968
Trond Myklebustec06c092006-03-20 13:44:27 -05002969static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970{
Trond Myklebustec06c092006-03-20 13:44:27 -05002971 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
Andy Adamsonf11c88a2009-04-01 09:22:25 -04002973 dprintk("--> %s\n", __func__);
2974
Andy Adamsonf11c88a2009-04-01 09:22:25 -04002975 nfs4_sequence_done(server, &data->res.seq_res, task->tk_status);
2976
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002977 if (nfs4_async_handle_error(task, server, data->args.context->state) == -EAGAIN) {
Trond Myklebustd61e6122009-12-05 19:32:19 -05002978 nfs4_restart_rpc(task, server->nfs_client);
Trond Myklebustec06c092006-03-20 13:44:27 -05002979 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 }
Trond Myklebust8850df92007-09-28 17:20:07 -04002981
2982 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002984 renew_lease(server, data->timestamp);
2985 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986}
2987
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002988static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 data->timestamp = jiffies;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002991 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992}
2993
Trond Myklebust788e7a82006-03-20 13:44:27 -05002994static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 struct inode *inode = data->inode;
2997
Andy Adamsondef6ed72009-04-01 09:22:26 -04002998 nfs4_sequence_done(NFS_SERVER(inode), &data->res.seq_res,
2999 task->tk_status);
3000
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003001 if (nfs4_async_handle_error(task, NFS_SERVER(inode), data->args.context->state) == -EAGAIN) {
Trond Myklebustd61e6122009-12-05 19:32:19 -05003002 nfs4_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003003 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003005 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust70ca8852007-09-30 15:21:24 -04003007 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003008 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05003009 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010}
3011
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003012static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013{
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003014 struct nfs_server *server = NFS_SERVER(data->inode);
3015
Trond Myklebusta65318b2009-03-11 14:10:28 -04003016 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003017 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 data->timestamp = jiffies;
3019
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003020 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021}
3022
Trond Myklebust788e7a82006-03-20 13:44:27 -05003023static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 struct inode *inode = data->inode;
3026
Andy Adamson21d9a852009-04-01 09:22:27 -04003027 nfs4_sequence_done(NFS_SERVER(inode), &data->res.seq_res,
3028 task->tk_status);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003029 if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) {
Trond Myklebustd61e6122009-12-05 19:32:19 -05003030 nfs4_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003031 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 }
Trond Myklebust9e08a3c2007-10-08 14:10:31 -04003033 nfs_refresh_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003034 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035}
3036
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003037static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038{
Trond Myklebust788e7a82006-03-20 13:44:27 -05003039 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
Trond Myklebusta65318b2009-03-11 14:10:28 -04003041 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003042 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003043 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044}
3045
3046/*
3047 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
3048 * standalone procedure for queueing an asynchronous RENEW.
3049 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003050static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051{
David Howellsadfa6f92006-08-22 20:06:08 -04003052 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003053 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054
3055 if (task->tk_status < 0) {
Trond Myklebust95baa252009-05-26 14:51:00 -04003056 /* Unless we're shutting down, schedule state recovery! */
3057 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) != 0)
3058 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 return;
3060 }
3061 spin_lock(&clp->cl_lock);
3062 if (time_before(clp->cl_last_renewal,timestamp))
3063 clp->cl_last_renewal = timestamp;
3064 spin_unlock(&clp->cl_lock);
3065}
3066
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003067static const struct rpc_call_ops nfs4_renew_ops = {
3068 .rpc_call_done = nfs4_renew_done,
3069};
3070
David Howellsadfa6f92006-08-22 20:06:08 -04003071int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072{
3073 struct rpc_message msg = {
3074 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3075 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003076 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 };
3078
3079 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003080 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081}
3082
David Howellsadfa6f92006-08-22 20:06:08 -04003083int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
3085 struct rpc_message msg = {
3086 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3087 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003088 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 };
3090 unsigned long now = jiffies;
3091 int status;
3092
3093 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3094 if (status < 0)
3095 return status;
3096 spin_lock(&clp->cl_lock);
3097 if (time_before(clp->cl_last_renewal,now))
3098 clp->cl_last_renewal = now;
3099 spin_unlock(&clp->cl_lock);
3100 return 0;
3101}
3102
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003103static inline int nfs4_server_supports_acls(struct nfs_server *server)
3104{
3105 return (server->caps & NFS_CAP_ACLS)
3106 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
3107 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
3108}
3109
3110/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
3111 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
3112 * the stack.
3113 */
3114#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
3115
3116static void buf_to_pages(const void *buf, size_t buflen,
3117 struct page **pages, unsigned int *pgbase)
3118{
3119 const void *p = buf;
3120
3121 *pgbase = offset_in_page(buf);
3122 p -= *pgbase;
3123 while (p < buf + buflen) {
3124 *(pages++) = virt_to_page(p);
3125 p += PAGE_CACHE_SIZE;
3126 }
3127}
3128
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003129struct nfs4_cached_acl {
3130 int cached;
3131 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00003132 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003133};
3134
3135static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003136{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003137 struct nfs_inode *nfsi = NFS_I(inode);
3138
3139 spin_lock(&inode->i_lock);
3140 kfree(nfsi->nfs4_acl);
3141 nfsi->nfs4_acl = acl;
3142 spin_unlock(&inode->i_lock);
3143}
3144
3145static void nfs4_zap_acl_attr(struct inode *inode)
3146{
3147 nfs4_set_cached_acl(inode, NULL);
3148}
3149
3150static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
3151{
3152 struct nfs_inode *nfsi = NFS_I(inode);
3153 struct nfs4_cached_acl *acl;
3154 int ret = -ENOENT;
3155
3156 spin_lock(&inode->i_lock);
3157 acl = nfsi->nfs4_acl;
3158 if (acl == NULL)
3159 goto out;
3160 if (buf == NULL) /* user is just asking for length */
3161 goto out_len;
3162 if (acl->cached == 0)
3163 goto out;
3164 ret = -ERANGE; /* see getxattr(2) man page */
3165 if (acl->len > buflen)
3166 goto out;
3167 memcpy(buf, acl->data, acl->len);
3168out_len:
3169 ret = acl->len;
3170out:
3171 spin_unlock(&inode->i_lock);
3172 return ret;
3173}
3174
3175static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
3176{
3177 struct nfs4_cached_acl *acl;
3178
3179 if (buf && acl_len <= PAGE_SIZE) {
3180 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
3181 if (acl == NULL)
3182 goto out;
3183 acl->cached = 1;
3184 memcpy(acl->data, buf, acl_len);
3185 } else {
3186 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
3187 if (acl == NULL)
3188 goto out;
3189 acl->cached = 0;
3190 }
3191 acl->len = acl_len;
3192out:
3193 nfs4_set_cached_acl(inode, acl);
3194}
3195
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003196static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003197{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003198 struct page *pages[NFS4ACL_MAXPAGES];
3199 struct nfs_getaclargs args = {
3200 .fh = NFS_FH(inode),
3201 .acl_pages = pages,
3202 .acl_len = buflen,
3203 };
Benny Halevy663c79b2009-04-01 09:21:59 -04003204 struct nfs_getaclres res = {
3205 .acl_len = buflen,
3206 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003207 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003208 struct rpc_message msg = {
3209 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
3210 .rpc_argp = &args,
Benny Halevy663c79b2009-04-01 09:21:59 -04003211 .rpc_resp = &res,
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003212 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003213 struct page *localpage = NULL;
3214 int ret;
3215
3216 if (buflen < PAGE_SIZE) {
3217 /* As long as we're doing a round trip to the server anyway,
3218 * let's be prepared for a page of acl data. */
3219 localpage = alloc_page(GFP_KERNEL);
3220 resp_buf = page_address(localpage);
3221 if (localpage == NULL)
3222 return -ENOMEM;
3223 args.acl_pages[0] = localpage;
3224 args.acl_pgbase = 0;
Benny Halevy663c79b2009-04-01 09:21:59 -04003225 args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003226 } else {
3227 resp_buf = buf;
3228 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
3229 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003230 ret = nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003231 if (ret)
3232 goto out_free;
Benny Halevy663c79b2009-04-01 09:21:59 -04003233 if (res.acl_len > args.acl_len)
3234 nfs4_write_cached_acl(inode, NULL, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003235 else
Benny Halevy663c79b2009-04-01 09:21:59 -04003236 nfs4_write_cached_acl(inode, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003237 if (buf) {
3238 ret = -ERANGE;
Benny Halevy663c79b2009-04-01 09:21:59 -04003239 if (res.acl_len > buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003240 goto out_free;
3241 if (localpage)
Benny Halevy663c79b2009-04-01 09:21:59 -04003242 memcpy(buf, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003243 }
Benny Halevy663c79b2009-04-01 09:21:59 -04003244 ret = res.acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003245out_free:
3246 if (localpage)
3247 __free_page(localpage);
3248 return ret;
3249}
3250
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003251static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
3252{
3253 struct nfs4_exception exception = { };
3254 ssize_t ret;
3255 do {
3256 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
3257 if (ret >= 0)
3258 break;
3259 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
3260 } while (exception.retry);
3261 return ret;
3262}
3263
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003264static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
3265{
3266 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003267 int ret;
3268
3269 if (!nfs4_server_supports_acls(server))
3270 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003271 ret = nfs_revalidate_inode(server, inode);
3272 if (ret < 0)
3273 return ret;
3274 ret = nfs4_read_cached_acl(inode, buf, buflen);
3275 if (ret != -ENOENT)
3276 return ret;
3277 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003278}
3279
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003280static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003281{
3282 struct nfs_server *server = NFS_SERVER(inode);
3283 struct page *pages[NFS4ACL_MAXPAGES];
3284 struct nfs_setaclargs arg = {
3285 .fh = NFS_FH(inode),
3286 .acl_pages = pages,
3287 .acl_len = buflen,
3288 };
Benny Halevy73c403a2009-04-01 09:22:01 -04003289 struct nfs_setaclres res;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003290 struct rpc_message msg = {
3291 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
3292 .rpc_argp = &arg,
Benny Halevy73c403a2009-04-01 09:22:01 -04003293 .rpc_resp = &res,
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003294 };
3295 int ret;
3296
3297 if (!nfs4_server_supports_acls(server))
3298 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07003299 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003300 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003301 ret = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebustf41f7412008-06-11 17:39:04 -04003302 nfs_access_zap_cache(inode);
3303 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003304 return ret;
3305}
3306
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003307static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
3308{
3309 struct nfs4_exception exception = { };
3310 int err;
3311 do {
3312 err = nfs4_handle_exception(NFS_SERVER(inode),
3313 __nfs4_proc_set_acl(inode, buf, buflen),
3314 &exception);
3315 } while (exception.retry);
3316 return err;
3317}
3318
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319static int
Andy Adamson8328d592009-04-01 09:22:35 -04003320_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 -07003321{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 if (!clp || task->tk_status >= 0)
3323 return 0;
3324 switch(task->tk_status) {
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003325 case -NFS4ERR_ADMIN_REVOKED:
3326 case -NFS4ERR_BAD_STATEID:
3327 case -NFS4ERR_OPENMODE:
3328 if (state == NULL)
3329 break;
3330 nfs4_state_mark_reclaim_nograce(clp, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 case -NFS4ERR_STALE_CLIENTID:
3332 case -NFS4ERR_STALE_STATEID:
3333 case -NFS4ERR_EXPIRED:
Trond Myklebust5d008372008-02-22 16:34:17 -05003334 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 nfs4_schedule_state_recovery(clp);
Trond Myklebuste005e802008-12-23 15:21:48 -05003336 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
Trond Myklebustfda13932008-02-22 16:34:12 -05003337 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 task->tk_status = 0;
3339 return -EAGAIN;
Andy Adamson4745e312009-04-01 09:22:42 -04003340#if defined(CONFIG_NFS_V4_1)
3341 case -NFS4ERR_BADSESSION:
3342 case -NFS4ERR_BADSLOT:
3343 case -NFS4ERR_BAD_HIGH_SLOT:
3344 case -NFS4ERR_DEADSESSION:
3345 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
3346 case -NFS4ERR_SEQ_FALSE_RETRY:
3347 case -NFS4ERR_SEQ_MISORDERED:
3348 dprintk("%s ERROR %d, Reset session\n", __func__,
3349 task->tk_status);
Andy Adamson0b9e2d42009-12-04 16:02:14 -05003350 nfs4_schedule_state_recovery(clp);
Andy Adamson4745e312009-04-01 09:22:42 -04003351 task->tk_status = 0;
3352 return -EAGAIN;
3353#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 case -NFS4ERR_DELAY:
Andy Adamson8328d592009-04-01 09:22:35 -04003355 if (server)
3356 nfs_inc_server_stats(server, NFSIOS_DELAY);
Chuck Lever006ea732006-03-20 13:44:14 -05003357 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 rpc_delay(task, NFS4_POLL_RETRY_MAX);
3359 task->tk_status = 0;
3360 return -EAGAIN;
3361 case -NFS4ERR_OLD_STATEID:
3362 task->tk_status = 0;
3363 return -EAGAIN;
3364 }
3365 task->tk_status = nfs4_map_errors(task->tk_status);
3366 return 0;
3367}
3368
Andy Adamson8328d592009-04-01 09:22:35 -04003369static int
3370nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, struct nfs4_state *state)
3371{
3372 return _nfs4_async_handle_error(task, server, server->nfs_client, state);
3373}
3374
David Howellsadfa6f92006-08-22 20:06:08 -04003375int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376{
3377 nfs4_verifier sc_verifier;
3378 struct nfs4_setclientid setclientid = {
3379 .sc_verifier = &sc_verifier,
3380 .sc_prog = program,
3381 };
3382 struct rpc_message msg = {
3383 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
3384 .rpc_argp = &setclientid,
3385 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003386 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 };
Al Virobc4785c2006-10-19 23:28:51 -07003388 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 int loop = 0;
3390 int status;
3391
Al Virobc4785c2006-10-19 23:28:51 -07003392 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
3394 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
3395
3396 for(;;) {
3397 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05003398 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05003399 clp->cl_ipaddr,
3400 rpc_peeraddr2str(clp->cl_rpcclient,
3401 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05003402 rpc_peeraddr2str(clp->cl_rpcclient,
3403 RPC_DISPLAY_PROTO),
Trond Myklebust78ea3232008-04-07 20:49:28 -04003404 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 clp->cl_id_uniquifier);
3406 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003407 sizeof(setclientid.sc_netid),
3408 rpc_peeraddr2str(clp->cl_rpcclient,
3409 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003411 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 clp->cl_ipaddr, port >> 8, port & 255);
3413
3414 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3415 if (status != -NFS4ERR_CLID_INUSE)
3416 break;
3417 if (signalled())
3418 break;
3419 if (loop++ & 1)
3420 ssleep(clp->cl_lease_time + 1);
3421 else
3422 if (++clp->cl_id_uniquifier == 0)
3423 break;
3424 }
3425 return status;
3426}
3427
David Howellsadfa6f92006-08-22 20:06:08 -04003428static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429{
3430 struct nfs_fsinfo fsinfo;
3431 struct rpc_message msg = {
3432 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
3433 .rpc_argp = clp,
3434 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003435 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 };
3437 unsigned long now;
3438 int status;
3439
3440 now = jiffies;
3441 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3442 if (status == 0) {
3443 spin_lock(&clp->cl_lock);
3444 clp->cl_lease_time = fsinfo.lease_time * HZ;
3445 clp->cl_last_renewal = now;
3446 spin_unlock(&clp->cl_lock);
3447 }
3448 return status;
3449}
3450
David Howellsadfa6f92006-08-22 20:06:08 -04003451int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05003452{
Benny Halevy77e03672008-06-24 20:25:57 +03003453 long timeout = 0;
Trond Myklebust51581f32006-03-20 13:44:47 -05003454 int err;
3455 do {
3456 err = _nfs4_proc_setclientid_confirm(clp, cred);
3457 switch (err) {
3458 case 0:
3459 return err;
3460 case -NFS4ERR_RESOURCE:
3461 /* The IBM lawyers misread another document! */
3462 case -NFS4ERR_DELAY:
3463 err = nfs4_delay(clp->cl_rpcclient, &timeout);
3464 }
3465 } while (err == 0);
3466 return err;
3467}
3468
Trond Myklebustfe650402006-01-03 09:55:18 +01003469struct nfs4_delegreturndata {
3470 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003471 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01003472 struct nfs_fh fh;
3473 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003474 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003475 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01003476 int rpc_status;
3477};
3478
Trond Myklebustfe650402006-01-03 09:55:18 +01003479static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
3480{
3481 struct nfs4_delegreturndata *data = calldata;
Andy Adamson938e1012009-04-01 09:22:28 -04003482
Trond Myklebustd61e6122009-12-05 19:32:19 -05003483 nfs4_sequence_done(data->res.server, &data->res.seq_res,
3484 task->tk_status);
Andy Adamson938e1012009-04-01 09:22:28 -04003485
Trond Myklebustfe650402006-01-03 09:55:18 +01003486 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003487 if (data->rpc_status == 0)
Trond Myklebustfa178f22006-01-03 09:55:38 +01003488 renew_lease(data->res.server, data->timestamp);
Trond Myklebustfe650402006-01-03 09:55:18 +01003489}
3490
3491static void nfs4_delegreturn_release(void *calldata)
3492{
Trond Myklebustfe650402006-01-03 09:55:18 +01003493 kfree(calldata);
3494}
3495
Andy Adamson938e1012009-04-01 09:22:28 -04003496#if defined(CONFIG_NFS_V4_1)
3497static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
3498{
3499 struct nfs4_delegreturndata *d_data;
3500
3501 d_data = (struct nfs4_delegreturndata *)data;
3502
3503 if (nfs4_setup_sequence(d_data->res.server->nfs_client,
3504 &d_data->args.seq_args,
3505 &d_data->res.seq_res, 1, task))
3506 return;
3507 rpc_call_start(task);
3508}
3509#endif /* CONFIG_NFS_V4_1 */
3510
Jesper Juhlc8d149f2006-03-20 13:44:07 -05003511static const struct rpc_call_ops nfs4_delegreturn_ops = {
Andy Adamson938e1012009-04-01 09:22:28 -04003512#if defined(CONFIG_NFS_V4_1)
3513 .rpc_call_prepare = nfs4_delegreturn_prepare,
3514#endif /* CONFIG_NFS_V4_1 */
Trond Myklebustfe650402006-01-03 09:55:18 +01003515 .rpc_call_done = nfs4_delegreturn_done,
3516 .rpc_release = nfs4_delegreturn_release,
3517};
3518
Trond Myklebuste6f81072008-01-24 18:14:34 -05003519static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01003520{
3521 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003522 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01003523 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003524 struct rpc_message msg = {
3525 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
3526 .rpc_cred = cred,
3527 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003528 struct rpc_task_setup task_setup_data = {
3529 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04003530 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003531 .callback_ops = &nfs4_delegreturn_ops,
3532 .flags = RPC_TASK_ASYNC,
3533 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05003534 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01003535
Andy Adamson938e1012009-04-01 09:22:28 -04003536 data = kzalloc(sizeof(*data), GFP_KERNEL);
Trond Myklebustfe650402006-01-03 09:55:18 +01003537 if (data == NULL)
3538 return -ENOMEM;
3539 data->args.fhandle = &data->fh;
3540 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003541 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01003542 nfs_copy_fh(&data->fh, NFS_FH(inode));
3543 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01003544 data->res.fattr = &data->fattr;
3545 data->res.server = server;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003546 data->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003547 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003548 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01003549 data->rpc_status = 0;
3550
Trond Myklebustc970aa82007-07-14 15:39:59 -04003551 task_setup_data.callback_data = data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003552 msg.rpc_argp = &data->args,
3553 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003554 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003555 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003556 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003557 if (!issync)
3558 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01003559 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003560 if (status != 0)
3561 goto out;
3562 status = data->rpc_status;
3563 if (status != 0)
3564 goto out;
3565 nfs_refresh_inode(inode, &data->fattr);
3566out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003567 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003568 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569}
3570
Trond Myklebuste6f81072008-01-24 18:14:34 -05003571int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572{
3573 struct nfs_server *server = NFS_SERVER(inode);
3574 struct nfs4_exception exception = { };
3575 int err;
3576 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05003577 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 switch (err) {
3579 case -NFS4ERR_STALE_STATEID:
3580 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 case 0:
3582 return 0;
3583 }
3584 err = nfs4_handle_exception(server, err, &exception);
3585 } while (exception.retry);
3586 return err;
3587}
3588
3589#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3590#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3591
3592/*
3593 * sleep, with exponential backoff, and retry the LOCK operation.
3594 */
3595static unsigned long
3596nfs4_set_lock_task_retry(unsigned long timeout)
3597{
Matthew Wilcox150030b2007-12-06 16:24:39 -05003598 schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 timeout <<= 1;
3600 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3601 return NFS4_LOCK_MAXTIMEOUT;
3602 return timeout;
3603}
3604
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3606{
3607 struct inode *inode = state->inode;
3608 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003609 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003610 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003612 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003614 struct nfs_lockt_res res = {
3615 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 };
3617 struct rpc_message msg = {
3618 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3619 .rpc_argp = &arg,
3620 .rpc_resp = &res,
3621 .rpc_cred = state->owner->so_cred,
3622 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 struct nfs4_lock_state *lsp;
3624 int status;
3625
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003626 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003627 status = nfs4_set_lock_state(state, request);
3628 if (status != 0)
3629 goto out;
3630 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003631 arg.lock_owner.id = lsp->ls_id.id;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003632 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003633 switch (status) {
3634 case 0:
3635 request->fl_type = F_UNLCK;
3636 break;
3637 case -NFS4ERR_DENIED:
3638 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003640 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003641out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642 return status;
3643}
3644
3645static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3646{
3647 struct nfs4_exception exception = { };
3648 int err;
3649
3650 do {
3651 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3652 _nfs4_proc_getlk(state, cmd, request),
3653 &exception);
3654 } while (exception.retry);
3655 return err;
3656}
3657
3658static int do_vfs_lock(struct file *file, struct file_lock *fl)
3659{
3660 int res = 0;
3661 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3662 case FL_POSIX:
3663 res = posix_lock_file_wait(file, fl);
3664 break;
3665 case FL_FLOCK:
3666 res = flock_lock_file_wait(file, fl);
3667 break;
3668 default:
3669 BUG();
3670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 return res;
3672}
3673
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003674struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003675 struct nfs_locku_args arg;
3676 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003677 struct nfs4_lock_state *lsp;
3678 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003679 struct file_lock fl;
3680 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003681 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003682};
3683
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003684static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3685 struct nfs_open_context *ctx,
3686 struct nfs4_lock_state *lsp,
3687 struct nfs_seqid *seqid)
3688{
3689 struct nfs4_unlockdata *p;
3690 struct inode *inode = lsp->ls_state->inode;
3691
Andy Adamsona8936932009-04-01 09:22:23 -04003692 p = kzalloc(sizeof(*p), GFP_KERNEL);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003693 if (p == NULL)
3694 return NULL;
3695 p->arg.fh = NFS_FH(inode);
3696 p->arg.fl = &p->fl;
3697 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003698 p->res.seqid = seqid;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003699 p->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003700 p->arg.stateid = &lsp->ls_stateid;
3701 p->lsp = lsp;
3702 atomic_inc(&lsp->ls_count);
3703 /* Ensure we don't close file until we're done freeing locks! */
3704 p->ctx = get_nfs_open_context(ctx);
3705 memcpy(&p->fl, fl, sizeof(p->fl));
3706 p->server = NFS_SERVER(inode);
3707 return p;
3708}
3709
Trond Myklebust06f814a2006-01-03 09:55:07 +01003710static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003711{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003712 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003713 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003714 nfs4_put_lock_state(calldata->lsp);
3715 put_nfs_open_context(calldata->ctx);
3716 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003717}
3718
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003719static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003720{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003721 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003722
Andy Adamsona8936932009-04-01 09:22:23 -04003723 nfs4_sequence_done(calldata->server, &calldata->res.seq_res,
3724 task->tk_status);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003725 if (RPC_ASSASSINATED(task))
3726 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003727 switch (task->tk_status) {
3728 case 0:
3729 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003730 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003731 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003732 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003733 break;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003734 case -NFS4ERR_BAD_STATEID:
3735 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003736 case -NFS4ERR_STALE_STATEID:
3737 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003738 break;
3739 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003740 if (nfs4_async_handle_error(task, calldata->server, NULL) == -EAGAIN)
Andy Adamsoneedc0202009-04-01 09:22:41 -04003741 nfs4_restart_rpc(task,
Trond Myklebustd61e6122009-12-05 19:32:19 -05003742 calldata->server->nfs_client);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003743 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003744}
3745
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003746static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003747{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003748 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003750 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003751 return;
3752 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003753 /* Note: exit _without_ running nfs4_locku_done */
3754 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003755 return;
3756 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003757 calldata->timestamp = jiffies;
Andy Adamsona8936932009-04-01 09:22:23 -04003758 if (nfs4_setup_sequence(calldata->server->nfs_client,
3759 &calldata->arg.seq_args,
3760 &calldata->res.seq_res, 1, task))
3761 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003762 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763}
3764
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003765static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003766 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003767 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003768 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003769};
3770
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003771static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3772 struct nfs_open_context *ctx,
3773 struct nfs4_lock_state *lsp,
3774 struct nfs_seqid *seqid)
3775{
3776 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003777 struct rpc_message msg = {
3778 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3779 .rpc_cred = ctx->cred,
3780 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003781 struct rpc_task_setup task_setup_data = {
3782 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003783 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003784 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003785 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003786 .flags = RPC_TASK_ASYNC,
3787 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003788
Frank Filz137d6ac2007-07-09 15:32:29 -07003789 /* Ensure this is an unlock - when canceling a lock, the
3790 * canceled lock is passed in, and it won't be an unlock.
3791 */
3792 fl->fl_type = F_UNLCK;
3793
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003794 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3795 if (data == NULL) {
3796 nfs_free_seqid(seqid);
3797 return ERR_PTR(-ENOMEM);
3798 }
3799
Trond Myklebust5138fde2007-07-14 15:40:01 -04003800 msg.rpc_argp = &data->arg,
3801 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003802 task_setup_data.callback_data = data;
3803 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003804}
3805
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3807{
Trond Myklebust19e03c52008-12-23 15:21:44 -05003808 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003809 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003810 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003811 struct rpc_task *task;
3812 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003813 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
Trond Myklebust9b073572006-06-29 16:38:34 -04003815 status = nfs4_set_lock_state(state, request);
3816 /* Unlock _before_ we do the RPC call */
3817 request->fl_flags |= FL_EXISTS;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003818 down_read(&nfsi->rwsem);
3819 if (do_vfs_lock(request->fl_file, request) == -ENOENT) {
3820 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003821 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003822 }
3823 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003824 if (status != 0)
3825 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003826 /* Is this a delegated lock? */
3827 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003828 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003829 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003830 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003831 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003832 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003833 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003834 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003835 status = PTR_ERR(task);
3836 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003837 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003838 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003839 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003840out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003841 request->fl_flags = fl_flags;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003842 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843}
3844
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003845struct nfs4_lockdata {
3846 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003847 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003848 struct nfs4_lock_state *lsp;
3849 struct nfs_open_context *ctx;
3850 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003851 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003852 int rpc_status;
3853 int cancelled;
Andy Adamson66179ef2009-04-01 09:22:22 -04003854 struct nfs_server *server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003855};
3856
3857static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3858 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3859{
3860 struct nfs4_lockdata *p;
3861 struct inode *inode = lsp->ls_state->inode;
3862 struct nfs_server *server = NFS_SERVER(inode);
3863
3864 p = kzalloc(sizeof(*p), GFP_KERNEL);
3865 if (p == NULL)
3866 return NULL;
3867
3868 p->arg.fh = NFS_FH(inode);
3869 p->arg.fl = &p->fl;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003870 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid);
3871 if (p->arg.open_seqid == NULL)
3872 goto out_free;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003873 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3874 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003875 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003876 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003877 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003878 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003879 p->res.lock_seqid = p->arg.lock_seqid;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003880 p->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003881 p->lsp = lsp;
Andy Adamson66179ef2009-04-01 09:22:22 -04003882 p->server = server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003883 atomic_inc(&lsp->ls_count);
3884 p->ctx = get_nfs_open_context(ctx);
3885 memcpy(&p->fl, fl, sizeof(p->fl));
3886 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003887out_free_seqid:
3888 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003889out_free:
3890 kfree(p);
3891 return NULL;
3892}
3893
3894static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3895{
3896 struct nfs4_lockdata *data = calldata;
3897 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Harvey Harrison3110ff82008-05-02 13:42:44 -07003899 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003900 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3901 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003902 /* Do we need to do an open_to_lock_owner? */
3903 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05003904 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
3905 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003906 data->arg.open_stateid = &state->stateid;
3907 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003908 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003909 } else
3910 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003911 data->timestamp = jiffies;
Andy Adamson66179ef2009-04-01 09:22:22 -04003912 if (nfs4_setup_sequence(data->server->nfs_client, &data->arg.seq_args,
3913 &data->res.seq_res, 1, task))
3914 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003915 rpc_call_start(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003916 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003917}
3918
3919static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3920{
3921 struct nfs4_lockdata *data = calldata;
3922
Harvey Harrison3110ff82008-05-02 13:42:44 -07003923 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003924
Trond Myklebustd61e6122009-12-05 19:32:19 -05003925 nfs4_sequence_done(data->server, &data->res.seq_res,
3926 task->tk_status);
Andy Adamson66179ef2009-04-01 09:22:22 -04003927
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003928 data->rpc_status = task->tk_status;
3929 if (RPC_ASSASSINATED(task))
3930 goto out;
3931 if (data->arg.new_lock_owner != 0) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003932 if (data->rpc_status == 0)
3933 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3934 else
3935 goto out;
3936 }
3937 if (data->rpc_status == 0) {
3938 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3939 sizeof(data->lsp->ls_stateid.data));
3940 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04003941 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003942 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003943out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003944 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003945}
3946
3947static void nfs4_lock_release(void *calldata)
3948{
3949 struct nfs4_lockdata *data = calldata;
3950
Harvey Harrison3110ff82008-05-02 13:42:44 -07003951 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003952 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003953 if (data->cancelled != 0) {
3954 struct rpc_task *task;
3955 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3956 data->arg.lock_seqid);
3957 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003958 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003959 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003960 } else
3961 nfs_free_seqid(data->arg.lock_seqid);
3962 nfs4_put_lock_state(data->lsp);
3963 put_nfs_open_context(data->ctx);
3964 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003965 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003966}
3967
3968static const struct rpc_call_ops nfs4_lock_ops = {
3969 .rpc_call_prepare = nfs4_lock_prepare,
3970 .rpc_call_done = nfs4_lock_done,
3971 .rpc_release = nfs4_lock_release,
3972};
3973
3974static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3975{
3976 struct nfs4_lockdata *data;
3977 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003978 struct rpc_message msg = {
3979 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3980 .rpc_cred = state->owner->so_cred,
3981 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003982 struct rpc_task_setup task_setup_data = {
3983 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003984 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003985 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003986 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003987 .flags = RPC_TASK_ASYNC,
3988 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003989 int ret;
3990
Harvey Harrison3110ff82008-05-02 13:42:44 -07003991 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003992 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003993 fl->fl_u.nfs4_fl.owner);
3994 if (data == NULL)
3995 return -ENOMEM;
3996 if (IS_SETLKW(cmd))
3997 data->arg.block = 1;
3998 if (reclaim != 0)
3999 data->arg.reclaim = 1;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004000 msg.rpc_argp = &data->arg,
4001 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004002 task_setup_data.callback_data = data;
4003 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05004004 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004005 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004006 ret = nfs4_wait_for_completion_rpc_task(task);
4007 if (ret == 0) {
4008 ret = data->rpc_status;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004009 } else
4010 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05004011 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004012 dprintk("%s: done, ret = %d!\n", __func__, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004013 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014}
4015
4016static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
4017{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004018 struct nfs_server *server = NFS_SERVER(state->inode);
4019 struct nfs4_exception exception = { };
4020 int err;
4021
4022 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004023 /* Cache the lock if possible... */
4024 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4025 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004026 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
4027 if (err != -NFS4ERR_DELAY)
4028 break;
4029 nfs4_handle_exception(server, err, &exception);
4030 } while (exception.retry);
4031 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032}
4033
4034static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
4035{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004036 struct nfs_server *server = NFS_SERVER(state->inode);
4037 struct nfs4_exception exception = { };
4038 int err;
4039
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004040 err = nfs4_set_lock_state(state, request);
4041 if (err != 0)
4042 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004043 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004044 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4045 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004046 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05004047 switch (err) {
4048 default:
4049 goto out;
4050 case -NFS4ERR_GRACE:
4051 case -NFS4ERR_DELAY:
4052 nfs4_handle_exception(server, err, &exception);
4053 err = 0;
4054 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00004055 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05004056out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00004057 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058}
4059
4060static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4061{
Trond Myklebust19e03c52008-12-23 15:21:44 -05004062 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004063 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 int status;
4065
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004066 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004067 status = nfs4_set_lock_state(state, request);
4068 if (status != 0)
4069 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004070 request->fl_flags |= FL_ACCESS;
4071 status = do_vfs_lock(request->fl_file, request);
4072 if (status < 0)
4073 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05004074 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004075 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04004076 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004077 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05004078 request->fl_flags = fl_flags & ~FL_SLEEP;
4079 status = do_vfs_lock(request->fl_file, request);
4080 goto out_unlock;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004081 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004082 status = _nfs4_do_setlk(state, cmd, request, 0);
4083 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04004084 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004085 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004086 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004087 if (do_vfs_lock(request->fl_file, request) < 0)
Harvey Harrison3110ff82008-05-02 13:42:44 -07004088 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004089out_unlock:
Trond Myklebust19e03c52008-12-23 15:21:44 -05004090 up_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004091out:
4092 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 return status;
4094}
4095
4096static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4097{
4098 struct nfs4_exception exception = { };
4099 int err;
4100
4101 do {
Trond Myklebust965b5d62009-06-17 13:22:59 -07004102 err = _nfs4_proc_setlk(state, cmd, request);
4103 if (err == -NFS4ERR_DENIED)
4104 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 err = nfs4_handle_exception(NFS_SERVER(state->inode),
Trond Myklebust965b5d62009-06-17 13:22:59 -07004106 err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 } while (exception.retry);
4108 return err;
4109}
4110
4111static int
4112nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
4113{
4114 struct nfs_open_context *ctx;
4115 struct nfs4_state *state;
4116 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
4117 int status;
4118
4119 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004120 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 state = ctx->state;
4122
4123 if (request->fl_start < 0 || request->fl_end < 0)
4124 return -EINVAL;
4125
Trond Myklebustd9531262009-07-21 19:22:38 -04004126 if (IS_GETLK(cmd)) {
4127 if (state != NULL)
4128 return nfs4_proc_getlk(state, F_GETLK, request);
4129 return 0;
4130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131
4132 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
4133 return -EINVAL;
4134
Trond Myklebustd9531262009-07-21 19:22:38 -04004135 if (request->fl_type == F_UNLCK) {
4136 if (state != NULL)
4137 return nfs4_proc_unlck(state, cmd, request);
4138 return 0;
4139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140
Trond Myklebustd9531262009-07-21 19:22:38 -04004141 if (state == NULL)
4142 return -ENOLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 do {
4144 status = nfs4_proc_setlk(state, cmd, request);
4145 if ((status != -EAGAIN) || IS_SETLK(cmd))
4146 break;
4147 timeout = nfs4_set_lock_task_retry(timeout);
4148 status = -ERESTARTSYS;
4149 if (signalled())
4150 break;
4151 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 return status;
4153}
4154
Trond Myklebust888e6942005-11-04 15:38:11 -05004155int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
4156{
4157 struct nfs_server *server = NFS_SERVER(state->inode);
4158 struct nfs4_exception exception = { };
4159 int err;
4160
4161 err = nfs4_set_lock_state(state, fl);
4162 if (err != 0)
4163 goto out;
4164 do {
4165 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
Trond Myklebustd5122202009-06-17 13:22:58 -07004166 switch (err) {
4167 default:
4168 printk(KERN_ERR "%s: unhandled error %d.\n",
4169 __func__, err);
4170 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004171 case -ESTALE:
Trond Myklebustd5122202009-06-17 13:22:58 -07004172 goto out;
4173 case -NFS4ERR_EXPIRED:
4174 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004175 case -NFS4ERR_STALE_STATEID:
Trond Myklebustd5122202009-06-17 13:22:58 -07004176 nfs4_schedule_state_recovery(server->nfs_client);
4177 goto out;
Trond Myklebust965b5d62009-06-17 13:22:59 -07004178 case -ERESTARTSYS:
4179 /*
4180 * The show must go on: exit, but mark the
4181 * stateid as needing recovery.
4182 */
4183 case -NFS4ERR_ADMIN_REVOKED:
4184 case -NFS4ERR_BAD_STATEID:
4185 case -NFS4ERR_OPENMODE:
4186 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
4187 err = 0;
4188 goto out;
4189 case -ENOMEM:
4190 case -NFS4ERR_DENIED:
4191 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
4192 err = 0;
4193 goto out;
Trond Myklebustd5122202009-06-17 13:22:58 -07004194 case -NFS4ERR_DELAY:
4195 break;
4196 }
Trond Myklebust888e6942005-11-04 15:38:11 -05004197 err = nfs4_handle_exception(server, err, &exception);
4198 } while (exception.retry);
4199out:
4200 return err;
4201}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004202
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004203#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
4204
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004205int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
4206 size_t buflen, int flags)
4207{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004208 struct inode *inode = dentry->d_inode;
4209
4210 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
4211 return -EOPNOTSUPP;
4212
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004213 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004214}
4215
4216/* The getxattr man page suggests returning -ENODATA for unknown attributes,
4217 * and that's what we'll do for e.g. user attributes that haven't been set.
4218 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
4219 * attributes in kernel-managed attribute namespaces. */
4220ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
4221 size_t buflen)
4222{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004223 struct inode *inode = dentry->d_inode;
4224
4225 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
4226 return -EOPNOTSUPP;
4227
4228 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004229}
4230
4231ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
4232{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004233 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004234
J. Bruce Fields096455a2006-03-20 23:23:42 -05004235 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
4236 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004237 if (buf && buflen < len)
4238 return -ERANGE;
4239 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004240 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
4241 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004242}
4243
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004244static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
4245{
4246 if (!((fattr->valid & NFS_ATTR_FATTR_FILEID) &&
4247 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
4248 (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)))
4249 return;
4250
4251 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
4252 NFS_ATTR_FATTR_NLINK;
4253 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
4254 fattr->nlink = 2;
4255}
4256
Trond Myklebust56659e92007-07-17 21:52:39 -04004257int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04004258 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004259{
4260 struct nfs_server *server = NFS_SERVER(dir);
4261 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04004262 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
4263 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004264 };
4265 struct nfs4_fs_locations_arg args = {
4266 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05004267 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004268 .page = page,
4269 .bitmask = bitmask,
4270 };
Benny Halevy22958462009-04-01 09:22:02 -04004271 struct nfs4_fs_locations_res res = {
4272 .fs_locations = fs_locations,
4273 };
Trond Myklebust683b57b2006-06-09 09:34:22 -04004274 struct rpc_message msg = {
4275 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
4276 .rpc_argp = &args,
Benny Halevy22958462009-04-01 09:22:02 -04004277 .rpc_resp = &res,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004278 };
4279 int status;
4280
Harvey Harrison3110ff82008-05-02 13:42:44 -07004281 dprintk("%s: start\n", __func__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05004282 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004283 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04004284 fs_locations->nlocations = 0;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04004285 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004286 nfs_fixup_referral_attributes(&fs_locations->fattr);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004287 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004288 return status;
4289}
4290
Andy Adamson557134a2009-04-01 09:21:53 -04004291#ifdef CONFIG_NFS_V4_1
Benny Halevy99fe60d2009-04-01 09:22:29 -04004292/*
4293 * nfs4_proc_exchange_id()
4294 *
4295 * Since the clientid has expired, all compounds using sessions
4296 * associated with the stale clientid will be returning
4297 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
4298 * be in some phase of session reset.
4299 */
Andy Adamson4d643d12009-12-04 15:52:24 -05004300int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
Benny Halevy99fe60d2009-04-01 09:22:29 -04004301{
4302 nfs4_verifier verifier;
4303 struct nfs41_exchange_id_args args = {
4304 .client = clp,
4305 .flags = clp->cl_exchange_flags,
4306 };
4307 struct nfs41_exchange_id_res res = {
4308 .client = clp,
4309 };
4310 int status;
4311 struct rpc_message msg = {
4312 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
4313 .rpc_argp = &args,
4314 .rpc_resp = &res,
4315 .rpc_cred = cred,
4316 };
4317 __be32 *p;
4318
4319 dprintk("--> %s\n", __func__);
4320 BUG_ON(clp == NULL);
Andy Adamsona7b72102009-04-01 09:22:46 -04004321
Alexandros Batsakis7b183d02009-12-05 13:33:25 -05004322 /* Remove server-only flags */
4323 args.flags &= ~EXCHGID4_FLAG_CONFIRMED_R;
4324
Benny Halevy99fe60d2009-04-01 09:22:29 -04004325 p = (u32 *)verifier.data;
4326 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
4327 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
4328 args.verifier = &verifier;
4329
4330 while (1) {
4331 args.id_len = scnprintf(args.id, sizeof(args.id),
4332 "%s/%s %u",
4333 clp->cl_ipaddr,
4334 rpc_peeraddr2str(clp->cl_rpcclient,
4335 RPC_DISPLAY_ADDR),
4336 clp->cl_id_uniquifier);
4337
4338 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
4339
4340 if (status != NFS4ERR_CLID_INUSE)
4341 break;
4342
4343 if (signalled())
4344 break;
4345
4346 if (++clp->cl_id_uniquifier == 0)
4347 break;
4348 }
4349
4350 dprintk("<-- %s status= %d\n", __func__, status);
4351 return status;
4352}
4353
Andy Adamson2050f0c2009-04-01 09:22:30 -04004354struct nfs4_get_lease_time_data {
4355 struct nfs4_get_lease_time_args *args;
4356 struct nfs4_get_lease_time_res *res;
4357 struct nfs_client *clp;
4358};
4359
4360static void nfs4_get_lease_time_prepare(struct rpc_task *task,
4361 void *calldata)
4362{
4363 int ret;
4364 struct nfs4_get_lease_time_data *data =
4365 (struct nfs4_get_lease_time_data *)calldata;
4366
4367 dprintk("--> %s\n", __func__);
4368 /* just setup sequence, do not trigger session recovery
4369 since we're invoked within one */
4370 ret = nfs41_setup_sequence(data->clp->cl_session,
4371 &data->args->la_seq_args,
4372 &data->res->lr_seq_res, 0, task);
4373
4374 BUG_ON(ret == -EAGAIN);
4375 rpc_call_start(task);
4376 dprintk("<-- %s\n", __func__);
4377}
4378
4379/*
4380 * Called from nfs4_state_manager thread for session setup, so don't recover
4381 * from sequence operation or clientid errors.
4382 */
4383static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
4384{
4385 struct nfs4_get_lease_time_data *data =
4386 (struct nfs4_get_lease_time_data *)calldata;
4387
4388 dprintk("--> %s\n", __func__);
4389 nfs41_sequence_done(data->clp, &data->res->lr_seq_res, task->tk_status);
4390 switch (task->tk_status) {
4391 case -NFS4ERR_DELAY:
4392 case -NFS4ERR_GRACE:
4393 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
4394 rpc_delay(task, NFS4_POLL_RETRY_MIN);
4395 task->tk_status = 0;
Trond Myklebustd61e6122009-12-05 19:32:19 -05004396 nfs4_restart_rpc(task, data->clp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004397 return;
4398 }
Andy Adamson2050f0c2009-04-01 09:22:30 -04004399 dprintk("<-- %s\n", __func__);
4400}
4401
4402struct rpc_call_ops nfs4_get_lease_time_ops = {
4403 .rpc_call_prepare = nfs4_get_lease_time_prepare,
4404 .rpc_call_done = nfs4_get_lease_time_done,
4405};
4406
4407int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
4408{
4409 struct rpc_task *task;
4410 struct nfs4_get_lease_time_args args;
4411 struct nfs4_get_lease_time_res res = {
4412 .lr_fsinfo = fsinfo,
4413 };
4414 struct nfs4_get_lease_time_data data = {
4415 .args = &args,
4416 .res = &res,
4417 .clp = clp,
4418 };
4419 struct rpc_message msg = {
4420 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
4421 .rpc_argp = &args,
4422 .rpc_resp = &res,
4423 };
4424 struct rpc_task_setup task_setup = {
4425 .rpc_client = clp->cl_rpcclient,
4426 .rpc_message = &msg,
4427 .callback_ops = &nfs4_get_lease_time_ops,
4428 .callback_data = &data
4429 };
4430 int status;
4431
4432 res.lr_seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
4433 dprintk("--> %s\n", __func__);
4434 task = rpc_run_task(&task_setup);
4435
4436 if (IS_ERR(task))
4437 status = PTR_ERR(task);
4438 else {
4439 status = task->tk_status;
4440 rpc_put_task(task);
4441 }
4442 dprintk("<-- %s return %d\n", __func__, status);
4443
4444 return status;
4445}
4446
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004447/*
4448 * Reset a slot table
4449 */
4450static int nfs4_reset_slot_table(struct nfs4_slot_table *tbl, int max_slots,
4451 int old_max_slots, int ivalue)
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004452{
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004453 int i;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004454 int ret = 0;
4455
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004456 dprintk("--> %s: max_reqs=%u, tbl %p\n", __func__, max_slots, tbl);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004457
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004458 /*
4459 * Until we have dynamic slot table adjustment, insist
4460 * upon the same slot table size
4461 */
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004462 if (max_slots != old_max_slots) {
4463 dprintk("%s reset slot table does't match old\n",
4464 __func__);
4465 ret = -EINVAL; /*XXX NFS4ERR_REQ_TOO_BIG ? */
4466 goto out;
4467 }
4468 spin_lock(&tbl->slot_tbl_lock);
4469 for (i = 0; i < max_slots; ++i)
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004470 tbl->slots[i].seq_nr = ivalue;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004471 spin_unlock(&tbl->slot_tbl_lock);
4472 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4473 tbl, tbl->slots, tbl->max_slots);
4474out:
4475 dprintk("<-- %s: return %d\n", __func__, ret);
4476 return ret;
4477}
4478
Andy Adamsonfc931582009-04-01 09:22:31 -04004479/*
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004480 * Reset the forechannel and backchannel slot tables
4481 */
4482static int nfs4_reset_slot_tables(struct nfs4_session *session)
4483{
4484 int status;
4485
4486 status = nfs4_reset_slot_table(&session->fc_slot_table,
4487 session->fc_attrs.max_reqs,
4488 session->fc_slot_table.max_slots,
4489 1);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004490 if (status)
4491 return status;
4492
4493 status = nfs4_reset_slot_table(&session->bc_slot_table,
4494 session->bc_attrs.max_reqs,
4495 session->bc_slot_table.max_slots,
4496 0);
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004497 return status;
4498}
4499
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004500/* Destroy the slot table */
4501static void nfs4_destroy_slot_tables(struct nfs4_session *session)
4502{
4503 if (session->fc_slot_table.slots != NULL) {
4504 kfree(session->fc_slot_table.slots);
4505 session->fc_slot_table.slots = NULL;
4506 }
4507 if (session->bc_slot_table.slots != NULL) {
4508 kfree(session->bc_slot_table.slots);
4509 session->bc_slot_table.slots = NULL;
4510 }
4511 return;
4512}
4513
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004514/*
Andy Adamsonfc931582009-04-01 09:22:31 -04004515 * Initialize slot table
4516 */
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004517static int nfs4_init_slot_table(struct nfs4_slot_table *tbl,
4518 int max_slots, int ivalue)
Andy Adamsonfc931582009-04-01 09:22:31 -04004519{
Andy Adamsonfc931582009-04-01 09:22:31 -04004520 struct nfs4_slot *slot;
4521 int ret = -ENOMEM;
4522
4523 BUG_ON(max_slots > NFS4_MAX_SLOT_TABLE);
4524
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004525 dprintk("--> %s: max_reqs=%u\n", __func__, max_slots);
Andy Adamsonfc931582009-04-01 09:22:31 -04004526
4527 slot = kcalloc(max_slots, sizeof(struct nfs4_slot), GFP_KERNEL);
4528 if (!slot)
4529 goto out;
Andy Adamsonfc931582009-04-01 09:22:31 -04004530 ret = 0;
4531
4532 spin_lock(&tbl->slot_tbl_lock);
Andy Adamsonfc931582009-04-01 09:22:31 -04004533 tbl->max_slots = max_slots;
4534 tbl->slots = slot;
4535 tbl->highest_used_slotid = -1; /* no slot is currently used */
4536 spin_unlock(&tbl->slot_tbl_lock);
4537 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4538 tbl, tbl->slots, tbl->max_slots);
4539out:
4540 dprintk("<-- %s: return %d\n", __func__, ret);
4541 return ret;
Andy Adamsonfc931582009-04-01 09:22:31 -04004542}
4543
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004544/*
4545 * Initialize the forechannel and backchannel tables
4546 */
4547static int nfs4_init_slot_tables(struct nfs4_session *session)
4548{
Trond Myklebustf26468f2009-12-05 19:32:11 -05004549 struct nfs4_slot_table *tbl;
4550 int status = 0;
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004551
Trond Myklebustf26468f2009-12-05 19:32:11 -05004552 tbl = &session->fc_slot_table;
4553 if (tbl->slots == NULL) {
4554 status = nfs4_init_slot_table(tbl,
4555 session->fc_attrs.max_reqs, 1);
4556 if (status)
4557 return status;
4558 }
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004559
Trond Myklebustf26468f2009-12-05 19:32:11 -05004560 tbl = &session->bc_slot_table;
4561 if (tbl->slots == NULL) {
4562 status = nfs4_init_slot_table(tbl,
4563 session->bc_attrs.max_reqs, 0);
4564 if (status)
4565 nfs4_destroy_slot_tables(session);
4566 }
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004567
4568 return status;
Andy Adamson557134a2009-04-01 09:21:53 -04004569}
4570
4571struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp)
4572{
4573 struct nfs4_session *session;
4574 struct nfs4_slot_table *tbl;
4575
4576 session = kzalloc(sizeof(struct nfs4_session), GFP_KERNEL);
4577 if (!session)
4578 return NULL;
Andy Adamson76db6d92009-04-01 09:22:38 -04004579
Andy Adamson76db6d92009-04-01 09:22:38 -04004580 /*
4581 * The create session reply races with the server back
4582 * channel probe. Mark the client NFS_CS_SESSION_INITING
4583 * so that the client back channel can find the
4584 * nfs_client struct
4585 */
4586 clp->cl_cons_state = NFS_CS_SESSION_INITING;
Andy Adamsonea028ac2009-12-04 15:55:38 -05004587 init_completion(&session->complete);
Andy Adamson76db6d92009-04-01 09:22:38 -04004588
Andy Adamson557134a2009-04-01 09:21:53 -04004589 tbl = &session->fc_slot_table;
4590 spin_lock_init(&tbl->slot_tbl_lock);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004591 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "ForeChannel Slot table");
4592
4593 tbl = &session->bc_slot_table;
4594 spin_lock_init(&tbl->slot_tbl_lock);
4595 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "BackChannel Slot table");
4596
Andy Adamson557134a2009-04-01 09:21:53 -04004597 session->clp = clp;
4598 return session;
4599}
4600
4601void nfs4_destroy_session(struct nfs4_session *session)
4602{
Andy Adamson5a0ffe52009-04-01 09:23:18 -04004603 nfs4_proc_destroy_session(session);
4604 dprintk("%s Destroy backchannel for xprt %p\n",
4605 __func__, session->clp->cl_rpcclient->cl_xprt);
4606 xprt_destroy_backchannel(session->clp->cl_rpcclient->cl_xprt,
4607 NFS41_BC_MIN_CALLBACKS);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004608 nfs4_destroy_slot_tables(session);
Andy Adamson557134a2009-04-01 09:21:53 -04004609 kfree(session);
4610}
4611
Andy Adamsonfc931582009-04-01 09:22:31 -04004612/*
4613 * Initialize the values to be used by the client in CREATE_SESSION
4614 * If nfs4_init_session set the fore channel request and response sizes,
4615 * use them.
4616 *
4617 * Set the back channel max_resp_sz_cached to zero to force the client to
4618 * always set csa_cachethis to FALSE because the current implementation
4619 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
4620 */
4621static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args)
4622{
4623 struct nfs4_session *session = args->client->cl_session;
4624 unsigned int mxrqst_sz = session->fc_attrs.max_rqst_sz,
4625 mxresp_sz = session->fc_attrs.max_resp_sz;
4626
4627 if (mxrqst_sz == 0)
4628 mxrqst_sz = NFS_MAX_FILE_IO_SIZE;
4629 if (mxresp_sz == 0)
4630 mxresp_sz = NFS_MAX_FILE_IO_SIZE;
4631 /* Fore channel attributes */
4632 args->fc_attrs.headerpadsz = 0;
4633 args->fc_attrs.max_rqst_sz = mxrqst_sz;
4634 args->fc_attrs.max_resp_sz = mxresp_sz;
4635 args->fc_attrs.max_resp_sz_cached = mxresp_sz;
4636 args->fc_attrs.max_ops = NFS4_MAX_OPS;
4637 args->fc_attrs.max_reqs = session->clp->cl_rpcclient->cl_xprt->max_reqs;
4638
4639 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
4640 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4641 __func__,
4642 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
4643 args->fc_attrs.max_resp_sz_cached, args->fc_attrs.max_ops,
4644 args->fc_attrs.max_reqs);
4645
4646 /* Back channel attributes */
4647 args->bc_attrs.headerpadsz = 0;
4648 args->bc_attrs.max_rqst_sz = PAGE_SIZE;
4649 args->bc_attrs.max_resp_sz = PAGE_SIZE;
4650 args->bc_attrs.max_resp_sz_cached = 0;
4651 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
4652 args->bc_attrs.max_reqs = 1;
4653
4654 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
4655 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4656 __func__,
4657 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
4658 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
4659 args->bc_attrs.max_reqs);
4660}
4661
Andy Adamson8d353012009-04-01 09:22:32 -04004662static int _verify_channel_attr(char *chan, char *attr_name, u32 sent, u32 rcvd)
4663{
4664 if (rcvd <= sent)
4665 return 0;
4666 printk(KERN_WARNING "%s: Session INVALID: %s channel %s increased. "
4667 "sent=%u rcvd=%u\n", __func__, chan, attr_name, sent, rcvd);
4668 return -EINVAL;
4669}
4670
4671#define _verify_fore_channel_attr(_name_) \
4672 _verify_channel_attr("fore", #_name_, \
4673 args->fc_attrs._name_, \
4674 session->fc_attrs._name_)
4675
4676#define _verify_back_channel_attr(_name_) \
4677 _verify_channel_attr("back", #_name_, \
4678 args->bc_attrs._name_, \
4679 session->bc_attrs._name_)
4680
4681/*
4682 * The server is not allowed to increase the fore channel header pad size,
4683 * maximum response size, or maximum number of operations.
4684 *
4685 * The back channel attributes are only negotiatied down: We send what the
4686 * (back channel) server insists upon.
4687 */
4688static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
4689 struct nfs4_session *session)
4690{
4691 int ret = 0;
4692
4693 ret |= _verify_fore_channel_attr(headerpadsz);
4694 ret |= _verify_fore_channel_attr(max_resp_sz);
4695 ret |= _verify_fore_channel_attr(max_ops);
4696
4697 ret |= _verify_back_channel_attr(headerpadsz);
4698 ret |= _verify_back_channel_attr(max_rqst_sz);
4699 ret |= _verify_back_channel_attr(max_resp_sz);
4700 ret |= _verify_back_channel_attr(max_resp_sz_cached);
4701 ret |= _verify_back_channel_attr(max_ops);
4702 ret |= _verify_back_channel_attr(max_reqs);
4703
4704 return ret;
4705}
4706
Andy Adamsonfc931582009-04-01 09:22:31 -04004707static int _nfs4_proc_create_session(struct nfs_client *clp)
4708{
4709 struct nfs4_session *session = clp->cl_session;
4710 struct nfs41_create_session_args args = {
4711 .client = clp,
4712 .cb_program = NFS4_CALLBACK,
4713 };
4714 struct nfs41_create_session_res res = {
4715 .client = clp,
4716 };
4717 struct rpc_message msg = {
4718 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
4719 .rpc_argp = &args,
4720 .rpc_resp = &res,
4721 };
4722 int status;
4723
4724 nfs4_init_channel_attrs(&args);
Andy Adamson0f914212009-04-01 09:23:16 -04004725 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
Andy Adamsonfc931582009-04-01 09:22:31 -04004726
4727 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
4728
Andy Adamson8d353012009-04-01 09:22:32 -04004729 if (!status)
4730 /* Verify the session's negotiated channel_attrs values */
4731 status = nfs4_verify_channel_attrs(&args, session);
Andy Adamsonfc931582009-04-01 09:22:31 -04004732 if (!status) {
4733 /* Increment the clientid slot sequence id */
4734 clp->cl_seqid++;
4735 }
4736
4737 return status;
4738}
4739
4740/*
4741 * Issues a CREATE_SESSION operation to the server.
4742 * It is the responsibility of the caller to verify the session is
4743 * expired before calling this routine.
4744 */
Trond Myklebustf26468f2009-12-05 19:32:11 -05004745int nfs4_proc_create_session(struct nfs_client *clp)
Andy Adamsonfc931582009-04-01 09:22:31 -04004746{
4747 int status;
4748 unsigned *ptr;
4749 struct nfs_fsinfo fsinfo;
4750 struct nfs4_session *session = clp->cl_session;
4751
4752 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
4753
4754 status = _nfs4_proc_create_session(clp);
4755 if (status)
4756 goto out;
4757
Trond Myklebustf26468f2009-12-05 19:32:11 -05004758 /* Init and reset the fore channel */
4759 status = nfs4_init_slot_tables(session);
4760 dprintk("slot table initialization returned %d\n", status);
4761 if (status)
4762 goto out;
4763 status = nfs4_reset_slot_tables(session);
4764 dprintk("slot table reset returned %d\n", status);
Andy Adamsonfc931582009-04-01 09:22:31 -04004765 if (status)
4766 goto out;
4767
4768 ptr = (unsigned *)&session->sess_id.data[0];
4769 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
4770 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
4771
4772 /* Get the lease time */
4773 status = nfs4_proc_get_lease_time(clp, &fsinfo);
4774 if (status == 0) {
4775 /* Update lease time and schedule renewal */
4776 spin_lock(&clp->cl_lock);
4777 clp->cl_lease_time = fsinfo.lease_time * HZ;
4778 clp->cl_last_renewal = jiffies;
Andy Adamsonfc931582009-04-01 09:22:31 -04004779 spin_unlock(&clp->cl_lock);
4780
4781 nfs4_schedule_state_renewal(clp);
4782 }
4783out:
4784 dprintk("<-- %s\n", __func__);
4785 return status;
4786}
4787
Andy Adamson0f3e66c2009-04-01 09:22:34 -04004788/*
4789 * Issue the over-the-wire RPC DESTROY_SESSION.
4790 * The caller must serialize access to this routine.
4791 */
4792int nfs4_proc_destroy_session(struct nfs4_session *session)
4793{
4794 int status = 0;
4795 struct rpc_message msg;
4796
4797 dprintk("--> nfs4_proc_destroy_session\n");
4798
4799 /* session is still being setup */
4800 if (session->clp->cl_cons_state != NFS_CS_READY)
4801 return status;
4802
4803 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION];
4804 msg.rpc_argp = session;
4805 msg.rpc_resp = NULL;
4806 msg.rpc_cred = NULL;
4807 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
4808
4809 if (status)
4810 printk(KERN_WARNING
4811 "Got error %d from the server on DESTROY_SESSION. "
4812 "Session has been destroyed regardless...\n", status);
4813
4814 dprintk("<-- nfs4_proc_destroy_session\n");
4815 return status;
4816}
4817
Trond Myklebustfccba802009-07-21 16:48:07 -04004818int nfs4_init_session(struct nfs_server *server)
4819{
4820 struct nfs_client *clp = server->nfs_client;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05004821 struct nfs4_session *session;
Trond Myklebustfccba802009-07-21 16:48:07 -04004822 int ret;
4823
4824 if (!nfs4_has_session(clp))
4825 return 0;
4826
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05004827 session = clp->cl_session;
4828 session->fc_attrs.max_rqst_sz = server->wsize + nfs41_maxwrite_overhead;
4829 session->fc_attrs.max_resp_sz = server->rsize + nfs41_maxread_overhead;
4830
Trond Myklebustfccba802009-07-21 16:48:07 -04004831 ret = nfs4_recover_expired_lease(server);
4832 if (!ret)
4833 ret = nfs4_check_client_ready(clp);
4834 return ret;
4835}
4836
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004837/*
4838 * Renew the cl_session lease.
4839 */
4840static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
4841{
4842 struct nfs4_sequence_args args;
4843 struct nfs4_sequence_res res;
4844
4845 struct rpc_message msg = {
4846 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
4847 .rpc_argp = &args,
4848 .rpc_resp = &res,
4849 .rpc_cred = cred,
4850 };
4851
4852 args.sa_cache_this = 0;
4853
4854 return nfs4_call_sync_sequence(clp, clp->cl_rpcclient, &msg, &args,
4855 &res, 0);
4856}
4857
4858void nfs41_sequence_call_done(struct rpc_task *task, void *data)
4859{
4860 struct nfs_client *clp = (struct nfs_client *)data;
4861
4862 nfs41_sequence_done(clp, task->tk_msg.rpc_resp, task->tk_status);
4863
4864 if (task->tk_status < 0) {
4865 dprintk("%s ERROR %d\n", __func__, task->tk_status);
4866
4867 if (_nfs4_async_handle_error(task, NULL, clp, NULL)
4868 == -EAGAIN) {
Trond Myklebustd61e6122009-12-05 19:32:19 -05004869 nfs4_restart_rpc(task, clp);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004870 return;
4871 }
4872 }
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004873 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
4874
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004875 kfree(task->tk_msg.rpc_argp);
4876 kfree(task->tk_msg.rpc_resp);
4877
4878 dprintk("<-- %s\n", __func__);
4879}
4880
4881static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
4882{
4883 struct nfs_client *clp;
4884 struct nfs4_sequence_args *args;
4885 struct nfs4_sequence_res *res;
4886
4887 clp = (struct nfs_client *)data;
4888 args = task->tk_msg.rpc_argp;
4889 res = task->tk_msg.rpc_resp;
4890
4891 if (nfs4_setup_sequence(clp, args, res, 0, task))
4892 return;
4893 rpc_call_start(task);
4894}
4895
4896static const struct rpc_call_ops nfs41_sequence_ops = {
4897 .rpc_call_done = nfs41_sequence_call_done,
4898 .rpc_call_prepare = nfs41_sequence_prepare,
4899};
4900
4901static int nfs41_proc_async_sequence(struct nfs_client *clp,
4902 struct rpc_cred *cred)
4903{
4904 struct nfs4_sequence_args *args;
4905 struct nfs4_sequence_res *res;
4906 struct rpc_message msg = {
4907 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
4908 .rpc_cred = cred,
4909 };
4910
4911 args = kzalloc(sizeof(*args), GFP_KERNEL);
4912 if (!args)
4913 return -ENOMEM;
4914 res = kzalloc(sizeof(*res), GFP_KERNEL);
4915 if (!res) {
4916 kfree(args);
4917 return -ENOMEM;
4918 }
4919 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
4920 msg.rpc_argp = args;
4921 msg.rpc_resp = res;
4922
4923 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
4924 &nfs41_sequence_ops, (void *)clp);
4925}
4926
Ricardo Labiagafce5c832009-12-05 16:08:41 -05004927struct nfs4_reclaim_complete_data {
4928 struct nfs_client *clp;
4929 struct nfs41_reclaim_complete_args arg;
4930 struct nfs41_reclaim_complete_res res;
4931};
4932
4933static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
4934{
4935 struct nfs4_reclaim_complete_data *calldata = data;
4936
4937 if (nfs4_setup_sequence(calldata->clp, &calldata->arg.seq_args,
4938 &calldata->res.seq_res, 0, task))
4939 return;
4940
4941 rpc_call_start(task);
4942}
4943
4944static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
4945{
4946 struct nfs4_reclaim_complete_data *calldata = data;
4947 struct nfs_client *clp = calldata->clp;
4948 struct nfs4_sequence_res *res = &calldata->res.seq_res;
4949
4950 dprintk("--> %s\n", __func__);
4951 nfs41_sequence_done(clp, res, task->tk_status);
4952 switch (task->tk_status) {
4953 case 0:
4954 case -NFS4ERR_COMPLETE_ALREADY:
4955 break;
4956 case -NFS4ERR_BADSESSION:
4957 case -NFS4ERR_DEADSESSION:
4958 /*
4959 * Handle the session error, but do not retry the operation, as
4960 * we have no way of telling whether the clientid had to be
4961 * reset before we got our reply. If reset, a new wave of
4962 * reclaim operations will follow, containing their own reclaim
4963 * complete. We don't want our retry to get on the way of
4964 * recovery by incorrectly indicating to the server that we're
4965 * done reclaiming state since the process had to be restarted.
4966 */
4967 _nfs4_async_handle_error(task, NULL, clp, NULL);
4968 break;
4969 default:
4970 if (_nfs4_async_handle_error(
4971 task, NULL, clp, NULL) == -EAGAIN) {
4972 rpc_restart_call_prepare(task);
4973 return;
4974 }
4975 }
Ricardo Labiagafce5c832009-12-05 16:08:41 -05004976
4977 dprintk("<-- %s\n", __func__);
4978}
4979
4980static void nfs4_free_reclaim_complete_data(void *data)
4981{
4982 struct nfs4_reclaim_complete_data *calldata = data;
4983
4984 kfree(calldata);
4985}
4986
4987static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
4988 .rpc_call_prepare = nfs4_reclaim_complete_prepare,
4989 .rpc_call_done = nfs4_reclaim_complete_done,
4990 .rpc_release = nfs4_free_reclaim_complete_data,
4991};
4992
4993/*
4994 * Issue a global reclaim complete.
4995 */
4996static int nfs41_proc_reclaim_complete(struct nfs_client *clp)
4997{
4998 struct nfs4_reclaim_complete_data *calldata;
4999 struct rpc_task *task;
5000 struct rpc_message msg = {
5001 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
5002 };
5003 struct rpc_task_setup task_setup_data = {
5004 .rpc_client = clp->cl_rpcclient,
5005 .rpc_message = &msg,
5006 .callback_ops = &nfs4_reclaim_complete_call_ops,
5007 .flags = RPC_TASK_ASYNC,
5008 };
5009 int status = -ENOMEM;
5010
5011 dprintk("--> %s\n", __func__);
5012 calldata = kzalloc(sizeof(*calldata), GFP_KERNEL);
5013 if (calldata == NULL)
5014 goto out;
5015 calldata->clp = clp;
5016 calldata->arg.one_fs = 0;
5017 calldata->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
5018
5019 msg.rpc_argp = &calldata->arg;
5020 msg.rpc_resp = &calldata->res;
5021 task_setup_data.callback_data = calldata;
5022 task = rpc_run_task(&task_setup_data);
5023 if (IS_ERR(task))
5024 status = PTR_ERR(task);
5025 rpc_put_task(task);
5026out:
5027 dprintk("<-- %s status=%d\n", __func__, status);
5028 return status;
5029}
Andy Adamson557134a2009-04-01 09:21:53 -04005030#endif /* CONFIG_NFS_V4_1 */
5031
Andy Adamson591d71c2009-04-01 09:22:47 -04005032struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05005033 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05005034 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 .recover_open = nfs4_open_reclaim,
5036 .recover_lock = nfs4_lock_reclaim,
Andy Adamson591d71c2009-04-01 09:22:47 -04005037 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04005038 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039};
5040
Andy Adamson591d71c2009-04-01 09:22:47 -04005041#if defined(CONFIG_NFS_V4_1)
5042struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
5043 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
5044 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
5045 .recover_open = nfs4_open_reclaim,
5046 .recover_lock = nfs4_lock_reclaim,
Andy Adamson4d643d12009-12-04 15:52:24 -05005047 .establish_clid = nfs41_init_clientid,
Andy Adamsonb4b82602009-04-01 09:22:49 -04005048 .get_clid_cred = nfs4_get_exchange_id_cred,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005049 .reclaim_complete = nfs41_proc_reclaim_complete,
Andy Adamson591d71c2009-04-01 09:22:47 -04005050};
5051#endif /* CONFIG_NFS_V4_1 */
5052
5053struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05005054 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05005055 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056 .recover_open = nfs4_open_expired,
5057 .recover_lock = nfs4_lock_expired,
Andy Adamson591d71c2009-04-01 09:22:47 -04005058 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04005059 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060};
5061
Andy Adamson591d71c2009-04-01 09:22:47 -04005062#if defined(CONFIG_NFS_V4_1)
5063struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
5064 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
5065 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
5066 .recover_open = nfs4_open_expired,
5067 .recover_lock = nfs4_lock_expired,
Andy Adamson4d643d12009-12-04 15:52:24 -05005068 .establish_clid = nfs41_init_clientid,
Andy Adamsonb4b82602009-04-01 09:22:49 -04005069 .get_clid_cred = nfs4_get_exchange_id_cred,
Andy Adamson591d71c2009-04-01 09:22:47 -04005070};
5071#endif /* CONFIG_NFS_V4_1 */
5072
Benny Halevy29fba382009-04-01 09:22:44 -04005073struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
5074 .sched_state_renewal = nfs4_proc_async_renew,
Andy Adamsona7b72102009-04-01 09:22:46 -04005075 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04005076 .renew_lease = nfs4_proc_renew,
Benny Halevy29fba382009-04-01 09:22:44 -04005077};
5078
5079#if defined(CONFIG_NFS_V4_1)
5080struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
5081 .sched_state_renewal = nfs41_proc_async_sequence,
Andy Adamsona7b72102009-04-01 09:22:46 -04005082 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04005083 .renew_lease = nfs4_proc_sequence,
Benny Halevy29fba382009-04-01 09:22:44 -04005084};
5085#endif
5086
5087/*
5088 * Per minor version reboot and network partition recovery ops
5089 */
5090
Andy Adamson591d71c2009-04-01 09:22:47 -04005091struct nfs4_state_recovery_ops *nfs4_reboot_recovery_ops[] = {
5092 &nfs40_reboot_recovery_ops,
5093#if defined(CONFIG_NFS_V4_1)
5094 &nfs41_reboot_recovery_ops,
5095#endif
5096};
5097
5098struct nfs4_state_recovery_ops *nfs4_nograce_recovery_ops[] = {
5099 &nfs40_nograce_recovery_ops,
5100#if defined(CONFIG_NFS_V4_1)
5101 &nfs41_nograce_recovery_ops,
5102#endif
5103};
5104
Benny Halevy29fba382009-04-01 09:22:44 -04005105struct nfs4_state_maintenance_ops *nfs4_state_renewal_ops[] = {
5106 &nfs40_state_renewal_ops,
5107#if defined(CONFIG_NFS_V4_1)
5108 &nfs41_state_renewal_ops,
5109#endif
5110};
5111
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08005112static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005113 .permission = nfs_permission,
5114 .getattr = nfs_getattr,
5115 .setattr = nfs_setattr,
5116 .getxattr = nfs4_getxattr,
5117 .setxattr = nfs4_setxattr,
5118 .listxattr = nfs4_listxattr,
5119};
5120
David Howells509de812006-08-22 20:06:11 -04005121const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122 .version = 4, /* protocol version */
5123 .dentry_ops = &nfs4_dentry_operations,
5124 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005125 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126 .getroot = nfs4_proc_get_root,
5127 .getattr = nfs4_proc_getattr,
5128 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04005129 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130 .lookup = nfs4_proc_lookup,
5131 .access = nfs4_proc_access,
5132 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 .create = nfs4_proc_create,
5134 .remove = nfs4_proc_remove,
5135 .unlink_setup = nfs4_proc_unlink_setup,
5136 .unlink_done = nfs4_proc_unlink_done,
5137 .rename = nfs4_proc_rename,
5138 .link = nfs4_proc_link,
5139 .symlink = nfs4_proc_symlink,
5140 .mkdir = nfs4_proc_mkdir,
5141 .rmdir = nfs4_proc_remove,
5142 .readdir = nfs4_proc_readdir,
5143 .mknod = nfs4_proc_mknod,
5144 .statfs = nfs4_proc_statfs,
5145 .fsinfo = nfs4_proc_fsinfo,
5146 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04005147 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 .decode_dirent = nfs4_decode_dirent,
5149 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05005150 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005152 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005154 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005156 .clear_acl_cache = nfs4_zap_acl_attr,
Trond Myklebust7fe5c392009-03-19 15:35:50 -04005157 .close_context = nfs4_close_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158};
5159
5160/*
5161 * Local variables:
5162 * c-basic-offset: 8
5163 * End:
5164 */