blob: 8f071314e94b0762a0527a6db63986acf3d06171 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/sunrpc/clnt.h>
44#include <linux/nfs.h>
45#include <linux/nfs4.h>
46#include <linux/nfs_fs.h>
47#include <linux/nfs_page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/namei.h>
Trond Myklebust02a913a2005-10-18 14:20:17 -070049#include <linux/mount.h>
Benny Halevy99fe60d2009-04-01 09:22:29 -040050#include <linux/module.h>
Andy Adamson5a0ffe52009-04-01 09:23:18 -040051#include <linux/sunrpc/bc_xprt.h>
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +000052#include <linux/xattr.h>
Andy Adamsonc7a360b2011-01-25 19:15:32 -050053#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Trond Myklebust4ce79712005-06-22 17:16:21 +000055#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include "delegation.h"
Trond Myklebust101070c2008-02-19 20:04:23 -050057#include "internal.h"
Chuck Lever006ea732006-03-20 13:44:14 -050058#include "iostat.h"
Andy Adamsonfc931582009-04-01 09:22:31 -040059#include "callback.h"
Andy Adamsonb1f69b72010-10-20 00:18:03 -040060#include "pnfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#define NFSDBG_FACILITY NFSDBG_PROC
63
Trond Myklebust2066fe82006-09-15 08:30:46 -040064#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define NFS4_POLL_RETRY_MAX (15*HZ)
66
Trond Myklebusta78cb572009-08-09 15:06:19 -040067#define NFS4_MAX_LOOP_ON_RECOVER (10)
68
Trond Myklebustcdd4e682006-01-03 09:55:12 +010069struct nfs4_opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +010070static int _nfs4_proc_open(struct nfs4_opendata *data);
Alexandros Batsakisb2579572009-12-14 21:27:57 -080071static int _nfs4_recover_proc_open(struct nfs4_opendata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
Trond Myklebust9e33bed2008-12-23 15:21:46 -050073static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *, struct nfs4_state *);
Trond Myklebust99367812007-07-17 21:52:41 -040074static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
75static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
Trond Myklebust0ab64e02010-04-16 16:22:51 -040076static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
77 struct nfs_fattr *fattr, struct iattr *sattr,
78 struct nfs4_state *state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/* Prevent leaks of NFSv4 errors into userland */
WANG Cong46f72f52008-12-30 16:35:55 -050081static int nfs4_map_errors(int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Trond Myklebust52567b02009-10-23 14:46:42 -040083 if (err >= -1000)
84 return err;
85 switch (err) {
86 case -NFS4ERR_RESOURCE:
87 return -EREMOTEIO;
Trond Myklebust3ddeb7c2011-02-22 15:44:31 -080088 case -NFS4ERR_BADOWNER:
89 case -NFS4ERR_BADNAME:
90 return -EINVAL;
Trond Myklebust52567b02009-10-23 14:46:42 -040091 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 dprintk("%s could not handle NFSv4 error %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -070093 __func__, -err);
Trond Myklebust52567b02009-10-23 14:46:42 -040094 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
Trond Myklebust52567b02009-10-23 14:46:42 -040096 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
99/*
100 * This is our standard bitmap for GETATTR requests.
101 */
102const u32 nfs4_fattr_bitmap[2] = {
103 FATTR4_WORD0_TYPE
104 | FATTR4_WORD0_CHANGE
105 | FATTR4_WORD0_SIZE
106 | FATTR4_WORD0_FSID
107 | FATTR4_WORD0_FILEID,
108 FATTR4_WORD1_MODE
109 | FATTR4_WORD1_NUMLINKS
110 | FATTR4_WORD1_OWNER
111 | FATTR4_WORD1_OWNER_GROUP
112 | FATTR4_WORD1_RAWDEV
113 | FATTR4_WORD1_SPACE_USED
114 | FATTR4_WORD1_TIME_ACCESS
115 | FATTR4_WORD1_TIME_METADATA
116 | FATTR4_WORD1_TIME_MODIFY
117};
118
119const u32 nfs4_statfs_bitmap[2] = {
120 FATTR4_WORD0_FILES_AVAIL
121 | FATTR4_WORD0_FILES_FREE
122 | FATTR4_WORD0_FILES_TOTAL,
123 FATTR4_WORD1_SPACE_AVAIL
124 | FATTR4_WORD1_SPACE_FREE
125 | FATTR4_WORD1_SPACE_TOTAL
126};
127
Trond Myklebust4ce79712005-06-22 17:16:21 +0000128const u32 nfs4_pathconf_bitmap[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 FATTR4_WORD0_MAXLINK
130 | FATTR4_WORD0_MAXNAME,
131 0
132};
133
134const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE
135 | FATTR4_WORD0_MAXREAD
136 | FATTR4_WORD0_MAXWRITE
137 | FATTR4_WORD0_LEASE_TIME,
Ricardo Labiaga55b6e772010-10-12 16:30:06 -0700138 FATTR4_WORD1_TIME_DELTA
Andy Adamson504913f2010-10-20 00:17:57 -0400139 | FATTR4_WORD1_FS_LAYOUT_TYPES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
Manoj Naik830b8e32006-06-09 09:34:25 -0400142const u32 nfs4_fs_locations_bitmap[2] = {
143 FATTR4_WORD0_TYPE
144 | FATTR4_WORD0_CHANGE
145 | FATTR4_WORD0_SIZE
146 | FATTR4_WORD0_FSID
147 | FATTR4_WORD0_FILEID
148 | FATTR4_WORD0_FS_LOCATIONS,
149 FATTR4_WORD1_MODE
150 | FATTR4_WORD1_NUMLINKS
151 | FATTR4_WORD1_OWNER
152 | FATTR4_WORD1_OWNER_GROUP
153 | FATTR4_WORD1_RAWDEV
154 | FATTR4_WORD1_SPACE_USED
155 | FATTR4_WORD1_TIME_ACCESS
156 | FATTR4_WORD1_TIME_METADATA
157 | FATTR4_WORD1_TIME_MODIFY
158 | FATTR4_WORD1_MOUNTED_ON_FILEID
159};
160
Al Virobc4785c2006-10-19 23:28:51 -0700161static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct nfs4_readdir_arg *readdir)
163{
Al Viro0dbb4c62006-10-19 23:28:49 -0700164 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 BUG_ON(readdir->count < 80);
167 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000168 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
170 return;
171 }
172
173 readdir->cookie = 0;
174 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
175 if (cookie == 2)
176 return;
177
178 /*
179 * NFSv4 servers do not return entries for '.' and '..'
180 * Therefore, we fake these entries here. We let '.'
181 * have cookie 0 and '..' have cookie 1. Note that
182 * when talking to the server, we always send cookie 0
183 * instead of 1 or 2.
184 */
Al Viro0dbb4c62006-10-19 23:28:49 -0700185 start = p = kmap_atomic(*readdir->pages, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 if (cookie == 0) {
188 *p++ = xdr_one; /* next */
189 *p++ = xdr_zero; /* cookie, first word */
190 *p++ = xdr_one; /* cookie, second word */
191 *p++ = xdr_one; /* entry len */
192 memcpy(p, ".\0\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_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199
200 *p++ = xdr_one; /* next */
201 *p++ = xdr_zero; /* cookie, first word */
202 *p++ = xdr_two; /* cookie, second word */
203 *p++ = xdr_two; /* entry len */
204 memcpy(p, "..\0\0", 4); /* entry */
205 p++;
206 *p++ = xdr_one; /* bitmap length */
207 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
208 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400209 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 readdir->pgbase = (char *)p - (char *)start;
212 readdir->count -= readdir->pgbase;
213 kunmap_atomic(start, KM_USER0);
214}
215
Trond Myklebust65de8722008-12-23 15:21:44 -0500216static int nfs4_wait_clnt_recover(struct nfs_client *clp)
217{
218 int res;
219
220 might_sleep();
221
Trond Myklebuste005e802008-12-23 15:21:48 -0500222 res = wait_on_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400223 nfs_wait_bit_killable, TASK_KILLABLE);
Trond Myklebust65de8722008-12-23 15:21:44 -0500224 return res;
225}
226
227static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
228{
229 int res = 0;
230
231 might_sleep();
232
233 if (*timeout <= 0)
234 *timeout = NFS4_POLL_RETRY_MIN;
235 if (*timeout > NFS4_POLL_RETRY_MAX)
236 *timeout = NFS4_POLL_RETRY_MAX;
237 schedule_timeout_killable(*timeout);
238 if (fatal_signal_pending(current))
239 res = -ERESTARTSYS;
240 *timeout <<= 1;
241 return res;
242}
243
244/* This is the error handling routine for processes that are allowed
245 * to sleep.
246 */
Trond Myklebustb064eca22011-02-22 15:44:32 -0800247static int nfs4_handle_exception(struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
Trond Myklebust65de8722008-12-23 15:21:44 -0500248{
249 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500250 struct nfs4_state *state = exception->state;
Trond Myklebust65de8722008-12-23 15:21:44 -0500251 int ret = errorcode;
252
253 exception->retry = 0;
254 switch(errorcode) {
255 case 0:
256 return 0;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500257 case -NFS4ERR_ADMIN_REVOKED:
258 case -NFS4ERR_BAD_STATEID:
259 case -NFS4ERR_OPENMODE:
260 if (state == NULL)
261 break;
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500262 nfs4_schedule_stateid_recovery(server, state);
263 goto wait_on_recovery;
Trond Myklebust65de8722008-12-23 15:21:44 -0500264 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500265 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust65de8722008-12-23 15:21:44 -0500266 case -NFS4ERR_EXPIRED:
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500267 nfs4_schedule_lease_recovery(clp);
268 goto wait_on_recovery;
Trond Myklebust03391692010-01-26 15:42:38 -0500269#if defined(CONFIG_NFS_V4_1)
Andy Adamson4745e312009-04-01 09:22:42 -0400270 case -NFS4ERR_BADSESSION:
271 case -NFS4ERR_BADSLOT:
272 case -NFS4ERR_BAD_HIGH_SLOT:
273 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
274 case -NFS4ERR_DEADSESSION:
275 case -NFS4ERR_SEQ_FALSE_RETRY:
276 case -NFS4ERR_SEQ_MISORDERED:
277 dprintk("%s ERROR: %d Reset session\n", __func__,
278 errorcode);
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500279 nfs4_schedule_session_recovery(clp->cl_session);
Andy Adamson4745e312009-04-01 09:22:42 -0400280 exception->retry = 1;
Andy Adamsonb9179232009-12-04 15:55:32 -0500281 break;
Trond Myklebust03391692010-01-26 15:42:38 -0500282#endif /* defined(CONFIG_NFS_V4_1) */
Trond Myklebust65de8722008-12-23 15:21:44 -0500283 case -NFS4ERR_FILE_OPEN:
NeilBrown44ed3552009-12-03 15:58:56 -0500284 if (exception->timeout > HZ) {
285 /* We have retried a decent amount, time to
286 * fail
287 */
288 ret = -EBUSY;
289 break;
290 }
Trond Myklebust65de8722008-12-23 15:21:44 -0500291 case -NFS4ERR_GRACE:
292 case -NFS4ERR_DELAY:
Jeff Layton2c643482010-01-07 09:42:03 -0500293 case -EKEYEXPIRED:
Trond Myklebust65de8722008-12-23 15:21:44 -0500294 ret = nfs4_delay(server->client, &exception->timeout);
295 if (ret != 0)
296 break;
297 case -NFS4ERR_OLD_STATEID:
298 exception->retry = 1;
Trond Myklebustb064eca22011-02-22 15:44:32 -0800299 break;
300 case -NFS4ERR_BADOWNER:
301 /* The following works around a Linux server bug! */
302 case -NFS4ERR_BADNAME:
303 if (server->caps & NFS_CAP_UIDGID_NOMAP) {
304 server->caps &= ~NFS_CAP_UIDGID_NOMAP;
305 exception->retry = 1;
306 printk(KERN_WARNING "NFS: v4 server %s "
307 "does not accept raw "
308 "uid/gids. "
309 "Reenabling the idmapper.\n",
310 server->nfs_client->cl_hostname);
311 }
Trond Myklebust65de8722008-12-23 15:21:44 -0500312 }
313 /* We failed to handle the error */
314 return nfs4_map_errors(ret);
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500315wait_on_recovery:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500316 ret = nfs4_wait_clnt_recover(clp);
317 if (ret == 0)
318 exception->retry = 1;
319 return ret;
Trond Myklebust65de8722008-12-23 15:21:44 -0500320}
321
322
Trond Myklebust452e9352010-07-31 14:29:06 -0400323static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 spin_lock(&clp->cl_lock);
326 if (time_before(clp->cl_last_renewal,timestamp))
327 clp->cl_last_renewal = timestamp;
328 spin_unlock(&clp->cl_lock);
329}
330
Trond Myklebust452e9352010-07-31 14:29:06 -0400331static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
332{
333 do_renew_lease(server->nfs_client, timestamp);
334}
335
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400336#if defined(CONFIG_NFS_V4_1)
337
Benny Halevy510b8172009-04-01 09:22:14 -0400338/*
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400339 * nfs4_free_slot - free a slot and efficiently update slot table.
340 *
341 * freeing a slot is trivially done by clearing its respective bit
342 * in the bitmap.
343 * If the freed slotid equals highest_used_slotid we want to update it
344 * so that the server would be able to size down the slot table if needed,
345 * otherwise we know that the highest_used_slotid is still in use.
346 * When updating highest_used_slotid there may be "holes" in the bitmap
347 * so we need to scan down from highest_used_slotid to 0 looking for the now
348 * highest slotid in use.
349 * If none found, highest_used_slotid is set to -1.
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500350 *
351 * Must be called while holding tbl->slot_tbl_lock
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400352 */
353static void
Benny Halevydfb4f3092010-09-24 09:17:01 -0400354nfs4_free_slot(struct nfs4_slot_table *tbl, struct nfs4_slot *free_slot)
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400355{
Benny Halevydfb4f3092010-09-24 09:17:01 -0400356 int free_slotid = free_slot - tbl->slots;
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400357 int slotid = free_slotid;
358
Benny Halevydfb4f3092010-09-24 09:17:01 -0400359 BUG_ON(slotid < 0 || slotid >= NFS4_MAX_SLOT_TABLE);
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400360 /* clear used bit in bitmap */
361 __clear_bit(slotid, tbl->used_slots);
362
363 /* update highest_used_slotid when it is freed */
364 if (slotid == tbl->highest_used_slotid) {
365 slotid = find_last_bit(tbl->used_slots, tbl->max_slots);
Trond Myklebustbcb56162009-12-05 19:32:19 -0500366 if (slotid < tbl->max_slots)
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400367 tbl->highest_used_slotid = slotid;
368 else
369 tbl->highest_used_slotid = -1;
370 }
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400371 dprintk("%s: free_slotid %u highest_used_slotid %d\n", __func__,
372 free_slotid, tbl->highest_used_slotid);
373}
374
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800375/*
Andy Adamson42acd022011-01-06 02:04:34 +0000376 * Signal state manager thread if session fore channel is drained
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800377 */
Andy Adamson42acd022011-01-06 02:04:34 +0000378static void nfs4_check_drain_fc_complete(struct nfs4_session *ses)
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800379{
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800380 struct rpc_task *task;
381
Trond Myklebusta2118c32010-06-16 09:52:26 -0400382 if (!test_bit(NFS4_SESSION_DRAINING, &ses->session_state)) {
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800383 task = rpc_wake_up_next(&ses->fc_slot_table.slot_tbl_waitq);
384 if (task)
385 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800386 return;
387 }
388
389 if (ses->fc_slot_table.highest_used_slotid != -1)
390 return;
391
Andy Adamson42acd022011-01-06 02:04:34 +0000392 dprintk("%s COMPLETE: Session Fore Channel Drained\n", __func__);
393 complete(&ses->fc_slot_table.complete);
394}
395
396/*
397 * Signal state manager thread if session back channel is drained
398 */
399void nfs4_check_drain_bc_complete(struct nfs4_session *ses)
400{
401 if (!test_bit(NFS4_SESSION_DRAINING, &ses->session_state) ||
402 ses->bc_slot_table.highest_used_slotid != -1)
403 return;
404 dprintk("%s COMPLETE: Session Back Channel Drained\n", __func__);
405 complete(&ses->bc_slot_table.complete);
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800406}
407
Trond Myklebustd185a332010-06-16 09:52:25 -0400408static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res)
Andy Adamson13615872009-04-01 09:22:17 -0400409{
410 struct nfs4_slot_table *tbl;
411
Trond Myklebustd185a332010-06-16 09:52:25 -0400412 tbl = &res->sr_session->fc_slot_table;
Benny Halevydfb4f3092010-09-24 09:17:01 -0400413 if (!res->sr_slot) {
Andy Adamson13615872009-04-01 09:22:17 -0400414 /* just wake up the next guy waiting since
415 * we may have not consumed a slot after all */
Andy Adamson691daf32009-12-04 15:55:39 -0500416 dprintk("%s: No slot\n", __func__);
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500417 return;
Andy Adamson13615872009-04-01 09:22:17 -0400418 }
Andy Adamsonea028ac2009-12-04 15:55:38 -0500419
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500420 spin_lock(&tbl->slot_tbl_lock);
Benny Halevydfb4f3092010-09-24 09:17:01 -0400421 nfs4_free_slot(tbl, res->sr_slot);
Andy Adamson42acd022011-01-06 02:04:34 +0000422 nfs4_check_drain_fc_complete(res->sr_session);
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500423 spin_unlock(&tbl->slot_tbl_lock);
Benny Halevydfb4f3092010-09-24 09:17:01 -0400424 res->sr_slot = NULL;
Andy Adamson13615872009-04-01 09:22:17 -0400425}
426
Trond Myklebust14516c32010-07-31 14:29:06 -0400427static int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
Andy Adamsonb0df8062009-04-01 09:22:18 -0400428{
429 unsigned long timestamp;
Trond Myklebust14516c32010-07-31 14:29:06 -0400430 struct nfs_client *clp;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400431
432 /*
433 * sr_status remains 1 if an RPC level error occurred. The server
434 * may or may not have processed the sequence operation..
435 * Proceed as if the server received and processed the sequence
436 * operation.
437 */
438 if (res->sr_status == 1)
439 res->sr_status = NFS_OK;
440
441 /* -ERESTARTSYS can result in skipping nfs41_sequence_setup */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400442 if (!res->sr_slot)
Andy Adamsonb0df8062009-04-01 09:22:18 -0400443 goto out;
444
Andy Adamson691daf32009-12-04 15:55:39 -0500445 /* Check the SEQUENCE operation status */
Trond Myklebust14516c32010-07-31 14:29:06 -0400446 switch (res->sr_status) {
447 case 0:
Andy Adamsonb0df8062009-04-01 09:22:18 -0400448 /* Update the slot's sequence and clientid lease timer */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400449 ++res->sr_slot->seq_nr;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400450 timestamp = res->sr_renewal_time;
Trond Myklebust14516c32010-07-31 14:29:06 -0400451 clp = res->sr_session->clp;
Trond Myklebust452e9352010-07-31 14:29:06 -0400452 do_renew_lease(clp, timestamp);
Alexandros Batsakis0629e372009-12-05 13:46:14 -0500453 /* Check sequence flags */
Trond Myklebustb4410c22011-03-09 16:00:55 -0500454 if (res->sr_status_flags != 0)
455 nfs4_schedule_lease_recovery(clp);
Trond Myklebust14516c32010-07-31 14:29:06 -0400456 break;
457 case -NFS4ERR_DELAY:
458 /* The server detected a resend of the RPC call and
459 * returned NFS4ERR_DELAY as per Section 2.10.6.2
460 * of RFC5661.
461 */
Geert Uytterhoeven12364a42010-10-28 20:06:19 +0200462 dprintk("%s: slot=%td seq=%d: Operation in progress\n",
Benny Halevydfb4f3092010-09-24 09:17:01 -0400463 __func__,
464 res->sr_slot - res->sr_session->fc_slot_table.slots,
465 res->sr_slot->seq_nr);
Trond Myklebust14516c32010-07-31 14:29:06 -0400466 goto out_retry;
467 default:
468 /* Just update the slot sequence no. */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400469 ++res->sr_slot->seq_nr;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400470 }
471out:
472 /* The session may be reset by one of the error handlers. */
473 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
Trond Myklebustd185a332010-06-16 09:52:25 -0400474 nfs41_sequence_free_slot(res);
Trond Myklebust14516c32010-07-31 14:29:06 -0400475 return 1;
476out_retry:
Trond Myklebustd05dd4e2010-07-31 14:29:07 -0400477 if (!rpc_restart_call(task))
Trond Myklebust14516c32010-07-31 14:29:06 -0400478 goto out;
479 rpc_delay(task, NFS4_POLL_RETRY_MAX);
480 return 0;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400481}
482
Trond Myklebust14516c32010-07-31 14:29:06 -0400483static int nfs4_sequence_done(struct rpc_task *task,
484 struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -0400485{
Trond Myklebust14516c32010-07-31 14:29:06 -0400486 if (res->sr_session == NULL)
487 return 1;
488 return nfs41_sequence_done(task, res);
Trond Myklebustdf896452010-06-16 09:52:26 -0400489}
490
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400491/*
Benny Halevy510b8172009-04-01 09:22:14 -0400492 * nfs4_find_slot - efficiently look for a free slot
493 *
494 * nfs4_find_slot looks for an unset bit in the used_slots bitmap.
495 * If found, we mark the slot as used, update the highest_used_slotid,
496 * and respectively set up the sequence operation args.
497 * The slot number is returned if found, or NFS4_MAX_SLOT_TABLE otherwise.
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400498 *
499 * Note: must be called with under the slot_tbl_lock.
Benny Halevy510b8172009-04-01 09:22:14 -0400500 */
501static u8
Alexandros Batsakis40ead582009-12-14 21:27:54 -0800502nfs4_find_slot(struct nfs4_slot_table *tbl)
Benny Halevy510b8172009-04-01 09:22:14 -0400503{
504 int slotid;
505 u8 ret_id = NFS4_MAX_SLOT_TABLE;
506 BUILD_BUG_ON((u8)NFS4_MAX_SLOT_TABLE != (int)NFS4_MAX_SLOT_TABLE);
507
Benny Halevy510b8172009-04-01 09:22:14 -0400508 dprintk("--> %s used_slots=%04lx highest_used=%d max_slots=%d\n",
509 __func__, tbl->used_slots[0], tbl->highest_used_slotid,
510 tbl->max_slots);
511 slotid = find_first_zero_bit(tbl->used_slots, tbl->max_slots);
512 if (slotid >= tbl->max_slots)
513 goto out;
514 __set_bit(slotid, tbl->used_slots);
515 if (slotid > tbl->highest_used_slotid)
516 tbl->highest_used_slotid = slotid;
517 ret_id = slotid;
518out:
519 dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
520 __func__, tbl->used_slots[0], tbl->highest_used_slotid, ret_id);
Benny Halevy510b8172009-04-01 09:22:14 -0400521 return ret_id;
522}
523
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000524int nfs41_setup_sequence(struct nfs4_session *session,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400525 struct nfs4_sequence_args *args,
526 struct nfs4_sequence_res *res,
527 int cache_reply,
528 struct rpc_task *task)
529{
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400530 struct nfs4_slot *slot;
531 struct nfs4_slot_table *tbl;
532 u8 slotid;
533
534 dprintk("--> %s\n", __func__);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400535 /* slot already allocated? */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400536 if (res->sr_slot != NULL)
Andy Adamsonce5039c2009-04-01 09:22:13 -0400537 return 0;
538
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400539 tbl = &session->fc_slot_table;
540
541 spin_lock(&tbl->slot_tbl_lock);
Trond Myklebusta2118c32010-06-16 09:52:26 -0400542 if (test_bit(NFS4_SESSION_DRAINING, &session->session_state) &&
Alexandros Batsakis5601a002009-12-14 21:27:58 -0800543 !rpc_task_has_priority(task, RPC_PRIORITY_PRIVILEGED)) {
Andy Adamsonea028ac2009-12-04 15:55:38 -0500544 /*
545 * The state manager will wait until the slot table is empty.
546 * Schedule the reset thread
547 */
Andy Adamson05f0d232009-12-04 15:55:37 -0500548 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
Andy Adamsonb069d942009-04-01 09:22:43 -0400549 spin_unlock(&tbl->slot_tbl_lock);
Trond Myklebustbcb56162009-12-05 19:32:19 -0500550 dprintk("%s Schedule Session Reset\n", __func__);
Andy Adamson05f0d232009-12-04 15:55:37 -0500551 return -EAGAIN;
Andy Adamsonb069d942009-04-01 09:22:43 -0400552 }
553
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800554 if (!rpc_queue_empty(&tbl->slot_tbl_waitq) &&
555 !rpc_task_has_priority(task, RPC_PRIORITY_PRIVILEGED)) {
556 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
557 spin_unlock(&tbl->slot_tbl_lock);
558 dprintk("%s enforce FIFO order\n", __func__);
559 return -EAGAIN;
560 }
561
Alexandros Batsakis40ead582009-12-14 21:27:54 -0800562 slotid = nfs4_find_slot(tbl);
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400563 if (slotid == NFS4_MAX_SLOT_TABLE) {
564 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
565 spin_unlock(&tbl->slot_tbl_lock);
566 dprintk("<-- %s: no free slots\n", __func__);
567 return -EAGAIN;
568 }
569 spin_unlock(&tbl->slot_tbl_lock);
570
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800571 rpc_task_set_priority(task, RPC_PRIORITY_NORMAL);
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400572 slot = tbl->slots + slotid;
Benny Halevy99fe60d2009-04-01 09:22:29 -0400573 args->sa_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400574 args->sa_slotid = slotid;
575 args->sa_cache_this = cache_reply;
576
577 dprintk("<-- %s slotid=%d seqid=%d\n", __func__, slotid, slot->seq_nr);
578
Benny Halevy99fe60d2009-04-01 09:22:29 -0400579 res->sr_session = session;
Benny Halevydfb4f3092010-09-24 09:17:01 -0400580 res->sr_slot = slot;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400581 res->sr_renewal_time = jiffies;
Trond Myklebust2a6e26c2010-06-16 09:52:25 -0400582 res->sr_status_flags = 0;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400583 /*
584 * sr_status is only set in decode_sequence, and so will remain
585 * set to 1 if an rpc level failure occurs.
586 */
587 res->sr_status = 1;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400588 return 0;
589}
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000590EXPORT_SYMBOL_GPL(nfs41_setup_sequence);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400591
Trond Myklebust035168a2010-06-16 09:52:26 -0400592int nfs4_setup_sequence(const struct nfs_server *server,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400593 struct nfs4_sequence_args *args,
594 struct nfs4_sequence_res *res,
595 int cache_reply,
596 struct rpc_task *task)
597{
Trond Myklebust035168a2010-06-16 09:52:26 -0400598 struct nfs4_session *session = nfs4_get_session(server);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400599 int ret = 0;
600
Trond Myklebust035168a2010-06-16 09:52:26 -0400601 if (session == NULL) {
602 args->sa_session = NULL;
603 res->sr_session = NULL;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400604 goto out;
Trond Myklebust035168a2010-06-16 09:52:26 -0400605 }
606
Geert Uytterhoeven12364a42010-10-28 20:06:19 +0200607 dprintk("--> %s clp %p session %p sr_slot %td\n",
Benny Halevydfb4f3092010-09-24 09:17:01 -0400608 __func__, session->clp, session, res->sr_slot ?
609 res->sr_slot - session->fc_slot_table.slots : -1);
Trond Myklebust035168a2010-06-16 09:52:26 -0400610
611 ret = nfs41_setup_sequence(session, args, res, cache_reply,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400612 task);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400613out:
614 dprintk("<-- %s status=%d\n", __func__, ret);
615 return ret;
616}
617
618struct nfs41_call_sync_data {
Trond Myklebust035168a2010-06-16 09:52:26 -0400619 const struct nfs_server *seq_server;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400620 struct nfs4_sequence_args *seq_args;
621 struct nfs4_sequence_res *seq_res;
622 int cache_reply;
623};
624
625static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
626{
627 struct nfs41_call_sync_data *data = calldata;
628
Trond Myklebust035168a2010-06-16 09:52:26 -0400629 dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server);
630
631 if (nfs4_setup_sequence(data->seq_server, data->seq_args,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400632 data->seq_res, data->cache_reply, task))
633 return;
634 rpc_call_start(task);
635}
636
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800637static void nfs41_call_priv_sync_prepare(struct rpc_task *task, void *calldata)
638{
639 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
640 nfs41_call_sync_prepare(task, calldata);
641}
642
Andy Adamson69ab40c2009-04-01 09:22:19 -0400643static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
644{
645 struct nfs41_call_sync_data *data = calldata;
646
Trond Myklebust14516c32010-07-31 14:29:06 -0400647 nfs41_sequence_done(task, data->seq_res);
Andy Adamson69ab40c2009-04-01 09:22:19 -0400648}
649
Andy Adamsonce5039c2009-04-01 09:22:13 -0400650struct rpc_call_ops nfs41_call_sync_ops = {
651 .rpc_call_prepare = nfs41_call_sync_prepare,
Andy Adamson69ab40c2009-04-01 09:22:19 -0400652 .rpc_call_done = nfs41_call_sync_done,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400653};
654
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800655struct rpc_call_ops nfs41_call_priv_sync_ops = {
656 .rpc_call_prepare = nfs41_call_priv_sync_prepare,
657 .rpc_call_done = nfs41_call_sync_done,
658};
659
Trond Myklebust035168a2010-06-16 09:52:26 -0400660static int nfs4_call_sync_sequence(struct nfs_server *server,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400661 struct rpc_message *msg,
662 struct nfs4_sequence_args *args,
663 struct nfs4_sequence_res *res,
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800664 int cache_reply,
665 int privileged)
Andy Adamsonce5039c2009-04-01 09:22:13 -0400666{
667 int ret;
668 struct rpc_task *task;
669 struct nfs41_call_sync_data data = {
Trond Myklebust035168a2010-06-16 09:52:26 -0400670 .seq_server = server,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400671 .seq_args = args,
672 .seq_res = res,
673 .cache_reply = cache_reply,
674 };
675 struct rpc_task_setup task_setup = {
Trond Myklebust035168a2010-06-16 09:52:26 -0400676 .rpc_client = server->client,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400677 .rpc_message = msg,
678 .callback_ops = &nfs41_call_sync_ops,
679 .callback_data = &data
680 };
681
Benny Halevydfb4f3092010-09-24 09:17:01 -0400682 res->sr_slot = NULL;
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800683 if (privileged)
684 task_setup.callback_ops = &nfs41_call_priv_sync_ops;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400685 task = rpc_run_task(&task_setup);
686 if (IS_ERR(task))
687 ret = PTR_ERR(task);
688 else {
689 ret = task->tk_status;
690 rpc_put_task(task);
691 }
692 return ret;
693}
694
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400695int _nfs4_call_sync_session(struct nfs_server *server,
696 struct rpc_message *msg,
697 struct nfs4_sequence_args *args,
698 struct nfs4_sequence_res *res,
699 int cache_reply)
700{
Trond Myklebust035168a2010-06-16 09:52:26 -0400701 return nfs4_call_sync_sequence(server, msg, args, res, cache_reply, 0);
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400702}
703
Trond Myklebustdf896452010-06-16 09:52:26 -0400704#else
Trond Myklebust14516c32010-07-31 14:29:06 -0400705static int nfs4_sequence_done(struct rpc_task *task,
706 struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -0400707{
Trond Myklebust14516c32010-07-31 14:29:06 -0400708 return 1;
Trond Myklebustdf896452010-06-16 09:52:26 -0400709}
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400710#endif /* CONFIG_NFS_V4_1 */
711
712int _nfs4_call_sync(struct nfs_server *server,
713 struct rpc_message *msg,
714 struct nfs4_sequence_args *args,
715 struct nfs4_sequence_res *res,
716 int cache_reply)
717{
Benny Halevyf3752972009-04-01 09:22:04 -0400718 args->sa_session = res->sr_session = NULL;
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400719 return rpc_call_sync(server->client, msg, 0);
720}
721
722#define nfs4_call_sync(server, msg, args, res, cache_reply) \
Trond Myklebust97dc1352010-06-16 09:52:26 -0400723 (server)->nfs_client->cl_mvops->call_sync((server), (msg), &(args)->seq_args, \
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400724 &(res)->seq_res, (cache_reply))
725
Trond Myklebust38478b22006-05-25 01:40:57 -0400726static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Trond Myklebust38478b22006-05-25 01:40:57 -0400728 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Trond Myklebust38478b22006-05-25 01:40:57 -0400730 spin_lock(&dir->i_lock);
Trond Myklebust40d24702007-10-08 09:24:22 -0400731 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
732 if (!cinfo->atomic || cinfo->before != nfsi->change_attr)
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400733 nfs_force_lookup_revalidate(dir);
Trond Myklebust40d24702007-10-08 09:24:22 -0400734 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400735 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100738struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400739 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100740 struct nfs_openargs o_arg;
741 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100742 struct nfs_open_confirmargs c_arg;
743 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100744 struct nfs_fattr f_attr;
745 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400746 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100747 struct dentry *dir;
748 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400749 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100750 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100751 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400752 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100753 int rpc_status;
754 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100755};
756
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400757
758static void nfs4_init_opendata_res(struct nfs4_opendata *p)
759{
760 p->o_res.f_attr = &p->f_attr;
761 p->o_res.dir_attr = &p->dir_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400762 p->o_res.seqid = p->o_arg.seqid;
763 p->c_res.seqid = p->c_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400764 p->o_res.server = p->o_arg.server;
765 nfs_fattr_init(&p->f_attr);
766 nfs_fattr_init(&p->dir_attr);
767}
768
Trond Myklebustad389da2007-06-05 12:30:00 -0400769static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500770 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400771 const struct iattr *attrs,
772 gfp_t gfp_mask)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100773{
Trond Myklebustad389da2007-06-05 12:30:00 -0400774 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100775 struct inode *dir = parent->d_inode;
776 struct nfs_server *server = NFS_SERVER(dir);
777 struct nfs4_opendata *p;
778
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400779 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100780 if (p == NULL)
781 goto err;
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400782 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid, gfp_mask);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100783 if (p->o_arg.seqid == NULL)
784 goto err_free;
Al Virof6948692010-01-30 13:51:04 -0500785 path_get(path);
786 p->path = *path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100787 p->dir = parent;
788 p->owner = sp;
789 atomic_inc(&sp->so_count);
790 p->o_arg.fh = NFS_FH(dir);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500791 p->o_arg.open_flags = flags;
792 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
David Howells7539bba2006-08-22 20:06:09 -0400793 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400794 p->o_arg.id = sp->so_owner_id.id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400795 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100796 p->o_arg.server = server;
797 p->o_arg.bitmask = server->attr_bitmask;
798 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Trond Myklebustd77d76f2010-06-16 09:52:27 -0400799 if (flags & O_CREAT) {
800 u32 *s;
801
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100802 p->o_arg.u.attrs = &p->attrs;
803 memcpy(&p->attrs, attrs, sizeof(p->attrs));
Trond Myklebustd77d76f2010-06-16 09:52:27 -0400804 s = (u32 *) p->o_arg.u.verifier.data;
805 s[0] = jiffies;
806 s[1] = current->pid;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100807 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100808 p->c_arg.fh = &p->o_res.fh;
809 p->c_arg.stateid = &p->o_res.stateid;
810 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400811 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400812 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100813 return p;
814err_free:
815 kfree(p);
816err:
817 dput(parent);
818 return NULL;
819}
820
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400821static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100822{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400823 struct nfs4_opendata *p = container_of(kref,
824 struct nfs4_opendata, kref);
825
826 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400827 if (p->state != NULL)
828 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400829 nfs4_put_state_owner(p->owner);
830 dput(p->dir);
Jan Blunck31f31db12008-05-02 13:42:45 -0700831 path_put(&p->path);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400832 kfree(p);
833}
834
835static void nfs4_opendata_put(struct nfs4_opendata *p)
836{
837 if (p != NULL)
838 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100839}
840
Trond Myklebust06f814a2006-01-03 09:55:07 +0100841static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
842{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100843 int ret;
844
Trond Myklebust06f814a2006-01-03 09:55:07 +0100845 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100846 return ret;
847}
848
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500849static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400850{
851 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500852
853 if (open_mode & O_EXCL)
854 goto out;
855 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400856 case FMODE_READ:
Trond Myklebust88069f72009-12-08 08:33:16 -0500857 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0
858 && state->n_rdonly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400859 break;
860 case FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -0500861 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0
862 && state->n_wronly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400863 break;
864 case FMODE_READ|FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -0500865 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0
866 && state->n_rdwr != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400867 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500868out:
Trond Myklebust6ee41262007-07-08 14:11:36 -0400869 return ret;
870}
871
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500872static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400873{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500874 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400875 return 0;
Trond Myklebust15c831b2008-12-23 15:21:39 -0500876 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
Trond Myklebustaac00a82007-07-05 19:02:21 -0400877 return 0;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500878 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400879 return 1;
880}
881
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500882static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +0100883{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500884 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100885 case FMODE_WRITE:
886 state->n_wronly++;
887 break;
888 case FMODE_READ:
889 state->n_rdonly++;
890 break;
891 case FMODE_READ|FMODE_WRITE:
892 state->n_rdwr++;
893 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500894 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +0100895}
896
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500897static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400898{
899 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
900 memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data));
901 memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data));
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500902 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400903 case FMODE_READ:
904 set_bit(NFS_O_RDONLY_STATE, &state->flags);
905 break;
906 case FMODE_WRITE:
907 set_bit(NFS_O_WRONLY_STATE, &state->flags);
908 break;
909 case FMODE_READ|FMODE_WRITE:
910 set_bit(NFS_O_RDWR_STATE, &state->flags);
911 }
912}
913
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500914static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400915{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400916 write_seqlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500917 nfs_set_open_stateid_locked(state, stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400918 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400919}
920
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500921static 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 -0700922{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400923 /*
924 * Protect the call to nfs4_state_set_mode_locked and
925 * serialise the stateid update
926 */
927 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400928 if (deleg_stateid != NULL) {
929 memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data));
930 set_bit(NFS_DELEGATED_STATE, &state->flags);
931 }
932 if (open_stateid != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500933 nfs_set_open_stateid_locked(state, open_stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400934 write_sequnlock(&state->seqlock);
935 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500936 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -0700937 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500940static 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 -0500941{
942 struct nfs_inode *nfsi = NFS_I(state->inode);
943 struct nfs_delegation *deleg_cur;
944 int ret = 0;
945
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500946 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -0500947
948 rcu_read_lock();
949 deleg_cur = rcu_dereference(nfsi->delegation);
950 if (deleg_cur == NULL)
951 goto no_delegation;
952
953 spin_lock(&deleg_cur->lock);
954 if (nfsi->delegation != deleg_cur ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500955 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -0500956 goto no_delegation_unlock;
957
958 if (delegation == NULL)
959 delegation = &deleg_cur->stateid;
960 else if (memcmp(deleg_cur->stateid.data, delegation->data, NFS4_STATEID_SIZE) != 0)
961 goto no_delegation_unlock;
962
Trond Myklebustb7391f42008-12-23 15:21:52 -0500963 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500964 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500965 ret = 1;
966no_delegation_unlock:
967 spin_unlock(&deleg_cur->lock);
968no_delegation:
969 rcu_read_unlock();
970
971 if (!ret && open_stateid != NULL) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500972 __update_open_stateid(state, open_stateid, NULL, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -0500973 ret = 1;
974 }
975
976 return ret;
977}
978
979
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500980static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400981{
982 struct nfs_delegation *delegation;
983
984 rcu_read_lock();
985 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500986 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -0400987 rcu_read_unlock();
988 return;
989 }
990 rcu_read_unlock();
991 nfs_inode_return_delegation(inode);
992}
993
Trond Myklebust6ee41262007-07-08 14:11:36 -0400994static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400995{
996 struct nfs4_state *state = opendata->state;
997 struct nfs_inode *nfsi = NFS_I(state->inode);
998 struct nfs_delegation *delegation;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500999 int open_mode = opendata->o_arg.open_flags & O_EXCL;
1000 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001001 nfs4_stateid stateid;
1002 int ret = -EAGAIN;
1003
Trond Myklebustaac00a82007-07-05 19:02:21 -04001004 for (;;) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001005 if (can_open_cached(state, fmode, open_mode)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -04001006 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001007 if (can_open_cached(state, fmode, open_mode)) {
1008 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001009 spin_unlock(&state->owner->so_lock);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001010 goto out_return_state;
1011 }
1012 spin_unlock(&state->owner->so_lock);
1013 }
Trond Myklebust34310432008-12-23 15:21:38 -05001014 rcu_read_lock();
1015 delegation = rcu_dereference(nfsi->delegation);
1016 if (delegation == NULL ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001017 !can_open_delegated(delegation, fmode)) {
Trond Myklebust34310432008-12-23 15:21:38 -05001018 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001019 break;
Trond Myklebust34310432008-12-23 15:21:38 -05001020 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001021 /* Save the delegation */
1022 memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data));
1023 rcu_read_unlock();
Trond Myklebustaf22f942007-08-10 17:45:10 -04001024 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001025 if (ret != 0)
1026 goto out;
1027 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -05001028
1029 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001030 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -05001031 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001032 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001033out:
1034 return ERR_PTR(ret);
1035out_return_state:
1036 atomic_inc(&state->count);
1037 return state;
1038}
1039
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001040static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
1041{
1042 struct inode *inode;
1043 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -04001044 struct nfs_delegation *delegation;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001045 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001046
Trond Myklebustaac00a82007-07-05 19:02:21 -04001047 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -04001048 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001049 goto out;
1050 }
1051
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001052 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001053 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001054 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001055 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001056 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001057 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001058 goto err;
1059 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001060 state = nfs4_get_open_state(inode, data->owner);
1061 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001062 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -04001063 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -04001064 int delegation_flags = 0;
1065
Trond Myklebust003707c2007-07-05 18:07:55 -04001066 rcu_read_lock();
1067 delegation = rcu_dereference(NFS_I(inode)->delegation);
1068 if (delegation)
1069 delegation_flags = delegation->flags;
1070 rcu_read_unlock();
Trond Myklebust15c831b2008-12-23 15:21:39 -05001071 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Trond Myklebust549d6ed2007-07-03 16:42:45 -04001072 nfs_inode_set_delegation(state->inode,
1073 data->owner->so_cred,
1074 &data->o_res);
1075 else
1076 nfs_inode_reclaim_delegation(state->inode,
1077 data->owner->so_cred,
1078 &data->o_res);
1079 }
Trond Myklebust34310432008-12-23 15:21:38 -05001080
1081 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001082 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001083 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001084out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001085 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001086err_put_inode:
1087 iput(inode);
1088err:
1089 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001090}
1091
Trond Myklebust864472e2006-01-03 09:55:15 +01001092static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1093{
1094 struct nfs_inode *nfsi = NFS_I(state->inode);
1095 struct nfs_open_context *ctx;
1096
1097 spin_lock(&state->inode->i_lock);
1098 list_for_each_entry(ctx, &nfsi->open_files, list) {
1099 if (ctx->state != state)
1100 continue;
1101 get_nfs_open_context(ctx);
1102 spin_unlock(&state->inode->i_lock);
1103 return ctx;
1104 }
1105 spin_unlock(&state->inode->i_lock);
1106 return ERR_PTR(-ENOENT);
1107}
1108
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001109static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
1110{
1111 struct nfs4_opendata *opendata;
1112
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001113 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, 0, NULL, GFP_NOFS);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001114 if (opendata == NULL)
1115 return ERR_PTR(-ENOMEM);
1116 opendata->state = state;
1117 atomic_inc(&state->count);
1118 return opendata;
1119}
1120
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001121static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +01001122{
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001123 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001124 int ret;
1125
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001126 opendata->o_arg.open_flags = 0;
1127 opendata->o_arg.fmode = fmode;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001128 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1129 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1130 nfs4_init_opendata_res(opendata);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001131 ret = _nfs4_recover_proc_open(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001132 if (ret != 0)
1133 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001134 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001135 if (IS_ERR(newstate))
1136 return PTR_ERR(newstate);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001137 nfs4_close_state(&opendata->path, newstate, fmode);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001138 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001139 return 0;
1140}
1141
1142static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1143{
Trond Myklebust864472e2006-01-03 09:55:15 +01001144 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001145 int ret;
1146
1147 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001148 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001149 smp_rmb();
1150 if (state->n_rdwr != 0) {
Trond Myklebustb0ed9db2010-10-04 17:59:08 -04001151 clear_bit(NFS_O_RDWR_STATE, &state->flags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001152 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001153 if (ret != 0)
1154 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001155 if (newstate != state)
1156 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001157 }
1158 if (state->n_wronly != 0) {
Trond Myklebustb0ed9db2010-10-04 17:59:08 -04001159 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001160 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001161 if (ret != 0)
1162 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001163 if (newstate != state)
1164 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001165 }
1166 if (state->n_rdonly != 0) {
Trond Myklebustb0ed9db2010-10-04 17:59:08 -04001167 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001168 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001169 if (ret != 0)
1170 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001171 if (newstate != state)
1172 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001173 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001174 /*
1175 * We may have performed cached opens for all three recoveries.
1176 * Check if we need to update the current stateid.
1177 */
1178 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
1179 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001180 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001181 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1182 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001183 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001184 }
Trond Myklebust864472e2006-01-03 09:55:15 +01001185 return 0;
1186}
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188/*
1189 * OPEN_RECLAIM:
1190 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001192static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001194 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +01001195 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001196 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 int status;
1198
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001199 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1200 if (IS_ERR(opendata))
1201 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001202 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
1203 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001204 rcu_read_lock();
1205 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -05001206 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -04001207 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001208 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +01001209 opendata->o_arg.u.delegation_type = delegation_type;
1210 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001211 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return status;
1213}
1214
Trond Myklebust539cd032007-06-05 11:46:42 -04001215static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
1217 struct nfs_server *server = NFS_SERVER(state->inode);
1218 struct nfs4_exception exception = { };
1219 int err;
1220 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001221 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust168667c2010-10-19 19:47:49 -04001222 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001223 break;
1224 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 } while (exception.retry);
1226 return err;
1227}
1228
Trond Myklebust864472e2006-01-03 09:55:15 +01001229static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1230{
1231 struct nfs_open_context *ctx;
1232 int ret;
1233
1234 ctx = nfs4_state_find_open_context(state);
1235 if (IS_ERR(ctx))
1236 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001237 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001238 put_nfs_open_context(ctx);
1239 return ret;
1240}
1241
Trond Myklebust13437e12007-07-06 15:10:43 -04001242static 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 -07001243{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001244 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001245 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001247 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1248 if (IS_ERR(opendata))
1249 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001250 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -04001251 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001252 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +01001253 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001254 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001255 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
Trond Myklebust13437e12007-07-06 15:10:43 -04001258int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
1260 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -04001261 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 int err;
1263 do {
Trond Myklebust13437e12007-07-06 15:10:43 -04001264 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 switch (err) {
1266 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07001267 case -ENOENT:
1268 case -ESTALE:
1269 goto out;
Ricardo Labiagabcfa49f2009-12-07 09:22:29 -05001270 case -NFS4ERR_BADSESSION:
1271 case -NFS4ERR_BADSLOT:
1272 case -NFS4ERR_BAD_HIGH_SLOT:
1273 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1274 case -NFS4ERR_DEADSESSION:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05001275 nfs4_schedule_session_recovery(server->nfs_client->cl_session);
Ricardo Labiagabcfa49f2009-12-07 09:22:29 -05001276 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 case -NFS4ERR_STALE_CLIENTID:
1278 case -NFS4ERR_STALE_STATEID:
1279 case -NFS4ERR_EXPIRED:
1280 /* Don't recall a delegation if it was lost */
Trond Myklebust0400a6b2011-03-09 16:00:53 -05001281 nfs4_schedule_lease_recovery(server->nfs_client);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001282 goto out;
1283 case -ERESTARTSYS:
1284 /*
1285 * The show must go on: exit, but mark the
1286 * stateid as needing recovery.
1287 */
1288 case -NFS4ERR_ADMIN_REVOKED:
1289 case -NFS4ERR_BAD_STATEID:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05001290 nfs4_schedule_stateid_recovery(server, state);
Trond Myklebust168667c2010-10-19 19:47:49 -04001291 case -EKEYEXPIRED:
1292 /*
1293 * User RPCSEC_GSS context has expired.
1294 * We cannot recover this stateid now, so
1295 * skip it and allow recovery thread to
1296 * proceed.
1297 */
Trond Myklebust965b5d62009-06-17 13:22:59 -07001298 case -ENOMEM:
1299 err = 0;
1300 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302 err = nfs4_handle_exception(server, err, &exception);
1303 } while (exception.retry);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001304out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 return err;
1306}
1307
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001308static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1309{
1310 struct nfs4_opendata *data = calldata;
1311
1312 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001313 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001314 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
1315 sizeof(data->o_res.stateid.data));
Trond Myklebustbb226292008-01-02 15:19:18 -05001316 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001317 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -04001318 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001319 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001320}
1321
1322static void nfs4_open_confirm_release(void *calldata)
1323{
1324 struct nfs4_opendata *data = calldata;
1325 struct nfs4_state *state = NULL;
1326
1327 /* If this request hasn't been cancelled, do nothing */
1328 if (data->cancelled == 0)
1329 goto out_free;
1330 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001331 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001332 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001333 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001334 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001335 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001336out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001337 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001338}
1339
1340static const struct rpc_call_ops nfs4_open_confirm_ops = {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001341 .rpc_call_done = nfs4_open_confirm_done,
1342 .rpc_release = nfs4_open_confirm_release,
1343};
1344
1345/*
1346 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1347 */
1348static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
1349{
1350 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
1351 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001352 struct rpc_message msg = {
1353 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
1354 .rpc_argp = &data->c_arg,
1355 .rpc_resp = &data->c_res,
1356 .rpc_cred = data->owner->so_cred,
1357 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001358 struct rpc_task_setup task_setup_data = {
1359 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001360 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001361 .callback_ops = &nfs4_open_confirm_ops,
1362 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001363 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001364 .flags = RPC_TASK_ASYNC,
1365 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 int status;
1367
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001368 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001369 data->rpc_done = 0;
1370 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001371 data->timestamp = jiffies;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001372 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001373 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001374 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001375 status = nfs4_wait_for_completion_rpc_task(task);
1376 if (status != 0) {
1377 data->cancelled = 1;
1378 smp_wmb();
1379 } else
1380 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001381 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return status;
1383}
1384
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001385static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001387 struct nfs4_opendata *data = calldata;
1388 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001389
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001390 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
1391 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001392 /*
1393 * Check if we still need to send an OPEN call, or if we can use
1394 * a delegation instead.
1395 */
1396 if (data->state != NULL) {
1397 struct nfs_delegation *delegation;
1398
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001399 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -04001400 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001401 rcu_read_lock();
1402 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
1403 if (delegation != NULL &&
Trond Myklebust15c831b2008-12-23 15:21:39 -05001404 test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) {
Trond Myklebustaac00a82007-07-05 19:02:21 -04001405 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001406 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001407 }
1408 rcu_read_unlock();
1409 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001410 /* Update sequence id. */
Trond Myklebust9f958ab2007-07-02 13:58:33 -04001411 data->o_arg.id = sp->so_owner_id.id;
Trond Myklebust1f0e8902010-06-24 15:11:43 -04001412 data->o_arg.clientid = sp->so_server->nfs_client->cl_clientid;
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001413 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001414 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001415 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
1416 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001417 data->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04001418 if (nfs4_setup_sequence(data->o_arg.server,
Andy Adamsond8985282009-04-01 09:22:21 -04001419 &data->o_arg.seq_args,
1420 &data->o_res.seq_res, 1, task))
1421 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001422 rpc_call_start(task);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001423 return;
1424out_no_action:
1425 task->tk_action = NULL;
1426
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001427}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001429static void nfs4_recover_open_prepare(struct rpc_task *task, void *calldata)
1430{
1431 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
1432 nfs4_open_prepare(task, calldata);
1433}
1434
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001435static void nfs4_open_done(struct rpc_task *task, void *calldata)
1436{
1437 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001439 data->rpc_status = task->tk_status;
Andy Adamsond8985282009-04-01 09:22:21 -04001440
Trond Myklebust14516c32010-07-31 14:29:06 -04001441 if (!nfs4_sequence_done(task, &data->o_res.seq_res))
1442 return;
Andy Adamsond8985282009-04-01 09:22:21 -04001443
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001444 if (task->tk_status == 0) {
1445 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -07001446 case S_IFREG:
1447 break;
1448 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001449 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001450 break;
1451 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001452 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001453 break;
1454 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001455 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001456 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001457 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -04001458 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
1459 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -07001460 }
Trond Myklebust3e309912007-07-07 13:19:59 -04001461 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001462}
Trond Myklebust6f926b52005-10-18 14:20:18 -07001463
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001464static void nfs4_open_release(void *calldata)
1465{
1466 struct nfs4_opendata *data = calldata;
1467 struct nfs4_state *state = NULL;
1468
1469 /* If this request hasn't been cancelled, do nothing */
1470 if (data->cancelled == 0)
1471 goto out_free;
1472 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001473 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001474 goto out_free;
1475 /* In case we need an open_confirm, no cleanup! */
1476 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
1477 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001478 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001479 if (!IS_ERR(state))
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001480 nfs4_close_state(&data->path, state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001481out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001482 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001483}
1484
1485static const struct rpc_call_ops nfs4_open_ops = {
1486 .rpc_call_prepare = nfs4_open_prepare,
1487 .rpc_call_done = nfs4_open_done,
1488 .rpc_release = nfs4_open_release,
1489};
1490
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001491static const struct rpc_call_ops nfs4_recover_open_ops = {
1492 .rpc_call_prepare = nfs4_recover_open_prepare,
1493 .rpc_call_done = nfs4_open_done,
1494 .rpc_release = nfs4_open_release,
1495};
1496
1497static int nfs4_run_open_task(struct nfs4_opendata *data, int isrecover)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001498{
1499 struct inode *dir = data->dir->d_inode;
1500 struct nfs_server *server = NFS_SERVER(dir);
1501 struct nfs_openargs *o_arg = &data->o_arg;
1502 struct nfs_openres *o_res = &data->o_res;
1503 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001504 struct rpc_message msg = {
1505 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
1506 .rpc_argp = o_arg,
1507 .rpc_resp = o_res,
1508 .rpc_cred = data->owner->so_cred,
1509 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001510 struct rpc_task_setup task_setup_data = {
1511 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001512 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001513 .callback_ops = &nfs4_open_ops,
1514 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001515 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001516 .flags = RPC_TASK_ASYNC,
1517 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001518 int status;
1519
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001520 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001521 data->rpc_done = 0;
1522 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001523 data->cancelled = 0;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001524 if (isrecover)
1525 task_setup_data.callback_ops = &nfs4_recover_open_ops;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001526 task = rpc_run_task(&task_setup_data);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001527 if (IS_ERR(task))
1528 return PTR_ERR(task);
1529 status = nfs4_wait_for_completion_rpc_task(task);
1530 if (status != 0) {
1531 data->cancelled = 1;
1532 smp_wmb();
1533 } else
1534 status = data->rpc_status;
1535 rpc_put_task(task);
1536
1537 return status;
1538}
1539
1540static int _nfs4_recover_proc_open(struct nfs4_opendata *data)
1541{
1542 struct inode *dir = data->dir->d_inode;
1543 struct nfs_openres *o_res = &data->o_res;
1544 int status;
1545
1546 status = nfs4_run_open_task(data, 1);
1547 if (status != 0 || !data->rpc_done)
1548 return status;
1549
1550 nfs_refresh_inode(dir, o_res->dir_attr);
1551
1552 if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
1553 status = _nfs4_proc_open_confirm(data);
1554 if (status != 0)
1555 return status;
1556 }
1557
1558 return status;
1559}
1560
1561/*
1562 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1563 */
1564static int _nfs4_proc_open(struct nfs4_opendata *data)
1565{
1566 struct inode *dir = data->dir->d_inode;
1567 struct nfs_server *server = NFS_SERVER(dir);
1568 struct nfs_openargs *o_arg = &data->o_arg;
1569 struct nfs_openres *o_res = &data->o_res;
1570 int status;
1571
1572 status = nfs4_run_open_task(data, 0);
Trond Myklebust3e309912007-07-07 13:19:59 -04001573 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001574 return status;
1575
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001576 if (o_arg->open_flags & O_CREAT) {
1577 update_changeattr(dir, &o_res->cinfo);
1578 nfs_post_op_update_inode(dir, o_res->dir_attr);
1579 } else
1580 nfs_refresh_inode(dir, o_res->dir_attr);
Trond Myklebust0df5dd42010-04-11 16:48:44 -04001581 if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0)
1582 server->caps &= ~NFS_CAP_POSIX_LOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001584 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001586 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 }
1588 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -04001589 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001590 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
Andy Adamsond83217c2011-03-01 01:34:17 +00001593static int nfs4_client_recover_expired_lease(struct nfs_client *clp)
Trond Myklebust58d97142006-01-03 09:55:24 +01001594{
Trond Myklebusta78cb572009-08-09 15:06:19 -04001595 unsigned int loop;
Trond Myklebust6b309542006-09-14 14:03:14 -04001596 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001597
Trond Myklebusta78cb572009-08-09 15:06:19 -04001598 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
Trond Myklebust65de8722008-12-23 15:21:44 -05001599 ret = nfs4_wait_clnt_recover(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001600 if (ret != 0)
Trond Myklebusta78cb572009-08-09 15:06:19 -04001601 break;
Trond Myklebuste598d842008-12-23 15:21:42 -05001602 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
1603 !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
Trond Myklebust6b309542006-09-14 14:03:14 -04001604 break;
Trond Myklebust0400a6b2011-03-09 16:00:53 -05001605 nfs4_schedule_state_manager(clp);
Trond Myklebusta78cb572009-08-09 15:06:19 -04001606 ret = -EIO;
Trond Myklebust6b309542006-09-14 14:03:14 -04001607 }
Trond Myklebusta78cb572009-08-09 15:06:19 -04001608 return ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001609}
1610
Andy Adamsond83217c2011-03-01 01:34:17 +00001611static int nfs4_recover_expired_lease(struct nfs_server *server)
1612{
1613 return nfs4_client_recover_expired_lease(server->nfs_client);
1614}
1615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616/*
1617 * OPEN_EXPIRED:
1618 * reclaim state on the server after a network partition.
1619 * Assumes caller holds the appropriate lock
1620 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001621static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001623 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001624 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001626 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1627 if (IS_ERR(opendata))
1628 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001629 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04001630 if (ret == -ESTALE)
Trond Myklebust539cd032007-06-05 11:46:42 -04001631 d_drop(ctx->path.dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001632 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001633 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001636static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001637{
Trond Myklebust539cd032007-06-05 11:46:42 -04001638 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001639 struct nfs4_exception exception = { };
1640 int err;
1641
1642 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001643 err = _nfs4_open_expired(ctx, state);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001644 switch (err) {
1645 default:
1646 goto out;
1647 case -NFS4ERR_GRACE:
1648 case -NFS4ERR_DELAY:
1649 nfs4_handle_exception(server, err, &exception);
1650 err = 0;
1651 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00001652 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001653out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00001654 return err;
1655}
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1658{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001660 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Trond Myklebust864472e2006-01-03 09:55:15 +01001662 ctx = nfs4_state_find_open_context(state);
1663 if (IS_ERR(ctx))
1664 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001665 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001666 put_nfs_open_context(ctx);
1667 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668}
1669
1670/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001671 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1672 * fields corresponding to attributes that were used to store the verifier.
1673 * Make sure we clobber those fields in the later setattr call
1674 */
1675static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1676{
1677 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1678 !(sattr->ia_valid & ATTR_ATIME_SET))
1679 sattr->ia_valid |= ATTR_ATIME;
1680
1681 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1682 !(sattr->ia_valid & ATTR_MTIME_SET))
1683 sattr->ia_valid |= ATTR_MTIME;
1684}
1685
1686/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001687 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001689static 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 -07001690{
1691 struct nfs4_state_owner *sp;
1692 struct nfs4_state *state = NULL;
1693 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001694 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001695 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 status = -ENOMEM;
1699 if (!(sp = nfs4_get_state_owner(server, cred))) {
1700 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1701 goto out_err;
1702 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001703 status = nfs4_recover_expired_lease(server);
1704 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001705 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001706 if (path->dentry->d_inode != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001707 nfs4_return_incompatible_delegation(path->dentry->d_inode, fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01001708 status = -ENOMEM;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04001709 opendata = nfs4_opendata_alloc(path, sp, fmode, flags, sattr, GFP_KERNEL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001710 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05001711 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Trond Myklebustaac00a82007-07-05 19:02:21 -04001713 if (path->dentry->d_inode != NULL)
1714 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1715
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001716 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001718 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001720 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001721 status = PTR_ERR(state);
1722 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001723 goto err_opendata_put;
Trond Myklebust0df5dd42010-04-11 16:48:44 -04001724 if (server->caps & NFS_CAP_POSIX_LOCK)
Trond Myklebust8e469eb2010-01-26 15:42:30 -05001725 set_bit(NFS_STATE_POSIX_LOCKS, &state->flags);
Trond Myklebust0ab64e02010-04-16 16:22:51 -04001726
1727 if (opendata->o_arg.open_flags & O_EXCL) {
1728 nfs4_exclusive_attrset(opendata, sattr);
1729
1730 nfs_fattr_init(opendata->o_res.f_attr);
1731 status = nfs4_do_setattr(state->inode, cred,
1732 opendata->o_res.f_attr, sattr,
1733 state);
1734 if (status == 0)
1735 nfs_setattr_update_inode(state->inode, sattr);
1736 nfs_post_op_update_inode(state->inode, opendata->o_res.f_attr);
1737 }
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001738 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 *res = state;
1741 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001742err_opendata_put:
1743 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001744err_put_state_owner:
1745 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 *res = NULL;
1748 return status;
1749}
1750
1751
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001752static 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 -07001753{
1754 struct nfs4_exception exception = { };
1755 struct nfs4_state *res;
1756 int status;
1757
1758 do {
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001759 status = _nfs4_do_open(dir, path, fmode, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (status == 0)
1761 break;
1762 /* NOTE: BAD_SEQID means the server and client disagree about the
1763 * book-keeping w.r.t. state-changing operations
1764 * (OPEN/CLOSE/LOCK/LOCKU...)
1765 * It is actually a sign of a bug on the client or on the server.
1766 *
1767 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001768 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 * have unhashed the old state_owner for us, and that we can
1770 * therefore safely retry using a new one. We should still warn
1771 * the user though...
1772 */
1773 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001774 printk(KERN_WARNING "NFS: v4 server %s "
1775 " returned a bad sequence-id error!\n",
1776 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 exception.retry = 1;
1778 continue;
1779 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001780 /*
1781 * BAD_STATEID on OPEN means that the server cancelled our
1782 * state before it received the OPEN_CONFIRM.
1783 * Recover by retrying the request as per the discussion
1784 * on Page 181 of RFC3530.
1785 */
1786 if (status == -NFS4ERR_BAD_STATEID) {
1787 exception.retry = 1;
1788 continue;
1789 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001790 if (status == -EAGAIN) {
1791 /* We must have found a delegation */
1792 exception.retry = 1;
1793 continue;
1794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1796 status, &exception));
1797 } while (exception.retry);
1798 return res;
1799}
1800
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001801static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1802 struct nfs_fattr *fattr, struct iattr *sattr,
1803 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001805 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001807 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 .iap = sattr,
1809 .server = server,
1810 .bitmask = server->attr_bitmask,
1811 };
1812 struct nfs_setattrres res = {
1813 .fattr = fattr,
1814 .server = server,
1815 };
1816 struct rpc_message msg = {
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001817 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1818 .rpc_argp = &arg,
1819 .rpc_resp = &res,
1820 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001822 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001823 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Trond Myklebust0e574af2005-10-27 22:12:38 -04001825 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001827 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1828 /* Use that stateid */
1829 } else if (state != NULL) {
Trond Myklebust77041ed2010-07-01 12:49:11 -04001830 nfs4_copy_stateid(&arg.stateid, state, current->files, current->tgid);
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001831 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1833
Andy Adamsoncccef3b2009-04-01 09:22:03 -04001834 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001835 if (status == 0 && state != NULL)
1836 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001837 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838}
1839
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001840static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1841 struct nfs_fattr *fattr, struct iattr *sattr,
1842 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001844 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 struct nfs4_exception exception = { };
1846 int err;
1847 do {
1848 err = nfs4_handle_exception(server,
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001849 _nfs4_do_setattr(inode, cred, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 &exception);
1851 } while (exception.retry);
1852 return err;
1853}
1854
1855struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001856 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 struct inode *inode;
1858 struct nfs4_state *state;
1859 struct nfs_closeargs arg;
1860 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001861 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001862 unsigned long timestamp;
Fred Isamanf7e89172011-01-06 11:36:32 +00001863 bool roc;
1864 u32 roc_barrier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865};
1866
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001867static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001868{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001869 struct nfs4_closedata *calldata = data;
1870 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001871
Fred Isamanf7e89172011-01-06 11:36:32 +00001872 if (calldata->roc)
1873 pnfs_roc_release(calldata->state->inode);
Trond Myklebust95121352005-10-18 14:20:12 -07001874 nfs4_put_open_state(calldata->state);
1875 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001876 nfs4_put_state_owner(sp);
Jan Blunck31f31db12008-05-02 13:42:45 -07001877 path_put(&calldata->path);
Trond Myklebust95121352005-10-18 14:20:12 -07001878 kfree(calldata);
1879}
1880
Trond Myklebust88069f72009-12-08 08:33:16 -05001881static void nfs4_close_clear_stateid_flags(struct nfs4_state *state,
1882 fmode_t fmode)
1883{
1884 spin_lock(&state->owner->so_lock);
1885 if (!(fmode & FMODE_READ))
1886 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1887 if (!(fmode & FMODE_WRITE))
1888 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1889 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1890 spin_unlock(&state->owner->so_lock);
1891}
1892
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001893static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001895 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 struct nfs_server *server = NFS_SERVER(calldata->inode);
1898
Trond Myklebust14516c32010-07-31 14:29:06 -04001899 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
1900 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 /* hmm. we are done with the inode, and in the process of freeing
1902 * the state_owner. we keep this around to process errors
1903 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 switch (task->tk_status) {
1905 case 0:
Fred Isamanf7e89172011-01-06 11:36:32 +00001906 if (calldata->roc)
1907 pnfs_roc_set_barrier(state->inode,
1908 calldata->roc_barrier);
Trond Myklebust45328c32007-07-26 17:47:34 -04001909 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001910 renew_lease(server, calldata->timestamp);
Trond Myklebust88069f72009-12-08 08:33:16 -05001911 nfs4_close_clear_stateid_flags(state,
1912 calldata->arg.fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 break;
1914 case -NFS4ERR_STALE_STATEID:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001915 case -NFS4ERR_OLD_STATEID:
1916 case -NFS4ERR_BAD_STATEID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 case -NFS4ERR_EXPIRED:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001918 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05001919 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 default:
Trond Myklebust72211db2009-12-15 14:47:36 -05001921 if (nfs4_async_handle_error(task, server, state) == -EAGAIN)
1922 rpc_restart_call_prepare(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 }
Trond Myklebust72211db2009-12-15 14:47:36 -05001924 nfs_release_seqid(calldata->arg.seqid);
Trond Myklebust516a6af2005-10-27 22:12:41 -04001925 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926}
1927
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001928static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001930 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001931 struct nfs4_state *state = calldata->state;
Trond Myklebust88069f72009-12-08 08:33:16 -05001932 int call_close = 0;
Trond Myklebust95121352005-10-18 14:20:12 -07001933
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001934 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001935 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001936
Trond Myklebust88069f72009-12-08 08:33:16 -05001937 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
1938 calldata->arg.fmode = FMODE_READ|FMODE_WRITE;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001939 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001940 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001941 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001942 if (state->n_rdonly == 0) {
Trond Myklebust88069f72009-12-08 08:33:16 -05001943 call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags);
1944 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
1945 calldata->arg.fmode &= ~FMODE_READ;
Trond Myklebust003707c2007-07-05 18:07:55 -04001946 }
1947 if (state->n_wronly == 0) {
Trond Myklebust88069f72009-12-08 08:33:16 -05001948 call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags);
1949 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
1950 calldata->arg.fmode &= ~FMODE_WRITE;
Trond Myklebust003707c2007-07-05 18:07:55 -04001951 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001952 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001953 spin_unlock(&state->owner->so_lock);
Trond Myklebust88069f72009-12-08 08:33:16 -05001954
1955 if (!call_close) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001956 /* Note: exit _without_ calling nfs4_close_done */
1957 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001958 return;
1959 }
Trond Myklebust88069f72009-12-08 08:33:16 -05001960
Fred Isamanf7e89172011-01-06 11:36:32 +00001961 if (calldata->arg.fmode == 0) {
Trond Myklebust88069f72009-12-08 08:33:16 -05001962 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE];
Fred Isamanf7e89172011-01-06 11:36:32 +00001963 if (calldata->roc &&
1964 pnfs_roc_drain(calldata->inode, &calldata->roc_barrier)) {
1965 rpc_sleep_on(&NFS_SERVER(calldata->inode)->roc_rpcwaitq,
1966 task, NULL);
1967 return;
1968 }
1969 }
Trond Myklebust88069f72009-12-08 08:33:16 -05001970
Trond Myklebust516a6af2005-10-27 22:12:41 -04001971 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001972 calldata->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04001973 if (nfs4_setup_sequence(NFS_SERVER(calldata->inode),
Andy Adamson19ddab02009-04-01 09:22:20 -04001974 &calldata->arg.seq_args, &calldata->res.seq_res,
1975 1, task))
1976 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001977 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978}
1979
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001980static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001981 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001982 .rpc_call_done = nfs4_close_done,
1983 .rpc_release = nfs4_free_closedata,
1984};
1985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986/*
1987 * It is possible for data to be read/written from a mem-mapped file
1988 * after the sys_close call (which hits the vfs layer as a flush).
1989 * This means that we can't safely call nfsv4 close on a file until
1990 * the inode is cleared. This in turn means that we are not good
1991 * NFSv4 citizens - we do not indicate to the server to update the file's
1992 * share state even when we are done with one of the three share
1993 * stateid's in the inode.
1994 *
1995 * NOTE: Caller must be holding the sp->so_owner semaphore!
1996 */
Fred Isamanf7e89172011-01-06 11:36:32 +00001997int nfs4_do_close(struct path *path, struct nfs4_state *state, gfp_t gfp_mask, int wait, bool roc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001999 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04002001 struct nfs4_state_owner *sp = state->owner;
2002 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002003 struct rpc_message msg = {
2004 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
2005 .rpc_cred = state->owner->so_cred,
2006 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04002007 struct rpc_task_setup task_setup_data = {
2008 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04002009 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002010 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05002011 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002012 .flags = RPC_TASK_ASYNC,
2013 };
Trond Myklebust95121352005-10-18 14:20:12 -07002014 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Trond Myklebust8535b2b2010-05-13 12:51:01 -04002016 calldata = kzalloc(sizeof(*calldata), gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07002018 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04002019 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04002021 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04002022 calldata->arg.stateid = &state->open_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 /* Serialization for the sequence id */
Trond Myklebust8535b2b2010-05-13 12:51:01 -04002024 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid, gfp_mask);
Trond Myklebust95121352005-10-18 14:20:12 -07002025 if (calldata->arg.seqid == NULL)
2026 goto out_free_calldata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002027 calldata->arg.fmode = 0;
Trond Myklebusta65318b2009-03-11 14:10:28 -04002028 calldata->arg.bitmask = server->cache_consistency_bitmask;
Trond Myklebust516a6af2005-10-27 22:12:41 -04002029 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04002030 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04002031 calldata->res.server = server;
Fred Isamanf7e89172011-01-06 11:36:32 +00002032 calldata->roc = roc;
Al Virof6948692010-01-30 13:51:04 -05002033 path_get(path);
2034 calldata->path = *path;
Trond Myklebust95121352005-10-18 14:20:12 -07002035
Trond Myklebust1174dd12010-12-21 10:52:24 -05002036 msg.rpc_argp = &calldata->arg;
2037 msg.rpc_resp = &calldata->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04002038 task_setup_data.callback_data = calldata;
2039 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04002040 if (IS_ERR(task))
2041 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04002042 status = 0;
2043 if (wait)
2044 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04002045 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04002046 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07002047out_free_calldata:
2048 kfree(calldata);
2049out:
Fred Isamanf7e89172011-01-06 11:36:32 +00002050 if (roc)
2051 pnfs_roc_release(state->inode);
Trond Myklebustb39e6252007-06-11 23:05:07 -04002052 nfs4_put_open_state(state);
2053 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07002054 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055}
2056
Trond Myklebust2b484292010-09-17 10:56:51 -04002057static struct inode *
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04002058nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx, int open_flags, struct iattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 struct nfs4_state *state;
2061
Trond Myklebust565277f2007-10-15 18:17:53 -04002062 /* Protect against concurrent sillydeletes */
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04002063 state = nfs4_do_open(dir, &ctx->path, ctx->mode, open_flags, attr, ctx->cred);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04002064 if (IS_ERR(state))
2065 return ERR_CAST(state);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04002066 ctx->state = state;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04002067 return igrab(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068}
2069
Trond Myklebust1185a552009-12-03 15:54:02 -05002070static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
Trond Myklebust7fe5c392009-03-19 15:35:50 -04002071{
2072 if (ctx->state == NULL)
2073 return;
2074 if (is_sync)
2075 nfs4_close_sync(&ctx->path, ctx->state, ctx->mode);
2076 else
2077 nfs4_close_state(&ctx->path, ctx->state, ctx->mode);
2078}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
2081{
Benny Halevy43652ad2009-04-01 09:21:54 -04002082 struct nfs4_server_caps_arg args = {
2083 .fhandle = fhandle,
2084 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 struct nfs4_server_caps_res res = {};
2086 struct rpc_message msg = {
2087 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
Benny Halevy43652ad2009-04-01 09:21:54 -04002088 .rpc_argp = &args,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 .rpc_resp = &res,
2090 };
2091 int status;
2092
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002093 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 if (status == 0) {
2095 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002096 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
2097 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
2098 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
2099 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
2100 NFS_CAP_CTIME|NFS_CAP_MTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
2102 server->caps |= NFS_CAP_ACLS;
2103 if (res.has_links != 0)
2104 server->caps |= NFS_CAP_HARDLINKS;
2105 if (res.has_symlinks != 0)
2106 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002107 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
2108 server->caps |= NFS_CAP_FILEID;
2109 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
2110 server->caps |= NFS_CAP_MODE;
2111 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
2112 server->caps |= NFS_CAP_NLINK;
2113 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
2114 server->caps |= NFS_CAP_OWNER;
2115 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
2116 server->caps |= NFS_CAP_OWNER_GROUP;
2117 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
2118 server->caps |= NFS_CAP_ATIME;
2119 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
2120 server->caps |= NFS_CAP_CTIME;
2121 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
2122 server->caps |= NFS_CAP_MTIME;
2123
Trond Myklebusta65318b2009-03-11 14:10:28 -04002124 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
2125 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
2126 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 server->acl_bitmask = res.acl_bitmask;
2128 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 return status;
2131}
2132
Trond Myklebust55a97592006-06-09 09:34:19 -04002133int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
2135 struct nfs4_exception exception = { };
2136 int err;
2137 do {
2138 err = nfs4_handle_exception(server,
2139 _nfs4_server_capabilities(server, fhandle),
2140 &exception);
2141 } while (exception.retry);
2142 return err;
2143}
2144
2145static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2146 struct nfs_fsinfo *info)
2147{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 struct nfs4_lookup_root_arg args = {
2149 .bitmask = nfs4_fattr_bitmap,
2150 };
2151 struct nfs4_lookup_res res = {
2152 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04002153 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 .fh = fhandle,
2155 };
2156 struct rpc_message msg = {
2157 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
2158 .rpc_argp = &args,
2159 .rpc_resp = &res,
2160 };
Benny Halevy008f55d2009-04-01 09:22:50 -04002161
Trond Myklebust0e574af2005-10-27 22:12:38 -04002162 nfs_fattr_init(info->fattr);
Trond Myklebustfccba802009-07-21 16:48:07 -04002163 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164}
2165
2166static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2167 struct nfs_fsinfo *info)
2168{
2169 struct nfs4_exception exception = { };
2170 int err;
2171 do {
2172 err = nfs4_handle_exception(server,
2173 _nfs4_lookup_root(server, fhandle, info),
2174 &exception);
2175 } while (exception.retry);
2176 return err;
2177}
2178
David Howells54ceac42006-08-22 20:06:13 -04002179/*
2180 * get the file handle for the "/" directory on the server
2181 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04002183 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 int status;
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 if (status == 0)
2189 status = nfs4_server_capabilities(server, fhandle);
2190 if (status == 0)
2191 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08002192 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193}
2194
Manoj Naik6b97fd32006-06-09 09:34:29 -04002195/*
2196 * Get locations and (maybe) other attributes of a referral.
2197 * Note that we'll actually follow the referral later when
2198 * we detect fsid mismatch in inode revalidation
2199 */
Trond Myklebust56659e92007-07-17 21:52:39 -04002200static 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 -04002201{
2202 int status = -ENOMEM;
2203 struct page *page = NULL;
2204 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04002205
2206 page = alloc_page(GFP_KERNEL);
2207 if (page == NULL)
2208 goto out;
2209 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
2210 if (locations == NULL)
2211 goto out;
2212
Trond Myklebustc228fd32007-01-13 02:28:11 -05002213 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002214 if (status != 0)
2215 goto out;
2216 /* Make sure server returned a different fsid for the referral */
2217 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -07002218 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 -04002219 status = -EIO;
2220 goto out;
2221 }
2222
2223 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
2224 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
2225 if (!fattr->mode)
2226 fattr->mode = S_IFDIR;
2227 memset(fhandle, 0, sizeof(struct nfs_fh));
2228out:
2229 if (page)
2230 __free_page(page);
Davidlohr Bueso5d7ca352010-08-11 12:42:15 -04002231 kfree(locations);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002232 return status;
2233}
2234
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2236{
2237 struct nfs4_getattr_arg args = {
2238 .fh = fhandle,
2239 .bitmask = server->attr_bitmask,
2240 };
2241 struct nfs4_getattr_res res = {
2242 .fattr = fattr,
2243 .server = server,
2244 };
2245 struct rpc_message msg = {
2246 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
2247 .rpc_argp = &args,
2248 .rpc_resp = &res,
2249 };
2250
Trond Myklebust0e574af2005-10-27 22:12:38 -04002251 nfs_fattr_init(fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002252 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253}
2254
2255static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2256{
2257 struct nfs4_exception exception = { };
2258 int err;
2259 do {
2260 err = nfs4_handle_exception(server,
2261 _nfs4_proc_getattr(server, fhandle, fattr),
2262 &exception);
2263 } while (exception.retry);
2264 return err;
2265}
2266
2267/*
2268 * The file is not closed if it is opened due to the a request to change
2269 * the size of the file. The open call will not be needed once the
2270 * VFS layer lookup-intents are implemented.
2271 *
2272 * Close is called when the inode is destroyed.
2273 * If we haven't opened the file for O_WRONLY, we
2274 * need to in the size_change case to obtain a stateid.
2275 *
2276 * Got race?
2277 * Because OPEN is always done by name in nfsv4, it is
2278 * possible that we opened a different file by the same
2279 * name. We can recognize this race condition, but we
2280 * can't do anything about it besides returning an error.
2281 *
2282 * This will be fixed with VFS changes (lookup-intent).
2283 */
2284static int
2285nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
2286 struct iattr *sattr)
2287{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002288 struct inode *inode = dentry->d_inode;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002289 struct rpc_cred *cred = NULL;
Trond Myklebustd5308382005-11-04 15:33:38 -05002290 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 int status;
2292
Trond Myklebust0e574af2005-10-27 22:12:38 -04002293 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Trond Myklebustd5308382005-11-04 15:33:38 -05002295 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002296 if (sattr->ia_valid & ATTR_FILE) {
2297 struct nfs_open_context *ctx;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002298
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002299 ctx = nfs_file_open_context(sattr->ia_file);
Neil Brown504e5182008-10-16 14:15:16 +11002300 if (ctx) {
2301 cred = ctx->cred;
2302 state = ctx->state;
2303 }
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002304 }
2305
2306 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04002307 if (status == 0)
2308 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 return status;
2310}
2311
Trond Myklebust56659e92007-07-17 21:52:39 -04002312static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh,
2313 const struct qstr *name, struct nfs_fh *fhandle,
David Howells2b3de442006-08-22 20:06:09 -04002314 struct nfs_fattr *fattr)
2315{
2316 int status;
2317 struct nfs4_lookup_arg args = {
2318 .bitmask = server->attr_bitmask,
2319 .dir_fh = dirfh,
2320 .name = name,
2321 };
2322 struct nfs4_lookup_res res = {
2323 .server = server,
2324 .fattr = fattr,
2325 .fh = fhandle,
2326 };
2327 struct rpc_message msg = {
2328 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
2329 .rpc_argp = &args,
2330 .rpc_resp = &res,
2331 };
2332
2333 nfs_fattr_init(fattr);
2334
2335 dprintk("NFS call lookupfh %s\n", name->name);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002336 status = nfs4_call_sync(server, &msg, &args, &res, 0);
David Howells2b3de442006-08-22 20:06:09 -04002337 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04002338 return status;
2339}
2340
2341static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
2342 struct qstr *name, struct nfs_fh *fhandle,
2343 struct nfs_fattr *fattr)
2344{
2345 struct nfs4_exception exception = { };
2346 int err;
2347 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04002348 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
2349 /* FIXME: !!!! */
2350 if (err == -NFS4ERR_MOVED) {
2351 err = -EREMOTE;
2352 break;
2353 }
2354 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04002355 } while (exception.retry);
2356 return err;
2357}
2358
Trond Myklebust56659e92007-07-17 21:52:39 -04002359static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2361{
Trond Myklebust4e56e082007-07-01 18:13:52 -04002362 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
2364 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04002365 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002366 if (status == -NFS4ERR_MOVED)
2367 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 dprintk("NFS reply lookup: %d\n", status);
2369 return status;
2370}
2371
2372static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2373{
2374 struct nfs4_exception exception = { };
2375 int err;
2376 do {
2377 err = nfs4_handle_exception(NFS_SERVER(dir),
2378 _nfs4_proc_lookup(dir, name, fhandle, fattr),
2379 &exception);
2380 } while (exception.retry);
2381 return err;
2382}
2383
2384static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2385{
Trond Myklebust76b32992007-08-10 17:45:11 -04002386 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 struct nfs4_accessargs args = {
2388 .fh = NFS_FH(inode),
Trond Myklebust76b32992007-08-10 17:45:11 -04002389 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 };
Trond Myklebust76b32992007-08-10 17:45:11 -04002391 struct nfs4_accessres res = {
2392 .server = server,
Trond Myklebust76b32992007-08-10 17:45:11 -04002393 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 struct rpc_message msg = {
2395 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
2396 .rpc_argp = &args,
2397 .rpc_resp = &res,
2398 .rpc_cred = entry->cred,
2399 };
2400 int mode = entry->mask;
2401 int status;
2402
2403 /*
2404 * Determine which access bits we want to ask for...
2405 */
2406 if (mode & MAY_READ)
2407 args.access |= NFS4_ACCESS_READ;
2408 if (S_ISDIR(inode->i_mode)) {
2409 if (mode & MAY_WRITE)
2410 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
2411 if (mode & MAY_EXEC)
2412 args.access |= NFS4_ACCESS_LOOKUP;
2413 } else {
2414 if (mode & MAY_WRITE)
2415 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
2416 if (mode & MAY_EXEC)
2417 args.access |= NFS4_ACCESS_EXECUTE;
2418 }
Trond Myklebustc407d412010-04-16 16:22:48 -04002419
2420 res.fattr = nfs_alloc_fattr();
2421 if (res.fattr == NULL)
2422 return -ENOMEM;
2423
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002424 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (!status) {
2426 entry->mask = 0;
2427 if (res.access & NFS4_ACCESS_READ)
2428 entry->mask |= MAY_READ;
2429 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
2430 entry->mask |= MAY_WRITE;
2431 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
2432 entry->mask |= MAY_EXEC;
Trond Myklebustc407d412010-04-16 16:22:48 -04002433 nfs_refresh_inode(inode, res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 }
Trond Myklebustc407d412010-04-16 16:22:48 -04002435 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 return status;
2437}
2438
2439static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2440{
2441 struct nfs4_exception exception = { };
2442 int err;
2443 do {
2444 err = nfs4_handle_exception(NFS_SERVER(inode),
2445 _nfs4_proc_access(inode, entry),
2446 &exception);
2447 } while (exception.retry);
2448 return err;
2449}
2450
2451/*
2452 * TODO: For the time being, we don't try to get any attributes
2453 * along with any of the zero-copy operations READ, READDIR,
2454 * READLINK, WRITE.
2455 *
2456 * In the case of the first three, we want to put the GETATTR
2457 * after the read-type operation -- this is because it is hard
2458 * to predict the length of a GETATTR response in v4, and thus
2459 * align the READ data correctly. This means that the GETATTR
2460 * may end up partially falling into the page cache, and we should
2461 * shift it into the 'tail' of the xdr_buf before processing.
2462 * To do this efficiently, we need to know the total length
2463 * of data received, which doesn't seem to be available outside
2464 * of the RPC layer.
2465 *
2466 * In the case of WRITE, we also want to put the GETATTR after
2467 * the operation -- in this case because we want to make sure
2468 * we get the post-operation mtime and size. This means that
2469 * we can't use xdr_encode_pages() as written: we need a variant
2470 * of it which would leave room in the 'tail' iovec.
2471 *
2472 * Both of these changes to the XDR layer would in fact be quite
2473 * minor, but I decided to leave them for a subsequent patch.
2474 */
2475static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
2476 unsigned int pgbase, unsigned int pglen)
2477{
2478 struct nfs4_readlink args = {
2479 .fh = NFS_FH(inode),
2480 .pgbase = pgbase,
2481 .pglen = pglen,
2482 .pages = &page,
2483 };
Benny Halevyf50c7002009-04-01 09:21:55 -04002484 struct nfs4_readlink_res res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 struct rpc_message msg = {
2486 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
2487 .rpc_argp = &args,
Benny Halevyf50c7002009-04-01 09:21:55 -04002488 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 };
2490
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002491 return nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492}
2493
2494static int nfs4_proc_readlink(struct inode *inode, struct page *page,
2495 unsigned int pgbase, unsigned int pglen)
2496{
2497 struct nfs4_exception exception = { };
2498 int err;
2499 do {
2500 err = nfs4_handle_exception(NFS_SERVER(inode),
2501 _nfs4_proc_readlink(inode, page, pgbase, pglen),
2502 &exception);
2503 } while (exception.retry);
2504 return err;
2505}
2506
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507/*
2508 * Got race?
2509 * We will need to arrange for the VFS layer to provide an atomic open.
2510 * Until then, this create/open method is prone to inefficiency and race
2511 * conditions due to the lookup, create, and open VFS calls from sys_open()
2512 * placed on the wire.
2513 *
2514 * Given the above sorry state of affairs, I'm simply sending an OPEN.
2515 * The file will be opened again in the subsequent VFS open call
2516 * (nfs4_proc_file_open).
2517 *
2518 * The open for read will just hang around to be used by any process that
2519 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
2520 */
2521
2522static int
2523nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002524 int flags, struct nfs_open_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525{
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002526 struct path my_path = {
Trond Myklebustad389da2007-06-05 12:30:00 -04002527 .dentry = dentry,
2528 };
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002529 struct path *path = &my_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 struct nfs4_state *state;
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002531 struct rpc_cred *cred = NULL;
2532 fmode_t fmode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 int status = 0;
2534
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002535 if (ctx != NULL) {
2536 cred = ctx->cred;
2537 path = &ctx->path;
2538 fmode = ctx->mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 }
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00002540 sattr->ia_mode &= ~current_umask();
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002541 state = nfs4_do_open(dir, path, fmode, flags, sattr, cred);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002542 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 if (IS_ERR(state)) {
2544 status = PTR_ERR(state);
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002545 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002547 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04002548 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002549 if (ctx != NULL)
2550 ctx->state = state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07002551 else
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002552 nfs4_close_sync(path, state, fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553out:
2554 return status;
2555}
2556
2557static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
2558{
Trond Myklebust16e42952005-10-27 22:12:44 -04002559 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002560 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 .fh = NFS_FH(dir),
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002562 .name.len = name->len,
2563 .name.name = name->name,
Trond Myklebust16e42952005-10-27 22:12:44 -04002564 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002566 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04002567 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04002568 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002570 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
2571 .rpc_argp = &args,
2572 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 };
Trond Myklebustd3468902010-04-16 16:22:50 -04002574 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
Trond Myklebustd3468902010-04-16 16:22:50 -04002576 res.dir_attr = nfs_alloc_fattr();
2577 if (res.dir_attr == NULL)
2578 goto out;
2579
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002580 status = nfs4_call_sync(server, &msg, &args, &res, 1);
Trond Myklebust16e42952005-10-27 22:12:44 -04002581 if (status == 0) {
2582 update_changeattr(dir, &res.cinfo);
Trond Myklebustd3468902010-04-16 16:22:50 -04002583 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust16e42952005-10-27 22:12:44 -04002584 }
Trond Myklebustd3468902010-04-16 16:22:50 -04002585 nfs_free_fattr(res.dir_attr);
2586out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 return status;
2588}
2589
2590static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
2591{
2592 struct nfs4_exception exception = { };
2593 int err;
2594 do {
2595 err = nfs4_handle_exception(NFS_SERVER(dir),
2596 _nfs4_proc_remove(dir, name),
2597 &exception);
2598 } while (exception.retry);
2599 return err;
2600}
2601
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002602static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002604 struct nfs_server *server = NFS_SERVER(dir);
2605 struct nfs_removeargs *args = msg->rpc_argp;
2606 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Trond Myklebusta65318b2009-03-11 14:10:28 -04002608 args->bitmask = server->cache_consistency_bitmask;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002609 res->server = server;
Benny Halevydfb4f3092010-09-24 09:17:01 -04002610 res->seq_res.sr_slot = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612}
2613
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002614static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002616 struct nfs_removeres *res = task->tk_msg.rpc_resp;
2617
Trond Myklebust14516c32010-07-31 14:29:06 -04002618 if (!nfs4_sequence_done(task, &res->seq_res))
2619 return 0;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002620 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002621 return 0;
2622 update_changeattr(dir, &res->cinfo);
Trond Myklebustd3468902010-04-16 16:22:50 -04002623 nfs_post_op_update_inode(dir, res->dir_attr);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002624 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625}
2626
Jeff Laytond3d41522010-09-17 17:31:57 -04002627static void nfs4_proc_rename_setup(struct rpc_message *msg, struct inode *dir)
2628{
2629 struct nfs_server *server = NFS_SERVER(dir);
2630 struct nfs_renameargs *arg = msg->rpc_argp;
2631 struct nfs_renameres *res = msg->rpc_resp;
2632
2633 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME];
2634 arg->bitmask = server->attr_bitmask;
2635 res->server = server;
2636}
2637
2638static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
2639 struct inode *new_dir)
2640{
2641 struct nfs_renameres *res = task->tk_msg.rpc_resp;
2642
2643 if (!nfs4_sequence_done(task, &res->seq_res))
2644 return 0;
2645 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
2646 return 0;
2647
2648 update_changeattr(old_dir, &res->old_cinfo);
2649 nfs_post_op_update_inode(old_dir, res->old_fattr);
2650 update_changeattr(new_dir, &res->new_cinfo);
2651 nfs_post_op_update_inode(new_dir, res->new_fattr);
2652 return 1;
2653}
2654
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2656 struct inode *new_dir, struct qstr *new_name)
2657{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002658 struct nfs_server *server = NFS_SERVER(old_dir);
Jeff Layton920769f2010-09-17 17:30:25 -04002659 struct nfs_renameargs arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 .old_dir = NFS_FH(old_dir),
2661 .new_dir = NFS_FH(new_dir),
2662 .old_name = old_name,
2663 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002664 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 };
Jeff Laytone8582a82010-09-17 17:31:06 -04002666 struct nfs_renameres res = {
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002667 .server = server,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002668 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 struct rpc_message msg = {
2670 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2671 .rpc_argp = &arg,
2672 .rpc_resp = &res,
2673 };
Trond Myklebust011fff72010-04-16 16:22:49 -04002674 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Trond Myklebust011fff72010-04-16 16:22:49 -04002676 res.old_fattr = nfs_alloc_fattr();
2677 res.new_fattr = nfs_alloc_fattr();
2678 if (res.old_fattr == NULL || res.new_fattr == NULL)
2679 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Trond Myklebust011fff72010-04-16 16:22:49 -04002681 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 if (!status) {
2683 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002684 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002686 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 }
Trond Myklebust011fff72010-04-16 16:22:49 -04002688out:
2689 nfs_free_fattr(res.new_fattr);
2690 nfs_free_fattr(res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 return status;
2692}
2693
2694static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2695 struct inode *new_dir, struct qstr *new_name)
2696{
2697 struct nfs4_exception exception = { };
2698 int err;
2699 do {
2700 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2701 _nfs4_proc_rename(old_dir, old_name,
2702 new_dir, new_name),
2703 &exception);
2704 } while (exception.retry);
2705 return err;
2706}
2707
2708static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2709{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002710 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 struct nfs4_link_arg arg = {
2712 .fh = NFS_FH(inode),
2713 .dir_fh = NFS_FH(dir),
2714 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002715 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002717 struct nfs4_link_res res = {
2718 .server = server,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002719 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 struct rpc_message msg = {
2721 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2722 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002723 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 };
Trond Myklebust136f2622010-04-16 16:22:49 -04002725 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Trond Myklebust136f2622010-04-16 16:22:49 -04002727 res.fattr = nfs_alloc_fattr();
2728 res.dir_attr = nfs_alloc_fattr();
2729 if (res.fattr == NULL || res.dir_attr == NULL)
2730 goto out;
2731
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002732 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002733 if (!status) {
2734 update_changeattr(dir, &res.cinfo);
2735 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002736 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002737 }
Trond Myklebust136f2622010-04-16 16:22:49 -04002738out:
2739 nfs_free_fattr(res.dir_attr);
2740 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 return status;
2742}
2743
2744static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2745{
2746 struct nfs4_exception exception = { };
2747 int err;
2748 do {
2749 err = nfs4_handle_exception(NFS_SERVER(inode),
2750 _nfs4_proc_link(inode, dir, name),
2751 &exception);
2752 } while (exception.retry);
2753 return err;
2754}
2755
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002756struct nfs4_createdata {
2757 struct rpc_message msg;
2758 struct nfs4_create_arg arg;
2759 struct nfs4_create_res res;
2760 struct nfs_fh fh;
2761 struct nfs_fattr fattr;
2762 struct nfs_fattr dir_fattr;
2763};
2764
2765static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
2766 struct qstr *name, struct iattr *sattr, u32 ftype)
2767{
2768 struct nfs4_createdata *data;
2769
2770 data = kzalloc(sizeof(*data), GFP_KERNEL);
2771 if (data != NULL) {
2772 struct nfs_server *server = NFS_SERVER(dir);
2773
2774 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
2775 data->msg.rpc_argp = &data->arg;
2776 data->msg.rpc_resp = &data->res;
2777 data->arg.dir_fh = NFS_FH(dir);
2778 data->arg.server = server;
2779 data->arg.name = name;
2780 data->arg.attrs = sattr;
2781 data->arg.ftype = ftype;
2782 data->arg.bitmask = server->attr_bitmask;
2783 data->res.server = server;
2784 data->res.fh = &data->fh;
2785 data->res.fattr = &data->fattr;
2786 data->res.dir_fattr = &data->dir_fattr;
2787 nfs_fattr_init(data->res.fattr);
2788 nfs_fattr_init(data->res.dir_fattr);
2789 }
2790 return data;
2791}
2792
2793static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
2794{
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002795 int status = nfs4_call_sync(NFS_SERVER(dir), &data->msg,
2796 &data->arg, &data->res, 1);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002797 if (status == 0) {
2798 update_changeattr(dir, &data->res.dir_cinfo);
2799 nfs_post_op_update_inode(dir, data->res.dir_fattr);
2800 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
2801 }
2802 return status;
2803}
2804
2805static void nfs4_free_createdata(struct nfs4_createdata *data)
2806{
2807 kfree(data);
2808}
2809
Chuck Lever4f390c12006-08-22 20:06:22 -04002810static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002811 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002813 struct nfs4_createdata *data;
2814 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
Chuck Lever94a6d752006-08-22 20:06:23 -04002816 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002817 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04002818
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002819 status = -ENOMEM;
2820 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
2821 if (data == NULL)
2822 goto out;
2823
2824 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
2825 data->arg.u.symlink.pages = &page;
2826 data->arg.u.symlink.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002828 status = nfs4_do_create(dir, dentry, data);
2829
2830 nfs4_free_createdata(data);
2831out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 return status;
2833}
2834
Chuck Lever4f390c12006-08-22 20:06:22 -04002835static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002836 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837{
2838 struct nfs4_exception exception = { };
2839 int err;
2840 do {
2841 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002842 _nfs4_proc_symlink(dir, dentry, page,
2843 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 &exception);
2845 } while (exception.retry);
2846 return err;
2847}
2848
2849static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2850 struct iattr *sattr)
2851{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002852 struct nfs4_createdata *data;
2853 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002855 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
2856 if (data == NULL)
2857 goto out;
2858
2859 status = nfs4_do_create(dir, dentry, data);
2860
2861 nfs4_free_createdata(data);
2862out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 return status;
2864}
2865
2866static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2867 struct iattr *sattr)
2868{
2869 struct nfs4_exception exception = { };
2870 int err;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00002871
2872 sattr->ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 do {
2874 err = nfs4_handle_exception(NFS_SERVER(dir),
2875 _nfs4_proc_mkdir(dir, dentry, sattr),
2876 &exception);
2877 } while (exception.retry);
2878 return err;
2879}
2880
2881static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04002882 u64 cookie, struct page **pages, unsigned int count, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883{
2884 struct inode *dir = dentry->d_inode;
2885 struct nfs4_readdir_arg args = {
2886 .fh = NFS_FH(dir),
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04002887 .pages = pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 .pgbase = 0,
2889 .count = count,
Trond Myklebust96d25e52009-11-11 16:15:42 +09002890 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
Bryan Schumaker82f2e542010-10-21 16:33:18 -04002891 .plus = plus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 };
2893 struct nfs4_readdir_res res;
2894 struct rpc_message msg = {
2895 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2896 .rpc_argp = &args,
2897 .rpc_resp = &res,
2898 .rpc_cred = cred,
2899 };
2900 int status;
2901
Harvey Harrison3110ff82008-05-02 13:42:44 -07002902 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00002903 dentry->d_parent->d_name.name,
2904 dentry->d_name.name,
2905 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2907 res.pgbase = args.pgbase;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002908 status = nfs4_call_sync(NFS_SERVER(dir), &msg, &args, &res, 0);
Trond Myklebustac396122010-11-15 20:26:22 -05002909 if (status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustac396122010-11-15 20:26:22 -05002911 status += args.pgbase;
2912 }
Trond Myklebustc4812992007-09-28 17:11:45 -04002913
2914 nfs_invalidate_atime(dir);
2915
Harvey Harrison3110ff82008-05-02 13:42:44 -07002916 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 return status;
2918}
2919
2920static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04002921 u64 cookie, struct page **pages, unsigned int count, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922{
2923 struct nfs4_exception exception = { };
2924 int err;
2925 do {
2926 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2927 _nfs4_proc_readdir(dentry, cred, cookie,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04002928 pages, count, plus),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 &exception);
2930 } while (exception.retry);
2931 return err;
2932}
2933
2934static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2935 struct iattr *sattr, dev_t rdev)
2936{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002937 struct nfs4_createdata *data;
2938 int mode = sattr->ia_mode;
2939 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
2941 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2942 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002943
2944 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
2945 if (data == NULL)
2946 goto out;
2947
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002949 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002951 data->arg.ftype = NF4BLK;
2952 data->arg.u.device.specdata1 = MAJOR(rdev);
2953 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 }
2955 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002956 data->arg.ftype = NF4CHR;
2957 data->arg.u.device.specdata1 = MAJOR(rdev);
2958 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Trond Myklebust57dc9a52008-06-20 15:35:32 -04002961 status = nfs4_do_create(dir, dentry, data);
2962
2963 nfs4_free_createdata(data);
2964out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 return status;
2966}
2967
2968static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2969 struct iattr *sattr, dev_t rdev)
2970{
2971 struct nfs4_exception exception = { };
2972 int err;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00002973
2974 sattr->ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 do {
2976 err = nfs4_handle_exception(NFS_SERVER(dir),
2977 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2978 &exception);
2979 } while (exception.retry);
2980 return err;
2981}
2982
2983static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2984 struct nfs_fsstat *fsstat)
2985{
2986 struct nfs4_statfs_arg args = {
2987 .fh = fhandle,
2988 .bitmask = server->attr_bitmask,
2989 };
Benny Halevy24ad1482009-04-01 09:21:56 -04002990 struct nfs4_statfs_res res = {
2991 .fsstat = fsstat,
2992 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 struct rpc_message msg = {
2994 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2995 .rpc_argp = &args,
Benny Halevy24ad1482009-04-01 09:21:56 -04002996 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 };
2998
Trond Myklebust0e574af2005-10-27 22:12:38 -04002999 nfs_fattr_init(fsstat->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003000 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001}
3002
3003static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
3004{
3005 struct nfs4_exception exception = { };
3006 int err;
3007 do {
3008 err = nfs4_handle_exception(server,
3009 _nfs4_proc_statfs(server, fhandle, fsstat),
3010 &exception);
3011 } while (exception.retry);
3012 return err;
3013}
3014
3015static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
3016 struct nfs_fsinfo *fsinfo)
3017{
3018 struct nfs4_fsinfo_arg args = {
3019 .fh = fhandle,
3020 .bitmask = server->attr_bitmask,
3021 };
Benny Halevy3dda5e42009-04-01 09:21:57 -04003022 struct nfs4_fsinfo_res res = {
3023 .fsinfo = fsinfo,
3024 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 struct rpc_message msg = {
3026 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
3027 .rpc_argp = &args,
Benny Halevy3dda5e42009-04-01 09:21:57 -04003028 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 };
3030
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003031 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032}
3033
3034static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
3035{
3036 struct nfs4_exception exception = { };
3037 int err;
3038
3039 do {
3040 err = nfs4_handle_exception(server,
3041 _nfs4_do_fsinfo(server, fhandle, fsinfo),
3042 &exception);
3043 } while (exception.retry);
3044 return err;
3045}
3046
3047static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
3048{
Trond Myklebust0e574af2005-10-27 22:12:38 -04003049 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 return nfs4_do_fsinfo(server, fhandle, fsinfo);
3051}
3052
3053static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
3054 struct nfs_pathconf *pathconf)
3055{
3056 struct nfs4_pathconf_arg args = {
3057 .fh = fhandle,
3058 .bitmask = server->attr_bitmask,
3059 };
Benny Halevyd45b2982009-04-01 09:21:58 -04003060 struct nfs4_pathconf_res res = {
3061 .pathconf = pathconf,
3062 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 struct rpc_message msg = {
3064 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
3065 .rpc_argp = &args,
Benny Halevyd45b2982009-04-01 09:21:58 -04003066 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 };
3068
3069 /* None of the pathconf attributes are mandatory to implement */
3070 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
3071 memset(pathconf, 0, sizeof(*pathconf));
3072 return 0;
3073 }
3074
Trond Myklebust0e574af2005-10-27 22:12:38 -04003075 nfs_fattr_init(pathconf->fattr);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003076 return nfs4_call_sync(server, &msg, &args, &res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077}
3078
3079static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
3080 struct nfs_pathconf *pathconf)
3081{
3082 struct nfs4_exception exception = { };
3083 int err;
3084
3085 do {
3086 err = nfs4_handle_exception(server,
3087 _nfs4_proc_pathconf(server, fhandle, pathconf),
3088 &exception);
3089 } while (exception.retry);
3090 return err;
3091}
3092
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +00003093static int nfs4_read_done_cb(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094{
Trond Myklebustec06c092006-03-20 13:44:27 -05003095 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003097 if (nfs4_async_handle_error(task, server, data->args.context->state) == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05003098 nfs_restart_rpc(task, server->nfs_client);
Trond Myklebustec06c092006-03-20 13:44:27 -05003099 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 }
Trond Myklebust8850df92007-09-28 17:20:07 -04003101
3102 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05003104 renew_lease(server, data->timestamp);
3105 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106}
3107
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +00003108static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
3109{
3110
3111 dprintk("--> %s\n", __func__);
3112
3113 if (!nfs4_sequence_done(task, &data->res.seq_res))
3114 return -EAGAIN;
3115
3116 return data->read_done_cb(task, data);
3117}
3118
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003119static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 data->timestamp = jiffies;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +00003122 data->read_done_cb = nfs4_read_done_cb;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003123 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124}
3125
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +00003126/* Reset the the nfs_read_data to send the read to the MDS. */
3127void nfs4_reset_read(struct rpc_task *task, struct nfs_read_data *data)
3128{
3129 dprintk("%s Reset task for i/o through\n", __func__);
3130 put_lseg(data->lseg);
3131 data->lseg = NULL;
3132 /* offsets will differ in the dense stripe case */
3133 data->args.offset = data->mds_offset;
3134 data->ds_clp = NULL;
3135 data->args.fh = NFS_FH(data->inode);
3136 data->read_done_cb = nfs4_read_done_cb;
3137 task->tk_ops = data->mds_ops;
3138 rpc_task_reset_client(task, NFS_CLIENT(data->inode));
3139}
3140EXPORT_SYMBOL_GPL(nfs4_reset_read);
3141
Fred Isamanb029bc92011-03-03 15:13:42 +00003142static int nfs4_write_done_cb(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 struct inode *inode = data->inode;
3145
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003146 if (nfs4_async_handle_error(task, NFS_SERVER(inode), data->args.context->state) == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05003147 nfs_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003148 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003150 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust70ca8852007-09-30 15:21:24 -04003152 nfs_post_op_update_inode_force_wcc(inode, data->res.fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003153 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05003154 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155}
3156
Fred Isamanb029bc92011-03-03 15:13:42 +00003157static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
3158{
3159 if (!nfs4_sequence_done(task, &data->res.seq_res))
3160 return -EAGAIN;
3161 return data->write_done_cb(task, data);
3162}
3163
Fred Isamana69aef12011-03-03 15:13:47 +00003164/* Reset the the nfs_write_data to send the write to the MDS. */
3165void nfs4_reset_write(struct rpc_task *task, struct nfs_write_data *data)
3166{
3167 dprintk("%s Reset task for i/o through\n", __func__);
3168 put_lseg(data->lseg);
3169 data->lseg = NULL;
3170 data->ds_clp = NULL;
3171 data->write_done_cb = nfs4_write_done_cb;
3172 data->args.fh = NFS_FH(data->inode);
3173 data->args.bitmask = data->res.server->cache_consistency_bitmask;
3174 data->args.offset = data->mds_offset;
3175 data->res.fattr = &data->fattr;
3176 task->tk_ops = data->mds_ops;
3177 rpc_task_reset_client(task, NFS_CLIENT(data->inode));
3178}
3179EXPORT_SYMBOL_GPL(nfs4_reset_write);
3180
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003181static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182{
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003183 struct nfs_server *server = NFS_SERVER(data->inode);
3184
Fred Isaman7ffd1062011-03-03 15:13:46 +00003185 if (data->lseg) {
3186 data->args.bitmask = NULL;
3187 data->res.fattr = NULL;
3188 } else
3189 data->args.bitmask = server->cache_consistency_bitmask;
Fred Isamanb029bc92011-03-03 15:13:42 +00003190 if (!data->write_done_cb)
3191 data->write_done_cb = nfs4_write_done_cb;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003192 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 data->timestamp = jiffies;
3194
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003195 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196}
3197
Fred Isaman5f452432011-03-23 13:27:46 +00003198static int nfs4_commit_done_cb(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 struct inode *inode = data->inode;
Trond Myklebust14516c32010-07-31 14:29:06 -04003201
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003202 if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) {
Trond Myklebust0110ee12009-12-07 09:00:24 -05003203 nfs_restart_rpc(task, NFS_SERVER(inode)->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003204 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 }
Trond Myklebust9e08a3c2007-10-08 14:10:31 -04003206 nfs_refresh_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003207 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208}
3209
Fred Isaman5f452432011-03-23 13:27:46 +00003210static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
3211{
3212 if (!nfs4_sequence_done(task, &data->res.seq_res))
3213 return -EAGAIN;
3214 return data->write_done_cb(task, data);
3215}
3216
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003217static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218{
Trond Myklebust788e7a82006-03-20 13:44:27 -05003219 struct nfs_server *server = NFS_SERVER(data->inode);
Fred Isaman988b6dc2011-03-23 13:27:52 +00003220
3221 if (data->lseg) {
3222 data->args.bitmask = NULL;
3223 data->res.fattr = NULL;
3224 } else
3225 data->args.bitmask = server->cache_consistency_bitmask;
Fred Isaman5f452432011-03-23 13:27:46 +00003226 if (!data->write_done_cb)
3227 data->write_done_cb = nfs4_commit_done_cb;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003228 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003229 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230}
3231
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003232struct nfs4_renewdata {
3233 struct nfs_client *client;
3234 unsigned long timestamp;
3235};
3236
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237/*
3238 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
3239 * standalone procedure for queueing an asynchronous RENEW.
3240 */
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003241static void nfs4_renew_release(void *calldata)
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003242{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003243 struct nfs4_renewdata *data = calldata;
3244 struct nfs_client *clp = data->client;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003245
Alexandros Batsakis0851de062010-02-05 03:45:06 -08003246 if (atomic_read(&clp->cl_count) > 1)
3247 nfs4_schedule_state_renewal(clp);
3248 nfs_put_client(clp);
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003249 kfree(data);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003250}
3251
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003252static void nfs4_renew_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003254 struct nfs4_renewdata *data = calldata;
3255 struct nfs_client *clp = data->client;
3256 unsigned long timestamp = data->timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
3258 if (task->tk_status < 0) {
Trond Myklebust95baa252009-05-26 14:51:00 -04003259 /* Unless we're shutting down, schedule state recovery! */
3260 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) != 0)
Trond Myklebust0400a6b2011-03-09 16:00:53 -05003261 nfs4_schedule_lease_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 return;
3263 }
Trond Myklebust452e9352010-07-31 14:29:06 -04003264 do_renew_lease(clp, timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265}
3266
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003267static const struct rpc_call_ops nfs4_renew_ops = {
3268 .rpc_call_done = nfs4_renew_done,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003269 .rpc_release = nfs4_renew_release,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003270};
3271
David Howellsadfa6f92006-08-22 20:06:08 -04003272int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273{
3274 struct rpc_message msg = {
3275 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3276 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003277 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 };
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003279 struct nfs4_renewdata *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
Alexandros Batsakis0851de062010-02-05 03:45:06 -08003281 if (!atomic_inc_not_zero(&clp->cl_count))
3282 return -EIO;
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003283 data = kmalloc(sizeof(*data), GFP_KERNEL);
3284 if (data == NULL)
3285 return -ENOMEM;
3286 data->client = clp;
3287 data->timestamp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003289 &nfs4_renew_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290}
3291
David Howellsadfa6f92006-08-22 20:06:08 -04003292int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293{
3294 struct rpc_message msg = {
3295 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3296 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003297 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 };
3299 unsigned long now = jiffies;
3300 int status;
3301
3302 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3303 if (status < 0)
3304 return status;
Trond Myklebust452e9352010-07-31 14:29:06 -04003305 do_renew_lease(clp, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 return 0;
3307}
3308
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003309static inline int nfs4_server_supports_acls(struct nfs_server *server)
3310{
3311 return (server->caps & NFS_CAP_ACLS)
3312 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
3313 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
3314}
3315
3316/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
3317 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
3318 * the stack.
3319 */
3320#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
3321
3322static void buf_to_pages(const void *buf, size_t buflen,
3323 struct page **pages, unsigned int *pgbase)
3324{
3325 const void *p = buf;
3326
3327 *pgbase = offset_in_page(buf);
3328 p -= *pgbase;
3329 while (p < buf + buflen) {
3330 *(pages++) = virt_to_page(p);
3331 p += PAGE_CACHE_SIZE;
3332 }
3333}
3334
Neil Hormane9e3d722011-03-04 19:26:03 -05003335static int buf_to_pages_noslab(const void *buf, size_t buflen,
3336 struct page **pages, unsigned int *pgbase)
3337{
3338 struct page *newpage, **spages;
3339 int rc = 0;
3340 size_t len;
3341 spages = pages;
3342
3343 do {
Jovi Zhang43b7c3f2011-03-02 23:19:37 +00003344 len = min_t(size_t, PAGE_CACHE_SIZE, buflen);
Neil Hormane9e3d722011-03-04 19:26:03 -05003345 newpage = alloc_page(GFP_KERNEL);
3346
3347 if (newpage == NULL)
3348 goto unwind;
3349 memcpy(page_address(newpage), buf, len);
3350 buf += len;
3351 buflen -= len;
3352 *pages++ = newpage;
3353 rc++;
3354 } while (buflen != 0);
3355
3356 return rc;
3357
3358unwind:
3359 for(; rc > 0; rc--)
3360 __free_page(spages[rc-1]);
3361 return -ENOMEM;
3362}
3363
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003364struct nfs4_cached_acl {
3365 int cached;
3366 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00003367 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003368};
3369
3370static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003371{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003372 struct nfs_inode *nfsi = NFS_I(inode);
3373
3374 spin_lock(&inode->i_lock);
3375 kfree(nfsi->nfs4_acl);
3376 nfsi->nfs4_acl = acl;
3377 spin_unlock(&inode->i_lock);
3378}
3379
3380static void nfs4_zap_acl_attr(struct inode *inode)
3381{
3382 nfs4_set_cached_acl(inode, NULL);
3383}
3384
3385static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
3386{
3387 struct nfs_inode *nfsi = NFS_I(inode);
3388 struct nfs4_cached_acl *acl;
3389 int ret = -ENOENT;
3390
3391 spin_lock(&inode->i_lock);
3392 acl = nfsi->nfs4_acl;
3393 if (acl == NULL)
3394 goto out;
3395 if (buf == NULL) /* user is just asking for length */
3396 goto out_len;
3397 if (acl->cached == 0)
3398 goto out;
3399 ret = -ERANGE; /* see getxattr(2) man page */
3400 if (acl->len > buflen)
3401 goto out;
3402 memcpy(buf, acl->data, acl->len);
3403out_len:
3404 ret = acl->len;
3405out:
3406 spin_unlock(&inode->i_lock);
3407 return ret;
3408}
3409
3410static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
3411{
3412 struct nfs4_cached_acl *acl;
3413
3414 if (buf && acl_len <= PAGE_SIZE) {
3415 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
3416 if (acl == NULL)
3417 goto out;
3418 acl->cached = 1;
3419 memcpy(acl->data, buf, acl_len);
3420 } else {
3421 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
3422 if (acl == NULL)
3423 goto out;
3424 acl->cached = 0;
3425 }
3426 acl->len = acl_len;
3427out:
3428 nfs4_set_cached_acl(inode, acl);
3429}
3430
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003431static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003432{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003433 struct page *pages[NFS4ACL_MAXPAGES];
3434 struct nfs_getaclargs args = {
3435 .fh = NFS_FH(inode),
3436 .acl_pages = pages,
3437 .acl_len = buflen,
3438 };
Benny Halevy663c79b2009-04-01 09:21:59 -04003439 struct nfs_getaclres res = {
3440 .acl_len = buflen,
3441 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003442 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003443 struct rpc_message msg = {
3444 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
3445 .rpc_argp = &args,
Benny Halevy663c79b2009-04-01 09:21:59 -04003446 .rpc_resp = &res,
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003447 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003448 struct page *localpage = NULL;
3449 int ret;
3450
3451 if (buflen < PAGE_SIZE) {
3452 /* As long as we're doing a round trip to the server anyway,
3453 * let's be prepared for a page of acl data. */
3454 localpage = alloc_page(GFP_KERNEL);
3455 resp_buf = page_address(localpage);
3456 if (localpage == NULL)
3457 return -ENOMEM;
3458 args.acl_pages[0] = localpage;
3459 args.acl_pgbase = 0;
Benny Halevy663c79b2009-04-01 09:21:59 -04003460 args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003461 } else {
3462 resp_buf = buf;
3463 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
3464 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003465 ret = nfs4_call_sync(NFS_SERVER(inode), &msg, &args, &res, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003466 if (ret)
3467 goto out_free;
Benny Halevy663c79b2009-04-01 09:21:59 -04003468 if (res.acl_len > args.acl_len)
3469 nfs4_write_cached_acl(inode, NULL, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003470 else
Benny Halevy663c79b2009-04-01 09:21:59 -04003471 nfs4_write_cached_acl(inode, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003472 if (buf) {
3473 ret = -ERANGE;
Benny Halevy663c79b2009-04-01 09:21:59 -04003474 if (res.acl_len > buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003475 goto out_free;
3476 if (localpage)
Benny Halevy663c79b2009-04-01 09:21:59 -04003477 memcpy(buf, resp_buf, res.acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003478 }
Benny Halevy663c79b2009-04-01 09:21:59 -04003479 ret = res.acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003480out_free:
3481 if (localpage)
3482 __free_page(localpage);
3483 return ret;
3484}
3485
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003486static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
3487{
3488 struct nfs4_exception exception = { };
3489 ssize_t ret;
3490 do {
3491 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
3492 if (ret >= 0)
3493 break;
3494 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
3495 } while (exception.retry);
3496 return ret;
3497}
3498
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003499static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
3500{
3501 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003502 int ret;
3503
3504 if (!nfs4_server_supports_acls(server))
3505 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003506 ret = nfs_revalidate_inode(server, inode);
3507 if (ret < 0)
3508 return ret;
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00003509 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
3510 nfs_zap_acl_cache(inode);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003511 ret = nfs4_read_cached_acl(inode, buf, buflen);
3512 if (ret != -ENOENT)
3513 return ret;
3514 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003515}
3516
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003517static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003518{
3519 struct nfs_server *server = NFS_SERVER(inode);
3520 struct page *pages[NFS4ACL_MAXPAGES];
3521 struct nfs_setaclargs arg = {
3522 .fh = NFS_FH(inode),
3523 .acl_pages = pages,
3524 .acl_len = buflen,
3525 };
Benny Halevy73c403a2009-04-01 09:22:01 -04003526 struct nfs_setaclres res;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003527 struct rpc_message msg = {
3528 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
3529 .rpc_argp = &arg,
Benny Halevy73c403a2009-04-01 09:22:01 -04003530 .rpc_resp = &res,
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003531 };
Neil Hormane9e3d722011-03-04 19:26:03 -05003532 int ret, i;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003533
3534 if (!nfs4_server_supports_acls(server))
3535 return -EOPNOTSUPP;
Neil Hormane9e3d722011-03-04 19:26:03 -05003536 i = buf_to_pages_noslab(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
3537 if (i < 0)
3538 return i;
Trond Myklebust642ac542005-10-18 14:20:19 -07003539 nfs_inode_return_delegation(inode);
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003540 ret = nfs4_call_sync(server, &msg, &arg, &res, 1);
Neil Hormane9e3d722011-03-04 19:26:03 -05003541
3542 /*
3543 * Free each page after tx, so the only ref left is
3544 * held by the network stack
3545 */
3546 for (; i > 0; i--)
3547 put_page(pages[i-1]);
3548
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00003549 /*
3550 * Acl update can result in inode attribute update.
3551 * so mark the attribute cache invalid.
3552 */
3553 spin_lock(&inode->i_lock);
3554 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR;
3555 spin_unlock(&inode->i_lock);
Trond Myklebustf41f7412008-06-11 17:39:04 -04003556 nfs_access_zap_cache(inode);
3557 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003558 return ret;
3559}
3560
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003561static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
3562{
3563 struct nfs4_exception exception = { };
3564 int err;
3565 do {
3566 err = nfs4_handle_exception(NFS_SERVER(inode),
3567 __nfs4_proc_set_acl(inode, buf, buflen),
3568 &exception);
3569 } while (exception.retry);
3570 return err;
3571}
3572
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573static int
Trond Myklebustaa5190d2010-06-16 09:52:25 -04003574nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575{
Trond Myklebustaa5190d2010-06-16 09:52:25 -04003576 struct nfs_client *clp = server->nfs_client;
3577
3578 if (task->tk_status >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 return 0;
3580 switch(task->tk_status) {
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003581 case -NFS4ERR_ADMIN_REVOKED:
3582 case -NFS4ERR_BAD_STATEID:
3583 case -NFS4ERR_OPENMODE:
3584 if (state == NULL)
3585 break;
Trond Myklebust0400a6b2011-03-09 16:00:53 -05003586 nfs4_schedule_stateid_recovery(server, state);
3587 goto wait_on_recovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003589 case -NFS4ERR_STALE_CLIENTID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 case -NFS4ERR_EXPIRED:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05003591 nfs4_schedule_lease_recovery(clp);
3592 goto wait_on_recovery;
Andy Adamson4745e312009-04-01 09:22:42 -04003593#if defined(CONFIG_NFS_V4_1)
3594 case -NFS4ERR_BADSESSION:
3595 case -NFS4ERR_BADSLOT:
3596 case -NFS4ERR_BAD_HIGH_SLOT:
3597 case -NFS4ERR_DEADSESSION:
3598 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
3599 case -NFS4ERR_SEQ_FALSE_RETRY:
3600 case -NFS4ERR_SEQ_MISORDERED:
3601 dprintk("%s ERROR %d, Reset session\n", __func__,
3602 task->tk_status);
Trond Myklebust0400a6b2011-03-09 16:00:53 -05003603 nfs4_schedule_session_recovery(clp->cl_session);
Andy Adamson4745e312009-04-01 09:22:42 -04003604 task->tk_status = 0;
3605 return -EAGAIN;
3606#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04003608 nfs_inc_server_stats(server, NFSIOS_DELAY);
Chuck Lever006ea732006-03-20 13:44:14 -05003609 case -NFS4ERR_GRACE:
Jeff Layton2c643482010-01-07 09:42:03 -05003610 case -EKEYEXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 rpc_delay(task, NFS4_POLL_RETRY_MAX);
3612 task->tk_status = 0;
3613 return -EAGAIN;
3614 case -NFS4ERR_OLD_STATEID:
3615 task->tk_status = 0;
3616 return -EAGAIN;
3617 }
3618 task->tk_status = nfs4_map_errors(task->tk_status);
3619 return 0;
Trond Myklebust0400a6b2011-03-09 16:00:53 -05003620wait_on_recovery:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003621 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003622 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
3623 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
3624 task->tk_status = 0;
3625 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626}
3627
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003628int nfs4_proc_setclientid(struct nfs_client *clp, u32 program,
3629 unsigned short port, struct rpc_cred *cred,
3630 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631{
3632 nfs4_verifier sc_verifier;
3633 struct nfs4_setclientid setclientid = {
3634 .sc_verifier = &sc_verifier,
3635 .sc_prog = program,
Andy Adamsonf4eecd52011-01-06 02:04:30 +00003636 .sc_cb_ident = clp->cl_cb_ident,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 };
3638 struct rpc_message msg = {
3639 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
3640 .rpc_argp = &setclientid,
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003641 .rpc_resp = res,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003642 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 };
Al Virobc4785c2006-10-19 23:28:51 -07003644 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 int loop = 0;
3646 int status;
3647
Al Virobc4785c2006-10-19 23:28:51 -07003648 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
3650 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
3651
3652 for(;;) {
3653 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05003654 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05003655 clp->cl_ipaddr,
3656 rpc_peeraddr2str(clp->cl_rpcclient,
3657 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05003658 rpc_peeraddr2str(clp->cl_rpcclient,
3659 RPC_DISPLAY_PROTO),
Trond Myklebust78ea3232008-04-07 20:49:28 -04003660 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 clp->cl_id_uniquifier);
3662 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003663 sizeof(setclientid.sc_netid),
3664 rpc_peeraddr2str(clp->cl_rpcclient,
3665 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05003667 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 clp->cl_ipaddr, port >> 8, port & 255);
3669
3670 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3671 if (status != -NFS4ERR_CLID_INUSE)
3672 break;
3673 if (signalled())
3674 break;
3675 if (loop++ & 1)
J. Bruce Fields611c96c2010-12-13 19:05:46 -05003676 ssleep(clp->cl_lease_time / HZ + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 else
3678 if (++clp->cl_id_uniquifier == 0)
3679 break;
3680 }
3681 return status;
3682}
3683
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003684static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp,
3685 struct nfs4_setclientid_res *arg,
3686 struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687{
3688 struct nfs_fsinfo fsinfo;
3689 struct rpc_message msg = {
3690 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003691 .rpc_argp = arg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01003693 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 };
3695 unsigned long now;
3696 int status;
3697
3698 now = jiffies;
3699 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3700 if (status == 0) {
3701 spin_lock(&clp->cl_lock);
3702 clp->cl_lease_time = fsinfo.lease_time * HZ;
3703 clp->cl_last_renewal = now;
3704 spin_unlock(&clp->cl_lock);
3705 }
3706 return status;
3707}
3708
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003709int nfs4_proc_setclientid_confirm(struct nfs_client *clp,
3710 struct nfs4_setclientid_res *arg,
3711 struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05003712{
Benny Halevy77e03672008-06-24 20:25:57 +03003713 long timeout = 0;
Trond Myklebust51581f32006-03-20 13:44:47 -05003714 int err;
3715 do {
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04003716 err = _nfs4_proc_setclientid_confirm(clp, arg, cred);
Trond Myklebust51581f32006-03-20 13:44:47 -05003717 switch (err) {
3718 case 0:
3719 return err;
3720 case -NFS4ERR_RESOURCE:
3721 /* The IBM lawyers misread another document! */
3722 case -NFS4ERR_DELAY:
3723 err = nfs4_delay(clp->cl_rpcclient, &timeout);
3724 }
3725 } while (err == 0);
3726 return err;
3727}
3728
Trond Myklebustfe650402006-01-03 09:55:18 +01003729struct nfs4_delegreturndata {
3730 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003731 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01003732 struct nfs_fh fh;
3733 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003734 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003735 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01003736 int rpc_status;
3737};
3738
Trond Myklebustfe650402006-01-03 09:55:18 +01003739static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
3740{
3741 struct nfs4_delegreturndata *data = calldata;
Andy Adamson938e1012009-04-01 09:22:28 -04003742
Trond Myklebust14516c32010-07-31 14:29:06 -04003743 if (!nfs4_sequence_done(task, &data->res.seq_res))
3744 return;
Andy Adamson938e1012009-04-01 09:22:28 -04003745
Ricardo Labiaga79708862009-12-07 09:23:21 -05003746 switch (task->tk_status) {
3747 case -NFS4ERR_STALE_STATEID:
3748 case -NFS4ERR_EXPIRED:
3749 case 0:
Trond Myklebustfa178f22006-01-03 09:55:38 +01003750 renew_lease(data->res.server, data->timestamp);
Ricardo Labiaga79708862009-12-07 09:23:21 -05003751 break;
3752 default:
3753 if (nfs4_async_handle_error(task, data->res.server, NULL) ==
3754 -EAGAIN) {
3755 nfs_restart_rpc(task, data->res.server->nfs_client);
3756 return;
3757 }
3758 }
3759 data->rpc_status = task->tk_status;
Trond Myklebustfe650402006-01-03 09:55:18 +01003760}
3761
3762static void nfs4_delegreturn_release(void *calldata)
3763{
Trond Myklebustfe650402006-01-03 09:55:18 +01003764 kfree(calldata);
3765}
3766
Andy Adamson938e1012009-04-01 09:22:28 -04003767#if defined(CONFIG_NFS_V4_1)
3768static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
3769{
3770 struct nfs4_delegreturndata *d_data;
3771
3772 d_data = (struct nfs4_delegreturndata *)data;
3773
Trond Myklebust035168a2010-06-16 09:52:26 -04003774 if (nfs4_setup_sequence(d_data->res.server,
Andy Adamson938e1012009-04-01 09:22:28 -04003775 &d_data->args.seq_args,
3776 &d_data->res.seq_res, 1, task))
3777 return;
3778 rpc_call_start(task);
3779}
3780#endif /* CONFIG_NFS_V4_1 */
3781
Jesper Juhlc8d149f2006-03-20 13:44:07 -05003782static const struct rpc_call_ops nfs4_delegreturn_ops = {
Andy Adamson938e1012009-04-01 09:22:28 -04003783#if defined(CONFIG_NFS_V4_1)
3784 .rpc_call_prepare = nfs4_delegreturn_prepare,
3785#endif /* CONFIG_NFS_V4_1 */
Trond Myklebustfe650402006-01-03 09:55:18 +01003786 .rpc_call_done = nfs4_delegreturn_done,
3787 .rpc_release = nfs4_delegreturn_release,
3788};
3789
Trond Myklebuste6f81072008-01-24 18:14:34 -05003790static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01003791{
3792 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003793 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01003794 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003795 struct rpc_message msg = {
3796 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
3797 .rpc_cred = cred,
3798 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04003799 struct rpc_task_setup task_setup_data = {
3800 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04003801 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04003802 .callback_ops = &nfs4_delegreturn_ops,
3803 .flags = RPC_TASK_ASYNC,
3804 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05003805 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01003806
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003807 data = kzalloc(sizeof(*data), GFP_NOFS);
Trond Myklebustfe650402006-01-03 09:55:18 +01003808 if (data == NULL)
3809 return -ENOMEM;
3810 data->args.fhandle = &data->fh;
3811 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003812 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01003813 nfs_copy_fh(&data->fh, NFS_FH(inode));
3814 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01003815 data->res.fattr = &data->fattr;
3816 data->res.server = server;
Trond Myklebust5138fde2007-07-14 15:40:01 -04003817 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003818 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01003819 data->rpc_status = 0;
3820
Trond Myklebustc970aa82007-07-14 15:39:59 -04003821 task_setup_data.callback_data = data;
Trond Myklebust1174dd12010-12-21 10:52:24 -05003822 msg.rpc_argp = &data->args;
3823 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04003824 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003825 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003826 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003827 if (!issync)
3828 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01003829 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05003830 if (status != 0)
3831 goto out;
3832 status = data->rpc_status;
3833 if (status != 0)
3834 goto out;
3835 nfs_refresh_inode(inode, &data->fattr);
3836out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003837 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003838 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839}
3840
Trond Myklebuste6f81072008-01-24 18:14:34 -05003841int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842{
3843 struct nfs_server *server = NFS_SERVER(inode);
3844 struct nfs4_exception exception = { };
3845 int err;
3846 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05003847 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 switch (err) {
3849 case -NFS4ERR_STALE_STATEID:
3850 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 case 0:
3852 return 0;
3853 }
3854 err = nfs4_handle_exception(server, err, &exception);
3855 } while (exception.retry);
3856 return err;
3857}
3858
3859#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3860#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3861
3862/*
3863 * sleep, with exponential backoff, and retry the LOCK operation.
3864 */
3865static unsigned long
3866nfs4_set_lock_task_retry(unsigned long timeout)
3867{
Matthew Wilcox150030b2007-12-06 16:24:39 -05003868 schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 timeout <<= 1;
3870 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3871 return NFS4_LOCK_MAXTIMEOUT;
3872 return timeout;
3873}
3874
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3876{
3877 struct inode *inode = state->inode;
3878 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003879 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003880 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003882 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003884 struct nfs_lockt_res res = {
3885 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 };
3887 struct rpc_message msg = {
3888 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3889 .rpc_argp = &arg,
3890 .rpc_resp = &res,
3891 .rpc_cred = state->owner->so_cred,
3892 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 struct nfs4_lock_state *lsp;
3894 int status;
3895
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003896 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003897 status = nfs4_set_lock_state(state, request);
3898 if (status != 0)
3899 goto out;
3900 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003901 arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustd035c362010-12-21 10:45:27 -05003902 arg.lock_owner.s_dev = server->s_dev;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04003903 status = nfs4_call_sync(server, &msg, &arg, &res, 1);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003904 switch (status) {
3905 case 0:
3906 request->fl_type = F_UNLCK;
3907 break;
3908 case -NFS4ERR_DENIED:
3909 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003911 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003912out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 return status;
3914}
3915
3916static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3917{
3918 struct nfs4_exception exception = { };
3919 int err;
3920
3921 do {
3922 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3923 _nfs4_proc_getlk(state, cmd, request),
3924 &exception);
3925 } while (exception.retry);
3926 return err;
3927}
3928
3929static int do_vfs_lock(struct file *file, struct file_lock *fl)
3930{
3931 int res = 0;
3932 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3933 case FL_POSIX:
3934 res = posix_lock_file_wait(file, fl);
3935 break;
3936 case FL_FLOCK:
3937 res = flock_lock_file_wait(file, fl);
3938 break;
3939 default:
3940 BUG();
3941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 return res;
3943}
3944
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003945struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003946 struct nfs_locku_args arg;
3947 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003948 struct nfs4_lock_state *lsp;
3949 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003950 struct file_lock fl;
3951 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003952 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003953};
3954
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003955static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3956 struct nfs_open_context *ctx,
3957 struct nfs4_lock_state *lsp,
3958 struct nfs_seqid *seqid)
3959{
3960 struct nfs4_unlockdata *p;
3961 struct inode *inode = lsp->ls_state->inode;
3962
Trond Myklebust8535b2b2010-05-13 12:51:01 -04003963 p = kzalloc(sizeof(*p), GFP_NOFS);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003964 if (p == NULL)
3965 return NULL;
3966 p->arg.fh = NFS_FH(inode);
3967 p->arg.fl = &p->fl;
3968 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04003969 p->res.seqid = seqid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003970 p->arg.stateid = &lsp->ls_stateid;
3971 p->lsp = lsp;
3972 atomic_inc(&lsp->ls_count);
3973 /* Ensure we don't close file until we're done freeing locks! */
3974 p->ctx = get_nfs_open_context(ctx);
3975 memcpy(&p->fl, fl, sizeof(p->fl));
3976 p->server = NFS_SERVER(inode);
3977 return p;
3978}
3979
Trond Myklebust06f814a2006-01-03 09:55:07 +01003980static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003981{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003982 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003983 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003984 nfs4_put_lock_state(calldata->lsp);
3985 put_nfs_open_context(calldata->ctx);
3986 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003987}
3988
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003989static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003990{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003991 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003992
Trond Myklebust14516c32010-07-31 14:29:06 -04003993 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
3994 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003995 switch (task->tk_status) {
3996 case 0:
3997 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003998 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003999 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01004000 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004001 break;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05004002 case -NFS4ERR_BAD_STATEID:
4003 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004004 case -NFS4ERR_STALE_STATEID:
4005 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004006 break;
4007 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05004008 if (nfs4_async_handle_error(task, calldata->server, NULL) == -EAGAIN)
Trond Myklebust0110ee12009-12-07 09:00:24 -05004009 nfs_restart_rpc(task,
Trond Myklebustd61e6122009-12-05 19:32:19 -05004010 calldata->server->nfs_client);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004011 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004012}
4013
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01004014static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004015{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01004016 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004018 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004019 return;
4020 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004021 /* Note: exit _without_ running nfs4_locku_done */
4022 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004023 return;
4024 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01004025 calldata->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04004026 if (nfs4_setup_sequence(calldata->server,
Andy Adamsona8936932009-04-01 09:22:23 -04004027 &calldata->arg.seq_args,
4028 &calldata->res.seq_res, 1, task))
4029 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004030 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031}
4032
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004033static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01004034 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004035 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01004036 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004037};
4038
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004039static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
4040 struct nfs_open_context *ctx,
4041 struct nfs4_lock_state *lsp,
4042 struct nfs_seqid *seqid)
4043{
4044 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004045 struct rpc_message msg = {
4046 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
4047 .rpc_cred = ctx->cred,
4048 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04004049 struct rpc_task_setup task_setup_data = {
4050 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04004051 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004052 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05004053 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004054 .flags = RPC_TASK_ASYNC,
4055 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004056
Frank Filz137d6ac2007-07-09 15:32:29 -07004057 /* Ensure this is an unlock - when canceling a lock, the
4058 * canceled lock is passed in, and it won't be an unlock.
4059 */
4060 fl->fl_type = F_UNLCK;
4061
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004062 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
4063 if (data == NULL) {
4064 nfs_free_seqid(seqid);
4065 return ERR_PTR(-ENOMEM);
4066 }
4067
Trond Myklebust1174dd12010-12-21 10:52:24 -05004068 msg.rpc_argp = &data->arg;
4069 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04004070 task_setup_data.callback_data = data;
4071 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004072}
4073
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
4075{
Trond Myklebust19e03c52008-12-23 15:21:44 -05004076 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004077 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004078 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01004079 struct rpc_task *task;
4080 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04004081 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082
Trond Myklebust9b073572006-06-29 16:38:34 -04004083 status = nfs4_set_lock_state(state, request);
4084 /* Unlock _before_ we do the RPC call */
4085 request->fl_flags |= FL_EXISTS;
Trond Myklebust19e03c52008-12-23 15:21:44 -05004086 down_read(&nfsi->rwsem);
4087 if (do_vfs_lock(request->fl_file, request) == -ENOENT) {
4088 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04004089 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05004090 }
4091 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04004092 if (status != 0)
4093 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004094 /* Is this a delegated lock? */
4095 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04004096 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004097 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004098 seqid = nfs_alloc_seqid(&lsp->ls_seqid, GFP_KERNEL);
Trond Myklebust9b073572006-06-29 16:38:34 -04004099 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004100 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04004101 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004102 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004103 status = PTR_ERR(task);
4104 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04004105 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004106 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05004107 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04004108out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04004109 request->fl_flags = fl_flags;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004110 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111}
4112
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004113struct nfs4_lockdata {
4114 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004115 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004116 struct nfs4_lock_state *lsp;
4117 struct nfs_open_context *ctx;
4118 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01004119 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004120 int rpc_status;
4121 int cancelled;
Andy Adamson66179ef2009-04-01 09:22:22 -04004122 struct nfs_server *server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004123};
4124
4125static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004126 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp,
4127 gfp_t gfp_mask)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004128{
4129 struct nfs4_lockdata *p;
4130 struct inode *inode = lsp->ls_state->inode;
4131 struct nfs_server *server = NFS_SERVER(inode);
4132
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004133 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004134 if (p == NULL)
4135 return NULL;
4136
4137 p->arg.fh = NFS_FH(inode);
4138 p->arg.fl = &p->fl;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004139 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004140 if (p->arg.open_seqid == NULL)
4141 goto out_free;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004142 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid, gfp_mask);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004143 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004144 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004145 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04004146 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04004147 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebustd035c362010-12-21 10:45:27 -05004148 p->arg.lock_owner.s_dev = server->s_dev;
Trond Myklebustc1d51932008-04-07 13:20:54 -04004149 p->res.lock_seqid = p->arg.lock_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004150 p->lsp = lsp;
Andy Adamson66179ef2009-04-01 09:22:22 -04004151 p->server = server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004152 atomic_inc(&lsp->ls_count);
4153 p->ctx = get_nfs_open_context(ctx);
4154 memcpy(&p->fl, fl, sizeof(p->fl));
4155 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004156out_free_seqid:
4157 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004158out_free:
4159 kfree(p);
4160 return NULL;
4161}
4162
4163static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
4164{
4165 struct nfs4_lockdata *data = calldata;
4166 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
Harvey Harrison3110ff82008-05-02 13:42:44 -07004168 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004169 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
4170 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004171 /* Do we need to do an open_to_lock_owner? */
4172 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05004173 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
4174 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004175 data->arg.open_stateid = &state->stateid;
4176 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04004177 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004178 } else
4179 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01004180 data->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04004181 if (nfs4_setup_sequence(data->server,
4182 &data->arg.seq_args,
Andy Adamson66179ef2009-04-01 09:22:22 -04004183 &data->res.seq_res, 1, task))
4184 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004185 rpc_call_start(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004186 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004187}
4188
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004189static void nfs4_recover_lock_prepare(struct rpc_task *task, void *calldata)
4190{
4191 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
4192 nfs4_lock_prepare(task, calldata);
4193}
4194
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004195static void nfs4_lock_done(struct rpc_task *task, void *calldata)
4196{
4197 struct nfs4_lockdata *data = calldata;
4198
Harvey Harrison3110ff82008-05-02 13:42:44 -07004199 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004200
Trond Myklebust14516c32010-07-31 14:29:06 -04004201 if (!nfs4_sequence_done(task, &data->res.seq_res))
4202 return;
Andy Adamson66179ef2009-04-01 09:22:22 -04004203
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004204 data->rpc_status = task->tk_status;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004205 if (data->arg.new_lock_owner != 0) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004206 if (data->rpc_status == 0)
4207 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
4208 else
4209 goto out;
4210 }
4211 if (data->rpc_status == 0) {
4212 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
4213 sizeof(data->lsp->ls_stateid.data));
4214 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04004215 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004216 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004217out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004218 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004219}
4220
4221static void nfs4_lock_release(void *calldata)
4222{
4223 struct nfs4_lockdata *data = calldata;
4224
Harvey Harrison3110ff82008-05-02 13:42:44 -07004225 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004226 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004227 if (data->cancelled != 0) {
4228 struct rpc_task *task;
4229 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
4230 data->arg.lock_seqid);
4231 if (!IS_ERR(task))
Trond Myklebustbf294b42011-02-21 11:05:41 -08004232 rpc_put_task_async(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004233 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004234 } else
4235 nfs_free_seqid(data->arg.lock_seqid);
4236 nfs4_put_lock_state(data->lsp);
4237 put_nfs_open_context(data->ctx);
4238 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004239 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004240}
4241
4242static const struct rpc_call_ops nfs4_lock_ops = {
4243 .rpc_call_prepare = nfs4_lock_prepare,
4244 .rpc_call_done = nfs4_lock_done,
4245 .rpc_release = nfs4_lock_release,
4246};
4247
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004248static const struct rpc_call_ops nfs4_recover_lock_ops = {
4249 .rpc_call_prepare = nfs4_recover_lock_prepare,
4250 .rpc_call_done = nfs4_lock_done,
4251 .rpc_release = nfs4_lock_release,
4252};
4253
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004254static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error)
4255{
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004256 switch (error) {
4257 case -NFS4ERR_ADMIN_REVOKED:
4258 case -NFS4ERR_BAD_STATEID:
Trond Myklebustecac7992011-03-09 16:00:56 -05004259 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004260 if (new_lock_owner != 0 ||
4261 (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0)
Trond Myklebustecac7992011-03-09 16:00:56 -05004262 nfs4_schedule_stateid_recovery(server, lsp->ls_state);
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05004263 break;
4264 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05004265 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebustecac7992011-03-09 16:00:56 -05004266 case -NFS4ERR_EXPIRED:
4267 nfs4_schedule_lease_recovery(server->nfs_client);
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004268 };
4269}
4270
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004271static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004272{
4273 struct nfs4_lockdata *data;
4274 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004275 struct rpc_message msg = {
4276 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
4277 .rpc_cred = state->owner->so_cred,
4278 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04004279 struct rpc_task_setup task_setup_data = {
4280 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04004281 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004282 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05004283 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004284 .flags = RPC_TASK_ASYNC,
4285 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004286 int ret;
4287
Harvey Harrison3110ff82008-05-02 13:42:44 -07004288 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004289 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004290 fl->fl_u.nfs4_fl.owner,
4291 recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004292 if (data == NULL)
4293 return -ENOMEM;
4294 if (IS_SETLKW(cmd))
4295 data->arg.block = 1;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004296 if (recovery_type > NFS_LOCK_NEW) {
4297 if (recovery_type == NFS_LOCK_RECLAIM)
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004298 data->arg.reclaim = NFS_LOCK_RECLAIM;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004299 task_setup_data.callback_ops = &nfs4_recover_lock_ops;
4300 }
Trond Myklebust1174dd12010-12-21 10:52:24 -05004301 msg.rpc_argp = &data->arg;
4302 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04004303 task_setup_data.callback_data = data;
4304 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05004305 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004306 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004307 ret = nfs4_wait_for_completion_rpc_task(task);
4308 if (ret == 0) {
4309 ret = data->rpc_status;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004310 if (ret)
4311 nfs4_handle_setlk_error(data->server, data->lsp,
4312 data->arg.new_lock_owner, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004313 } else
4314 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05004315 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004316 dprintk("%s: done, ret = %d!\n", __func__, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004317 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318}
4319
4320static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
4321{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004322 struct nfs_server *server = NFS_SERVER(state->inode);
4323 struct nfs4_exception exception = { };
4324 int err;
4325
4326 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004327 /* Cache the lock if possible... */
4328 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4329 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004330 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM);
Trond Myklebust168667c2010-10-19 19:47:49 -04004331 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00004332 break;
4333 nfs4_handle_exception(server, err, &exception);
4334 } while (exception.retry);
4335 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336}
4337
4338static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
4339{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004340 struct nfs_server *server = NFS_SERVER(state->inode);
4341 struct nfs4_exception exception = { };
4342 int err;
4343
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004344 err = nfs4_set_lock_state(state, request);
4345 if (err != 0)
4346 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004347 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004348 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4349 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004350 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05004351 switch (err) {
4352 default:
4353 goto out;
4354 case -NFS4ERR_GRACE:
4355 case -NFS4ERR_DELAY:
4356 nfs4_handle_exception(server, err, &exception);
4357 err = 0;
4358 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00004359 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05004360out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00004361 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362}
4363
4364static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4365{
Trond Myklebust19e03c52008-12-23 15:21:44 -05004366 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004367 unsigned char fl_flags = request->fl_flags;
Trond Myklebust8e469eb2010-01-26 15:42:30 -05004368 int status = -ENOLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369
Trond Myklebust8e469eb2010-01-26 15:42:30 -05004370 if ((fl_flags & FL_POSIX) &&
4371 !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags))
4372 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004373 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004374 status = nfs4_set_lock_state(state, request);
4375 if (status != 0)
4376 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004377 request->fl_flags |= FL_ACCESS;
4378 status = do_vfs_lock(request->fl_file, request);
4379 if (status < 0)
4380 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05004381 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004382 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04004383 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004384 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05004385 request->fl_flags = fl_flags & ~FL_SLEEP;
4386 status = do_vfs_lock(request->fl_file, request);
4387 goto out_unlock;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004388 }
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004389 status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW);
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004390 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04004391 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004392 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004393 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004394 if (do_vfs_lock(request->fl_file, request) < 0)
Harvey Harrison3110ff82008-05-02 13:42:44 -07004395 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __func__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004396out_unlock:
Trond Myklebust19e03c52008-12-23 15:21:44 -05004397 up_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004398out:
4399 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 return status;
4401}
4402
4403static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4404{
4405 struct nfs4_exception exception = { };
4406 int err;
4407
4408 do {
Trond Myklebust965b5d62009-06-17 13:22:59 -07004409 err = _nfs4_proc_setlk(state, cmd, request);
4410 if (err == -NFS4ERR_DENIED)
4411 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 err = nfs4_handle_exception(NFS_SERVER(state->inode),
Trond Myklebust965b5d62009-06-17 13:22:59 -07004413 err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 } while (exception.retry);
4415 return err;
4416}
4417
4418static int
4419nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
4420{
4421 struct nfs_open_context *ctx;
4422 struct nfs4_state *state;
4423 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
4424 int status;
4425
4426 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004427 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 state = ctx->state;
4429
4430 if (request->fl_start < 0 || request->fl_end < 0)
4431 return -EINVAL;
4432
Trond Myklebustd9531262009-07-21 19:22:38 -04004433 if (IS_GETLK(cmd)) {
4434 if (state != NULL)
4435 return nfs4_proc_getlk(state, F_GETLK, request);
4436 return 0;
4437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438
4439 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
4440 return -EINVAL;
4441
Trond Myklebustd9531262009-07-21 19:22:38 -04004442 if (request->fl_type == F_UNLCK) {
4443 if (state != NULL)
4444 return nfs4_proc_unlck(state, cmd, request);
4445 return 0;
4446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447
Trond Myklebustd9531262009-07-21 19:22:38 -04004448 if (state == NULL)
4449 return -ENOLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450 do {
4451 status = nfs4_proc_setlk(state, cmd, request);
4452 if ((status != -EAGAIN) || IS_SETLK(cmd))
4453 break;
4454 timeout = nfs4_set_lock_task_retry(timeout);
4455 status = -ERESTARTSYS;
4456 if (signalled())
4457 break;
4458 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459 return status;
4460}
4461
Trond Myklebust888e6942005-11-04 15:38:11 -05004462int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
4463{
4464 struct nfs_server *server = NFS_SERVER(state->inode);
4465 struct nfs4_exception exception = { };
4466 int err;
4467
4468 err = nfs4_set_lock_state(state, fl);
4469 if (err != 0)
4470 goto out;
4471 do {
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004472 err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW);
Trond Myklebustd5122202009-06-17 13:22:58 -07004473 switch (err) {
4474 default:
4475 printk(KERN_ERR "%s: unhandled error %d.\n",
4476 __func__, err);
4477 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004478 case -ESTALE:
Trond Myklebustd5122202009-06-17 13:22:58 -07004479 goto out;
4480 case -NFS4ERR_EXPIRED:
4481 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004482 case -NFS4ERR_STALE_STATEID:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05004483 nfs4_schedule_lease_recovery(server->nfs_client);
4484 goto out;
Ricardo Labiaga74e7bb72009-12-07 09:48:30 -05004485 case -NFS4ERR_BADSESSION:
4486 case -NFS4ERR_BADSLOT:
4487 case -NFS4ERR_BAD_HIGH_SLOT:
4488 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
4489 case -NFS4ERR_DEADSESSION:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05004490 nfs4_schedule_session_recovery(server->nfs_client->cl_session);
Trond Myklebustd5122202009-06-17 13:22:58 -07004491 goto out;
Trond Myklebust965b5d62009-06-17 13:22:59 -07004492 case -ERESTARTSYS:
4493 /*
4494 * The show must go on: exit, but mark the
4495 * stateid as needing recovery.
4496 */
4497 case -NFS4ERR_ADMIN_REVOKED:
4498 case -NFS4ERR_BAD_STATEID:
4499 case -NFS4ERR_OPENMODE:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05004500 nfs4_schedule_stateid_recovery(server, state);
Trond Myklebust965b5d62009-06-17 13:22:59 -07004501 err = 0;
4502 goto out;
Trond Myklebust168667c2010-10-19 19:47:49 -04004503 case -EKEYEXPIRED:
4504 /*
4505 * User RPCSEC_GSS context has expired.
4506 * We cannot recover this stateid now, so
4507 * skip it and allow recovery thread to
4508 * proceed.
4509 */
4510 err = 0;
4511 goto out;
Trond Myklebust965b5d62009-06-17 13:22:59 -07004512 case -ENOMEM:
4513 case -NFS4ERR_DENIED:
4514 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
4515 err = 0;
4516 goto out;
Trond Myklebustd5122202009-06-17 13:22:58 -07004517 case -NFS4ERR_DELAY:
4518 break;
4519 }
Trond Myklebust888e6942005-11-04 15:38:11 -05004520 err = nfs4_handle_exception(server, err, &exception);
4521 } while (exception.retry);
4522out:
4523 return err;
4524}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004525
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004526static void nfs4_release_lockowner_release(void *calldata)
4527{
4528 kfree(calldata);
4529}
4530
4531const struct rpc_call_ops nfs4_release_lockowner_ops = {
4532 .rpc_release = nfs4_release_lockowner_release,
4533};
4534
4535void nfs4_release_lockowner(const struct nfs4_lock_state *lsp)
4536{
4537 struct nfs_server *server = lsp->ls_state->owner->so_server;
4538 struct nfs_release_lockowner_args *args;
4539 struct rpc_message msg = {
4540 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER],
4541 };
4542
4543 if (server->nfs_client->cl_mvops->minor_version != 0)
4544 return;
4545 args = kmalloc(sizeof(*args), GFP_NOFS);
4546 if (!args)
4547 return;
4548 args->lock_owner.clientid = server->nfs_client->cl_clientid;
4549 args->lock_owner.id = lsp->ls_id.id;
Trond Myklebustd035c362010-12-21 10:45:27 -05004550 args->lock_owner.s_dev = server->s_dev;
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004551 msg.rpc_argp = args;
4552 rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, args);
4553}
4554
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004555#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
4556
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004557static int nfs4_xattr_set_nfs4_acl(struct dentry *dentry, const char *key,
4558 const void *buf, size_t buflen,
4559 int flags, int type)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004560{
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004561 if (strcmp(key, "") != 0)
4562 return -EINVAL;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00004563
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004564 return nfs4_proc_set_acl(dentry->d_inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004565}
4566
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004567static int nfs4_xattr_get_nfs4_acl(struct dentry *dentry, const char *key,
4568 void *buf, size_t buflen, int type)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004569{
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004570 if (strcmp(key, "") != 0)
4571 return -EINVAL;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004572
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004573 return nfs4_proc_get_acl(dentry->d_inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004574}
4575
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004576static size_t nfs4_xattr_list_nfs4_acl(struct dentry *dentry, char *list,
4577 size_t list_len, const char *name,
4578 size_t name_len, int type)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004579{
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004580 size_t len = sizeof(XATTR_NAME_NFSV4_ACL);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004581
J. Bruce Fields096455a2006-03-20 23:23:42 -05004582 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
4583 return 0;
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004584
4585 if (list && len <= list_len)
4586 memcpy(list, XATTR_NAME_NFSV4_ACL, len);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004587 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004588}
4589
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004590static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
4591{
4592 if (!((fattr->valid & NFS_ATTR_FATTR_FILEID) &&
4593 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
4594 (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)))
4595 return;
4596
4597 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
4598 NFS_ATTR_FATTR_NLINK;
4599 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
4600 fattr->nlink = 2;
4601}
4602
Trond Myklebust56659e92007-07-17 21:52:39 -04004603int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04004604 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04004605{
4606 struct nfs_server *server = NFS_SERVER(dir);
4607 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04004608 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
4609 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004610 };
4611 struct nfs4_fs_locations_arg args = {
4612 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05004613 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004614 .page = page,
4615 .bitmask = bitmask,
4616 };
Benny Halevy22958462009-04-01 09:22:02 -04004617 struct nfs4_fs_locations_res res = {
4618 .fs_locations = fs_locations,
4619 };
Trond Myklebust683b57b2006-06-09 09:34:22 -04004620 struct rpc_message msg = {
4621 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
4622 .rpc_argp = &args,
Benny Halevy22958462009-04-01 09:22:02 -04004623 .rpc_resp = &res,
Trond Myklebust683b57b2006-06-09 09:34:22 -04004624 };
4625 int status;
4626
Harvey Harrison3110ff82008-05-02 13:42:44 -07004627 dprintk("%s: start\n", __func__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05004628 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004629 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04004630 fs_locations->nlocations = 0;
Andy Adamsoncccef3b2009-04-01 09:22:03 -04004631 status = nfs4_call_sync(server, &msg, &args, &res, 0);
Trond Myklebust69aaaae2009-03-11 14:10:28 -04004632 nfs_fixup_referral_attributes(&fs_locations->fattr);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004633 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04004634 return status;
4635}
4636
Andy Adamson557134a2009-04-01 09:21:53 -04004637#ifdef CONFIG_NFS_V4_1
Benny Halevy99fe60d2009-04-01 09:22:29 -04004638/*
Andy Adamson357f54d2010-12-14 10:11:57 -05004639 * Check the exchange flags returned by the server for invalid flags, having
4640 * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or
4641 * DS flags set.
4642 */
4643static int nfs4_check_cl_exchange_flags(u32 flags)
4644{
4645 if (flags & ~EXCHGID4_FLAG_MASK_R)
4646 goto out_inval;
4647 if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) &&
4648 (flags & EXCHGID4_FLAG_USE_NON_PNFS))
4649 goto out_inval;
4650 if (!(flags & (EXCHGID4_FLAG_MASK_PNFS)))
4651 goto out_inval;
4652 return NFS_OK;
4653out_inval:
4654 return -NFS4ERR_INVAL;
4655}
4656
4657/*
Benny Halevy99fe60d2009-04-01 09:22:29 -04004658 * nfs4_proc_exchange_id()
4659 *
4660 * Since the clientid has expired, all compounds using sessions
4661 * associated with the stale clientid will be returning
4662 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
4663 * be in some phase of session reset.
4664 */
Andy Adamson4d643d12009-12-04 15:52:24 -05004665int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
Benny Halevy99fe60d2009-04-01 09:22:29 -04004666{
4667 nfs4_verifier verifier;
4668 struct nfs41_exchange_id_args args = {
4669 .client = clp,
Andy Adamson357f54d2010-12-14 10:11:57 -05004670 .flags = EXCHGID4_FLAG_SUPP_MOVED_REFER,
Benny Halevy99fe60d2009-04-01 09:22:29 -04004671 };
4672 struct nfs41_exchange_id_res res = {
4673 .client = clp,
4674 };
4675 int status;
4676 struct rpc_message msg = {
4677 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
4678 .rpc_argp = &args,
4679 .rpc_resp = &res,
4680 .rpc_cred = cred,
4681 };
4682 __be32 *p;
4683
4684 dprintk("--> %s\n", __func__);
4685 BUG_ON(clp == NULL);
Andy Adamsona7b72102009-04-01 09:22:46 -04004686
Benny Halevy99fe60d2009-04-01 09:22:29 -04004687 p = (u32 *)verifier.data;
4688 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
4689 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
4690 args.verifier = &verifier;
4691
Andy Adamsonc7a360b2011-01-25 19:15:32 -05004692 args.id_len = scnprintf(args.id, sizeof(args.id),
4693 "%s/%s.%s/%u",
4694 clp->cl_ipaddr,
4695 init_utsname()->nodename,
4696 init_utsname()->domainname,
4697 clp->cl_rpcclient->cl_auth->au_flavor);
Benny Halevy99fe60d2009-04-01 09:22:29 -04004698
Andy Adamsonc7a360b2011-01-25 19:15:32 -05004699 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
4700 if (!status)
4701 status = nfs4_check_cl_exchange_flags(clp->cl_exchange_flags);
Benny Halevy99fe60d2009-04-01 09:22:29 -04004702 dprintk("<-- %s status= %d\n", __func__, status);
4703 return status;
4704}
4705
Andy Adamson2050f0c2009-04-01 09:22:30 -04004706struct nfs4_get_lease_time_data {
4707 struct nfs4_get_lease_time_args *args;
4708 struct nfs4_get_lease_time_res *res;
4709 struct nfs_client *clp;
4710};
4711
4712static void nfs4_get_lease_time_prepare(struct rpc_task *task,
4713 void *calldata)
4714{
4715 int ret;
4716 struct nfs4_get_lease_time_data *data =
4717 (struct nfs4_get_lease_time_data *)calldata;
4718
4719 dprintk("--> %s\n", __func__);
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -08004720 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004721 /* just setup sequence, do not trigger session recovery
4722 since we're invoked within one */
4723 ret = nfs41_setup_sequence(data->clp->cl_session,
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -08004724 &data->args->la_seq_args,
4725 &data->res->lr_seq_res, 0, task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004726
4727 BUG_ON(ret == -EAGAIN);
4728 rpc_call_start(task);
4729 dprintk("<-- %s\n", __func__);
4730}
4731
4732/*
4733 * Called from nfs4_state_manager thread for session setup, so don't recover
4734 * from sequence operation or clientid errors.
4735 */
4736static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
4737{
4738 struct nfs4_get_lease_time_data *data =
4739 (struct nfs4_get_lease_time_data *)calldata;
4740
4741 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04004742 if (!nfs41_sequence_done(task, &data->res->lr_seq_res))
4743 return;
Andy Adamson2050f0c2009-04-01 09:22:30 -04004744 switch (task->tk_status) {
4745 case -NFS4ERR_DELAY:
4746 case -NFS4ERR_GRACE:
4747 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
4748 rpc_delay(task, NFS4_POLL_RETRY_MIN);
4749 task->tk_status = 0;
Trond Myklebust0110ee12009-12-07 09:00:24 -05004750 nfs_restart_rpc(task, data->clp);
Andy Adamson2050f0c2009-04-01 09:22:30 -04004751 return;
4752 }
Andy Adamson2050f0c2009-04-01 09:22:30 -04004753 dprintk("<-- %s\n", __func__);
4754}
4755
4756struct rpc_call_ops nfs4_get_lease_time_ops = {
4757 .rpc_call_prepare = nfs4_get_lease_time_prepare,
4758 .rpc_call_done = nfs4_get_lease_time_done,
4759};
4760
4761int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
4762{
4763 struct rpc_task *task;
4764 struct nfs4_get_lease_time_args args;
4765 struct nfs4_get_lease_time_res res = {
4766 .lr_fsinfo = fsinfo,
4767 };
4768 struct nfs4_get_lease_time_data data = {
4769 .args = &args,
4770 .res = &res,
4771 .clp = clp,
4772 };
4773 struct rpc_message msg = {
4774 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
4775 .rpc_argp = &args,
4776 .rpc_resp = &res,
4777 };
4778 struct rpc_task_setup task_setup = {
4779 .rpc_client = clp->cl_rpcclient,
4780 .rpc_message = &msg,
4781 .callback_ops = &nfs4_get_lease_time_ops,
4782 .callback_data = &data
4783 };
4784 int status;
4785
Andy Adamson2050f0c2009-04-01 09:22:30 -04004786 dprintk("--> %s\n", __func__);
4787 task = rpc_run_task(&task_setup);
4788
4789 if (IS_ERR(task))
4790 status = PTR_ERR(task);
4791 else {
4792 status = task->tk_status;
4793 rpc_put_task(task);
4794 }
4795 dprintk("<-- %s return %d\n", __func__, status);
4796
4797 return status;
4798}
4799
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004800/*
4801 * Reset a slot table
4802 */
Andy Adamson104aeba2010-01-14 17:45:10 -05004803static int nfs4_reset_slot_table(struct nfs4_slot_table *tbl, u32 max_reqs,
4804 int ivalue)
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004805{
Andy Adamson104aeba2010-01-14 17:45:10 -05004806 struct nfs4_slot *new = NULL;
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004807 int i;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004808 int ret = 0;
4809
Andy Adamson104aeba2010-01-14 17:45:10 -05004810 dprintk("--> %s: max_reqs=%u, tbl->max_slots %d\n", __func__,
4811 max_reqs, tbl->max_slots);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004812
Andy Adamson104aeba2010-01-14 17:45:10 -05004813 /* Does the newly negotiated max_reqs match the existing slot table? */
4814 if (max_reqs != tbl->max_slots) {
4815 ret = -ENOMEM;
4816 new = kmalloc(max_reqs * sizeof(struct nfs4_slot),
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004817 GFP_NOFS);
Andy Adamson104aeba2010-01-14 17:45:10 -05004818 if (!new)
4819 goto out;
4820 ret = 0;
4821 kfree(tbl->slots);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004822 }
4823 spin_lock(&tbl->slot_tbl_lock);
Andy Adamson104aeba2010-01-14 17:45:10 -05004824 if (new) {
4825 tbl->slots = new;
4826 tbl->max_slots = max_reqs;
4827 }
4828 for (i = 0; i < tbl->max_slots; ++i)
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004829 tbl->slots[i].seq_nr = ivalue;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04004830 spin_unlock(&tbl->slot_tbl_lock);
4831 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4832 tbl, tbl->slots, tbl->max_slots);
4833out:
4834 dprintk("<-- %s: return %d\n", __func__, ret);
4835 return ret;
4836}
4837
Andy Adamsonfc931582009-04-01 09:22:31 -04004838/*
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004839 * Reset the forechannel and backchannel slot tables
4840 */
4841static int nfs4_reset_slot_tables(struct nfs4_session *session)
4842{
4843 int status;
4844
4845 status = nfs4_reset_slot_table(&session->fc_slot_table,
Andy Adamson104aeba2010-01-14 17:45:10 -05004846 session->fc_attrs.max_reqs, 1);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004847 if (status)
4848 return status;
4849
4850 status = nfs4_reset_slot_table(&session->bc_slot_table,
Andy Adamson104aeba2010-01-14 17:45:10 -05004851 session->bc_attrs.max_reqs, 0);
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004852 return status;
4853}
4854
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004855/* Destroy the slot table */
4856static void nfs4_destroy_slot_tables(struct nfs4_session *session)
4857{
4858 if (session->fc_slot_table.slots != NULL) {
4859 kfree(session->fc_slot_table.slots);
4860 session->fc_slot_table.slots = NULL;
4861 }
4862 if (session->bc_slot_table.slots != NULL) {
4863 kfree(session->bc_slot_table.slots);
4864 session->bc_slot_table.slots = NULL;
4865 }
4866 return;
4867}
4868
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04004869/*
Andy Adamsonfc931582009-04-01 09:22:31 -04004870 * Initialize slot table
4871 */
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004872static int nfs4_init_slot_table(struct nfs4_slot_table *tbl,
4873 int max_slots, int ivalue)
Andy Adamsonfc931582009-04-01 09:22:31 -04004874{
Andy Adamsonfc931582009-04-01 09:22:31 -04004875 struct nfs4_slot *slot;
4876 int ret = -ENOMEM;
4877
4878 BUG_ON(max_slots > NFS4_MAX_SLOT_TABLE);
4879
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004880 dprintk("--> %s: max_reqs=%u\n", __func__, max_slots);
Andy Adamsonfc931582009-04-01 09:22:31 -04004881
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004882 slot = kcalloc(max_slots, sizeof(struct nfs4_slot), GFP_NOFS);
Andy Adamsonfc931582009-04-01 09:22:31 -04004883 if (!slot)
4884 goto out;
Andy Adamsonfc931582009-04-01 09:22:31 -04004885 ret = 0;
4886
4887 spin_lock(&tbl->slot_tbl_lock);
Andy Adamsonfc931582009-04-01 09:22:31 -04004888 tbl->max_slots = max_slots;
4889 tbl->slots = slot;
4890 tbl->highest_used_slotid = -1; /* no slot is currently used */
4891 spin_unlock(&tbl->slot_tbl_lock);
4892 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
4893 tbl, tbl->slots, tbl->max_slots);
4894out:
4895 dprintk("<-- %s: return %d\n", __func__, ret);
4896 return ret;
Andy Adamsonfc931582009-04-01 09:22:31 -04004897}
4898
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004899/*
4900 * Initialize the forechannel and backchannel tables
4901 */
4902static int nfs4_init_slot_tables(struct nfs4_session *session)
4903{
Trond Myklebustf26468f2009-12-05 19:32:11 -05004904 struct nfs4_slot_table *tbl;
4905 int status = 0;
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004906
Trond Myklebustf26468f2009-12-05 19:32:11 -05004907 tbl = &session->fc_slot_table;
4908 if (tbl->slots == NULL) {
4909 status = nfs4_init_slot_table(tbl,
4910 session->fc_attrs.max_reqs, 1);
4911 if (status)
4912 return status;
4913 }
Ricardo Labiaga050047c2009-04-01 09:23:32 -04004914
Trond Myklebustf26468f2009-12-05 19:32:11 -05004915 tbl = &session->bc_slot_table;
4916 if (tbl->slots == NULL) {
4917 status = nfs4_init_slot_table(tbl,
4918 session->bc_attrs.max_reqs, 0);
4919 if (status)
4920 nfs4_destroy_slot_tables(session);
4921 }
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004922
4923 return status;
Andy Adamson557134a2009-04-01 09:21:53 -04004924}
4925
4926struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp)
4927{
4928 struct nfs4_session *session;
4929 struct nfs4_slot_table *tbl;
4930
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004931 session = kzalloc(sizeof(struct nfs4_session), GFP_NOFS);
Andy Adamson557134a2009-04-01 09:21:53 -04004932 if (!session)
4933 return NULL;
Andy Adamson76db6d92009-04-01 09:22:38 -04004934
Andy Adamson557134a2009-04-01 09:21:53 -04004935 tbl = &session->fc_slot_table;
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -05004936 tbl->highest_used_slotid = -1;
Andy Adamson557134a2009-04-01 09:21:53 -04004937 spin_lock_init(&tbl->slot_tbl_lock);
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -08004938 rpc_init_priority_wait_queue(&tbl->slot_tbl_waitq, "ForeChannel Slot table");
Andy Adamson42acd022011-01-06 02:04:34 +00004939 init_completion(&tbl->complete);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004940
4941 tbl = &session->bc_slot_table;
Ricardo Labiaga9dfdf402009-12-06 12:57:34 -05004942 tbl->highest_used_slotid = -1;
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004943 spin_lock_init(&tbl->slot_tbl_lock);
4944 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "BackChannel Slot table");
Andy Adamson42acd022011-01-06 02:04:34 +00004945 init_completion(&tbl->complete);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004946
Trond Myklebust1055d762010-06-16 09:52:27 -04004947 session->session_state = 1<<NFS4_SESSION_INITING;
4948
Andy Adamson557134a2009-04-01 09:21:53 -04004949 session->clp = clp;
4950 return session;
4951}
4952
4953void nfs4_destroy_session(struct nfs4_session *session)
4954{
Andy Adamson5a0ffe52009-04-01 09:23:18 -04004955 nfs4_proc_destroy_session(session);
4956 dprintk("%s Destroy backchannel for xprt %p\n",
4957 __func__, session->clp->cl_rpcclient->cl_xprt);
4958 xprt_destroy_backchannel(session->clp->cl_rpcclient->cl_xprt,
4959 NFS41_BC_MIN_CALLBACKS);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04004960 nfs4_destroy_slot_tables(session);
Andy Adamson557134a2009-04-01 09:21:53 -04004961 kfree(session);
4962}
4963
Andy Adamsonfc931582009-04-01 09:22:31 -04004964/*
4965 * Initialize the values to be used by the client in CREATE_SESSION
4966 * If nfs4_init_session set the fore channel request and response sizes,
4967 * use them.
4968 *
4969 * Set the back channel max_resp_sz_cached to zero to force the client to
4970 * always set csa_cachethis to FALSE because the current implementation
4971 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
4972 */
4973static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args)
4974{
4975 struct nfs4_session *session = args->client->cl_session;
4976 unsigned int mxrqst_sz = session->fc_attrs.max_rqst_sz,
4977 mxresp_sz = session->fc_attrs.max_resp_sz;
4978
4979 if (mxrqst_sz == 0)
4980 mxrqst_sz = NFS_MAX_FILE_IO_SIZE;
4981 if (mxresp_sz == 0)
4982 mxresp_sz = NFS_MAX_FILE_IO_SIZE;
4983 /* Fore channel attributes */
4984 args->fc_attrs.headerpadsz = 0;
4985 args->fc_attrs.max_rqst_sz = mxrqst_sz;
4986 args->fc_attrs.max_resp_sz = mxresp_sz;
Andy Adamsonfc931582009-04-01 09:22:31 -04004987 args->fc_attrs.max_ops = NFS4_MAX_OPS;
4988 args->fc_attrs.max_reqs = session->clp->cl_rpcclient->cl_xprt->max_reqs;
4989
4990 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
Mike Sager8e0d46e2009-12-17 12:06:26 -05004991 "max_ops=%u max_reqs=%u\n",
Andy Adamsonfc931582009-04-01 09:22:31 -04004992 __func__,
4993 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
Mike Sager8e0d46e2009-12-17 12:06:26 -05004994 args->fc_attrs.max_ops, args->fc_attrs.max_reqs);
Andy Adamsonfc931582009-04-01 09:22:31 -04004995
4996 /* Back channel attributes */
4997 args->bc_attrs.headerpadsz = 0;
4998 args->bc_attrs.max_rqst_sz = PAGE_SIZE;
4999 args->bc_attrs.max_resp_sz = PAGE_SIZE;
5000 args->bc_attrs.max_resp_sz_cached = 0;
5001 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
5002 args->bc_attrs.max_reqs = 1;
5003
5004 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
5005 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
5006 __func__,
5007 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
5008 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
5009 args->bc_attrs.max_reqs);
5010}
5011
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005012static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args, struct nfs4_session *session)
Andy Adamson8d353012009-04-01 09:22:32 -04005013{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005014 struct nfs4_channel_attrs *sent = &args->fc_attrs;
5015 struct nfs4_channel_attrs *rcvd = &session->fc_attrs;
5016
5017 if (rcvd->headerpadsz > sent->headerpadsz)
5018 return -EINVAL;
5019 if (rcvd->max_resp_sz > sent->max_resp_sz)
5020 return -EINVAL;
5021 /*
5022 * Our requested max_ops is the minimum we need; we're not
5023 * prepared to break up compounds into smaller pieces than that.
5024 * So, no point even trying to continue if the server won't
5025 * cooperate:
5026 */
5027 if (rcvd->max_ops < sent->max_ops)
5028 return -EINVAL;
5029 if (rcvd->max_reqs == 0)
5030 return -EINVAL;
5031 return 0;
Andy Adamson8d353012009-04-01 09:22:32 -04005032}
5033
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005034static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args, struct nfs4_session *session)
5035{
5036 struct nfs4_channel_attrs *sent = &args->bc_attrs;
5037 struct nfs4_channel_attrs *rcvd = &session->bc_attrs;
Andy Adamson8d353012009-04-01 09:22:32 -04005038
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005039 if (rcvd->max_rqst_sz > sent->max_rqst_sz)
5040 return -EINVAL;
5041 if (rcvd->max_resp_sz < sent->max_resp_sz)
5042 return -EINVAL;
5043 if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached)
5044 return -EINVAL;
5045 /* These would render the backchannel useless: */
5046 if (rcvd->max_ops == 0)
5047 return -EINVAL;
5048 if (rcvd->max_reqs == 0)
5049 return -EINVAL;
5050 return 0;
5051}
Andy Adamson8d353012009-04-01 09:22:32 -04005052
Andy Adamson8d353012009-04-01 09:22:32 -04005053static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
5054 struct nfs4_session *session)
5055{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005056 int ret;
Andy Adamson8d353012009-04-01 09:22:32 -04005057
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005058 ret = nfs4_verify_fore_channel_attrs(args, session);
5059 if (ret)
5060 return ret;
5061 return nfs4_verify_back_channel_attrs(args, session);
Andy Adamson8d353012009-04-01 09:22:32 -04005062}
5063
Andy Adamsonfc931582009-04-01 09:22:31 -04005064static int _nfs4_proc_create_session(struct nfs_client *clp)
5065{
5066 struct nfs4_session *session = clp->cl_session;
5067 struct nfs41_create_session_args args = {
5068 .client = clp,
5069 .cb_program = NFS4_CALLBACK,
5070 };
5071 struct nfs41_create_session_res res = {
5072 .client = clp,
5073 };
5074 struct rpc_message msg = {
5075 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
5076 .rpc_argp = &args,
5077 .rpc_resp = &res,
5078 };
5079 int status;
5080
5081 nfs4_init_channel_attrs(&args);
Andy Adamson0f914212009-04-01 09:23:16 -04005082 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
Andy Adamsonfc931582009-04-01 09:22:31 -04005083
5084 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
5085
Andy Adamson8d353012009-04-01 09:22:32 -04005086 if (!status)
5087 /* Verify the session's negotiated channel_attrs values */
5088 status = nfs4_verify_channel_attrs(&args, session);
Andy Adamsonfc931582009-04-01 09:22:31 -04005089 if (!status) {
5090 /* Increment the clientid slot sequence id */
5091 clp->cl_seqid++;
5092 }
5093
5094 return status;
5095}
5096
5097/*
5098 * Issues a CREATE_SESSION operation to the server.
5099 * It is the responsibility of the caller to verify the session is
5100 * expired before calling this routine.
5101 */
Trond Myklebustf26468f2009-12-05 19:32:11 -05005102int nfs4_proc_create_session(struct nfs_client *clp)
Andy Adamsonfc931582009-04-01 09:22:31 -04005103{
5104 int status;
5105 unsigned *ptr;
Andy Adamsonfc931582009-04-01 09:22:31 -04005106 struct nfs4_session *session = clp->cl_session;
Ricardo Labiaga7d6d63d2011-03-09 13:13:44 -05005107 long timeout = 0;
5108 int err;
Andy Adamsonfc931582009-04-01 09:22:31 -04005109
5110 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
5111
Ricardo Labiaga7d6d63d2011-03-09 13:13:44 -05005112 do {
5113 status = _nfs4_proc_create_session(clp);
5114 if (status == -NFS4ERR_DELAY) {
5115 err = nfs4_delay(clp->cl_rpcclient, &timeout);
5116 if (err)
5117 status = err;
5118 }
5119 } while (status == -NFS4ERR_DELAY);
5120
Andy Adamsonfc931582009-04-01 09:22:31 -04005121 if (status)
5122 goto out;
5123
Trond Myklebustf26468f2009-12-05 19:32:11 -05005124 /* Init and reset the fore channel */
5125 status = nfs4_init_slot_tables(session);
5126 dprintk("slot table initialization returned %d\n", status);
5127 if (status)
5128 goto out;
5129 status = nfs4_reset_slot_tables(session);
5130 dprintk("slot table reset returned %d\n", status);
Andy Adamsonfc931582009-04-01 09:22:31 -04005131 if (status)
5132 goto out;
5133
5134 ptr = (unsigned *)&session->sess_id.data[0];
5135 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
5136 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
Andy Adamsonfc931582009-04-01 09:22:31 -04005137out:
5138 dprintk("<-- %s\n", __func__);
5139 return status;
5140}
5141
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005142/*
5143 * Issue the over-the-wire RPC DESTROY_SESSION.
5144 * The caller must serialize access to this routine.
5145 */
5146int nfs4_proc_destroy_session(struct nfs4_session *session)
5147{
5148 int status = 0;
5149 struct rpc_message msg;
5150
5151 dprintk("--> nfs4_proc_destroy_session\n");
5152
5153 /* session is still being setup */
5154 if (session->clp->cl_cons_state != NFS_CS_READY)
5155 return status;
5156
5157 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION];
5158 msg.rpc_argp = session;
5159 msg.rpc_resp = NULL;
5160 msg.rpc_cred = NULL;
5161 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, 0);
5162
5163 if (status)
5164 printk(KERN_WARNING
5165 "Got error %d from the server on DESTROY_SESSION. "
5166 "Session has been destroyed regardless...\n", status);
5167
5168 dprintk("<-- nfs4_proc_destroy_session\n");
5169 return status;
5170}
5171
Trond Myklebustfccba802009-07-21 16:48:07 -04005172int nfs4_init_session(struct nfs_server *server)
5173{
5174 struct nfs_client *clp = server->nfs_client;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05005175 struct nfs4_session *session;
Andy Adamson68bf05e2009-12-15 12:55:02 -05005176 unsigned int rsize, wsize;
Trond Myklebustfccba802009-07-21 16:48:07 -04005177 int ret;
5178
5179 if (!nfs4_has_session(clp))
5180 return 0;
5181
Trond Myklebust1055d762010-06-16 09:52:27 -04005182 session = clp->cl_session;
5183 if (!test_and_clear_bit(NFS4_SESSION_INITING, &session->session_state))
5184 return 0;
5185
Andy Adamson68bf05e2009-12-15 12:55:02 -05005186 rsize = server->rsize;
5187 if (rsize == 0)
5188 rsize = NFS_MAX_FILE_IO_SIZE;
5189 wsize = server->wsize;
5190 if (wsize == 0)
5191 wsize = NFS_MAX_FILE_IO_SIZE;
5192
Andy Adamson68bf05e2009-12-15 12:55:02 -05005193 session->fc_attrs.max_rqst_sz = wsize + nfs41_maxwrite_overhead;
5194 session->fc_attrs.max_resp_sz = rsize + nfs41_maxread_overhead;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05005195
Trond Myklebustfccba802009-07-21 16:48:07 -04005196 ret = nfs4_recover_expired_lease(server);
5197 if (!ret)
5198 ret = nfs4_check_client_ready(clp);
5199 return ret;
5200}
5201
Andy Adamsond83217c2011-03-01 01:34:17 +00005202int nfs4_init_ds_session(struct nfs_client *clp)
5203{
5204 struct nfs4_session *session = clp->cl_session;
5205 int ret;
5206
5207 if (!test_and_clear_bit(NFS4_SESSION_INITING, &session->session_state))
5208 return 0;
5209
5210 ret = nfs4_client_recover_expired_lease(clp);
5211 if (!ret)
5212 /* Test for the DS role */
5213 if (!is_ds_client(clp))
5214 ret = -ENODEV;
5215 if (!ret)
5216 ret = nfs4_check_client_ready(clp);
5217 return ret;
5218
5219}
5220EXPORT_SYMBOL_GPL(nfs4_init_ds_session);
5221
5222
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005223/*
5224 * Renew the cl_session lease.
5225 */
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005226struct nfs4_sequence_data {
5227 struct nfs_client *clp;
5228 struct nfs4_sequence_args args;
5229 struct nfs4_sequence_res res;
5230};
5231
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005232static void nfs41_sequence_release(void *data)
5233{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005234 struct nfs4_sequence_data *calldata = data;
5235 struct nfs_client *clp = calldata->clp;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005236
Alexandros Batsakis71358402010-02-05 03:45:05 -08005237 if (atomic_read(&clp->cl_count) > 1)
5238 nfs4_schedule_state_renewal(clp);
5239 nfs_put_client(clp);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005240 kfree(calldata);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005241}
5242
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005243static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp)
5244{
5245 switch(task->tk_status) {
5246 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005247 rpc_delay(task, NFS4_POLL_RETRY_MAX);
5248 return -EAGAIN;
5249 default:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05005250 nfs4_schedule_lease_recovery(clp);
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005251 }
5252 return 0;
5253}
5254
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005255static void nfs41_sequence_call_done(struct rpc_task *task, void *data)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005256{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005257 struct nfs4_sequence_data *calldata = data;
5258 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005259
Trond Myklebust14516c32010-07-31 14:29:06 -04005260 if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp))
5261 return;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005262
5263 if (task->tk_status < 0) {
5264 dprintk("%s ERROR %d\n", __func__, task->tk_status);
Alexandros Batsakis71358402010-02-05 03:45:05 -08005265 if (atomic_read(&clp->cl_count) == 1)
5266 goto out;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005267
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005268 if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) {
5269 rpc_restart_call_prepare(task);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005270 return;
5271 }
5272 }
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005273 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
Alexandros Batsakis71358402010-02-05 03:45:05 -08005274out:
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005275 dprintk("<-- %s\n", __func__);
5276}
5277
5278static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
5279{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005280 struct nfs4_sequence_data *calldata = data;
5281 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005282 struct nfs4_sequence_args *args;
5283 struct nfs4_sequence_res *res;
5284
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005285 args = task->tk_msg.rpc_argp;
5286 res = task->tk_msg.rpc_resp;
5287
Trond Myklebust035168a2010-06-16 09:52:26 -04005288 if (nfs41_setup_sequence(clp->cl_session, args, res, 0, task))
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005289 return;
5290 rpc_call_start(task);
5291}
5292
5293static const struct rpc_call_ops nfs41_sequence_ops = {
5294 .rpc_call_done = nfs41_sequence_call_done,
5295 .rpc_call_prepare = nfs41_sequence_prepare,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005296 .rpc_release = nfs41_sequence_release,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005297};
5298
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005299static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005300{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005301 struct nfs4_sequence_data *calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005302 struct rpc_message msg = {
5303 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
5304 .rpc_cred = cred,
5305 };
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005306 struct rpc_task_setup task_setup_data = {
5307 .rpc_client = clp->cl_rpcclient,
5308 .rpc_message = &msg,
5309 .callback_ops = &nfs41_sequence_ops,
5310 .flags = RPC_TASK_ASYNC | RPC_TASK_SOFT,
5311 };
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005312
Alexandros Batsakis71358402010-02-05 03:45:05 -08005313 if (!atomic_inc_not_zero(&clp->cl_count))
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005314 return ERR_PTR(-EIO);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005315 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005316 if (calldata == NULL) {
Alexandros Batsakis71358402010-02-05 03:45:05 -08005317 nfs_put_client(clp);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005318 return ERR_PTR(-ENOMEM);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005319 }
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005320 msg.rpc_argp = &calldata->args;
5321 msg.rpc_resp = &calldata->res;
5322 calldata->clp = clp;
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005323 task_setup_data.callback_data = calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005324
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005325 return rpc_run_task(&task_setup_data);
5326}
5327
5328static int nfs41_proc_async_sequence(struct nfs_client *clp, struct rpc_cred *cred)
5329{
5330 struct rpc_task *task;
5331 int ret = 0;
5332
5333 task = _nfs41_proc_sequence(clp, cred);
5334 if (IS_ERR(task))
5335 ret = PTR_ERR(task);
5336 else
Trond Myklebustbf294b42011-02-21 11:05:41 -08005337 rpc_put_task_async(task);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005338 dprintk("<-- %s status=%d\n", __func__, ret);
5339 return ret;
5340}
5341
5342static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
5343{
5344 struct rpc_task *task;
5345 int ret;
5346
5347 task = _nfs41_proc_sequence(clp, cred);
5348 if (IS_ERR(task)) {
5349 ret = PTR_ERR(task);
5350 goto out;
5351 }
5352 ret = rpc_wait_for_completion_task(task);
Trond Myklebustb4410c22011-03-09 16:00:55 -05005353 if (!ret) {
5354 struct nfs4_sequence_res *res = task->tk_msg.rpc_resp;
5355
5356 if (task->tk_status == 0)
5357 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005358 ret = task->tk_status;
Trond Myklebustb4410c22011-03-09 16:00:55 -05005359 }
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005360 rpc_put_task(task);
5361out:
5362 dprintk("<-- %s status=%d\n", __func__, ret);
5363 return ret;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005364}
5365
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005366struct nfs4_reclaim_complete_data {
5367 struct nfs_client *clp;
5368 struct nfs41_reclaim_complete_args arg;
5369 struct nfs41_reclaim_complete_res res;
5370};
5371
5372static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
5373{
5374 struct nfs4_reclaim_complete_data *calldata = data;
5375
Alexandros Batsakisb2579572009-12-14 21:27:57 -08005376 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
Trond Myklebust035168a2010-06-16 09:52:26 -04005377 if (nfs41_setup_sequence(calldata->clp->cl_session,
5378 &calldata->arg.seq_args,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005379 &calldata->res.seq_res, 0, task))
5380 return;
5381
5382 rpc_call_start(task);
5383}
5384
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005385static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp)
5386{
5387 switch(task->tk_status) {
5388 case 0:
5389 case -NFS4ERR_COMPLETE_ALREADY:
5390 case -NFS4ERR_WRONG_CRED: /* What to do here? */
5391 break;
5392 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005393 rpc_delay(task, NFS4_POLL_RETRY_MAX);
5394 return -EAGAIN;
5395 default:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05005396 nfs4_schedule_lease_recovery(clp);
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005397 }
5398 return 0;
5399}
5400
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005401static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
5402{
5403 struct nfs4_reclaim_complete_data *calldata = data;
5404 struct nfs_client *clp = calldata->clp;
5405 struct nfs4_sequence_res *res = &calldata->res.seq_res;
5406
5407 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04005408 if (!nfs41_sequence_done(task, res))
5409 return;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005410
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005411 if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) {
5412 rpc_restart_call_prepare(task);
5413 return;
5414 }
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005415 dprintk("<-- %s\n", __func__);
5416}
5417
5418static void nfs4_free_reclaim_complete_data(void *data)
5419{
5420 struct nfs4_reclaim_complete_data *calldata = data;
5421
5422 kfree(calldata);
5423}
5424
5425static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
5426 .rpc_call_prepare = nfs4_reclaim_complete_prepare,
5427 .rpc_call_done = nfs4_reclaim_complete_done,
5428 .rpc_release = nfs4_free_reclaim_complete_data,
5429};
5430
5431/*
5432 * Issue a global reclaim complete.
5433 */
5434static int nfs41_proc_reclaim_complete(struct nfs_client *clp)
5435{
5436 struct nfs4_reclaim_complete_data *calldata;
5437 struct rpc_task *task;
5438 struct rpc_message msg = {
5439 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
5440 };
5441 struct rpc_task_setup task_setup_data = {
5442 .rpc_client = clp->cl_rpcclient,
5443 .rpc_message = &msg,
5444 .callback_ops = &nfs4_reclaim_complete_call_ops,
5445 .flags = RPC_TASK_ASYNC,
5446 };
5447 int status = -ENOMEM;
5448
5449 dprintk("--> %s\n", __func__);
Trond Myklebust8535b2b2010-05-13 12:51:01 -04005450 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005451 if (calldata == NULL)
5452 goto out;
5453 calldata->clp = clp;
5454 calldata->arg.one_fs = 0;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005455
5456 msg.rpc_argp = &calldata->arg;
5457 msg.rpc_resp = &calldata->res;
5458 task_setup_data.callback_data = calldata;
5459 task = rpc_run_task(&task_setup_data);
Dan Carpenteracf82b82010-04-22 11:28:39 +02005460 if (IS_ERR(task)) {
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005461 status = PTR_ERR(task);
Dan Carpenteracf82b82010-04-22 11:28:39 +02005462 goto out;
5463 }
Andy Adamsonc34c32e2011-03-09 13:13:46 -05005464 status = nfs4_wait_for_completion_rpc_task(task);
5465 if (status == 0)
5466 status = task->tk_status;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005467 rpc_put_task(task);
Dan Carpenteracf82b82010-04-22 11:28:39 +02005468 return 0;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005469out:
5470 dprintk("<-- %s status=%d\n", __func__, status);
5471 return status;
5472}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005473
5474static void
5475nfs4_layoutget_prepare(struct rpc_task *task, void *calldata)
5476{
5477 struct nfs4_layoutget *lgp = calldata;
Fred Isamanc31663d2011-01-06 11:36:24 +00005478 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005479
5480 dprintk("--> %s\n", __func__);
Fred Isamanc31663d2011-01-06 11:36:24 +00005481 /* Note the is a race here, where a CB_LAYOUTRECALL can come in
5482 * right now covering the LAYOUTGET we are about to send.
5483 * However, that is not so catastrophic, and there seems
5484 * to be no way to prevent it completely.
5485 */
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005486 if (nfs4_setup_sequence(server, &lgp->args.seq_args,
5487 &lgp->res.seq_res, 0, task))
5488 return;
Fred Isamancf7d63f2011-01-06 11:36:25 +00005489 if (pnfs_choose_layoutget_stateid(&lgp->args.stateid,
5490 NFS_I(lgp->args.inode)->layout,
5491 lgp->args.ctx->state)) {
5492 rpc_exit(task, NFS4_OK);
5493 return;
5494 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005495 rpc_call_start(task);
5496}
5497
5498static void nfs4_layoutget_done(struct rpc_task *task, void *calldata)
5499{
5500 struct nfs4_layoutget *lgp = calldata;
5501 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
5502
5503 dprintk("--> %s\n", __func__);
5504
5505 if (!nfs4_sequence_done(task, &lgp->res.seq_res))
5506 return;
5507
5508 switch (task->tk_status) {
5509 case 0:
5510 break;
5511 case -NFS4ERR_LAYOUTTRYLATER:
5512 case -NFS4ERR_RECALLCONFLICT:
5513 task->tk_status = -NFS4ERR_DELAY;
5514 /* Fall through */
5515 default:
5516 if (nfs4_async_handle_error(task, server, NULL) == -EAGAIN) {
5517 rpc_restart_call_prepare(task);
5518 return;
5519 }
5520 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005521 dprintk("<-- %s\n", __func__);
5522}
5523
5524static void nfs4_layoutget_release(void *calldata)
5525{
5526 struct nfs4_layoutget *lgp = calldata;
5527
5528 dprintk("--> %s\n", __func__);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005529 put_nfs_open_context(lgp->args.ctx);
5530 kfree(calldata);
5531 dprintk("<-- %s\n", __func__);
5532}
5533
5534static const struct rpc_call_ops nfs4_layoutget_call_ops = {
5535 .rpc_call_prepare = nfs4_layoutget_prepare,
5536 .rpc_call_done = nfs4_layoutget_done,
5537 .rpc_release = nfs4_layoutget_release,
5538};
5539
5540int nfs4_proc_layoutget(struct nfs4_layoutget *lgp)
5541{
5542 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
5543 struct rpc_task *task;
5544 struct rpc_message msg = {
5545 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET],
5546 .rpc_argp = &lgp->args,
5547 .rpc_resp = &lgp->res,
5548 };
5549 struct rpc_task_setup task_setup_data = {
5550 .rpc_client = server->client,
5551 .rpc_message = &msg,
5552 .callback_ops = &nfs4_layoutget_call_ops,
5553 .callback_data = lgp,
5554 .flags = RPC_TASK_ASYNC,
5555 };
5556 int status = 0;
5557
5558 dprintk("--> %s\n", __func__);
5559
Weston Andros Adamson35124a02011-03-24 16:48:21 -04005560 lgp->res.layoutp = &lgp->args.layout;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005561 lgp->res.seq_res.sr_slot = NULL;
5562 task = rpc_run_task(&task_setup_data);
5563 if (IS_ERR(task))
5564 return PTR_ERR(task);
5565 status = nfs4_wait_for_completion_rpc_task(task);
Fred Isamanc31663d2011-01-06 11:36:24 +00005566 if (status == 0)
5567 status = task->tk_status;
5568 if (status == 0)
5569 status = pnfs_layout_process(lgp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04005570 rpc_put_task(task);
5571 dprintk("<-- %s status=%d\n", __func__, status);
5572 return status;
5573}
5574
5575static int
5576_nfs4_proc_getdeviceinfo(struct nfs_server *server, struct pnfs_device *pdev)
5577{
5578 struct nfs4_getdeviceinfo_args args = {
5579 .pdev = pdev,
5580 };
5581 struct nfs4_getdeviceinfo_res res = {
5582 .pdev = pdev,
5583 };
5584 struct rpc_message msg = {
5585 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO],
5586 .rpc_argp = &args,
5587 .rpc_resp = &res,
5588 };
5589 int status;
5590
5591 dprintk("--> %s\n", __func__);
5592 status = nfs4_call_sync(server, &msg, &args, &res, 0);
5593 dprintk("<-- %s status=%d\n", __func__, status);
5594
5595 return status;
5596}
5597
5598int nfs4_proc_getdeviceinfo(struct nfs_server *server, struct pnfs_device *pdev)
5599{
5600 struct nfs4_exception exception = { };
5601 int err;
5602
5603 do {
5604 err = nfs4_handle_exception(server,
5605 _nfs4_proc_getdeviceinfo(server, pdev),
5606 &exception);
5607 } while (exception.retry);
5608 return err;
5609}
5610EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo);
5611
Andy Adamson863a3c62011-03-23 13:27:54 +00005612static void nfs4_layoutcommit_prepare(struct rpc_task *task, void *calldata)
5613{
5614 struct nfs4_layoutcommit_data *data = calldata;
5615 struct nfs_server *server = NFS_SERVER(data->args.inode);
5616
5617 if (nfs4_setup_sequence(server, &data->args.seq_args,
5618 &data->res.seq_res, 1, task))
5619 return;
5620 rpc_call_start(task);
5621}
5622
5623static void
5624nfs4_layoutcommit_done(struct rpc_task *task, void *calldata)
5625{
5626 struct nfs4_layoutcommit_data *data = calldata;
5627 struct nfs_server *server = NFS_SERVER(data->args.inode);
5628
5629 if (!nfs4_sequence_done(task, &data->res.seq_res))
5630 return;
5631
5632 switch (task->tk_status) { /* Just ignore these failures */
5633 case NFS4ERR_DELEG_REVOKED: /* layout was recalled */
5634 case NFS4ERR_BADIOMODE: /* no IOMODE_RW layout for range */
5635 case NFS4ERR_BADLAYOUT: /* no layout */
5636 case NFS4ERR_GRACE: /* loca_recalim always false */
5637 task->tk_status = 0;
5638 }
5639
5640 if (nfs4_async_handle_error(task, server, NULL) == -EAGAIN) {
5641 nfs_restart_rpc(task, server->nfs_client);
5642 return;
5643 }
5644
5645 if (task->tk_status == 0)
5646 nfs_post_op_update_inode_force_wcc(data->args.inode,
5647 data->res.fattr);
5648}
5649
5650static void nfs4_layoutcommit_release(void *calldata)
5651{
5652 struct nfs4_layoutcommit_data *data = calldata;
5653
5654 /* Matched by references in pnfs_set_layoutcommit */
5655 put_lseg(data->lseg);
5656 put_rpccred(data->cred);
5657 kfree(data);
5658}
5659
5660static const struct rpc_call_ops nfs4_layoutcommit_ops = {
5661 .rpc_call_prepare = nfs4_layoutcommit_prepare,
5662 .rpc_call_done = nfs4_layoutcommit_done,
5663 .rpc_release = nfs4_layoutcommit_release,
5664};
5665
5666int
Andy Adamsonef311532011-03-12 02:58:10 -05005667nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync)
Andy Adamson863a3c62011-03-23 13:27:54 +00005668{
5669 struct rpc_message msg = {
5670 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTCOMMIT],
5671 .rpc_argp = &data->args,
5672 .rpc_resp = &data->res,
5673 .rpc_cred = data->cred,
5674 };
5675 struct rpc_task_setup task_setup_data = {
5676 .task = &data->task,
5677 .rpc_client = NFS_CLIENT(data->args.inode),
5678 .rpc_message = &msg,
5679 .callback_ops = &nfs4_layoutcommit_ops,
5680 .callback_data = data,
5681 .flags = RPC_TASK_ASYNC,
5682 };
5683 struct rpc_task *task;
5684 int status = 0;
5685
5686 dprintk("NFS: %4d initiating layoutcommit call. sync %d "
5687 "lbw: %llu inode %lu\n",
5688 data->task.tk_pid, sync,
5689 data->args.lastbytewritten,
5690 data->args.inode->i_ino);
5691
5692 task = rpc_run_task(&task_setup_data);
5693 if (IS_ERR(task))
5694 return PTR_ERR(task);
Andy Adamsonef311532011-03-12 02:58:10 -05005695 if (sync == false)
Andy Adamson863a3c62011-03-23 13:27:54 +00005696 goto out;
5697 status = nfs4_wait_for_completion_rpc_task(task);
5698 if (status != 0)
5699 goto out;
5700 status = task->tk_status;
5701out:
5702 dprintk("%s: status %d\n", __func__, status);
5703 rpc_put_task(task);
5704 return status;
5705}
Andy Adamson557134a2009-04-01 09:21:53 -04005706#endif /* CONFIG_NFS_V4_1 */
5707
Andy Adamson591d71c2009-04-01 09:22:47 -04005708struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05005709 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05005710 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711 .recover_open = nfs4_open_reclaim,
5712 .recover_lock = nfs4_lock_reclaim,
Andy Adamson591d71c2009-04-01 09:22:47 -04005713 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04005714 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715};
5716
Andy Adamson591d71c2009-04-01 09:22:47 -04005717#if defined(CONFIG_NFS_V4_1)
5718struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
5719 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
5720 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
5721 .recover_open = nfs4_open_reclaim,
5722 .recover_lock = nfs4_lock_reclaim,
Andy Adamson4d643d12009-12-04 15:52:24 -05005723 .establish_clid = nfs41_init_clientid,
Andy Adamsonb4b82602009-04-01 09:22:49 -04005724 .get_clid_cred = nfs4_get_exchange_id_cred,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05005725 .reclaim_complete = nfs41_proc_reclaim_complete,
Andy Adamson591d71c2009-04-01 09:22:47 -04005726};
5727#endif /* CONFIG_NFS_V4_1 */
5728
5729struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05005730 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05005731 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732 .recover_open = nfs4_open_expired,
5733 .recover_lock = nfs4_lock_expired,
Andy Adamson591d71c2009-04-01 09:22:47 -04005734 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04005735 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736};
5737
Andy Adamson591d71c2009-04-01 09:22:47 -04005738#if defined(CONFIG_NFS_V4_1)
5739struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
5740 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
5741 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
5742 .recover_open = nfs4_open_expired,
5743 .recover_lock = nfs4_lock_expired,
Andy Adamson4d643d12009-12-04 15:52:24 -05005744 .establish_clid = nfs41_init_clientid,
Andy Adamsonb4b82602009-04-01 09:22:49 -04005745 .get_clid_cred = nfs4_get_exchange_id_cred,
Andy Adamson591d71c2009-04-01 09:22:47 -04005746};
5747#endif /* CONFIG_NFS_V4_1 */
5748
Benny Halevy29fba382009-04-01 09:22:44 -04005749struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
5750 .sched_state_renewal = nfs4_proc_async_renew,
Andy Adamsona7b72102009-04-01 09:22:46 -04005751 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04005752 .renew_lease = nfs4_proc_renew,
Benny Halevy29fba382009-04-01 09:22:44 -04005753};
5754
5755#if defined(CONFIG_NFS_V4_1)
5756struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
5757 .sched_state_renewal = nfs41_proc_async_sequence,
Andy Adamsona7b72102009-04-01 09:22:46 -04005758 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04005759 .renew_lease = nfs4_proc_sequence,
Benny Halevy29fba382009-04-01 09:22:44 -04005760};
5761#endif
5762
Trond Myklebust97dc1352010-06-16 09:52:26 -04005763static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
5764 .minor_version = 0,
5765 .call_sync = _nfs4_call_sync,
Trond Myklebuste047a102010-06-16 09:52:27 -04005766 .validate_stateid = nfs4_validate_delegation_stateid,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04005767 .reboot_recovery_ops = &nfs40_reboot_recovery_ops,
5768 .nograce_recovery_ops = &nfs40_nograce_recovery_ops,
5769 .state_renewal_ops = &nfs40_state_renewal_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04005770};
5771
5772#if defined(CONFIG_NFS_V4_1)
5773static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
5774 .minor_version = 1,
5775 .call_sync = _nfs4_call_sync_session,
Trond Myklebuste047a102010-06-16 09:52:27 -04005776 .validate_stateid = nfs41_validate_delegation_stateid,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04005777 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
5778 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
5779 .state_renewal_ops = &nfs41_state_renewal_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04005780};
5781#endif
5782
Trond Myklebust97dc1352010-06-16 09:52:26 -04005783const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = {
5784 [0] = &nfs_v4_0_minor_ops,
5785#if defined(CONFIG_NFS_V4_1)
5786 [1] = &nfs_v4_1_minor_ops,
5787#endif
5788};
5789
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08005790static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005791 .permission = nfs_permission,
5792 .getattr = nfs_getattr,
5793 .setattr = nfs_setattr,
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00005794 .getxattr = generic_getxattr,
5795 .setxattr = generic_setxattr,
5796 .listxattr = generic_listxattr,
5797 .removexattr = generic_removexattr,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005798};
5799
David Howells509de812006-08-22 20:06:11 -04005800const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801 .version = 4, /* protocol version */
5802 .dentry_ops = &nfs4_dentry_operations,
5803 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005804 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805 .getroot = nfs4_proc_get_root,
5806 .getattr = nfs4_proc_getattr,
5807 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04005808 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809 .lookup = nfs4_proc_lookup,
5810 .access = nfs4_proc_access,
5811 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812 .create = nfs4_proc_create,
5813 .remove = nfs4_proc_remove,
5814 .unlink_setup = nfs4_proc_unlink_setup,
5815 .unlink_done = nfs4_proc_unlink_done,
5816 .rename = nfs4_proc_rename,
Jeff Laytond3d41522010-09-17 17:31:57 -04005817 .rename_setup = nfs4_proc_rename_setup,
5818 .rename_done = nfs4_proc_rename_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 .link = nfs4_proc_link,
5820 .symlink = nfs4_proc_symlink,
5821 .mkdir = nfs4_proc_mkdir,
5822 .rmdir = nfs4_proc_remove,
5823 .readdir = nfs4_proc_readdir,
5824 .mknod = nfs4_proc_mknod,
5825 .statfs = nfs4_proc_statfs,
5826 .fsinfo = nfs4_proc_fsinfo,
5827 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04005828 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829 .decode_dirent = nfs4_decode_dirent,
5830 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05005831 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005833 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05005835 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00005837 .clear_acl_cache = nfs4_zap_acl_attr,
Trond Myklebust7fe5c392009-03-19 15:35:50 -04005838 .close_context = nfs4_close_context,
Trond Myklebust2b484292010-09-17 10:56:51 -04005839 .open_context = nfs4_atomic_open,
Andy Adamson45a52a02011-03-01 01:34:08 +00005840 .init_client = nfs4_init_client,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841};
5842
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00005843static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = {
5844 .prefix = XATTR_NAME_NFSV4_ACL,
5845 .list = nfs4_xattr_list_nfs4_acl,
5846 .get = nfs4_xattr_get_nfs4_acl,
5847 .set = nfs4_xattr_set_nfs4_acl,
5848};
5849
5850const struct xattr_handler *nfs4_xattr_handlers[] = {
5851 &nfs4_xattr_nfs4_acl_handler,
5852 NULL
5853};
5854
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855/*
5856 * Local variables:
5857 * c-basic-offset: 8
5858 * End:
5859 */