blob: 6917311f201c32d679772337e440ba21e807a04b [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/namei.h>
Trond Myklebust02a913a2005-10-18 14:20:17 -070049#include <linux/mount.h>
Benny Halevy99fe60d2009-04-01 09:22:29 -040050#include <linux/module.h>
Andy Adamson5a0ffe52009-04-01 09:23:18 -040051#include <linux/sunrpc/bc_xprt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Trond Myklebust4ce79712005-06-22 17:16:21 +000053#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include "delegation.h"
Trond Myklebust101070c2008-02-19 20:04:23 -050055#include "internal.h"
Chuck Lever006ea732006-03-20 13:44:14 -050056#include "iostat.h"
Andy Adamsonfc931582009-04-01 09:22:31 -040057#include "callback.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#define NFSDBG_FACILITY NFSDBG_PROC
60
Trond Myklebust2066fe82006-09-15 08:30:46 -040061#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define NFS4_POLL_RETRY_MAX (15*HZ)
63
Trond Myklebustcdd4e682006-01-03 09:55:12 +010064struct nfs4_opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +010065static int _nfs4_proc_open(struct nfs4_opendata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
Trond Myklebust9e33bed2008-12-23 15:21:46 -050067static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *, struct nfs4_state *);
Trond Myklebust99367812007-07-17 21:52:41 -040068static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
69static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* Prevent leaks of NFSv4 errors into userland */
WANG Cong46f72f52008-12-30 16:35:55 -050072static int nfs4_map_errors(int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 if (err < -1000) {
75 dprintk("%s could not handle NFSv4 error %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -070076 __func__, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return -EIO;
78 }
79 return err;
80}
81
82/*
83 * This is our standard bitmap for GETATTR requests.
84 */
85const u32 nfs4_fattr_bitmap[2] = {
86 FATTR4_WORD0_TYPE
87 | FATTR4_WORD0_CHANGE
88 | FATTR4_WORD0_SIZE
89 | FATTR4_WORD0_FSID
90 | FATTR4_WORD0_FILEID,
91 FATTR4_WORD1_MODE
92 | FATTR4_WORD1_NUMLINKS
93 | FATTR4_WORD1_OWNER
94 | FATTR4_WORD1_OWNER_GROUP
95 | FATTR4_WORD1_RAWDEV
96 | FATTR4_WORD1_SPACE_USED
97 | FATTR4_WORD1_TIME_ACCESS
98 | FATTR4_WORD1_TIME_METADATA
99 | FATTR4_WORD1_TIME_MODIFY
100};
101
102const u32 nfs4_statfs_bitmap[2] = {
103 FATTR4_WORD0_FILES_AVAIL
104 | FATTR4_WORD0_FILES_FREE
105 | FATTR4_WORD0_FILES_TOTAL,
106 FATTR4_WORD1_SPACE_AVAIL
107 | FATTR4_WORD1_SPACE_FREE
108 | FATTR4_WORD1_SPACE_TOTAL
109};
110
Trond Myklebust4ce79712005-06-22 17:16:21 +0000111const u32 nfs4_pathconf_bitmap[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 FATTR4_WORD0_MAXLINK
113 | FATTR4_WORD0_MAXNAME,
114 0
115};
116
117const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
118 | FATTR4_WORD0_MAXREAD
119 | FATTR4_WORD0_MAXWRITE
120 | FATTR4_WORD0_LEASE_TIME,
121 0
122};
123
Manoj Naik830b8e32006-06-09 09:34:25 -0400124const u32 nfs4_fs_locations_bitmap[2] = {
125 FATTR4_WORD0_TYPE
126 | FATTR4_WORD0_CHANGE
127 | FATTR4_WORD0_SIZE
128 | FATTR4_WORD0_FSID
129 | FATTR4_WORD0_FILEID
130 | FATTR4_WORD0_FS_LOCATIONS,
131 FATTR4_WORD1_MODE
132 | FATTR4_WORD1_NUMLINKS
133 | FATTR4_WORD1_OWNER
134 | FATTR4_WORD1_OWNER_GROUP
135 | FATTR4_WORD1_RAWDEV
136 | FATTR4_WORD1_SPACE_USED
137 | FATTR4_WORD1_TIME_ACCESS
138 | FATTR4_WORD1_TIME_METADATA
139 | FATTR4_WORD1_TIME_MODIFY
140 | FATTR4_WORD1_MOUNTED_ON_FILEID
141};
142
Al Virobc4785c2006-10-19 23:28:51 -0700143static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 struct nfs4_readdir_arg *readdir)
145{
Al Viro0dbb4c62006-10-19 23:28:49 -0700146 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 BUG_ON(readdir->count < 80);
149 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000150 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
152 return;
153 }
154
155 readdir->cookie = 0;
156 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
157 if (cookie == 2)
158 return;
159
160 /*
161 * NFSv4 servers do not return entries for '.' and '..'
162 * Therefore, we fake these entries here. We let '.'
163 * have cookie 0 and '..' have cookie 1. Note that
164 * when talking to the server, we always send cookie 0
165 * instead of 1 or 2.
166 */
Al Viro0dbb4c62006-10-19 23:28:49 -0700167 start = p = kmap_atomic(*readdir->pages, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 if (cookie == 0) {
170 *p++ = xdr_one; /* next */
171 *p++ = xdr_zero; /* cookie, first word */
172 *p++ = xdr_one; /* cookie, second word */
173 *p++ = xdr_one; /* entry len */
174 memcpy(p, ".\0\0\0", 4); /* entry */
175 p++;
176 *p++ = xdr_one; /* bitmap length */
177 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
178 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400179 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181
182 *p++ = xdr_one; /* next */
183 *p++ = xdr_zero; /* cookie, first word */
184 *p++ = xdr_two; /* cookie, second word */
185 *p++ = xdr_two; /* entry len */
186 memcpy(p, "..\0\0", 4); /* entry */
187 p++;
188 *p++ = xdr_one; /* bitmap length */
189 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
190 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400191 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 readdir->pgbase = (char *)p - (char *)start;
194 readdir->count -= readdir->pgbase;
195 kunmap_atomic(start, KM_USER0);
196}
197
Trond Myklebust65de8722008-12-23 15:21:44 -0500198static int nfs4_wait_clnt_recover(struct nfs_client *clp)
199{
200 int res;
201
202 might_sleep();
203
Trond Myklebuste005e802008-12-23 15:21:48 -0500204 res = wait_on_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400205 nfs_wait_bit_killable, TASK_KILLABLE);
Trond Myklebust65de8722008-12-23 15:21:44 -0500206 return res;
207}
208
209static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
210{
211 int res = 0;
212
213 might_sleep();
214
215 if (*timeout <= 0)
216 *timeout = NFS4_POLL_RETRY_MIN;
217 if (*timeout > NFS4_POLL_RETRY_MAX)
218 *timeout = NFS4_POLL_RETRY_MAX;
219 schedule_timeout_killable(*timeout);
220 if (fatal_signal_pending(current))
221 res = -ERESTARTSYS;
222 *timeout <<= 1;
223 return res;
224}
225
226/* This is the error handling routine for processes that are allowed
227 * to sleep.
228 */
229static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
230{
231 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500232 struct nfs4_state *state = exception->state;
Trond Myklebust65de8722008-12-23 15:21:44 -0500233 int ret = errorcode;
234
235 exception->retry = 0;
236 switch(errorcode) {
237 case 0:
238 return 0;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500239 case -NFS4ERR_ADMIN_REVOKED:
240 case -NFS4ERR_BAD_STATEID:
241 case -NFS4ERR_OPENMODE:
242 if (state == NULL)
243 break;
244 nfs4_state_mark_reclaim_nograce(clp, state);
Trond Myklebust65de8722008-12-23 15:21:44 -0500245 case -NFS4ERR_STALE_CLIENTID:
246 case -NFS4ERR_STALE_STATEID:
247 case -NFS4ERR_EXPIRED:
248 nfs4_schedule_state_recovery(clp);
249 ret = nfs4_wait_clnt_recover(clp);
250 if (ret == 0)
251 exception->retry = 1;
Andy Adamson4745e312009-04-01 09:22:42 -0400252#if !defined(CONFIG_NFS_V4_1)
Trond Myklebust65de8722008-12-23 15:21:44 -0500253 break;
Andy Adamson4745e312009-04-01 09:22:42 -0400254#else /* !defined(CONFIG_NFS_V4_1) */
255 if (!nfs4_has_session(server->nfs_client))
256 break;
257 /* FALLTHROUGH */
258 case -NFS4ERR_BADSESSION:
259 case -NFS4ERR_BADSLOT:
260 case -NFS4ERR_BAD_HIGH_SLOT:
261 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
262 case -NFS4ERR_DEADSESSION:
263 case -NFS4ERR_SEQ_FALSE_RETRY:
264 case -NFS4ERR_SEQ_MISORDERED:
265 dprintk("%s ERROR: %d Reset session\n", __func__,
266 errorcode);
267 set_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state);
268 exception->retry = 1;
269 /* FALLTHROUGH */
270#endif /* !defined(CONFIG_NFS_V4_1) */
Trond Myklebust65de8722008-12-23 15:21:44 -0500271 case -NFS4ERR_FILE_OPEN:
272 case -NFS4ERR_GRACE:
273 case -NFS4ERR_DELAY:
274 ret = nfs4_delay(server->client, &exception->timeout);
275 if (ret != 0)
276 break;
277 case -NFS4ERR_OLD_STATEID:
278 exception->retry = 1;
279 }
280 /* We failed to handle the error */
281 return nfs4_map_errors(ret);
282}
283
284
Trond Myklebust26e976a2006-01-03 09:55:21 +0100285static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
David Howells7539bba2006-08-22 20:06:09 -0400287 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 spin_lock(&clp->cl_lock);
289 if (time_before(clp->cl_last_renewal,timestamp))
290 clp->cl_last_renewal = timestamp;
291 spin_unlock(&clp->cl_lock);
292}
293
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400294#if defined(CONFIG_NFS_V4_1)
295
Benny Halevy510b8172009-04-01 09:22:14 -0400296/*
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400297 * nfs4_free_slot - free a slot and efficiently update slot table.
298 *
299 * freeing a slot is trivially done by clearing its respective bit
300 * in the bitmap.
301 * If the freed slotid equals highest_used_slotid we want to update it
302 * so that the server would be able to size down the slot table if needed,
303 * otherwise we know that the highest_used_slotid is still in use.
304 * When updating highest_used_slotid there may be "holes" in the bitmap
305 * so we need to scan down from highest_used_slotid to 0 looking for the now
306 * highest slotid in use.
307 * If none found, highest_used_slotid is set to -1.
308 */
309static void
310nfs4_free_slot(struct nfs4_slot_table *tbl, u8 free_slotid)
311{
312 int slotid = free_slotid;
313
314 spin_lock(&tbl->slot_tbl_lock);
315 /* clear used bit in bitmap */
316 __clear_bit(slotid, tbl->used_slots);
317
318 /* update highest_used_slotid when it is freed */
319 if (slotid == tbl->highest_used_slotid) {
320 slotid = find_last_bit(tbl->used_slots, tbl->max_slots);
321 if (slotid >= 0 && slotid < tbl->max_slots)
322 tbl->highest_used_slotid = slotid;
323 else
324 tbl->highest_used_slotid = -1;
325 }
326 rpc_wake_up_next(&tbl->slot_tbl_waitq);
327 spin_unlock(&tbl->slot_tbl_lock);
328 dprintk("%s: free_slotid %u highest_used_slotid %d\n", __func__,
329 free_slotid, tbl->highest_used_slotid);
330}
331
Andy Adamson13615872009-04-01 09:22:17 -0400332void nfs41_sequence_free_slot(const struct nfs_client *clp,
333 struct nfs4_sequence_res *res)
334{
335 struct nfs4_slot_table *tbl;
336
337 if (!nfs4_has_session(clp)) {
338 dprintk("%s: No session\n", __func__);
339 return;
340 }
341 tbl = &clp->cl_session->fc_slot_table;
342 if (res->sr_slotid == NFS4_MAX_SLOT_TABLE) {
343 dprintk("%s: No slot\n", __func__);
344 /* just wake up the next guy waiting since
345 * we may have not consumed a slot after all */
346 rpc_wake_up_next(&tbl->slot_tbl_waitq);
347 return;
348 }
349 nfs4_free_slot(tbl, res->sr_slotid);
350 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
351}
352
Andy Adamsonb0df8062009-04-01 09:22:18 -0400353static void nfs41_sequence_done(struct nfs_client *clp,
354 struct nfs4_sequence_res *res,
355 int rpc_status)
356{
357 unsigned long timestamp;
358 struct nfs4_slot_table *tbl;
359 struct nfs4_slot *slot;
360
361 /*
362 * sr_status remains 1 if an RPC level error occurred. The server
363 * may or may not have processed the sequence operation..
364 * Proceed as if the server received and processed the sequence
365 * operation.
366 */
367 if (res->sr_status == 1)
368 res->sr_status = NFS_OK;
369
370 /* -ERESTARTSYS can result in skipping nfs41_sequence_setup */
371 if (res->sr_slotid == NFS4_MAX_SLOT_TABLE)
372 goto out;
373
374 tbl = &clp->cl_session->fc_slot_table;
375 slot = tbl->slots + res->sr_slotid;
376
377 if (res->sr_status == 0) {
378 /* Update the slot's sequence and clientid lease timer */
379 ++slot->seq_nr;
380 timestamp = res->sr_renewal_time;
381 spin_lock(&clp->cl_lock);
382 if (time_before(clp->cl_last_renewal, timestamp))
383 clp->cl_last_renewal = timestamp;
384 spin_unlock(&clp->cl_lock);
385 return;
386 }
387out:
388 /* The session may be reset by one of the error handlers. */
389 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
390 nfs41_sequence_free_slot(clp, res);
391}
392
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400393/*
Benny Halevy510b8172009-04-01 09:22:14 -0400394 * nfs4_find_slot - efficiently look for a free slot
395 *
396 * nfs4_find_slot looks for an unset bit in the used_slots bitmap.
397 * If found, we mark the slot as used, update the highest_used_slotid,
398 * and respectively set up the sequence operation args.
399 * The slot number is returned if found, or NFS4_MAX_SLOT_TABLE otherwise.
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400400 *
401 * Note: must be called with under the slot_tbl_lock.
Benny Halevy510b8172009-04-01 09:22:14 -0400402 */
403static u8
404nfs4_find_slot(struct nfs4_slot_table *tbl, struct rpc_task *task)
405{
406 int slotid;
407 u8 ret_id = NFS4_MAX_SLOT_TABLE;
408 BUILD_BUG_ON((u8)NFS4_MAX_SLOT_TABLE != (int)NFS4_MAX_SLOT_TABLE);
409
Benny Halevy510b8172009-04-01 09:22:14 -0400410 dprintk("--> %s used_slots=%04lx highest_used=%d max_slots=%d\n",
411 __func__, tbl->used_slots[0], tbl->highest_used_slotid,
412 tbl->max_slots);
413 slotid = find_first_zero_bit(tbl->used_slots, tbl->max_slots);
414 if (slotid >= tbl->max_slots)
415 goto out;
416 __set_bit(slotid, tbl->used_slots);
417 if (slotid > tbl->highest_used_slotid)
418 tbl->highest_used_slotid = slotid;
419 ret_id = slotid;
420out:
421 dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
422 __func__, tbl->used_slots[0], tbl->highest_used_slotid, ret_id);
Benny Halevy510b8172009-04-01 09:22:14 -0400423 return ret_id;
424}
425
Andy Adamsonb069d942009-04-01 09:22:43 -0400426static int nfs4_recover_session(struct nfs4_session *session)
427{
428 struct nfs_client *clp = session->clp;
429 int ret;
430
431 for (;;) {
432 ret = nfs4_wait_clnt_recover(clp);
433 if (ret != 0)
434 return ret;
435 if (!test_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state))
436 break;
437 nfs4_schedule_state_manager(clp);
438 }
439 return 0;
440}
441
Andy Adamsonce5039c2009-04-01 09:22:13 -0400442static int nfs41_setup_sequence(struct nfs4_session *session,
443 struct nfs4_sequence_args *args,
444 struct nfs4_sequence_res *res,
445 int cache_reply,
446 struct rpc_task *task)
447{
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400448 struct nfs4_slot *slot;
449 struct nfs4_slot_table *tbl;
Andy Adamsonb069d942009-04-01 09:22:43 -0400450 int status = 0;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400451 u8 slotid;
452
453 dprintk("--> %s\n", __func__);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400454 /* slot already allocated? */
455 if (res->sr_slotid != NFS4_MAX_SLOT_TABLE)
456 return 0;
457
458 memset(res, 0, sizeof(*res));
459 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400460 tbl = &session->fc_slot_table;
461
462 spin_lock(&tbl->slot_tbl_lock);
Andy Adamsonb069d942009-04-01 09:22:43 -0400463 if (test_bit(NFS4CLNT_SESSION_SETUP, &session->clp->cl_state)) {
464 if (tbl->highest_used_slotid != -1) {
465 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
466 spin_unlock(&tbl->slot_tbl_lock);
467 dprintk("<-- %s: Session reset: draining\n", __func__);
468 return -EAGAIN;
469 }
470
471 /* The slot table is empty; start the reset thread */
472 dprintk("%s Session Reset\n", __func__);
473 spin_unlock(&tbl->slot_tbl_lock);
474 status = nfs4_recover_session(session);
475 if (status)
476 return status;
477 spin_lock(&tbl->slot_tbl_lock);
478 }
479
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400480 slotid = nfs4_find_slot(tbl, task);
481 if (slotid == NFS4_MAX_SLOT_TABLE) {
482 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
483 spin_unlock(&tbl->slot_tbl_lock);
484 dprintk("<-- %s: no free slots\n", __func__);
485 return -EAGAIN;
486 }
487 spin_unlock(&tbl->slot_tbl_lock);
488
489 slot = tbl->slots + slotid;
Benny Halevy99fe60d2009-04-01 09:22:29 -0400490 args->sa_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400491 args->sa_slotid = slotid;
492 args->sa_cache_this = cache_reply;
493
494 dprintk("<-- %s slotid=%d seqid=%d\n", __func__, slotid, slot->seq_nr);
495
Benny Halevy99fe60d2009-04-01 09:22:29 -0400496 res->sr_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400497 res->sr_slotid = slotid;
498 res->sr_renewal_time = jiffies;
499 /*
500 * sr_status is only set in decode_sequence, and so will remain
501 * set to 1 if an rpc level failure occurs.
502 */
503 res->sr_status = 1;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400504 return 0;
505}
506
507int nfs4_setup_sequence(struct nfs_client *clp,
508 struct nfs4_sequence_args *args,
509 struct nfs4_sequence_res *res,
510 int cache_reply,
511 struct rpc_task *task)
512{
513 int ret = 0;
514
515 dprintk("--> %s clp %p session %p sr_slotid %d\n",
516 __func__, clp, clp->cl_session, res->sr_slotid);
517
518 if (!nfs4_has_session(clp))
519 goto out;
520 ret = nfs41_setup_sequence(clp->cl_session, args, res, cache_reply,
521 task);
522 if (ret != -EAGAIN) {
523 /* terminate rpc task */
524 task->tk_status = ret;
525 task->tk_action = NULL;
526 }
527out:
528 dprintk("<-- %s status=%d\n", __func__, ret);
529 return ret;
530}
531
532struct nfs41_call_sync_data {
533 struct nfs_client *clp;
534 struct nfs4_sequence_args *seq_args;
535 struct nfs4_sequence_res *seq_res;
536 int cache_reply;
537};
538
539static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
540{
541 struct nfs41_call_sync_data *data = calldata;
542
543 dprintk("--> %s data->clp->cl_session %p\n", __func__,
544 data->clp->cl_session);
545 if (nfs4_setup_sequence(data->clp, data->seq_args,
546 data->seq_res, data->cache_reply, task))
547 return;
548 rpc_call_start(task);
549}
550
Andy Adamson69ab40c2009-04-01 09:22:19 -0400551static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
552{
553 struct nfs41_call_sync_data *data = calldata;
554
555 nfs41_sequence_done(data->clp, data->seq_res, task->tk_status);
556 nfs41_sequence_free_slot(data->clp, data->seq_res);
557}
558
Andy Adamsonce5039c2009-04-01 09:22:13 -0400559struct rpc_call_ops nfs41_call_sync_ops = {
560 .rpc_call_prepare = nfs41_call_sync_prepare,
Andy Adamson69ab40c2009-04-01 09:22:19 -0400561 .rpc_call_done = nfs41_call_sync_done,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400562};
563
564static int nfs4_call_sync_sequence(struct nfs_client *clp,
565 struct rpc_clnt *clnt,
566 struct rpc_message *msg,
567 struct nfs4_sequence_args *args,
568 struct nfs4_sequence_res *res,
569 int cache_reply)
570{
571 int ret;
572 struct rpc_task *task;
573 struct nfs41_call_sync_data data = {
574 .clp = clp,
575 .seq_args = args,
576 .seq_res = res,
577 .cache_reply = cache_reply,
578 };
579 struct rpc_task_setup task_setup = {
580 .rpc_client = clnt,
581 .rpc_message = msg,
582 .callback_ops = &nfs41_call_sync_ops,
583 .callback_data = &data
584 };
585
586 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
587 task = rpc_run_task(&task_setup);
588 if (IS_ERR(task))
589 ret = PTR_ERR(task);
590 else {
591 ret = task->tk_status;
592 rpc_put_task(task);
593 }
594 return ret;
595}
596
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400597int _nfs4_call_sync_session(struct nfs_server *server,
598 struct rpc_message *msg,
599 struct nfs4_sequence_args *args,
600 struct nfs4_sequence_res *res,
601 int cache_reply)
602{
Andy Adamsonce5039c2009-04-01 09:22:13 -0400603 return nfs4_call_sync_sequence(server->nfs_client, server->client,
604 msg, args, res, cache_reply);
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400605}
606
607#endif /* CONFIG_NFS_V4_1 */
608
609int _nfs4_call_sync(struct nfs_server *server,
610 struct rpc_message *msg,
611 struct nfs4_sequence_args *args,
612 struct nfs4_sequence_res *res,
613 int cache_reply)
614{
Benny Halevyf3752972009-04-01 09:22:04 -0400615 args->sa_session = res->sr_session = NULL;
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400616 return rpc_call_sync(server->client, msg, 0);
617}
618
619#define nfs4_call_sync(server, msg, args, res, cache_reply) \
620 (server)->nfs_client->cl_call_sync((server), (msg), &(args)->seq_args, \
621 &(res)->seq_res, (cache_reply))
622
Andy Adamsonb0df8062009-04-01 09:22:18 -0400623static void nfs4_sequence_done(const struct nfs_server *server,
624 struct nfs4_sequence_res *res, int rpc_status)
625{
626#ifdef CONFIG_NFS_V4_1
627 if (nfs4_has_session(server->nfs_client))
628 nfs41_sequence_done(server->nfs_client, res, rpc_status);
629#endif /* CONFIG_NFS_V4_1 */
630}
631
632/* no restart, therefore free slot here */
633static void nfs4_sequence_done_free_slot(const struct nfs_server *server,
634 struct nfs4_sequence_res *res,
635 int rpc_status)
636{
637 nfs4_sequence_done(server, res, rpc_status);
638 nfs4_sequence_free_slot(server->nfs_client, res);
639}
640
Trond Myklebust38478b22006-05-25 01:40:57 -0400641static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Trond Myklebust38478b22006-05-25 01:40:57 -0400643 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Trond Myklebust38478b22006-05-25 01:40:57 -0400645 spin_lock(&dir->i_lock);
Trond Myklebust40d24702007-10-08 09:24:22 -0400646 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
647 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400648 nfs_force_lookup_revalidate(dir);
Trond Myklebust40d24702007-10-08 09:24:22 -0400649 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400650 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100653struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400654 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100655 struct nfs_openargs o_arg;
656 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100657 struct nfs_open_confirmargs c_arg;
658 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100659 struct nfs_fattr f_attr;
660 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400661 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100662 struct dentry *dir;
663 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400664 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100665 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100666 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400667 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100668 int rpc_status;
669 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100670};
671
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400672
673static void nfs4_init_opendata_res(struct nfs4_opendata *p)
674{
675 p->o_res.f_attr = &p->f_attr;
676 p->o_res.dir_attr = &p->dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400677 p->o_res.seqid = p->o_arg.seqid;
678 p->c_res.seqid = p->c_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400679 p->o_res.server = p->o_arg.server;
680 nfs_fattr_init(&p->f_attr);
681 nfs_fattr_init(&p->dir_attr);
Benny Halevy578e4582009-06-18 22:01:23 -0400682 p->o_res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400683}
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;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100714 if (flags & O_EXCL) {
715 u32 *s = (u32 *) p->o_arg.u.verifier.data;
716 s[0] = jiffies;
717 s[1] = current->pid;
718 } else if (flags & O_CREAT) {
719 p->o_arg.u.attrs = &p->attrs;
720 memcpy(&p->attrs, attrs, sizeof(p->attrs));
721 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100722 p->c_arg.fh = &p->o_res.fh;
723 p->c_arg.stateid = &p->o_res.stateid;
724 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400725 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400726 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100727 return p;
728err_free:
729 kfree(p);
730err:
731 dput(parent);
732 return NULL;
733}
734
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400735static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100736{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400737 struct nfs4_opendata *p = container_of(kref,
738 struct nfs4_opendata, kref);
739
740 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400741 if (p->state != NULL)
742 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400743 nfs4_put_state_owner(p->owner);
744 dput(p->dir);
Jan Blunck31f31db12008-05-02 13:42:45 -0700745 path_put(&p->path);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400746 kfree(p);
747}
748
749static void nfs4_opendata_put(struct nfs4_opendata *p)
750{
751 if (p != NULL)
752 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100753}
754
Trond Myklebust06f814a2006-01-03 09:55:07 +0100755static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
756{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100757 int ret;
758
Trond Myklebust06f814a2006-01-03 09:55:07 +0100759 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100760 return ret;
761}
762
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500763static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400764{
765 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500766
767 if (open_mode & O_EXCL)
768 goto out;
769 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400770 case FMODE_READ:
771 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400772 break;
773 case FMODE_WRITE:
774 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400775 break;
776 case FMODE_READ|FMODE_WRITE:
777 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0;
778 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500779out:
Trond Myklebust6ee41262007-07-08 14:11:36 -0400780 return ret;
781}
782
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500783static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400784{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500785 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400786 return 0;
Trond Myklebust15c831b2008-12-23 15:21:39 -0500787 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
Trond Myklebustaac00a82007-07-05 19:02:21 -0400788 return 0;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500789 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400790 return 1;
791}
792
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500793static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +0100794{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500795 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100796 case FMODE_WRITE:
797 state->n_wronly++;
798 break;
799 case FMODE_READ:
800 state->n_rdonly++;
801 break;
802 case FMODE_READ|FMODE_WRITE:
803 state->n_rdwr++;
804 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500805 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +0100806}
807
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500808static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400809{
810 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
811 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
812 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500813 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400814 case FMODE_READ:
815 set_bit(NFS_O_RDONLY_STATE, &state->flags);
816 break;
817 case FMODE_WRITE:
818 set_bit(NFS_O_WRONLY_STATE, &state->flags);
819 break;
820 case FMODE_READ|FMODE_WRITE:
821 set_bit(NFS_O_RDWR_STATE, &state->flags);
822 }
823}
824
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500825static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400826{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400827 write_seqlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500828 nfs_set_open_stateid_locked(state, stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400829 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400830}
831
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500832static 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 -0700833{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400834 /*
835 * Protect the call to nfs4_state_set_mode_locked and
836 * serialise the stateid update
837 */
838 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400839 if (deleg_stateid != NULL) {
840 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
841 set_bit(NFS_DELEGATED_STATE, &state->flags);
842 }
843 if (open_stateid != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500844 nfs_set_open_stateid_locked(state, open_stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400845 write_sequnlock(&state->seqlock);
846 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500847 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -0700848 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500851static 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 -0500852{
853 struct nfs_inode *nfsi = NFS_I(state->inode);
854 struct nfs_delegation *deleg_cur;
855 int ret = 0;
856
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500857 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -0500858
859 rcu_read_lock();
860 deleg_cur = rcu_dereference(nfsi->delegation);
861 if (deleg_cur == NULL)
862 goto no_delegation;
863
864 spin_lock(&deleg_cur->lock);
865 if (nfsi->delegation != deleg_cur ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500866 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -0500867 goto no_delegation_unlock;
868
869 if (delegation == NULL)
870 delegation = &deleg_cur->stateid;
871 else if (memcmp(deleg_cur->stateid.data, delegation->data, NFS4_STATEID_SIZE) != 0)
872 goto no_delegation_unlock;
873
Trond Myklebustb7391f42008-12-23 15:21:52 -0500874 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500875 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500876 ret = 1;
877no_delegation_unlock:
878 spin_unlock(&deleg_cur->lock);
879no_delegation:
880 rcu_read_unlock();
881
882 if (!ret && open_stateid != NULL) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500883 __update_open_stateid(state, open_stateid, NULL, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500884 ret = 1;
885 }
886
887 return ret;
888}
889
890
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500891static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400892{
893 struct nfs_delegation *delegation;
894
895 rcu_read_lock();
896 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500897 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -0400898 rcu_read_unlock();
899 return;
900 }
901 rcu_read_unlock();
902 nfs_inode_return_delegation(inode);
903}
904
Trond Myklebust6ee41262007-07-08 14:11:36 -0400905static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400906{
907 struct nfs4_state *state = opendata->state;
908 struct nfs_inode *nfsi = NFS_I(state->inode);
909 struct nfs_delegation *delegation;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500910 int open_mode = opendata->o_arg.open_flags & O_EXCL;
911 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400912 nfs4_stateid stateid;
913 int ret = -EAGAIN;
914
Trond Myklebustaac00a82007-07-05 19:02:21 -0400915 for (;;) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500916 if (can_open_cached(state, fmode, open_mode)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400917 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500918 if (can_open_cached(state, fmode, open_mode)) {
919 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400920 spin_unlock(&state->owner->so_lock);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400921 goto out_return_state;
922 }
923 spin_unlock(&state->owner->so_lock);
924 }
Trond Myklebust34310432008-12-23 15:21:38 -0500925 rcu_read_lock();
926 delegation = rcu_dereference(nfsi->delegation);
927 if (delegation == NULL ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500928 !can_open_delegated(delegation, fmode)) {
Trond Myklebust34310432008-12-23 15:21:38 -0500929 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -0400930 break;
Trond Myklebust34310432008-12-23 15:21:38 -0500931 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400932 /* Save the delegation */
933 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
934 rcu_read_unlock();
Trond Myklebustaf22f942007-08-10 17:45:10 -0400935 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400936 if (ret != 0)
937 goto out;
938 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -0500939
940 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500941 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -0500942 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400943 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400944out:
945 return ERR_PTR(ret);
946out_return_state:
947 atomic_inc(&state->count);
948 return state;
949}
950
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100951static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
952{
953 struct inode *inode;
954 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -0400955 struct nfs_delegation *delegation;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400956 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100957
Trond Myklebustaac00a82007-07-05 19:02:21 -0400958 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400959 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400960 goto out;
961 }
962
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400963 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100964 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400965 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100966 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400967 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500968 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400969 goto err;
970 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100971 state = nfs4_get_open_state(inode, data->owner);
972 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400973 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400974 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400975 int delegation_flags = 0;
976
Trond Myklebust003707c2007-07-05 18:07:55 -0400977 rcu_read_lock();
978 delegation = rcu_dereference(NFS_I(inode)->delegation);
979 if (delegation)
980 delegation_flags = delegation->flags;
981 rcu_read_unlock();
Trond Myklebust15c831b2008-12-23 15:21:39 -0500982 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400983 nfs_inode_set_delegation(state->inode,
984 data->owner->so_cred,
985 &data->o_res);
986 else
987 nfs_inode_reclaim_delegation(state->inode,
988 data->owner->so_cred,
989 &data->o_res);
990 }
Trond Myklebust34310432008-12-23 15:21:38 -0500991
992 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500993 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100994 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400995out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100996 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400997err_put_inode:
998 iput(inode);
999err:
1000 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001001}
1002
Trond Myklebust864472e2006-01-03 09:55:15 +01001003static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1004{
1005 struct nfs_inode *nfsi = NFS_I(state->inode);
1006 struct nfs_open_context *ctx;
1007
1008 spin_lock(&state->inode->i_lock);
1009 list_for_each_entry(ctx, &nfsi->open_files, list) {
1010 if (ctx->state != state)
1011 continue;
1012 get_nfs_open_context(ctx);
1013 spin_unlock(&state->inode->i_lock);
1014 return ctx;
1015 }
1016 spin_unlock(&state->inode->i_lock);
1017 return ERR_PTR(-ENOENT);
1018}
1019
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001020static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
1021{
1022 struct nfs4_opendata *opendata;
1023
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001024 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, 0, NULL);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001025 if (opendata == NULL)
1026 return ERR_PTR(-ENOMEM);
1027 opendata->state = state;
1028 atomic_inc(&state->count);
1029 return opendata;
1030}
1031
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001032static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +01001033{
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001034 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001035 int ret;
1036
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001037 opendata->o_arg.open_flags = 0;
1038 opendata->o_arg.fmode = fmode;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001039 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1040 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1041 nfs4_init_opendata_res(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001042 ret = _nfs4_proc_open(opendata);
1043 if (ret != 0)
1044 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001045 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001046 if (IS_ERR(newstate))
1047 return PTR_ERR(newstate);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001048 nfs4_close_state(&opendata->path, newstate, fmode);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001049 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001050 return 0;
1051}
1052
1053static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1054{
Trond Myklebust864472e2006-01-03 09:55:15 +01001055 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001056 int ret;
1057
1058 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001059 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001060 smp_rmb();
1061 if (state->n_rdwr != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001062 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001063 if (ret != 0)
1064 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001065 if (newstate != state)
1066 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001067 }
1068 if (state->n_wronly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001069 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001070 if (ret != 0)
1071 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001072 if (newstate != state)
1073 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001074 }
1075 if (state->n_rdonly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001076 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001077 if (ret != 0)
1078 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001079 if (newstate != state)
1080 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001081 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001082 /*
1083 * We may have performed cached opens for all three recoveries.
1084 * Check if we need to update the current stateid.
1085 */
1086 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
1087 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001088 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001089 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1090 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001091 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001092 }
Trond Myklebust864472e2006-01-03 09:55:15 +01001093 return 0;
1094}
1095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096/*
1097 * OPEN_RECLAIM:
1098 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001100static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001102 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +01001103 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001104 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 int status;
1106
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001107 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1108 if (IS_ERR(opendata))
1109 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001110 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
1111 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001112 rcu_read_lock();
1113 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -05001114 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -04001115 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001116 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +01001117 opendata->o_arg.u.delegation_type = delegation_type;
1118 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001119 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 return status;
1121}
1122
Trond Myklebust539cd032007-06-05 11:46:42 -04001123static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
1125 struct nfs_server *server = NFS_SERVER(state->inode);
1126 struct nfs4_exception exception = { };
1127 int err;
1128 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001129 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001130 if (err != -NFS4ERR_DELAY)
1131 break;
1132 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 } while (exception.retry);
1134 return err;
1135}
1136
Trond Myklebust864472e2006-01-03 09:55:15 +01001137static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1138{
1139 struct nfs_open_context *ctx;
1140 int ret;
1141
1142 ctx = nfs4_state_find_open_context(state);
1143 if (IS_ERR(ctx))
1144 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001145 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001146 put_nfs_open_context(ctx);
1147 return ret;
1148}
1149
Trond Myklebust13437e12007-07-06 15:10:43 -04001150static 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 -07001151{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001152 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001153 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001155 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1156 if (IS_ERR(opendata))
1157 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001158 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -04001159 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001160 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +01001161 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001162 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001163 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
Trond Myklebust13437e12007-07-06 15:10:43 -04001166int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
1168 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -04001169 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 int err;
1171 do {
Trond Myklebust13437e12007-07-06 15:10:43 -04001172 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 switch (err) {
1174 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07001175 case -ENOENT:
1176 case -ESTALE:
1177 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 case -NFS4ERR_STALE_CLIENTID:
1179 case -NFS4ERR_STALE_STATEID:
1180 case -NFS4ERR_EXPIRED:
1181 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -04001182 nfs4_schedule_state_recovery(server->nfs_client);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001183 goto out;
1184 case -ERESTARTSYS:
1185 /*
1186 * The show must go on: exit, but mark the
1187 * stateid as needing recovery.
1188 */
1189 case -NFS4ERR_ADMIN_REVOKED:
1190 case -NFS4ERR_BAD_STATEID:
1191 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
1192 case -ENOMEM:
1193 err = 0;
1194 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
1196 err = nfs4_handle_exception(server, err, &exception);
1197 } while (exception.retry);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001198out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 return err;
1200}
1201
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001202static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1203{
1204 struct nfs4_opendata *data = calldata;
1205
1206 data->rpc_status = task->tk_status;
1207 if (RPC_ASSASSINATED(task))
1208 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001209 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001210 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
1211 sizeof(data->o_res.stateid.data));
Trond Myklebustbb226292008-01-02 15:19:18 -05001212 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001213 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -04001214 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001215 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001216}
1217
1218static void nfs4_open_confirm_release(void *calldata)
1219{
1220 struct nfs4_opendata *data = calldata;
1221 struct nfs4_state *state = NULL;
1222
1223 /* If this request hasn't been cancelled, do nothing */
1224 if (data->cancelled == 0)
1225 goto out_free;
1226 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001227 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001228 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001229 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001230 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001231 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001232out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001233 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001234}
1235
1236static const struct rpc_call_ops nfs4_open_confirm_ops = {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001237 .rpc_call_done = nfs4_open_confirm_done,
1238 .rpc_release = nfs4_open_confirm_release,
1239};
1240
1241/*
1242 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1243 */
1244static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
1245{
1246 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
1247 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001248 struct rpc_message msg = {
1249 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
1250 .rpc_argp = &data->c_arg,
1251 .rpc_resp = &data->c_res,
1252 .rpc_cred = data->owner->so_cred,
1253 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001254 struct rpc_task_setup task_setup_data = {
1255 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001256 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001257 .callback_ops = &nfs4_open_confirm_ops,
1258 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001259 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001260 .flags = RPC_TASK_ASYNC,
1261 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 int status;
1263
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001264 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001265 data->rpc_done = 0;
1266 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001267 data->timestamp = jiffies;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001268 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001269 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001270 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001271 status = nfs4_wait_for_completion_rpc_task(task);
1272 if (status != 0) {
1273 data->cancelled = 1;
1274 smp_wmb();
1275 } else
1276 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001277 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 return status;
1279}
1280
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001281static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001283 struct nfs4_opendata *data = calldata;
1284 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001285
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001286 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
1287 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001288 /*
1289 * Check if we still need to send an OPEN call, or if we can use
1290 * a delegation instead.
1291 */
1292 if (data->state != NULL) {
1293 struct nfs_delegation *delegation;
1294
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001295 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -04001296 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001297 rcu_read_lock();
1298 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
1299 if (delegation != NULL &&
Trond Myklebust15c831b2008-12-23 15:21:39 -05001300 test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) {
Trond Myklebustaac00a82007-07-05 19:02:21 -04001301 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001302 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001303 }
1304 rcu_read_unlock();
1305 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001306 /* Update sequence id. */
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001307 data->o_arg.id = sp->so_owner_id.id;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001308 data->o_arg.clientid = sp->so_client->cl_clientid;
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001309 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001310 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001311 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
1312 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001313 data->timestamp = jiffies;
Andy Adamsond8985282009-04-01 09:22:21 -04001314 if (nfs4_setup_sequence(data->o_arg.server->nfs_client,
1315 &data->o_arg.seq_args,
1316 &data->o_res.seq_res, 1, task))
1317 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001318 rpc_call_start(task);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001319 return;
1320out_no_action:
1321 task->tk_action = NULL;
1322
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001323}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001325static void nfs4_open_done(struct rpc_task *task, void *calldata)
1326{
1327 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001329 data->rpc_status = task->tk_status;
Andy Adamsond8985282009-04-01 09:22:21 -04001330
1331 nfs4_sequence_done_free_slot(data->o_arg.server, &data->o_res.seq_res,
1332 task->tk_status);
1333
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001334 if (RPC_ASSASSINATED(task))
1335 return;
1336 if (task->tk_status == 0) {
1337 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -07001338 case S_IFREG:
1339 break;
1340 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001341 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001342 break;
1343 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001344 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001345 break;
1346 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001347 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001348 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001349 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -04001350 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
1351 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -07001352 }
Trond Myklebust3e309912007-07-07 13:19:59 -04001353 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001354}
Trond Myklebust6f926b52005-10-18 14:20:18 -07001355
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001356static void nfs4_open_release(void *calldata)
1357{
1358 struct nfs4_opendata *data = calldata;
1359 struct nfs4_state *state = NULL;
1360
1361 /* If this request hasn't been cancelled, do nothing */
1362 if (data->cancelled == 0)
1363 goto out_free;
1364 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001365 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001366 goto out_free;
1367 /* In case we need an open_confirm, no cleanup! */
1368 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
1369 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001370 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001371 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001372 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001373out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001374 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001375}
1376
1377static const struct rpc_call_ops nfs4_open_ops = {
1378 .rpc_call_prepare = nfs4_open_prepare,
1379 .rpc_call_done = nfs4_open_done,
1380 .rpc_release = nfs4_open_release,
1381};
1382
1383/*
1384 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1385 */
1386static int _nfs4_proc_open(struct nfs4_opendata *data)
1387{
1388 struct inode *dir = data->dir->d_inode;
1389 struct nfs_server *server = NFS_SERVER(dir);
1390 struct nfs_openargs *o_arg = &data->o_arg;
1391 struct nfs_openres *o_res = &data->o_res;
1392 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001393 struct rpc_message msg = {
1394 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
1395 .rpc_argp = o_arg,
1396 .rpc_resp = o_res,
1397 .rpc_cred = data->owner->so_cred,
1398 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001399 struct rpc_task_setup task_setup_data = {
1400 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001401 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001402 .callback_ops = &nfs4_open_ops,
1403 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001404 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001405 .flags = RPC_TASK_ASYNC,
1406 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001407 int status;
1408
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001409 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001410 data->rpc_done = 0;
1411 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001412 data->cancelled = 0;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001413 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001414 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001415 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001416 status = nfs4_wait_for_completion_rpc_task(task);
1417 if (status != 0) {
1418 data->cancelled = 1;
1419 smp_wmb();
1420 } else
1421 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001422 rpc_put_task(task);
Trond Myklebust3e309912007-07-07 13:19:59 -04001423 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001424 return status;
1425
Trond Myklebust99367812007-07-17 21:52:41 -04001426 if (o_res->fh.size == 0)
1427 _nfs4_proc_lookup(dir, o_arg->name, &o_res->fh, o_res->f_attr);
1428
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001429 if (o_arg->open_flags & O_CREAT) {
1430 update_changeattr(dir, &o_res->cinfo);
1431 nfs_post_op_update_inode(dir, o_res->dir_attr);
1432 } else
1433 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001435 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001437 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 }
1439 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -04001440 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001441 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442}
1443
Trond Myklebust10afec92007-05-14 17:16:04 -04001444static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +01001445{
David Howells7539bba2006-08-22 20:06:09 -04001446 struct nfs_client *clp = server->nfs_client;
Trond Myklebust6b309542006-09-14 14:03:14 -04001447 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001448
Trond Myklebust6b309542006-09-14 14:03:14 -04001449 for (;;) {
Trond Myklebust65de8722008-12-23 15:21:44 -05001450 ret = nfs4_wait_clnt_recover(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001451 if (ret != 0)
1452 return ret;
Trond Myklebuste598d842008-12-23 15:21:42 -05001453 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
1454 !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
Trond Myklebust6b309542006-09-14 14:03:14 -04001455 break;
Trond Myklebust58d97142006-01-03 09:55:24 +01001456 nfs4_schedule_state_recovery(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001457 }
1458 return 0;
Trond Myklebust58d97142006-01-03 09:55:24 +01001459}
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461/*
1462 * OPEN_EXPIRED:
1463 * reclaim state on the server after a network partition.
1464 * Assumes caller holds the appropriate lock
1465 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001466static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001468 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001469 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001471 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1472 if (IS_ERR(opendata))
1473 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001474 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04001475 if (ret == -ESTALE)
Trond Myklebust539cd032007-06-05 11:46:42 -04001476 d_drop(ctx->path.dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001477 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001478 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479}
1480
Trond Myklebust539cd032007-06-05 11:46:42 -04001481static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001482{
Trond Myklebust539cd032007-06-05 11:46:42 -04001483 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001484 struct nfs4_exception exception = { };
1485 int err;
1486
1487 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001488 err = _nfs4_open_expired(ctx, state);
Trond Myklebust027b6ca2008-12-23 16:04:13 -05001489 if (err != -NFS4ERR_DELAY)
1490 break;
1491 nfs4_handle_exception(server, err, &exception);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001492 } while (exception.retry);
1493 return err;
1494}
1495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1497{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001499 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Trond Myklebust864472e2006-01-03 09:55:15 +01001501 ctx = nfs4_state_find_open_context(state);
1502 if (IS_ERR(ctx))
1503 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001504 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001505 put_nfs_open_context(ctx);
1506 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
1508
1509/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001510 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1511 * fields corresponding to attributes that were used to store the verifier.
1512 * Make sure we clobber those fields in the later setattr call
1513 */
1514static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1515{
1516 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1517 !(sattr->ia_valid & ATTR_ATIME_SET))
1518 sattr->ia_valid |= ATTR_ATIME;
1519
1520 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1521 !(sattr->ia_valid & ATTR_MTIME_SET))
1522 sattr->ia_valid |= ATTR_MTIME;
1523}
1524
1525/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001526 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001528static 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 -07001529{
1530 struct nfs4_state_owner *sp;
1531 struct nfs4_state *state = NULL;
1532 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001533 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001534 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 status = -ENOMEM;
1538 if (!(sp = nfs4_get_state_owner(server, cred))) {
1539 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1540 goto out_err;
1541 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001542 status = nfs4_recover_expired_lease(server);
1543 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001544 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001545 if (path->dentry->d_inode != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001546 nfs4_return_incompatible_delegation(path->dentry->d_inode, fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01001547 status = -ENOMEM;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001548 opendata = nfs4_opendata_alloc(path, sp, fmode, flags, sattr);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001549 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05001550 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Trond Myklebustaac00a82007-07-05 19:02:21 -04001552 if (path->dentry->d_inode != NULL)
1553 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1554
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001555 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001557 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001559 if (opendata->o_arg.open_flags & O_EXCL)
1560 nfs4_exclusive_attrset(opendata, sattr);
1561
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001562 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001563 status = PTR_ERR(state);
1564 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001565 goto err_opendata_put;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001566 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 *res = state;
1569 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001570err_opendata_put:
1571 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001572err_put_state_owner:
1573 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 *res = NULL;
1576 return status;
1577}
1578
1579
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001580static 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 -07001581{
1582 struct nfs4_exception exception = { };
1583 struct nfs4_state *res;
1584 int status;
1585
1586 do {
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001587 status = _nfs4_do_open(dir, path, fmode, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 if (status == 0)
1589 break;
1590 /* NOTE: BAD_SEQID means the server and client disagree about the
1591 * book-keeping w.r.t. state-changing operations
1592 * (OPEN/CLOSE/LOCK/LOCKU...)
1593 * It is actually a sign of a bug on the client or on the server.
1594 *
1595 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001596 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 * have unhashed the old state_owner for us, and that we can
1598 * therefore safely retry using a new one. We should still warn
1599 * the user though...
1600 */
1601 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001602 printk(KERN_WARNING "NFS: v4 server %s "
1603 " returned a bad sequence-id error!\n",
1604 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 exception.retry = 1;
1606 continue;
1607 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001608 /*
1609 * BAD_STATEID on OPEN means that the server cancelled our
1610 * state before it received the OPEN_CONFIRM.
1611 * Recover by retrying the request as per the discussion
1612 * on Page 181 of RFC3530.
1613 */
1614 if (status == -NFS4ERR_BAD_STATEID) {
1615 exception.retry = 1;
1616 continue;
1617 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001618 if (status == -EAGAIN) {
1619 /* We must have found a delegation */
1620 exception.retry = 1;
1621 continue;
1622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1624 status, &exception));
1625 } while (exception.retry);
1626 return res;
1627}
1628
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001629static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1630 struct nfs_fattr *fattr, struct iattr *sattr,
1631 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001633 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001635 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 .iap = sattr,
1637 .server = server,
1638 .bitmask = server->attr_bitmask,
1639 };
1640 struct nfs_setattrres res = {
1641 .fattr = fattr,
1642 .server = server,
1643 };
1644 struct rpc_message msg = {
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001645 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1646 .rpc_argp = &arg,
1647 .rpc_resp = &res,
1648 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001650 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001651 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Trond Myklebust0e574af2005-10-27 22:12:38 -04001653 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001655 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1656 /* Use that stateid */
1657 } else if (state != NULL) {
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001658 nfs4_copy_stateid(&arg.stateid, state, current->files);
1659 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1661
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001662 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001663 if (status == 0 && state != NULL)
1664 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001665 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666}
1667
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001668static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1669 struct nfs_fattr *fattr, struct iattr *sattr,
1670 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001672 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 struct nfs4_exception exception = { };
1674 int err;
1675 do {
1676 err = nfs4_handle_exception(server,
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001677 _nfs4_do_setattr(inode, cred, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 &exception);
1679 } while (exception.retry);
1680 return err;
1681}
1682
1683struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001684 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 struct inode *inode;
1686 struct nfs4_state *state;
1687 struct nfs_closeargs arg;
1688 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001689 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001690 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691};
1692
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001693static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001694{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001695 struct nfs4_closedata *calldata = data;
1696 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001697
1698 nfs4_put_open_state(calldata->state);
1699 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001700 nfs4_put_state_owner(sp);
Jan Blunck31f31db12008-05-02 13:42:45 -07001701 path_put(&calldata->path);
Trond Myklebust95121352005-10-18 14:20:12 -07001702 kfree(calldata);
1703}
1704
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001705static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001707 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 struct nfs_server *server = NFS_SERVER(calldata->inode);
1710
Andy Adamson19ddab02009-04-01 09:22:20 -04001711 nfs4_sequence_done(server, &calldata->res.seq_res, task->tk_status);
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001712 if (RPC_ASSASSINATED(task))
1713 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 /* hmm. we are done with the inode, and in the process of freeing
1715 * the state_owner. we keep this around to process errors
1716 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 switch (task->tk_status) {
1718 case 0:
Trond Myklebust45328c32007-07-26 17:47:34 -04001719 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001720 renew_lease(server, calldata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 break;
1722 case -NFS4ERR_STALE_STATEID:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001723 case -NFS4ERR_OLD_STATEID:
1724 case -NFS4ERR_BAD_STATEID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 case -NFS4ERR_EXPIRED:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001726 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001727 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001729 if (nfs4_async_handle_error(task, server, state) == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04001730 nfs4_restart_rpc(task, server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 return;
1732 }
1733 }
Andy Adamson19ddab02009-04-01 09:22:20 -04001734 nfs4_sequence_free_slot(server->nfs_client, &calldata->res.seq_res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04001735 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736}
1737
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001738static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001740 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001741 struct nfs4_state *state = calldata->state;
Trond Myklebust003707c2007-07-05 18:07:55 -04001742 int clear_rd, clear_wr, clear_rdwr;
Trond Myklebust95121352005-10-18 14:20:12 -07001743
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001744 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001745 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001746
Trond Myklebust003707c2007-07-05 18:07:55 -04001747 clear_rd = clear_wr = clear_rdwr = 0;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001748 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001749 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001750 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001751 if (state->n_rdonly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001752 clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1753 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1754 }
1755 if (state->n_wronly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001756 clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1757 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1758 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001759 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001760 spin_unlock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001761 if (!clear_rd && !clear_wr && !clear_rdwr) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001762 /* Note: exit _without_ calling nfs4_close_done */
1763 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001764 return;
1765 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001766 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust45328c32007-07-26 17:47:34 -04001767 if (test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001768 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001769 calldata->arg.fmode = FMODE_READ;
Trond Myklebust45328c32007-07-26 17:47:34 -04001770 } else if (test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001771 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001772 calldata->arg.fmode = FMODE_WRITE;
Trond Myklebust45328c32007-07-26 17:47:34 -04001773 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001774 calldata->timestamp = jiffies;
Andy Adamson19ddab02009-04-01 09:22:20 -04001775 if (nfs4_setup_sequence((NFS_SERVER(calldata->inode))->nfs_client,
1776 &calldata->arg.seq_args, &calldata->res.seq_res,
1777 1, task))
1778 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001779 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780}
1781
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001782static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001783 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001784 .rpc_call_done = nfs4_close_done,
1785 .rpc_release = nfs4_free_closedata,
1786};
1787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788/*
1789 * It is possible for data to be read/written from a mem-mapped file
1790 * after the sys_close call (which hits the vfs layer as a flush).
1791 * This means that we can't safely call nfsv4 close on a file until
1792 * the inode is cleared. This in turn means that we are not good
1793 * NFSv4 citizens - we do not indicate to the server to update the file's
1794 * share state even when we are done with one of the three share
1795 * stateid's in the inode.
1796 *
1797 * NOTE: Caller must be holding the sp->so_owner semaphore!
1798 */
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001799int nfs4_do_close(struct path *path, struct nfs4_state *state, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001801 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001803 struct nfs4_state_owner *sp = state->owner;
1804 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001805 struct rpc_message msg = {
1806 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1807 .rpc_cred = state->owner->so_cred,
1808 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001809 struct rpc_task_setup task_setup_data = {
1810 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001811 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001812 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05001813 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001814 .flags = RPC_TASK_ASYNC,
1815 };
Trond Myklebust95121352005-10-18 14:20:12 -07001816 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Andy Adamson19ddab02009-04-01 09:22:20 -04001818 calldata = kzalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001820 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001821 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001823 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04001824 calldata->arg.stateid = &state->open_stateid;
Benny Halevy34dc1ad2009-04-01 09:22:52 -04001825 if (nfs4_has_session(server->nfs_client))
1826 memset(calldata->arg.stateid->data, 0, 4); /* clear seqid */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001828 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001829 if (calldata->arg.seqid == NULL)
1830 goto out_free_calldata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001831 calldata->arg.fmode = 0;
Trond Myklebusta65318b2009-03-11 14:10:28 -04001832 calldata->arg.bitmask = server->cache_consistency_bitmask;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001833 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04001834 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001835 calldata->res.server = server;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04001836 calldata->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001837 calldata->path.mnt = mntget(path->mnt);
1838 calldata->path.dentry = dget(path->dentry);
Trond Myklebust95121352005-10-18 14:20:12 -07001839
Trond Myklebust5138fde2007-07-14 15:40:01 -04001840 msg.rpc_argp = &calldata->arg,
1841 msg.rpc_resp = &calldata->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001842 task_setup_data.callback_data = calldata;
1843 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001844 if (IS_ERR(task))
1845 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001846 status = 0;
1847 if (wait)
1848 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001849 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001850 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07001851out_free_calldata:
1852 kfree(calldata);
1853out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04001854 nfs4_put_open_state(state);
1855 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07001856 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857}
1858
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001859static 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 -07001860{
1861 struct file *filp;
Trond Myklebust1b45c462007-07-03 13:04:56 -04001862 int ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001863
Trond Myklebust1b45c462007-07-03 13:04:56 -04001864 /* If the open_intent is for execute, we have an extra check to make */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001865 if (fmode & FMODE_EXEC) {
Trond Myklebustaf22f942007-08-10 17:45:10 -04001866 ret = nfs_may_open(state->inode,
Trond Myklebust1b45c462007-07-03 13:04:56 -04001867 state->owner->so_cred,
1868 nd->intent.open.flags);
1869 if (ret < 0)
1870 goto out_close;
1871 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001872 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001873 if (!IS_ERR(filp)) {
1874 struct nfs_open_context *ctx;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04001875 ctx = nfs_file_open_context(filp);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001876 ctx->state = state;
Trond Myklebust95cf9592006-04-18 13:14:06 -04001877 return 0;
1878 }
Trond Myklebust1b45c462007-07-03 13:04:56 -04001879 ret = PTR_ERR(filp);
1880out_close:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001881 nfs4_close_sync(path, state, fmode & (FMODE_READ|FMODE_WRITE));
Trond Myklebust1b45c462007-07-03 13:04:56 -04001882 return ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001883}
1884
1885struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1887{
Trond Myklebustad389da2007-06-05 12:30:00 -04001888 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001889 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001890 .dentry = dentry,
1891 };
Jan Blunck4ac91372008-02-14 19:34:32 -08001892 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 struct iattr attr;
1894 struct rpc_cred *cred;
1895 struct nfs4_state *state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001896 struct dentry *res;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001897 fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
1899 if (nd->flags & LOOKUP_CREATE) {
1900 attr.ia_mode = nd->intent.open.create_mode;
1901 attr.ia_valid = ATTR_MODE;
1902 if (!IS_POSIXACL(dir))
Al Viroce3b0f82009-03-29 19:08:22 -04001903 attr.ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 } else {
1905 attr.ia_valid = 0;
1906 BUG_ON(nd->intent.open.flags & O_CREAT);
1907 }
1908
Trond Myklebust98a8e322008-03-12 12:25:28 -04001909 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 if (IS_ERR(cred))
Trond Myklebust02a913a2005-10-18 14:20:17 -07001911 return (struct dentry *)cred;
Trond Myklebust565277f2007-10-15 18:17:53 -04001912 parent = dentry->d_parent;
1913 /* Protect against concurrent sillydeletes */
1914 nfs_block_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001915 state = nfs4_do_open(dir, &path, fmode, nd->intent.open.flags, &attr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001917 if (IS_ERR(state)) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001918 if (PTR_ERR(state) == -ENOENT) {
Trond Myklebust02a913a2005-10-18 14:20:17 -07001919 d_add(dentry, NULL);
Trond Myklebustd75340c2007-10-01 21:42:01 -04001920 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1921 }
Trond Myklebust565277f2007-10-15 18:17:53 -04001922 nfs_unblock_sillyrename(parent);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001923 return (struct dentry *)state;
1924 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001925 res = d_add_unique(dentry, igrab(state->inode));
Trond Myklebust02a913a2005-10-18 14:20:17 -07001926 if (res != NULL)
Trond Myklebustdeee9362007-08-27 11:33:00 -04001927 path.dentry = res;
Trond Myklebustd75340c2007-10-01 21:42:01 -04001928 nfs_set_verifier(path.dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001929 nfs_unblock_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001930 nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001931 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932}
1933
1934int
Trond Myklebust02a913a2005-10-18 14:20:17 -07001935nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936{
Trond Myklebustad389da2007-06-05 12:30:00 -04001937 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001938 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001939 .dentry = dentry,
1940 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 struct rpc_cred *cred;
1942 struct nfs4_state *state;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001943 fmode_t fmode = openflags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Trond Myklebust98a8e322008-03-12 12:25:28 -04001945 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (IS_ERR(cred))
1947 return PTR_ERR(cred);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001948 state = nfs4_do_open(dir, &path, fmode, openflags, NULL, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001950 if (IS_ERR(state)) {
1951 switch (PTR_ERR(state)) {
1952 case -EPERM:
1953 case -EACCES:
1954 case -EDQUOT:
1955 case -ENOSPC:
1956 case -EROFS:
1957 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1958 return 1;
Chuck Leverb87c0ad2006-10-19 23:28:42 -07001959 default:
1960 goto out_drop;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001961 }
Trond Myklebust02a913a2005-10-18 14:20:17 -07001962 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001963 if (state->inode == dentry->d_inode) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001964 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001965 nfs4_intent_set_file(nd, &path, state, fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return 1;
1967 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001968 nfs4_close_sync(&path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001969out_drop:
1970 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 return 0;
1972}
1973
Trond Myklebust7fe5c392009-03-19 15:35:50 -04001974void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
1975{
1976 if (ctx->state == NULL)
1977 return;
1978 if (is_sync)
1979 nfs4_close_sync(&ctx->path, ctx->state, ctx->mode);
1980 else
1981 nfs4_close_state(&ctx->path, ctx->state, ctx->mode);
1982}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1985{
Benny Halevy43652ad2009-04-01 09:21:54 -04001986 struct nfs4_server_caps_arg args = {
1987 .fhandle = fhandle,
1988 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 struct nfs4_server_caps_res res = {};
1990 struct rpc_message msg = {
1991 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
Benny Halevy43652ad2009-04-01 09:21:54 -04001992 .rpc_argp = &args,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 .rpc_resp = &res,
1994 };
1995 int status;
1996
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001997 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (status == 0) {
1999 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
2000 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
2001 server->caps |= NFS_CAP_ACLS;
2002 if (res.has_links != 0)
2003 server->caps |= NFS_CAP_HARDLINKS;
2004 if (res.has_symlinks != 0)
2005 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebusta65318b2009-03-11 14:10:28 -04002006 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
2007 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
2008 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 server->acl_bitmask = res.acl_bitmask;
2010 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 return status;
2013}
2014
Trond Myklebust55a97592006-06-09 09:34:19 -04002015int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
2017 struct nfs4_exception exception = { };
2018 int err;
2019 do {
2020 err = nfs4_handle_exception(server,
2021 _nfs4_server_capabilities(server, fhandle),
2022 &exception);
2023 } while (exception.retry);
2024 return err;
2025}
2026
2027static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2028 struct nfs_fsinfo *info)
2029{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 struct nfs4_lookup_root_arg args = {
2031 .bitmask = nfs4_fattr_bitmap,
2032 };
2033 struct nfs4_lookup_res res = {
2034 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04002035 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 .fh = fhandle,
2037 };
2038 struct rpc_message msg = {
2039 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
2040 .rpc_argp = &args,
2041 .rpc_resp = &res,
2042 };
Benny Halevy008f55d2009-04-01 09:22:50 -04002043
Trond Myklebust0e574af2005-10-27 22:12:38 -04002044 nfs_fattr_init(info->fattr);
Trond Myklebustfccba802009-07-21 16:48:07 -04002045 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046}
2047
2048static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2049 struct nfs_fsinfo *info)
2050{
2051 struct nfs4_exception exception = { };
2052 int err;
2053 do {
2054 err = nfs4_handle_exception(server,
2055 _nfs4_lookup_root(server, fhandle, info),
2056 &exception);
2057 } while (exception.retry);
2058 return err;
2059}
2060
David Howells54ceac42006-08-22 20:06:13 -04002061/*
2062 * get the file handle for the "/" directory on the server
2063 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04002065 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 int status;
2068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 if (status == 0)
2071 status = nfs4_server_capabilities(server, fhandle);
2072 if (status == 0)
2073 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08002074 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075}
2076
Manoj Naik6b97fd32006-06-09 09:34:29 -04002077/*
2078 * Get locations and (maybe) other attributes of a referral.
2079 * Note that we'll actually follow the referral later when
2080 * we detect fsid mismatch in inode revalidation
2081 */
Trond Myklebust56659e92007-07-17 21:52:39 -04002082static 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 -04002083{
2084 int status = -ENOMEM;
2085 struct page *page = NULL;
2086 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04002087
2088 page = alloc_page(GFP_KERNEL);
2089 if (page == NULL)
2090 goto out;
2091 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
2092 if (locations == NULL)
2093 goto out;
2094
Trond Myklebustc228fd32007-01-13 02:28:11 -05002095 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002096 if (status != 0)
2097 goto out;
2098 /* Make sure server returned a different fsid for the referral */
2099 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07002100 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 -04002101 status = -EIO;
2102 goto out;
2103 }
2104
2105 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
2106 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
2107 if (!fattr->mode)
2108 fattr->mode = S_IFDIR;
2109 memset(fhandle, 0, sizeof(struct nfs_fh));
2110out:
2111 if (page)
2112 __free_page(page);
2113 if (locations)
2114 kfree(locations);
2115 return status;
2116}
2117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2119{
2120 struct nfs4_getattr_arg args = {
2121 .fh = fhandle,
2122 .bitmask = server->attr_bitmask,
2123 };
2124 struct nfs4_getattr_res res = {
2125 .fattr = fattr,
2126 .server = server,
2127 };
2128 struct rpc_message msg = {
2129 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
2130 .rpc_argp = &args,
2131 .rpc_resp = &res,
2132 };
2133
Trond Myklebust0e574af2005-10-27 22:12:38 -04002134 nfs_fattr_init(fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002135 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136}
2137
2138static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2139{
2140 struct nfs4_exception exception = { };
2141 int err;
2142 do {
2143 err = nfs4_handle_exception(server,
2144 _nfs4_proc_getattr(server, fhandle, fattr),
2145 &exception);
2146 } while (exception.retry);
2147 return err;
2148}
2149
2150/*
2151 * The file is not closed if it is opened due to the a request to change
2152 * the size of the file. The open call will not be needed once the
2153 * VFS layer lookup-intents are implemented.
2154 *
2155 * Close is called when the inode is destroyed.
2156 * If we haven't opened the file for O_WRONLY, we
2157 * need to in the size_change case to obtain a stateid.
2158 *
2159 * Got race?
2160 * Because OPEN is always done by name in nfsv4, it is
2161 * possible that we opened a different file by the same
2162 * name. We can recognize this race condition, but we
2163 * can't do anything about it besides returning an error.
2164 *
2165 * This will be fixed with VFS changes (lookup-intent).
2166 */
2167static int
2168nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
2169 struct iattr *sattr)
2170{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002171 struct inode *inode = dentry->d_inode;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002172 struct rpc_cred *cred = NULL;
Trond Myklebustd5308382005-11-04 15:33:38 -05002173 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 int status;
2175
Trond Myklebust0e574af2005-10-27 22:12:38 -04002176 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Trond Myklebustd5308382005-11-04 15:33:38 -05002178 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002179 if (sattr->ia_valid & ATTR_FILE) {
2180 struct nfs_open_context *ctx;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002181
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002182 ctx = nfs_file_open_context(sattr->ia_file);
Neil Brown504e5182008-10-16 14:15:16 +11002183 if (ctx) {
2184 cred = ctx->cred;
2185 state = ctx->state;
2186 }
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002187 }
2188
2189 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04002190 if (status == 0)
2191 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 return status;
2193}
2194
Trond Myklebust56659e92007-07-17 21:52:39 -04002195static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
2196 const struct qstr *name, struct nfs_fh *fhandle,
David Howells2b3de442006-08-22 20:06:09 -04002197 struct nfs_fattr *fattr)
2198{
2199 int status;
2200 struct nfs4_lookup_arg args = {
2201 .bitmask = server->attr_bitmask,
2202 .dir_fh = dirfh,
2203 .name = name,
2204 };
2205 struct nfs4_lookup_res res = {
2206 .server = server,
2207 .fattr = fattr,
2208 .fh = fhandle,
2209 };
2210 struct rpc_message msg = {
2211 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
2212 .rpc_argp = &args,
2213 .rpc_resp = &res,
2214 };
2215
2216 nfs_fattr_init(fattr);
2217
2218 dprintk("NFS call lookupfh %s\n", name->name);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002219 status = nfs4_call_sync(server, &msg, &args, &res, 0);
David Howells2b3de442006-08-22 20:06:09 -04002220 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04002221 return status;
2222}
2223
2224static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
2225 struct qstr *name, struct nfs_fh *fhandle,
2226 struct nfs_fattr *fattr)
2227{
2228 struct nfs4_exception exception = { };
2229 int err;
2230 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04002231 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
2232 /* FIXME: !!!! */
2233 if (err == -NFS4ERR_MOVED) {
2234 err = -EREMOTE;
2235 break;
2236 }
2237 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04002238 } while (exception.retry);
2239 return err;
2240}
2241
Trond Myklebust56659e92007-07-17 21:52:39 -04002242static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2244{
Trond Myklebust4e56e082007-07-01 18:13:52 -04002245 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
2247 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04002248 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002249 if (status == -NFS4ERR_MOVED)
2250 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 dprintk("NFS reply lookup: %d\n", status);
2252 return status;
2253}
2254
2255static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2256{
2257 struct nfs4_exception exception = { };
2258 int err;
2259 do {
2260 err = nfs4_handle_exception(NFS_SERVER(dir),
2261 _nfs4_proc_lookup(dir, name, fhandle, fattr),
2262 &exception);
2263 } while (exception.retry);
2264 return err;
2265}
2266
2267static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2268{
Trond Myklebust76b32992007-08-10 17:45:11 -04002269 struct nfs_server *server = NFS_SERVER(inode);
2270 struct nfs_fattr fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 struct nfs4_accessargs args = {
2272 .fh = NFS_FH(inode),
Trond Myklebust76b32992007-08-10 17:45:11 -04002273 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 };
Trond Myklebust76b32992007-08-10 17:45:11 -04002275 struct nfs4_accessres res = {
2276 .server = server,
2277 .fattr = &fattr,
2278 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 struct rpc_message msg = {
2280 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
2281 .rpc_argp = &args,
2282 .rpc_resp = &res,
2283 .rpc_cred = entry->cred,
2284 };
2285 int mode = entry->mask;
2286 int status;
2287
2288 /*
2289 * Determine which access bits we want to ask for...
2290 */
2291 if (mode & MAY_READ)
2292 args.access |= NFS4_ACCESS_READ;
2293 if (S_ISDIR(inode->i_mode)) {
2294 if (mode & MAY_WRITE)
2295 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
2296 if (mode & MAY_EXEC)
2297 args.access |= NFS4_ACCESS_LOOKUP;
2298 } else {
2299 if (mode & MAY_WRITE)
2300 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
2301 if (mode & MAY_EXEC)
2302 args.access |= NFS4_ACCESS_EXECUTE;
2303 }
Trond Myklebust76b32992007-08-10 17:45:11 -04002304 nfs_fattr_init(&fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002305 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 if (!status) {
2307 entry->mask = 0;
2308 if (res.access & NFS4_ACCESS_READ)
2309 entry->mask |= MAY_READ;
2310 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
2311 entry->mask |= MAY_WRITE;
2312 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
2313 entry->mask |= MAY_EXEC;
Trond Myklebust76b32992007-08-10 17:45:11 -04002314 nfs_refresh_inode(inode, &fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 }
2316 return status;
2317}
2318
2319static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2320{
2321 struct nfs4_exception exception = { };
2322 int err;
2323 do {
2324 err = nfs4_handle_exception(NFS_SERVER(inode),
2325 _nfs4_proc_access(inode, entry),
2326 &exception);
2327 } while (exception.retry);
2328 return err;
2329}
2330
2331/*
2332 * TODO: For the time being, we don't try to get any attributes
2333 * along with any of the zero-copy operations READ, READDIR,
2334 * READLINK, WRITE.
2335 *
2336 * In the case of the first three, we want to put the GETATTR
2337 * after the read-type operation -- this is because it is hard
2338 * to predict the length of a GETATTR response in v4, and thus
2339 * align the READ data correctly. This means that the GETATTR
2340 * may end up partially falling into the page cache, and we should
2341 * shift it into the 'tail' of the xdr_buf before processing.
2342 * To do this efficiently, we need to know the total length
2343 * of data received, which doesn't seem to be available outside
2344 * of the RPC layer.
2345 *
2346 * In the case of WRITE, we also want to put the GETATTR after
2347 * the operation -- in this case because we want to make sure
2348 * we get the post-operation mtime and size. This means that
2349 * we can't use xdr_encode_pages() as written: we need a variant
2350 * of it which would leave room in the 'tail' iovec.
2351 *
2352 * Both of these changes to the XDR layer would in fact be quite
2353 * minor, but I decided to leave them for a subsequent patch.
2354 */
2355static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
2356 unsigned int pgbase, unsigned int pglen)
2357{
2358 struct nfs4_readlink args = {
2359 .fh = NFS_FH(inode),
2360 .pgbase = pgbase,
2361 .pglen = pglen,
2362 .pages = &page,
2363 };
Benny Halevyf50c7002009-04-01 09:21:55 -04002364 struct nfs4_readlink_res res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 struct rpc_message msg = {
2366 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
2367 .rpc_argp = &args,
Benny Halevyf50c7002009-04-01 09:21:55 -04002368 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 };
2370
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002371 return nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372}
2373
2374static int nfs4_proc_readlink(struct inode *inode, struct page *page,
2375 unsigned int pgbase, unsigned int pglen)
2376{
2377 struct nfs4_exception exception = { };
2378 int err;
2379 do {
2380 err = nfs4_handle_exception(NFS_SERVER(inode),
2381 _nfs4_proc_readlink(inode, page, pgbase, pglen),
2382 &exception);
2383 } while (exception.retry);
2384 return err;
2385}
2386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387/*
2388 * Got race?
2389 * We will need to arrange for the VFS layer to provide an atomic open.
2390 * Until then, this create/open method is prone to inefficiency and race
2391 * conditions due to the lookup, create, and open VFS calls from sys_open()
2392 * placed on the wire.
2393 *
2394 * Given the above sorry state of affairs, I'm simply sending an OPEN.
2395 * The file will be opened again in the subsequent VFS open call
2396 * (nfs4_proc_file_open).
2397 *
2398 * The open for read will just hang around to be used by any process that
2399 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
2400 */
2401
2402static int
2403nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07002404 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405{
Trond Myklebustad389da2007-06-05 12:30:00 -04002406 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08002407 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04002408 .dentry = dentry,
2409 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 struct nfs4_state *state;
2411 struct rpc_cred *cred;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002412 fmode_t fmode = flags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 int status = 0;
2414
Trond Myklebust98a8e322008-03-12 12:25:28 -04002415 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 if (IS_ERR(cred)) {
2417 status = PTR_ERR(cred);
2418 goto out;
2419 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002420 state = nfs4_do_open(dir, &path, fmode, flags, sattr, cred);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002421 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 if (IS_ERR(state)) {
2423 status = PTR_ERR(state);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002424 goto out_putcred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002426 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04002427 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 if (flags & O_EXCL) {
2429 struct nfs_fattr fattr;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002430 status = nfs4_do_setattr(state->inode, cred, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002431 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04002432 nfs_setattr_update_inode(state->inode, sattr);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002433 nfs_post_op_update_inode(state->inode, &fattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002434 }
Trond Myklebustad389da2007-06-05 12:30:00 -04002435 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002436 status = nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002437 else
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002438 nfs4_close_sync(&path, state, fmode);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002439out_putcred:
2440 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441out:
2442 return status;
2443}
2444
2445static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
2446{
Trond Myklebust16e42952005-10-27 22:12:44 -04002447 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002448 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 .fh = NFS_FH(dir),
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002450 .name.len = name->len,
2451 .name.name = name->name,
Trond Myklebust16e42952005-10-27 22:12:44 -04002452 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002454 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04002455 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04002456 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002458 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
2459 .rpc_argp = &args,
2460 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 };
2462 int status;
2463
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002464 nfs_fattr_init(&res.dir_attr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002465 status = nfs4_call_sync(server, &msg, &args, &res, 1);
Trond Myklebust16e42952005-10-27 22:12:44 -04002466 if (status == 0) {
2467 update_changeattr(dir, &res.cinfo);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002468 nfs_post_op_update_inode(dir, &res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04002469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 return status;
2471}
2472
2473static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
2474{
2475 struct nfs4_exception exception = { };
2476 int err;
2477 do {
2478 err = nfs4_handle_exception(NFS_SERVER(dir),
2479 _nfs4_proc_remove(dir, name),
2480 &exception);
2481 } while (exception.retry);
2482 return err;
2483}
2484
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002485static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002487 struct nfs_server *server = NFS_SERVER(dir);
2488 struct nfs_removeargs *args = msg->rpc_argp;
2489 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Trond Myklebusta65318b2009-03-11 14:10:28 -04002491 args->bitmask = server->cache_consistency_bitmask;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002492 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494}
2495
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002496static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002498 struct nfs_removeres *res = task->tk_msg.rpc_resp;
2499
Andy Adamson472cfbd2009-04-01 09:22:24 -04002500 nfs4_sequence_done(res->server, &res->seq_res, task->tk_status);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002501 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002502 return 0;
Andy Adamson472cfbd2009-04-01 09:22:24 -04002503 nfs4_sequence_free_slot(res->server->nfs_client, &res->seq_res);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002504 update_changeattr(dir, &res->cinfo);
2505 nfs_post_op_update_inode(dir, &res->dir_attr);
2506 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507}
2508
2509static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2510 struct inode *new_dir, struct qstr *new_name)
2511{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002512 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 struct nfs4_rename_arg arg = {
2514 .old_dir = NFS_FH(old_dir),
2515 .new_dir = NFS_FH(new_dir),
2516 .old_name = old_name,
2517 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002518 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002520 struct nfs_fattr old_fattr, new_fattr;
2521 struct nfs4_rename_res res = {
2522 .server = server,
2523 .old_fattr = &old_fattr,
2524 .new_fattr = &new_fattr,
2525 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 struct rpc_message msg = {
2527 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2528 .rpc_argp = &arg,
2529 .rpc_resp = &res,
2530 };
2531 int status;
2532
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002533 nfs_fattr_init(res.old_fattr);
2534 nfs_fattr_init(res.new_fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002535 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
2537 if (!status) {
2538 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002539 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002541 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 }
2543 return status;
2544}
2545
2546static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2547 struct inode *new_dir, struct qstr *new_name)
2548{
2549 struct nfs4_exception exception = { };
2550 int err;
2551 do {
2552 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2553 _nfs4_proc_rename(old_dir, old_name,
2554 new_dir, new_name),
2555 &exception);
2556 } while (exception.retry);
2557 return err;
2558}
2559
2560static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2561{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002562 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 struct nfs4_link_arg arg = {
2564 .fh = NFS_FH(inode),
2565 .dir_fh = NFS_FH(dir),
2566 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002567 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002569 struct nfs_fattr fattr, dir_attr;
2570 struct nfs4_link_res res = {
2571 .server = server,
2572 .fattr = &fattr,
2573 .dir_attr = &dir_attr,
2574 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 struct rpc_message msg = {
2576 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2577 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002578 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 };
2580 int status;
2581
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002582 nfs_fattr_init(res.fattr);
2583 nfs_fattr_init(res.dir_attr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002584 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002585 if (!status) {
2586 update_changeattr(dir, &res.cinfo);
2587 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002588 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
2591 return status;
2592}
2593
2594static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2595{
2596 struct nfs4_exception exception = { };
2597 int err;
2598 do {
2599 err = nfs4_handle_exception(NFS_SERVER(inode),
2600 _nfs4_proc_link(inode, dir, name),
2601 &exception);
2602 } while (exception.retry);
2603 return err;
2604}
2605
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002606struct nfs4_createdata {
2607 struct rpc_message msg;
2608 struct nfs4_create_arg arg;
2609 struct nfs4_create_res res;
2610 struct nfs_fh fh;
2611 struct nfs_fattr fattr;
2612 struct nfs_fattr dir_fattr;
2613};
2614
2615static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2616 struct qstr *name, struct iattr *sattr, u32 ftype)
2617{
2618 struct nfs4_createdata *data;
2619
2620 data = kzalloc(sizeof(*data), GFP_KERNEL);
2621 if (data != NULL) {
2622 struct nfs_server *server = NFS_SERVER(dir);
2623
2624 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2625 data->msg.rpc_argp = &data->arg;
2626 data->msg.rpc_resp = &data->res;
2627 data->arg.dir_fh = NFS_FH(dir);
2628 data->arg.server = server;
2629 data->arg.name = name;
2630 data->arg.attrs = sattr;
2631 data->arg.ftype = ftype;
2632 data->arg.bitmask = server->attr_bitmask;
2633 data->res.server = server;
2634 data->res.fh = &data->fh;
2635 data->res.fattr = &data->fattr;
2636 data->res.dir_fattr = &data->dir_fattr;
2637 nfs_fattr_init(data->res.fattr);
2638 nfs_fattr_init(data->res.dir_fattr);
2639 }
2640 return data;
2641}
2642
2643static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2644{
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002645 int status = nfs4_call_sync(NFS_SERVER(dir), &data->msg,
2646 &data->arg, &data->res, 1);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002647 if (status == 0) {
2648 update_changeattr(dir, &data->res.dir_cinfo);
2649 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2650 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2651 }
2652 return status;
2653}
2654
2655static void nfs4_free_createdata(struct nfs4_createdata *data)
2656{
2657 kfree(data);
2658}
2659
Chuck Lever4f390c12006-08-22 20:06:22 -04002660static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002661 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002663 struct nfs4_createdata *data;
2664 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
Chuck Lever94a6d752006-08-22 20:06:23 -04002666 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002667 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04002668
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002669 status = -ENOMEM;
2670 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2671 if (data == NULL)
2672 goto out;
2673
2674 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2675 data->arg.u.symlink.pages = &page;
2676 data->arg.u.symlink.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002678 status = nfs4_do_create(dir, dentry, data);
2679
2680 nfs4_free_createdata(data);
2681out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 return status;
2683}
2684
Chuck Lever4f390c12006-08-22 20:06:22 -04002685static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002686 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
2688 struct nfs4_exception exception = { };
2689 int err;
2690 do {
2691 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002692 _nfs4_proc_symlink(dir, dentry, page,
2693 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 &exception);
2695 } while (exception.retry);
2696 return err;
2697}
2698
2699static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2700 struct iattr *sattr)
2701{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002702 struct nfs4_createdata *data;
2703 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002705 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2706 if (data == NULL)
2707 goto out;
2708
2709 status = nfs4_do_create(dir, dentry, data);
2710
2711 nfs4_free_createdata(data);
2712out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 return status;
2714}
2715
2716static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2717 struct iattr *sattr)
2718{
2719 struct nfs4_exception exception = { };
2720 int err;
2721 do {
2722 err = nfs4_handle_exception(NFS_SERVER(dir),
2723 _nfs4_proc_mkdir(dir, dentry, sattr),
2724 &exception);
2725 } while (exception.retry);
2726 return err;
2727}
2728
2729static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2730 u64 cookie, struct page *page, unsigned int count, int plus)
2731{
2732 struct inode *dir = dentry->d_inode;
2733 struct nfs4_readdir_arg args = {
2734 .fh = NFS_FH(dir),
2735 .pages = &page,
2736 .pgbase = 0,
2737 .count = count,
Trond Myklebusta65318b2009-03-11 14:10:28 -04002738 .bitmask = NFS_SERVER(dentry->d_inode)->cache_consistency_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 };
2740 struct nfs4_readdir_res res;
2741 struct rpc_message msg = {
2742 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2743 .rpc_argp = &args,
2744 .rpc_resp = &res,
2745 .rpc_cred = cred,
2746 };
2747 int status;
2748
Harvey Harrison3110ff82008-05-02 13:42:44 -07002749 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00002750 dentry->d_parent->d_name.name,
2751 dentry->d_name.name,
2752 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2754 res.pgbase = args.pgbase;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002755 status = nfs4_call_sync(NFS_SERVER(dir), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 if (status == 0)
2757 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustc4812992007-09-28 17:11:45 -04002758
2759 nfs_invalidate_atime(dir);
2760
Harvey Harrison3110ff82008-05-02 13:42:44 -07002761 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 return status;
2763}
2764
2765static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2766 u64 cookie, struct page *page, unsigned int count, int plus)
2767{
2768 struct nfs4_exception exception = { };
2769 int err;
2770 do {
2771 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2772 _nfs4_proc_readdir(dentry, cred, cookie,
2773 page, count, plus),
2774 &exception);
2775 } while (exception.retry);
2776 return err;
2777}
2778
2779static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2780 struct iattr *sattr, dev_t rdev)
2781{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002782 struct nfs4_createdata *data;
2783 int mode = sattr->ia_mode;
2784 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
2786 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2787 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002788
2789 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
2790 if (data == NULL)
2791 goto out;
2792
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002794 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002796 data->arg.ftype = NF4BLK;
2797 data->arg.u.device.specdata1 = MAJOR(rdev);
2798 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 }
2800 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002801 data->arg.ftype = NF4CHR;
2802 data->arg.u.device.specdata1 = MAJOR(rdev);
2803 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002806 status = nfs4_do_create(dir, dentry, data);
2807
2808 nfs4_free_createdata(data);
2809out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 return status;
2811}
2812
2813static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2814 struct iattr *sattr, dev_t rdev)
2815{
2816 struct nfs4_exception exception = { };
2817 int err;
2818 do {
2819 err = nfs4_handle_exception(NFS_SERVER(dir),
2820 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2821 &exception);
2822 } while (exception.retry);
2823 return err;
2824}
2825
2826static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2827 struct nfs_fsstat *fsstat)
2828{
2829 struct nfs4_statfs_arg args = {
2830 .fh = fhandle,
2831 .bitmask = server->attr_bitmask,
2832 };
Benny Halevy24ad1482009-04-01 09:21:56 -04002833 struct nfs4_statfs_res res = {
2834 .fsstat = fsstat,
2835 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 struct rpc_message msg = {
2837 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2838 .rpc_argp = &args,
Benny Halevy24ad1482009-04-01 09:21:56 -04002839 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 };
2841
Trond Myklebust0e574af2005-10-27 22:12:38 -04002842 nfs_fattr_init(fsstat->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002843 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844}
2845
2846static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2847{
2848 struct nfs4_exception exception = { };
2849 int err;
2850 do {
2851 err = nfs4_handle_exception(server,
2852 _nfs4_proc_statfs(server, fhandle, fsstat),
2853 &exception);
2854 } while (exception.retry);
2855 return err;
2856}
2857
2858static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2859 struct nfs_fsinfo *fsinfo)
2860{
2861 struct nfs4_fsinfo_arg args = {
2862 .fh = fhandle,
2863 .bitmask = server->attr_bitmask,
2864 };
Benny Halevy3dda5e42009-04-01 09:21:57 -04002865 struct nfs4_fsinfo_res res = {
2866 .fsinfo = fsinfo,
2867 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 struct rpc_message msg = {
2869 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2870 .rpc_argp = &args,
Benny Halevy3dda5e42009-04-01 09:21:57 -04002871 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 };
2873
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002874 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875}
2876
2877static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2878{
2879 struct nfs4_exception exception = { };
2880 int err;
2881
2882 do {
2883 err = nfs4_handle_exception(server,
2884 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2885 &exception);
2886 } while (exception.retry);
2887 return err;
2888}
2889
2890static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2891{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002892 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2894}
2895
2896static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2897 struct nfs_pathconf *pathconf)
2898{
2899 struct nfs4_pathconf_arg args = {
2900 .fh = fhandle,
2901 .bitmask = server->attr_bitmask,
2902 };
Benny Halevyd45b2982009-04-01 09:21:58 -04002903 struct nfs4_pathconf_res res = {
2904 .pathconf = pathconf,
2905 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 struct rpc_message msg = {
2907 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2908 .rpc_argp = &args,
Benny Halevyd45b2982009-04-01 09:21:58 -04002909 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 };
2911
2912 /* None of the pathconf attributes are mandatory to implement */
2913 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2914 memset(pathconf, 0, sizeof(*pathconf));
2915 return 0;
2916 }
2917
Trond Myklebust0e574af2005-10-27 22:12:38 -04002918 nfs_fattr_init(pathconf->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002919 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920}
2921
2922static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2923 struct nfs_pathconf *pathconf)
2924{
2925 struct nfs4_exception exception = { };
2926 int err;
2927
2928 do {
2929 err = nfs4_handle_exception(server,
2930 _nfs4_proc_pathconf(server, fhandle, pathconf),
2931 &exception);
2932 } while (exception.retry);
2933 return err;
2934}
2935
Trond Myklebustec06c092006-03-20 13:44:27 -05002936static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937{
Trond Myklebustec06c092006-03-20 13:44:27 -05002938 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
Andy Adamsonf11c88a2009-04-01 09:22:25 -04002940 dprintk("--> %s\n", __func__);
2941
2942 /* nfs4_sequence_free_slot called in the read rpc_call_done */
2943 nfs4_sequence_done(server, &data->res.seq_res, task->tk_status);
2944
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002945 if (nfs4_async_handle_error(task, server, data->args.context->state) == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04002946 nfs4_restart_rpc(task, server->nfs_client);
Trond Myklebustec06c092006-03-20 13:44:27 -05002947 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 }
Trond Myklebust8850df92007-09-28 17:20:07 -04002949
2950 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002952 renew_lease(server, data->timestamp);
2953 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954}
2955
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002956static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 data->timestamp = jiffies;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002959 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960}
2961
Trond Myklebust788e7a82006-03-20 13:44:27 -05002962static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 struct inode *inode = data->inode;
2965
Andy Adamsondef6ed72009-04-01 09:22:26 -04002966 /* slot is freed in nfs_writeback_done */
2967 nfs4_sequence_done(NFS_SERVER(inode), &data->res.seq_res,
2968 task->tk_status);
2969
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002970 if (nfs4_async_handle_error(task, NFS_SERVER(inode), data->args.context->state) == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04002971 nfs4_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002972 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002974 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust70ca8852007-09-30 15:21:24 -04002976 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002977 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05002978 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979}
2980
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002981static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982{
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002983 struct nfs_server *server = NFS_SERVER(data->inode);
2984
Trond Myklebusta65318b2009-03-11 14:10:28 -04002985 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002986 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 data->timestamp = jiffies;
2988
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002989 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990}
2991
Trond Myklebust788e7a82006-03-20 13:44:27 -05002992static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 struct inode *inode = data->inode;
2995
Andy Adamson21d9a852009-04-01 09:22:27 -04002996 nfs4_sequence_done(NFS_SERVER(inode), &data->res.seq_res,
2997 task->tk_status);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002998 if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04002999 nfs4_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003000 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 }
Andy Adamson21d9a852009-04-01 09:22:27 -04003002 nfs4_sequence_free_slot(NFS_SERVER(inode)->nfs_client,
3003 &data->res.seq_res);
Trond Myklebust9e08a3c2007-10-08 14:10:31 -04003004 nfs_refresh_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003005 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006}
3007
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003008static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
Trond Myklebust788e7a82006-03-20 13:44:27 -05003010 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Trond Myklebusta65318b2009-03-11 14:10:28 -04003012 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003013 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003014 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015}
3016
3017/*
3018 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
3019 * standalone procedure for queueing an asynchronous RENEW.
3020 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003021static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022{
David Howellsadfa6f92006-08-22 20:06:08 -04003023 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003024 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
3026 if (task->tk_status < 0) {
Trond Myklebust95baa252009-05-26 14:51:00 -04003027 /* Unless we're shutting down, schedule state recovery! */
3028 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) != 0)
3029 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 return;
3031 }
3032 spin_lock(&clp->cl_lock);
3033 if (time_before(clp->cl_last_renewal,timestamp))
3034 clp->cl_last_renewal = timestamp;
3035 spin_unlock(&clp->cl_lock);
Benny Halevy29fba382009-04-01 09:22:44 -04003036 dprintk("%s calling put_rpccred on rpc_cred %p\n", __func__,
3037 task->tk_msg.rpc_cred);
3038 put_rpccred(task->tk_msg.rpc_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039}
3040
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003041static const struct rpc_call_ops nfs4_renew_ops = {
3042 .rpc_call_done = nfs4_renew_done,
3043};
3044
David Howellsadfa6f92006-08-22 20:06:08 -04003045int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046{
3047 struct rpc_message msg = {
3048 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3049 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003050 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 };
3052
3053 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003054 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055}
3056
David Howellsadfa6f92006-08-22 20:06:08 -04003057int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058{
3059 struct rpc_message msg = {
3060 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3061 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003062 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 };
3064 unsigned long now = jiffies;
3065 int status;
3066
3067 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3068 if (status < 0)
3069 return status;
3070 spin_lock(&clp->cl_lock);
3071 if (time_before(clp->cl_last_renewal,now))
3072 clp->cl_last_renewal = now;
3073 spin_unlock(&clp->cl_lock);
3074 return 0;
3075}
3076
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003077static inline int nfs4_server_supports_acls(struct nfs_server *server)
3078{
3079 return (server->caps & NFS_CAP_ACLS)
3080 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
3081 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
3082}
3083
3084/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
3085 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
3086 * the stack.
3087 */
3088#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
3089
3090static void buf_to_pages(const void *buf, size_t buflen,
3091 struct page **pages, unsigned int *pgbase)
3092{
3093 const void *p = buf;
3094
3095 *pgbase = offset_in_page(buf);
3096 p -= *pgbase;
3097 while (p < buf + buflen) {
3098 *(pages++) = virt_to_page(p);
3099 p += PAGE_CACHE_SIZE;
3100 }
3101}
3102
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003103struct nfs4_cached_acl {
3104 int cached;
3105 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00003106 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003107};
3108
3109static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003110{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003111 struct nfs_inode *nfsi = NFS_I(inode);
3112
3113 spin_lock(&inode->i_lock);
3114 kfree(nfsi->nfs4_acl);
3115 nfsi->nfs4_acl = acl;
3116 spin_unlock(&inode->i_lock);
3117}
3118
3119static void nfs4_zap_acl_attr(struct inode *inode)
3120{
3121 nfs4_set_cached_acl(inode, NULL);
3122}
3123
3124static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
3125{
3126 struct nfs_inode *nfsi = NFS_I(inode);
3127 struct nfs4_cached_acl *acl;
3128 int ret = -ENOENT;
3129
3130 spin_lock(&inode->i_lock);
3131 acl = nfsi->nfs4_acl;
3132 if (acl == NULL)
3133 goto out;
3134 if (buf == NULL) /* user is just asking for length */
3135 goto out_len;
3136 if (acl->cached == 0)
3137 goto out;
3138 ret = -ERANGE; /* see getxattr(2) man page */
3139 if (acl->len > buflen)
3140 goto out;
3141 memcpy(buf, acl->data, acl->len);
3142out_len:
3143 ret = acl->len;
3144out:
3145 spin_unlock(&inode->i_lock);
3146 return ret;
3147}
3148
3149static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
3150{
3151 struct nfs4_cached_acl *acl;
3152
3153 if (buf && acl_len <= PAGE_SIZE) {
3154 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
3155 if (acl == NULL)
3156 goto out;
3157 acl->cached = 1;
3158 memcpy(acl->data, buf, acl_len);
3159 } else {
3160 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
3161 if (acl == NULL)
3162 goto out;
3163 acl->cached = 0;
3164 }
3165 acl->len = acl_len;
3166out:
3167 nfs4_set_cached_acl(inode, acl);
3168}
3169
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003170static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003171{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003172 struct page *pages[NFS4ACL_MAXPAGES];
3173 struct nfs_getaclargs args = {
3174 .fh = NFS_FH(inode),
3175 .acl_pages = pages,
3176 .acl_len = buflen,
3177 };
Benny Halevy663c79b2009-04-01 09:21:59 -04003178 struct nfs_getaclres res = {
3179 .acl_len = buflen,
3180 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003181 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003182 struct rpc_message msg = {
3183 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
3184 .rpc_argp = &args,
Benny Halevy663c79b2009-04-01 09:21:59 -04003185 .rpc_resp = &res,
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003186 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003187 struct page *localpage = NULL;
3188 int ret;
3189
3190 if (buflen < PAGE_SIZE) {
3191 /* As long as we're doing a round trip to the server anyway,
3192 * let's be prepared for a page of acl data. */
3193 localpage = alloc_page(GFP_KERNEL);
3194 resp_buf = page_address(localpage);
3195 if (localpage == NULL)
3196 return -ENOMEM;
3197 args.acl_pages[0] = localpage;
3198 args.acl_pgbase = 0;
Benny Halevy663c79b2009-04-01 09:21:59 -04003199 args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003200 } else {
3201 resp_buf = buf;
3202 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
3203 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003204 ret = nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003205 if (ret)
3206 goto out_free;
Benny Halevy663c79b2009-04-01 09:21:59 -04003207 if (res.acl_len > args.acl_len)
3208 nfs4_write_cached_acl(inode, NULL, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003209 else
Benny Halevy663c79b2009-04-01 09:21:59 -04003210 nfs4_write_cached_acl(inode, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003211 if (buf) {
3212 ret = -ERANGE;
Benny Halevy663c79b2009-04-01 09:21:59 -04003213 if (res.acl_len > buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003214 goto out_free;
3215 if (localpage)
Benny Halevy663c79b2009-04-01 09:21:59 -04003216 memcpy(buf, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003217 }
Benny Halevy663c79b2009-04-01 09:21:59 -04003218 ret = res.acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003219out_free:
3220 if (localpage)
3221 __free_page(localpage);
3222 return ret;
3223}
3224
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003225static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
3226{
3227 struct nfs4_exception exception = { };
3228 ssize_t ret;
3229 do {
3230 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
3231 if (ret >= 0)
3232 break;
3233 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
3234 } while (exception.retry);
3235 return ret;
3236}
3237
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003238static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
3239{
3240 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003241 int ret;
3242
3243 if (!nfs4_server_supports_acls(server))
3244 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003245 ret = nfs_revalidate_inode(server, inode);
3246 if (ret < 0)
3247 return ret;
3248 ret = nfs4_read_cached_acl(inode, buf, buflen);
3249 if (ret != -ENOENT)
3250 return ret;
3251 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003252}
3253
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003254static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003255{
3256 struct nfs_server *server = NFS_SERVER(inode);
3257 struct page *pages[NFS4ACL_MAXPAGES];
3258 struct nfs_setaclargs arg = {
3259 .fh = NFS_FH(inode),
3260 .acl_pages = pages,
3261 .acl_len = buflen,
3262 };
Benny Halevy73c403a2009-04-01 09:22:01 -04003263 struct nfs_setaclres res;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003264 struct rpc_message msg = {
3265 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
3266 .rpc_argp = &arg,
Benny Halevy73c403a2009-04-01 09:22:01 -04003267 .rpc_resp = &res,
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003268 };
3269 int ret;
3270
3271 if (!nfs4_server_supports_acls(server))
3272 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07003273 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003274 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003275 ret = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebustf41f7412008-06-11 17:39:04 -04003276 nfs_access_zap_cache(inode);
3277 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003278 return ret;
3279}
3280
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003281static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
3282{
3283 struct nfs4_exception exception = { };
3284 int err;
3285 do {
3286 err = nfs4_handle_exception(NFS_SERVER(inode),
3287 __nfs4_proc_set_acl(inode, buf, buflen),
3288 &exception);
3289 } while (exception.retry);
3290 return err;
3291}
3292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293static int
Andy Adamson8328d592009-04-01 09:22:35 -04003294_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 -07003295{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 if (!clp || task->tk_status >= 0)
3297 return 0;
3298 switch(task->tk_status) {
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003299 case -NFS4ERR_ADMIN_REVOKED:
3300 case -NFS4ERR_BAD_STATEID:
3301 case -NFS4ERR_OPENMODE:
3302 if (state == NULL)
3303 break;
3304 nfs4_state_mark_reclaim_nograce(clp, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 case -NFS4ERR_STALE_CLIENTID:
3306 case -NFS4ERR_STALE_STATEID:
3307 case -NFS4ERR_EXPIRED:
Trond Myklebust5d008372008-02-22 16:34:17 -05003308 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 nfs4_schedule_state_recovery(clp);
Trond Myklebuste005e802008-12-23 15:21:48 -05003310 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
Trond Myklebustfda13932008-02-22 16:34:12 -05003311 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 task->tk_status = 0;
3313 return -EAGAIN;
Andy Adamson4745e312009-04-01 09:22:42 -04003314#if defined(CONFIG_NFS_V4_1)
3315 case -NFS4ERR_BADSESSION:
3316 case -NFS4ERR_BADSLOT:
3317 case -NFS4ERR_BAD_HIGH_SLOT:
3318 case -NFS4ERR_DEADSESSION:
3319 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
3320 case -NFS4ERR_SEQ_FALSE_RETRY:
3321 case -NFS4ERR_SEQ_MISORDERED:
3322 dprintk("%s ERROR %d, Reset session\n", __func__,
3323 task->tk_status);
3324 set_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state);
3325 task->tk_status = 0;
3326 return -EAGAIN;
3327#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 case -NFS4ERR_DELAY:
Andy Adamson8328d592009-04-01 09:22:35 -04003329 if (server)
3330 nfs_inc_server_stats(server, NFSIOS_DELAY);
Chuck Lever006ea732006-03-20 13:44:14 -05003331 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 rpc_delay(task, NFS4_POLL_RETRY_MAX);
3333 task->tk_status = 0;
3334 return -EAGAIN;
3335 case -NFS4ERR_OLD_STATEID:
3336 task->tk_status = 0;
3337 return -EAGAIN;
3338 }
3339 task->tk_status = nfs4_map_errors(task->tk_status);
3340 return 0;
3341}
3342
Andy Adamson8328d592009-04-01 09:22:35 -04003343static int
3344nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, struct nfs4_state *state)
3345{
3346 return _nfs4_async_handle_error(task, server, server->nfs_client, state);
3347}
3348
David Howellsadfa6f92006-08-22 20:06:08 -04003349int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350{
3351 nfs4_verifier sc_verifier;
3352 struct nfs4_setclientid setclientid = {
3353 .sc_verifier = &sc_verifier,
3354 .sc_prog = program,
3355 };
3356 struct rpc_message msg = {
3357 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
3358 .rpc_argp = &setclientid,
3359 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003360 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 };
Al Virobc4785c2006-10-19 23:28:51 -07003362 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 int loop = 0;
3364 int status;
3365
Al Virobc4785c2006-10-19 23:28:51 -07003366 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
3368 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
3369
3370 for(;;) {
3371 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05003372 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05003373 clp->cl_ipaddr,
3374 rpc_peeraddr2str(clp->cl_rpcclient,
3375 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05003376 rpc_peeraddr2str(clp->cl_rpcclient,
3377 RPC_DISPLAY_PROTO),
Trond Myklebust78ea3232008-04-07 20:49:28 -04003378 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 clp->cl_id_uniquifier);
3380 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003381 sizeof(setclientid.sc_netid),
3382 rpc_peeraddr2str(clp->cl_rpcclient,
3383 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003385 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 clp->cl_ipaddr, port >> 8, port & 255);
3387
3388 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3389 if (status != -NFS4ERR_CLID_INUSE)
3390 break;
3391 if (signalled())
3392 break;
3393 if (loop++ & 1)
3394 ssleep(clp->cl_lease_time + 1);
3395 else
3396 if (++clp->cl_id_uniquifier == 0)
3397 break;
3398 }
3399 return status;
3400}
3401
David Howellsadfa6f92006-08-22 20:06:08 -04003402static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403{
3404 struct nfs_fsinfo fsinfo;
3405 struct rpc_message msg = {
3406 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
3407 .rpc_argp = clp,
3408 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003409 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 };
3411 unsigned long now;
3412 int status;
3413
3414 now = jiffies;
3415 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3416 if (status == 0) {
3417 spin_lock(&clp->cl_lock);
3418 clp->cl_lease_time = fsinfo.lease_time * HZ;
3419 clp->cl_last_renewal = now;
3420 spin_unlock(&clp->cl_lock);
3421 }
3422 return status;
3423}
3424
David Howellsadfa6f92006-08-22 20:06:08 -04003425int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05003426{
Benny Halevy77e03672008-06-24 20:25:57 +03003427 long timeout = 0;
Trond Myklebust51581f32006-03-20 13:44:47 -05003428 int err;
3429 do {
3430 err = _nfs4_proc_setclientid_confirm(clp, cred);
3431 switch (err) {
3432 case 0:
3433 return err;
3434 case -NFS4ERR_RESOURCE:
3435 /* The IBM lawyers misread another document! */
3436 case -NFS4ERR_DELAY:
3437 err = nfs4_delay(clp->cl_rpcclient, &timeout);
3438 }
3439 } while (err == 0);
3440 return err;
3441}
3442
Trond Myklebustfe650402006-01-03 09:55:18 +01003443struct nfs4_delegreturndata {
3444 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003445 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01003446 struct nfs_fh fh;
3447 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003448 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003449 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01003450 int rpc_status;
3451};
3452
Trond Myklebustfe650402006-01-03 09:55:18 +01003453static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
3454{
3455 struct nfs4_delegreturndata *data = calldata;
Andy Adamson938e1012009-04-01 09:22:28 -04003456
3457 nfs4_sequence_done_free_slot(data->res.server, &data->res.seq_res,
3458 task->tk_status);
3459
Trond Myklebustfe650402006-01-03 09:55:18 +01003460 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003461 if (data->rpc_status == 0)
Trond Myklebustfa178f22006-01-03 09:55:38 +01003462 renew_lease(data->res.server, data->timestamp);
Trond Myklebustfe650402006-01-03 09:55:18 +01003463}
3464
3465static void nfs4_delegreturn_release(void *calldata)
3466{
Trond Myklebustfe650402006-01-03 09:55:18 +01003467 kfree(calldata);
3468}
3469
Andy Adamson938e1012009-04-01 09:22:28 -04003470#if defined(CONFIG_NFS_V4_1)
3471static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
3472{
3473 struct nfs4_delegreturndata *d_data;
3474
3475 d_data = (struct nfs4_delegreturndata *)data;
3476
3477 if (nfs4_setup_sequence(d_data->res.server->nfs_client,
3478 &d_data->args.seq_args,
3479 &d_data->res.seq_res, 1, task))
3480 return;
3481 rpc_call_start(task);
3482}
3483#endif /* CONFIG_NFS_V4_1 */
3484
Jesper Juhlc8d149f2006-03-20 13:44:07 -05003485static const struct rpc_call_ops nfs4_delegreturn_ops = {
Andy Adamson938e1012009-04-01 09:22:28 -04003486#if defined(CONFIG_NFS_V4_1)
3487 .rpc_call_prepare = nfs4_delegreturn_prepare,
3488#endif /* CONFIG_NFS_V4_1 */
Trond Myklebustfe650402006-01-03 09:55:18 +01003489 .rpc_call_done = nfs4_delegreturn_done,
3490 .rpc_release = nfs4_delegreturn_release,
3491};
3492
Trond Myklebuste6f81072008-01-24 18:14:34 -05003493static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01003494{
3495 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003496 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01003497 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003498 struct rpc_message msg = {
3499 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
3500 .rpc_cred = cred,
3501 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003502 struct rpc_task_setup task_setup_data = {
3503 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04003504 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003505 .callback_ops = &nfs4_delegreturn_ops,
3506 .flags = RPC_TASK_ASYNC,
3507 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05003508 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01003509
Andy Adamson938e1012009-04-01 09:22:28 -04003510 data = kzalloc(sizeof(*data), GFP_KERNEL);
Trond Myklebustfe650402006-01-03 09:55:18 +01003511 if (data == NULL)
3512 return -ENOMEM;
3513 data->args.fhandle = &data->fh;
3514 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003515 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01003516 nfs_copy_fh(&data->fh, NFS_FH(inode));
3517 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01003518 data->res.fattr = &data->fattr;
3519 data->res.server = server;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003520 data->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003521 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003522 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01003523 data->rpc_status = 0;
3524
Trond Myklebustc970aa82007-07-14 15:39:59 -04003525 task_setup_data.callback_data = data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003526 msg.rpc_argp = &data->args,
3527 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003528 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003529 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003530 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003531 if (!issync)
3532 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01003533 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003534 if (status != 0)
3535 goto out;
3536 status = data->rpc_status;
3537 if (status != 0)
3538 goto out;
3539 nfs_refresh_inode(inode, &data->fattr);
3540out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003541 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003542 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543}
3544
Trond Myklebuste6f81072008-01-24 18:14:34 -05003545int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546{
3547 struct nfs_server *server = NFS_SERVER(inode);
3548 struct nfs4_exception exception = { };
3549 int err;
3550 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05003551 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 switch (err) {
3553 case -NFS4ERR_STALE_STATEID:
3554 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 case 0:
3556 return 0;
3557 }
3558 err = nfs4_handle_exception(server, err, &exception);
3559 } while (exception.retry);
3560 return err;
3561}
3562
3563#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3564#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3565
3566/*
3567 * sleep, with exponential backoff, and retry the LOCK operation.
3568 */
3569static unsigned long
3570nfs4_set_lock_task_retry(unsigned long timeout)
3571{
Matthew Wilcox150030b2007-12-06 16:24:39 -05003572 schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 timeout <<= 1;
3574 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3575 return NFS4_LOCK_MAXTIMEOUT;
3576 return timeout;
3577}
3578
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3580{
3581 struct inode *inode = state->inode;
3582 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003583 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003584 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003586 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003588 struct nfs_lockt_res res = {
3589 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 };
3591 struct rpc_message msg = {
3592 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3593 .rpc_argp = &arg,
3594 .rpc_resp = &res,
3595 .rpc_cred = state->owner->so_cred,
3596 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 struct nfs4_lock_state *lsp;
3598 int status;
3599
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003600 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003601 status = nfs4_set_lock_state(state, request);
3602 if (status != 0)
3603 goto out;
3604 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003605 arg.lock_owner.id = lsp->ls_id.id;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003606 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003607 switch (status) {
3608 case 0:
3609 request->fl_type = F_UNLCK;
3610 break;
3611 case -NFS4ERR_DENIED:
3612 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003614 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003615out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 return status;
3617}
3618
3619static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3620{
3621 struct nfs4_exception exception = { };
3622 int err;
3623
3624 do {
3625 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3626 _nfs4_proc_getlk(state, cmd, request),
3627 &exception);
3628 } while (exception.retry);
3629 return err;
3630}
3631
3632static int do_vfs_lock(struct file *file, struct file_lock *fl)
3633{
3634 int res = 0;
3635 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3636 case FL_POSIX:
3637 res = posix_lock_file_wait(file, fl);
3638 break;
3639 case FL_FLOCK:
3640 res = flock_lock_file_wait(file, fl);
3641 break;
3642 default:
3643 BUG();
3644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 return res;
3646}
3647
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003648struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003649 struct nfs_locku_args arg;
3650 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003651 struct nfs4_lock_state *lsp;
3652 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003653 struct file_lock fl;
3654 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003655 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003656};
3657
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003658static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3659 struct nfs_open_context *ctx,
3660 struct nfs4_lock_state *lsp,
3661 struct nfs_seqid *seqid)
3662{
3663 struct nfs4_unlockdata *p;
3664 struct inode *inode = lsp->ls_state->inode;
3665
Andy Adamsona8936932009-04-01 09:22:23 -04003666 p = kzalloc(sizeof(*p), GFP_KERNEL);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003667 if (p == NULL)
3668 return NULL;
3669 p->arg.fh = NFS_FH(inode);
3670 p->arg.fl = &p->fl;
3671 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003672 p->res.seqid = seqid;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003673 p->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003674 p->arg.stateid = &lsp->ls_stateid;
3675 p->lsp = lsp;
3676 atomic_inc(&lsp->ls_count);
3677 /* Ensure we don't close file until we're done freeing locks! */
3678 p->ctx = get_nfs_open_context(ctx);
3679 memcpy(&p->fl, fl, sizeof(p->fl));
3680 p->server = NFS_SERVER(inode);
3681 return p;
3682}
3683
Trond Myklebust06f814a2006-01-03 09:55:07 +01003684static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003685{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003686 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003687 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003688 nfs4_put_lock_state(calldata->lsp);
3689 put_nfs_open_context(calldata->ctx);
3690 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003691}
3692
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003693static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003694{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003695 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003696
Andy Adamsona8936932009-04-01 09:22:23 -04003697 nfs4_sequence_done(calldata->server, &calldata->res.seq_res,
3698 task->tk_status);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003699 if (RPC_ASSASSINATED(task))
3700 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003701 switch (task->tk_status) {
3702 case 0:
3703 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003704 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003705 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003706 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003707 break;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003708 case -NFS4ERR_BAD_STATEID:
3709 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003710 case -NFS4ERR_STALE_STATEID:
3711 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003712 break;
3713 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003714 if (nfs4_async_handle_error(task, calldata->server, NULL) == -EAGAIN)
Andy Adamsoneedc0202009-04-01 09:22:41 -04003715 nfs4_restart_rpc(task,
3716 calldata->server->nfs_client);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003717 }
Andy Adamsona8936932009-04-01 09:22:23 -04003718 nfs4_sequence_free_slot(calldata->server->nfs_client,
3719 &calldata->res.seq_res);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003720}
3721
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003722static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003723{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003724 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003726 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003727 return;
3728 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003729 /* Note: exit _without_ running nfs4_locku_done */
3730 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003731 return;
3732 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003733 calldata->timestamp = jiffies;
Andy Adamsona8936932009-04-01 09:22:23 -04003734 if (nfs4_setup_sequence(calldata->server->nfs_client,
3735 &calldata->arg.seq_args,
3736 &calldata->res.seq_res, 1, task))
3737 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003738 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739}
3740
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003741static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003742 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003743 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003744 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003745};
3746
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003747static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3748 struct nfs_open_context *ctx,
3749 struct nfs4_lock_state *lsp,
3750 struct nfs_seqid *seqid)
3751{
3752 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003753 struct rpc_message msg = {
3754 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3755 .rpc_cred = ctx->cred,
3756 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003757 struct rpc_task_setup task_setup_data = {
3758 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003759 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003760 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003761 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003762 .flags = RPC_TASK_ASYNC,
3763 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003764
Frank Filz137d6ac2007-07-09 15:32:29 -07003765 /* Ensure this is an unlock - when canceling a lock, the
3766 * canceled lock is passed in, and it won't be an unlock.
3767 */
3768 fl->fl_type = F_UNLCK;
3769
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003770 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3771 if (data == NULL) {
3772 nfs_free_seqid(seqid);
3773 return ERR_PTR(-ENOMEM);
3774 }
3775
Trond Myklebust5138fde2007-07-14 15:40:01 -04003776 msg.rpc_argp = &data->arg,
3777 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003778 task_setup_data.callback_data = data;
3779 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003780}
3781
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3783{
Trond Myklebust19e03c52008-12-23 15:21:44 -05003784 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003785 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003786 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003787 struct rpc_task *task;
3788 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003789 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790
Trond Myklebust9b073572006-06-29 16:38:34 -04003791 status = nfs4_set_lock_state(state, request);
3792 /* Unlock _before_ we do the RPC call */
3793 request->fl_flags |= FL_EXISTS;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003794 down_read(&nfsi->rwsem);
3795 if (do_vfs_lock(request->fl_file, request) == -ENOENT) {
3796 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003797 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003798 }
3799 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003800 if (status != 0)
3801 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003802 /* Is this a delegated lock? */
3803 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003804 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003805 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003806 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003807 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003808 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003809 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003810 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003811 status = PTR_ERR(task);
3812 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003813 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003814 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003815 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003816out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003817 request->fl_flags = fl_flags;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003818 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819}
3820
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003821struct nfs4_lockdata {
3822 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003823 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003824 struct nfs4_lock_state *lsp;
3825 struct nfs_open_context *ctx;
3826 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003827 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003828 int rpc_status;
3829 int cancelled;
Andy Adamson66179ef2009-04-01 09:22:22 -04003830 struct nfs_server *server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003831};
3832
3833static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3834 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3835{
3836 struct nfs4_lockdata *p;
3837 struct inode *inode = lsp->ls_state->inode;
3838 struct nfs_server *server = NFS_SERVER(inode);
3839
3840 p = kzalloc(sizeof(*p), GFP_KERNEL);
3841 if (p == NULL)
3842 return NULL;
3843
3844 p->arg.fh = NFS_FH(inode);
3845 p->arg.fl = &p->fl;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003846 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid);
3847 if (p->arg.open_seqid == NULL)
3848 goto out_free;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003849 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3850 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003851 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003852 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003853 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003854 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003855 p->res.lock_seqid = p->arg.lock_seqid;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003856 p->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003857 p->lsp = lsp;
Andy Adamson66179ef2009-04-01 09:22:22 -04003858 p->server = server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003859 atomic_inc(&lsp->ls_count);
3860 p->ctx = get_nfs_open_context(ctx);
3861 memcpy(&p->fl, fl, sizeof(p->fl));
3862 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003863out_free_seqid:
3864 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003865out_free:
3866 kfree(p);
3867 return NULL;
3868}
3869
3870static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3871{
3872 struct nfs4_lockdata *data = calldata;
3873 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Harvey Harrison3110ff82008-05-02 13:42:44 -07003875 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003876 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3877 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003878 /* Do we need to do an open_to_lock_owner? */
3879 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05003880 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
3881 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003882 data->arg.open_stateid = &state->stateid;
3883 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003884 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003885 } else
3886 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003887 data->timestamp = jiffies;
Andy Adamson66179ef2009-04-01 09:22:22 -04003888 if (nfs4_setup_sequence(data->server->nfs_client, &data->arg.seq_args,
3889 &data->res.seq_res, 1, task))
3890 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003891 rpc_call_start(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003892 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003893}
3894
3895static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3896{
3897 struct nfs4_lockdata *data = calldata;
3898
Harvey Harrison3110ff82008-05-02 13:42:44 -07003899 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003900
Andy Adamson66179ef2009-04-01 09:22:22 -04003901 nfs4_sequence_done_free_slot(data->server, &data->res.seq_res,
3902 task->tk_status);
3903
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003904 data->rpc_status = task->tk_status;
3905 if (RPC_ASSASSINATED(task))
3906 goto out;
3907 if (data->arg.new_lock_owner != 0) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003908 if (data->rpc_status == 0)
3909 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3910 else
3911 goto out;
3912 }
3913 if (data->rpc_status == 0) {
3914 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3915 sizeof(data->lsp->ls_stateid.data));
3916 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04003917 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003918 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003919out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003920 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003921}
3922
3923static void nfs4_lock_release(void *calldata)
3924{
3925 struct nfs4_lockdata *data = calldata;
3926
Harvey Harrison3110ff82008-05-02 13:42:44 -07003927 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003928 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003929 if (data->cancelled != 0) {
3930 struct rpc_task *task;
3931 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3932 data->arg.lock_seqid);
3933 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003934 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003935 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003936 } else
3937 nfs_free_seqid(data->arg.lock_seqid);
3938 nfs4_put_lock_state(data->lsp);
3939 put_nfs_open_context(data->ctx);
3940 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003941 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003942}
3943
3944static const struct rpc_call_ops nfs4_lock_ops = {
3945 .rpc_call_prepare = nfs4_lock_prepare,
3946 .rpc_call_done = nfs4_lock_done,
3947 .rpc_release = nfs4_lock_release,
3948};
3949
3950static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3951{
3952 struct nfs4_lockdata *data;
3953 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003954 struct rpc_message msg = {
3955 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3956 .rpc_cred = state->owner->so_cred,
3957 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003958 struct rpc_task_setup task_setup_data = {
3959 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003960 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003961 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003962 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003963 .flags = RPC_TASK_ASYNC,
3964 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003965 int ret;
3966
Harvey Harrison3110ff82008-05-02 13:42:44 -07003967 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003968 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003969 fl->fl_u.nfs4_fl.owner);
3970 if (data == NULL)
3971 return -ENOMEM;
3972 if (IS_SETLKW(cmd))
3973 data->arg.block = 1;
3974 if (reclaim != 0)
3975 data->arg.reclaim = 1;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003976 msg.rpc_argp = &data->arg,
3977 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003978 task_setup_data.callback_data = data;
3979 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003980 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003981 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003982 ret = nfs4_wait_for_completion_rpc_task(task);
3983 if (ret == 0) {
3984 ret = data->rpc_status;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003985 } else
3986 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003987 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003988 dprintk("%s: done, ret = %d!\n", __func__, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003989 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990}
3991
3992static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3993{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003994 struct nfs_server *server = NFS_SERVER(state->inode);
3995 struct nfs4_exception exception = { };
3996 int err;
3997
3998 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003999 /* Cache the lock if possible... */
4000 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4001 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004002 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
4003 if (err != -NFS4ERR_DELAY)
4004 break;
4005 nfs4_handle_exception(server, err, &exception);
4006 } while (exception.retry);
4007 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008}
4009
4010static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
4011{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004012 struct nfs_server *server = NFS_SERVER(state->inode);
4013 struct nfs4_exception exception = { };
4014 int err;
4015
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004016 err = nfs4_set_lock_state(state, request);
4017 if (err != 0)
4018 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004019 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004020 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4021 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004022 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
4023 if (err != -NFS4ERR_DELAY)
4024 break;
4025 nfs4_handle_exception(server, err, &exception);
4026 } while (exception.retry);
4027 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028}
4029
4030static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4031{
Trond Myklebust19e03c52008-12-23 15:21:44 -05004032 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004033 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 int status;
4035
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004036 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004037 status = nfs4_set_lock_state(state, request);
4038 if (status != 0)
4039 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004040 request->fl_flags |= FL_ACCESS;
4041 status = do_vfs_lock(request->fl_file, request);
4042 if (status < 0)
4043 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05004044 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004045 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04004046 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004047 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05004048 request->fl_flags = fl_flags & ~FL_SLEEP;
4049 status = do_vfs_lock(request->fl_file, request);
4050 goto out_unlock;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004051 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004052 status = _nfs4_do_setlk(state, cmd, request, 0);
4053 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04004054 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004055 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004056 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004057 if (do_vfs_lock(request->fl_file, request) < 0)
Harvey Harrison3110ff82008-05-02 13:42:44 -07004058 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004059out_unlock:
Trond Myklebust19e03c52008-12-23 15:21:44 -05004060 up_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004061out:
4062 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 return status;
4064}
4065
4066static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4067{
4068 struct nfs4_exception exception = { };
4069 int err;
4070
4071 do {
Trond Myklebust965b5d62009-06-17 13:22:59 -07004072 err = _nfs4_proc_setlk(state, cmd, request);
4073 if (err == -NFS4ERR_DENIED)
4074 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 err = nfs4_handle_exception(NFS_SERVER(state->inode),
Trond Myklebust965b5d62009-06-17 13:22:59 -07004076 err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 } while (exception.retry);
4078 return err;
4079}
4080
4081static int
4082nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
4083{
4084 struct nfs_open_context *ctx;
4085 struct nfs4_state *state;
4086 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
4087 int status;
4088
4089 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004090 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 state = ctx->state;
4092
4093 if (request->fl_start < 0 || request->fl_end < 0)
4094 return -EINVAL;
4095
Trond Myklebustd9531262009-07-21 19:22:38 -04004096 if (IS_GETLK(cmd)) {
4097 if (state != NULL)
4098 return nfs4_proc_getlk(state, F_GETLK, request);
4099 return 0;
4100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101
4102 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
4103 return -EINVAL;
4104
Trond Myklebustd9531262009-07-21 19:22:38 -04004105 if (request->fl_type == F_UNLCK) {
4106 if (state != NULL)
4107 return nfs4_proc_unlck(state, cmd, request);
4108 return 0;
4109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
Trond Myklebustd9531262009-07-21 19:22:38 -04004111 if (state == NULL)
4112 return -ENOLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 do {
4114 status = nfs4_proc_setlk(state, cmd, request);
4115 if ((status != -EAGAIN) || IS_SETLK(cmd))
4116 break;
4117 timeout = nfs4_set_lock_task_retry(timeout);
4118 status = -ERESTARTSYS;
4119 if (signalled())
4120 break;
4121 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 return status;
4123}
4124
Trond Myklebust888e6942005-11-04 15:38:11 -05004125int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
4126{
4127 struct nfs_server *server = NFS_SERVER(state->inode);
4128 struct nfs4_exception exception = { };
4129 int err;
4130
4131 err = nfs4_set_lock_state(state, fl);
4132 if (err != 0)
4133 goto out;
4134 do {
4135 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
Trond Myklebustd5122202009-06-17 13:22:58 -07004136 switch (err) {
4137 default:
4138 printk(KERN_ERR "%s: unhandled error %d.\n",
4139 __func__, err);
4140 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004141 case -ESTALE:
Trond Myklebustd5122202009-06-17 13:22:58 -07004142 goto out;
4143 case -NFS4ERR_EXPIRED:
4144 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004145 case -NFS4ERR_STALE_STATEID:
Trond Myklebustd5122202009-06-17 13:22:58 -07004146 nfs4_schedule_state_recovery(server->nfs_client);
4147 goto out;
Trond Myklebust965b5d62009-06-17 13:22:59 -07004148 case -ERESTARTSYS:
4149 /*
4150 * The show must go on: exit, but mark the
4151 * stateid as needing recovery.
4152 */
4153 case -NFS4ERR_ADMIN_REVOKED:
4154 case -NFS4ERR_BAD_STATEID:
4155 case -NFS4ERR_OPENMODE:
4156 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
4157 err = 0;
4158 goto out;
4159 case -ENOMEM:
4160 case -NFS4ERR_DENIED:
4161 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
4162 err = 0;
4163 goto out;
Trond Myklebustd5122202009-06-17 13:22:58 -07004164 case -NFS4ERR_DELAY:
4165 break;
4166 }
Trond Myklebust888e6942005-11-04 15:38:11 -05004167 err = nfs4_handle_exception(server, err, &exception);
4168 } while (exception.retry);
4169out:
4170 return err;
4171}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004172
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004173#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
4174
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004175int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
4176 size_t buflen, int flags)
4177{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004178 struct inode *inode = dentry->d_inode;
4179
4180 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
4181 return -EOPNOTSUPP;
4182
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004183 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004184}
4185
4186/* The getxattr man page suggests returning -ENODATA for unknown attributes,
4187 * and that's what we'll do for e.g. user attributes that haven't been set.
4188 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
4189 * attributes in kernel-managed attribute namespaces. */
4190ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
4191 size_t buflen)
4192{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004193 struct inode *inode = dentry->d_inode;
4194
4195 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
4196 return -EOPNOTSUPP;
4197
4198 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004199}
4200
4201ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
4202{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004203 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004204
J. Bruce Fields096455a2006-03-20 23:23:42 -05004205 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
4206 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004207 if (buf && buflen < len)
4208 return -ERANGE;
4209 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004210 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
4211 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004212}
4213
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004214static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
4215{
4216 if (!((fattr->valid & NFS_ATTR_FATTR_FILEID) &&
4217 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
4218 (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)))
4219 return;
4220
4221 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
4222 NFS_ATTR_FATTR_NLINK;
4223 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
4224 fattr->nlink = 2;
4225}
4226
Trond Myklebust56659e92007-07-17 21:52:39 -04004227int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04004228 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004229{
4230 struct nfs_server *server = NFS_SERVER(dir);
4231 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04004232 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
4233 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004234 };
4235 struct nfs4_fs_locations_arg args = {
4236 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05004237 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004238 .page = page,
4239 .bitmask = bitmask,
4240 };
Benny Halevy22958462009-04-01 09:22:02 -04004241 struct nfs4_fs_locations_res res = {
4242 .fs_locations = fs_locations,
4243 };
Trond Myklebust683b57b2006-06-09 09:34:22 -04004244 struct rpc_message msg = {
4245 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
4246 .rpc_argp = &args,
Benny Halevy22958462009-04-01 09:22:02 -04004247 .rpc_resp = &res,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004248 };
4249 int status;
4250
Harvey Harrison3110ff82008-05-02 13:42:44 -07004251 dprintk("%s: start\n", __func__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05004252 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004253 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04004254 fs_locations->nlocations = 0;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04004255 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004256 nfs_fixup_referral_attributes(&fs_locations->fattr);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004257 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004258 return status;
4259}
4260
Andy Adamson557134a2009-04-01 09:21:53 -04004261#ifdef CONFIG_NFS_V4_1
Benny Halevy99fe60d2009-04-01 09:22:29 -04004262/*
4263 * nfs4_proc_exchange_id()
4264 *
4265 * Since the clientid has expired, all compounds using sessions
4266 * associated with the stale clientid will be returning
4267 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
4268 * be in some phase of session reset.
4269 */
4270static int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
4271{
4272 nfs4_verifier verifier;
4273 struct nfs41_exchange_id_args args = {
4274 .client = clp,
4275 .flags = clp->cl_exchange_flags,
4276 };
4277 struct nfs41_exchange_id_res res = {
4278 .client = clp,
4279 };
4280 int status;
4281 struct rpc_message msg = {
4282 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
4283 .rpc_argp = &args,
4284 .rpc_resp = &res,
4285 .rpc_cred = cred,
4286 };
4287 __be32 *p;
4288
4289 dprintk("--> %s\n", __func__);
4290 BUG_ON(clp == NULL);
Andy Adamsona7b72102009-04-01 09:22:46 -04004291
Benny Halevy99fe60d2009-04-01 09:22:29 -04004292 p = (u32 *)verifier.data;
4293 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
4294 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
4295 args.verifier = &verifier;
4296
4297 while (1) {
4298 args.id_len = scnprintf(args.id, sizeof(args.id),
4299 "%s/%s %u",
4300 clp->cl_ipaddr,
4301 rpc_peeraddr2str(clp->cl_rpcclient,
4302 RPC_DISPLAY_ADDR),
4303 clp->cl_id_uniquifier);
4304
4305 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
4306
4307 if (status != NFS4ERR_CLID_INUSE)
4308 break;
4309
4310 if (signalled())
4311 break;
4312
4313 if (++clp->cl_id_uniquifier == 0)
4314 break;
4315 }
4316
4317 dprintk("<-- %s status= %d\n", __func__, status);
4318 return status;
4319}
4320
Andy Adamson2050f0c2009-04-01 09:22:30 -04004321struct nfs4_get_lease_time_data {
4322 struct nfs4_get_lease_time_args *args;
4323 struct nfs4_get_lease_time_res *res;
4324 struct nfs_client *clp;
4325};
4326
4327static void nfs4_get_lease_time_prepare(struct rpc_task *task,
4328 void *calldata)
4329{
4330 int ret;
4331 struct nfs4_get_lease_time_data *data =
4332 (struct nfs4_get_lease_time_data *)calldata;
4333
4334 dprintk("--> %s\n", __func__);
4335 /* just setup sequence, do not trigger session recovery
4336 since we're invoked within one */
4337 ret = nfs41_setup_sequence(data->clp->cl_session,
4338 &data->args->la_seq_args,
4339 &data->res->lr_seq_res, 0, task);
4340
4341 BUG_ON(ret == -EAGAIN);
4342 rpc_call_start(task);
4343 dprintk("<-- %s\n", __func__);
4344}
4345
4346/*
4347 * Called from nfs4_state_manager thread for session setup, so don't recover
4348 * from sequence operation or clientid errors.
4349 */
4350static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
4351{
4352 struct nfs4_get_lease_time_data *data =
4353 (struct nfs4_get_lease_time_data *)calldata;
4354
4355 dprintk("--> %s\n", __func__);
4356 nfs41_sequence_done(data->clp, &data->res->lr_seq_res, task->tk_status);
4357 switch (task->tk_status) {
4358 case -NFS4ERR_DELAY:
4359 case -NFS4ERR_GRACE:
4360 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
4361 rpc_delay(task, NFS4_POLL_RETRY_MIN);
4362 task->tk_status = 0;
Andy Adamsoneedc0202009-04-01 09:22:41 -04004363 nfs4_restart_rpc(task, data->clp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004364 return;
4365 }
4366 nfs41_sequence_free_slot(data->clp, &data->res->lr_seq_res);
4367 dprintk("<-- %s\n", __func__);
4368}
4369
4370struct rpc_call_ops nfs4_get_lease_time_ops = {
4371 .rpc_call_prepare = nfs4_get_lease_time_prepare,
4372 .rpc_call_done = nfs4_get_lease_time_done,
4373};
4374
4375int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
4376{
4377 struct rpc_task *task;
4378 struct nfs4_get_lease_time_args args;
4379 struct nfs4_get_lease_time_res res = {
4380 .lr_fsinfo = fsinfo,
4381 };
4382 struct nfs4_get_lease_time_data data = {
4383 .args = &args,
4384 .res = &res,
4385 .clp = clp,
4386 };
4387 struct rpc_message msg = {
4388 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
4389 .rpc_argp = &args,
4390 .rpc_resp = &res,
4391 };
4392 struct rpc_task_setup task_setup = {
4393 .rpc_client = clp->cl_rpcclient,
4394 .rpc_message = &msg,
4395 .callback_ops = &nfs4_get_lease_time_ops,
4396 .callback_data = &data
4397 };
4398 int status;
4399
4400 res.lr_seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
4401 dprintk("--> %s\n", __func__);
4402 task = rpc_run_task(&task_setup);
4403
4404 if (IS_ERR(task))
4405 status = PTR_ERR(task);
4406 else {
4407 status = task->tk_status;
4408 rpc_put_task(task);
4409 }
4410 dprintk("<-- %s return %d\n", __func__, status);
4411
4412 return status;
4413}
4414
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004415/*
4416 * Reset a slot table
4417 */
4418static int nfs4_reset_slot_table(struct nfs4_slot_table *tbl, int max_slots,
4419 int old_max_slots, int ivalue)
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004420{
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004421 int i;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004422 int ret = 0;
4423
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004424 dprintk("--> %s: max_reqs=%u, tbl %p\n", __func__, max_slots, tbl);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004425
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004426 /*
4427 * Until we have dynamic slot table adjustment, insist
4428 * upon the same slot table size
4429 */
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004430 if (max_slots != old_max_slots) {
4431 dprintk("%s reset slot table does't match old\n",
4432 __func__);
4433 ret = -EINVAL; /*XXX NFS4ERR_REQ_TOO_BIG ? */
4434 goto out;
4435 }
4436 spin_lock(&tbl->slot_tbl_lock);
4437 for (i = 0; i < max_slots; ++i)
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004438 tbl->slots[i].seq_nr = ivalue;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004439 tbl->highest_used_slotid = -1;
4440 spin_unlock(&tbl->slot_tbl_lock);
4441 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4442 tbl, tbl->slots, tbl->max_slots);
4443out:
4444 dprintk("<-- %s: return %d\n", __func__, ret);
4445 return ret;
4446}
4447
Andy Adamsonfc931582009-04-01 09:22:31 -04004448/*
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004449 * Reset the forechannel and backchannel slot tables
4450 */
4451static int nfs4_reset_slot_tables(struct nfs4_session *session)
4452{
4453 int status;
4454
4455 status = nfs4_reset_slot_table(&session->fc_slot_table,
4456 session->fc_attrs.max_reqs,
4457 session->fc_slot_table.max_slots,
4458 1);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004459 if (status)
4460 return status;
4461
4462 status = nfs4_reset_slot_table(&session->bc_slot_table,
4463 session->bc_attrs.max_reqs,
4464 session->bc_slot_table.max_slots,
4465 0);
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004466 return status;
4467}
4468
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004469/* Destroy the slot table */
4470static void nfs4_destroy_slot_tables(struct nfs4_session *session)
4471{
4472 if (session->fc_slot_table.slots != NULL) {
4473 kfree(session->fc_slot_table.slots);
4474 session->fc_slot_table.slots = NULL;
4475 }
4476 if (session->bc_slot_table.slots != NULL) {
4477 kfree(session->bc_slot_table.slots);
4478 session->bc_slot_table.slots = NULL;
4479 }
4480 return;
4481}
4482
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004483/*
Andy Adamsonfc931582009-04-01 09:22:31 -04004484 * Initialize slot table
4485 */
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004486static int nfs4_init_slot_table(struct nfs4_slot_table *tbl,
4487 int max_slots, int ivalue)
Andy Adamsonfc931582009-04-01 09:22:31 -04004488{
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004489 int i;
Andy Adamsonfc931582009-04-01 09:22:31 -04004490 struct nfs4_slot *slot;
4491 int ret = -ENOMEM;
4492
4493 BUG_ON(max_slots > NFS4_MAX_SLOT_TABLE);
4494
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004495 dprintk("--> %s: max_reqs=%u\n", __func__, max_slots);
Andy Adamsonfc931582009-04-01 09:22:31 -04004496
4497 slot = kcalloc(max_slots, sizeof(struct nfs4_slot), GFP_KERNEL);
4498 if (!slot)
4499 goto out;
4500 for (i = 0; i < max_slots; ++i)
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004501 slot[i].seq_nr = ivalue;
Andy Adamsonfc931582009-04-01 09:22:31 -04004502 ret = 0;
4503
4504 spin_lock(&tbl->slot_tbl_lock);
4505 if (tbl->slots != NULL) {
4506 spin_unlock(&tbl->slot_tbl_lock);
4507 dprintk("%s: slot table already initialized. tbl=%p slots=%p\n",
4508 __func__, tbl, tbl->slots);
4509 WARN_ON(1);
4510 goto out_free;
4511 }
4512 tbl->max_slots = max_slots;
4513 tbl->slots = slot;
4514 tbl->highest_used_slotid = -1; /* no slot is currently used */
4515 spin_unlock(&tbl->slot_tbl_lock);
4516 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4517 tbl, tbl->slots, tbl->max_slots);
4518out:
4519 dprintk("<-- %s: return %d\n", __func__, ret);
4520 return ret;
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004521
Andy Adamsonfc931582009-04-01 09:22:31 -04004522out_free:
4523 kfree(slot);
4524 goto out;
4525}
4526
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004527/*
4528 * Initialize the forechannel and backchannel tables
4529 */
4530static int nfs4_init_slot_tables(struct nfs4_session *session)
4531{
4532 int status;
4533
4534 status = nfs4_init_slot_table(&session->fc_slot_table,
4535 session->fc_attrs.max_reqs, 1);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004536 if (status)
4537 return status;
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004538
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004539 status = nfs4_init_slot_table(&session->bc_slot_table,
4540 session->bc_attrs.max_reqs, 0);
4541 if (status)
4542 nfs4_destroy_slot_tables(session);
4543
4544 return status;
Andy Adamson557134a2009-04-01 09:21:53 -04004545}
4546
4547struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp)
4548{
4549 struct nfs4_session *session;
4550 struct nfs4_slot_table *tbl;
4551
4552 session = kzalloc(sizeof(struct nfs4_session), GFP_KERNEL);
4553 if (!session)
4554 return NULL;
Andy Adamson76db6d92009-04-01 09:22:38 -04004555
4556 set_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state);
4557 /*
4558 * The create session reply races with the server back
4559 * channel probe. Mark the client NFS_CS_SESSION_INITING
4560 * so that the client back channel can find the
4561 * nfs_client struct
4562 */
4563 clp->cl_cons_state = NFS_CS_SESSION_INITING;
4564
Andy Adamson557134a2009-04-01 09:21:53 -04004565 tbl = &session->fc_slot_table;
4566 spin_lock_init(&tbl->slot_tbl_lock);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004567 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "ForeChannel Slot table");
4568
4569 tbl = &session->bc_slot_table;
4570 spin_lock_init(&tbl->slot_tbl_lock);
4571 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "BackChannel Slot table");
4572
Andy Adamson557134a2009-04-01 09:21:53 -04004573 session->clp = clp;
4574 return session;
4575}
4576
4577void nfs4_destroy_session(struct nfs4_session *session)
4578{
Andy Adamson5a0ffe52009-04-01 09:23:18 -04004579 nfs4_proc_destroy_session(session);
4580 dprintk("%s Destroy backchannel for xprt %p\n",
4581 __func__, session->clp->cl_rpcclient->cl_xprt);
4582 xprt_destroy_backchannel(session->clp->cl_rpcclient->cl_xprt,
4583 NFS41_BC_MIN_CALLBACKS);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004584 nfs4_destroy_slot_tables(session);
Andy Adamson557134a2009-04-01 09:21:53 -04004585 kfree(session);
4586}
4587
Andy Adamsonfc931582009-04-01 09:22:31 -04004588/*
4589 * Initialize the values to be used by the client in CREATE_SESSION
4590 * If nfs4_init_session set the fore channel request and response sizes,
4591 * use them.
4592 *
4593 * Set the back channel max_resp_sz_cached to zero to force the client to
4594 * always set csa_cachethis to FALSE because the current implementation
4595 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
4596 */
4597static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args)
4598{
4599 struct nfs4_session *session = args->client->cl_session;
4600 unsigned int mxrqst_sz = session->fc_attrs.max_rqst_sz,
4601 mxresp_sz = session->fc_attrs.max_resp_sz;
4602
4603 if (mxrqst_sz == 0)
4604 mxrqst_sz = NFS_MAX_FILE_IO_SIZE;
4605 if (mxresp_sz == 0)
4606 mxresp_sz = NFS_MAX_FILE_IO_SIZE;
4607 /* Fore channel attributes */
4608 args->fc_attrs.headerpadsz = 0;
4609 args->fc_attrs.max_rqst_sz = mxrqst_sz;
4610 args->fc_attrs.max_resp_sz = mxresp_sz;
4611 args->fc_attrs.max_resp_sz_cached = mxresp_sz;
4612 args->fc_attrs.max_ops = NFS4_MAX_OPS;
4613 args->fc_attrs.max_reqs = session->clp->cl_rpcclient->cl_xprt->max_reqs;
4614
4615 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
4616 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4617 __func__,
4618 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
4619 args->fc_attrs.max_resp_sz_cached, args->fc_attrs.max_ops,
4620 args->fc_attrs.max_reqs);
4621
4622 /* Back channel attributes */
4623 args->bc_attrs.headerpadsz = 0;
4624 args->bc_attrs.max_rqst_sz = PAGE_SIZE;
4625 args->bc_attrs.max_resp_sz = PAGE_SIZE;
4626 args->bc_attrs.max_resp_sz_cached = 0;
4627 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
4628 args->bc_attrs.max_reqs = 1;
4629
4630 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
4631 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4632 __func__,
4633 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
4634 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
4635 args->bc_attrs.max_reqs);
4636}
4637
Andy Adamson8d353012009-04-01 09:22:32 -04004638static int _verify_channel_attr(char *chan, char *attr_name, u32 sent, u32 rcvd)
4639{
4640 if (rcvd <= sent)
4641 return 0;
4642 printk(KERN_WARNING "%s: Session INVALID: %s channel %s increased. "
4643 "sent=%u rcvd=%u\n", __func__, chan, attr_name, sent, rcvd);
4644 return -EINVAL;
4645}
4646
4647#define _verify_fore_channel_attr(_name_) \
4648 _verify_channel_attr("fore", #_name_, \
4649 args->fc_attrs._name_, \
4650 session->fc_attrs._name_)
4651
4652#define _verify_back_channel_attr(_name_) \
4653 _verify_channel_attr("back", #_name_, \
4654 args->bc_attrs._name_, \
4655 session->bc_attrs._name_)
4656
4657/*
4658 * The server is not allowed to increase the fore channel header pad size,
4659 * maximum response size, or maximum number of operations.
4660 *
4661 * The back channel attributes are only negotiatied down: We send what the
4662 * (back channel) server insists upon.
4663 */
4664static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
4665 struct nfs4_session *session)
4666{
4667 int ret = 0;
4668
4669 ret |= _verify_fore_channel_attr(headerpadsz);
4670 ret |= _verify_fore_channel_attr(max_resp_sz);
4671 ret |= _verify_fore_channel_attr(max_ops);
4672
4673 ret |= _verify_back_channel_attr(headerpadsz);
4674 ret |= _verify_back_channel_attr(max_rqst_sz);
4675 ret |= _verify_back_channel_attr(max_resp_sz);
4676 ret |= _verify_back_channel_attr(max_resp_sz_cached);
4677 ret |= _verify_back_channel_attr(max_ops);
4678 ret |= _verify_back_channel_attr(max_reqs);
4679
4680 return ret;
4681}
4682
Andy Adamsonfc931582009-04-01 09:22:31 -04004683static int _nfs4_proc_create_session(struct nfs_client *clp)
4684{
4685 struct nfs4_session *session = clp->cl_session;
4686 struct nfs41_create_session_args args = {
4687 .client = clp,
4688 .cb_program = NFS4_CALLBACK,
4689 };
4690 struct nfs41_create_session_res res = {
4691 .client = clp,
4692 };
4693 struct rpc_message msg = {
4694 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
4695 .rpc_argp = &args,
4696 .rpc_resp = &res,
4697 };
4698 int status;
4699
4700 nfs4_init_channel_attrs(&args);
Andy Adamson0f914212009-04-01 09:23:16 -04004701 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
Andy Adamsonfc931582009-04-01 09:22:31 -04004702
4703 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
4704
Andy Adamson8d353012009-04-01 09:22:32 -04004705 if (!status)
4706 /* Verify the session's negotiated channel_attrs values */
4707 status = nfs4_verify_channel_attrs(&args, session);
Andy Adamsonfc931582009-04-01 09:22:31 -04004708 if (!status) {
4709 /* Increment the clientid slot sequence id */
4710 clp->cl_seqid++;
4711 }
4712
4713 return status;
4714}
4715
4716/*
4717 * Issues a CREATE_SESSION operation to the server.
4718 * It is the responsibility of the caller to verify the session is
4719 * expired before calling this routine.
4720 */
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004721int nfs4_proc_create_session(struct nfs_client *clp, int reset)
Andy Adamsonfc931582009-04-01 09:22:31 -04004722{
4723 int status;
4724 unsigned *ptr;
4725 struct nfs_fsinfo fsinfo;
4726 struct nfs4_session *session = clp->cl_session;
4727
4728 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
4729
4730 status = _nfs4_proc_create_session(clp);
4731 if (status)
4732 goto out;
4733
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004734 /* Init or reset the fore channel */
4735 if (reset)
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004736 status = nfs4_reset_slot_tables(session);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004737 else
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004738 status = nfs4_init_slot_tables(session);
Andy Adamsonfc931582009-04-01 09:22:31 -04004739 dprintk("fore channel slot table initialization returned %d\n", status);
4740 if (status)
4741 goto out;
4742
4743 ptr = (unsigned *)&session->sess_id.data[0];
4744 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
4745 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
4746
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004747 if (reset)
4748 /* Lease time is aleady set */
4749 goto out;
4750
Andy Adamsonfc931582009-04-01 09:22:31 -04004751 /* Get the lease time */
4752 status = nfs4_proc_get_lease_time(clp, &fsinfo);
4753 if (status == 0) {
4754 /* Update lease time and schedule renewal */
4755 spin_lock(&clp->cl_lock);
4756 clp->cl_lease_time = fsinfo.lease_time * HZ;
4757 clp->cl_last_renewal = jiffies;
4758 clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
4759 spin_unlock(&clp->cl_lock);
4760
4761 nfs4_schedule_state_renewal(clp);
4762 }
4763out:
4764 dprintk("<-- %s\n", __func__);
4765 return status;
4766}
4767
Andy Adamson0f3e66c2009-04-01 09:22:34 -04004768/*
4769 * Issue the over-the-wire RPC DESTROY_SESSION.
4770 * The caller must serialize access to this routine.
4771 */
4772int nfs4_proc_destroy_session(struct nfs4_session *session)
4773{
4774 int status = 0;
4775 struct rpc_message msg;
4776
4777 dprintk("--> nfs4_proc_destroy_session\n");
4778
4779 /* session is still being setup */
4780 if (session->clp->cl_cons_state != NFS_CS_READY)
4781 return status;
4782
4783 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION];
4784 msg.rpc_argp = session;
4785 msg.rpc_resp = NULL;
4786 msg.rpc_cred = NULL;
4787 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
4788
4789 if (status)
4790 printk(KERN_WARNING
4791 "Got error %d from the server on DESTROY_SESSION. "
4792 "Session has been destroyed regardless...\n", status);
4793
4794 dprintk("<-- nfs4_proc_destroy_session\n");
4795 return status;
4796}
4797
Trond Myklebustfccba802009-07-21 16:48:07 -04004798int nfs4_init_session(struct nfs_server *server)
4799{
4800 struct nfs_client *clp = server->nfs_client;
4801 int ret;
4802
4803 if (!nfs4_has_session(clp))
4804 return 0;
4805
4806 clp->cl_session->fc_attrs.max_rqst_sz = server->wsize;
4807 clp->cl_session->fc_attrs.max_resp_sz = server->rsize;
4808 ret = nfs4_recover_expired_lease(server);
4809 if (!ret)
4810 ret = nfs4_check_client_ready(clp);
4811 return ret;
4812}
4813
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004814/*
4815 * Renew the cl_session lease.
4816 */
4817static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
4818{
4819 struct nfs4_sequence_args args;
4820 struct nfs4_sequence_res res;
4821
4822 struct rpc_message msg = {
4823 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
4824 .rpc_argp = &args,
4825 .rpc_resp = &res,
4826 .rpc_cred = cred,
4827 };
4828
4829 args.sa_cache_this = 0;
4830
4831 return nfs4_call_sync_sequence(clp, clp->cl_rpcclient, &msg, &args,
4832 &res, 0);
4833}
4834
4835void nfs41_sequence_call_done(struct rpc_task *task, void *data)
4836{
4837 struct nfs_client *clp = (struct nfs_client *)data;
4838
4839 nfs41_sequence_done(clp, task->tk_msg.rpc_resp, task->tk_status);
4840
4841 if (task->tk_status < 0) {
4842 dprintk("%s ERROR %d\n", __func__, task->tk_status);
4843
4844 if (_nfs4_async_handle_error(task, NULL, clp, NULL)
4845 == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04004846 nfs4_restart_rpc(task, clp);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004847 return;
4848 }
4849 }
4850 nfs41_sequence_free_slot(clp, task->tk_msg.rpc_resp);
4851 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
4852
4853 put_rpccred(task->tk_msg.rpc_cred);
4854 kfree(task->tk_msg.rpc_argp);
4855 kfree(task->tk_msg.rpc_resp);
4856
4857 dprintk("<-- %s\n", __func__);
4858}
4859
4860static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
4861{
4862 struct nfs_client *clp;
4863 struct nfs4_sequence_args *args;
4864 struct nfs4_sequence_res *res;
4865
4866 clp = (struct nfs_client *)data;
4867 args = task->tk_msg.rpc_argp;
4868 res = task->tk_msg.rpc_resp;
4869
4870 if (nfs4_setup_sequence(clp, args, res, 0, task))
4871 return;
4872 rpc_call_start(task);
4873}
4874
4875static const struct rpc_call_ops nfs41_sequence_ops = {
4876 .rpc_call_done = nfs41_sequence_call_done,
4877 .rpc_call_prepare = nfs41_sequence_prepare,
4878};
4879
4880static int nfs41_proc_async_sequence(struct nfs_client *clp,
4881 struct rpc_cred *cred)
4882{
4883 struct nfs4_sequence_args *args;
4884 struct nfs4_sequence_res *res;
4885 struct rpc_message msg = {
4886 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
4887 .rpc_cred = cred,
4888 };
4889
4890 args = kzalloc(sizeof(*args), GFP_KERNEL);
4891 if (!args)
4892 return -ENOMEM;
4893 res = kzalloc(sizeof(*res), GFP_KERNEL);
4894 if (!res) {
4895 kfree(args);
4896 return -ENOMEM;
4897 }
4898 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
4899 msg.rpc_argp = args;
4900 msg.rpc_resp = res;
4901
4902 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
4903 &nfs41_sequence_ops, (void *)clp);
4904}
4905
Andy Adamson557134a2009-04-01 09:21:53 -04004906#endif /* CONFIG_NFS_V4_1 */
4907
Andy Adamson591d71c2009-04-01 09:22:47 -04004908struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05004909 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05004910 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911 .recover_open = nfs4_open_reclaim,
4912 .recover_lock = nfs4_lock_reclaim,
Andy Adamson591d71c2009-04-01 09:22:47 -04004913 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04004914 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915};
4916
Andy Adamson591d71c2009-04-01 09:22:47 -04004917#if defined(CONFIG_NFS_V4_1)
4918struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
4919 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
4920 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
4921 .recover_open = nfs4_open_reclaim,
4922 .recover_lock = nfs4_lock_reclaim,
4923 .establish_clid = nfs4_proc_exchange_id,
Andy Adamsonb4b82602009-04-01 09:22:49 -04004924 .get_clid_cred = nfs4_get_exchange_id_cred,
Andy Adamson591d71c2009-04-01 09:22:47 -04004925};
4926#endif /* CONFIG_NFS_V4_1 */
4927
4928struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05004929 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05004930 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 .recover_open = nfs4_open_expired,
4932 .recover_lock = nfs4_lock_expired,
Andy Adamson591d71c2009-04-01 09:22:47 -04004933 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04004934 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935};
4936
Andy Adamson591d71c2009-04-01 09:22:47 -04004937#if defined(CONFIG_NFS_V4_1)
4938struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
4939 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
4940 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
4941 .recover_open = nfs4_open_expired,
4942 .recover_lock = nfs4_lock_expired,
4943 .establish_clid = nfs4_proc_exchange_id,
Andy Adamsonb4b82602009-04-01 09:22:49 -04004944 .get_clid_cred = nfs4_get_exchange_id_cred,
Andy Adamson591d71c2009-04-01 09:22:47 -04004945};
4946#endif /* CONFIG_NFS_V4_1 */
4947
Benny Halevy29fba382009-04-01 09:22:44 -04004948struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
4949 .sched_state_renewal = nfs4_proc_async_renew,
Andy Adamsona7b72102009-04-01 09:22:46 -04004950 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04004951 .renew_lease = nfs4_proc_renew,
Benny Halevy29fba382009-04-01 09:22:44 -04004952};
4953
4954#if defined(CONFIG_NFS_V4_1)
4955struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
4956 .sched_state_renewal = nfs41_proc_async_sequence,
Andy Adamsona7b72102009-04-01 09:22:46 -04004957 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04004958 .renew_lease = nfs4_proc_sequence,
Benny Halevy29fba382009-04-01 09:22:44 -04004959};
4960#endif
4961
4962/*
4963 * Per minor version reboot and network partition recovery ops
4964 */
4965
Andy Adamson591d71c2009-04-01 09:22:47 -04004966struct nfs4_state_recovery_ops *nfs4_reboot_recovery_ops[] = {
4967 &nfs40_reboot_recovery_ops,
4968#if defined(CONFIG_NFS_V4_1)
4969 &nfs41_reboot_recovery_ops,
4970#endif
4971};
4972
4973struct nfs4_state_recovery_ops *nfs4_nograce_recovery_ops[] = {
4974 &nfs40_nograce_recovery_ops,
4975#if defined(CONFIG_NFS_V4_1)
4976 &nfs41_nograce_recovery_ops,
4977#endif
4978};
4979
Benny Halevy29fba382009-04-01 09:22:44 -04004980struct nfs4_state_maintenance_ops *nfs4_state_renewal_ops[] = {
4981 &nfs40_state_renewal_ops,
4982#if defined(CONFIG_NFS_V4_1)
4983 &nfs41_state_renewal_ops,
4984#endif
4985};
4986
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004987static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004988 .permission = nfs_permission,
4989 .getattr = nfs_getattr,
4990 .setattr = nfs_setattr,
4991 .getxattr = nfs4_getxattr,
4992 .setxattr = nfs4_setxattr,
4993 .listxattr = nfs4_listxattr,
4994};
4995
David Howells509de812006-08-22 20:06:11 -04004996const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 .version = 4, /* protocol version */
4998 .dentry_ops = &nfs4_dentry_operations,
4999 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005000 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001 .getroot = nfs4_proc_get_root,
5002 .getattr = nfs4_proc_getattr,
5003 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04005004 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005 .lookup = nfs4_proc_lookup,
5006 .access = nfs4_proc_access,
5007 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008 .create = nfs4_proc_create,
5009 .remove = nfs4_proc_remove,
5010 .unlink_setup = nfs4_proc_unlink_setup,
5011 .unlink_done = nfs4_proc_unlink_done,
5012 .rename = nfs4_proc_rename,
5013 .link = nfs4_proc_link,
5014 .symlink = nfs4_proc_symlink,
5015 .mkdir = nfs4_proc_mkdir,
5016 .rmdir = nfs4_proc_remove,
5017 .readdir = nfs4_proc_readdir,
5018 .mknod = nfs4_proc_mknod,
5019 .statfs = nfs4_proc_statfs,
5020 .fsinfo = nfs4_proc_fsinfo,
5021 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04005022 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 .decode_dirent = nfs4_decode_dirent,
5024 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05005025 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005027 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005029 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005031 .clear_acl_cache = nfs4_zap_acl_attr,
Trond Myklebust7fe5c392009-03-19 15:35:50 -04005032 .close_context = nfs4_close_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033};
5034
5035/*
5036 * Local variables:
5037 * c-basic-offset: 8
5038 * End:
5039 */