blob: 7a750f061c2699c6d54651bfb494be0e12be07a5 [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>
39#include <linux/utsname.h>
40#include <linux/delay.h>
41#include <linux/errno.h>
42#include <linux/string.h>
43#include <linux/sunrpc/clnt.h>
44#include <linux/nfs.h>
45#include <linux/nfs4.h>
46#include <linux/nfs_fs.h>
47#include <linux/nfs_page.h>
48#include <linux/smp_lock.h>
49#include <linux/namei.h>
Trond Myklebust02a913a2005-10-18 14:20:17 -070050#include <linux/mount.h>
Benny Halevy99fe60d2009-04-01 09:22:29 -040051#include <linux/module.h>
Andy Adamson5a0ffe52009-04-01 09:23:18 -040052#include <linux/sunrpc/bc_xprt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Trond Myklebust4ce79712005-06-22 17:16:21 +000054#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include "delegation.h"
Trond Myklebust101070c2008-02-19 20:04:23 -050056#include "internal.h"
Chuck Lever006ea732006-03-20 13:44:14 -050057#include "iostat.h"
Andy Adamsonfc931582009-04-01 09:22:31 -040058#include "callback.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#define NFSDBG_FACILITY NFSDBG_PROC
61
Trond Myklebust2066fe82006-09-15 08:30:46 -040062#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define NFS4_POLL_RETRY_MAX (15*HZ)
64
Trond 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{
75 if (err < -1000) {
76 dprintk("%s could not handle NFSv4 error %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -070077 __func__, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return -EIO;
79 }
80 return err;
81}
82
83/*
84 * This is our standard bitmap for GETATTR requests.
85 */
86const u32 nfs4_fattr_bitmap[2] = {
87 FATTR4_WORD0_TYPE
88 | FATTR4_WORD0_CHANGE
89 | FATTR4_WORD0_SIZE
90 | FATTR4_WORD0_FSID
91 | FATTR4_WORD0_FILEID,
92 FATTR4_WORD1_MODE
93 | FATTR4_WORD1_NUMLINKS
94 | FATTR4_WORD1_OWNER
95 | FATTR4_WORD1_OWNER_GROUP
96 | FATTR4_WORD1_RAWDEV
97 | FATTR4_WORD1_SPACE_USED
98 | FATTR4_WORD1_TIME_ACCESS
99 | FATTR4_WORD1_TIME_METADATA
100 | FATTR4_WORD1_TIME_MODIFY
101};
102
103const u32 nfs4_statfs_bitmap[2] = {
104 FATTR4_WORD0_FILES_AVAIL
105 | FATTR4_WORD0_FILES_FREE
106 | FATTR4_WORD0_FILES_TOTAL,
107 FATTR4_WORD1_SPACE_AVAIL
108 | FATTR4_WORD1_SPACE_FREE
109 | FATTR4_WORD1_SPACE_TOTAL
110};
111
Trond Myklebust4ce79712005-06-22 17:16:21 +0000112const u32 nfs4_pathconf_bitmap[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 FATTR4_WORD0_MAXLINK
114 | FATTR4_WORD0_MAXNAME,
115 0
116};
117
118const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
119 | FATTR4_WORD0_MAXREAD
120 | FATTR4_WORD0_MAXWRITE
121 | FATTR4_WORD0_LEASE_TIME,
122 0
123};
124
Manoj Naik830b8e32006-06-09 09:34:25 -0400125const u32 nfs4_fs_locations_bitmap[2] = {
126 FATTR4_WORD0_TYPE
127 | FATTR4_WORD0_CHANGE
128 | FATTR4_WORD0_SIZE
129 | FATTR4_WORD0_FSID
130 | FATTR4_WORD0_FILEID
131 | FATTR4_WORD0_FS_LOCATIONS,
132 FATTR4_WORD1_MODE
133 | FATTR4_WORD1_NUMLINKS
134 | FATTR4_WORD1_OWNER
135 | FATTR4_WORD1_OWNER_GROUP
136 | FATTR4_WORD1_RAWDEV
137 | FATTR4_WORD1_SPACE_USED
138 | FATTR4_WORD1_TIME_ACCESS
139 | FATTR4_WORD1_TIME_METADATA
140 | FATTR4_WORD1_TIME_MODIFY
141 | FATTR4_WORD1_MOUNTED_ON_FILEID
142};
143
Al Virobc4785c2006-10-19 23:28:51 -0700144static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct nfs4_readdir_arg *readdir)
146{
Al Viro0dbb4c62006-10-19 23:28:49 -0700147 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 BUG_ON(readdir->count < 80);
150 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000151 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
153 return;
154 }
155
156 readdir->cookie = 0;
157 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
158 if (cookie == 2)
159 return;
160
161 /*
162 * NFSv4 servers do not return entries for '.' and '..'
163 * Therefore, we fake these entries here. We let '.'
164 * have cookie 0 and '..' have cookie 1. Note that
165 * when talking to the server, we always send cookie 0
166 * instead of 1 or 2.
167 */
Al Viro0dbb4c62006-10-19 23:28:49 -0700168 start = p = kmap_atomic(*readdir->pages, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 if (cookie == 0) {
171 *p++ = xdr_one; /* next */
172 *p++ = xdr_zero; /* cookie, first word */
173 *p++ = xdr_one; /* cookie, second word */
174 *p++ = xdr_one; /* entry len */
175 memcpy(p, ".\0\0\0", 4); /* entry */
176 p++;
177 *p++ = xdr_one; /* bitmap length */
178 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
179 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400180 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182
183 *p++ = xdr_one; /* next */
184 *p++ = xdr_zero; /* cookie, first word */
185 *p++ = xdr_two; /* cookie, second word */
186 *p++ = xdr_two; /* entry len */
187 memcpy(p, "..\0\0", 4); /* entry */
188 p++;
189 *p++ = xdr_one; /* bitmap length */
190 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
191 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400192 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 readdir->pgbase = (char *)p - (char *)start;
195 readdir->count -= readdir->pgbase;
196 kunmap_atomic(start, KM_USER0);
197}
198
Trond Myklebust65de8722008-12-23 15:21:44 -0500199static int nfs4_wait_clnt_recover(struct nfs_client *clp)
200{
201 int res;
202
203 might_sleep();
204
Trond Myklebuste005e802008-12-23 15:21:48 -0500205 res = wait_on_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400206 nfs_wait_bit_killable, TASK_KILLABLE);
Trond Myklebust65de8722008-12-23 15:21:44 -0500207 return res;
208}
209
210static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
211{
212 int res = 0;
213
214 might_sleep();
215
216 if (*timeout <= 0)
217 *timeout = NFS4_POLL_RETRY_MIN;
218 if (*timeout > NFS4_POLL_RETRY_MAX)
219 *timeout = NFS4_POLL_RETRY_MAX;
220 schedule_timeout_killable(*timeout);
221 if (fatal_signal_pending(current))
222 res = -ERESTARTSYS;
223 *timeout <<= 1;
224 return res;
225}
226
227/* This is the error handling routine for processes that are allowed
228 * to sleep.
229 */
230static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
231{
232 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500233 struct nfs4_state *state = exception->state;
Trond Myklebust65de8722008-12-23 15:21:44 -0500234 int ret = errorcode;
235
236 exception->retry = 0;
237 switch(errorcode) {
238 case 0:
239 return 0;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500240 case -NFS4ERR_ADMIN_REVOKED:
241 case -NFS4ERR_BAD_STATEID:
242 case -NFS4ERR_OPENMODE:
243 if (state == NULL)
244 break;
245 nfs4_state_mark_reclaim_nograce(clp, state);
Trond Myklebust65de8722008-12-23 15:21:44 -0500246 case -NFS4ERR_STALE_CLIENTID:
247 case -NFS4ERR_STALE_STATEID:
248 case -NFS4ERR_EXPIRED:
249 nfs4_schedule_state_recovery(clp);
250 ret = nfs4_wait_clnt_recover(clp);
251 if (ret == 0)
252 exception->retry = 1;
Andy Adamson4745e312009-04-01 09:22:42 -0400253#if !defined(CONFIG_NFS_V4_1)
Trond Myklebust65de8722008-12-23 15:21:44 -0500254 break;
Andy Adamson4745e312009-04-01 09:22:42 -0400255#else /* !defined(CONFIG_NFS_V4_1) */
256 if (!nfs4_has_session(server->nfs_client))
257 break;
258 /* FALLTHROUGH */
259 case -NFS4ERR_BADSESSION:
260 case -NFS4ERR_BADSLOT:
261 case -NFS4ERR_BAD_HIGH_SLOT:
262 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
263 case -NFS4ERR_DEADSESSION:
264 case -NFS4ERR_SEQ_FALSE_RETRY:
265 case -NFS4ERR_SEQ_MISORDERED:
266 dprintk("%s ERROR: %d Reset session\n", __func__,
267 errorcode);
268 set_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state);
269 exception->retry = 1;
270 /* FALLTHROUGH */
271#endif /* !defined(CONFIG_NFS_V4_1) */
Trond Myklebust65de8722008-12-23 15:21:44 -0500272 case -NFS4ERR_FILE_OPEN:
273 case -NFS4ERR_GRACE:
274 case -NFS4ERR_DELAY:
275 ret = nfs4_delay(server->client, &exception->timeout);
276 if (ret != 0)
277 break;
278 case -NFS4ERR_OLD_STATEID:
279 exception->retry = 1;
280 }
281 /* We failed to handle the error */
282 return nfs4_map_errors(ret);
283}
284
285
Trond Myklebust26e976a2006-01-03 09:55:21 +0100286static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
David Howells7539bba2006-08-22 20:06:09 -0400288 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 spin_lock(&clp->cl_lock);
290 if (time_before(clp->cl_last_renewal,timestamp))
291 clp->cl_last_renewal = timestamp;
292 spin_unlock(&clp->cl_lock);
293}
294
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400295#if defined(CONFIG_NFS_V4_1)
296
Benny Halevy510b8172009-04-01 09:22:14 -0400297/*
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400298 * nfs4_free_slot - free a slot and efficiently update slot table.
299 *
300 * freeing a slot is trivially done by clearing its respective bit
301 * in the bitmap.
302 * If the freed slotid equals highest_used_slotid we want to update it
303 * so that the server would be able to size down the slot table if needed,
304 * otherwise we know that the highest_used_slotid is still in use.
305 * When updating highest_used_slotid there may be "holes" in the bitmap
306 * so we need to scan down from highest_used_slotid to 0 looking for the now
307 * highest slotid in use.
308 * If none found, highest_used_slotid is set to -1.
309 */
310static void
311nfs4_free_slot(struct nfs4_slot_table *tbl, u8 free_slotid)
312{
313 int slotid = free_slotid;
314
315 spin_lock(&tbl->slot_tbl_lock);
316 /* clear used bit in bitmap */
317 __clear_bit(slotid, tbl->used_slots);
318
319 /* update highest_used_slotid when it is freed */
320 if (slotid == tbl->highest_used_slotid) {
321 slotid = find_last_bit(tbl->used_slots, tbl->max_slots);
322 if (slotid >= 0 && slotid < tbl->max_slots)
323 tbl->highest_used_slotid = slotid;
324 else
325 tbl->highest_used_slotid = -1;
326 }
327 rpc_wake_up_next(&tbl->slot_tbl_waitq);
328 spin_unlock(&tbl->slot_tbl_lock);
329 dprintk("%s: free_slotid %u highest_used_slotid %d\n", __func__,
330 free_slotid, tbl->highest_used_slotid);
331}
332
Andy Adamson13615872009-04-01 09:22:17 -0400333void nfs41_sequence_free_slot(const struct nfs_client *clp,
334 struct nfs4_sequence_res *res)
335{
336 struct nfs4_slot_table *tbl;
337
338 if (!nfs4_has_session(clp)) {
339 dprintk("%s: No session\n", __func__);
340 return;
341 }
342 tbl = &clp->cl_session->fc_slot_table;
343 if (res->sr_slotid == NFS4_MAX_SLOT_TABLE) {
344 dprintk("%s: No slot\n", __func__);
345 /* just wake up the next guy waiting since
346 * we may have not consumed a slot after all */
347 rpc_wake_up_next(&tbl->slot_tbl_waitq);
348 return;
349 }
350 nfs4_free_slot(tbl, res->sr_slotid);
351 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
352}
353
Andy Adamsonb0df8062009-04-01 09:22:18 -0400354static void nfs41_sequence_done(struct nfs_client *clp,
355 struct nfs4_sequence_res *res,
356 int rpc_status)
357{
358 unsigned long timestamp;
359 struct nfs4_slot_table *tbl;
360 struct nfs4_slot *slot;
361
362 /*
363 * sr_status remains 1 if an RPC level error occurred. The server
364 * may or may not have processed the sequence operation..
365 * Proceed as if the server received and processed the sequence
366 * operation.
367 */
368 if (res->sr_status == 1)
369 res->sr_status = NFS_OK;
370
371 /* -ERESTARTSYS can result in skipping nfs41_sequence_setup */
372 if (res->sr_slotid == NFS4_MAX_SLOT_TABLE)
373 goto out;
374
375 tbl = &clp->cl_session->fc_slot_table;
376 slot = tbl->slots + res->sr_slotid;
377
378 if (res->sr_status == 0) {
379 /* Update the slot's sequence and clientid lease timer */
380 ++slot->seq_nr;
381 timestamp = res->sr_renewal_time;
382 spin_lock(&clp->cl_lock);
383 if (time_before(clp->cl_last_renewal, timestamp))
384 clp->cl_last_renewal = timestamp;
385 spin_unlock(&clp->cl_lock);
386 return;
387 }
388out:
389 /* The session may be reset by one of the error handlers. */
390 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
391 nfs41_sequence_free_slot(clp, res);
392}
393
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400394/*
Benny Halevy510b8172009-04-01 09:22:14 -0400395 * nfs4_find_slot - efficiently look for a free slot
396 *
397 * nfs4_find_slot looks for an unset bit in the used_slots bitmap.
398 * If found, we mark the slot as used, update the highest_used_slotid,
399 * and respectively set up the sequence operation args.
400 * The slot number is returned if found, or NFS4_MAX_SLOT_TABLE otherwise.
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400401 *
402 * Note: must be called with under the slot_tbl_lock.
Benny Halevy510b8172009-04-01 09:22:14 -0400403 */
404static u8
405nfs4_find_slot(struct nfs4_slot_table *tbl, struct rpc_task *task)
406{
407 int slotid;
408 u8 ret_id = NFS4_MAX_SLOT_TABLE;
409 BUILD_BUG_ON((u8)NFS4_MAX_SLOT_TABLE != (int)NFS4_MAX_SLOT_TABLE);
410
Benny Halevy510b8172009-04-01 09:22:14 -0400411 dprintk("--> %s used_slots=%04lx highest_used=%d max_slots=%d\n",
412 __func__, tbl->used_slots[0], tbl->highest_used_slotid,
413 tbl->max_slots);
414 slotid = find_first_zero_bit(tbl->used_slots, tbl->max_slots);
415 if (slotid >= tbl->max_slots)
416 goto out;
417 __set_bit(slotid, tbl->used_slots);
418 if (slotid > tbl->highest_used_slotid)
419 tbl->highest_used_slotid = slotid;
420 ret_id = slotid;
421out:
422 dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
423 __func__, tbl->used_slots[0], tbl->highest_used_slotid, ret_id);
Benny Halevy510b8172009-04-01 09:22:14 -0400424 return ret_id;
425}
426
Andy Adamsonb069d942009-04-01 09:22:43 -0400427static int nfs4_recover_session(struct nfs4_session *session)
428{
429 struct nfs_client *clp = session->clp;
430 int ret;
431
432 for (;;) {
433 ret = nfs4_wait_clnt_recover(clp);
434 if (ret != 0)
435 return ret;
436 if (!test_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state))
437 break;
438 nfs4_schedule_state_manager(clp);
439 }
440 return 0;
441}
442
Andy Adamsonce5039c2009-04-01 09:22:13 -0400443static int nfs41_setup_sequence(struct nfs4_session *session,
444 struct nfs4_sequence_args *args,
445 struct nfs4_sequence_res *res,
446 int cache_reply,
447 struct rpc_task *task)
448{
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400449 struct nfs4_slot *slot;
450 struct nfs4_slot_table *tbl;
Andy Adamsonb069d942009-04-01 09:22:43 -0400451 int status = 0;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400452 u8 slotid;
453
454 dprintk("--> %s\n", __func__);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400455 /* slot already allocated? */
456 if (res->sr_slotid != NFS4_MAX_SLOT_TABLE)
457 return 0;
458
459 memset(res, 0, sizeof(*res));
460 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400461 tbl = &session->fc_slot_table;
462
463 spin_lock(&tbl->slot_tbl_lock);
Andy Adamsonb069d942009-04-01 09:22:43 -0400464 if (test_bit(NFS4CLNT_SESSION_SETUP, &session->clp->cl_state)) {
465 if (tbl->highest_used_slotid != -1) {
466 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
467 spin_unlock(&tbl->slot_tbl_lock);
468 dprintk("<-- %s: Session reset: draining\n", __func__);
469 return -EAGAIN;
470 }
471
472 /* The slot table is empty; start the reset thread */
473 dprintk("%s Session Reset\n", __func__);
474 spin_unlock(&tbl->slot_tbl_lock);
475 status = nfs4_recover_session(session);
476 if (status)
477 return status;
478 spin_lock(&tbl->slot_tbl_lock);
479 }
480
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400481 slotid = nfs4_find_slot(tbl, task);
482 if (slotid == NFS4_MAX_SLOT_TABLE) {
483 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
484 spin_unlock(&tbl->slot_tbl_lock);
485 dprintk("<-- %s: no free slots\n", __func__);
486 return -EAGAIN;
487 }
488 spin_unlock(&tbl->slot_tbl_lock);
489
490 slot = tbl->slots + slotid;
Benny Halevy99fe60d2009-04-01 09:22:29 -0400491 args->sa_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400492 args->sa_slotid = slotid;
493 args->sa_cache_this = cache_reply;
494
495 dprintk("<-- %s slotid=%d seqid=%d\n", __func__, slotid, slot->seq_nr);
496
Benny Halevy99fe60d2009-04-01 09:22:29 -0400497 res->sr_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400498 res->sr_slotid = slotid;
499 res->sr_renewal_time = jiffies;
500 /*
501 * sr_status is only set in decode_sequence, and so will remain
502 * set to 1 if an rpc level failure occurs.
503 */
504 res->sr_status = 1;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400505 return 0;
506}
507
508int nfs4_setup_sequence(struct nfs_client *clp,
509 struct nfs4_sequence_args *args,
510 struct nfs4_sequence_res *res,
511 int cache_reply,
512 struct rpc_task *task)
513{
514 int ret = 0;
515
516 dprintk("--> %s clp %p session %p sr_slotid %d\n",
517 __func__, clp, clp->cl_session, res->sr_slotid);
518
519 if (!nfs4_has_session(clp))
520 goto out;
521 ret = nfs41_setup_sequence(clp->cl_session, args, res, cache_reply,
522 task);
523 if (ret != -EAGAIN) {
524 /* terminate rpc task */
525 task->tk_status = ret;
526 task->tk_action = NULL;
527 }
528out:
529 dprintk("<-- %s status=%d\n", __func__, ret);
530 return ret;
531}
532
533struct nfs41_call_sync_data {
534 struct nfs_client *clp;
535 struct nfs4_sequence_args *seq_args;
536 struct nfs4_sequence_res *seq_res;
537 int cache_reply;
538};
539
540static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
541{
542 struct nfs41_call_sync_data *data = calldata;
543
544 dprintk("--> %s data->clp->cl_session %p\n", __func__,
545 data->clp->cl_session);
546 if (nfs4_setup_sequence(data->clp, data->seq_args,
547 data->seq_res, data->cache_reply, task))
548 return;
549 rpc_call_start(task);
550}
551
Andy Adamson69ab40c2009-04-01 09:22:19 -0400552static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
553{
554 struct nfs41_call_sync_data *data = calldata;
555
556 nfs41_sequence_done(data->clp, data->seq_res, task->tk_status);
557 nfs41_sequence_free_slot(data->clp, data->seq_res);
558}
559
Andy Adamsonce5039c2009-04-01 09:22:13 -0400560struct rpc_call_ops nfs41_call_sync_ops = {
561 .rpc_call_prepare = nfs41_call_sync_prepare,
Andy Adamson69ab40c2009-04-01 09:22:19 -0400562 .rpc_call_done = nfs41_call_sync_done,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400563};
564
565static int nfs4_call_sync_sequence(struct nfs_client *clp,
566 struct rpc_clnt *clnt,
567 struct rpc_message *msg,
568 struct nfs4_sequence_args *args,
569 struct nfs4_sequence_res *res,
570 int cache_reply)
571{
572 int ret;
573 struct rpc_task *task;
574 struct nfs41_call_sync_data data = {
575 .clp = clp,
576 .seq_args = args,
577 .seq_res = res,
578 .cache_reply = cache_reply,
579 };
580 struct rpc_task_setup task_setup = {
581 .rpc_client = clnt,
582 .rpc_message = msg,
583 .callback_ops = &nfs41_call_sync_ops,
584 .callback_data = &data
585 };
586
587 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
588 task = rpc_run_task(&task_setup);
589 if (IS_ERR(task))
590 ret = PTR_ERR(task);
591 else {
592 ret = task->tk_status;
593 rpc_put_task(task);
594 }
595 return ret;
596}
597
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400598int _nfs4_call_sync_session(struct nfs_server *server,
599 struct rpc_message *msg,
600 struct nfs4_sequence_args *args,
601 struct nfs4_sequence_res *res,
602 int cache_reply)
603{
Andy Adamsonce5039c2009-04-01 09:22:13 -0400604 return nfs4_call_sync_sequence(server->nfs_client, server->client,
605 msg, args, res, cache_reply);
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400606}
607
608#endif /* CONFIG_NFS_V4_1 */
609
610int _nfs4_call_sync(struct nfs_server *server,
611 struct rpc_message *msg,
612 struct nfs4_sequence_args *args,
613 struct nfs4_sequence_res *res,
614 int cache_reply)
615{
Benny Halevyf3752972009-04-01 09:22:04 -0400616 args->sa_session = res->sr_session = NULL;
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400617 return rpc_call_sync(server->client, msg, 0);
618}
619
620#define nfs4_call_sync(server, msg, args, res, cache_reply) \
621 (server)->nfs_client->cl_call_sync((server), (msg), &(args)->seq_args, \
622 &(res)->seq_res, (cache_reply))
623
Andy Adamsonb0df8062009-04-01 09:22:18 -0400624static void nfs4_sequence_done(const struct nfs_server *server,
625 struct nfs4_sequence_res *res, int rpc_status)
626{
627#ifdef CONFIG_NFS_V4_1
628 if (nfs4_has_session(server->nfs_client))
629 nfs41_sequence_done(server->nfs_client, res, rpc_status);
630#endif /* CONFIG_NFS_V4_1 */
631}
632
633/* no restart, therefore free slot here */
634static void nfs4_sequence_done_free_slot(const struct nfs_server *server,
635 struct nfs4_sequence_res *res,
636 int rpc_status)
637{
638 nfs4_sequence_done(server, res, rpc_status);
639 nfs4_sequence_free_slot(server->nfs_client, res);
640}
641
Trond Myklebust38478b22006-05-25 01:40:57 -0400642static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Trond Myklebust38478b22006-05-25 01:40:57 -0400644 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Trond Myklebust38478b22006-05-25 01:40:57 -0400646 spin_lock(&dir->i_lock);
Trond Myklebust40d24702007-10-08 09:24:22 -0400647 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
648 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400649 nfs_force_lookup_revalidate(dir);
Trond Myklebust40d24702007-10-08 09:24:22 -0400650 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400651 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100654struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400655 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100656 struct nfs_openargs o_arg;
657 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100658 struct nfs_open_confirmargs c_arg;
659 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100660 struct nfs_fattr f_attr;
661 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400662 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100663 struct dentry *dir;
664 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400665 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100666 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100667 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400668 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100669 int rpc_status;
670 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100671};
672
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400673
674static void nfs4_init_opendata_res(struct nfs4_opendata *p)
675{
676 p->o_res.f_attr = &p->f_attr;
677 p->o_res.dir_attr = &p->dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400678 p->o_res.seqid = p->o_arg.seqid;
679 p->c_res.seqid = p->c_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400680 p->o_res.server = p->o_arg.server;
681 nfs_fattr_init(&p->f_attr);
682 nfs_fattr_init(&p->dir_attr);
683}
684
Trond Myklebustad389da2007-06-05 12:30:00 -0400685static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500686 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100687 const struct iattr *attrs)
688{
Trond Myklebustad389da2007-06-05 12:30:00 -0400689 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100690 struct inode *dir = parent->d_inode;
691 struct nfs_server *server = NFS_SERVER(dir);
692 struct nfs4_opendata *p;
693
694 p = kzalloc(sizeof(*p), GFP_KERNEL);
695 if (p == NULL)
696 goto err;
697 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
698 if (p->o_arg.seqid == NULL)
699 goto err_free;
Trond Myklebustad389da2007-06-05 12:30:00 -0400700 p->path.mnt = mntget(path->mnt);
701 p->path.dentry = dget(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100702 p->dir = parent;
703 p->owner = sp;
704 atomic_inc(&sp->so_count);
705 p->o_arg.fh = NFS_FH(dir);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500706 p->o_arg.open_flags = flags;
707 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
David Howells7539bba2006-08-22 20:06:09 -0400708 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400709 p->o_arg.id = sp->so_owner_id.id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400710 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100711 p->o_arg.server = server;
712 p->o_arg.bitmask = server->attr_bitmask;
713 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Andy Adamson5f7dbd52009-04-01 09:22:05 -0400714 p->o_res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100715 if (flags & O_EXCL) {
716 u32 *s = (u32 *) p->o_arg.u.verifier.data;
717 s[0] = jiffies;
718 s[1] = current->pid;
719 } else if (flags & O_CREAT) {
720 p->o_arg.u.attrs = &p->attrs;
721 memcpy(&p->attrs, attrs, sizeof(p->attrs));
722 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100723 p->c_arg.fh = &p->o_res.fh;
724 p->c_arg.stateid = &p->o_res.stateid;
725 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400726 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400727 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100728 return p;
729err_free:
730 kfree(p);
731err:
732 dput(parent);
733 return NULL;
734}
735
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400736static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100737{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400738 struct nfs4_opendata *p = container_of(kref,
739 struct nfs4_opendata, kref);
740
741 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400742 if (p->state != NULL)
743 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400744 nfs4_put_state_owner(p->owner);
745 dput(p->dir);
Jan Blunck31f31db12008-05-02 13:42:45 -0700746 path_put(&p->path);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400747 kfree(p);
748}
749
750static void nfs4_opendata_put(struct nfs4_opendata *p)
751{
752 if (p != NULL)
753 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100754}
755
Trond Myklebust06f814a2006-01-03 09:55:07 +0100756static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
757{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100758 int ret;
759
Trond Myklebust06f814a2006-01-03 09:55:07 +0100760 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100761 return ret;
762}
763
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500764static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400765{
766 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500767
768 if (open_mode & O_EXCL)
769 goto out;
770 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400771 case FMODE_READ:
772 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400773 break;
774 case FMODE_WRITE:
775 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400776 break;
777 case FMODE_READ|FMODE_WRITE:
778 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0;
779 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500780out:
Trond Myklebust6ee41262007-07-08 14:11:36 -0400781 return ret;
782}
783
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500784static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400785{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500786 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400787 return 0;
Trond Myklebust15c831b2008-12-23 15:21:39 -0500788 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
Trond Myklebustaac00a82007-07-05 19:02:21 -0400789 return 0;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500790 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400791 return 1;
792}
793
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500794static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +0100795{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500796 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100797 case FMODE_WRITE:
798 state->n_wronly++;
799 break;
800 case FMODE_READ:
801 state->n_rdonly++;
802 break;
803 case FMODE_READ|FMODE_WRITE:
804 state->n_rdwr++;
805 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500806 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +0100807}
808
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500809static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400810{
811 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
812 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
813 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500814 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400815 case FMODE_READ:
816 set_bit(NFS_O_RDONLY_STATE, &state->flags);
817 break;
818 case FMODE_WRITE:
819 set_bit(NFS_O_WRONLY_STATE, &state->flags);
820 break;
821 case FMODE_READ|FMODE_WRITE:
822 set_bit(NFS_O_RDWR_STATE, &state->flags);
823 }
824}
825
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500826static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400827{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400828 write_seqlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500829 nfs_set_open_stateid_locked(state, stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400830 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400831}
832
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500833static 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 -0700834{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400835 /*
836 * Protect the call to nfs4_state_set_mode_locked and
837 * serialise the stateid update
838 */
839 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400840 if (deleg_stateid != NULL) {
841 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
842 set_bit(NFS_DELEGATED_STATE, &state->flags);
843 }
844 if (open_stateid != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500845 nfs_set_open_stateid_locked(state, open_stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400846 write_sequnlock(&state->seqlock);
847 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500848 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -0700849 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500852static 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 -0500853{
854 struct nfs_inode *nfsi = NFS_I(state->inode);
855 struct nfs_delegation *deleg_cur;
856 int ret = 0;
857
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500858 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -0500859
860 rcu_read_lock();
861 deleg_cur = rcu_dereference(nfsi->delegation);
862 if (deleg_cur == NULL)
863 goto no_delegation;
864
865 spin_lock(&deleg_cur->lock);
866 if (nfsi->delegation != deleg_cur ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500867 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -0500868 goto no_delegation_unlock;
869
870 if (delegation == NULL)
871 delegation = &deleg_cur->stateid;
872 else if (memcmp(deleg_cur->stateid.data, delegation->data, NFS4_STATEID_SIZE) != 0)
873 goto no_delegation_unlock;
874
Trond Myklebustb7391f42008-12-23 15:21:52 -0500875 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500876 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500877 ret = 1;
878no_delegation_unlock:
879 spin_unlock(&deleg_cur->lock);
880no_delegation:
881 rcu_read_unlock();
882
883 if (!ret && open_stateid != NULL) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500884 __update_open_stateid(state, open_stateid, NULL, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500885 ret = 1;
886 }
887
888 return ret;
889}
890
891
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500892static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400893{
894 struct nfs_delegation *delegation;
895
896 rcu_read_lock();
897 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500898 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -0400899 rcu_read_unlock();
900 return;
901 }
902 rcu_read_unlock();
903 nfs_inode_return_delegation(inode);
904}
905
Trond Myklebust6ee41262007-07-08 14:11:36 -0400906static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400907{
908 struct nfs4_state *state = opendata->state;
909 struct nfs_inode *nfsi = NFS_I(state->inode);
910 struct nfs_delegation *delegation;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500911 int open_mode = opendata->o_arg.open_flags & O_EXCL;
912 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400913 nfs4_stateid stateid;
914 int ret = -EAGAIN;
915
Trond Myklebustaac00a82007-07-05 19:02:21 -0400916 for (;;) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500917 if (can_open_cached(state, fmode, open_mode)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400918 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500919 if (can_open_cached(state, fmode, open_mode)) {
920 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400921 spin_unlock(&state->owner->so_lock);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400922 goto out_return_state;
923 }
924 spin_unlock(&state->owner->so_lock);
925 }
Trond Myklebust34310432008-12-23 15:21:38 -0500926 rcu_read_lock();
927 delegation = rcu_dereference(nfsi->delegation);
928 if (delegation == NULL ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500929 !can_open_delegated(delegation, fmode)) {
Trond Myklebust34310432008-12-23 15:21:38 -0500930 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -0400931 break;
Trond Myklebust34310432008-12-23 15:21:38 -0500932 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400933 /* Save the delegation */
934 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
935 rcu_read_unlock();
Trond Myklebustaf22f942007-08-10 17:45:10 -0400936 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400937 if (ret != 0)
938 goto out;
939 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -0500940
941 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500942 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -0500943 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400944 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400945out:
946 return ERR_PTR(ret);
947out_return_state:
948 atomic_inc(&state->count);
949 return state;
950}
951
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100952static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
953{
954 struct inode *inode;
955 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -0400956 struct nfs_delegation *delegation;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400957 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100958
Trond Myklebustaac00a82007-07-05 19:02:21 -0400959 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400960 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400961 goto out;
962 }
963
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400964 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100965 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400966 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100967 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400968 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500969 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400970 goto err;
971 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100972 state = nfs4_get_open_state(inode, data->owner);
973 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400974 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400975 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400976 int delegation_flags = 0;
977
Trond Myklebust003707c2007-07-05 18:07:55 -0400978 rcu_read_lock();
979 delegation = rcu_dereference(NFS_I(inode)->delegation);
980 if (delegation)
981 delegation_flags = delegation->flags;
982 rcu_read_unlock();
Trond Myklebust15c831b2008-12-23 15:21:39 -0500983 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400984 nfs_inode_set_delegation(state->inode,
985 data->owner->so_cred,
986 &data->o_res);
987 else
988 nfs_inode_reclaim_delegation(state->inode,
989 data->owner->so_cred,
990 &data->o_res);
991 }
Trond Myklebust34310432008-12-23 15:21:38 -0500992
993 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500994 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100995 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400996out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100997 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400998err_put_inode:
999 iput(inode);
1000err:
1001 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001002}
1003
Trond Myklebust864472e2006-01-03 09:55:15 +01001004static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1005{
1006 struct nfs_inode *nfsi = NFS_I(state->inode);
1007 struct nfs_open_context *ctx;
1008
1009 spin_lock(&state->inode->i_lock);
1010 list_for_each_entry(ctx, &nfsi->open_files, list) {
1011 if (ctx->state != state)
1012 continue;
1013 get_nfs_open_context(ctx);
1014 spin_unlock(&state->inode->i_lock);
1015 return ctx;
1016 }
1017 spin_unlock(&state->inode->i_lock);
1018 return ERR_PTR(-ENOENT);
1019}
1020
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001021static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
1022{
1023 struct nfs4_opendata *opendata;
1024
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001025 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, 0, NULL);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001026 if (opendata == NULL)
1027 return ERR_PTR(-ENOMEM);
1028 opendata->state = state;
1029 atomic_inc(&state->count);
1030 return opendata;
1031}
1032
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001033static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +01001034{
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001035 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001036 int ret;
1037
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001038 opendata->o_arg.open_flags = 0;
1039 opendata->o_arg.fmode = fmode;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001040 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1041 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1042 nfs4_init_opendata_res(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001043 ret = _nfs4_proc_open(opendata);
1044 if (ret != 0)
1045 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001046 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001047 if (IS_ERR(newstate))
1048 return PTR_ERR(newstate);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001049 nfs4_close_state(&opendata->path, newstate, fmode);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001050 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001051 return 0;
1052}
1053
1054static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1055{
Trond Myklebust864472e2006-01-03 09:55:15 +01001056 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001057 int ret;
1058
1059 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001060 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001061 smp_rmb();
1062 if (state->n_rdwr != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001063 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001064 if (ret != 0)
1065 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001066 if (newstate != state)
1067 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001068 }
1069 if (state->n_wronly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001070 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001071 if (ret != 0)
1072 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001073 if (newstate != state)
1074 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001075 }
1076 if (state->n_rdonly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001077 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001078 if (ret != 0)
1079 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001080 if (newstate != state)
1081 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001082 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001083 /*
1084 * We may have performed cached opens for all three recoveries.
1085 * Check if we need to update the current stateid.
1086 */
1087 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
1088 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001089 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001090 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1091 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001092 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001093 }
Trond Myklebust864472e2006-01-03 09:55:15 +01001094 return 0;
1095}
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097/*
1098 * OPEN_RECLAIM:
1099 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001101static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001103 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +01001104 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001105 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 int status;
1107
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001108 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1109 if (IS_ERR(opendata))
1110 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001111 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
1112 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001113 rcu_read_lock();
1114 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -05001115 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -04001116 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001117 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +01001118 opendata->o_arg.u.delegation_type = delegation_type;
1119 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001120 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return status;
1122}
1123
Trond Myklebust539cd032007-06-05 11:46:42 -04001124static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
1126 struct nfs_server *server = NFS_SERVER(state->inode);
1127 struct nfs4_exception exception = { };
1128 int err;
1129 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001130 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001131 if (err != -NFS4ERR_DELAY)
1132 break;
1133 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 } while (exception.retry);
1135 return err;
1136}
1137
Trond Myklebust864472e2006-01-03 09:55:15 +01001138static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1139{
1140 struct nfs_open_context *ctx;
1141 int ret;
1142
1143 ctx = nfs4_state_find_open_context(state);
1144 if (IS_ERR(ctx))
1145 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001146 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001147 put_nfs_open_context(ctx);
1148 return ret;
1149}
1150
Trond Myklebust13437e12007-07-06 15:10:43 -04001151static 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 -07001152{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001153 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001154 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001156 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1157 if (IS_ERR(opendata))
1158 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001159 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -04001160 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001161 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +01001162 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001163 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001164 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
Trond Myklebust13437e12007-07-06 15:10:43 -04001167int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
1169 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -04001170 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 int err;
1172 do {
Trond Myklebust13437e12007-07-06 15:10:43 -04001173 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 switch (err) {
1175 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07001176 case -ENOENT:
1177 case -ESTALE:
1178 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 case -NFS4ERR_STALE_CLIENTID:
1180 case -NFS4ERR_STALE_STATEID:
1181 case -NFS4ERR_EXPIRED:
1182 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -04001183 nfs4_schedule_state_recovery(server->nfs_client);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001184 goto out;
1185 case -ERESTARTSYS:
1186 /*
1187 * The show must go on: exit, but mark the
1188 * stateid as needing recovery.
1189 */
1190 case -NFS4ERR_ADMIN_REVOKED:
1191 case -NFS4ERR_BAD_STATEID:
1192 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
1193 case -ENOMEM:
1194 err = 0;
1195 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 }
1197 err = nfs4_handle_exception(server, err, &exception);
1198 } while (exception.retry);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001199out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 return err;
1201}
1202
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001203static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1204{
1205 struct nfs4_opendata *data = calldata;
1206
1207 data->rpc_status = task->tk_status;
1208 if (RPC_ASSASSINATED(task))
1209 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001210 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001211 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
1212 sizeof(data->o_res.stateid.data));
Trond Myklebustbb226292008-01-02 15:19:18 -05001213 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001214 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -04001215 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001216 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001217}
1218
1219static void nfs4_open_confirm_release(void *calldata)
1220{
1221 struct nfs4_opendata *data = calldata;
1222 struct nfs4_state *state = NULL;
1223
1224 /* If this request hasn't been cancelled, do nothing */
1225 if (data->cancelled == 0)
1226 goto out_free;
1227 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001228 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001229 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001230 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001231 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001232 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001233out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001234 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001235}
1236
1237static const struct rpc_call_ops nfs4_open_confirm_ops = {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001238 .rpc_call_done = nfs4_open_confirm_done,
1239 .rpc_release = nfs4_open_confirm_release,
1240};
1241
1242/*
1243 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1244 */
1245static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
1246{
1247 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
1248 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001249 struct rpc_message msg = {
1250 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
1251 .rpc_argp = &data->c_arg,
1252 .rpc_resp = &data->c_res,
1253 .rpc_cred = data->owner->so_cred,
1254 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001255 struct rpc_task_setup task_setup_data = {
1256 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001257 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001258 .callback_ops = &nfs4_open_confirm_ops,
1259 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001260 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001261 .flags = RPC_TASK_ASYNC,
1262 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 int status;
1264
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001265 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001266 data->rpc_done = 0;
1267 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001268 data->timestamp = jiffies;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001269 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001270 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001271 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001272 status = nfs4_wait_for_completion_rpc_task(task);
1273 if (status != 0) {
1274 data->cancelled = 1;
1275 smp_wmb();
1276 } else
1277 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001278 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return status;
1280}
1281
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001282static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001284 struct nfs4_opendata *data = calldata;
1285 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001286
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001287 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
1288 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001289 /*
1290 * Check if we still need to send an OPEN call, or if we can use
1291 * a delegation instead.
1292 */
1293 if (data->state != NULL) {
1294 struct nfs_delegation *delegation;
1295
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001296 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -04001297 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001298 rcu_read_lock();
1299 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
1300 if (delegation != NULL &&
Trond Myklebust15c831b2008-12-23 15:21:39 -05001301 test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) {
Trond Myklebustaac00a82007-07-05 19:02:21 -04001302 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001303 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001304 }
1305 rcu_read_unlock();
1306 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001307 /* Update sequence id. */
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001308 data->o_arg.id = sp->so_owner_id.id;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001309 data->o_arg.clientid = sp->so_client->cl_clientid;
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001310 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001311 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001312 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
1313 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001314 data->timestamp = jiffies;
Andy Adamsond8985282009-04-01 09:22:21 -04001315 if (nfs4_setup_sequence(data->o_arg.server->nfs_client,
1316 &data->o_arg.seq_args,
1317 &data->o_res.seq_res, 1, task))
1318 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001319 rpc_call_start(task);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001320 return;
1321out_no_action:
1322 task->tk_action = NULL;
1323
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001324}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001326static void nfs4_open_done(struct rpc_task *task, void *calldata)
1327{
1328 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001330 data->rpc_status = task->tk_status;
Andy Adamsond8985282009-04-01 09:22:21 -04001331
1332 nfs4_sequence_done_free_slot(data->o_arg.server, &data->o_res.seq_res,
1333 task->tk_status);
1334
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001335 if (RPC_ASSASSINATED(task))
1336 return;
1337 if (task->tk_status == 0) {
1338 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -07001339 case S_IFREG:
1340 break;
1341 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001342 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001343 break;
1344 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001345 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001346 break;
1347 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001348 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001349 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001350 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -04001351 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
1352 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -07001353 }
Trond Myklebust3e309912007-07-07 13:19:59 -04001354 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001355}
Trond Myklebust6f926b52005-10-18 14:20:18 -07001356
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001357static void nfs4_open_release(void *calldata)
1358{
1359 struct nfs4_opendata *data = calldata;
1360 struct nfs4_state *state = NULL;
1361
1362 /* If this request hasn't been cancelled, do nothing */
1363 if (data->cancelled == 0)
1364 goto out_free;
1365 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001366 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001367 goto out_free;
1368 /* In case we need an open_confirm, no cleanup! */
1369 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
1370 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001371 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001372 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001373 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001374out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001375 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001376}
1377
1378static const struct rpc_call_ops nfs4_open_ops = {
1379 .rpc_call_prepare = nfs4_open_prepare,
1380 .rpc_call_done = nfs4_open_done,
1381 .rpc_release = nfs4_open_release,
1382};
1383
1384/*
1385 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1386 */
1387static int _nfs4_proc_open(struct nfs4_opendata *data)
1388{
1389 struct inode *dir = data->dir->d_inode;
1390 struct nfs_server *server = NFS_SERVER(dir);
1391 struct nfs_openargs *o_arg = &data->o_arg;
1392 struct nfs_openres *o_res = &data->o_res;
1393 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001394 struct rpc_message msg = {
1395 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
1396 .rpc_argp = o_arg,
1397 .rpc_resp = o_res,
1398 .rpc_cred = data->owner->so_cred,
1399 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001400 struct rpc_task_setup task_setup_data = {
1401 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001402 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001403 .callback_ops = &nfs4_open_ops,
1404 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001405 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001406 .flags = RPC_TASK_ASYNC,
1407 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001408 int status;
1409
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001410 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001411 data->rpc_done = 0;
1412 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001413 data->cancelled = 0;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001414 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001415 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001416 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001417 status = nfs4_wait_for_completion_rpc_task(task);
1418 if (status != 0) {
1419 data->cancelled = 1;
1420 smp_wmb();
1421 } else
1422 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001423 rpc_put_task(task);
Trond Myklebust3e309912007-07-07 13:19:59 -04001424 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001425 return status;
1426
Trond Myklebust99367812007-07-17 21:52:41 -04001427 if (o_res->fh.size == 0)
1428 _nfs4_proc_lookup(dir, o_arg->name, &o_res->fh, o_res->f_attr);
1429
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001430 if (o_arg->open_flags & O_CREAT) {
1431 update_changeattr(dir, &o_res->cinfo);
1432 nfs_post_op_update_inode(dir, o_res->dir_attr);
1433 } else
1434 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001436 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001438 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
1440 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -04001441 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001442 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
1444
Trond Myklebust10afec92007-05-14 17:16:04 -04001445static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +01001446{
David Howells7539bba2006-08-22 20:06:09 -04001447 struct nfs_client *clp = server->nfs_client;
Trond Myklebust6b309542006-09-14 14:03:14 -04001448 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001449
Trond Myklebust6b309542006-09-14 14:03:14 -04001450 for (;;) {
Trond Myklebust65de8722008-12-23 15:21:44 -05001451 ret = nfs4_wait_clnt_recover(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001452 if (ret != 0)
1453 return ret;
Trond Myklebuste598d842008-12-23 15:21:42 -05001454 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
1455 !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
Trond Myklebust6b309542006-09-14 14:03:14 -04001456 break;
Trond Myklebust58d97142006-01-03 09:55:24 +01001457 nfs4_schedule_state_recovery(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001458 }
1459 return 0;
Trond Myklebust58d97142006-01-03 09:55:24 +01001460}
1461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462/*
1463 * OPEN_EXPIRED:
1464 * reclaim state on the server after a network partition.
1465 * Assumes caller holds the appropriate lock
1466 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001467static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001469 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001470 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001472 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1473 if (IS_ERR(opendata))
1474 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001475 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04001476 if (ret == -ESTALE)
Trond Myklebust539cd032007-06-05 11:46:42 -04001477 d_drop(ctx->path.dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001478 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001479 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Trond Myklebust539cd032007-06-05 11:46:42 -04001482static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001483{
Trond Myklebust539cd032007-06-05 11:46:42 -04001484 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001485 struct nfs4_exception exception = { };
1486 int err;
1487
1488 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001489 err = _nfs4_open_expired(ctx, state);
Trond Myklebust027b6ca2008-12-23 16:04:13 -05001490 if (err != -NFS4ERR_DELAY)
1491 break;
1492 nfs4_handle_exception(server, err, &exception);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001493 } while (exception.retry);
1494 return err;
1495}
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1498{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001500 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Trond Myklebust864472e2006-01-03 09:55:15 +01001502 ctx = nfs4_state_find_open_context(state);
1503 if (IS_ERR(ctx))
1504 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001505 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001506 put_nfs_open_context(ctx);
1507 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508}
1509
1510/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001511 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1512 * fields corresponding to attributes that were used to store the verifier.
1513 * Make sure we clobber those fields in the later setattr call
1514 */
1515static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1516{
1517 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1518 !(sattr->ia_valid & ATTR_ATIME_SET))
1519 sattr->ia_valid |= ATTR_ATIME;
1520
1521 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1522 !(sattr->ia_valid & ATTR_MTIME_SET))
1523 sattr->ia_valid |= ATTR_MTIME;
1524}
1525
1526/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001527 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001529static 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 -07001530{
1531 struct nfs4_state_owner *sp;
1532 struct nfs4_state *state = NULL;
1533 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001534 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001535 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 status = -ENOMEM;
1539 if (!(sp = nfs4_get_state_owner(server, cred))) {
1540 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1541 goto out_err;
1542 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001543 status = nfs4_recover_expired_lease(server);
1544 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001545 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001546 if (path->dentry->d_inode != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001547 nfs4_return_incompatible_delegation(path->dentry->d_inode, fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01001548 status = -ENOMEM;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001549 opendata = nfs4_opendata_alloc(path, sp, fmode, flags, sattr);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001550 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05001551 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Trond Myklebustaac00a82007-07-05 19:02:21 -04001553 if (path->dentry->d_inode != NULL)
1554 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1555
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001556 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001558 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001560 if (opendata->o_arg.open_flags & O_EXCL)
1561 nfs4_exclusive_attrset(opendata, sattr);
1562
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001563 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001564 status = PTR_ERR(state);
1565 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001566 goto err_opendata_put;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001567 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 *res = state;
1570 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001571err_opendata_put:
1572 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001573err_put_state_owner:
1574 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 *res = NULL;
1577 return status;
1578}
1579
1580
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001581static 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 -07001582{
1583 struct nfs4_exception exception = { };
1584 struct nfs4_state *res;
1585 int status;
1586
1587 do {
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001588 status = _nfs4_do_open(dir, path, fmode, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 if (status == 0)
1590 break;
1591 /* NOTE: BAD_SEQID means the server and client disagree about the
1592 * book-keeping w.r.t. state-changing operations
1593 * (OPEN/CLOSE/LOCK/LOCKU...)
1594 * It is actually a sign of a bug on the client or on the server.
1595 *
1596 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001597 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 * have unhashed the old state_owner for us, and that we can
1599 * therefore safely retry using a new one. We should still warn
1600 * the user though...
1601 */
1602 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001603 printk(KERN_WARNING "NFS: v4 server %s "
1604 " returned a bad sequence-id error!\n",
1605 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 exception.retry = 1;
1607 continue;
1608 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001609 /*
1610 * BAD_STATEID on OPEN means that the server cancelled our
1611 * state before it received the OPEN_CONFIRM.
1612 * Recover by retrying the request as per the discussion
1613 * on Page 181 of RFC3530.
1614 */
1615 if (status == -NFS4ERR_BAD_STATEID) {
1616 exception.retry = 1;
1617 continue;
1618 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001619 if (status == -EAGAIN) {
1620 /* We must have found a delegation */
1621 exception.retry = 1;
1622 continue;
1623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1625 status, &exception));
1626 } while (exception.retry);
1627 return res;
1628}
1629
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001630static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1631 struct nfs_fattr *fattr, struct iattr *sattr,
1632 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001634 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001636 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 .iap = sattr,
1638 .server = server,
1639 .bitmask = server->attr_bitmask,
1640 };
1641 struct nfs_setattrres res = {
1642 .fattr = fattr,
1643 .server = server,
1644 };
1645 struct rpc_message msg = {
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001646 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1647 .rpc_argp = &arg,
1648 .rpc_resp = &res,
1649 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001651 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001652 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Trond Myklebust0e574af2005-10-27 22:12:38 -04001654 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001656 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1657 /* Use that stateid */
1658 } else if (state != NULL) {
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001659 nfs4_copy_stateid(&arg.stateid, state, current->files);
1660 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1662
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001663 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001664 if (status == 0 && state != NULL)
1665 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001666 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667}
1668
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001669static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1670 struct nfs_fattr *fattr, struct iattr *sattr,
1671 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001673 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 struct nfs4_exception exception = { };
1675 int err;
1676 do {
1677 err = nfs4_handle_exception(server,
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001678 _nfs4_do_setattr(inode, cred, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 &exception);
1680 } while (exception.retry);
1681 return err;
1682}
1683
1684struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001685 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 struct inode *inode;
1687 struct nfs4_state *state;
1688 struct nfs_closeargs arg;
1689 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001690 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001691 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692};
1693
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001694static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001695{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001696 struct nfs4_closedata *calldata = data;
1697 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001698
1699 nfs4_put_open_state(calldata->state);
1700 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001701 nfs4_put_state_owner(sp);
Jan Blunck31f31db12008-05-02 13:42:45 -07001702 path_put(&calldata->path);
Trond Myklebust95121352005-10-18 14:20:12 -07001703 kfree(calldata);
1704}
1705
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001706static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001708 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 struct nfs_server *server = NFS_SERVER(calldata->inode);
1711
Andy Adamson19ddab02009-04-01 09:22:20 -04001712 nfs4_sequence_done(server, &calldata->res.seq_res, task->tk_status);
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001713 if (RPC_ASSASSINATED(task))
1714 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 /* hmm. we are done with the inode, and in the process of freeing
1716 * the state_owner. we keep this around to process errors
1717 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 switch (task->tk_status) {
1719 case 0:
Trond Myklebust45328c32007-07-26 17:47:34 -04001720 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001721 renew_lease(server, calldata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 break;
1723 case -NFS4ERR_STALE_STATEID:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001724 case -NFS4ERR_OLD_STATEID:
1725 case -NFS4ERR_BAD_STATEID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 case -NFS4ERR_EXPIRED:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001727 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001728 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001730 if (nfs4_async_handle_error(task, server, state) == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04001731 nfs4_restart_rpc(task, server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 return;
1733 }
1734 }
Andy Adamson19ddab02009-04-01 09:22:20 -04001735 nfs4_sequence_free_slot(server->nfs_client, &calldata->res.seq_res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04001736 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737}
1738
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001739static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001741 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001742 struct nfs4_state *state = calldata->state;
Trond Myklebust003707c2007-07-05 18:07:55 -04001743 int clear_rd, clear_wr, clear_rdwr;
Trond Myklebust95121352005-10-18 14:20:12 -07001744
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001745 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001746 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001747
Trond Myklebust003707c2007-07-05 18:07:55 -04001748 clear_rd = clear_wr = clear_rdwr = 0;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001749 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001750 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001751 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001752 if (state->n_rdonly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001753 clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1754 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1755 }
1756 if (state->n_wronly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001757 clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1758 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1759 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001760 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001761 spin_unlock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001762 if (!clear_rd && !clear_wr && !clear_rdwr) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001763 /* Note: exit _without_ calling nfs4_close_done */
1764 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001765 return;
1766 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001767 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust45328c32007-07-26 17:47:34 -04001768 if (test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001769 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001770 calldata->arg.fmode = FMODE_READ;
Trond Myklebust45328c32007-07-26 17:47:34 -04001771 } else if (test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001772 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001773 calldata->arg.fmode = FMODE_WRITE;
Trond Myklebust45328c32007-07-26 17:47:34 -04001774 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001775 calldata->timestamp = jiffies;
Andy Adamson19ddab02009-04-01 09:22:20 -04001776 if (nfs4_setup_sequence((NFS_SERVER(calldata->inode))->nfs_client,
1777 &calldata->arg.seq_args, &calldata->res.seq_res,
1778 1, task))
1779 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001780 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781}
1782
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001783static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001784 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001785 .rpc_call_done = nfs4_close_done,
1786 .rpc_release = nfs4_free_closedata,
1787};
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789/*
1790 * It is possible for data to be read/written from a mem-mapped file
1791 * after the sys_close call (which hits the vfs layer as a flush).
1792 * This means that we can't safely call nfsv4 close on a file until
1793 * the inode is cleared. This in turn means that we are not good
1794 * NFSv4 citizens - we do not indicate to the server to update the file's
1795 * share state even when we are done with one of the three share
1796 * stateid's in the inode.
1797 *
1798 * NOTE: Caller must be holding the sp->so_owner semaphore!
1799 */
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001800int nfs4_do_close(struct path *path, struct nfs4_state *state, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001802 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001804 struct nfs4_state_owner *sp = state->owner;
1805 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001806 struct rpc_message msg = {
1807 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1808 .rpc_cred = state->owner->so_cred,
1809 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001810 struct rpc_task_setup task_setup_data = {
1811 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001812 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001813 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05001814 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001815 .flags = RPC_TASK_ASYNC,
1816 };
Trond Myklebust95121352005-10-18 14:20:12 -07001817 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Andy Adamson19ddab02009-04-01 09:22:20 -04001819 calldata = kzalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001821 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001822 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001824 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04001825 calldata->arg.stateid = &state->open_stateid;
Benny Halevy34dc1ad2009-04-01 09:22:52 -04001826 if (nfs4_has_session(server->nfs_client))
1827 memset(calldata->arg.stateid->data, 0, 4); /* clear seqid */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001829 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001830 if (calldata->arg.seqid == NULL)
1831 goto out_free_calldata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001832 calldata->arg.fmode = 0;
Trond Myklebusta65318b2009-03-11 14:10:28 -04001833 calldata->arg.bitmask = server->cache_consistency_bitmask;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001834 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04001835 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001836 calldata->res.server = server;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04001837 calldata->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001838 calldata->path.mnt = mntget(path->mnt);
1839 calldata->path.dentry = dget(path->dentry);
Trond Myklebust95121352005-10-18 14:20:12 -07001840
Trond Myklebust5138fde2007-07-14 15:40:01 -04001841 msg.rpc_argp = &calldata->arg,
1842 msg.rpc_resp = &calldata->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001843 task_setup_data.callback_data = calldata;
1844 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001845 if (IS_ERR(task))
1846 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001847 status = 0;
1848 if (wait)
1849 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001850 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001851 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07001852out_free_calldata:
1853 kfree(calldata);
1854out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04001855 nfs4_put_open_state(state);
1856 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07001857 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858}
1859
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001860static 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 -07001861{
1862 struct file *filp;
Trond Myklebust1b45c462007-07-03 13:04:56 -04001863 int ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001864
Trond Myklebust1b45c462007-07-03 13:04:56 -04001865 /* If the open_intent is for execute, we have an extra check to make */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001866 if (fmode & FMODE_EXEC) {
Trond Myklebustaf22f942007-08-10 17:45:10 -04001867 ret = nfs_may_open(state->inode,
Trond Myklebust1b45c462007-07-03 13:04:56 -04001868 state->owner->so_cred,
1869 nd->intent.open.flags);
1870 if (ret < 0)
1871 goto out_close;
1872 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001873 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001874 if (!IS_ERR(filp)) {
1875 struct nfs_open_context *ctx;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04001876 ctx = nfs_file_open_context(filp);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001877 ctx->state = state;
Trond Myklebust95cf9592006-04-18 13:14:06 -04001878 return 0;
1879 }
Trond Myklebust1b45c462007-07-03 13:04:56 -04001880 ret = PTR_ERR(filp);
1881out_close:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001882 nfs4_close_sync(path, state, fmode & (FMODE_READ|FMODE_WRITE));
Trond Myklebust1b45c462007-07-03 13:04:56 -04001883 return ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001884}
1885
1886struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1888{
Trond Myklebustad389da2007-06-05 12:30:00 -04001889 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001890 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001891 .dentry = dentry,
1892 };
Jan Blunck4ac91372008-02-14 19:34:32 -08001893 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 struct iattr attr;
1895 struct rpc_cred *cred;
1896 struct nfs4_state *state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001897 struct dentry *res;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001898 fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900 if (nd->flags & LOOKUP_CREATE) {
1901 attr.ia_mode = nd->intent.open.create_mode;
1902 attr.ia_valid = ATTR_MODE;
1903 if (!IS_POSIXACL(dir))
Al Viroce3b0f82009-03-29 19:08:22 -04001904 attr.ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 } else {
1906 attr.ia_valid = 0;
1907 BUG_ON(nd->intent.open.flags & O_CREAT);
1908 }
1909
Trond Myklebust98a8e322008-03-12 12:25:28 -04001910 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 if (IS_ERR(cred))
Trond Myklebust02a913a2005-10-18 14:20:17 -07001912 return (struct dentry *)cred;
Trond Myklebust565277f2007-10-15 18:17:53 -04001913 parent = dentry->d_parent;
1914 /* Protect against concurrent sillydeletes */
1915 nfs_block_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001916 state = nfs4_do_open(dir, &path, fmode, nd->intent.open.flags, &attr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001918 if (IS_ERR(state)) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001919 if (PTR_ERR(state) == -ENOENT) {
Trond Myklebust02a913a2005-10-18 14:20:17 -07001920 d_add(dentry, NULL);
Trond Myklebustd75340c2007-10-01 21:42:01 -04001921 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1922 }
Trond Myklebust565277f2007-10-15 18:17:53 -04001923 nfs_unblock_sillyrename(parent);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001924 return (struct dentry *)state;
1925 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001926 res = d_add_unique(dentry, igrab(state->inode));
Trond Myklebust02a913a2005-10-18 14:20:17 -07001927 if (res != NULL)
Trond Myklebustdeee9362007-08-27 11:33:00 -04001928 path.dentry = res;
Trond Myklebustd75340c2007-10-01 21:42:01 -04001929 nfs_set_verifier(path.dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001930 nfs_unblock_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001931 nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001932 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933}
1934
1935int
Trond Myklebust02a913a2005-10-18 14:20:17 -07001936nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
Trond Myklebustad389da2007-06-05 12:30:00 -04001938 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001939 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001940 .dentry = dentry,
1941 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 struct rpc_cred *cred;
1943 struct nfs4_state *state;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001944 fmode_t fmode = openflags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Trond Myklebust98a8e322008-03-12 12:25:28 -04001946 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 if (IS_ERR(cred))
1948 return PTR_ERR(cred);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001949 state = nfs4_do_open(dir, &path, fmode, openflags, NULL, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001951 if (IS_ERR(state)) {
1952 switch (PTR_ERR(state)) {
1953 case -EPERM:
1954 case -EACCES:
1955 case -EDQUOT:
1956 case -ENOSPC:
1957 case -EROFS:
1958 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1959 return 1;
Chuck Leverb87c0ad2006-10-19 23:28:42 -07001960 default:
1961 goto out_drop;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001962 }
Trond Myklebust02a913a2005-10-18 14:20:17 -07001963 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001964 if (state->inode == dentry->d_inode) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001965 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001966 nfs4_intent_set_file(nd, &path, state, fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 return 1;
1968 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001969 nfs4_close_sync(&path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001970out_drop:
1971 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 return 0;
1973}
1974
Trond Myklebust7fe5c392009-03-19 15:35:50 -04001975void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
1976{
1977 if (ctx->state == NULL)
1978 return;
1979 if (is_sync)
1980 nfs4_close_sync(&ctx->path, ctx->state, ctx->mode);
1981 else
1982 nfs4_close_state(&ctx->path, ctx->state, ctx->mode);
1983}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
1985static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1986{
Benny Halevy43652ad2009-04-01 09:21:54 -04001987 struct nfs4_server_caps_arg args = {
1988 .fhandle = fhandle,
1989 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 struct nfs4_server_caps_res res = {};
1991 struct rpc_message msg = {
1992 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
Benny Halevy43652ad2009-04-01 09:21:54 -04001993 .rpc_argp = &args,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 .rpc_resp = &res,
1995 };
1996 int status;
1997
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001998 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 if (status == 0) {
2000 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
2001 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
2002 server->caps |= NFS_CAP_ACLS;
2003 if (res.has_links != 0)
2004 server->caps |= NFS_CAP_HARDLINKS;
2005 if (res.has_symlinks != 0)
2006 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebusta65318b2009-03-11 14:10:28 -04002007 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
2008 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
2009 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 server->acl_bitmask = res.acl_bitmask;
2011 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 return status;
2014}
2015
Trond Myklebust55a97592006-06-09 09:34:19 -04002016int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
2018 struct nfs4_exception exception = { };
2019 int err;
2020 do {
2021 err = nfs4_handle_exception(server,
2022 _nfs4_server_capabilities(server, fhandle),
2023 &exception);
2024 } while (exception.retry);
2025 return err;
2026}
2027
2028static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2029 struct nfs_fsinfo *info)
2030{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 struct nfs4_lookup_root_arg args = {
2032 .bitmask = nfs4_fattr_bitmap,
2033 };
2034 struct nfs4_lookup_res res = {
2035 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04002036 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 .fh = fhandle,
2038 };
2039 struct rpc_message msg = {
2040 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
2041 .rpc_argp = &args,
2042 .rpc_resp = &res,
2043 };
Benny Halevy008f55d2009-04-01 09:22:50 -04002044 int status;
2045
Trond Myklebust0e574af2005-10-27 22:12:38 -04002046 nfs_fattr_init(info->fattr);
Benny Halevy008f55d2009-04-01 09:22:50 -04002047 status = nfs4_recover_expired_lease(server);
2048 if (!status)
2049 status = nfs4_check_client_ready(server->nfs_client);
2050 if (!status)
2051 status = nfs4_call_sync(server, &msg, &args, &res, 0);
2052 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
2054
2055static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2056 struct nfs_fsinfo *info)
2057{
2058 struct nfs4_exception exception = { };
2059 int err;
2060 do {
2061 err = nfs4_handle_exception(server,
2062 _nfs4_lookup_root(server, fhandle, info),
2063 &exception);
2064 } while (exception.retry);
2065 return err;
2066}
2067
David Howells54ceac42006-08-22 20:06:13 -04002068/*
2069 * get the file handle for the "/" directory on the server
2070 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04002072 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 int status;
2075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 if (status == 0)
2078 status = nfs4_server_capabilities(server, fhandle);
2079 if (status == 0)
2080 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08002081 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082}
2083
Manoj Naik6b97fd32006-06-09 09:34:29 -04002084/*
2085 * Get locations and (maybe) other attributes of a referral.
2086 * Note that we'll actually follow the referral later when
2087 * we detect fsid mismatch in inode revalidation
2088 */
Trond Myklebust56659e92007-07-17 21:52:39 -04002089static 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 -04002090{
2091 int status = -ENOMEM;
2092 struct page *page = NULL;
2093 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04002094
2095 page = alloc_page(GFP_KERNEL);
2096 if (page == NULL)
2097 goto out;
2098 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
2099 if (locations == NULL)
2100 goto out;
2101
Trond Myklebustc228fd32007-01-13 02:28:11 -05002102 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002103 if (status != 0)
2104 goto out;
2105 /* Make sure server returned a different fsid for the referral */
2106 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07002107 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 -04002108 status = -EIO;
2109 goto out;
2110 }
2111
2112 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
2113 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
2114 if (!fattr->mode)
2115 fattr->mode = S_IFDIR;
2116 memset(fhandle, 0, sizeof(struct nfs_fh));
2117out:
2118 if (page)
2119 __free_page(page);
2120 if (locations)
2121 kfree(locations);
2122 return status;
2123}
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2126{
2127 struct nfs4_getattr_arg args = {
2128 .fh = fhandle,
2129 .bitmask = server->attr_bitmask,
2130 };
2131 struct nfs4_getattr_res res = {
2132 .fattr = fattr,
2133 .server = server,
2134 };
2135 struct rpc_message msg = {
2136 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
2137 .rpc_argp = &args,
2138 .rpc_resp = &res,
2139 };
2140
Trond Myklebust0e574af2005-10-27 22:12:38 -04002141 nfs_fattr_init(fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002142 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143}
2144
2145static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2146{
2147 struct nfs4_exception exception = { };
2148 int err;
2149 do {
2150 err = nfs4_handle_exception(server,
2151 _nfs4_proc_getattr(server, fhandle, fattr),
2152 &exception);
2153 } while (exception.retry);
2154 return err;
2155}
2156
2157/*
2158 * The file is not closed if it is opened due to the a request to change
2159 * the size of the file. The open call will not be needed once the
2160 * VFS layer lookup-intents are implemented.
2161 *
2162 * Close is called when the inode is destroyed.
2163 * If we haven't opened the file for O_WRONLY, we
2164 * need to in the size_change case to obtain a stateid.
2165 *
2166 * Got race?
2167 * Because OPEN is always done by name in nfsv4, it is
2168 * possible that we opened a different file by the same
2169 * name. We can recognize this race condition, but we
2170 * can't do anything about it besides returning an error.
2171 *
2172 * This will be fixed with VFS changes (lookup-intent).
2173 */
2174static int
2175nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
2176 struct iattr *sattr)
2177{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002178 struct inode *inode = dentry->d_inode;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002179 struct rpc_cred *cred = NULL;
Trond Myklebustd5308382005-11-04 15:33:38 -05002180 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 int status;
2182
Trond Myklebust0e574af2005-10-27 22:12:38 -04002183 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Trond Myklebustd5308382005-11-04 15:33:38 -05002185 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002186 if (sattr->ia_valid & ATTR_FILE) {
2187 struct nfs_open_context *ctx;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002188
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002189 ctx = nfs_file_open_context(sattr->ia_file);
Neil Brown504e5182008-10-16 14:15:16 +11002190 if (ctx) {
2191 cred = ctx->cred;
2192 state = ctx->state;
2193 }
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002194 }
2195
2196 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04002197 if (status == 0)
2198 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 return status;
2200}
2201
Trond Myklebust56659e92007-07-17 21:52:39 -04002202static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
2203 const struct qstr *name, struct nfs_fh *fhandle,
David Howells2b3de442006-08-22 20:06:09 -04002204 struct nfs_fattr *fattr)
2205{
2206 int status;
2207 struct nfs4_lookup_arg args = {
2208 .bitmask = server->attr_bitmask,
2209 .dir_fh = dirfh,
2210 .name = name,
2211 };
2212 struct nfs4_lookup_res res = {
2213 .server = server,
2214 .fattr = fattr,
2215 .fh = fhandle,
2216 };
2217 struct rpc_message msg = {
2218 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
2219 .rpc_argp = &args,
2220 .rpc_resp = &res,
2221 };
2222
2223 nfs_fattr_init(fattr);
2224
2225 dprintk("NFS call lookupfh %s\n", name->name);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002226 status = nfs4_call_sync(server, &msg, &args, &res, 0);
David Howells2b3de442006-08-22 20:06:09 -04002227 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04002228 return status;
2229}
2230
2231static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
2232 struct qstr *name, struct nfs_fh *fhandle,
2233 struct nfs_fattr *fattr)
2234{
2235 struct nfs4_exception exception = { };
2236 int err;
2237 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04002238 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
2239 /* FIXME: !!!! */
2240 if (err == -NFS4ERR_MOVED) {
2241 err = -EREMOTE;
2242 break;
2243 }
2244 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04002245 } while (exception.retry);
2246 return err;
2247}
2248
Trond Myklebust56659e92007-07-17 21:52:39 -04002249static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2251{
Trond Myklebust4e56e082007-07-01 18:13:52 -04002252 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
2254 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04002255 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002256 if (status == -NFS4ERR_MOVED)
2257 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 dprintk("NFS reply lookup: %d\n", status);
2259 return status;
2260}
2261
2262static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2263{
2264 struct nfs4_exception exception = { };
2265 int err;
2266 do {
2267 err = nfs4_handle_exception(NFS_SERVER(dir),
2268 _nfs4_proc_lookup(dir, name, fhandle, fattr),
2269 &exception);
2270 } while (exception.retry);
2271 return err;
2272}
2273
2274static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2275{
Trond Myklebust76b32992007-08-10 17:45:11 -04002276 struct nfs_server *server = NFS_SERVER(inode);
2277 struct nfs_fattr fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 struct nfs4_accessargs args = {
2279 .fh = NFS_FH(inode),
Trond Myklebust76b32992007-08-10 17:45:11 -04002280 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 };
Trond Myklebust76b32992007-08-10 17:45:11 -04002282 struct nfs4_accessres res = {
2283 .server = server,
2284 .fattr = &fattr,
2285 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 struct rpc_message msg = {
2287 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
2288 .rpc_argp = &args,
2289 .rpc_resp = &res,
2290 .rpc_cred = entry->cred,
2291 };
2292 int mode = entry->mask;
2293 int status;
2294
2295 /*
2296 * Determine which access bits we want to ask for...
2297 */
2298 if (mode & MAY_READ)
2299 args.access |= NFS4_ACCESS_READ;
2300 if (S_ISDIR(inode->i_mode)) {
2301 if (mode & MAY_WRITE)
2302 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
2303 if (mode & MAY_EXEC)
2304 args.access |= NFS4_ACCESS_LOOKUP;
2305 } else {
2306 if (mode & MAY_WRITE)
2307 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
2308 if (mode & MAY_EXEC)
2309 args.access |= NFS4_ACCESS_EXECUTE;
2310 }
Trond Myklebust76b32992007-08-10 17:45:11 -04002311 nfs_fattr_init(&fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002312 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 if (!status) {
2314 entry->mask = 0;
2315 if (res.access & NFS4_ACCESS_READ)
2316 entry->mask |= MAY_READ;
2317 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
2318 entry->mask |= MAY_WRITE;
2319 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
2320 entry->mask |= MAY_EXEC;
Trond Myklebust76b32992007-08-10 17:45:11 -04002321 nfs_refresh_inode(inode, &fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 }
2323 return status;
2324}
2325
2326static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2327{
2328 struct nfs4_exception exception = { };
2329 int err;
2330 do {
2331 err = nfs4_handle_exception(NFS_SERVER(inode),
2332 _nfs4_proc_access(inode, entry),
2333 &exception);
2334 } while (exception.retry);
2335 return err;
2336}
2337
2338/*
2339 * TODO: For the time being, we don't try to get any attributes
2340 * along with any of the zero-copy operations READ, READDIR,
2341 * READLINK, WRITE.
2342 *
2343 * In the case of the first three, we want to put the GETATTR
2344 * after the read-type operation -- this is because it is hard
2345 * to predict the length of a GETATTR response in v4, and thus
2346 * align the READ data correctly. This means that the GETATTR
2347 * may end up partially falling into the page cache, and we should
2348 * shift it into the 'tail' of the xdr_buf before processing.
2349 * To do this efficiently, we need to know the total length
2350 * of data received, which doesn't seem to be available outside
2351 * of the RPC layer.
2352 *
2353 * In the case of WRITE, we also want to put the GETATTR after
2354 * the operation -- in this case because we want to make sure
2355 * we get the post-operation mtime and size. This means that
2356 * we can't use xdr_encode_pages() as written: we need a variant
2357 * of it which would leave room in the 'tail' iovec.
2358 *
2359 * Both of these changes to the XDR layer would in fact be quite
2360 * minor, but I decided to leave them for a subsequent patch.
2361 */
2362static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
2363 unsigned int pgbase, unsigned int pglen)
2364{
2365 struct nfs4_readlink args = {
2366 .fh = NFS_FH(inode),
2367 .pgbase = pgbase,
2368 .pglen = pglen,
2369 .pages = &page,
2370 };
Benny Halevyf50c7002009-04-01 09:21:55 -04002371 struct nfs4_readlink_res res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 struct rpc_message msg = {
2373 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
2374 .rpc_argp = &args,
Benny Halevyf50c7002009-04-01 09:21:55 -04002375 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 };
2377
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002378 return nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379}
2380
2381static int nfs4_proc_readlink(struct inode *inode, struct page *page,
2382 unsigned int pgbase, unsigned int pglen)
2383{
2384 struct nfs4_exception exception = { };
2385 int err;
2386 do {
2387 err = nfs4_handle_exception(NFS_SERVER(inode),
2388 _nfs4_proc_readlink(inode, page, pgbase, pglen),
2389 &exception);
2390 } while (exception.retry);
2391 return err;
2392}
2393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394/*
2395 * Got race?
2396 * We will need to arrange for the VFS layer to provide an atomic open.
2397 * Until then, this create/open method is prone to inefficiency and race
2398 * conditions due to the lookup, create, and open VFS calls from sys_open()
2399 * placed on the wire.
2400 *
2401 * Given the above sorry state of affairs, I'm simply sending an OPEN.
2402 * The file will be opened again in the subsequent VFS open call
2403 * (nfs4_proc_file_open).
2404 *
2405 * The open for read will just hang around to be used by any process that
2406 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
2407 */
2408
2409static int
2410nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07002411 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412{
Trond Myklebustad389da2007-06-05 12:30:00 -04002413 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08002414 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04002415 .dentry = dentry,
2416 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 struct nfs4_state *state;
2418 struct rpc_cred *cred;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002419 fmode_t fmode = flags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 int status = 0;
2421
Trond Myklebust98a8e322008-03-12 12:25:28 -04002422 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 if (IS_ERR(cred)) {
2424 status = PTR_ERR(cred);
2425 goto out;
2426 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002427 state = nfs4_do_open(dir, &path, fmode, flags, sattr, cred);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002428 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 if (IS_ERR(state)) {
2430 status = PTR_ERR(state);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002431 goto out_putcred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002433 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04002434 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 if (flags & O_EXCL) {
2436 struct nfs_fattr fattr;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002437 status = nfs4_do_setattr(state->inode, cred, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002438 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04002439 nfs_setattr_update_inode(state->inode, sattr);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002440 nfs_post_op_update_inode(state->inode, &fattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002441 }
Trond Myklebustad389da2007-06-05 12:30:00 -04002442 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002443 status = nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002444 else
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002445 nfs4_close_sync(&path, state, fmode);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002446out_putcred:
2447 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448out:
2449 return status;
2450}
2451
2452static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
2453{
Trond Myklebust16e42952005-10-27 22:12:44 -04002454 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002455 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 .fh = NFS_FH(dir),
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002457 .name.len = name->len,
2458 .name.name = name->name,
Trond Myklebust16e42952005-10-27 22:12:44 -04002459 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002461 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04002462 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04002463 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002465 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
2466 .rpc_argp = &args,
2467 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 };
2469 int status;
2470
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002471 nfs_fattr_init(&res.dir_attr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002472 status = nfs4_call_sync(server, &msg, &args, &res, 1);
Trond Myklebust16e42952005-10-27 22:12:44 -04002473 if (status == 0) {
2474 update_changeattr(dir, &res.cinfo);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002475 nfs_post_op_update_inode(dir, &res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04002476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 return status;
2478}
2479
2480static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
2481{
2482 struct nfs4_exception exception = { };
2483 int err;
2484 do {
2485 err = nfs4_handle_exception(NFS_SERVER(dir),
2486 _nfs4_proc_remove(dir, name),
2487 &exception);
2488 } while (exception.retry);
2489 return err;
2490}
2491
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002492static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002494 struct nfs_server *server = NFS_SERVER(dir);
2495 struct nfs_removeargs *args = msg->rpc_argp;
2496 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
Trond Myklebusta65318b2009-03-11 14:10:28 -04002498 args->bitmask = server->cache_consistency_bitmask;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002499 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501}
2502
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002503static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002505 struct nfs_removeres *res = task->tk_msg.rpc_resp;
2506
Andy Adamson472cfbd2009-04-01 09:22:24 -04002507 nfs4_sequence_done(res->server, &res->seq_res, task->tk_status);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002508 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002509 return 0;
Andy Adamson472cfbd2009-04-01 09:22:24 -04002510 nfs4_sequence_free_slot(res->server->nfs_client, &res->seq_res);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002511 update_changeattr(dir, &res->cinfo);
2512 nfs_post_op_update_inode(dir, &res->dir_attr);
2513 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514}
2515
2516static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2517 struct inode *new_dir, struct qstr *new_name)
2518{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002519 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 struct nfs4_rename_arg arg = {
2521 .old_dir = NFS_FH(old_dir),
2522 .new_dir = NFS_FH(new_dir),
2523 .old_name = old_name,
2524 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002525 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002527 struct nfs_fattr old_fattr, new_fattr;
2528 struct nfs4_rename_res res = {
2529 .server = server,
2530 .old_fattr = &old_fattr,
2531 .new_fattr = &new_fattr,
2532 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 struct rpc_message msg = {
2534 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2535 .rpc_argp = &arg,
2536 .rpc_resp = &res,
2537 };
2538 int status;
2539
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002540 nfs_fattr_init(res.old_fattr);
2541 nfs_fattr_init(res.new_fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002542 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
2544 if (!status) {
2545 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002546 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002548 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 }
2550 return status;
2551}
2552
2553static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2554 struct inode *new_dir, struct qstr *new_name)
2555{
2556 struct nfs4_exception exception = { };
2557 int err;
2558 do {
2559 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2560 _nfs4_proc_rename(old_dir, old_name,
2561 new_dir, new_name),
2562 &exception);
2563 } while (exception.retry);
2564 return err;
2565}
2566
2567static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2568{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002569 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 struct nfs4_link_arg arg = {
2571 .fh = NFS_FH(inode),
2572 .dir_fh = NFS_FH(dir),
2573 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002574 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002576 struct nfs_fattr fattr, dir_attr;
2577 struct nfs4_link_res res = {
2578 .server = server,
2579 .fattr = &fattr,
2580 .dir_attr = &dir_attr,
2581 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 struct rpc_message msg = {
2583 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2584 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002585 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 };
2587 int status;
2588
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002589 nfs_fattr_init(res.fattr);
2590 nfs_fattr_init(res.dir_attr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002591 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002592 if (!status) {
2593 update_changeattr(dir, &res.cinfo);
2594 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002595 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
2598 return status;
2599}
2600
2601static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2602{
2603 struct nfs4_exception exception = { };
2604 int err;
2605 do {
2606 err = nfs4_handle_exception(NFS_SERVER(inode),
2607 _nfs4_proc_link(inode, dir, name),
2608 &exception);
2609 } while (exception.retry);
2610 return err;
2611}
2612
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002613struct nfs4_createdata {
2614 struct rpc_message msg;
2615 struct nfs4_create_arg arg;
2616 struct nfs4_create_res res;
2617 struct nfs_fh fh;
2618 struct nfs_fattr fattr;
2619 struct nfs_fattr dir_fattr;
2620};
2621
2622static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2623 struct qstr *name, struct iattr *sattr, u32 ftype)
2624{
2625 struct nfs4_createdata *data;
2626
2627 data = kzalloc(sizeof(*data), GFP_KERNEL);
2628 if (data != NULL) {
2629 struct nfs_server *server = NFS_SERVER(dir);
2630
2631 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2632 data->msg.rpc_argp = &data->arg;
2633 data->msg.rpc_resp = &data->res;
2634 data->arg.dir_fh = NFS_FH(dir);
2635 data->arg.server = server;
2636 data->arg.name = name;
2637 data->arg.attrs = sattr;
2638 data->arg.ftype = ftype;
2639 data->arg.bitmask = server->attr_bitmask;
2640 data->res.server = server;
2641 data->res.fh = &data->fh;
2642 data->res.fattr = &data->fattr;
2643 data->res.dir_fattr = &data->dir_fattr;
2644 nfs_fattr_init(data->res.fattr);
2645 nfs_fattr_init(data->res.dir_fattr);
2646 }
2647 return data;
2648}
2649
2650static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2651{
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002652 int status = nfs4_call_sync(NFS_SERVER(dir), &data->msg,
2653 &data->arg, &data->res, 1);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002654 if (status == 0) {
2655 update_changeattr(dir, &data->res.dir_cinfo);
2656 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2657 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2658 }
2659 return status;
2660}
2661
2662static void nfs4_free_createdata(struct nfs4_createdata *data)
2663{
2664 kfree(data);
2665}
2666
Chuck Lever4f390c12006-08-22 20:06:22 -04002667static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002668 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002670 struct nfs4_createdata *data;
2671 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
Chuck Lever94a6d752006-08-22 20:06:23 -04002673 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002674 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04002675
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002676 status = -ENOMEM;
2677 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2678 if (data == NULL)
2679 goto out;
2680
2681 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2682 data->arg.u.symlink.pages = &page;
2683 data->arg.u.symlink.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002685 status = nfs4_do_create(dir, dentry, data);
2686
2687 nfs4_free_createdata(data);
2688out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 return status;
2690}
2691
Chuck Lever4f390c12006-08-22 20:06:22 -04002692static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002693 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694{
2695 struct nfs4_exception exception = { };
2696 int err;
2697 do {
2698 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002699 _nfs4_proc_symlink(dir, dentry, page,
2700 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 &exception);
2702 } while (exception.retry);
2703 return err;
2704}
2705
2706static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2707 struct iattr *sattr)
2708{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002709 struct nfs4_createdata *data;
2710 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002712 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2713 if (data == NULL)
2714 goto out;
2715
2716 status = nfs4_do_create(dir, dentry, data);
2717
2718 nfs4_free_createdata(data);
2719out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 return status;
2721}
2722
2723static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2724 struct iattr *sattr)
2725{
2726 struct nfs4_exception exception = { };
2727 int err;
2728 do {
2729 err = nfs4_handle_exception(NFS_SERVER(dir),
2730 _nfs4_proc_mkdir(dir, dentry, sattr),
2731 &exception);
2732 } while (exception.retry);
2733 return err;
2734}
2735
2736static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2737 u64 cookie, struct page *page, unsigned int count, int plus)
2738{
2739 struct inode *dir = dentry->d_inode;
2740 struct nfs4_readdir_arg args = {
2741 .fh = NFS_FH(dir),
2742 .pages = &page,
2743 .pgbase = 0,
2744 .count = count,
Trond Myklebusta65318b2009-03-11 14:10:28 -04002745 .bitmask = NFS_SERVER(dentry->d_inode)->cache_consistency_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 };
2747 struct nfs4_readdir_res res;
2748 struct rpc_message msg = {
2749 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2750 .rpc_argp = &args,
2751 .rpc_resp = &res,
2752 .rpc_cred = cred,
2753 };
2754 int status;
2755
Harvey Harrison3110ff82008-05-02 13:42:44 -07002756 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00002757 dentry->d_parent->d_name.name,
2758 dentry->d_name.name,
2759 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2761 res.pgbase = args.pgbase;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002762 status = nfs4_call_sync(NFS_SERVER(dir), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 if (status == 0)
2764 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustc4812992007-09-28 17:11:45 -04002765
2766 nfs_invalidate_atime(dir);
2767
Harvey Harrison3110ff82008-05-02 13:42:44 -07002768 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 return status;
2770}
2771
2772static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2773 u64 cookie, struct page *page, unsigned int count, int plus)
2774{
2775 struct nfs4_exception exception = { };
2776 int err;
2777 do {
2778 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2779 _nfs4_proc_readdir(dentry, cred, cookie,
2780 page, count, plus),
2781 &exception);
2782 } while (exception.retry);
2783 return err;
2784}
2785
2786static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2787 struct iattr *sattr, dev_t rdev)
2788{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002789 struct nfs4_createdata *data;
2790 int mode = sattr->ia_mode;
2791 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
2793 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2794 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002795
2796 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
2797 if (data == NULL)
2798 goto out;
2799
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002801 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002803 data->arg.ftype = NF4BLK;
2804 data->arg.u.device.specdata1 = MAJOR(rdev);
2805 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 }
2807 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002808 data->arg.ftype = NF4CHR;
2809 data->arg.u.device.specdata1 = MAJOR(rdev);
2810 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002813 status = nfs4_do_create(dir, dentry, data);
2814
2815 nfs4_free_createdata(data);
2816out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 return status;
2818}
2819
2820static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2821 struct iattr *sattr, dev_t rdev)
2822{
2823 struct nfs4_exception exception = { };
2824 int err;
2825 do {
2826 err = nfs4_handle_exception(NFS_SERVER(dir),
2827 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2828 &exception);
2829 } while (exception.retry);
2830 return err;
2831}
2832
2833static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2834 struct nfs_fsstat *fsstat)
2835{
2836 struct nfs4_statfs_arg args = {
2837 .fh = fhandle,
2838 .bitmask = server->attr_bitmask,
2839 };
Benny Halevy24ad1482009-04-01 09:21:56 -04002840 struct nfs4_statfs_res res = {
2841 .fsstat = fsstat,
2842 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 struct rpc_message msg = {
2844 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2845 .rpc_argp = &args,
Benny Halevy24ad1482009-04-01 09:21:56 -04002846 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 };
2848
Trond Myklebust0e574af2005-10-27 22:12:38 -04002849 nfs_fattr_init(fsstat->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002850 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851}
2852
2853static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2854{
2855 struct nfs4_exception exception = { };
2856 int err;
2857 do {
2858 err = nfs4_handle_exception(server,
2859 _nfs4_proc_statfs(server, fhandle, fsstat),
2860 &exception);
2861 } while (exception.retry);
2862 return err;
2863}
2864
2865static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2866 struct nfs_fsinfo *fsinfo)
2867{
2868 struct nfs4_fsinfo_arg args = {
2869 .fh = fhandle,
2870 .bitmask = server->attr_bitmask,
2871 };
Benny Halevy3dda5e42009-04-01 09:21:57 -04002872 struct nfs4_fsinfo_res res = {
2873 .fsinfo = fsinfo,
2874 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 struct rpc_message msg = {
2876 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2877 .rpc_argp = &args,
Benny Halevy3dda5e42009-04-01 09:21:57 -04002878 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 };
2880
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002881 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882}
2883
2884static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2885{
2886 struct nfs4_exception exception = { };
2887 int err;
2888
2889 do {
2890 err = nfs4_handle_exception(server,
2891 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2892 &exception);
2893 } while (exception.retry);
2894 return err;
2895}
2896
2897static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2898{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002899 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2901}
2902
2903static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2904 struct nfs_pathconf *pathconf)
2905{
2906 struct nfs4_pathconf_arg args = {
2907 .fh = fhandle,
2908 .bitmask = server->attr_bitmask,
2909 };
Benny Halevyd45b2982009-04-01 09:21:58 -04002910 struct nfs4_pathconf_res res = {
2911 .pathconf = pathconf,
2912 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 struct rpc_message msg = {
2914 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2915 .rpc_argp = &args,
Benny Halevyd45b2982009-04-01 09:21:58 -04002916 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 };
2918
2919 /* None of the pathconf attributes are mandatory to implement */
2920 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2921 memset(pathconf, 0, sizeof(*pathconf));
2922 return 0;
2923 }
2924
Trond Myklebust0e574af2005-10-27 22:12:38 -04002925 nfs_fattr_init(pathconf->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002926 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927}
2928
2929static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2930 struct nfs_pathconf *pathconf)
2931{
2932 struct nfs4_exception exception = { };
2933 int err;
2934
2935 do {
2936 err = nfs4_handle_exception(server,
2937 _nfs4_proc_pathconf(server, fhandle, pathconf),
2938 &exception);
2939 } while (exception.retry);
2940 return err;
2941}
2942
Trond Myklebustec06c092006-03-20 13:44:27 -05002943static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944{
Trond Myklebustec06c092006-03-20 13:44:27 -05002945 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Andy Adamsonf11c88a2009-04-01 09:22:25 -04002947 dprintk("--> %s\n", __func__);
2948
2949 /* nfs4_sequence_free_slot called in the read rpc_call_done */
2950 nfs4_sequence_done(server, &data->res.seq_res, task->tk_status);
2951
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002952 if (nfs4_async_handle_error(task, server, data->args.context->state) == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04002953 nfs4_restart_rpc(task, server->nfs_client);
Trond Myklebustec06c092006-03-20 13:44:27 -05002954 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 }
Trond Myklebust8850df92007-09-28 17:20:07 -04002956
2957 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002959 renew_lease(server, data->timestamp);
2960 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961}
2962
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002963static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 data->timestamp = jiffies;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002966 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967}
2968
Trond Myklebust788e7a82006-03-20 13:44:27 -05002969static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 struct inode *inode = data->inode;
2972
Andy Adamsondef6ed72009-04-01 09:22:26 -04002973 /* slot is freed in nfs_writeback_done */
2974 nfs4_sequence_done(NFS_SERVER(inode), &data->res.seq_res,
2975 task->tk_status);
2976
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002977 if (nfs4_async_handle_error(task, NFS_SERVER(inode), data->args.context->state) == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04002978 nfs4_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002979 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002981 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust70ca8852007-09-30 15:21:24 -04002983 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002984 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05002985 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986}
2987
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002988static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989{
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002990 struct nfs_server *server = NFS_SERVER(data->inode);
2991
Trond Myklebusta65318b2009-03-11 14:10:28 -04002992 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002993 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 data->timestamp = jiffies;
2995
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002996 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997}
2998
Trond Myklebust788e7a82006-03-20 13:44:27 -05002999static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 struct inode *inode = data->inode;
3002
Andy Adamson21d9a852009-04-01 09:22:27 -04003003 nfs4_sequence_done(NFS_SERVER(inode), &data->res.seq_res,
3004 task->tk_status);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003005 if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04003006 nfs4_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003007 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 }
Andy Adamson21d9a852009-04-01 09:22:27 -04003009 nfs4_sequence_free_slot(NFS_SERVER(inode)->nfs_client,
3010 &data->res.seq_res);
Trond Myklebust9e08a3c2007-10-08 14:10:31 -04003011 nfs_refresh_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003012 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013}
3014
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003015static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016{
Trond Myklebust788e7a82006-03-20 13:44:27 -05003017 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018
Trond Myklebusta65318b2009-03-11 14:10:28 -04003019 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003020 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003021 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022}
3023
3024/*
3025 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
3026 * standalone procedure for queueing an asynchronous RENEW.
3027 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003028static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029{
David Howellsadfa6f92006-08-22 20:06:08 -04003030 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003031 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
3033 if (task->tk_status < 0) {
Trond Myklebust95baa252009-05-26 14:51:00 -04003034 /* Unless we're shutting down, schedule state recovery! */
3035 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) != 0)
3036 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 return;
3038 }
3039 spin_lock(&clp->cl_lock);
3040 if (time_before(clp->cl_last_renewal,timestamp))
3041 clp->cl_last_renewal = timestamp;
3042 spin_unlock(&clp->cl_lock);
Benny Halevy29fba382009-04-01 09:22:44 -04003043 dprintk("%s calling put_rpccred on rpc_cred %p\n", __func__,
3044 task->tk_msg.rpc_cred);
3045 put_rpccred(task->tk_msg.rpc_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046}
3047
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003048static const struct rpc_call_ops nfs4_renew_ops = {
3049 .rpc_call_done = nfs4_renew_done,
3050};
3051
David Howellsadfa6f92006-08-22 20:06:08 -04003052int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053{
3054 struct rpc_message msg = {
3055 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3056 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003057 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 };
3059
3060 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003061 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062}
3063
David Howellsadfa6f92006-08-22 20:06:08 -04003064int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065{
3066 struct rpc_message msg = {
3067 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3068 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003069 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 };
3071 unsigned long now = jiffies;
3072 int status;
3073
3074 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3075 if (status < 0)
3076 return status;
3077 spin_lock(&clp->cl_lock);
3078 if (time_before(clp->cl_last_renewal,now))
3079 clp->cl_last_renewal = now;
3080 spin_unlock(&clp->cl_lock);
3081 return 0;
3082}
3083
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003084static inline int nfs4_server_supports_acls(struct nfs_server *server)
3085{
3086 return (server->caps & NFS_CAP_ACLS)
3087 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
3088 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
3089}
3090
3091/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
3092 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
3093 * the stack.
3094 */
3095#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
3096
3097static void buf_to_pages(const void *buf, size_t buflen,
3098 struct page **pages, unsigned int *pgbase)
3099{
3100 const void *p = buf;
3101
3102 *pgbase = offset_in_page(buf);
3103 p -= *pgbase;
3104 while (p < buf + buflen) {
3105 *(pages++) = virt_to_page(p);
3106 p += PAGE_CACHE_SIZE;
3107 }
3108}
3109
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003110struct nfs4_cached_acl {
3111 int cached;
3112 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00003113 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003114};
3115
3116static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003117{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003118 struct nfs_inode *nfsi = NFS_I(inode);
3119
3120 spin_lock(&inode->i_lock);
3121 kfree(nfsi->nfs4_acl);
3122 nfsi->nfs4_acl = acl;
3123 spin_unlock(&inode->i_lock);
3124}
3125
3126static void nfs4_zap_acl_attr(struct inode *inode)
3127{
3128 nfs4_set_cached_acl(inode, NULL);
3129}
3130
3131static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
3132{
3133 struct nfs_inode *nfsi = NFS_I(inode);
3134 struct nfs4_cached_acl *acl;
3135 int ret = -ENOENT;
3136
3137 spin_lock(&inode->i_lock);
3138 acl = nfsi->nfs4_acl;
3139 if (acl == NULL)
3140 goto out;
3141 if (buf == NULL) /* user is just asking for length */
3142 goto out_len;
3143 if (acl->cached == 0)
3144 goto out;
3145 ret = -ERANGE; /* see getxattr(2) man page */
3146 if (acl->len > buflen)
3147 goto out;
3148 memcpy(buf, acl->data, acl->len);
3149out_len:
3150 ret = acl->len;
3151out:
3152 spin_unlock(&inode->i_lock);
3153 return ret;
3154}
3155
3156static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
3157{
3158 struct nfs4_cached_acl *acl;
3159
3160 if (buf && acl_len <= PAGE_SIZE) {
3161 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
3162 if (acl == NULL)
3163 goto out;
3164 acl->cached = 1;
3165 memcpy(acl->data, buf, acl_len);
3166 } else {
3167 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
3168 if (acl == NULL)
3169 goto out;
3170 acl->cached = 0;
3171 }
3172 acl->len = acl_len;
3173out:
3174 nfs4_set_cached_acl(inode, acl);
3175}
3176
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003177static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003178{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003179 struct page *pages[NFS4ACL_MAXPAGES];
3180 struct nfs_getaclargs args = {
3181 .fh = NFS_FH(inode),
3182 .acl_pages = pages,
3183 .acl_len = buflen,
3184 };
Benny Halevy663c79b2009-04-01 09:21:59 -04003185 struct nfs_getaclres res = {
3186 .acl_len = buflen,
3187 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003188 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003189 struct rpc_message msg = {
3190 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
3191 .rpc_argp = &args,
Benny Halevy663c79b2009-04-01 09:21:59 -04003192 .rpc_resp = &res,
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003193 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003194 struct page *localpage = NULL;
3195 int ret;
3196
3197 if (buflen < PAGE_SIZE) {
3198 /* As long as we're doing a round trip to the server anyway,
3199 * let's be prepared for a page of acl data. */
3200 localpage = alloc_page(GFP_KERNEL);
3201 resp_buf = page_address(localpage);
3202 if (localpage == NULL)
3203 return -ENOMEM;
3204 args.acl_pages[0] = localpage;
3205 args.acl_pgbase = 0;
Benny Halevy663c79b2009-04-01 09:21:59 -04003206 args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003207 } else {
3208 resp_buf = buf;
3209 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
3210 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003211 ret = nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003212 if (ret)
3213 goto out_free;
Benny Halevy663c79b2009-04-01 09:21:59 -04003214 if (res.acl_len > args.acl_len)
3215 nfs4_write_cached_acl(inode, NULL, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003216 else
Benny Halevy663c79b2009-04-01 09:21:59 -04003217 nfs4_write_cached_acl(inode, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003218 if (buf) {
3219 ret = -ERANGE;
Benny Halevy663c79b2009-04-01 09:21:59 -04003220 if (res.acl_len > buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003221 goto out_free;
3222 if (localpage)
Benny Halevy663c79b2009-04-01 09:21:59 -04003223 memcpy(buf, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003224 }
Benny Halevy663c79b2009-04-01 09:21:59 -04003225 ret = res.acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003226out_free:
3227 if (localpage)
3228 __free_page(localpage);
3229 return ret;
3230}
3231
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003232static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
3233{
3234 struct nfs4_exception exception = { };
3235 ssize_t ret;
3236 do {
3237 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
3238 if (ret >= 0)
3239 break;
3240 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
3241 } while (exception.retry);
3242 return ret;
3243}
3244
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003245static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
3246{
3247 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003248 int ret;
3249
3250 if (!nfs4_server_supports_acls(server))
3251 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003252 ret = nfs_revalidate_inode(server, inode);
3253 if (ret < 0)
3254 return ret;
3255 ret = nfs4_read_cached_acl(inode, buf, buflen);
3256 if (ret != -ENOENT)
3257 return ret;
3258 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003259}
3260
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003261static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003262{
3263 struct nfs_server *server = NFS_SERVER(inode);
3264 struct page *pages[NFS4ACL_MAXPAGES];
3265 struct nfs_setaclargs arg = {
3266 .fh = NFS_FH(inode),
3267 .acl_pages = pages,
3268 .acl_len = buflen,
3269 };
Benny Halevy73c403a2009-04-01 09:22:01 -04003270 struct nfs_setaclres res;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003271 struct rpc_message msg = {
3272 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
3273 .rpc_argp = &arg,
Benny Halevy73c403a2009-04-01 09:22:01 -04003274 .rpc_resp = &res,
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003275 };
3276 int ret;
3277
3278 if (!nfs4_server_supports_acls(server))
3279 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07003280 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003281 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003282 ret = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebustf41f7412008-06-11 17:39:04 -04003283 nfs_access_zap_cache(inode);
3284 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003285 return ret;
3286}
3287
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003288static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
3289{
3290 struct nfs4_exception exception = { };
3291 int err;
3292 do {
3293 err = nfs4_handle_exception(NFS_SERVER(inode),
3294 __nfs4_proc_set_acl(inode, buf, buflen),
3295 &exception);
3296 } while (exception.retry);
3297 return err;
3298}
3299
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300static int
Andy Adamson8328d592009-04-01 09:22:35 -04003301_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 -07003302{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 if (!clp || task->tk_status >= 0)
3304 return 0;
3305 switch(task->tk_status) {
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003306 case -NFS4ERR_ADMIN_REVOKED:
3307 case -NFS4ERR_BAD_STATEID:
3308 case -NFS4ERR_OPENMODE:
3309 if (state == NULL)
3310 break;
3311 nfs4_state_mark_reclaim_nograce(clp, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 case -NFS4ERR_STALE_CLIENTID:
3313 case -NFS4ERR_STALE_STATEID:
3314 case -NFS4ERR_EXPIRED:
Trond Myklebust5d008372008-02-22 16:34:17 -05003315 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 nfs4_schedule_state_recovery(clp);
Trond Myklebuste005e802008-12-23 15:21:48 -05003317 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
Trond Myklebustfda13932008-02-22 16:34:12 -05003318 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 task->tk_status = 0;
3320 return -EAGAIN;
Andy Adamson4745e312009-04-01 09:22:42 -04003321#if defined(CONFIG_NFS_V4_1)
3322 case -NFS4ERR_BADSESSION:
3323 case -NFS4ERR_BADSLOT:
3324 case -NFS4ERR_BAD_HIGH_SLOT:
3325 case -NFS4ERR_DEADSESSION:
3326 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
3327 case -NFS4ERR_SEQ_FALSE_RETRY:
3328 case -NFS4ERR_SEQ_MISORDERED:
3329 dprintk("%s ERROR %d, Reset session\n", __func__,
3330 task->tk_status);
3331 set_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state);
3332 task->tk_status = 0;
3333 return -EAGAIN;
3334#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 case -NFS4ERR_DELAY:
Andy Adamson8328d592009-04-01 09:22:35 -04003336 if (server)
3337 nfs_inc_server_stats(server, NFSIOS_DELAY);
Chuck Lever006ea732006-03-20 13:44:14 -05003338 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 rpc_delay(task, NFS4_POLL_RETRY_MAX);
3340 task->tk_status = 0;
3341 return -EAGAIN;
3342 case -NFS4ERR_OLD_STATEID:
3343 task->tk_status = 0;
3344 return -EAGAIN;
3345 }
3346 task->tk_status = nfs4_map_errors(task->tk_status);
3347 return 0;
3348}
3349
Andy Adamson8328d592009-04-01 09:22:35 -04003350static int
3351nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, struct nfs4_state *state)
3352{
3353 return _nfs4_async_handle_error(task, server, server->nfs_client, state);
3354}
3355
David Howellsadfa6f92006-08-22 20:06:08 -04003356int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357{
3358 nfs4_verifier sc_verifier;
3359 struct nfs4_setclientid setclientid = {
3360 .sc_verifier = &sc_verifier,
3361 .sc_prog = program,
3362 };
3363 struct rpc_message msg = {
3364 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
3365 .rpc_argp = &setclientid,
3366 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003367 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 };
Al Virobc4785c2006-10-19 23:28:51 -07003369 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 int loop = 0;
3371 int status;
3372
Al Virobc4785c2006-10-19 23:28:51 -07003373 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
3375 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
3376
3377 for(;;) {
3378 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05003379 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05003380 clp->cl_ipaddr,
3381 rpc_peeraddr2str(clp->cl_rpcclient,
3382 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05003383 rpc_peeraddr2str(clp->cl_rpcclient,
3384 RPC_DISPLAY_PROTO),
Trond Myklebust78ea3232008-04-07 20:49:28 -04003385 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 clp->cl_id_uniquifier);
3387 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003388 sizeof(setclientid.sc_netid),
3389 rpc_peeraddr2str(clp->cl_rpcclient,
3390 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003392 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 clp->cl_ipaddr, port >> 8, port & 255);
3394
3395 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3396 if (status != -NFS4ERR_CLID_INUSE)
3397 break;
3398 if (signalled())
3399 break;
3400 if (loop++ & 1)
3401 ssleep(clp->cl_lease_time + 1);
3402 else
3403 if (++clp->cl_id_uniquifier == 0)
3404 break;
3405 }
3406 return status;
3407}
3408
David Howellsadfa6f92006-08-22 20:06:08 -04003409static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410{
3411 struct nfs_fsinfo fsinfo;
3412 struct rpc_message msg = {
3413 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
3414 .rpc_argp = clp,
3415 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003416 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 };
3418 unsigned long now;
3419 int status;
3420
3421 now = jiffies;
3422 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3423 if (status == 0) {
3424 spin_lock(&clp->cl_lock);
3425 clp->cl_lease_time = fsinfo.lease_time * HZ;
3426 clp->cl_last_renewal = now;
3427 spin_unlock(&clp->cl_lock);
3428 }
3429 return status;
3430}
3431
David Howellsadfa6f92006-08-22 20:06:08 -04003432int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05003433{
Benny Halevy77e03672008-06-24 20:25:57 +03003434 long timeout = 0;
Trond Myklebust51581f32006-03-20 13:44:47 -05003435 int err;
3436 do {
3437 err = _nfs4_proc_setclientid_confirm(clp, cred);
3438 switch (err) {
3439 case 0:
3440 return err;
3441 case -NFS4ERR_RESOURCE:
3442 /* The IBM lawyers misread another document! */
3443 case -NFS4ERR_DELAY:
3444 err = nfs4_delay(clp->cl_rpcclient, &timeout);
3445 }
3446 } while (err == 0);
3447 return err;
3448}
3449
Trond Myklebustfe650402006-01-03 09:55:18 +01003450struct nfs4_delegreturndata {
3451 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003452 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01003453 struct nfs_fh fh;
3454 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003455 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003456 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01003457 int rpc_status;
3458};
3459
Trond Myklebustfe650402006-01-03 09:55:18 +01003460static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
3461{
3462 struct nfs4_delegreturndata *data = calldata;
Andy Adamson938e1012009-04-01 09:22:28 -04003463
3464 nfs4_sequence_done_free_slot(data->res.server, &data->res.seq_res,
3465 task->tk_status);
3466
Trond Myklebustfe650402006-01-03 09:55:18 +01003467 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003468 if (data->rpc_status == 0)
Trond Myklebustfa178f22006-01-03 09:55:38 +01003469 renew_lease(data->res.server, data->timestamp);
Trond Myklebustfe650402006-01-03 09:55:18 +01003470}
3471
3472static void nfs4_delegreturn_release(void *calldata)
3473{
Trond Myklebustfe650402006-01-03 09:55:18 +01003474 kfree(calldata);
3475}
3476
Andy Adamson938e1012009-04-01 09:22:28 -04003477#if defined(CONFIG_NFS_V4_1)
3478static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
3479{
3480 struct nfs4_delegreturndata *d_data;
3481
3482 d_data = (struct nfs4_delegreturndata *)data;
3483
3484 if (nfs4_setup_sequence(d_data->res.server->nfs_client,
3485 &d_data->args.seq_args,
3486 &d_data->res.seq_res, 1, task))
3487 return;
3488 rpc_call_start(task);
3489}
3490#endif /* CONFIG_NFS_V4_1 */
3491
Jesper Juhlc8d149f2006-03-20 13:44:07 -05003492static const struct rpc_call_ops nfs4_delegreturn_ops = {
Andy Adamson938e1012009-04-01 09:22:28 -04003493#if defined(CONFIG_NFS_V4_1)
3494 .rpc_call_prepare = nfs4_delegreturn_prepare,
3495#endif /* CONFIG_NFS_V4_1 */
Trond Myklebustfe650402006-01-03 09:55:18 +01003496 .rpc_call_done = nfs4_delegreturn_done,
3497 .rpc_release = nfs4_delegreturn_release,
3498};
3499
Trond Myklebuste6f81072008-01-24 18:14:34 -05003500static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01003501{
3502 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003503 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01003504 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003505 struct rpc_message msg = {
3506 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
3507 .rpc_cred = cred,
3508 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003509 struct rpc_task_setup task_setup_data = {
3510 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04003511 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003512 .callback_ops = &nfs4_delegreturn_ops,
3513 .flags = RPC_TASK_ASYNC,
3514 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05003515 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01003516
Andy Adamson938e1012009-04-01 09:22:28 -04003517 data = kzalloc(sizeof(*data), GFP_KERNEL);
Trond Myklebustfe650402006-01-03 09:55:18 +01003518 if (data == NULL)
3519 return -ENOMEM;
3520 data->args.fhandle = &data->fh;
3521 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003522 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01003523 nfs_copy_fh(&data->fh, NFS_FH(inode));
3524 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01003525 data->res.fattr = &data->fattr;
3526 data->res.server = server;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003527 data->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003528 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003529 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01003530 data->rpc_status = 0;
3531
Trond Myklebustc970aa82007-07-14 15:39:59 -04003532 task_setup_data.callback_data = data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003533 msg.rpc_argp = &data->args,
3534 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003535 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003536 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003537 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003538 if (!issync)
3539 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01003540 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003541 if (status != 0)
3542 goto out;
3543 status = data->rpc_status;
3544 if (status != 0)
3545 goto out;
3546 nfs_refresh_inode(inode, &data->fattr);
3547out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003548 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003549 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550}
3551
Trond Myklebuste6f81072008-01-24 18:14:34 -05003552int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553{
3554 struct nfs_server *server = NFS_SERVER(inode);
3555 struct nfs4_exception exception = { };
3556 int err;
3557 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05003558 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 switch (err) {
3560 case -NFS4ERR_STALE_STATEID:
3561 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 case 0:
3563 return 0;
3564 }
3565 err = nfs4_handle_exception(server, err, &exception);
3566 } while (exception.retry);
3567 return err;
3568}
3569
3570#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3571#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3572
3573/*
3574 * sleep, with exponential backoff, and retry the LOCK operation.
3575 */
3576static unsigned long
3577nfs4_set_lock_task_retry(unsigned long timeout)
3578{
Matthew Wilcox150030b2007-12-06 16:24:39 -05003579 schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 timeout <<= 1;
3581 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3582 return NFS4_LOCK_MAXTIMEOUT;
3583 return timeout;
3584}
3585
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3587{
3588 struct inode *inode = state->inode;
3589 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003590 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003591 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003593 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003595 struct nfs_lockt_res res = {
3596 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 };
3598 struct rpc_message msg = {
3599 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3600 .rpc_argp = &arg,
3601 .rpc_resp = &res,
3602 .rpc_cred = state->owner->so_cred,
3603 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 struct nfs4_lock_state *lsp;
3605 int status;
3606
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003607 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003608 status = nfs4_set_lock_state(state, request);
3609 if (status != 0)
3610 goto out;
3611 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003612 arg.lock_owner.id = lsp->ls_id.id;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003613 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003614 switch (status) {
3615 case 0:
3616 request->fl_type = F_UNLCK;
3617 break;
3618 case -NFS4ERR_DENIED:
3619 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003621 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003622out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 return status;
3624}
3625
3626static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3627{
3628 struct nfs4_exception exception = { };
3629 int err;
3630
3631 do {
3632 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3633 _nfs4_proc_getlk(state, cmd, request),
3634 &exception);
3635 } while (exception.retry);
3636 return err;
3637}
3638
3639static int do_vfs_lock(struct file *file, struct file_lock *fl)
3640{
3641 int res = 0;
3642 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3643 case FL_POSIX:
3644 res = posix_lock_file_wait(file, fl);
3645 break;
3646 case FL_FLOCK:
3647 res = flock_lock_file_wait(file, fl);
3648 break;
3649 default:
3650 BUG();
3651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 return res;
3653}
3654
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003655struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003656 struct nfs_locku_args arg;
3657 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003658 struct nfs4_lock_state *lsp;
3659 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003660 struct file_lock fl;
3661 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003662 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003663};
3664
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003665static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3666 struct nfs_open_context *ctx,
3667 struct nfs4_lock_state *lsp,
3668 struct nfs_seqid *seqid)
3669{
3670 struct nfs4_unlockdata *p;
3671 struct inode *inode = lsp->ls_state->inode;
3672
Andy Adamsona8936932009-04-01 09:22:23 -04003673 p = kzalloc(sizeof(*p), GFP_KERNEL);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003674 if (p == NULL)
3675 return NULL;
3676 p->arg.fh = NFS_FH(inode);
3677 p->arg.fl = &p->fl;
3678 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003679 p->res.seqid = seqid;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003680 p->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003681 p->arg.stateid = &lsp->ls_stateid;
3682 p->lsp = lsp;
3683 atomic_inc(&lsp->ls_count);
3684 /* Ensure we don't close file until we're done freeing locks! */
3685 p->ctx = get_nfs_open_context(ctx);
3686 memcpy(&p->fl, fl, sizeof(p->fl));
3687 p->server = NFS_SERVER(inode);
3688 return p;
3689}
3690
Trond Myklebust06f814a2006-01-03 09:55:07 +01003691static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003692{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003693 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003694 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003695 nfs4_put_lock_state(calldata->lsp);
3696 put_nfs_open_context(calldata->ctx);
3697 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003698}
3699
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003700static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003701{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003702 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003703
Andy Adamsona8936932009-04-01 09:22:23 -04003704 nfs4_sequence_done(calldata->server, &calldata->res.seq_res,
3705 task->tk_status);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003706 if (RPC_ASSASSINATED(task))
3707 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003708 switch (task->tk_status) {
3709 case 0:
3710 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003711 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003712 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003713 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003714 break;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003715 case -NFS4ERR_BAD_STATEID:
3716 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003717 case -NFS4ERR_STALE_STATEID:
3718 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003719 break;
3720 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003721 if (nfs4_async_handle_error(task, calldata->server, NULL) == -EAGAIN)
Andy Adamsoneedc0202009-04-01 09:22:41 -04003722 nfs4_restart_rpc(task,
3723 calldata->server->nfs_client);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003724 }
Andy Adamsona8936932009-04-01 09:22:23 -04003725 nfs4_sequence_free_slot(calldata->server->nfs_client,
3726 &calldata->res.seq_res);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003727}
3728
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003729static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003730{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003731 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003733 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003734 return;
3735 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003736 /* Note: exit _without_ running nfs4_locku_done */
3737 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003738 return;
3739 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003740 calldata->timestamp = jiffies;
Andy Adamsona8936932009-04-01 09:22:23 -04003741 if (nfs4_setup_sequence(calldata->server->nfs_client,
3742 &calldata->arg.seq_args,
3743 &calldata->res.seq_res, 1, task))
3744 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003745 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746}
3747
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003748static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003749 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003750 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003751 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003752};
3753
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003754static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3755 struct nfs_open_context *ctx,
3756 struct nfs4_lock_state *lsp,
3757 struct nfs_seqid *seqid)
3758{
3759 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003760 struct rpc_message msg = {
3761 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3762 .rpc_cred = ctx->cred,
3763 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003764 struct rpc_task_setup task_setup_data = {
3765 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003766 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003767 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003768 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003769 .flags = RPC_TASK_ASYNC,
3770 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003771
Frank Filz137d6ac2007-07-09 15:32:29 -07003772 /* Ensure this is an unlock - when canceling a lock, the
3773 * canceled lock is passed in, and it won't be an unlock.
3774 */
3775 fl->fl_type = F_UNLCK;
3776
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003777 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3778 if (data == NULL) {
3779 nfs_free_seqid(seqid);
3780 return ERR_PTR(-ENOMEM);
3781 }
3782
Trond Myklebust5138fde2007-07-14 15:40:01 -04003783 msg.rpc_argp = &data->arg,
3784 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003785 task_setup_data.callback_data = data;
3786 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003787}
3788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3790{
Trond Myklebust19e03c52008-12-23 15:21:44 -05003791 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003792 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003793 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003794 struct rpc_task *task;
3795 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003796 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797
Trond Myklebust9b073572006-06-29 16:38:34 -04003798 status = nfs4_set_lock_state(state, request);
3799 /* Unlock _before_ we do the RPC call */
3800 request->fl_flags |= FL_EXISTS;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003801 down_read(&nfsi->rwsem);
3802 if (do_vfs_lock(request->fl_file, request) == -ENOENT) {
3803 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003804 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003805 }
3806 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003807 if (status != 0)
3808 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003809 /* Is this a delegated lock? */
3810 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003811 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003812 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003813 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003814 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003815 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003816 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003817 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003818 status = PTR_ERR(task);
3819 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003820 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003821 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003822 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003823out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003824 request->fl_flags = fl_flags;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003825 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826}
3827
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003828struct nfs4_lockdata {
3829 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003830 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003831 struct nfs4_lock_state *lsp;
3832 struct nfs_open_context *ctx;
3833 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003834 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003835 int rpc_status;
3836 int cancelled;
Andy Adamson66179ef2009-04-01 09:22:22 -04003837 struct nfs_server *server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003838};
3839
3840static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3841 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3842{
3843 struct nfs4_lockdata *p;
3844 struct inode *inode = lsp->ls_state->inode;
3845 struct nfs_server *server = NFS_SERVER(inode);
3846
3847 p = kzalloc(sizeof(*p), GFP_KERNEL);
3848 if (p == NULL)
3849 return NULL;
3850
3851 p->arg.fh = NFS_FH(inode);
3852 p->arg.fl = &p->fl;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003853 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid);
3854 if (p->arg.open_seqid == NULL)
3855 goto out_free;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003856 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3857 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003858 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003859 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003860 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003861 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003862 p->res.lock_seqid = p->arg.lock_seqid;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003863 p->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003864 p->lsp = lsp;
Andy Adamson66179ef2009-04-01 09:22:22 -04003865 p->server = server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003866 atomic_inc(&lsp->ls_count);
3867 p->ctx = get_nfs_open_context(ctx);
3868 memcpy(&p->fl, fl, sizeof(p->fl));
3869 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003870out_free_seqid:
3871 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003872out_free:
3873 kfree(p);
3874 return NULL;
3875}
3876
3877static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3878{
3879 struct nfs4_lockdata *data = calldata;
3880 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
Harvey Harrison3110ff82008-05-02 13:42:44 -07003882 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003883 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3884 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003885 /* Do we need to do an open_to_lock_owner? */
3886 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05003887 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
3888 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003889 data->arg.open_stateid = &state->stateid;
3890 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003891 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003892 } else
3893 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003894 data->timestamp = jiffies;
Andy Adamson66179ef2009-04-01 09:22:22 -04003895 if (nfs4_setup_sequence(data->server->nfs_client, &data->arg.seq_args,
3896 &data->res.seq_res, 1, task))
3897 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003898 rpc_call_start(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003899 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003900}
3901
3902static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3903{
3904 struct nfs4_lockdata *data = calldata;
3905
Harvey Harrison3110ff82008-05-02 13:42:44 -07003906 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003907
Andy Adamson66179ef2009-04-01 09:22:22 -04003908 nfs4_sequence_done_free_slot(data->server, &data->res.seq_res,
3909 task->tk_status);
3910
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003911 data->rpc_status = task->tk_status;
3912 if (RPC_ASSASSINATED(task))
3913 goto out;
3914 if (data->arg.new_lock_owner != 0) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003915 if (data->rpc_status == 0)
3916 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3917 else
3918 goto out;
3919 }
3920 if (data->rpc_status == 0) {
3921 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3922 sizeof(data->lsp->ls_stateid.data));
3923 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04003924 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003925 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003926out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003927 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003928}
3929
3930static void nfs4_lock_release(void *calldata)
3931{
3932 struct nfs4_lockdata *data = calldata;
3933
Harvey Harrison3110ff82008-05-02 13:42:44 -07003934 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003935 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003936 if (data->cancelled != 0) {
3937 struct rpc_task *task;
3938 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3939 data->arg.lock_seqid);
3940 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003941 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003942 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003943 } else
3944 nfs_free_seqid(data->arg.lock_seqid);
3945 nfs4_put_lock_state(data->lsp);
3946 put_nfs_open_context(data->ctx);
3947 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003948 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003949}
3950
3951static const struct rpc_call_ops nfs4_lock_ops = {
3952 .rpc_call_prepare = nfs4_lock_prepare,
3953 .rpc_call_done = nfs4_lock_done,
3954 .rpc_release = nfs4_lock_release,
3955};
3956
3957static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3958{
3959 struct nfs4_lockdata *data;
3960 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003961 struct rpc_message msg = {
3962 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3963 .rpc_cred = state->owner->so_cred,
3964 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003965 struct rpc_task_setup task_setup_data = {
3966 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003967 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003968 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003969 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003970 .flags = RPC_TASK_ASYNC,
3971 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003972 int ret;
3973
Harvey Harrison3110ff82008-05-02 13:42:44 -07003974 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003975 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003976 fl->fl_u.nfs4_fl.owner);
3977 if (data == NULL)
3978 return -ENOMEM;
3979 if (IS_SETLKW(cmd))
3980 data->arg.block = 1;
3981 if (reclaim != 0)
3982 data->arg.reclaim = 1;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003983 msg.rpc_argp = &data->arg,
3984 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003985 task_setup_data.callback_data = data;
3986 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003987 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003988 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003989 ret = nfs4_wait_for_completion_rpc_task(task);
3990 if (ret == 0) {
3991 ret = data->rpc_status;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003992 } else
3993 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003994 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003995 dprintk("%s: done, ret = %d!\n", __func__, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003996 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997}
3998
3999static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
4000{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004001 struct nfs_server *server = NFS_SERVER(state->inode);
4002 struct nfs4_exception exception = { };
4003 int err;
4004
4005 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004006 /* Cache the lock if possible... */
4007 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4008 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004009 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
4010 if (err != -NFS4ERR_DELAY)
4011 break;
4012 nfs4_handle_exception(server, err, &exception);
4013 } while (exception.retry);
4014 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015}
4016
4017static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
4018{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004019 struct nfs_server *server = NFS_SERVER(state->inode);
4020 struct nfs4_exception exception = { };
4021 int err;
4022
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004023 err = nfs4_set_lock_state(state, request);
4024 if (err != 0)
4025 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004026 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004027 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4028 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004029 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
4030 if (err != -NFS4ERR_DELAY)
4031 break;
4032 nfs4_handle_exception(server, err, &exception);
4033 } while (exception.retry);
4034 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035}
4036
4037static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4038{
Trond Myklebust19e03c52008-12-23 15:21:44 -05004039 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004040 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 int status;
4042
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004043 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004044 status = nfs4_set_lock_state(state, request);
4045 if (status != 0)
4046 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004047 request->fl_flags |= FL_ACCESS;
4048 status = do_vfs_lock(request->fl_file, request);
4049 if (status < 0)
4050 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05004051 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004052 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04004053 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004054 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05004055 request->fl_flags = fl_flags & ~FL_SLEEP;
4056 status = do_vfs_lock(request->fl_file, request);
4057 goto out_unlock;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004058 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004059 status = _nfs4_do_setlk(state, cmd, request, 0);
4060 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04004061 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004062 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004063 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004064 if (do_vfs_lock(request->fl_file, request) < 0)
Harvey Harrison3110ff82008-05-02 13:42:44 -07004065 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004066out_unlock:
Trond Myklebust19e03c52008-12-23 15:21:44 -05004067 up_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004068out:
4069 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 return status;
4071}
4072
4073static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4074{
4075 struct nfs4_exception exception = { };
4076 int err;
4077
4078 do {
Trond Myklebust965b5d62009-06-17 13:22:59 -07004079 err = _nfs4_proc_setlk(state, cmd, request);
4080 if (err == -NFS4ERR_DENIED)
4081 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 err = nfs4_handle_exception(NFS_SERVER(state->inode),
Trond Myklebust965b5d62009-06-17 13:22:59 -07004083 err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 } while (exception.retry);
4085 return err;
4086}
4087
4088static int
4089nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
4090{
4091 struct nfs_open_context *ctx;
4092 struct nfs4_state *state;
4093 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
4094 int status;
4095
4096 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004097 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 state = ctx->state;
4099
4100 if (request->fl_start < 0 || request->fl_end < 0)
4101 return -EINVAL;
4102
4103 if (IS_GETLK(cmd))
4104 return nfs4_proc_getlk(state, F_GETLK, request);
4105
4106 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
4107 return -EINVAL;
4108
4109 if (request->fl_type == F_UNLCK)
4110 return nfs4_proc_unlck(state, cmd, request);
4111
4112 do {
4113 status = nfs4_proc_setlk(state, cmd, request);
4114 if ((status != -EAGAIN) || IS_SETLK(cmd))
4115 break;
4116 timeout = nfs4_set_lock_task_retry(timeout);
4117 status = -ERESTARTSYS;
4118 if (signalled())
4119 break;
4120 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 return status;
4122}
4123
Trond Myklebust888e6942005-11-04 15:38:11 -05004124int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
4125{
4126 struct nfs_server *server = NFS_SERVER(state->inode);
4127 struct nfs4_exception exception = { };
4128 int err;
4129
4130 err = nfs4_set_lock_state(state, fl);
4131 if (err != 0)
4132 goto out;
4133 do {
4134 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
Trond Myklebustd5122202009-06-17 13:22:58 -07004135 switch (err) {
4136 default:
4137 printk(KERN_ERR "%s: unhandled error %d.\n",
4138 __func__, err);
4139 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004140 case -ESTALE:
Trond Myklebustd5122202009-06-17 13:22:58 -07004141 goto out;
4142 case -NFS4ERR_EXPIRED:
4143 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004144 case -NFS4ERR_STALE_STATEID:
Trond Myklebustd5122202009-06-17 13:22:58 -07004145 nfs4_schedule_state_recovery(server->nfs_client);
4146 goto out;
Trond Myklebust965b5d62009-06-17 13:22:59 -07004147 case -ERESTARTSYS:
4148 /*
4149 * The show must go on: exit, but mark the
4150 * stateid as needing recovery.
4151 */
4152 case -NFS4ERR_ADMIN_REVOKED:
4153 case -NFS4ERR_BAD_STATEID:
4154 case -NFS4ERR_OPENMODE:
4155 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
4156 err = 0;
4157 goto out;
4158 case -ENOMEM:
4159 case -NFS4ERR_DENIED:
4160 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
4161 err = 0;
4162 goto out;
Trond Myklebustd5122202009-06-17 13:22:58 -07004163 case -NFS4ERR_DELAY:
4164 break;
4165 }
Trond Myklebust888e6942005-11-04 15:38:11 -05004166 err = nfs4_handle_exception(server, err, &exception);
4167 } while (exception.retry);
4168out:
4169 return err;
4170}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004171
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004172#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
4173
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004174int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
4175 size_t buflen, int flags)
4176{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004177 struct inode *inode = dentry->d_inode;
4178
4179 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
4180 return -EOPNOTSUPP;
4181
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004182 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004183}
4184
4185/* The getxattr man page suggests returning -ENODATA for unknown attributes,
4186 * and that's what we'll do for e.g. user attributes that haven't been set.
4187 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
4188 * attributes in kernel-managed attribute namespaces. */
4189ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
4190 size_t buflen)
4191{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004192 struct inode *inode = dentry->d_inode;
4193
4194 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
4195 return -EOPNOTSUPP;
4196
4197 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004198}
4199
4200ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
4201{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004202 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004203
J. Bruce Fields096455a2006-03-20 23:23:42 -05004204 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
4205 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004206 if (buf && buflen < len)
4207 return -ERANGE;
4208 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004209 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
4210 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004211}
4212
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004213static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
4214{
4215 if (!((fattr->valid & NFS_ATTR_FATTR_FILEID) &&
4216 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
4217 (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)))
4218 return;
4219
4220 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
4221 NFS_ATTR_FATTR_NLINK;
4222 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
4223 fattr->nlink = 2;
4224}
4225
Trond Myklebust56659e92007-07-17 21:52:39 -04004226int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04004227 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004228{
4229 struct nfs_server *server = NFS_SERVER(dir);
4230 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04004231 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
4232 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004233 };
4234 struct nfs4_fs_locations_arg args = {
4235 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05004236 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004237 .page = page,
4238 .bitmask = bitmask,
4239 };
Benny Halevy22958462009-04-01 09:22:02 -04004240 struct nfs4_fs_locations_res res = {
4241 .fs_locations = fs_locations,
4242 };
Trond Myklebust683b57b2006-06-09 09:34:22 -04004243 struct rpc_message msg = {
4244 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
4245 .rpc_argp = &args,
Benny Halevy22958462009-04-01 09:22:02 -04004246 .rpc_resp = &res,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004247 };
4248 int status;
4249
Harvey Harrison3110ff82008-05-02 13:42:44 -07004250 dprintk("%s: start\n", __func__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05004251 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004252 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04004253 fs_locations->nlocations = 0;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04004254 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004255 nfs_fixup_referral_attributes(&fs_locations->fattr);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004256 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004257 return status;
4258}
4259
Andy Adamson557134a2009-04-01 09:21:53 -04004260#ifdef CONFIG_NFS_V4_1
Benny Halevy99fe60d2009-04-01 09:22:29 -04004261/*
4262 * nfs4_proc_exchange_id()
4263 *
4264 * Since the clientid has expired, all compounds using sessions
4265 * associated with the stale clientid will be returning
4266 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
4267 * be in some phase of session reset.
4268 */
4269static int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
4270{
4271 nfs4_verifier verifier;
4272 struct nfs41_exchange_id_args args = {
4273 .client = clp,
4274 .flags = clp->cl_exchange_flags,
4275 };
4276 struct nfs41_exchange_id_res res = {
4277 .client = clp,
4278 };
4279 int status;
4280 struct rpc_message msg = {
4281 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
4282 .rpc_argp = &args,
4283 .rpc_resp = &res,
4284 .rpc_cred = cred,
4285 };
4286 __be32 *p;
4287
4288 dprintk("--> %s\n", __func__);
4289 BUG_ON(clp == NULL);
Andy Adamsona7b72102009-04-01 09:22:46 -04004290
Benny Halevy99fe60d2009-04-01 09:22:29 -04004291 p = (u32 *)verifier.data;
4292 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
4293 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
4294 args.verifier = &verifier;
4295
4296 while (1) {
4297 args.id_len = scnprintf(args.id, sizeof(args.id),
4298 "%s/%s %u",
4299 clp->cl_ipaddr,
4300 rpc_peeraddr2str(clp->cl_rpcclient,
4301 RPC_DISPLAY_ADDR),
4302 clp->cl_id_uniquifier);
4303
4304 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
4305
4306 if (status != NFS4ERR_CLID_INUSE)
4307 break;
4308
4309 if (signalled())
4310 break;
4311
4312 if (++clp->cl_id_uniquifier == 0)
4313 break;
4314 }
4315
4316 dprintk("<-- %s status= %d\n", __func__, status);
4317 return status;
4318}
4319
Andy Adamson2050f0c2009-04-01 09:22:30 -04004320struct nfs4_get_lease_time_data {
4321 struct nfs4_get_lease_time_args *args;
4322 struct nfs4_get_lease_time_res *res;
4323 struct nfs_client *clp;
4324};
4325
4326static void nfs4_get_lease_time_prepare(struct rpc_task *task,
4327 void *calldata)
4328{
4329 int ret;
4330 struct nfs4_get_lease_time_data *data =
4331 (struct nfs4_get_lease_time_data *)calldata;
4332
4333 dprintk("--> %s\n", __func__);
4334 /* just setup sequence, do not trigger session recovery
4335 since we're invoked within one */
4336 ret = nfs41_setup_sequence(data->clp->cl_session,
4337 &data->args->la_seq_args,
4338 &data->res->lr_seq_res, 0, task);
4339
4340 BUG_ON(ret == -EAGAIN);
4341 rpc_call_start(task);
4342 dprintk("<-- %s\n", __func__);
4343}
4344
4345/*
4346 * Called from nfs4_state_manager thread for session setup, so don't recover
4347 * from sequence operation or clientid errors.
4348 */
4349static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
4350{
4351 struct nfs4_get_lease_time_data *data =
4352 (struct nfs4_get_lease_time_data *)calldata;
4353
4354 dprintk("--> %s\n", __func__);
4355 nfs41_sequence_done(data->clp, &data->res->lr_seq_res, task->tk_status);
4356 switch (task->tk_status) {
4357 case -NFS4ERR_DELAY:
4358 case -NFS4ERR_GRACE:
4359 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
4360 rpc_delay(task, NFS4_POLL_RETRY_MIN);
4361 task->tk_status = 0;
Andy Adamsoneedc0202009-04-01 09:22:41 -04004362 nfs4_restart_rpc(task, data->clp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004363 return;
4364 }
4365 nfs41_sequence_free_slot(data->clp, &data->res->lr_seq_res);
4366 dprintk("<-- %s\n", __func__);
4367}
4368
4369struct rpc_call_ops nfs4_get_lease_time_ops = {
4370 .rpc_call_prepare = nfs4_get_lease_time_prepare,
4371 .rpc_call_done = nfs4_get_lease_time_done,
4372};
4373
4374int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
4375{
4376 struct rpc_task *task;
4377 struct nfs4_get_lease_time_args args;
4378 struct nfs4_get_lease_time_res res = {
4379 .lr_fsinfo = fsinfo,
4380 };
4381 struct nfs4_get_lease_time_data data = {
4382 .args = &args,
4383 .res = &res,
4384 .clp = clp,
4385 };
4386 struct rpc_message msg = {
4387 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
4388 .rpc_argp = &args,
4389 .rpc_resp = &res,
4390 };
4391 struct rpc_task_setup task_setup = {
4392 .rpc_client = clp->cl_rpcclient,
4393 .rpc_message = &msg,
4394 .callback_ops = &nfs4_get_lease_time_ops,
4395 .callback_data = &data
4396 };
4397 int status;
4398
4399 res.lr_seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
4400 dprintk("--> %s\n", __func__);
4401 task = rpc_run_task(&task_setup);
4402
4403 if (IS_ERR(task))
4404 status = PTR_ERR(task);
4405 else {
4406 status = task->tk_status;
4407 rpc_put_task(task);
4408 }
4409 dprintk("<-- %s return %d\n", __func__, status);
4410
4411 return status;
4412}
4413
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004414/*
4415 * Reset a slot table
4416 */
4417static int nfs4_reset_slot_table(struct nfs4_slot_table *tbl, int max_slots,
4418 int old_max_slots, int ivalue)
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004419{
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004420 int i;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004421 int ret = 0;
4422
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004423 dprintk("--> %s: max_reqs=%u, tbl %p\n", __func__, max_slots, tbl);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004424
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004425 /*
4426 * Until we have dynamic slot table adjustment, insist
4427 * upon the same slot table size
4428 */
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004429 if (max_slots != old_max_slots) {
4430 dprintk("%s reset slot table does't match old\n",
4431 __func__);
4432 ret = -EINVAL; /*XXX NFS4ERR_REQ_TOO_BIG ? */
4433 goto out;
4434 }
4435 spin_lock(&tbl->slot_tbl_lock);
4436 for (i = 0; i < max_slots; ++i)
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004437 tbl->slots[i].seq_nr = ivalue;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004438 tbl->highest_used_slotid = -1;
4439 spin_unlock(&tbl->slot_tbl_lock);
4440 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4441 tbl, tbl->slots, tbl->max_slots);
4442out:
4443 dprintk("<-- %s: return %d\n", __func__, ret);
4444 return ret;
4445}
4446
Andy Adamsonfc931582009-04-01 09:22:31 -04004447/*
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004448 * Reset the forechannel and backchannel slot tables
4449 */
4450static int nfs4_reset_slot_tables(struct nfs4_session *session)
4451{
4452 int status;
4453
4454 status = nfs4_reset_slot_table(&session->fc_slot_table,
4455 session->fc_attrs.max_reqs,
4456 session->fc_slot_table.max_slots,
4457 1);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004458 if (status)
4459 return status;
4460
4461 status = nfs4_reset_slot_table(&session->bc_slot_table,
4462 session->bc_attrs.max_reqs,
4463 session->bc_slot_table.max_slots,
4464 0);
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004465 return status;
4466}
4467
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004468/* Destroy the slot table */
4469static void nfs4_destroy_slot_tables(struct nfs4_session *session)
4470{
4471 if (session->fc_slot_table.slots != NULL) {
4472 kfree(session->fc_slot_table.slots);
4473 session->fc_slot_table.slots = NULL;
4474 }
4475 if (session->bc_slot_table.slots != NULL) {
4476 kfree(session->bc_slot_table.slots);
4477 session->bc_slot_table.slots = NULL;
4478 }
4479 return;
4480}
4481
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004482/*
Andy Adamsonfc931582009-04-01 09:22:31 -04004483 * Initialize slot table
4484 */
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004485static int nfs4_init_slot_table(struct nfs4_slot_table *tbl,
4486 int max_slots, int ivalue)
Andy Adamsonfc931582009-04-01 09:22:31 -04004487{
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004488 int i;
Andy Adamsonfc931582009-04-01 09:22:31 -04004489 struct nfs4_slot *slot;
4490 int ret = -ENOMEM;
4491
4492 BUG_ON(max_slots > NFS4_MAX_SLOT_TABLE);
4493
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004494 dprintk("--> %s: max_reqs=%u\n", __func__, max_slots);
Andy Adamsonfc931582009-04-01 09:22:31 -04004495
4496 slot = kcalloc(max_slots, sizeof(struct nfs4_slot), GFP_KERNEL);
4497 if (!slot)
4498 goto out;
4499 for (i = 0; i < max_slots; ++i)
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004500 slot[i].seq_nr = ivalue;
Andy Adamsonfc931582009-04-01 09:22:31 -04004501 ret = 0;
4502
4503 spin_lock(&tbl->slot_tbl_lock);
4504 if (tbl->slots != NULL) {
4505 spin_unlock(&tbl->slot_tbl_lock);
4506 dprintk("%s: slot table already initialized. tbl=%p slots=%p\n",
4507 __func__, tbl, tbl->slots);
4508 WARN_ON(1);
4509 goto out_free;
4510 }
4511 tbl->max_slots = max_slots;
4512 tbl->slots = slot;
4513 tbl->highest_used_slotid = -1; /* no slot is currently used */
4514 spin_unlock(&tbl->slot_tbl_lock);
4515 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4516 tbl, tbl->slots, tbl->max_slots);
4517out:
4518 dprintk("<-- %s: return %d\n", __func__, ret);
4519 return ret;
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004520
Andy Adamsonfc931582009-04-01 09:22:31 -04004521out_free:
4522 kfree(slot);
4523 goto out;
4524}
4525
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004526/*
4527 * Initialize the forechannel and backchannel tables
4528 */
4529static int nfs4_init_slot_tables(struct nfs4_session *session)
4530{
4531 int status;
4532
4533 status = nfs4_init_slot_table(&session->fc_slot_table,
4534 session->fc_attrs.max_reqs, 1);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004535 if (status)
4536 return status;
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004537
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004538 status = nfs4_init_slot_table(&session->bc_slot_table,
4539 session->bc_attrs.max_reqs, 0);
4540 if (status)
4541 nfs4_destroy_slot_tables(session);
4542
4543 return status;
Andy Adamson557134a2009-04-01 09:21:53 -04004544}
4545
4546struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp)
4547{
4548 struct nfs4_session *session;
4549 struct nfs4_slot_table *tbl;
4550
4551 session = kzalloc(sizeof(struct nfs4_session), GFP_KERNEL);
4552 if (!session)
4553 return NULL;
Andy Adamson76db6d92009-04-01 09:22:38 -04004554
4555 set_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state);
4556 /*
4557 * The create session reply races with the server back
4558 * channel probe. Mark the client NFS_CS_SESSION_INITING
4559 * so that the client back channel can find the
4560 * nfs_client struct
4561 */
4562 clp->cl_cons_state = NFS_CS_SESSION_INITING;
4563
Andy Adamson557134a2009-04-01 09:21:53 -04004564 tbl = &session->fc_slot_table;
4565 spin_lock_init(&tbl->slot_tbl_lock);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004566 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "ForeChannel Slot table");
4567
4568 tbl = &session->bc_slot_table;
4569 spin_lock_init(&tbl->slot_tbl_lock);
4570 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "BackChannel Slot table");
4571
Andy Adamson557134a2009-04-01 09:21:53 -04004572 session->clp = clp;
4573 return session;
4574}
4575
4576void nfs4_destroy_session(struct nfs4_session *session)
4577{
Andy Adamson5a0ffe52009-04-01 09:23:18 -04004578 nfs4_proc_destroy_session(session);
4579 dprintk("%s Destroy backchannel for xprt %p\n",
4580 __func__, session->clp->cl_rpcclient->cl_xprt);
4581 xprt_destroy_backchannel(session->clp->cl_rpcclient->cl_xprt,
4582 NFS41_BC_MIN_CALLBACKS);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004583 nfs4_destroy_slot_tables(session);
Andy Adamson557134a2009-04-01 09:21:53 -04004584 kfree(session);
4585}
4586
Andy Adamsonfc931582009-04-01 09:22:31 -04004587/*
4588 * Initialize the values to be used by the client in CREATE_SESSION
4589 * If nfs4_init_session set the fore channel request and response sizes,
4590 * use them.
4591 *
4592 * Set the back channel max_resp_sz_cached to zero to force the client to
4593 * always set csa_cachethis to FALSE because the current implementation
4594 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
4595 */
4596static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args)
4597{
4598 struct nfs4_session *session = args->client->cl_session;
4599 unsigned int mxrqst_sz = session->fc_attrs.max_rqst_sz,
4600 mxresp_sz = session->fc_attrs.max_resp_sz;
4601
4602 if (mxrqst_sz == 0)
4603 mxrqst_sz = NFS_MAX_FILE_IO_SIZE;
4604 if (mxresp_sz == 0)
4605 mxresp_sz = NFS_MAX_FILE_IO_SIZE;
4606 /* Fore channel attributes */
4607 args->fc_attrs.headerpadsz = 0;
4608 args->fc_attrs.max_rqst_sz = mxrqst_sz;
4609 args->fc_attrs.max_resp_sz = mxresp_sz;
4610 args->fc_attrs.max_resp_sz_cached = mxresp_sz;
4611 args->fc_attrs.max_ops = NFS4_MAX_OPS;
4612 args->fc_attrs.max_reqs = session->clp->cl_rpcclient->cl_xprt->max_reqs;
4613
4614 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
4615 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4616 __func__,
4617 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
4618 args->fc_attrs.max_resp_sz_cached, args->fc_attrs.max_ops,
4619 args->fc_attrs.max_reqs);
4620
4621 /* Back channel attributes */
4622 args->bc_attrs.headerpadsz = 0;
4623 args->bc_attrs.max_rqst_sz = PAGE_SIZE;
4624 args->bc_attrs.max_resp_sz = PAGE_SIZE;
4625 args->bc_attrs.max_resp_sz_cached = 0;
4626 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
4627 args->bc_attrs.max_reqs = 1;
4628
4629 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
4630 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4631 __func__,
4632 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
4633 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
4634 args->bc_attrs.max_reqs);
4635}
4636
Andy Adamson8d353012009-04-01 09:22:32 -04004637static int _verify_channel_attr(char *chan, char *attr_name, u32 sent, u32 rcvd)
4638{
4639 if (rcvd <= sent)
4640 return 0;
4641 printk(KERN_WARNING "%s: Session INVALID: %s channel %s increased. "
4642 "sent=%u rcvd=%u\n", __func__, chan, attr_name, sent, rcvd);
4643 return -EINVAL;
4644}
4645
4646#define _verify_fore_channel_attr(_name_) \
4647 _verify_channel_attr("fore", #_name_, \
4648 args->fc_attrs._name_, \
4649 session->fc_attrs._name_)
4650
4651#define _verify_back_channel_attr(_name_) \
4652 _verify_channel_attr("back", #_name_, \
4653 args->bc_attrs._name_, \
4654 session->bc_attrs._name_)
4655
4656/*
4657 * The server is not allowed to increase the fore channel header pad size,
4658 * maximum response size, or maximum number of operations.
4659 *
4660 * The back channel attributes are only negotiatied down: We send what the
4661 * (back channel) server insists upon.
4662 */
4663static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
4664 struct nfs4_session *session)
4665{
4666 int ret = 0;
4667
4668 ret |= _verify_fore_channel_attr(headerpadsz);
4669 ret |= _verify_fore_channel_attr(max_resp_sz);
4670 ret |= _verify_fore_channel_attr(max_ops);
4671
4672 ret |= _verify_back_channel_attr(headerpadsz);
4673 ret |= _verify_back_channel_attr(max_rqst_sz);
4674 ret |= _verify_back_channel_attr(max_resp_sz);
4675 ret |= _verify_back_channel_attr(max_resp_sz_cached);
4676 ret |= _verify_back_channel_attr(max_ops);
4677 ret |= _verify_back_channel_attr(max_reqs);
4678
4679 return ret;
4680}
4681
Andy Adamsonfc931582009-04-01 09:22:31 -04004682static int _nfs4_proc_create_session(struct nfs_client *clp)
4683{
4684 struct nfs4_session *session = clp->cl_session;
4685 struct nfs41_create_session_args args = {
4686 .client = clp,
4687 .cb_program = NFS4_CALLBACK,
4688 };
4689 struct nfs41_create_session_res res = {
4690 .client = clp,
4691 };
4692 struct rpc_message msg = {
4693 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
4694 .rpc_argp = &args,
4695 .rpc_resp = &res,
4696 };
4697 int status;
4698
4699 nfs4_init_channel_attrs(&args);
Andy Adamson0f914212009-04-01 09:23:16 -04004700 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
Andy Adamsonfc931582009-04-01 09:22:31 -04004701
4702 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
4703
Andy Adamson8d353012009-04-01 09:22:32 -04004704 if (!status)
4705 /* Verify the session's negotiated channel_attrs values */
4706 status = nfs4_verify_channel_attrs(&args, session);
Andy Adamsonfc931582009-04-01 09:22:31 -04004707 if (!status) {
4708 /* Increment the clientid slot sequence id */
4709 clp->cl_seqid++;
4710 }
4711
4712 return status;
4713}
4714
4715/*
4716 * Issues a CREATE_SESSION operation to the server.
4717 * It is the responsibility of the caller to verify the session is
4718 * expired before calling this routine.
4719 */
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004720int nfs4_proc_create_session(struct nfs_client *clp, int reset)
Andy Adamsonfc931582009-04-01 09:22:31 -04004721{
4722 int status;
4723 unsigned *ptr;
4724 struct nfs_fsinfo fsinfo;
4725 struct nfs4_session *session = clp->cl_session;
4726
4727 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
4728
4729 status = _nfs4_proc_create_session(clp);
4730 if (status)
4731 goto out;
4732
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004733 /* Init or reset the fore channel */
4734 if (reset)
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004735 status = nfs4_reset_slot_tables(session);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004736 else
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004737 status = nfs4_init_slot_tables(session);
Andy Adamsonfc931582009-04-01 09:22:31 -04004738 dprintk("fore channel slot table initialization returned %d\n", status);
4739 if (status)
4740 goto out;
4741
4742 ptr = (unsigned *)&session->sess_id.data[0];
4743 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
4744 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
4745
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004746 if (reset)
4747 /* Lease time is aleady set */
4748 goto out;
4749
Andy Adamsonfc931582009-04-01 09:22:31 -04004750 /* Get the lease time */
4751 status = nfs4_proc_get_lease_time(clp, &fsinfo);
4752 if (status == 0) {
4753 /* Update lease time and schedule renewal */
4754 spin_lock(&clp->cl_lock);
4755 clp->cl_lease_time = fsinfo.lease_time * HZ;
4756 clp->cl_last_renewal = jiffies;
4757 clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
4758 spin_unlock(&clp->cl_lock);
4759
4760 nfs4_schedule_state_renewal(clp);
4761 }
4762out:
4763 dprintk("<-- %s\n", __func__);
4764 return status;
4765}
4766
Andy Adamson0f3e66c2009-04-01 09:22:34 -04004767/*
4768 * Issue the over-the-wire RPC DESTROY_SESSION.
4769 * The caller must serialize access to this routine.
4770 */
4771int nfs4_proc_destroy_session(struct nfs4_session *session)
4772{
4773 int status = 0;
4774 struct rpc_message msg;
4775
4776 dprintk("--> nfs4_proc_destroy_session\n");
4777
4778 /* session is still being setup */
4779 if (session->clp->cl_cons_state != NFS_CS_READY)
4780 return status;
4781
4782 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION];
4783 msg.rpc_argp = session;
4784 msg.rpc_resp = NULL;
4785 msg.rpc_cred = NULL;
4786 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
4787
4788 if (status)
4789 printk(KERN_WARNING
4790 "Got error %d from the server on DESTROY_SESSION. "
4791 "Session has been destroyed regardless...\n", status);
4792
4793 dprintk("<-- nfs4_proc_destroy_session\n");
4794 return status;
4795}
4796
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004797/*
4798 * Renew the cl_session lease.
4799 */
4800static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
4801{
4802 struct nfs4_sequence_args args;
4803 struct nfs4_sequence_res res;
4804
4805 struct rpc_message msg = {
4806 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
4807 .rpc_argp = &args,
4808 .rpc_resp = &res,
4809 .rpc_cred = cred,
4810 };
4811
4812 args.sa_cache_this = 0;
4813
4814 return nfs4_call_sync_sequence(clp, clp->cl_rpcclient, &msg, &args,
4815 &res, 0);
4816}
4817
4818void nfs41_sequence_call_done(struct rpc_task *task, void *data)
4819{
4820 struct nfs_client *clp = (struct nfs_client *)data;
4821
4822 nfs41_sequence_done(clp, task->tk_msg.rpc_resp, task->tk_status);
4823
4824 if (task->tk_status < 0) {
4825 dprintk("%s ERROR %d\n", __func__, task->tk_status);
4826
4827 if (_nfs4_async_handle_error(task, NULL, clp, NULL)
4828 == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04004829 nfs4_restart_rpc(task, clp);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004830 return;
4831 }
4832 }
4833 nfs41_sequence_free_slot(clp, task->tk_msg.rpc_resp);
4834 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
4835
4836 put_rpccred(task->tk_msg.rpc_cred);
4837 kfree(task->tk_msg.rpc_argp);
4838 kfree(task->tk_msg.rpc_resp);
4839
4840 dprintk("<-- %s\n", __func__);
4841}
4842
4843static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
4844{
4845 struct nfs_client *clp;
4846 struct nfs4_sequence_args *args;
4847 struct nfs4_sequence_res *res;
4848
4849 clp = (struct nfs_client *)data;
4850 args = task->tk_msg.rpc_argp;
4851 res = task->tk_msg.rpc_resp;
4852
4853 if (nfs4_setup_sequence(clp, args, res, 0, task))
4854 return;
4855 rpc_call_start(task);
4856}
4857
4858static const struct rpc_call_ops nfs41_sequence_ops = {
4859 .rpc_call_done = nfs41_sequence_call_done,
4860 .rpc_call_prepare = nfs41_sequence_prepare,
4861};
4862
4863static int nfs41_proc_async_sequence(struct nfs_client *clp,
4864 struct rpc_cred *cred)
4865{
4866 struct nfs4_sequence_args *args;
4867 struct nfs4_sequence_res *res;
4868 struct rpc_message msg = {
4869 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
4870 .rpc_cred = cred,
4871 };
4872
4873 args = kzalloc(sizeof(*args), GFP_KERNEL);
4874 if (!args)
4875 return -ENOMEM;
4876 res = kzalloc(sizeof(*res), GFP_KERNEL);
4877 if (!res) {
4878 kfree(args);
4879 return -ENOMEM;
4880 }
4881 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
4882 msg.rpc_argp = args;
4883 msg.rpc_resp = res;
4884
4885 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
4886 &nfs41_sequence_ops, (void *)clp);
4887}
4888
Andy Adamson557134a2009-04-01 09:21:53 -04004889#endif /* CONFIG_NFS_V4_1 */
4890
Andy Adamson591d71c2009-04-01 09:22:47 -04004891struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05004892 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05004893 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894 .recover_open = nfs4_open_reclaim,
4895 .recover_lock = nfs4_lock_reclaim,
Andy Adamson591d71c2009-04-01 09:22:47 -04004896 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04004897 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898};
4899
Andy Adamson591d71c2009-04-01 09:22:47 -04004900#if defined(CONFIG_NFS_V4_1)
4901struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
4902 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
4903 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
4904 .recover_open = nfs4_open_reclaim,
4905 .recover_lock = nfs4_lock_reclaim,
4906 .establish_clid = nfs4_proc_exchange_id,
Andy Adamsonb4b82602009-04-01 09:22:49 -04004907 .get_clid_cred = nfs4_get_exchange_id_cred,
Andy Adamson591d71c2009-04-01 09:22:47 -04004908};
4909#endif /* CONFIG_NFS_V4_1 */
4910
4911struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05004912 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05004913 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 .recover_open = nfs4_open_expired,
4915 .recover_lock = nfs4_lock_expired,
Andy Adamson591d71c2009-04-01 09:22:47 -04004916 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04004917 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918};
4919
Andy Adamson591d71c2009-04-01 09:22:47 -04004920#if defined(CONFIG_NFS_V4_1)
4921struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
4922 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
4923 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
4924 .recover_open = nfs4_open_expired,
4925 .recover_lock = nfs4_lock_expired,
4926 .establish_clid = nfs4_proc_exchange_id,
Andy Adamsonb4b82602009-04-01 09:22:49 -04004927 .get_clid_cred = nfs4_get_exchange_id_cred,
Andy Adamson591d71c2009-04-01 09:22:47 -04004928};
4929#endif /* CONFIG_NFS_V4_1 */
4930
Benny Halevy29fba382009-04-01 09:22:44 -04004931struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
4932 .sched_state_renewal = nfs4_proc_async_renew,
Andy Adamsona7b72102009-04-01 09:22:46 -04004933 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04004934 .renew_lease = nfs4_proc_renew,
Benny Halevy29fba382009-04-01 09:22:44 -04004935};
4936
4937#if defined(CONFIG_NFS_V4_1)
4938struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
4939 .sched_state_renewal = nfs41_proc_async_sequence,
Andy Adamsona7b72102009-04-01 09:22:46 -04004940 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04004941 .renew_lease = nfs4_proc_sequence,
Benny Halevy29fba382009-04-01 09:22:44 -04004942};
4943#endif
4944
4945/*
4946 * Per minor version reboot and network partition recovery ops
4947 */
4948
Andy Adamson591d71c2009-04-01 09:22:47 -04004949struct nfs4_state_recovery_ops *nfs4_reboot_recovery_ops[] = {
4950 &nfs40_reboot_recovery_ops,
4951#if defined(CONFIG_NFS_V4_1)
4952 &nfs41_reboot_recovery_ops,
4953#endif
4954};
4955
4956struct nfs4_state_recovery_ops *nfs4_nograce_recovery_ops[] = {
4957 &nfs40_nograce_recovery_ops,
4958#if defined(CONFIG_NFS_V4_1)
4959 &nfs41_nograce_recovery_ops,
4960#endif
4961};
4962
Benny Halevy29fba382009-04-01 09:22:44 -04004963struct nfs4_state_maintenance_ops *nfs4_state_renewal_ops[] = {
4964 &nfs40_state_renewal_ops,
4965#if defined(CONFIG_NFS_V4_1)
4966 &nfs41_state_renewal_ops,
4967#endif
4968};
4969
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004970static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004971 .permission = nfs_permission,
4972 .getattr = nfs_getattr,
4973 .setattr = nfs_setattr,
4974 .getxattr = nfs4_getxattr,
4975 .setxattr = nfs4_setxattr,
4976 .listxattr = nfs4_listxattr,
4977};
4978
David Howells509de812006-08-22 20:06:11 -04004979const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 .version = 4, /* protocol version */
4981 .dentry_ops = &nfs4_dentry_operations,
4982 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004983 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 .getroot = nfs4_proc_get_root,
4985 .getattr = nfs4_proc_getattr,
4986 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04004987 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988 .lookup = nfs4_proc_lookup,
4989 .access = nfs4_proc_access,
4990 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991 .create = nfs4_proc_create,
4992 .remove = nfs4_proc_remove,
4993 .unlink_setup = nfs4_proc_unlink_setup,
4994 .unlink_done = nfs4_proc_unlink_done,
4995 .rename = nfs4_proc_rename,
4996 .link = nfs4_proc_link,
4997 .symlink = nfs4_proc_symlink,
4998 .mkdir = nfs4_proc_mkdir,
4999 .rmdir = nfs4_proc_remove,
5000 .readdir = nfs4_proc_readdir,
5001 .mknod = nfs4_proc_mknod,
5002 .statfs = nfs4_proc_statfs,
5003 .fsinfo = nfs4_proc_fsinfo,
5004 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04005005 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 .decode_dirent = nfs4_decode_dirent,
5007 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05005008 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005010 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005012 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005014 .clear_acl_cache = nfs4_zap_acl_attr,
Trond Myklebust7fe5c392009-03-19 15:35:50 -04005015 .close_context = nfs4_close_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016};
5017
5018/*
5019 * Local variables:
5020 * c-basic-offset: 8
5021 * End:
5022 */