blob: 65c252798861e7b329ef8cc6d5377ac30def29ed [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfs/nfs4proc.c
3 *
4 * Client-side procedure declarations for NFSv4.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/delay.h>
40#include <linux/errno.h>
41#include <linux/string.h>
42#include <linux/sunrpc/clnt.h>
43#include <linux/nfs.h>
44#include <linux/nfs4.h>
45#include <linux/nfs_fs.h>
46#include <linux/nfs_page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/namei.h>
Trond Myklebust02a913a2005-10-18 14:20:17 -070048#include <linux/mount.h>
Benny Halevy99fe60d2009-04-01 09:22:29 -040049#include <linux/module.h>
Andy Adamson5a0ffe52009-04-01 09:23:18 -040050#include <linux/sunrpc/bc_xprt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Trond Myklebust4ce79712005-06-22 17:16:21 +000052#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include "delegation.h"
Trond Myklebust101070c2008-02-19 20:04:23 -050054#include "internal.h"
Chuck Lever006ea732006-03-20 13:44:14 -050055#include "iostat.h"
Andy Adamsonfc931582009-04-01 09:22:31 -040056#include "callback.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#define NFSDBG_FACILITY NFSDBG_PROC
59
Trond Myklebust2066fe82006-09-15 08:30:46 -040060#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define NFS4_POLL_RETRY_MAX (15*HZ)
62
Trond Myklebusta78cb572009-08-09 15:06:19 -040063#define NFS4_MAX_LOOP_ON_RECOVER (10)
64
Trond Myklebustcdd4e682006-01-03 09:55:12 +010065struct nfs4_opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +010066static int _nfs4_proc_open(struct nfs4_opendata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
Trond Myklebust9e33bed2008-12-23 15:21:46 -050068static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *, struct nfs4_state *);
Trond Myklebust99367812007-07-17 21:52:41 -040069static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
70static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* Prevent leaks of NFSv4 errors into userland */
WANG Cong46f72f52008-12-30 16:35:55 -050073static int nfs4_map_errors(int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Trond Myklebust52567b02009-10-23 14:46:42 -040075 if (err >= -1000)
76 return err;
77 switch (err) {
78 case -NFS4ERR_RESOURCE:
79 return -EREMOTEIO;
80 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 dprintk("%s could not handle NFSv4 error %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -070082 __func__, -err);
Trond Myklebust52567b02009-10-23 14:46:42 -040083 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 }
Trond Myklebust52567b02009-10-23 14:46:42 -040085 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
88/*
89 * This is our standard bitmap for GETATTR requests.
90 */
91const u32 nfs4_fattr_bitmap[2] = {
92 FATTR4_WORD0_TYPE
93 | FATTR4_WORD0_CHANGE
94 | FATTR4_WORD0_SIZE
95 | FATTR4_WORD0_FSID
96 | FATTR4_WORD0_FILEID,
97 FATTR4_WORD1_MODE
98 | FATTR4_WORD1_NUMLINKS
99 | FATTR4_WORD1_OWNER
100 | FATTR4_WORD1_OWNER_GROUP
101 | FATTR4_WORD1_RAWDEV
102 | FATTR4_WORD1_SPACE_USED
103 | FATTR4_WORD1_TIME_ACCESS
104 | FATTR4_WORD1_TIME_METADATA
105 | FATTR4_WORD1_TIME_MODIFY
106};
107
108const u32 nfs4_statfs_bitmap[2] = {
109 FATTR4_WORD0_FILES_AVAIL
110 | FATTR4_WORD0_FILES_FREE
111 | FATTR4_WORD0_FILES_TOTAL,
112 FATTR4_WORD1_SPACE_AVAIL
113 | FATTR4_WORD1_SPACE_FREE
114 | FATTR4_WORD1_SPACE_TOTAL
115};
116
Trond Myklebust4ce79712005-06-22 17:16:21 +0000117const u32 nfs4_pathconf_bitmap[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 FATTR4_WORD0_MAXLINK
119 | FATTR4_WORD0_MAXNAME,
120 0
121};
122
123const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
124 | FATTR4_WORD0_MAXREAD
125 | FATTR4_WORD0_MAXWRITE
126 | FATTR4_WORD0_LEASE_TIME,
127 0
128};
129
Manoj Naik830b8e32006-06-09 09:34:25 -0400130const u32 nfs4_fs_locations_bitmap[2] = {
131 FATTR4_WORD0_TYPE
132 | FATTR4_WORD0_CHANGE
133 | FATTR4_WORD0_SIZE
134 | FATTR4_WORD0_FSID
135 | FATTR4_WORD0_FILEID
136 | FATTR4_WORD0_FS_LOCATIONS,
137 FATTR4_WORD1_MODE
138 | FATTR4_WORD1_NUMLINKS
139 | FATTR4_WORD1_OWNER
140 | FATTR4_WORD1_OWNER_GROUP
141 | FATTR4_WORD1_RAWDEV
142 | FATTR4_WORD1_SPACE_USED
143 | FATTR4_WORD1_TIME_ACCESS
144 | FATTR4_WORD1_TIME_METADATA
145 | FATTR4_WORD1_TIME_MODIFY
146 | FATTR4_WORD1_MOUNTED_ON_FILEID
147};
148
Al Virobc4785c2006-10-19 23:28:51 -0700149static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 struct nfs4_readdir_arg *readdir)
151{
Al Viro0dbb4c62006-10-19 23:28:49 -0700152 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 BUG_ON(readdir->count < 80);
155 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000156 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
158 return;
159 }
160
161 readdir->cookie = 0;
162 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
163 if (cookie == 2)
164 return;
165
166 /*
167 * NFSv4 servers do not return entries for '.' and '..'
168 * Therefore, we fake these entries here. We let '.'
169 * have cookie 0 and '..' have cookie 1. Note that
170 * when talking to the server, we always send cookie 0
171 * instead of 1 or 2.
172 */
Al Viro0dbb4c62006-10-19 23:28:49 -0700173 start = p = kmap_atomic(*readdir->pages, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 if (cookie == 0) {
176 *p++ = xdr_one; /* next */
177 *p++ = xdr_zero; /* cookie, first word */
178 *p++ = xdr_one; /* cookie, second word */
179 *p++ = xdr_one; /* entry len */
180 memcpy(p, ".\0\0\0", 4); /* entry */
181 p++;
182 *p++ = xdr_one; /* bitmap length */
183 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
184 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400185 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187
188 *p++ = xdr_one; /* next */
189 *p++ = xdr_zero; /* cookie, first word */
190 *p++ = xdr_two; /* cookie, second word */
191 *p++ = xdr_two; /* entry len */
192 memcpy(p, "..\0\0", 4); /* entry */
193 p++;
194 *p++ = xdr_one; /* bitmap length */
195 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
196 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400197 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 readdir->pgbase = (char *)p - (char *)start;
200 readdir->count -= readdir->pgbase;
201 kunmap_atomic(start, KM_USER0);
202}
203
Trond Myklebust65de8722008-12-23 15:21:44 -0500204static int nfs4_wait_clnt_recover(struct nfs_client *clp)
205{
206 int res;
207
208 might_sleep();
209
Trond Myklebuste005e802008-12-23 15:21:48 -0500210 res = wait_on_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400211 nfs_wait_bit_killable, TASK_KILLABLE);
Trond Myklebust65de8722008-12-23 15:21:44 -0500212 return res;
213}
214
215static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
216{
217 int res = 0;
218
219 might_sleep();
220
221 if (*timeout <= 0)
222 *timeout = NFS4_POLL_RETRY_MIN;
223 if (*timeout > NFS4_POLL_RETRY_MAX)
224 *timeout = NFS4_POLL_RETRY_MAX;
225 schedule_timeout_killable(*timeout);
226 if (fatal_signal_pending(current))
227 res = -ERESTARTSYS;
228 *timeout <<= 1;
229 return res;
230}
231
232/* This is the error handling routine for processes that are allowed
233 * to sleep.
234 */
235static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
236{
237 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500238 struct nfs4_state *state = exception->state;
Trond Myklebust65de8722008-12-23 15:21:44 -0500239 int ret = errorcode;
240
241 exception->retry = 0;
242 switch(errorcode) {
243 case 0:
244 return 0;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500245 case -NFS4ERR_ADMIN_REVOKED:
246 case -NFS4ERR_BAD_STATEID:
247 case -NFS4ERR_OPENMODE:
248 if (state == NULL)
249 break;
250 nfs4_state_mark_reclaim_nograce(clp, state);
Trond Myklebust65de8722008-12-23 15:21:44 -0500251 case -NFS4ERR_STALE_CLIENTID:
252 case -NFS4ERR_STALE_STATEID:
253 case -NFS4ERR_EXPIRED:
254 nfs4_schedule_state_recovery(clp);
255 ret = nfs4_wait_clnt_recover(clp);
256 if (ret == 0)
257 exception->retry = 1;
Andy Adamson4745e312009-04-01 09:22:42 -0400258#if !defined(CONFIG_NFS_V4_1)
Trond Myklebust65de8722008-12-23 15:21:44 -0500259 break;
Andy Adamson4745e312009-04-01 09:22:42 -0400260#else /* !defined(CONFIG_NFS_V4_1) */
261 if (!nfs4_has_session(server->nfs_client))
262 break;
263 /* FALLTHROUGH */
264 case -NFS4ERR_BADSESSION:
265 case -NFS4ERR_BADSLOT:
266 case -NFS4ERR_BAD_HIGH_SLOT:
267 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
268 case -NFS4ERR_DEADSESSION:
269 case -NFS4ERR_SEQ_FALSE_RETRY:
270 case -NFS4ERR_SEQ_MISORDERED:
271 dprintk("%s ERROR: %d Reset session\n", __func__,
272 errorcode);
273 set_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state);
274 exception->retry = 1;
275 /* FALLTHROUGH */
276#endif /* !defined(CONFIG_NFS_V4_1) */
Trond Myklebust65de8722008-12-23 15:21:44 -0500277 case -NFS4ERR_FILE_OPEN:
278 case -NFS4ERR_GRACE:
279 case -NFS4ERR_DELAY:
280 ret = nfs4_delay(server->client, &exception->timeout);
281 if (ret != 0)
282 break;
283 case -NFS4ERR_OLD_STATEID:
284 exception->retry = 1;
285 }
286 /* We failed to handle the error */
287 return nfs4_map_errors(ret);
288}
289
290
Trond Myklebust26e976a2006-01-03 09:55:21 +0100291static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
David Howells7539bba2006-08-22 20:06:09 -0400293 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 spin_lock(&clp->cl_lock);
295 if (time_before(clp->cl_last_renewal,timestamp))
296 clp->cl_last_renewal = timestamp;
297 spin_unlock(&clp->cl_lock);
298}
299
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400300#if defined(CONFIG_NFS_V4_1)
301
Benny Halevy510b8172009-04-01 09:22:14 -0400302/*
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400303 * nfs4_free_slot - free a slot and efficiently update slot table.
304 *
305 * freeing a slot is trivially done by clearing its respective bit
306 * in the bitmap.
307 * If the freed slotid equals highest_used_slotid we want to update it
308 * so that the server would be able to size down the slot table if needed,
309 * otherwise we know that the highest_used_slotid is still in use.
310 * When updating highest_used_slotid there may be "holes" in the bitmap
311 * so we need to scan down from highest_used_slotid to 0 looking for the now
312 * highest slotid in use.
313 * If none found, highest_used_slotid is set to -1.
314 */
315static void
316nfs4_free_slot(struct nfs4_slot_table *tbl, u8 free_slotid)
317{
318 int slotid = free_slotid;
319
320 spin_lock(&tbl->slot_tbl_lock);
321 /* clear used bit in bitmap */
322 __clear_bit(slotid, tbl->used_slots);
323
324 /* update highest_used_slotid when it is freed */
325 if (slotid == tbl->highest_used_slotid) {
326 slotid = find_last_bit(tbl->used_slots, tbl->max_slots);
327 if (slotid >= 0 && slotid < tbl->max_slots)
328 tbl->highest_used_slotid = slotid;
329 else
330 tbl->highest_used_slotid = -1;
331 }
332 rpc_wake_up_next(&tbl->slot_tbl_waitq);
333 spin_unlock(&tbl->slot_tbl_lock);
334 dprintk("%s: free_slotid %u highest_used_slotid %d\n", __func__,
335 free_slotid, tbl->highest_used_slotid);
336}
337
Andy Adamson13615872009-04-01 09:22:17 -0400338void nfs41_sequence_free_slot(const struct nfs_client *clp,
339 struct nfs4_sequence_res *res)
340{
341 struct nfs4_slot_table *tbl;
342
343 if (!nfs4_has_session(clp)) {
344 dprintk("%s: No session\n", __func__);
345 return;
346 }
347 tbl = &clp->cl_session->fc_slot_table;
348 if (res->sr_slotid == NFS4_MAX_SLOT_TABLE) {
349 dprintk("%s: No slot\n", __func__);
350 /* just wake up the next guy waiting since
351 * we may have not consumed a slot after all */
352 rpc_wake_up_next(&tbl->slot_tbl_waitq);
353 return;
354 }
355 nfs4_free_slot(tbl, res->sr_slotid);
356 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
357}
358
Andy Adamsonb0df8062009-04-01 09:22:18 -0400359static void nfs41_sequence_done(struct nfs_client *clp,
360 struct nfs4_sequence_res *res,
361 int rpc_status)
362{
363 unsigned long timestamp;
364 struct nfs4_slot_table *tbl;
365 struct nfs4_slot *slot;
366
367 /*
368 * sr_status remains 1 if an RPC level error occurred. The server
369 * may or may not have processed the sequence operation..
370 * Proceed as if the server received and processed the sequence
371 * operation.
372 */
373 if (res->sr_status == 1)
374 res->sr_status = NFS_OK;
375
376 /* -ERESTARTSYS can result in skipping nfs41_sequence_setup */
377 if (res->sr_slotid == NFS4_MAX_SLOT_TABLE)
378 goto out;
379
380 tbl = &clp->cl_session->fc_slot_table;
381 slot = tbl->slots + res->sr_slotid;
382
383 if (res->sr_status == 0) {
384 /* Update the slot's sequence and clientid lease timer */
385 ++slot->seq_nr;
386 timestamp = res->sr_renewal_time;
387 spin_lock(&clp->cl_lock);
388 if (time_before(clp->cl_last_renewal, timestamp))
389 clp->cl_last_renewal = timestamp;
390 spin_unlock(&clp->cl_lock);
391 return;
392 }
393out:
394 /* The session may be reset by one of the error handlers. */
395 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
396 nfs41_sequence_free_slot(clp, res);
397}
398
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400399/*
Benny Halevy510b8172009-04-01 09:22:14 -0400400 * nfs4_find_slot - efficiently look for a free slot
401 *
402 * nfs4_find_slot looks for an unset bit in the used_slots bitmap.
403 * If found, we mark the slot as used, update the highest_used_slotid,
404 * and respectively set up the sequence operation args.
405 * The slot number is returned if found, or NFS4_MAX_SLOT_TABLE otherwise.
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400406 *
407 * Note: must be called with under the slot_tbl_lock.
Benny Halevy510b8172009-04-01 09:22:14 -0400408 */
409static u8
410nfs4_find_slot(struct nfs4_slot_table *tbl, struct rpc_task *task)
411{
412 int slotid;
413 u8 ret_id = NFS4_MAX_SLOT_TABLE;
414 BUILD_BUG_ON((u8)NFS4_MAX_SLOT_TABLE != (int)NFS4_MAX_SLOT_TABLE);
415
Benny Halevy510b8172009-04-01 09:22:14 -0400416 dprintk("--> %s used_slots=%04lx highest_used=%d max_slots=%d\n",
417 __func__, tbl->used_slots[0], tbl->highest_used_slotid,
418 tbl->max_slots);
419 slotid = find_first_zero_bit(tbl->used_slots, tbl->max_slots);
420 if (slotid >= tbl->max_slots)
421 goto out;
422 __set_bit(slotid, tbl->used_slots);
423 if (slotid > tbl->highest_used_slotid)
424 tbl->highest_used_slotid = slotid;
425 ret_id = slotid;
426out:
427 dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
428 __func__, tbl->used_slots[0], tbl->highest_used_slotid, ret_id);
Benny Halevy510b8172009-04-01 09:22:14 -0400429 return ret_id;
430}
431
Andy Adamsonb069d942009-04-01 09:22:43 -0400432static int nfs4_recover_session(struct nfs4_session *session)
433{
434 struct nfs_client *clp = session->clp;
Trond Myklebusta78cb572009-08-09 15:06:19 -0400435 unsigned int loop;
Andy Adamsonb069d942009-04-01 09:22:43 -0400436 int ret;
437
Trond Myklebusta78cb572009-08-09 15:06:19 -0400438 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
Andy Adamsonb069d942009-04-01 09:22:43 -0400439 ret = nfs4_wait_clnt_recover(clp);
440 if (ret != 0)
Trond Myklebusta78cb572009-08-09 15:06:19 -0400441 break;
Andy Adamsonb069d942009-04-01 09:22:43 -0400442 if (!test_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state))
443 break;
444 nfs4_schedule_state_manager(clp);
Trond Myklebusta78cb572009-08-09 15:06:19 -0400445 ret = -EIO;
Andy Adamsonb069d942009-04-01 09:22:43 -0400446 }
Trond Myklebusta78cb572009-08-09 15:06:19 -0400447 return ret;
Andy Adamsonb069d942009-04-01 09:22:43 -0400448}
449
Andy Adamsonce5039c2009-04-01 09:22:13 -0400450static int nfs41_setup_sequence(struct nfs4_session *session,
451 struct nfs4_sequence_args *args,
452 struct nfs4_sequence_res *res,
453 int cache_reply,
454 struct rpc_task *task)
455{
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400456 struct nfs4_slot *slot;
457 struct nfs4_slot_table *tbl;
Andy Adamsonb069d942009-04-01 09:22:43 -0400458 int status = 0;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400459 u8 slotid;
460
461 dprintk("--> %s\n", __func__);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400462 /* slot already allocated? */
463 if (res->sr_slotid != NFS4_MAX_SLOT_TABLE)
464 return 0;
465
466 memset(res, 0, sizeof(*res));
467 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400468 tbl = &session->fc_slot_table;
469
470 spin_lock(&tbl->slot_tbl_lock);
Andy Adamsonb069d942009-04-01 09:22:43 -0400471 if (test_bit(NFS4CLNT_SESSION_SETUP, &session->clp->cl_state)) {
472 if (tbl->highest_used_slotid != -1) {
473 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
474 spin_unlock(&tbl->slot_tbl_lock);
475 dprintk("<-- %s: Session reset: draining\n", __func__);
476 return -EAGAIN;
477 }
478
479 /* The slot table is empty; start the reset thread */
480 dprintk("%s Session Reset\n", __func__);
481 spin_unlock(&tbl->slot_tbl_lock);
482 status = nfs4_recover_session(session);
483 if (status)
484 return status;
485 spin_lock(&tbl->slot_tbl_lock);
486 }
487
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400488 slotid = nfs4_find_slot(tbl, task);
489 if (slotid == NFS4_MAX_SLOT_TABLE) {
490 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
491 spin_unlock(&tbl->slot_tbl_lock);
492 dprintk("<-- %s: no free slots\n", __func__);
493 return -EAGAIN;
494 }
495 spin_unlock(&tbl->slot_tbl_lock);
496
497 slot = tbl->slots + slotid;
Benny Halevy99fe60d2009-04-01 09:22:29 -0400498 args->sa_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400499 args->sa_slotid = slotid;
500 args->sa_cache_this = cache_reply;
501
502 dprintk("<-- %s slotid=%d seqid=%d\n", __func__, slotid, slot->seq_nr);
503
Benny Halevy99fe60d2009-04-01 09:22:29 -0400504 res->sr_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400505 res->sr_slotid = slotid;
506 res->sr_renewal_time = jiffies;
507 /*
508 * sr_status is only set in decode_sequence, and so will remain
509 * set to 1 if an rpc level failure occurs.
510 */
511 res->sr_status = 1;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400512 return 0;
513}
514
515int nfs4_setup_sequence(struct nfs_client *clp,
516 struct nfs4_sequence_args *args,
517 struct nfs4_sequence_res *res,
518 int cache_reply,
519 struct rpc_task *task)
520{
521 int ret = 0;
522
523 dprintk("--> %s clp %p session %p sr_slotid %d\n",
524 __func__, clp, clp->cl_session, res->sr_slotid);
525
526 if (!nfs4_has_session(clp))
527 goto out;
528 ret = nfs41_setup_sequence(clp->cl_session, args, res, cache_reply,
529 task);
530 if (ret != -EAGAIN) {
531 /* terminate rpc task */
532 task->tk_status = ret;
533 task->tk_action = NULL;
534 }
535out:
536 dprintk("<-- %s status=%d\n", __func__, ret);
537 return ret;
538}
539
540struct nfs41_call_sync_data {
541 struct nfs_client *clp;
542 struct nfs4_sequence_args *seq_args;
543 struct nfs4_sequence_res *seq_res;
544 int cache_reply;
545};
546
547static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
548{
549 struct nfs41_call_sync_data *data = calldata;
550
551 dprintk("--> %s data->clp->cl_session %p\n", __func__,
552 data->clp->cl_session);
553 if (nfs4_setup_sequence(data->clp, data->seq_args,
554 data->seq_res, data->cache_reply, task))
555 return;
556 rpc_call_start(task);
557}
558
Andy Adamson69ab40c2009-04-01 09:22:19 -0400559static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
560{
561 struct nfs41_call_sync_data *data = calldata;
562
563 nfs41_sequence_done(data->clp, data->seq_res, task->tk_status);
564 nfs41_sequence_free_slot(data->clp, data->seq_res);
565}
566
Andy Adamsonce5039c2009-04-01 09:22:13 -0400567struct rpc_call_ops nfs41_call_sync_ops = {
568 .rpc_call_prepare = nfs41_call_sync_prepare,
Andy Adamson69ab40c2009-04-01 09:22:19 -0400569 .rpc_call_done = nfs41_call_sync_done,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400570};
571
572static int nfs4_call_sync_sequence(struct nfs_client *clp,
573 struct rpc_clnt *clnt,
574 struct rpc_message *msg,
575 struct nfs4_sequence_args *args,
576 struct nfs4_sequence_res *res,
577 int cache_reply)
578{
579 int ret;
580 struct rpc_task *task;
581 struct nfs41_call_sync_data data = {
582 .clp = clp,
583 .seq_args = args,
584 .seq_res = res,
585 .cache_reply = cache_reply,
586 };
587 struct rpc_task_setup task_setup = {
588 .rpc_client = clnt,
589 .rpc_message = msg,
590 .callback_ops = &nfs41_call_sync_ops,
591 .callback_data = &data
592 };
593
594 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
595 task = rpc_run_task(&task_setup);
596 if (IS_ERR(task))
597 ret = PTR_ERR(task);
598 else {
599 ret = task->tk_status;
600 rpc_put_task(task);
601 }
602 return ret;
603}
604
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400605int _nfs4_call_sync_session(struct nfs_server *server,
606 struct rpc_message *msg,
607 struct nfs4_sequence_args *args,
608 struct nfs4_sequence_res *res,
609 int cache_reply)
610{
Andy Adamsonce5039c2009-04-01 09:22:13 -0400611 return nfs4_call_sync_sequence(server->nfs_client, server->client,
612 msg, args, res, cache_reply);
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400613}
614
615#endif /* CONFIG_NFS_V4_1 */
616
617int _nfs4_call_sync(struct nfs_server *server,
618 struct rpc_message *msg,
619 struct nfs4_sequence_args *args,
620 struct nfs4_sequence_res *res,
621 int cache_reply)
622{
Benny Halevyf3752972009-04-01 09:22:04 -0400623 args->sa_session = res->sr_session = NULL;
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400624 return rpc_call_sync(server->client, msg, 0);
625}
626
627#define nfs4_call_sync(server, msg, args, res, cache_reply) \
628 (server)->nfs_client->cl_call_sync((server), (msg), &(args)->seq_args, \
629 &(res)->seq_res, (cache_reply))
630
Andy Adamsonb0df8062009-04-01 09:22:18 -0400631static void nfs4_sequence_done(const struct nfs_server *server,
632 struct nfs4_sequence_res *res, int rpc_status)
633{
634#ifdef CONFIG_NFS_V4_1
635 if (nfs4_has_session(server->nfs_client))
636 nfs41_sequence_done(server->nfs_client, res, rpc_status);
637#endif /* CONFIG_NFS_V4_1 */
638}
639
640/* no restart, therefore free slot here */
641static void nfs4_sequence_done_free_slot(const struct nfs_server *server,
642 struct nfs4_sequence_res *res,
643 int rpc_status)
644{
645 nfs4_sequence_done(server, res, rpc_status);
646 nfs4_sequence_free_slot(server->nfs_client, res);
647}
648
Trond Myklebust38478b22006-05-25 01:40:57 -0400649static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Trond Myklebust38478b22006-05-25 01:40:57 -0400651 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Trond Myklebust38478b22006-05-25 01:40:57 -0400653 spin_lock(&dir->i_lock);
Trond Myklebust40d24702007-10-08 09:24:22 -0400654 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
655 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400656 nfs_force_lookup_revalidate(dir);
Trond Myklebust40d24702007-10-08 09:24:22 -0400657 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400658 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100661struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400662 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100663 struct nfs_openargs o_arg;
664 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100665 struct nfs_open_confirmargs c_arg;
666 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100667 struct nfs_fattr f_attr;
668 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400669 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100670 struct dentry *dir;
671 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400672 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100673 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100674 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400675 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100676 int rpc_status;
677 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100678};
679
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400680
681static void nfs4_init_opendata_res(struct nfs4_opendata *p)
682{
683 p->o_res.f_attr = &p->f_attr;
684 p->o_res.dir_attr = &p->dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400685 p->o_res.seqid = p->o_arg.seqid;
686 p->c_res.seqid = p->c_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400687 p->o_res.server = p->o_arg.server;
688 nfs_fattr_init(&p->f_attr);
689 nfs_fattr_init(&p->dir_attr);
Benny Halevy578e4582009-06-18 22:01:23 -0400690 p->o_res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400691}
692
Trond Myklebustad389da2007-06-05 12:30:00 -0400693static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500694 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100695 const struct iattr *attrs)
696{
Trond Myklebustad389da2007-06-05 12:30:00 -0400697 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100698 struct inode *dir = parent->d_inode;
699 struct nfs_server *server = NFS_SERVER(dir);
700 struct nfs4_opendata *p;
701
702 p = kzalloc(sizeof(*p), GFP_KERNEL);
703 if (p == NULL)
704 goto err;
705 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
706 if (p->o_arg.seqid == NULL)
707 goto err_free;
Trond Myklebustad389da2007-06-05 12:30:00 -0400708 p->path.mnt = mntget(path->mnt);
709 p->path.dentry = dget(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100710 p->dir = parent;
711 p->owner = sp;
712 atomic_inc(&sp->so_count);
713 p->o_arg.fh = NFS_FH(dir);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500714 p->o_arg.open_flags = flags;
715 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
David Howells7539bba2006-08-22 20:06:09 -0400716 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400717 p->o_arg.id = sp->so_owner_id.id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400718 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100719 p->o_arg.server = server;
720 p->o_arg.bitmask = server->attr_bitmask;
721 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100722 if (flags & O_EXCL) {
723 u32 *s = (u32 *) p->o_arg.u.verifier.data;
724 s[0] = jiffies;
725 s[1] = current->pid;
726 } else if (flags & O_CREAT) {
727 p->o_arg.u.attrs = &p->attrs;
728 memcpy(&p->attrs, attrs, sizeof(p->attrs));
729 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100730 p->c_arg.fh = &p->o_res.fh;
731 p->c_arg.stateid = &p->o_res.stateid;
732 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400733 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400734 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100735 return p;
736err_free:
737 kfree(p);
738err:
739 dput(parent);
740 return NULL;
741}
742
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400743static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100744{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400745 struct nfs4_opendata *p = container_of(kref,
746 struct nfs4_opendata, kref);
747
748 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400749 if (p->state != NULL)
750 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400751 nfs4_put_state_owner(p->owner);
752 dput(p->dir);
Jan Blunck31f31db12008-05-02 13:42:45 -0700753 path_put(&p->path);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400754 kfree(p);
755}
756
757static void nfs4_opendata_put(struct nfs4_opendata *p)
758{
759 if (p != NULL)
760 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100761}
762
Trond Myklebust06f814a2006-01-03 09:55:07 +0100763static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
764{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100765 int ret;
766
Trond Myklebust06f814a2006-01-03 09:55:07 +0100767 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100768 return ret;
769}
770
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500771static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400772{
773 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500774
775 if (open_mode & O_EXCL)
776 goto out;
777 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400778 case FMODE_READ:
779 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400780 break;
781 case FMODE_WRITE:
782 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400783 break;
784 case FMODE_READ|FMODE_WRITE:
785 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0;
786 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500787out:
Trond Myklebust6ee41262007-07-08 14:11:36 -0400788 return ret;
789}
790
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500791static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400792{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500793 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400794 return 0;
Trond Myklebust15c831b2008-12-23 15:21:39 -0500795 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
Trond Myklebustaac00a82007-07-05 19:02:21 -0400796 return 0;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500797 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400798 return 1;
799}
800
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500801static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +0100802{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500803 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100804 case FMODE_WRITE:
805 state->n_wronly++;
806 break;
807 case FMODE_READ:
808 state->n_rdonly++;
809 break;
810 case FMODE_READ|FMODE_WRITE:
811 state->n_rdwr++;
812 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500813 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +0100814}
815
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500816static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400817{
818 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
819 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
820 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500821 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400822 case FMODE_READ:
823 set_bit(NFS_O_RDONLY_STATE, &state->flags);
824 break;
825 case FMODE_WRITE:
826 set_bit(NFS_O_WRONLY_STATE, &state->flags);
827 break;
828 case FMODE_READ|FMODE_WRITE:
829 set_bit(NFS_O_RDWR_STATE, &state->flags);
830 }
831}
832
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500833static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400834{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400835 write_seqlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500836 nfs_set_open_stateid_locked(state, stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400837 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400838}
839
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500840static 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 -0700841{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400842 /*
843 * Protect the call to nfs4_state_set_mode_locked and
844 * serialise the stateid update
845 */
846 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400847 if (deleg_stateid != NULL) {
848 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
849 set_bit(NFS_DELEGATED_STATE, &state->flags);
850 }
851 if (open_stateid != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500852 nfs_set_open_stateid_locked(state, open_stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400853 write_sequnlock(&state->seqlock);
854 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500855 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -0700856 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
858
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500859static 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 -0500860{
861 struct nfs_inode *nfsi = NFS_I(state->inode);
862 struct nfs_delegation *deleg_cur;
863 int ret = 0;
864
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500865 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -0500866
867 rcu_read_lock();
868 deleg_cur = rcu_dereference(nfsi->delegation);
869 if (deleg_cur == NULL)
870 goto no_delegation;
871
872 spin_lock(&deleg_cur->lock);
873 if (nfsi->delegation != deleg_cur ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500874 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -0500875 goto no_delegation_unlock;
876
877 if (delegation == NULL)
878 delegation = &deleg_cur->stateid;
879 else if (memcmp(deleg_cur->stateid.data, delegation->data, NFS4_STATEID_SIZE) != 0)
880 goto no_delegation_unlock;
881
Trond Myklebustb7391f42008-12-23 15:21:52 -0500882 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500883 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500884 ret = 1;
885no_delegation_unlock:
886 spin_unlock(&deleg_cur->lock);
887no_delegation:
888 rcu_read_unlock();
889
890 if (!ret && open_stateid != NULL) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500891 __update_open_stateid(state, open_stateid, NULL, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500892 ret = 1;
893 }
894
895 return ret;
896}
897
898
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500899static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400900{
901 struct nfs_delegation *delegation;
902
903 rcu_read_lock();
904 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500905 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -0400906 rcu_read_unlock();
907 return;
908 }
909 rcu_read_unlock();
910 nfs_inode_return_delegation(inode);
911}
912
Trond Myklebust6ee41262007-07-08 14:11:36 -0400913static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400914{
915 struct nfs4_state *state = opendata->state;
916 struct nfs_inode *nfsi = NFS_I(state->inode);
917 struct nfs_delegation *delegation;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500918 int open_mode = opendata->o_arg.open_flags & O_EXCL;
919 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400920 nfs4_stateid stateid;
921 int ret = -EAGAIN;
922
Trond Myklebustaac00a82007-07-05 19:02:21 -0400923 for (;;) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500924 if (can_open_cached(state, fmode, open_mode)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400925 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500926 if (can_open_cached(state, fmode, open_mode)) {
927 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400928 spin_unlock(&state->owner->so_lock);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400929 goto out_return_state;
930 }
931 spin_unlock(&state->owner->so_lock);
932 }
Trond Myklebust34310432008-12-23 15:21:38 -0500933 rcu_read_lock();
934 delegation = rcu_dereference(nfsi->delegation);
935 if (delegation == NULL ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500936 !can_open_delegated(delegation, fmode)) {
Trond Myklebust34310432008-12-23 15:21:38 -0500937 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -0400938 break;
Trond Myklebust34310432008-12-23 15:21:38 -0500939 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400940 /* Save the delegation */
941 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
942 rcu_read_unlock();
Trond Myklebustaf22f942007-08-10 17:45:10 -0400943 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400944 if (ret != 0)
945 goto out;
946 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -0500947
948 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500949 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -0500950 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400951 }
Trond Myklebustaac00a82007-07-05 19:02:21 -0400952out:
953 return ERR_PTR(ret);
954out_return_state:
955 atomic_inc(&state->count);
956 return state;
957}
958
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100959static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
960{
961 struct inode *inode;
962 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -0400963 struct nfs_delegation *delegation;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400964 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100965
Trond Myklebustaac00a82007-07-05 19:02:21 -0400966 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400967 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400968 goto out;
969 }
970
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400971 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100972 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400973 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100974 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400975 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500976 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400977 goto err;
978 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100979 state = nfs4_get_open_state(inode, data->owner);
980 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400981 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400982 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400983 int delegation_flags = 0;
984
Trond Myklebust003707c2007-07-05 18:07:55 -0400985 rcu_read_lock();
986 delegation = rcu_dereference(NFS_I(inode)->delegation);
987 if (delegation)
988 delegation_flags = delegation->flags;
989 rcu_read_unlock();
Trond Myklebust15c831b2008-12-23 15:21:39 -0500990 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400991 nfs_inode_set_delegation(state->inode,
992 data->owner->so_cred,
993 &data->o_res);
994 else
995 nfs_inode_reclaim_delegation(state->inode,
996 data->owner->so_cred,
997 &data->o_res);
998 }
Trond Myklebust34310432008-12-23 15:21:38 -0500999
1000 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001001 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001002 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001003out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001004 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001005err_put_inode:
1006 iput(inode);
1007err:
1008 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001009}
1010
Trond Myklebust864472e2006-01-03 09:55:15 +01001011static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1012{
1013 struct nfs_inode *nfsi = NFS_I(state->inode);
1014 struct nfs_open_context *ctx;
1015
1016 spin_lock(&state->inode->i_lock);
1017 list_for_each_entry(ctx, &nfsi->open_files, list) {
1018 if (ctx->state != state)
1019 continue;
1020 get_nfs_open_context(ctx);
1021 spin_unlock(&state->inode->i_lock);
1022 return ctx;
1023 }
1024 spin_unlock(&state->inode->i_lock);
1025 return ERR_PTR(-ENOENT);
1026}
1027
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001028static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
1029{
1030 struct nfs4_opendata *opendata;
1031
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001032 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, 0, NULL);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001033 if (opendata == NULL)
1034 return ERR_PTR(-ENOMEM);
1035 opendata->state = state;
1036 atomic_inc(&state->count);
1037 return opendata;
1038}
1039
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001040static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +01001041{
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001042 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001043 int ret;
1044
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001045 opendata->o_arg.open_flags = 0;
1046 opendata->o_arg.fmode = fmode;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001047 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1048 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1049 nfs4_init_opendata_res(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001050 ret = _nfs4_proc_open(opendata);
1051 if (ret != 0)
1052 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001053 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001054 if (IS_ERR(newstate))
1055 return PTR_ERR(newstate);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001056 nfs4_close_state(&opendata->path, newstate, fmode);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001057 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001058 return 0;
1059}
1060
1061static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1062{
Trond Myklebust864472e2006-01-03 09:55:15 +01001063 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001064 int ret;
1065
1066 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001067 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001068 smp_rmb();
1069 if (state->n_rdwr != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001070 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001071 if (ret != 0)
1072 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001073 if (newstate != state)
1074 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001075 }
1076 if (state->n_wronly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001077 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001078 if (ret != 0)
1079 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001080 if (newstate != state)
1081 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001082 }
1083 if (state->n_rdonly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001084 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001085 if (ret != 0)
1086 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001087 if (newstate != state)
1088 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001089 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001090 /*
1091 * We may have performed cached opens for all three recoveries.
1092 * Check if we need to update the current stateid.
1093 */
1094 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
1095 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001096 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001097 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1098 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001099 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001100 }
Trond Myklebust864472e2006-01-03 09:55:15 +01001101 return 0;
1102}
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104/*
1105 * OPEN_RECLAIM:
1106 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001108static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001110 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +01001111 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001112 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 int status;
1114
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001115 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1116 if (IS_ERR(opendata))
1117 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001118 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
1119 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001120 rcu_read_lock();
1121 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -05001122 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -04001123 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001124 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +01001125 opendata->o_arg.u.delegation_type = delegation_type;
1126 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001127 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return status;
1129}
1130
Trond Myklebust539cd032007-06-05 11:46:42 -04001131static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
1133 struct nfs_server *server = NFS_SERVER(state->inode);
1134 struct nfs4_exception exception = { };
1135 int err;
1136 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001137 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001138 if (err != -NFS4ERR_DELAY)
1139 break;
1140 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 } while (exception.retry);
1142 return err;
1143}
1144
Trond Myklebust864472e2006-01-03 09:55:15 +01001145static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1146{
1147 struct nfs_open_context *ctx;
1148 int ret;
1149
1150 ctx = nfs4_state_find_open_context(state);
1151 if (IS_ERR(ctx))
1152 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001153 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001154 put_nfs_open_context(ctx);
1155 return ret;
1156}
1157
Trond Myklebust13437e12007-07-06 15:10:43 -04001158static 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 -07001159{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001160 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001161 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001163 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1164 if (IS_ERR(opendata))
1165 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001166 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -04001167 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001168 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +01001169 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001170 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001171 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172}
1173
Trond Myklebust13437e12007-07-06 15:10:43 -04001174int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
1176 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -04001177 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 int err;
1179 do {
Trond Myklebust13437e12007-07-06 15:10:43 -04001180 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 switch (err) {
1182 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07001183 case -ENOENT:
1184 case -ESTALE:
1185 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 case -NFS4ERR_STALE_CLIENTID:
1187 case -NFS4ERR_STALE_STATEID:
1188 case -NFS4ERR_EXPIRED:
1189 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -04001190 nfs4_schedule_state_recovery(server->nfs_client);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001191 goto out;
1192 case -ERESTARTSYS:
1193 /*
1194 * The show must go on: exit, but mark the
1195 * stateid as needing recovery.
1196 */
1197 case -NFS4ERR_ADMIN_REVOKED:
1198 case -NFS4ERR_BAD_STATEID:
1199 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
1200 case -ENOMEM:
1201 err = 0;
1202 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
1204 err = nfs4_handle_exception(server, err, &exception);
1205 } while (exception.retry);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001206out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 return err;
1208}
1209
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001210static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1211{
1212 struct nfs4_opendata *data = calldata;
1213
1214 data->rpc_status = task->tk_status;
1215 if (RPC_ASSASSINATED(task))
1216 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001217 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001218 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
1219 sizeof(data->o_res.stateid.data));
Trond Myklebustbb226292008-01-02 15:19:18 -05001220 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001221 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -04001222 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001223 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001224}
1225
1226static void nfs4_open_confirm_release(void *calldata)
1227{
1228 struct nfs4_opendata *data = calldata;
1229 struct nfs4_state *state = NULL;
1230
1231 /* If this request hasn't been cancelled, do nothing */
1232 if (data->cancelled == 0)
1233 goto out_free;
1234 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001235 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001236 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001237 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001238 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001239 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001240out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001241 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001242}
1243
1244static const struct rpc_call_ops nfs4_open_confirm_ops = {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001245 .rpc_call_done = nfs4_open_confirm_done,
1246 .rpc_release = nfs4_open_confirm_release,
1247};
1248
1249/*
1250 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1251 */
1252static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
1253{
1254 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
1255 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001256 struct rpc_message msg = {
1257 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
1258 .rpc_argp = &data->c_arg,
1259 .rpc_resp = &data->c_res,
1260 .rpc_cred = data->owner->so_cred,
1261 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001262 struct rpc_task_setup task_setup_data = {
1263 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001264 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001265 .callback_ops = &nfs4_open_confirm_ops,
1266 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001267 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001268 .flags = RPC_TASK_ASYNC,
1269 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 int status;
1271
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001272 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001273 data->rpc_done = 0;
1274 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001275 data->timestamp = jiffies;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001276 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001277 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001278 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001279 status = nfs4_wait_for_completion_rpc_task(task);
1280 if (status != 0) {
1281 data->cancelled = 1;
1282 smp_wmb();
1283 } else
1284 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001285 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 return status;
1287}
1288
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001289static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001291 struct nfs4_opendata *data = calldata;
1292 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001293
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001294 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
1295 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001296 /*
1297 * Check if we still need to send an OPEN call, or if we can use
1298 * a delegation instead.
1299 */
1300 if (data->state != NULL) {
1301 struct nfs_delegation *delegation;
1302
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001303 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -04001304 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001305 rcu_read_lock();
1306 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
1307 if (delegation != NULL &&
Trond Myklebust15c831b2008-12-23 15:21:39 -05001308 test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) {
Trond Myklebustaac00a82007-07-05 19:02:21 -04001309 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001310 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001311 }
1312 rcu_read_unlock();
1313 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001314 /* Update sequence id. */
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001315 data->o_arg.id = sp->so_owner_id.id;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001316 data->o_arg.clientid = sp->so_client->cl_clientid;
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001317 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001318 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001319 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
1320 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001321 data->timestamp = jiffies;
Andy Adamsond8985282009-04-01 09:22:21 -04001322 if (nfs4_setup_sequence(data->o_arg.server->nfs_client,
1323 &data->o_arg.seq_args,
1324 &data->o_res.seq_res, 1, task))
1325 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001326 rpc_call_start(task);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001327 return;
1328out_no_action:
1329 task->tk_action = NULL;
1330
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001331}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001333static void nfs4_open_done(struct rpc_task *task, void *calldata)
1334{
1335 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001337 data->rpc_status = task->tk_status;
Andy Adamsond8985282009-04-01 09:22:21 -04001338
1339 nfs4_sequence_done_free_slot(data->o_arg.server, &data->o_res.seq_res,
1340 task->tk_status);
1341
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001342 if (RPC_ASSASSINATED(task))
1343 return;
1344 if (task->tk_status == 0) {
1345 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -07001346 case S_IFREG:
1347 break;
1348 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001349 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001350 break;
1351 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001352 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001353 break;
1354 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001355 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001356 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001357 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -04001358 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
1359 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -07001360 }
Trond Myklebust3e309912007-07-07 13:19:59 -04001361 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001362}
Trond Myklebust6f926b52005-10-18 14:20:18 -07001363
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001364static void nfs4_open_release(void *calldata)
1365{
1366 struct nfs4_opendata *data = calldata;
1367 struct nfs4_state *state = NULL;
1368
1369 /* If this request hasn't been cancelled, do nothing */
1370 if (data->cancelled == 0)
1371 goto out_free;
1372 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001373 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001374 goto out_free;
1375 /* In case we need an open_confirm, no cleanup! */
1376 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
1377 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001378 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001379 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001380 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001381out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001382 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001383}
1384
1385static const struct rpc_call_ops nfs4_open_ops = {
1386 .rpc_call_prepare = nfs4_open_prepare,
1387 .rpc_call_done = nfs4_open_done,
1388 .rpc_release = nfs4_open_release,
1389};
1390
1391/*
1392 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1393 */
1394static int _nfs4_proc_open(struct nfs4_opendata *data)
1395{
1396 struct inode *dir = data->dir->d_inode;
1397 struct nfs_server *server = NFS_SERVER(dir);
1398 struct nfs_openargs *o_arg = &data->o_arg;
1399 struct nfs_openres *o_res = &data->o_res;
1400 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001401 struct rpc_message msg = {
1402 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
1403 .rpc_argp = o_arg,
1404 .rpc_resp = o_res,
1405 .rpc_cred = data->owner->so_cred,
1406 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001407 struct rpc_task_setup task_setup_data = {
1408 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001409 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001410 .callback_ops = &nfs4_open_ops,
1411 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001412 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001413 .flags = RPC_TASK_ASYNC,
1414 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001415 int status;
1416
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001417 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001418 data->rpc_done = 0;
1419 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001420 data->cancelled = 0;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001421 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001422 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001423 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001424 status = nfs4_wait_for_completion_rpc_task(task);
1425 if (status != 0) {
1426 data->cancelled = 1;
1427 smp_wmb();
1428 } else
1429 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001430 rpc_put_task(task);
Trond Myklebust3e309912007-07-07 13:19:59 -04001431 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001432 return status;
1433
Trond Myklebust99367812007-07-17 21:52:41 -04001434 if (o_res->fh.size == 0)
1435 _nfs4_proc_lookup(dir, o_arg->name, &o_res->fh, o_res->f_attr);
1436
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001437 if (o_arg->open_flags & O_CREAT) {
1438 update_changeattr(dir, &o_res->cinfo);
1439 nfs_post_op_update_inode(dir, o_res->dir_attr);
1440 } else
1441 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001443 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001445 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
1447 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -04001448 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001449 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450}
1451
Trond Myklebust10afec92007-05-14 17:16:04 -04001452static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +01001453{
David Howells7539bba2006-08-22 20:06:09 -04001454 struct nfs_client *clp = server->nfs_client;
Trond Myklebusta78cb572009-08-09 15:06:19 -04001455 unsigned int loop;
Trond Myklebust6b309542006-09-14 14:03:14 -04001456 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001457
Trond Myklebusta78cb572009-08-09 15:06:19 -04001458 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
Trond Myklebust65de8722008-12-23 15:21:44 -05001459 ret = nfs4_wait_clnt_recover(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001460 if (ret != 0)
Trond Myklebusta78cb572009-08-09 15:06:19 -04001461 break;
Trond Myklebuste598d842008-12-23 15:21:42 -05001462 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
1463 !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
Trond Myklebust6b309542006-09-14 14:03:14 -04001464 break;
Trond Myklebust58d97142006-01-03 09:55:24 +01001465 nfs4_schedule_state_recovery(clp);
Trond Myklebusta78cb572009-08-09 15:06:19 -04001466 ret = -EIO;
Trond Myklebust6b309542006-09-14 14:03:14 -04001467 }
Trond Myklebusta78cb572009-08-09 15:06:19 -04001468 return ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001469}
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471/*
1472 * OPEN_EXPIRED:
1473 * reclaim state on the server after a network partition.
1474 * Assumes caller holds the appropriate lock
1475 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001476static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001478 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001479 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001481 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1482 if (IS_ERR(opendata))
1483 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001484 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04001485 if (ret == -ESTALE)
Trond Myklebust539cd032007-06-05 11:46:42 -04001486 d_drop(ctx->path.dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001487 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001488 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489}
1490
Trond Myklebust539cd032007-06-05 11:46:42 -04001491static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001492{
Trond Myklebust539cd032007-06-05 11:46:42 -04001493 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001494 struct nfs4_exception exception = { };
1495 int err;
1496
1497 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001498 err = _nfs4_open_expired(ctx, state);
Trond Myklebust027b6ca2008-12-23 16:04:13 -05001499 if (err != -NFS4ERR_DELAY)
1500 break;
1501 nfs4_handle_exception(server, err, &exception);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001502 } while (exception.retry);
1503 return err;
1504}
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1507{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001509 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Trond Myklebust864472e2006-01-03 09:55:15 +01001511 ctx = nfs4_state_find_open_context(state);
1512 if (IS_ERR(ctx))
1513 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001514 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001515 put_nfs_open_context(ctx);
1516 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
1518
1519/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001520 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1521 * fields corresponding to attributes that were used to store the verifier.
1522 * Make sure we clobber those fields in the later setattr call
1523 */
1524static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1525{
1526 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1527 !(sattr->ia_valid & ATTR_ATIME_SET))
1528 sattr->ia_valid |= ATTR_ATIME;
1529
1530 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1531 !(sattr->ia_valid & ATTR_MTIME_SET))
1532 sattr->ia_valid |= ATTR_MTIME;
1533}
1534
1535/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001536 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001538static 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 -07001539{
1540 struct nfs4_state_owner *sp;
1541 struct nfs4_state *state = NULL;
1542 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001543 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001544 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 status = -ENOMEM;
1548 if (!(sp = nfs4_get_state_owner(server, cred))) {
1549 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1550 goto out_err;
1551 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001552 status = nfs4_recover_expired_lease(server);
1553 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001554 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001555 if (path->dentry->d_inode != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001556 nfs4_return_incompatible_delegation(path->dentry->d_inode, fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01001557 status = -ENOMEM;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001558 opendata = nfs4_opendata_alloc(path, sp, fmode, flags, sattr);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001559 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05001560 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Trond Myklebustaac00a82007-07-05 19:02:21 -04001562 if (path->dentry->d_inode != NULL)
1563 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1564
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001565 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001567 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001569 if (opendata->o_arg.open_flags & O_EXCL)
1570 nfs4_exclusive_attrset(opendata, sattr);
1571
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001572 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001573 status = PTR_ERR(state);
1574 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001575 goto err_opendata_put;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001576 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 *res = state;
1579 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001580err_opendata_put:
1581 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001582err_put_state_owner:
1583 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 *res = NULL;
1586 return status;
1587}
1588
1589
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001590static 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 -07001591{
1592 struct nfs4_exception exception = { };
1593 struct nfs4_state *res;
1594 int status;
1595
1596 do {
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001597 status = _nfs4_do_open(dir, path, fmode, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (status == 0)
1599 break;
1600 /* NOTE: BAD_SEQID means the server and client disagree about the
1601 * book-keeping w.r.t. state-changing operations
1602 * (OPEN/CLOSE/LOCK/LOCKU...)
1603 * It is actually a sign of a bug on the client or on the server.
1604 *
1605 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001606 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 * have unhashed the old state_owner for us, and that we can
1608 * therefore safely retry using a new one. We should still warn
1609 * the user though...
1610 */
1611 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001612 printk(KERN_WARNING "NFS: v4 server %s "
1613 " returned a bad sequence-id error!\n",
1614 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 exception.retry = 1;
1616 continue;
1617 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001618 /*
1619 * BAD_STATEID on OPEN means that the server cancelled our
1620 * state before it received the OPEN_CONFIRM.
1621 * Recover by retrying the request as per the discussion
1622 * on Page 181 of RFC3530.
1623 */
1624 if (status == -NFS4ERR_BAD_STATEID) {
1625 exception.retry = 1;
1626 continue;
1627 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001628 if (status == -EAGAIN) {
1629 /* We must have found a delegation */
1630 exception.retry = 1;
1631 continue;
1632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1634 status, &exception));
1635 } while (exception.retry);
1636 return res;
1637}
1638
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001639static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1640 struct nfs_fattr *fattr, struct iattr *sattr,
1641 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001643 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001645 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 .iap = sattr,
1647 .server = server,
1648 .bitmask = server->attr_bitmask,
1649 };
1650 struct nfs_setattrres res = {
1651 .fattr = fattr,
1652 .server = server,
1653 };
1654 struct rpc_message msg = {
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001655 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1656 .rpc_argp = &arg,
1657 .rpc_resp = &res,
1658 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001660 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001661 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Trond Myklebust0e574af2005-10-27 22:12:38 -04001663 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001665 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1666 /* Use that stateid */
1667 } else if (state != NULL) {
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001668 nfs4_copy_stateid(&arg.stateid, state, current->files);
1669 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1671
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001672 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001673 if (status == 0 && state != NULL)
1674 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001675 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676}
1677
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001678static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1679 struct nfs_fattr *fattr, struct iattr *sattr,
1680 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001682 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 struct nfs4_exception exception = { };
1684 int err;
1685 do {
1686 err = nfs4_handle_exception(server,
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001687 _nfs4_do_setattr(inode, cred, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 &exception);
1689 } while (exception.retry);
1690 return err;
1691}
1692
1693struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001694 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 struct inode *inode;
1696 struct nfs4_state *state;
1697 struct nfs_closeargs arg;
1698 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001699 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001700 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701};
1702
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001703static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001704{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001705 struct nfs4_closedata *calldata = data;
1706 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001707
1708 nfs4_put_open_state(calldata->state);
1709 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001710 nfs4_put_state_owner(sp);
Jan Blunck31f31db12008-05-02 13:42:45 -07001711 path_put(&calldata->path);
Trond Myklebust95121352005-10-18 14:20:12 -07001712 kfree(calldata);
1713}
1714
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001715static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001717 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 struct nfs_server *server = NFS_SERVER(calldata->inode);
1720
Andy Adamson19ddab02009-04-01 09:22:20 -04001721 nfs4_sequence_done(server, &calldata->res.seq_res, task->tk_status);
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001722 if (RPC_ASSASSINATED(task))
1723 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 /* hmm. we are done with the inode, and in the process of freeing
1725 * the state_owner. we keep this around to process errors
1726 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 switch (task->tk_status) {
1728 case 0:
Trond Myklebust45328c32007-07-26 17:47:34 -04001729 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001730 renew_lease(server, calldata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 break;
1732 case -NFS4ERR_STALE_STATEID:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001733 case -NFS4ERR_OLD_STATEID:
1734 case -NFS4ERR_BAD_STATEID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 case -NFS4ERR_EXPIRED:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001736 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001737 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001739 if (nfs4_async_handle_error(task, server, state) == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04001740 nfs4_restart_rpc(task, server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 return;
1742 }
1743 }
Andy Adamson19ddab02009-04-01 09:22:20 -04001744 nfs4_sequence_free_slot(server->nfs_client, &calldata->res.seq_res);
Trond Myklebust516a6af2005-10-27 22:12:41 -04001745 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746}
1747
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001748static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001750 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001751 struct nfs4_state *state = calldata->state;
Trond Myklebust003707c2007-07-05 18:07:55 -04001752 int clear_rd, clear_wr, clear_rdwr;
Trond Myklebust95121352005-10-18 14:20:12 -07001753
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001754 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001755 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001756
Trond Myklebust003707c2007-07-05 18:07:55 -04001757 clear_rd = clear_wr = clear_rdwr = 0;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001758 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001759 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001760 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001761 if (state->n_rdonly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001762 clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1763 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1764 }
1765 if (state->n_wronly == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001766 clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1767 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1768 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001769 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001770 spin_unlock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001771 if (!clear_rd && !clear_wr && !clear_rdwr) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001772 /* Note: exit _without_ calling nfs4_close_done */
1773 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001774 return;
1775 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001776 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust45328c32007-07-26 17:47:34 -04001777 if (test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001778 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001779 calldata->arg.fmode = FMODE_READ;
Trond Myklebust45328c32007-07-26 17:47:34 -04001780 } else if (test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001781 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001782 calldata->arg.fmode = FMODE_WRITE;
Trond Myklebust45328c32007-07-26 17:47:34 -04001783 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001784 calldata->timestamp = jiffies;
Andy Adamson19ddab02009-04-01 09:22:20 -04001785 if (nfs4_setup_sequence((NFS_SERVER(calldata->inode))->nfs_client,
1786 &calldata->arg.seq_args, &calldata->res.seq_res,
1787 1, task))
1788 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001789 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790}
1791
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001792static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001793 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001794 .rpc_call_done = nfs4_close_done,
1795 .rpc_release = nfs4_free_closedata,
1796};
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798/*
1799 * It is possible for data to be read/written from a mem-mapped file
1800 * after the sys_close call (which hits the vfs layer as a flush).
1801 * This means that we can't safely call nfsv4 close on a file until
1802 * the inode is cleared. This in turn means that we are not good
1803 * NFSv4 citizens - we do not indicate to the server to update the file's
1804 * share state even when we are done with one of the three share
1805 * stateid's in the inode.
1806 *
1807 * NOTE: Caller must be holding the sp->so_owner semaphore!
1808 */
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001809int nfs4_do_close(struct path *path, struct nfs4_state *state, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001811 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001813 struct nfs4_state_owner *sp = state->owner;
1814 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001815 struct rpc_message msg = {
1816 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1817 .rpc_cred = state->owner->so_cred,
1818 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001819 struct rpc_task_setup task_setup_data = {
1820 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001821 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001822 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05001823 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001824 .flags = RPC_TASK_ASYNC,
1825 };
Trond Myklebust95121352005-10-18 14:20:12 -07001826 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Andy Adamson19ddab02009-04-01 09:22:20 -04001828 calldata = kzalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001830 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001831 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001833 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04001834 calldata->arg.stateid = &state->open_stateid;
Benny Halevy34dc1ad2009-04-01 09:22:52 -04001835 if (nfs4_has_session(server->nfs_client))
1836 memset(calldata->arg.stateid->data, 0, 4); /* clear seqid */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001838 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001839 if (calldata->arg.seqid == NULL)
1840 goto out_free_calldata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001841 calldata->arg.fmode = 0;
Trond Myklebusta65318b2009-03-11 14:10:28 -04001842 calldata->arg.bitmask = server->cache_consistency_bitmask;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001843 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04001844 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001845 calldata->res.server = server;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04001846 calldata->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001847 calldata->path.mnt = mntget(path->mnt);
1848 calldata->path.dentry = dget(path->dentry);
Trond Myklebust95121352005-10-18 14:20:12 -07001849
Trond Myklebust5138fde2007-07-14 15:40:01 -04001850 msg.rpc_argp = &calldata->arg,
1851 msg.rpc_resp = &calldata->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001852 task_setup_data.callback_data = calldata;
1853 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001854 if (IS_ERR(task))
1855 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001856 status = 0;
1857 if (wait)
1858 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04001859 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04001860 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07001861out_free_calldata:
1862 kfree(calldata);
1863out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04001864 nfs4_put_open_state(state);
1865 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07001866 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867}
1868
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001869static 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 -07001870{
1871 struct file *filp;
Trond Myklebust1b45c462007-07-03 13:04:56 -04001872 int ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001873
Trond Myklebust1b45c462007-07-03 13:04:56 -04001874 /* If the open_intent is for execute, we have an extra check to make */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001875 if (fmode & FMODE_EXEC) {
Trond Myklebustaf22f942007-08-10 17:45:10 -04001876 ret = nfs_may_open(state->inode,
Trond Myklebust1b45c462007-07-03 13:04:56 -04001877 state->owner->so_cred,
1878 nd->intent.open.flags);
1879 if (ret < 0)
1880 goto out_close;
1881 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001882 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001883 if (!IS_ERR(filp)) {
1884 struct nfs_open_context *ctx;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04001885 ctx = nfs_file_open_context(filp);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001886 ctx->state = state;
Trond Myklebust95cf9592006-04-18 13:14:06 -04001887 return 0;
1888 }
Trond Myklebust1b45c462007-07-03 13:04:56 -04001889 ret = PTR_ERR(filp);
1890out_close:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001891 nfs4_close_sync(path, state, fmode & (FMODE_READ|FMODE_WRITE));
Trond Myklebust1b45c462007-07-03 13:04:56 -04001892 return ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001893}
1894
1895struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1897{
Trond Myklebustad389da2007-06-05 12:30:00 -04001898 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001899 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001900 .dentry = dentry,
1901 };
Jan Blunck4ac91372008-02-14 19:34:32 -08001902 struct dentry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 struct iattr attr;
1904 struct rpc_cred *cred;
1905 struct nfs4_state *state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001906 struct dentry *res;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001907 fmode_t fmode = nd->intent.open.flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
1909 if (nd->flags & LOOKUP_CREATE) {
1910 attr.ia_mode = nd->intent.open.create_mode;
1911 attr.ia_valid = ATTR_MODE;
1912 if (!IS_POSIXACL(dir))
Al Viroce3b0f82009-03-29 19:08:22 -04001913 attr.ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 } else {
1915 attr.ia_valid = 0;
1916 BUG_ON(nd->intent.open.flags & O_CREAT);
1917 }
1918
Trond Myklebust98a8e322008-03-12 12:25:28 -04001919 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (IS_ERR(cred))
Trond Myklebust02a913a2005-10-18 14:20:17 -07001921 return (struct dentry *)cred;
Trond Myklebust565277f2007-10-15 18:17:53 -04001922 parent = dentry->d_parent;
1923 /* Protect against concurrent sillydeletes */
1924 nfs_block_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001925 state = nfs4_do_open(dir, &path, fmode, nd->intent.open.flags, &attr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001927 if (IS_ERR(state)) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001928 if (PTR_ERR(state) == -ENOENT) {
Trond Myklebust02a913a2005-10-18 14:20:17 -07001929 d_add(dentry, NULL);
Trond Myklebustd75340c2007-10-01 21:42:01 -04001930 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
1931 }
Trond Myklebust565277f2007-10-15 18:17:53 -04001932 nfs_unblock_sillyrename(parent);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001933 return (struct dentry *)state;
1934 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001935 res = d_add_unique(dentry, igrab(state->inode));
Trond Myklebust02a913a2005-10-18 14:20:17 -07001936 if (res != NULL)
Trond Myklebustdeee9362007-08-27 11:33:00 -04001937 path.dentry = res;
Trond Myklebustd75340c2007-10-01 21:42:01 -04001938 nfs_set_verifier(path.dentry, nfs_save_change_attribute(dir));
Trond Myklebust565277f2007-10-15 18:17:53 -04001939 nfs_unblock_sillyrename(parent);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001940 nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001941 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942}
1943
1944int
Trond Myklebust02a913a2005-10-18 14:20:17 -07001945nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
Trond Myklebustad389da2007-06-05 12:30:00 -04001947 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08001948 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04001949 .dentry = dentry,
1950 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 struct rpc_cred *cred;
1952 struct nfs4_state *state;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001953 fmode_t fmode = openflags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Trond Myklebust98a8e322008-03-12 12:25:28 -04001955 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 if (IS_ERR(cred))
1957 return PTR_ERR(cred);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001958 state = nfs4_do_open(dir, &path, fmode, openflags, NULL, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001960 if (IS_ERR(state)) {
1961 switch (PTR_ERR(state)) {
1962 case -EPERM:
1963 case -EACCES:
1964 case -EDQUOT:
1965 case -ENOSPC:
1966 case -EROFS:
1967 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1968 return 1;
Chuck Leverb87c0ad2006-10-19 23:28:42 -07001969 default:
1970 goto out_drop;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001971 }
Trond Myklebust02a913a2005-10-18 14:20:17 -07001972 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001973 if (state->inode == dentry->d_inode) {
Trond Myklebustd75340c2007-10-01 21:42:01 -04001974 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001975 nfs4_intent_set_file(nd, &path, state, fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 return 1;
1977 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001978 nfs4_close_sync(&path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001979out_drop:
1980 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 return 0;
1982}
1983
Trond Myklebust7fe5c392009-03-19 15:35:50 -04001984void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
1985{
1986 if (ctx->state == NULL)
1987 return;
1988 if (is_sync)
1989 nfs4_close_sync(&ctx->path, ctx->state, ctx->mode);
1990 else
1991 nfs4_close_state(&ctx->path, ctx->state, ctx->mode);
1992}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1995{
Benny Halevy43652ad2009-04-01 09:21:54 -04001996 struct nfs4_server_caps_arg args = {
1997 .fhandle = fhandle,
1998 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 struct nfs4_server_caps_res res = {};
2000 struct rpc_message msg = {
2001 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
Benny Halevy43652ad2009-04-01 09:21:54 -04002002 .rpc_argp = &args,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 .rpc_resp = &res,
2004 };
2005 int status;
2006
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002007 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if (status == 0) {
2009 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002010 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
2011 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
2012 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
2013 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
2014 NFS_CAP_CTIME|NFS_CAP_MTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
2016 server->caps |= NFS_CAP_ACLS;
2017 if (res.has_links != 0)
2018 server->caps |= NFS_CAP_HARDLINKS;
2019 if (res.has_symlinks != 0)
2020 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002021 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
2022 server->caps |= NFS_CAP_FILEID;
2023 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
2024 server->caps |= NFS_CAP_MODE;
2025 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
2026 server->caps |= NFS_CAP_NLINK;
2027 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
2028 server->caps |= NFS_CAP_OWNER;
2029 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
2030 server->caps |= NFS_CAP_OWNER_GROUP;
2031 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
2032 server->caps |= NFS_CAP_ATIME;
2033 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
2034 server->caps |= NFS_CAP_CTIME;
2035 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
2036 server->caps |= NFS_CAP_MTIME;
2037
Trond Myklebusta65318b2009-03-11 14:10:28 -04002038 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
2039 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
2040 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 server->acl_bitmask = res.acl_bitmask;
2042 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 return status;
2045}
2046
Trond Myklebust55a97592006-06-09 09:34:19 -04002047int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
2049 struct nfs4_exception exception = { };
2050 int err;
2051 do {
2052 err = nfs4_handle_exception(server,
2053 _nfs4_server_capabilities(server, fhandle),
2054 &exception);
2055 } while (exception.retry);
2056 return err;
2057}
2058
2059static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2060 struct nfs_fsinfo *info)
2061{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 struct nfs4_lookup_root_arg args = {
2063 .bitmask = nfs4_fattr_bitmap,
2064 };
2065 struct nfs4_lookup_res res = {
2066 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04002067 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 .fh = fhandle,
2069 };
2070 struct rpc_message msg = {
2071 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
2072 .rpc_argp = &args,
2073 .rpc_resp = &res,
2074 };
Benny Halevy008f55d2009-04-01 09:22:50 -04002075
Trond Myklebust0e574af2005-10-27 22:12:38 -04002076 nfs_fattr_init(info->fattr);
Trond Myklebustfccba802009-07-21 16:48:07 -04002077 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078}
2079
2080static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2081 struct nfs_fsinfo *info)
2082{
2083 struct nfs4_exception exception = { };
2084 int err;
2085 do {
2086 err = nfs4_handle_exception(server,
2087 _nfs4_lookup_root(server, fhandle, info),
2088 &exception);
2089 } while (exception.retry);
2090 return err;
2091}
2092
David Howells54ceac42006-08-22 20:06:13 -04002093/*
2094 * get the file handle for the "/" directory on the server
2095 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04002097 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 int status;
2100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 if (status == 0)
2103 status = nfs4_server_capabilities(server, fhandle);
2104 if (status == 0)
2105 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08002106 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
Manoj Naik6b97fd32006-06-09 09:34:29 -04002109/*
2110 * Get locations and (maybe) other attributes of a referral.
2111 * Note that we'll actually follow the referral later when
2112 * we detect fsid mismatch in inode revalidation
2113 */
Trond Myklebust56659e92007-07-17 21:52:39 -04002114static 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 -04002115{
2116 int status = -ENOMEM;
2117 struct page *page = NULL;
2118 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04002119
2120 page = alloc_page(GFP_KERNEL);
2121 if (page == NULL)
2122 goto out;
2123 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
2124 if (locations == NULL)
2125 goto out;
2126
Trond Myklebustc228fd32007-01-13 02:28:11 -05002127 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002128 if (status != 0)
2129 goto out;
2130 /* Make sure server returned a different fsid for the referral */
2131 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07002132 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 -04002133 status = -EIO;
2134 goto out;
2135 }
2136
2137 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
2138 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
2139 if (!fattr->mode)
2140 fattr->mode = S_IFDIR;
2141 memset(fhandle, 0, sizeof(struct nfs_fh));
2142out:
2143 if (page)
2144 __free_page(page);
2145 if (locations)
2146 kfree(locations);
2147 return status;
2148}
2149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2151{
2152 struct nfs4_getattr_arg args = {
2153 .fh = fhandle,
2154 .bitmask = server->attr_bitmask,
2155 };
2156 struct nfs4_getattr_res res = {
2157 .fattr = fattr,
2158 .server = server,
2159 };
2160 struct rpc_message msg = {
2161 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
2162 .rpc_argp = &args,
2163 .rpc_resp = &res,
2164 };
2165
Trond Myklebust0e574af2005-10-27 22:12:38 -04002166 nfs_fattr_init(fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002167 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
2169
2170static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2171{
2172 struct nfs4_exception exception = { };
2173 int err;
2174 do {
2175 err = nfs4_handle_exception(server,
2176 _nfs4_proc_getattr(server, fhandle, fattr),
2177 &exception);
2178 } while (exception.retry);
2179 return err;
2180}
2181
2182/*
2183 * The file is not closed if it is opened due to the a request to change
2184 * the size of the file. The open call will not be needed once the
2185 * VFS layer lookup-intents are implemented.
2186 *
2187 * Close is called when the inode is destroyed.
2188 * If we haven't opened the file for O_WRONLY, we
2189 * need to in the size_change case to obtain a stateid.
2190 *
2191 * Got race?
2192 * Because OPEN is always done by name in nfsv4, it is
2193 * possible that we opened a different file by the same
2194 * name. We can recognize this race condition, but we
2195 * can't do anything about it besides returning an error.
2196 *
2197 * This will be fixed with VFS changes (lookup-intent).
2198 */
2199static int
2200nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
2201 struct iattr *sattr)
2202{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002203 struct inode *inode = dentry->d_inode;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002204 struct rpc_cred *cred = NULL;
Trond Myklebustd5308382005-11-04 15:33:38 -05002205 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 int status;
2207
Trond Myklebust0e574af2005-10-27 22:12:38 -04002208 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Trond Myklebustd5308382005-11-04 15:33:38 -05002210 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002211 if (sattr->ia_valid & ATTR_FILE) {
2212 struct nfs_open_context *ctx;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002213
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002214 ctx = nfs_file_open_context(sattr->ia_file);
Neil Brown504e5182008-10-16 14:15:16 +11002215 if (ctx) {
2216 cred = ctx->cred;
2217 state = ctx->state;
2218 }
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002219 }
2220
2221 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04002222 if (status == 0)
2223 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 return status;
2225}
2226
Trond Myklebust56659e92007-07-17 21:52:39 -04002227static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
2228 const struct qstr *name, struct nfs_fh *fhandle,
David Howells2b3de442006-08-22 20:06:09 -04002229 struct nfs_fattr *fattr)
2230{
2231 int status;
2232 struct nfs4_lookup_arg args = {
2233 .bitmask = server->attr_bitmask,
2234 .dir_fh = dirfh,
2235 .name = name,
2236 };
2237 struct nfs4_lookup_res res = {
2238 .server = server,
2239 .fattr = fattr,
2240 .fh = fhandle,
2241 };
2242 struct rpc_message msg = {
2243 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
2244 .rpc_argp = &args,
2245 .rpc_resp = &res,
2246 };
2247
2248 nfs_fattr_init(fattr);
2249
2250 dprintk("NFS call lookupfh %s\n", name->name);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002251 status = nfs4_call_sync(server, &msg, &args, &res, 0);
David Howells2b3de442006-08-22 20:06:09 -04002252 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04002253 return status;
2254}
2255
2256static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
2257 struct qstr *name, struct nfs_fh *fhandle,
2258 struct nfs_fattr *fattr)
2259{
2260 struct nfs4_exception exception = { };
2261 int err;
2262 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04002263 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
2264 /* FIXME: !!!! */
2265 if (err == -NFS4ERR_MOVED) {
2266 err = -EREMOTE;
2267 break;
2268 }
2269 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04002270 } while (exception.retry);
2271 return err;
2272}
2273
Trond Myklebust56659e92007-07-17 21:52:39 -04002274static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2276{
Trond Myklebust4e56e082007-07-01 18:13:52 -04002277 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
2279 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04002280 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002281 if (status == -NFS4ERR_MOVED)
2282 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 dprintk("NFS reply lookup: %d\n", status);
2284 return status;
2285}
2286
2287static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2288{
2289 struct nfs4_exception exception = { };
2290 int err;
2291 do {
2292 err = nfs4_handle_exception(NFS_SERVER(dir),
2293 _nfs4_proc_lookup(dir, name, fhandle, fattr),
2294 &exception);
2295 } while (exception.retry);
2296 return err;
2297}
2298
2299static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2300{
Trond Myklebust76b32992007-08-10 17:45:11 -04002301 struct nfs_server *server = NFS_SERVER(inode);
2302 struct nfs_fattr fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 struct nfs4_accessargs args = {
2304 .fh = NFS_FH(inode),
Trond Myklebust76b32992007-08-10 17:45:11 -04002305 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 };
Trond Myklebust76b32992007-08-10 17:45:11 -04002307 struct nfs4_accessres res = {
2308 .server = server,
2309 .fattr = &fattr,
2310 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 struct rpc_message msg = {
2312 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
2313 .rpc_argp = &args,
2314 .rpc_resp = &res,
2315 .rpc_cred = entry->cred,
2316 };
2317 int mode = entry->mask;
2318 int status;
2319
2320 /*
2321 * Determine which access bits we want to ask for...
2322 */
2323 if (mode & MAY_READ)
2324 args.access |= NFS4_ACCESS_READ;
2325 if (S_ISDIR(inode->i_mode)) {
2326 if (mode & MAY_WRITE)
2327 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
2328 if (mode & MAY_EXEC)
2329 args.access |= NFS4_ACCESS_LOOKUP;
2330 } else {
2331 if (mode & MAY_WRITE)
2332 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
2333 if (mode & MAY_EXEC)
2334 args.access |= NFS4_ACCESS_EXECUTE;
2335 }
Trond Myklebust76b32992007-08-10 17:45:11 -04002336 nfs_fattr_init(&fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002337 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 if (!status) {
2339 entry->mask = 0;
2340 if (res.access & NFS4_ACCESS_READ)
2341 entry->mask |= MAY_READ;
2342 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
2343 entry->mask |= MAY_WRITE;
2344 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
2345 entry->mask |= MAY_EXEC;
Trond Myklebust76b32992007-08-10 17:45:11 -04002346 nfs_refresh_inode(inode, &fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 }
2348 return status;
2349}
2350
2351static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2352{
2353 struct nfs4_exception exception = { };
2354 int err;
2355 do {
2356 err = nfs4_handle_exception(NFS_SERVER(inode),
2357 _nfs4_proc_access(inode, entry),
2358 &exception);
2359 } while (exception.retry);
2360 return err;
2361}
2362
2363/*
2364 * TODO: For the time being, we don't try to get any attributes
2365 * along with any of the zero-copy operations READ, READDIR,
2366 * READLINK, WRITE.
2367 *
2368 * In the case of the first three, we want to put the GETATTR
2369 * after the read-type operation -- this is because it is hard
2370 * to predict the length of a GETATTR response in v4, and thus
2371 * align the READ data correctly. This means that the GETATTR
2372 * may end up partially falling into the page cache, and we should
2373 * shift it into the 'tail' of the xdr_buf before processing.
2374 * To do this efficiently, we need to know the total length
2375 * of data received, which doesn't seem to be available outside
2376 * of the RPC layer.
2377 *
2378 * In the case of WRITE, we also want to put the GETATTR after
2379 * the operation -- in this case because we want to make sure
2380 * we get the post-operation mtime and size. This means that
2381 * we can't use xdr_encode_pages() as written: we need a variant
2382 * of it which would leave room in the 'tail' iovec.
2383 *
2384 * Both of these changes to the XDR layer would in fact be quite
2385 * minor, but I decided to leave them for a subsequent patch.
2386 */
2387static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
2388 unsigned int pgbase, unsigned int pglen)
2389{
2390 struct nfs4_readlink args = {
2391 .fh = NFS_FH(inode),
2392 .pgbase = pgbase,
2393 .pglen = pglen,
2394 .pages = &page,
2395 };
Benny Halevyf50c7002009-04-01 09:21:55 -04002396 struct nfs4_readlink_res res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 struct rpc_message msg = {
2398 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
2399 .rpc_argp = &args,
Benny Halevyf50c7002009-04-01 09:21:55 -04002400 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 };
2402
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002403 return nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404}
2405
2406static int nfs4_proc_readlink(struct inode *inode, struct page *page,
2407 unsigned int pgbase, unsigned int pglen)
2408{
2409 struct nfs4_exception exception = { };
2410 int err;
2411 do {
2412 err = nfs4_handle_exception(NFS_SERVER(inode),
2413 _nfs4_proc_readlink(inode, page, pgbase, pglen),
2414 &exception);
2415 } while (exception.retry);
2416 return err;
2417}
2418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419/*
2420 * Got race?
2421 * We will need to arrange for the VFS layer to provide an atomic open.
2422 * Until then, this create/open method is prone to inefficiency and race
2423 * conditions due to the lookup, create, and open VFS calls from sys_open()
2424 * placed on the wire.
2425 *
2426 * Given the above sorry state of affairs, I'm simply sending an OPEN.
2427 * The file will be opened again in the subsequent VFS open call
2428 * (nfs4_proc_file_open).
2429 *
2430 * The open for read will just hang around to be used by any process that
2431 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
2432 */
2433
2434static int
2435nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07002436 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
Trond Myklebustad389da2007-06-05 12:30:00 -04002438 struct path path = {
Jan Blunck4ac91372008-02-14 19:34:32 -08002439 .mnt = nd->path.mnt,
Trond Myklebustad389da2007-06-05 12:30:00 -04002440 .dentry = dentry,
2441 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 struct nfs4_state *state;
2443 struct rpc_cred *cred;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002444 fmode_t fmode = flags & (FMODE_READ | FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 int status = 0;
2446
Trond Myklebust98a8e322008-03-12 12:25:28 -04002447 cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 if (IS_ERR(cred)) {
2449 status = PTR_ERR(cred);
2450 goto out;
2451 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002452 state = nfs4_do_open(dir, &path, fmode, flags, sattr, cred);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002453 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 if (IS_ERR(state)) {
2455 status = PTR_ERR(state);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002456 goto out_putcred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002458 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04002459 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 if (flags & O_EXCL) {
2461 struct nfs_fattr fattr;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002462 status = nfs4_do_setattr(state->inode, cred, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002463 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04002464 nfs_setattr_update_inode(state->inode, sattr);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04002465 nfs_post_op_update_inode(state->inode, &fattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002466 }
Trond Myklebustad389da2007-06-05 12:30:00 -04002467 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002468 status = nfs4_intent_set_file(nd, &path, state, fmode);
Trond Myklebust02a913a2005-10-18 14:20:17 -07002469 else
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002470 nfs4_close_sync(&path, state, fmode);
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002471out_putcred:
2472 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473out:
2474 return status;
2475}
2476
2477static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
2478{
Trond Myklebust16e42952005-10-27 22:12:44 -04002479 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002480 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 .fh = NFS_FH(dir),
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002482 .name.len = name->len,
2483 .name.name = name->name,
Trond Myklebust16e42952005-10-27 22:12:44 -04002484 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002486 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04002487 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04002488 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002490 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
2491 .rpc_argp = &args,
2492 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 };
2494 int status;
2495
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002496 nfs_fattr_init(&res.dir_attr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002497 status = nfs4_call_sync(server, &msg, &args, &res, 1);
Trond Myklebust16e42952005-10-27 22:12:44 -04002498 if (status == 0) {
2499 update_changeattr(dir, &res.cinfo);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002500 nfs_post_op_update_inode(dir, &res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04002501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 return status;
2503}
2504
2505static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
2506{
2507 struct nfs4_exception exception = { };
2508 int err;
2509 do {
2510 err = nfs4_handle_exception(NFS_SERVER(dir),
2511 _nfs4_proc_remove(dir, name),
2512 &exception);
2513 } while (exception.retry);
2514 return err;
2515}
2516
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002517static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002519 struct nfs_server *server = NFS_SERVER(dir);
2520 struct nfs_removeargs *args = msg->rpc_argp;
2521 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Trond Myklebusta65318b2009-03-11 14:10:28 -04002523 args->bitmask = server->cache_consistency_bitmask;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002524 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526}
2527
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002528static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002530 struct nfs_removeres *res = task->tk_msg.rpc_resp;
2531
Andy Adamson472cfbd2009-04-01 09:22:24 -04002532 nfs4_sequence_done(res->server, &res->seq_res, task->tk_status);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002533 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002534 return 0;
Andy Adamson472cfbd2009-04-01 09:22:24 -04002535 nfs4_sequence_free_slot(res->server->nfs_client, &res->seq_res);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002536 update_changeattr(dir, &res->cinfo);
2537 nfs_post_op_update_inode(dir, &res->dir_attr);
2538 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539}
2540
2541static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2542 struct inode *new_dir, struct qstr *new_name)
2543{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002544 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 struct nfs4_rename_arg arg = {
2546 .old_dir = NFS_FH(old_dir),
2547 .new_dir = NFS_FH(new_dir),
2548 .old_name = old_name,
2549 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002550 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002552 struct nfs_fattr old_fattr, new_fattr;
2553 struct nfs4_rename_res res = {
2554 .server = server,
2555 .old_fattr = &old_fattr,
2556 .new_fattr = &new_fattr,
2557 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 struct rpc_message msg = {
2559 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2560 .rpc_argp = &arg,
2561 .rpc_resp = &res,
2562 };
2563 int status;
2564
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002565 nfs_fattr_init(res.old_fattr);
2566 nfs_fattr_init(res.new_fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002567 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
2569 if (!status) {
2570 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002571 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002573 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 }
2575 return status;
2576}
2577
2578static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2579 struct inode *new_dir, struct qstr *new_name)
2580{
2581 struct nfs4_exception exception = { };
2582 int err;
2583 do {
2584 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2585 _nfs4_proc_rename(old_dir, old_name,
2586 new_dir, new_name),
2587 &exception);
2588 } while (exception.retry);
2589 return err;
2590}
2591
2592static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2593{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002594 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 struct nfs4_link_arg arg = {
2596 .fh = NFS_FH(inode),
2597 .dir_fh = NFS_FH(dir),
2598 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002599 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002601 struct nfs_fattr fattr, dir_attr;
2602 struct nfs4_link_res res = {
2603 .server = server,
2604 .fattr = &fattr,
2605 .dir_attr = &dir_attr,
2606 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 struct rpc_message msg = {
2608 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2609 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002610 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 };
2612 int status;
2613
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002614 nfs_fattr_init(res.fattr);
2615 nfs_fattr_init(res.dir_attr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002616 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002617 if (!status) {
2618 update_changeattr(dir, &res.cinfo);
2619 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002620 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
2623 return status;
2624}
2625
2626static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2627{
2628 struct nfs4_exception exception = { };
2629 int err;
2630 do {
2631 err = nfs4_handle_exception(NFS_SERVER(inode),
2632 _nfs4_proc_link(inode, dir, name),
2633 &exception);
2634 } while (exception.retry);
2635 return err;
2636}
2637
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002638struct nfs4_createdata {
2639 struct rpc_message msg;
2640 struct nfs4_create_arg arg;
2641 struct nfs4_create_res res;
2642 struct nfs_fh fh;
2643 struct nfs_fattr fattr;
2644 struct nfs_fattr dir_fattr;
2645};
2646
2647static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2648 struct qstr *name, struct iattr *sattr, u32 ftype)
2649{
2650 struct nfs4_createdata *data;
2651
2652 data = kzalloc(sizeof(*data), GFP_KERNEL);
2653 if (data != NULL) {
2654 struct nfs_server *server = NFS_SERVER(dir);
2655
2656 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2657 data->msg.rpc_argp = &data->arg;
2658 data->msg.rpc_resp = &data->res;
2659 data->arg.dir_fh = NFS_FH(dir);
2660 data->arg.server = server;
2661 data->arg.name = name;
2662 data->arg.attrs = sattr;
2663 data->arg.ftype = ftype;
2664 data->arg.bitmask = server->attr_bitmask;
2665 data->res.server = server;
2666 data->res.fh = &data->fh;
2667 data->res.fattr = &data->fattr;
2668 data->res.dir_fattr = &data->dir_fattr;
2669 nfs_fattr_init(data->res.fattr);
2670 nfs_fattr_init(data->res.dir_fattr);
2671 }
2672 return data;
2673}
2674
2675static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2676{
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002677 int status = nfs4_call_sync(NFS_SERVER(dir), &data->msg,
2678 &data->arg, &data->res, 1);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002679 if (status == 0) {
2680 update_changeattr(dir, &data->res.dir_cinfo);
2681 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2682 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2683 }
2684 return status;
2685}
2686
2687static void nfs4_free_createdata(struct nfs4_createdata *data)
2688{
2689 kfree(data);
2690}
2691
Chuck Lever4f390c12006-08-22 20:06:22 -04002692static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002693 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002695 struct nfs4_createdata *data;
2696 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
Chuck Lever94a6d752006-08-22 20:06:23 -04002698 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002699 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04002700
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002701 status = -ENOMEM;
2702 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2703 if (data == NULL)
2704 goto out;
2705
2706 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2707 data->arg.u.symlink.pages = &page;
2708 data->arg.u.symlink.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002710 status = nfs4_do_create(dir, dentry, data);
2711
2712 nfs4_free_createdata(data);
2713out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 return status;
2715}
2716
Chuck Lever4f390c12006-08-22 20:06:22 -04002717static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002718 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719{
2720 struct nfs4_exception exception = { };
2721 int err;
2722 do {
2723 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002724 _nfs4_proc_symlink(dir, dentry, page,
2725 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 &exception);
2727 } while (exception.retry);
2728 return err;
2729}
2730
2731static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2732 struct iattr *sattr)
2733{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002734 struct nfs4_createdata *data;
2735 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002737 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2738 if (data == NULL)
2739 goto out;
2740
2741 status = nfs4_do_create(dir, dentry, data);
2742
2743 nfs4_free_createdata(data);
2744out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 return status;
2746}
2747
2748static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2749 struct iattr *sattr)
2750{
2751 struct nfs4_exception exception = { };
2752 int err;
2753 do {
2754 err = nfs4_handle_exception(NFS_SERVER(dir),
2755 _nfs4_proc_mkdir(dir, dentry, sattr),
2756 &exception);
2757 } while (exception.retry);
2758 return err;
2759}
2760
2761static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2762 u64 cookie, struct page *page, unsigned int count, int plus)
2763{
2764 struct inode *dir = dentry->d_inode;
2765 struct nfs4_readdir_arg args = {
2766 .fh = NFS_FH(dir),
2767 .pages = &page,
2768 .pgbase = 0,
2769 .count = count,
Trond Myklebusta65318b2009-03-11 14:10:28 -04002770 .bitmask = NFS_SERVER(dentry->d_inode)->cache_consistency_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 };
2772 struct nfs4_readdir_res res;
2773 struct rpc_message msg = {
2774 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2775 .rpc_argp = &args,
2776 .rpc_resp = &res,
2777 .rpc_cred = cred,
2778 };
2779 int status;
2780
Harvey Harrison3110ff82008-05-02 13:42:44 -07002781 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00002782 dentry->d_parent->d_name.name,
2783 dentry->d_name.name,
2784 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2786 res.pgbase = args.pgbase;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002787 status = nfs4_call_sync(NFS_SERVER(dir), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 if (status == 0)
2789 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustc4812992007-09-28 17:11:45 -04002790
2791 nfs_invalidate_atime(dir);
2792
Harvey Harrison3110ff82008-05-02 13:42:44 -07002793 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 return status;
2795}
2796
2797static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2798 u64 cookie, struct page *page, unsigned int count, int plus)
2799{
2800 struct nfs4_exception exception = { };
2801 int err;
2802 do {
2803 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2804 _nfs4_proc_readdir(dentry, cred, cookie,
2805 page, count, plus),
2806 &exception);
2807 } while (exception.retry);
2808 return err;
2809}
2810
2811static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2812 struct iattr *sattr, dev_t rdev)
2813{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002814 struct nfs4_createdata *data;
2815 int mode = sattr->ia_mode;
2816 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
2818 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2819 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002820
2821 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
2822 if (data == NULL)
2823 goto out;
2824
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002826 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002828 data->arg.ftype = NF4BLK;
2829 data->arg.u.device.specdata1 = MAJOR(rdev);
2830 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 }
2832 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002833 data->arg.ftype = NF4CHR;
2834 data->arg.u.device.specdata1 = MAJOR(rdev);
2835 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002838 status = nfs4_do_create(dir, dentry, data);
2839
2840 nfs4_free_createdata(data);
2841out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 return status;
2843}
2844
2845static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2846 struct iattr *sattr, dev_t rdev)
2847{
2848 struct nfs4_exception exception = { };
2849 int err;
2850 do {
2851 err = nfs4_handle_exception(NFS_SERVER(dir),
2852 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2853 &exception);
2854 } while (exception.retry);
2855 return err;
2856}
2857
2858static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2859 struct nfs_fsstat *fsstat)
2860{
2861 struct nfs4_statfs_arg args = {
2862 .fh = fhandle,
2863 .bitmask = server->attr_bitmask,
2864 };
Benny Halevy24ad1482009-04-01 09:21:56 -04002865 struct nfs4_statfs_res res = {
2866 .fsstat = fsstat,
2867 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 struct rpc_message msg = {
2869 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2870 .rpc_argp = &args,
Benny Halevy24ad1482009-04-01 09:21:56 -04002871 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 };
2873
Trond Myklebust0e574af2005-10-27 22:12:38 -04002874 nfs_fattr_init(fsstat->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002875 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876}
2877
2878static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2879{
2880 struct nfs4_exception exception = { };
2881 int err;
2882 do {
2883 err = nfs4_handle_exception(server,
2884 _nfs4_proc_statfs(server, fhandle, fsstat),
2885 &exception);
2886 } while (exception.retry);
2887 return err;
2888}
2889
2890static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2891 struct nfs_fsinfo *fsinfo)
2892{
2893 struct nfs4_fsinfo_arg args = {
2894 .fh = fhandle,
2895 .bitmask = server->attr_bitmask,
2896 };
Benny Halevy3dda5e42009-04-01 09:21:57 -04002897 struct nfs4_fsinfo_res res = {
2898 .fsinfo = fsinfo,
2899 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 struct rpc_message msg = {
2901 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2902 .rpc_argp = &args,
Benny Halevy3dda5e42009-04-01 09:21:57 -04002903 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 };
2905
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002906 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907}
2908
2909static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2910{
2911 struct nfs4_exception exception = { };
2912 int err;
2913
2914 do {
2915 err = nfs4_handle_exception(server,
2916 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2917 &exception);
2918 } while (exception.retry);
2919 return err;
2920}
2921
2922static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2923{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002924 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2926}
2927
2928static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2929 struct nfs_pathconf *pathconf)
2930{
2931 struct nfs4_pathconf_arg args = {
2932 .fh = fhandle,
2933 .bitmask = server->attr_bitmask,
2934 };
Benny Halevyd45b2982009-04-01 09:21:58 -04002935 struct nfs4_pathconf_res res = {
2936 .pathconf = pathconf,
2937 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 struct rpc_message msg = {
2939 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2940 .rpc_argp = &args,
Benny Halevyd45b2982009-04-01 09:21:58 -04002941 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 };
2943
2944 /* None of the pathconf attributes are mandatory to implement */
2945 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2946 memset(pathconf, 0, sizeof(*pathconf));
2947 return 0;
2948 }
2949
Trond Myklebust0e574af2005-10-27 22:12:38 -04002950 nfs_fattr_init(pathconf->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002951 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952}
2953
2954static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2955 struct nfs_pathconf *pathconf)
2956{
2957 struct nfs4_exception exception = { };
2958 int err;
2959
2960 do {
2961 err = nfs4_handle_exception(server,
2962 _nfs4_proc_pathconf(server, fhandle, pathconf),
2963 &exception);
2964 } while (exception.retry);
2965 return err;
2966}
2967
Trond Myklebustec06c092006-03-20 13:44:27 -05002968static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969{
Trond Myklebustec06c092006-03-20 13:44:27 -05002970 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
Andy Adamsonf11c88a2009-04-01 09:22:25 -04002972 dprintk("--> %s\n", __func__);
2973
2974 /* nfs4_sequence_free_slot called in the read rpc_call_done */
2975 nfs4_sequence_done(server, &data->res.seq_res, task->tk_status);
2976
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002977 if (nfs4_async_handle_error(task, server, data->args.context->state) == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04002978 nfs4_restart_rpc(task, server->nfs_client);
Trond Myklebustec06c092006-03-20 13:44:27 -05002979 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 }
Trond Myklebust8850df92007-09-28 17:20:07 -04002981
2982 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002984 renew_lease(server, data->timestamp);
2985 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986}
2987
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002988static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 data->timestamp = jiffies;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04002991 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992}
2993
Trond Myklebust788e7a82006-03-20 13:44:27 -05002994static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 struct inode *inode = data->inode;
2997
Andy Adamsondef6ed72009-04-01 09:22:26 -04002998 /* slot is freed in nfs_writeback_done */
2999 nfs4_sequence_done(NFS_SERVER(inode), &data->res.seq_res,
3000 task->tk_status);
3001
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003002 if (nfs4_async_handle_error(task, NFS_SERVER(inode), data->args.context->state) == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04003003 nfs4_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003004 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003006 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust70ca8852007-09-30 15:21:24 -04003008 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003009 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05003010 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011}
3012
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003013static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014{
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003015 struct nfs_server *server = NFS_SERVER(data->inode);
3016
Trond Myklebusta65318b2009-03-11 14:10:28 -04003017 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003018 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 data->timestamp = jiffies;
3020
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003021 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022}
3023
Trond Myklebust788e7a82006-03-20 13:44:27 -05003024static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 struct inode *inode = data->inode;
3027
Andy Adamson21d9a852009-04-01 09:22:27 -04003028 nfs4_sequence_done(NFS_SERVER(inode), &data->res.seq_res,
3029 task->tk_status);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003030 if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04003031 nfs4_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003032 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 }
Andy Adamson21d9a852009-04-01 09:22:27 -04003034 nfs4_sequence_free_slot(NFS_SERVER(inode)->nfs_client,
3035 &data->res.seq_res);
Trond Myklebust9e08a3c2007-10-08 14:10:31 -04003036 nfs_refresh_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003037 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038}
3039
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003040static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041{
Trond Myklebust788e7a82006-03-20 13:44:27 -05003042 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
Trond Myklebusta65318b2009-03-11 14:10:28 -04003044 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003045 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003046 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047}
3048
3049/*
3050 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
3051 * standalone procedure for queueing an asynchronous RENEW.
3052 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003053static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054{
David Howellsadfa6f92006-08-22 20:06:08 -04003055 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003056 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
3058 if (task->tk_status < 0) {
Trond Myklebust95baa252009-05-26 14:51:00 -04003059 /* Unless we're shutting down, schedule state recovery! */
3060 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) != 0)
3061 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 return;
3063 }
3064 spin_lock(&clp->cl_lock);
3065 if (time_before(clp->cl_last_renewal,timestamp))
3066 clp->cl_last_renewal = timestamp;
3067 spin_unlock(&clp->cl_lock);
Benny Halevy29fba382009-04-01 09:22:44 -04003068 dprintk("%s calling put_rpccred on rpc_cred %p\n", __func__,
3069 task->tk_msg.rpc_cred);
3070 put_rpccred(task->tk_msg.rpc_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071}
3072
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003073static const struct rpc_call_ops nfs4_renew_ops = {
3074 .rpc_call_done = nfs4_renew_done,
3075};
3076
David Howellsadfa6f92006-08-22 20:06:08 -04003077int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078{
3079 struct rpc_message msg = {
3080 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3081 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003082 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 };
3084
3085 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003086 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087}
3088
David Howellsadfa6f92006-08-22 20:06:08 -04003089int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090{
3091 struct rpc_message msg = {
3092 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3093 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003094 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 };
3096 unsigned long now = jiffies;
3097 int status;
3098
3099 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3100 if (status < 0)
3101 return status;
3102 spin_lock(&clp->cl_lock);
3103 if (time_before(clp->cl_last_renewal,now))
3104 clp->cl_last_renewal = now;
3105 spin_unlock(&clp->cl_lock);
3106 return 0;
3107}
3108
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003109static inline int nfs4_server_supports_acls(struct nfs_server *server)
3110{
3111 return (server->caps & NFS_CAP_ACLS)
3112 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
3113 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
3114}
3115
3116/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
3117 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
3118 * the stack.
3119 */
3120#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
3121
3122static void buf_to_pages(const void *buf, size_t buflen,
3123 struct page **pages, unsigned int *pgbase)
3124{
3125 const void *p = buf;
3126
3127 *pgbase = offset_in_page(buf);
3128 p -= *pgbase;
3129 while (p < buf + buflen) {
3130 *(pages++) = virt_to_page(p);
3131 p += PAGE_CACHE_SIZE;
3132 }
3133}
3134
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003135struct nfs4_cached_acl {
3136 int cached;
3137 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00003138 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003139};
3140
3141static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003142{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003143 struct nfs_inode *nfsi = NFS_I(inode);
3144
3145 spin_lock(&inode->i_lock);
3146 kfree(nfsi->nfs4_acl);
3147 nfsi->nfs4_acl = acl;
3148 spin_unlock(&inode->i_lock);
3149}
3150
3151static void nfs4_zap_acl_attr(struct inode *inode)
3152{
3153 nfs4_set_cached_acl(inode, NULL);
3154}
3155
3156static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
3157{
3158 struct nfs_inode *nfsi = NFS_I(inode);
3159 struct nfs4_cached_acl *acl;
3160 int ret = -ENOENT;
3161
3162 spin_lock(&inode->i_lock);
3163 acl = nfsi->nfs4_acl;
3164 if (acl == NULL)
3165 goto out;
3166 if (buf == NULL) /* user is just asking for length */
3167 goto out_len;
3168 if (acl->cached == 0)
3169 goto out;
3170 ret = -ERANGE; /* see getxattr(2) man page */
3171 if (acl->len > buflen)
3172 goto out;
3173 memcpy(buf, acl->data, acl->len);
3174out_len:
3175 ret = acl->len;
3176out:
3177 spin_unlock(&inode->i_lock);
3178 return ret;
3179}
3180
3181static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
3182{
3183 struct nfs4_cached_acl *acl;
3184
3185 if (buf && acl_len <= PAGE_SIZE) {
3186 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
3187 if (acl == NULL)
3188 goto out;
3189 acl->cached = 1;
3190 memcpy(acl->data, buf, acl_len);
3191 } else {
3192 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
3193 if (acl == NULL)
3194 goto out;
3195 acl->cached = 0;
3196 }
3197 acl->len = acl_len;
3198out:
3199 nfs4_set_cached_acl(inode, acl);
3200}
3201
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003202static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003203{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003204 struct page *pages[NFS4ACL_MAXPAGES];
3205 struct nfs_getaclargs args = {
3206 .fh = NFS_FH(inode),
3207 .acl_pages = pages,
3208 .acl_len = buflen,
3209 };
Benny Halevy663c79b2009-04-01 09:21:59 -04003210 struct nfs_getaclres res = {
3211 .acl_len = buflen,
3212 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003213 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003214 struct rpc_message msg = {
3215 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
3216 .rpc_argp = &args,
Benny Halevy663c79b2009-04-01 09:21:59 -04003217 .rpc_resp = &res,
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003218 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003219 struct page *localpage = NULL;
3220 int ret;
3221
3222 if (buflen < PAGE_SIZE) {
3223 /* As long as we're doing a round trip to the server anyway,
3224 * let's be prepared for a page of acl data. */
3225 localpage = alloc_page(GFP_KERNEL);
3226 resp_buf = page_address(localpage);
3227 if (localpage == NULL)
3228 return -ENOMEM;
3229 args.acl_pages[0] = localpage;
3230 args.acl_pgbase = 0;
Benny Halevy663c79b2009-04-01 09:21:59 -04003231 args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003232 } else {
3233 resp_buf = buf;
3234 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
3235 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003236 ret = nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003237 if (ret)
3238 goto out_free;
Benny Halevy663c79b2009-04-01 09:21:59 -04003239 if (res.acl_len > args.acl_len)
3240 nfs4_write_cached_acl(inode, NULL, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003241 else
Benny Halevy663c79b2009-04-01 09:21:59 -04003242 nfs4_write_cached_acl(inode, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003243 if (buf) {
3244 ret = -ERANGE;
Benny Halevy663c79b2009-04-01 09:21:59 -04003245 if (res.acl_len > buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003246 goto out_free;
3247 if (localpage)
Benny Halevy663c79b2009-04-01 09:21:59 -04003248 memcpy(buf, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003249 }
Benny Halevy663c79b2009-04-01 09:21:59 -04003250 ret = res.acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003251out_free:
3252 if (localpage)
3253 __free_page(localpage);
3254 return ret;
3255}
3256
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003257static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
3258{
3259 struct nfs4_exception exception = { };
3260 ssize_t ret;
3261 do {
3262 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
3263 if (ret >= 0)
3264 break;
3265 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
3266 } while (exception.retry);
3267 return ret;
3268}
3269
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003270static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
3271{
3272 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003273 int ret;
3274
3275 if (!nfs4_server_supports_acls(server))
3276 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003277 ret = nfs_revalidate_inode(server, inode);
3278 if (ret < 0)
3279 return ret;
3280 ret = nfs4_read_cached_acl(inode, buf, buflen);
3281 if (ret != -ENOENT)
3282 return ret;
3283 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003284}
3285
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003286static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003287{
3288 struct nfs_server *server = NFS_SERVER(inode);
3289 struct page *pages[NFS4ACL_MAXPAGES];
3290 struct nfs_setaclargs arg = {
3291 .fh = NFS_FH(inode),
3292 .acl_pages = pages,
3293 .acl_len = buflen,
3294 };
Benny Halevy73c403a2009-04-01 09:22:01 -04003295 struct nfs_setaclres res;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003296 struct rpc_message msg = {
3297 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
3298 .rpc_argp = &arg,
Benny Halevy73c403a2009-04-01 09:22:01 -04003299 .rpc_resp = &res,
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003300 };
3301 int ret;
3302
3303 if (!nfs4_server_supports_acls(server))
3304 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07003305 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003306 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003307 ret = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebustf41f7412008-06-11 17:39:04 -04003308 nfs_access_zap_cache(inode);
3309 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003310 return ret;
3311}
3312
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003313static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
3314{
3315 struct nfs4_exception exception = { };
3316 int err;
3317 do {
3318 err = nfs4_handle_exception(NFS_SERVER(inode),
3319 __nfs4_proc_set_acl(inode, buf, buflen),
3320 &exception);
3321 } while (exception.retry);
3322 return err;
3323}
3324
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325static int
Andy Adamson8328d592009-04-01 09:22:35 -04003326_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 -07003327{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 if (!clp || task->tk_status >= 0)
3329 return 0;
3330 switch(task->tk_status) {
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003331 case -NFS4ERR_ADMIN_REVOKED:
3332 case -NFS4ERR_BAD_STATEID:
3333 case -NFS4ERR_OPENMODE:
3334 if (state == NULL)
3335 break;
3336 nfs4_state_mark_reclaim_nograce(clp, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 case -NFS4ERR_STALE_CLIENTID:
3338 case -NFS4ERR_STALE_STATEID:
3339 case -NFS4ERR_EXPIRED:
Trond Myklebust5d008372008-02-22 16:34:17 -05003340 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 nfs4_schedule_state_recovery(clp);
Trond Myklebuste005e802008-12-23 15:21:48 -05003342 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
Trond Myklebustfda13932008-02-22 16:34:12 -05003343 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 task->tk_status = 0;
3345 return -EAGAIN;
Andy Adamson4745e312009-04-01 09:22:42 -04003346#if defined(CONFIG_NFS_V4_1)
3347 case -NFS4ERR_BADSESSION:
3348 case -NFS4ERR_BADSLOT:
3349 case -NFS4ERR_BAD_HIGH_SLOT:
3350 case -NFS4ERR_DEADSESSION:
3351 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
3352 case -NFS4ERR_SEQ_FALSE_RETRY:
3353 case -NFS4ERR_SEQ_MISORDERED:
3354 dprintk("%s ERROR %d, Reset session\n", __func__,
3355 task->tk_status);
3356 set_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state);
3357 task->tk_status = 0;
3358 return -EAGAIN;
3359#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 case -NFS4ERR_DELAY:
Andy Adamson8328d592009-04-01 09:22:35 -04003361 if (server)
3362 nfs_inc_server_stats(server, NFSIOS_DELAY);
Chuck Lever006ea732006-03-20 13:44:14 -05003363 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 rpc_delay(task, NFS4_POLL_RETRY_MAX);
3365 task->tk_status = 0;
3366 return -EAGAIN;
3367 case -NFS4ERR_OLD_STATEID:
3368 task->tk_status = 0;
3369 return -EAGAIN;
3370 }
3371 task->tk_status = nfs4_map_errors(task->tk_status);
3372 return 0;
3373}
3374
Andy Adamson8328d592009-04-01 09:22:35 -04003375static int
3376nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, struct nfs4_state *state)
3377{
3378 return _nfs4_async_handle_error(task, server, server->nfs_client, state);
3379}
3380
David Howellsadfa6f92006-08-22 20:06:08 -04003381int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382{
3383 nfs4_verifier sc_verifier;
3384 struct nfs4_setclientid setclientid = {
3385 .sc_verifier = &sc_verifier,
3386 .sc_prog = program,
3387 };
3388 struct rpc_message msg = {
3389 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
3390 .rpc_argp = &setclientid,
3391 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003392 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 };
Al Virobc4785c2006-10-19 23:28:51 -07003394 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 int loop = 0;
3396 int status;
3397
Al Virobc4785c2006-10-19 23:28:51 -07003398 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
3400 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
3401
3402 for(;;) {
3403 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05003404 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05003405 clp->cl_ipaddr,
3406 rpc_peeraddr2str(clp->cl_rpcclient,
3407 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05003408 rpc_peeraddr2str(clp->cl_rpcclient,
3409 RPC_DISPLAY_PROTO),
Trond Myklebust78ea3232008-04-07 20:49:28 -04003410 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 clp->cl_id_uniquifier);
3412 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003413 sizeof(setclientid.sc_netid),
3414 rpc_peeraddr2str(clp->cl_rpcclient,
3415 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003417 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 clp->cl_ipaddr, port >> 8, port & 255);
3419
3420 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3421 if (status != -NFS4ERR_CLID_INUSE)
3422 break;
3423 if (signalled())
3424 break;
3425 if (loop++ & 1)
3426 ssleep(clp->cl_lease_time + 1);
3427 else
3428 if (++clp->cl_id_uniquifier == 0)
3429 break;
3430 }
3431 return status;
3432}
3433
David Howellsadfa6f92006-08-22 20:06:08 -04003434static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435{
3436 struct nfs_fsinfo fsinfo;
3437 struct rpc_message msg = {
3438 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
3439 .rpc_argp = clp,
3440 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003441 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 };
3443 unsigned long now;
3444 int status;
3445
3446 now = jiffies;
3447 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3448 if (status == 0) {
3449 spin_lock(&clp->cl_lock);
3450 clp->cl_lease_time = fsinfo.lease_time * HZ;
3451 clp->cl_last_renewal = now;
3452 spin_unlock(&clp->cl_lock);
3453 }
3454 return status;
3455}
3456
David Howellsadfa6f92006-08-22 20:06:08 -04003457int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05003458{
Benny Halevy77e03672008-06-24 20:25:57 +03003459 long timeout = 0;
Trond Myklebust51581f32006-03-20 13:44:47 -05003460 int err;
3461 do {
3462 err = _nfs4_proc_setclientid_confirm(clp, cred);
3463 switch (err) {
3464 case 0:
3465 return err;
3466 case -NFS4ERR_RESOURCE:
3467 /* The IBM lawyers misread another document! */
3468 case -NFS4ERR_DELAY:
3469 err = nfs4_delay(clp->cl_rpcclient, &timeout);
3470 }
3471 } while (err == 0);
3472 return err;
3473}
3474
Trond Myklebustfe650402006-01-03 09:55:18 +01003475struct nfs4_delegreturndata {
3476 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003477 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01003478 struct nfs_fh fh;
3479 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003480 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003481 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01003482 int rpc_status;
3483};
3484
Trond Myklebustfe650402006-01-03 09:55:18 +01003485static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
3486{
3487 struct nfs4_delegreturndata *data = calldata;
Andy Adamson938e1012009-04-01 09:22:28 -04003488
3489 nfs4_sequence_done_free_slot(data->res.server, &data->res.seq_res,
3490 task->tk_status);
3491
Trond Myklebustfe650402006-01-03 09:55:18 +01003492 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003493 if (data->rpc_status == 0)
Trond Myklebustfa178f22006-01-03 09:55:38 +01003494 renew_lease(data->res.server, data->timestamp);
Trond Myklebustfe650402006-01-03 09:55:18 +01003495}
3496
3497static void nfs4_delegreturn_release(void *calldata)
3498{
Trond Myklebustfe650402006-01-03 09:55:18 +01003499 kfree(calldata);
3500}
3501
Andy Adamson938e1012009-04-01 09:22:28 -04003502#if defined(CONFIG_NFS_V4_1)
3503static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
3504{
3505 struct nfs4_delegreturndata *d_data;
3506
3507 d_data = (struct nfs4_delegreturndata *)data;
3508
3509 if (nfs4_setup_sequence(d_data->res.server->nfs_client,
3510 &d_data->args.seq_args,
3511 &d_data->res.seq_res, 1, task))
3512 return;
3513 rpc_call_start(task);
3514}
3515#endif /* CONFIG_NFS_V4_1 */
3516
Jesper Juhlc8d149f2006-03-20 13:44:07 -05003517static const struct rpc_call_ops nfs4_delegreturn_ops = {
Andy Adamson938e1012009-04-01 09:22:28 -04003518#if defined(CONFIG_NFS_V4_1)
3519 .rpc_call_prepare = nfs4_delegreturn_prepare,
3520#endif /* CONFIG_NFS_V4_1 */
Trond Myklebustfe650402006-01-03 09:55:18 +01003521 .rpc_call_done = nfs4_delegreturn_done,
3522 .rpc_release = nfs4_delegreturn_release,
3523};
3524
Trond Myklebuste6f81072008-01-24 18:14:34 -05003525static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01003526{
3527 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003528 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01003529 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003530 struct rpc_message msg = {
3531 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
3532 .rpc_cred = cred,
3533 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003534 struct rpc_task_setup task_setup_data = {
3535 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04003536 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003537 .callback_ops = &nfs4_delegreturn_ops,
3538 .flags = RPC_TASK_ASYNC,
3539 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05003540 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01003541
Andy Adamson938e1012009-04-01 09:22:28 -04003542 data = kzalloc(sizeof(*data), GFP_KERNEL);
Trond Myklebustfe650402006-01-03 09:55:18 +01003543 if (data == NULL)
3544 return -ENOMEM;
3545 data->args.fhandle = &data->fh;
3546 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003547 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01003548 nfs_copy_fh(&data->fh, NFS_FH(inode));
3549 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01003550 data->res.fattr = &data->fattr;
3551 data->res.server = server;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003552 data->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003553 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003554 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01003555 data->rpc_status = 0;
3556
Trond Myklebustc970aa82007-07-14 15:39:59 -04003557 task_setup_data.callback_data = data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003558 msg.rpc_argp = &data->args,
3559 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003560 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003561 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003562 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003563 if (!issync)
3564 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01003565 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003566 if (status != 0)
3567 goto out;
3568 status = data->rpc_status;
3569 if (status != 0)
3570 goto out;
3571 nfs_refresh_inode(inode, &data->fattr);
3572out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003573 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003574 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575}
3576
Trond Myklebuste6f81072008-01-24 18:14:34 -05003577int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578{
3579 struct nfs_server *server = NFS_SERVER(inode);
3580 struct nfs4_exception exception = { };
3581 int err;
3582 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05003583 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 switch (err) {
3585 case -NFS4ERR_STALE_STATEID:
3586 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 case 0:
3588 return 0;
3589 }
3590 err = nfs4_handle_exception(server, err, &exception);
3591 } while (exception.retry);
3592 return err;
3593}
3594
3595#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3596#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3597
3598/*
3599 * sleep, with exponential backoff, and retry the LOCK operation.
3600 */
3601static unsigned long
3602nfs4_set_lock_task_retry(unsigned long timeout)
3603{
Matthew Wilcox150030b2007-12-06 16:24:39 -05003604 schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 timeout <<= 1;
3606 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3607 return NFS4_LOCK_MAXTIMEOUT;
3608 return timeout;
3609}
3610
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3612{
3613 struct inode *inode = state->inode;
3614 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003615 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003616 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003618 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003620 struct nfs_lockt_res res = {
3621 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 };
3623 struct rpc_message msg = {
3624 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3625 .rpc_argp = &arg,
3626 .rpc_resp = &res,
3627 .rpc_cred = state->owner->so_cred,
3628 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 struct nfs4_lock_state *lsp;
3630 int status;
3631
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003632 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003633 status = nfs4_set_lock_state(state, request);
3634 if (status != 0)
3635 goto out;
3636 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003637 arg.lock_owner.id = lsp->ls_id.id;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003638 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003639 switch (status) {
3640 case 0:
3641 request->fl_type = F_UNLCK;
3642 break;
3643 case -NFS4ERR_DENIED:
3644 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003646 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003647out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 return status;
3649}
3650
3651static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3652{
3653 struct nfs4_exception exception = { };
3654 int err;
3655
3656 do {
3657 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3658 _nfs4_proc_getlk(state, cmd, request),
3659 &exception);
3660 } while (exception.retry);
3661 return err;
3662}
3663
3664static int do_vfs_lock(struct file *file, struct file_lock *fl)
3665{
3666 int res = 0;
3667 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3668 case FL_POSIX:
3669 res = posix_lock_file_wait(file, fl);
3670 break;
3671 case FL_FLOCK:
3672 res = flock_lock_file_wait(file, fl);
3673 break;
3674 default:
3675 BUG();
3676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 return res;
3678}
3679
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003680struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003681 struct nfs_locku_args arg;
3682 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003683 struct nfs4_lock_state *lsp;
3684 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003685 struct file_lock fl;
3686 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003687 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003688};
3689
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003690static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3691 struct nfs_open_context *ctx,
3692 struct nfs4_lock_state *lsp,
3693 struct nfs_seqid *seqid)
3694{
3695 struct nfs4_unlockdata *p;
3696 struct inode *inode = lsp->ls_state->inode;
3697
Andy Adamsona8936932009-04-01 09:22:23 -04003698 p = kzalloc(sizeof(*p), GFP_KERNEL);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003699 if (p == NULL)
3700 return NULL;
3701 p->arg.fh = NFS_FH(inode);
3702 p->arg.fl = &p->fl;
3703 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003704 p->res.seqid = seqid;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003705 p->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003706 p->arg.stateid = &lsp->ls_stateid;
3707 p->lsp = lsp;
3708 atomic_inc(&lsp->ls_count);
3709 /* Ensure we don't close file until we're done freeing locks! */
3710 p->ctx = get_nfs_open_context(ctx);
3711 memcpy(&p->fl, fl, sizeof(p->fl));
3712 p->server = NFS_SERVER(inode);
3713 return p;
3714}
3715
Trond Myklebust06f814a2006-01-03 09:55:07 +01003716static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003717{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003718 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003719 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003720 nfs4_put_lock_state(calldata->lsp);
3721 put_nfs_open_context(calldata->ctx);
3722 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003723}
3724
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003725static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003726{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003727 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003728
Andy Adamsona8936932009-04-01 09:22:23 -04003729 nfs4_sequence_done(calldata->server, &calldata->res.seq_res,
3730 task->tk_status);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003731 if (RPC_ASSASSINATED(task))
3732 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003733 switch (task->tk_status) {
3734 case 0:
3735 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003736 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003737 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003738 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003739 break;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003740 case -NFS4ERR_BAD_STATEID:
3741 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003742 case -NFS4ERR_STALE_STATEID:
3743 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003744 break;
3745 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003746 if (nfs4_async_handle_error(task, calldata->server, NULL) == -EAGAIN)
Andy Adamsoneedc0202009-04-01 09:22:41 -04003747 nfs4_restart_rpc(task,
3748 calldata->server->nfs_client);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003749 }
Andy Adamsona8936932009-04-01 09:22:23 -04003750 nfs4_sequence_free_slot(calldata->server->nfs_client,
3751 &calldata->res.seq_res);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003752}
3753
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003754static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003755{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003756 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003758 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003759 return;
3760 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003761 /* Note: exit _without_ running nfs4_locku_done */
3762 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003763 return;
3764 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003765 calldata->timestamp = jiffies;
Andy Adamsona8936932009-04-01 09:22:23 -04003766 if (nfs4_setup_sequence(calldata->server->nfs_client,
3767 &calldata->arg.seq_args,
3768 &calldata->res.seq_res, 1, task))
3769 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003770 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771}
3772
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003773static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003774 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003775 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003776 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003777};
3778
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003779static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3780 struct nfs_open_context *ctx,
3781 struct nfs4_lock_state *lsp,
3782 struct nfs_seqid *seqid)
3783{
3784 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003785 struct rpc_message msg = {
3786 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
3787 .rpc_cred = ctx->cred,
3788 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003789 struct rpc_task_setup task_setup_data = {
3790 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003791 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003792 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003793 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003794 .flags = RPC_TASK_ASYNC,
3795 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003796
Frank Filz137d6ac2007-07-09 15:32:29 -07003797 /* Ensure this is an unlock - when canceling a lock, the
3798 * canceled lock is passed in, and it won't be an unlock.
3799 */
3800 fl->fl_type = F_UNLCK;
3801
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003802 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3803 if (data == NULL) {
3804 nfs_free_seqid(seqid);
3805 return ERR_PTR(-ENOMEM);
3806 }
3807
Trond Myklebust5138fde2007-07-14 15:40:01 -04003808 msg.rpc_argp = &data->arg,
3809 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003810 task_setup_data.callback_data = data;
3811 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003812}
3813
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3815{
Trond Myklebust19e03c52008-12-23 15:21:44 -05003816 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003817 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003818 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003819 struct rpc_task *task;
3820 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003821 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
Trond Myklebust9b073572006-06-29 16:38:34 -04003823 status = nfs4_set_lock_state(state, request);
3824 /* Unlock _before_ we do the RPC call */
3825 request->fl_flags |= FL_EXISTS;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003826 down_read(&nfsi->rwsem);
3827 if (do_vfs_lock(request->fl_file, request) == -ENOENT) {
3828 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003829 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05003830 }
3831 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04003832 if (status != 0)
3833 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003834 /* Is this a delegated lock? */
3835 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003836 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003837 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003838 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003839 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003840 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003841 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04003842 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003843 status = PTR_ERR(task);
3844 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003845 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003846 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003847 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003848out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04003849 request->fl_flags = fl_flags;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003850 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851}
3852
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003853struct nfs4_lockdata {
3854 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003855 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003856 struct nfs4_lock_state *lsp;
3857 struct nfs_open_context *ctx;
3858 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003859 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003860 int rpc_status;
3861 int cancelled;
Andy Adamson66179ef2009-04-01 09:22:22 -04003862 struct nfs_server *server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003863};
3864
3865static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3866 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3867{
3868 struct nfs4_lockdata *p;
3869 struct inode *inode = lsp->ls_state->inode;
3870 struct nfs_server *server = NFS_SERVER(inode);
3871
3872 p = kzalloc(sizeof(*p), GFP_KERNEL);
3873 if (p == NULL)
3874 return NULL;
3875
3876 p->arg.fh = NFS_FH(inode);
3877 p->arg.fl = &p->fl;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003878 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid);
3879 if (p->arg.open_seqid == NULL)
3880 goto out_free;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003881 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3882 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003883 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003884 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003885 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003886 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003887 p->res.lock_seqid = p->arg.lock_seqid;
Andy Adamson5f7dbd52009-04-01 09:22:05 -04003888 p->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003889 p->lsp = lsp;
Andy Adamson66179ef2009-04-01 09:22:22 -04003890 p->server = server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003891 atomic_inc(&lsp->ls_count);
3892 p->ctx = get_nfs_open_context(ctx);
3893 memcpy(&p->fl, fl, sizeof(p->fl));
3894 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003895out_free_seqid:
3896 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003897out_free:
3898 kfree(p);
3899 return NULL;
3900}
3901
3902static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3903{
3904 struct nfs4_lockdata *data = calldata;
3905 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
Harvey Harrison3110ff82008-05-02 13:42:44 -07003907 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003908 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3909 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003910 /* Do we need to do an open_to_lock_owner? */
3911 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05003912 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
3913 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003914 data->arg.open_stateid = &state->stateid;
3915 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003916 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003917 } else
3918 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003919 data->timestamp = jiffies;
Andy Adamson66179ef2009-04-01 09:22:22 -04003920 if (nfs4_setup_sequence(data->server->nfs_client, &data->arg.seq_args,
3921 &data->res.seq_res, 1, task))
3922 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003923 rpc_call_start(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003924 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003925}
3926
3927static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3928{
3929 struct nfs4_lockdata *data = calldata;
3930
Harvey Harrison3110ff82008-05-02 13:42:44 -07003931 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003932
Andy Adamson66179ef2009-04-01 09:22:22 -04003933 nfs4_sequence_done_free_slot(data->server, &data->res.seq_res,
3934 task->tk_status);
3935
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003936 data->rpc_status = task->tk_status;
3937 if (RPC_ASSASSINATED(task))
3938 goto out;
3939 if (data->arg.new_lock_owner != 0) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003940 if (data->rpc_status == 0)
3941 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3942 else
3943 goto out;
3944 }
3945 if (data->rpc_status == 0) {
3946 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3947 sizeof(data->lsp->ls_stateid.data));
3948 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04003949 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003950 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003951out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07003952 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003953}
3954
3955static void nfs4_lock_release(void *calldata)
3956{
3957 struct nfs4_lockdata *data = calldata;
3958
Harvey Harrison3110ff82008-05-02 13:42:44 -07003959 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05003960 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003961 if (data->cancelled != 0) {
3962 struct rpc_task *task;
3963 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3964 data->arg.lock_seqid);
3965 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003966 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003967 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003968 } else
3969 nfs_free_seqid(data->arg.lock_seqid);
3970 nfs4_put_lock_state(data->lsp);
3971 put_nfs_open_context(data->ctx);
3972 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07003973 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003974}
3975
3976static const struct rpc_call_ops nfs4_lock_ops = {
3977 .rpc_call_prepare = nfs4_lock_prepare,
3978 .rpc_call_done = nfs4_lock_done,
3979 .rpc_release = nfs4_lock_release,
3980};
3981
3982static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3983{
3984 struct nfs4_lockdata *data;
3985 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003986 struct rpc_message msg = {
3987 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3988 .rpc_cred = state->owner->so_cred,
3989 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003990 struct rpc_task_setup task_setup_data = {
3991 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04003992 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003993 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05003994 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003995 .flags = RPC_TASK_ASYNC,
3996 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003997 int ret;
3998
Harvey Harrison3110ff82008-05-02 13:42:44 -07003999 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004000 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004001 fl->fl_u.nfs4_fl.owner);
4002 if (data == NULL)
4003 return -ENOMEM;
4004 if (IS_SETLKW(cmd))
4005 data->arg.block = 1;
4006 if (reclaim != 0)
4007 data->arg.reclaim = 1;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004008 msg.rpc_argp = &data->arg,
4009 msg.rpc_resp = &data->res,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004010 task_setup_data.callback_data = data;
4011 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05004012 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004013 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004014 ret = nfs4_wait_for_completion_rpc_task(task);
4015 if (ret == 0) {
4016 ret = data->rpc_status;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004017 } else
4018 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05004019 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004020 dprintk("%s: done, ret = %d!\n", __func__, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004021 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022}
4023
4024static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
4025{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004026 struct nfs_server *server = NFS_SERVER(state->inode);
4027 struct nfs4_exception exception = { };
4028 int err;
4029
4030 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004031 /* Cache the lock if possible... */
4032 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4033 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004034 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
4035 if (err != -NFS4ERR_DELAY)
4036 break;
4037 nfs4_handle_exception(server, err, &exception);
4038 } while (exception.retry);
4039 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040}
4041
4042static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
4043{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004044 struct nfs_server *server = NFS_SERVER(state->inode);
4045 struct nfs4_exception exception = { };
4046 int err;
4047
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004048 err = nfs4_set_lock_state(state, request);
4049 if (err != 0)
4050 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004051 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004052 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4053 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004054 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
4055 if (err != -NFS4ERR_DELAY)
4056 break;
4057 nfs4_handle_exception(server, err, &exception);
4058 } while (exception.retry);
4059 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060}
4061
4062static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4063{
Trond Myklebust19e03c52008-12-23 15:21:44 -05004064 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004065 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 int status;
4067
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004068 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004069 status = nfs4_set_lock_state(state, request);
4070 if (status != 0)
4071 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004072 request->fl_flags |= FL_ACCESS;
4073 status = do_vfs_lock(request->fl_file, request);
4074 if (status < 0)
4075 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05004076 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004077 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04004078 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004079 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05004080 request->fl_flags = fl_flags & ~FL_SLEEP;
4081 status = do_vfs_lock(request->fl_file, request);
4082 goto out_unlock;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004083 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004084 status = _nfs4_do_setlk(state, cmd, request, 0);
4085 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04004086 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004087 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004088 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004089 if (do_vfs_lock(request->fl_file, request) < 0)
Harvey Harrison3110ff82008-05-02 13:42:44 -07004090 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004091out_unlock:
Trond Myklebust19e03c52008-12-23 15:21:44 -05004092 up_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004093out:
4094 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 return status;
4096}
4097
4098static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4099{
4100 struct nfs4_exception exception = { };
4101 int err;
4102
4103 do {
Trond Myklebust965b5d62009-06-17 13:22:59 -07004104 err = _nfs4_proc_setlk(state, cmd, request);
4105 if (err == -NFS4ERR_DENIED)
4106 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 err = nfs4_handle_exception(NFS_SERVER(state->inode),
Trond Myklebust965b5d62009-06-17 13:22:59 -07004108 err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 } while (exception.retry);
4110 return err;
4111}
4112
4113static int
4114nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
4115{
4116 struct nfs_open_context *ctx;
4117 struct nfs4_state *state;
4118 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
4119 int status;
4120
4121 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004122 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 state = ctx->state;
4124
4125 if (request->fl_start < 0 || request->fl_end < 0)
4126 return -EINVAL;
4127
Trond Myklebustd9531262009-07-21 19:22:38 -04004128 if (IS_GETLK(cmd)) {
4129 if (state != NULL)
4130 return nfs4_proc_getlk(state, F_GETLK, request);
4131 return 0;
4132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133
4134 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
4135 return -EINVAL;
4136
Trond Myklebustd9531262009-07-21 19:22:38 -04004137 if (request->fl_type == F_UNLCK) {
4138 if (state != NULL)
4139 return nfs4_proc_unlck(state, cmd, request);
4140 return 0;
4141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142
Trond Myklebustd9531262009-07-21 19:22:38 -04004143 if (state == NULL)
4144 return -ENOLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 do {
4146 status = nfs4_proc_setlk(state, cmd, request);
4147 if ((status != -EAGAIN) || IS_SETLK(cmd))
4148 break;
4149 timeout = nfs4_set_lock_task_retry(timeout);
4150 status = -ERESTARTSYS;
4151 if (signalled())
4152 break;
4153 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 return status;
4155}
4156
Trond Myklebust888e6942005-11-04 15:38:11 -05004157int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
4158{
4159 struct nfs_server *server = NFS_SERVER(state->inode);
4160 struct nfs4_exception exception = { };
4161 int err;
4162
4163 err = nfs4_set_lock_state(state, fl);
4164 if (err != 0)
4165 goto out;
4166 do {
4167 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
Trond Myklebustd5122202009-06-17 13:22:58 -07004168 switch (err) {
4169 default:
4170 printk(KERN_ERR "%s: unhandled error %d.\n",
4171 __func__, err);
4172 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004173 case -ESTALE:
Trond Myklebustd5122202009-06-17 13:22:58 -07004174 goto out;
4175 case -NFS4ERR_EXPIRED:
4176 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004177 case -NFS4ERR_STALE_STATEID:
Trond Myklebustd5122202009-06-17 13:22:58 -07004178 nfs4_schedule_state_recovery(server->nfs_client);
4179 goto out;
Trond Myklebust965b5d62009-06-17 13:22:59 -07004180 case -ERESTARTSYS:
4181 /*
4182 * The show must go on: exit, but mark the
4183 * stateid as needing recovery.
4184 */
4185 case -NFS4ERR_ADMIN_REVOKED:
4186 case -NFS4ERR_BAD_STATEID:
4187 case -NFS4ERR_OPENMODE:
4188 nfs4_state_mark_reclaim_nograce(server->nfs_client, state);
4189 err = 0;
4190 goto out;
4191 case -ENOMEM:
4192 case -NFS4ERR_DENIED:
4193 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
4194 err = 0;
4195 goto out;
Trond Myklebustd5122202009-06-17 13:22:58 -07004196 case -NFS4ERR_DELAY:
4197 break;
4198 }
Trond Myklebust888e6942005-11-04 15:38:11 -05004199 err = nfs4_handle_exception(server, err, &exception);
4200 } while (exception.retry);
4201out:
4202 return err;
4203}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004204
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004205#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
4206
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004207int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
4208 size_t buflen, int flags)
4209{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004210 struct inode *inode = dentry->d_inode;
4211
4212 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
4213 return -EOPNOTSUPP;
4214
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004215 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004216}
4217
4218/* The getxattr man page suggests returning -ENODATA for unknown attributes,
4219 * and that's what we'll do for e.g. user attributes that haven't been set.
4220 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
4221 * attributes in kernel-managed attribute namespaces. */
4222ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
4223 size_t buflen)
4224{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004225 struct inode *inode = dentry->d_inode;
4226
4227 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
4228 return -EOPNOTSUPP;
4229
4230 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004231}
4232
4233ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
4234{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004235 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004236
J. Bruce Fields096455a2006-03-20 23:23:42 -05004237 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
4238 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004239 if (buf && buflen < len)
4240 return -ERANGE;
4241 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004242 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
4243 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004244}
4245
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004246static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
4247{
4248 if (!((fattr->valid & NFS_ATTR_FATTR_FILEID) &&
4249 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
4250 (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)))
4251 return;
4252
4253 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
4254 NFS_ATTR_FATTR_NLINK;
4255 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
4256 fattr->nlink = 2;
4257}
4258
Trond Myklebust56659e92007-07-17 21:52:39 -04004259int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04004260 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004261{
4262 struct nfs_server *server = NFS_SERVER(dir);
4263 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04004264 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
4265 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004266 };
4267 struct nfs4_fs_locations_arg args = {
4268 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05004269 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004270 .page = page,
4271 .bitmask = bitmask,
4272 };
Benny Halevy22958462009-04-01 09:22:02 -04004273 struct nfs4_fs_locations_res res = {
4274 .fs_locations = fs_locations,
4275 };
Trond Myklebust683b57b2006-06-09 09:34:22 -04004276 struct rpc_message msg = {
4277 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
4278 .rpc_argp = &args,
Benny Halevy22958462009-04-01 09:22:02 -04004279 .rpc_resp = &res,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004280 };
4281 int status;
4282
Harvey Harrison3110ff82008-05-02 13:42:44 -07004283 dprintk("%s: start\n", __func__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05004284 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004285 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04004286 fs_locations->nlocations = 0;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04004287 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004288 nfs_fixup_referral_attributes(&fs_locations->fattr);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004289 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004290 return status;
4291}
4292
Andy Adamson557134a2009-04-01 09:21:53 -04004293#ifdef CONFIG_NFS_V4_1
Benny Halevy99fe60d2009-04-01 09:22:29 -04004294/*
4295 * nfs4_proc_exchange_id()
4296 *
4297 * Since the clientid has expired, all compounds using sessions
4298 * associated with the stale clientid will be returning
4299 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
4300 * be in some phase of session reset.
4301 */
4302static int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
4303{
4304 nfs4_verifier verifier;
4305 struct nfs41_exchange_id_args args = {
4306 .client = clp,
4307 .flags = clp->cl_exchange_flags,
4308 };
4309 struct nfs41_exchange_id_res res = {
4310 .client = clp,
4311 };
4312 int status;
4313 struct rpc_message msg = {
4314 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
4315 .rpc_argp = &args,
4316 .rpc_resp = &res,
4317 .rpc_cred = cred,
4318 };
4319 __be32 *p;
4320
4321 dprintk("--> %s\n", __func__);
4322 BUG_ON(clp == NULL);
Andy Adamsona7b72102009-04-01 09:22:46 -04004323
Benny Halevy99fe60d2009-04-01 09:22:29 -04004324 p = (u32 *)verifier.data;
4325 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
4326 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
4327 args.verifier = &verifier;
4328
4329 while (1) {
4330 args.id_len = scnprintf(args.id, sizeof(args.id),
4331 "%s/%s %u",
4332 clp->cl_ipaddr,
4333 rpc_peeraddr2str(clp->cl_rpcclient,
4334 RPC_DISPLAY_ADDR),
4335 clp->cl_id_uniquifier);
4336
4337 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
4338
4339 if (status != NFS4ERR_CLID_INUSE)
4340 break;
4341
4342 if (signalled())
4343 break;
4344
4345 if (++clp->cl_id_uniquifier == 0)
4346 break;
4347 }
4348
4349 dprintk("<-- %s status= %d\n", __func__, status);
4350 return status;
4351}
4352
Andy Adamson2050f0c2009-04-01 09:22:30 -04004353struct nfs4_get_lease_time_data {
4354 struct nfs4_get_lease_time_args *args;
4355 struct nfs4_get_lease_time_res *res;
4356 struct nfs_client *clp;
4357};
4358
4359static void nfs4_get_lease_time_prepare(struct rpc_task *task,
4360 void *calldata)
4361{
4362 int ret;
4363 struct nfs4_get_lease_time_data *data =
4364 (struct nfs4_get_lease_time_data *)calldata;
4365
4366 dprintk("--> %s\n", __func__);
4367 /* just setup sequence, do not trigger session recovery
4368 since we're invoked within one */
4369 ret = nfs41_setup_sequence(data->clp->cl_session,
4370 &data->args->la_seq_args,
4371 &data->res->lr_seq_res, 0, task);
4372
4373 BUG_ON(ret == -EAGAIN);
4374 rpc_call_start(task);
4375 dprintk("<-- %s\n", __func__);
4376}
4377
4378/*
4379 * Called from nfs4_state_manager thread for session setup, so don't recover
4380 * from sequence operation or clientid errors.
4381 */
4382static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
4383{
4384 struct nfs4_get_lease_time_data *data =
4385 (struct nfs4_get_lease_time_data *)calldata;
4386
4387 dprintk("--> %s\n", __func__);
4388 nfs41_sequence_done(data->clp, &data->res->lr_seq_res, task->tk_status);
4389 switch (task->tk_status) {
4390 case -NFS4ERR_DELAY:
4391 case -NFS4ERR_GRACE:
4392 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
4393 rpc_delay(task, NFS4_POLL_RETRY_MIN);
4394 task->tk_status = 0;
Andy Adamsoneedc0202009-04-01 09:22:41 -04004395 nfs4_restart_rpc(task, data->clp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004396 return;
4397 }
4398 nfs41_sequence_free_slot(data->clp, &data->res->lr_seq_res);
4399 dprintk("<-- %s\n", __func__);
4400}
4401
4402struct rpc_call_ops nfs4_get_lease_time_ops = {
4403 .rpc_call_prepare = nfs4_get_lease_time_prepare,
4404 .rpc_call_done = nfs4_get_lease_time_done,
4405};
4406
4407int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
4408{
4409 struct rpc_task *task;
4410 struct nfs4_get_lease_time_args args;
4411 struct nfs4_get_lease_time_res res = {
4412 .lr_fsinfo = fsinfo,
4413 };
4414 struct nfs4_get_lease_time_data data = {
4415 .args = &args,
4416 .res = &res,
4417 .clp = clp,
4418 };
4419 struct rpc_message msg = {
4420 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
4421 .rpc_argp = &args,
4422 .rpc_resp = &res,
4423 };
4424 struct rpc_task_setup task_setup = {
4425 .rpc_client = clp->cl_rpcclient,
4426 .rpc_message = &msg,
4427 .callback_ops = &nfs4_get_lease_time_ops,
4428 .callback_data = &data
4429 };
4430 int status;
4431
4432 res.lr_seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
4433 dprintk("--> %s\n", __func__);
4434 task = rpc_run_task(&task_setup);
4435
4436 if (IS_ERR(task))
4437 status = PTR_ERR(task);
4438 else {
4439 status = task->tk_status;
4440 rpc_put_task(task);
4441 }
4442 dprintk("<-- %s return %d\n", __func__, status);
4443
4444 return status;
4445}
4446
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004447/*
4448 * Reset a slot table
4449 */
4450static int nfs4_reset_slot_table(struct nfs4_slot_table *tbl, int max_slots,
4451 int old_max_slots, int ivalue)
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004452{
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004453 int i;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004454 int ret = 0;
4455
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004456 dprintk("--> %s: max_reqs=%u, tbl %p\n", __func__, max_slots, tbl);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004457
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004458 /*
4459 * Until we have dynamic slot table adjustment, insist
4460 * upon the same slot table size
4461 */
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004462 if (max_slots != old_max_slots) {
4463 dprintk("%s reset slot table does't match old\n",
4464 __func__);
4465 ret = -EINVAL; /*XXX NFS4ERR_REQ_TOO_BIG ? */
4466 goto out;
4467 }
4468 spin_lock(&tbl->slot_tbl_lock);
4469 for (i = 0; i < max_slots; ++i)
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004470 tbl->slots[i].seq_nr = ivalue;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004471 tbl->highest_used_slotid = -1;
4472 spin_unlock(&tbl->slot_tbl_lock);
4473 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4474 tbl, tbl->slots, tbl->max_slots);
4475out:
4476 dprintk("<-- %s: return %d\n", __func__, ret);
4477 return ret;
4478}
4479
Andy Adamsonfc931582009-04-01 09:22:31 -04004480/*
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004481 * Reset the forechannel and backchannel slot tables
4482 */
4483static int nfs4_reset_slot_tables(struct nfs4_session *session)
4484{
4485 int status;
4486
4487 status = nfs4_reset_slot_table(&session->fc_slot_table,
4488 session->fc_attrs.max_reqs,
4489 session->fc_slot_table.max_slots,
4490 1);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004491 if (status)
4492 return status;
4493
4494 status = nfs4_reset_slot_table(&session->bc_slot_table,
4495 session->bc_attrs.max_reqs,
4496 session->bc_slot_table.max_slots,
4497 0);
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004498 return status;
4499}
4500
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004501/* Destroy the slot table */
4502static void nfs4_destroy_slot_tables(struct nfs4_session *session)
4503{
4504 if (session->fc_slot_table.slots != NULL) {
4505 kfree(session->fc_slot_table.slots);
4506 session->fc_slot_table.slots = NULL;
4507 }
4508 if (session->bc_slot_table.slots != NULL) {
4509 kfree(session->bc_slot_table.slots);
4510 session->bc_slot_table.slots = NULL;
4511 }
4512 return;
4513}
4514
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004515/*
Andy Adamsonfc931582009-04-01 09:22:31 -04004516 * Initialize slot table
4517 */
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004518static int nfs4_init_slot_table(struct nfs4_slot_table *tbl,
4519 int max_slots, int ivalue)
Andy Adamsonfc931582009-04-01 09:22:31 -04004520{
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004521 int i;
Andy Adamsonfc931582009-04-01 09:22:31 -04004522 struct nfs4_slot *slot;
4523 int ret = -ENOMEM;
4524
4525 BUG_ON(max_slots > NFS4_MAX_SLOT_TABLE);
4526
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004527 dprintk("--> %s: max_reqs=%u\n", __func__, max_slots);
Andy Adamsonfc931582009-04-01 09:22:31 -04004528
4529 slot = kcalloc(max_slots, sizeof(struct nfs4_slot), GFP_KERNEL);
4530 if (!slot)
4531 goto out;
4532 for (i = 0; i < max_slots; ++i)
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004533 slot[i].seq_nr = ivalue;
Andy Adamsonfc931582009-04-01 09:22:31 -04004534 ret = 0;
4535
4536 spin_lock(&tbl->slot_tbl_lock);
4537 if (tbl->slots != NULL) {
4538 spin_unlock(&tbl->slot_tbl_lock);
4539 dprintk("%s: slot table already initialized. tbl=%p slots=%p\n",
4540 __func__, tbl, tbl->slots);
4541 WARN_ON(1);
4542 goto out_free;
4543 }
4544 tbl->max_slots = max_slots;
4545 tbl->slots = slot;
4546 tbl->highest_used_slotid = -1; /* no slot is currently used */
4547 spin_unlock(&tbl->slot_tbl_lock);
4548 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4549 tbl, tbl->slots, tbl->max_slots);
4550out:
4551 dprintk("<-- %s: return %d\n", __func__, ret);
4552 return ret;
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004553
Andy Adamsonfc931582009-04-01 09:22:31 -04004554out_free:
4555 kfree(slot);
4556 goto out;
4557}
4558
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004559/*
4560 * Initialize the forechannel and backchannel tables
4561 */
4562static int nfs4_init_slot_tables(struct nfs4_session *session)
4563{
4564 int status;
4565
4566 status = nfs4_init_slot_table(&session->fc_slot_table,
4567 session->fc_attrs.max_reqs, 1);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004568 if (status)
4569 return status;
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004570
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004571 status = nfs4_init_slot_table(&session->bc_slot_table,
4572 session->bc_attrs.max_reqs, 0);
4573 if (status)
4574 nfs4_destroy_slot_tables(session);
4575
4576 return status;
Andy Adamson557134a2009-04-01 09:21:53 -04004577}
4578
4579struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp)
4580{
4581 struct nfs4_session *session;
4582 struct nfs4_slot_table *tbl;
4583
4584 session = kzalloc(sizeof(struct nfs4_session), GFP_KERNEL);
4585 if (!session)
4586 return NULL;
Andy Adamson76db6d92009-04-01 09:22:38 -04004587
4588 set_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state);
4589 /*
4590 * The create session reply races with the server back
4591 * channel probe. Mark the client NFS_CS_SESSION_INITING
4592 * so that the client back channel can find the
4593 * nfs_client struct
4594 */
4595 clp->cl_cons_state = NFS_CS_SESSION_INITING;
4596
Andy Adamson557134a2009-04-01 09:21:53 -04004597 tbl = &session->fc_slot_table;
4598 spin_lock_init(&tbl->slot_tbl_lock);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004599 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "ForeChannel Slot table");
4600
4601 tbl = &session->bc_slot_table;
4602 spin_lock_init(&tbl->slot_tbl_lock);
4603 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "BackChannel Slot table");
4604
Andy Adamson557134a2009-04-01 09:21:53 -04004605 session->clp = clp;
4606 return session;
4607}
4608
4609void nfs4_destroy_session(struct nfs4_session *session)
4610{
Andy Adamson5a0ffe52009-04-01 09:23:18 -04004611 nfs4_proc_destroy_session(session);
4612 dprintk("%s Destroy backchannel for xprt %p\n",
4613 __func__, session->clp->cl_rpcclient->cl_xprt);
4614 xprt_destroy_backchannel(session->clp->cl_rpcclient->cl_xprt,
4615 NFS41_BC_MIN_CALLBACKS);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004616 nfs4_destroy_slot_tables(session);
Andy Adamson557134a2009-04-01 09:21:53 -04004617 kfree(session);
4618}
4619
Andy Adamsonfc931582009-04-01 09:22:31 -04004620/*
4621 * Initialize the values to be used by the client in CREATE_SESSION
4622 * If nfs4_init_session set the fore channel request and response sizes,
4623 * use them.
4624 *
4625 * Set the back channel max_resp_sz_cached to zero to force the client to
4626 * always set csa_cachethis to FALSE because the current implementation
4627 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
4628 */
4629static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args)
4630{
4631 struct nfs4_session *session = args->client->cl_session;
4632 unsigned int mxrqst_sz = session->fc_attrs.max_rqst_sz,
4633 mxresp_sz = session->fc_attrs.max_resp_sz;
4634
4635 if (mxrqst_sz == 0)
4636 mxrqst_sz = NFS_MAX_FILE_IO_SIZE;
4637 if (mxresp_sz == 0)
4638 mxresp_sz = NFS_MAX_FILE_IO_SIZE;
4639 /* Fore channel attributes */
4640 args->fc_attrs.headerpadsz = 0;
4641 args->fc_attrs.max_rqst_sz = mxrqst_sz;
4642 args->fc_attrs.max_resp_sz = mxresp_sz;
4643 args->fc_attrs.max_resp_sz_cached = mxresp_sz;
4644 args->fc_attrs.max_ops = NFS4_MAX_OPS;
4645 args->fc_attrs.max_reqs = session->clp->cl_rpcclient->cl_xprt->max_reqs;
4646
4647 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
4648 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4649 __func__,
4650 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
4651 args->fc_attrs.max_resp_sz_cached, args->fc_attrs.max_ops,
4652 args->fc_attrs.max_reqs);
4653
4654 /* Back channel attributes */
4655 args->bc_attrs.headerpadsz = 0;
4656 args->bc_attrs.max_rqst_sz = PAGE_SIZE;
4657 args->bc_attrs.max_resp_sz = PAGE_SIZE;
4658 args->bc_attrs.max_resp_sz_cached = 0;
4659 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
4660 args->bc_attrs.max_reqs = 1;
4661
4662 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
4663 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4664 __func__,
4665 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
4666 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
4667 args->bc_attrs.max_reqs);
4668}
4669
Andy Adamson8d353012009-04-01 09:22:32 -04004670static int _verify_channel_attr(char *chan, char *attr_name, u32 sent, u32 rcvd)
4671{
4672 if (rcvd <= sent)
4673 return 0;
4674 printk(KERN_WARNING "%s: Session INVALID: %s channel %s increased. "
4675 "sent=%u rcvd=%u\n", __func__, chan, attr_name, sent, rcvd);
4676 return -EINVAL;
4677}
4678
4679#define _verify_fore_channel_attr(_name_) \
4680 _verify_channel_attr("fore", #_name_, \
4681 args->fc_attrs._name_, \
4682 session->fc_attrs._name_)
4683
4684#define _verify_back_channel_attr(_name_) \
4685 _verify_channel_attr("back", #_name_, \
4686 args->bc_attrs._name_, \
4687 session->bc_attrs._name_)
4688
4689/*
4690 * The server is not allowed to increase the fore channel header pad size,
4691 * maximum response size, or maximum number of operations.
4692 *
4693 * The back channel attributes are only negotiatied down: We send what the
4694 * (back channel) server insists upon.
4695 */
4696static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
4697 struct nfs4_session *session)
4698{
4699 int ret = 0;
4700
4701 ret |= _verify_fore_channel_attr(headerpadsz);
4702 ret |= _verify_fore_channel_attr(max_resp_sz);
4703 ret |= _verify_fore_channel_attr(max_ops);
4704
4705 ret |= _verify_back_channel_attr(headerpadsz);
4706 ret |= _verify_back_channel_attr(max_rqst_sz);
4707 ret |= _verify_back_channel_attr(max_resp_sz);
4708 ret |= _verify_back_channel_attr(max_resp_sz_cached);
4709 ret |= _verify_back_channel_attr(max_ops);
4710 ret |= _verify_back_channel_attr(max_reqs);
4711
4712 return ret;
4713}
4714
Andy Adamsonfc931582009-04-01 09:22:31 -04004715static int _nfs4_proc_create_session(struct nfs_client *clp)
4716{
4717 struct nfs4_session *session = clp->cl_session;
4718 struct nfs41_create_session_args args = {
4719 .client = clp,
4720 .cb_program = NFS4_CALLBACK,
4721 };
4722 struct nfs41_create_session_res res = {
4723 .client = clp,
4724 };
4725 struct rpc_message msg = {
4726 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
4727 .rpc_argp = &args,
4728 .rpc_resp = &res,
4729 };
4730 int status;
4731
4732 nfs4_init_channel_attrs(&args);
Andy Adamson0f914212009-04-01 09:23:16 -04004733 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
Andy Adamsonfc931582009-04-01 09:22:31 -04004734
4735 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
4736
Andy Adamson8d353012009-04-01 09:22:32 -04004737 if (!status)
4738 /* Verify the session's negotiated channel_attrs values */
4739 status = nfs4_verify_channel_attrs(&args, session);
Andy Adamsonfc931582009-04-01 09:22:31 -04004740 if (!status) {
4741 /* Increment the clientid slot sequence id */
4742 clp->cl_seqid++;
4743 }
4744
4745 return status;
4746}
4747
4748/*
4749 * Issues a CREATE_SESSION operation to the server.
4750 * It is the responsibility of the caller to verify the session is
4751 * expired before calling this routine.
4752 */
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004753int nfs4_proc_create_session(struct nfs_client *clp, int reset)
Andy Adamsonfc931582009-04-01 09:22:31 -04004754{
4755 int status;
4756 unsigned *ptr;
4757 struct nfs_fsinfo fsinfo;
4758 struct nfs4_session *session = clp->cl_session;
4759
4760 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
4761
4762 status = _nfs4_proc_create_session(clp);
4763 if (status)
4764 goto out;
4765
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004766 /* Init or reset the fore channel */
4767 if (reset)
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004768 status = nfs4_reset_slot_tables(session);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004769 else
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004770 status = nfs4_init_slot_tables(session);
Andy Adamsonfc931582009-04-01 09:22:31 -04004771 dprintk("fore channel slot table initialization returned %d\n", status);
4772 if (status)
4773 goto out;
4774
4775 ptr = (unsigned *)&session->sess_id.data[0];
4776 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
4777 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
4778
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004779 if (reset)
4780 /* Lease time is aleady set */
4781 goto out;
4782
Andy Adamsonfc931582009-04-01 09:22:31 -04004783 /* Get the lease time */
4784 status = nfs4_proc_get_lease_time(clp, &fsinfo);
4785 if (status == 0) {
4786 /* Update lease time and schedule renewal */
4787 spin_lock(&clp->cl_lock);
4788 clp->cl_lease_time = fsinfo.lease_time * HZ;
4789 clp->cl_last_renewal = jiffies;
4790 clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
4791 spin_unlock(&clp->cl_lock);
4792
4793 nfs4_schedule_state_renewal(clp);
4794 }
4795out:
4796 dprintk("<-- %s\n", __func__);
4797 return status;
4798}
4799
Andy Adamson0f3e66c2009-04-01 09:22:34 -04004800/*
4801 * Issue the over-the-wire RPC DESTROY_SESSION.
4802 * The caller must serialize access to this routine.
4803 */
4804int nfs4_proc_destroy_session(struct nfs4_session *session)
4805{
4806 int status = 0;
4807 struct rpc_message msg;
4808
4809 dprintk("--> nfs4_proc_destroy_session\n");
4810
4811 /* session is still being setup */
4812 if (session->clp->cl_cons_state != NFS_CS_READY)
4813 return status;
4814
4815 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION];
4816 msg.rpc_argp = session;
4817 msg.rpc_resp = NULL;
4818 msg.rpc_cred = NULL;
4819 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
4820
4821 if (status)
4822 printk(KERN_WARNING
4823 "Got error %d from the server on DESTROY_SESSION. "
4824 "Session has been destroyed regardless...\n", status);
4825
4826 dprintk("<-- nfs4_proc_destroy_session\n");
4827 return status;
4828}
4829
Trond Myklebustfccba802009-07-21 16:48:07 -04004830int nfs4_init_session(struct nfs_server *server)
4831{
4832 struct nfs_client *clp = server->nfs_client;
4833 int ret;
4834
4835 if (!nfs4_has_session(clp))
4836 return 0;
4837
4838 clp->cl_session->fc_attrs.max_rqst_sz = server->wsize;
4839 clp->cl_session->fc_attrs.max_resp_sz = server->rsize;
4840 ret = nfs4_recover_expired_lease(server);
4841 if (!ret)
4842 ret = nfs4_check_client_ready(clp);
4843 return ret;
4844}
4845
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004846/*
4847 * Renew the cl_session lease.
4848 */
4849static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
4850{
4851 struct nfs4_sequence_args args;
4852 struct nfs4_sequence_res res;
4853
4854 struct rpc_message msg = {
4855 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
4856 .rpc_argp = &args,
4857 .rpc_resp = &res,
4858 .rpc_cred = cred,
4859 };
4860
4861 args.sa_cache_this = 0;
4862
4863 return nfs4_call_sync_sequence(clp, clp->cl_rpcclient, &msg, &args,
4864 &res, 0);
4865}
4866
4867void nfs41_sequence_call_done(struct rpc_task *task, void *data)
4868{
4869 struct nfs_client *clp = (struct nfs_client *)data;
4870
4871 nfs41_sequence_done(clp, task->tk_msg.rpc_resp, task->tk_status);
4872
4873 if (task->tk_status < 0) {
4874 dprintk("%s ERROR %d\n", __func__, task->tk_status);
4875
4876 if (_nfs4_async_handle_error(task, NULL, clp, NULL)
4877 == -EAGAIN) {
Andy Adamsoneedc0202009-04-01 09:22:41 -04004878 nfs4_restart_rpc(task, clp);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04004879 return;
4880 }
4881 }
4882 nfs41_sequence_free_slot(clp, task->tk_msg.rpc_resp);
4883 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
4884
4885 put_rpccred(task->tk_msg.rpc_cred);
4886 kfree(task->tk_msg.rpc_argp);
4887 kfree(task->tk_msg.rpc_resp);
4888
4889 dprintk("<-- %s\n", __func__);
4890}
4891
4892static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
4893{
4894 struct nfs_client *clp;
4895 struct nfs4_sequence_args *args;
4896 struct nfs4_sequence_res *res;
4897
4898 clp = (struct nfs_client *)data;
4899 args = task->tk_msg.rpc_argp;
4900 res = task->tk_msg.rpc_resp;
4901
4902 if (nfs4_setup_sequence(clp, args, res, 0, task))
4903 return;
4904 rpc_call_start(task);
4905}
4906
4907static const struct rpc_call_ops nfs41_sequence_ops = {
4908 .rpc_call_done = nfs41_sequence_call_done,
4909 .rpc_call_prepare = nfs41_sequence_prepare,
4910};
4911
4912static int nfs41_proc_async_sequence(struct nfs_client *clp,
4913 struct rpc_cred *cred)
4914{
4915 struct nfs4_sequence_args *args;
4916 struct nfs4_sequence_res *res;
4917 struct rpc_message msg = {
4918 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
4919 .rpc_cred = cred,
4920 };
4921
4922 args = kzalloc(sizeof(*args), GFP_KERNEL);
4923 if (!args)
4924 return -ENOMEM;
4925 res = kzalloc(sizeof(*res), GFP_KERNEL);
4926 if (!res) {
4927 kfree(args);
4928 return -ENOMEM;
4929 }
4930 res->sr_slotid = NFS4_MAX_SLOT_TABLE;
4931 msg.rpc_argp = args;
4932 msg.rpc_resp = res;
4933
4934 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
4935 &nfs41_sequence_ops, (void *)clp);
4936}
4937
Andy Adamson557134a2009-04-01 09:21:53 -04004938#endif /* CONFIG_NFS_V4_1 */
4939
Andy Adamson591d71c2009-04-01 09:22:47 -04004940struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05004941 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05004942 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943 .recover_open = nfs4_open_reclaim,
4944 .recover_lock = nfs4_lock_reclaim,
Andy Adamson591d71c2009-04-01 09:22:47 -04004945 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04004946 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947};
4948
Andy Adamson591d71c2009-04-01 09:22:47 -04004949#if defined(CONFIG_NFS_V4_1)
4950struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
4951 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
4952 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
4953 .recover_open = nfs4_open_reclaim,
4954 .recover_lock = nfs4_lock_reclaim,
4955 .establish_clid = nfs4_proc_exchange_id,
Andy Adamsonb4b82602009-04-01 09:22:49 -04004956 .get_clid_cred = nfs4_get_exchange_id_cred,
Andy Adamson591d71c2009-04-01 09:22:47 -04004957};
4958#endif /* CONFIG_NFS_V4_1 */
4959
4960struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05004961 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05004962 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 .recover_open = nfs4_open_expired,
4964 .recover_lock = nfs4_lock_expired,
Andy Adamson591d71c2009-04-01 09:22:47 -04004965 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04004966 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967};
4968
Andy Adamson591d71c2009-04-01 09:22:47 -04004969#if defined(CONFIG_NFS_V4_1)
4970struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
4971 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
4972 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
4973 .recover_open = nfs4_open_expired,
4974 .recover_lock = nfs4_lock_expired,
4975 .establish_clid = nfs4_proc_exchange_id,
Andy Adamsonb4b82602009-04-01 09:22:49 -04004976 .get_clid_cred = nfs4_get_exchange_id_cred,
Andy Adamson591d71c2009-04-01 09:22:47 -04004977};
4978#endif /* CONFIG_NFS_V4_1 */
4979
Benny Halevy29fba382009-04-01 09:22:44 -04004980struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
4981 .sched_state_renewal = nfs4_proc_async_renew,
Andy Adamsona7b72102009-04-01 09:22:46 -04004982 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04004983 .renew_lease = nfs4_proc_renew,
Benny Halevy29fba382009-04-01 09:22:44 -04004984};
4985
4986#if defined(CONFIG_NFS_V4_1)
4987struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
4988 .sched_state_renewal = nfs41_proc_async_sequence,
Andy Adamsona7b72102009-04-01 09:22:46 -04004989 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04004990 .renew_lease = nfs4_proc_sequence,
Benny Halevy29fba382009-04-01 09:22:44 -04004991};
4992#endif
4993
4994/*
4995 * Per minor version reboot and network partition recovery ops
4996 */
4997
Andy Adamson591d71c2009-04-01 09:22:47 -04004998struct nfs4_state_recovery_ops *nfs4_reboot_recovery_ops[] = {
4999 &nfs40_reboot_recovery_ops,
5000#if defined(CONFIG_NFS_V4_1)
5001 &nfs41_reboot_recovery_ops,
5002#endif
5003};
5004
5005struct nfs4_state_recovery_ops *nfs4_nograce_recovery_ops[] = {
5006 &nfs40_nograce_recovery_ops,
5007#if defined(CONFIG_NFS_V4_1)
5008 &nfs41_nograce_recovery_ops,
5009#endif
5010};
5011
Benny Halevy29fba382009-04-01 09:22:44 -04005012struct nfs4_state_maintenance_ops *nfs4_state_renewal_ops[] = {
5013 &nfs40_state_renewal_ops,
5014#if defined(CONFIG_NFS_V4_1)
5015 &nfs41_state_renewal_ops,
5016#endif
5017};
5018
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08005019static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005020 .permission = nfs_permission,
5021 .getattr = nfs_getattr,
5022 .setattr = nfs_setattr,
5023 .getxattr = nfs4_getxattr,
5024 .setxattr = nfs4_setxattr,
5025 .listxattr = nfs4_listxattr,
5026};
5027
David Howells509de812006-08-22 20:06:11 -04005028const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029 .version = 4, /* protocol version */
5030 .dentry_ops = &nfs4_dentry_operations,
5031 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005032 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033 .getroot = nfs4_proc_get_root,
5034 .getattr = nfs4_proc_getattr,
5035 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04005036 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 .lookup = nfs4_proc_lookup,
5038 .access = nfs4_proc_access,
5039 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040 .create = nfs4_proc_create,
5041 .remove = nfs4_proc_remove,
5042 .unlink_setup = nfs4_proc_unlink_setup,
5043 .unlink_done = nfs4_proc_unlink_done,
5044 .rename = nfs4_proc_rename,
5045 .link = nfs4_proc_link,
5046 .symlink = nfs4_proc_symlink,
5047 .mkdir = nfs4_proc_mkdir,
5048 .rmdir = nfs4_proc_remove,
5049 .readdir = nfs4_proc_readdir,
5050 .mknod = nfs4_proc_mknod,
5051 .statfs = nfs4_proc_statfs,
5052 .fsinfo = nfs4_proc_fsinfo,
5053 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04005054 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055 .decode_dirent = nfs4_decode_dirent,
5056 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05005057 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005059 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005061 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005063 .clear_acl_cache = nfs4_zap_acl_attr,
Trond Myklebust7fe5c392009-03-19 15:35:50 -04005064 .close_context = nfs4_close_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065};
5066
5067/*
5068 * Local variables:
5069 * c-basic-offset: 8
5070 * End:
5071 */