blob: 0cb876640781349e59f1800fd506d5b88dd087a7 [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>
Trond Myklebust652f89f2011-12-09 19:05:58 -050042#include <linux/ratelimit.h>
43#include <linux/printk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/sunrpc/clnt.h>
Bryan Schumaker8f70e952011-03-24 17:12:31 +000046#include <linux/sunrpc/gss_api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/nfs.h>
48#include <linux/nfs4.h>
49#include <linux/nfs_fs.h>
50#include <linux/nfs_page.h>
Bryan Schumaker9b7160c2011-04-13 14:31:30 -040051#include <linux/nfs_mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/namei.h>
Trond Myklebust02a913a2005-10-18 14:20:17 -070053#include <linux/mount.h>
Benny Halevy99fe60d2009-04-01 09:22:29 -040054#include <linux/module.h>
Trond Myklebust6926afd2012-01-07 13:22:46 -050055#include <linux/nfs_idmap.h>
Andy Adamson5a0ffe52009-04-01 09:23:18 -040056#include <linux/sunrpc/bc_xprt.h>
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +000057#include <linux/xattr.h>
Andy Adamsonc7a360b2011-01-25 19:15:32 -050058#include <linux/utsname.h>
Jeff Laytond3103102011-12-01 22:44:39 +010059#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Trond Myklebust4ce79712005-06-22 17:16:21 +000061#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include "delegation.h"
Trond Myklebust101070c2008-02-19 20:04:23 -050063#include "internal.h"
Chuck Lever006ea732006-03-20 13:44:14 -050064#include "iostat.h"
Andy Adamsonfc931582009-04-01 09:22:31 -040065#include "callback.h"
Andy Adamsonb1f69b72010-10-20 00:18:03 -040066#include "pnfs.h"
Chuck Leverf0920752012-05-21 22:45:41 -040067#include "netns.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#define NFSDBG_FACILITY NFSDBG_PROC
70
Trond Myklebust2066fe82006-09-15 08:30:46 -040071#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define NFS4_POLL_RETRY_MAX (15*HZ)
73
Trond Myklebusta78cb572009-08-09 15:06:19 -040074#define NFS4_MAX_LOOP_ON_RECOVER (10)
75
Trond Myklebustef159e92012-02-06 19:50:40 -050076static unsigned short max_session_slots = NFS4_DEF_SLOT_TABLE_SIZE;
77
Trond Myklebustcdd4e682006-01-03 09:55:12 +010078struct nfs4_opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +010079static int _nfs4_proc_open(struct nfs4_opendata *data);
Alexandros Batsakisb2579572009-12-14 21:27:57 -080080static int _nfs4_recover_proc_open(struct nfs4_opendata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
Trond Myklebust9e33bed2008-12-23 15:21:46 -050082static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *, struct nfs4_state *);
Chuck Lever81934dd2012-03-01 17:01:57 -050083static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr);
Bryan Schumakerbae36242012-05-10 15:07:31 -040084static int nfs4_proc_getattr(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *);
Trond Myklebust99367812007-07-17 21:52:41 -040085static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr);
Trond Myklebust0ab64e02010-04-16 16:22:51 -040086static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
87 struct nfs_fattr *fattr, struct iattr *sattr,
88 struct nfs4_state *state);
Bryan Schumakerf062eb62011-06-02 14:59:10 -040089#ifdef CONFIG_NFS_V4_1
Bryan Schumaker1cab0652012-01-31 10:39:29 -050090static int nfs41_test_stateid(struct nfs_server *, nfs4_stateid *);
91static int nfs41_free_stateid(struct nfs_server *, nfs4_stateid *);
Bryan Schumakerf062eb62011-06-02 14:59:10 -040092#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/* Prevent leaks of NFSv4 errors into userland */
WANG Cong46f72f52008-12-30 16:35:55 -050094static int nfs4_map_errors(int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Trond Myklebust52567b02009-10-23 14:46:42 -040096 if (err >= -1000)
97 return err;
98 switch (err) {
99 case -NFS4ERR_RESOURCE:
100 return -EREMOTEIO;
Bryan Schumaker7ebb9312011-03-24 17:12:30 +0000101 case -NFS4ERR_WRONGSEC:
102 return -EPERM;
Trond Myklebust3ddeb7c2011-02-22 15:44:31 -0800103 case -NFS4ERR_BADOWNER:
104 case -NFS4ERR_BADNAME:
105 return -EINVAL;
Trond Myklebustfb13bfa2012-05-28 11:36:28 -0400106 case -NFS4ERR_SHARE_DENIED:
107 return -EACCES;
Steve Dicksonf25efd82012-06-06 14:12:07 -0400108 case -NFS4ERR_MINOR_VERS_MISMATCH:
109 return -EPROTONOSUPPORT;
Trond Myklebust52567b02009-10-23 14:46:42 -0400110 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 dprintk("%s could not handle NFSv4 error %d\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700112 __func__, -err);
Trond Myklebust52567b02009-10-23 14:46:42 -0400113 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
Trond Myklebust52567b02009-10-23 14:46:42 -0400115 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118/*
119 * This is our standard bitmap for GETATTR requests.
120 */
Trond Myklebust1549210f2012-06-05 09:16:47 -0400121const u32 nfs4_fattr_bitmap[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 FATTR4_WORD0_TYPE
123 | FATTR4_WORD0_CHANGE
124 | FATTR4_WORD0_SIZE
125 | FATTR4_WORD0_FSID
126 | FATTR4_WORD0_FILEID,
127 FATTR4_WORD1_MODE
128 | FATTR4_WORD1_NUMLINKS
129 | FATTR4_WORD1_OWNER
130 | FATTR4_WORD1_OWNER_GROUP
131 | FATTR4_WORD1_RAWDEV
132 | FATTR4_WORD1_SPACE_USED
133 | FATTR4_WORD1_TIME_ACCESS
134 | FATTR4_WORD1_TIME_METADATA
135 | FATTR4_WORD1_TIME_MODIFY
136};
137
Trond Myklebust1549210f2012-06-05 09:16:47 -0400138static const u32 nfs4_pnfs_open_bitmap[3] = {
139 FATTR4_WORD0_TYPE
140 | FATTR4_WORD0_CHANGE
141 | FATTR4_WORD0_SIZE
142 | FATTR4_WORD0_FSID
143 | FATTR4_WORD0_FILEID,
144 FATTR4_WORD1_MODE
145 | FATTR4_WORD1_NUMLINKS
146 | FATTR4_WORD1_OWNER
147 | FATTR4_WORD1_OWNER_GROUP
148 | FATTR4_WORD1_RAWDEV
149 | FATTR4_WORD1_SPACE_USED
150 | FATTR4_WORD1_TIME_ACCESS
151 | FATTR4_WORD1_TIME_METADATA
152 | FATTR4_WORD1_TIME_MODIFY,
153 FATTR4_WORD2_MDSTHRESHOLD
154};
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156const u32 nfs4_statfs_bitmap[2] = {
157 FATTR4_WORD0_FILES_AVAIL
158 | FATTR4_WORD0_FILES_FREE
159 | FATTR4_WORD0_FILES_TOTAL,
160 FATTR4_WORD1_SPACE_AVAIL
161 | FATTR4_WORD1_SPACE_FREE
162 | FATTR4_WORD1_SPACE_TOTAL
163};
164
Trond Myklebust4ce79712005-06-22 17:16:21 +0000165const u32 nfs4_pathconf_bitmap[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 FATTR4_WORD0_MAXLINK
167 | FATTR4_WORD0_MAXNAME,
168 0
169};
170
Fred Isamandae100c2011-07-30 20:52:37 -0400171const u32 nfs4_fsinfo_bitmap[3] = { FATTR4_WORD0_MAXFILESIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 | FATTR4_WORD0_MAXREAD
173 | FATTR4_WORD0_MAXWRITE
174 | FATTR4_WORD0_LEASE_TIME,
Ricardo Labiaga55b6e772010-10-12 16:30:06 -0700175 FATTR4_WORD1_TIME_DELTA
Fred Isamandae100c2011-07-30 20:52:37 -0400176 | FATTR4_WORD1_FS_LAYOUT_TYPES,
177 FATTR4_WORD2_LAYOUT_BLKSIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178};
179
Manoj Naik830b8e32006-06-09 09:34:25 -0400180const u32 nfs4_fs_locations_bitmap[2] = {
181 FATTR4_WORD0_TYPE
182 | FATTR4_WORD0_CHANGE
183 | FATTR4_WORD0_SIZE
184 | FATTR4_WORD0_FSID
185 | FATTR4_WORD0_FILEID
186 | FATTR4_WORD0_FS_LOCATIONS,
187 FATTR4_WORD1_MODE
188 | FATTR4_WORD1_NUMLINKS
189 | FATTR4_WORD1_OWNER
190 | FATTR4_WORD1_OWNER_GROUP
191 | FATTR4_WORD1_RAWDEV
192 | FATTR4_WORD1_SPACE_USED
193 | FATTR4_WORD1_TIME_ACCESS
194 | FATTR4_WORD1_TIME_METADATA
195 | FATTR4_WORD1_TIME_MODIFY
196 | FATTR4_WORD1_MOUNTED_ON_FILEID
197};
198
Al Virobc4785c2006-10-19 23:28:51 -0700199static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 struct nfs4_readdir_arg *readdir)
201{
Al Viro0dbb4c62006-10-19 23:28:49 -0700202 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 BUG_ON(readdir->count < 80);
205 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000206 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
208 return;
209 }
210
211 readdir->cookie = 0;
212 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
213 if (cookie == 2)
214 return;
215
216 /*
217 * NFSv4 servers do not return entries for '.' and '..'
218 * Therefore, we fake these entries here. We let '.'
219 * have cookie 0 and '..' have cookie 1. Note that
220 * when talking to the server, we always send cookie 0
221 * instead of 1 or 2.
222 */
Cong Wang2b86ce22011-11-25 23:14:33 +0800223 start = p = kmap_atomic(*readdir->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 if (cookie == 0) {
226 *p++ = xdr_one; /* next */
227 *p++ = xdr_zero; /* cookie, first word */
228 *p++ = xdr_one; /* cookie, second word */
229 *p++ = xdr_one; /* entry len */
230 memcpy(p, ".\0\0\0", 4); /* entry */
231 p++;
232 *p++ = xdr_one; /* bitmap length */
233 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
234 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400235 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
238 *p++ = xdr_one; /* next */
239 *p++ = xdr_zero; /* cookie, first word */
240 *p++ = xdr_two; /* cookie, second word */
241 *p++ = xdr_two; /* entry len */
242 memcpy(p, "..\0\0", 4); /* entry */
243 p++;
244 *p++ = xdr_one; /* bitmap length */
245 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
246 *p++ = htonl(8); /* attribute buffer length */
Peter Staubach4e769b92007-08-03 15:07:10 -0400247 p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 readdir->pgbase = (char *)p - (char *)start;
250 readdir->count -= readdir->pgbase;
Cong Wang2b86ce22011-11-25 23:14:33 +0800251 kunmap_atomic(start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
Trond Myklebust65de8722008-12-23 15:21:44 -0500254static int nfs4_wait_clnt_recover(struct nfs_client *clp)
255{
256 int res;
257
258 might_sleep();
259
Trond Myklebuste005e802008-12-23 15:21:48 -0500260 res = wait_on_bit(&clp->cl_state, NFS4CLNT_MANAGER_RUNNING,
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400261 nfs_wait_bit_killable, TASK_KILLABLE);
Trond Myklebust65de8722008-12-23 15:21:44 -0500262 return res;
263}
264
265static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
266{
267 int res = 0;
268
269 might_sleep();
270
271 if (*timeout <= 0)
272 *timeout = NFS4_POLL_RETRY_MIN;
273 if (*timeout > NFS4_POLL_RETRY_MAX)
274 *timeout = NFS4_POLL_RETRY_MAX;
Jeff Laytond3103102011-12-01 22:44:39 +0100275 freezable_schedule_timeout_killable(*timeout);
Trond Myklebust65de8722008-12-23 15:21:44 -0500276 if (fatal_signal_pending(current))
277 res = -ERESTARTSYS;
278 *timeout <<= 1;
279 return res;
280}
281
282/* This is the error handling routine for processes that are allowed
283 * to sleep.
284 */
Trond Myklebustb064eca22011-02-22 15:44:32 -0800285static int nfs4_handle_exception(struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
Trond Myklebust65de8722008-12-23 15:21:44 -0500286{
287 struct nfs_client *clp = server->nfs_client;
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500288 struct nfs4_state *state = exception->state;
Trond Myklebust3114ea72012-03-07 16:39:06 -0500289 struct inode *inode = exception->inode;
Trond Myklebust65de8722008-12-23 15:21:44 -0500290 int ret = errorcode;
291
292 exception->retry = 0;
293 switch(errorcode) {
294 case 0:
295 return 0;
Trond Myklebust3114ea72012-03-07 16:39:06 -0500296 case -NFS4ERR_OPENMODE:
Bryan Schumaker011e2a72012-06-20 15:53:43 -0400297 if (inode && nfs4_have_delegation(inode, FMODE_READ)) {
Bryan Schumaker57ec14c2012-06-20 15:53:44 -0400298 nfs4_inode_return_delegation(inode);
Trond Myklebust3114ea72012-03-07 16:39:06 -0500299 exception->retry = 1;
300 return 0;
301 }
302 if (state == NULL)
303 break;
304 nfs4_schedule_stateid_recovery(server, state);
305 goto wait_on_recovery;
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -0500306 case -NFS4ERR_DELEG_REVOKED:
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500307 case -NFS4ERR_ADMIN_REVOKED:
308 case -NFS4ERR_BAD_STATEID:
Trond Myklebust9e33bed2008-12-23 15:21:46 -0500309 if (state == NULL)
310 break;
Trond Myklebust14977482012-03-27 18:31:25 -0400311 nfs_remove_bad_delegation(state->inode);
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500312 nfs4_schedule_stateid_recovery(server, state);
313 goto wait_on_recovery;
Trond Myklebust0ced63d2011-05-26 14:26:35 -0400314 case -NFS4ERR_EXPIRED:
315 if (state != NULL)
316 nfs4_schedule_stateid_recovery(server, state);
Trond Myklebust65de8722008-12-23 15:21:44 -0500317 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500318 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500319 nfs4_schedule_lease_recovery(clp);
320 goto wait_on_recovery;
Trond Myklebust03391692010-01-26 15:42:38 -0500321#if defined(CONFIG_NFS_V4_1)
Andy Adamson4745e312009-04-01 09:22:42 -0400322 case -NFS4ERR_BADSESSION:
323 case -NFS4ERR_BADSLOT:
324 case -NFS4ERR_BAD_HIGH_SLOT:
325 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
326 case -NFS4ERR_DEADSESSION:
327 case -NFS4ERR_SEQ_FALSE_RETRY:
328 case -NFS4ERR_SEQ_MISORDERED:
329 dprintk("%s ERROR: %d Reset session\n", __func__,
330 errorcode);
Trond Myklebust9f594792012-05-27 13:02:53 -0400331 nfs4_schedule_session_recovery(clp->cl_session, errorcode);
Andy Adamson4745e312009-04-01 09:22:42 -0400332 exception->retry = 1;
Andy Adamsonb9179232009-12-04 15:55:32 -0500333 break;
Trond Myklebust03391692010-01-26 15:42:38 -0500334#endif /* defined(CONFIG_NFS_V4_1) */
Trond Myklebust65de8722008-12-23 15:21:44 -0500335 case -NFS4ERR_FILE_OPEN:
NeilBrown44ed3552009-12-03 15:58:56 -0500336 if (exception->timeout > HZ) {
337 /* We have retried a decent amount, time to
338 * fail
339 */
340 ret = -EBUSY;
341 break;
342 }
Trond Myklebust65de8722008-12-23 15:21:44 -0500343 case -NFS4ERR_GRACE:
344 case -NFS4ERR_DELAY:
Jeff Layton2c643482010-01-07 09:42:03 -0500345 case -EKEYEXPIRED:
Trond Myklebust65de8722008-12-23 15:21:44 -0500346 ret = nfs4_delay(server->client, &exception->timeout);
347 if (ret != 0)
348 break;
Andy Adamsona8a4ae32011-05-03 13:43:03 -0400349 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebust65de8722008-12-23 15:21:44 -0500350 case -NFS4ERR_OLD_STATEID:
351 exception->retry = 1;
Trond Myklebustb064eca22011-02-22 15:44:32 -0800352 break;
353 case -NFS4ERR_BADOWNER:
354 /* The following works around a Linux server bug! */
355 case -NFS4ERR_BADNAME:
356 if (server->caps & NFS_CAP_UIDGID_NOMAP) {
357 server->caps &= ~NFS_CAP_UIDGID_NOMAP;
358 exception->retry = 1;
359 printk(KERN_WARNING "NFS: v4 server %s "
360 "does not accept raw "
361 "uid/gids. "
362 "Reenabling the idmapper.\n",
363 server->nfs_client->cl_hostname);
364 }
Trond Myklebust65de8722008-12-23 15:21:44 -0500365 }
366 /* We failed to handle the error */
367 return nfs4_map_errors(ret);
Trond Myklebust0400a6b2011-03-09 16:00:53 -0500368wait_on_recovery:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -0500369 ret = nfs4_wait_clnt_recover(clp);
370 if (ret == 0)
371 exception->retry = 1;
372 return ret;
Trond Myklebust65de8722008-12-23 15:21:44 -0500373}
374
375
Trond Myklebust452e9352010-07-31 14:29:06 -0400376static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 spin_lock(&clp->cl_lock);
379 if (time_before(clp->cl_last_renewal,timestamp))
380 clp->cl_last_renewal = timestamp;
381 spin_unlock(&clp->cl_lock);
382}
383
Trond Myklebust452e9352010-07-31 14:29:06 -0400384static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
385{
386 do_renew_lease(server->nfs_client, timestamp);
387}
388
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400389#if defined(CONFIG_NFS_V4_1)
390
Benny Halevy510b8172009-04-01 09:22:14 -0400391/*
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400392 * nfs4_free_slot - free a slot and efficiently update slot table.
393 *
394 * freeing a slot is trivially done by clearing its respective bit
395 * in the bitmap.
396 * If the freed slotid equals highest_used_slotid we want to update it
397 * so that the server would be able to size down the slot table if needed,
398 * otherwise we know that the highest_used_slotid is still in use.
399 * When updating highest_used_slotid there may be "holes" in the bitmap
400 * so we need to scan down from highest_used_slotid to 0 looking for the now
401 * highest slotid in use.
Trond Myklebust45d43c22012-02-06 19:38:51 -0500402 * If none found, highest_used_slotid is set to NFS4_NO_SLOT.
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500403 *
404 * Must be called while holding tbl->slot_tbl_lock
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400405 */
406static void
Trond Myklebust45d43c22012-02-06 19:38:51 -0500407nfs4_free_slot(struct nfs4_slot_table *tbl, u32 slotid)
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400408{
Trond Myklebust45d43c22012-02-06 19:38:51 -0500409 BUG_ON(slotid >= NFS4_MAX_SLOT_TABLE);
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400410 /* clear used bit in bitmap */
411 __clear_bit(slotid, tbl->used_slots);
412
413 /* update highest_used_slotid when it is freed */
414 if (slotid == tbl->highest_used_slotid) {
415 slotid = find_last_bit(tbl->used_slots, tbl->max_slots);
Trond Myklebustbcb56162009-12-05 19:32:19 -0500416 if (slotid < tbl->max_slots)
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400417 tbl->highest_used_slotid = slotid;
418 else
Trond Myklebust45d43c22012-02-06 19:38:51 -0500419 tbl->highest_used_slotid = NFS4_NO_SLOT;
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400420 }
Trond Myklebust45d43c22012-02-06 19:38:51 -0500421 dprintk("%s: slotid %u highest_used_slotid %d\n", __func__,
422 slotid, tbl->highest_used_slotid);
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400423}
424
Trond Myklebust961a8282012-01-17 22:57:37 -0500425bool nfs4_set_task_privileged(struct rpc_task *task, void *dummy)
426{
427 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
428 return true;
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400429}
430
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800431/*
Andy Adamson42acd022011-01-06 02:04:34 +0000432 * Signal state manager thread if session fore channel is drained
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800433 */
Andy Adamson42acd022011-01-06 02:04:34 +0000434static void nfs4_check_drain_fc_complete(struct nfs4_session *ses)
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800435{
Trond Myklebusta2118c32010-06-16 09:52:26 -0400436 if (!test_bit(NFS4_SESSION_DRAINING, &ses->session_state)) {
Trond Myklebust961a8282012-01-17 22:57:37 -0500437 rpc_wake_up_first(&ses->fc_slot_table.slot_tbl_waitq,
438 nfs4_set_task_privileged, NULL);
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800439 return;
440 }
441
Trond Myklebust45d43c22012-02-06 19:38:51 -0500442 if (ses->fc_slot_table.highest_used_slotid != NFS4_NO_SLOT)
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800443 return;
444
Andy Adamson42acd022011-01-06 02:04:34 +0000445 dprintk("%s COMPLETE: Session Fore Channel Drained\n", __func__);
446 complete(&ses->fc_slot_table.complete);
447}
448
449/*
450 * Signal state manager thread if session back channel is drained
451 */
452void nfs4_check_drain_bc_complete(struct nfs4_session *ses)
453{
454 if (!test_bit(NFS4_SESSION_DRAINING, &ses->session_state) ||
Trond Myklebust45d43c22012-02-06 19:38:51 -0500455 ses->bc_slot_table.highest_used_slotid != NFS4_NO_SLOT)
Andy Adamson42acd022011-01-06 02:04:34 +0000456 return;
457 dprintk("%s COMPLETE: Session Back Channel Drained\n", __func__);
458 complete(&ses->bc_slot_table.complete);
Alexandros Batsakis3bfb0fc2009-12-09 01:50:11 -0800459}
460
Trond Myklebustd185a332010-06-16 09:52:25 -0400461static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res)
Andy Adamson13615872009-04-01 09:22:17 -0400462{
463 struct nfs4_slot_table *tbl;
464
Trond Myklebustd185a332010-06-16 09:52:25 -0400465 tbl = &res->sr_session->fc_slot_table;
Benny Halevydfb4f3092010-09-24 09:17:01 -0400466 if (!res->sr_slot) {
Andy Adamson13615872009-04-01 09:22:17 -0400467 /* just wake up the next guy waiting since
468 * we may have not consumed a slot after all */
Andy Adamson691daf32009-12-04 15:55:39 -0500469 dprintk("%s: No slot\n", __func__);
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500470 return;
Andy Adamson13615872009-04-01 09:22:17 -0400471 }
Andy Adamsonea028ac2009-12-04 15:55:38 -0500472
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500473 spin_lock(&tbl->slot_tbl_lock);
Andy Adamsonaabd0b42011-11-09 13:58:22 -0500474 nfs4_free_slot(tbl, res->sr_slot - tbl->slots);
Andy Adamson42acd022011-01-06 02:04:34 +0000475 nfs4_check_drain_fc_complete(res->sr_session);
Trond Myklebust35dc1d72009-12-05 19:32:19 -0500476 spin_unlock(&tbl->slot_tbl_lock);
Benny Halevydfb4f3092010-09-24 09:17:01 -0400477 res->sr_slot = NULL;
Andy Adamson13615872009-04-01 09:22:17 -0400478}
479
Trond Myklebust14516c32010-07-31 14:29:06 -0400480static int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
Andy Adamsonb0df8062009-04-01 09:22:18 -0400481{
482 unsigned long timestamp;
Trond Myklebust14516c32010-07-31 14:29:06 -0400483 struct nfs_client *clp;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400484
485 /*
486 * sr_status remains 1 if an RPC level error occurred. The server
487 * may or may not have processed the sequence operation..
488 * Proceed as if the server received and processed the sequence
489 * operation.
490 */
491 if (res->sr_status == 1)
492 res->sr_status = NFS_OK;
493
Bryan Schumaker468f8612011-04-18 15:57:32 -0400494 /* don't increment the sequence number if the task wasn't sent */
495 if (!RPC_WAS_SENT(task))
Andy Adamsonb0df8062009-04-01 09:22:18 -0400496 goto out;
497
Andy Adamson691daf32009-12-04 15:55:39 -0500498 /* Check the SEQUENCE operation status */
Trond Myklebust14516c32010-07-31 14:29:06 -0400499 switch (res->sr_status) {
500 case 0:
Andy Adamsonb0df8062009-04-01 09:22:18 -0400501 /* Update the slot's sequence and clientid lease timer */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400502 ++res->sr_slot->seq_nr;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400503 timestamp = res->sr_renewal_time;
Trond Myklebust14516c32010-07-31 14:29:06 -0400504 clp = res->sr_session->clp;
Trond Myklebust452e9352010-07-31 14:29:06 -0400505 do_renew_lease(clp, timestamp);
Alexandros Batsakis0629e372009-12-05 13:46:14 -0500506 /* Check sequence flags */
Trond Myklebustb4410c22011-03-09 16:00:55 -0500507 if (res->sr_status_flags != 0)
508 nfs4_schedule_lease_recovery(clp);
Trond Myklebust14516c32010-07-31 14:29:06 -0400509 break;
510 case -NFS4ERR_DELAY:
511 /* The server detected a resend of the RPC call and
512 * returned NFS4ERR_DELAY as per Section 2.10.6.2
513 * of RFC5661.
514 */
Geert Uytterhoeven12364a42010-10-28 20:06:19 +0200515 dprintk("%s: slot=%td seq=%d: Operation in progress\n",
Benny Halevydfb4f3092010-09-24 09:17:01 -0400516 __func__,
517 res->sr_slot - res->sr_session->fc_slot_table.slots,
518 res->sr_slot->seq_nr);
Trond Myklebust14516c32010-07-31 14:29:06 -0400519 goto out_retry;
520 default:
521 /* Just update the slot sequence no. */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400522 ++res->sr_slot->seq_nr;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400523 }
524out:
525 /* The session may be reset by one of the error handlers. */
526 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
Trond Myklebustd185a332010-06-16 09:52:25 -0400527 nfs41_sequence_free_slot(res);
Trond Myklebust14516c32010-07-31 14:29:06 -0400528 return 1;
529out_retry:
Trond Myklebustd05dd4e2010-07-31 14:29:07 -0400530 if (!rpc_restart_call(task))
Trond Myklebust14516c32010-07-31 14:29:06 -0400531 goto out;
532 rpc_delay(task, NFS4_POLL_RETRY_MAX);
533 return 0;
Andy Adamsonb0df8062009-04-01 09:22:18 -0400534}
535
Trond Myklebust14516c32010-07-31 14:29:06 -0400536static int nfs4_sequence_done(struct rpc_task *task,
537 struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -0400538{
Trond Myklebust14516c32010-07-31 14:29:06 -0400539 if (res->sr_session == NULL)
540 return 1;
541 return nfs41_sequence_done(task, res);
Trond Myklebustdf896452010-06-16 09:52:26 -0400542}
543
Andy Adamsone2c4ab32009-04-01 09:22:16 -0400544/*
Benny Halevy510b8172009-04-01 09:22:14 -0400545 * nfs4_find_slot - efficiently look for a free slot
546 *
547 * nfs4_find_slot looks for an unset bit in the used_slots bitmap.
548 * If found, we mark the slot as used, update the highest_used_slotid,
549 * and respectively set up the sequence operation args.
Trond Myklebust45d43c22012-02-06 19:38:51 -0500550 * The slot number is returned if found, or NFS4_NO_SLOT otherwise.
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400551 *
552 * Note: must be called with under the slot_tbl_lock.
Benny Halevy510b8172009-04-01 09:22:14 -0400553 */
Trond Myklebust45d43c22012-02-06 19:38:51 -0500554static u32
Alexandros Batsakis40ead582009-12-14 21:27:54 -0800555nfs4_find_slot(struct nfs4_slot_table *tbl)
Benny Halevy510b8172009-04-01 09:22:14 -0400556{
Trond Myklebust45d43c22012-02-06 19:38:51 -0500557 u32 slotid;
558 u32 ret_id = NFS4_NO_SLOT;
Benny Halevy510b8172009-04-01 09:22:14 -0400559
Trond Myklebust45d43c22012-02-06 19:38:51 -0500560 dprintk("--> %s used_slots=%04lx highest_used=%u max_slots=%u\n",
Benny Halevy510b8172009-04-01 09:22:14 -0400561 __func__, tbl->used_slots[0], tbl->highest_used_slotid,
562 tbl->max_slots);
563 slotid = find_first_zero_bit(tbl->used_slots, tbl->max_slots);
564 if (slotid >= tbl->max_slots)
565 goto out;
566 __set_bit(slotid, tbl->used_slots);
Trond Myklebust45d43c22012-02-06 19:38:51 -0500567 if (slotid > tbl->highest_used_slotid ||
568 tbl->highest_used_slotid == NFS4_NO_SLOT)
Benny Halevy510b8172009-04-01 09:22:14 -0400569 tbl->highest_used_slotid = slotid;
570 ret_id = slotid;
571out:
572 dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
573 __func__, tbl->used_slots[0], tbl->highest_used_slotid, ret_id);
Benny Halevy510b8172009-04-01 09:22:14 -0400574 return ret_id;
575}
576
Trond Myklebust9d12b212012-01-17 22:04:25 -0500577static void nfs41_init_sequence(struct nfs4_sequence_args *args,
578 struct nfs4_sequence_res *res, int cache_reply)
579{
580 args->sa_session = NULL;
581 args->sa_cache_this = 0;
582 if (cache_reply)
583 args->sa_cache_this = 1;
584 res->sr_session = NULL;
585 res->sr_slot = NULL;
586}
587
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000588int nfs41_setup_sequence(struct nfs4_session *session,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400589 struct nfs4_sequence_args *args,
590 struct nfs4_sequence_res *res,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400591 struct rpc_task *task)
592{
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400593 struct nfs4_slot *slot;
594 struct nfs4_slot_table *tbl;
Trond Myklebust45d43c22012-02-06 19:38:51 -0500595 u32 slotid;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400596
597 dprintk("--> %s\n", __func__);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400598 /* slot already allocated? */
Benny Halevydfb4f3092010-09-24 09:17:01 -0400599 if (res->sr_slot != NULL)
Andy Adamsonce5039c2009-04-01 09:22:13 -0400600 return 0;
601
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400602 tbl = &session->fc_slot_table;
603
604 spin_lock(&tbl->slot_tbl_lock);
Trond Myklebusta2118c32010-06-16 09:52:26 -0400605 if (test_bit(NFS4_SESSION_DRAINING, &session->session_state) &&
Alexandros Batsakis5601a002009-12-14 21:27:58 -0800606 !rpc_task_has_priority(task, RPC_PRIORITY_PRIVILEGED)) {
Andy Adamson0b1c8fc2011-11-09 13:58:26 -0500607 /* The state manager will wait until the slot table is empty */
Andy Adamson05f0d232009-12-04 15:55:37 -0500608 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
Andy Adamsonb069d942009-04-01 09:22:43 -0400609 spin_unlock(&tbl->slot_tbl_lock);
Andy Adamson0b1c8fc2011-11-09 13:58:26 -0500610 dprintk("%s session is draining\n", __func__);
Andy Adamson05f0d232009-12-04 15:55:37 -0500611 return -EAGAIN;
Andy Adamsonb069d942009-04-01 09:22:43 -0400612 }
613
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800614 if (!rpc_queue_empty(&tbl->slot_tbl_waitq) &&
615 !rpc_task_has_priority(task, RPC_PRIORITY_PRIVILEGED)) {
616 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
617 spin_unlock(&tbl->slot_tbl_lock);
618 dprintk("%s enforce FIFO order\n", __func__);
619 return -EAGAIN;
620 }
621
Alexandros Batsakis40ead582009-12-14 21:27:54 -0800622 slotid = nfs4_find_slot(tbl);
Trond Myklebust45d43c22012-02-06 19:38:51 -0500623 if (slotid == NFS4_NO_SLOT) {
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400624 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
625 spin_unlock(&tbl->slot_tbl_lock);
626 dprintk("<-- %s: no free slots\n", __func__);
627 return -EAGAIN;
628 }
629 spin_unlock(&tbl->slot_tbl_lock);
630
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -0800631 rpc_task_set_priority(task, RPC_PRIORITY_NORMAL);
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400632 slot = tbl->slots + slotid;
Benny Halevy99fe60d2009-04-01 09:22:29 -0400633 args->sa_session = session;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400634 args->sa_slotid = slotid;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400635
636 dprintk("<-- %s slotid=%d seqid=%d\n", __func__, slotid, slot->seq_nr);
637
Benny Halevy99fe60d2009-04-01 09:22:29 -0400638 res->sr_session = session;
Benny Halevydfb4f3092010-09-24 09:17:01 -0400639 res->sr_slot = slot;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400640 res->sr_renewal_time = jiffies;
Trond Myklebust2a6e26c2010-06-16 09:52:25 -0400641 res->sr_status_flags = 0;
Andy Adamsonfbcd4ab2009-04-01 09:22:15 -0400642 /*
643 * sr_status is only set in decode_sequence, and so will remain
644 * set to 1 if an rpc level failure occurs.
645 */
646 res->sr_status = 1;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400647 return 0;
648}
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000649EXPORT_SYMBOL_GPL(nfs41_setup_sequence);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400650
Trond Myklebust035168a2010-06-16 09:52:26 -0400651int nfs4_setup_sequence(const struct nfs_server *server,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400652 struct nfs4_sequence_args *args,
653 struct nfs4_sequence_res *res,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400654 struct rpc_task *task)
655{
Trond Myklebust035168a2010-06-16 09:52:26 -0400656 struct nfs4_session *session = nfs4_get_session(server);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400657 int ret = 0;
658
Trond Myklebust9d12b212012-01-17 22:04:25 -0500659 if (session == NULL)
Andy Adamsonce5039c2009-04-01 09:22:13 -0400660 goto out;
Trond Myklebust035168a2010-06-16 09:52:26 -0400661
Geert Uytterhoeven12364a42010-10-28 20:06:19 +0200662 dprintk("--> %s clp %p session %p sr_slot %td\n",
Benny Halevydfb4f3092010-09-24 09:17:01 -0400663 __func__, session->clp, session, res->sr_slot ?
664 res->sr_slot - session->fc_slot_table.slots : -1);
Trond Myklebust035168a2010-06-16 09:52:26 -0400665
Trond Myklebust9d12b212012-01-17 22:04:25 -0500666 ret = nfs41_setup_sequence(session, args, res, task);
Andy Adamsonce5039c2009-04-01 09:22:13 -0400667out:
668 dprintk("<-- %s status=%d\n", __func__, ret);
669 return ret;
670}
671
672struct nfs41_call_sync_data {
Trond Myklebust035168a2010-06-16 09:52:26 -0400673 const struct nfs_server *seq_server;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400674 struct nfs4_sequence_args *seq_args;
675 struct nfs4_sequence_res *seq_res;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400676};
677
678static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
679{
680 struct nfs41_call_sync_data *data = calldata;
681
Trond Myklebust035168a2010-06-16 09:52:26 -0400682 dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server);
683
684 if (nfs4_setup_sequence(data->seq_server, data->seq_args,
Trond Myklebust9d12b212012-01-17 22:04:25 -0500685 data->seq_res, task))
Andy Adamsonce5039c2009-04-01 09:22:13 -0400686 return;
687 rpc_call_start(task);
688}
689
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800690static void nfs41_call_priv_sync_prepare(struct rpc_task *task, void *calldata)
691{
692 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
693 nfs41_call_sync_prepare(task, calldata);
694}
695
Andy Adamson69ab40c2009-04-01 09:22:19 -0400696static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
697{
698 struct nfs41_call_sync_data *data = calldata;
699
Trond Myklebust14516c32010-07-31 14:29:06 -0400700 nfs41_sequence_done(task, data->seq_res);
Andy Adamson69ab40c2009-04-01 09:22:19 -0400701}
702
Trond Myklebust17280172012-03-11 13:11:00 -0400703static const struct rpc_call_ops nfs41_call_sync_ops = {
Andy Adamsonce5039c2009-04-01 09:22:13 -0400704 .rpc_call_prepare = nfs41_call_sync_prepare,
Andy Adamson69ab40c2009-04-01 09:22:19 -0400705 .rpc_call_done = nfs41_call_sync_done,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400706};
707
Trond Myklebust17280172012-03-11 13:11:00 -0400708static const struct rpc_call_ops nfs41_call_priv_sync_ops = {
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800709 .rpc_call_prepare = nfs41_call_priv_sync_prepare,
710 .rpc_call_done = nfs41_call_sync_done,
711};
712
Bryan Schumaker7c513052011-03-24 17:12:24 +0000713static int nfs4_call_sync_sequence(struct rpc_clnt *clnt,
714 struct nfs_server *server,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400715 struct rpc_message *msg,
716 struct nfs4_sequence_args *args,
717 struct nfs4_sequence_res *res,
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800718 int privileged)
Andy Adamsonce5039c2009-04-01 09:22:13 -0400719{
720 int ret;
721 struct rpc_task *task;
722 struct nfs41_call_sync_data data = {
Trond Myklebust035168a2010-06-16 09:52:26 -0400723 .seq_server = server,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400724 .seq_args = args,
725 .seq_res = res,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400726 };
727 struct rpc_task_setup task_setup = {
Bryan Schumaker7c513052011-03-24 17:12:24 +0000728 .rpc_client = clnt,
Andy Adamsonce5039c2009-04-01 09:22:13 -0400729 .rpc_message = msg,
730 .callback_ops = &nfs41_call_sync_ops,
731 .callback_data = &data
732 };
733
Alexandros Batsakisb2579572009-12-14 21:27:57 -0800734 if (privileged)
735 task_setup.callback_ops = &nfs41_call_priv_sync_ops;
Andy Adamsonce5039c2009-04-01 09:22:13 -0400736 task = rpc_run_task(&task_setup);
737 if (IS_ERR(task))
738 ret = PTR_ERR(task);
739 else {
740 ret = task->tk_status;
741 rpc_put_task(task);
742 }
743 return ret;
744}
745
Bryan Schumaker7c513052011-03-24 17:12:24 +0000746int _nfs4_call_sync_session(struct rpc_clnt *clnt,
747 struct nfs_server *server,
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400748 struct rpc_message *msg,
749 struct nfs4_sequence_args *args,
750 struct nfs4_sequence_res *res,
751 int cache_reply)
752{
Trond Myklebust9d12b212012-01-17 22:04:25 -0500753 nfs41_init_sequence(args, res, cache_reply);
754 return nfs4_call_sync_sequence(clnt, server, msg, args, res, 0);
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400755}
756
Trond Myklebustdf896452010-06-16 09:52:26 -0400757#else
Trond Myklebust9d12b212012-01-17 22:04:25 -0500758static inline
759void nfs41_init_sequence(struct nfs4_sequence_args *args,
760 struct nfs4_sequence_res *res, int cache_reply)
761{
762}
763
Trond Myklebust14516c32010-07-31 14:29:06 -0400764static int nfs4_sequence_done(struct rpc_task *task,
765 struct nfs4_sequence_res *res)
Trond Myklebustdf896452010-06-16 09:52:26 -0400766{
Trond Myklebust14516c32010-07-31 14:29:06 -0400767 return 1;
Trond Myklebustdf896452010-06-16 09:52:26 -0400768}
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400769#endif /* CONFIG_NFS_V4_1 */
770
Bryan Schumaker7c513052011-03-24 17:12:24 +0000771int _nfs4_call_sync(struct rpc_clnt *clnt,
772 struct nfs_server *server,
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400773 struct rpc_message *msg,
774 struct nfs4_sequence_args *args,
775 struct nfs4_sequence_res *res,
776 int cache_reply)
777{
Trond Myklebust9d12b212012-01-17 22:04:25 -0500778 nfs41_init_sequence(args, res, cache_reply);
Bryan Schumaker7c513052011-03-24 17:12:24 +0000779 return rpc_call_sync(clnt, msg, 0);
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400780}
781
Bryan Schumakere73b83f2011-03-24 17:12:23 +0000782static inline
Bryan Schumaker7c513052011-03-24 17:12:24 +0000783int nfs4_call_sync(struct rpc_clnt *clnt,
784 struct nfs_server *server,
Bryan Schumakere73b83f2011-03-24 17:12:23 +0000785 struct rpc_message *msg,
786 struct nfs4_sequence_args *args,
787 struct nfs4_sequence_res *res,
788 int cache_reply)
789{
Bryan Schumaker7c513052011-03-24 17:12:24 +0000790 return server->nfs_client->cl_mvops->call_sync(clnt, server, msg,
791 args, res, cache_reply);
Bryan Schumakere73b83f2011-03-24 17:12:23 +0000792}
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400793
Trond Myklebust38478b22006-05-25 01:40:57 -0400794static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Trond Myklebust38478b22006-05-25 01:40:57 -0400796 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Trond Myklebust38478b22006-05-25 01:40:57 -0400798 spin_lock(&dir->i_lock);
Trond Myklebust359d7d12012-05-28 10:01:34 -0400799 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
Trond Myklebusta9a4a872011-10-17 16:08:46 -0700800 if (!cinfo->atomic || cinfo->before != dir->i_version)
Trond Myklebustbfc69a42007-10-15 18:18:29 -0400801 nfs_force_lookup_revalidate(dir);
Trond Myklebusta9a4a872011-10-17 16:08:46 -0700802 dir->i_version = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400803 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100806struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400807 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100808 struct nfs_openargs o_arg;
809 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100810 struct nfs_open_confirmargs c_arg;
811 struct nfs_open_confirmres c_res;
Trond Myklebust6926afd2012-01-07 13:22:46 -0500812 struct nfs4_string owner_name;
813 struct nfs4_string group_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100814 struct nfs_fattr f_attr;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100815 struct dentry *dir;
Al Viro82a2c1b2011-06-22 18:30:55 -0400816 struct dentry *dentry;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100817 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400818 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100819 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100820 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400821 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100822 int rpc_status;
823 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100824};
825
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400826
827static void nfs4_init_opendata_res(struct nfs4_opendata *p)
828{
829 p->o_res.f_attr = &p->f_attr;
Trond Myklebustc1d51932008-04-07 13:20:54 -0400830 p->o_res.seqid = p->o_arg.seqid;
831 p->c_res.seqid = p->c_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400832 p->o_res.server = p->o_arg.server;
833 nfs_fattr_init(&p->f_attr);
Trond Myklebust6926afd2012-01-07 13:22:46 -0500834 nfs_fattr_init_names(&p->f_attr, &p->owner_name, &p->group_name);
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400835}
836
Al Viro82a2c1b2011-06-22 18:30:55 -0400837static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry,
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500838 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400839 const struct iattr *attrs,
840 gfp_t gfp_mask)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100841{
Al Viro82a2c1b2011-06-22 18:30:55 -0400842 struct dentry *parent = dget_parent(dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100843 struct inode *dir = parent->d_inode;
844 struct nfs_server *server = NFS_SERVER(dir);
845 struct nfs4_opendata *p;
846
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400847 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100848 if (p == NULL)
849 goto err;
Trond Myklebust8535b2b2010-05-13 12:51:01 -0400850 p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid, gfp_mask);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100851 if (p->o_arg.seqid == NULL)
852 goto err_free;
Al Viro82a2c1b2011-06-22 18:30:55 -0400853 nfs_sb_active(dentry->d_sb);
854 p->dentry = dget(dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100855 p->dir = parent;
856 p->owner = sp;
857 atomic_inc(&sp->so_count);
858 p->o_arg.fh = NFS_FH(dir);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500859 p->o_arg.open_flags = flags;
860 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
David Howells7539bba2006-08-22 20:06:09 -0400861 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust95b72eb2012-04-20 19:24:51 -0400862 p->o_arg.id.create_time = ktime_to_ns(sp->so_seqid.create_time);
863 p->o_arg.id.uniquifier = sp->so_seqid.owner_id;
Al Viro82a2c1b2011-06-22 18:30:55 -0400864 p->o_arg.name = &dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100865 p->o_arg.server = server;
866 p->o_arg.bitmask = server->attr_bitmask;
Trond Myklebust1549210f2012-06-05 09:16:47 -0400867 p->o_arg.open_bitmap = &nfs4_fattr_bitmap[0];
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100868 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Trond Myklebust536e43d2012-01-17 22:04:26 -0500869 if (attrs != NULL && attrs->ia_valid != 0) {
Chuck Levercd937102012-03-02 17:14:31 -0500870 __be32 verf[2];
Trond Myklebustd77d76f2010-06-16 09:52:27 -0400871
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100872 p->o_arg.u.attrs = &p->attrs;
873 memcpy(&p->attrs, attrs, sizeof(p->attrs));
Chuck Levercd937102012-03-02 17:14:31 -0500874
875 verf[0] = jiffies;
876 verf[1] = current->pid;
877 memcpy(p->o_arg.u.verifier.data, verf,
878 sizeof(p->o_arg.u.verifier.data));
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100879 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100880 p->c_arg.fh = &p->o_res.fh;
881 p->c_arg.stateid = &p->o_res.stateid;
882 p->c_arg.seqid = p->o_arg.seqid;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400883 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400884 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100885 return p;
886err_free:
887 kfree(p);
888err:
889 dput(parent);
890 return NULL;
891}
892
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400893static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100894{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400895 struct nfs4_opendata *p = container_of(kref,
896 struct nfs4_opendata, kref);
Al Viro82a2c1b2011-06-22 18:30:55 -0400897 struct super_block *sb = p->dentry->d_sb;
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400898
899 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400900 if (p->state != NULL)
901 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400902 nfs4_put_state_owner(p->owner);
903 dput(p->dir);
Al Viro82a2c1b2011-06-22 18:30:55 -0400904 dput(p->dentry);
905 nfs_sb_deactive(sb);
Trond Myklebust6926afd2012-01-07 13:22:46 -0500906 nfs_fattr_free_names(&p->f_attr);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400907 kfree(p);
908}
909
910static void nfs4_opendata_put(struct nfs4_opendata *p)
911{
912 if (p != NULL)
913 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100914}
915
Trond Myklebust06f814a2006-01-03 09:55:07 +0100916static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
917{
Trond Myklebust06f814a2006-01-03 09:55:07 +0100918 int ret;
919
Trond Myklebust06f814a2006-01-03 09:55:07 +0100920 ret = rpc_wait_for_completion_task(task);
Trond Myklebust06f814a2006-01-03 09:55:07 +0100921 return ret;
922}
923
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500924static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400925{
926 int ret = 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500927
Trond Myklebust536e43d2012-01-17 22:04:26 -0500928 if (open_mode & (O_EXCL|O_TRUNC))
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500929 goto out;
930 switch (mode & (FMODE_READ|FMODE_WRITE)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400931 case FMODE_READ:
Trond Myklebust88069f72009-12-08 08:33:16 -0500932 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0
933 && state->n_rdonly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400934 break;
935 case FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -0500936 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0
937 && state->n_wronly != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400938 break;
939 case FMODE_READ|FMODE_WRITE:
Trond Myklebust88069f72009-12-08 08:33:16 -0500940 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0
941 && state->n_rdwr != 0;
Trond Myklebust6ee41262007-07-08 14:11:36 -0400942 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500943out:
Trond Myklebust6ee41262007-07-08 14:11:36 -0400944 return ret;
945}
946
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500947static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400948{
Trond Myklebust652f89f2011-12-09 19:05:58 -0500949 if (delegation == NULL)
950 return 0;
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500951 if ((delegation->type & fmode) != fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400952 return 0;
Trond Myklebust15c831b2008-12-23 15:21:39 -0500953 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
Trond Myklebustaac00a82007-07-05 19:02:21 -0400954 return 0;
Trond Myklebustb7391f42008-12-23 15:21:52 -0500955 nfs_mark_delegation_referenced(delegation);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400956 return 1;
957}
958
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500959static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
Trond Myklebuste7616922006-01-03 09:55:13 +0100960{
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500961 switch (fmode) {
Trond Myklebuste7616922006-01-03 09:55:13 +0100962 case FMODE_WRITE:
963 state->n_wronly++;
964 break;
965 case FMODE_READ:
966 state->n_rdonly++;
967 break;
968 case FMODE_READ|FMODE_WRITE:
969 state->n_rdwr++;
970 }
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500971 nfs4_state_set_mode_locked(state, state->state | fmode);
Trond Myklebuste7616922006-01-03 09:55:13 +0100972}
973
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500974static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400975{
976 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
Trond Myklebustf597c532012-03-04 18:13:56 -0500977 nfs4_stateid_copy(&state->stateid, stateid);
978 nfs4_stateid_copy(&state->open_stateid, stateid);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500979 switch (fmode) {
Trond Myklebust003707c2007-07-05 18:07:55 -0400980 case FMODE_READ:
981 set_bit(NFS_O_RDONLY_STATE, &state->flags);
982 break;
983 case FMODE_WRITE:
984 set_bit(NFS_O_WRONLY_STATE, &state->flags);
985 break;
986 case FMODE_READ|FMODE_WRITE:
987 set_bit(NFS_O_RDWR_STATE, &state->flags);
988 }
989}
990
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500991static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
Trond Myklebust003707c2007-07-05 18:07:55 -0400992{
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400993 write_seqlock(&state->seqlock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500994 nfs_set_open_stateid_locked(state, stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -0400995 write_sequnlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400996}
997
Trond Myklebustdc0b0272008-12-23 15:21:56 -0500998static 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 -0700999{
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001000 /*
1001 * Protect the call to nfs4_state_set_mode_locked and
1002 * serialise the stateid update
1003 */
1004 write_seqlock(&state->seqlock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001005 if (deleg_stateid != NULL) {
Trond Myklebustf597c532012-03-04 18:13:56 -05001006 nfs4_stateid_copy(&state->stateid, deleg_stateid);
Trond Myklebust003707c2007-07-05 18:07:55 -04001007 set_bit(NFS_DELEGATED_STATE, &state->flags);
1008 }
1009 if (open_stateid != NULL)
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001010 nfs_set_open_stateid_locked(state, open_stateid, fmode);
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001011 write_sequnlock(&state->seqlock);
1012 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001013 update_open_stateflags(state, fmode);
Trond Myklebustec073422005-10-20 14:22:47 -07001014 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015}
1016
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001017static 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 -05001018{
1019 struct nfs_inode *nfsi = NFS_I(state->inode);
1020 struct nfs_delegation *deleg_cur;
1021 int ret = 0;
1022
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001023 fmode &= (FMODE_READ|FMODE_WRITE);
Trond Myklebust34310432008-12-23 15:21:38 -05001024
1025 rcu_read_lock();
1026 deleg_cur = rcu_dereference(nfsi->delegation);
1027 if (deleg_cur == NULL)
1028 goto no_delegation;
1029
1030 spin_lock(&deleg_cur->lock);
1031 if (nfsi->delegation != deleg_cur ||
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001032 (deleg_cur->type & fmode) != fmode)
Trond Myklebust34310432008-12-23 15:21:38 -05001033 goto no_delegation_unlock;
1034
1035 if (delegation == NULL)
1036 delegation = &deleg_cur->stateid;
Trond Myklebustf597c532012-03-04 18:13:56 -05001037 else if (!nfs4_stateid_match(&deleg_cur->stateid, delegation))
Trond Myklebust34310432008-12-23 15:21:38 -05001038 goto no_delegation_unlock;
1039
Trond Myklebustb7391f42008-12-23 15:21:52 -05001040 nfs_mark_delegation_referenced(deleg_cur);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001041 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -05001042 ret = 1;
1043no_delegation_unlock:
1044 spin_unlock(&deleg_cur->lock);
1045no_delegation:
1046 rcu_read_unlock();
1047
1048 if (!ret && open_stateid != NULL) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001049 __update_open_stateid(state, open_stateid, NULL, fmode);
Trond Myklebust34310432008-12-23 15:21:38 -05001050 ret = 1;
1051 }
1052
1053 return ret;
1054}
1055
1056
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001057static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001058{
1059 struct nfs_delegation *delegation;
1060
1061 rcu_read_lock();
1062 delegation = rcu_dereference(NFS_I(inode)->delegation);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001063 if (delegation == NULL || (delegation->type & fmode) == fmode) {
Trond Myklebustaac00a82007-07-05 19:02:21 -04001064 rcu_read_unlock();
1065 return;
1066 }
1067 rcu_read_unlock();
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04001068 nfs4_inode_return_delegation(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001069}
1070
Trond Myklebust6ee41262007-07-08 14:11:36 -04001071static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -04001072{
1073 struct nfs4_state *state = opendata->state;
1074 struct nfs_inode *nfsi = NFS_I(state->inode);
1075 struct nfs_delegation *delegation;
Trond Myklebust536e43d2012-01-17 22:04:26 -05001076 int open_mode = opendata->o_arg.open_flags & (O_EXCL|O_TRUNC);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001077 fmode_t fmode = opendata->o_arg.fmode;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001078 nfs4_stateid stateid;
1079 int ret = -EAGAIN;
1080
Trond Myklebustaac00a82007-07-05 19:02:21 -04001081 for (;;) {
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001082 if (can_open_cached(state, fmode, open_mode)) {
Trond Myklebust6ee41262007-07-08 14:11:36 -04001083 spin_lock(&state->owner->so_lock);
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001084 if (can_open_cached(state, fmode, open_mode)) {
1085 update_open_stateflags(state, fmode);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001086 spin_unlock(&state->owner->so_lock);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001087 goto out_return_state;
1088 }
1089 spin_unlock(&state->owner->so_lock);
1090 }
Trond Myklebust34310432008-12-23 15:21:38 -05001091 rcu_read_lock();
1092 delegation = rcu_dereference(nfsi->delegation);
Trond Myklebust652f89f2011-12-09 19:05:58 -05001093 if (!can_open_delegated(delegation, fmode)) {
Trond Myklebust34310432008-12-23 15:21:38 -05001094 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001095 break;
Trond Myklebust34310432008-12-23 15:21:38 -05001096 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001097 /* Save the delegation */
Trond Myklebustf597c532012-03-04 18:13:56 -05001098 nfs4_stateid_copy(&stateid, &delegation->stateid);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001099 rcu_read_unlock();
Trond Myklebustaf22f942007-08-10 17:45:10 -04001100 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001101 if (ret != 0)
1102 goto out;
1103 ret = -EAGAIN;
Trond Myklebust34310432008-12-23 15:21:38 -05001104
1105 /* Try to update the stateid using the delegation */
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001106 if (update_open_stateid(state, NULL, &stateid, fmode))
Trond Myklebust34310432008-12-23 15:21:38 -05001107 goto out_return_state;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001108 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001109out:
1110 return ERR_PTR(ret);
1111out_return_state:
1112 atomic_inc(&state->count);
1113 return state;
1114}
1115
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001116static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
1117{
1118 struct inode *inode;
1119 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -04001120 struct nfs_delegation *delegation;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001121 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001122
Trond Myklebustaac00a82007-07-05 19:02:21 -04001123 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -04001124 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001125 goto out;
1126 }
1127
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001128 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001129 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001130 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001131 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001132 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -05001133 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001134 goto err;
1135 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001136 state = nfs4_get_open_state(inode, data->owner);
1137 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001138 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -04001139 if (data->o_res.delegation_type != 0) {
Trond Myklebust4e0038b2012-03-01 17:01:05 -05001140 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
Trond Myklebust549d6ed2007-07-03 16:42:45 -04001141 int delegation_flags = 0;
1142
Trond Myklebust003707c2007-07-05 18:07:55 -04001143 rcu_read_lock();
1144 delegation = rcu_dereference(NFS_I(inode)->delegation);
1145 if (delegation)
1146 delegation_flags = delegation->flags;
1147 rcu_read_unlock();
Trond Myklebust652f89f2011-12-09 19:05:58 -05001148 if (data->o_arg.claim == NFS4_OPEN_CLAIM_DELEGATE_CUR) {
1149 pr_err_ratelimited("NFS: Broken NFSv4 server %s is "
1150 "returning a delegation for "
1151 "OPEN(CLAIM_DELEGATE_CUR)\n",
Trond Myklebust4e0038b2012-03-01 17:01:05 -05001152 clp->cl_hostname);
Trond Myklebust652f89f2011-12-09 19:05:58 -05001153 } else if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
Trond Myklebust549d6ed2007-07-03 16:42:45 -04001154 nfs_inode_set_delegation(state->inode,
1155 data->owner->so_cred,
1156 &data->o_res);
1157 else
1158 nfs_inode_reclaim_delegation(state->inode,
1159 data->owner->so_cred,
1160 &data->o_res);
1161 }
Trond Myklebust34310432008-12-23 15:21:38 -05001162
1163 update_open_stateid(state, &data->o_res.stateid, NULL,
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001164 data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001165 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001166out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001167 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001168err_put_inode:
1169 iput(inode);
1170err:
1171 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001172}
1173
Trond Myklebust864472e2006-01-03 09:55:15 +01001174static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1175{
1176 struct nfs_inode *nfsi = NFS_I(state->inode);
1177 struct nfs_open_context *ctx;
1178
1179 spin_lock(&state->inode->i_lock);
1180 list_for_each_entry(ctx, &nfsi->open_files, list) {
1181 if (ctx->state != state)
1182 continue;
1183 get_nfs_open_context(ctx);
1184 spin_unlock(&state->inode->i_lock);
1185 return ctx;
1186 }
1187 spin_unlock(&state->inode->i_lock);
1188 return ERR_PTR(-ENOENT);
1189}
1190
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001191static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state)
1192{
1193 struct nfs4_opendata *opendata;
1194
Al Viro3d4ff432011-06-22 18:40:12 -04001195 opendata = nfs4_opendata_alloc(ctx->dentry, state->owner, 0, 0, NULL, GFP_NOFS);
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001196 if (opendata == NULL)
1197 return ERR_PTR(-ENOMEM);
1198 opendata->state = state;
1199 atomic_inc(&state->count);
1200 return opendata;
1201}
1202
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001203static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +01001204{
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001205 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001206 int ret;
1207
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001208 opendata->o_arg.open_flags = 0;
1209 opendata->o_arg.fmode = fmode;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001210 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1211 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1212 nfs4_init_opendata_res(opendata);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001213 ret = _nfs4_recover_proc_open(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001214 if (ret != 0)
1215 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001216 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001217 if (IS_ERR(newstate))
1218 return PTR_ERR(newstate);
Al Viro643168c2011-06-22 18:20:23 -04001219 nfs4_close_state(newstate, fmode);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001220 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001221 return 0;
1222}
1223
1224static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1225{
Trond Myklebust864472e2006-01-03 09:55:15 +01001226 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +01001227 int ret;
1228
1229 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001230 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +01001231 smp_rmb();
1232 if (state->n_rdwr != 0) {
Trond Myklebustb0ed9db2010-10-04 17:59:08 -04001233 clear_bit(NFS_O_RDWR_STATE, &state->flags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001234 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001235 if (ret != 0)
1236 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001237 if (newstate != state)
1238 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001239 }
1240 if (state->n_wronly != 0) {
Trond Myklebustb0ed9db2010-10-04 17:59:08 -04001241 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001242 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001243 if (ret != 0)
1244 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001245 if (newstate != state)
1246 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001247 }
1248 if (state->n_rdonly != 0) {
Trond Myklebustb0ed9db2010-10-04 17:59:08 -04001249 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001250 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +01001251 if (ret != 0)
1252 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001253 if (newstate != state)
1254 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +01001255 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001256 /*
1257 * We may have performed cached opens for all three recoveries.
1258 * Check if we need to update the current stateid.
1259 */
1260 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
Trond Myklebustf597c532012-03-04 18:13:56 -05001261 !nfs4_stateid_match(&state->stateid, &state->open_stateid)) {
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001262 write_seqlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001263 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
Trond Myklebustf597c532012-03-04 18:13:56 -05001264 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
Trond Myklebust8bda4e42007-07-09 10:45:42 -04001265 write_sequnlock(&state->seqlock);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001266 }
Trond Myklebust864472e2006-01-03 09:55:15 +01001267 return 0;
1268}
1269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270/*
1271 * OPEN_RECLAIM:
1272 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001274static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001276 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +01001277 struct nfs4_opendata *opendata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001278 fmode_t delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 int status;
1280
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001281 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1282 if (IS_ERR(opendata))
1283 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001284 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
1285 opendata->o_arg.fh = NFS_FH(state->inode);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001286 rcu_read_lock();
1287 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
Trond Myklebust15c831b2008-12-23 15:21:39 -05001288 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
Trond Myklebust65bbf6b2007-08-27 09:57:46 -04001289 delegation_type = delegation->type;
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -04001290 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +01001291 opendata->o_arg.u.delegation_type = delegation_type;
1292 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001293 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 return status;
1295}
1296
Trond Myklebust539cd032007-06-05 11:46:42 -04001297static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
1299 struct nfs_server *server = NFS_SERVER(state->inode);
1300 struct nfs4_exception exception = { };
1301 int err;
1302 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001303 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust168667c2010-10-19 19:47:49 -04001304 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001305 break;
1306 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 } while (exception.retry);
1308 return err;
1309}
1310
Trond Myklebust864472e2006-01-03 09:55:15 +01001311static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1312{
1313 struct nfs_open_context *ctx;
1314 int ret;
1315
1316 ctx = nfs4_state_find_open_context(state);
1317 if (IS_ERR(ctx))
1318 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001319 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001320 put_nfs_open_context(ctx);
1321 return ret;
1322}
1323
Trond Myklebust13437e12007-07-06 15:10:43 -04001324static 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 -07001325{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001326 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001327 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001329 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1330 if (IS_ERR(opendata))
1331 return PTR_ERR(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001332 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebustf597c532012-03-04 18:13:56 -05001333 nfs4_stateid_copy(&opendata->o_arg.u.delegation, stateid);
Trond Myklebust864472e2006-01-03 09:55:15 +01001334 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001335 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001336 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337}
1338
Trond Myklebust13437e12007-07-06 15:10:43 -04001339int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
1341 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -04001342 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 int err;
1344 do {
Trond Myklebust13437e12007-07-06 15:10:43 -04001345 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 switch (err) {
1347 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07001348 case -ENOENT:
1349 case -ESTALE:
1350 goto out;
Ricardo Labiagabcfa49f2009-12-07 09:22:29 -05001351 case -NFS4ERR_BADSESSION:
1352 case -NFS4ERR_BADSLOT:
1353 case -NFS4ERR_BAD_HIGH_SLOT:
1354 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1355 case -NFS4ERR_DEADSESSION:
Trond Myklebust9f594792012-05-27 13:02:53 -04001356 nfs4_schedule_session_recovery(server->nfs_client->cl_session, err);
Ricardo Labiagabcfa49f2009-12-07 09:22:29 -05001357 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 case -NFS4ERR_STALE_CLIENTID:
1359 case -NFS4ERR_STALE_STATEID:
1360 case -NFS4ERR_EXPIRED:
1361 /* Don't recall a delegation if it was lost */
Trond Myklebust0400a6b2011-03-09 16:00:53 -05001362 nfs4_schedule_lease_recovery(server->nfs_client);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001363 goto out;
1364 case -ERESTARTSYS:
1365 /*
1366 * The show must go on: exit, but mark the
1367 * stateid as needing recovery.
1368 */
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05001369 case -NFS4ERR_DELEG_REVOKED:
Trond Myklebust965b5d62009-06-17 13:22:59 -07001370 case -NFS4ERR_ADMIN_REVOKED:
1371 case -NFS4ERR_BAD_STATEID:
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05001372 nfs_inode_find_state_and_recover(state->inode,
1373 stateid);
Trond Myklebust0400a6b2011-03-09 16:00:53 -05001374 nfs4_schedule_stateid_recovery(server, state);
Trond Myklebust168667c2010-10-19 19:47:49 -04001375 case -EKEYEXPIRED:
1376 /*
1377 * User RPCSEC_GSS context has expired.
1378 * We cannot recover this stateid now, so
1379 * skip it and allow recovery thread to
1380 * proceed.
1381 */
Trond Myklebust965b5d62009-06-17 13:22:59 -07001382 case -ENOMEM:
1383 err = 0;
1384 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 }
1386 err = nfs4_handle_exception(server, err, &exception);
1387 } while (exception.retry);
Trond Myklebust965b5d62009-06-17 13:22:59 -07001388out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 return err;
1390}
1391
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001392static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1393{
1394 struct nfs4_opendata *data = calldata;
1395
1396 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001397 if (data->rpc_status == 0) {
Trond Myklebustf597c532012-03-04 18:13:56 -05001398 nfs4_stateid_copy(&data->o_res.stateid, &data->c_res.stateid);
Trond Myklebustbb226292008-01-02 15:19:18 -05001399 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001400 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -04001401 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001402 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001403}
1404
1405static void nfs4_open_confirm_release(void *calldata)
1406{
1407 struct nfs4_opendata *data = calldata;
1408 struct nfs4_state *state = NULL;
1409
1410 /* If this request hasn't been cancelled, do nothing */
1411 if (data->cancelled == 0)
1412 goto out_free;
1413 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001414 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001415 goto out_free;
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001416 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001417 if (!IS_ERR(state))
Al Viro643168c2011-06-22 18:20:23 -04001418 nfs4_close_state(state, data->o_arg.fmode);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001419out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001420 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001421}
1422
1423static const struct rpc_call_ops nfs4_open_confirm_ops = {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001424 .rpc_call_done = nfs4_open_confirm_done,
1425 .rpc_release = nfs4_open_confirm_release,
1426};
1427
1428/*
1429 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1430 */
1431static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
1432{
1433 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
1434 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001435 struct rpc_message msg = {
1436 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
1437 .rpc_argp = &data->c_arg,
1438 .rpc_resp = &data->c_res,
1439 .rpc_cred = data->owner->so_cred,
1440 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001441 struct rpc_task_setup task_setup_data = {
1442 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001443 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001444 .callback_ops = &nfs4_open_confirm_ops,
1445 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001446 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001447 .flags = RPC_TASK_ASYNC,
1448 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 int status;
1450
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001451 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001452 data->rpc_done = 0;
1453 data->rpc_status = 0;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001454 data->timestamp = jiffies;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001455 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05001456 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001457 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001458 status = nfs4_wait_for_completion_rpc_task(task);
1459 if (status != 0) {
1460 data->cancelled = 1;
1461 smp_wmb();
1462 } else
1463 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05001464 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 return status;
1466}
1467
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001468static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001470 struct nfs4_opendata *data = calldata;
1471 struct nfs4_state_owner *sp = data->owner;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001472
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001473 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
1474 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001475 /*
1476 * Check if we still need to send an OPEN call, or if we can use
1477 * a delegation instead.
1478 */
1479 if (data->state != NULL) {
1480 struct nfs_delegation *delegation;
1481
Trond Myklebustdc0b0272008-12-23 15:21:56 -05001482 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
Trond Myklebust6ee41262007-07-08 14:11:36 -04001483 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001484 rcu_read_lock();
1485 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
Trond Myklebust652f89f2011-12-09 19:05:58 -05001486 if (data->o_arg.claim != NFS4_OPEN_CLAIM_DELEGATE_CUR &&
1487 can_open_delegated(delegation, data->o_arg.fmode))
1488 goto unlock_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001489 rcu_read_unlock();
1490 }
Trond Myklebust95b72eb2012-04-20 19:24:51 -04001491 /* Update client id. */
Trond Myklebust1f0e8902010-06-24 15:11:43 -04001492 data->o_arg.clientid = sp->so_server->nfs_client->cl_clientid;
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001493 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) {
Trond Myklebust5138fde2007-07-14 15:40:01 -04001494 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001495 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
1496 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001497 data->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04001498 if (nfs4_setup_sequence(data->o_arg.server,
Andy Adamsond8985282009-04-01 09:22:21 -04001499 &data->o_arg.seq_args,
Trond Myklebust9d12b212012-01-17 22:04:25 -05001500 &data->o_res.seq_res, task))
Andy Adamsond8985282009-04-01 09:22:21 -04001501 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001502 rpc_call_start(task);
Trond Myklebust6ee41262007-07-08 14:11:36 -04001503 return;
Trond Myklebust652f89f2011-12-09 19:05:58 -05001504unlock_no_action:
1505 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -04001506out_no_action:
1507 task->tk_action = NULL;
1508
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001509}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001511static void nfs4_recover_open_prepare(struct rpc_task *task, void *calldata)
1512{
1513 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
1514 nfs4_open_prepare(task, calldata);
1515}
1516
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001517static void nfs4_open_done(struct rpc_task *task, void *calldata)
1518{
1519 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001521 data->rpc_status = task->tk_status;
Andy Adamsond8985282009-04-01 09:22:21 -04001522
Trond Myklebust14516c32010-07-31 14:29:06 -04001523 if (!nfs4_sequence_done(task, &data->o_res.seq_res))
1524 return;
Andy Adamsond8985282009-04-01 09:22:21 -04001525
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001526 if (task->tk_status == 0) {
1527 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -07001528 case S_IFREG:
1529 break;
1530 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001531 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001532 break;
1533 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001534 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001535 break;
1536 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001537 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -07001538 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01001539 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -04001540 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
1541 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -07001542 }
Trond Myklebust3e309912007-07-07 13:19:59 -04001543 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001544}
Trond Myklebust6f926b52005-10-18 14:20:18 -07001545
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001546static void nfs4_open_release(void *calldata)
1547{
1548 struct nfs4_opendata *data = calldata;
1549 struct nfs4_state *state = NULL;
1550
1551 /* If this request hasn't been cancelled, do nothing */
1552 if (data->cancelled == 0)
1553 goto out_free;
1554 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -04001555 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001556 goto out_free;
1557 /* In case we need an open_confirm, no cleanup! */
1558 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
1559 goto out_free;
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001560 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001561 if (!IS_ERR(state))
Al Viro643168c2011-06-22 18:20:23 -04001562 nfs4_close_state(state, data->o_arg.fmode);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001563out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001564 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001565}
1566
1567static const struct rpc_call_ops nfs4_open_ops = {
1568 .rpc_call_prepare = nfs4_open_prepare,
1569 .rpc_call_done = nfs4_open_done,
1570 .rpc_release = nfs4_open_release,
1571};
1572
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001573static const struct rpc_call_ops nfs4_recover_open_ops = {
1574 .rpc_call_prepare = nfs4_recover_open_prepare,
1575 .rpc_call_done = nfs4_open_done,
1576 .rpc_release = nfs4_open_release,
1577};
1578
1579static int nfs4_run_open_task(struct nfs4_opendata *data, int isrecover)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001580{
1581 struct inode *dir = data->dir->d_inode;
1582 struct nfs_server *server = NFS_SERVER(dir);
1583 struct nfs_openargs *o_arg = &data->o_arg;
1584 struct nfs_openres *o_res = &data->o_res;
1585 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04001586 struct rpc_message msg = {
1587 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
1588 .rpc_argp = o_arg,
1589 .rpc_resp = o_res,
1590 .rpc_cred = data->owner->so_cred,
1591 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04001592 struct rpc_task_setup task_setup_data = {
1593 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04001594 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001595 .callback_ops = &nfs4_open_ops,
1596 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001597 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04001598 .flags = RPC_TASK_ASYNC,
1599 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001600 int status;
1601
Trond Myklebust9d12b212012-01-17 22:04:25 -05001602 nfs41_init_sequence(&o_arg->seq_args, &o_res->seq_res, 1);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001603 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -04001604 data->rpc_done = 0;
1605 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -04001606 data->cancelled = 0;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001607 if (isrecover)
1608 task_setup_data.callback_ops = &nfs4_recover_open_ops;
Trond Myklebustc970aa82007-07-14 15:39:59 -04001609 task = rpc_run_task(&task_setup_data);
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001610 if (IS_ERR(task))
1611 return PTR_ERR(task);
1612 status = nfs4_wait_for_completion_rpc_task(task);
1613 if (status != 0) {
1614 data->cancelled = 1;
1615 smp_wmb();
1616 } else
1617 status = data->rpc_status;
1618 rpc_put_task(task);
1619
1620 return status;
1621}
1622
1623static int _nfs4_recover_proc_open(struct nfs4_opendata *data)
1624{
1625 struct inode *dir = data->dir->d_inode;
1626 struct nfs_openres *o_res = &data->o_res;
1627 int status;
1628
1629 status = nfs4_run_open_task(data, 1);
1630 if (status != 0 || !data->rpc_done)
1631 return status;
1632
Trond Myklebust6926afd2012-01-07 13:22:46 -05001633 nfs_fattr_map_and_free_names(NFS_SERVER(dir), &data->f_attr);
1634
Alexandros Batsakisb2579572009-12-14 21:27:57 -08001635 if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
1636 status = _nfs4_proc_open_confirm(data);
1637 if (status != 0)
1638 return status;
1639 }
1640
1641 return status;
1642}
1643
1644/*
1645 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1646 */
1647static int _nfs4_proc_open(struct nfs4_opendata *data)
1648{
1649 struct inode *dir = data->dir->d_inode;
1650 struct nfs_server *server = NFS_SERVER(dir);
1651 struct nfs_openargs *o_arg = &data->o_arg;
1652 struct nfs_openres *o_res = &data->o_res;
1653 int status;
1654
1655 status = nfs4_run_open_task(data, 0);
Trond Myklebust08ef7bd2011-10-18 16:11:49 -07001656 if (!data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001657 return status;
Trond Myklebust08ef7bd2011-10-18 16:11:49 -07001658 if (status != 0) {
1659 if (status == -NFS4ERR_BADNAME &&
1660 !(o_arg->open_flags & O_CREAT))
1661 return -ENOENT;
1662 return status;
1663 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001664
Trond Myklebust6926afd2012-01-07 13:22:46 -05001665 nfs_fattr_map_and_free_names(server, &data->f_attr);
1666
Trond Myklebust90ff0c52012-04-27 13:48:18 -04001667 if (o_arg->open_flags & O_CREAT)
Trond Myklebust56ae19f2005-10-27 22:12:40 -04001668 update_changeattr(dir, &o_res->cinfo);
Trond Myklebust0df5dd42010-04-11 16:48:44 -04001669 if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0)
1670 server->caps &= ~NFS_CAP_POSIX_LOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +01001672 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001674 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }
1676 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
Trond Myklebust99367812007-07-17 21:52:41 -04001677 _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001678 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
Andy Adamsond83217c2011-03-01 01:34:17 +00001681static int nfs4_client_recover_expired_lease(struct nfs_client *clp)
Trond Myklebust58d97142006-01-03 09:55:24 +01001682{
Trond Myklebusta78cb572009-08-09 15:06:19 -04001683 unsigned int loop;
Trond Myklebust6b309542006-09-14 14:03:14 -04001684 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001685
Trond Myklebusta78cb572009-08-09 15:06:19 -04001686 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
Trond Myklebust65de8722008-12-23 15:21:44 -05001687 ret = nfs4_wait_clnt_recover(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -04001688 if (ret != 0)
Trond Myklebusta78cb572009-08-09 15:06:19 -04001689 break;
Trond Myklebuste598d842008-12-23 15:21:42 -05001690 if (!test_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state) &&
1691 !test_bit(NFS4CLNT_CHECK_LEASE,&clp->cl_state))
Trond Myklebust6b309542006-09-14 14:03:14 -04001692 break;
Trond Myklebust0400a6b2011-03-09 16:00:53 -05001693 nfs4_schedule_state_manager(clp);
Trond Myklebusta78cb572009-08-09 15:06:19 -04001694 ret = -EIO;
Trond Myklebust6b309542006-09-14 14:03:14 -04001695 }
Trond Myklebusta78cb572009-08-09 15:06:19 -04001696 return ret;
Trond Myklebust58d97142006-01-03 09:55:24 +01001697}
1698
Andy Adamsond83217c2011-03-01 01:34:17 +00001699static int nfs4_recover_expired_lease(struct nfs_server *server)
1700{
1701 return nfs4_client_recover_expired_lease(server->nfs_client);
1702}
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704/*
1705 * OPEN_EXPIRED:
1706 * reclaim state on the server after a network partition.
1707 * Assumes caller holds the appropriate lock
1708 */
Trond Myklebust539cd032007-06-05 11:46:42 -04001709static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001711 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +01001712 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Trond Myklebust6f220ed2007-07-17 21:50:45 -04001714 opendata = nfs4_open_recoverdata_alloc(ctx, state);
1715 if (IS_ERR(opendata))
1716 return PTR_ERR(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001717 ret = nfs4_open_recover(opendata, state);
Trond Myklebust35d05772008-04-05 15:54:17 -04001718 if (ret == -ESTALE)
Al Viro3d4ff432011-06-22 18:40:12 -04001719 d_drop(ctx->dentry);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001720 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001721 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001724static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001725{
Trond Myklebust539cd032007-06-05 11:46:42 -04001726 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001727 struct nfs4_exception exception = { };
1728 int err;
1729
1730 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001731 err = _nfs4_open_expired(ctx, state);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001732 switch (err) {
1733 default:
1734 goto out;
1735 case -NFS4ERR_GRACE:
1736 case -NFS4ERR_DELAY:
1737 nfs4_handle_exception(server, err, &exception);
1738 err = 0;
1739 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00001740 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05001741out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00001742 return err;
1743}
1744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1746{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001748 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Trond Myklebust864472e2006-01-03 09:55:15 +01001750 ctx = nfs4_state_find_open_context(state);
1751 if (IS_ERR(ctx))
1752 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001753 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001754 put_nfs_open_context(ctx);
1755 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756}
1757
Bryan Schumakerf062eb62011-06-02 14:59:10 -04001758#if defined(CONFIG_NFS_V4_1)
Chuck Lever3e60ffd2012-07-11 16:30:14 -04001759static void nfs41_clear_delegation_stateid(struct nfs4_state *state)
Bryan Schumakerf062eb62011-06-02 14:59:10 -04001760{
Bryan Schumakerf062eb62011-06-02 14:59:10 -04001761 struct nfs_server *server = NFS_SERVER(state->inode);
Chuck Lever3e60ffd2012-07-11 16:30:14 -04001762 nfs4_stateid *stateid = &state->stateid;
1763 int status;
Bryan Schumakerf062eb62011-06-02 14:59:10 -04001764
Chuck Lever3e60ffd2012-07-11 16:30:14 -04001765 /* If a state reset has been done, test_stateid is unneeded */
1766 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1767 return;
1768
1769 status = nfs41_test_stateid(server, stateid);
1770 if (status != NFS_OK) {
1771 /* Free the stateid unless the server explicitly
1772 * informs us the stateid is unrecognized. */
1773 if (status != -NFS4ERR_BAD_STATEID)
1774 nfs41_free_stateid(server, stateid);
1775
1776 clear_bit(NFS_DELEGATED_STATE, &state->flags);
1777 }
1778}
1779
1780/**
1781 * nfs41_check_open_stateid - possibly free an open stateid
1782 *
1783 * @state: NFSv4 state for an inode
1784 *
1785 * Returns NFS_OK if recovery for this stateid is now finished.
1786 * Otherwise a negative NFS4ERR value is returned.
1787 */
1788static int nfs41_check_open_stateid(struct nfs4_state *state)
1789{
1790 struct nfs_server *server = NFS_SERVER(state->inode);
1791 nfs4_stateid *stateid = &state->stateid;
1792 int status;
1793
1794 /* If a state reset has been done, test_stateid is unneeded */
1795 if ((test_bit(NFS_O_RDONLY_STATE, &state->flags) == 0) &&
1796 (test_bit(NFS_O_WRONLY_STATE, &state->flags) == 0) &&
1797 (test_bit(NFS_O_RDWR_STATE, &state->flags) == 0))
1798 return -NFS4ERR_BAD_STATEID;
1799
1800 status = nfs41_test_stateid(server, stateid);
1801 if (status != NFS_OK) {
1802 /* Free the stateid unless the server explicitly
1803 * informs us the stateid is unrecognized. */
1804 if (status != -NFS4ERR_BAD_STATEID)
1805 nfs41_free_stateid(server, stateid);
1806
1807 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1808 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1809 clear_bit(NFS_O_RDWR_STATE, &state->flags);
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05001810 }
1811 return status;
1812}
1813
1814static int nfs41_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1815{
Chuck Levereb64cf92012-07-11 16:30:05 -04001816 int status;
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05001817
Chuck Lever3e60ffd2012-07-11 16:30:14 -04001818 nfs41_clear_delegation_stateid(state);
1819 status = nfs41_check_open_stateid(state);
Chuck Levereb64cf92012-07-11 16:30:05 -04001820 if (status != NFS_OK)
1821 status = nfs4_open_expired(sp, state);
1822 return status;
Bryan Schumakerf062eb62011-06-02 14:59:10 -04001823}
1824#endif
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001827 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1828 * fields corresponding to attributes that were used to store the verifier.
1829 * Make sure we clobber those fields in the later setattr call
1830 */
1831static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1832{
1833 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1834 !(sattr->ia_valid & ATTR_ATIME_SET))
1835 sattr->ia_valid |= ATTR_ATIME;
1836
1837 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1838 !(sattr->ia_valid & ATTR_MTIME_SET))
1839 sattr->ia_valid |= ATTR_MTIME;
1840}
1841
1842/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001843 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 */
Andy Adamson82be4172012-05-23 05:02:35 -04001845static int _nfs4_do_open(struct inode *dir,
1846 struct dentry *dentry,
1847 fmode_t fmode,
1848 int flags,
1849 struct iattr *sattr,
1850 struct rpc_cred *cred,
1851 struct nfs4_state **res,
1852 struct nfs4_threshold **ctx_th)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
1854 struct nfs4_state_owner *sp;
1855 struct nfs4_state *state = NULL;
1856 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001857 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001858 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 status = -ENOMEM;
Trond Myklebustd1e284d2012-01-17 22:04:24 -05001862 sp = nfs4_get_state_owner(server, cred, GFP_KERNEL);
1863 if (sp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1865 goto out_err;
1866 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001867 status = nfs4_recover_expired_lease(server);
1868 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001869 goto err_put_state_owner;
Al Viro82a2c1b2011-06-22 18:30:55 -04001870 if (dentry->d_inode != NULL)
1871 nfs4_return_incompatible_delegation(dentry->d_inode, fmode);
Trond Myklebust58d97142006-01-03 09:55:24 +01001872 status = -ENOMEM;
Al Viro82a2c1b2011-06-22 18:30:55 -04001873 opendata = nfs4_opendata_alloc(dentry, sp, fmode, flags, sattr, GFP_KERNEL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001874 if (opendata == NULL)
Trond Myklebust95d35cb2008-12-23 15:21:45 -05001875 goto err_put_state_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Andy Adamson82be4172012-05-23 05:02:35 -04001877 if (ctx_th && server->attr_bitmask[2] & FATTR4_WORD2_MDSTHRESHOLD) {
1878 opendata->f_attr.mdsthreshold = pnfs_mdsthreshold_alloc();
1879 if (!opendata->f_attr.mdsthreshold)
1880 goto err_opendata_put;
Trond Myklebust1549210f2012-06-05 09:16:47 -04001881 opendata->o_arg.open_bitmap = &nfs4_pnfs_open_bitmap[0];
Andy Adamson82be4172012-05-23 05:02:35 -04001882 }
Al Viro82a2c1b2011-06-22 18:30:55 -04001883 if (dentry->d_inode != NULL)
1884 opendata->state = nfs4_get_open_state(dentry->d_inode, sp);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001885
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001886 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001888 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001890 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001891 status = PTR_ERR(state);
1892 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001893 goto err_opendata_put;
Trond Myklebust0df5dd42010-04-11 16:48:44 -04001894 if (server->caps & NFS_CAP_POSIX_LOCK)
Trond Myklebust8e469eb2010-01-26 15:42:30 -05001895 set_bit(NFS_STATE_POSIX_LOCKS, &state->flags);
Trond Myklebust0ab64e02010-04-16 16:22:51 -04001896
1897 if (opendata->o_arg.open_flags & O_EXCL) {
1898 nfs4_exclusive_attrset(opendata, sattr);
1899
1900 nfs_fattr_init(opendata->o_res.f_attr);
1901 status = nfs4_do_setattr(state->inode, cred,
1902 opendata->o_res.f_attr, sattr,
1903 state);
1904 if (status == 0)
1905 nfs_setattr_update_inode(state->inode, sattr);
1906 nfs_post_op_update_inode(state->inode, opendata->o_res.f_attr);
1907 }
Andy Adamson82be4172012-05-23 05:02:35 -04001908
1909 if (pnfs_use_threshold(ctx_th, opendata->f_attr.mdsthreshold, server))
1910 *ctx_th = opendata->f_attr.mdsthreshold;
1911 else
1912 kfree(opendata->f_attr.mdsthreshold);
1913 opendata->f_attr.mdsthreshold = NULL;
1914
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001915 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 *res = state;
1918 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001919err_opendata_put:
Andy Adamson82be4172012-05-23 05:02:35 -04001920 kfree(opendata->f_attr.mdsthreshold);
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001921 nfs4_opendata_put(opendata);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001922err_put_state_owner:
1923 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 *res = NULL;
1926 return status;
1927}
1928
1929
Andy Adamson82be4172012-05-23 05:02:35 -04001930static struct nfs4_state *nfs4_do_open(struct inode *dir,
1931 struct dentry *dentry,
1932 fmode_t fmode,
1933 int flags,
1934 struct iattr *sattr,
1935 struct rpc_cred *cred,
1936 struct nfs4_threshold **ctx_th)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
1938 struct nfs4_exception exception = { };
1939 struct nfs4_state *res;
1940 int status;
1941
Trond Myklebust2d0dbc62012-06-08 10:58:09 -04001942 fmode &= FMODE_READ|FMODE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 do {
Andy Adamson82be4172012-05-23 05:02:35 -04001944 status = _nfs4_do_open(dir, dentry, fmode, flags, sattr, cred,
1945 &res, ctx_th);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (status == 0)
1947 break;
1948 /* NOTE: BAD_SEQID means the server and client disagree about the
1949 * book-keeping w.r.t. state-changing operations
1950 * (OPEN/CLOSE/LOCK/LOCKU...)
1951 * It is actually a sign of a bug on the client or on the server.
1952 *
1953 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001954 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 * have unhashed the old state_owner for us, and that we can
1956 * therefore safely retry using a new one. We should still warn
1957 * the user though...
1958 */
1959 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust9a3ba432012-03-12 18:01:48 -04001960 pr_warn_ratelimited("NFS: v4 server %s "
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001961 " returned a bad sequence-id error!\n",
1962 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 exception.retry = 1;
1964 continue;
1965 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001966 /*
1967 * BAD_STATEID on OPEN means that the server cancelled our
1968 * state before it received the OPEN_CONFIRM.
1969 * Recover by retrying the request as per the discussion
1970 * on Page 181 of RFC3530.
1971 */
1972 if (status == -NFS4ERR_BAD_STATEID) {
1973 exception.retry = 1;
1974 continue;
1975 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001976 if (status == -EAGAIN) {
1977 /* We must have found a delegation */
1978 exception.retry = 1;
1979 continue;
1980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1982 status, &exception));
1983 } while (exception.retry);
1984 return res;
1985}
1986
Trond Myklebust659bfcd2008-06-10 19:39:41 -04001987static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
1988 struct nfs_fattr *fattr, struct iattr *sattr,
1989 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001991 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001993 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 .iap = sattr,
1995 .server = server,
1996 .bitmask = server->attr_bitmask,
1997 };
1998 struct nfs_setattrres res = {
1999 .fattr = fattr,
2000 .server = server,
2001 };
2002 struct rpc_message msg = {
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002003 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
2004 .rpc_argp = &arg,
2005 .rpc_resp = &res,
2006 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01002008 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04002009 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Trond Myklebust0e574af2005-10-27 22:12:38 -04002011 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Trond Myklebust4fc87962012-03-08 17:42:01 -05002013 if (state != NULL) {
2014 nfs4_select_rw_stateid(&arg.stateid, state, FMODE_WRITE,
2015 current->files, current->tgid);
2016 } else if (nfs4_copy_delegation_stateid(&arg.stateid, inode,
2017 FMODE_WRITE)) {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05002018 /* Use that stateid */
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002019 } else
Trond Myklebustf597c532012-03-04 18:13:56 -05002020 nfs4_stateid_copy(&arg.stateid, &zero_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Bryan Schumaker7c513052011-03-24 17:12:24 +00002022 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Trond Myklebust26e976a2006-01-03 09:55:21 +01002023 if (status == 0 && state != NULL)
2024 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04002025 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026}
2027
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002028static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
2029 struct nfs_fattr *fattr, struct iattr *sattr,
2030 struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05002032 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05002033 struct nfs4_exception exception = {
2034 .state = state,
Trond Myklebust3114ea72012-03-07 16:39:06 -05002035 .inode = inode,
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05002036 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 int err;
2038 do {
Trond Myklebust451146b2012-04-18 16:29:11 -04002039 err = _nfs4_do_setattr(inode, cred, fattr, sattr, state);
2040 switch (err) {
2041 case -NFS4ERR_OPENMODE:
2042 if (state && !(state->state & FMODE_WRITE)) {
2043 err = -EBADF;
2044 if (sattr->ia_valid & ATTR_OPEN)
2045 err = -EACCES;
2046 goto out;
2047 }
2048 }
2049 err = nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 } while (exception.retry);
Trond Myklebust451146b2012-04-18 16:29:11 -04002051out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 return err;
2053}
2054
2055struct nfs4_closedata {
2056 struct inode *inode;
2057 struct nfs4_state *state;
2058 struct nfs_closeargs arg;
2059 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04002060 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01002061 unsigned long timestamp;
Fred Isamanf7e89172011-01-06 11:36:32 +00002062 bool roc;
2063 u32 roc_barrier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064};
2065
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002066static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07002067{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002068 struct nfs4_closedata *calldata = data;
2069 struct nfs4_state_owner *sp = calldata->state->owner;
Al Viro643168c2011-06-22 18:20:23 -04002070 struct super_block *sb = calldata->state->inode->i_sb;
Trond Myklebust95121352005-10-18 14:20:12 -07002071
Fred Isamanf7e89172011-01-06 11:36:32 +00002072 if (calldata->roc)
2073 pnfs_roc_release(calldata->state->inode);
Trond Myklebust95121352005-10-18 14:20:12 -07002074 nfs4_put_open_state(calldata->state);
2075 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07002076 nfs4_put_state_owner(sp);
Al Viro643168c2011-06-22 18:20:23 -04002077 nfs_sb_deactive(sb);
Trond Myklebust95121352005-10-18 14:20:12 -07002078 kfree(calldata);
2079}
2080
Trond Myklebust88069f72009-12-08 08:33:16 -05002081static void nfs4_close_clear_stateid_flags(struct nfs4_state *state,
2082 fmode_t fmode)
2083{
2084 spin_lock(&state->owner->so_lock);
2085 if (!(fmode & FMODE_READ))
2086 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
2087 if (!(fmode & FMODE_WRITE))
2088 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
2089 clear_bit(NFS_O_RDWR_STATE, &state->flags);
2090 spin_unlock(&state->owner->so_lock);
2091}
2092
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002093static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002095 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 struct nfs_server *server = NFS_SERVER(calldata->inode);
2098
Chuck Levera3ca5652012-03-01 17:00:40 -05002099 dprintk("%s: begin!\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04002100 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
2101 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 /* hmm. we are done with the inode, and in the process of freeing
2103 * the state_owner. we keep this around to process errors
2104 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 switch (task->tk_status) {
2106 case 0:
Fred Isamanf7e89172011-01-06 11:36:32 +00002107 if (calldata->roc)
2108 pnfs_roc_set_barrier(state->inode,
2109 calldata->roc_barrier);
Trond Myklebust45328c32007-07-26 17:47:34 -04002110 nfs_set_open_stateid(state, &calldata->res.stateid, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01002111 renew_lease(server, calldata->timestamp);
Trond Myklebust88069f72009-12-08 08:33:16 -05002112 nfs4_close_clear_stateid_flags(state,
2113 calldata->arg.fmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 break;
2115 case -NFS4ERR_STALE_STATEID:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002116 case -NFS4ERR_OLD_STATEID:
2117 case -NFS4ERR_BAD_STATEID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 case -NFS4ERR_EXPIRED:
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002119 if (calldata->arg.fmode == 0)
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002120 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 default:
Trond Myklebust72211db2009-12-15 14:47:36 -05002122 if (nfs4_async_handle_error(task, server, state) == -EAGAIN)
2123 rpc_restart_call_prepare(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 }
Trond Myklebust72211db2009-12-15 14:47:36 -05002125 nfs_release_seqid(calldata->arg.seqid);
Trond Myklebust516a6af2005-10-27 22:12:41 -04002126 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Chuck Levera3ca5652012-03-01 17:00:40 -05002127 dprintk("%s: done, ret = %d!\n", __func__, task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128}
2129
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01002130static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01002132 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07002133 struct nfs4_state *state = calldata->state;
Trond Myklebust88069f72009-12-08 08:33:16 -05002134 int call_close = 0;
Trond Myklebust95121352005-10-18 14:20:12 -07002135
Chuck Levera3ca5652012-03-01 17:00:40 -05002136 dprintk("%s: begin!\n", __func__);
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002137 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07002138 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04002139
Trond Myklebust88069f72009-12-08 08:33:16 -05002140 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
2141 calldata->arg.fmode = FMODE_READ|FMODE_WRITE;
Trond Myklebust4cecb762005-11-04 15:32:58 -05002142 spin_lock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04002143 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01002144 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04002145 if (state->n_rdonly == 0) {
Trond Myklebust88069f72009-12-08 08:33:16 -05002146 call_close |= test_bit(NFS_O_RDONLY_STATE, &state->flags);
2147 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
2148 calldata->arg.fmode &= ~FMODE_READ;
Trond Myklebust003707c2007-07-05 18:07:55 -04002149 }
2150 if (state->n_wronly == 0) {
Trond Myklebust88069f72009-12-08 08:33:16 -05002151 call_close |= test_bit(NFS_O_WRONLY_STATE, &state->flags);
2152 call_close |= test_bit(NFS_O_RDWR_STATE, &state->flags);
2153 calldata->arg.fmode &= ~FMODE_WRITE;
Trond Myklebust003707c2007-07-05 18:07:55 -04002154 }
Trond Myklebuste7616922006-01-03 09:55:13 +01002155 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05002156 spin_unlock(&state->owner->so_lock);
Trond Myklebust88069f72009-12-08 08:33:16 -05002157
2158 if (!call_close) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002159 /* Note: exit _without_ calling nfs4_close_done */
2160 task->tk_action = NULL;
Chuck Levera3ca5652012-03-01 17:00:40 -05002161 goto out;
Trond Myklebust95121352005-10-18 14:20:12 -07002162 }
Trond Myklebust88069f72009-12-08 08:33:16 -05002163
Fred Isamanf7e89172011-01-06 11:36:32 +00002164 if (calldata->arg.fmode == 0) {
Trond Myklebust88069f72009-12-08 08:33:16 -05002165 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE];
Fred Isamanf7e89172011-01-06 11:36:32 +00002166 if (calldata->roc &&
2167 pnfs_roc_drain(calldata->inode, &calldata->roc_barrier)) {
2168 rpc_sleep_on(&NFS_SERVER(calldata->inode)->roc_rpcwaitq,
2169 task, NULL);
Chuck Levera3ca5652012-03-01 17:00:40 -05002170 goto out;
Fred Isamanf7e89172011-01-06 11:36:32 +00002171 }
2172 }
Trond Myklebust88069f72009-12-08 08:33:16 -05002173
Trond Myklebust516a6af2005-10-27 22:12:41 -04002174 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01002175 calldata->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04002176 if (nfs4_setup_sequence(NFS_SERVER(calldata->inode),
Trond Myklebust9d12b212012-01-17 22:04:25 -05002177 &calldata->arg.seq_args,
2178 &calldata->res.seq_res,
2179 task))
Chuck Levera3ca5652012-03-01 17:00:40 -05002180 goto out;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002181 rpc_call_start(task);
Chuck Levera3ca5652012-03-01 17:00:40 -05002182out:
2183 dprintk("%s: done!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184}
2185
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002186static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01002187 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002188 .rpc_call_done = nfs4_close_done,
2189 .rpc_release = nfs4_free_closedata,
2190};
2191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192/*
2193 * It is possible for data to be read/written from a mem-mapped file
2194 * after the sys_close call (which hits the vfs layer as a flush).
2195 * This means that we can't safely call nfsv4 close on a file until
2196 * the inode is cleared. This in turn means that we are not good
2197 * NFSv4 citizens - we do not indicate to the server to update the file's
2198 * share state even when we are done with one of the three share
2199 * stateid's in the inode.
2200 *
2201 * NOTE: Caller must be holding the sp->so_owner semaphore!
2202 */
Al Viro643168c2011-06-22 18:20:23 -04002203int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait, bool roc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04002205 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04002207 struct nfs4_state_owner *sp = state->owner;
2208 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04002209 struct rpc_message msg = {
2210 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
2211 .rpc_cred = state->owner->so_cred,
2212 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04002213 struct rpc_task_setup task_setup_data = {
2214 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04002215 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002216 .callback_ops = &nfs4_close_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05002217 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04002218 .flags = RPC_TASK_ASYNC,
2219 };
Trond Myklebust95121352005-10-18 14:20:12 -07002220 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Trond Myklebust8535b2b2010-05-13 12:51:01 -04002222 calldata = kzalloc(sizeof(*calldata), gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07002224 goto out;
Trond Myklebust9d12b212012-01-17 22:04:25 -05002225 nfs41_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 1);
Trond Myklebust4a35bd42007-06-05 10:31:33 -04002226 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04002228 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04002229 calldata->arg.stateid = &state->open_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 /* Serialization for the sequence id */
Trond Myklebust8535b2b2010-05-13 12:51:01 -04002231 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid, gfp_mask);
Trond Myklebust95121352005-10-18 14:20:12 -07002232 if (calldata->arg.seqid == NULL)
2233 goto out_free_calldata;
Trond Myklebustdc0b0272008-12-23 15:21:56 -05002234 calldata->arg.fmode = 0;
Trond Myklebusta65318b2009-03-11 14:10:28 -04002235 calldata->arg.bitmask = server->cache_consistency_bitmask;
Trond Myklebust516a6af2005-10-27 22:12:41 -04002236 calldata->res.fattr = &calldata->fattr;
Trond Myklebustc1d51932008-04-07 13:20:54 -04002237 calldata->res.seqid = calldata->arg.seqid;
Trond Myklebust516a6af2005-10-27 22:12:41 -04002238 calldata->res.server = server;
Fred Isamanf7e89172011-01-06 11:36:32 +00002239 calldata->roc = roc;
Al Viro643168c2011-06-22 18:20:23 -04002240 nfs_sb_active(calldata->inode->i_sb);
Trond Myklebust95121352005-10-18 14:20:12 -07002241
Trond Myklebust1174dd12010-12-21 10:52:24 -05002242 msg.rpc_argp = &calldata->arg;
2243 msg.rpc_resp = &calldata->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04002244 task_setup_data.callback_data = calldata;
2245 task = rpc_run_task(&task_setup_data);
Trond Myklebustb39e6252007-06-11 23:05:07 -04002246 if (IS_ERR(task))
2247 return PTR_ERR(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04002248 status = 0;
2249 if (wait)
2250 status = rpc_wait_for_completion_task(task);
Trond Myklebustb39e6252007-06-11 23:05:07 -04002251 rpc_put_task(task);
Trond Myklebusta49c3c72007-10-18 18:03:27 -04002252 return status;
Trond Myklebust95121352005-10-18 14:20:12 -07002253out_free_calldata:
2254 kfree(calldata);
2255out:
Fred Isamanf7e89172011-01-06 11:36:32 +00002256 if (roc)
2257 pnfs_roc_release(state->inode);
Trond Myklebustb39e6252007-06-11 23:05:07 -04002258 nfs4_put_open_state(state);
2259 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07002260 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261}
2262
Trond Myklebust2b484292010-09-17 10:56:51 -04002263static struct inode *
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04002264nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx, int open_flags, struct iattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 struct nfs4_state *state;
2267
Trond Myklebust565277f2007-10-15 18:17:53 -04002268 /* Protect against concurrent sillydeletes */
Andy Adamson82be4172012-05-23 05:02:35 -04002269 state = nfs4_do_open(dir, ctx->dentry, ctx->mode, open_flags, attr,
2270 ctx->cred, &ctx->mdsthreshold);
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04002271 if (IS_ERR(state))
2272 return ERR_CAST(state);
Trond Myklebustcd9a1c02010-09-17 10:56:50 -04002273 ctx->state = state;
Trond Myklebustf46e0bd2010-09-17 10:56:50 -04002274 return igrab(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275}
2276
Trond Myklebust1185a552009-12-03 15:54:02 -05002277static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
Trond Myklebust7fe5c392009-03-19 15:35:50 -04002278{
2279 if (ctx->state == NULL)
2280 return;
2281 if (is_sync)
Al Viro643168c2011-06-22 18:20:23 -04002282 nfs4_close_sync(ctx->state, ctx->mode);
Trond Myklebust7fe5c392009-03-19 15:35:50 -04002283 else
Al Viro643168c2011-06-22 18:20:23 -04002284 nfs4_close_state(ctx->state, ctx->mode);
Trond Myklebust7fe5c392009-03-19 15:35:50 -04002285}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
2287static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
2288{
Benny Halevy43652ad2009-04-01 09:21:54 -04002289 struct nfs4_server_caps_arg args = {
2290 .fhandle = fhandle,
2291 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 struct nfs4_server_caps_res res = {};
2293 struct rpc_message msg = {
2294 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
Benny Halevy43652ad2009-04-01 09:21:54 -04002295 .rpc_argp = &args,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 .rpc_resp = &res,
2297 };
2298 int status;
2299
Bryan Schumaker7c513052011-03-24 17:12:24 +00002300 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 if (status == 0) {
2302 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002303 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
2304 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
2305 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
2306 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
2307 NFS_CAP_CTIME|NFS_CAP_MTIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
2309 server->caps |= NFS_CAP_ACLS;
2310 if (res.has_links != 0)
2311 server->caps |= NFS_CAP_HARDLINKS;
2312 if (res.has_symlinks != 0)
2313 server->caps |= NFS_CAP_SYMLINKS;
Trond Myklebust62ab460c2009-08-09 15:06:19 -04002314 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
2315 server->caps |= NFS_CAP_FILEID;
2316 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
2317 server->caps |= NFS_CAP_MODE;
2318 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
2319 server->caps |= NFS_CAP_NLINK;
2320 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
2321 server->caps |= NFS_CAP_OWNER;
2322 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
2323 server->caps |= NFS_CAP_OWNER_GROUP;
2324 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
2325 server->caps |= NFS_CAP_ATIME;
2326 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
2327 server->caps |= NFS_CAP_CTIME;
2328 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
2329 server->caps |= NFS_CAP_MTIME;
2330
Trond Myklebusta65318b2009-03-11 14:10:28 -04002331 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
2332 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
2333 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 server->acl_bitmask = res.acl_bitmask;
Chuck Lever264e6352012-03-01 17:02:05 -05002335 server->fh_expire_type = res.fh_expire_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 }
Andy Adamsoncccef3b2009-04-01 09:22:03 -04002337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 return status;
2339}
2340
Trond Myklebust55a97592006-06-09 09:34:19 -04002341int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342{
2343 struct nfs4_exception exception = { };
2344 int err;
2345 do {
2346 err = nfs4_handle_exception(server,
2347 _nfs4_server_capabilities(server, fhandle),
2348 &exception);
2349 } while (exception.retry);
2350 return err;
2351}
2352
2353static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2354 struct nfs_fsinfo *info)
2355{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 struct nfs4_lookup_root_arg args = {
2357 .bitmask = nfs4_fattr_bitmap,
2358 };
2359 struct nfs4_lookup_res res = {
2360 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04002361 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 .fh = fhandle,
2363 };
2364 struct rpc_message msg = {
2365 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
2366 .rpc_argp = &args,
2367 .rpc_resp = &res,
2368 };
Benny Halevy008f55d2009-04-01 09:22:50 -04002369
Trond Myklebust0e574af2005-10-27 22:12:38 -04002370 nfs_fattr_init(info->fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00002371 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372}
2373
2374static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2375 struct nfs_fsinfo *info)
2376{
2377 struct nfs4_exception exception = { };
2378 int err;
2379 do {
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04002380 err = _nfs4_lookup_root(server, fhandle, info);
2381 switch (err) {
2382 case 0:
2383 case -NFS4ERR_WRONGSEC:
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04002384 goto out;
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04002385 default:
2386 err = nfs4_handle_exception(server, err, &exception);
2387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 } while (exception.retry);
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04002389out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 return err;
2391}
2392
Bryan Schumaker8f70e952011-03-24 17:12:31 +00002393static int nfs4_lookup_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
2394 struct nfs_fsinfo *info, rpc_authflavor_t flavor)
2395{
2396 struct rpc_auth *auth;
2397 int ret;
2398
2399 auth = rpcauth_create(flavor, server->client);
2400 if (!auth) {
2401 ret = -EIO;
2402 goto out;
2403 }
2404 ret = nfs4_lookup_root(server, fhandle, info);
Bryan Schumaker8f70e952011-03-24 17:12:31 +00002405out:
2406 return ret;
2407}
2408
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04002409static int nfs4_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04002410 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411{
Bryan Schumaker8f70e952011-03-24 17:12:31 +00002412 int i, len, status = 0;
Bryan Schumaker0fabee22011-04-13 14:31:29 -04002413 rpc_authflavor_t flav_array[NFS_MAX_SECFLAVORS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04002415 len = gss_mech_list_pseudoflavors(&flav_array[0]);
2416 flav_array[len] = RPC_AUTH_NULL;
2417 len += 1;
Bryan Schumaker8f70e952011-03-24 17:12:31 +00002418
2419 for (i = 0; i < len; i++) {
2420 status = nfs4_lookup_root_sec(server, fhandle, info, flav_array[i]);
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04002421 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
Bryan Schumakerd1a80162011-04-13 14:31:28 -04002422 continue;
2423 break;
Bryan Schumaker8f70e952011-03-24 17:12:31 +00002424 }
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04002425 /*
2426 * -EACCESS could mean that the user doesn't have correct permissions
2427 * to access the mount. It could also mean that we tried to mount
2428 * with a gss auth flavor, but rpc.gssd isn't running. Either way,
2429 * existing mount programs don't handle -EACCES very well so it should
2430 * be mapped to -EPERM instead.
2431 */
2432 if (status == -EACCES)
2433 status = -EPERM;
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04002434 return status;
2435}
2436
2437/*
2438 * get the file handle for the "/" directory on the server
2439 */
Bryan Schumaker3028eb22012-05-10 15:07:30 -04002440int nfs4_proc_get_rootfh(struct nfs_server *server, struct nfs_fh *fhandle,
2441 struct nfs_fsinfo *info)
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04002442{
Bryan Schumakerfca78d62011-06-02 14:59:07 -04002443 int minor_version = server->nfs_client->cl_minorversion;
Bryan Schumaker801a16dc2011-04-13 14:31:30 -04002444 int status = nfs4_lookup_root(server, fhandle, info);
Bryan Schumakerfb8a5ba2011-04-18 16:52:25 -04002445 if ((status == -NFS4ERR_WRONGSEC) && !(server->flags & NFS_MOUNT_SECFLAVOUR))
2446 /*
2447 * A status of -NFS4ERR_WRONGSEC will be mapped to -EPERM
2448 * by nfs4_map_errors() as this function exits.
2449 */
Bryan Schumakerfca78d62011-06-02 14:59:07 -04002450 status = nfs_v4_minor_ops[minor_version]->find_root_sec(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 if (status == 0)
2452 status = nfs4_server_capabilities(server, fhandle);
2453 if (status == 0)
2454 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08002455 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456}
2457
Bryan Schumakerbae36242012-05-10 15:07:31 -04002458static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *mntfh,
2459 struct nfs_fsinfo *info)
2460{
2461 int error;
2462 struct nfs_fattr *fattr = info->fattr;
2463
2464 error = nfs4_server_capabilities(server, mntfh);
2465 if (error < 0) {
2466 dprintk("nfs4_get_root: getcaps error = %d\n", -error);
2467 return error;
2468 }
2469
2470 error = nfs4_proc_getattr(server, mntfh, fattr);
2471 if (error < 0) {
2472 dprintk("nfs4_get_root: getattr error = %d\n", -error);
2473 return error;
2474 }
2475
2476 if (fattr->valid & NFS_ATTR_FATTR_FSID &&
2477 !nfs_fsid_equal(&server->fsid, &fattr->fsid))
2478 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
2479
2480 return error;
2481}
2482
Manoj Naik6b97fd32006-06-09 09:34:29 -04002483/*
2484 * Get locations and (maybe) other attributes of a referral.
2485 * Note that we'll actually follow the referral later when
2486 * we detect fsid mismatch in inode revalidation
2487 */
Bryan Schumakerf05d1472012-04-27 13:27:41 -04002488static int nfs4_get_referral(struct rpc_clnt *client, struct inode *dir,
2489 const struct qstr *name, struct nfs_fattr *fattr,
2490 struct nfs_fh *fhandle)
Manoj Naik6b97fd32006-06-09 09:34:29 -04002491{
2492 int status = -ENOMEM;
2493 struct page *page = NULL;
2494 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04002495
2496 page = alloc_page(GFP_KERNEL);
2497 if (page == NULL)
2498 goto out;
2499 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
2500 if (locations == NULL)
2501 goto out;
2502
Bryan Schumakerf05d1472012-04-27 13:27:41 -04002503 status = nfs4_proc_fs_locations(client, dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002504 if (status != 0)
2505 goto out;
2506 /* Make sure server returned a different fsid for the referral */
2507 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
Andy Adamson533eb462011-06-13 18:25:56 -04002508 dprintk("%s: server did not return a different fsid for"
2509 " a referral at %s\n", __func__, name->name);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002510 status = -EIO;
2511 goto out;
2512 }
Andy Adamson533eb462011-06-13 18:25:56 -04002513 /* Fixup attributes for the nfs_lookup() call to nfs_fhget() */
2514 nfs_fixup_referral_attributes(&locations->fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002515
Andy Adamson533eb462011-06-13 18:25:56 -04002516 /* replace the lookup nfs_fattr with the locations nfs_fattr */
Manoj Naik6b97fd32006-06-09 09:34:29 -04002517 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
Manoj Naik6b97fd32006-06-09 09:34:29 -04002518 memset(fhandle, 0, sizeof(struct nfs_fh));
2519out:
2520 if (page)
2521 __free_page(page);
Davidlohr Bueso5d7ca352010-08-11 12:42:15 -04002522 kfree(locations);
Manoj Naik6b97fd32006-06-09 09:34:29 -04002523 return status;
2524}
2525
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2527{
2528 struct nfs4_getattr_arg args = {
2529 .fh = fhandle,
2530 .bitmask = server->attr_bitmask,
2531 };
2532 struct nfs4_getattr_res res = {
2533 .fattr = fattr,
2534 .server = server,
2535 };
2536 struct rpc_message msg = {
2537 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
2538 .rpc_argp = &args,
2539 .rpc_resp = &res,
2540 };
2541
Trond Myklebust0e574af2005-10-27 22:12:38 -04002542 nfs_fattr_init(fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00002543 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544}
2545
2546static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2547{
2548 struct nfs4_exception exception = { };
2549 int err;
2550 do {
2551 err = nfs4_handle_exception(server,
2552 _nfs4_proc_getattr(server, fhandle, fattr),
2553 &exception);
2554 } while (exception.retry);
2555 return err;
2556}
2557
2558/*
2559 * The file is not closed if it is opened due to the a request to change
2560 * the size of the file. The open call will not be needed once the
2561 * VFS layer lookup-intents are implemented.
2562 *
2563 * Close is called when the inode is destroyed.
2564 * If we haven't opened the file for O_WRONLY, we
2565 * need to in the size_change case to obtain a stateid.
2566 *
2567 * Got race?
2568 * Because OPEN is always done by name in nfsv4, it is
2569 * possible that we opened a different file by the same
2570 * name. We can recognize this race condition, but we
2571 * can't do anything about it besides returning an error.
2572 *
2573 * This will be fixed with VFS changes (lookup-intent).
2574 */
2575static int
2576nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
2577 struct iattr *sattr)
2578{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002579 struct inode *inode = dentry->d_inode;
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002580 struct rpc_cred *cred = NULL;
Trond Myklebustd5308382005-11-04 15:33:38 -05002581 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 int status;
2583
Benny Halevy8a1636c2010-07-14 15:43:57 -04002584 if (pnfs_ld_layoutret_on_setattr(inode))
2585 pnfs_return_layout(inode);
2586
Trond Myklebust0e574af2005-10-27 22:12:38 -04002587 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
Andy Adamson26699402012-05-30 16:12:24 -04002589 /* Deal with open(O_TRUNC) */
2590 if (sattr->ia_valid & ATTR_OPEN)
2591 sattr->ia_valid &= ~(ATTR_MTIME|ATTR_CTIME|ATTR_OPEN);
2592
2593 /* Optimization: if the end result is no change, don't RPC */
2594 if ((sattr->ia_valid & ~(ATTR_FILE)) == 0)
2595 return 0;
2596
Trond Myklebustd5308382005-11-04 15:33:38 -05002597 /* Search for an existing open(O_WRITE) file */
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002598 if (sattr->ia_valid & ATTR_FILE) {
2599 struct nfs_open_context *ctx;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00002600
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002601 ctx = nfs_file_open_context(sattr->ia_file);
Neil Brown504e5182008-10-16 14:15:16 +11002602 if (ctx) {
2603 cred = ctx->cred;
2604 state = ctx->state;
2605 }
Trond Myklebust659bfcd2008-06-10 19:39:41 -04002606 }
2607
2608 status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04002609 if (status == 0)
2610 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 return status;
2612}
2613
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07002614static int _nfs4_proc_lookup(struct rpc_clnt *clnt, struct inode *dir,
2615 const struct qstr *name, struct nfs_fh *fhandle,
2616 struct nfs_fattr *fattr)
David Howells2b3de442006-08-22 20:06:09 -04002617{
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07002618 struct nfs_server *server = NFS_SERVER(dir);
David Howells2b3de442006-08-22 20:06:09 -04002619 int status;
2620 struct nfs4_lookup_arg args = {
2621 .bitmask = server->attr_bitmask,
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07002622 .dir_fh = NFS_FH(dir),
David Howells2b3de442006-08-22 20:06:09 -04002623 .name = name,
2624 };
2625 struct nfs4_lookup_res res = {
2626 .server = server,
2627 .fattr = fattr,
2628 .fh = fhandle,
2629 };
2630 struct rpc_message msg = {
2631 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
2632 .rpc_argp = &args,
2633 .rpc_resp = &res,
2634 };
2635
2636 nfs_fattr_init(fattr);
2637
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07002639 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 dprintk("NFS reply lookup: %d\n", status);
2641 return status;
2642}
2643
Bryan Schumaker72de53e2012-04-27 13:27:40 -04002644static void nfs_fixup_secinfo_attributes(struct nfs_fattr *fattr)
Bryan Schumaker7ebb9312011-03-24 17:12:30 +00002645{
Bryan Schumaker7ebb9312011-03-24 17:12:30 +00002646 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
Bryan Schumaker72de53e2012-04-27 13:27:40 -04002647 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_MOUNTPOINT;
Bryan Schumaker7ebb9312011-03-24 17:12:30 +00002648 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
2649 fattr->nlink = 2;
2650}
2651
Bryan Schumaker72de53e2012-04-27 13:27:40 -04002652static int nfs4_proc_lookup_common(struct rpc_clnt **clnt, struct inode *dir,
2653 struct qstr *name, struct nfs_fh *fhandle,
2654 struct nfs_fattr *fattr)
2655{
2656 struct nfs4_exception exception = { };
2657 struct rpc_clnt *client = *clnt;
2658 int err;
2659 do {
2660 err = _nfs4_proc_lookup(client, dir, name, fhandle, fattr);
2661 switch (err) {
2662 case -NFS4ERR_BADNAME:
2663 err = -ENOENT;
2664 goto out;
2665 case -NFS4ERR_MOVED:
Bryan Schumakerf05d1472012-04-27 13:27:41 -04002666 err = nfs4_get_referral(client, dir, name, fattr, fhandle);
Bryan Schumaker72de53e2012-04-27 13:27:40 -04002667 goto out;
2668 case -NFS4ERR_WRONGSEC:
2669 err = -EPERM;
2670 if (client != *clnt)
2671 goto out;
2672
2673 client = nfs4_create_sec_client(client, dir, name);
2674 if (IS_ERR(client))
2675 return PTR_ERR(client);
2676
2677 exception.retry = 1;
2678 break;
2679 default:
2680 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
2681 }
2682 } while (exception.retry);
2683
2684out:
2685 if (err == 0)
2686 *clnt = client;
2687 else if (client != *clnt)
2688 rpc_shutdown_client(client);
2689
2690 return err;
2691}
2692
Bryan Schumaker80a16b22012-04-27 13:27:46 -04002693static int nfs4_proc_lookup(struct inode *dir, struct qstr *name,
Bryan Schumaker7c513052011-03-24 17:12:24 +00002694 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
Bryan Schumaker72de53e2012-04-27 13:27:40 -04002696 int status;
2697 struct rpc_clnt *client = NFS_CLIENT(dir);
Trond Myklebust0c2e53f2011-10-18 16:11:22 -07002698
Bryan Schumaker72de53e2012-04-27 13:27:40 -04002699 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr);
2700 if (client != NFS_CLIENT(dir)) {
2701 rpc_shutdown_client(client);
2702 nfs_fixup_secinfo_attributes(fattr);
2703 }
2704 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705}
2706
Bryan Schumakerf05d1472012-04-27 13:27:41 -04002707struct rpc_clnt *
2708nfs4_proc_lookup_mountpoint(struct inode *dir, struct qstr *name,
2709 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
2710{
2711 int status;
2712 struct rpc_clnt *client = rpc_clone_client(NFS_CLIENT(dir));
2713
2714 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr);
2715 if (status < 0) {
2716 rpc_shutdown_client(client);
2717 return ERR_PTR(status);
2718 }
2719 return client;
2720}
2721
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2723{
Trond Myklebust76b32992007-08-10 17:45:11 -04002724 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 struct nfs4_accessargs args = {
2726 .fh = NFS_FH(inode),
Trond Myklebusta4980e72012-01-30 15:43:56 -05002727 .bitmask = server->cache_consistency_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 };
Trond Myklebust76b32992007-08-10 17:45:11 -04002729 struct nfs4_accessres res = {
2730 .server = server,
Trond Myklebust76b32992007-08-10 17:45:11 -04002731 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 struct rpc_message msg = {
2733 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
2734 .rpc_argp = &args,
2735 .rpc_resp = &res,
2736 .rpc_cred = entry->cred,
2737 };
2738 int mode = entry->mask;
2739 int status;
2740
2741 /*
2742 * Determine which access bits we want to ask for...
2743 */
2744 if (mode & MAY_READ)
2745 args.access |= NFS4_ACCESS_READ;
2746 if (S_ISDIR(inode->i_mode)) {
2747 if (mode & MAY_WRITE)
2748 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
2749 if (mode & MAY_EXEC)
2750 args.access |= NFS4_ACCESS_LOOKUP;
2751 } else {
2752 if (mode & MAY_WRITE)
2753 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
2754 if (mode & MAY_EXEC)
2755 args.access |= NFS4_ACCESS_EXECUTE;
2756 }
Trond Myklebustc407d412010-04-16 16:22:48 -04002757
2758 res.fattr = nfs_alloc_fattr();
2759 if (res.fattr == NULL)
2760 return -ENOMEM;
2761
Bryan Schumaker7c513052011-03-24 17:12:24 +00002762 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 if (!status) {
2764 entry->mask = 0;
2765 if (res.access & NFS4_ACCESS_READ)
2766 entry->mask |= MAY_READ;
2767 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
2768 entry->mask |= MAY_WRITE;
2769 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
2770 entry->mask |= MAY_EXEC;
Trond Myklebustc407d412010-04-16 16:22:48 -04002771 nfs_refresh_inode(inode, res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 }
Trond Myklebustc407d412010-04-16 16:22:48 -04002773 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 return status;
2775}
2776
2777static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
2778{
2779 struct nfs4_exception exception = { };
2780 int err;
2781 do {
2782 err = nfs4_handle_exception(NFS_SERVER(inode),
2783 _nfs4_proc_access(inode, entry),
2784 &exception);
2785 } while (exception.retry);
2786 return err;
2787}
2788
2789/*
2790 * TODO: For the time being, we don't try to get any attributes
2791 * along with any of the zero-copy operations READ, READDIR,
2792 * READLINK, WRITE.
2793 *
2794 * In the case of the first three, we want to put the GETATTR
2795 * after the read-type operation -- this is because it is hard
2796 * to predict the length of a GETATTR response in v4, and thus
2797 * align the READ data correctly. This means that the GETATTR
2798 * may end up partially falling into the page cache, and we should
2799 * shift it into the 'tail' of the xdr_buf before processing.
2800 * To do this efficiently, we need to know the total length
2801 * of data received, which doesn't seem to be available outside
2802 * of the RPC layer.
2803 *
2804 * In the case of WRITE, we also want to put the GETATTR after
2805 * the operation -- in this case because we want to make sure
Trond Myklebust140150d2012-06-05 15:20:25 -04002806 * we get the post-operation mtime and size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 *
2808 * Both of these changes to the XDR layer would in fact be quite
2809 * minor, but I decided to leave them for a subsequent patch.
2810 */
2811static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
2812 unsigned int pgbase, unsigned int pglen)
2813{
2814 struct nfs4_readlink args = {
2815 .fh = NFS_FH(inode),
2816 .pgbase = pgbase,
2817 .pglen = pglen,
2818 .pages = &page,
2819 };
Benny Halevyf50c7002009-04-01 09:21:55 -04002820 struct nfs4_readlink_res res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 struct rpc_message msg = {
2822 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
2823 .rpc_argp = &args,
Benny Halevyf50c7002009-04-01 09:21:55 -04002824 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 };
2826
Bryan Schumaker7c513052011-03-24 17:12:24 +00002827 return nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828}
2829
2830static int nfs4_proc_readlink(struct inode *inode, struct page *page,
2831 unsigned int pgbase, unsigned int pglen)
2832{
2833 struct nfs4_exception exception = { };
2834 int err;
2835 do {
2836 err = nfs4_handle_exception(NFS_SERVER(inode),
2837 _nfs4_proc_readlink(inode, page, pgbase, pglen),
2838 &exception);
2839 } while (exception.retry);
2840 return err;
2841}
2842
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843/*
Miklos Szeredi8867fe52012-06-05 15:10:19 +02002844 * This is just for mknod. open(O_CREAT) will always do ->open_context().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846static int
2847nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Miklos Szeredi8867fe52012-06-05 15:10:19 +02002848 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849{
Miklos Szeredi8867fe52012-06-05 15:10:19 +02002850 struct nfs_open_context *ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 struct nfs4_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 int status = 0;
2853
Miklos Szeredi8867fe52012-06-05 15:10:19 +02002854 ctx = alloc_nfs_open_context(dentry, FMODE_READ);
2855 if (IS_ERR(ctx))
2856 return PTR_ERR(ctx);
2857
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00002858 sattr->ia_mode &= ~current_umask();
Trond Myklebust8626e4a2012-07-16 12:01:42 -04002859 state = nfs4_do_open(dir, dentry, ctx->mode,
2860 flags, sattr, ctx->cred,
2861 &ctx->mdsthreshold);
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002862 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 if (IS_ERR(state)) {
2864 status = PTR_ERR(state);
Trond Myklebustc0204fd2010-09-17 10:56:51 -04002865 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 }
Trond Myklebustd4d9cdc2007-10-02 18:38:53 -04002867 d_add(dentry, igrab(state->inode));
Trond Myklebustd75340c2007-10-01 21:42:01 -04002868 nfs_set_verifier(dentry, nfs_save_change_attribute(dir));
Miklos Szeredi8867fe52012-06-05 15:10:19 +02002869 ctx->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870out:
Miklos Szeredi8867fe52012-06-05 15:10:19 +02002871 put_nfs_open_context(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 return status;
2873}
2874
2875static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
2876{
Trond Myklebust16e42952005-10-27 22:12:44 -04002877 struct nfs_server *server = NFS_SERVER(dir);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002878 struct nfs_removeargs args = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 .fh = NFS_FH(dir),
Linus Torvalds26fe5752012-05-10 13:14:12 -07002880 .name = *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002882 struct nfs_removeres res = {
Trond Myklebust16e42952005-10-27 22:12:44 -04002883 .server = server,
Trond Myklebust16e42952005-10-27 22:12:44 -04002884 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 struct rpc_message msg = {
Trond Myklebust4fdc17b2007-07-14 15:39:57 -04002886 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
2887 .rpc_argp = &args,
2888 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 };
Trond Myklebust778d2812012-04-27 13:48:19 -04002890 int status;
Trond Myklebustd3468902010-04-16 16:22:50 -04002891
Bryan Schumaker7c513052011-03-24 17:12:24 +00002892 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 1);
Trond Myklebust778d2812012-04-27 13:48:19 -04002893 if (status == 0)
Trond Myklebust16e42952005-10-27 22:12:44 -04002894 update_changeattr(dir, &res.cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 return status;
2896}
2897
2898static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
2899{
2900 struct nfs4_exception exception = { };
2901 int err;
2902 do {
2903 err = nfs4_handle_exception(NFS_SERVER(dir),
2904 _nfs4_proc_remove(dir, name),
2905 &exception);
2906 } while (exception.retry);
2907 return err;
2908}
2909
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002910static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002912 struct nfs_server *server = NFS_SERVER(dir);
2913 struct nfs_removeargs *args = msg->rpc_argp;
2914 struct nfs_removeres *res = msg->rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002916 res->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
Trond Myklebust9d12b212012-01-17 22:04:25 -05002918 nfs41_init_sequence(&args->seq_args, &res->seq_res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919}
2920
Bryan Schumaker34e137c2012-03-19 14:54:41 -04002921static void nfs4_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data)
2922{
2923 if (nfs4_setup_sequence(NFS_SERVER(data->dir),
2924 &data->args.seq_args,
2925 &data->res.seq_res,
2926 task))
2927 return;
2928 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929}
2930
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002931static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002933 struct nfs_removeres *res = task->tk_msg.rpc_resp;
2934
Trond Myklebust14516c32010-07-31 14:29:06 -04002935 if (!nfs4_sequence_done(task, &res->seq_res))
2936 return 0;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05002937 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002938 return 0;
2939 update_changeattr(dir, &res->cinfo);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -04002940 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941}
2942
Jeff Laytond3d41522010-09-17 17:31:57 -04002943static void nfs4_proc_rename_setup(struct rpc_message *msg, struct inode *dir)
2944{
2945 struct nfs_server *server = NFS_SERVER(dir);
2946 struct nfs_renameargs *arg = msg->rpc_argp;
2947 struct nfs_renameres *res = msg->rpc_resp;
2948
2949 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME];
Jeff Laytond3d41522010-09-17 17:31:57 -04002950 res->server = server;
Trond Myklebust9d12b212012-01-17 22:04:25 -05002951 nfs41_init_sequence(&arg->seq_args, &res->seq_res, 1);
Jeff Laytond3d41522010-09-17 17:31:57 -04002952}
2953
Bryan Schumakerc6bfa1a2012-03-19 14:54:42 -04002954static void nfs4_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data)
2955{
2956 if (nfs4_setup_sequence(NFS_SERVER(data->old_dir),
2957 &data->args.seq_args,
2958 &data->res.seq_res,
2959 task))
2960 return;
2961 rpc_call_start(task);
Jeff Laytond3d41522010-09-17 17:31:57 -04002962}
2963
2964static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
2965 struct inode *new_dir)
2966{
2967 struct nfs_renameres *res = task->tk_msg.rpc_resp;
2968
2969 if (!nfs4_sequence_done(task, &res->seq_res))
2970 return 0;
2971 if (nfs4_async_handle_error(task, res->server, NULL) == -EAGAIN)
2972 return 0;
2973
2974 update_changeattr(old_dir, &res->old_cinfo);
Jeff Laytond3d41522010-09-17 17:31:57 -04002975 update_changeattr(new_dir, &res->new_cinfo);
Jeff Laytond3d41522010-09-17 17:31:57 -04002976 return 1;
2977}
2978
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2980 struct inode *new_dir, struct qstr *new_name)
2981{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002982 struct nfs_server *server = NFS_SERVER(old_dir);
Jeff Layton920769f2010-09-17 17:30:25 -04002983 struct nfs_renameargs arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 .old_dir = NFS_FH(old_dir),
2985 .new_dir = NFS_FH(new_dir),
2986 .old_name = old_name,
2987 .new_name = new_name,
2988 };
Jeff Laytone8582a82010-09-17 17:31:06 -04002989 struct nfs_renameres res = {
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002990 .server = server,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002991 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 struct rpc_message msg = {
2993 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2994 .rpc_argp = &arg,
2995 .rpc_resp = &res,
2996 };
Trond Myklebust011fff72010-04-16 16:22:49 -04002997 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Bryan Schumaker7c513052011-03-24 17:12:24 +00002999 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 if (!status) {
3001 update_changeattr(old_dir, &res.old_cinfo);
3002 update_changeattr(new_dir, &res.new_cinfo);
3003 }
3004 return status;
3005}
3006
3007static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
3008 struct inode *new_dir, struct qstr *new_name)
3009{
3010 struct nfs4_exception exception = { };
3011 int err;
3012 do {
3013 err = nfs4_handle_exception(NFS_SERVER(old_dir),
3014 _nfs4_proc_rename(old_dir, old_name,
3015 new_dir, new_name),
3016 &exception);
3017 } while (exception.retry);
3018 return err;
3019}
3020
3021static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
3022{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04003023 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 struct nfs4_link_arg arg = {
3025 .fh = NFS_FH(inode),
3026 .dir_fh = NFS_FH(dir),
3027 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04003028 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04003030 struct nfs4_link_res res = {
3031 .server = server,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04003032 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 struct rpc_message msg = {
3034 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
3035 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04003036 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 };
Trond Myklebust136f2622010-04-16 16:22:49 -04003038 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
Trond Myklebust136f2622010-04-16 16:22:49 -04003040 res.fattr = nfs_alloc_fattr();
Trond Myklebust778d2812012-04-27 13:48:19 -04003041 if (res.fattr == NULL)
Trond Myklebust136f2622010-04-16 16:22:49 -04003042 goto out;
3043
Bryan Schumaker7c513052011-03-24 17:12:24 +00003044 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04003045 if (!status) {
3046 update_changeattr(dir, &res.cinfo);
Trond Myklebust73a3d072006-05-25 01:40:47 -04003047 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04003048 }
Trond Myklebust136f2622010-04-16 16:22:49 -04003049out:
Trond Myklebust136f2622010-04-16 16:22:49 -04003050 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 return status;
3052}
3053
3054static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
3055{
3056 struct nfs4_exception exception = { };
3057 int err;
3058 do {
3059 err = nfs4_handle_exception(NFS_SERVER(inode),
3060 _nfs4_proc_link(inode, dir, name),
3061 &exception);
3062 } while (exception.retry);
3063 return err;
3064}
3065
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003066struct nfs4_createdata {
3067 struct rpc_message msg;
3068 struct nfs4_create_arg arg;
3069 struct nfs4_create_res res;
3070 struct nfs_fh fh;
3071 struct nfs_fattr fattr;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003072};
3073
3074static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
3075 struct qstr *name, struct iattr *sattr, u32 ftype)
3076{
3077 struct nfs4_createdata *data;
3078
3079 data = kzalloc(sizeof(*data), GFP_KERNEL);
3080 if (data != NULL) {
3081 struct nfs_server *server = NFS_SERVER(dir);
3082
3083 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
3084 data->msg.rpc_argp = &data->arg;
3085 data->msg.rpc_resp = &data->res;
3086 data->arg.dir_fh = NFS_FH(dir);
3087 data->arg.server = server;
3088 data->arg.name = name;
3089 data->arg.attrs = sattr;
3090 data->arg.ftype = ftype;
3091 data->arg.bitmask = server->attr_bitmask;
3092 data->res.server = server;
3093 data->res.fh = &data->fh;
3094 data->res.fattr = &data->fattr;
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003095 nfs_fattr_init(data->res.fattr);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003096 }
3097 return data;
3098}
3099
3100static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
3101{
Bryan Schumaker7c513052011-03-24 17:12:24 +00003102 int status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &data->msg,
Bryan Schumakere73b83f2011-03-24 17:12:23 +00003103 &data->arg.seq_args, &data->res.seq_res, 1);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003104 if (status == 0) {
3105 update_changeattr(dir, &data->res.dir_cinfo);
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003106 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
3107 }
3108 return status;
3109}
3110
3111static void nfs4_free_createdata(struct nfs4_createdata *data)
3112{
3113 kfree(data);
3114}
3115
Chuck Lever4f390c12006-08-22 20:06:22 -04003116static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04003117 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003119 struct nfs4_createdata *data;
3120 int status = -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121
Chuck Lever94a6d752006-08-22 20:06:23 -04003122 if (len > NFS4_MAXPATHLEN)
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003123 goto out;
Chuck Lever4f390c12006-08-22 20:06:22 -04003124
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003125 status = -ENOMEM;
3126 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
3127 if (data == NULL)
3128 goto out;
3129
3130 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
3131 data->arg.u.symlink.pages = &page;
3132 data->arg.u.symlink.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003134 status = nfs4_do_create(dir, dentry, data);
3135
3136 nfs4_free_createdata(data);
3137out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 return status;
3139}
3140
Chuck Lever4f390c12006-08-22 20:06:22 -04003141static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04003142 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143{
3144 struct nfs4_exception exception = { };
3145 int err;
3146 do {
3147 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04003148 _nfs4_proc_symlink(dir, dentry, page,
3149 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 &exception);
3151 } while (exception.retry);
3152 return err;
3153}
3154
3155static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
3156 struct iattr *sattr)
3157{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003158 struct nfs4_createdata *data;
3159 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003161 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
3162 if (data == NULL)
3163 goto out;
3164
3165 status = nfs4_do_create(dir, dentry, data);
3166
3167 nfs4_free_createdata(data);
3168out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 return status;
3170}
3171
3172static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
3173 struct iattr *sattr)
3174{
3175 struct nfs4_exception exception = { };
3176 int err;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00003177
3178 sattr->ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 do {
3180 err = nfs4_handle_exception(NFS_SERVER(dir),
3181 _nfs4_proc_mkdir(dir, dentry, sattr),
3182 &exception);
3183 } while (exception.retry);
3184 return err;
3185}
3186
3187static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04003188 u64 cookie, struct page **pages, unsigned int count, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189{
3190 struct inode *dir = dentry->d_inode;
3191 struct nfs4_readdir_arg args = {
3192 .fh = NFS_FH(dir),
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04003193 .pages = pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 .pgbase = 0,
3195 .count = count,
Trond Myklebust96d25e52009-11-11 16:15:42 +09003196 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
Bryan Schumaker82f2e542010-10-21 16:33:18 -04003197 .plus = plus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 };
3199 struct nfs4_readdir_res res;
3200 struct rpc_message msg = {
3201 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
3202 .rpc_argp = &args,
3203 .rpc_resp = &res,
3204 .rpc_cred = cred,
3205 };
3206 int status;
3207
Harvey Harrison3110ff82008-05-02 13:42:44 -07003208 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__,
Trond Myklebusteadf4592005-06-22 17:16:39 +00003209 dentry->d_parent->d_name.name,
3210 dentry->d_name.name,
3211 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
3213 res.pgbase = args.pgbase;
Bryan Schumaker7c513052011-03-24 17:12:24 +00003214 status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &msg, &args.seq_args, &res.seq_res, 0);
Trond Myklebustac396122010-11-15 20:26:22 -05003215 if (status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebustac396122010-11-15 20:26:22 -05003217 status += args.pgbase;
3218 }
Trond Myklebustc4812992007-09-28 17:11:45 -04003219
3220 nfs_invalidate_atime(dir);
3221
Harvey Harrison3110ff82008-05-02 13:42:44 -07003222 dprintk("%s: returns %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 return status;
3224}
3225
3226static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04003227 u64 cookie, struct page **pages, unsigned int count, int plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228{
3229 struct nfs4_exception exception = { };
3230 int err;
3231 do {
3232 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
3233 _nfs4_proc_readdir(dentry, cred, cookie,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -04003234 pages, count, plus),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 &exception);
3236 } while (exception.retry);
3237 return err;
3238}
3239
3240static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
3241 struct iattr *sattr, dev_t rdev)
3242{
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003243 struct nfs4_createdata *data;
3244 int mode = sattr->ia_mode;
3245 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
3247 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
3248 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003249
3250 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
3251 if (data == NULL)
3252 goto out;
3253
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 if (S_ISFIFO(mode))
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003255 data->arg.ftype = NF4FIFO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 else if (S_ISBLK(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003257 data->arg.ftype = NF4BLK;
3258 data->arg.u.device.specdata1 = MAJOR(rdev);
3259 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 }
3261 else if (S_ISCHR(mode)) {
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003262 data->arg.ftype = NF4CHR;
3263 data->arg.u.device.specdata1 = MAJOR(rdev);
3264 data->arg.u.device.specdata2 = MINOR(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Trond Myklebust57dc9a52008-06-20 15:35:32 -04003267 status = nfs4_do_create(dir, dentry, data);
3268
3269 nfs4_free_createdata(data);
3270out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 return status;
3272}
3273
3274static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
3275 struct iattr *sattr, dev_t rdev)
3276{
3277 struct nfs4_exception exception = { };
3278 int err;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00003279
3280 sattr->ia_mode &= ~current_umask();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 do {
3282 err = nfs4_handle_exception(NFS_SERVER(dir),
3283 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
3284 &exception);
3285 } while (exception.retry);
3286 return err;
3287}
3288
3289static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
3290 struct nfs_fsstat *fsstat)
3291{
3292 struct nfs4_statfs_arg args = {
3293 .fh = fhandle,
3294 .bitmask = server->attr_bitmask,
3295 };
Benny Halevy24ad1482009-04-01 09:21:56 -04003296 struct nfs4_statfs_res res = {
3297 .fsstat = fsstat,
3298 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 struct rpc_message msg = {
3300 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
3301 .rpc_argp = &args,
Benny Halevy24ad1482009-04-01 09:21:56 -04003302 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 };
3304
Trond Myklebust0e574af2005-10-27 22:12:38 -04003305 nfs_fattr_init(fsstat->fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00003306 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307}
3308
3309static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
3310{
3311 struct nfs4_exception exception = { };
3312 int err;
3313 do {
3314 err = nfs4_handle_exception(server,
3315 _nfs4_proc_statfs(server, fhandle, fsstat),
3316 &exception);
3317 } while (exception.retry);
3318 return err;
3319}
3320
3321static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
3322 struct nfs_fsinfo *fsinfo)
3323{
3324 struct nfs4_fsinfo_arg args = {
3325 .fh = fhandle,
3326 .bitmask = server->attr_bitmask,
3327 };
Benny Halevy3dda5e42009-04-01 09:21:57 -04003328 struct nfs4_fsinfo_res res = {
3329 .fsinfo = fsinfo,
3330 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 struct rpc_message msg = {
3332 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
3333 .rpc_argp = &args,
Benny Halevy3dda5e42009-04-01 09:21:57 -04003334 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 };
3336
Bryan Schumaker7c513052011-03-24 17:12:24 +00003337 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338}
3339
3340static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
3341{
3342 struct nfs4_exception exception = { };
3343 int err;
3344
3345 do {
3346 err = nfs4_handle_exception(server,
3347 _nfs4_do_fsinfo(server, fhandle, fsinfo),
3348 &exception);
3349 } while (exception.retry);
3350 return err;
3351}
3352
3353static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
3354{
Bryan Schumakere38eb652012-06-20 15:53:40 -04003355 int error;
3356
Trond Myklebust0e574af2005-10-27 22:12:38 -04003357 nfs_fattr_init(fsinfo->fattr);
Bryan Schumakere38eb652012-06-20 15:53:40 -04003358 error = nfs4_do_fsinfo(server, fhandle, fsinfo);
3359 if (error == 0)
3360 set_pnfs_layoutdriver(server, fhandle, fsinfo->layouttype);
3361
3362 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363}
3364
3365static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
3366 struct nfs_pathconf *pathconf)
3367{
3368 struct nfs4_pathconf_arg args = {
3369 .fh = fhandle,
3370 .bitmask = server->attr_bitmask,
3371 };
Benny Halevyd45b2982009-04-01 09:21:58 -04003372 struct nfs4_pathconf_res res = {
3373 .pathconf = pathconf,
3374 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 struct rpc_message msg = {
3376 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
3377 .rpc_argp = &args,
Benny Halevyd45b2982009-04-01 09:21:58 -04003378 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 };
3380
3381 /* None of the pathconf attributes are mandatory to implement */
3382 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
3383 memset(pathconf, 0, sizeof(*pathconf));
3384 return 0;
3385 }
3386
Trond Myklebust0e574af2005-10-27 22:12:38 -04003387 nfs_fattr_init(pathconf->fattr);
Bryan Schumaker7c513052011-03-24 17:12:24 +00003388 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389}
3390
3391static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
3392 struct nfs_pathconf *pathconf)
3393{
3394 struct nfs4_exception exception = { };
3395 int err;
3396
3397 do {
3398 err = nfs4_handle_exception(server,
3399 _nfs4_proc_pathconf(server, fhandle, pathconf),
3400 &exception);
3401 } while (exception.retry);
3402 return err;
3403}
3404
Benny Halevyd20581a2011-05-22 19:52:03 +03003405void __nfs4_read_done_cb(struct nfs_read_data *data)
3406{
Fred Isamancd841602012-04-20 14:47:44 -04003407 nfs_invalidate_atime(data->header->inode);
Benny Halevyd20581a2011-05-22 19:52:03 +03003408}
3409
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +00003410static int nfs4_read_done_cb(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411{
Fred Isamancd841602012-04-20 14:47:44 -04003412 struct nfs_server *server = NFS_SERVER(data->header->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003414 if (nfs4_async_handle_error(task, server, data->args.context->state) == -EAGAIN) {
Trond Myklebustd00c5d42011-10-19 12:17:29 -07003415 rpc_restart_call_prepare(task);
Trond Myklebustec06c092006-03-20 13:44:27 -05003416 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 }
Trond Myklebust8850df92007-09-28 17:20:07 -04003418
Benny Halevyd20581a2011-05-22 19:52:03 +03003419 __nfs4_read_done_cb(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05003421 renew_lease(server, data->timestamp);
3422 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423}
3424
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +00003425static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
3426{
3427
3428 dprintk("--> %s\n", __func__);
3429
3430 if (!nfs4_sequence_done(task, &data->res.seq_res))
3431 return -EAGAIN;
3432
Benny Halevyd20581a2011-05-22 19:52:03 +03003433 return data->read_done_cb ? data->read_done_cb(task, data) :
3434 nfs4_read_done_cb(task, data);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +00003435}
3436
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003437static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 data->timestamp = jiffies;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +00003440 data->read_done_cb = nfs4_read_done_cb;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003441 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
Trond Myklebust9d12b212012-01-17 22:04:25 -05003442 nfs41_init_sequence(&data->args.seq_args, &data->res.seq_res, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443}
3444
Bryan Schumakerea7c3302012-03-19 14:54:40 -04003445static void nfs4_proc_read_rpc_prepare(struct rpc_task *task, struct nfs_read_data *data)
3446{
Fred Isamancd841602012-04-20 14:47:44 -04003447 if (nfs4_setup_sequence(NFS_SERVER(data->header->inode),
Bryan Schumakerea7c3302012-03-19 14:54:40 -04003448 &data->args.seq_args,
3449 &data->res.seq_res,
3450 task))
3451 return;
3452 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453}
3454
Fred Isamanb029bc92011-03-03 15:13:42 +00003455static int nfs4_write_done_cb(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456{
Fred Isamancd841602012-04-20 14:47:44 -04003457 struct inode *inode = data->header->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003459 if (nfs4_async_handle_error(task, NFS_SERVER(inode), data->args.context->state) == -EAGAIN) {
Trond Myklebustd00c5d42011-10-19 12:17:29 -07003460 rpc_restart_call_prepare(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003461 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003463 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust5a37f852012-04-28 14:55:16 -04003465 nfs_post_op_update_inode_force_wcc(inode, &data->fattr);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003466 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05003467 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468}
3469
Fred Isamanb029bc92011-03-03 15:13:42 +00003470static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
3471{
3472 if (!nfs4_sequence_done(task, &data->res.seq_res))
3473 return -EAGAIN;
Benny Halevyd20581a2011-05-22 19:52:03 +03003474 return data->write_done_cb ? data->write_done_cb(task, data) :
3475 nfs4_write_done_cb(task, data);
Fred Isamanb029bc92011-03-03 15:13:42 +00003476}
3477
Trond Myklebust5a37f852012-04-28 14:55:16 -04003478static
3479bool nfs4_write_need_cache_consistency_data(const struct nfs_write_data *data)
Fred Isamana69aef12011-03-03 15:13:47 +00003480{
Trond Myklebust5a37f852012-04-28 14:55:16 -04003481 const struct nfs_pgio_header *hdr = data->header;
3482
3483 /* Don't request attributes for pNFS or O_DIRECT writes */
3484 if (data->ds_clp != NULL || hdr->dreq != NULL)
3485 return false;
3486 /* Otherwise, request attributes if and only if we don't hold
3487 * a delegation
3488 */
Bryan Schumaker011e2a72012-06-20 15:53:43 -04003489 return nfs4_have_delegation(hdr->inode, FMODE_READ) == 0;
Fred Isamana69aef12011-03-03 15:13:47 +00003490}
Fred Isamana69aef12011-03-03 15:13:47 +00003491
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003492static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493{
Fred Isamancd841602012-04-20 14:47:44 -04003494 struct nfs_server *server = NFS_SERVER(data->header->inode);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003495
Trond Myklebust5a37f852012-04-28 14:55:16 -04003496 if (!nfs4_write_need_cache_consistency_data(data)) {
Fred Isaman7ffd1062011-03-03 15:13:46 +00003497 data->args.bitmask = NULL;
3498 data->res.fattr = NULL;
3499 } else
3500 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebust5a37f852012-04-28 14:55:16 -04003501
Fred Isamanb029bc92011-03-03 15:13:42 +00003502 if (!data->write_done_cb)
3503 data->write_done_cb = nfs4_write_done_cb;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003504 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 data->timestamp = jiffies;
3506
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003507 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
Trond Myklebust9d12b212012-01-17 22:04:25 -05003508 nfs41_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509}
3510
Bryan Schumakerc6cb80d2012-03-19 14:54:39 -04003511static void nfs4_proc_write_rpc_prepare(struct rpc_task *task, struct nfs_write_data *data)
3512{
Fred Isamancd841602012-04-20 14:47:44 -04003513 if (nfs4_setup_sequence(NFS_SERVER(data->header->inode),
Bryan Schumakerc6cb80d2012-03-19 14:54:39 -04003514 &data->args.seq_args,
3515 &data->res.seq_res,
3516 task))
3517 return;
3518 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519}
3520
Fred Isaman0b7c0152012-04-20 14:47:39 -04003521static void nfs4_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data)
3522{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 if (nfs4_setup_sequence(NFS_SERVER(data->inode),
3524 &data->args.seq_args,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003525 &data->res.seq_res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 return;
3528 rpc_call_start(task);
Trond Myklebust14516c32010-07-31 14:29:06 -04003529}
3530
Fred Isaman0b7c0152012-04-20 14:47:39 -04003531static int nfs4_commit_done_cb(struct rpc_task *task, struct nfs_commit_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532{
3533 struct inode *inode = data->inode;
Trond Myklebust14516c32010-07-31 14:29:06 -04003534
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003535 if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) {
Trond Myklebustd00c5d42011-10-19 12:17:29 -07003536 rpc_restart_call_prepare(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05003537 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05003539 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540}
3541
Fred Isaman0b7c0152012-04-20 14:47:39 -04003542static int nfs4_commit_done(struct rpc_task *task, struct nfs_commit_data *data)
Fred Isaman5f452432011-03-23 13:27:46 +00003543{
3544 if (!nfs4_sequence_done(task, &data->res.seq_res))
3545 return -EAGAIN;
Fred Isaman0b7c0152012-04-20 14:47:39 -04003546 return data->commit_done_cb(task, data);
Fred Isaman5f452432011-03-23 13:27:46 +00003547}
3548
Fred Isaman0b7c0152012-04-20 14:47:39 -04003549static void nfs4_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550{
Trond Myklebust788e7a82006-03-20 13:44:27 -05003551 struct nfs_server *server = NFS_SERVER(data->inode);
Fred Isaman988b6dc2011-03-23 13:27:52 +00003552
Fred Isaman0b7c0152012-04-20 14:47:39 -04003553 if (data->commit_done_cb == NULL)
3554 data->commit_done_cb = nfs4_commit_done_cb;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04003555 data->res.server = server;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04003556 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
Trond Myklebust9d12b212012-01-17 22:04:25 -05003557 nfs41_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558}
3559
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003560struct nfs4_renewdata {
3561 struct nfs_client *client;
3562 unsigned long timestamp;
3563};
3564
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565/*
3566 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
3567 * standalone procedure for queueing an asynchronous RENEW.
3568 */
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003569static void nfs4_renew_release(void *calldata)
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003570{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003571 struct nfs4_renewdata *data = calldata;
3572 struct nfs_client *clp = data->client;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003573
Alexandros Batsakis0851de062010-02-05 03:45:06 -08003574 if (atomic_read(&clp->cl_count) > 1)
3575 nfs4_schedule_state_renewal(clp);
3576 nfs_put_client(clp);
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003577 kfree(data);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003578}
3579
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003580static void nfs4_renew_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581{
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003582 struct nfs4_renewdata *data = calldata;
3583 struct nfs_client *clp = data->client;
3584 unsigned long timestamp = data->timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
3586 if (task->tk_status < 0) {
Trond Myklebust95baa252009-05-26 14:51:00 -04003587 /* Unless we're shutting down, schedule state recovery! */
Trond Myklebust042b60b2011-08-24 15:07:37 -04003588 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) == 0)
3589 return;
3590 if (task->tk_status != NFS4ERR_CB_PATH_DOWN) {
Trond Myklebust0400a6b2011-03-09 16:00:53 -05003591 nfs4_schedule_lease_recovery(clp);
Trond Myklebust042b60b2011-08-24 15:07:37 -04003592 return;
3593 }
3594 nfs4_schedule_path_down_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 }
Trond Myklebust452e9352010-07-31 14:29:06 -04003596 do_renew_lease(clp, timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597}
3598
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003599static const struct rpc_call_ops nfs4_renew_ops = {
3600 .rpc_call_done = nfs4_renew_done,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08003601 .rpc_release = nfs4_renew_release,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003602};
3603
Trond Myklebust2f60ea62011-08-24 15:07:37 -04003604static int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605{
3606 struct rpc_message msg = {
3607 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3608 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003609 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 };
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003611 struct nfs4_renewdata *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612
Trond Myklebust2f60ea62011-08-24 15:07:37 -04003613 if (renew_flags == 0)
3614 return 0;
Alexandros Batsakis0851de062010-02-05 03:45:06 -08003615 if (!atomic_inc_not_zero(&clp->cl_count))
3616 return -EIO;
Trond Myklebustb569ad32011-08-24 15:07:35 -04003617 data = kmalloc(sizeof(*data), GFP_NOFS);
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003618 if (data == NULL)
3619 return -ENOMEM;
3620 data->client = clp;
3621 data->timestamp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Chuck Lever9bc4e3c2010-05-07 13:34:17 -04003623 &nfs4_renew_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624}
3625
Trond Myklebust8534d4e2011-08-24 15:07:37 -04003626static int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627{
3628 struct rpc_message msg = {
3629 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
3630 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01003631 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 };
3633 unsigned long now = jiffies;
3634 int status;
3635
3636 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
3637 if (status < 0)
3638 return status;
Trond Myklebust452e9352010-07-31 14:29:06 -04003639 do_renew_lease(clp, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 return 0;
3641}
3642
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003643static inline int nfs4_server_supports_acls(struct nfs_server *server)
3644{
3645 return (server->caps & NFS_CAP_ACLS)
3646 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
3647 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
3648}
3649
3650/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
3651 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
3652 * the stack.
3653 */
3654#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
3655
Neil Hormane9e3d722011-03-04 19:26:03 -05003656static int buf_to_pages_noslab(const void *buf, size_t buflen,
3657 struct page **pages, unsigned int *pgbase)
3658{
3659 struct page *newpage, **spages;
3660 int rc = 0;
3661 size_t len;
3662 spages = pages;
3663
3664 do {
Jovi Zhang43b7c3f2011-03-02 23:19:37 +00003665 len = min_t(size_t, PAGE_CACHE_SIZE, buflen);
Neil Hormane9e3d722011-03-04 19:26:03 -05003666 newpage = alloc_page(GFP_KERNEL);
3667
3668 if (newpage == NULL)
3669 goto unwind;
3670 memcpy(page_address(newpage), buf, len);
3671 buf += len;
3672 buflen -= len;
3673 *pages++ = newpage;
3674 rc++;
3675 } while (buflen != 0);
3676
3677 return rc;
3678
3679unwind:
3680 for(; rc > 0; rc--)
3681 __free_page(spages[rc-1]);
3682 return -ENOMEM;
3683}
3684
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003685struct nfs4_cached_acl {
3686 int cached;
3687 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00003688 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003689};
3690
3691static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003692{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003693 struct nfs_inode *nfsi = NFS_I(inode);
3694
3695 spin_lock(&inode->i_lock);
3696 kfree(nfsi->nfs4_acl);
3697 nfsi->nfs4_acl = acl;
3698 spin_unlock(&inode->i_lock);
3699}
3700
3701static void nfs4_zap_acl_attr(struct inode *inode)
3702{
3703 nfs4_set_cached_acl(inode, NULL);
3704}
3705
3706static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
3707{
3708 struct nfs_inode *nfsi = NFS_I(inode);
3709 struct nfs4_cached_acl *acl;
3710 int ret = -ENOENT;
3711
3712 spin_lock(&inode->i_lock);
3713 acl = nfsi->nfs4_acl;
3714 if (acl == NULL)
3715 goto out;
3716 if (buf == NULL) /* user is just asking for length */
3717 goto out_len;
3718 if (acl->cached == 0)
3719 goto out;
3720 ret = -ERANGE; /* see getxattr(2) man page */
3721 if (acl->len > buflen)
3722 goto out;
3723 memcpy(buf, acl->data, acl->len);
3724out_len:
3725 ret = acl->len;
3726out:
3727 spin_unlock(&inode->i_lock);
3728 return ret;
3729}
3730
Sachin Prabhu5794d212012-04-17 14:36:40 +01003731static void nfs4_write_cached_acl(struct inode *inode, struct page **pages, size_t pgbase, size_t acl_len)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003732{
3733 struct nfs4_cached_acl *acl;
3734
Sachin Prabhu5794d212012-04-17 14:36:40 +01003735 if (pages && acl_len <= PAGE_SIZE) {
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003736 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
3737 if (acl == NULL)
3738 goto out;
3739 acl->cached = 1;
Sachin Prabhu5794d212012-04-17 14:36:40 +01003740 _copy_from_pages(acl->data, pages, pgbase, acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003741 } else {
3742 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
3743 if (acl == NULL)
3744 goto out;
3745 acl->cached = 0;
3746 }
3747 acl->len = acl_len;
3748out:
3749 nfs4_set_cached_acl(inode, acl);
3750}
3751
Andy Adamsonbf118a32011-12-07 11:55:27 -05003752/*
3753 * The getxattr API returns the required buffer length when called with a
3754 * NULL buf. The NFSv4 acl tool then calls getxattr again after allocating
3755 * the required buf. On a NULL buf, we send a page of data to the server
3756 * guessing that the ACL request can be serviced by a page. If so, we cache
3757 * up to the page of ACL data, and the 2nd call to getxattr is serviced by
3758 * the cache. If not so, we throw away the page, and cache the required
3759 * length. The next getxattr call will then produce another round trip to
3760 * the server, this time with the input buf of the required size.
3761 */
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003762static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003763{
Andy Adamsonbf118a32011-12-07 11:55:27 -05003764 struct page *pages[NFS4ACL_MAXPAGES] = {NULL, };
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003765 struct nfs_getaclargs args = {
3766 .fh = NFS_FH(inode),
3767 .acl_pages = pages,
3768 .acl_len = buflen,
3769 };
Benny Halevy663c79b2009-04-01 09:21:59 -04003770 struct nfs_getaclres res = {
3771 .acl_len = buflen,
3772 };
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003773 struct rpc_message msg = {
3774 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
3775 .rpc_argp = &args,
Benny Halevy663c79b2009-04-01 09:21:59 -04003776 .rpc_resp = &res,
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003777 };
Andy Adamsonbf118a32011-12-07 11:55:27 -05003778 int ret = -ENOMEM, npages, i, acl_len = 0;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003779
Andy Adamsonbf118a32011-12-07 11:55:27 -05003780 npages = (buflen + PAGE_SIZE - 1) >> PAGE_SHIFT;
3781 /* As long as we're doing a round trip to the server anyway,
3782 * let's be prepared for a page of acl data. */
3783 if (npages == 0)
3784 npages = 1;
3785
Sachin Prabhu5a006892012-04-17 14:35:39 +01003786 /* Add an extra page to handle the bitmap returned */
3787 npages++;
3788
Andy Adamsonbf118a32011-12-07 11:55:27 -05003789 for (i = 0; i < npages; i++) {
3790 pages[i] = alloc_page(GFP_KERNEL);
3791 if (!pages[i])
3792 goto out_free;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003793 }
Sachin Prabhu5a006892012-04-17 14:35:39 +01003794
3795 /* for decoding across pages */
3796 res.acl_scratch = alloc_page(GFP_KERNEL);
3797 if (!res.acl_scratch)
3798 goto out_free;
3799
Andy Adamsonbf118a32011-12-07 11:55:27 -05003800 args.acl_len = npages * PAGE_SIZE;
3801 args.acl_pgbase = 0;
Sachin Prabhu5a006892012-04-17 14:35:39 +01003802
Andy Adamsonbf118a32011-12-07 11:55:27 -05003803 /* Let decode_getfacl know not to fail if the ACL data is larger than
3804 * the page we send as a guess */
3805 if (buf == NULL)
3806 res.acl_flags |= NFS4_ACL_LEN_REQUEST;
Andy Adamsonbf118a32011-12-07 11:55:27 -05003807
Peng Taode040be2012-01-10 22:42:47 +08003808 dprintk("%s buf %p buflen %zu npages %d args.acl_len %zu\n",
Andy Adamsonbf118a32011-12-07 11:55:27 -05003809 __func__, buf, buflen, npages, args.acl_len);
3810 ret = nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode),
3811 &msg, &args.seq_args, &res.seq_res, 0);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003812 if (ret)
3813 goto out_free;
Andy Adamsonbf118a32011-12-07 11:55:27 -05003814
3815 acl_len = res.acl_len - res.acl_data_offset;
3816 if (acl_len > args.acl_len)
Sachin Prabhu5794d212012-04-17 14:36:40 +01003817 nfs4_write_cached_acl(inode, NULL, 0, acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003818 else
Sachin Prabhu5794d212012-04-17 14:36:40 +01003819 nfs4_write_cached_acl(inode, pages, res.acl_data_offset,
Andy Adamsonbf118a32011-12-07 11:55:27 -05003820 acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003821 if (buf) {
3822 ret = -ERANGE;
Andy Adamsonbf118a32011-12-07 11:55:27 -05003823 if (acl_len > buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003824 goto out_free;
Andy Adamsonbf118a32011-12-07 11:55:27 -05003825 _copy_from_pages(buf, pages, res.acl_data_offset,
Sachin Prabhu20e0fa92012-03-22 16:46:28 +00003826 acl_len);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003827 }
Andy Adamsonbf118a32011-12-07 11:55:27 -05003828 ret = acl_len;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003829out_free:
Andy Adamsonbf118a32011-12-07 11:55:27 -05003830 for (i = 0; i < npages; i++)
3831 if (pages[i])
3832 __free_page(pages[i]);
Trond Myklebust331818f2012-02-03 18:30:53 -05003833 if (res.acl_scratch)
3834 __free_page(res.acl_scratch);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003835 return ret;
3836}
3837
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003838static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
3839{
3840 struct nfs4_exception exception = { };
3841 ssize_t ret;
3842 do {
3843 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
3844 if (ret >= 0)
3845 break;
3846 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
3847 } while (exception.retry);
3848 return ret;
3849}
3850
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003851static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
3852{
3853 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003854 int ret;
3855
3856 if (!nfs4_server_supports_acls(server))
3857 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003858 ret = nfs_revalidate_inode(server, inode);
3859 if (ret < 0)
3860 return ret;
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00003861 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
3862 nfs_zap_acl_cache(inode);
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003863 ret = nfs4_read_cached_acl(inode, buf, buflen);
3864 if (ret != -ENOENT)
Andy Adamsonbf118a32011-12-07 11:55:27 -05003865 /* -ENOENT is returned if there is no ACL or if there is an ACL
3866 * but no cached acl data, just the acl length */
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003867 return ret;
3868 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003869}
3870
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003871static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003872{
3873 struct nfs_server *server = NFS_SERVER(inode);
3874 struct page *pages[NFS4ACL_MAXPAGES];
3875 struct nfs_setaclargs arg = {
3876 .fh = NFS_FH(inode),
3877 .acl_pages = pages,
3878 .acl_len = buflen,
3879 };
Benny Halevy73c403a2009-04-01 09:22:01 -04003880 struct nfs_setaclres res;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003881 struct rpc_message msg = {
3882 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
3883 .rpc_argp = &arg,
Benny Halevy73c403a2009-04-01 09:22:01 -04003884 .rpc_resp = &res,
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003885 };
Neil Hormane9e3d722011-03-04 19:26:03 -05003886 int ret, i;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003887
3888 if (!nfs4_server_supports_acls(server))
3889 return -EOPNOTSUPP;
Neil Hormane9e3d722011-03-04 19:26:03 -05003890 i = buf_to_pages_noslab(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
3891 if (i < 0)
3892 return i;
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04003893 nfs4_inode_return_delegation(inode);
Bryan Schumaker7c513052011-03-24 17:12:24 +00003894 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Neil Hormane9e3d722011-03-04 19:26:03 -05003895
3896 /*
3897 * Free each page after tx, so the only ref left is
3898 * held by the network stack
3899 */
3900 for (; i > 0; i--)
3901 put_page(pages[i-1]);
3902
Aneesh Kumar K.V08a22b32010-12-01 10:42:16 +00003903 /*
3904 * Acl update can result in inode attribute update.
3905 * so mark the attribute cache invalid.
3906 */
3907 spin_lock(&inode->i_lock);
3908 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR;
3909 spin_unlock(&inode->i_lock);
Trond Myklebustf41f7412008-06-11 17:39:04 -04003910 nfs_access_zap_cache(inode);
3911 nfs_zap_acl_cache(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003912 return ret;
3913}
3914
Trond Myklebust16b4289c2006-08-24 12:27:15 -04003915static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
3916{
3917 struct nfs4_exception exception = { };
3918 int err;
3919 do {
3920 err = nfs4_handle_exception(NFS_SERVER(inode),
3921 __nfs4_proc_set_acl(inode, buf, buflen),
3922 &exception);
3923 } while (exception.retry);
3924 return err;
3925}
3926
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927static int
Trond Myklebustaa5190d2010-06-16 09:52:25 -04003928nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929{
Trond Myklebustaa5190d2010-06-16 09:52:25 -04003930 struct nfs_client *clp = server->nfs_client;
3931
3932 if (task->tk_status >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 return 0;
3934 switch(task->tk_status) {
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05003935 case -NFS4ERR_DELEG_REVOKED:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003936 case -NFS4ERR_ADMIN_REVOKED:
3937 case -NFS4ERR_BAD_STATEID:
Trond Myklebust14977482012-03-27 18:31:25 -04003938 if (state == NULL)
3939 break;
3940 nfs_remove_bad_delegation(state->inode);
Trond Myklebust9e33bed2008-12-23 15:21:46 -05003941 case -NFS4ERR_OPENMODE:
3942 if (state == NULL)
3943 break;
Trond Myklebust0400a6b2011-03-09 16:00:53 -05003944 nfs4_schedule_stateid_recovery(server, state);
3945 goto wait_on_recovery;
Trond Myklebust0ced63d2011-05-26 14:26:35 -04003946 case -NFS4ERR_EXPIRED:
3947 if (state != NULL)
3948 nfs4_schedule_stateid_recovery(server, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003950 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05003951 nfs4_schedule_lease_recovery(clp);
3952 goto wait_on_recovery;
Andy Adamson4745e312009-04-01 09:22:42 -04003953#if defined(CONFIG_NFS_V4_1)
3954 case -NFS4ERR_BADSESSION:
3955 case -NFS4ERR_BADSLOT:
3956 case -NFS4ERR_BAD_HIGH_SLOT:
3957 case -NFS4ERR_DEADSESSION:
3958 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
3959 case -NFS4ERR_SEQ_FALSE_RETRY:
3960 case -NFS4ERR_SEQ_MISORDERED:
3961 dprintk("%s ERROR %d, Reset session\n", __func__,
3962 task->tk_status);
Trond Myklebust9f594792012-05-27 13:02:53 -04003963 nfs4_schedule_session_recovery(clp->cl_session, task->tk_status);
Andy Adamson4745e312009-04-01 09:22:42 -04003964 task->tk_status = 0;
3965 return -EAGAIN;
3966#endif /* CONFIG_NFS_V4_1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04003968 nfs_inc_server_stats(server, NFSIOS_DELAY);
Chuck Lever006ea732006-03-20 13:44:14 -05003969 case -NFS4ERR_GRACE:
Jeff Layton2c643482010-01-07 09:42:03 -05003970 case -EKEYEXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971 rpc_delay(task, NFS4_POLL_RETRY_MAX);
3972 task->tk_status = 0;
3973 return -EAGAIN;
Andy Adamsona8a4ae32011-05-03 13:43:03 -04003974 case -NFS4ERR_RETRY_UNCACHED_REP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 case -NFS4ERR_OLD_STATEID:
3976 task->tk_status = 0;
3977 return -EAGAIN;
3978 }
3979 task->tk_status = nfs4_map_errors(task->tk_status);
3980 return 0;
Trond Myklebust0400a6b2011-03-09 16:00:53 -05003981wait_on_recovery:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003982 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05003983 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
3984 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
3985 task->tk_status = 0;
3986 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987}
3988
Chuck Leverf0920752012-05-21 22:45:41 -04003989static void nfs4_init_boot_verifier(const struct nfs_client *clp,
3990 nfs4_verifier *bootverf)
Chuck Levercd937102012-03-02 17:14:31 -05003991{
3992 __be32 verf[2];
3993
Chuck Lever2c820d92012-05-21 22:45:33 -04003994 if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) {
3995 /* An impossible timestamp guarantees this value
3996 * will never match a generated boot time. */
3997 verf[0] = 0;
3998 verf[1] = (__be32)(NSEC_PER_SEC + 1);
3999 } else {
Chuck Leverf0920752012-05-21 22:45:41 -04004000 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
4001 verf[0] = (__be32)nn->boot_time.tv_sec;
4002 verf[1] = (__be32)nn->boot_time.tv_nsec;
Chuck Lever2c820d92012-05-21 22:45:33 -04004003 }
Chuck Levercd937102012-03-02 17:14:31 -05004004 memcpy(bootverf->data, verf, sizeof(bootverf->data));
4005}
4006
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04004007int nfs4_proc_setclientid(struct nfs_client *clp, u32 program,
4008 unsigned short port, struct rpc_cred *cred,
4009 struct nfs4_setclientid_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010{
4011 nfs4_verifier sc_verifier;
4012 struct nfs4_setclientid setclientid = {
4013 .sc_verifier = &sc_verifier,
4014 .sc_prog = program,
Andy Adamsonf4eecd52011-01-06 02:04:30 +00004015 .sc_cb_ident = clp->cl_cb_ident,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 };
4017 struct rpc_message msg = {
4018 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
4019 .rpc_argp = &setclientid,
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04004020 .rpc_resp = res,
Trond Myklebust286d7d62006-01-03 09:55:26 +01004021 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 int loop = 0;
4024 int status;
4025
Chuck Leverf0920752012-05-21 22:45:41 -04004026 nfs4_init_boot_verifier(clp, &sc_verifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
4028 for(;;) {
Trond Myklebust2446ab62012-03-01 17:00:56 -05004029 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
Trond Myklebust69dd7162007-12-14 14:56:07 -05004031 sizeof(setclientid.sc_name), "%s/%s %s %s %u",
Chuck Leverd4d3c502007-12-10 14:57:09 -05004032 clp->cl_ipaddr,
4033 rpc_peeraddr2str(clp->cl_rpcclient,
4034 RPC_DISPLAY_ADDR),
Trond Myklebust69dd7162007-12-14 14:56:07 -05004035 rpc_peeraddr2str(clp->cl_rpcclient,
4036 RPC_DISPLAY_PROTO),
Trond Myklebust78ea3232008-04-07 20:49:28 -04004037 clp->cl_rpcclient->cl_auth->au_ops->au_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 clp->cl_id_uniquifier);
4039 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
Chuck Leverd4d3c502007-12-10 14:57:09 -05004040 sizeof(setclientid.sc_netid),
4041 rpc_peeraddr2str(clp->cl_rpcclient,
4042 RPC_DISPLAY_NETID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
Chuck Leverd4d3c502007-12-10 14:57:09 -05004044 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 clp->cl_ipaddr, port >> 8, port & 255);
Trond Myklebust2446ab62012-03-01 17:00:56 -05004046 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047
Trond Myklebust1bd714f2011-04-24 14:29:33 -04004048 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 if (status != -NFS4ERR_CLID_INUSE)
4050 break;
Trond Myklebustfd954ae2011-04-24 14:28:18 -04004051 if (loop != 0) {
4052 ++clp->cl_id_uniquifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 break;
Trond Myklebustfd954ae2011-04-24 14:28:18 -04004054 }
4055 ++loop;
4056 ssleep(clp->cl_lease_time / HZ + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 }
4058 return status;
4059}
4060
Trond Myklebustfd954ae2011-04-24 14:28:18 -04004061int nfs4_proc_setclientid_confirm(struct nfs_client *clp,
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04004062 struct nfs4_setclientid_res *arg,
4063 struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064{
4065 struct nfs_fsinfo fsinfo;
4066 struct rpc_message msg = {
4067 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
Trond Myklebustbb8b27e2010-04-16 16:43:06 -04004068 .rpc_argp = arg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01004070 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 };
4072 unsigned long now;
4073 int status;
4074
4075 now = jiffies;
Trond Myklebust1bd714f2011-04-24 14:29:33 -04004076 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 if (status == 0) {
4078 spin_lock(&clp->cl_lock);
4079 clp->cl_lease_time = fsinfo.lease_time * HZ;
4080 clp->cl_last_renewal = now;
4081 spin_unlock(&clp->cl_lock);
4082 }
4083 return status;
4084}
4085
Trond Myklebustfe650402006-01-03 09:55:18 +01004086struct nfs4_delegreturndata {
4087 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01004088 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01004089 struct nfs_fh fh;
4090 nfs4_stateid stateid;
Trond Myklebust26e976a2006-01-03 09:55:21 +01004091 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01004092 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01004093 int rpc_status;
4094};
4095
Trond Myklebustfe650402006-01-03 09:55:18 +01004096static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
4097{
4098 struct nfs4_delegreturndata *data = calldata;
Andy Adamson938e1012009-04-01 09:22:28 -04004099
Trond Myklebust14516c32010-07-31 14:29:06 -04004100 if (!nfs4_sequence_done(task, &data->res.seq_res))
4101 return;
Andy Adamson938e1012009-04-01 09:22:28 -04004102
Ricardo Labiaga79708862009-12-07 09:23:21 -05004103 switch (task->tk_status) {
4104 case -NFS4ERR_STALE_STATEID:
4105 case -NFS4ERR_EXPIRED:
4106 case 0:
Trond Myklebustfa178f22006-01-03 09:55:38 +01004107 renew_lease(data->res.server, data->timestamp);
Ricardo Labiaga79708862009-12-07 09:23:21 -05004108 break;
4109 default:
4110 if (nfs4_async_handle_error(task, data->res.server, NULL) ==
4111 -EAGAIN) {
Trond Myklebustd00c5d42011-10-19 12:17:29 -07004112 rpc_restart_call_prepare(task);
Ricardo Labiaga79708862009-12-07 09:23:21 -05004113 return;
4114 }
4115 }
4116 data->rpc_status = task->tk_status;
Trond Myklebustfe650402006-01-03 09:55:18 +01004117}
4118
4119static void nfs4_delegreturn_release(void *calldata)
4120{
Trond Myklebustfe650402006-01-03 09:55:18 +01004121 kfree(calldata);
4122}
4123
Andy Adamson938e1012009-04-01 09:22:28 -04004124#if defined(CONFIG_NFS_V4_1)
4125static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
4126{
4127 struct nfs4_delegreturndata *d_data;
4128
4129 d_data = (struct nfs4_delegreturndata *)data;
4130
Trond Myklebust035168a2010-06-16 09:52:26 -04004131 if (nfs4_setup_sequence(d_data->res.server,
Andy Adamson938e1012009-04-01 09:22:28 -04004132 &d_data->args.seq_args,
Trond Myklebust9d12b212012-01-17 22:04:25 -05004133 &d_data->res.seq_res, task))
Andy Adamson938e1012009-04-01 09:22:28 -04004134 return;
4135 rpc_call_start(task);
4136}
4137#endif /* CONFIG_NFS_V4_1 */
4138
Jesper Juhlc8d149f2006-03-20 13:44:07 -05004139static const struct rpc_call_ops nfs4_delegreturn_ops = {
Andy Adamson938e1012009-04-01 09:22:28 -04004140#if defined(CONFIG_NFS_V4_1)
4141 .rpc_call_prepare = nfs4_delegreturn_prepare,
4142#endif /* CONFIG_NFS_V4_1 */
Trond Myklebustfe650402006-01-03 09:55:18 +01004143 .rpc_call_done = nfs4_delegreturn_done,
4144 .rpc_release = nfs4_delegreturn_release,
4145};
4146
Trond Myklebuste6f81072008-01-24 18:14:34 -05004147static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Trond Myklebustfe650402006-01-03 09:55:18 +01004148{
4149 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01004150 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01004151 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004152 struct rpc_message msg = {
4153 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
4154 .rpc_cred = cred,
4155 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04004156 struct rpc_task_setup task_setup_data = {
4157 .rpc_client = server->client,
Trond Myklebust5138fde2007-07-14 15:40:01 -04004158 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004159 .callback_ops = &nfs4_delegreturn_ops,
4160 .flags = RPC_TASK_ASYNC,
4161 };
Trond Myklebuste6f81072008-01-24 18:14:34 -05004162 int status = 0;
Trond Myklebustfe650402006-01-03 09:55:18 +01004163
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004164 data = kzalloc(sizeof(*data), GFP_NOFS);
Trond Myklebustfe650402006-01-03 09:55:18 +01004165 if (data == NULL)
4166 return -ENOMEM;
Trond Myklebust9d12b212012-01-17 22:04:25 -05004167 nfs41_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Trond Myklebustfe650402006-01-03 09:55:18 +01004168 data->args.fhandle = &data->fh;
4169 data->args.stateid = &data->stateid;
Trond Myklebust9e907fe2012-04-27 13:48:17 -04004170 data->args.bitmask = server->cache_consistency_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01004171 nfs_copy_fh(&data->fh, NFS_FH(inode));
Trond Myklebustf597c532012-03-04 18:13:56 -05004172 nfs4_stateid_copy(&data->stateid, stateid);
Trond Myklebustfa178f22006-01-03 09:55:38 +01004173 data->res.fattr = &data->fattr;
4174 data->res.server = server;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004175 nfs_fattr_init(data->res.fattr);
Trond Myklebust26e976a2006-01-03 09:55:21 +01004176 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01004177 data->rpc_status = 0;
4178
Trond Myklebustc970aa82007-07-14 15:39:59 -04004179 task_setup_data.callback_data = data;
Trond Myklebust1174dd12010-12-21 10:52:24 -05004180 msg.rpc_argp = &data->args;
4181 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04004182 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05004183 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01004184 return PTR_ERR(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05004185 if (!issync)
4186 goto out;
Trond Myklebustfe650402006-01-03 09:55:18 +01004187 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6f81072008-01-24 18:14:34 -05004188 if (status != 0)
4189 goto out;
4190 status = data->rpc_status;
Trond Myklebuste144cbc2012-04-28 16:05:03 -04004191 if (status == 0)
4192 nfs_post_op_update_inode_force_wcc(inode, &data->fattr);
4193 else
4194 nfs_refresh_inode(inode, &data->fattr);
Trond Myklebuste6f81072008-01-24 18:14:34 -05004195out:
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05004196 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01004197 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198}
4199
Trond Myklebuste6f81072008-01-24 18:14:34 -05004200int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201{
4202 struct nfs_server *server = NFS_SERVER(inode);
4203 struct nfs4_exception exception = { };
4204 int err;
4205 do {
Trond Myklebuste6f81072008-01-24 18:14:34 -05004206 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207 switch (err) {
4208 case -NFS4ERR_STALE_STATEID:
4209 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210 case 0:
4211 return 0;
4212 }
4213 err = nfs4_handle_exception(server, err, &exception);
4214 } while (exception.retry);
4215 return err;
4216}
4217
4218#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
4219#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
4220
4221/*
4222 * sleep, with exponential backoff, and retry the LOCK operation.
4223 */
4224static unsigned long
4225nfs4_set_lock_task_retry(unsigned long timeout)
4226{
Jeff Laytond3103102011-12-01 22:44:39 +01004227 freezable_schedule_timeout_killable(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 timeout <<= 1;
4229 if (timeout > NFS4_LOCK_MAXTIMEOUT)
4230 return NFS4_LOCK_MAXTIMEOUT;
4231 return timeout;
4232}
4233
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4235{
4236 struct inode *inode = state->inode;
4237 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04004238 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004239 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004241 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004243 struct nfs_lockt_res res = {
4244 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 };
4246 struct rpc_message msg = {
4247 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
4248 .rpc_argp = &arg,
4249 .rpc_resp = &res,
4250 .rpc_cred = state->owner->so_cred,
4251 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 struct nfs4_lock_state *lsp;
4253 int status;
4254
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004255 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00004256 status = nfs4_set_lock_state(state, request);
4257 if (status != 0)
4258 goto out;
4259 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust48c22eb2012-01-17 22:04:25 -05004260 arg.lock_owner.id = lsp->ls_seqid.owner_id;
Trond Myklebustd035c362010-12-21 10:45:27 -05004261 arg.lock_owner.s_dev = server->s_dev;
Bryan Schumaker7c513052011-03-24 17:12:24 +00004262 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004263 switch (status) {
4264 case 0:
4265 request->fl_type = F_UNLCK;
4266 break;
4267 case -NFS4ERR_DENIED:
4268 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05004270 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00004271out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 return status;
4273}
4274
4275static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4276{
4277 struct nfs4_exception exception = { };
4278 int err;
4279
4280 do {
4281 err = nfs4_handle_exception(NFS_SERVER(state->inode),
4282 _nfs4_proc_getlk(state, cmd, request),
4283 &exception);
4284 } while (exception.retry);
4285 return err;
4286}
4287
4288static int do_vfs_lock(struct file *file, struct file_lock *fl)
4289{
4290 int res = 0;
4291 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
4292 case FL_POSIX:
4293 res = posix_lock_file_wait(file, fl);
4294 break;
4295 case FL_FLOCK:
4296 res = flock_lock_file_wait(file, fl);
4297 break;
4298 default:
4299 BUG();
4300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 return res;
4302}
4303
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004304struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004305 struct nfs_locku_args arg;
4306 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004307 struct nfs4_lock_state *lsp;
4308 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004309 struct file_lock fl;
4310 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01004311 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004312};
4313
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004314static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
4315 struct nfs_open_context *ctx,
4316 struct nfs4_lock_state *lsp,
4317 struct nfs_seqid *seqid)
4318{
4319 struct nfs4_unlockdata *p;
4320 struct inode *inode = lsp->ls_state->inode;
4321
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004322 p = kzalloc(sizeof(*p), GFP_NOFS);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004323 if (p == NULL)
4324 return NULL;
4325 p->arg.fh = NFS_FH(inode);
4326 p->arg.fl = &p->fl;
4327 p->arg.seqid = seqid;
Trond Myklebustc1d51932008-04-07 13:20:54 -04004328 p->res.seqid = seqid;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004329 p->arg.stateid = &lsp->ls_stateid;
4330 p->lsp = lsp;
4331 atomic_inc(&lsp->ls_count);
4332 /* Ensure we don't close file until we're done freeing locks! */
4333 p->ctx = get_nfs_open_context(ctx);
4334 memcpy(&p->fl, fl, sizeof(p->fl));
4335 p->server = NFS_SERVER(inode);
4336 return p;
4337}
4338
Trond Myklebust06f814a2006-01-03 09:55:07 +01004339static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004340{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004341 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004342 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01004343 nfs4_put_lock_state(calldata->lsp);
4344 put_nfs_open_context(calldata->ctx);
4345 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004346}
4347
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004348static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004349{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004350 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004351
Trond Myklebust14516c32010-07-31 14:29:06 -04004352 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
4353 return;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004354 switch (task->tk_status) {
4355 case 0:
Trond Myklebustf597c532012-03-04 18:13:56 -05004356 nfs4_stateid_copy(&calldata->lsp->ls_stateid,
4357 &calldata->res.stateid);
Trond Myklebust26e976a2006-01-03 09:55:21 +01004358 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004359 break;
Trond Myklebust9e33bed2008-12-23 15:21:46 -05004360 case -NFS4ERR_BAD_STATEID:
4361 case -NFS4ERR_OLD_STATEID:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004362 case -NFS4ERR_STALE_STATEID:
4363 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004364 break;
4365 default:
Trond Myklebust9e33bed2008-12-23 15:21:46 -05004366 if (nfs4_async_handle_error(task, calldata->server, NULL) == -EAGAIN)
Trond Myklebustd00c5d42011-10-19 12:17:29 -07004367 rpc_restart_call_prepare(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004368 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004369}
4370
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01004371static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004372{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01004373 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004375 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004376 return;
4377 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004378 /* Note: exit _without_ running nfs4_locku_done */
4379 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004380 return;
4381 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01004382 calldata->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04004383 if (nfs4_setup_sequence(calldata->server,
Andy Adamsona8936932009-04-01 09:22:23 -04004384 &calldata->arg.seq_args,
Trond Myklebust9d12b212012-01-17 22:04:25 -05004385 &calldata->res.seq_res, task))
Andy Adamsona8936932009-04-01 09:22:23 -04004386 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004387 rpc_call_start(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388}
4389
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004390static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01004391 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004392 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01004393 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01004394};
4395
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004396static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
4397 struct nfs_open_context *ctx,
4398 struct nfs4_lock_state *lsp,
4399 struct nfs_seqid *seqid)
4400{
4401 struct nfs4_unlockdata *data;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004402 struct rpc_message msg = {
4403 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
4404 .rpc_cred = ctx->cred,
4405 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04004406 struct rpc_task_setup task_setup_data = {
4407 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04004408 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004409 .callback_ops = &nfs4_locku_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05004410 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004411 .flags = RPC_TASK_ASYNC,
4412 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004413
Frank Filz137d6ac2007-07-09 15:32:29 -07004414 /* Ensure this is an unlock - when canceling a lock, the
4415 * canceled lock is passed in, and it won't be an unlock.
4416 */
4417 fl->fl_type = F_UNLCK;
4418
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004419 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
4420 if (data == NULL) {
4421 nfs_free_seqid(seqid);
4422 return ERR_PTR(-ENOMEM);
4423 }
4424
Trond Myklebust9d12b212012-01-17 22:04:25 -05004425 nfs41_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1);
Trond Myklebust1174dd12010-12-21 10:52:24 -05004426 msg.rpc_argp = &data->arg;
4427 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04004428 task_setup_data.callback_data = data;
4429 return rpc_run_task(&task_setup_data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004430}
4431
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
4433{
Trond Myklebust19e03c52008-12-23 15:21:44 -05004434 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004435 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004436 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01004437 struct rpc_task *task;
4438 int status = 0;
Trond Myklebust536ff0f2008-04-04 15:08:02 -04004439 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440
Trond Myklebust9b073572006-06-29 16:38:34 -04004441 status = nfs4_set_lock_state(state, request);
4442 /* Unlock _before_ we do the RPC call */
4443 request->fl_flags |= FL_EXISTS;
Trond Myklebust19e03c52008-12-23 15:21:44 -05004444 down_read(&nfsi->rwsem);
4445 if (do_vfs_lock(request->fl_file, request) == -ENOENT) {
4446 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04004447 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05004448 }
4449 up_read(&nfsi->rwsem);
Trond Myklebust9b073572006-06-29 16:38:34 -04004450 if (status != 0)
4451 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004452 /* Is this a delegated lock? */
4453 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04004454 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004455 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004456 seqid = nfs_alloc_seqid(&lsp->ls_seqid, GFP_KERNEL);
Trond Myklebust9b073572006-06-29 16:38:34 -04004457 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004458 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04004459 goto out;
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004460 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004461 status = PTR_ERR(task);
4462 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04004463 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004464 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05004465 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04004466out:
Trond Myklebust536ff0f2008-04-04 15:08:02 -04004467 request->fl_flags = fl_flags;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07004468 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469}
4470
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004471struct nfs4_lockdata {
4472 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01004473 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004474 struct nfs4_lock_state *lsp;
4475 struct nfs_open_context *ctx;
4476 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01004477 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004478 int rpc_status;
4479 int cancelled;
Andy Adamson66179ef2009-04-01 09:22:22 -04004480 struct nfs_server *server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004481};
4482
4483static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004484 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp,
4485 gfp_t gfp_mask)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004486{
4487 struct nfs4_lockdata *p;
4488 struct inode *inode = lsp->ls_state->inode;
4489 struct nfs_server *server = NFS_SERVER(inode);
4490
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004491 p = kzalloc(sizeof(*p), gfp_mask);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004492 if (p == NULL)
4493 return NULL;
4494
4495 p->arg.fh = NFS_FH(inode);
4496 p->arg.fl = &p->fl;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004497 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004498 if (p->arg.open_seqid == NULL)
4499 goto out_free;
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004500 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid, gfp_mask);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004501 if (p->arg.lock_seqid == NULL)
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004502 goto out_free_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004503 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04004504 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust48c22eb2012-01-17 22:04:25 -05004505 p->arg.lock_owner.id = lsp->ls_seqid.owner_id;
Trond Myklebustd035c362010-12-21 10:45:27 -05004506 p->arg.lock_owner.s_dev = server->s_dev;
Trond Myklebustc1d51932008-04-07 13:20:54 -04004507 p->res.lock_seqid = p->arg.lock_seqid;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004508 p->lsp = lsp;
Andy Adamson66179ef2009-04-01 09:22:22 -04004509 p->server = server;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004510 atomic_inc(&lsp->ls_count);
4511 p->ctx = get_nfs_open_context(ctx);
4512 memcpy(&p->fl, fl, sizeof(p->fl));
4513 return p;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004514out_free_seqid:
4515 nfs_free_seqid(p->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004516out_free:
4517 kfree(p);
4518 return NULL;
4519}
4520
4521static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
4522{
4523 struct nfs4_lockdata *data = calldata;
4524 struct nfs4_state *state = data->lsp->ls_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525
Harvey Harrison3110ff82008-05-02 13:42:44 -07004526 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004527 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
4528 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004529 /* Do we need to do an open_to_lock_owner? */
4530 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
Trond Myklebuste6e21972008-01-02 16:27:16 -05004531 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0)
4532 return;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004533 data->arg.open_stateid = &state->stateid;
4534 data->arg.new_lock_owner = 1;
Trond Myklebustc1d51932008-04-07 13:20:54 -04004535 data->res.open_seqid = data->arg.open_seqid;
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004536 } else
4537 data->arg.new_lock_owner = 0;
Trond Myklebust26e976a2006-01-03 09:55:21 +01004538 data->timestamp = jiffies;
Trond Myklebust035168a2010-06-16 09:52:26 -04004539 if (nfs4_setup_sequence(data->server,
4540 &data->arg.seq_args,
Trond Myklebust9d12b212012-01-17 22:04:25 -05004541 &data->res.seq_res, task))
Andy Adamson66179ef2009-04-01 09:22:22 -04004542 return;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004543 rpc_call_start(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004544 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004545}
4546
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004547static void nfs4_recover_lock_prepare(struct rpc_task *task, void *calldata)
4548{
4549 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
4550 nfs4_lock_prepare(task, calldata);
4551}
4552
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004553static void nfs4_lock_done(struct rpc_task *task, void *calldata)
4554{
4555 struct nfs4_lockdata *data = calldata;
4556
Harvey Harrison3110ff82008-05-02 13:42:44 -07004557 dprintk("%s: begin!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004558
Trond Myklebust14516c32010-07-31 14:29:06 -04004559 if (!nfs4_sequence_done(task, &data->res.seq_res))
4560 return;
Andy Adamson66179ef2009-04-01 09:22:22 -04004561
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004562 data->rpc_status = task->tk_status;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004563 if (data->arg.new_lock_owner != 0) {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004564 if (data->rpc_status == 0)
4565 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
4566 else
4567 goto out;
4568 }
4569 if (data->rpc_status == 0) {
Trond Myklebustf597c532012-03-04 18:13:56 -05004570 nfs4_stateid_copy(&data->lsp->ls_stateid, &data->res.stateid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004571 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Al Viro3d4ff432011-06-22 18:40:12 -04004572 renew_lease(NFS_SERVER(data->ctx->dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004573 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004574out:
Harvey Harrison3110ff82008-05-02 13:42:44 -07004575 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004576}
4577
4578static void nfs4_lock_release(void *calldata)
4579{
4580 struct nfs4_lockdata *data = calldata;
4581
Harvey Harrison3110ff82008-05-02 13:42:44 -07004582 dprintk("%s: begin!\n", __func__);
Trond Myklebust2f74c0a2008-01-08 17:56:07 -05004583 nfs_free_seqid(data->arg.open_seqid);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004584 if (data->cancelled != 0) {
4585 struct rpc_task *task;
4586 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
4587 data->arg.lock_seqid);
4588 if (!IS_ERR(task))
Trond Myklebustbf294b42011-02-21 11:05:41 -08004589 rpc_put_task_async(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004590 dprintk("%s: cancelling lock!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004591 } else
4592 nfs_free_seqid(data->arg.lock_seqid);
4593 nfs4_put_lock_state(data->lsp);
4594 put_nfs_open_context(data->ctx);
4595 kfree(data);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004596 dprintk("%s: done!\n", __func__);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004597}
4598
4599static const struct rpc_call_ops nfs4_lock_ops = {
4600 .rpc_call_prepare = nfs4_lock_prepare,
4601 .rpc_call_done = nfs4_lock_done,
4602 .rpc_release = nfs4_lock_release,
4603};
4604
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004605static const struct rpc_call_ops nfs4_recover_lock_ops = {
4606 .rpc_call_prepare = nfs4_recover_lock_prepare,
4607 .rpc_call_done = nfs4_lock_done,
4608 .rpc_release = nfs4_lock_release,
4609};
4610
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004611static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error)
4612{
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004613 switch (error) {
4614 case -NFS4ERR_ADMIN_REVOKED:
4615 case -NFS4ERR_BAD_STATEID:
Trond Myklebustecac7992011-03-09 16:00:56 -05004616 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004617 if (new_lock_owner != 0 ||
4618 (lsp->ls_flags & NFS_LOCK_INITIALIZED) != 0)
Trond Myklebustecac7992011-03-09 16:00:56 -05004619 nfs4_schedule_stateid_recovery(server, lsp->ls_state);
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05004620 break;
4621 case -NFS4ERR_STALE_STATEID:
Trond Myklebusta2c0b9e2010-01-26 15:42:47 -05004622 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
Trond Myklebustecac7992011-03-09 16:00:56 -05004623 case -NFS4ERR_EXPIRED:
4624 nfs4_schedule_lease_recovery(server->nfs_client);
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004625 };
4626}
4627
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004628static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type)
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004629{
4630 struct nfs4_lockdata *data;
4631 struct rpc_task *task;
Trond Myklebust5138fde2007-07-14 15:40:01 -04004632 struct rpc_message msg = {
4633 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
4634 .rpc_cred = state->owner->so_cred,
4635 };
Trond Myklebustc970aa82007-07-14 15:39:59 -04004636 struct rpc_task_setup task_setup_data = {
4637 .rpc_client = NFS_CLIENT(state->inode),
Trond Myklebust5138fde2007-07-14 15:40:01 -04004638 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004639 .callback_ops = &nfs4_lock_ops,
Trond Myklebust101070c2008-02-19 20:04:23 -05004640 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -04004641 .flags = RPC_TASK_ASYNC,
4642 };
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004643 int ret;
4644
Harvey Harrison3110ff82008-05-02 13:42:44 -07004645 dprintk("%s: begin!\n", __func__);
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004646 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
Trond Myklebust8535b2b2010-05-13 12:51:01 -04004647 fl->fl_u.nfs4_fl.owner,
4648 recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004649 if (data == NULL)
4650 return -ENOMEM;
4651 if (IS_SETLKW(cmd))
4652 data->arg.block = 1;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004653 if (recovery_type > NFS_LOCK_NEW) {
4654 if (recovery_type == NFS_LOCK_RECLAIM)
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004655 data->arg.reclaim = NFS_LOCK_RECLAIM;
Alexandros Batsakisb2579572009-12-14 21:27:57 -08004656 task_setup_data.callback_ops = &nfs4_recover_lock_ops;
4657 }
Trond Myklebust9d12b212012-01-17 22:04:25 -05004658 nfs41_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1);
Trond Myklebust1174dd12010-12-21 10:52:24 -05004659 msg.rpc_argp = &data->arg;
4660 msg.rpc_resp = &data->res;
Trond Myklebustc970aa82007-07-14 15:39:59 -04004661 task_setup_data.callback_data = data;
4662 task = rpc_run_task(&task_setup_data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05004663 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004664 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004665 ret = nfs4_wait_for_completion_rpc_task(task);
4666 if (ret == 0) {
4667 ret = data->rpc_status;
Trond Myklebust2bee72a2010-01-26 15:42:21 -05004668 if (ret)
4669 nfs4_handle_setlk_error(data->server, data->lsp,
4670 data->arg.new_lock_owner, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004671 } else
4672 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05004673 rpc_put_task(task);
Harvey Harrison3110ff82008-05-02 13:42:44 -07004674 dprintk("%s: done, ret = %d!\n", __func__, ret);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01004675 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676}
4677
4678static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
4679{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004680 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust05ffe242012-04-18 12:20:10 -04004681 struct nfs4_exception exception = {
4682 .inode = state->inode,
4683 };
Trond Myklebust202b50d2005-06-22 17:16:29 +00004684 int err;
4685
4686 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004687 /* Cache the lock if possible... */
4688 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4689 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004690 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM);
Trond Myklebust168667c2010-10-19 19:47:49 -04004691 if (err != -NFS4ERR_DELAY)
Trond Myklebust202b50d2005-06-22 17:16:29 +00004692 break;
4693 nfs4_handle_exception(server, err, &exception);
4694 } while (exception.retry);
4695 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696}
4697
4698static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
4699{
Trond Myklebust202b50d2005-06-22 17:16:29 +00004700 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust05ffe242012-04-18 12:20:10 -04004701 struct nfs4_exception exception = {
4702 .inode = state->inode,
4703 };
Trond Myklebust202b50d2005-06-22 17:16:29 +00004704 int err;
4705
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004706 err = nfs4_set_lock_state(state, request);
4707 if (err != 0)
4708 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00004709 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04004710 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
4711 return 0;
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004712 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05004713 switch (err) {
4714 default:
4715 goto out;
4716 case -NFS4ERR_GRACE:
4717 case -NFS4ERR_DELAY:
4718 nfs4_handle_exception(server, err, &exception);
4719 err = 0;
4720 }
Trond Myklebust202b50d2005-06-22 17:16:29 +00004721 } while (exception.retry);
Trond Myklebusta9ed2e22009-12-03 15:53:21 -05004722out:
Trond Myklebust202b50d2005-06-22 17:16:29 +00004723 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724}
4725
Bryan Schumakerf062eb62011-06-02 14:59:10 -04004726#if defined(CONFIG_NFS_V4_1)
Chuck Lever3e60ffd2012-07-11 16:30:14 -04004727/**
4728 * nfs41_check_expired_locks - possibly free a lock stateid
4729 *
4730 * @state: NFSv4 state for an inode
4731 *
4732 * Returns NFS_OK if recovery for this stateid is now finished.
4733 * Otherwise a negative NFS4ERR value is returned.
4734 */
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05004735static int nfs41_check_expired_locks(struct nfs4_state *state)
Bryan Schumakerf062eb62011-06-02 14:59:10 -04004736{
Chuck Levereb64cf92012-07-11 16:30:05 -04004737 int status, ret = -NFS4ERR_BAD_STATEID;
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05004738 struct nfs4_lock_state *lsp;
Bryan Schumakerf062eb62011-06-02 14:59:10 -04004739 struct nfs_server *server = NFS_SERVER(state->inode);
4740
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05004741 list_for_each_entry(lsp, &state->lock_states, ls_locks) {
4742 if (lsp->ls_flags & NFS_LOCK_INITIALIZED) {
4743 status = nfs41_test_stateid(server, &lsp->ls_stateid);
4744 if (status != NFS_OK) {
Chuck Lever3e60ffd2012-07-11 16:30:14 -04004745 /* Free the stateid unless the server
4746 * informs us the stateid is unrecognized. */
Chuck Lever89af2732012-07-11 16:29:56 -04004747 if (status != -NFS4ERR_BAD_STATEID)
4748 nfs41_free_stateid(server,
4749 &lsp->ls_stateid);
Bryan Schumakerb01dd1d2012-01-31 10:39:30 -05004750 lsp->ls_flags &= ~NFS_LOCK_INITIALIZED;
4751 ret = status;
4752 }
4753 }
4754 };
4755
4756 return ret;
4757}
4758
4759static int nfs41_lock_expired(struct nfs4_state *state, struct file_lock *request)
4760{
4761 int status = NFS_OK;
4762
4763 if (test_bit(LK_STATE_IN_USE, &state->flags))
4764 status = nfs41_check_expired_locks(state);
Chuck Levereb64cf92012-07-11 16:30:05 -04004765 if (status != NFS_OK)
4766 status = nfs4_lock_expired(state, request);
4767 return status;
Bryan Schumakerf062eb62011-06-02 14:59:10 -04004768}
4769#endif
4770
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4772{
Trond Myklebust19e03c52008-12-23 15:21:44 -05004773 struct nfs_inode *nfsi = NFS_I(state->inode);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004774 unsigned char fl_flags = request->fl_flags;
Trond Myklebust8e469eb2010-01-26 15:42:30 -05004775 int status = -ENOLCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776
Trond Myklebust8e469eb2010-01-26 15:42:30 -05004777 if ((fl_flags & FL_POSIX) &&
4778 !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags))
4779 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004780 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004781 status = nfs4_set_lock_state(state, request);
4782 if (status != 0)
4783 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004784 request->fl_flags |= FL_ACCESS;
4785 status = do_vfs_lock(request->fl_file, request);
4786 if (status < 0)
4787 goto out;
Trond Myklebust19e03c52008-12-23 15:21:44 -05004788 down_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004789 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
Trond Myklebust01c3b862006-06-29 16:38:39 -04004790 /* Yes: cache locks! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004791 /* ...but avoid races with delegation recall... */
Trond Myklebust19e03c52008-12-23 15:21:44 -05004792 request->fl_flags = fl_flags & ~FL_SLEEP;
4793 status = do_vfs_lock(request->fl_file, request);
4794 goto out_unlock;
Trond Myklebust01c3b862006-06-29 16:38:39 -04004795 }
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004796 status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW);
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004797 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04004798 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004799 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04004800 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05004801 if (do_vfs_lock(request->fl_file, request) < 0)
Weston Andros Adamsona0308892012-01-26 13:32:23 -05004802 printk(KERN_WARNING "NFS: %s: VFS is out of sync with lock "
4803 "manager!\n", __func__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004804out_unlock:
Trond Myklebust19e03c52008-12-23 15:21:44 -05004805 up_read(&nfsi->rwsem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04004806out:
4807 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 return status;
4809}
4810
4811static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
4812{
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05004813 struct nfs4_exception exception = {
4814 .state = state,
Trond Myklebust05ffe242012-04-18 12:20:10 -04004815 .inode = state->inode,
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05004816 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817 int err;
4818
4819 do {
Trond Myklebust965b5d62009-06-17 13:22:59 -07004820 err = _nfs4_proc_setlk(state, cmd, request);
4821 if (err == -NFS4ERR_DENIED)
4822 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823 err = nfs4_handle_exception(NFS_SERVER(state->inode),
Trond Myklebust965b5d62009-06-17 13:22:59 -07004824 err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825 } while (exception.retry);
4826 return err;
4827}
4828
4829static int
4830nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
4831{
4832 struct nfs_open_context *ctx;
4833 struct nfs4_state *state;
4834 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
4835 int status;
4836
4837 /* verify open state */
Trond Myklebustcd3758e2007-08-10 17:44:32 -04004838 ctx = nfs_file_open_context(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839 state = ctx->state;
4840
4841 if (request->fl_start < 0 || request->fl_end < 0)
4842 return -EINVAL;
4843
Trond Myklebustd9531262009-07-21 19:22:38 -04004844 if (IS_GETLK(cmd)) {
4845 if (state != NULL)
4846 return nfs4_proc_getlk(state, F_GETLK, request);
4847 return 0;
4848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849
4850 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
4851 return -EINVAL;
4852
Trond Myklebustd9531262009-07-21 19:22:38 -04004853 if (request->fl_type == F_UNLCK) {
4854 if (state != NULL)
4855 return nfs4_proc_unlck(state, cmd, request);
4856 return 0;
4857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858
Trond Myklebustd9531262009-07-21 19:22:38 -04004859 if (state == NULL)
4860 return -ENOLCK;
Trond Myklebust55725512012-04-18 12:48:35 -04004861 /*
4862 * Don't rely on the VFS having checked the file open mode,
4863 * since it won't do this for flock() locks.
4864 */
4865 switch (request->fl_type & (F_RDLCK|F_WRLCK|F_UNLCK)) {
4866 case F_RDLCK:
4867 if (!(filp->f_mode & FMODE_READ))
4868 return -EBADF;
4869 break;
4870 case F_WRLCK:
4871 if (!(filp->f_mode & FMODE_WRITE))
4872 return -EBADF;
4873 }
4874
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 do {
4876 status = nfs4_proc_setlk(state, cmd, request);
4877 if ((status != -EAGAIN) || IS_SETLK(cmd))
4878 break;
4879 timeout = nfs4_set_lock_task_retry(timeout);
4880 status = -ERESTARTSYS;
4881 if (signalled())
4882 break;
4883 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 return status;
4885}
4886
Trond Myklebust888e6942005-11-04 15:38:11 -05004887int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
4888{
4889 struct nfs_server *server = NFS_SERVER(state->inode);
4890 struct nfs4_exception exception = { };
4891 int err;
4892
4893 err = nfs4_set_lock_state(state, fl);
4894 if (err != 0)
4895 goto out;
4896 do {
Alexandros Batsakisafe6c272009-12-09 01:50:14 -08004897 err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW);
Trond Myklebustd5122202009-06-17 13:22:58 -07004898 switch (err) {
4899 default:
Weston Andros Adamsona0308892012-01-26 13:32:23 -05004900 printk(KERN_ERR "NFS: %s: unhandled error "
4901 "%d.\n", __func__, err);
Trond Myklebustd5122202009-06-17 13:22:58 -07004902 case 0:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004903 case -ESTALE:
Trond Myklebustd5122202009-06-17 13:22:58 -07004904 goto out;
4905 case -NFS4ERR_EXPIRED:
Trond Myklebust0ced63d2011-05-26 14:26:35 -04004906 nfs4_schedule_stateid_recovery(server, state);
Trond Myklebustd5122202009-06-17 13:22:58 -07004907 case -NFS4ERR_STALE_CLIENTID:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004908 case -NFS4ERR_STALE_STATEID:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05004909 nfs4_schedule_lease_recovery(server->nfs_client);
4910 goto out;
Ricardo Labiaga74e7bb72009-12-07 09:48:30 -05004911 case -NFS4ERR_BADSESSION:
4912 case -NFS4ERR_BADSLOT:
4913 case -NFS4ERR_BAD_HIGH_SLOT:
4914 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
4915 case -NFS4ERR_DEADSESSION:
Trond Myklebust9f594792012-05-27 13:02:53 -04004916 nfs4_schedule_session_recovery(server->nfs_client->cl_session, err);
Trond Myklebustd5122202009-06-17 13:22:58 -07004917 goto out;
Trond Myklebust965b5d62009-06-17 13:22:59 -07004918 case -ERESTARTSYS:
4919 /*
4920 * The show must go on: exit, but mark the
4921 * stateid as needing recovery.
4922 */
Trond Myklebusta1d0b5e2012-03-05 19:56:44 -05004923 case -NFS4ERR_DELEG_REVOKED:
Trond Myklebust965b5d62009-06-17 13:22:59 -07004924 case -NFS4ERR_ADMIN_REVOKED:
4925 case -NFS4ERR_BAD_STATEID:
4926 case -NFS4ERR_OPENMODE:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05004927 nfs4_schedule_stateid_recovery(server, state);
Trond Myklebust965b5d62009-06-17 13:22:59 -07004928 err = 0;
4929 goto out;
Trond Myklebust168667c2010-10-19 19:47:49 -04004930 case -EKEYEXPIRED:
4931 /*
4932 * User RPCSEC_GSS context has expired.
4933 * We cannot recover this stateid now, so
4934 * skip it and allow recovery thread to
4935 * proceed.
4936 */
4937 err = 0;
4938 goto out;
Trond Myklebust965b5d62009-06-17 13:22:59 -07004939 case -ENOMEM:
4940 case -NFS4ERR_DENIED:
4941 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
4942 err = 0;
4943 goto out;
Trond Myklebustd5122202009-06-17 13:22:58 -07004944 case -NFS4ERR_DELAY:
4945 break;
4946 }
Trond Myklebust888e6942005-11-04 15:38:11 -05004947 err = nfs4_handle_exception(server, err, &exception);
4948 } while (exception.retry);
4949out:
4950 return err;
4951}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004952
Trond Myklebustcf470c32012-03-07 13:49:12 -05004953struct nfs_release_lockowner_data {
4954 struct nfs4_lock_state *lsp;
Trond Myklebust5ae67c42012-03-19 16:17:18 -04004955 struct nfs_server *server;
Trond Myklebustcf470c32012-03-07 13:49:12 -05004956 struct nfs_release_lockowner_args args;
4957};
4958
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004959static void nfs4_release_lockowner_release(void *calldata)
4960{
Trond Myklebustcf470c32012-03-07 13:49:12 -05004961 struct nfs_release_lockowner_data *data = calldata;
Trond Myklebust5ae67c42012-03-19 16:17:18 -04004962 nfs4_free_lock_state(data->server, data->lsp);
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004963 kfree(calldata);
4964}
4965
Trond Myklebust17280172012-03-11 13:11:00 -04004966static const struct rpc_call_ops nfs4_release_lockowner_ops = {
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004967 .rpc_release = nfs4_release_lockowner_release,
4968};
4969
Trond Myklebustcf470c32012-03-07 13:49:12 -05004970int nfs4_release_lockowner(struct nfs4_lock_state *lsp)
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004971{
4972 struct nfs_server *server = lsp->ls_state->owner->so_server;
Trond Myklebustcf470c32012-03-07 13:49:12 -05004973 struct nfs_release_lockowner_data *data;
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004974 struct rpc_message msg = {
4975 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER],
4976 };
4977
4978 if (server->nfs_client->cl_mvops->minor_version != 0)
Trond Myklebustcf470c32012-03-07 13:49:12 -05004979 return -EINVAL;
4980 data = kmalloc(sizeof(*data), GFP_NOFS);
4981 if (!data)
4982 return -ENOMEM;
4983 data->lsp = lsp;
Trond Myklebust5ae67c42012-03-19 16:17:18 -04004984 data->server = server;
Trond Myklebustcf470c32012-03-07 13:49:12 -05004985 data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
4986 data->args.lock_owner.id = lsp->ls_seqid.owner_id;
4987 data->args.lock_owner.s_dev = server->s_dev;
4988 msg.rpc_argp = &data->args;
4989 rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, data);
4990 return 0;
Trond Myklebustd3c7b7c2010-07-01 12:49:01 -04004991}
4992
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00004993#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
4994
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004995static int nfs4_xattr_set_nfs4_acl(struct dentry *dentry, const char *key,
4996 const void *buf, size_t buflen,
4997 int flags, int type)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00004998{
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00004999 if (strcmp(key, "") != 0)
5000 return -EINVAL;
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00005001
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00005002 return nfs4_proc_set_acl(dentry->d_inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005003}
5004
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00005005static int nfs4_xattr_get_nfs4_acl(struct dentry *dentry, const char *key,
5006 void *buf, size_t buflen, int type)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005007{
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00005008 if (strcmp(key, "") != 0)
5009 return -EINVAL;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00005010
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00005011 return nfs4_proc_get_acl(dentry->d_inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005012}
5013
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00005014static size_t nfs4_xattr_list_nfs4_acl(struct dentry *dentry, char *list,
5015 size_t list_len, const char *name,
5016 size_t name_len, int type)
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005017{
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00005018 size_t len = sizeof(XATTR_NAME_NFSV4_ACL);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005019
J. Bruce Fields096455a2006-03-20 23:23:42 -05005020 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
5021 return 0;
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00005022
5023 if (list && len <= list_len)
5024 memcpy(list, XATTR_NAME_NFSV4_ACL, len);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00005025 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00005026}
5027
Andy Adamson533eb462011-06-13 18:25:56 -04005028/*
5029 * nfs_fhget will use either the mounted_on_fileid or the fileid
5030 */
Trond Myklebust69aaaae2009-03-11 14:10:28 -04005031static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
5032{
Andy Adamson533eb462011-06-13 18:25:56 -04005033 if (!(((fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID) ||
5034 (fattr->valid & NFS_ATTR_FATTR_FILEID)) &&
5035 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
Chuck Lever81934dd2012-03-01 17:01:57 -05005036 (fattr->valid & NFS_ATTR_FATTR_V4_LOCATIONS)))
Trond Myklebust69aaaae2009-03-11 14:10:28 -04005037 return;
5038
5039 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
Chuck Lever81934dd2012-03-01 17:01:57 -05005040 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_V4_REFERRAL;
Trond Myklebust69aaaae2009-03-11 14:10:28 -04005041 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
5042 fattr->nlink = 2;
5043}
5044
Bryan Schumakerf05d1472012-04-27 13:27:41 -04005045static int _nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
5046 const struct qstr *name,
5047 struct nfs4_fs_locations *fs_locations,
5048 struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04005049{
5050 struct nfs_server *server = NFS_SERVER(dir);
5051 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04005052 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
Trond Myklebust683b57b2006-06-09 09:34:22 -04005053 };
5054 struct nfs4_fs_locations_arg args = {
5055 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05005056 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04005057 .page = page,
5058 .bitmask = bitmask,
5059 };
Benny Halevy22958462009-04-01 09:22:02 -04005060 struct nfs4_fs_locations_res res = {
5061 .fs_locations = fs_locations,
5062 };
Trond Myklebust683b57b2006-06-09 09:34:22 -04005063 struct rpc_message msg = {
5064 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
5065 .rpc_argp = &args,
Benny Halevy22958462009-04-01 09:22:02 -04005066 .rpc_resp = &res,
Trond Myklebust683b57b2006-06-09 09:34:22 -04005067 };
5068 int status;
5069
Harvey Harrison3110ff82008-05-02 13:42:44 -07005070 dprintk("%s: start\n", __func__);
Andy Adamson533eb462011-06-13 18:25:56 -04005071
5072 /* Ask for the fileid of the absent filesystem if mounted_on_fileid
5073 * is not supported */
5074 if (NFS_SERVER(dir)->attr_bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)
5075 bitmask[1] |= FATTR4_WORD1_MOUNTED_ON_FILEID;
5076 else
5077 bitmask[0] |= FATTR4_WORD0_FILEID;
5078
Trond Myklebustc228fd32007-01-13 02:28:11 -05005079 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04005080 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04005081 fs_locations->nlocations = 0;
Bryan Schumakerf05d1472012-04-27 13:27:41 -04005082 status = nfs4_call_sync(client, server, &msg, &args.seq_args, &res.seq_res, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -07005083 dprintk("%s: returned status = %d\n", __func__, status);
Trond Myklebust683b57b2006-06-09 09:34:22 -04005084 return status;
5085}
5086
Bryan Schumakerf05d1472012-04-27 13:27:41 -04005087int nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
5088 const struct qstr *name,
5089 struct nfs4_fs_locations *fs_locations,
5090 struct page *page)
Bryan Schumakerdb0a9592012-04-27 13:27:39 -04005091{
5092 struct nfs4_exception exception = { };
5093 int err;
5094 do {
5095 err = nfs4_handle_exception(NFS_SERVER(dir),
Bryan Schumakerf05d1472012-04-27 13:27:41 -04005096 _nfs4_proc_fs_locations(client, dir, name, fs_locations, page),
Bryan Schumakerdb0a9592012-04-27 13:27:39 -04005097 &exception);
5098 } while (exception.retry);
5099 return err;
5100}
5101
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005102static int _nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, struct nfs4_secinfo_flavors *flavors)
5103{
5104 int status;
5105 struct nfs4_secinfo_arg args = {
5106 .dir_fh = NFS_FH(dir),
5107 .name = name,
5108 };
5109 struct nfs4_secinfo_res res = {
5110 .flavors = flavors,
5111 };
5112 struct rpc_message msg = {
5113 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO],
5114 .rpc_argp = &args,
5115 .rpc_resp = &res,
5116 };
5117
5118 dprintk("NFS call secinfo %s\n", name->name);
5119 status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &msg, &args.seq_args, &res.seq_res, 0);
5120 dprintk("NFS reply secinfo: %d\n", status);
5121 return status;
5122}
5123
Bryan Schumaker72de53e2012-04-27 13:27:40 -04005124int nfs4_proc_secinfo(struct inode *dir, const struct qstr *name,
5125 struct nfs4_secinfo_flavors *flavors)
Bryan Schumaker5a5ea0d2011-03-24 17:12:29 +00005126{
5127 struct nfs4_exception exception = { };
5128 int err;
5129 do {
5130 err = nfs4_handle_exception(NFS_SERVER(dir),
5131 _nfs4_proc_secinfo(dir, name, flavors),
5132 &exception);
5133 } while (exception.retry);
5134 return err;
5135}
5136
Andy Adamson557134a2009-04-01 09:21:53 -04005137#ifdef CONFIG_NFS_V4_1
Benny Halevy99fe60d2009-04-01 09:22:29 -04005138/*
Andy Adamson357f54d2010-12-14 10:11:57 -05005139 * Check the exchange flags returned by the server for invalid flags, having
5140 * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or
5141 * DS flags set.
5142 */
5143static int nfs4_check_cl_exchange_flags(u32 flags)
5144{
5145 if (flags & ~EXCHGID4_FLAG_MASK_R)
5146 goto out_inval;
5147 if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) &&
5148 (flags & EXCHGID4_FLAG_USE_NON_PNFS))
5149 goto out_inval;
5150 if (!(flags & (EXCHGID4_FLAG_MASK_PNFS)))
5151 goto out_inval;
5152 return NFS_OK;
5153out_inval:
5154 return -NFS4ERR_INVAL;
5155}
5156
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005157static bool
Chuck Lever79d4e1f2012-05-21 22:44:31 -04005158nfs41_same_server_scope(struct nfs41_server_scope *a,
5159 struct nfs41_server_scope *b)
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005160{
5161 if (a->server_scope_sz == b->server_scope_sz &&
5162 memcmp(a->server_scope, b->server_scope, a->server_scope_sz) == 0)
5163 return true;
5164
5165 return false;
5166}
5167
Andy Adamson357f54d2010-12-14 10:11:57 -05005168/*
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04005169 * nfs4_proc_bind_conn_to_session()
5170 *
5171 * The 4.1 client currently uses the same TCP connection for the
5172 * fore and backchannel.
5173 */
Trond Myklebust2cf047c2012-05-25 17:57:41 -04005174int nfs4_proc_bind_conn_to_session(struct nfs_client *clp, struct rpc_cred *cred)
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04005175{
5176 int status;
5177 struct nfs41_bind_conn_to_session_res res;
5178 struct rpc_message msg = {
5179 .rpc_proc =
5180 &nfs4_procedures[NFSPROC4_CLNT_BIND_CONN_TO_SESSION],
5181 .rpc_argp = clp,
5182 .rpc_resp = &res,
Trond Myklebust2cf047c2012-05-25 17:57:41 -04005183 .rpc_cred = cred,
Weston Andros Adamson7c44f1ae2012-05-24 13:22:50 -04005184 };
5185
5186 dprintk("--> %s\n", __func__);
5187 BUG_ON(clp == NULL);
5188
5189 res.session = kzalloc(sizeof(struct nfs4_session), GFP_NOFS);
5190 if (unlikely(res.session == NULL)) {
5191 status = -ENOMEM;
5192 goto out;
5193 }
5194
5195 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
5196 if (status == 0) {
5197 if (memcmp(res.session->sess_id.data,
5198 clp->cl_session->sess_id.data, NFS4_MAX_SESSIONID_LEN)) {
5199 dprintk("NFS: %s: Session ID mismatch\n", __func__);
5200 status = -EIO;
5201 goto out_session;
5202 }
5203 if (res.dir != NFS4_CDFS4_BOTH) {
5204 dprintk("NFS: %s: Unexpected direction from server\n",
5205 __func__);
5206 status = -EIO;
5207 goto out_session;
5208 }
5209 if (res.use_conn_in_rdma_mode) {
5210 dprintk("NFS: %s: Server returned RDMA mode = true\n",
5211 __func__);
5212 status = -EIO;
5213 goto out_session;
5214 }
5215 }
5216out_session:
5217 kfree(res.session);
5218out:
5219 dprintk("<-- %s status= %d\n", __func__, status);
5220 return status;
5221}
5222
5223/*
Benny Halevy99fe60d2009-04-01 09:22:29 -04005224 * nfs4_proc_exchange_id()
5225 *
5226 * Since the clientid has expired, all compounds using sessions
5227 * associated with the stale clientid will be returning
5228 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
5229 * be in some phase of session reset.
5230 */
Andy Adamson4d643d12009-12-04 15:52:24 -05005231int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
Benny Halevy99fe60d2009-04-01 09:22:29 -04005232{
5233 nfs4_verifier verifier;
5234 struct nfs41_exchange_id_args args = {
Chuck Levercd937102012-03-02 17:14:31 -05005235 .verifier = &verifier,
Benny Halevy99fe60d2009-04-01 09:22:29 -04005236 .client = clp,
Andy Adamson357f54d2010-12-14 10:11:57 -05005237 .flags = EXCHGID4_FLAG_SUPP_MOVED_REFER,
Benny Halevy99fe60d2009-04-01 09:22:29 -04005238 };
5239 struct nfs41_exchange_id_res res = {
Trond Myklebust32b01312012-05-26 13:41:04 -04005240 0
Benny Halevy99fe60d2009-04-01 09:22:29 -04005241 };
5242 int status;
5243 struct rpc_message msg = {
5244 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
5245 .rpc_argp = &args,
5246 .rpc_resp = &res,
5247 .rpc_cred = cred,
5248 };
Benny Halevy99fe60d2009-04-01 09:22:29 -04005249
5250 dprintk("--> %s\n", __func__);
5251 BUG_ON(clp == NULL);
Andy Adamsona7b72102009-04-01 09:22:46 -04005252
Chuck Leverf0920752012-05-21 22:45:41 -04005253 nfs4_init_boot_verifier(clp, &verifier);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005254
Andy Adamsonc7a360b2011-01-25 19:15:32 -05005255 args.id_len = scnprintf(args.id, sizeof(args.id),
Trond Myklebust3617e502012-04-30 12:04:58 -04005256 "%s/%s/%u",
Andy Adamsonc7a360b2011-01-25 19:15:32 -05005257 clp->cl_ipaddr,
Trond Myklebust3617e502012-04-30 12:04:58 -04005258 clp->cl_rpcclient->cl_nodename,
Andy Adamsonc7a360b2011-01-25 19:15:32 -05005259 clp->cl_rpcclient->cl_auth->au_flavor);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005260
Chuck Leveracdeb692012-05-21 22:46:16 -04005261 res.server_owner = kzalloc(sizeof(struct nfs41_server_owner),
Trond Myklebustbbafffd2012-05-24 16:31:39 -04005262 GFP_NOFS);
Chuck Leveracdeb692012-05-21 22:46:16 -04005263 if (unlikely(res.server_owner == NULL)) {
Weston Andros Adamsonabe9a6d2012-02-16 11:17:05 -05005264 status = -ENOMEM;
5265 goto out;
5266 }
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005267
Chuck Lever79d4e1f2012-05-21 22:44:31 -04005268 res.server_scope = kzalloc(sizeof(struct nfs41_server_scope),
Trond Myklebustbbafffd2012-05-24 16:31:39 -04005269 GFP_NOFS);
Chuck Lever177313f2012-05-21 22:44:58 -04005270 if (unlikely(res.server_scope == NULL)) {
Benny Halevy99fe60d2009-04-01 09:22:29 -04005271 status = -ENOMEM;
Chuck Leveracdeb692012-05-21 22:46:16 -04005272 goto out_server_owner;
Benny Halevy99fe60d2009-04-01 09:22:29 -04005273 }
5274
Trond Myklebustbbafffd2012-05-24 16:31:39 -04005275 res.impl_id = kzalloc(sizeof(struct nfs41_impl_id), GFP_NOFS);
Chuck Lever177313f2012-05-21 22:44:58 -04005276 if (unlikely(res.impl_id == NULL)) {
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005277 status = -ENOMEM;
5278 goto out_server_scope;
5279 }
5280
Trond Myklebust1bd714f2011-04-24 14:29:33 -04005281 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Chuck Lever177313f2012-05-21 22:44:58 -04005282 if (status == 0)
Trond Myklebust32b01312012-05-26 13:41:04 -04005283 status = nfs4_check_cl_exchange_flags(res.flags);
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005284
Chuck Lever177313f2012-05-21 22:44:58 -04005285 if (status == 0) {
Trond Myklebust32b01312012-05-26 13:41:04 -04005286 clp->cl_clientid = res.clientid;
5287 clp->cl_exchange_flags = (res.flags & ~EXCHGID4_FLAG_CONFIRMED_R);
5288 if (!(res.flags & EXCHGID4_FLAG_CONFIRMED_R))
5289 clp->cl_seqid = res.seqid;
5290
Chuck Leveracdeb692012-05-21 22:46:16 -04005291 kfree(clp->cl_serverowner);
5292 clp->cl_serverowner = res.server_owner;
5293 res.server_owner = NULL;
Chuck Leveracdeb692012-05-21 22:46:16 -04005294
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005295 /* use the most recent implementation id */
Chuck Lever59155542012-05-21 22:44:41 -04005296 kfree(clp->cl_implid);
5297 clp->cl_implid = res.impl_id;
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005298
Chuck Lever177313f2012-05-21 22:44:58 -04005299 if (clp->cl_serverscope != NULL &&
Chuck Lever79d4e1f2012-05-21 22:44:31 -04005300 !nfs41_same_server_scope(clp->cl_serverscope,
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005301 res.server_scope)) {
5302 dprintk("%s: server_scope mismatch detected\n",
5303 __func__);
5304 set_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state);
Chuck Lever79d4e1f2012-05-21 22:44:31 -04005305 kfree(clp->cl_serverscope);
5306 clp->cl_serverscope = NULL;
Weston Andros Adamson78fe0f42011-05-31 19:05:47 -04005307 }
5308
Chuck Lever177313f2012-05-21 22:44:58 -04005309 if (clp->cl_serverscope == NULL) {
Chuck Lever79d4e1f2012-05-21 22:44:31 -04005310 clp->cl_serverscope = res.server_scope;
Weston Andros Adamsonabe9a6d2012-02-16 11:17:05 -05005311 goto out;
5312 }
Trond Myklebust32b01312012-05-26 13:41:04 -04005313 } else
5314 kfree(res.impl_id);
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005315
Chuck Leveracdeb692012-05-21 22:46:16 -04005316out_server_owner:
5317 kfree(res.server_owner);
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005318out_server_scope:
Weston Andros Adamsonabe9a6d2012-02-16 11:17:05 -05005319 kfree(res.server_scope);
5320out:
Chuck Lever177313f2012-05-21 22:44:58 -04005321 if (clp->cl_implid != NULL)
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -05005322 dprintk("%s: Server Implementation ID: "
5323 "domain: %s, name: %s, date: %llu,%u\n",
Chuck Lever59155542012-05-21 22:44:41 -04005324 __func__, clp->cl_implid->domain, clp->cl_implid->name,
5325 clp->cl_implid->date.seconds,
5326 clp->cl_implid->date.nseconds);
Benny Halevy99fe60d2009-04-01 09:22:29 -04005327 dprintk("<-- %s status= %d\n", __func__, status);
5328 return status;
5329}
5330
Trond Myklebust66245532012-05-25 17:18:09 -04005331static int _nfs4_proc_destroy_clientid(struct nfs_client *clp,
5332 struct rpc_cred *cred)
5333{
5334 struct rpc_message msg = {
5335 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_CLIENTID],
5336 .rpc_argp = clp,
5337 .rpc_cred = cred,
5338 };
5339 int status;
5340
5341 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
5342 if (status)
Trond Myklebust02c67522012-06-07 13:45:53 -04005343 dprintk("NFS: Got error %d from the server %s on "
Trond Myklebust66245532012-05-25 17:18:09 -04005344 "DESTROY_CLIENTID.", status, clp->cl_hostname);
5345 return status;
5346}
5347
5348static int nfs4_proc_destroy_clientid(struct nfs_client *clp,
5349 struct rpc_cred *cred)
5350{
5351 unsigned int loop;
5352 int ret;
5353
5354 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
5355 ret = _nfs4_proc_destroy_clientid(clp, cred);
5356 switch (ret) {
5357 case -NFS4ERR_DELAY:
5358 case -NFS4ERR_CLIENTID_BUSY:
5359 ssleep(1);
5360 break;
5361 default:
5362 return ret;
5363 }
5364 }
5365 return 0;
5366}
5367
5368int nfs4_destroy_clientid(struct nfs_client *clp)
5369{
5370 struct rpc_cred *cred;
5371 int ret = 0;
5372
5373 if (clp->cl_mvops->minor_version < 1)
5374 goto out;
5375 if (clp->cl_exchange_flags == 0)
5376 goto out;
5377 cred = nfs4_get_exchange_id_cred(clp);
5378 ret = nfs4_proc_destroy_clientid(clp, cred);
5379 if (cred)
5380 put_rpccred(cred);
5381 switch (ret) {
5382 case 0:
5383 case -NFS4ERR_STALE_CLIENTID:
5384 clp->cl_exchange_flags = 0;
5385 }
5386out:
5387 return ret;
5388}
5389
Andy Adamson2050f0c2009-04-01 09:22:30 -04005390struct nfs4_get_lease_time_data {
5391 struct nfs4_get_lease_time_args *args;
5392 struct nfs4_get_lease_time_res *res;
5393 struct nfs_client *clp;
5394};
5395
5396static void nfs4_get_lease_time_prepare(struct rpc_task *task,
5397 void *calldata)
5398{
5399 int ret;
5400 struct nfs4_get_lease_time_data *data =
5401 (struct nfs4_get_lease_time_data *)calldata;
5402
5403 dprintk("--> %s\n", __func__);
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -08005404 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
Andy Adamson2050f0c2009-04-01 09:22:30 -04005405 /* just setup sequence, do not trigger session recovery
5406 since we're invoked within one */
5407 ret = nfs41_setup_sequence(data->clp->cl_session,
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -08005408 &data->args->la_seq_args,
Trond Myklebust9d12b212012-01-17 22:04:25 -05005409 &data->res->lr_seq_res, task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04005410
5411 BUG_ON(ret == -EAGAIN);
5412 rpc_call_start(task);
5413 dprintk("<-- %s\n", __func__);
5414}
5415
5416/*
5417 * Called from nfs4_state_manager thread for session setup, so don't recover
5418 * from sequence operation or clientid errors.
5419 */
5420static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
5421{
5422 struct nfs4_get_lease_time_data *data =
5423 (struct nfs4_get_lease_time_data *)calldata;
5424
5425 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04005426 if (!nfs41_sequence_done(task, &data->res->lr_seq_res))
5427 return;
Andy Adamson2050f0c2009-04-01 09:22:30 -04005428 switch (task->tk_status) {
5429 case -NFS4ERR_DELAY:
5430 case -NFS4ERR_GRACE:
5431 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
5432 rpc_delay(task, NFS4_POLL_RETRY_MIN);
5433 task->tk_status = 0;
Andy Adamsona8a4ae32011-05-03 13:43:03 -04005434 /* fall through */
5435 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebustd00c5d42011-10-19 12:17:29 -07005436 rpc_restart_call_prepare(task);
Andy Adamson2050f0c2009-04-01 09:22:30 -04005437 return;
5438 }
Andy Adamson2050f0c2009-04-01 09:22:30 -04005439 dprintk("<-- %s\n", __func__);
5440}
5441
Trond Myklebust17280172012-03-11 13:11:00 -04005442static const struct rpc_call_ops nfs4_get_lease_time_ops = {
Andy Adamson2050f0c2009-04-01 09:22:30 -04005443 .rpc_call_prepare = nfs4_get_lease_time_prepare,
5444 .rpc_call_done = nfs4_get_lease_time_done,
5445};
5446
5447int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
5448{
5449 struct rpc_task *task;
5450 struct nfs4_get_lease_time_args args;
5451 struct nfs4_get_lease_time_res res = {
5452 .lr_fsinfo = fsinfo,
5453 };
5454 struct nfs4_get_lease_time_data data = {
5455 .args = &args,
5456 .res = &res,
5457 .clp = clp,
5458 };
5459 struct rpc_message msg = {
5460 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
5461 .rpc_argp = &args,
5462 .rpc_resp = &res,
5463 };
5464 struct rpc_task_setup task_setup = {
5465 .rpc_client = clp->cl_rpcclient,
5466 .rpc_message = &msg,
5467 .callback_ops = &nfs4_get_lease_time_ops,
Trond Myklebust1bd714f2011-04-24 14:29:33 -04005468 .callback_data = &data,
5469 .flags = RPC_TASK_TIMEOUT,
Andy Adamson2050f0c2009-04-01 09:22:30 -04005470 };
5471 int status;
5472
Trond Myklebust9d12b212012-01-17 22:04:25 -05005473 nfs41_init_sequence(&args.la_seq_args, &res.lr_seq_res, 0);
Andy Adamson2050f0c2009-04-01 09:22:30 -04005474 dprintk("--> %s\n", __func__);
5475 task = rpc_run_task(&task_setup);
5476
5477 if (IS_ERR(task))
5478 status = PTR_ERR(task);
5479 else {
5480 status = task->tk_status;
5481 rpc_put_task(task);
5482 }
5483 dprintk("<-- %s return %d\n", __func__, status);
5484
5485 return status;
5486}
5487
Trond Myklebustf86f36a2012-02-14 20:33:19 -05005488static struct nfs4_slot *nfs4_alloc_slots(u32 max_slots, gfp_t gfp_flags)
5489{
5490 return kcalloc(max_slots, sizeof(struct nfs4_slot), gfp_flags);
5491}
5492
5493static void nfs4_add_and_init_slots(struct nfs4_slot_table *tbl,
5494 struct nfs4_slot *new,
5495 u32 max_slots,
5496 u32 ivalue)
5497{
5498 struct nfs4_slot *old = NULL;
5499 u32 i;
5500
5501 spin_lock(&tbl->slot_tbl_lock);
5502 if (new) {
5503 old = tbl->slots;
5504 tbl->slots = new;
5505 tbl->max_slots = max_slots;
5506 }
5507 tbl->highest_used_slotid = -1; /* no slot is currently used */
5508 for (i = 0; i < tbl->max_slots; i++)
5509 tbl->slots[i].seq_nr = ivalue;
5510 spin_unlock(&tbl->slot_tbl_lock);
5511 kfree(old);
5512}
5513
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04005514/*
Trond Myklebustf86f36a2012-02-14 20:33:19 -05005515 * (re)Initialise a slot table
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04005516 */
Trond Myklebustf86f36a2012-02-14 20:33:19 -05005517static int nfs4_realloc_slot_table(struct nfs4_slot_table *tbl, u32 max_reqs,
5518 u32 ivalue)
Andy Adamsonac72b7b2009-04-01 09:22:37 -04005519{
Andy Adamson104aeba2010-01-14 17:45:10 -05005520 struct nfs4_slot *new = NULL;
Trond Myklebustf86f36a2012-02-14 20:33:19 -05005521 int ret = -ENOMEM;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04005522
Andy Adamson104aeba2010-01-14 17:45:10 -05005523 dprintk("--> %s: max_reqs=%u, tbl->max_slots %d\n", __func__,
5524 max_reqs, tbl->max_slots);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04005525
Andy Adamson104aeba2010-01-14 17:45:10 -05005526 /* Does the newly negotiated max_reqs match the existing slot table? */
5527 if (max_reqs != tbl->max_slots) {
Trond Myklebustf86f36a2012-02-14 20:33:19 -05005528 new = nfs4_alloc_slots(max_reqs, GFP_NOFS);
Andy Adamson104aeba2010-01-14 17:45:10 -05005529 if (!new)
5530 goto out;
Andy Adamsonac72b7b2009-04-01 09:22:37 -04005531 }
Trond Myklebustf86f36a2012-02-14 20:33:19 -05005532 ret = 0;
5533
5534 nfs4_add_and_init_slots(tbl, new, max_reqs, ivalue);
Andy Adamsonac72b7b2009-04-01 09:22:37 -04005535 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
5536 tbl, tbl->slots, tbl->max_slots);
5537out:
5538 dprintk("<-- %s: return %d\n", __func__, ret);
5539 return ret;
5540}
5541
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04005542/* Destroy the slot table */
5543static void nfs4_destroy_slot_tables(struct nfs4_session *session)
5544{
5545 if (session->fc_slot_table.slots != NULL) {
5546 kfree(session->fc_slot_table.slots);
5547 session->fc_slot_table.slots = NULL;
5548 }
5549 if (session->bc_slot_table.slots != NULL) {
5550 kfree(session->bc_slot_table.slots);
5551 session->bc_slot_table.slots = NULL;
5552 }
5553 return;
5554}
5555
Ricardo Labiagab73dafa2009-04-01 09:23:31 -04005556/*
Andy Adamsonaacd5532011-11-09 13:58:21 -05005557 * Initialize or reset the forechannel and backchannel tables
Ricardo Labiaga050047c2009-04-01 09:23:32 -04005558 */
Andy Adamsonaacd5532011-11-09 13:58:21 -05005559static int nfs4_setup_session_slot_tables(struct nfs4_session *ses)
Ricardo Labiaga050047c2009-04-01 09:23:32 -04005560{
Trond Myklebustf26468f2009-12-05 19:32:11 -05005561 struct nfs4_slot_table *tbl;
Andy Adamsonaacd5532011-11-09 13:58:21 -05005562 int status;
Ricardo Labiaga050047c2009-04-01 09:23:32 -04005563
Andy Adamsonaacd5532011-11-09 13:58:21 -05005564 dprintk("--> %s\n", __func__);
5565 /* Fore channel */
5566 tbl = &ses->fc_slot_table;
Trond Myklebustf86f36a2012-02-14 20:33:19 -05005567 status = nfs4_realloc_slot_table(tbl, ses->fc_attrs.max_reqs, 1);
5568 if (status) /* -ENOMEM */
5569 return status;
Andy Adamsonaacd5532011-11-09 13:58:21 -05005570 /* Back channel */
5571 tbl = &ses->bc_slot_table;
Trond Myklebustf86f36a2012-02-14 20:33:19 -05005572 status = nfs4_realloc_slot_table(tbl, ses->bc_attrs.max_reqs, 0);
5573 if (status && tbl->slots == NULL)
5574 /* Fore and back channel share a connection so get
5575 * both slot tables or neither */
5576 nfs4_destroy_slot_tables(ses);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04005577 return status;
Andy Adamson557134a2009-04-01 09:21:53 -04005578}
5579
5580struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp)
5581{
5582 struct nfs4_session *session;
5583 struct nfs4_slot_table *tbl;
5584
Trond Myklebust8535b2b2010-05-13 12:51:01 -04005585 session = kzalloc(sizeof(struct nfs4_session), GFP_NOFS);
Andy Adamson557134a2009-04-01 09:21:53 -04005586 if (!session)
5587 return NULL;
Andy Adamson76db6d92009-04-01 09:22:38 -04005588
Andy Adamson557134a2009-04-01 09:21:53 -04005589 tbl = &session->fc_slot_table;
Trond Myklebust45d43c22012-02-06 19:38:51 -05005590 tbl->highest_used_slotid = NFS4_NO_SLOT;
Andy Adamson557134a2009-04-01 09:21:53 -04005591 spin_lock_init(&tbl->slot_tbl_lock);
Alexandros Batsakis689cf5c2009-12-14 21:27:56 -08005592 rpc_init_priority_wait_queue(&tbl->slot_tbl_waitq, "ForeChannel Slot table");
Andy Adamson42acd022011-01-06 02:04:34 +00005593 init_completion(&tbl->complete);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04005594
5595 tbl = &session->bc_slot_table;
Trond Myklebust45d43c22012-02-06 19:38:51 -05005596 tbl->highest_used_slotid = NFS4_NO_SLOT;
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04005597 spin_lock_init(&tbl->slot_tbl_lock);
5598 rpc_init_wait_queue(&tbl->slot_tbl_waitq, "BackChannel Slot table");
Andy Adamson42acd022011-01-06 02:04:34 +00005599 init_completion(&tbl->complete);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04005600
Trond Myklebust1055d762010-06-16 09:52:27 -04005601 session->session_state = 1<<NFS4_SESSION_INITING;
5602
Andy Adamson557134a2009-04-01 09:21:53 -04005603 session->clp = clp;
5604 return session;
5605}
5606
5607void nfs4_destroy_session(struct nfs4_session *session)
5608{
Trond Myklebust2446ab62012-03-01 17:00:56 -05005609 struct rpc_xprt *xprt;
Trond Myklebust848f5bd2012-05-25 17:51:23 -04005610 struct rpc_cred *cred;
Trond Myklebust2446ab62012-03-01 17:00:56 -05005611
Trond Myklebust848f5bd2012-05-25 17:51:23 -04005612 cred = nfs4_get_exchange_id_cred(session->clp);
5613 nfs4_proc_destroy_session(session, cred);
5614 if (cred)
5615 put_rpccred(cred);
Trond Myklebust2446ab62012-03-01 17:00:56 -05005616
5617 rcu_read_lock();
5618 xprt = rcu_dereference(session->clp->cl_rpcclient->cl_xprt);
5619 rcu_read_unlock();
Andy Adamson5a0ffe52009-04-01 09:23:18 -04005620 dprintk("%s Destroy backchannel for xprt %p\n",
Trond Myklebust2446ab62012-03-01 17:00:56 -05005621 __func__, xprt);
5622 xprt_destroy_backchannel(xprt, NFS41_BC_MIN_CALLBACKS);
Ricardo Labiagaf8625a62009-04-01 09:23:33 -04005623 nfs4_destroy_slot_tables(session);
Andy Adamson557134a2009-04-01 09:21:53 -04005624 kfree(session);
5625}
5626
Andy Adamsonfc931582009-04-01 09:22:31 -04005627/*
5628 * Initialize the values to be used by the client in CREATE_SESSION
5629 * If nfs4_init_session set the fore channel request and response sizes,
5630 * use them.
5631 *
5632 * Set the back channel max_resp_sz_cached to zero to force the client to
5633 * always set csa_cachethis to FALSE because the current implementation
5634 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
5635 */
5636static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args)
5637{
5638 struct nfs4_session *session = args->client->cl_session;
5639 unsigned int mxrqst_sz = session->fc_attrs.max_rqst_sz,
5640 mxresp_sz = session->fc_attrs.max_resp_sz;
5641
5642 if (mxrqst_sz == 0)
5643 mxrqst_sz = NFS_MAX_FILE_IO_SIZE;
5644 if (mxresp_sz == 0)
5645 mxresp_sz = NFS_MAX_FILE_IO_SIZE;
5646 /* Fore channel attributes */
Andy Adamsonfc931582009-04-01 09:22:31 -04005647 args->fc_attrs.max_rqst_sz = mxrqst_sz;
5648 args->fc_attrs.max_resp_sz = mxresp_sz;
Andy Adamsonfc931582009-04-01 09:22:31 -04005649 args->fc_attrs.max_ops = NFS4_MAX_OPS;
Trond Myklebustef159e92012-02-06 19:50:40 -05005650 args->fc_attrs.max_reqs = max_session_slots;
Andy Adamsonfc931582009-04-01 09:22:31 -04005651
5652 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
Mike Sager8e0d46e2009-12-17 12:06:26 -05005653 "max_ops=%u max_reqs=%u\n",
Andy Adamsonfc931582009-04-01 09:22:31 -04005654 __func__,
5655 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
Mike Sager8e0d46e2009-12-17 12:06:26 -05005656 args->fc_attrs.max_ops, args->fc_attrs.max_reqs);
Andy Adamsonfc931582009-04-01 09:22:31 -04005657
5658 /* Back channel attributes */
Andy Adamsonfc931582009-04-01 09:22:31 -04005659 args->bc_attrs.max_rqst_sz = PAGE_SIZE;
5660 args->bc_attrs.max_resp_sz = PAGE_SIZE;
5661 args->bc_attrs.max_resp_sz_cached = 0;
5662 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
5663 args->bc_attrs.max_reqs = 1;
5664
5665 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
5666 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
5667 __func__,
5668 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
5669 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
5670 args->bc_attrs.max_reqs);
5671}
5672
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005673static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args, struct nfs4_session *session)
Andy Adamson8d353012009-04-01 09:22:32 -04005674{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005675 struct nfs4_channel_attrs *sent = &args->fc_attrs;
5676 struct nfs4_channel_attrs *rcvd = &session->fc_attrs;
5677
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005678 if (rcvd->max_resp_sz > sent->max_resp_sz)
5679 return -EINVAL;
5680 /*
5681 * Our requested max_ops is the minimum we need; we're not
5682 * prepared to break up compounds into smaller pieces than that.
5683 * So, no point even trying to continue if the server won't
5684 * cooperate:
5685 */
5686 if (rcvd->max_ops < sent->max_ops)
5687 return -EINVAL;
5688 if (rcvd->max_reqs == 0)
5689 return -EINVAL;
Vitaliy Gusevb4b9a0c2012-02-15 19:38:25 +04005690 if (rcvd->max_reqs > NFS4_MAX_SLOT_TABLE)
5691 rcvd->max_reqs = NFS4_MAX_SLOT_TABLE;
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005692 return 0;
Andy Adamson8d353012009-04-01 09:22:32 -04005693}
5694
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005695static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args, struct nfs4_session *session)
5696{
5697 struct nfs4_channel_attrs *sent = &args->bc_attrs;
5698 struct nfs4_channel_attrs *rcvd = &session->bc_attrs;
Andy Adamson8d353012009-04-01 09:22:32 -04005699
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005700 if (rcvd->max_rqst_sz > sent->max_rqst_sz)
5701 return -EINVAL;
5702 if (rcvd->max_resp_sz < sent->max_resp_sz)
5703 return -EINVAL;
5704 if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached)
5705 return -EINVAL;
5706 /* These would render the backchannel useless: */
Vitaliy Gusevb4b9a0c2012-02-15 19:38:25 +04005707 if (rcvd->max_ops != sent->max_ops)
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005708 return -EINVAL;
Vitaliy Gusevb4b9a0c2012-02-15 19:38:25 +04005709 if (rcvd->max_reqs != sent->max_reqs)
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005710 return -EINVAL;
5711 return 0;
5712}
Andy Adamson8d353012009-04-01 09:22:32 -04005713
Andy Adamson8d353012009-04-01 09:22:32 -04005714static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
5715 struct nfs4_session *session)
5716{
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005717 int ret;
Andy Adamson8d353012009-04-01 09:22:32 -04005718
J. Bruce Fields43c2e882010-10-02 15:19:01 -04005719 ret = nfs4_verify_fore_channel_attrs(args, session);
5720 if (ret)
5721 return ret;
5722 return nfs4_verify_back_channel_attrs(args, session);
Andy Adamson8d353012009-04-01 09:22:32 -04005723}
5724
Trond Myklebust848f5bd2012-05-25 17:51:23 -04005725static int _nfs4_proc_create_session(struct nfs_client *clp,
5726 struct rpc_cred *cred)
Andy Adamsonfc931582009-04-01 09:22:31 -04005727{
5728 struct nfs4_session *session = clp->cl_session;
5729 struct nfs41_create_session_args args = {
5730 .client = clp,
5731 .cb_program = NFS4_CALLBACK,
5732 };
5733 struct nfs41_create_session_res res = {
5734 .client = clp,
5735 };
5736 struct rpc_message msg = {
5737 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
5738 .rpc_argp = &args,
5739 .rpc_resp = &res,
Trond Myklebust848f5bd2012-05-25 17:51:23 -04005740 .rpc_cred = cred,
Andy Adamsonfc931582009-04-01 09:22:31 -04005741 };
5742 int status;
5743
5744 nfs4_init_channel_attrs(&args);
Andy Adamson0f914212009-04-01 09:23:16 -04005745 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
Andy Adamsonfc931582009-04-01 09:22:31 -04005746
Trond Myklebust1bd714f2011-04-24 14:29:33 -04005747 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Andy Adamsonfc931582009-04-01 09:22:31 -04005748
Andy Adamson8d353012009-04-01 09:22:32 -04005749 if (!status)
5750 /* Verify the session's negotiated channel_attrs values */
5751 status = nfs4_verify_channel_attrs(&args, session);
Andy Adamsonfc931582009-04-01 09:22:31 -04005752 if (!status) {
5753 /* Increment the clientid slot sequence id */
5754 clp->cl_seqid++;
5755 }
5756
5757 return status;
5758}
5759
5760/*
5761 * Issues a CREATE_SESSION operation to the server.
5762 * It is the responsibility of the caller to verify the session is
5763 * expired before calling this routine.
5764 */
Trond Myklebust848f5bd2012-05-25 17:51:23 -04005765int nfs4_proc_create_session(struct nfs_client *clp, struct rpc_cred *cred)
Andy Adamsonfc931582009-04-01 09:22:31 -04005766{
5767 int status;
5768 unsigned *ptr;
Andy Adamsonfc931582009-04-01 09:22:31 -04005769 struct nfs4_session *session = clp->cl_session;
5770
5771 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
5772
Trond Myklebust848f5bd2012-05-25 17:51:23 -04005773 status = _nfs4_proc_create_session(clp, cred);
Andy Adamsonfc931582009-04-01 09:22:31 -04005774 if (status)
5775 goto out;
5776
Andy Adamsonaacd5532011-11-09 13:58:21 -05005777 /* Init or reset the session slot tables */
5778 status = nfs4_setup_session_slot_tables(session);
5779 dprintk("slot table setup returned %d\n", status);
Andy Adamsonfc931582009-04-01 09:22:31 -04005780 if (status)
5781 goto out;
5782
5783 ptr = (unsigned *)&session->sess_id.data[0];
5784 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
5785 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
Andy Adamsonfc931582009-04-01 09:22:31 -04005786out:
5787 dprintk("<-- %s\n", __func__);
5788 return status;
5789}
5790
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005791/*
5792 * Issue the over-the-wire RPC DESTROY_SESSION.
5793 * The caller must serialize access to this routine.
5794 */
Trond Myklebust848f5bd2012-05-25 17:51:23 -04005795int nfs4_proc_destroy_session(struct nfs4_session *session,
5796 struct rpc_cred *cred)
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005797{
Trond Myklebust848f5bd2012-05-25 17:51:23 -04005798 struct rpc_message msg = {
5799 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION],
5800 .rpc_argp = session,
5801 .rpc_cred = cred,
5802 };
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005803 int status = 0;
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005804
5805 dprintk("--> nfs4_proc_destroy_session\n");
5806
5807 /* session is still being setup */
5808 if (session->clp->cl_cons_state != NFS_CS_READY)
5809 return status;
5810
Trond Myklebust1bd714f2011-04-24 14:29:33 -04005811 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005812
5813 if (status)
Trond Myklebust08106ac2012-06-05 10:08:24 -04005814 dprintk("NFS: Got error %d from the server on DESTROY_SESSION. "
Andy Adamson0f3e66c2009-04-01 09:22:34 -04005815 "Session has been destroyed regardless...\n", status);
5816
5817 dprintk("<-- nfs4_proc_destroy_session\n");
5818 return status;
5819}
5820
Trond Myklebust7b38c362012-05-23 13:23:31 -04005821/*
5822 * With sessions, the client is not marked ready until after a
5823 * successful EXCHANGE_ID and CREATE_SESSION.
5824 *
5825 * Map errors cl_cons_state errors to EPROTONOSUPPORT to indicate
5826 * other versions of NFS can be tried.
5827 */
5828static int nfs41_check_session_ready(struct nfs_client *clp)
5829{
5830 int ret;
5831
5832 if (clp->cl_cons_state == NFS_CS_SESSION_INITING) {
5833 ret = nfs4_client_recover_expired_lease(clp);
5834 if (ret)
5835 return ret;
5836 }
5837 if (clp->cl_cons_state < NFS_CS_READY)
5838 return -EPROTONOSUPPORT;
Trond Myklebust54ac4712012-05-23 13:26:10 -04005839 smp_rmb();
Trond Myklebust7b38c362012-05-23 13:23:31 -04005840 return 0;
5841}
5842
Trond Myklebustfccba802009-07-21 16:48:07 -04005843int nfs4_init_session(struct nfs_server *server)
5844{
5845 struct nfs_client *clp = server->nfs_client;
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05005846 struct nfs4_session *session;
Andy Adamson68bf05e2009-12-15 12:55:02 -05005847 unsigned int rsize, wsize;
Trond Myklebustfccba802009-07-21 16:48:07 -04005848
5849 if (!nfs4_has_session(clp))
5850 return 0;
5851
Trond Myklebust1055d762010-06-16 09:52:27 -04005852 session = clp->cl_session;
Trond Myklebust7b38c362012-05-23 13:23:31 -04005853 spin_lock(&clp->cl_lock);
5854 if (test_and_clear_bit(NFS4_SESSION_INITING, &session->session_state)) {
Trond Myklebust1055d762010-06-16 09:52:27 -04005855
Trond Myklebust7b38c362012-05-23 13:23:31 -04005856 rsize = server->rsize;
5857 if (rsize == 0)
5858 rsize = NFS_MAX_FILE_IO_SIZE;
5859 wsize = server->wsize;
5860 if (wsize == 0)
5861 wsize = NFS_MAX_FILE_IO_SIZE;
Andy Adamson68bf05e2009-12-15 12:55:02 -05005862
Trond Myklebust7b38c362012-05-23 13:23:31 -04005863 session->fc_attrs.max_rqst_sz = wsize + nfs41_maxwrite_overhead;
5864 session->fc_attrs.max_resp_sz = rsize + nfs41_maxread_overhead;
5865 }
5866 spin_unlock(&clp->cl_lock);
Alexandros Batsakis2449ea22009-12-05 13:36:55 -05005867
Trond Myklebust7b38c362012-05-23 13:23:31 -04005868 return nfs41_check_session_ready(clp);
Trond Myklebustfccba802009-07-21 16:48:07 -04005869}
5870
Trond Myklebust7b38c362012-05-23 13:23:31 -04005871int nfs4_init_ds_session(struct nfs_client *clp, unsigned long lease_time)
Andy Adamsond83217c2011-03-01 01:34:17 +00005872{
5873 struct nfs4_session *session = clp->cl_session;
5874 int ret;
5875
Trond Myklebust7b38c362012-05-23 13:23:31 -04005876 spin_lock(&clp->cl_lock);
5877 if (test_and_clear_bit(NFS4_SESSION_INITING, &session->session_state)) {
5878 /*
5879 * Do not set NFS_CS_CHECK_LEASE_TIME instead set the
5880 * DS lease to be equal to the MDS lease.
5881 */
5882 clp->cl_lease_time = lease_time;
5883 clp->cl_last_renewal = jiffies;
5884 }
5885 spin_unlock(&clp->cl_lock);
Andy Adamsond83217c2011-03-01 01:34:17 +00005886
Trond Myklebust7b38c362012-05-23 13:23:31 -04005887 ret = nfs41_check_session_ready(clp);
5888 if (ret)
5889 return ret;
5890 /* Test for the DS role */
5891 if (!is_ds_client(clp))
5892 return -ENODEV;
5893 return 0;
Andy Adamsond83217c2011-03-01 01:34:17 +00005894}
5895EXPORT_SYMBOL_GPL(nfs4_init_ds_session);
5896
5897
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005898/*
5899 * Renew the cl_session lease.
5900 */
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005901struct nfs4_sequence_data {
5902 struct nfs_client *clp;
5903 struct nfs4_sequence_args args;
5904 struct nfs4_sequence_res res;
5905};
5906
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005907static void nfs41_sequence_release(void *data)
5908{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005909 struct nfs4_sequence_data *calldata = data;
5910 struct nfs_client *clp = calldata->clp;
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005911
Alexandros Batsakis71358402010-02-05 03:45:05 -08005912 if (atomic_read(&clp->cl_count) > 1)
5913 nfs4_schedule_state_renewal(clp);
5914 nfs_put_client(clp);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005915 kfree(calldata);
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005916}
5917
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005918static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp)
5919{
5920 switch(task->tk_status) {
5921 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005922 rpc_delay(task, NFS4_POLL_RETRY_MAX);
5923 return -EAGAIN;
5924 default:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05005925 nfs4_schedule_lease_recovery(clp);
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005926 }
5927 return 0;
5928}
5929
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005930static void nfs41_sequence_call_done(struct rpc_task *task, void *data)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005931{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005932 struct nfs4_sequence_data *calldata = data;
5933 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005934
Trond Myklebust14516c32010-07-31 14:29:06 -04005935 if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp))
5936 return;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005937
5938 if (task->tk_status < 0) {
5939 dprintk("%s ERROR %d\n", __func__, task->tk_status);
Alexandros Batsakis71358402010-02-05 03:45:05 -08005940 if (atomic_read(&clp->cl_count) == 1)
5941 goto out;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005942
Trond Myklebustaa5190d2010-06-16 09:52:25 -04005943 if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) {
5944 rpc_restart_call_prepare(task);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005945 return;
5946 }
5947 }
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005948 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
Alexandros Batsakis71358402010-02-05 03:45:05 -08005949out:
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005950 dprintk("<-- %s\n", __func__);
5951}
5952
5953static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
5954{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005955 struct nfs4_sequence_data *calldata = data;
5956 struct nfs_client *clp = calldata->clp;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005957 struct nfs4_sequence_args *args;
5958 struct nfs4_sequence_res *res;
5959
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005960 args = task->tk_msg.rpc_argp;
5961 res = task->tk_msg.rpc_resp;
5962
Trond Myklebust9d12b212012-01-17 22:04:25 -05005963 if (nfs41_setup_sequence(clp->cl_session, args, res, task))
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005964 return;
5965 rpc_call_start(task);
5966}
5967
5968static const struct rpc_call_ops nfs41_sequence_ops = {
5969 .rpc_call_done = nfs41_sequence_call_done,
5970 .rpc_call_prepare = nfs41_sequence_prepare,
Alexandros Batsakisdc96aef2010-02-05 03:45:04 -08005971 .rpc_release = nfs41_sequence_release,
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005972};
5973
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005974static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005975{
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005976 struct nfs4_sequence_data *calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005977 struct rpc_message msg = {
5978 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
5979 .rpc_cred = cred,
5980 };
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005981 struct rpc_task_setup task_setup_data = {
5982 .rpc_client = clp->cl_rpcclient,
5983 .rpc_message = &msg,
5984 .callback_ops = &nfs41_sequence_ops,
5985 .flags = RPC_TASK_ASYNC | RPC_TASK_SOFT,
5986 };
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005987
Alexandros Batsakis71358402010-02-05 03:45:05 -08005988 if (!atomic_inc_not_zero(&clp->cl_count))
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005989 return ERR_PTR(-EIO);
Benny Halevydfb4f3092010-09-24 09:17:01 -04005990 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005991 if (calldata == NULL) {
Alexandros Batsakis71358402010-02-05 03:45:05 -08005992 nfs_put_client(clp);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005993 return ERR_PTR(-ENOMEM);
Andy Adamsonfc01cea2009-04-01 09:22:36 -04005994 }
Trond Myklebust9d12b212012-01-17 22:04:25 -05005995 nfs41_init_sequence(&calldata->args, &calldata->res, 0);
Trond Myklebustd5f8d3f2010-06-16 09:52:25 -04005996 msg.rpc_argp = &calldata->args;
5997 msg.rpc_resp = &calldata->res;
5998 calldata->clp = clp;
Trond Myklebust71ac6da2010-06-16 09:52:26 -04005999 task_setup_data.callback_data = calldata;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006000
Trond Myklebust71ac6da2010-06-16 09:52:26 -04006001 return rpc_run_task(&task_setup_data);
6002}
6003
Trond Myklebust2f60ea62011-08-24 15:07:37 -04006004static int nfs41_proc_async_sequence(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags)
Trond Myklebust71ac6da2010-06-16 09:52:26 -04006005{
6006 struct rpc_task *task;
6007 int ret = 0;
6008
Trond Myklebust2f60ea62011-08-24 15:07:37 -04006009 if ((renew_flags & NFS4_RENEW_TIMEOUT) == 0)
6010 return 0;
Trond Myklebust71ac6da2010-06-16 09:52:26 -04006011 task = _nfs41_proc_sequence(clp, cred);
6012 if (IS_ERR(task))
6013 ret = PTR_ERR(task);
6014 else
Trond Myklebustbf294b42011-02-21 11:05:41 -08006015 rpc_put_task_async(task);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04006016 dprintk("<-- %s status=%d\n", __func__, ret);
6017 return ret;
6018}
6019
6020static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
6021{
6022 struct rpc_task *task;
6023 int ret;
6024
6025 task = _nfs41_proc_sequence(clp, cred);
6026 if (IS_ERR(task)) {
6027 ret = PTR_ERR(task);
6028 goto out;
6029 }
6030 ret = rpc_wait_for_completion_task(task);
Trond Myklebustb4410c22011-03-09 16:00:55 -05006031 if (!ret) {
6032 struct nfs4_sequence_res *res = task->tk_msg.rpc_resp;
6033
6034 if (task->tk_status == 0)
6035 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags);
Trond Myklebust71ac6da2010-06-16 09:52:26 -04006036 ret = task->tk_status;
Trond Myklebustb4410c22011-03-09 16:00:55 -05006037 }
Trond Myklebust71ac6da2010-06-16 09:52:26 -04006038 rpc_put_task(task);
6039out:
6040 dprintk("<-- %s status=%d\n", __func__, ret);
6041 return ret;
Andy Adamsonfc01cea2009-04-01 09:22:36 -04006042}
6043
Ricardo Labiagafce5c832009-12-05 16:08:41 -05006044struct nfs4_reclaim_complete_data {
6045 struct nfs_client *clp;
6046 struct nfs41_reclaim_complete_args arg;
6047 struct nfs41_reclaim_complete_res res;
6048};
6049
6050static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
6051{
6052 struct nfs4_reclaim_complete_data *calldata = data;
6053
Alexandros Batsakisb2579572009-12-14 21:27:57 -08006054 rpc_task_set_priority(task, RPC_PRIORITY_PRIVILEGED);
Trond Myklebust035168a2010-06-16 09:52:26 -04006055 if (nfs41_setup_sequence(calldata->clp->cl_session,
6056 &calldata->arg.seq_args,
Trond Myklebust9d12b212012-01-17 22:04:25 -05006057 &calldata->res.seq_res, task))
Ricardo Labiagafce5c832009-12-05 16:08:41 -05006058 return;
6059
6060 rpc_call_start(task);
6061}
6062
Trond Myklebustaa5190d2010-06-16 09:52:25 -04006063static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp)
6064{
6065 switch(task->tk_status) {
6066 case 0:
6067 case -NFS4ERR_COMPLETE_ALREADY:
6068 case -NFS4ERR_WRONG_CRED: /* What to do here? */
6069 break;
6070 case -NFS4ERR_DELAY:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04006071 rpc_delay(task, NFS4_POLL_RETRY_MAX);
Andy Adamsona8a4ae32011-05-03 13:43:03 -04006072 /* fall through */
6073 case -NFS4ERR_RETRY_UNCACHED_REP:
Trond Myklebustaa5190d2010-06-16 09:52:25 -04006074 return -EAGAIN;
6075 default:
Trond Myklebust0400a6b2011-03-09 16:00:53 -05006076 nfs4_schedule_lease_recovery(clp);
Trond Myklebustaa5190d2010-06-16 09:52:25 -04006077 }
6078 return 0;
6079}
6080
Ricardo Labiagafce5c832009-12-05 16:08:41 -05006081static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
6082{
6083 struct nfs4_reclaim_complete_data *calldata = data;
6084 struct nfs_client *clp = calldata->clp;
6085 struct nfs4_sequence_res *res = &calldata->res.seq_res;
6086
6087 dprintk("--> %s\n", __func__);
Trond Myklebust14516c32010-07-31 14:29:06 -04006088 if (!nfs41_sequence_done(task, res))
6089 return;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05006090
Trond Myklebustaa5190d2010-06-16 09:52:25 -04006091 if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) {
6092 rpc_restart_call_prepare(task);
6093 return;
6094 }
Ricardo Labiagafce5c832009-12-05 16:08:41 -05006095 dprintk("<-- %s\n", __func__);
6096}
6097
6098static void nfs4_free_reclaim_complete_data(void *data)
6099{
6100 struct nfs4_reclaim_complete_data *calldata = data;
6101
6102 kfree(calldata);
6103}
6104
6105static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
6106 .rpc_call_prepare = nfs4_reclaim_complete_prepare,
6107 .rpc_call_done = nfs4_reclaim_complete_done,
6108 .rpc_release = nfs4_free_reclaim_complete_data,
6109};
6110
6111/*
6112 * Issue a global reclaim complete.
6113 */
6114static int nfs41_proc_reclaim_complete(struct nfs_client *clp)
6115{
6116 struct nfs4_reclaim_complete_data *calldata;
6117 struct rpc_task *task;
6118 struct rpc_message msg = {
6119 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
6120 };
6121 struct rpc_task_setup task_setup_data = {
6122 .rpc_client = clp->cl_rpcclient,
6123 .rpc_message = &msg,
6124 .callback_ops = &nfs4_reclaim_complete_call_ops,
6125 .flags = RPC_TASK_ASYNC,
6126 };
6127 int status = -ENOMEM;
6128
6129 dprintk("--> %s\n", __func__);
Trond Myklebust8535b2b2010-05-13 12:51:01 -04006130 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05006131 if (calldata == NULL)
6132 goto out;
6133 calldata->clp = clp;
6134 calldata->arg.one_fs = 0;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05006135
Trond Myklebust9d12b212012-01-17 22:04:25 -05006136 nfs41_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 0);
Ricardo Labiagafce5c832009-12-05 16:08:41 -05006137 msg.rpc_argp = &calldata->arg;
6138 msg.rpc_resp = &calldata->res;
6139 task_setup_data.callback_data = calldata;
6140 task = rpc_run_task(&task_setup_data);
Dan Carpenteracf82b82010-04-22 11:28:39 +02006141 if (IS_ERR(task)) {
Ricardo Labiagafce5c832009-12-05 16:08:41 -05006142 status = PTR_ERR(task);
Dan Carpenteracf82b82010-04-22 11:28:39 +02006143 goto out;
6144 }
Andy Adamsonc34c32e2011-03-09 13:13:46 -05006145 status = nfs4_wait_for_completion_rpc_task(task);
6146 if (status == 0)
6147 status = task->tk_status;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05006148 rpc_put_task(task);
Dan Carpenteracf82b82010-04-22 11:28:39 +02006149 return 0;
Ricardo Labiagafce5c832009-12-05 16:08:41 -05006150out:
6151 dprintk("<-- %s status=%d\n", __func__, status);
6152 return status;
6153}
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006154
6155static void
6156nfs4_layoutget_prepare(struct rpc_task *task, void *calldata)
6157{
6158 struct nfs4_layoutget *lgp = calldata;
Fred Isamanc31663d2011-01-06 11:36:24 +00006159 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006160
6161 dprintk("--> %s\n", __func__);
Fred Isamanc31663d2011-01-06 11:36:24 +00006162 /* Note the is a race here, where a CB_LAYOUTRECALL can come in
6163 * right now covering the LAYOUTGET we are about to send.
6164 * However, that is not so catastrophic, and there seems
6165 * to be no way to prevent it completely.
6166 */
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006167 if (nfs4_setup_sequence(server, &lgp->args.seq_args,
Trond Myklebust9d12b212012-01-17 22:04:25 -05006168 &lgp->res.seq_res, task))
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006169 return;
Fred Isamancf7d63f2011-01-06 11:36:25 +00006170 if (pnfs_choose_layoutget_stateid(&lgp->args.stateid,
6171 NFS_I(lgp->args.inode)->layout,
6172 lgp->args.ctx->state)) {
6173 rpc_exit(task, NFS4_OK);
6174 return;
6175 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006176 rpc_call_start(task);
6177}
6178
6179static void nfs4_layoutget_done(struct rpc_task *task, void *calldata)
6180{
6181 struct nfs4_layoutget *lgp = calldata;
6182 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
6183
6184 dprintk("--> %s\n", __func__);
6185
6186 if (!nfs4_sequence_done(task, &lgp->res.seq_res))
6187 return;
6188
6189 switch (task->tk_status) {
6190 case 0:
6191 break;
6192 case -NFS4ERR_LAYOUTTRYLATER:
6193 case -NFS4ERR_RECALLCONFLICT:
6194 task->tk_status = -NFS4ERR_DELAY;
6195 /* Fall through */
6196 default:
6197 if (nfs4_async_handle_error(task, server, NULL) == -EAGAIN) {
6198 rpc_restart_call_prepare(task);
6199 return;
6200 }
6201 }
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006202 dprintk("<-- %s\n", __func__);
6203}
6204
6205static void nfs4_layoutget_release(void *calldata)
6206{
6207 struct nfs4_layoutget *lgp = calldata;
6208
6209 dprintk("--> %s\n", __func__);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006210 put_nfs_open_context(lgp->args.ctx);
6211 kfree(calldata);
6212 dprintk("<-- %s\n", __func__);
6213}
6214
6215static const struct rpc_call_ops nfs4_layoutget_call_ops = {
6216 .rpc_call_prepare = nfs4_layoutget_prepare,
6217 .rpc_call_done = nfs4_layoutget_done,
6218 .rpc_release = nfs4_layoutget_release,
6219};
6220
6221int nfs4_proc_layoutget(struct nfs4_layoutget *lgp)
6222{
6223 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
6224 struct rpc_task *task;
6225 struct rpc_message msg = {
6226 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET],
6227 .rpc_argp = &lgp->args,
6228 .rpc_resp = &lgp->res,
6229 };
6230 struct rpc_task_setup task_setup_data = {
6231 .rpc_client = server->client,
6232 .rpc_message = &msg,
6233 .callback_ops = &nfs4_layoutget_call_ops,
6234 .callback_data = lgp,
6235 .flags = RPC_TASK_ASYNC,
6236 };
6237 int status = 0;
6238
6239 dprintk("--> %s\n", __func__);
6240
Weston Andros Adamson35124a02011-03-24 16:48:21 -04006241 lgp->res.layoutp = &lgp->args.layout;
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006242 lgp->res.seq_res.sr_slot = NULL;
Trond Myklebust9d12b212012-01-17 22:04:25 -05006243 nfs41_init_sequence(&lgp->args.seq_args, &lgp->res.seq_res, 0);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006244 task = rpc_run_task(&task_setup_data);
6245 if (IS_ERR(task))
6246 return PTR_ERR(task);
6247 status = nfs4_wait_for_completion_rpc_task(task);
Fred Isamanc31663d2011-01-06 11:36:24 +00006248 if (status == 0)
6249 status = task->tk_status;
6250 if (status == 0)
6251 status = pnfs_layout_process(lgp);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006252 rpc_put_task(task);
6253 dprintk("<-- %s status=%d\n", __func__, status);
6254 return status;
6255}
6256
Benny Halevycbe82602011-05-22 19:52:37 +03006257static void
6258nfs4_layoutreturn_prepare(struct rpc_task *task, void *calldata)
6259{
6260 struct nfs4_layoutreturn *lrp = calldata;
6261
6262 dprintk("--> %s\n", __func__);
6263 if (nfs41_setup_sequence(lrp->clp->cl_session, &lrp->args.seq_args,
Trond Myklebust9d12b212012-01-17 22:04:25 -05006264 &lrp->res.seq_res, task))
Benny Halevycbe82602011-05-22 19:52:37 +03006265 return;
6266 rpc_call_start(task);
6267}
6268
6269static void nfs4_layoutreturn_done(struct rpc_task *task, void *calldata)
6270{
6271 struct nfs4_layoutreturn *lrp = calldata;
6272 struct nfs_server *server;
Trond Myklebusta56aaa02011-06-15 11:59:10 -04006273 struct pnfs_layout_hdr *lo = lrp->args.layout;
Benny Halevycbe82602011-05-22 19:52:37 +03006274
6275 dprintk("--> %s\n", __func__);
6276
6277 if (!nfs4_sequence_done(task, &lrp->res.seq_res))
6278 return;
6279
6280 server = NFS_SERVER(lrp->args.inode);
6281 if (nfs4_async_handle_error(task, server, NULL) == -EAGAIN) {
Trond Myklebustd00c5d42011-10-19 12:17:29 -07006282 rpc_restart_call_prepare(task);
Benny Halevycbe82602011-05-22 19:52:37 +03006283 return;
6284 }
Fred Isamana2e1d4f2011-06-13 18:54:53 -04006285 spin_lock(&lo->plh_inode->i_lock);
Benny Halevycbe82602011-05-22 19:52:37 +03006286 if (task->tk_status == 0) {
Benny Halevycbe82602011-05-22 19:52:37 +03006287 if (lrp->res.lrs_present) {
Benny Halevycbe82602011-05-22 19:52:37 +03006288 pnfs_set_layout_stateid(lo, &lrp->res.stateid, true);
Benny Halevycbe82602011-05-22 19:52:37 +03006289 } else
6290 BUG_ON(!list_empty(&lo->plh_segs));
6291 }
Fred Isamana2e1d4f2011-06-13 18:54:53 -04006292 lo->plh_block_lgets--;
6293 spin_unlock(&lo->plh_inode->i_lock);
Benny Halevycbe82602011-05-22 19:52:37 +03006294 dprintk("<-- %s\n", __func__);
6295}
6296
6297static void nfs4_layoutreturn_release(void *calldata)
6298{
6299 struct nfs4_layoutreturn *lrp = calldata;
6300
6301 dprintk("--> %s\n", __func__);
Trond Myklebusta56aaa02011-06-15 11:59:10 -04006302 put_layout_hdr(lrp->args.layout);
Benny Halevycbe82602011-05-22 19:52:37 +03006303 kfree(calldata);
6304 dprintk("<-- %s\n", __func__);
6305}
6306
6307static const struct rpc_call_ops nfs4_layoutreturn_call_ops = {
6308 .rpc_call_prepare = nfs4_layoutreturn_prepare,
6309 .rpc_call_done = nfs4_layoutreturn_done,
6310 .rpc_release = nfs4_layoutreturn_release,
6311};
6312
6313int nfs4_proc_layoutreturn(struct nfs4_layoutreturn *lrp)
6314{
6315 struct rpc_task *task;
6316 struct rpc_message msg = {
6317 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTRETURN],
6318 .rpc_argp = &lrp->args,
6319 .rpc_resp = &lrp->res,
6320 };
6321 struct rpc_task_setup task_setup_data = {
6322 .rpc_client = lrp->clp->cl_rpcclient,
6323 .rpc_message = &msg,
6324 .callback_ops = &nfs4_layoutreturn_call_ops,
6325 .callback_data = lrp,
6326 };
6327 int status;
6328
6329 dprintk("--> %s\n", __func__);
Trond Myklebust9d12b212012-01-17 22:04:25 -05006330 nfs41_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1);
Benny Halevycbe82602011-05-22 19:52:37 +03006331 task = rpc_run_task(&task_setup_data);
6332 if (IS_ERR(task))
6333 return PTR_ERR(task);
6334 status = task->tk_status;
6335 dprintk("<-- %s status=%d\n", __func__, status);
6336 rpc_put_task(task);
6337 return status;
6338}
6339
Andy Adamson7f11d8d2011-07-30 20:52:35 -04006340/*
6341 * Retrieve the list of Data Server devices from the MDS.
6342 */
6343static int _nfs4_getdevicelist(struct nfs_server *server,
6344 const struct nfs_fh *fh,
6345 struct pnfs_devicelist *devlist)
6346{
6347 struct nfs4_getdevicelist_args args = {
6348 .fh = fh,
6349 .layoutclass = server->pnfs_curr_ld->id,
6350 };
6351 struct nfs4_getdevicelist_res res = {
6352 .devlist = devlist,
6353 };
6354 struct rpc_message msg = {
6355 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICELIST],
6356 .rpc_argp = &args,
6357 .rpc_resp = &res,
6358 };
6359 int status;
6360
6361 dprintk("--> %s\n", __func__);
6362 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args,
6363 &res.seq_res, 0);
6364 dprintk("<-- %s status=%d\n", __func__, status);
6365 return status;
6366}
6367
6368int nfs4_proc_getdevicelist(struct nfs_server *server,
6369 const struct nfs_fh *fh,
6370 struct pnfs_devicelist *devlist)
6371{
6372 struct nfs4_exception exception = { };
6373 int err;
6374
6375 do {
6376 err = nfs4_handle_exception(server,
6377 _nfs4_getdevicelist(server, fh, devlist),
6378 &exception);
6379 } while (exception.retry);
6380
6381 dprintk("%s: err=%d, num_devs=%u\n", __func__,
6382 err, devlist->num_devs);
6383
6384 return err;
6385}
6386EXPORT_SYMBOL_GPL(nfs4_proc_getdevicelist);
6387
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006388static int
6389_nfs4_proc_getdeviceinfo(struct nfs_server *server, struct pnfs_device *pdev)
6390{
6391 struct nfs4_getdeviceinfo_args args = {
6392 .pdev = pdev,
6393 };
6394 struct nfs4_getdeviceinfo_res res = {
6395 .pdev = pdev,
6396 };
6397 struct rpc_message msg = {
6398 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO],
6399 .rpc_argp = &args,
6400 .rpc_resp = &res,
6401 };
6402 int status;
6403
6404 dprintk("--> %s\n", __func__);
Bryan Schumaker7c513052011-03-24 17:12:24 +00006405 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
Andy Adamsonb1f69b72010-10-20 00:18:03 -04006406 dprintk("<-- %s status=%d\n", __func__, status);
6407
6408 return status;
6409}
6410
6411int nfs4_proc_getdeviceinfo(struct nfs_server *server, struct pnfs_device *pdev)
6412{
6413 struct nfs4_exception exception = { };
6414 int err;
6415
6416 do {
6417 err = nfs4_handle_exception(server,
6418 _nfs4_proc_getdeviceinfo(server, pdev),
6419 &exception);
6420 } while (exception.retry);
6421 return err;
6422}
6423EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo);
6424
Andy Adamson863a3c62011-03-23 13:27:54 +00006425static void nfs4_layoutcommit_prepare(struct rpc_task *task, void *calldata)
6426{
6427 struct nfs4_layoutcommit_data *data = calldata;
6428 struct nfs_server *server = NFS_SERVER(data->args.inode);
6429
6430 if (nfs4_setup_sequence(server, &data->args.seq_args,
Trond Myklebust9d12b212012-01-17 22:04:25 -05006431 &data->res.seq_res, task))
Andy Adamson863a3c62011-03-23 13:27:54 +00006432 return;
6433 rpc_call_start(task);
6434}
6435
6436static void
6437nfs4_layoutcommit_done(struct rpc_task *task, void *calldata)
6438{
6439 struct nfs4_layoutcommit_data *data = calldata;
6440 struct nfs_server *server = NFS_SERVER(data->args.inode);
6441
6442 if (!nfs4_sequence_done(task, &data->res.seq_res))
6443 return;
6444
6445 switch (task->tk_status) { /* Just ignore these failures */
Trond Myklebuste59d27e2012-03-27 18:22:19 -04006446 case -NFS4ERR_DELEG_REVOKED: /* layout was recalled */
6447 case -NFS4ERR_BADIOMODE: /* no IOMODE_RW layout for range */
6448 case -NFS4ERR_BADLAYOUT: /* no layout */
6449 case -NFS4ERR_GRACE: /* loca_recalim always false */
Andy Adamson863a3c62011-03-23 13:27:54 +00006450 task->tk_status = 0;
Trond Myklebuste59d27e2012-03-27 18:22:19 -04006451 break;
6452 case 0:
Andy Adamson863a3c62011-03-23 13:27:54 +00006453 nfs_post_op_update_inode_force_wcc(data->args.inode,
6454 data->res.fattr);
Trond Myklebuste59d27e2012-03-27 18:22:19 -04006455 break;
6456 default:
6457 if (nfs4_async_handle_error(task, server, NULL) == -EAGAIN) {
6458 rpc_restart_call_prepare(task);
6459 return;
6460 }
6461 }
Andy Adamson863a3c62011-03-23 13:27:54 +00006462}
6463
6464static void nfs4_layoutcommit_release(void *calldata)
6465{
6466 struct nfs4_layoutcommit_data *data = calldata;
Peng Taoa9bae562011-07-30 20:52:33 -04006467 struct pnfs_layout_segment *lseg, *tmp;
Peng Tao92407e72011-10-23 20:21:17 -07006468 unsigned long *bitlock = &NFS_I(data->args.inode)->flags;
Andy Adamson863a3c62011-03-23 13:27:54 +00006469
Andy Adamsondb29c082011-07-30 20:52:38 -04006470 pnfs_cleanup_layoutcommit(data);
Andy Adamson863a3c62011-03-23 13:27:54 +00006471 /* Matched by references in pnfs_set_layoutcommit */
Peng Taoa9bae562011-07-30 20:52:33 -04006472 list_for_each_entry_safe(lseg, tmp, &data->lseg_list, pls_lc_list) {
6473 list_del_init(&lseg->pls_lc_list);
6474 if (test_and_clear_bit(NFS_LSEG_LAYOUTCOMMIT,
6475 &lseg->pls_flags))
6476 put_lseg(lseg);
6477 }
Peng Tao92407e72011-10-23 20:21:17 -07006478
6479 clear_bit_unlock(NFS_INO_LAYOUTCOMMITTING, bitlock);
6480 smp_mb__after_clear_bit();
6481 wake_up_bit(bitlock, NFS_INO_LAYOUTCOMMITTING);
6482
Andy Adamson863a3c62011-03-23 13:27:54 +00006483 put_rpccred(data->cred);
6484 kfree(data);
6485}
6486
6487static const struct rpc_call_ops nfs4_layoutcommit_ops = {
6488 .rpc_call_prepare = nfs4_layoutcommit_prepare,
6489 .rpc_call_done = nfs4_layoutcommit_done,
6490 .rpc_release = nfs4_layoutcommit_release,
6491};
6492
6493int
Andy Adamsonef311532011-03-12 02:58:10 -05006494nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync)
Andy Adamson863a3c62011-03-23 13:27:54 +00006495{
6496 struct rpc_message msg = {
6497 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTCOMMIT],
6498 .rpc_argp = &data->args,
6499 .rpc_resp = &data->res,
6500 .rpc_cred = data->cred,
6501 };
6502 struct rpc_task_setup task_setup_data = {
6503 .task = &data->task,
6504 .rpc_client = NFS_CLIENT(data->args.inode),
6505 .rpc_message = &msg,
6506 .callback_ops = &nfs4_layoutcommit_ops,
6507 .callback_data = data,
6508 .flags = RPC_TASK_ASYNC,
6509 };
6510 struct rpc_task *task;
6511 int status = 0;
6512
6513 dprintk("NFS: %4d initiating layoutcommit call. sync %d "
6514 "lbw: %llu inode %lu\n",
6515 data->task.tk_pid, sync,
6516 data->args.lastbytewritten,
6517 data->args.inode->i_ino);
6518
Trond Myklebust9d12b212012-01-17 22:04:25 -05006519 nfs41_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
Andy Adamson863a3c62011-03-23 13:27:54 +00006520 task = rpc_run_task(&task_setup_data);
6521 if (IS_ERR(task))
6522 return PTR_ERR(task);
Andy Adamsonef311532011-03-12 02:58:10 -05006523 if (sync == false)
Andy Adamson863a3c62011-03-23 13:27:54 +00006524 goto out;
6525 status = nfs4_wait_for_completion_rpc_task(task);
6526 if (status != 0)
6527 goto out;
6528 status = task->tk_status;
6529out:
6530 dprintk("%s: status %d\n", __func__, status);
6531 rpc_put_task(task);
6532 return status;
6533}
Bryan Schumakerfca78d62011-06-02 14:59:07 -04006534
6535static int
6536_nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
6537 struct nfs_fsinfo *info, struct nfs4_secinfo_flavors *flavors)
6538{
6539 struct nfs41_secinfo_no_name_args args = {
6540 .style = SECINFO_STYLE_CURRENT_FH,
6541 };
6542 struct nfs4_secinfo_res res = {
6543 .flavors = flavors,
6544 };
6545 struct rpc_message msg = {
6546 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO_NO_NAME],
6547 .rpc_argp = &args,
6548 .rpc_resp = &res,
6549 };
6550 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
6551}
6552
6553static int
6554nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
6555 struct nfs_fsinfo *info, struct nfs4_secinfo_flavors *flavors)
6556{
6557 struct nfs4_exception exception = { };
6558 int err;
6559 do {
6560 err = _nfs41_proc_secinfo_no_name(server, fhandle, info, flavors);
6561 switch (err) {
6562 case 0:
6563 case -NFS4ERR_WRONGSEC:
6564 case -NFS4ERR_NOTSUPP:
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04006565 goto out;
Bryan Schumakerfca78d62011-06-02 14:59:07 -04006566 default:
6567 err = nfs4_handle_exception(server, err, &exception);
6568 }
6569 } while (exception.retry);
Trond Myklebust05e9cfb2012-03-27 18:13:02 -04006570out:
Bryan Schumakerfca78d62011-06-02 14:59:07 -04006571 return err;
6572}
6573
6574static int
6575nfs41_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
6576 struct nfs_fsinfo *info)
6577{
6578 int err;
6579 struct page *page;
6580 rpc_authflavor_t flavor;
6581 struct nfs4_secinfo_flavors *flavors;
6582
6583 page = alloc_page(GFP_KERNEL);
6584 if (!page) {
6585 err = -ENOMEM;
6586 goto out;
6587 }
6588
6589 flavors = page_address(page);
6590 err = nfs41_proc_secinfo_no_name(server, fhandle, info, flavors);
6591
6592 /*
6593 * Fall back on "guess and check" method if
6594 * the server doesn't support SECINFO_NO_NAME
6595 */
6596 if (err == -NFS4ERR_WRONGSEC || err == -NFS4ERR_NOTSUPP) {
6597 err = nfs4_find_root_sec(server, fhandle, info);
6598 goto out_freepage;
6599 }
6600 if (err)
6601 goto out_freepage;
6602
6603 flavor = nfs_find_best_sec(flavors);
6604 if (err == 0)
6605 err = nfs4_lookup_root_sec(server, fhandle, info, flavor);
6606
6607out_freepage:
6608 put_page(page);
6609 if (err == -EACCES)
6610 return -EPERM;
6611out:
6612 return err;
6613}
Bryan Schumaker1cab0652012-01-31 10:39:29 -05006614
6615static int _nfs41_test_stateid(struct nfs_server *server, nfs4_stateid *stateid)
Bryan Schumaker7d974792011-06-02 14:59:08 -04006616{
6617 int status;
6618 struct nfs41_test_stateid_args args = {
Bryan Schumaker1cab0652012-01-31 10:39:29 -05006619 .stateid = stateid,
Bryan Schumaker7d974792011-06-02 14:59:08 -04006620 };
6621 struct nfs41_test_stateid_res res;
6622 struct rpc_message msg = {
6623 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_TEST_STATEID],
6624 .rpc_argp = &args,
6625 .rpc_resp = &res,
6626 };
Bryan Schumaker1cab0652012-01-31 10:39:29 -05006627
Chuck Lever38527b12012-07-11 16:30:23 -04006628 dprintk("NFS call test_stateid %p\n", stateid);
Trond Myklebust9d12b212012-01-17 22:04:25 -05006629 nfs41_init_sequence(&args.seq_args, &res.seq_res, 0);
Bryan Schumaker1cab0652012-01-31 10:39:29 -05006630 status = nfs4_call_sync_sequence(server->client, server, &msg, &args.seq_args, &res.seq_res, 1);
Chuck Lever38527b12012-07-11 16:30:23 -04006631 if (status != NFS_OK) {
6632 dprintk("NFS reply test_stateid: failed, %d\n", status);
Chuck Lever377e5072012-07-11 16:29:45 -04006633 return status;
Chuck Lever38527b12012-07-11 16:30:23 -04006634 }
6635 dprintk("NFS reply test_stateid: succeeded, %d\n", -res.status);
Chuck Lever377e5072012-07-11 16:29:45 -04006636 return -res.status;
Bryan Schumaker7d974792011-06-02 14:59:08 -04006637}
6638
Chuck Lever38527b12012-07-11 16:30:23 -04006639/**
6640 * nfs41_test_stateid - perform a TEST_STATEID operation
6641 *
6642 * @server: server / transport on which to perform the operation
6643 * @stateid: state ID to test
6644 *
6645 * Returns NFS_OK if the server recognizes that "stateid" is valid.
6646 * Otherwise a negative NFS4ERR value is returned if the operation
6647 * failed or the state ID is not currently valid.
6648 */
Bryan Schumaker1cab0652012-01-31 10:39:29 -05006649static int nfs41_test_stateid(struct nfs_server *server, nfs4_stateid *stateid)
Bryan Schumaker7d974792011-06-02 14:59:08 -04006650{
6651 struct nfs4_exception exception = { };
6652 int err;
6653 do {
Chuck Lever377e5072012-07-11 16:29:45 -04006654 err = _nfs41_test_stateid(server, stateid);
6655 if (err != -NFS4ERR_DELAY)
6656 break;
6657 nfs4_handle_exception(server, err, &exception);
Bryan Schumaker7d974792011-06-02 14:59:08 -04006658 } while (exception.retry);
6659 return err;
6660}
Bryan Schumaker9aeda352011-06-02 14:59:09 -04006661
Bryan Schumaker1cab0652012-01-31 10:39:29 -05006662static int _nfs4_free_stateid(struct nfs_server *server, nfs4_stateid *stateid)
Bryan Schumaker9aeda352011-06-02 14:59:09 -04006663{
Bryan Schumaker9aeda352011-06-02 14:59:09 -04006664 struct nfs41_free_stateid_args args = {
Bryan Schumaker1cab0652012-01-31 10:39:29 -05006665 .stateid = stateid,
Bryan Schumaker9aeda352011-06-02 14:59:09 -04006666 };
6667 struct nfs41_free_stateid_res res;
6668 struct rpc_message msg = {
6669 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FREE_STATEID],
6670 .rpc_argp = &args,
6671 .rpc_resp = &res,
6672 };
Chuck Lever38527b12012-07-11 16:30:23 -04006673 int status;
Bryan Schumaker9aeda352011-06-02 14:59:09 -04006674
Chuck Lever38527b12012-07-11 16:30:23 -04006675 dprintk("NFS call free_stateid %p\n", stateid);
Trond Myklebust9d12b212012-01-17 22:04:25 -05006676 nfs41_init_sequence(&args.seq_args, &res.seq_res, 0);
Chuck Lever38527b12012-07-11 16:30:23 -04006677 status = nfs4_call_sync_sequence(server->client, server, &msg,
Chuck Lever377e5072012-07-11 16:29:45 -04006678 &args.seq_args, &res.seq_res, 1);
Chuck Lever38527b12012-07-11 16:30:23 -04006679 dprintk("NFS reply free_stateid: %d\n", status);
6680 return status;
Bryan Schumaker9aeda352011-06-02 14:59:09 -04006681}
6682
Chuck Lever38527b12012-07-11 16:30:23 -04006683/**
6684 * nfs41_free_stateid - perform a FREE_STATEID operation
6685 *
6686 * @server: server / transport on which to perform the operation
6687 * @stateid: state ID to release
6688 *
6689 * Returns NFS_OK if the server freed "stateid". Otherwise a
6690 * negative NFS4ERR value is returned.
6691 */
Bryan Schumaker1cab0652012-01-31 10:39:29 -05006692static int nfs41_free_stateid(struct nfs_server *server, nfs4_stateid *stateid)
Bryan Schumaker9aeda352011-06-02 14:59:09 -04006693{
6694 struct nfs4_exception exception = { };
6695 int err;
6696 do {
Chuck Lever377e5072012-07-11 16:29:45 -04006697 err = _nfs4_free_stateid(server, stateid);
6698 if (err != -NFS4ERR_DELAY)
6699 break;
6700 nfs4_handle_exception(server, err, &exception);
Bryan Schumaker9aeda352011-06-02 14:59:09 -04006701 } while (exception.retry);
6702 return err;
6703}
Trond Myklebust36281ca2012-03-04 18:13:56 -05006704
6705static bool nfs41_match_stateid(const nfs4_stateid *s1,
6706 const nfs4_stateid *s2)
6707{
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05006708 if (memcmp(s1->other, s2->other, sizeof(s1->other)) != 0)
Trond Myklebust36281ca2012-03-04 18:13:56 -05006709 return false;
6710
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05006711 if (s1->seqid == s2->seqid)
Trond Myklebust36281ca2012-03-04 18:13:56 -05006712 return true;
Trond Myklebust2d2f24a2012-03-04 18:13:57 -05006713 if (s1->seqid == 0 || s2->seqid == 0)
Trond Myklebust36281ca2012-03-04 18:13:56 -05006714 return true;
6715
6716 return false;
6717}
6718
Andy Adamson557134a2009-04-01 09:21:53 -04006719#endif /* CONFIG_NFS_V4_1 */
6720
Trond Myklebust36281ca2012-03-04 18:13:56 -05006721static bool nfs4_match_stateid(const nfs4_stateid *s1,
6722 const nfs4_stateid *s2)
6723{
Trond Myklebustf597c532012-03-04 18:13:56 -05006724 return nfs4_stateid_match(s1, s2);
Trond Myklebust36281ca2012-03-04 18:13:56 -05006725}
6726
6727
Trond Myklebust17280172012-03-11 13:11:00 -04006728static const struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05006729 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05006730 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731 .recover_open = nfs4_open_reclaim,
6732 .recover_lock = nfs4_lock_reclaim,
Andy Adamson591d71c2009-04-01 09:22:47 -04006733 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04006734 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735};
6736
Andy Adamson591d71c2009-04-01 09:22:47 -04006737#if defined(CONFIG_NFS_V4_1)
Trond Myklebust17280172012-03-11 13:11:00 -04006738static const struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
Andy Adamson591d71c2009-04-01 09:22:47 -04006739 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
6740 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
6741 .recover_open = nfs4_open_reclaim,
6742 .recover_lock = nfs4_lock_reclaim,
Andy Adamson4d643d12009-12-04 15:52:24 -05006743 .establish_clid = nfs41_init_clientid,
Andy Adamsonb4b82602009-04-01 09:22:49 -04006744 .get_clid_cred = nfs4_get_exchange_id_cred,
Ricardo Labiagafce5c832009-12-05 16:08:41 -05006745 .reclaim_complete = nfs41_proc_reclaim_complete,
Andy Adamson591d71c2009-04-01 09:22:47 -04006746};
6747#endif /* CONFIG_NFS_V4_1 */
6748
Trond Myklebust17280172012-03-11 13:11:00 -04006749static const struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
Trond Myklebust7eff03a2008-12-23 15:21:43 -05006750 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
Trond Myklebustb79a4a12008-12-23 15:21:41 -05006751 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752 .recover_open = nfs4_open_expired,
6753 .recover_lock = nfs4_lock_expired,
Andy Adamson591d71c2009-04-01 09:22:47 -04006754 .establish_clid = nfs4_init_clientid,
Andy Adamson90a16612009-04-01 09:22:48 -04006755 .get_clid_cred = nfs4_get_setclientid_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006756};
6757
Andy Adamson591d71c2009-04-01 09:22:47 -04006758#if defined(CONFIG_NFS_V4_1)
Trond Myklebust17280172012-03-11 13:11:00 -04006759static const struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
Andy Adamson591d71c2009-04-01 09:22:47 -04006760 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
6761 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
Bryan Schumakerf062eb62011-06-02 14:59:10 -04006762 .recover_open = nfs41_open_expired,
6763 .recover_lock = nfs41_lock_expired,
Andy Adamson4d643d12009-12-04 15:52:24 -05006764 .establish_clid = nfs41_init_clientid,
Andy Adamsonb4b82602009-04-01 09:22:49 -04006765 .get_clid_cred = nfs4_get_exchange_id_cred,
Andy Adamson591d71c2009-04-01 09:22:47 -04006766};
6767#endif /* CONFIG_NFS_V4_1 */
6768
Trond Myklebust17280172012-03-11 13:11:00 -04006769static const struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
Benny Halevy29fba382009-04-01 09:22:44 -04006770 .sched_state_renewal = nfs4_proc_async_renew,
Andy Adamsona7b72102009-04-01 09:22:46 -04006771 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04006772 .renew_lease = nfs4_proc_renew,
Benny Halevy29fba382009-04-01 09:22:44 -04006773};
6774
6775#if defined(CONFIG_NFS_V4_1)
Trond Myklebust17280172012-03-11 13:11:00 -04006776static const struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
Benny Halevy29fba382009-04-01 09:22:44 -04006777 .sched_state_renewal = nfs41_proc_async_sequence,
Andy Adamsona7b72102009-04-01 09:22:46 -04006778 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
Benny Halevy8e69514f2009-04-01 09:22:45 -04006779 .renew_lease = nfs4_proc_sequence,
Benny Halevy29fba382009-04-01 09:22:44 -04006780};
6781#endif
6782
Trond Myklebust97dc1352010-06-16 09:52:26 -04006783static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
6784 .minor_version = 0,
6785 .call_sync = _nfs4_call_sync,
Trond Myklebust36281ca2012-03-04 18:13:56 -05006786 .match_stateid = nfs4_match_stateid,
Bryan Schumakerfca78d62011-06-02 14:59:07 -04006787 .find_root_sec = nfs4_find_root_sec,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04006788 .reboot_recovery_ops = &nfs40_reboot_recovery_ops,
6789 .nograce_recovery_ops = &nfs40_nograce_recovery_ops,
6790 .state_renewal_ops = &nfs40_state_renewal_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04006791};
6792
6793#if defined(CONFIG_NFS_V4_1)
6794static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
6795 .minor_version = 1,
6796 .call_sync = _nfs4_call_sync_session,
Trond Myklebust36281ca2012-03-04 18:13:56 -05006797 .match_stateid = nfs41_match_stateid,
Bryan Schumakerfca78d62011-06-02 14:59:07 -04006798 .find_root_sec = nfs41_find_root_sec,
Trond Myklebustc48f4f32010-06-16 09:52:27 -04006799 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
6800 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
6801 .state_renewal_ops = &nfs41_state_renewal_ops,
Trond Myklebust97dc1352010-06-16 09:52:26 -04006802};
6803#endif
6804
Trond Myklebust97dc1352010-06-16 09:52:26 -04006805const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = {
6806 [0] = &nfs_v4_0_minor_ops,
6807#if defined(CONFIG_NFS_V4_1)
6808 [1] = &nfs_v4_1_minor_ops,
6809#endif
6810};
6811
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08006812static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006813 .permission = nfs_permission,
6814 .getattr = nfs_getattr,
6815 .setattr = nfs_setattr,
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00006816 .getxattr = generic_getxattr,
6817 .setxattr = generic_setxattr,
6818 .listxattr = generic_listxattr,
6819 .removexattr = generic_removexattr,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006820};
6821
David Howells509de812006-08-22 20:06:11 -04006822const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823 .version = 4, /* protocol version */
6824 .dentry_ops = &nfs4_dentry_operations,
6825 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00006826 .file_inode_ops = &nfs4_file_inode_operations,
Jeff Layton1788ea62011-11-04 13:31:21 -04006827 .file_ops = &nfs4_file_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828 .getroot = nfs4_proc_get_root,
Bryan Schumaker281cad42012-04-27 13:27:45 -04006829 .submount = nfs4_submount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006830 .getattr = nfs4_proc_getattr,
6831 .setattr = nfs4_proc_setattr,
6832 .lookup = nfs4_proc_lookup,
6833 .access = nfs4_proc_access,
6834 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835 .create = nfs4_proc_create,
6836 .remove = nfs4_proc_remove,
6837 .unlink_setup = nfs4_proc_unlink_setup,
Bryan Schumaker34e137c2012-03-19 14:54:41 -04006838 .unlink_rpc_prepare = nfs4_proc_unlink_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006839 .unlink_done = nfs4_proc_unlink_done,
6840 .rename = nfs4_proc_rename,
Jeff Laytond3d41522010-09-17 17:31:57 -04006841 .rename_setup = nfs4_proc_rename_setup,
Bryan Schumakerc6bfa1a2012-03-19 14:54:42 -04006842 .rename_rpc_prepare = nfs4_proc_rename_rpc_prepare,
Jeff Laytond3d41522010-09-17 17:31:57 -04006843 .rename_done = nfs4_proc_rename_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844 .link = nfs4_proc_link,
6845 .symlink = nfs4_proc_symlink,
6846 .mkdir = nfs4_proc_mkdir,
6847 .rmdir = nfs4_proc_remove,
6848 .readdir = nfs4_proc_readdir,
6849 .mknod = nfs4_proc_mknod,
6850 .statfs = nfs4_proc_statfs,
6851 .fsinfo = nfs4_proc_fsinfo,
6852 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04006853 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854 .decode_dirent = nfs4_decode_dirent,
6855 .read_setup = nfs4_proc_read_setup,
Bryan Schumaker1abb50882012-06-20 15:53:47 -04006856 .read_pageio_init = pnfs_pageio_init_read,
Bryan Schumakerea7c3302012-03-19 14:54:40 -04006857 .read_rpc_prepare = nfs4_proc_read_rpc_prepare,
Trond Myklebustec06c092006-03-20 13:44:27 -05006858 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859 .write_setup = nfs4_proc_write_setup,
Bryan Schumaker57208fa2012-06-20 15:53:48 -04006860 .write_pageio_init = pnfs_pageio_init_write,
Bryan Schumakerc6cb80d2012-03-19 14:54:39 -04006861 .write_rpc_prepare = nfs4_proc_write_rpc_prepare,
Trond Myklebust788e7a82006-03-20 13:44:27 -05006862 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863 .commit_setup = nfs4_proc_commit_setup,
Fred Isaman0b7c0152012-04-20 14:47:39 -04006864 .commit_rpc_prepare = nfs4_proc_commit_rpc_prepare,
Trond Myklebust788e7a82006-03-20 13:44:27 -05006865 .commit_done = nfs4_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00006867 .clear_acl_cache = nfs4_zap_acl_attr,
Trond Myklebust7fe5c392009-03-19 15:35:50 -04006868 .close_context = nfs4_close_context,
Trond Myklebust2b484292010-09-17 10:56:51 -04006869 .open_context = nfs4_atomic_open,
Bryan Schumaker011e2a72012-06-20 15:53:43 -04006870 .have_delegation = nfs4_have_delegation,
Bryan Schumaker57ec14c2012-06-20 15:53:44 -04006871 .return_delegation = nfs4_inode_return_delegation,
Bryan Schumaker6663ee72012-06-20 15:53:46 -04006872 .alloc_client = nfs4_alloc_client,
Andy Adamson45a52a02011-03-01 01:34:08 +00006873 .init_client = nfs4_init_client,
Bryan Schumakercdb7ece2012-06-20 15:53:45 -04006874 .free_client = nfs4_free_client,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875};
6876
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00006877static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = {
6878 .prefix = XATTR_NAME_NFSV4_ACL,
6879 .list = nfs4_xattr_list_nfs4_acl,
6880 .get = nfs4_xattr_get_nfs4_acl,
6881 .set = nfs4_xattr_set_nfs4_acl,
6882};
6883
6884const struct xattr_handler *nfs4_xattr_handlers[] = {
6885 &nfs4_xattr_nfs4_acl_handler,
6886 NULL
6887};
6888
Trond Myklebustef159e92012-02-06 19:50:40 -05006889module_param(max_session_slots, ushort, 0644);
6890MODULE_PARM_DESC(max_session_slots, "Maximum number of outstanding NFSv4.1 "
6891 "requests the client will negotiate");
6892
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893/*
6894 * Local variables:
6895 * c-basic-offset: 8
6896 * End:
6897 */