]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
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 <[email protected]> | |
10 | * Andy Adamson <[email protected]> | |
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> | |
1da177e4 LT |
39 | #include <linux/delay.h> |
40 | #include <linux/errno.h> | |
feaff8e5 | 41 | #include <linux/file.h> |
1da177e4 | 42 | #include <linux/string.h> |
652f89f6 TM |
43 | #include <linux/ratelimit.h> |
44 | #include <linux/printk.h> | |
5a0e3ad6 | 45 | #include <linux/slab.h> |
1da177e4 LT |
46 | #include <linux/sunrpc/clnt.h> |
47 | #include <linux/nfs.h> | |
48 | #include <linux/nfs4.h> | |
49 | #include <linux/nfs_fs.h> | |
50 | #include <linux/nfs_page.h> | |
9b7160c5 | 51 | #include <linux/nfs_mount.h> |
1da177e4 | 52 | #include <linux/namei.h> |
02a913a7 | 53 | #include <linux/mount.h> |
99fe60d0 | 54 | #include <linux/module.h> |
64c2ce8b | 55 | #include <linux/xattr.h> |
c7a360b0 | 56 | #include <linux/utsname.h> |
d310310c | 57 | #include <linux/freezer.h> |
1da177e4 | 58 | |
4ce79717 | 59 | #include "nfs4_fs.h" |
1da177e4 | 60 | #include "delegation.h" |
101070ca | 61 | #include "internal.h" |
006ea73e | 62 | #include "iostat.h" |
fc931582 | 63 | #include "callback.h" |
b1f69b75 | 64 | #include "pnfs.h" |
f092075d | 65 | #include "netns.h" |
40c64c26 | 66 | #include "nfs4idmap.h" |
73e39aaa | 67 | #include "nfs4session.h" |
de242c0b | 68 | #include "fscache.h" |
1da177e4 | 69 | |
c6d01c6f TM |
70 | #include "nfs4trace.h" |
71 | ||
1da177e4 LT |
72 | #define NFSDBG_FACILITY NFSDBG_PROC |
73 | ||
2066fe89 | 74 | #define NFS4_POLL_RETRY_MIN (HZ/10) |
1da177e4 LT |
75 | #define NFS4_POLL_RETRY_MAX (15*HZ) |
76 | ||
cdd4e68b | 77 | struct nfs4_opendata; |
864472e9 | 78 | static int _nfs4_proc_open(struct nfs4_opendata *data); |
b257957e | 79 | static int _nfs4_recover_proc_open(struct nfs4_opendata *data); |
1da177e4 | 80 | static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); |
8478eaa1 | 81 | static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *, struct nfs4_state *, long *); |
81934ddb | 82 | static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr); |
1775fd3e DQ |
83 | static int nfs4_proc_getattr(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *label); |
84 | static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr, struct nfs4_label *label); | |
0ab64e0e TM |
85 | static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred, |
86 | struct nfs_fattr *fattr, struct iattr *sattr, | |
1775fd3e DQ |
87 | struct nfs4_state *state, struct nfs4_label *ilabel, |
88 | struct nfs4_label *olabel); | |
f062eb6c | 89 | #ifdef CONFIG_NFS_V4_1 |
ab7cb0df TM |
90 | static int nfs41_test_stateid(struct nfs_server *, nfs4_stateid *, |
91 | struct rpc_cred *); | |
92 | static int nfs41_free_stateid(struct nfs_server *, nfs4_stateid *, | |
93 | struct rpc_cred *); | |
f062eb6c | 94 | #endif |
aa9c2669 DQ |
95 | |
96 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL | |
97 | static inline struct nfs4_label * | |
98 | nfs4_label_init_security(struct inode *dir, struct dentry *dentry, | |
99 | struct iattr *sattr, struct nfs4_label *label) | |
100 | { | |
101 | int err; | |
102 | ||
103 | if (label == NULL) | |
104 | return NULL; | |
105 | ||
106 | if (nfs_server_capable(dir, NFS_CAP_SECURITY_LABEL) == 0) | |
107 | return NULL; | |
108 | ||
aa9c2669 DQ |
109 | err = security_dentry_init_security(dentry, sattr->ia_mode, |
110 | &dentry->d_name, (void **)&label->label, &label->len); | |
111 | if (err == 0) | |
112 | return label; | |
113 | ||
114 | return NULL; | |
115 | } | |
116 | static inline void | |
117 | nfs4_label_release_security(struct nfs4_label *label) | |
118 | { | |
119 | if (label) | |
120 | security_release_secctx(label->label, label->len); | |
121 | } | |
122 | static inline u32 *nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label) | |
123 | { | |
124 | if (label) | |
125 | return server->attr_bitmask; | |
126 | ||
127 | return server->attr_bitmask_nl; | |
128 | } | |
129 | #else | |
130 | static inline struct nfs4_label * | |
131 | nfs4_label_init_security(struct inode *dir, struct dentry *dentry, | |
132 | struct iattr *sattr, struct nfs4_label *l) | |
133 | { return NULL; } | |
134 | static inline void | |
135 | nfs4_label_release_security(struct nfs4_label *label) | |
136 | { return; } | |
137 | static inline u32 * | |
138 | nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label) | |
139 | { return server->attr_bitmask; } | |
140 | #endif | |
141 | ||
1da177e4 | 142 | /* Prevent leaks of NFSv4 errors into userland */ |
46f72f57 | 143 | static int nfs4_map_errors(int err) |
1da177e4 | 144 | { |
52567b03 TM |
145 | if (err >= -1000) |
146 | return err; | |
147 | switch (err) { | |
148 | case -NFS4ERR_RESOURCE: | |
30005121 WAA |
149 | case -NFS4ERR_LAYOUTTRYLATER: |
150 | case -NFS4ERR_RECALLCONFLICT: | |
52567b03 | 151 | return -EREMOTEIO; |
7ebb9315 | 152 | case -NFS4ERR_WRONGSEC: |
8897538e | 153 | case -NFS4ERR_WRONG_CRED: |
7ebb9315 | 154 | return -EPERM; |
3ddeb7c5 TM |
155 | case -NFS4ERR_BADOWNER: |
156 | case -NFS4ERR_BADNAME: | |
157 | return -EINVAL; | |
fb13bfa7 TM |
158 | case -NFS4ERR_SHARE_DENIED: |
159 | return -EACCES; | |
f25efd85 SD |
160 | case -NFS4ERR_MINOR_VERS_MISMATCH: |
161 | return -EPROTONOSUPPORT; | |
6e3cf241 TM |
162 | case -NFS4ERR_FILE_OPEN: |
163 | return -EBUSY; | |
52567b03 | 164 | default: |
1da177e4 | 165 | dprintk("%s could not handle NFSv4 error %d\n", |
3110ff80 | 166 | __func__, -err); |
52567b03 | 167 | break; |
1da177e4 | 168 | } |
52567b03 | 169 | return -EIO; |
1da177e4 LT |
170 | } |
171 | ||
172 | /* | |
173 | * This is our standard bitmap for GETATTR requests. | |
174 | */ | |
1549210f | 175 | const u32 nfs4_fattr_bitmap[3] = { |
1da177e4 LT |
176 | FATTR4_WORD0_TYPE |
177 | | FATTR4_WORD0_CHANGE | |
178 | | FATTR4_WORD0_SIZE | |
179 | | FATTR4_WORD0_FSID | |
180 | | FATTR4_WORD0_FILEID, | |
181 | FATTR4_WORD1_MODE | |
182 | | FATTR4_WORD1_NUMLINKS | |
183 | | FATTR4_WORD1_OWNER | |
184 | | FATTR4_WORD1_OWNER_GROUP | |
185 | | FATTR4_WORD1_RAWDEV | |
186 | | FATTR4_WORD1_SPACE_USED | |
187 | | FATTR4_WORD1_TIME_ACCESS | |
188 | | FATTR4_WORD1_TIME_METADATA | |
ea96d1ec AS |
189 | | FATTR4_WORD1_TIME_MODIFY |
190 | | FATTR4_WORD1_MOUNTED_ON_FILEID, | |
aa9c2669 DQ |
191 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
192 | FATTR4_WORD2_SECURITY_LABEL | |
193 | #endif | |
1da177e4 LT |
194 | }; |
195 | ||
1549210f TM |
196 | static const u32 nfs4_pnfs_open_bitmap[3] = { |
197 | FATTR4_WORD0_TYPE | |
198 | | FATTR4_WORD0_CHANGE | |
199 | | FATTR4_WORD0_SIZE | |
200 | | FATTR4_WORD0_FSID | |
201 | | FATTR4_WORD0_FILEID, | |
202 | FATTR4_WORD1_MODE | |
203 | | FATTR4_WORD1_NUMLINKS | |
204 | | FATTR4_WORD1_OWNER | |
205 | | FATTR4_WORD1_OWNER_GROUP | |
206 | | FATTR4_WORD1_RAWDEV | |
207 | | FATTR4_WORD1_SPACE_USED | |
208 | | FATTR4_WORD1_TIME_ACCESS | |
209 | | FATTR4_WORD1_TIME_METADATA | |
210 | | FATTR4_WORD1_TIME_MODIFY, | |
211 | FATTR4_WORD2_MDSTHRESHOLD | |
212 | }; | |
213 | ||
e23008ec AA |
214 | static const u32 nfs4_open_noattr_bitmap[3] = { |
215 | FATTR4_WORD0_TYPE | |
216 | | FATTR4_WORD0_CHANGE | |
217 | | FATTR4_WORD0_FILEID, | |
218 | }; | |
219 | ||
a09df2ca | 220 | const u32 nfs4_statfs_bitmap[3] = { |
1da177e4 LT |
221 | FATTR4_WORD0_FILES_AVAIL |
222 | | FATTR4_WORD0_FILES_FREE | |
223 | | FATTR4_WORD0_FILES_TOTAL, | |
224 | FATTR4_WORD1_SPACE_AVAIL | |
225 | | FATTR4_WORD1_SPACE_FREE | |
226 | | FATTR4_WORD1_SPACE_TOTAL | |
227 | }; | |
228 | ||
a09df2ca | 229 | const u32 nfs4_pathconf_bitmap[3] = { |
1da177e4 LT |
230 | FATTR4_WORD0_MAXLINK |
231 | | FATTR4_WORD0_MAXNAME, | |
232 | 0 | |
233 | }; | |
234 | ||
dae100c2 | 235 | const u32 nfs4_fsinfo_bitmap[3] = { FATTR4_WORD0_MAXFILESIZE |
1da177e4 LT |
236 | | FATTR4_WORD0_MAXREAD |
237 | | FATTR4_WORD0_MAXWRITE | |
238 | | FATTR4_WORD0_LEASE_TIME, | |
55b6e774 | 239 | FATTR4_WORD1_TIME_DELTA |
dae100c2 FI |
240 | | FATTR4_WORD1_FS_LAYOUT_TYPES, |
241 | FATTR4_WORD2_LAYOUT_BLKSIZE | |
1da177e4 LT |
242 | }; |
243 | ||
a09df2ca | 244 | const u32 nfs4_fs_locations_bitmap[3] = { |
830b8e33 MN |
245 | FATTR4_WORD0_TYPE |
246 | | FATTR4_WORD0_CHANGE | |
247 | | FATTR4_WORD0_SIZE | |
248 | | FATTR4_WORD0_FSID | |
249 | | FATTR4_WORD0_FILEID | |
250 | | FATTR4_WORD0_FS_LOCATIONS, | |
251 | FATTR4_WORD1_MODE | |
252 | | FATTR4_WORD1_NUMLINKS | |
253 | | FATTR4_WORD1_OWNER | |
254 | | FATTR4_WORD1_OWNER_GROUP | |
255 | | FATTR4_WORD1_RAWDEV | |
256 | | FATTR4_WORD1_SPACE_USED | |
257 | | FATTR4_WORD1_TIME_ACCESS | |
258 | | FATTR4_WORD1_TIME_METADATA | |
259 | | FATTR4_WORD1_TIME_MODIFY | |
a09df2ca | 260 | | FATTR4_WORD1_MOUNTED_ON_FILEID, |
830b8e33 MN |
261 | }; |
262 | ||
bc4785cd | 263 | static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry, |
1da177e4 LT |
264 | struct nfs4_readdir_arg *readdir) |
265 | { | |
0dbb4c67 | 266 | __be32 *start, *p; |
1da177e4 | 267 | |
1da177e4 | 268 | if (cookie > 2) { |
b7ef1956 | 269 | readdir->cookie = cookie; |
1da177e4 LT |
270 | memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier)); |
271 | return; | |
272 | } | |
273 | ||
274 | readdir->cookie = 0; | |
275 | memset(&readdir->verifier, 0, sizeof(readdir->verifier)); | |
276 | if (cookie == 2) | |
277 | return; | |
278 | ||
279 | /* | |
280 | * NFSv4 servers do not return entries for '.' and '..' | |
281 | * Therefore, we fake these entries here. We let '.' | |
282 | * have cookie 0 and '..' have cookie 1. Note that | |
283 | * when talking to the server, we always send cookie 0 | |
284 | * instead of 1 or 2. | |
285 | */ | |
2b86ce2d | 286 | start = p = kmap_atomic(*readdir->pages); |
1da177e4 LT |
287 | |
288 | if (cookie == 0) { | |
289 | *p++ = xdr_one; /* next */ | |
290 | *p++ = xdr_zero; /* cookie, first word */ | |
291 | *p++ = xdr_one; /* cookie, second word */ | |
292 | *p++ = xdr_one; /* entry len */ | |
293 | memcpy(p, ".\0\0\0", 4); /* entry */ | |
294 | p++; | |
295 | *p++ = xdr_one; /* bitmap length */ | |
296 | *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */ | |
297 | *p++ = htonl(8); /* attribute buffer length */ | |
2b0143b5 | 298 | p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry))); |
1da177e4 LT |
299 | } |
300 | ||
301 | *p++ = xdr_one; /* next */ | |
302 | *p++ = xdr_zero; /* cookie, first word */ | |
303 | *p++ = xdr_two; /* cookie, second word */ | |
304 | *p++ = xdr_two; /* entry len */ | |
305 | memcpy(p, "..\0\0", 4); /* entry */ | |
306 | p++; | |
307 | *p++ = xdr_one; /* bitmap length */ | |
308 | *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */ | |
309 | *p++ = htonl(8); /* attribute buffer length */ | |
2b0143b5 | 310 | p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry->d_parent))); |
1da177e4 LT |
311 | |
312 | readdir->pgbase = (char *)p - (char *)start; | |
313 | readdir->count -= readdir->pgbase; | |
2b86ce2d | 314 | kunmap_atomic(start); |
1da177e4 LT |
315 | } |
316 | ||
8478eaa1 N |
317 | static long nfs4_update_delay(long *timeout) |
318 | { | |
319 | long ret; | |
320 | if (!timeout) | |
321 | return NFS4_POLL_RETRY_MAX; | |
322 | if (*timeout <= 0) | |
323 | *timeout = NFS4_POLL_RETRY_MIN; | |
324 | if (*timeout > NFS4_POLL_RETRY_MAX) | |
325 | *timeout = NFS4_POLL_RETRY_MAX; | |
326 | ret = *timeout; | |
327 | *timeout <<= 1; | |
328 | return ret; | |
329 | } | |
330 | ||
65de872e TM |
331 | static int nfs4_delay(struct rpc_clnt *clnt, long *timeout) |
332 | { | |
333 | int res = 0; | |
334 | ||
335 | might_sleep(); | |
336 | ||
8478eaa1 N |
337 | freezable_schedule_timeout_killable_unsafe( |
338 | nfs4_update_delay(timeout)); | |
65de872e TM |
339 | if (fatal_signal_pending(current)) |
340 | res = -ERESTARTSYS; | |
65de872e TM |
341 | return res; |
342 | } | |
343 | ||
344 | /* This is the error handling routine for processes that are allowed | |
345 | * to sleep. | |
346 | */ | |
f4ac1674 | 347 | int nfs4_handle_exception(struct nfs_server *server, int errorcode, struct nfs4_exception *exception) |
65de872e TM |
348 | { |
349 | struct nfs_client *clp = server->nfs_client; | |
9e33bed5 | 350 | struct nfs4_state *state = exception->state; |
3114ea7a | 351 | struct inode *inode = exception->inode; |
65de872e TM |
352 | int ret = errorcode; |
353 | ||
354 | exception->retry = 0; | |
355 | switch(errorcode) { | |
356 | case 0: | |
357 | return 0; | |
3114ea7a | 358 | case -NFS4ERR_OPENMODE: |
011e2a7f | 359 | if (inode && nfs4_have_delegation(inode, FMODE_READ)) { |
57ec14c5 | 360 | nfs4_inode_return_delegation(inode); |
3114ea7a TM |
361 | exception->retry = 1; |
362 | return 0; | |
363 | } | |
364 | if (state == NULL) | |
365 | break; | |
5d422301 TM |
366 | ret = nfs4_schedule_stateid_recovery(server, state); |
367 | if (ret < 0) | |
368 | break; | |
3114ea7a | 369 | goto wait_on_recovery; |
a1d0b5ee | 370 | case -NFS4ERR_DELEG_REVOKED: |
9e33bed5 TM |
371 | case -NFS4ERR_ADMIN_REVOKED: |
372 | case -NFS4ERR_BAD_STATEID: | |
9e33bed5 TM |
373 | if (state == NULL) |
374 | break; | |
5d422301 TM |
375 | ret = nfs4_schedule_stateid_recovery(server, state); |
376 | if (ret < 0) | |
377 | break; | |
0400a6b0 | 378 | goto wait_on_recovery; |
0ced63d1 | 379 | case -NFS4ERR_EXPIRED: |
5d422301 TM |
380 | if (state != NULL) { |
381 | ret = nfs4_schedule_stateid_recovery(server, state); | |
382 | if (ret < 0) | |
383 | break; | |
384 | } | |
65de872e | 385 | case -NFS4ERR_STALE_STATEID: |
a2c0b9e2 | 386 | case -NFS4ERR_STALE_CLIENTID: |
0400a6b0 TM |
387 | nfs4_schedule_lease_recovery(clp); |
388 | goto wait_on_recovery; | |
519ae255 CL |
389 | case -NFS4ERR_MOVED: |
390 | ret = nfs4_schedule_migration_recovery(server); | |
391 | if (ret < 0) | |
392 | break; | |
393 | goto wait_on_recovery; | |
8ef2f8d4 CL |
394 | case -NFS4ERR_LEASE_MOVED: |
395 | nfs4_schedule_lease_moved_recovery(clp); | |
396 | goto wait_on_recovery; | |
03391693 | 397 | #if defined(CONFIG_NFS_V4_1) |
4745e315 AA |
398 | case -NFS4ERR_BADSESSION: |
399 | case -NFS4ERR_BADSLOT: | |
400 | case -NFS4ERR_BAD_HIGH_SLOT: | |
401 | case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION: | |
402 | case -NFS4ERR_DEADSESSION: | |
403 | case -NFS4ERR_SEQ_FALSE_RETRY: | |
404 | case -NFS4ERR_SEQ_MISORDERED: | |
405 | dprintk("%s ERROR: %d Reset session\n", __func__, | |
406 | errorcode); | |
9f594791 | 407 | nfs4_schedule_session_recovery(clp->cl_session, errorcode); |
399f11c3 | 408 | goto wait_on_recovery; |
03391693 | 409 | #endif /* defined(CONFIG_NFS_V4_1) */ |
65de872e | 410 | case -NFS4ERR_FILE_OPEN: |
44ed3556 N |
411 | if (exception->timeout > HZ) { |
412 | /* We have retried a decent amount, time to | |
413 | * fail | |
414 | */ | |
415 | ret = -EBUSY; | |
416 | break; | |
417 | } | |
65de872e TM |
418 | case -NFS4ERR_GRACE: |
419 | case -NFS4ERR_DELAY: | |
420 | ret = nfs4_delay(server->client, &exception->timeout); | |
421 | if (ret != 0) | |
422 | break; | |
a8a4ae3a | 423 | case -NFS4ERR_RETRY_UNCACHED_REP: |
65de872e TM |
424 | case -NFS4ERR_OLD_STATEID: |
425 | exception->retry = 1; | |
b064eca2 TM |
426 | break; |
427 | case -NFS4ERR_BADOWNER: | |
428 | /* The following works around a Linux server bug! */ | |
429 | case -NFS4ERR_BADNAME: | |
430 | if (server->caps & NFS_CAP_UIDGID_NOMAP) { | |
431 | server->caps &= ~NFS_CAP_UIDGID_NOMAP; | |
432 | exception->retry = 1; | |
433 | printk(KERN_WARNING "NFS: v4 server %s " | |
434 | "does not accept raw " | |
435 | "uid/gids. " | |
436 | "Reenabling the idmapper.\n", | |
437 | server->nfs_client->cl_hostname); | |
438 | } | |
65de872e TM |
439 | } |
440 | /* We failed to handle the error */ | |
441 | return nfs4_map_errors(ret); | |
0400a6b0 | 442 | wait_on_recovery: |
a2c0b9e2 | 443 | ret = nfs4_wait_clnt_recover(clp); |
519ae255 CL |
444 | if (test_bit(NFS_MIG_FAILED, &server->mig_status)) |
445 | return -EIO; | |
a2c0b9e2 TM |
446 | if (ret == 0) |
447 | exception->retry = 1; | |
448 | return ret; | |
65de872e TM |
449 | } |
450 | ||
a5250def WAA |
451 | /* |
452 | * Return 'true' if 'clp' is using an rpc_client that is integrity protected | |
453 | * or 'false' otherwise. | |
454 | */ | |
455 | static bool _nfs4_is_integrity_protected(struct nfs_client *clp) | |
456 | { | |
457 | rpc_authflavor_t flavor = clp->cl_rpcclient->cl_auth->au_flavor; | |
458 | ||
459 | if (flavor == RPC_AUTH_GSS_KRB5I || | |
460 | flavor == RPC_AUTH_GSS_KRB5P) | |
461 | return true; | |
462 | ||
463 | return false; | |
464 | } | |
65de872e | 465 | |
452e9352 | 466 | static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp) |
1da177e4 | 467 | { |
1da177e4 LT |
468 | spin_lock(&clp->cl_lock); |
469 | if (time_before(clp->cl_last_renewal,timestamp)) | |
470 | clp->cl_last_renewal = timestamp; | |
471 | spin_unlock(&clp->cl_lock); | |
472 | } | |
473 | ||
452e9352 TM |
474 | static void renew_lease(const struct nfs_server *server, unsigned long timestamp) |
475 | { | |
476 | do_renew_lease(server->nfs_client, timestamp); | |
477 | } | |
478 | ||
2a3eb2b9 CL |
479 | struct nfs4_call_sync_data { |
480 | const struct nfs_server *seq_server; | |
481 | struct nfs4_sequence_args *seq_args; | |
482 | struct nfs4_sequence_res *seq_res; | |
483 | }; | |
484 | ||
a9c92d6b CL |
485 | static void nfs4_init_sequence(struct nfs4_sequence_args *args, |
486 | struct nfs4_sequence_res *res, int cache_reply) | |
487 | { | |
488 | args->sa_slot = NULL; | |
489 | args->sa_cache_this = cache_reply; | |
490 | args->sa_privileged = 0; | |
491 | ||
492 | res->sr_slot = NULL; | |
493 | } | |
494 | ||
495 | static void nfs4_set_sequence_privileged(struct nfs4_sequence_args *args) | |
496 | { | |
497 | args->sa_privileged = 1; | |
498 | } | |
499 | ||
cb04ad2a PT |
500 | int nfs40_setup_sequence(struct nfs4_slot_table *tbl, |
501 | struct nfs4_sequence_args *args, | |
502 | struct nfs4_sequence_res *res, | |
503 | struct rpc_task *task) | |
3bd2384a | 504 | { |
3bd2384a CL |
505 | struct nfs4_slot *slot; |
506 | ||
507 | /* slot already allocated? */ | |
508 | if (res->sr_slot != NULL) | |
509 | goto out_start; | |
510 | ||
511 | spin_lock(&tbl->slot_tbl_lock); | |
512 | if (nfs4_slot_tbl_draining(tbl) && !args->sa_privileged) | |
513 | goto out_sleep; | |
514 | ||
515 | slot = nfs4_alloc_slot(tbl); | |
516 | if (IS_ERR(slot)) { | |
517 | if (slot == ERR_PTR(-ENOMEM)) | |
518 | task->tk_timeout = HZ >> 2; | |
519 | goto out_sleep; | |
520 | } | |
521 | spin_unlock(&tbl->slot_tbl_lock); | |
522 | ||
523 | args->sa_slot = slot; | |
524 | res->sr_slot = slot; | |
525 | ||
526 | out_start: | |
527 | rpc_call_start(task); | |
528 | return 0; | |
529 | ||
530 | out_sleep: | |
531 | if (args->sa_privileged) | |
532 | rpc_sleep_on_priority(&tbl->slot_tbl_waitq, task, | |
533 | NULL, RPC_PRIORITY_PRIVILEGED); | |
534 | else | |
535 | rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL); | |
536 | spin_unlock(&tbl->slot_tbl_lock); | |
537 | return -EAGAIN; | |
538 | } | |
cb04ad2a | 539 | EXPORT_SYMBOL_GPL(nfs40_setup_sequence); |
3bd2384a CL |
540 | |
541 | static int nfs40_sequence_done(struct rpc_task *task, | |
542 | struct nfs4_sequence_res *res) | |
543 | { | |
544 | struct nfs4_slot *slot = res->sr_slot; | |
545 | struct nfs4_slot_table *tbl; | |
546 | ||
cab92c19 | 547 | if (slot == NULL) |
3bd2384a CL |
548 | goto out; |
549 | ||
550 | tbl = slot->table; | |
551 | spin_lock(&tbl->slot_tbl_lock); | |
552 | if (!nfs41_wake_and_assign_slot(tbl, slot)) | |
553 | nfs4_free_slot(tbl, slot); | |
554 | spin_unlock(&tbl->slot_tbl_lock); | |
555 | ||
556 | res->sr_slot = NULL; | |
557 | out: | |
558 | return 1; | |
559 | } | |
560 | ||
cccef3b9 AA |
561 | #if defined(CONFIG_NFS_V4_1) |
562 | ||
d185a334 | 563 | static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res) |
13615871 | 564 | { |
e3725ec0 | 565 | struct nfs4_session *session; |
13615871 | 566 | struct nfs4_slot_table *tbl; |
a13ce7c6 | 567 | struct nfs4_slot *slot = res->sr_slot; |
c10e4498 | 568 | bool send_new_highest_used_slotid = false; |
13615871 | 569 | |
a13ce7c6 | 570 | tbl = slot->table; |
e3725ec0 | 571 | session = tbl->session; |
ea028ac9 | 572 | |
35dc1d74 | 573 | spin_lock(&tbl->slot_tbl_lock); |
c10e4498 TM |
574 | /* Be nice to the server: try to ensure that the last transmitted |
575 | * value for highest_user_slotid <= target_highest_slotid | |
576 | */ | |
577 | if (tbl->highest_used_slotid > tbl->target_highest_slotid) | |
578 | send_new_highest_used_slotid = true; | |
579 | ||
a13ce7c6 | 580 | if (nfs41_wake_and_assign_slot(tbl, slot)) { |
b75ad4cd TM |
581 | send_new_highest_used_slotid = false; |
582 | goto out_unlock; | |
583 | } | |
a13ce7c6 | 584 | nfs4_free_slot(tbl, slot); |
c10e4498 TM |
585 | |
586 | if (tbl->highest_used_slotid != NFS4_NO_SLOT) | |
587 | send_new_highest_used_slotid = false; | |
b75ad4cd | 588 | out_unlock: |
35dc1d74 | 589 | spin_unlock(&tbl->slot_tbl_lock); |
dfb4f309 | 590 | res->sr_slot = NULL; |
c10e4498 TM |
591 | if (send_new_highest_used_slotid) |
592 | nfs41_server_notify_highest_slotid_update(session->clp); | |
13615871 AA |
593 | } |
594 | ||
f9c96fcc | 595 | int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res) |
b0df806c | 596 | { |
e3725ec0 | 597 | struct nfs4_session *session; |
a13ce7c6 | 598 | struct nfs4_slot *slot = res->sr_slot; |
14516c3a | 599 | struct nfs_client *clp; |
ac20d163 | 600 | bool interrupted = false; |
85563073 | 601 | int ret = 1; |
b0df806c | 602 | |
a13ce7c6 TM |
603 | if (slot == NULL) |
604 | goto out_noaction; | |
468f8613 BS |
605 | /* don't increment the sequence number if the task wasn't sent */ |
606 | if (!RPC_WAS_SENT(task)) | |
b0df806c AA |
607 | goto out; |
608 | ||
e3725ec0 | 609 | session = slot->table->session; |
933602e3 | 610 | |
ac20d163 TM |
611 | if (slot->interrupted) { |
612 | slot->interrupted = 0; | |
613 | interrupted = true; | |
614 | } | |
615 | ||
2f92ae34 | 616 | trace_nfs4_sequence_done(session, res); |
691daf3b | 617 | /* Check the SEQUENCE operation status */ |
14516c3a TM |
618 | switch (res->sr_status) { |
619 | case 0: | |
b0df806c | 620 | /* Update the slot's sequence and clientid lease timer */ |
933602e3 | 621 | ++slot->seq_nr; |
e3725ec0 | 622 | clp = session->clp; |
8e63b6a8 | 623 | do_renew_lease(clp, res->sr_timestamp); |
0629e370 | 624 | /* Check sequence flags */ |
b4410c2f TM |
625 | if (res->sr_status_flags != 0) |
626 | nfs4_schedule_lease_recovery(clp); | |
464ee9f9 | 627 | nfs41_update_target_slotid(slot->table, slot, res); |
14516c3a | 628 | break; |
ac20d163 TM |
629 | case 1: |
630 | /* | |
631 | * sr_status remains 1 if an RPC level error occurred. | |
632 | * The server may or may not have processed the sequence | |
633 | * operation.. | |
634 | * Mark the slot as having hosted an interrupted RPC call. | |
635 | */ | |
636 | slot->interrupted = 1; | |
637 | goto out; | |
14516c3a TM |
638 | case -NFS4ERR_DELAY: |
639 | /* The server detected a resend of the RPC call and | |
640 | * returned NFS4ERR_DELAY as per Section 2.10.6.2 | |
641 | * of RFC5661. | |
642 | */ | |
df2fabff | 643 | dprintk("%s: slot=%u seq=%u: Operation in progress\n", |
dfb4f309 | 644 | __func__, |
df2fabff | 645 | slot->slot_nr, |
933602e3 | 646 | slot->seq_nr); |
14516c3a | 647 | goto out_retry; |
85563073 TM |
648 | case -NFS4ERR_BADSLOT: |
649 | /* | |
650 | * The slot id we used was probably retired. Try again | |
651 | * using a different slot id. | |
652 | */ | |
e8794440 TM |
653 | goto retry_nowait; |
654 | case -NFS4ERR_SEQ_MISORDERED: | |
ac20d163 TM |
655 | /* |
656 | * Was the last operation on this sequence interrupted? | |
657 | * If so, retry after bumping the sequence number. | |
658 | */ | |
659 | if (interrupted) { | |
660 | ++slot->seq_nr; | |
661 | goto retry_nowait; | |
662 | } | |
e8794440 TM |
663 | /* |
664 | * Could this slot have been previously retired? | |
665 | * If so, then the server may be expecting seq_nr = 1! | |
666 | */ | |
8e63b6a8 TM |
667 | if (slot->seq_nr != 1) { |
668 | slot->seq_nr = 1; | |
669 | goto retry_nowait; | |
670 | } | |
671 | break; | |
e8794440 TM |
672 | case -NFS4ERR_SEQ_FALSE_RETRY: |
673 | ++slot->seq_nr; | |
674 | goto retry_nowait; | |
14516c3a TM |
675 | default: |
676 | /* Just update the slot sequence no. */ | |
933602e3 | 677 | ++slot->seq_nr; |
b0df806c AA |
678 | } |
679 | out: | |
680 | /* The session may be reset by one of the error handlers. */ | |
681 | dprintk("%s: Error %d free the slot \n", __func__, res->sr_status); | |
d185a334 | 682 | nfs41_sequence_free_slot(res); |
a13ce7c6 | 683 | out_noaction: |
85563073 | 684 | return ret; |
e8794440 TM |
685 | retry_nowait: |
686 | if (rpc_restart_call_prepare(task)) { | |
687 | task->tk_status = 0; | |
688 | ret = 0; | |
689 | } | |
690 | goto out; | |
14516c3a | 691 | out_retry: |
d05dd4e9 | 692 | if (!rpc_restart_call(task)) |
14516c3a TM |
693 | goto out; |
694 | rpc_delay(task, NFS4_POLL_RETRY_MAX); | |
695 | return 0; | |
b0df806c | 696 | } |
f9c96fcc | 697 | EXPORT_SYMBOL_GPL(nfs41_sequence_done); |
b0df806c | 698 | |
2c4b131d | 699 | int nfs4_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res) |
df896455 | 700 | { |
e3725ec0 | 701 | if (res->sr_slot == NULL) |
14516c3a | 702 | return 1; |
3bd2384a CL |
703 | if (!res->sr_slot->table->session) |
704 | return nfs40_sequence_done(task, res); | |
14516c3a | 705 | return nfs41_sequence_done(task, res); |
df896455 | 706 | } |
2c4b131d | 707 | EXPORT_SYMBOL_GPL(nfs4_sequence_done); |
df896455 | 708 | |
dc70d7b3 | 709 | int nfs41_setup_sequence(struct nfs4_session *session, |
ce5039c1 AA |
710 | struct nfs4_sequence_args *args, |
711 | struct nfs4_sequence_res *res, | |
ce5039c1 AA |
712 | struct rpc_task *task) |
713 | { | |
fbcd4abc AA |
714 | struct nfs4_slot *slot; |
715 | struct nfs4_slot_table *tbl; | |
fbcd4abc AA |
716 | |
717 | dprintk("--> %s\n", __func__); | |
ce5039c1 | 718 | /* slot already allocated? */ |
dfb4f309 | 719 | if (res->sr_slot != NULL) |
d9afbd1b | 720 | goto out_success; |
ce5039c1 | 721 | |
fbcd4abc AA |
722 | tbl = &session->fc_slot_table; |
723 | ||
69d206b5 TM |
724 | task->tk_timeout = 0; |
725 | ||
fbcd4abc | 726 | spin_lock(&tbl->slot_tbl_lock); |
774d5f14 | 727 | if (test_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state) && |
8fe72bac | 728 | !args->sa_privileged) { |
0b1c8fc4 | 729 | /* The state manager will wait until the slot table is empty */ |
0b1c8fc4 | 730 | dprintk("%s session is draining\n", __func__); |
7b939a3f | 731 | goto out_sleep; |
689cf5c1 AB |
732 | } |
733 | ||
2dc03b7f | 734 | slot = nfs4_alloc_slot(tbl); |
69d206b5 TM |
735 | if (IS_ERR(slot)) { |
736 | /* If out of memory, try again in 1/4 second */ | |
737 | if (slot == ERR_PTR(-ENOMEM)) | |
738 | task->tk_timeout = HZ >> 2; | |
fbcd4abc | 739 | dprintk("<-- %s: no free slots\n", __func__); |
7b939a3f | 740 | goto out_sleep; |
fbcd4abc AA |
741 | } |
742 | spin_unlock(&tbl->slot_tbl_lock); | |
743 | ||
2b2fa717 | 744 | args->sa_slot = slot; |
fbcd4abc | 745 | |
e8d92382 | 746 | dprintk("<-- %s slotid=%u seqid=%u\n", __func__, |
2dc03b7f | 747 | slot->slot_nr, slot->seq_nr); |
fbcd4abc | 748 | |
dfb4f309 | 749 | res->sr_slot = slot; |
8e63b6a8 | 750 | res->sr_timestamp = jiffies; |
2a6e26cd | 751 | res->sr_status_flags = 0; |
fbcd4abc AA |
752 | /* |
753 | * sr_status is only set in decode_sequence, and so will remain | |
754 | * set to 1 if an rpc level failure occurs. | |
755 | */ | |
756 | res->sr_status = 1; | |
2f92ae34 | 757 | trace_nfs4_setup_sequence(session, args); |
d9afbd1b TM |
758 | out_success: |
759 | rpc_call_start(task); | |
ce5039c1 | 760 | return 0; |
7b939a3f | 761 | out_sleep: |
8fe72bac TM |
762 | /* Privileged tasks are queued with top priority */ |
763 | if (args->sa_privileged) | |
1e1093c7 TM |
764 | rpc_sleep_on_priority(&tbl->slot_tbl_waitq, task, |
765 | NULL, RPC_PRIORITY_PRIVILEGED); | |
766 | else | |
767 | rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL); | |
7b939a3f TM |
768 | spin_unlock(&tbl->slot_tbl_lock); |
769 | return -EAGAIN; | |
ce5039c1 | 770 | } |
dc70d7b3 | 771 | EXPORT_SYMBOL_GPL(nfs41_setup_sequence); |
ce5039c1 | 772 | |
5a580e0a CL |
773 | static int nfs4_setup_sequence(const struct nfs_server *server, |
774 | struct nfs4_sequence_args *args, | |
775 | struct nfs4_sequence_res *res, | |
776 | struct rpc_task *task) | |
ce5039c1 | 777 | { |
035168ab | 778 | struct nfs4_session *session = nfs4_get_session(server); |
ce5039c1 AA |
779 | int ret = 0; |
780 | ||
3bd2384a | 781 | if (!session) |
cb04ad2a PT |
782 | return nfs40_setup_sequence(server->nfs_client->cl_slot_tbl, |
783 | args, res, task); | |
035168ab | 784 | |
e8d92382 | 785 | dprintk("--> %s clp %p session %p sr_slot %u\n", |
dfb4f309 | 786 | __func__, session->clp, session, res->sr_slot ? |
e8d92382 | 787 | res->sr_slot->slot_nr : NFS4_NO_SLOT); |
ce5039c1 | 788 | |
9d12b216 | 789 | ret = nfs41_setup_sequence(session, args, res, task); |
3bd2384a | 790 | |
ce5039c1 AA |
791 | dprintk("<-- %s status=%d\n", __func__, ret); |
792 | return ret; | |
793 | } | |
794 | ||
ce5039c1 AA |
795 | static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata) |
796 | { | |
2a3eb2b9 | 797 | struct nfs4_call_sync_data *data = calldata; |
6ba7db34 | 798 | struct nfs4_session *session = nfs4_get_session(data->seq_server); |
ce5039c1 | 799 | |
035168ab TM |
800 | dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server); |
801 | ||
d9afbd1b | 802 | nfs41_setup_sequence(session, data->seq_args, data->seq_res, task); |
ce5039c1 AA |
803 | } |
804 | ||
69ab40c4 AA |
805 | static void nfs41_call_sync_done(struct rpc_task *task, void *calldata) |
806 | { | |
2a3eb2b9 | 807 | struct nfs4_call_sync_data *data = calldata; |
69ab40c4 | 808 | |
14516c3a | 809 | nfs41_sequence_done(task, data->seq_res); |
69ab40c4 AA |
810 | } |
811 | ||
17280175 | 812 | static const struct rpc_call_ops nfs41_call_sync_ops = { |
ce5039c1 | 813 | .rpc_call_prepare = nfs41_call_sync_prepare, |
69ab40c4 | 814 | .rpc_call_done = nfs41_call_sync_done, |
ce5039c1 AA |
815 | }; |
816 | ||
3bd2384a CL |
817 | #else /* !CONFIG_NFS_V4_1 */ |
818 | ||
9915ea7e CL |
819 | static int nfs4_setup_sequence(const struct nfs_server *server, |
820 | struct nfs4_sequence_args *args, | |
821 | struct nfs4_sequence_res *res, | |
822 | struct rpc_task *task) | |
823 | { | |
cb04ad2a PT |
824 | return nfs40_setup_sequence(server->nfs_client->cl_slot_tbl, |
825 | args, res, task); | |
9915ea7e CL |
826 | } |
827 | ||
2c4b131d PT |
828 | int nfs4_sequence_done(struct rpc_task *task, |
829 | struct nfs4_sequence_res *res) | |
9915ea7e | 830 | { |
3bd2384a | 831 | return nfs40_sequence_done(task, res); |
9915ea7e | 832 | } |
2c4b131d | 833 | EXPORT_SYMBOL_GPL(nfs4_sequence_done); |
3bd2384a CL |
834 | |
835 | #endif /* !CONFIG_NFS_V4_1 */ | |
9915ea7e CL |
836 | |
837 | static void nfs40_call_sync_prepare(struct rpc_task *task, void *calldata) | |
838 | { | |
839 | struct nfs4_call_sync_data *data = calldata; | |
840 | nfs4_setup_sequence(data->seq_server, | |
841 | data->seq_args, data->seq_res, task); | |
842 | } | |
843 | ||
844 | static void nfs40_call_sync_done(struct rpc_task *task, void *calldata) | |
845 | { | |
846 | struct nfs4_call_sync_data *data = calldata; | |
847 | nfs4_sequence_done(task, data->seq_res); | |
848 | } | |
849 | ||
850 | static const struct rpc_call_ops nfs40_call_sync_ops = { | |
851 | .rpc_call_prepare = nfs40_call_sync_prepare, | |
852 | .rpc_call_done = nfs40_call_sync_done, | |
853 | }; | |
854 | ||
7c513058 BS |
855 | static int nfs4_call_sync_sequence(struct rpc_clnt *clnt, |
856 | struct nfs_server *server, | |
ce5039c1 AA |
857 | struct rpc_message *msg, |
858 | struct nfs4_sequence_args *args, | |
8fe72bac | 859 | struct nfs4_sequence_res *res) |
ce5039c1 AA |
860 | { |
861 | int ret; | |
862 | struct rpc_task *task; | |
9915ea7e | 863 | struct nfs_client *clp = server->nfs_client; |
2a3eb2b9 | 864 | struct nfs4_call_sync_data data = { |
035168ab | 865 | .seq_server = server, |
ce5039c1 AA |
866 | .seq_args = args, |
867 | .seq_res = res, | |
ce5039c1 AA |
868 | }; |
869 | struct rpc_task_setup task_setup = { | |
7c513058 | 870 | .rpc_client = clnt, |
ce5039c1 | 871 | .rpc_message = msg, |
9915ea7e | 872 | .callback_ops = clp->cl_mvops->call_sync_ops, |
ce5039c1 AA |
873 | .callback_data = &data |
874 | }; | |
875 | ||
ce5039c1 AA |
876 | task = rpc_run_task(&task_setup); |
877 | if (IS_ERR(task)) | |
878 | ret = PTR_ERR(task); | |
879 | else { | |
880 | ret = task->tk_status; | |
881 | rpc_put_task(task); | |
882 | } | |
883 | return ret; | |
884 | } | |
885 | ||
7c513058 BS |
886 | int nfs4_call_sync(struct rpc_clnt *clnt, |
887 | struct nfs_server *server, | |
e73b83f2 BS |
888 | struct rpc_message *msg, |
889 | struct nfs4_sequence_args *args, | |
890 | struct nfs4_sequence_res *res, | |
891 | int cache_reply) | |
892 | { | |
a9c92d6b | 893 | nfs4_init_sequence(args, res, cache_reply); |
9915ea7e | 894 | return nfs4_call_sync_sequence(clnt, server, msg, args, res); |
e73b83f2 | 895 | } |
cccef3b9 | 896 | |
38478b24 | 897 | static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo) |
1da177e4 | 898 | { |
38478b24 | 899 | struct nfs_inode *nfsi = NFS_I(dir); |
1da177e4 | 900 | |
38478b24 | 901 | spin_lock(&dir->i_lock); |
359d7d1c | 902 | nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA; |
a9a4a87a | 903 | if (!cinfo->atomic || cinfo->before != dir->i_version) |
bfc69a45 | 904 | nfs_force_lookup_revalidate(dir); |
a9a4a87a | 905 | dir->i_version = cinfo->after; |
3235b403 | 906 | nfsi->attr_gencount = nfs_inc_attr_generation_counter(); |
de242c0b | 907 | nfs_fscache_invalidate(dir); |
38478b24 | 908 | spin_unlock(&dir->i_lock); |
1da177e4 LT |
909 | } |
910 | ||
e56e0b78 | 911 | struct nfs4_opendata { |
c6d00e63 | 912 | struct kref kref; |
e56e0b78 TM |
913 | struct nfs_openargs o_arg; |
914 | struct nfs_openres o_res; | |
cdd4e68b TM |
915 | struct nfs_open_confirmargs c_arg; |
916 | struct nfs_open_confirmres c_res; | |
6926afd1 TM |
917 | struct nfs4_string owner_name; |
918 | struct nfs4_string group_name; | |
e56e0b78 | 919 | struct nfs_fattr f_attr; |
1775fd3e | 920 | struct nfs4_label *f_label; |
e56e0b78 | 921 | struct dentry *dir; |
82a2c1b7 | 922 | struct dentry *dentry; |
e56e0b78 | 923 | struct nfs4_state_owner *owner; |
aac00a8d | 924 | struct nfs4_state *state; |
e56e0b78 | 925 | struct iattr attrs; |
26e976a8 | 926 | unsigned long timestamp; |
3e309914 | 927 | unsigned int rpc_done : 1; |
5bc2afc2 | 928 | unsigned int file_created : 1; |
bdeca1b7 | 929 | unsigned int is_recover : 1; |
24ac23ab TM |
930 | int rpc_status; |
931 | int cancelled; | |
e56e0b78 TM |
932 | }; |
933 | ||
49f9a0fa TM |
934 | static bool nfs4_clear_cap_atomic_open_v1(struct nfs_server *server, |
935 | int err, struct nfs4_exception *exception) | |
936 | { | |
937 | if (err != -EINVAL) | |
938 | return false; | |
939 | if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1)) | |
940 | return false; | |
941 | server->caps &= ~NFS_CAP_ATOMIC_OPEN_V1; | |
942 | exception->retry = 1; | |
943 | return true; | |
944 | } | |
945 | ||
6ae37339 TM |
946 | static u32 |
947 | nfs4_map_atomic_open_share(struct nfs_server *server, | |
948 | fmode_t fmode, int openflags) | |
949 | { | |
950 | u32 res = 0; | |
951 | ||
952 | switch (fmode & (FMODE_READ | FMODE_WRITE)) { | |
953 | case FMODE_READ: | |
954 | res = NFS4_SHARE_ACCESS_READ; | |
955 | break; | |
956 | case FMODE_WRITE: | |
957 | res = NFS4_SHARE_ACCESS_WRITE; | |
958 | break; | |
959 | case FMODE_READ|FMODE_WRITE: | |
960 | res = NFS4_SHARE_ACCESS_BOTH; | |
961 | } | |
962 | if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1)) | |
963 | goto out; | |
964 | /* Want no delegation if we're using O_DIRECT */ | |
965 | if (openflags & O_DIRECT) | |
966 | res |= NFS4_SHARE_WANT_NO_DELEG; | |
967 | out: | |
968 | return res; | |
969 | } | |
970 | ||
49f9a0fa TM |
971 | static enum open_claim_type4 |
972 | nfs4_map_atomic_open_claim(struct nfs_server *server, | |
973 | enum open_claim_type4 claim) | |
974 | { | |
975 | if (server->caps & NFS_CAP_ATOMIC_OPEN_V1) | |
976 | return claim; | |
977 | switch (claim) { | |
978 | default: | |
979 | return claim; | |
980 | case NFS4_OPEN_CLAIM_FH: | |
981 | return NFS4_OPEN_CLAIM_NULL; | |
982 | case NFS4_OPEN_CLAIM_DELEG_CUR_FH: | |
983 | return NFS4_OPEN_CLAIM_DELEGATE_CUR; | |
984 | case NFS4_OPEN_CLAIM_DELEG_PREV_FH: | |
985 | return NFS4_OPEN_CLAIM_DELEGATE_PREV; | |
986 | } | |
987 | } | |
2ced46c2 TM |
988 | |
989 | static void nfs4_init_opendata_res(struct nfs4_opendata *p) | |
990 | { | |
991 | p->o_res.f_attr = &p->f_attr; | |
1775fd3e | 992 | p->o_res.f_label = p->f_label; |
c1d51931 TM |
993 | p->o_res.seqid = p->o_arg.seqid; |
994 | p->c_res.seqid = p->c_arg.seqid; | |
2ced46c2 | 995 | p->o_res.server = p->o_arg.server; |
5f657530 | 996 | p->o_res.access_request = p->o_arg.access; |
2ced46c2 | 997 | nfs_fattr_init(&p->f_attr); |
6926afd1 | 998 | nfs_fattr_init_names(&p->f_attr, &p->owner_name, &p->group_name); |
2ced46c2 TM |
999 | } |
1000 | ||
82a2c1b7 | 1001 | static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry, |
dc0b027d | 1002 | struct nfs4_state_owner *sp, fmode_t fmode, int flags, |
8535b2be | 1003 | const struct iattr *attrs, |
1775fd3e | 1004 | struct nfs4_label *label, |
4a1c0893 | 1005 | enum open_claim_type4 claim, |
8535b2be | 1006 | gfp_t gfp_mask) |
e56e0b78 | 1007 | { |
82a2c1b7 | 1008 | struct dentry *parent = dget_parent(dentry); |
2b0143b5 | 1009 | struct inode *dir = d_inode(parent); |
e56e0b78 | 1010 | struct nfs_server *server = NFS_SERVER(dir); |
63f5f796 | 1011 | struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); |
e56e0b78 TM |
1012 | struct nfs4_opendata *p; |
1013 | ||
8535b2be | 1014 | p = kzalloc(sizeof(*p), gfp_mask); |
e56e0b78 TM |
1015 | if (p == NULL) |
1016 | goto err; | |
14c43f76 DQ |
1017 | |
1018 | p->f_label = nfs4_label_alloc(server, gfp_mask); | |
1019 | if (IS_ERR(p->f_label)) | |
1020 | goto err_free_p; | |
1021 | ||
63f5f796 TM |
1022 | alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid; |
1023 | p->o_arg.seqid = alloc_seqid(&sp->so_seqid, gfp_mask); | |
badc76dd | 1024 | if (IS_ERR(p->o_arg.seqid)) |
14c43f76 | 1025 | goto err_free_label; |
82a2c1b7 AV |
1026 | nfs_sb_active(dentry->d_sb); |
1027 | p->dentry = dget(dentry); | |
e56e0b78 TM |
1028 | p->dir = parent; |
1029 | p->owner = sp; | |
1030 | atomic_inc(&sp->so_count); | |
dc0b027d TM |
1031 | p->o_arg.open_flags = flags; |
1032 | p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE); | |
6ae37339 TM |
1033 | p->o_arg.share_access = nfs4_map_atomic_open_share(server, |
1034 | fmode, flags); | |
ae2bb032 WAA |
1035 | /* don't put an ACCESS op in OPEN compound if O_EXCL, because ACCESS |
1036 | * will return permission denied for all bits until close */ | |
1037 | if (!(flags & O_EXCL)) { | |
1038 | /* ask server to check for all possible rights as results | |
1039 | * are cached */ | |
1040 | p->o_arg.access = NFS4_ACCESS_READ | NFS4_ACCESS_MODIFY | | |
1041 | NFS4_ACCESS_EXTEND | NFS4_ACCESS_EXECUTE; | |
ae2bb032 | 1042 | } |
7539bbab | 1043 | p->o_arg.clientid = server->nfs_client->cl_clientid; |
95b72eb0 TM |
1044 | p->o_arg.id.create_time = ktime_to_ns(sp->so_seqid.create_time); |
1045 | p->o_arg.id.uniquifier = sp->so_seqid.owner_id; | |
82a2c1b7 | 1046 | p->o_arg.name = &dentry->d_name; |
e56e0b78 | 1047 | p->o_arg.server = server; |
aa9c2669 | 1048 | p->o_arg.bitmask = nfs4_bitmask(server, label); |
1549210f | 1049 | p->o_arg.open_bitmap = &nfs4_fattr_bitmap[0]; |
1775fd3e | 1050 | p->o_arg.label = label; |
49f9a0fa TM |
1051 | p->o_arg.claim = nfs4_map_atomic_open_claim(server, claim); |
1052 | switch (p->o_arg.claim) { | |
4a1c0893 TM |
1053 | case NFS4_OPEN_CLAIM_NULL: |
1054 | case NFS4_OPEN_CLAIM_DELEGATE_CUR: | |
1055 | case NFS4_OPEN_CLAIM_DELEGATE_PREV: | |
1056 | p->o_arg.fh = NFS_FH(dir); | |
1057 | break; | |
1058 | case NFS4_OPEN_CLAIM_PREVIOUS: | |
1059 | case NFS4_OPEN_CLAIM_FH: | |
1060 | case NFS4_OPEN_CLAIM_DELEG_CUR_FH: | |
1061 | case NFS4_OPEN_CLAIM_DELEG_PREV_FH: | |
2b0143b5 | 1062 | p->o_arg.fh = NFS_FH(d_inode(dentry)); |
4a1c0893 | 1063 | } |
536e43d1 | 1064 | if (attrs != NULL && attrs->ia_valid != 0) { |
c281fa9c | 1065 | __u32 verf[2]; |
d77d76ff | 1066 | |
e56e0b78 TM |
1067 | p->o_arg.u.attrs = &p->attrs; |
1068 | memcpy(&p->attrs, attrs, sizeof(p->attrs)); | |
cd93710e CL |
1069 | |
1070 | verf[0] = jiffies; | |
1071 | verf[1] = current->pid; | |
1072 | memcpy(p->o_arg.u.verifier.data, verf, | |
1073 | sizeof(p->o_arg.u.verifier.data)); | |
e56e0b78 | 1074 | } |
cdd4e68b TM |
1075 | p->c_arg.fh = &p->o_res.fh; |
1076 | p->c_arg.stateid = &p->o_res.stateid; | |
1077 | p->c_arg.seqid = p->o_arg.seqid; | |
2ced46c2 | 1078 | nfs4_init_opendata_res(p); |
c6d00e63 | 1079 | kref_init(&p->kref); |
e56e0b78 | 1080 | return p; |
14c43f76 DQ |
1081 | |
1082 | err_free_label: | |
1083 | nfs4_label_free(p->f_label); | |
1084 | err_free_p: | |
e56e0b78 TM |
1085 | kfree(p); |
1086 | err: | |
1087 | dput(parent); | |
1088 | return NULL; | |
1089 | } | |
1090 | ||
c6d00e63 | 1091 | static void nfs4_opendata_free(struct kref *kref) |
e56e0b78 | 1092 | { |
c6d00e63 TM |
1093 | struct nfs4_opendata *p = container_of(kref, |
1094 | struct nfs4_opendata, kref); | |
82a2c1b7 | 1095 | struct super_block *sb = p->dentry->d_sb; |
c6d00e63 TM |
1096 | |
1097 | nfs_free_seqid(p->o_arg.seqid); | |
aac00a8d TM |
1098 | if (p->state != NULL) |
1099 | nfs4_put_open_state(p->state); | |
c6d00e63 | 1100 | nfs4_put_state_owner(p->owner); |
14c43f76 DQ |
1101 | |
1102 | nfs4_label_free(p->f_label); | |
1103 | ||
c6d00e63 | 1104 | dput(p->dir); |
82a2c1b7 AV |
1105 | dput(p->dentry); |
1106 | nfs_sb_deactive(sb); | |
6926afd1 | 1107 | nfs_fattr_free_names(&p->f_attr); |
e911b815 | 1108 | kfree(p->f_attr.mdsthreshold); |
c6d00e63 TM |
1109 | kfree(p); |
1110 | } | |
1111 | ||
1112 | static void nfs4_opendata_put(struct nfs4_opendata *p) | |
1113 | { | |
1114 | if (p != NULL) | |
1115 | kref_put(&p->kref, nfs4_opendata_free); | |
e56e0b78 TM |
1116 | } |
1117 | ||
06f814a3 TM |
1118 | static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task) |
1119 | { | |
06f814a3 TM |
1120 | int ret; |
1121 | ||
06f814a3 | 1122 | ret = rpc_wait_for_completion_task(task); |
06f814a3 TM |
1123 | return ret; |
1124 | } | |
1125 | ||
dc0b027d | 1126 | static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode) |
6ee41268 TM |
1127 | { |
1128 | int ret = 0; | |
dc0b027d | 1129 | |
536e43d1 | 1130 | if (open_mode & (O_EXCL|O_TRUNC)) |
dc0b027d TM |
1131 | goto out; |
1132 | switch (mode & (FMODE_READ|FMODE_WRITE)) { | |
6ee41268 | 1133 | case FMODE_READ: |
88069f77 TM |
1134 | ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0 |
1135 | && state->n_rdonly != 0; | |
6ee41268 TM |
1136 | break; |
1137 | case FMODE_WRITE: | |
88069f77 TM |
1138 | ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0 |
1139 | && state->n_wronly != 0; | |
6ee41268 TM |
1140 | break; |
1141 | case FMODE_READ|FMODE_WRITE: | |
88069f77 TM |
1142 | ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0 |
1143 | && state->n_rdwr != 0; | |
6ee41268 | 1144 | } |
dc0b027d | 1145 | out: |
6ee41268 TM |
1146 | return ret; |
1147 | } | |
1148 | ||
dc0b027d | 1149 | static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode) |
aac00a8d | 1150 | { |
652f89f6 TM |
1151 | if (delegation == NULL) |
1152 | return 0; | |
dc0b027d | 1153 | if ((delegation->type & fmode) != fmode) |
aac00a8d | 1154 | return 0; |
d25be546 TM |
1155 | if (test_bit(NFS_DELEGATION_RETURNING, &delegation->flags)) |
1156 | return 0; | |
b7391f44 | 1157 | nfs_mark_delegation_referenced(delegation); |
aac00a8d TM |
1158 | return 1; |
1159 | } | |
1160 | ||
dc0b027d | 1161 | static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode) |
e7616923 | 1162 | { |
dc0b027d | 1163 | switch (fmode) { |
e7616923 TM |
1164 | case FMODE_WRITE: |
1165 | state->n_wronly++; | |
1166 | break; | |
1167 | case FMODE_READ: | |
1168 | state->n_rdonly++; | |
1169 | break; | |
1170 | case FMODE_READ|FMODE_WRITE: | |
1171 | state->n_rdwr++; | |
1172 | } | |
dc0b027d | 1173 | nfs4_state_set_mode_locked(state, state->state | fmode); |
003707c7 TM |
1174 | } |
1175 | ||
4f14c194 TM |
1176 | static void nfs_test_and_clear_all_open_stateid(struct nfs4_state *state) |
1177 | { | |
1178 | struct nfs_client *clp = state->owner->so_server->nfs_client; | |
1179 | bool need_recover = false; | |
1180 | ||
1181 | if (test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags) && state->n_rdonly) | |
1182 | need_recover = true; | |
1183 | if (test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags) && state->n_wronly) | |
1184 | need_recover = true; | |
1185 | if (test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags) && state->n_rdwr) | |
1186 | need_recover = true; | |
1187 | if (need_recover) | |
1188 | nfs4_state_mark_reclaim_nograce(clp, state); | |
1189 | } | |
1190 | ||
e999e80e TM |
1191 | static bool nfs_need_update_open_stateid(struct nfs4_state *state, |
1192 | nfs4_stateid *stateid) | |
1193 | { | |
1194 | if (test_and_set_bit(NFS_OPEN_STATE, &state->flags) == 0) | |
1195 | return true; | |
4f14c194 TM |
1196 | if (!nfs4_stateid_match_other(stateid, &state->open_stateid)) { |
1197 | nfs_test_and_clear_all_open_stateid(state); | |
e999e80e | 1198 | return true; |
4f14c194 | 1199 | } |
e999e80e TM |
1200 | if (nfs4_stateid_is_newer(stateid, &state->open_stateid)) |
1201 | return true; | |
1202 | return false; | |
1203 | } | |
1204 | ||
f95549cf TM |
1205 | static void nfs_resync_open_stateid_locked(struct nfs4_state *state) |
1206 | { | |
1207 | if (state->n_wronly) | |
1208 | set_bit(NFS_O_WRONLY_STATE, &state->flags); | |
1209 | if (state->n_rdonly) | |
1210 | set_bit(NFS_O_RDONLY_STATE, &state->flags); | |
1211 | if (state->n_rdwr) | |
1212 | set_bit(NFS_O_RDWR_STATE, &state->flags); | |
1213 | } | |
1214 | ||
226056c5 TM |
1215 | static void nfs_clear_open_stateid_locked(struct nfs4_state *state, |
1216 | nfs4_stateid *stateid, fmode_t fmode) | |
003707c7 | 1217 | { |
226056c5 TM |
1218 | clear_bit(NFS_O_RDWR_STATE, &state->flags); |
1219 | switch (fmode & (FMODE_READ|FMODE_WRITE)) { | |
1220 | case FMODE_WRITE: | |
1221 | clear_bit(NFS_O_RDONLY_STATE, &state->flags); | |
1222 | break; | |
1223 | case FMODE_READ: | |
1224 | clear_bit(NFS_O_WRONLY_STATE, &state->flags); | |
1225 | break; | |
1226 | case 0: | |
1227 | clear_bit(NFS_O_RDONLY_STATE, &state->flags); | |
1228 | clear_bit(NFS_O_WRONLY_STATE, &state->flags); | |
1229 | clear_bit(NFS_OPEN_STATE, &state->flags); | |
1230 | } | |
1231 | if (stateid == NULL) | |
1232 | return; | |
f95549cf TM |
1233 | /* Handle races with OPEN */ |
1234 | if (!nfs4_stateid_match_other(stateid, &state->open_stateid) || | |
1235 | !nfs4_stateid_is_newer(stateid, &state->open_stateid)) { | |
1236 | nfs_resync_open_stateid_locked(state); | |
226056c5 | 1237 | return; |
f95549cf | 1238 | } |
003707c7 | 1239 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) |
f597c537 TM |
1240 | nfs4_stateid_copy(&state->stateid, stateid); |
1241 | nfs4_stateid_copy(&state->open_stateid, stateid); | |
226056c5 TM |
1242 | } |
1243 | ||
1244 | static void nfs_clear_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode) | |
1245 | { | |
1246 | write_seqlock(&state->seqlock); | |
1247 | nfs_clear_open_stateid_locked(state, stateid, fmode); | |
1248 | write_sequnlock(&state->seqlock); | |
4f14c194 TM |
1249 | if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags)) |
1250 | nfs4_schedule_state_manager(state->owner->so_server->nfs_client); | |
226056c5 TM |
1251 | } |
1252 | ||
dc0b027d | 1253 | static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode) |
003707c7 | 1254 | { |
dc0b027d | 1255 | switch (fmode) { |
003707c7 TM |
1256 | case FMODE_READ: |
1257 | set_bit(NFS_O_RDONLY_STATE, &state->flags); | |
1258 | break; | |
1259 | case FMODE_WRITE: | |
1260 | set_bit(NFS_O_WRONLY_STATE, &state->flags); | |
1261 | break; | |
1262 | case FMODE_READ|FMODE_WRITE: | |
1263 | set_bit(NFS_O_RDWR_STATE, &state->flags); | |
1264 | } | |
e999e80e TM |
1265 | if (!nfs_need_update_open_stateid(state, stateid)) |
1266 | return; | |
1267 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) | |
1268 | nfs4_stateid_copy(&state->stateid, stateid); | |
1269 | nfs4_stateid_copy(&state->open_stateid, stateid); | |
003707c7 TM |
1270 | } |
1271 | ||
dc0b027d | 1272 | static void __update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, const nfs4_stateid *deleg_stateid, fmode_t fmode) |
1da177e4 | 1273 | { |
8bda4e4c TM |
1274 | /* |
1275 | * Protect the call to nfs4_state_set_mode_locked and | |
1276 | * serialise the stateid update | |
1277 | */ | |
1278 | write_seqlock(&state->seqlock); | |
003707c7 | 1279 | if (deleg_stateid != NULL) { |
f597c537 | 1280 | nfs4_stateid_copy(&state->stateid, deleg_stateid); |
003707c7 TM |
1281 | set_bit(NFS_DELEGATED_STATE, &state->flags); |
1282 | } | |
1283 | if (open_stateid != NULL) | |
dc0b027d | 1284 | nfs_set_open_stateid_locked(state, open_stateid, fmode); |
8bda4e4c TM |
1285 | write_sequnlock(&state->seqlock); |
1286 | spin_lock(&state->owner->so_lock); | |
dc0b027d | 1287 | update_open_stateflags(state, fmode); |
ec073428 | 1288 | spin_unlock(&state->owner->so_lock); |
1da177e4 LT |
1289 | } |
1290 | ||
dc0b027d | 1291 | static int update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, nfs4_stateid *delegation, fmode_t fmode) |
34310430 TM |
1292 | { |
1293 | struct nfs_inode *nfsi = NFS_I(state->inode); | |
1294 | struct nfs_delegation *deleg_cur; | |
1295 | int ret = 0; | |
1296 | ||
dc0b027d | 1297 | fmode &= (FMODE_READ|FMODE_WRITE); |
34310430 TM |
1298 | |
1299 | rcu_read_lock(); | |
1300 | deleg_cur = rcu_dereference(nfsi->delegation); | |
1301 | if (deleg_cur == NULL) | |
1302 | goto no_delegation; | |
1303 | ||
1304 | spin_lock(&deleg_cur->lock); | |
17f26b12 | 1305 | if (rcu_dereference(nfsi->delegation) != deleg_cur || |
d25be546 | 1306 | test_bit(NFS_DELEGATION_RETURNING, &deleg_cur->flags) || |
dc0b027d | 1307 | (deleg_cur->type & fmode) != fmode) |
34310430 TM |
1308 | goto no_delegation_unlock; |
1309 | ||
1310 | if (delegation == NULL) | |
1311 | delegation = &deleg_cur->stateid; | |
f597c537 | 1312 | else if (!nfs4_stateid_match(&deleg_cur->stateid, delegation)) |
34310430 TM |
1313 | goto no_delegation_unlock; |
1314 | ||
b7391f44 | 1315 | nfs_mark_delegation_referenced(deleg_cur); |
dc0b027d | 1316 | __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode); |
34310430 TM |
1317 | ret = 1; |
1318 | no_delegation_unlock: | |
1319 | spin_unlock(&deleg_cur->lock); | |
1320 | no_delegation: | |
1321 | rcu_read_unlock(); | |
1322 | ||
1323 | if (!ret && open_stateid != NULL) { | |
dc0b027d | 1324 | __update_open_stateid(state, open_stateid, NULL, fmode); |
34310430 TM |
1325 | ret = 1; |
1326 | } | |
4f14c194 TM |
1327 | if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags)) |
1328 | nfs4_schedule_state_manager(state->owner->so_server->nfs_client); | |
34310430 TM |
1329 | |
1330 | return ret; | |
1331 | } | |
1332 | ||
39071e6f TM |
1333 | static bool nfs4_update_lock_stateid(struct nfs4_lock_state *lsp, |
1334 | const nfs4_stateid *stateid) | |
1335 | { | |
1336 | struct nfs4_state *state = lsp->ls_state; | |
1337 | bool ret = false; | |
1338 | ||
1339 | spin_lock(&state->state_lock); | |
1340 | if (!nfs4_stateid_match_other(stateid, &lsp->ls_stateid)) | |
1341 | goto out_noupdate; | |
1342 | if (!nfs4_stateid_is_newer(stateid, &lsp->ls_stateid)) | |
1343 | goto out_noupdate; | |
1344 | nfs4_stateid_copy(&lsp->ls_stateid, stateid); | |
1345 | ret = true; | |
1346 | out_noupdate: | |
1347 | spin_unlock(&state->state_lock); | |
1348 | return ret; | |
1349 | } | |
34310430 | 1350 | |
dc0b027d | 1351 | static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode) |
aac00a8d TM |
1352 | { |
1353 | struct nfs_delegation *delegation; | |
1354 | ||
1355 | rcu_read_lock(); | |
1356 | delegation = rcu_dereference(NFS_I(inode)->delegation); | |
dc0b027d | 1357 | if (delegation == NULL || (delegation->type & fmode) == fmode) { |
aac00a8d TM |
1358 | rcu_read_unlock(); |
1359 | return; | |
1360 | } | |
1361 | rcu_read_unlock(); | |
57ec14c5 | 1362 | nfs4_inode_return_delegation(inode); |
aac00a8d TM |
1363 | } |
1364 | ||
6ee41268 | 1365 | static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata) |
aac00a8d TM |
1366 | { |
1367 | struct nfs4_state *state = opendata->state; | |
1368 | struct nfs_inode *nfsi = NFS_I(state->inode); | |
1369 | struct nfs_delegation *delegation; | |
f448badd | 1370 | int open_mode = opendata->o_arg.open_flags; |
dc0b027d | 1371 | fmode_t fmode = opendata->o_arg.fmode; |
aac00a8d TM |
1372 | nfs4_stateid stateid; |
1373 | int ret = -EAGAIN; | |
1374 | ||
aac00a8d | 1375 | for (;;) { |
61beef75 | 1376 | spin_lock(&state->owner->so_lock); |
dc0b027d | 1377 | if (can_open_cached(state, fmode, open_mode)) { |
61beef75 | 1378 | update_open_stateflags(state, fmode); |
6ee41268 | 1379 | spin_unlock(&state->owner->so_lock); |
61beef75 | 1380 | goto out_return_state; |
6ee41268 | 1381 | } |
61beef75 | 1382 | spin_unlock(&state->owner->so_lock); |
34310430 TM |
1383 | rcu_read_lock(); |
1384 | delegation = rcu_dereference(nfsi->delegation); | |
652f89f6 | 1385 | if (!can_open_delegated(delegation, fmode)) { |
34310430 | 1386 | rcu_read_unlock(); |
aac00a8d | 1387 | break; |
34310430 | 1388 | } |
aac00a8d | 1389 | /* Save the delegation */ |
f597c537 | 1390 | nfs4_stateid_copy(&stateid, &delegation->stateid); |
aac00a8d | 1391 | rcu_read_unlock(); |
fa332941 | 1392 | nfs_release_seqid(opendata->o_arg.seqid); |
bdeca1b7 TM |
1393 | if (!opendata->is_recover) { |
1394 | ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode); | |
1395 | if (ret != 0) | |
1396 | goto out; | |
1397 | } | |
aac00a8d | 1398 | ret = -EAGAIN; |
34310430 TM |
1399 | |
1400 | /* Try to update the stateid using the delegation */ | |
dc0b027d | 1401 | if (update_open_stateid(state, NULL, &stateid, fmode)) |
34310430 | 1402 | goto out_return_state; |
aac00a8d | 1403 | } |
aac00a8d TM |
1404 | out: |
1405 | return ERR_PTR(ret); | |
1406 | out_return_state: | |
1407 | atomic_inc(&state->count); | |
1408 | return state; | |
1409 | } | |
1410 | ||
e23008ec AA |
1411 | static void |
1412 | nfs4_opendata_check_deleg(struct nfs4_opendata *data, struct nfs4_state *state) | |
1413 | { | |
1414 | struct nfs_client *clp = NFS_SERVER(state->inode)->nfs_client; | |
1415 | struct nfs_delegation *delegation; | |
1416 | int delegation_flags = 0; | |
1417 | ||
1418 | rcu_read_lock(); | |
1419 | delegation = rcu_dereference(NFS_I(state->inode)->delegation); | |
1420 | if (delegation) | |
1421 | delegation_flags = delegation->flags; | |
1422 | rcu_read_unlock(); | |
1423 | if (data->o_arg.claim == NFS4_OPEN_CLAIM_DELEGATE_CUR) { | |
1424 | pr_err_ratelimited("NFS: Broken NFSv4 server %s is " | |
1425 | "returning a delegation for " | |
1426 | "OPEN(CLAIM_DELEGATE_CUR)\n", | |
1427 | clp->cl_hostname); | |
1428 | } else if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0) | |
1429 | nfs_inode_set_delegation(state->inode, | |
1430 | data->owner->so_cred, | |
1431 | &data->o_res); | |
1432 | else | |
1433 | nfs_inode_reclaim_delegation(state->inode, | |
1434 | data->owner->so_cred, | |
1435 | &data->o_res); | |
1436 | } | |
1437 | ||
1438 | /* | |
1439 | * Check the inode attributes against the CLAIM_PREVIOUS returned attributes | |
1440 | * and update the nfs4_state. | |
1441 | */ | |
1442 | static struct nfs4_state * | |
1443 | _nfs4_opendata_reclaim_to_nfs4_state(struct nfs4_opendata *data) | |
1444 | { | |
1445 | struct inode *inode = data->state->inode; | |
1446 | struct nfs4_state *state = data->state; | |
1447 | int ret; | |
1448 | ||
d2bfda2e WAA |
1449 | if (!data->rpc_done) { |
1450 | if (data->rpc_status) { | |
1451 | ret = data->rpc_status; | |
1452 | goto err; | |
1453 | } | |
1454 | /* cached opens have already been processed */ | |
1455 | goto update; | |
e23008ec AA |
1456 | } |
1457 | ||
e23008ec AA |
1458 | ret = nfs_refresh_inode(inode, &data->f_attr); |
1459 | if (ret) | |
1460 | goto err; | |
1461 | ||
1462 | if (data->o_res.delegation_type != 0) | |
1463 | nfs4_opendata_check_deleg(data, state); | |
d2bfda2e | 1464 | update: |
e23008ec AA |
1465 | update_open_stateid(state, &data->o_res.stateid, NULL, |
1466 | data->o_arg.fmode); | |
d49f042a | 1467 | atomic_inc(&state->count); |
e23008ec AA |
1468 | |
1469 | return state; | |
1470 | err: | |
1471 | return ERR_PTR(ret); | |
1472 | ||
1473 | } | |
1474 | ||
1475 | static struct nfs4_state * | |
1476 | _nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data) | |
24ac23ab TM |
1477 | { |
1478 | struct inode *inode; | |
1479 | struct nfs4_state *state = NULL; | |
1b370bc2 | 1480 | int ret; |
24ac23ab | 1481 | |
aac00a8d | 1482 | if (!data->rpc_done) { |
6ee41268 | 1483 | state = nfs4_try_open_cached(data); |
aac00a8d TM |
1484 | goto out; |
1485 | } | |
1486 | ||
1b370bc2 | 1487 | ret = -EAGAIN; |
24ac23ab | 1488 | if (!(data->f_attr.valid & NFS_ATTR_FATTR)) |
1b370bc2 | 1489 | goto err; |
1775fd3e | 1490 | inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr, data->f_label); |
1b370bc2 | 1491 | ret = PTR_ERR(inode); |
03f28e3a | 1492 | if (IS_ERR(inode)) |
1b370bc2 TM |
1493 | goto err; |
1494 | ret = -ENOMEM; | |
24ac23ab TM |
1495 | state = nfs4_get_open_state(inode, data->owner); |
1496 | if (state == NULL) | |
1b370bc2 | 1497 | goto err_put_inode; |
e23008ec AA |
1498 | if (data->o_res.delegation_type != 0) |
1499 | nfs4_opendata_check_deleg(data, state); | |
34310430 | 1500 | update_open_stateid(state, &data->o_res.stateid, NULL, |
dc0b027d | 1501 | data->o_arg.fmode); |
24ac23ab | 1502 | iput(inode); |
aac00a8d | 1503 | out: |
7aa262b5 | 1504 | nfs_release_seqid(data->o_arg.seqid); |
24ac23ab | 1505 | return state; |
1b370bc2 TM |
1506 | err_put_inode: |
1507 | iput(inode); | |
1508 | err: | |
1509 | return ERR_PTR(ret); | |
24ac23ab TM |
1510 | } |
1511 | ||
e23008ec AA |
1512 | static struct nfs4_state * |
1513 | nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data) | |
1514 | { | |
1515 | if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) | |
1516 | return _nfs4_opendata_reclaim_to_nfs4_state(data); | |
1517 | return _nfs4_opendata_to_nfs4_state(data); | |
1518 | } | |
1519 | ||
864472e9 TM |
1520 | static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state) |
1521 | { | |
1522 | struct nfs_inode *nfsi = NFS_I(state->inode); | |
1523 | struct nfs_open_context *ctx; | |
1524 | ||
1525 | spin_lock(&state->inode->i_lock); | |
1526 | list_for_each_entry(ctx, &nfsi->open_files, list) { | |
1527 | if (ctx->state != state) | |
1528 | continue; | |
1529 | get_nfs_open_context(ctx); | |
1530 | spin_unlock(&state->inode->i_lock); | |
1531 | return ctx; | |
1532 | } | |
1533 | spin_unlock(&state->inode->i_lock); | |
1534 | return ERR_PTR(-ENOENT); | |
1535 | } | |
1536 | ||
4a1c0893 TM |
1537 | static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, |
1538 | struct nfs4_state *state, enum open_claim_type4 claim) | |
6f220ed5 TM |
1539 | { |
1540 | struct nfs4_opendata *opendata; | |
1541 | ||
4a1c0893 | 1542 | opendata = nfs4_opendata_alloc(ctx->dentry, state->owner, 0, 0, |
1775fd3e | 1543 | NULL, NULL, claim, GFP_NOFS); |
6f220ed5 TM |
1544 | if (opendata == NULL) |
1545 | return ERR_PTR(-ENOMEM); | |
1546 | opendata->state = state; | |
1547 | atomic_inc(&state->count); | |
1548 | return opendata; | |
1549 | } | |
1550 | ||
dc0b027d | 1551 | static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res) |
864472e9 | 1552 | { |
2ced46c2 | 1553 | struct nfs4_state *newstate; |
864472e9 TM |
1554 | int ret; |
1555 | ||
dc0b027d TM |
1556 | opendata->o_arg.open_flags = 0; |
1557 | opendata->o_arg.fmode = fmode; | |
be36e185 TM |
1558 | opendata->o_arg.share_access = nfs4_map_atomic_open_share( |
1559 | NFS_SB(opendata->dentry->d_sb), | |
1560 | fmode, 0); | |
2ced46c2 TM |
1561 | memset(&opendata->o_res, 0, sizeof(opendata->o_res)); |
1562 | memset(&opendata->c_res, 0, sizeof(opendata->c_res)); | |
1563 | nfs4_init_opendata_res(opendata); | |
b257957e | 1564 | ret = _nfs4_recover_proc_open(opendata); |
864472e9 TM |
1565 | if (ret != 0) |
1566 | return ret; | |
2ced46c2 | 1567 | newstate = nfs4_opendata_to_nfs4_state(opendata); |
1b370bc2 TM |
1568 | if (IS_ERR(newstate)) |
1569 | return PTR_ERR(newstate); | |
643168c2 | 1570 | nfs4_close_state(newstate, fmode); |
2ced46c2 | 1571 | *res = newstate; |
864472e9 TM |
1572 | return 0; |
1573 | } | |
1574 | ||
1575 | static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state) | |
1576 | { | |
864472e9 | 1577 | struct nfs4_state *newstate; |
864472e9 TM |
1578 | int ret; |
1579 | ||
4f14c194 TM |
1580 | /* Don't trigger recovery in nfs_test_and_clear_all_open_stateid */ |
1581 | clear_bit(NFS_O_RDWR_STATE, &state->flags); | |
1582 | clear_bit(NFS_O_WRONLY_STATE, &state->flags); | |
1583 | clear_bit(NFS_O_RDONLY_STATE, &state->flags); | |
864472e9 | 1584 | /* memory barrier prior to reading state->n_* */ |
2ced46c2 | 1585 | clear_bit(NFS_DELEGATED_STATE, &state->flags); |
fd068b20 | 1586 | clear_bit(NFS_OPEN_STATE, &state->flags); |
864472e9 TM |
1587 | smp_rmb(); |
1588 | if (state->n_rdwr != 0) { | |
2ced46c2 | 1589 | ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate); |
864472e9 TM |
1590 | if (ret != 0) |
1591 | return ret; | |
2ced46c2 TM |
1592 | if (newstate != state) |
1593 | return -ESTALE; | |
864472e9 TM |
1594 | } |
1595 | if (state->n_wronly != 0) { | |
2ced46c2 | 1596 | ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate); |
864472e9 TM |
1597 | if (ret != 0) |
1598 | return ret; | |
2ced46c2 TM |
1599 | if (newstate != state) |
1600 | return -ESTALE; | |
864472e9 TM |
1601 | } |
1602 | if (state->n_rdonly != 0) { | |
2ced46c2 | 1603 | ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate); |
864472e9 TM |
1604 | if (ret != 0) |
1605 | return ret; | |
2ced46c2 TM |
1606 | if (newstate != state) |
1607 | return -ESTALE; | |
864472e9 | 1608 | } |
1ac7e2fd TM |
1609 | /* |
1610 | * We may have performed cached opens for all three recoveries. | |
1611 | * Check if we need to update the current stateid. | |
1612 | */ | |
1613 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 && | |
f597c537 | 1614 | !nfs4_stateid_match(&state->stateid, &state->open_stateid)) { |
8bda4e4c | 1615 | write_seqlock(&state->seqlock); |
1ac7e2fd | 1616 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) |
f597c537 | 1617 | nfs4_stateid_copy(&state->stateid, &state->open_stateid); |
8bda4e4c | 1618 | write_sequnlock(&state->seqlock); |
1ac7e2fd | 1619 | } |
864472e9 TM |
1620 | return 0; |
1621 | } | |
1622 | ||
1da177e4 LT |
1623 | /* |
1624 | * OPEN_RECLAIM: | |
1625 | * reclaim state on the server after a reboot. | |
1da177e4 | 1626 | */ |
539cd03a | 1627 | static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state) |
1da177e4 | 1628 | { |
1ac7e2fd | 1629 | struct nfs_delegation *delegation; |
864472e9 | 1630 | struct nfs4_opendata *opendata; |
dc0b027d | 1631 | fmode_t delegation_type = 0; |
1da177e4 LT |
1632 | int status; |
1633 | ||
4a1c0893 TM |
1634 | opendata = nfs4_open_recoverdata_alloc(ctx, state, |
1635 | NFS4_OPEN_CLAIM_PREVIOUS); | |
6f220ed5 TM |
1636 | if (IS_ERR(opendata)) |
1637 | return PTR_ERR(opendata); | |
1ac7e2fd TM |
1638 | rcu_read_lock(); |
1639 | delegation = rcu_dereference(NFS_I(state->inode)->delegation); | |
15c831bf | 1640 | if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0) |
65bbf6bd | 1641 | delegation_type = delegation->type; |
1ac7e2fd | 1642 | rcu_read_unlock(); |
864472e9 TM |
1643 | opendata->o_arg.u.delegation_type = delegation_type; |
1644 | status = nfs4_open_recover(opendata, state); | |
c6d00e63 | 1645 | nfs4_opendata_put(opendata); |
1da177e4 LT |
1646 | return status; |
1647 | } | |
1648 | ||
539cd03a | 1649 | static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state) |
1da177e4 LT |
1650 | { |
1651 | struct nfs_server *server = NFS_SERVER(state->inode); | |
1652 | struct nfs4_exception exception = { }; | |
1653 | int err; | |
1654 | do { | |
539cd03a | 1655 | err = _nfs4_do_open_reclaim(ctx, state); |
42113a75 | 1656 | trace_nfs4_open_reclaim(ctx, 0, err); |
49f9a0fa TM |
1657 | if (nfs4_clear_cap_atomic_open_v1(server, err, &exception)) |
1658 | continue; | |
168667c4 | 1659 | if (err != -NFS4ERR_DELAY) |
202b50dc TM |
1660 | break; |
1661 | nfs4_handle_exception(server, err, &exception); | |
1da177e4 LT |
1662 | } while (exception.retry); |
1663 | return err; | |
1664 | } | |
1665 | ||
864472e9 TM |
1666 | static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state) |
1667 | { | |
1668 | struct nfs_open_context *ctx; | |
1669 | int ret; | |
1670 | ||
1671 | ctx = nfs4_state_find_open_context(state); | |
1672 | if (IS_ERR(ctx)) | |
91876b13 | 1673 | return -EAGAIN; |
539cd03a | 1674 | ret = nfs4_do_open_reclaim(ctx, state); |
864472e9 TM |
1675 | put_nfs_open_context(ctx); |
1676 | return ret; | |
1677 | } | |
1678 | ||
db4f2e63 | 1679 | static int nfs4_handle_delegation_recall_error(struct nfs_server *server, struct nfs4_state *state, const nfs4_stateid *stateid, int err) |
1da177e4 | 1680 | { |
be76b5b6 TM |
1681 | switch (err) { |
1682 | default: | |
1683 | printk(KERN_ERR "NFS: %s: unhandled error " | |
1684 | "%d.\n", __func__, err); | |
1685 | case 0: | |
1686 | case -ENOENT: | |
1687 | case -ESTALE: | |
1688 | break; | |
1689 | case -NFS4ERR_BADSESSION: | |
1690 | case -NFS4ERR_BADSLOT: | |
1691 | case -NFS4ERR_BAD_HIGH_SLOT: | |
1692 | case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION: | |
1693 | case -NFS4ERR_DEADSESSION: | |
1694 | set_bit(NFS_DELEGATED_STATE, &state->flags); | |
1695 | nfs4_schedule_session_recovery(server->nfs_client->cl_session, err); | |
1696 | return -EAGAIN; | |
1697 | case -NFS4ERR_STALE_CLIENTID: | |
1698 | case -NFS4ERR_STALE_STATEID: | |
1699 | set_bit(NFS_DELEGATED_STATE, &state->flags); | |
1700 | case -NFS4ERR_EXPIRED: | |
1701 | /* Don't recall a delegation if it was lost */ | |
1702 | nfs4_schedule_lease_recovery(server->nfs_client); | |
1703 | return -EAGAIN; | |
352297b9 CL |
1704 | case -NFS4ERR_MOVED: |
1705 | nfs4_schedule_migration_recovery(server); | |
1706 | return -EAGAIN; | |
8ef2f8d4 CL |
1707 | case -NFS4ERR_LEASE_MOVED: |
1708 | nfs4_schedule_lease_moved_recovery(server->nfs_client); | |
1709 | return -EAGAIN; | |
be76b5b6 TM |
1710 | case -NFS4ERR_DELEG_REVOKED: |
1711 | case -NFS4ERR_ADMIN_REVOKED: | |
1712 | case -NFS4ERR_BAD_STATEID: | |
db4f2e63 | 1713 | case -NFS4ERR_OPENMODE: |
be76b5b6 TM |
1714 | nfs_inode_find_state_and_recover(state->inode, |
1715 | stateid); | |
1716 | nfs4_schedule_stateid_recovery(server, state); | |
869f9dfa | 1717 | return -EAGAIN; |
be76b5b6 TM |
1718 | case -NFS4ERR_DELAY: |
1719 | case -NFS4ERR_GRACE: | |
1720 | set_bit(NFS_DELEGATED_STATE, &state->flags); | |
1721 | ssleep(1); | |
1722 | return -EAGAIN; | |
db4f2e63 TM |
1723 | case -ENOMEM: |
1724 | case -NFS4ERR_DENIED: | |
1725 | /* kill_proc(fl->fl_pid, SIGLOST, 1); */ | |
1726 | return 0; | |
be76b5b6 | 1727 | } |
1da177e4 LT |
1728 | return err; |
1729 | } | |
1730 | ||
db4f2e63 TM |
1731 | int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid) |
1732 | { | |
1733 | struct nfs_server *server = NFS_SERVER(state->inode); | |
1734 | struct nfs4_opendata *opendata; | |
1735 | int err; | |
1736 | ||
1737 | opendata = nfs4_open_recoverdata_alloc(ctx, state, | |
1738 | NFS4_OPEN_CLAIM_DELEG_CUR_FH); | |
1739 | if (IS_ERR(opendata)) | |
1740 | return PTR_ERR(opendata); | |
1741 | nfs4_stateid_copy(&opendata->o_arg.u.delegation, stateid); | |
1742 | err = nfs4_open_recover(opendata, state); | |
1743 | nfs4_opendata_put(opendata); | |
1744 | return nfs4_handle_delegation_recall_error(server, state, stateid, err); | |
1745 | } | |
1746 | ||
be05c860 CL |
1747 | static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata) |
1748 | { | |
1749 | struct nfs4_opendata *data = calldata; | |
1750 | ||
cb04ad2a PT |
1751 | nfs40_setup_sequence(data->o_arg.server->nfs_client->cl_slot_tbl, |
1752 | &data->c_arg.seq_args, &data->c_res.seq_res, task); | |
be05c860 CL |
1753 | } |
1754 | ||
cdd4e68b TM |
1755 | static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata) |
1756 | { | |
1757 | struct nfs4_opendata *data = calldata; | |
1758 | ||
17ead6c8 | 1759 | nfs40_sequence_done(task, &data->c_res.seq_res); |
be05c860 | 1760 | |
cdd4e68b | 1761 | data->rpc_status = task->tk_status; |
26e976a8 | 1762 | if (data->rpc_status == 0) { |
f597c537 | 1763 | nfs4_stateid_copy(&data->o_res.stateid, &data->c_res.stateid); |
bb22629e | 1764 | nfs_confirm_seqid(&data->owner->so_seqid, 0); |
26e976a8 | 1765 | renew_lease(data->o_res.server, data->timestamp); |
3e309914 | 1766 | data->rpc_done = 1; |
26e976a8 | 1767 | } |
cdd4e68b TM |
1768 | } |
1769 | ||
1770 | static void nfs4_open_confirm_release(void *calldata) | |
1771 | { | |
1772 | struct nfs4_opendata *data = calldata; | |
1773 | struct nfs4_state *state = NULL; | |
1774 | ||
1775 | /* If this request hasn't been cancelled, do nothing */ | |
1776 | if (data->cancelled == 0) | |
1777 | goto out_free; | |
1778 | /* In case of error, no cleanup! */ | |
3e309914 | 1779 | if (!data->rpc_done) |
cdd4e68b | 1780 | goto out_free; |
cdd4e68b | 1781 | state = nfs4_opendata_to_nfs4_state(data); |
1b370bc2 | 1782 | if (!IS_ERR(state)) |
643168c2 | 1783 | nfs4_close_state(state, data->o_arg.fmode); |
cdd4e68b | 1784 | out_free: |
c6d00e63 | 1785 | nfs4_opendata_put(data); |
cdd4e68b TM |
1786 | } |
1787 | ||
1788 | static const struct rpc_call_ops nfs4_open_confirm_ops = { | |
be05c860 | 1789 | .rpc_call_prepare = nfs4_open_confirm_prepare, |
cdd4e68b TM |
1790 | .rpc_call_done = nfs4_open_confirm_done, |
1791 | .rpc_release = nfs4_open_confirm_release, | |
1792 | }; | |
1793 | ||
1794 | /* | |
1795 | * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata | |
1796 | */ | |
1797 | static int _nfs4_proc_open_confirm(struct nfs4_opendata *data) | |
1798 | { | |
2b0143b5 | 1799 | struct nfs_server *server = NFS_SERVER(d_inode(data->dir)); |
cdd4e68b | 1800 | struct rpc_task *task; |
5138fde0 TM |
1801 | struct rpc_message msg = { |
1802 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM], | |
1803 | .rpc_argp = &data->c_arg, | |
1804 | .rpc_resp = &data->c_res, | |
1805 | .rpc_cred = data->owner->so_cred, | |
1806 | }; | |
c970aa85 TM |
1807 | struct rpc_task_setup task_setup_data = { |
1808 | .rpc_client = server->client, | |
5138fde0 | 1809 | .rpc_message = &msg, |
c970aa85 TM |
1810 | .callback_ops = &nfs4_open_confirm_ops, |
1811 | .callback_data = data, | |
101070ca | 1812 | .workqueue = nfsiod_workqueue, |
c970aa85 TM |
1813 | .flags = RPC_TASK_ASYNC, |
1814 | }; | |
1da177e4 LT |
1815 | int status; |
1816 | ||
17ead6c8 | 1817 | nfs4_init_sequence(&data->c_arg.seq_args, &data->c_res.seq_res, 1); |
c6d00e63 | 1818 | kref_get(&data->kref); |
3e309914 TM |
1819 | data->rpc_done = 0; |
1820 | data->rpc_status = 0; | |
5138fde0 | 1821 | data->timestamp = jiffies; |
c970aa85 | 1822 | task = rpc_run_task(&task_setup_data); |
7a1218a2 | 1823 | if (IS_ERR(task)) |
cdd4e68b | 1824 | return PTR_ERR(task); |
cdd4e68b TM |
1825 | status = nfs4_wait_for_completion_rpc_task(task); |
1826 | if (status != 0) { | |
1827 | data->cancelled = 1; | |
1828 | smp_wmb(); | |
1829 | } else | |
1830 | status = data->rpc_status; | |
e6b3c4db | 1831 | rpc_put_task(task); |
1da177e4 LT |
1832 | return status; |
1833 | } | |
1834 | ||
24ac23ab | 1835 | static void nfs4_open_prepare(struct rpc_task *task, void *calldata) |
1da177e4 | 1836 | { |
24ac23ab TM |
1837 | struct nfs4_opendata *data = calldata; |
1838 | struct nfs4_state_owner *sp = data->owner; | |
549b19cc | 1839 | struct nfs_client *clp = sp->so_server->nfs_client; |
5138fde0 | 1840 | |
24ac23ab | 1841 | if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0) |
c8da19b9 | 1842 | goto out_wait; |
aac00a8d TM |
1843 | /* |
1844 | * Check if we still need to send an OPEN call, or if we can use | |
1845 | * a delegation instead. | |
1846 | */ | |
1847 | if (data->state != NULL) { | |
1848 | struct nfs_delegation *delegation; | |
1849 | ||
dc0b027d | 1850 | if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags)) |
6ee41268 | 1851 | goto out_no_action; |
aac00a8d TM |
1852 | rcu_read_lock(); |
1853 | delegation = rcu_dereference(NFS_I(data->state->inode)->delegation); | |
652f89f6 | 1854 | if (data->o_arg.claim != NFS4_OPEN_CLAIM_DELEGATE_CUR && |
cd4c9be2 | 1855 | data->o_arg.claim != NFS4_OPEN_CLAIM_DELEG_CUR_FH && |
652f89f6 TM |
1856 | can_open_delegated(delegation, data->o_arg.fmode)) |
1857 | goto unlock_no_action; | |
aac00a8d TM |
1858 | rcu_read_unlock(); |
1859 | } | |
95b72eb0 | 1860 | /* Update client id. */ |
549b19cc | 1861 | data->o_arg.clientid = clp->cl_clientid; |
8188df17 TM |
1862 | switch (data->o_arg.claim) { |
1863 | case NFS4_OPEN_CLAIM_PREVIOUS: | |
1864 | case NFS4_OPEN_CLAIM_DELEG_CUR_FH: | |
1865 | case NFS4_OPEN_CLAIM_DELEG_PREV_FH: | |
e23008ec | 1866 | data->o_arg.open_bitmap = &nfs4_open_noattr_bitmap[0]; |
8188df17 TM |
1867 | case NFS4_OPEN_CLAIM_FH: |
1868 | task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR]; | |
6f220ed5 TM |
1869 | nfs_copy_fh(&data->o_res.fh, data->o_arg.fh); |
1870 | } | |
26e976a8 | 1871 | data->timestamp = jiffies; |
035168ab | 1872 | if (nfs4_setup_sequence(data->o_arg.server, |
d898528c | 1873 | &data->o_arg.seq_args, |
2240a9e2 TM |
1874 | &data->o_res.seq_res, |
1875 | task) != 0) | |
1876 | nfs_release_seqid(data->o_arg.seqid); | |
549b19cc TM |
1877 | |
1878 | /* Set the create mode (note dependency on the session type) */ | |
1879 | data->o_arg.createmode = NFS4_CREATE_UNCHECKED; | |
1880 | if (data->o_arg.open_flags & O_EXCL) { | |
1881 | data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE; | |
1882 | if (nfs4_has_persistent_session(clp)) | |
1883 | data->o_arg.createmode = NFS4_CREATE_GUARDED; | |
1884 | else if (clp->cl_mvops->minor_version > 0) | |
1885 | data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE4_1; | |
1886 | } | |
6ee41268 | 1887 | return; |
652f89f6 TM |
1888 | unlock_no_action: |
1889 | rcu_read_unlock(); | |
6ee41268 TM |
1890 | out_no_action: |
1891 | task->tk_action = NULL; | |
c8da19b9 | 1892 | out_wait: |
b75ad4cd | 1893 | nfs4_sequence_done(task, &data->o_res.seq_res); |
b257957e AB |
1894 | } |
1895 | ||
24ac23ab TM |
1896 | static void nfs4_open_done(struct rpc_task *task, void *calldata) |
1897 | { | |
1898 | struct nfs4_opendata *data = calldata; | |
1da177e4 | 1899 | |
24ac23ab | 1900 | data->rpc_status = task->tk_status; |
d898528c | 1901 | |
14516c3a TM |
1902 | if (!nfs4_sequence_done(task, &data->o_res.seq_res)) |
1903 | return; | |
d898528c | 1904 | |
24ac23ab | 1905 | if (task->tk_status == 0) { |
807d66d8 TM |
1906 | if (data->o_res.f_attr->valid & NFS_ATTR_FATTR_TYPE) { |
1907 | switch (data->o_res.f_attr->mode & S_IFMT) { | |
6f926b5b TM |
1908 | case S_IFREG: |
1909 | break; | |
1910 | case S_IFLNK: | |
24ac23ab | 1911 | data->rpc_status = -ELOOP; |
6f926b5b TM |
1912 | break; |
1913 | case S_IFDIR: | |
24ac23ab | 1914 | data->rpc_status = -EISDIR; |
6f926b5b TM |
1915 | break; |
1916 | default: | |
24ac23ab | 1917 | data->rpc_status = -ENOTDIR; |
807d66d8 | 1918 | } |
6f926b5b | 1919 | } |
26e976a8 | 1920 | renew_lease(data->o_res.server, data->timestamp); |
0f9f95e0 TM |
1921 | if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)) |
1922 | nfs_confirm_seqid(&data->owner->so_seqid, 0); | |
6f926b5b | 1923 | } |
3e309914 | 1924 | data->rpc_done = 1; |
24ac23ab | 1925 | } |
6f926b5b | 1926 | |
24ac23ab TM |
1927 | static void nfs4_open_release(void *calldata) |
1928 | { | |
1929 | struct nfs4_opendata *data = calldata; | |
1930 | struct nfs4_state *state = NULL; | |
1931 | ||
1932 | /* If this request hasn't been cancelled, do nothing */ | |
1933 | if (data->cancelled == 0) | |
1934 | goto out_free; | |
1935 | /* In case of error, no cleanup! */ | |
3e309914 | 1936 | if (data->rpc_status != 0 || !data->rpc_done) |
24ac23ab TM |
1937 | goto out_free; |
1938 | /* In case we need an open_confirm, no cleanup! */ | |
1939 | if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM) | |
1940 | goto out_free; | |
24ac23ab | 1941 | state = nfs4_opendata_to_nfs4_state(data); |
1b370bc2 | 1942 | if (!IS_ERR(state)) |
643168c2 | 1943 | nfs4_close_state(state, data->o_arg.fmode); |
24ac23ab | 1944 | out_free: |
c6d00e63 | 1945 | nfs4_opendata_put(data); |
24ac23ab TM |
1946 | } |
1947 | ||
1948 | static const struct rpc_call_ops nfs4_open_ops = { | |
1949 | .rpc_call_prepare = nfs4_open_prepare, | |
1950 | .rpc_call_done = nfs4_open_done, | |
1951 | .rpc_release = nfs4_open_release, | |
1952 | }; | |
1953 | ||
b257957e | 1954 | static int nfs4_run_open_task(struct nfs4_opendata *data, int isrecover) |
24ac23ab | 1955 | { |
2b0143b5 | 1956 | struct inode *dir = d_inode(data->dir); |
24ac23ab TM |
1957 | struct nfs_server *server = NFS_SERVER(dir); |
1958 | struct nfs_openargs *o_arg = &data->o_arg; | |
1959 | struct nfs_openres *o_res = &data->o_res; | |
1960 | struct rpc_task *task; | |
5138fde0 TM |
1961 | struct rpc_message msg = { |
1962 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN], | |
1963 | .rpc_argp = o_arg, | |
1964 | .rpc_resp = o_res, | |
1965 | .rpc_cred = data->owner->so_cred, | |
1966 | }; | |
c970aa85 TM |
1967 | struct rpc_task_setup task_setup_data = { |
1968 | .rpc_client = server->client, | |
5138fde0 | 1969 | .rpc_message = &msg, |
c970aa85 TM |
1970 | .callback_ops = &nfs4_open_ops, |
1971 | .callback_data = data, | |
101070ca | 1972 | .workqueue = nfsiod_workqueue, |
c970aa85 TM |
1973 | .flags = RPC_TASK_ASYNC, |
1974 | }; | |
24ac23ab TM |
1975 | int status; |
1976 | ||
a9c92d6b | 1977 | nfs4_init_sequence(&o_arg->seq_args, &o_res->seq_res, 1); |
c6d00e63 | 1978 | kref_get(&data->kref); |
3e309914 TM |
1979 | data->rpc_done = 0; |
1980 | data->rpc_status = 0; | |
2ced46c2 | 1981 | data->cancelled = 0; |
bdeca1b7 TM |
1982 | data->is_recover = 0; |
1983 | if (isrecover) { | |
8fe72bac | 1984 | nfs4_set_sequence_privileged(&o_arg->seq_args); |
bdeca1b7 TM |
1985 | data->is_recover = 1; |
1986 | } | |
c970aa85 | 1987 | task = rpc_run_task(&task_setup_data); |
b257957e AB |
1988 | if (IS_ERR(task)) |
1989 | return PTR_ERR(task); | |
1990 | status = nfs4_wait_for_completion_rpc_task(task); | |
1991 | if (status != 0) { | |
1992 | data->cancelled = 1; | |
1993 | smp_wmb(); | |
1994 | } else | |
1995 | status = data->rpc_status; | |
1996 | rpc_put_task(task); | |
1997 | ||
1998 | return status; | |
1999 | } | |
2000 | ||
2001 | static int _nfs4_recover_proc_open(struct nfs4_opendata *data) | |
2002 | { | |
2b0143b5 | 2003 | struct inode *dir = d_inode(data->dir); |
b257957e AB |
2004 | struct nfs_openres *o_res = &data->o_res; |
2005 | int status; | |
2006 | ||
2007 | status = nfs4_run_open_task(data, 1); | |
2008 | if (status != 0 || !data->rpc_done) | |
2009 | return status; | |
2010 | ||
6926afd1 TM |
2011 | nfs_fattr_map_and_free_names(NFS_SERVER(dir), &data->f_attr); |
2012 | ||
b257957e AB |
2013 | if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) { |
2014 | status = _nfs4_proc_open_confirm(data); | |
2015 | if (status != 0) | |
2016 | return status; | |
2017 | } | |
2018 | ||
2019 | return status; | |
2020 | } | |
2021 | ||
f3792d63 TM |
2022 | /* |
2023 | * Additional permission checks in order to distinguish between an | |
2024 | * open for read, and an open for execute. This works around the | |
2025 | * fact that NFSv4 OPEN treats read and execute permissions as being | |
2026 | * the same. | |
2027 | * Note that in the non-execute case, we want to turn off permission | |
2028 | * checking if we just created a new file (POSIX open() semantics). | |
2029 | */ | |
6168f62c WAA |
2030 | static int nfs4_opendata_access(struct rpc_cred *cred, |
2031 | struct nfs4_opendata *opendata, | |
f8d9a897 WAA |
2032 | struct nfs4_state *state, fmode_t fmode, |
2033 | int openflags) | |
6168f62c WAA |
2034 | { |
2035 | struct nfs_access_entry cache; | |
2036 | u32 mask; | |
2037 | ||
2038 | /* access call failed or for some reason the server doesn't | |
2039 | * support any access modes -- defer access call until later */ | |
2040 | if (opendata->o_res.access_supported == 0) | |
2041 | return 0; | |
2042 | ||
2043 | mask = 0; | |
f3792d63 TM |
2044 | /* |
2045 | * Use openflags to check for exec, because fmode won't | |
2046 | * always have FMODE_EXEC set when file open for exec. | |
2047 | */ | |
f8d9a897 WAA |
2048 | if (openflags & __FMODE_EXEC) { |
2049 | /* ONLY check for exec rights */ | |
2050 | mask = MAY_EXEC; | |
f3792d63 | 2051 | } else if ((fmode & FMODE_READ) && !opendata->file_created) |
f8d9a897 | 2052 | mask = MAY_READ; |
6168f62c WAA |
2053 | |
2054 | cache.cred = cred; | |
2055 | cache.jiffies = jiffies; | |
2056 | nfs_access_set_mask(&cache, opendata->o_res.access_result); | |
2057 | nfs_access_add_cache(state->inode, &cache); | |
2058 | ||
bbd3a8ee | 2059 | if ((mask & ~cache.mask & (MAY_READ | MAY_EXEC)) == 0) |
6168f62c WAA |
2060 | return 0; |
2061 | ||
2062 | /* even though OPEN succeeded, access is denied. Close the file */ | |
2063 | nfs4_close_state(state, fmode); | |
998f40b5 | 2064 | return -EACCES; |
6168f62c WAA |
2065 | } |
2066 | ||
b257957e AB |
2067 | /* |
2068 | * Note: On error, nfs4_proc_open will free the struct nfs4_opendata | |
2069 | */ | |
2070 | static int _nfs4_proc_open(struct nfs4_opendata *data) | |
2071 | { | |
2b0143b5 | 2072 | struct inode *dir = d_inode(data->dir); |
b257957e AB |
2073 | struct nfs_server *server = NFS_SERVER(dir); |
2074 | struct nfs_openargs *o_arg = &data->o_arg; | |
2075 | struct nfs_openres *o_res = &data->o_res; | |
2076 | int status; | |
2077 | ||
2078 | status = nfs4_run_open_task(data, 0); | |
08ef7bd3 TM |
2079 | if (!data->rpc_done) |
2080 | return status; | |
2081 | if (status != 0) { | |
2082 | if (status == -NFS4ERR_BADNAME && | |
2083 | !(o_arg->open_flags & O_CREAT)) | |
2084 | return -ENOENT; | |
24ac23ab | 2085 | return status; |
08ef7bd3 | 2086 | } |
24ac23ab | 2087 | |
6926afd1 TM |
2088 | nfs_fattr_map_and_free_names(server, &data->f_attr); |
2089 | ||
5bc2afc2 | 2090 | if (o_arg->open_flags & O_CREAT) { |
56ae19f3 | 2091 | update_changeattr(dir, &o_res->cinfo); |
5bc2afc2 TM |
2092 | if (o_arg->open_flags & O_EXCL) |
2093 | data->file_created = 1; | |
2094 | else if (o_res->cinfo.before != o_res->cinfo.after) | |
2095 | data->file_created = 1; | |
2096 | } | |
0df5dd4a TM |
2097 | if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0) |
2098 | server->caps &= ~NFS_CAP_POSIX_LOCK; | |
1da177e4 | 2099 | if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) { |
cdd4e68b | 2100 | status = _nfs4_proc_open_confirm(data); |
1da177e4 | 2101 | if (status != 0) |
24ac23ab | 2102 | return status; |
1da177e4 LT |
2103 | } |
2104 | if (!(o_res->f_attr->valid & NFS_ATTR_FATTR)) | |
8935ef66 | 2105 | nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr, o_res->f_label); |
24ac23ab | 2106 | return 0; |
1da177e4 LT |
2107 | } |
2108 | ||
d83217c1 AA |
2109 | static int nfs4_recover_expired_lease(struct nfs_server *server) |
2110 | { | |
2111 | return nfs4_client_recover_expired_lease(server->nfs_client); | |
2112 | } | |
2113 | ||
1da177e4 LT |
2114 | /* |
2115 | * OPEN_EXPIRED: | |
2116 | * reclaim state on the server after a network partition. | |
2117 | * Assumes caller holds the appropriate lock | |
2118 | */ | |
539cd03a | 2119 | static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state) |
1da177e4 | 2120 | { |
e56e0b78 | 2121 | struct nfs4_opendata *opendata; |
864472e9 | 2122 | int ret; |
1da177e4 | 2123 | |
4a1c0893 | 2124 | opendata = nfs4_open_recoverdata_alloc(ctx, state, |
49f9a0fa | 2125 | NFS4_OPEN_CLAIM_FH); |
6f220ed5 TM |
2126 | if (IS_ERR(opendata)) |
2127 | return PTR_ERR(opendata); | |
864472e9 | 2128 | ret = nfs4_open_recover(opendata, state); |
35d05778 | 2129 | if (ret == -ESTALE) |
3d4ff43d | 2130 | d_drop(ctx->dentry); |
c6d00e63 | 2131 | nfs4_opendata_put(opendata); |
864472e9 | 2132 | return ret; |
1da177e4 LT |
2133 | } |
2134 | ||
a9ed2e25 | 2135 | static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state) |
202b50dc | 2136 | { |
539cd03a | 2137 | struct nfs_server *server = NFS_SERVER(state->inode); |
202b50dc TM |
2138 | struct nfs4_exception exception = { }; |
2139 | int err; | |
2140 | ||
2141 | do { | |
539cd03a | 2142 | err = _nfs4_open_expired(ctx, state); |
42113a75 | 2143 | trace_nfs4_open_expired(ctx, 0, err); |
49f9a0fa TM |
2144 | if (nfs4_clear_cap_atomic_open_v1(server, err, &exception)) |
2145 | continue; | |
a9ed2e25 TM |
2146 | switch (err) { |
2147 | default: | |
2148 | goto out; | |
2149 | case -NFS4ERR_GRACE: | |
2150 | case -NFS4ERR_DELAY: | |
2151 | nfs4_handle_exception(server, err, &exception); | |
2152 | err = 0; | |
2153 | } | |
202b50dc | 2154 | } while (exception.retry); |
a9ed2e25 | 2155 | out: |
202b50dc TM |
2156 | return err; |
2157 | } | |
2158 | ||
1da177e4 LT |
2159 | static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state) |
2160 | { | |
1da177e4 | 2161 | struct nfs_open_context *ctx; |
864472e9 | 2162 | int ret; |
1da177e4 | 2163 | |
864472e9 TM |
2164 | ctx = nfs4_state_find_open_context(state); |
2165 | if (IS_ERR(ctx)) | |
91876b13 | 2166 | return -EAGAIN; |
539cd03a | 2167 | ret = nfs4_do_open_expired(ctx, state); |
864472e9 TM |
2168 | put_nfs_open_context(ctx); |
2169 | return ret; | |
1da177e4 LT |
2170 | } |
2171 | ||
4dfd4f7a TM |
2172 | static void nfs_finish_clear_delegation_stateid(struct nfs4_state *state) |
2173 | { | |
2174 | nfs_remove_bad_delegation(state->inode); | |
2175 | write_seqlock(&state->seqlock); | |
2176 | nfs4_stateid_copy(&state->stateid, &state->open_stateid); | |
2177 | write_sequnlock(&state->seqlock); | |
2178 | clear_bit(NFS_DELEGATED_STATE, &state->flags); | |
2179 | } | |
2180 | ||
2181 | static void nfs40_clear_delegation_stateid(struct nfs4_state *state) | |
2182 | { | |
2183 | if (rcu_access_pointer(NFS_I(state->inode)->delegation) != NULL) | |
2184 | nfs_finish_clear_delegation_stateid(state); | |
2185 | } | |
2186 | ||
2187 | static int nfs40_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state) | |
2188 | { | |
2189 | /* NFSv4.0 doesn't allow for delegation recovery on open expire */ | |
2190 | nfs40_clear_delegation_stateid(state); | |
2191 | return nfs4_open_expired(sp, state); | |
2192 | } | |
2193 | ||
f062eb6c | 2194 | #if defined(CONFIG_NFS_V4_1) |
0c116cad | 2195 | static void nfs41_check_delegation_stateid(struct nfs4_state *state) |
f062eb6c | 2196 | { |
f062eb6c | 2197 | struct nfs_server *server = NFS_SERVER(state->inode); |
0c116cad | 2198 | nfs4_stateid stateid; |
ab7cb0df | 2199 | struct nfs_delegation *delegation; |
0c116cad TM |
2200 | struct rpc_cred *cred; |
2201 | int status; | |
3e60ffdd | 2202 | |
ab7cb0df TM |
2203 | /* Get the delegation credential for use by test/free_stateid */ |
2204 | rcu_read_lock(); | |
2205 | delegation = rcu_dereference(NFS_I(state->inode)->delegation); | |
0c116cad | 2206 | if (delegation == NULL) { |
ab7cb0df | 2207 | rcu_read_unlock(); |
0c116cad TM |
2208 | return; |
2209 | } | |
2210 | ||
2211 | nfs4_stateid_copy(&stateid, &delegation->stateid); | |
2212 | cred = get_rpccred(delegation->cred); | |
2213 | rcu_read_unlock(); | |
2214 | status = nfs41_test_stateid(server, &stateid, cred); | |
2215 | trace_nfs4_test_delegation_stateid(state, NULL, status); | |
ab7cb0df | 2216 | |
3e60ffdd CL |
2217 | if (status != NFS_OK) { |
2218 | /* Free the stateid unless the server explicitly | |
2219 | * informs us the stateid is unrecognized. */ | |
2220 | if (status != -NFS4ERR_BAD_STATEID) | |
0c116cad TM |
2221 | nfs41_free_stateid(server, &stateid, cred); |
2222 | nfs_finish_clear_delegation_stateid(state); | |
3e60ffdd | 2223 | } |
ab7cb0df | 2224 | |
0c116cad | 2225 | put_rpccred(cred); |
3e60ffdd CL |
2226 | } |
2227 | ||
2228 | /** | |
2229 | * nfs41_check_open_stateid - possibly free an open stateid | |
2230 | * | |
2231 | * @state: NFSv4 state for an inode | |
2232 | * | |
2233 | * Returns NFS_OK if recovery for this stateid is now finished. | |
2234 | * Otherwise a negative NFS4ERR value is returned. | |
2235 | */ | |
2236 | static int nfs41_check_open_stateid(struct nfs4_state *state) | |
2237 | { | |
2238 | struct nfs_server *server = NFS_SERVER(state->inode); | |
fcb6d9c6 | 2239 | nfs4_stateid *stateid = &state->open_stateid; |
ab7cb0df | 2240 | struct rpc_cred *cred = state->owner->so_cred; |
3e60ffdd CL |
2241 | int status; |
2242 | ||
2243 | /* If a state reset has been done, test_stateid is unneeded */ | |
2244 | if ((test_bit(NFS_O_RDONLY_STATE, &state->flags) == 0) && | |
2245 | (test_bit(NFS_O_WRONLY_STATE, &state->flags) == 0) && | |
2246 | (test_bit(NFS_O_RDWR_STATE, &state->flags) == 0)) | |
2247 | return -NFS4ERR_BAD_STATEID; | |
2248 | ||
ab7cb0df | 2249 | status = nfs41_test_stateid(server, stateid, cred); |
08cb47fa | 2250 | trace_nfs4_test_open_stateid(state, NULL, status); |
3e60ffdd CL |
2251 | if (status != NFS_OK) { |
2252 | /* Free the stateid unless the server explicitly | |
2253 | * informs us the stateid is unrecognized. */ | |
2254 | if (status != -NFS4ERR_BAD_STATEID) | |
ab7cb0df | 2255 | nfs41_free_stateid(server, stateid, cred); |
3e60ffdd CL |
2256 | |
2257 | clear_bit(NFS_O_RDONLY_STATE, &state->flags); | |
2258 | clear_bit(NFS_O_WRONLY_STATE, &state->flags); | |
2259 | clear_bit(NFS_O_RDWR_STATE, &state->flags); | |
fd068b20 | 2260 | clear_bit(NFS_OPEN_STATE, &state->flags); |
b01dd1d8 BS |
2261 | } |
2262 | return status; | |
2263 | } | |
2264 | ||
2265 | static int nfs41_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state) | |
2266 | { | |
eb64cf96 | 2267 | int status; |
b01dd1d8 | 2268 | |
0c116cad | 2269 | nfs41_check_delegation_stateid(state); |
3e60ffdd | 2270 | status = nfs41_check_open_stateid(state); |
eb64cf96 CL |
2271 | if (status != NFS_OK) |
2272 | status = nfs4_open_expired(sp, state); | |
2273 | return status; | |
f062eb6c BS |
2274 | } |
2275 | #endif | |
2276 | ||
aa53ed54 JL |
2277 | /* |
2278 | * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-* | |
2279 | * fields corresponding to attributes that were used to store the verifier. | |
2280 | * Make sure we clobber those fields in the later setattr call | |
2281 | */ | |
2282 | static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr) | |
2283 | { | |
2284 | if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) && | |
2285 | !(sattr->ia_valid & ATTR_ATIME_SET)) | |
2286 | sattr->ia_valid |= ATTR_ATIME; | |
2287 | ||
2288 | if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) && | |
2289 | !(sattr->ia_valid & ATTR_MTIME_SET)) | |
2290 | sattr->ia_valid |= ATTR_MTIME; | |
2291 | } | |
2292 | ||
c21443c2 TM |
2293 | static int _nfs4_open_and_get_state(struct nfs4_opendata *opendata, |
2294 | fmode_t fmode, | |
2295 | int flags, | |
3efb9722 | 2296 | struct nfs_open_context *ctx) |
c21443c2 TM |
2297 | { |
2298 | struct nfs4_state_owner *sp = opendata->owner; | |
2299 | struct nfs_server *server = sp->so_server; | |
275bb307 | 2300 | struct dentry *dentry; |
c21443c2 TM |
2301 | struct nfs4_state *state; |
2302 | unsigned int seq; | |
2303 | int ret; | |
2304 | ||
2305 | seq = raw_seqcount_begin(&sp->so_reclaim_seqcount); | |
2306 | ||
2307 | ret = _nfs4_proc_open(opendata); | |
dca78001 | 2308 | if (ret != 0) |
c21443c2 TM |
2309 | goto out; |
2310 | ||
2311 | state = nfs4_opendata_to_nfs4_state(opendata); | |
2312 | ret = PTR_ERR(state); | |
2313 | if (IS_ERR(state)) | |
2314 | goto out; | |
2315 | if (server->caps & NFS_CAP_POSIX_LOCK) | |
2316 | set_bit(NFS_STATE_POSIX_LOCKS, &state->flags); | |
2317 | ||
275bb307 | 2318 | dentry = opendata->dentry; |
2b0143b5 | 2319 | if (d_really_is_negative(dentry)) { |
275bb307 TM |
2320 | /* FIXME: Is this d_drop() ever needed? */ |
2321 | d_drop(dentry); | |
2322 | dentry = d_add_unique(dentry, igrab(state->inode)); | |
2323 | if (dentry == NULL) { | |
2324 | dentry = opendata->dentry; | |
2325 | } else if (dentry != ctx->dentry) { | |
2326 | dput(ctx->dentry); | |
2327 | ctx->dentry = dget(dentry); | |
2328 | } | |
2329 | nfs_set_verifier(dentry, | |
2b0143b5 | 2330 | nfs_save_change_attribute(d_inode(opendata->dir))); |
275bb307 TM |
2331 | } |
2332 | ||
c21443c2 TM |
2333 | ret = nfs4_opendata_access(sp->so_cred, opendata, state, fmode, flags); |
2334 | if (ret != 0) | |
2335 | goto out; | |
2336 | ||
3efb9722 | 2337 | ctx->state = state; |
2b0143b5 | 2338 | if (d_inode(dentry) == state->inode) { |
c45ffdd2 TM |
2339 | nfs_inode_attach_open_context(ctx); |
2340 | if (read_seqcount_retry(&sp->so_reclaim_seqcount, seq)) | |
2341 | nfs4_schedule_stateid_recovery(server, state); | |
2342 | } | |
c21443c2 TM |
2343 | out: |
2344 | return ret; | |
2345 | } | |
2346 | ||
1da177e4 | 2347 | /* |
24ac23ab | 2348 | * Returns a referenced nfs4_state |
1da177e4 | 2349 | */ |
82be417a | 2350 | static int _nfs4_do_open(struct inode *dir, |
4197a055 | 2351 | struct nfs_open_context *ctx, |
82be417a AA |
2352 | int flags, |
2353 | struct iattr *sattr, | |
5bc2afc2 TM |
2354 | struct nfs4_label *label, |
2355 | int *opened) | |
1da177e4 LT |
2356 | { |
2357 | struct nfs4_state_owner *sp; | |
2358 | struct nfs4_state *state = NULL; | |
2359 | struct nfs_server *server = NFS_SERVER(dir); | |
e56e0b78 | 2360 | struct nfs4_opendata *opendata; |
4197a055 TM |
2361 | struct dentry *dentry = ctx->dentry; |
2362 | struct rpc_cred *cred = ctx->cred; | |
2363 | struct nfs4_threshold **ctx_th = &ctx->mdsthreshold; | |
2364 | fmode_t fmode = ctx->mode & (FMODE_READ|FMODE_WRITE|FMODE_EXEC); | |
49f9a0fa | 2365 | enum open_claim_type4 claim = NFS4_OPEN_CLAIM_NULL; |
1775fd3e | 2366 | struct nfs4_label *olabel = NULL; |
aac00a8d | 2367 | int status; |
1da177e4 LT |
2368 | |
2369 | /* Protect against reboot recovery conflicts */ | |
1da177e4 | 2370 | status = -ENOMEM; |
d1e284d5 TM |
2371 | sp = nfs4_get_state_owner(server, cred, GFP_KERNEL); |
2372 | if (sp == NULL) { | |
1da177e4 LT |
2373 | dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n"); |
2374 | goto out_err; | |
2375 | } | |
58d9714a TM |
2376 | status = nfs4_recover_expired_lease(server); |
2377 | if (status != 0) | |
b4454fe1 | 2378 | goto err_put_state_owner; |
2b0143b5 DH |
2379 | if (d_really_is_positive(dentry)) |
2380 | nfs4_return_incompatible_delegation(d_inode(dentry), fmode); | |
58d9714a | 2381 | status = -ENOMEM; |
2b0143b5 | 2382 | if (d_really_is_positive(dentry)) |
49f9a0fa | 2383 | claim = NFS4_OPEN_CLAIM_FH; |
4a1c0893 | 2384 | opendata = nfs4_opendata_alloc(dentry, sp, fmode, flags, sattr, |
1775fd3e | 2385 | label, claim, GFP_KERNEL); |
e56e0b78 | 2386 | if (opendata == NULL) |
95d35cb4 | 2387 | goto err_put_state_owner; |
1da177e4 | 2388 | |
14c43f76 DQ |
2389 | if (label) { |
2390 | olabel = nfs4_label_alloc(server, GFP_KERNEL); | |
2391 | if (IS_ERR(olabel)) { | |
2392 | status = PTR_ERR(olabel); | |
2393 | goto err_opendata_put; | |
2394 | } | |
2395 | } | |
2396 | ||
e911b815 TM |
2397 | if (server->attr_bitmask[2] & FATTR4_WORD2_MDSTHRESHOLD) { |
2398 | if (!opendata->f_attr.mdsthreshold) { | |
2399 | opendata->f_attr.mdsthreshold = pnfs_mdsthreshold_alloc(); | |
2400 | if (!opendata->f_attr.mdsthreshold) | |
2401 | goto err_free_label; | |
2402 | } | |
1549210f | 2403 | opendata->o_arg.open_bitmap = &nfs4_pnfs_open_bitmap[0]; |
82be417a | 2404 | } |
2b0143b5 DH |
2405 | if (d_really_is_positive(dentry)) |
2406 | opendata->state = nfs4_get_open_state(d_inode(dentry), sp); | |
aac00a8d | 2407 | |
3efb9722 | 2408 | status = _nfs4_open_and_get_state(opendata, fmode, flags, ctx); |
6168f62c | 2409 | if (status != 0) |
14c43f76 | 2410 | goto err_free_label; |
3efb9722 | 2411 | state = ctx->state; |
6168f62c | 2412 | |
549b19cc TM |
2413 | if ((opendata->o_arg.open_flags & O_EXCL) && |
2414 | (opendata->o_arg.createmode != NFS4_CREATE_GUARDED)) { | |
0ab64e0e TM |
2415 | nfs4_exclusive_attrset(opendata, sattr); |
2416 | ||
2417 | nfs_fattr_init(opendata->o_res.f_attr); | |
2418 | status = nfs4_do_setattr(state->inode, cred, | |
2419 | opendata->o_res.f_attr, sattr, | |
1775fd3e DQ |
2420 | state, label, olabel); |
2421 | if (status == 0) { | |
f044636d TM |
2422 | nfs_setattr_update_inode(state->inode, sattr, |
2423 | opendata->o_res.f_attr); | |
aa9c2669 | 2424 | nfs_setsecurity(state->inode, opendata->o_res.f_attr, olabel); |
1775fd3e | 2425 | } |
0ab64e0e | 2426 | } |
5bc2afc2 TM |
2427 | if (opendata->file_created) |
2428 | *opened |= FILE_CREATED; | |
82be417a | 2429 | |
e911b815 | 2430 | if (pnfs_use_threshold(ctx_th, opendata->f_attr.mdsthreshold, server)) { |
82be417a | 2431 | *ctx_th = opendata->f_attr.mdsthreshold; |
e911b815 TM |
2432 | opendata->f_attr.mdsthreshold = NULL; |
2433 | } | |
82be417a | 2434 | |
14c43f76 DQ |
2435 | nfs4_label_free(olabel); |
2436 | ||
c6d00e63 | 2437 | nfs4_opendata_put(opendata); |
1da177e4 | 2438 | nfs4_put_state_owner(sp); |
1da177e4 | 2439 | return 0; |
14c43f76 DQ |
2440 | err_free_label: |
2441 | nfs4_label_free(olabel); | |
c6d00e63 TM |
2442 | err_opendata_put: |
2443 | nfs4_opendata_put(opendata); | |
e56e0b78 TM |
2444 | err_put_state_owner: |
2445 | nfs4_put_state_owner(sp); | |
1da177e4 | 2446 | out_err: |
1da177e4 LT |
2447 | return status; |
2448 | } | |
2449 | ||
2450 | ||
82be417a | 2451 | static struct nfs4_state *nfs4_do_open(struct inode *dir, |
4197a055 | 2452 | struct nfs_open_context *ctx, |
82be417a AA |
2453 | int flags, |
2454 | struct iattr *sattr, | |
5bc2afc2 TM |
2455 | struct nfs4_label *label, |
2456 | int *opened) | |
1da177e4 | 2457 | { |
49f9a0fa | 2458 | struct nfs_server *server = NFS_SERVER(dir); |
1da177e4 LT |
2459 | struct nfs4_exception exception = { }; |
2460 | struct nfs4_state *res; | |
2461 | int status; | |
2462 | ||
2463 | do { | |
5bc2afc2 | 2464 | status = _nfs4_do_open(dir, ctx, flags, sattr, label, opened); |
3efb9722 | 2465 | res = ctx->state; |
42113a75 | 2466 | trace_nfs4_open_file(ctx, flags, status); |
1da177e4 LT |
2467 | if (status == 0) |
2468 | break; | |
2469 | /* NOTE: BAD_SEQID means the server and client disagree about the | |
2470 | * book-keeping w.r.t. state-changing operations | |
2471 | * (OPEN/CLOSE/LOCK/LOCKU...) | |
2472 | * It is actually a sign of a bug on the client or on the server. | |
2473 | * | |
2474 | * If we receive a BAD_SEQID error in the particular case of | |
cee54fc9 | 2475 | * doing an OPEN, we assume that nfs_increment_open_seqid() will |
1da177e4 LT |
2476 | * have unhashed the old state_owner for us, and that we can |
2477 | * therefore safely retry using a new one. We should still warn | |
2478 | * the user though... | |
2479 | */ | |
2480 | if (status == -NFS4ERR_BAD_SEQID) { | |
9a3ba432 | 2481 | pr_warn_ratelimited("NFS: v4 server %s " |
6f43ddcc TM |
2482 | " returned a bad sequence-id error!\n", |
2483 | NFS_SERVER(dir)->nfs_client->cl_hostname); | |
1da177e4 LT |
2484 | exception.retry = 1; |
2485 | continue; | |
2486 | } | |
550f5747 TM |
2487 | /* |
2488 | * BAD_STATEID on OPEN means that the server cancelled our | |
2489 | * state before it received the OPEN_CONFIRM. | |
2490 | * Recover by retrying the request as per the discussion | |
2491 | * on Page 181 of RFC3530. | |
2492 | */ | |
2493 | if (status == -NFS4ERR_BAD_STATEID) { | |
2494 | exception.retry = 1; | |
2495 | continue; | |
2496 | } | |
aac00a8d TM |
2497 | if (status == -EAGAIN) { |
2498 | /* We must have found a delegation */ | |
2499 | exception.retry = 1; | |
2500 | continue; | |
2501 | } | |
49f9a0fa TM |
2502 | if (nfs4_clear_cap_atomic_open_v1(server, status, &exception)) |
2503 | continue; | |
2504 | res = ERR_PTR(nfs4_handle_exception(server, | |
1da177e4 LT |
2505 | status, &exception)); |
2506 | } while (exception.retry); | |
2507 | return res; | |
2508 | } | |
2509 | ||
659bfcd6 TM |
2510 | static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred, |
2511 | struct nfs_fattr *fattr, struct iattr *sattr, | |
1775fd3e DQ |
2512 | struct nfs4_state *state, struct nfs4_label *ilabel, |
2513 | struct nfs4_label *olabel) | |
1da177e4 | 2514 | { |
3e4f6290 | 2515 | struct nfs_server *server = NFS_SERVER(inode); |
1da177e4 | 2516 | struct nfs_setattrargs arg = { |
3e4f6290 | 2517 | .fh = NFS_FH(inode), |
1da177e4 LT |
2518 | .iap = sattr, |
2519 | .server = server, | |
2520 | .bitmask = server->attr_bitmask, | |
1775fd3e | 2521 | .label = ilabel, |
1da177e4 LT |
2522 | }; |
2523 | struct nfs_setattrres res = { | |
2524 | .fattr = fattr, | |
1775fd3e | 2525 | .label = olabel, |
1da177e4 LT |
2526 | .server = server, |
2527 | }; | |
2528 | struct rpc_message msg = { | |
659bfcd6 TM |
2529 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR], |
2530 | .rpc_argp = &arg, | |
2531 | .rpc_resp = &res, | |
2532 | .rpc_cred = cred, | |
1da177e4 | 2533 | }; |
26e976a8 | 2534 | unsigned long timestamp = jiffies; |
ee3ae84e TM |
2535 | fmode_t fmode; |
2536 | bool truncate; | |
65e4308d | 2537 | int status; |
1da177e4 | 2538 | |
aa9c2669 DQ |
2539 | arg.bitmask = nfs4_bitmask(server, ilabel); |
2540 | if (ilabel) | |
2541 | arg.bitmask = nfs4_bitmask(server, olabel); | |
2542 | ||
0e574af1 | 2543 | nfs_fattr_init(fattr); |
1da177e4 | 2544 | |
ee3ae84e TM |
2545 | /* Servers should only apply open mode checks for file size changes */ |
2546 | truncate = (sattr->ia_valid & ATTR_SIZE) ? true : false; | |
2547 | fmode = truncate ? FMODE_WRITE : FMODE_READ; | |
2548 | ||
2549 | if (nfs4_copy_delegation_stateid(&arg.stateid, inode, fmode)) { | |
2550 | /* Use that stateid */ | |
0418dae1 | 2551 | } else if (truncate && state != NULL) { |
2a369153 TM |
2552 | struct nfs_lockowner lockowner = { |
2553 | .l_owner = current->files, | |
2554 | .l_pid = current->tgid, | |
2555 | }; | |
0418dae1 TM |
2556 | if (!nfs4_valid_open_stateid(state)) |
2557 | return -EBADF; | |
2558 | if (nfs4_select_rw_stateid(&arg.stateid, state, FMODE_WRITE, | |
2559 | &lockowner) == -EIO) | |
2560 | return -EBADF; | |
08e9eac4 | 2561 | } else |
f597c537 | 2562 | nfs4_stateid_copy(&arg.stateid, &zero_stateid); |
1da177e4 | 2563 | |
7c513058 | 2564 | status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1); |
26e976a8 TM |
2565 | if (status == 0 && state != NULL) |
2566 | renew_lease(server, timestamp); | |
65e4308d | 2567 | return status; |
1da177e4 LT |
2568 | } |
2569 | ||
659bfcd6 TM |
2570 | static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred, |
2571 | struct nfs_fattr *fattr, struct iattr *sattr, | |
1775fd3e DQ |
2572 | struct nfs4_state *state, struct nfs4_label *ilabel, |
2573 | struct nfs4_label *olabel) | |
1da177e4 | 2574 | { |
3e4f6290 | 2575 | struct nfs_server *server = NFS_SERVER(inode); |
a1d0b5ee TM |
2576 | struct nfs4_exception exception = { |
2577 | .state = state, | |
3114ea7a | 2578 | .inode = inode, |
a1d0b5ee | 2579 | }; |
1da177e4 LT |
2580 | int err; |
2581 | do { | |
1775fd3e | 2582 | err = _nfs4_do_setattr(inode, cred, fattr, sattr, state, ilabel, olabel); |
c1578b76 | 2583 | trace_nfs4_setattr(inode, err); |
451146be TM |
2584 | switch (err) { |
2585 | case -NFS4ERR_OPENMODE: | |
721ccfb7 TM |
2586 | if (!(sattr->ia_valid & ATTR_SIZE)) { |
2587 | pr_warn_once("NFSv4: server %s is incorrectly " | |
2588 | "applying open mode checks to " | |
2589 | "a SETATTR that is not " | |
2590 | "changing file size.\n", | |
2591 | server->nfs_client->cl_hostname); | |
2592 | } | |
451146be TM |
2593 | if (state && !(state->state & FMODE_WRITE)) { |
2594 | err = -EBADF; | |
2595 | if (sattr->ia_valid & ATTR_OPEN) | |
2596 | err = -EACCES; | |
2597 | goto out; | |
2598 | } | |
2599 | } | |
2600 | err = nfs4_handle_exception(server, err, &exception); | |
1da177e4 | 2601 | } while (exception.retry); |
451146be | 2602 | out: |
1da177e4 LT |
2603 | return err; |
2604 | } | |
2605 | ||
2606 | struct nfs4_closedata { | |
2607 | struct inode *inode; | |
2608 | struct nfs4_state *state; | |
2609 | struct nfs_closeargs arg; | |
2610 | struct nfs_closeres res; | |
516a6af6 | 2611 | struct nfs_fattr fattr; |
26e976a8 | 2612 | unsigned long timestamp; |
f7e8917a FI |
2613 | bool roc; |
2614 | u32 roc_barrier; | |
1da177e4 LT |
2615 | }; |
2616 | ||
963d8fe5 | 2617 | static void nfs4_free_closedata(void *data) |
9512135d | 2618 | { |
963d8fe5 TM |
2619 | struct nfs4_closedata *calldata = data; |
2620 | struct nfs4_state_owner *sp = calldata->state->owner; | |
643168c2 | 2621 | struct super_block *sb = calldata->state->inode->i_sb; |
9512135d | 2622 | |
f7e8917a FI |
2623 | if (calldata->roc) |
2624 | pnfs_roc_release(calldata->state->inode); | |
9512135d TM |
2625 | nfs4_put_open_state(calldata->state); |
2626 | nfs_free_seqid(calldata->arg.seqid); | |
9512135d | 2627 | nfs4_put_state_owner(sp); |
322b2b90 | 2628 | nfs_sb_deactive(sb); |
9512135d TM |
2629 | kfree(calldata); |
2630 | } | |
2631 | ||
963d8fe5 | 2632 | static void nfs4_close_done(struct rpc_task *task, void *data) |
1da177e4 | 2633 | { |
963d8fe5 | 2634 | struct nfs4_closedata *calldata = data; |
1da177e4 | 2635 | struct nfs4_state *state = calldata->state; |
1da177e4 | 2636 | struct nfs_server *server = NFS_SERVER(calldata->inode); |
412f6c4c | 2637 | nfs4_stateid *res_stateid = NULL; |
1da177e4 | 2638 | |
a3ca5651 | 2639 | dprintk("%s: begin!\n", __func__); |
14516c3a TM |
2640 | if (!nfs4_sequence_done(task, &calldata->res.seq_res)) |
2641 | return; | |
42113a75 | 2642 | trace_nfs4_close(state, &calldata->arg, &calldata->res, task->tk_status); |
1da177e4 LT |
2643 | /* hmm. we are done with the inode, and in the process of freeing |
2644 | * the state_owner. we keep this around to process errors | |
2645 | */ | |
1da177e4 LT |
2646 | switch (task->tk_status) { |
2647 | case 0: | |
412f6c4c TM |
2648 | res_stateid = &calldata->res.stateid; |
2649 | if (calldata->arg.fmode == 0 && calldata->roc) | |
f7e8917a FI |
2650 | pnfs_roc_set_barrier(state->inode, |
2651 | calldata->roc_barrier); | |
26e976a8 | 2652 | renew_lease(server, calldata->timestamp); |
412f6c4c | 2653 | break; |
69794ad7 | 2654 | case -NFS4ERR_ADMIN_REVOKED: |
1da177e4 | 2655 | case -NFS4ERR_STALE_STATEID: |
9e33bed5 TM |
2656 | case -NFS4ERR_OLD_STATEID: |
2657 | case -NFS4ERR_BAD_STATEID: | |
1da177e4 | 2658 | case -NFS4ERR_EXPIRED: |
566fcec6 | 2659 | if (!nfs4_stateid_match(&calldata->arg.stateid, |
369d6b7f | 2660 | &state->open_stateid)) { |
566fcec6 TM |
2661 | rpc_restart_call_prepare(task); |
2662 | goto out_release; | |
2663 | } | |
dc0b027d | 2664 | if (calldata->arg.fmode == 0) |
9e33bed5 | 2665 | break; |
1da177e4 | 2666 | default: |
8478eaa1 | 2667 | if (nfs4_async_handle_error(task, server, state, NULL) == -EAGAIN) { |
72211dbe | 2668 | rpc_restart_call_prepare(task); |
69794ad7 TM |
2669 | goto out_release; |
2670 | } | |
1da177e4 | 2671 | } |
412f6c4c | 2672 | nfs_clear_open_stateid(state, res_stateid, calldata->arg.fmode); |
69794ad7 | 2673 | out_release: |
72211dbe | 2674 | nfs_release_seqid(calldata->arg.seqid); |
516a6af6 | 2675 | nfs_refresh_inode(calldata->inode, calldata->res.fattr); |
a3ca5651 | 2676 | dprintk("%s: done, ret = %d!\n", __func__, task->tk_status); |
1da177e4 LT |
2677 | } |
2678 | ||
4ce70ada | 2679 | static void nfs4_close_prepare(struct rpc_task *task, void *data) |
1da177e4 | 2680 | { |
4ce70ada | 2681 | struct nfs4_closedata *calldata = data; |
9512135d | 2682 | struct nfs4_state *state = calldata->state; |
7fdab069 | 2683 | struct inode *inode = calldata->inode; |
aee7af35 | 2684 | bool is_rdonly, is_wronly, is_rdwr; |
88069f77 | 2685 | int call_close = 0; |
9512135d | 2686 | |
a3ca5651 | 2687 | dprintk("%s: begin!\n", __func__); |
963d8fe5 | 2688 | if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0) |
c8da19b9 | 2689 | goto out_wait; |
003707c7 | 2690 | |
88069f77 | 2691 | task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE]; |
4cecb76f | 2692 | spin_lock(&state->owner->so_lock); |
aee7af35 TM |
2693 | is_rdwr = test_bit(NFS_O_RDWR_STATE, &state->flags); |
2694 | is_rdonly = test_bit(NFS_O_RDONLY_STATE, &state->flags); | |
2695 | is_wronly = test_bit(NFS_O_WRONLY_STATE, &state->flags); | |
369d6b7f | 2696 | nfs4_stateid_copy(&calldata->arg.stateid, &state->open_stateid); |
003707c7 | 2697 | /* Calculate the change in open mode */ |
cd9288ff | 2698 | calldata->arg.fmode = 0; |
e7616923 | 2699 | if (state->n_rdwr == 0) { |
cd9288ff TM |
2700 | if (state->n_rdonly == 0) |
2701 | call_close |= is_rdonly; | |
2702 | else if (is_rdonly) | |
2703 | calldata->arg.fmode |= FMODE_READ; | |
2704 | if (state->n_wronly == 0) | |
2705 | call_close |= is_wronly; | |
2706 | else if (is_wronly) | |
2707 | calldata->arg.fmode |= FMODE_WRITE; | |
2708 | } else if (is_rdwr) | |
2709 | calldata->arg.fmode |= FMODE_READ|FMODE_WRITE; | |
2710 | ||
2711 | if (calldata->arg.fmode == 0) | |
2712 | call_close |= is_rdwr; | |
2713 | ||
5d422301 TM |
2714 | if (!nfs4_valid_open_stateid(state)) |
2715 | call_close = 0; | |
4cecb76f | 2716 | spin_unlock(&state->owner->so_lock); |
88069f77 TM |
2717 | |
2718 | if (!call_close) { | |
963d8fe5 | 2719 | /* Note: exit _without_ calling nfs4_close_done */ |
c8da19b9 | 2720 | goto out_no_action; |
9512135d | 2721 | } |
88069f77 | 2722 | |
f7e8917a | 2723 | if (calldata->arg.fmode == 0) { |
88069f77 | 2724 | task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE]; |
f7e8917a | 2725 | if (calldata->roc && |
b9536ad5 AA |
2726 | pnfs_roc_drain(inode, &calldata->roc_barrier, task)) { |
2727 | nfs_release_seqid(calldata->arg.seqid); | |
c8da19b9 | 2728 | goto out_wait; |
b9536ad5 | 2729 | } |
f7e8917a | 2730 | } |
6ae37339 TM |
2731 | calldata->arg.share_access = |
2732 | nfs4_map_atomic_open_share(NFS_SERVER(inode), | |
2733 | calldata->arg.fmode, 0); | |
88069f77 | 2734 | |
516a6af6 | 2735 | nfs_fattr_init(calldata->res.fattr); |
26e976a8 | 2736 | calldata->timestamp = jiffies; |
7fdab069 | 2737 | if (nfs4_setup_sequence(NFS_SERVER(inode), |
9d12b216 TM |
2738 | &calldata->arg.seq_args, |
2739 | &calldata->res.seq_res, | |
2240a9e2 TM |
2740 | task) != 0) |
2741 | nfs_release_seqid(calldata->arg.seqid); | |
a3ca5651 | 2742 | dprintk("%s: done!\n", __func__); |
c8da19b9 TM |
2743 | return; |
2744 | out_no_action: | |
2745 | task->tk_action = NULL; | |
2746 | out_wait: | |
2747 | nfs4_sequence_done(task, &calldata->res.seq_res); | |
1da177e4 LT |
2748 | } |
2749 | ||
963d8fe5 | 2750 | static const struct rpc_call_ops nfs4_close_ops = { |
4ce70ada | 2751 | .rpc_call_prepare = nfs4_close_prepare, |
963d8fe5 TM |
2752 | .rpc_call_done = nfs4_close_done, |
2753 | .rpc_release = nfs4_free_closedata, | |
2754 | }; | |
2755 | ||
fe08c546 PT |
2756 | static bool nfs4_roc(struct inode *inode) |
2757 | { | |
40dd4b7a | 2758 | if (!nfs_have_layout(inode)) |
fe08c546 | 2759 | return false; |
fe08c546 PT |
2760 | return pnfs_roc(inode); |
2761 | } | |
2762 | ||
1da177e4 LT |
2763 | /* |
2764 | * It is possible for data to be read/written from a mem-mapped file | |
2765 | * after the sys_close call (which hits the vfs layer as a flush). | |
2766 | * This means that we can't safely call nfsv4 close on a file until | |
2767 | * the inode is cleared. This in turn means that we are not good | |
2768 | * NFSv4 citizens - we do not indicate to the server to update the file's | |
2769 | * share state even when we are done with one of the three share | |
2770 | * stateid's in the inode. | |
2771 | * | |
2772 | * NOTE: Caller must be holding the sp->so_owner semaphore! | |
2773 | */ | |
1f7977c1 | 2774 | int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait) |
1da177e4 | 2775 | { |
4a35bd41 | 2776 | struct nfs_server *server = NFS_SERVER(state->inode); |
63f5f796 | 2777 | struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); |
1da177e4 | 2778 | struct nfs4_closedata *calldata; |
b39e625b TM |
2779 | struct nfs4_state_owner *sp = state->owner; |
2780 | struct rpc_task *task; | |
5138fde0 TM |
2781 | struct rpc_message msg = { |
2782 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE], | |
2783 | .rpc_cred = state->owner->so_cred, | |
2784 | }; | |
c970aa85 TM |
2785 | struct rpc_task_setup task_setup_data = { |
2786 | .rpc_client = server->client, | |
5138fde0 | 2787 | .rpc_message = &msg, |
c970aa85 | 2788 | .callback_ops = &nfs4_close_ops, |
101070ca | 2789 | .workqueue = nfsiod_workqueue, |
c970aa85 TM |
2790 | .flags = RPC_TASK_ASYNC, |
2791 | }; | |
9512135d | 2792 | int status = -ENOMEM; |
1da177e4 | 2793 | |
fa940720 WAA |
2794 | nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_CLEANUP, |
2795 | &task_setup_data.rpc_client, &msg); | |
2796 | ||
8535b2be | 2797 | calldata = kzalloc(sizeof(*calldata), gfp_mask); |
1da177e4 | 2798 | if (calldata == NULL) |
9512135d | 2799 | goto out; |
a9c92d6b | 2800 | nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 1); |
4a35bd41 | 2801 | calldata->inode = state->inode; |
1da177e4 | 2802 | calldata->state = state; |
4a35bd41 | 2803 | calldata->arg.fh = NFS_FH(state->inode); |
1da177e4 | 2804 | /* Serialization for the sequence id */ |
63f5f796 TM |
2805 | alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid; |
2806 | calldata->arg.seqid = alloc_seqid(&state->owner->so_seqid, gfp_mask); | |
badc76dd | 2807 | if (IS_ERR(calldata->arg.seqid)) |
9512135d | 2808 | goto out_free_calldata; |
dc0b027d | 2809 | calldata->arg.fmode = 0; |
a65318bf | 2810 | calldata->arg.bitmask = server->cache_consistency_bitmask; |
516a6af6 | 2811 | calldata->res.fattr = &calldata->fattr; |
c1d51931 | 2812 | calldata->res.seqid = calldata->arg.seqid; |
516a6af6 | 2813 | calldata->res.server = server; |
fe08c546 | 2814 | calldata->roc = nfs4_roc(state->inode); |
643168c2 | 2815 | nfs_sb_active(calldata->inode->i_sb); |
9512135d | 2816 | |
1174dd1f TM |
2817 | msg.rpc_argp = &calldata->arg; |
2818 | msg.rpc_resp = &calldata->res; | |
c970aa85 TM |
2819 | task_setup_data.callback_data = calldata; |
2820 | task = rpc_run_task(&task_setup_data); | |
b39e625b TM |
2821 | if (IS_ERR(task)) |
2822 | return PTR_ERR(task); | |
a49c3c77 TM |
2823 | status = 0; |
2824 | if (wait) | |
2825 | status = rpc_wait_for_completion_task(task); | |
b39e625b | 2826 | rpc_put_task(task); |
a49c3c77 | 2827 | return status; |
9512135d TM |
2828 | out_free_calldata: |
2829 | kfree(calldata); | |
2830 | out: | |
b39e625b TM |
2831 | nfs4_put_open_state(state); |
2832 | nfs4_put_state_owner(sp); | |
9512135d | 2833 | return status; |
1da177e4 LT |
2834 | } |
2835 | ||
2b484297 | 2836 | static struct inode * |
5bc2afc2 TM |
2837 | nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx, |
2838 | int open_flags, struct iattr *attr, int *opened) | |
1da177e4 | 2839 | { |
1da177e4 | 2840 | struct nfs4_state *state; |
aa9c2669 DQ |
2841 | struct nfs4_label l = {0, 0, 0, NULL}, *label = NULL; |
2842 | ||
2843 | label = nfs4_label_init_security(dir, ctx->dentry, attr, &l); | |
1da177e4 | 2844 | |
565277f6 | 2845 | /* Protect against concurrent sillydeletes */ |
5bc2afc2 | 2846 | state = nfs4_do_open(dir, ctx, open_flags, attr, label, opened); |
aa9c2669 DQ |
2847 | |
2848 | nfs4_label_release_security(label); | |
2849 | ||
f46e0bd3 TM |
2850 | if (IS_ERR(state)) |
2851 | return ERR_CAST(state); | |
275bb307 | 2852 | return state->inode; |
1da177e4 LT |
2853 | } |
2854 | ||
1185a552 | 2855 | static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync) |
7fe5c398 TM |
2856 | { |
2857 | if (ctx->state == NULL) | |
2858 | return; | |
2859 | if (is_sync) | |
643168c2 | 2860 | nfs4_close_sync(ctx->state, ctx->mode); |
7fe5c398 | 2861 | else |
643168c2 | 2862 | nfs4_close_state(ctx->state, ctx->mode); |
7fe5c398 | 2863 | } |
1da177e4 | 2864 | |
b944dba3 TM |
2865 | #define FATTR4_WORD1_NFS40_MASK (2*FATTR4_WORD1_MOUNTED_ON_FILEID - 1UL) |
2866 | #define FATTR4_WORD2_NFS41_MASK (2*FATTR4_WORD2_SUPPATTR_EXCLCREAT - 1UL) | |
999e5683 | 2867 | #define FATTR4_WORD2_NFS42_MASK (2*FATTR4_WORD2_SECURITY_LABEL - 1UL) |
b944dba3 | 2868 | |
1da177e4 LT |
2869 | static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle) |
2870 | { | |
43652ad5 BH |
2871 | struct nfs4_server_caps_arg args = { |
2872 | .fhandle = fhandle, | |
2873 | }; | |
1da177e4 LT |
2874 | struct nfs4_server_caps_res res = {}; |
2875 | struct rpc_message msg = { | |
2876 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS], | |
43652ad5 | 2877 | .rpc_argp = &args, |
1da177e4 LT |
2878 | .rpc_resp = &res, |
2879 | }; | |
2880 | int status; | |
2881 | ||
7c513058 | 2882 | status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
1da177e4 | 2883 | if (status == 0) { |
b944dba3 TM |
2884 | /* Sanity check the server answers */ |
2885 | switch (server->nfs_client->cl_minorversion) { | |
2886 | case 0: | |
2887 | res.attr_bitmask[1] &= FATTR4_WORD1_NFS40_MASK; | |
2888 | res.attr_bitmask[2] = 0; | |
2889 | break; | |
2890 | case 1: | |
2891 | res.attr_bitmask[2] &= FATTR4_WORD2_NFS41_MASK; | |
2892 | break; | |
2893 | case 2: | |
2894 | res.attr_bitmask[2] &= FATTR4_WORD2_NFS42_MASK; | |
2895 | } | |
1da177e4 | 2896 | memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask)); |
62ab460c TM |
2897 | server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS| |
2898 | NFS_CAP_SYMLINKS|NFS_CAP_FILEID| | |
2899 | NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER| | |
2900 | NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME| | |
b944dba3 TM |
2901 | NFS_CAP_CTIME|NFS_CAP_MTIME| |
2902 | NFS_CAP_SECURITY_LABEL); | |
7dd7d959 MN |
2903 | if (res.attr_bitmask[0] & FATTR4_WORD0_ACL && |
2904 | res.acl_bitmask & ACL4_SUPPORT_ALLOW_ACL) | |
1da177e4 LT |
2905 | server->caps |= NFS_CAP_ACLS; |
2906 | if (res.has_links != 0) | |
2907 | server->caps |= NFS_CAP_HARDLINKS; | |
2908 | if (res.has_symlinks != 0) | |
2909 | server->caps |= NFS_CAP_SYMLINKS; | |
62ab460c TM |
2910 | if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID) |
2911 | server->caps |= NFS_CAP_FILEID; | |
2912 | if (res.attr_bitmask[1] & FATTR4_WORD1_MODE) | |
2913 | server->caps |= NFS_CAP_MODE; | |
2914 | if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS) | |
2915 | server->caps |= NFS_CAP_NLINK; | |
2916 | if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER) | |
2917 | server->caps |= NFS_CAP_OWNER; | |
2918 | if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP) | |
2919 | server->caps |= NFS_CAP_OWNER_GROUP; | |
2920 | if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS) | |
2921 | server->caps |= NFS_CAP_ATIME; | |
2922 | if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA) | |
2923 | server->caps |= NFS_CAP_CTIME; | |
2924 | if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY) | |
2925 | server->caps |= NFS_CAP_MTIME; | |
aa9c2669 DQ |
2926 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
2927 | if (res.attr_bitmask[2] & FATTR4_WORD2_SECURITY_LABEL) | |
2928 | server->caps |= NFS_CAP_SECURITY_LABEL; | |
2929 | #endif | |
2930 | memcpy(server->attr_bitmask_nl, res.attr_bitmask, | |
2931 | sizeof(server->attr_bitmask)); | |
b944dba3 | 2932 | server->attr_bitmask_nl[2] &= ~FATTR4_WORD2_SECURITY_LABEL; |
62ab460c | 2933 | |
a65318bf TM |
2934 | memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask)); |
2935 | server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE; | |
2936 | server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY; | |
b944dba3 | 2937 | server->cache_consistency_bitmask[2] = 0; |
1da177e4 | 2938 | server->acl_bitmask = res.acl_bitmask; |
264e6351 | 2939 | server->fh_expire_type = res.fh_expire_type; |
1da177e4 | 2940 | } |
cccef3b9 | 2941 | |
1da177e4 LT |
2942 | return status; |
2943 | } | |
2944 | ||
55a97593 | 2945 | int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle) |
1da177e4 LT |
2946 | { |
2947 | struct nfs4_exception exception = { }; | |
2948 | int err; | |
2949 | do { | |
2950 | err = nfs4_handle_exception(server, | |
2951 | _nfs4_server_capabilities(server, fhandle), | |
2952 | &exception); | |
2953 | } while (exception.retry); | |
2954 | return err; | |
2955 | } | |
2956 | ||
2957 | static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle, | |
2958 | struct nfs_fsinfo *info) | |
2959 | { | |
aa9c2669 | 2960 | u32 bitmask[3]; |
1da177e4 | 2961 | struct nfs4_lookup_root_arg args = { |
aa9c2669 | 2962 | .bitmask = bitmask, |
1da177e4 LT |
2963 | }; |
2964 | struct nfs4_lookup_res res = { | |
2965 | .server = server, | |
0e574af1 | 2966 | .fattr = info->fattr, |
1da177e4 LT |
2967 | .fh = fhandle, |
2968 | }; | |
2969 | struct rpc_message msg = { | |
2970 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT], | |
2971 | .rpc_argp = &args, | |
2972 | .rpc_resp = &res, | |
2973 | }; | |
008f55d0 | 2974 | |
aa9c2669 DQ |
2975 | bitmask[0] = nfs4_fattr_bitmap[0]; |
2976 | bitmask[1] = nfs4_fattr_bitmap[1]; | |
2977 | /* | |
2978 | * Process the label in the upcoming getfattr | |
2979 | */ | |
2980 | bitmask[2] = nfs4_fattr_bitmap[2] & ~FATTR4_WORD2_SECURITY_LABEL; | |
2981 | ||
0e574af1 | 2982 | nfs_fattr_init(info->fattr); |
7c513058 | 2983 | return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
1da177e4 LT |
2984 | } |
2985 | ||
2986 | static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle, | |
2987 | struct nfs_fsinfo *info) | |
2988 | { | |
2989 | struct nfs4_exception exception = { }; | |
2990 | int err; | |
2991 | do { | |
fb8a5ba8 | 2992 | err = _nfs4_lookup_root(server, fhandle, info); |
b5f875a9 | 2993 | trace_nfs4_lookup_root(server, fhandle, info->fattr, err); |
fb8a5ba8 BS |
2994 | switch (err) { |
2995 | case 0: | |
2996 | case -NFS4ERR_WRONGSEC: | |
05e9cfb4 | 2997 | goto out; |
fb8a5ba8 BS |
2998 | default: |
2999 | err = nfs4_handle_exception(server, err, &exception); | |
3000 | } | |
1da177e4 | 3001 | } while (exception.retry); |
05e9cfb4 | 3002 | out: |
1da177e4 LT |
3003 | return err; |
3004 | } | |
3005 | ||
8f70e95f BS |
3006 | static int nfs4_lookup_root_sec(struct nfs_server *server, struct nfs_fh *fhandle, |
3007 | struct nfs_fsinfo *info, rpc_authflavor_t flavor) | |
3008 | { | |
c2190661 TM |
3009 | struct rpc_auth_create_args auth_args = { |
3010 | .pseudoflavor = flavor, | |
3011 | }; | |
8f70e95f BS |
3012 | struct rpc_auth *auth; |
3013 | int ret; | |
3014 | ||
c2190661 | 3015 | auth = rpcauth_create(&auth_args, server->client); |
e8d920c5 | 3016 | if (IS_ERR(auth)) { |
75bc8821 | 3017 | ret = -EACCES; |
8f70e95f BS |
3018 | goto out; |
3019 | } | |
3020 | ret = nfs4_lookup_root(server, fhandle, info); | |
8f70e95f BS |
3021 | out: |
3022 | return ret; | |
3023 | } | |
3024 | ||
9a744ba3 CL |
3025 | /* |
3026 | * Retry pseudoroot lookup with various security flavors. We do this when: | |
3027 | * | |
3028 | * NFSv4.0: the PUTROOTFH operation returns NFS4ERR_WRONGSEC | |
3029 | * NFSv4.1: the server does not support the SECINFO_NO_NAME operation | |
3030 | * | |
3031 | * Returns zero on success, or a negative NFS4ERR value, or a | |
3032 | * negative errno value. | |
3033 | */ | |
801a16dc | 3034 | static int nfs4_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle, |
54ceac45 | 3035 | struct nfs_fsinfo *info) |
1da177e4 | 3036 | { |
9a744ba3 CL |
3037 | /* Per 3530bis 15.33.5 */ |
3038 | static const rpc_authflavor_t flav_array[] = { | |
3039 | RPC_AUTH_GSS_KRB5P, | |
3040 | RPC_AUTH_GSS_KRB5I, | |
3041 | RPC_AUTH_GSS_KRB5, | |
c4eafe11 | 3042 | RPC_AUTH_UNIX, /* courtesy */ |
9a744ba3 CL |
3043 | RPC_AUTH_NULL, |
3044 | }; | |
3045 | int status = -EPERM; | |
3046 | size_t i; | |
6a1a1e34 | 3047 | |
4d4b69dd WAA |
3048 | if (server->auth_info.flavor_len > 0) { |
3049 | /* try each flavor specified by user */ | |
3050 | for (i = 0; i < server->auth_info.flavor_len; i++) { | |
3051 | status = nfs4_lookup_root_sec(server, fhandle, info, | |
3052 | server->auth_info.flavors[i]); | |
3053 | if (status == -NFS4ERR_WRONGSEC || status == -EACCES) | |
3054 | continue; | |
3055 | break; | |
3056 | } | |
3057 | } else { | |
3058 | /* no flavors specified by user, try default list */ | |
3059 | for (i = 0; i < ARRAY_SIZE(flav_array); i++) { | |
3060 | status = nfs4_lookup_root_sec(server, fhandle, info, | |
3061 | flav_array[i]); | |
3062 | if (status == -NFS4ERR_WRONGSEC || status == -EACCES) | |
3063 | continue; | |
3064 | break; | |
3065 | } | |
8f70e95f | 3066 | } |
9a744ba3 | 3067 | |
fb8a5ba8 BS |
3068 | /* |
3069 | * -EACCESS could mean that the user doesn't have correct permissions | |
3070 | * to access the mount. It could also mean that we tried to mount | |
3071 | * with a gss auth flavor, but rpc.gssd isn't running. Either way, | |
3072 | * existing mount programs don't handle -EACCES very well so it should | |
3073 | * be mapped to -EPERM instead. | |
3074 | */ | |
3075 | if (status == -EACCES) | |
3076 | status = -EPERM; | |
801a16dc BS |
3077 | return status; |
3078 | } | |
3079 | ||
2ed4b95b CL |
3080 | static int nfs4_do_find_root_sec(struct nfs_server *server, |
3081 | struct nfs_fh *fhandle, struct nfs_fsinfo *info) | |
3082 | { | |
3083 | int mv = server->nfs_client->cl_minorversion; | |
3084 | return nfs_v4_minor_ops[mv]->find_root_sec(server, fhandle, info); | |
3085 | } | |
3086 | ||
3087 | /** | |
3088 | * nfs4_proc_get_rootfh - get file handle for server's pseudoroot | |
3089 | * @server: initialized nfs_server handle | |
3090 | * @fhandle: we fill in the pseudo-fs root file handle | |
3091 | * @info: we fill in an FSINFO struct | |
5e6b1990 | 3092 | * @auth_probe: probe the auth flavours |
2ed4b95b CL |
3093 | * |
3094 | * Returns zero on success, or a negative errno. | |
801a16dc | 3095 | */ |
3028eb2b | 3096 | int nfs4_proc_get_rootfh(struct nfs_server *server, struct nfs_fh *fhandle, |
5e6b1990 TM |
3097 | struct nfs_fsinfo *info, |
3098 | bool auth_probe) | |
801a16dc | 3099 | { |
c7757074 | 3100 | int status = 0; |
2ed4b95b | 3101 | |
c7757074 | 3102 | if (!auth_probe) |
5e6b1990 | 3103 | status = nfs4_lookup_root(server, fhandle, info); |
c7757074 AP |
3104 | |
3105 | if (auth_probe || status == NFS4ERR_WRONGSEC) | |
2ed4b95b CL |
3106 | status = nfs4_do_find_root_sec(server, fhandle, info); |
3107 | ||
1da177e4 LT |
3108 | if (status == 0) |
3109 | status = nfs4_server_capabilities(server, fhandle); | |
3110 | if (status == 0) | |
3111 | status = nfs4_do_fsinfo(server, fhandle, info); | |
2ed4b95b | 3112 | |
c12e87f4 | 3113 | return nfs4_map_errors(status); |
1da177e4 LT |
3114 | } |
3115 | ||
bae36241 BS |
3116 | static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *mntfh, |
3117 | struct nfs_fsinfo *info) | |
3118 | { | |
3119 | int error; | |
3120 | struct nfs_fattr *fattr = info->fattr; | |
1775fd3e | 3121 | struct nfs4_label *label = NULL; |
bae36241 BS |
3122 | |
3123 | error = nfs4_server_capabilities(server, mntfh); | |
3124 | if (error < 0) { | |
3125 | dprintk("nfs4_get_root: getcaps error = %d\n", -error); | |
3126 | return error; | |
3127 | } | |
3128 | ||
14c43f76 DQ |
3129 | label = nfs4_label_alloc(server, GFP_KERNEL); |
3130 | if (IS_ERR(label)) | |
3131 | return PTR_ERR(label); | |
3132 | ||
1775fd3e | 3133 | error = nfs4_proc_getattr(server, mntfh, fattr, label); |
bae36241 BS |
3134 | if (error < 0) { |
3135 | dprintk("nfs4_get_root: getattr error = %d\n", -error); | |
14c43f76 | 3136 | goto err_free_label; |
bae36241 BS |
3137 | } |
3138 | ||
3139 | if (fattr->valid & NFS_ATTR_FATTR_FSID && | |
3140 | !nfs_fsid_equal(&server->fsid, &fattr->fsid)) | |
3141 | memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid)); | |
3142 | ||
14c43f76 DQ |
3143 | err_free_label: |
3144 | nfs4_label_free(label); | |
3145 | ||
bae36241 BS |
3146 | return error; |
3147 | } | |
3148 | ||
6b97fd3d MN |
3149 | /* |
3150 | * Get locations and (maybe) other attributes of a referral. | |
3151 | * Note that we'll actually follow the referral later when | |
3152 | * we detect fsid mismatch in inode revalidation | |
3153 | */ | |
f05d147f BS |
3154 | static int nfs4_get_referral(struct rpc_clnt *client, struct inode *dir, |
3155 | const struct qstr *name, struct nfs_fattr *fattr, | |
3156 | struct nfs_fh *fhandle) | |
6b97fd3d MN |
3157 | { |
3158 | int status = -ENOMEM; | |
3159 | struct page *page = NULL; | |
3160 | struct nfs4_fs_locations *locations = NULL; | |
6b97fd3d MN |
3161 | |
3162 | page = alloc_page(GFP_KERNEL); | |
3163 | if (page == NULL) | |
3164 | goto out; | |
3165 | locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL); | |
3166 | if (locations == NULL) | |
3167 | goto out; | |
3168 | ||
f05d147f | 3169 | status = nfs4_proc_fs_locations(client, dir, name, locations, page); |
6b97fd3d MN |
3170 | if (status != 0) |
3171 | goto out; | |
519ae255 CL |
3172 | |
3173 | /* | |
3174 | * If the fsid didn't change, this is a migration event, not a | |
3175 | * referral. Cause us to drop into the exception handler, which | |
3176 | * will kick off migration recovery. | |
3177 | */ | |
6b97fd3d | 3178 | if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) { |
533eb461 AA |
3179 | dprintk("%s: server did not return a different fsid for" |
3180 | " a referral at %s\n", __func__, name->name); | |
519ae255 | 3181 | status = -NFS4ERR_MOVED; |
6b97fd3d MN |
3182 | goto out; |
3183 | } | |
533eb461 AA |
3184 | /* Fixup attributes for the nfs_lookup() call to nfs_fhget() */ |
3185 | nfs_fixup_referral_attributes(&locations->fattr); | |
6b97fd3d | 3186 | |
533eb461 | 3187 | /* replace the lookup nfs_fattr with the locations nfs_fattr */ |
6b97fd3d | 3188 | memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr)); |
6b97fd3d MN |
3189 | memset(fhandle, 0, sizeof(struct nfs_fh)); |
3190 | out: | |
3191 | if (page) | |
3192 | __free_page(page); | |
5d7ca35a | 3193 | kfree(locations); |
6b97fd3d MN |
3194 | return status; |
3195 | } | |
3196 | ||
1775fd3e DQ |
3197 | static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, |
3198 | struct nfs_fattr *fattr, struct nfs4_label *label) | |
1da177e4 LT |
3199 | { |
3200 | struct nfs4_getattr_arg args = { | |
3201 | .fh = fhandle, | |
3202 | .bitmask = server->attr_bitmask, | |
3203 | }; | |
3204 | struct nfs4_getattr_res res = { | |
3205 | .fattr = fattr, | |
1775fd3e | 3206 | .label = label, |
1da177e4 LT |
3207 | .server = server, |
3208 | }; | |
3209 | struct rpc_message msg = { | |
3210 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR], | |
3211 | .rpc_argp = &args, | |
3212 | .rpc_resp = &res, | |
3213 | }; | |
aa9c2669 DQ |
3214 | |
3215 | args.bitmask = nfs4_bitmask(server, label); | |
3216 | ||
0e574af1 | 3217 | nfs_fattr_init(fattr); |
7c513058 | 3218 | return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
1da177e4 LT |
3219 | } |
3220 | ||
1775fd3e DQ |
3221 | static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, |
3222 | struct nfs_fattr *fattr, struct nfs4_label *label) | |
1da177e4 LT |
3223 | { |
3224 | struct nfs4_exception exception = { }; | |
3225 | int err; | |
3226 | do { | |
b5f875a9 TM |
3227 | err = _nfs4_proc_getattr(server, fhandle, fattr, label); |
3228 | trace_nfs4_getattr(server, fhandle, fattr, err); | |
3229 | err = nfs4_handle_exception(server, err, | |
1da177e4 LT |
3230 | &exception); |
3231 | } while (exception.retry); | |
3232 | return err; | |
3233 | } | |
3234 | ||
3235 | /* | |
3236 | * The file is not closed if it is opened due to the a request to change | |
3237 | * the size of the file. The open call will not be needed once the | |
3238 | * VFS layer lookup-intents are implemented. | |
3239 | * | |
3240 | * Close is called when the inode is destroyed. | |
3241 | * If we haven't opened the file for O_WRONLY, we | |
3242 | * need to in the size_change case to obtain a stateid. | |
3243 | * | |
3244 | * Got race? | |
3245 | * Because OPEN is always done by name in nfsv4, it is | |
3246 | * possible that we opened a different file by the same | |
3247 | * name. We can recognize this race condition, but we | |
3248 | * can't do anything about it besides returning an error. | |
3249 | * | |
3250 | * This will be fixed with VFS changes (lookup-intent). | |
3251 | */ | |
3252 | static int | |
3253 | nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr, | |
3254 | struct iattr *sattr) | |
3255 | { | |
2b0143b5 | 3256 | struct inode *inode = d_inode(dentry); |
659bfcd6 | 3257 | struct rpc_cred *cred = NULL; |
d530838b | 3258 | struct nfs4_state *state = NULL; |
14c43f76 | 3259 | struct nfs4_label *label = NULL; |
1da177e4 LT |
3260 | int status; |
3261 | ||
88ac815c PT |
3262 | if (pnfs_ld_layoutret_on_setattr(inode) && |
3263 | sattr->ia_valid & ATTR_SIZE && | |
3264 | sattr->ia_size < i_size_read(inode)) | |
24028672 | 3265 | pnfs_commit_and_return_layout(inode); |
8a1636c4 | 3266 | |
0e574af1 | 3267 | nfs_fattr_init(fattr); |
1da177e4 | 3268 | |
2669940d AA |
3269 | /* Deal with open(O_TRUNC) */ |
3270 | if (sattr->ia_valid & ATTR_OPEN) | |
cc7936f9 | 3271 | sattr->ia_valid &= ~(ATTR_MTIME|ATTR_CTIME); |
2669940d AA |
3272 | |
3273 | /* Optimization: if the end result is no change, don't RPC */ | |
cc7936f9 | 3274 | if ((sattr->ia_valid & ~(ATTR_FILE|ATTR_OPEN)) == 0) |
2669940d AA |
3275 | return 0; |
3276 | ||
d530838b | 3277 | /* Search for an existing open(O_WRITE) file */ |
659bfcd6 TM |
3278 | if (sattr->ia_valid & ATTR_FILE) { |
3279 | struct nfs_open_context *ctx; | |
3280 | ||
3281 | ctx = nfs_file_open_context(sattr->ia_file); | |
504e5189 NB |
3282 | if (ctx) { |
3283 | cred = ctx->cred; | |
3284 | state = ctx->state; | |
3285 | } | |
659bfcd6 | 3286 | } |
08e9eac4 | 3287 | |
14c43f76 DQ |
3288 | label = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL); |
3289 | if (IS_ERR(label)) | |
3290 | return PTR_ERR(label); | |
3291 | ||
3292 | status = nfs4_do_setattr(inode, cred, fattr, sattr, state, NULL, label); | |
aa9c2669 | 3293 | if (status == 0) { |
f044636d | 3294 | nfs_setattr_update_inode(inode, sattr, fattr); |
aa9c2669 DQ |
3295 | nfs_setsecurity(inode, fattr, label); |
3296 | } | |
14c43f76 | 3297 | nfs4_label_free(label); |
1da177e4 LT |
3298 | return status; |
3299 | } | |
3300 | ||
0c2e53f1 TM |
3301 | static int _nfs4_proc_lookup(struct rpc_clnt *clnt, struct inode *dir, |
3302 | const struct qstr *name, struct nfs_fh *fhandle, | |
1775fd3e | 3303 | struct nfs_fattr *fattr, struct nfs4_label *label) |
2b3de441 | 3304 | { |
0c2e53f1 | 3305 | struct nfs_server *server = NFS_SERVER(dir); |
2b3de441 DH |
3306 | int status; |
3307 | struct nfs4_lookup_arg args = { | |
3308 | .bitmask = server->attr_bitmask, | |
0c2e53f1 | 3309 | .dir_fh = NFS_FH(dir), |
2b3de441 DH |
3310 | .name = name, |
3311 | }; | |
3312 | struct nfs4_lookup_res res = { | |
3313 | .server = server, | |
3314 | .fattr = fattr, | |
aa9c2669 | 3315 | .label = label, |
2b3de441 DH |
3316 | .fh = fhandle, |
3317 | }; | |
3318 | struct rpc_message msg = { | |
3319 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP], | |
3320 | .rpc_argp = &args, | |
3321 | .rpc_resp = &res, | |
3322 | }; | |
3323 | ||
aa9c2669 DQ |
3324 | args.bitmask = nfs4_bitmask(server, label); |
3325 | ||
2b3de441 DH |
3326 | nfs_fattr_init(fattr); |
3327 | ||
1da177e4 | 3328 | dprintk("NFS call lookup %s\n", name->name); |
0c2e53f1 | 3329 | status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, &res.seq_res, 0); |
1da177e4 LT |
3330 | dprintk("NFS reply lookup: %d\n", status); |
3331 | return status; | |
3332 | } | |
3333 | ||
72de53ec | 3334 | static void nfs_fixup_secinfo_attributes(struct nfs_fattr *fattr) |
7ebb9315 | 3335 | { |
7ebb9315 | 3336 | fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE | |
72de53ec | 3337 | NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_MOUNTPOINT; |
7ebb9315 BS |
3338 | fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO; |
3339 | fattr->nlink = 2; | |
3340 | } | |
3341 | ||
72de53ec BS |
3342 | static int nfs4_proc_lookup_common(struct rpc_clnt **clnt, struct inode *dir, |
3343 | struct qstr *name, struct nfs_fh *fhandle, | |
1775fd3e | 3344 | struct nfs_fattr *fattr, struct nfs4_label *label) |
1da177e4 LT |
3345 | { |
3346 | struct nfs4_exception exception = { }; | |
72de53ec | 3347 | struct rpc_clnt *client = *clnt; |
1da177e4 LT |
3348 | int err; |
3349 | do { | |
1775fd3e | 3350 | err = _nfs4_proc_lookup(client, dir, name, fhandle, fattr, label); |
078ea3df | 3351 | trace_nfs4_lookup(dir, name, err); |
72de53ec | 3352 | switch (err) { |
08ef7bd3 | 3353 | case -NFS4ERR_BADNAME: |
72de53ec BS |
3354 | err = -ENOENT; |
3355 | goto out; | |
0c2e53f1 | 3356 | case -NFS4ERR_MOVED: |
f05d147f | 3357 | err = nfs4_get_referral(client, dir, name, fattr, fhandle); |
72de53ec | 3358 | goto out; |
0c2e53f1 | 3359 | case -NFS4ERR_WRONGSEC: |
72de53ec BS |
3360 | err = -EPERM; |
3361 | if (client != *clnt) | |
3362 | goto out; | |
66b06860 | 3363 | client = nfs4_negotiate_security(client, dir, name); |
72de53ec BS |
3364 | if (IS_ERR(client)) |
3365 | return PTR_ERR(client); | |
3366 | ||
3367 | exception.retry = 1; | |
3368 | break; | |
3369 | default: | |
3370 | err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception); | |
0c2e53f1 | 3371 | } |
1da177e4 | 3372 | } while (exception.retry); |
72de53ec BS |
3373 | |
3374 | out: | |
3375 | if (err == 0) | |
3376 | *clnt = client; | |
3377 | else if (client != *clnt) | |
3378 | rpc_shutdown_client(client); | |
3379 | ||
1da177e4 LT |
3380 | return err; |
3381 | } | |
3382 | ||
80a16b21 | 3383 | static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, |
1775fd3e DQ |
3384 | struct nfs_fh *fhandle, struct nfs_fattr *fattr, |
3385 | struct nfs4_label *label) | |
72de53ec BS |
3386 | { |
3387 | int status; | |
3388 | struct rpc_clnt *client = NFS_CLIENT(dir); | |
3389 | ||
1775fd3e | 3390 | status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, label); |
72de53ec BS |
3391 | if (client != NFS_CLIENT(dir)) { |
3392 | rpc_shutdown_client(client); | |
3393 | nfs_fixup_secinfo_attributes(fattr); | |
3394 | } | |
3395 | return status; | |
3396 | } | |
3397 | ||
f05d147f BS |
3398 | struct rpc_clnt * |
3399 | nfs4_proc_lookup_mountpoint(struct inode *dir, struct qstr *name, | |
3400 | struct nfs_fh *fhandle, struct nfs_fattr *fattr) | |
3401 | { | |
b72888cb | 3402 | struct rpc_clnt *client = NFS_CLIENT(dir); |
f05d147f | 3403 | int status; |
f05d147f | 3404 | |
1775fd3e | 3405 | status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, NULL); |
b72888cb | 3406 | if (status < 0) |
f05d147f | 3407 | return ERR_PTR(status); |
b72888cb | 3408 | return (client == NFS_CLIENT(dir)) ? rpc_clone_client(client) : client; |
f05d147f BS |
3409 | } |
3410 | ||
1da177e4 LT |
3411 | static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry) |
3412 | { | |
76b32999 | 3413 | struct nfs_server *server = NFS_SERVER(inode); |
1da177e4 LT |
3414 | struct nfs4_accessargs args = { |
3415 | .fh = NFS_FH(inode), | |
a4980e78 | 3416 | .bitmask = server->cache_consistency_bitmask, |
76b32999 TM |
3417 | }; |
3418 | struct nfs4_accessres res = { | |
3419 | .server = server, | |
1da177e4 | 3420 | }; |
1da177e4 LT |
3421 | struct rpc_message msg = { |
3422 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS], | |
3423 | .rpc_argp = &args, | |
3424 | .rpc_resp = &res, | |
3425 | .rpc_cred = entry->cred, | |
3426 | }; | |
3427 | int mode = entry->mask; | |
aa9c2669 | 3428 | int status = 0; |
1da177e4 LT |
3429 | |
3430 | /* | |
3431 | * Determine which access bits we want to ask for... | |
3432 | */ | |
3433 | if (mode & MAY_READ) | |
3434 | args.access |= NFS4_ACCESS_READ; | |
3435 | if (S_ISDIR(inode->i_mode)) { | |
3436 | if (mode & MAY_WRITE) | |
3437 | args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE; | |
3438 | if (mode & MAY_EXEC) | |
3439 | args.access |= NFS4_ACCESS_LOOKUP; | |
3440 | } else { | |
3441 | if (mode & MAY_WRITE) | |
3442 | args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND; | |
3443 | if (mode & MAY_EXEC) | |
3444 | args.access |= NFS4_ACCESS_EXECUTE; | |
3445 | } | |
c407d41a TM |
3446 | |
3447 | res.fattr = nfs_alloc_fattr(); | |
3448 | if (res.fattr == NULL) | |
3449 | return -ENOMEM; | |
3450 | ||
7c513058 | 3451 | status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
1da177e4 | 3452 | if (!status) { |
6168f62c | 3453 | nfs_access_set_mask(entry, res.access); |
c407d41a | 3454 | nfs_refresh_inode(inode, res.fattr); |
1da177e4 | 3455 | } |
c407d41a | 3456 | nfs_free_fattr(res.fattr); |
1da177e4 LT |
3457 | return status; |
3458 | } | |
3459 | ||
3460 | static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry) | |
3461 | { | |
3462 | struct nfs4_exception exception = { }; | |
3463 | int err; | |
3464 | do { | |
c1578b76 TM |
3465 | err = _nfs4_proc_access(inode, entry); |
3466 | trace_nfs4_access(inode, err); | |
3467 | err = nfs4_handle_exception(NFS_SERVER(inode), err, | |
1da177e4 LT |
3468 | &exception); |
3469 | } while (exception.retry); | |
3470 | return err; | |
3471 | } | |
3472 | ||
3473 | /* | |
3474 | * TODO: For the time being, we don't try to get any attributes | |
3475 | * along with any of the zero-copy operations READ, READDIR, | |
3476 | * READLINK, WRITE. | |
3477 | * | |
3478 | * In the case of the first three, we want to put the GETATTR | |
3479 | * after the read-type operation -- this is because it is hard | |
3480 | * to predict the length of a GETATTR response in v4, and thus | |
3481 | * align the READ data correctly. This means that the GETATTR | |
3482 | * may end up partially falling into the page cache, and we should | |
3483 | * shift it into the 'tail' of the xdr_buf before processing. | |
3484 | * To do this efficiently, we need to know the total length | |
3485 | * of data received, which doesn't seem to be available outside | |
3486 | * of the RPC layer. | |
3487 | * | |
3488 | * In the case of WRITE, we also want to put the GETATTR after | |
3489 | * the operation -- in this case because we want to make sure | |
140150db | 3490 | * we get the post-operation mtime and size. |
1da177e4 LT |
3491 | * |
3492 | * Both of these changes to the XDR layer would in fact be quite | |
3493 | * minor, but I decided to leave them for a subsequent patch. | |
3494 | */ | |
3495 | static int _nfs4_proc_readlink(struct inode *inode, struct page *page, | |
3496 | unsigned int pgbase, unsigned int pglen) | |
3497 | { | |
3498 | struct nfs4_readlink args = { | |
3499 | .fh = NFS_FH(inode), | |
3500 | .pgbase = pgbase, | |
3501 | .pglen = pglen, | |
3502 | .pages = &page, | |
3503 | }; | |
f50c7000 | 3504 | struct nfs4_readlink_res res; |
1da177e4 LT |
3505 | struct rpc_message msg = { |
3506 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK], | |
3507 | .rpc_argp = &args, | |
f50c7000 | 3508 | .rpc_resp = &res, |
1da177e4 LT |
3509 | }; |
3510 | ||
7c513058 | 3511 | return nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), &msg, &args.seq_args, &res.seq_res, 0); |
1da177e4 LT |
3512 | } |
3513 | ||
3514 | static int nfs4_proc_readlink(struct inode *inode, struct page *page, | |
3515 | unsigned int pgbase, unsigned int pglen) | |
3516 | { | |
3517 | struct nfs4_exception exception = { }; | |
3518 | int err; | |
3519 | do { | |
c1578b76 TM |
3520 | err = _nfs4_proc_readlink(inode, page, pgbase, pglen); |
3521 | trace_nfs4_readlink(inode, err); | |
3522 | err = nfs4_handle_exception(NFS_SERVER(inode), err, | |
1da177e4 LT |
3523 | &exception); |
3524 | } while (exception.retry); | |
3525 | return err; | |
3526 | } | |
3527 | ||
1da177e4 | 3528 | /* |
8867fe58 | 3529 | * This is just for mknod. open(O_CREAT) will always do ->open_context(). |
1da177e4 | 3530 | */ |
1da177e4 LT |
3531 | static int |
3532 | nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr, | |
8867fe58 | 3533 | int flags) |
1da177e4 | 3534 | { |
aa9c2669 | 3535 | struct nfs4_label l, *ilabel = NULL; |
8867fe58 | 3536 | struct nfs_open_context *ctx; |
1da177e4 | 3537 | struct nfs4_state *state; |
5bc2afc2 | 3538 | int opened = 0; |
1da177e4 LT |
3539 | int status = 0; |
3540 | ||
8867fe58 MS |
3541 | ctx = alloc_nfs_open_context(dentry, FMODE_READ); |
3542 | if (IS_ERR(ctx)) | |
3543 | return PTR_ERR(ctx); | |
3544 | ||
aa9c2669 DQ |
3545 | ilabel = nfs4_label_init_security(dir, dentry, sattr, &l); |
3546 | ||
a8a5da99 | 3547 | sattr->ia_mode &= ~current_umask(); |
5bc2afc2 | 3548 | state = nfs4_do_open(dir, ctx, flags, sattr, ilabel, &opened); |
1da177e4 LT |
3549 | if (IS_ERR(state)) { |
3550 | status = PTR_ERR(state); | |
c0204fd2 | 3551 | goto out; |
1da177e4 | 3552 | } |
1da177e4 | 3553 | out: |
aa9c2669 | 3554 | nfs4_label_release_security(ilabel); |
8867fe58 | 3555 | put_nfs_open_context(ctx); |
1da177e4 LT |
3556 | return status; |
3557 | } | |
3558 | ||
3559 | static int _nfs4_proc_remove(struct inode *dir, struct qstr *name) | |
3560 | { | |
16e42959 | 3561 | struct nfs_server *server = NFS_SERVER(dir); |
4fdc17b2 | 3562 | struct nfs_removeargs args = { |
1da177e4 | 3563 | .fh = NFS_FH(dir), |
26fe5750 | 3564 | .name = *name, |
16e42959 | 3565 | }; |
4fdc17b2 | 3566 | struct nfs_removeres res = { |
16e42959 | 3567 | .server = server, |
1da177e4 | 3568 | }; |
1da177e4 | 3569 | struct rpc_message msg = { |
4fdc17b2 TM |
3570 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE], |
3571 | .rpc_argp = &args, | |
3572 | .rpc_resp = &res, | |
1da177e4 | 3573 | }; |
778d2817 | 3574 | int status; |
1da177e4 | 3575 | |
7c513058 | 3576 | status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 1); |
778d2817 | 3577 | if (status == 0) |
16e42959 | 3578 | update_changeattr(dir, &res.cinfo); |
1da177e4 LT |
3579 | return status; |
3580 | } | |
3581 | ||
3582 | static int nfs4_proc_remove(struct inode *dir, struct qstr *name) | |
3583 | { | |
3584 | struct nfs4_exception exception = { }; | |
3585 | int err; | |
3586 | do { | |
078ea3df TM |
3587 | err = _nfs4_proc_remove(dir, name); |
3588 | trace_nfs4_remove(dir, name, err); | |
3589 | err = nfs4_handle_exception(NFS_SERVER(dir), err, | |
1da177e4 LT |
3590 | &exception); |
3591 | } while (exception.retry); | |
3592 | return err; | |
3593 | } | |
3594 | ||
e4eff1a6 | 3595 | static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir) |
1da177e4 | 3596 | { |
e4eff1a6 TM |
3597 | struct nfs_server *server = NFS_SERVER(dir); |
3598 | struct nfs_removeargs *args = msg->rpc_argp; | |
3599 | struct nfs_removeres *res = msg->rpc_resp; | |
1da177e4 | 3600 | |
e4eff1a6 | 3601 | res->server = server; |
1da177e4 | 3602 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE]; |
a9c92d6b | 3603 | nfs4_init_sequence(&args->seq_args, &res->seq_res, 1); |
aa9c2669 DQ |
3604 | |
3605 | nfs_fattr_init(res->dir_attr); | |
1da177e4 LT |
3606 | } |
3607 | ||
34e137cc BS |
3608 | static void nfs4_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data) |
3609 | { | |
d9afbd1b TM |
3610 | nfs4_setup_sequence(NFS_SERVER(data->dir), |
3611 | &data->args.seq_args, | |
3612 | &data->res.seq_res, | |
3613 | task); | |
1da177e4 LT |
3614 | } |
3615 | ||
e4eff1a6 | 3616 | static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir) |
1da177e4 | 3617 | { |
078ea3df TM |
3618 | struct nfs_unlinkdata *data = task->tk_calldata; |
3619 | struct nfs_removeres *res = &data->res; | |
e4eff1a6 | 3620 | |
14516c3a TM |
3621 | if (!nfs4_sequence_done(task, &res->seq_res)) |
3622 | return 0; | |
8478eaa1 N |
3623 | if (nfs4_async_handle_error(task, res->server, NULL, |
3624 | &data->timeout) == -EAGAIN) | |
e4eff1a6 TM |
3625 | return 0; |
3626 | update_changeattr(dir, &res->cinfo); | |
e4eff1a6 | 3627 | return 1; |
1da177e4 LT |
3628 | } |
3629 | ||
d3d4152a JL |
3630 | static void nfs4_proc_rename_setup(struct rpc_message *msg, struct inode *dir) |
3631 | { | |
3632 | struct nfs_server *server = NFS_SERVER(dir); | |
3633 | struct nfs_renameargs *arg = msg->rpc_argp; | |
3634 | struct nfs_renameres *res = msg->rpc_resp; | |
3635 | ||
3636 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME]; | |
d3d4152a | 3637 | res->server = server; |
a9c92d6b | 3638 | nfs4_init_sequence(&arg->seq_args, &res->seq_res, 1); |
d3d4152a JL |
3639 | } |
3640 | ||
c6bfa1a1 BS |
3641 | static void nfs4_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data) |
3642 | { | |
d9afbd1b TM |
3643 | nfs4_setup_sequence(NFS_SERVER(data->old_dir), |
3644 | &data->args.seq_args, | |
3645 | &data->res.seq_res, | |
3646 | task); | |
d3d4152a JL |
3647 | } |
3648 | ||
3649 | static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir, | |
3650 | struct inode *new_dir) | |
3651 | { | |
fbc6f7c2 TM |
3652 | struct nfs_renamedata *data = task->tk_calldata; |
3653 | struct nfs_renameres *res = &data->res; | |
d3d4152a JL |
3654 | |
3655 | if (!nfs4_sequence_done(task, &res->seq_res)) | |
3656 | return 0; | |
8478eaa1 | 3657 | if (nfs4_async_handle_error(task, res->server, NULL, &data->timeout) == -EAGAIN) |
d3d4152a JL |
3658 | return 0; |
3659 | ||
3660 | update_changeattr(old_dir, &res->old_cinfo); | |
d3d4152a | 3661 | update_changeattr(new_dir, &res->new_cinfo); |
d3d4152a JL |
3662 | return 1; |
3663 | } | |
3664 | ||
1da177e4 LT |
3665 | static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name) |
3666 | { | |
91ba2eee | 3667 | struct nfs_server *server = NFS_SERVER(inode); |
1da177e4 LT |
3668 | struct nfs4_link_arg arg = { |
3669 | .fh = NFS_FH(inode), | |
3670 | .dir_fh = NFS_FH(dir), | |
3671 | .name = name, | |
91ba2eee TM |
3672 | .bitmask = server->attr_bitmask, |
3673 | }; | |
91ba2eee TM |
3674 | struct nfs4_link_res res = { |
3675 | .server = server, | |
1775fd3e | 3676 | .label = NULL, |
1da177e4 | 3677 | }; |
1da177e4 LT |
3678 | struct rpc_message msg = { |
3679 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK], | |
3680 | .rpc_argp = &arg, | |
91ba2eee | 3681 | .rpc_resp = &res, |
1da177e4 | 3682 | }; |
136f2627 TM |
3683 | int status = -ENOMEM; |
3684 | ||
3685 | res.fattr = nfs_alloc_fattr(); | |
778d2817 | 3686 | if (res.fattr == NULL) |
136f2627 | 3687 | goto out; |
1da177e4 | 3688 | |
14c43f76 DQ |
3689 | res.label = nfs4_label_alloc(server, GFP_KERNEL); |
3690 | if (IS_ERR(res.label)) { | |
3691 | status = PTR_ERR(res.label); | |
3692 | goto out; | |
3693 | } | |
aa9c2669 | 3694 | arg.bitmask = nfs4_bitmask(server, res.label); |
14c43f76 | 3695 | |
7c513058 | 3696 | status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1); |
91ba2eee TM |
3697 | if (!status) { |
3698 | update_changeattr(dir, &res.cinfo); | |
aa9c2669 DQ |
3699 | status = nfs_post_op_update_inode(inode, res.fattr); |
3700 | if (!status) | |
3701 | nfs_setsecurity(inode, res.fattr, res.label); | |
91ba2eee | 3702 | } |
14c43f76 DQ |
3703 | |
3704 | ||
3705 | nfs4_label_free(res.label); | |
3706 | ||
136f2627 | 3707 | out: |
136f2627 | 3708 | nfs_free_fattr(res.fattr); |
1da177e4 LT |
3709 | return status; |
3710 | } | |
3711 | ||
3712 | static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name) | |
3713 | { | |
3714 | struct nfs4_exception exception = { }; | |
3715 | int err; | |
3716 | do { | |
3717 | err = nfs4_handle_exception(NFS_SERVER(inode), | |
3718 | _nfs4_proc_link(inode, dir, name), | |
3719 | &exception); | |
3720 | } while (exception.retry); | |
3721 | return err; | |
3722 | } | |
3723 | ||
57dc9a57 TM |
3724 | struct nfs4_createdata { |
3725 | struct rpc_message msg; | |
3726 | struct nfs4_create_arg arg; | |
3727 | struct nfs4_create_res res; | |
3728 | struct nfs_fh fh; | |
3729 | struct nfs_fattr fattr; | |
1775fd3e | 3730 | struct nfs4_label *label; |
57dc9a57 TM |
3731 | }; |
3732 | ||
3733 | static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir, | |
3734 | struct qstr *name, struct iattr *sattr, u32 ftype) | |
3735 | { | |
3736 | struct nfs4_createdata *data; | |
3737 | ||
3738 | data = kzalloc(sizeof(*data), GFP_KERNEL); | |
3739 | if (data != NULL) { | |
3740 | struct nfs_server *server = NFS_SERVER(dir); | |
3741 | ||
14c43f76 DQ |
3742 | data->label = nfs4_label_alloc(server, GFP_KERNEL); |
3743 | if (IS_ERR(data->label)) | |
3744 | goto out_free; | |
3745 | ||
57dc9a57 TM |
3746 | data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE]; |
3747 | data->msg.rpc_argp = &data->arg; | |
3748 | data->msg.rpc_resp = &data->res; | |
3749 | data->arg.dir_fh = NFS_FH(dir); | |
3750 | data->arg.server = server; | |
3751 | data->arg.name = name; | |
3752 | data->arg.attrs = sattr; | |
3753 | data->arg.ftype = ftype; | |
aa9c2669 | 3754 | data->arg.bitmask = nfs4_bitmask(server, data->label); |
57dc9a57 TM |
3755 | data->res.server = server; |
3756 | data->res.fh = &data->fh; | |
3757 | data->res.fattr = &data->fattr; | |
1775fd3e | 3758 | data->res.label = data->label; |
57dc9a57 | 3759 | nfs_fattr_init(data->res.fattr); |
57dc9a57 TM |
3760 | } |
3761 | return data; | |
14c43f76 DQ |
3762 | out_free: |
3763 | kfree(data); | |
3764 | return NULL; | |
57dc9a57 TM |
3765 | } |
3766 | ||
3767 | static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data) | |
3768 | { | |
7c513058 | 3769 | int status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &data->msg, |
e73b83f2 | 3770 | &data->arg.seq_args, &data->res.seq_res, 1); |
57dc9a57 TM |
3771 | if (status == 0) { |
3772 | update_changeattr(dir, &data->res.dir_cinfo); | |
1775fd3e | 3773 | status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, data->res.label); |
57dc9a57 TM |
3774 | } |
3775 | return status; | |
3776 | } | |
3777 | ||
3778 | static void nfs4_free_createdata(struct nfs4_createdata *data) | |
3779 | { | |
14c43f76 | 3780 | nfs4_label_free(data->label); |
57dc9a57 TM |
3781 | kfree(data); |
3782 | } | |
3783 | ||
4f390c15 | 3784 | static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry, |
1775fd3e DQ |
3785 | struct page *page, unsigned int len, struct iattr *sattr, |
3786 | struct nfs4_label *label) | |
1da177e4 | 3787 | { |
57dc9a57 TM |
3788 | struct nfs4_createdata *data; |
3789 | int status = -ENAMETOOLONG; | |
1da177e4 | 3790 | |
94a6d753 | 3791 | if (len > NFS4_MAXPATHLEN) |
57dc9a57 | 3792 | goto out; |
4f390c15 | 3793 | |
57dc9a57 TM |
3794 | status = -ENOMEM; |
3795 | data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK); | |
3796 | if (data == NULL) | |
3797 | goto out; | |
3798 | ||
3799 | data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK]; | |
3800 | data->arg.u.symlink.pages = &page; | |
3801 | data->arg.u.symlink.len = len; | |
1775fd3e | 3802 | data->arg.label = label; |
1da177e4 | 3803 | |
57dc9a57 TM |
3804 | status = nfs4_do_create(dir, dentry, data); |
3805 | ||
3806 | nfs4_free_createdata(data); | |
3807 | out: | |
1da177e4 LT |
3808 | return status; |
3809 | } | |
3810 | ||
4f390c15 | 3811 | static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry, |
94a6d753 | 3812 | struct page *page, unsigned int len, struct iattr *sattr) |
1da177e4 LT |
3813 | { |
3814 | struct nfs4_exception exception = { }; | |
aa9c2669 | 3815 | struct nfs4_label l, *label = NULL; |
1da177e4 | 3816 | int err; |
aa9c2669 DQ |
3817 | |
3818 | label = nfs4_label_init_security(dir, dentry, sattr, &l); | |
3819 | ||
1da177e4 | 3820 | do { |
078ea3df TM |
3821 | err = _nfs4_proc_symlink(dir, dentry, page, len, sattr, label); |
3822 | trace_nfs4_symlink(dir, &dentry->d_name, err); | |
3823 | err = nfs4_handle_exception(NFS_SERVER(dir), err, | |
1da177e4 LT |
3824 | &exception); |
3825 | } while (exception.retry); | |
aa9c2669 DQ |
3826 | |
3827 | nfs4_label_release_security(label); | |
1da177e4 LT |
3828 | return err; |
3829 | } | |
3830 | ||
3831 | static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry, | |
1775fd3e | 3832 | struct iattr *sattr, struct nfs4_label *label) |
1da177e4 | 3833 | { |
57dc9a57 TM |
3834 | struct nfs4_createdata *data; |
3835 | int status = -ENOMEM; | |
1da177e4 | 3836 | |
57dc9a57 TM |
3837 | data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR); |
3838 | if (data == NULL) | |
3839 | goto out; | |
3840 | ||
1775fd3e | 3841 | data->arg.label = label; |
57dc9a57 TM |
3842 | status = nfs4_do_create(dir, dentry, data); |
3843 | ||
3844 | nfs4_free_createdata(data); | |
3845 | out: | |
1da177e4 LT |
3846 | return status; |
3847 | } | |
3848 | ||
3849 | static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry, | |
3850 | struct iattr *sattr) | |
3851 | { | |
3852 | struct nfs4_exception exception = { }; | |
aa9c2669 | 3853 | struct nfs4_label l, *label = NULL; |
1da177e4 | 3854 | int err; |
a8a5da99 | 3855 | |
aa9c2669 DQ |
3856 | label = nfs4_label_init_security(dir, dentry, sattr, &l); |
3857 | ||
a8a5da99 | 3858 | sattr->ia_mode &= ~current_umask(); |
1da177e4 | 3859 | do { |
078ea3df TM |
3860 | err = _nfs4_proc_mkdir(dir, dentry, sattr, label); |
3861 | trace_nfs4_mkdir(dir, &dentry->d_name, err); | |
3862 | err = nfs4_handle_exception(NFS_SERVER(dir), err, | |
1da177e4 LT |
3863 | &exception); |
3864 | } while (exception.retry); | |
aa9c2669 DQ |
3865 | nfs4_label_release_security(label); |
3866 | ||
1da177e4 LT |
3867 | return err; |
3868 | } | |
3869 | ||
3870 | static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred, | |
56e4ebf8 | 3871 | u64 cookie, struct page **pages, unsigned int count, int plus) |
1da177e4 | 3872 | { |
2b0143b5 | 3873 | struct inode *dir = d_inode(dentry); |
1da177e4 LT |
3874 | struct nfs4_readdir_arg args = { |
3875 | .fh = NFS_FH(dir), | |
56e4ebf8 | 3876 | .pages = pages, |
1da177e4 LT |
3877 | .pgbase = 0, |
3878 | .count = count, | |
2b0143b5 | 3879 | .bitmask = NFS_SERVER(d_inode(dentry))->attr_bitmask, |
82f2e547 | 3880 | .plus = plus, |
1da177e4 LT |
3881 | }; |
3882 | struct nfs4_readdir_res res; | |
3883 | struct rpc_message msg = { | |
3884 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR], | |
3885 | .rpc_argp = &args, | |
3886 | .rpc_resp = &res, | |
3887 | .rpc_cred = cred, | |
3888 | }; | |
3889 | int status; | |
3890 | ||
6de1472f AV |
3891 | dprintk("%s: dentry = %pd2, cookie = %Lu\n", __func__, |
3892 | dentry, | |
eadf4598 | 3893 | (unsigned long long)cookie); |
c3f52af3 | 3894 | nfs4_setup_readdir(cookie, NFS_I(dir)->cookieverf, dentry, &args); |
1da177e4 | 3895 | res.pgbase = args.pgbase; |
7c513058 | 3896 | status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &msg, &args.seq_args, &res.seq_res, 0); |
ac396128 | 3897 | if (status >= 0) { |
c3f52af3 | 3898 | memcpy(NFS_I(dir)->cookieverf, res.verifier.data, NFS4_VERIFIER_SIZE); |
ac396128 TM |
3899 | status += args.pgbase; |
3900 | } | |
c4812998 TM |
3901 | |
3902 | nfs_invalidate_atime(dir); | |
3903 | ||
3110ff80 | 3904 | dprintk("%s: returns %d\n", __func__, status); |
1da177e4 LT |
3905 | return status; |
3906 | } | |
3907 | ||
3908 | static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred, | |
56e4ebf8 | 3909 | u64 cookie, struct page **pages, unsigned int count, int plus) |
1da177e4 LT |
3910 | { |
3911 | struct nfs4_exception exception = { }; | |
3912 | int err; | |
3913 | do { | |
c1578b76 TM |
3914 | err = _nfs4_proc_readdir(dentry, cred, cookie, |
3915 | pages, count, plus); | |
2b0143b5 DH |
3916 | trace_nfs4_readdir(d_inode(dentry), err); |
3917 | err = nfs4_handle_exception(NFS_SERVER(d_inode(dentry)), err, | |
1da177e4 LT |
3918 | &exception); |
3919 | } while (exception.retry); | |
3920 | return err; | |
3921 | } | |
3922 | ||
3923 | static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry, | |
aa9c2669 | 3924 | struct iattr *sattr, struct nfs4_label *label, dev_t rdev) |
1da177e4 | 3925 | { |
57dc9a57 TM |
3926 | struct nfs4_createdata *data; |
3927 | int mode = sattr->ia_mode; | |
3928 | int status = -ENOMEM; | |
1da177e4 | 3929 | |
57dc9a57 TM |
3930 | data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK); |
3931 | if (data == NULL) | |
3932 | goto out; | |
3933 | ||
1da177e4 | 3934 | if (S_ISFIFO(mode)) |
57dc9a57 | 3935 | data->arg.ftype = NF4FIFO; |
1da177e4 | 3936 | else if (S_ISBLK(mode)) { |
57dc9a57 TM |
3937 | data->arg.ftype = NF4BLK; |
3938 | data->arg.u.device.specdata1 = MAJOR(rdev); | |
3939 | data->arg.u.device.specdata2 = MINOR(rdev); | |
1da177e4 LT |
3940 | } |
3941 | else if (S_ISCHR(mode)) { | |
57dc9a57 TM |
3942 | data->arg.ftype = NF4CHR; |
3943 | data->arg.u.device.specdata1 = MAJOR(rdev); | |
3944 | data->arg.u.device.specdata2 = MINOR(rdev); | |
4ea8fed5 TM |
3945 | } else if (!S_ISSOCK(mode)) { |
3946 | status = -EINVAL; | |
3947 | goto out_free; | |
1da177e4 | 3948 | } |
1775fd3e | 3949 | |
aa9c2669 | 3950 | data->arg.label = label; |
57dc9a57 | 3951 | status = nfs4_do_create(dir, dentry, data); |
4ea8fed5 | 3952 | out_free: |
57dc9a57 TM |
3953 | nfs4_free_createdata(data); |
3954 | out: | |
1da177e4 LT |
3955 | return status; |
3956 | } | |
3957 | ||
3958 | static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry, | |
3959 | struct iattr *sattr, dev_t rdev) | |
3960 | { | |
3961 | struct nfs4_exception exception = { }; | |
aa9c2669 | 3962 | struct nfs4_label l, *label = NULL; |
1da177e4 | 3963 | int err; |
a8a5da99 | 3964 | |
aa9c2669 DQ |
3965 | label = nfs4_label_init_security(dir, dentry, sattr, &l); |
3966 | ||
a8a5da99 | 3967 | sattr->ia_mode &= ~current_umask(); |
1da177e4 | 3968 | do { |
078ea3df TM |
3969 | err = _nfs4_proc_mknod(dir, dentry, sattr, label, rdev); |
3970 | trace_nfs4_mknod(dir, &dentry->d_name, err); | |
3971 | err = nfs4_handle_exception(NFS_SERVER(dir), err, | |
1da177e4 LT |
3972 | &exception); |
3973 | } while (exception.retry); | |
aa9c2669 DQ |
3974 | |
3975 | nfs4_label_release_security(label); | |
3976 | ||
1da177e4 LT |
3977 | return err; |
3978 | } | |
3979 | ||
3980 | static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, | |
3981 | struct nfs_fsstat *fsstat) | |
3982 | { | |
3983 | struct nfs4_statfs_arg args = { | |
3984 | .fh = fhandle, | |
3985 | .bitmask = server->attr_bitmask, | |
3986 | }; | |
24ad148a BH |
3987 | struct nfs4_statfs_res res = { |
3988 | .fsstat = fsstat, | |
3989 | }; | |
1da177e4 LT |
3990 | struct rpc_message msg = { |
3991 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS], | |
3992 | .rpc_argp = &args, | |
24ad148a | 3993 | .rpc_resp = &res, |
1da177e4 LT |
3994 | }; |
3995 | ||
0e574af1 | 3996 | nfs_fattr_init(fsstat->fattr); |
7c513058 | 3997 | return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
1da177e4 LT |
3998 | } |
3999 | ||
4000 | static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat) | |
4001 | { | |
4002 | struct nfs4_exception exception = { }; | |
4003 | int err; | |
4004 | do { | |
4005 | err = nfs4_handle_exception(server, | |
4006 | _nfs4_proc_statfs(server, fhandle, fsstat), | |
4007 | &exception); | |
4008 | } while (exception.retry); | |
4009 | return err; | |
4010 | } | |
4011 | ||
4012 | static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, | |
4013 | struct nfs_fsinfo *fsinfo) | |
4014 | { | |
4015 | struct nfs4_fsinfo_arg args = { | |
4016 | .fh = fhandle, | |
4017 | .bitmask = server->attr_bitmask, | |
4018 | }; | |
3dda5e43 BH |
4019 | struct nfs4_fsinfo_res res = { |
4020 | .fsinfo = fsinfo, | |
4021 | }; | |
1da177e4 LT |
4022 | struct rpc_message msg = { |
4023 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO], | |
4024 | .rpc_argp = &args, | |
3dda5e43 | 4025 | .rpc_resp = &res, |
1da177e4 LT |
4026 | }; |
4027 | ||
7c513058 | 4028 | return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
1da177e4 LT |
4029 | } |
4030 | ||
4031 | static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) | |
4032 | { | |
4033 | struct nfs4_exception exception = { }; | |
83ca7f5a | 4034 | unsigned long now = jiffies; |
1da177e4 LT |
4035 | int err; |
4036 | ||
4037 | do { | |
83ca7f5a | 4038 | err = _nfs4_do_fsinfo(server, fhandle, fsinfo); |
b5f875a9 | 4039 | trace_nfs4_fsinfo(server, fhandle, fsinfo->fattr, err); |
83ca7f5a CL |
4040 | if (err == 0) { |
4041 | struct nfs_client *clp = server->nfs_client; | |
4042 | ||
4043 | spin_lock(&clp->cl_lock); | |
4044 | clp->cl_lease_time = fsinfo->lease_time * HZ; | |
4045 | clp->cl_last_renewal = now; | |
4046 | spin_unlock(&clp->cl_lock); | |
4047 | break; | |
4048 | } | |
4049 | err = nfs4_handle_exception(server, err, &exception); | |
1da177e4 LT |
4050 | } while (exception.retry); |
4051 | return err; | |
4052 | } | |
4053 | ||
4054 | static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) | |
4055 | { | |
e38eb650 BS |
4056 | int error; |
4057 | ||
0e574af1 | 4058 | nfs_fattr_init(fsinfo->fattr); |
e38eb650 | 4059 | error = nfs4_do_fsinfo(server, fhandle, fsinfo); |
dc182549 PT |
4060 | if (error == 0) { |
4061 | /* block layout checks this! */ | |
4062 | server->pnfs_blksize = fsinfo->blksize; | |
e38eb650 | 4063 | set_pnfs_layoutdriver(server, fhandle, fsinfo->layouttype); |
dc182549 | 4064 | } |
e38eb650 BS |
4065 | |
4066 | return error; | |
1da177e4 LT |
4067 | } |
4068 | ||
4069 | static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle, | |
4070 | struct nfs_pathconf *pathconf) | |
4071 | { | |
4072 | struct nfs4_pathconf_arg args = { | |
4073 | .fh = fhandle, | |
4074 | .bitmask = server->attr_bitmask, | |
4075 | }; | |
d45b2989 BH |
4076 | struct nfs4_pathconf_res res = { |
4077 | .pathconf = pathconf, | |
4078 | }; | |
1da177e4 LT |
4079 | struct rpc_message msg = { |
4080 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF], | |
4081 | .rpc_argp = &args, | |
d45b2989 | 4082 | .rpc_resp = &res, |
1da177e4 LT |
4083 | }; |
4084 | ||
4085 | /* None of the pathconf attributes are mandatory to implement */ | |
4086 | if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) { | |
4087 | memset(pathconf, 0, sizeof(*pathconf)); | |
4088 | return 0; | |
4089 | } | |
4090 | ||
0e574af1 | 4091 | nfs_fattr_init(pathconf->fattr); |
7c513058 | 4092 | return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
1da177e4 LT |
4093 | } |
4094 | ||
4095 | static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle, | |
4096 | struct nfs_pathconf *pathconf) | |
4097 | { | |
4098 | struct nfs4_exception exception = { }; | |
4099 | int err; | |
4100 | ||
4101 | do { | |
4102 | err = nfs4_handle_exception(server, | |
4103 | _nfs4_proc_pathconf(server, fhandle, pathconf), | |
4104 | &exception); | |
4105 | } while (exception.retry); | |
4106 | return err; | |
4107 | } | |
4108 | ||
5521abfd | 4109 | int nfs4_set_rw_stateid(nfs4_stateid *stateid, |
9b206149 TM |
4110 | const struct nfs_open_context *ctx, |
4111 | const struct nfs_lock_context *l_ctx, | |
4112 | fmode_t fmode) | |
4113 | { | |
4114 | const struct nfs_lockowner *lockowner = NULL; | |
4115 | ||
4116 | if (l_ctx != NULL) | |
4117 | lockowner = &l_ctx->lockowner; | |
5521abfd | 4118 | return nfs4_select_rw_stateid(stateid, ctx->state, fmode, lockowner); |
9b206149 TM |
4119 | } |
4120 | EXPORT_SYMBOL_GPL(nfs4_set_rw_stateid); | |
4121 | ||
5521abfd TM |
4122 | static bool nfs4_stateid_is_current(nfs4_stateid *stateid, |
4123 | const struct nfs_open_context *ctx, | |
4124 | const struct nfs_lock_context *l_ctx, | |
4125 | fmode_t fmode) | |
4126 | { | |
4127 | nfs4_stateid current_stateid; | |
4128 | ||
e1253be0 TM |
4129 | /* If the current stateid represents a lost lock, then exit */ |
4130 | if (nfs4_set_rw_stateid(¤t_stateid, ctx, l_ctx, fmode) == -EIO) | |
4131 | return true; | |
5521abfd TM |
4132 | return nfs4_stateid_match(stateid, ¤t_stateid); |
4133 | } | |
4134 | ||
4135 | static bool nfs4_error_stateid_expired(int err) | |
4136 | { | |
4137 | switch (err) { | |
4138 | case -NFS4ERR_DELEG_REVOKED: | |
4139 | case -NFS4ERR_ADMIN_REVOKED: | |
4140 | case -NFS4ERR_BAD_STATEID: | |
4141 | case -NFS4ERR_STALE_STATEID: | |
4142 | case -NFS4ERR_OLD_STATEID: | |
4143 | case -NFS4ERR_OPENMODE: | |
4144 | case -NFS4ERR_EXPIRED: | |
4145 | return true; | |
4146 | } | |
4147 | return false; | |
4148 | } | |
4149 | ||
d45f60c6 | 4150 | void __nfs4_read_done_cb(struct nfs_pgio_header *hdr) |
d20581aa | 4151 | { |
d45f60c6 | 4152 | nfs_invalidate_atime(hdr->inode); |
d20581aa BH |
4153 | } |
4154 | ||
d45f60c6 | 4155 | static int nfs4_read_done_cb(struct rpc_task *task, struct nfs_pgio_header *hdr) |
1da177e4 | 4156 | { |
d45f60c6 | 4157 | struct nfs_server *server = NFS_SERVER(hdr->inode); |
1da177e4 | 4158 | |
d45f60c6 WAA |
4159 | trace_nfs4_read(hdr, task->tk_status); |
4160 | if (nfs4_async_handle_error(task, server, | |
8478eaa1 N |
4161 | hdr->args.context->state, |
4162 | NULL) == -EAGAIN) { | |
d00c5d43 | 4163 | rpc_restart_call_prepare(task); |
ec06c096 | 4164 | return -EAGAIN; |
1da177e4 | 4165 | } |
8850df99 | 4166 | |
d45f60c6 | 4167 | __nfs4_read_done_cb(hdr); |
1da177e4 | 4168 | if (task->tk_status > 0) |
d45f60c6 | 4169 | renew_lease(server, hdr->timestamp); |
ec06c096 | 4170 | return 0; |
1da177e4 LT |
4171 | } |
4172 | ||
5521abfd | 4173 | static bool nfs4_read_stateid_changed(struct rpc_task *task, |
3c6b899c | 4174 | struct nfs_pgio_args *args) |
5521abfd TM |
4175 | { |
4176 | ||
4177 | if (!nfs4_error_stateid_expired(task->tk_status) || | |
4178 | nfs4_stateid_is_current(&args->stateid, | |
4179 | args->context, | |
4180 | args->lock_context, | |
4181 | FMODE_READ)) | |
4182 | return false; | |
4183 | rpc_restart_call_prepare(task); | |
4184 | return true; | |
4185 | } | |
4186 | ||
d45f60c6 | 4187 | static int nfs4_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr) |
cbdabc7f AA |
4188 | { |
4189 | ||
4190 | dprintk("--> %s\n", __func__); | |
4191 | ||
d45f60c6 | 4192 | if (!nfs4_sequence_done(task, &hdr->res.seq_res)) |
cbdabc7f | 4193 | return -EAGAIN; |
d45f60c6 | 4194 | if (nfs4_read_stateid_changed(task, &hdr->args)) |
5521abfd | 4195 | return -EAGAIN; |
d45f60c6 WAA |
4196 | return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) : |
4197 | nfs4_read_done_cb(task, hdr); | |
cbdabc7f AA |
4198 | } |
4199 | ||
d45f60c6 WAA |
4200 | static void nfs4_proc_read_setup(struct nfs_pgio_header *hdr, |
4201 | struct rpc_message *msg) | |
1da177e4 | 4202 | { |
d45f60c6 WAA |
4203 | hdr->timestamp = jiffies; |
4204 | hdr->pgio_done_cb = nfs4_read_done_cb; | |
bdc7f021 | 4205 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ]; |
d45f60c6 | 4206 | nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 0); |
1da177e4 LT |
4207 | } |
4208 | ||
d45f60c6 WAA |
4209 | static int nfs4_proc_pgio_rpc_prepare(struct rpc_task *task, |
4210 | struct nfs_pgio_header *hdr) | |
ea7c3303 | 4211 | { |
d45f60c6 WAA |
4212 | if (nfs4_setup_sequence(NFS_SERVER(hdr->inode), |
4213 | &hdr->args.seq_args, | |
4214 | &hdr->res.seq_res, | |
9b206149 | 4215 | task)) |
ef1820f9 | 4216 | return 0; |
d45f60c6 WAA |
4217 | if (nfs4_set_rw_stateid(&hdr->args.stateid, hdr->args.context, |
4218 | hdr->args.lock_context, | |
4219 | hdr->rw_ops->rw_mode) == -EIO) | |
ef1820f9 | 4220 | return -EIO; |
d45f60c6 | 4221 | if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags))) |
ef1820f9 N |
4222 | return -EIO; |
4223 | return 0; | |
1da177e4 LT |
4224 | } |
4225 | ||
d45f60c6 WAA |
4226 | static int nfs4_write_done_cb(struct rpc_task *task, |
4227 | struct nfs_pgio_header *hdr) | |
1da177e4 | 4228 | { |
d45f60c6 | 4229 | struct inode *inode = hdr->inode; |
8478eaa1 | 4230 | |
d45f60c6 WAA |
4231 | trace_nfs4_write(hdr, task->tk_status); |
4232 | if (nfs4_async_handle_error(task, NFS_SERVER(inode), | |
8478eaa1 N |
4233 | hdr->args.context->state, |
4234 | NULL) == -EAGAIN) { | |
d00c5d43 | 4235 | rpc_restart_call_prepare(task); |
788e7a89 | 4236 | return -EAGAIN; |
1da177e4 | 4237 | } |
4f9838c7 | 4238 | if (task->tk_status >= 0) { |
d45f60c6 | 4239 | renew_lease(NFS_SERVER(inode), hdr->timestamp); |
a08a8cd3 | 4240 | nfs_writeback_update_inode(hdr); |
4f9838c7 | 4241 | } |
788e7a89 | 4242 | return 0; |
1da177e4 LT |
4243 | } |
4244 | ||
5521abfd | 4245 | static bool nfs4_write_stateid_changed(struct rpc_task *task, |
3c6b899c | 4246 | struct nfs_pgio_args *args) |
5521abfd TM |
4247 | { |
4248 | ||
4249 | if (!nfs4_error_stateid_expired(task->tk_status) || | |
4250 | nfs4_stateid_is_current(&args->stateid, | |
4251 | args->context, | |
4252 | args->lock_context, | |
4253 | FMODE_WRITE)) | |
4254 | return false; | |
4255 | rpc_restart_call_prepare(task); | |
4256 | return true; | |
4257 | } | |
4258 | ||
d45f60c6 | 4259 | static int nfs4_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr) |
b029bc9b | 4260 | { |
d45f60c6 | 4261 | if (!nfs4_sequence_done(task, &hdr->res.seq_res)) |
b029bc9b | 4262 | return -EAGAIN; |
d45f60c6 | 4263 | if (nfs4_write_stateid_changed(task, &hdr->args)) |
5521abfd | 4264 | return -EAGAIN; |
d45f60c6 WAA |
4265 | return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) : |
4266 | nfs4_write_done_cb(task, hdr); | |
b029bc9b FI |
4267 | } |
4268 | ||
5a37f851 | 4269 | static |
d45f60c6 | 4270 | bool nfs4_write_need_cache_consistency_data(struct nfs_pgio_header *hdr) |
a69aef14 | 4271 | { |
5a37f851 | 4272 | /* Don't request attributes for pNFS or O_DIRECT writes */ |
d45f60c6 | 4273 | if (hdr->ds_clp != NULL || hdr->dreq != NULL) |
5a37f851 TM |
4274 | return false; |
4275 | /* Otherwise, request attributes if and only if we don't hold | |
4276 | * a delegation | |
4277 | */ | |
011e2a7f | 4278 | return nfs4_have_delegation(hdr->inode, FMODE_READ) == 0; |
a69aef14 | 4279 | } |
a69aef14 | 4280 | |
d45f60c6 WAA |
4281 | static void nfs4_proc_write_setup(struct nfs_pgio_header *hdr, |
4282 | struct rpc_message *msg) | |
1da177e4 | 4283 | { |
d45f60c6 | 4284 | struct nfs_server *server = NFS_SERVER(hdr->inode); |
bdc7f021 | 4285 | |
d45f60c6 WAA |
4286 | if (!nfs4_write_need_cache_consistency_data(hdr)) { |
4287 | hdr->args.bitmask = NULL; | |
4288 | hdr->res.fattr = NULL; | |
7ffd1064 | 4289 | } else |
d45f60c6 | 4290 | hdr->args.bitmask = server->cache_consistency_bitmask; |
5a37f851 | 4291 | |
d45f60c6 WAA |
4292 | if (!hdr->pgio_done_cb) |
4293 | hdr->pgio_done_cb = nfs4_write_done_cb; | |
4294 | hdr->res.server = server; | |
4295 | hdr->timestamp = jiffies; | |
1da177e4 | 4296 | |
bdc7f021 | 4297 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE]; |
d45f60c6 | 4298 | nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 1); |
1da177e4 LT |
4299 | } |
4300 | ||
0b7c0153 | 4301 | static void nfs4_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data) |
c6cb80d0 | 4302 | { |
d9afbd1b TM |
4303 | nfs4_setup_sequence(NFS_SERVER(data->inode), |
4304 | &data->args.seq_args, | |
4305 | &data->res.seq_res, | |
4306 | task); | |
1da177e4 LT |
4307 | } |
4308 | ||
0b7c0153 | 4309 | static int nfs4_commit_done_cb(struct rpc_task *task, struct nfs_commit_data *data) |
1da177e4 | 4310 | { |
1da177e4 | 4311 | struct inode *inode = data->inode; |
14516c3a | 4312 | |
cc668ab3 | 4313 | trace_nfs4_commit(data, task->tk_status); |
8478eaa1 N |
4314 | if (nfs4_async_handle_error(task, NFS_SERVER(inode), |
4315 | NULL, NULL) == -EAGAIN) { | |
d00c5d43 | 4316 | rpc_restart_call_prepare(task); |
788e7a89 | 4317 | return -EAGAIN; |
1da177e4 | 4318 | } |
788e7a89 | 4319 | return 0; |
1da177e4 LT |
4320 | } |
4321 | ||
0b7c0153 | 4322 | static int nfs4_commit_done(struct rpc_task *task, struct nfs_commit_data *data) |
5f452431 FI |
4323 | { |
4324 | if (!nfs4_sequence_done(task, &data->res.seq_res)) | |
4325 | return -EAGAIN; | |
0b7c0153 | 4326 | return data->commit_done_cb(task, data); |
5f452431 FI |
4327 | } |
4328 | ||
0b7c0153 | 4329 | static void nfs4_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg) |
1da177e4 | 4330 | { |
788e7a89 | 4331 | struct nfs_server *server = NFS_SERVER(data->inode); |
988b6dce | 4332 | |
0b7c0153 FI |
4333 | if (data->commit_done_cb == NULL) |
4334 | data->commit_done_cb = nfs4_commit_done_cb; | |
4f9838c7 | 4335 | data->res.server = server; |
bdc7f021 | 4336 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT]; |
a9c92d6b | 4337 | nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1); |
1da177e4 LT |
4338 | } |
4339 | ||
9bc4e3ca CL |
4340 | struct nfs4_renewdata { |
4341 | struct nfs_client *client; | |
4342 | unsigned long timestamp; | |
4343 | }; | |
4344 | ||
1da177e4 LT |
4345 | /* |
4346 | * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special | |
4347 | * standalone procedure for queueing an asynchronous RENEW. | |
4348 | */ | |
9bc4e3ca | 4349 | static void nfs4_renew_release(void *calldata) |
dc96aef9 | 4350 | { |
9bc4e3ca CL |
4351 | struct nfs4_renewdata *data = calldata; |
4352 | struct nfs_client *clp = data->client; | |
dc96aef9 | 4353 | |
0851de06 AB |
4354 | if (atomic_read(&clp->cl_count) > 1) |
4355 | nfs4_schedule_state_renewal(clp); | |
4356 | nfs_put_client(clp); | |
9bc4e3ca | 4357 | kfree(data); |
dc96aef9 AB |
4358 | } |
4359 | ||
9bc4e3ca | 4360 | static void nfs4_renew_done(struct rpc_task *task, void *calldata) |
1da177e4 | 4361 | { |
9bc4e3ca CL |
4362 | struct nfs4_renewdata *data = calldata; |
4363 | struct nfs_client *clp = data->client; | |
4364 | unsigned long timestamp = data->timestamp; | |
1da177e4 | 4365 | |
c6d01c6f | 4366 | trace_nfs4_renew_async(clp, task->tk_status); |
f8aba1e8 CL |
4367 | switch (task->tk_status) { |
4368 | case 0: | |
4369 | break; | |
4370 | case -NFS4ERR_LEASE_MOVED: | |
4371 | nfs4_schedule_lease_moved_recovery(clp); | |
4372 | break; | |
4373 | default: | |
95baa25c | 4374 | /* Unless we're shutting down, schedule state recovery! */ |
042b60be TM |
4375 | if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) == 0) |
4376 | return; | |
4377 | if (task->tk_status != NFS4ERR_CB_PATH_DOWN) { | |
0400a6b0 | 4378 | nfs4_schedule_lease_recovery(clp); |
042b60be TM |
4379 | return; |
4380 | } | |
4381 | nfs4_schedule_path_down_recovery(clp); | |
1da177e4 | 4382 | } |
452e9352 | 4383 | do_renew_lease(clp, timestamp); |
1da177e4 LT |
4384 | } |
4385 | ||
963d8fe5 TM |
4386 | static const struct rpc_call_ops nfs4_renew_ops = { |
4387 | .rpc_call_done = nfs4_renew_done, | |
dc96aef9 | 4388 | .rpc_release = nfs4_renew_release, |
963d8fe5 TM |
4389 | }; |
4390 | ||
2f60ea6b | 4391 | static int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags) |
1da177e4 LT |
4392 | { |
4393 | struct rpc_message msg = { | |
4394 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW], | |
4395 | .rpc_argp = clp, | |
b4454fe1 | 4396 | .rpc_cred = cred, |
1da177e4 | 4397 | }; |
9bc4e3ca | 4398 | struct nfs4_renewdata *data; |
1da177e4 | 4399 | |
2f60ea6b TM |
4400 | if (renew_flags == 0) |
4401 | return 0; | |
0851de06 AB |
4402 | if (!atomic_inc_not_zero(&clp->cl_count)) |
4403 | return -EIO; | |
b569ad34 | 4404 | data = kmalloc(sizeof(*data), GFP_NOFS); |
9bc4e3ca CL |
4405 | if (data == NULL) |
4406 | return -ENOMEM; | |
4407 | data->client = clp; | |
4408 | data->timestamp = jiffies; | |
bc7a05ca | 4409 | return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT, |
9bc4e3ca | 4410 | &nfs4_renew_ops, data); |
1da177e4 LT |
4411 | } |
4412 | ||
8534d4ec | 4413 | static int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred) |
1da177e4 LT |
4414 | { |
4415 | struct rpc_message msg = { | |
4416 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW], | |
4417 | .rpc_argp = clp, | |
b4454fe1 | 4418 | .rpc_cred = cred, |
1da177e4 LT |
4419 | }; |
4420 | unsigned long now = jiffies; | |
4421 | int status; | |
4422 | ||
bc7a05ca | 4423 | status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); |
1da177e4 LT |
4424 | if (status < 0) |
4425 | return status; | |
452e9352 | 4426 | do_renew_lease(clp, now); |
1da177e4 LT |
4427 | return 0; |
4428 | } | |
4429 | ||
aa1870af BF |
4430 | static inline int nfs4_server_supports_acls(struct nfs_server *server) |
4431 | { | |
7dd7d959 | 4432 | return server->caps & NFS_CAP_ACLS; |
aa1870af BF |
4433 | } |
4434 | ||
21f498c2 TM |
4435 | /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_SIZE, and that |
4436 | * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_SIZE) bytes on | |
aa1870af BF |
4437 | * the stack. |
4438 | */ | |
21f498c2 | 4439 | #define NFS4ACL_MAXPAGES DIV_ROUND_UP(XATTR_SIZE_MAX, PAGE_SIZE) |
aa1870af | 4440 | |
e9e3d724 NH |
4441 | static int buf_to_pages_noslab(const void *buf, size_t buflen, |
4442 | struct page **pages, unsigned int *pgbase) | |
4443 | { | |
4444 | struct page *newpage, **spages; | |
4445 | int rc = 0; | |
4446 | size_t len; | |
4447 | spages = pages; | |
4448 | ||
4449 | do { | |
21f498c2 | 4450 | len = min_t(size_t, PAGE_SIZE, buflen); |
e9e3d724 NH |
4451 | newpage = alloc_page(GFP_KERNEL); |
4452 | ||
4453 | if (newpage == NULL) | |
4454 | goto unwind; | |
4455 | memcpy(page_address(newpage), buf, len); | |
4456 | buf += len; | |
4457 | buflen -= len; | |
4458 | *pages++ = newpage; | |
4459 | rc++; | |
4460 | } while (buflen != 0); | |
4461 | ||
4462 | return rc; | |
4463 | ||
4464 | unwind: | |
4465 | for(; rc > 0; rc--) | |
4466 | __free_page(spages[rc-1]); | |
4467 | return -ENOMEM; | |
4468 | } | |
4469 | ||
e50a1c2e BF |
4470 | struct nfs4_cached_acl { |
4471 | int cached; | |
4472 | size_t len; | |
3e9d4154 | 4473 | char data[0]; |
e50a1c2e BF |
4474 | }; |
4475 | ||
4476 | static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl) | |
4477 | { | |
4478 | struct nfs_inode *nfsi = NFS_I(inode); | |
4479 | ||
4480 | spin_lock(&inode->i_lock); | |
4481 | kfree(nfsi->nfs4_acl); | |
4482 | nfsi->nfs4_acl = acl; | |
4483 | spin_unlock(&inode->i_lock); | |
4484 | } | |
4485 | ||
4486 | static void nfs4_zap_acl_attr(struct inode *inode) | |
4487 | { | |
4488 | nfs4_set_cached_acl(inode, NULL); | |
4489 | } | |
4490 | ||
4491 | static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen) | |
4492 | { | |
4493 | struct nfs_inode *nfsi = NFS_I(inode); | |
4494 | struct nfs4_cached_acl *acl; | |
4495 | int ret = -ENOENT; | |
4496 | ||
4497 | spin_lock(&inode->i_lock); | |
4498 | acl = nfsi->nfs4_acl; | |
4499 | if (acl == NULL) | |
4500 | goto out; | |
4501 | if (buf == NULL) /* user is just asking for length */ | |
4502 | goto out_len; | |
4503 | if (acl->cached == 0) | |
4504 | goto out; | |
4505 | ret = -ERANGE; /* see getxattr(2) man page */ | |
4506 | if (acl->len > buflen) | |
4507 | goto out; | |
4508 | memcpy(buf, acl->data, acl->len); | |
4509 | out_len: | |
4510 | ret = acl->len; | |
4511 | out: | |
4512 | spin_unlock(&inode->i_lock); | |
4513 | return ret; | |
4514 | } | |
4515 | ||
5794d21e | 4516 | static void nfs4_write_cached_acl(struct inode *inode, struct page **pages, size_t pgbase, size_t acl_len) |
e50a1c2e BF |
4517 | { |
4518 | struct nfs4_cached_acl *acl; | |
b291f1b1 | 4519 | size_t buflen = sizeof(*acl) + acl_len; |
e50a1c2e | 4520 | |
1f1ea6c2 | 4521 | if (buflen <= PAGE_SIZE) { |
b291f1b1 | 4522 | acl = kmalloc(buflen, GFP_KERNEL); |
e50a1c2e BF |
4523 | if (acl == NULL) |
4524 | goto out; | |
4525 | acl->cached = 1; | |
5794d21e | 4526 | _copy_from_pages(acl->data, pages, pgbase, acl_len); |
e50a1c2e BF |
4527 | } else { |
4528 | acl = kmalloc(sizeof(*acl), GFP_KERNEL); | |
4529 | if (acl == NULL) | |
4530 | goto out; | |
4531 | acl->cached = 0; | |
4532 | } | |
4533 | acl->len = acl_len; | |
4534 | out: | |
4535 | nfs4_set_cached_acl(inode, acl); | |
4536 | } | |
4537 | ||
bf118a34 AA |
4538 | /* |
4539 | * The getxattr API returns the required buffer length when called with a | |
4540 | * NULL buf. The NFSv4 acl tool then calls getxattr again after allocating | |
4541 | * the required buf. On a NULL buf, we send a page of data to the server | |
4542 | * guessing that the ACL request can be serviced by a page. If so, we cache | |
4543 | * up to the page of ACL data, and the 2nd call to getxattr is serviced by | |
4544 | * the cache. If not so, we throw away the page, and cache the required | |
4545 | * length. The next getxattr call will then produce another round trip to | |
4546 | * the server, this time with the input buf of the required size. | |
4547 | */ | |
16b4289c | 4548 | static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen) |
aa1870af | 4549 | { |
bf118a34 | 4550 | struct page *pages[NFS4ACL_MAXPAGES] = {NULL, }; |
aa1870af BF |
4551 | struct nfs_getaclargs args = { |
4552 | .fh = NFS_FH(inode), | |
4553 | .acl_pages = pages, | |
4554 | .acl_len = buflen, | |
4555 | }; | |
663c79b3 BH |
4556 | struct nfs_getaclres res = { |
4557 | .acl_len = buflen, | |
4558 | }; | |
aa1870af BF |
4559 | struct rpc_message msg = { |
4560 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL], | |
4561 | .rpc_argp = &args, | |
663c79b3 | 4562 | .rpc_resp = &res, |
aa1870af | 4563 | }; |
21f498c2 TM |
4564 | unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE); |
4565 | int ret = -ENOMEM, i; | |
aa1870af | 4566 | |
bf118a34 AA |
4567 | /* As long as we're doing a round trip to the server anyway, |
4568 | * let's be prepared for a page of acl data. */ | |
4569 | if (npages == 0) | |
4570 | npages = 1; | |
21f498c2 TM |
4571 | if (npages > ARRAY_SIZE(pages)) |
4572 | return -ERANGE; | |
5a006899 | 4573 | |
bf118a34 AA |
4574 | for (i = 0; i < npages; i++) { |
4575 | pages[i] = alloc_page(GFP_KERNEL); | |
4576 | if (!pages[i]) | |
4577 | goto out_free; | |
e50a1c2e | 4578 | } |
5a006899 SP |
4579 | |
4580 | /* for decoding across pages */ | |
4581 | res.acl_scratch = alloc_page(GFP_KERNEL); | |
4582 | if (!res.acl_scratch) | |
4583 | goto out_free; | |
4584 | ||
bf118a34 AA |
4585 | args.acl_len = npages * PAGE_SIZE; |
4586 | args.acl_pgbase = 0; | |
5a006899 | 4587 | |
de040bec | 4588 | dprintk("%s buf %p buflen %zu npages %d args.acl_len %zu\n", |
bf118a34 AA |
4589 | __func__, buf, buflen, npages, args.acl_len); |
4590 | ret = nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), | |
4591 | &msg, &args.seq_args, &res.seq_res, 0); | |
e50a1c2e BF |
4592 | if (ret) |
4593 | goto out_free; | |
bf118a34 | 4594 | |
1f1ea6c2 TM |
4595 | /* Handle the case where the passed-in buffer is too short */ |
4596 | if (res.acl_flags & NFS4_ACL_TRUNC) { | |
4597 | /* Did the user only issue a request for the acl length? */ | |
4598 | if (buf == NULL) | |
4599 | goto out_ok; | |
e50a1c2e | 4600 | ret = -ERANGE; |
1f1ea6c2 | 4601 | goto out_free; |
e50a1c2e | 4602 | } |
1f1ea6c2 | 4603 | nfs4_write_cached_acl(inode, pages, res.acl_data_offset, res.acl_len); |
7d3e91a8 SW |
4604 | if (buf) { |
4605 | if (res.acl_len > buflen) { | |
4606 | ret = -ERANGE; | |
4607 | goto out_free; | |
4608 | } | |
1f1ea6c2 | 4609 | _copy_from_pages(buf, pages, res.acl_data_offset, res.acl_len); |
7d3e91a8 | 4610 | } |
1f1ea6c2 TM |
4611 | out_ok: |
4612 | ret = res.acl_len; | |
e50a1c2e | 4613 | out_free: |
bf118a34 AA |
4614 | for (i = 0; i < npages; i++) |
4615 | if (pages[i]) | |
4616 | __free_page(pages[i]); | |
331818f1 TM |
4617 | if (res.acl_scratch) |
4618 | __free_page(res.acl_scratch); | |
aa1870af BF |
4619 | return ret; |
4620 | } | |
4621 | ||
16b4289c TM |
4622 | static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen) |
4623 | { | |
4624 | struct nfs4_exception exception = { }; | |
4625 | ssize_t ret; | |
4626 | do { | |
4627 | ret = __nfs4_get_acl_uncached(inode, buf, buflen); | |
c1578b76 | 4628 | trace_nfs4_get_acl(inode, ret); |
16b4289c TM |
4629 | if (ret >= 0) |
4630 | break; | |
4631 | ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception); | |
4632 | } while (exception.retry); | |
4633 | return ret; | |
4634 | } | |
4635 | ||
e50a1c2e BF |
4636 | static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen) |
4637 | { | |
4638 | struct nfs_server *server = NFS_SERVER(inode); | |
4639 | int ret; | |
4640 | ||
4641 | if (!nfs4_server_supports_acls(server)) | |
4642 | return -EOPNOTSUPP; | |
4643 | ret = nfs_revalidate_inode(server, inode); | |
4644 | if (ret < 0) | |
4645 | return ret; | |
08a22b39 AK |
4646 | if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL) |
4647 | nfs_zap_acl_cache(inode); | |
e50a1c2e BF |
4648 | ret = nfs4_read_cached_acl(inode, buf, buflen); |
4649 | if (ret != -ENOENT) | |
bf118a34 AA |
4650 | /* -ENOENT is returned if there is no ACL or if there is an ACL |
4651 | * but no cached acl data, just the acl length */ | |
e50a1c2e BF |
4652 | return ret; |
4653 | return nfs4_get_acl_uncached(inode, buf, buflen); | |
4654 | } | |
4655 | ||
16b4289c | 4656 | static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen) |
4b580ee3 BF |
4657 | { |
4658 | struct nfs_server *server = NFS_SERVER(inode); | |
4659 | struct page *pages[NFS4ACL_MAXPAGES]; | |
4660 | struct nfs_setaclargs arg = { | |
4661 | .fh = NFS_FH(inode), | |
4662 | .acl_pages = pages, | |
4663 | .acl_len = buflen, | |
4664 | }; | |
73c403a9 | 4665 | struct nfs_setaclres res; |
4b580ee3 BF |
4666 | struct rpc_message msg = { |
4667 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL], | |
4668 | .rpc_argp = &arg, | |
73c403a9 | 4669 | .rpc_resp = &res, |
4b580ee3 | 4670 | }; |
21f498c2 | 4671 | unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE); |
e9e3d724 | 4672 | int ret, i; |
4b580ee3 BF |
4673 | |
4674 | if (!nfs4_server_supports_acls(server)) | |
4675 | return -EOPNOTSUPP; | |
21f498c2 TM |
4676 | if (npages > ARRAY_SIZE(pages)) |
4677 | return -ERANGE; | |
e9e3d724 NH |
4678 | i = buf_to_pages_noslab(buf, buflen, arg.acl_pages, &arg.acl_pgbase); |
4679 | if (i < 0) | |
4680 | return i; | |
57ec14c5 | 4681 | nfs4_inode_return_delegation(inode); |
7c513058 | 4682 | ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1); |
e9e3d724 NH |
4683 | |
4684 | /* | |
4685 | * Free each page after tx, so the only ref left is | |
4686 | * held by the network stack | |
4687 | */ | |
4688 | for (; i > 0; i--) | |
4689 | put_page(pages[i-1]); | |
4690 | ||
08a22b39 AK |
4691 | /* |
4692 | * Acl update can result in inode attribute update. | |
4693 | * so mark the attribute cache invalid. | |
4694 | */ | |
4695 | spin_lock(&inode->i_lock); | |
4696 | NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR; | |
4697 | spin_unlock(&inode->i_lock); | |
f41f7418 TM |
4698 | nfs_access_zap_cache(inode); |
4699 | nfs_zap_acl_cache(inode); | |
4b580ee3 BF |
4700 | return ret; |
4701 | } | |
4702 | ||
16b4289c TM |
4703 | static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen) |
4704 | { | |
4705 | struct nfs4_exception exception = { }; | |
4706 | int err; | |
4707 | do { | |
c1578b76 TM |
4708 | err = __nfs4_proc_set_acl(inode, buf, buflen); |
4709 | trace_nfs4_set_acl(inode, err); | |
4710 | err = nfs4_handle_exception(NFS_SERVER(inode), err, | |
16b4289c TM |
4711 | &exception); |
4712 | } while (exception.retry); | |
4713 | return err; | |
4714 | } | |
4715 | ||
aa9c2669 DQ |
4716 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
4717 | static int _nfs4_get_security_label(struct inode *inode, void *buf, | |
4718 | size_t buflen) | |
4719 | { | |
4720 | struct nfs_server *server = NFS_SERVER(inode); | |
4721 | struct nfs_fattr fattr; | |
4722 | struct nfs4_label label = {0, 0, buflen, buf}; | |
4723 | ||
4724 | u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL }; | |
fcb63a9b | 4725 | struct nfs4_getattr_arg arg = { |
aa9c2669 DQ |
4726 | .fh = NFS_FH(inode), |
4727 | .bitmask = bitmask, | |
4728 | }; | |
4729 | struct nfs4_getattr_res res = { | |
4730 | .fattr = &fattr, | |
4731 | .label = &label, | |
4732 | .server = server, | |
4733 | }; | |
4734 | struct rpc_message msg = { | |
4735 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR], | |
fcb63a9b | 4736 | .rpc_argp = &arg, |
aa9c2669 DQ |
4737 | .rpc_resp = &res, |
4738 | }; | |
4739 | int ret; | |
4740 | ||
4741 | nfs_fattr_init(&fattr); | |
4742 | ||
fcb63a9b | 4743 | ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 0); |
aa9c2669 DQ |
4744 | if (ret) |
4745 | return ret; | |
4746 | if (!(fattr.valid & NFS_ATTR_FATTR_V4_SECURITY_LABEL)) | |
4747 | return -ENOENT; | |
4748 | if (buflen < label.len) | |
4749 | return -ERANGE; | |
4750 | return 0; | |
4751 | } | |
4752 | ||
4753 | static int nfs4_get_security_label(struct inode *inode, void *buf, | |
4754 | size_t buflen) | |
4755 | { | |
4756 | struct nfs4_exception exception = { }; | |
4757 | int err; | |
4758 | ||
4759 | if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) | |
4760 | return -EOPNOTSUPP; | |
4761 | ||
4762 | do { | |
c1578b76 TM |
4763 | err = _nfs4_get_security_label(inode, buf, buflen); |
4764 | trace_nfs4_get_security_label(inode, err); | |
4765 | err = nfs4_handle_exception(NFS_SERVER(inode), err, | |
aa9c2669 DQ |
4766 | &exception); |
4767 | } while (exception.retry); | |
4768 | return err; | |
4769 | } | |
4770 | ||
4771 | static int _nfs4_do_set_security_label(struct inode *inode, | |
4772 | struct nfs4_label *ilabel, | |
4773 | struct nfs_fattr *fattr, | |
4774 | struct nfs4_label *olabel) | |
4775 | { | |
4776 | ||
4777 | struct iattr sattr = {0}; | |
4778 | struct nfs_server *server = NFS_SERVER(inode); | |
4779 | const u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL }; | |
12207f69 | 4780 | struct nfs_setattrargs arg = { |
aa9c2669 DQ |
4781 | .fh = NFS_FH(inode), |
4782 | .iap = &sattr, | |
4783 | .server = server, | |
4784 | .bitmask = bitmask, | |
4785 | .label = ilabel, | |
4786 | }; | |
4787 | struct nfs_setattrres res = { | |
4788 | .fattr = fattr, | |
4789 | .label = olabel, | |
4790 | .server = server, | |
4791 | }; | |
4792 | struct rpc_message msg = { | |
4793 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR], | |
12207f69 | 4794 | .rpc_argp = &arg, |
aa9c2669 DQ |
4795 | .rpc_resp = &res, |
4796 | }; | |
4797 | int status; | |
4798 | ||
12207f69 | 4799 | nfs4_stateid_copy(&arg.stateid, &zero_stateid); |
aa9c2669 | 4800 | |
12207f69 | 4801 | status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1); |
aa9c2669 DQ |
4802 | if (status) |
4803 | dprintk("%s failed: %d\n", __func__, status); | |
4804 | ||
4805 | return status; | |
4806 | } | |
4807 | ||
4808 | static int nfs4_do_set_security_label(struct inode *inode, | |
4809 | struct nfs4_label *ilabel, | |
4810 | struct nfs_fattr *fattr, | |
4811 | struct nfs4_label *olabel) | |
4812 | { | |
4813 | struct nfs4_exception exception = { }; | |
4814 | int err; | |
4815 | ||
4816 | do { | |
c1578b76 TM |
4817 | err = _nfs4_do_set_security_label(inode, ilabel, |
4818 | fattr, olabel); | |
4819 | trace_nfs4_set_security_label(inode, err); | |
4820 | err = nfs4_handle_exception(NFS_SERVER(inode), err, | |
aa9c2669 DQ |
4821 | &exception); |
4822 | } while (exception.retry); | |
4823 | return err; | |
4824 | } | |
4825 | ||
4826 | static int | |
4827 | nfs4_set_security_label(struct dentry *dentry, const void *buf, size_t buflen) | |
4828 | { | |
4829 | struct nfs4_label ilabel, *olabel = NULL; | |
4830 | struct nfs_fattr fattr; | |
4831 | struct rpc_cred *cred; | |
2b0143b5 | 4832 | struct inode *inode = d_inode(dentry); |
aa9c2669 DQ |
4833 | int status; |
4834 | ||
4835 | if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) | |
4836 | return -EOPNOTSUPP; | |
4837 | ||
4838 | nfs_fattr_init(&fattr); | |
4839 | ||
4840 | ilabel.pi = 0; | |
4841 | ilabel.lfs = 0; | |
4842 | ilabel.label = (char *)buf; | |
4843 | ilabel.len = buflen; | |
4844 | ||
4845 | cred = rpc_lookup_cred(); | |
4846 | if (IS_ERR(cred)) | |
4847 | return PTR_ERR(cred); | |
4848 | ||
4849 | olabel = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL); | |
4850 | if (IS_ERR(olabel)) { | |
4851 | status = -PTR_ERR(olabel); | |
4852 | goto out; | |
4853 | } | |
4854 | ||
4855 | status = nfs4_do_set_security_label(inode, &ilabel, &fattr, olabel); | |
4856 | if (status == 0) | |
4857 | nfs_setsecurity(inode, &fattr, olabel); | |
4858 | ||
4859 | nfs4_label_free(olabel); | |
4860 | out: | |
4861 | put_rpccred(cred); | |
4862 | return status; | |
4863 | } | |
4864 | #endif /* CONFIG_NFS_V4_SECURITY_LABEL */ | |
4865 | ||
4866 | ||
1da177e4 | 4867 | static int |
8478eaa1 N |
4868 | nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server, |
4869 | struct nfs4_state *state, long *timeout) | |
1da177e4 | 4870 | { |
aa5190d0 TM |
4871 | struct nfs_client *clp = server->nfs_client; |
4872 | ||
4873 | if (task->tk_status >= 0) | |
1da177e4 LT |
4874 | return 0; |
4875 | switch(task->tk_status) { | |
a1d0b5ee | 4876 | case -NFS4ERR_DELEG_REVOKED: |
9e33bed5 TM |
4877 | case -NFS4ERR_ADMIN_REVOKED: |
4878 | case -NFS4ERR_BAD_STATEID: | |
4879 | case -NFS4ERR_OPENMODE: | |
4880 | if (state == NULL) | |
4881 | break; | |
5d422301 | 4882 | if (nfs4_schedule_stateid_recovery(server, state) < 0) |
9f51a78e | 4883 | goto recovery_failed; |
0400a6b0 | 4884 | goto wait_on_recovery; |
0ced63d1 | 4885 | case -NFS4ERR_EXPIRED: |
5d422301 TM |
4886 | if (state != NULL) { |
4887 | if (nfs4_schedule_stateid_recovery(server, state) < 0) | |
9f51a78e | 4888 | goto recovery_failed; |
5d422301 | 4889 | } |
1da177e4 | 4890 | case -NFS4ERR_STALE_STATEID: |
a2c0b9e2 | 4891 | case -NFS4ERR_STALE_CLIENTID: |
0400a6b0 TM |
4892 | nfs4_schedule_lease_recovery(clp); |
4893 | goto wait_on_recovery; | |
519ae255 CL |
4894 | case -NFS4ERR_MOVED: |
4895 | if (nfs4_schedule_migration_recovery(server) < 0) | |
4896 | goto recovery_failed; | |
4897 | goto wait_on_recovery; | |
8ef2f8d4 CL |
4898 | case -NFS4ERR_LEASE_MOVED: |
4899 | nfs4_schedule_lease_moved_recovery(clp); | |
4900 | goto wait_on_recovery; | |
4745e315 AA |
4901 | #if defined(CONFIG_NFS_V4_1) |
4902 | case -NFS4ERR_BADSESSION: | |
4903 | case -NFS4ERR_BADSLOT: | |
4904 | case -NFS4ERR_BAD_HIGH_SLOT: | |
4905 | case -NFS4ERR_DEADSESSION: | |
4906 | case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION: | |
4907 | case -NFS4ERR_SEQ_FALSE_RETRY: | |
4908 | case -NFS4ERR_SEQ_MISORDERED: | |
4909 | dprintk("%s ERROR %d, Reset session\n", __func__, | |
4910 | task->tk_status); | |
9f594791 | 4911 | nfs4_schedule_session_recovery(clp->cl_session, task->tk_status); |
4a82fd7c | 4912 | goto wait_on_recovery; |
4745e315 | 4913 | #endif /* CONFIG_NFS_V4_1 */ |
1da177e4 | 4914 | case -NFS4ERR_DELAY: |
aa5190d0 | 4915 | nfs_inc_server_stats(server, NFSIOS_DELAY); |
8478eaa1 N |
4916 | rpc_delay(task, nfs4_update_delay(timeout)); |
4917 | goto restart_call; | |
006ea73e | 4918 | case -NFS4ERR_GRACE: |
1da177e4 | 4919 | rpc_delay(task, NFS4_POLL_RETRY_MAX); |
a8a4ae3a | 4920 | case -NFS4ERR_RETRY_UNCACHED_REP: |
1da177e4 | 4921 | case -NFS4ERR_OLD_STATEID: |
f1478c13 | 4922 | goto restart_call; |
1da177e4 LT |
4923 | } |
4924 | task->tk_status = nfs4_map_errors(task->tk_status); | |
4925 | return 0; | |
9f51a78e | 4926 | recovery_failed: |
5d422301 TM |
4927 | task->tk_status = -EIO; |
4928 | return 0; | |
0400a6b0 | 4929 | wait_on_recovery: |
a2c0b9e2 | 4930 | rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL); |
a2c0b9e2 TM |
4931 | if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0) |
4932 | rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task); | |
519ae255 CL |
4933 | if (test_bit(NFS_MIG_FAILED, &server->mig_status)) |
4934 | goto recovery_failed; | |
f1478c13 | 4935 | restart_call: |
a2c0b9e2 TM |
4936 | task->tk_status = 0; |
4937 | return -EAGAIN; | |
1da177e4 LT |
4938 | } |
4939 | ||
f092075d CL |
4940 | static void nfs4_init_boot_verifier(const struct nfs_client *clp, |
4941 | nfs4_verifier *bootverf) | |
cd93710e CL |
4942 | { |
4943 | __be32 verf[2]; | |
4944 | ||
2c820d9a CL |
4945 | if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) { |
4946 | /* An impossible timestamp guarantees this value | |
4947 | * will never match a generated boot time. */ | |
4948 | verf[0] = 0; | |
17f26b12 | 4949 | verf[1] = cpu_to_be32(NSEC_PER_SEC + 1); |
2c820d9a | 4950 | } else { |
f092075d | 4951 | struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id); |
17f26b12 TM |
4952 | verf[0] = cpu_to_be32(nn->boot_time.tv_sec); |
4953 | verf[1] = cpu_to_be32(nn->boot_time.tv_nsec); | |
2c820d9a | 4954 | } |
cd93710e CL |
4955 | memcpy(bootverf->data, verf, sizeof(bootverf->data)); |
4956 | } | |
4957 | ||
e984a55a | 4958 | static unsigned int |
ceb3a16c | 4959 | nfs4_init_nonuniform_client_string(struct nfs_client *clp, |
e984a55a CL |
4960 | char *buf, size_t len) |
4961 | { | |
4962 | unsigned int result; | |
4963 | ||
ceb3a16c TM |
4964 | if (clp->cl_owner_id != NULL) |
4965 | return strlcpy(buf, clp->cl_owner_id, len); | |
4966 | ||
e984a55a CL |
4967 | rcu_read_lock(); |
4968 | result = scnprintf(buf, len, "Linux NFSv4.0 %s/%s %s", | |
4969 | clp->cl_ipaddr, | |
4970 | rpc_peeraddr2str(clp->cl_rpcclient, | |
4971 | RPC_DISPLAY_ADDR), | |
4972 | rpc_peeraddr2str(clp->cl_rpcclient, | |
4973 | RPC_DISPLAY_PROTO)); | |
4974 | rcu_read_unlock(); | |
ceb3a16c | 4975 | clp->cl_owner_id = kstrdup(buf, GFP_KERNEL); |
e984a55a CL |
4976 | return result; |
4977 | } | |
4978 | ||
4979 | static unsigned int | |
ceb3a16c | 4980 | nfs4_init_uniform_client_string(struct nfs_client *clp, |
e984a55a CL |
4981 | char *buf, size_t len) |
4982 | { | |
55b59293 | 4983 | const char *nodename = clp->cl_rpcclient->cl_nodename; |
ceb3a16c TM |
4984 | unsigned int result; |
4985 | ||
4986 | if (clp->cl_owner_id != NULL) | |
4987 | return strlcpy(buf, clp->cl_owner_id, len); | |
6f2ea7f2 CL |
4988 | |
4989 | if (nfs4_client_id_uniquifier[0] != '\0') | |
ceb3a16c | 4990 | result = scnprintf(buf, len, "Linux NFSv%u.%u %s/%s", |
55b59293 TM |
4991 | clp->rpc_ops->version, |
4992 | clp->cl_minorversion, | |
4993 | nfs4_client_id_uniquifier, | |
4994 | nodename); | |
ceb3a16c TM |
4995 | else |
4996 | result = scnprintf(buf, len, "Linux NFSv%u.%u %s", | |
e984a55a | 4997 | clp->rpc_ops->version, clp->cl_minorversion, |
6f2ea7f2 | 4998 | nodename); |
ceb3a16c TM |
4999 | clp->cl_owner_id = kstrdup(buf, GFP_KERNEL); |
5000 | return result; | |
e984a55a CL |
5001 | } |
5002 | ||
706cb8db CL |
5003 | /* |
5004 | * nfs4_callback_up_net() starts only "tcp" and "tcp6" callback | |
5005 | * services. Advertise one based on the address family of the | |
5006 | * clientaddr. | |
5007 | */ | |
5008 | static unsigned int | |
5009 | nfs4_init_callback_netid(const struct nfs_client *clp, char *buf, size_t len) | |
5010 | { | |
5011 | if (strchr(clp->cl_ipaddr, ':') != NULL) | |
5012 | return scnprintf(buf, len, "tcp6"); | |
5013 | else | |
5014 | return scnprintf(buf, len, "tcp"); | |
5015 | } | |
5016 | ||
f11b2a1c JL |
5017 | static void nfs4_setclientid_done(struct rpc_task *task, void *calldata) |
5018 | { | |
5019 | struct nfs4_setclientid *sc = calldata; | |
5020 | ||
5021 | if (task->tk_status == 0) | |
5022 | sc->sc_cred = get_rpccred(task->tk_rqstp->rq_cred); | |
5023 | } | |
5024 | ||
5025 | static const struct rpc_call_ops nfs4_setclientid_ops = { | |
5026 | .rpc_call_done = nfs4_setclientid_done, | |
5027 | }; | |
5028 | ||
6bbb4ae8 CL |
5029 | /** |
5030 | * nfs4_proc_setclientid - Negotiate client ID | |
5031 | * @clp: state data structure | |
5032 | * @program: RPC program for NFSv4 callback service | |
5033 | * @port: IP port number for NFS4 callback service | |
5034 | * @cred: RPC credential to use for this call | |
5035 | * @res: where to place the result | |
5036 | * | |
5037 | * Returns zero, a negative errno, or a negative NFS4ERR status code. | |
5038 | */ | |
bb8b27e5 TM |
5039 | int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, |
5040 | unsigned short port, struct rpc_cred *cred, | |
5041 | struct nfs4_setclientid_res *res) | |
1da177e4 LT |
5042 | { |
5043 | nfs4_verifier sc_verifier; | |
5044 | struct nfs4_setclientid setclientid = { | |
5045 | .sc_verifier = &sc_verifier, | |
5046 | .sc_prog = program, | |
f4eecd5d | 5047 | .sc_cb_ident = clp->cl_cb_ident, |
1da177e4 LT |
5048 | }; |
5049 | struct rpc_message msg = { | |
5050 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID], | |
5051 | .rpc_argp = &setclientid, | |
bb8b27e5 | 5052 | .rpc_resp = res, |
286d7d6a | 5053 | .rpc_cred = cred, |
1da177e4 | 5054 | }; |
f11b2a1c JL |
5055 | struct rpc_task *task; |
5056 | struct rpc_task_setup task_setup_data = { | |
5057 | .rpc_client = clp->cl_rpcclient, | |
5058 | .rpc_message = &msg, | |
5059 | .callback_ops = &nfs4_setclientid_ops, | |
5060 | .callback_data = &setclientid, | |
5061 | .flags = RPC_TASK_TIMEOUT, | |
5062 | }; | |
6bbb4ae8 | 5063 | int status; |
1da177e4 | 5064 | |
de734831 | 5065 | /* nfs_client_id4 */ |
f092075d | 5066 | nfs4_init_boot_verifier(clp, &sc_verifier); |
e984a55a CL |
5067 | if (test_bit(NFS_CS_MIGRATION, &clp->cl_flags)) |
5068 | setclientid.sc_name_len = | |
5069 | nfs4_init_uniform_client_string(clp, | |
5070 | setclientid.sc_name, | |
5071 | sizeof(setclientid.sc_name)); | |
5072 | else | |
5073 | setclientid.sc_name_len = | |
5074 | nfs4_init_nonuniform_client_string(clp, | |
5075 | setclientid.sc_name, | |
5076 | sizeof(setclientid.sc_name)); | |
de734831 | 5077 | /* cb_client4 */ |
706cb8db CL |
5078 | setclientid.sc_netid_len = |
5079 | nfs4_init_callback_netid(clp, | |
5080 | setclientid.sc_netid, | |
5081 | sizeof(setclientid.sc_netid)); | |
de734831 | 5082 | setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr, |
d4d3c507 | 5083 | sizeof(setclientid.sc_uaddr), "%s.%u.%u", |
1da177e4 LT |
5084 | clp->cl_ipaddr, port >> 8, port & 255); |
5085 | ||
6bbb4ae8 CL |
5086 | dprintk("NFS call setclientid auth=%s, '%.*s'\n", |
5087 | clp->cl_rpcclient->cl_auth->au_ops->au_name, | |
5088 | setclientid.sc_name_len, setclientid.sc_name); | |
f11b2a1c JL |
5089 | task = rpc_run_task(&task_setup_data); |
5090 | if (IS_ERR(task)) { | |
5091 | status = PTR_ERR(task); | |
5092 | goto out; | |
5093 | } | |
5094 | status = task->tk_status; | |
5095 | if (setclientid.sc_cred) { | |
5096 | clp->cl_acceptor = rpcauth_stringify_acceptor(setclientid.sc_cred); | |
5097 | put_rpccred(setclientid.sc_cred); | |
5098 | } | |
5099 | rpc_put_task(task); | |
5100 | out: | |
c6d01c6f | 5101 | trace_nfs4_setclientid(clp, status); |
6bbb4ae8 CL |
5102 | dprintk("NFS reply setclientid: %d\n", status); |
5103 | return status; | |
1da177e4 LT |
5104 | } |
5105 | ||
6bbb4ae8 CL |
5106 | /** |
5107 | * nfs4_proc_setclientid_confirm - Confirm client ID | |
5108 | * @clp: state data structure | |
5109 | * @res: result of a previous SETCLIENTID | |
5110 | * @cred: RPC credential to use for this call | |
5111 | * | |
5112 | * Returns zero, a negative errno, or a negative NFS4ERR status code. | |
5113 | */ | |
fd954ae1 | 5114 | int nfs4_proc_setclientid_confirm(struct nfs_client *clp, |
bb8b27e5 TM |
5115 | struct nfs4_setclientid_res *arg, |
5116 | struct rpc_cred *cred) | |
1da177e4 | 5117 | { |
1da177e4 LT |
5118 | struct rpc_message msg = { |
5119 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM], | |
bb8b27e5 | 5120 | .rpc_argp = arg, |
286d7d6a | 5121 | .rpc_cred = cred, |
1da177e4 | 5122 | }; |
1da177e4 LT |
5123 | int status; |
5124 | ||
6bbb4ae8 CL |
5125 | dprintk("NFS call setclientid_confirm auth=%s, (client ID %llx)\n", |
5126 | clp->cl_rpcclient->cl_auth->au_ops->au_name, | |
5127 | clp->cl_clientid); | |
1bd714f2 | 5128 | status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); |
c6d01c6f | 5129 | trace_nfs4_setclientid_confirm(clp, status); |
6bbb4ae8 | 5130 | dprintk("NFS reply setclientid_confirm: %d\n", status); |
1da177e4 LT |
5131 | return status; |
5132 | } | |
5133 | ||
fe650407 TM |
5134 | struct nfs4_delegreturndata { |
5135 | struct nfs4_delegreturnargs args; | |
fa178f29 | 5136 | struct nfs4_delegreturnres res; |
fe650407 TM |
5137 | struct nfs_fh fh; |
5138 | nfs4_stateid stateid; | |
26e976a8 | 5139 | unsigned long timestamp; |
fa178f29 | 5140 | struct nfs_fattr fattr; |
fe650407 | 5141 | int rpc_status; |
039b756a PT |
5142 | struct inode *inode; |
5143 | bool roc; | |
5144 | u32 roc_barrier; | |
fe650407 TM |
5145 | }; |
5146 | ||
fe650407 TM |
5147 | static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata) |
5148 | { | |
5149 | struct nfs4_delegreturndata *data = calldata; | |
938e1010 | 5150 | |
14516c3a TM |
5151 | if (!nfs4_sequence_done(task, &data->res.seq_res)) |
5152 | return; | |
938e1010 | 5153 | |
ca8acf8d | 5154 | trace_nfs4_delegreturn_exit(&data->args, &data->res, task->tk_status); |
79708861 | 5155 | switch (task->tk_status) { |
79708861 | 5156 | case 0: |
fa178f29 | 5157 | renew_lease(data->res.server, data->timestamp); |
c97cf606 TM |
5158 | case -NFS4ERR_ADMIN_REVOKED: |
5159 | case -NFS4ERR_DELEG_REVOKED: | |
5160 | case -NFS4ERR_BAD_STATEID: | |
5161 | case -NFS4ERR_OLD_STATEID: | |
5162 | case -NFS4ERR_STALE_STATEID: | |
5163 | case -NFS4ERR_EXPIRED: | |
5164 | task->tk_status = 0; | |
039b756a PT |
5165 | if (data->roc) |
5166 | pnfs_roc_set_barrier(data->inode, data->roc_barrier); | |
c97cf606 | 5167 | break; |
79708861 | 5168 | default: |
8478eaa1 N |
5169 | if (nfs4_async_handle_error(task, data->res.server, |
5170 | NULL, NULL) == -EAGAIN) { | |
d00c5d43 | 5171 | rpc_restart_call_prepare(task); |
79708861 RL |
5172 | return; |
5173 | } | |
5174 | } | |
5175 | data->rpc_status = task->tk_status; | |
fe650407 TM |
5176 | } |
5177 | ||
5178 | static void nfs4_delegreturn_release(void *calldata) | |
5179 | { | |
039b756a | 5180 | struct nfs4_delegreturndata *data = calldata; |
ea7c38fe | 5181 | struct inode *inode = data->inode; |
039b756a | 5182 | |
ea7c38fe TM |
5183 | if (inode) { |
5184 | if (data->roc) | |
5185 | pnfs_roc_release(inode); | |
5186 | nfs_iput_and_deactive(inode); | |
5187 | } | |
fe650407 TM |
5188 | kfree(calldata); |
5189 | } | |
5190 | ||
938e1010 AA |
5191 | static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data) |
5192 | { | |
5193 | struct nfs4_delegreturndata *d_data; | |
5194 | ||
5195 | d_data = (struct nfs4_delegreturndata *)data; | |
5196 | ||
039b756a PT |
5197 | if (d_data->roc && |
5198 | pnfs_roc_drain(d_data->inode, &d_data->roc_barrier, task)) | |
5199 | return; | |
5200 | ||
d9afbd1b TM |
5201 | nfs4_setup_sequence(d_data->res.server, |
5202 | &d_data->args.seq_args, | |
5203 | &d_data->res.seq_res, | |
5204 | task); | |
938e1010 | 5205 | } |
938e1010 | 5206 | |
c8d149f3 | 5207 | static const struct rpc_call_ops nfs4_delegreturn_ops = { |
938e1010 | 5208 | .rpc_call_prepare = nfs4_delegreturn_prepare, |
fe650407 TM |
5209 | .rpc_call_done = nfs4_delegreturn_done, |
5210 | .rpc_release = nfs4_delegreturn_release, | |
5211 | }; | |
5212 | ||
e6f81075 | 5213 | static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync) |
fe650407 TM |
5214 | { |
5215 | struct nfs4_delegreturndata *data; | |
fa178f29 | 5216 | struct nfs_server *server = NFS_SERVER(inode); |
fe650407 | 5217 | struct rpc_task *task; |
5138fde0 TM |
5218 | struct rpc_message msg = { |
5219 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN], | |
5220 | .rpc_cred = cred, | |
5221 | }; | |
c970aa85 TM |
5222 | struct rpc_task_setup task_setup_data = { |
5223 | .rpc_client = server->client, | |
5138fde0 | 5224 | .rpc_message = &msg, |
c970aa85 TM |
5225 | .callback_ops = &nfs4_delegreturn_ops, |
5226 | .flags = RPC_TASK_ASYNC, | |
5227 | }; | |
e6f81075 | 5228 | int status = 0; |
fe650407 | 5229 | |
8535b2be | 5230 | data = kzalloc(sizeof(*data), GFP_NOFS); |
fe650407 TM |
5231 | if (data == NULL) |
5232 | return -ENOMEM; | |
a9c92d6b | 5233 | nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1); |
fe650407 TM |
5234 | data->args.fhandle = &data->fh; |
5235 | data->args.stateid = &data->stateid; | |
9e907fec | 5236 | data->args.bitmask = server->cache_consistency_bitmask; |
fe650407 | 5237 | nfs_copy_fh(&data->fh, NFS_FH(inode)); |
f597c537 | 5238 | nfs4_stateid_copy(&data->stateid, stateid); |
fa178f29 TM |
5239 | data->res.fattr = &data->fattr; |
5240 | data->res.server = server; | |
5138fde0 | 5241 | nfs_fattr_init(data->res.fattr); |
26e976a8 | 5242 | data->timestamp = jiffies; |
fe650407 | 5243 | data->rpc_status = 0; |
ea7c38fe TM |
5244 | data->inode = nfs_igrab_and_active(inode); |
5245 | if (data->inode) | |
5246 | data->roc = nfs4_roc(inode); | |
fe650407 | 5247 | |
c970aa85 | 5248 | task_setup_data.callback_data = data; |
1174dd1f TM |
5249 | msg.rpc_argp = &data->args; |
5250 | msg.rpc_resp = &data->res; | |
c970aa85 | 5251 | task = rpc_run_task(&task_setup_data); |
7a1218a2 | 5252 | if (IS_ERR(task)) |
fe650407 | 5253 | return PTR_ERR(task); |
e6f81075 TM |
5254 | if (!issync) |
5255 | goto out; | |
fe650407 | 5256 | status = nfs4_wait_for_completion_rpc_task(task); |
e6f81075 TM |
5257 | if (status != 0) |
5258 | goto out; | |
5259 | status = data->rpc_status; | |
e144cbcc TM |
5260 | if (status == 0) |
5261 | nfs_post_op_update_inode_force_wcc(inode, &data->fattr); | |
5262 | else | |
5263 | nfs_refresh_inode(inode, &data->fattr); | |
e6f81075 | 5264 | out: |
e6b3c4db | 5265 | rpc_put_task(task); |
fe650407 | 5266 | return status; |
1da177e4 LT |
5267 | } |
5268 | ||
e6f81075 | 5269 | int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync) |
1da177e4 LT |
5270 | { |
5271 | struct nfs_server *server = NFS_SERVER(inode); | |
5272 | struct nfs4_exception exception = { }; | |
5273 | int err; | |
5274 | do { | |
e6f81075 | 5275 | err = _nfs4_proc_delegreturn(inode, cred, stateid, issync); |
ca8acf8d | 5276 | trace_nfs4_delegreturn(inode, err); |
1da177e4 LT |
5277 | switch (err) { |
5278 | case -NFS4ERR_STALE_STATEID: | |
5279 | case -NFS4ERR_EXPIRED: | |
1da177e4 LT |
5280 | case 0: |
5281 | return 0; | |
5282 | } | |
5283 | err = nfs4_handle_exception(server, err, &exception); | |
5284 | } while (exception.retry); | |
5285 | return err; | |
5286 | } | |
5287 | ||
5288 | #define NFS4_LOCK_MINTIMEOUT (1 * HZ) | |
5289 | #define NFS4_LOCK_MAXTIMEOUT (30 * HZ) | |
5290 | ||
5291 | /* | |
5292 | * sleep, with exponential backoff, and retry the LOCK operation. | |
5293 | */ | |
5294 | static unsigned long | |
5295 | nfs4_set_lock_task_retry(unsigned long timeout) | |
5296 | { | |
416ad3c9 | 5297 | freezable_schedule_timeout_killable_unsafe(timeout); |
1da177e4 LT |
5298 | timeout <<= 1; |
5299 | if (timeout > NFS4_LOCK_MAXTIMEOUT) | |
5300 | return NFS4_LOCK_MAXTIMEOUT; | |
5301 | return timeout; | |
5302 | } | |
5303 | ||
1da177e4 LT |
5304 | static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request) |
5305 | { | |
5306 | struct inode *inode = state->inode; | |
5307 | struct nfs_server *server = NFS_SERVER(inode); | |
7539bbab | 5308 | struct nfs_client *clp = server->nfs_client; |
911d1aaf | 5309 | struct nfs_lockt_args arg = { |
1da177e4 | 5310 | .fh = NFS_FH(inode), |
911d1aaf | 5311 | .fl = request, |
1da177e4 | 5312 | }; |
911d1aaf TM |
5313 | struct nfs_lockt_res res = { |
5314 | .denied = request, | |
1da177e4 LT |
5315 | }; |
5316 | struct rpc_message msg = { | |
5317 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT], | |
5318 | .rpc_argp = &arg, | |
5319 | .rpc_resp = &res, | |
5320 | .rpc_cred = state->owner->so_cred, | |
5321 | }; | |
1da177e4 LT |
5322 | struct nfs4_lock_state *lsp; |
5323 | int status; | |
5324 | ||
911d1aaf | 5325 | arg.lock_owner.clientid = clp->cl_clientid; |
8d0a8a9d TM |
5326 | status = nfs4_set_lock_state(state, request); |
5327 | if (status != 0) | |
5328 | goto out; | |
5329 | lsp = request->fl_u.nfs4_fl.owner; | |
48c22eb2 | 5330 | arg.lock_owner.id = lsp->ls_seqid.owner_id; |
d035c36c | 5331 | arg.lock_owner.s_dev = server->s_dev; |
7c513058 | 5332 | status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1); |
911d1aaf TM |
5333 | switch (status) { |
5334 | case 0: | |
5335 | request->fl_type = F_UNLCK; | |
5336 | break; | |
5337 | case -NFS4ERR_DENIED: | |
5338 | status = 0; | |
1da177e4 | 5339 | } |
70cc6487 | 5340 | request->fl_ops->fl_release_private(request); |
a6f951dd | 5341 | request->fl_ops = NULL; |
8d0a8a9d | 5342 | out: |
1da177e4 LT |
5343 | return status; |
5344 | } | |
5345 | ||
5346 | static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request) | |
5347 | { | |
5348 | struct nfs4_exception exception = { }; | |
5349 | int err; | |
5350 | ||
5351 | do { | |
d1b748a5 TM |
5352 | err = _nfs4_proc_getlk(state, cmd, request); |
5353 | trace_nfs4_get_lock(request, state, cmd, err); | |
5354 | err = nfs4_handle_exception(NFS_SERVER(state->inode), err, | |
1da177e4 LT |
5355 | &exception); |
5356 | } while (exception.retry); | |
5357 | return err; | |
5358 | } | |
5359 | ||
5360 | static int do_vfs_lock(struct file *file, struct file_lock *fl) | |
5361 | { | |
5362 | int res = 0; | |
5363 | switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) { | |
5364 | case FL_POSIX: | |
5365 | res = posix_lock_file_wait(file, fl); | |
5366 | break; | |
5367 | case FL_FLOCK: | |
5368 | res = flock_lock_file_wait(file, fl); | |
5369 | break; | |
5370 | default: | |
5371 | BUG(); | |
5372 | } | |
1da177e4 LT |
5373 | return res; |
5374 | } | |
5375 | ||
faf5f49c | 5376 | struct nfs4_unlockdata { |
911d1aaf TM |
5377 | struct nfs_locku_args arg; |
5378 | struct nfs_locku_res res; | |
faf5f49c TM |
5379 | struct nfs4_lock_state *lsp; |
5380 | struct nfs_open_context *ctx; | |
911d1aaf TM |
5381 | struct file_lock fl; |
5382 | const struct nfs_server *server; | |
26e976a8 | 5383 | unsigned long timestamp; |
faf5f49c TM |
5384 | }; |
5385 | ||
911d1aaf TM |
5386 | static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl, |
5387 | struct nfs_open_context *ctx, | |
5388 | struct nfs4_lock_state *lsp, | |
5389 | struct nfs_seqid *seqid) | |
5390 | { | |
5391 | struct nfs4_unlockdata *p; | |
5392 | struct inode *inode = lsp->ls_state->inode; | |
5393 | ||
8535b2be | 5394 | p = kzalloc(sizeof(*p), GFP_NOFS); |
911d1aaf TM |
5395 | if (p == NULL) |
5396 | return NULL; | |
5397 | p->arg.fh = NFS_FH(inode); | |
5398 | p->arg.fl = &p->fl; | |
5399 | p->arg.seqid = seqid; | |
c1d51931 | 5400 | p->res.seqid = seqid; |
911d1aaf TM |
5401 | p->lsp = lsp; |
5402 | atomic_inc(&lsp->ls_count); | |
5403 | /* Ensure we don't close file until we're done freeing locks! */ | |
5404 | p->ctx = get_nfs_open_context(ctx); | |
5405 | memcpy(&p->fl, fl, sizeof(p->fl)); | |
5406 | p->server = NFS_SERVER(inode); | |
5407 | return p; | |
5408 | } | |
5409 | ||
06f814a3 | 5410 | static void nfs4_locku_release_calldata(void *data) |
faf5f49c | 5411 | { |
963d8fe5 | 5412 | struct nfs4_unlockdata *calldata = data; |
911d1aaf | 5413 | nfs_free_seqid(calldata->arg.seqid); |
06f814a3 TM |
5414 | nfs4_put_lock_state(calldata->lsp); |
5415 | put_nfs_open_context(calldata->ctx); | |
5416 | kfree(calldata); | |
faf5f49c TM |
5417 | } |
5418 | ||
963d8fe5 | 5419 | static void nfs4_locku_done(struct rpc_task *task, void *data) |
faf5f49c | 5420 | { |
963d8fe5 | 5421 | struct nfs4_unlockdata *calldata = data; |
faf5f49c | 5422 | |
14516c3a TM |
5423 | if (!nfs4_sequence_done(task, &calldata->res.seq_res)) |
5424 | return; | |
faf5f49c TM |
5425 | switch (task->tk_status) { |
5426 | case 0: | |
26e976a8 | 5427 | renew_lease(calldata->server, calldata->timestamp); |
c69899a1 TM |
5428 | do_vfs_lock(calldata->fl.fl_file, &calldata->fl); |
5429 | if (nfs4_update_lock_stateid(calldata->lsp, | |
5430 | &calldata->res.stateid)) | |
5431 | break; | |
9e33bed5 TM |
5432 | case -NFS4ERR_BAD_STATEID: |
5433 | case -NFS4ERR_OLD_STATEID: | |
faf5f49c TM |
5434 | case -NFS4ERR_STALE_STATEID: |
5435 | case -NFS4ERR_EXPIRED: | |
425c1d4e TM |
5436 | if (!nfs4_stateid_match(&calldata->arg.stateid, |
5437 | &calldata->lsp->ls_stateid)) | |
5438 | rpc_restart_call_prepare(task); | |
faf5f49c TM |
5439 | break; |
5440 | default: | |
8478eaa1 N |
5441 | if (nfs4_async_handle_error(task, calldata->server, |
5442 | NULL, NULL) == -EAGAIN) | |
d00c5d43 | 5443 | rpc_restart_call_prepare(task); |
faf5f49c | 5444 | } |
2b1bc308 | 5445 | nfs_release_seqid(calldata->arg.seqid); |
faf5f49c TM |
5446 | } |
5447 | ||
4ce70ada | 5448 | static void nfs4_locku_prepare(struct rpc_task *task, void *data) |
faf5f49c | 5449 | { |
4ce70ada | 5450 | struct nfs4_unlockdata *calldata = data; |
faf5f49c | 5451 | |
911d1aaf | 5452 | if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0) |
c8da19b9 | 5453 | goto out_wait; |
425c1d4e | 5454 | nfs4_stateid_copy(&calldata->arg.stateid, &calldata->lsp->ls_stateid); |
795a88c9 | 5455 | if (test_bit(NFS_LOCK_INITIALIZED, &calldata->lsp->ls_flags) == 0) { |
963d8fe5 | 5456 | /* Note: exit _without_ running nfs4_locku_done */ |
c8da19b9 | 5457 | goto out_no_action; |
faf5f49c | 5458 | } |
26e976a8 | 5459 | calldata->timestamp = jiffies; |
035168ab | 5460 | if (nfs4_setup_sequence(calldata->server, |
a893693c | 5461 | &calldata->arg.seq_args, |
2240a9e2 TM |
5462 | &calldata->res.seq_res, |
5463 | task) != 0) | |
5464 | nfs_release_seqid(calldata->arg.seqid); | |
c8da19b9 TM |
5465 | return; |
5466 | out_no_action: | |
5467 | task->tk_action = NULL; | |
5468 | out_wait: | |
5469 | nfs4_sequence_done(task, &calldata->res.seq_res); | |
faf5f49c TM |
5470 | } |
5471 | ||
963d8fe5 | 5472 | static const struct rpc_call_ops nfs4_locku_ops = { |
4ce70ada | 5473 | .rpc_call_prepare = nfs4_locku_prepare, |
963d8fe5 | 5474 | .rpc_call_done = nfs4_locku_done, |
06f814a3 | 5475 | .rpc_release = nfs4_locku_release_calldata, |
963d8fe5 TM |
5476 | }; |
5477 | ||
a5d16a4d TM |
5478 | static struct rpc_task *nfs4_do_unlck(struct file_lock *fl, |
5479 | struct nfs_open_context *ctx, | |
5480 | struct nfs4_lock_state *lsp, | |
5481 | struct nfs_seqid *seqid) | |
5482 | { | |
5483 | struct nfs4_unlockdata *data; | |
5138fde0 TM |
5484 | struct rpc_message msg = { |
5485 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU], | |
5486 | .rpc_cred = ctx->cred, | |
5487 | }; | |
c970aa85 TM |
5488 | struct rpc_task_setup task_setup_data = { |
5489 | .rpc_client = NFS_CLIENT(lsp->ls_state->inode), | |
5138fde0 | 5490 | .rpc_message = &msg, |
c970aa85 | 5491 | .callback_ops = &nfs4_locku_ops, |
101070ca | 5492 | .workqueue = nfsiod_workqueue, |
c970aa85 TM |
5493 | .flags = RPC_TASK_ASYNC, |
5494 | }; | |
a5d16a4d | 5495 | |
fa940720 WAA |
5496 | nfs4_state_protect(NFS_SERVER(lsp->ls_state->inode)->nfs_client, |
5497 | NFS_SP4_MACH_CRED_CLEANUP, &task_setup_data.rpc_client, &msg); | |
5498 | ||
137d6aca FF |
5499 | /* Ensure this is an unlock - when canceling a lock, the |
5500 | * canceled lock is passed in, and it won't be an unlock. | |
5501 | */ | |
5502 | fl->fl_type = F_UNLCK; | |
5503 | ||
a5d16a4d TM |
5504 | data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid); |
5505 | if (data == NULL) { | |
5506 | nfs_free_seqid(seqid); | |
5507 | return ERR_PTR(-ENOMEM); | |
5508 | } | |
5509 | ||
a9c92d6b | 5510 | nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1); |
1174dd1f TM |
5511 | msg.rpc_argp = &data->arg; |
5512 | msg.rpc_resp = &data->res; | |
c970aa85 TM |
5513 | task_setup_data.callback_data = data; |
5514 | return rpc_run_task(&task_setup_data); | |
a5d16a4d TM |
5515 | } |
5516 | ||
faf5f49c TM |
5517 | static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request) |
5518 | { | |
65b62a29 TM |
5519 | struct inode *inode = state->inode; |
5520 | struct nfs4_state_owner *sp = state->owner; | |
5521 | struct nfs_inode *nfsi = NFS_I(inode); | |
911d1aaf | 5522 | struct nfs_seqid *seqid; |
1da177e4 | 5523 | struct nfs4_lock_state *lsp; |
06f814a3 | 5524 | struct rpc_task *task; |
b4019c0e | 5525 | struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); |
06f814a3 | 5526 | int status = 0; |
536ff0f8 | 5527 | unsigned char fl_flags = request->fl_flags; |
faf5f49c | 5528 | |
8d0a8a9d | 5529 | status = nfs4_set_lock_state(state, request); |
9b073574 TM |
5530 | /* Unlock _before_ we do the RPC call */ |
5531 | request->fl_flags |= FL_EXISTS; | |
65b62a29 TM |
5532 | /* Exclude nfs_delegation_claim_locks() */ |
5533 | mutex_lock(&sp->so_delegreturn_mutex); | |
5534 | /* Exclude nfs4_reclaim_open_stateid() - note nesting! */ | |
19e03c57 TM |
5535 | down_read(&nfsi->rwsem); |
5536 | if (do_vfs_lock(request->fl_file, request) == -ENOENT) { | |
5537 | up_read(&nfsi->rwsem); | |
65b62a29 | 5538 | mutex_unlock(&sp->so_delegreturn_mutex); |
9b073574 | 5539 | goto out; |
19e03c57 TM |
5540 | } |
5541 | up_read(&nfsi->rwsem); | |
65b62a29 | 5542 | mutex_unlock(&sp->so_delegreturn_mutex); |
8d0a8a9d | 5543 | if (status != 0) |
9b073574 TM |
5544 | goto out; |
5545 | /* Is this a delegated lock? */ | |
8d0a8a9d | 5546 | lsp = request->fl_u.nfs4_fl.owner; |
c5a2a15f TM |
5547 | if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) == 0) |
5548 | goto out; | |
b4019c0e TM |
5549 | alloc_seqid = NFS_SERVER(inode)->nfs_client->cl_mvops->alloc_seqid; |
5550 | seqid = alloc_seqid(&lsp->ls_seqid, GFP_KERNEL); | |
9b073574 | 5551 | status = -ENOMEM; |
badc76dd | 5552 | if (IS_ERR(seqid)) |
9b073574 | 5553 | goto out; |
cd3758e3 | 5554 | task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid); |
a5d16a4d TM |
5555 | status = PTR_ERR(task); |
5556 | if (IS_ERR(task)) | |
9b073574 | 5557 | goto out; |
a5d16a4d | 5558 | status = nfs4_wait_for_completion_rpc_task(task); |
e6b3c4db | 5559 | rpc_put_task(task); |
9b073574 | 5560 | out: |
536ff0f8 | 5561 | request->fl_flags = fl_flags; |
d1b748a5 | 5562 | trace_nfs4_unlock(request, state, F_SETLK, status); |
1da177e4 LT |
5563 | return status; |
5564 | } | |
5565 | ||
a5d16a4d TM |
5566 | struct nfs4_lockdata { |
5567 | struct nfs_lock_args arg; | |
5568 | struct nfs_lock_res res; | |
5569 | struct nfs4_lock_state *lsp; | |
5570 | struct nfs_open_context *ctx; | |
5571 | struct file_lock fl; | |
26e976a8 | 5572 | unsigned long timestamp; |
a5d16a4d TM |
5573 | int rpc_status; |
5574 | int cancelled; | |
66179efe | 5575 | struct nfs_server *server; |
a5d16a4d TM |
5576 | }; |
5577 | ||
5578 | static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl, | |
8535b2be TM |
5579 | struct nfs_open_context *ctx, struct nfs4_lock_state *lsp, |
5580 | gfp_t gfp_mask) | |
1da177e4 | 5581 | { |
a5d16a4d TM |
5582 | struct nfs4_lockdata *p; |
5583 | struct inode *inode = lsp->ls_state->inode; | |
1da177e4 | 5584 | struct nfs_server *server = NFS_SERVER(inode); |
b4019c0e | 5585 | struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); |
a5d16a4d | 5586 | |
8535b2be | 5587 | p = kzalloc(sizeof(*p), gfp_mask); |
a5d16a4d TM |
5588 | if (p == NULL) |
5589 | return NULL; | |
5590 | ||
5591 | p->arg.fh = NFS_FH(inode); | |
5592 | p->arg.fl = &p->fl; | |
8535b2be | 5593 | p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask); |
badc76dd | 5594 | if (IS_ERR(p->arg.open_seqid)) |
2f74c0a0 | 5595 | goto out_free; |
b4019c0e TM |
5596 | alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid; |
5597 | p->arg.lock_seqid = alloc_seqid(&lsp->ls_seqid, gfp_mask); | |
badc76dd | 5598 | if (IS_ERR(p->arg.lock_seqid)) |
2f74c0a0 | 5599 | goto out_free_seqid; |
7539bbab | 5600 | p->arg.lock_owner.clientid = server->nfs_client->cl_clientid; |
48c22eb2 | 5601 | p->arg.lock_owner.id = lsp->ls_seqid.owner_id; |
d035c36c | 5602 | p->arg.lock_owner.s_dev = server->s_dev; |
c1d51931 | 5603 | p->res.lock_seqid = p->arg.lock_seqid; |
a5d16a4d | 5604 | p->lsp = lsp; |
66179efe | 5605 | p->server = server; |
a5d16a4d TM |
5606 | atomic_inc(&lsp->ls_count); |
5607 | p->ctx = get_nfs_open_context(ctx); | |
feaff8e5 | 5608 | get_file(fl->fl_file); |
a5d16a4d TM |
5609 | memcpy(&p->fl, fl, sizeof(p->fl)); |
5610 | return p; | |
2f74c0a0 TM |
5611 | out_free_seqid: |
5612 | nfs_free_seqid(p->arg.open_seqid); | |
a5d16a4d TM |
5613 | out_free: |
5614 | kfree(p); | |
5615 | return NULL; | |
5616 | } | |
5617 | ||
5618 | static void nfs4_lock_prepare(struct rpc_task *task, void *calldata) | |
5619 | { | |
5620 | struct nfs4_lockdata *data = calldata; | |
5621 | struct nfs4_state *state = data->lsp->ls_state; | |
06735b34 | 5622 | |
3110ff80 | 5623 | dprintk("%s: begin!\n", __func__); |
2f74c0a0 | 5624 | if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0) |
c8da19b9 | 5625 | goto out_wait; |
a5d16a4d | 5626 | /* Do we need to do an open_to_lock_owner? */ |
6b447539 | 5627 | if (!test_bit(NFS_LOCK_INITIALIZED, &data->lsp->ls_flags)) { |
8fe72bac | 5628 | if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0) { |
2240a9e2 | 5629 | goto out_release_lock_seqid; |
8fe72bac | 5630 | } |
425c1d4e TM |
5631 | nfs4_stateid_copy(&data->arg.open_stateid, |
5632 | &state->open_stateid); | |
a5d16a4d | 5633 | data->arg.new_lock_owner = 1; |
c1d51931 | 5634 | data->res.open_seqid = data->arg.open_seqid; |
425c1d4e | 5635 | } else { |
2f74c0a0 | 5636 | data->arg.new_lock_owner = 0; |
425c1d4e TM |
5637 | nfs4_stateid_copy(&data->arg.lock_stateid, |
5638 | &data->lsp->ls_stateid); | |
5639 | } | |
5d422301 TM |
5640 | if (!nfs4_valid_open_stateid(state)) { |
5641 | data->rpc_status = -EBADF; | |
5642 | task->tk_action = NULL; | |
5643 | goto out_release_open_seqid; | |
5644 | } | |
26e976a8 | 5645 | data->timestamp = jiffies; |
035168ab TM |
5646 | if (nfs4_setup_sequence(data->server, |
5647 | &data->arg.seq_args, | |
2240a9e2 | 5648 | &data->res.seq_res, |
d9afbd1b | 5649 | task) == 0) |
66179efe | 5650 | return; |
5d422301 | 5651 | out_release_open_seqid: |
2240a9e2 TM |
5652 | nfs_release_seqid(data->arg.open_seqid); |
5653 | out_release_lock_seqid: | |
5654 | nfs_release_seqid(data->arg.lock_seqid); | |
c8da19b9 TM |
5655 | out_wait: |
5656 | nfs4_sequence_done(task, &data->res.seq_res); | |
8fe72bac | 5657 | dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status); |
b257957e AB |
5658 | } |
5659 | ||
a5d16a4d TM |
5660 | static void nfs4_lock_done(struct rpc_task *task, void *calldata) |
5661 | { | |
5662 | struct nfs4_lockdata *data = calldata; | |
39071e6f | 5663 | struct nfs4_lock_state *lsp = data->lsp; |
a5d16a4d | 5664 | |
3110ff80 | 5665 | dprintk("%s: begin!\n", __func__); |
a5d16a4d | 5666 | |
14516c3a TM |
5667 | if (!nfs4_sequence_done(task, &data->res.seq_res)) |
5668 | return; | |
66179efe | 5669 | |
a5d16a4d | 5670 | data->rpc_status = task->tk_status; |
425c1d4e TM |
5671 | switch (task->tk_status) { |
5672 | case 0: | |
2b0143b5 | 5673 | renew_lease(NFS_SERVER(d_inode(data->ctx->dentry)), |
39071e6f | 5674 | data->timestamp); |
c69899a1 TM |
5675 | if (data->arg.new_lock) { |
5676 | data->fl.fl_flags &= ~(FL_SLEEP | FL_ACCESS); | |
5677 | if (do_vfs_lock(data->fl.fl_file, &data->fl) < 0) { | |
5678 | rpc_restart_call_prepare(task); | |
5679 | break; | |
5680 | } | |
5681 | } | |
39071e6f TM |
5682 | if (data->arg.new_lock_owner != 0) { |
5683 | nfs_confirm_seqid(&lsp->ls_seqid, 0); | |
5684 | nfs4_stateid_copy(&lsp->ls_stateid, &data->res.stateid); | |
5685 | set_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags); | |
5686 | } else if (!nfs4_update_lock_stateid(lsp, &data->res.stateid)) | |
5687 | rpc_restart_call_prepare(task); | |
425c1d4e TM |
5688 | break; |
5689 | case -NFS4ERR_BAD_STATEID: | |
5690 | case -NFS4ERR_OLD_STATEID: | |
5691 | case -NFS4ERR_STALE_STATEID: | |
5692 | case -NFS4ERR_EXPIRED: | |
5693 | if (data->arg.new_lock_owner != 0) { | |
5694 | if (!nfs4_stateid_match(&data->arg.open_stateid, | |
5695 | &lsp->ls_state->open_stateid)) | |
5696 | rpc_restart_call_prepare(task); | |
5697 | } else if (!nfs4_stateid_match(&data->arg.lock_stateid, | |
5698 | &lsp->ls_stateid)) | |
5699 | rpc_restart_call_prepare(task); | |
a5d16a4d | 5700 | } |
3110ff80 | 5701 | dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status); |
a5d16a4d TM |
5702 | } |
5703 | ||
5704 | static void nfs4_lock_release(void *calldata) | |
5705 | { | |
5706 | struct nfs4_lockdata *data = calldata; | |
5707 | ||
3110ff80 | 5708 | dprintk("%s: begin!\n", __func__); |
2f74c0a0 | 5709 | nfs_free_seqid(data->arg.open_seqid); |
a5d16a4d TM |
5710 | if (data->cancelled != 0) { |
5711 | struct rpc_task *task; | |
5712 | task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp, | |
5713 | data->arg.lock_seqid); | |
5714 | if (!IS_ERR(task)) | |
bf294b41 | 5715 | rpc_put_task_async(task); |
3110ff80 | 5716 | dprintk("%s: cancelling lock!\n", __func__); |
a5d16a4d TM |
5717 | } else |
5718 | nfs_free_seqid(data->arg.lock_seqid); | |
5719 | nfs4_put_lock_state(data->lsp); | |
5720 | put_nfs_open_context(data->ctx); | |
feaff8e5 | 5721 | fput(data->fl.fl_file); |
a5d16a4d | 5722 | kfree(data); |
3110ff80 | 5723 | dprintk("%s: done!\n", __func__); |
a5d16a4d TM |
5724 | } |
5725 | ||
5726 | static const struct rpc_call_ops nfs4_lock_ops = { | |
5727 | .rpc_call_prepare = nfs4_lock_prepare, | |
5728 | .rpc_call_done = nfs4_lock_done, | |
5729 | .rpc_release = nfs4_lock_release, | |
5730 | }; | |
5731 | ||
2bee72a6 TM |
5732 | static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error) |
5733 | { | |
2bee72a6 TM |
5734 | switch (error) { |
5735 | case -NFS4ERR_ADMIN_REVOKED: | |
5736 | case -NFS4ERR_BAD_STATEID: | |
ecac799a | 5737 | lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED; |
2bee72a6 | 5738 | if (new_lock_owner != 0 || |
795a88c9 | 5739 | test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0) |
ecac799a | 5740 | nfs4_schedule_stateid_recovery(server, lsp->ls_state); |
a2c0b9e2 TM |
5741 | break; |
5742 | case -NFS4ERR_STALE_STATEID: | |
a2c0b9e2 | 5743 | lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED; |
ecac799a TM |
5744 | case -NFS4ERR_EXPIRED: |
5745 | nfs4_schedule_lease_recovery(server->nfs_client); | |
2bee72a6 TM |
5746 | }; |
5747 | } | |
5748 | ||
afe6c27c | 5749 | static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type) |
a5d16a4d TM |
5750 | { |
5751 | struct nfs4_lockdata *data; | |
5752 | struct rpc_task *task; | |
5138fde0 TM |
5753 | struct rpc_message msg = { |
5754 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK], | |
5755 | .rpc_cred = state->owner->so_cred, | |
5756 | }; | |
c970aa85 TM |
5757 | struct rpc_task_setup task_setup_data = { |
5758 | .rpc_client = NFS_CLIENT(state->inode), | |
5138fde0 | 5759 | .rpc_message = &msg, |
c970aa85 | 5760 | .callback_ops = &nfs4_lock_ops, |
101070ca | 5761 | .workqueue = nfsiod_workqueue, |
c970aa85 TM |
5762 | .flags = RPC_TASK_ASYNC, |
5763 | }; | |
a5d16a4d TM |
5764 | int ret; |
5765 | ||
3110ff80 | 5766 | dprintk("%s: begin!\n", __func__); |
cd3758e3 | 5767 | data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file), |
8535b2be TM |
5768 | fl->fl_u.nfs4_fl.owner, |
5769 | recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS); | |
a5d16a4d TM |
5770 | if (data == NULL) |
5771 | return -ENOMEM; | |
5772 | if (IS_SETLKW(cmd)) | |
5773 | data->arg.block = 1; | |
a9c92d6b | 5774 | nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1); |
1174dd1f TM |
5775 | msg.rpc_argp = &data->arg; |
5776 | msg.rpc_resp = &data->res; | |
c970aa85 | 5777 | task_setup_data.callback_data = data; |
8fe72bac TM |
5778 | if (recovery_type > NFS_LOCK_NEW) { |
5779 | if (recovery_type == NFS_LOCK_RECLAIM) | |
5780 | data->arg.reclaim = NFS_LOCK_RECLAIM; | |
5781 | nfs4_set_sequence_privileged(&data->arg.seq_args); | |
c69899a1 TM |
5782 | } else |
5783 | data->arg.new_lock = 1; | |
c970aa85 | 5784 | task = rpc_run_task(&task_setup_data); |
7a1218a2 | 5785 | if (IS_ERR(task)) |
a5d16a4d | 5786 | return PTR_ERR(task); |
a5d16a4d TM |
5787 | ret = nfs4_wait_for_completion_rpc_task(task); |
5788 | if (ret == 0) { | |
5789 | ret = data->rpc_status; | |
2bee72a6 TM |
5790 | if (ret) |
5791 | nfs4_handle_setlk_error(data->server, data->lsp, | |
5792 | data->arg.new_lock_owner, ret); | |
a5d16a4d TM |
5793 | } else |
5794 | data->cancelled = 1; | |
e6b3c4db | 5795 | rpc_put_task(task); |
3110ff80 | 5796 | dprintk("%s: done, ret = %d!\n", __func__, ret); |
a5d16a4d | 5797 | return ret; |
1da177e4 LT |
5798 | } |
5799 | ||
5800 | static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request) | |
5801 | { | |
202b50dc | 5802 | struct nfs_server *server = NFS_SERVER(state->inode); |
05ffe24f TM |
5803 | struct nfs4_exception exception = { |
5804 | .inode = state->inode, | |
5805 | }; | |
202b50dc TM |
5806 | int err; |
5807 | ||
5808 | do { | |
42a2d13e TM |
5809 | /* Cache the lock if possible... */ |
5810 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0) | |
5811 | return 0; | |
afe6c27c | 5812 | err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM); |
d1b748a5 | 5813 | trace_nfs4_lock_reclaim(request, state, F_SETLK, err); |
168667c4 | 5814 | if (err != -NFS4ERR_DELAY) |
202b50dc TM |
5815 | break; |
5816 | nfs4_handle_exception(server, err, &exception); | |
5817 | } while (exception.retry); | |
5818 | return err; | |
1da177e4 LT |
5819 | } |
5820 | ||
5821 | static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request) | |
5822 | { | |
202b50dc | 5823 | struct nfs_server *server = NFS_SERVER(state->inode); |
05ffe24f TM |
5824 | struct nfs4_exception exception = { |
5825 | .inode = state->inode, | |
5826 | }; | |
202b50dc TM |
5827 | int err; |
5828 | ||
6bfc93ef TM |
5829 | err = nfs4_set_lock_state(state, request); |
5830 | if (err != 0) | |
5831 | return err; | |
f6de7a39 | 5832 | if (!recover_lost_locks) { |
ef1820f9 N |
5833 | set_bit(NFS_LOCK_LOST, &request->fl_u.nfs4_fl.owner->ls_flags); |
5834 | return 0; | |
5835 | } | |
202b50dc | 5836 | do { |
42a2d13e TM |
5837 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0) |
5838 | return 0; | |
afe6c27c | 5839 | err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED); |
d1b748a5 | 5840 | trace_nfs4_lock_expired(request, state, F_SETLK, err); |
a9ed2e25 TM |
5841 | switch (err) { |
5842 | default: | |
5843 | goto out; | |
5844 | case -NFS4ERR_GRACE: | |
5845 | case -NFS4ERR_DELAY: | |
5846 | nfs4_handle_exception(server, err, &exception); | |
5847 | err = 0; | |
5848 | } | |
202b50dc | 5849 | } while (exception.retry); |
a9ed2e25 | 5850 | out: |
202b50dc | 5851 | return err; |
1da177e4 LT |
5852 | } |
5853 | ||
f062eb6c | 5854 | #if defined(CONFIG_NFS_V4_1) |
3e60ffdd CL |
5855 | /** |
5856 | * nfs41_check_expired_locks - possibly free a lock stateid | |
5857 | * | |
5858 | * @state: NFSv4 state for an inode | |
5859 | * | |
5860 | * Returns NFS_OK if recovery for this stateid is now finished. | |
5861 | * Otherwise a negative NFS4ERR value is returned. | |
5862 | */ | |
b01dd1d8 | 5863 | static int nfs41_check_expired_locks(struct nfs4_state *state) |
f062eb6c | 5864 | { |
eb64cf96 | 5865 | int status, ret = -NFS4ERR_BAD_STATEID; |
b01dd1d8 | 5866 | struct nfs4_lock_state *lsp; |
f062eb6c BS |
5867 | struct nfs_server *server = NFS_SERVER(state->inode); |
5868 | ||
b01dd1d8 | 5869 | list_for_each_entry(lsp, &state->lock_states, ls_locks) { |
795a88c9 | 5870 | if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) { |
ab7cb0df TM |
5871 | struct rpc_cred *cred = lsp->ls_state->owner->so_cred; |
5872 | ||
5873 | status = nfs41_test_stateid(server, | |
5874 | &lsp->ls_stateid, | |
5875 | cred); | |
08cb47fa | 5876 | trace_nfs4_test_lock_stateid(state, lsp, status); |
b01dd1d8 | 5877 | if (status != NFS_OK) { |
3e60ffdd CL |
5878 | /* Free the stateid unless the server |
5879 | * informs us the stateid is unrecognized. */ | |
89af2739 CL |
5880 | if (status != -NFS4ERR_BAD_STATEID) |
5881 | nfs41_free_stateid(server, | |
ab7cb0df TM |
5882 | &lsp->ls_stateid, |
5883 | cred); | |
795a88c9 | 5884 | clear_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags); |
b01dd1d8 BS |
5885 | ret = status; |
5886 | } | |
5887 | } | |
5888 | }; | |
5889 | ||
5890 | return ret; | |
5891 | } | |
5892 | ||
5893 | static int nfs41_lock_expired(struct nfs4_state *state, struct file_lock *request) | |
5894 | { | |
5895 | int status = NFS_OK; | |
5896 | ||
5897 | if (test_bit(LK_STATE_IN_USE, &state->flags)) | |
5898 | status = nfs41_check_expired_locks(state); | |
eb64cf96 CL |
5899 | if (status != NFS_OK) |
5900 | status = nfs4_lock_expired(state, request); | |
5901 | return status; | |
f062eb6c BS |
5902 | } |
5903 | #endif | |
5904 | ||
1da177e4 LT |
5905 | static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request) |
5906 | { | |
19e03c57 | 5907 | struct nfs_inode *nfsi = NFS_I(state->inode); |
01c3b861 | 5908 | unsigned char fl_flags = request->fl_flags; |
8e469ebd | 5909 | int status = -ENOLCK; |
1da177e4 | 5910 | |
8e469ebd TM |
5911 | if ((fl_flags & FL_POSIX) && |
5912 | !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags)) | |
5913 | goto out; | |
6bfc93ef | 5914 | /* Is this a delegated open? */ |
6bfc93ef TM |
5915 | status = nfs4_set_lock_state(state, request); |
5916 | if (status != 0) | |
5917 | goto out; | |
01c3b861 TM |
5918 | request->fl_flags |= FL_ACCESS; |
5919 | status = do_vfs_lock(request->fl_file, request); | |
5920 | if (status < 0) | |
5921 | goto out; | |
19e03c57 | 5922 | down_read(&nfsi->rwsem); |
01c3b861 | 5923 | if (test_bit(NFS_DELEGATED_STATE, &state->flags)) { |
01c3b861 | 5924 | /* Yes: cache locks! */ |
01c3b861 | 5925 | /* ...but avoid races with delegation recall... */ |
19e03c57 TM |
5926 | request->fl_flags = fl_flags & ~FL_SLEEP; |
5927 | status = do_vfs_lock(request->fl_file, request); | |
c69899a1 | 5928 | up_read(&nfsi->rwsem); |
9a99af49 | 5929 | goto out; |
9a99af49 | 5930 | } |
19e03c57 | 5931 | up_read(&nfsi->rwsem); |
c69899a1 | 5932 | status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW); |
01c3b861 TM |
5933 | out: |
5934 | request->fl_flags = fl_flags; | |
1da177e4 LT |
5935 | return status; |
5936 | } | |
5937 | ||
5938 | static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request) | |
5939 | { | |
a1d0b5ee TM |
5940 | struct nfs4_exception exception = { |
5941 | .state = state, | |
05ffe24f | 5942 | .inode = state->inode, |
a1d0b5ee | 5943 | }; |
1da177e4 LT |
5944 | int err; |
5945 | ||
5946 | do { | |
965b5d67 | 5947 | err = _nfs4_proc_setlk(state, cmd, request); |
d1b748a5 | 5948 | trace_nfs4_set_lock(request, state, cmd, err); |
965b5d67 TM |
5949 | if (err == -NFS4ERR_DENIED) |
5950 | err = -EAGAIN; | |
1da177e4 | 5951 | err = nfs4_handle_exception(NFS_SERVER(state->inode), |
965b5d67 | 5952 | err, &exception); |
1da177e4 LT |
5953 | } while (exception.retry); |
5954 | return err; | |
5955 | } | |
5956 | ||
5957 | static int | |
5958 | nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request) | |
5959 | { | |
5960 | struct nfs_open_context *ctx; | |
5961 | struct nfs4_state *state; | |
5962 | unsigned long timeout = NFS4_LOCK_MINTIMEOUT; | |
5963 | int status; | |
5964 | ||
5965 | /* verify open state */ | |
cd3758e3 | 5966 | ctx = nfs_file_open_context(filp); |
1da177e4 LT |
5967 | state = ctx->state; |
5968 | ||
5969 | if (request->fl_start < 0 || request->fl_end < 0) | |
5970 | return -EINVAL; | |
5971 | ||
d953126a TM |
5972 | if (IS_GETLK(cmd)) { |
5973 | if (state != NULL) | |
5974 | return nfs4_proc_getlk(state, F_GETLK, request); | |
5975 | return 0; | |
5976 | } | |
1da177e4 LT |
5977 | |
5978 | if (!(IS_SETLK(cmd) || IS_SETLKW(cmd))) | |
5979 | return -EINVAL; | |
5980 | ||
d953126a TM |
5981 | if (request->fl_type == F_UNLCK) { |
5982 | if (state != NULL) | |
5983 | return nfs4_proc_unlck(state, cmd, request); | |
5984 | return 0; | |
5985 | } | |
1da177e4 | 5986 | |
d953126a TM |
5987 | if (state == NULL) |
5988 | return -ENOLCK; | |
55725513 TM |
5989 | /* |
5990 | * Don't rely on the VFS having checked the file open mode, | |
5991 | * since it won't do this for flock() locks. | |
5992 | */ | |
f44106e2 | 5993 | switch (request->fl_type) { |
55725513 TM |
5994 | case F_RDLCK: |
5995 | if (!(filp->f_mode & FMODE_READ)) | |
5996 | return -EBADF; | |
5997 | break; | |
5998 | case F_WRLCK: | |
5999 | if (!(filp->f_mode & FMODE_WRITE)) | |
6000 | return -EBADF; | |
6001 | } | |
6002 | ||
1da177e4 LT |
6003 | do { |
6004 | status = nfs4_proc_setlk(state, cmd, request); | |
6005 | if ((status != -EAGAIN) || IS_SETLK(cmd)) | |
6006 | break; | |
6007 | timeout = nfs4_set_lock_task_retry(timeout); | |
6008 | status = -ERESTARTSYS; | |
6009 | if (signalled()) | |
6010 | break; | |
6011 | } while(status < 0); | |
1da177e4 LT |
6012 | return status; |
6013 | } | |
6014 | ||
db4f2e63 | 6015 | int nfs4_lock_delegation_recall(struct file_lock *fl, struct nfs4_state *state, const nfs4_stateid *stateid) |
888e694c TM |
6016 | { |
6017 | struct nfs_server *server = NFS_SERVER(state->inode); | |
888e694c TM |
6018 | int err; |
6019 | ||
6020 | err = nfs4_set_lock_state(state, fl); | |
6021 | if (err != 0) | |
db4f2e63 | 6022 | return err; |
4a706fa0 | 6023 | err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW); |
db4f2e63 | 6024 | return nfs4_handle_delegation_recall_error(server, state, stateid, err); |
888e694c | 6025 | } |
6b3b5496 | 6026 | |
cf470c3e TM |
6027 | struct nfs_release_lockowner_data { |
6028 | struct nfs4_lock_state *lsp; | |
5ae67c4f | 6029 | struct nfs_server *server; |
cf470c3e | 6030 | struct nfs_release_lockowner_args args; |
b7e63a10 | 6031 | struct nfs_release_lockowner_res res; |
60ea6812 | 6032 | unsigned long timestamp; |
cf470c3e TM |
6033 | }; |
6034 | ||
fbd4bfd1 CL |
6035 | static void nfs4_release_lockowner_prepare(struct rpc_task *task, void *calldata) |
6036 | { | |
6037 | struct nfs_release_lockowner_data *data = calldata; | |
5b53dc88 | 6038 | struct nfs_server *server = data->server; |
cb04ad2a PT |
6039 | nfs40_setup_sequence(server->nfs_client->cl_slot_tbl, |
6040 | &data->args.seq_args, &data->res.seq_res, task); | |
5b53dc88 | 6041 | data->args.lock_owner.clientid = server->nfs_client->cl_clientid; |
60ea6812 | 6042 | data->timestamp = jiffies; |
fbd4bfd1 CL |
6043 | } |
6044 | ||
6045 | static void nfs4_release_lockowner_done(struct rpc_task *task, void *calldata) | |
6046 | { | |
6047 | struct nfs_release_lockowner_data *data = calldata; | |
60ea6812 CL |
6048 | struct nfs_server *server = data->server; |
6049 | ||
b7e63a10 | 6050 | nfs40_sequence_done(task, &data->res.seq_res); |
60ea6812 CL |
6051 | |
6052 | switch (task->tk_status) { | |
6053 | case 0: | |
6054 | renew_lease(server, data->timestamp); | |
6055 | break; | |
6056 | case -NFS4ERR_STALE_CLIENTID: | |
6057 | case -NFS4ERR_EXPIRED: | |
5b53dc88 KM |
6058 | nfs4_schedule_lease_recovery(server->nfs_client); |
6059 | break; | |
60ea6812 CL |
6060 | case -NFS4ERR_LEASE_MOVED: |
6061 | case -NFS4ERR_DELAY: | |
8478eaa1 N |
6062 | if (nfs4_async_handle_error(task, server, |
6063 | NULL, NULL) == -EAGAIN) | |
60ea6812 CL |
6064 | rpc_restart_call_prepare(task); |
6065 | } | |
fbd4bfd1 CL |
6066 | } |
6067 | ||
d3c7b7cc TM |
6068 | static void nfs4_release_lockowner_release(void *calldata) |
6069 | { | |
cf470c3e | 6070 | struct nfs_release_lockowner_data *data = calldata; |
5ae67c4f | 6071 | nfs4_free_lock_state(data->server, data->lsp); |
d3c7b7cc TM |
6072 | kfree(calldata); |
6073 | } | |
6074 | ||
17280175 | 6075 | static const struct rpc_call_ops nfs4_release_lockowner_ops = { |
fbd4bfd1 CL |
6076 | .rpc_call_prepare = nfs4_release_lockowner_prepare, |
6077 | .rpc_call_done = nfs4_release_lockowner_done, | |
d3c7b7cc TM |
6078 | .rpc_release = nfs4_release_lockowner_release, |
6079 | }; | |
6080 | ||
f1cdae87 JL |
6081 | static void |
6082 | nfs4_release_lockowner(struct nfs_server *server, struct nfs4_lock_state *lsp) | |
d3c7b7cc | 6083 | { |
cf470c3e | 6084 | struct nfs_release_lockowner_data *data; |
d3c7b7cc TM |
6085 | struct rpc_message msg = { |
6086 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER], | |
6087 | }; | |
6088 | ||
6089 | if (server->nfs_client->cl_mvops->minor_version != 0) | |
f1cdae87 | 6090 | return; |
fbd4bfd1 | 6091 | |
cf470c3e TM |
6092 | data = kmalloc(sizeof(*data), GFP_NOFS); |
6093 | if (!data) | |
f1cdae87 | 6094 | return; |
cf470c3e | 6095 | data->lsp = lsp; |
5ae67c4f | 6096 | data->server = server; |
cf470c3e TM |
6097 | data->args.lock_owner.clientid = server->nfs_client->cl_clientid; |
6098 | data->args.lock_owner.id = lsp->ls_seqid.owner_id; | |
6099 | data->args.lock_owner.s_dev = server->s_dev; | |
fbd4bfd1 | 6100 | |
cf470c3e | 6101 | msg.rpc_argp = &data->args; |
b7e63a10 TM |
6102 | msg.rpc_resp = &data->res; |
6103 | nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 0); | |
cf470c3e | 6104 | rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, data); |
d3c7b7cc TM |
6105 | } |
6106 | ||
aa1870af BF |
6107 | #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl" |
6108 | ||
64c2ce8b AK |
6109 | static int nfs4_xattr_set_nfs4_acl(struct dentry *dentry, const char *key, |
6110 | const void *buf, size_t buflen, | |
6111 | int flags, int type) | |
6b3b5496 | 6112 | { |
64c2ce8b AK |
6113 | if (strcmp(key, "") != 0) |
6114 | return -EINVAL; | |
4b580ee3 | 6115 | |
2b0143b5 | 6116 | return nfs4_proc_set_acl(d_inode(dentry), buf, buflen); |
6b3b5496 BF |
6117 | } |
6118 | ||
64c2ce8b AK |
6119 | static int nfs4_xattr_get_nfs4_acl(struct dentry *dentry, const char *key, |
6120 | void *buf, size_t buflen, int type) | |
6b3b5496 | 6121 | { |
64c2ce8b AK |
6122 | if (strcmp(key, "") != 0) |
6123 | return -EINVAL; | |
aa1870af | 6124 | |
2b0143b5 | 6125 | return nfs4_proc_get_acl(d_inode(dentry), buf, buflen); |
6b3b5496 BF |
6126 | } |
6127 | ||
64c2ce8b AK |
6128 | static size_t nfs4_xattr_list_nfs4_acl(struct dentry *dentry, char *list, |
6129 | size_t list_len, const char *name, | |
6130 | size_t name_len, int type) | |
6b3b5496 | 6131 | { |
64c2ce8b | 6132 | size_t len = sizeof(XATTR_NAME_NFSV4_ACL); |
6b3b5496 | 6133 | |
2b0143b5 | 6134 | if (!nfs4_server_supports_acls(NFS_SERVER(d_inode(dentry)))) |
096455a2 | 6135 | return 0; |
64c2ce8b AK |
6136 | |
6137 | if (list && len <= list_len) | |
6138 | memcpy(list, XATTR_NAME_NFSV4_ACL, len); | |
aa1870af | 6139 | return len; |
6b3b5496 BF |
6140 | } |
6141 | ||
c9bccef6 DQ |
6142 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
6143 | static inline int nfs4_server_supports_labels(struct nfs_server *server) | |
6144 | { | |
6145 | return server->caps & NFS_CAP_SECURITY_LABEL; | |
6146 | } | |
6147 | ||
6148 | static int nfs4_xattr_set_nfs4_label(struct dentry *dentry, const char *key, | |
6149 | const void *buf, size_t buflen, | |
6150 | int flags, int type) | |
6151 | { | |
6152 | if (security_ismaclabel(key)) | |
6153 | return nfs4_set_security_label(dentry, buf, buflen); | |
6154 | ||
6155 | return -EOPNOTSUPP; | |
6156 | } | |
6157 | ||
6158 | static int nfs4_xattr_get_nfs4_label(struct dentry *dentry, const char *key, | |
6159 | void *buf, size_t buflen, int type) | |
6160 | { | |
6161 | if (security_ismaclabel(key)) | |
2b0143b5 | 6162 | return nfs4_get_security_label(d_inode(dentry), buf, buflen); |
c9bccef6 DQ |
6163 | return -EOPNOTSUPP; |
6164 | } | |
6165 | ||
6166 | static size_t nfs4_xattr_list_nfs4_label(struct dentry *dentry, char *list, | |
6167 | size_t list_len, const char *name, | |
6168 | size_t name_len, int type) | |
6169 | { | |
6170 | size_t len = 0; | |
6171 | ||
2b0143b5 DH |
6172 | if (nfs_server_capable(d_inode(dentry), NFS_CAP_SECURITY_LABEL)) { |
6173 | len = security_inode_listsecurity(d_inode(dentry), NULL, 0); | |
c9bccef6 | 6174 | if (list && len <= list_len) |
2b0143b5 | 6175 | security_inode_listsecurity(d_inode(dentry), list, len); |
c9bccef6 DQ |
6176 | } |
6177 | return len; | |
6178 | } | |
6179 | ||
6180 | static const struct xattr_handler nfs4_xattr_nfs4_label_handler = { | |
6181 | .prefix = XATTR_SECURITY_PREFIX, | |
6182 | .list = nfs4_xattr_list_nfs4_label, | |
6183 | .get = nfs4_xattr_get_nfs4_label, | |
6184 | .set = nfs4_xattr_set_nfs4_label, | |
6185 | }; | |
6186 | #endif | |
6187 | ||
6188 | ||
533eb461 AA |
6189 | /* |
6190 | * nfs_fhget will use either the mounted_on_fileid or the fileid | |
6191 | */ | |
69aaaae1 TM |
6192 | static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr) |
6193 | { | |
533eb461 AA |
6194 | if (!(((fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID) || |
6195 | (fattr->valid & NFS_ATTR_FATTR_FILEID)) && | |
6196 | (fattr->valid & NFS_ATTR_FATTR_FSID) && | |
81934ddb | 6197 | (fattr->valid & NFS_ATTR_FATTR_V4_LOCATIONS))) |
69aaaae1 TM |
6198 | return; |
6199 | ||
6200 | fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE | | |
81934ddb | 6201 | NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_V4_REFERRAL; |
69aaaae1 TM |
6202 | fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO; |
6203 | fattr->nlink = 2; | |
6204 | } | |
6205 | ||
f05d147f BS |
6206 | static int _nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir, |
6207 | const struct qstr *name, | |
6208 | struct nfs4_fs_locations *fs_locations, | |
6209 | struct page *page) | |
683b57b4 TM |
6210 | { |
6211 | struct nfs_server *server = NFS_SERVER(dir); | |
a09df2ca | 6212 | u32 bitmask[3] = { |
361e624f | 6213 | [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS, |
683b57b4 TM |
6214 | }; |
6215 | struct nfs4_fs_locations_arg args = { | |
6216 | .dir_fh = NFS_FH(dir), | |
c228fd3a | 6217 | .name = name, |
683b57b4 TM |
6218 | .page = page, |
6219 | .bitmask = bitmask, | |
6220 | }; | |
22958463 BH |
6221 | struct nfs4_fs_locations_res res = { |
6222 | .fs_locations = fs_locations, | |
6223 | }; | |
683b57b4 TM |
6224 | struct rpc_message msg = { |
6225 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS], | |
6226 | .rpc_argp = &args, | |
22958463 | 6227 | .rpc_resp = &res, |
683b57b4 TM |
6228 | }; |
6229 | int status; | |
6230 | ||
3110ff80 | 6231 | dprintk("%s: start\n", __func__); |
533eb461 AA |
6232 | |
6233 | /* Ask for the fileid of the absent filesystem if mounted_on_fileid | |
6234 | * is not supported */ | |
6235 | if (NFS_SERVER(dir)->attr_bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID) | |
6236 | bitmask[1] |= FATTR4_WORD1_MOUNTED_ON_FILEID; | |
6237 | else | |
6238 | bitmask[0] |= FATTR4_WORD0_FILEID; | |
6239 | ||
c228fd3a | 6240 | nfs_fattr_init(&fs_locations->fattr); |
683b57b4 | 6241 | fs_locations->server = server; |
830b8e33 | 6242 | fs_locations->nlocations = 0; |
f05d147f | 6243 | status = nfs4_call_sync(client, server, &msg, &args.seq_args, &res.seq_res, 0); |
3110ff80 | 6244 | dprintk("%s: returned status = %d\n", __func__, status); |
683b57b4 TM |
6245 | return status; |
6246 | } | |
6247 | ||
f05d147f BS |
6248 | int nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir, |
6249 | const struct qstr *name, | |
6250 | struct nfs4_fs_locations *fs_locations, | |
6251 | struct page *page) | |
db0a9593 BS |
6252 | { |
6253 | struct nfs4_exception exception = { }; | |
6254 | int err; | |
6255 | do { | |
078ea3df TM |
6256 | err = _nfs4_proc_fs_locations(client, dir, name, |
6257 | fs_locations, page); | |
6258 | trace_nfs4_get_fs_locations(dir, name, err); | |
6259 | err = nfs4_handle_exception(NFS_SERVER(dir), err, | |
db0a9593 BS |
6260 | &exception); |
6261 | } while (exception.retry); | |
6262 | return err; | |
6263 | } | |
6264 | ||
b03d735b CL |
6265 | /* |
6266 | * This operation also signals the server that this client is | |
6267 | * performing migration recovery. The server can stop returning | |
6268 | * NFS4ERR_LEASE_MOVED to this client. A RENEW operation is | |
6269 | * appended to this compound to identify the client ID which is | |
6270 | * performing recovery. | |
6271 | */ | |
6272 | static int _nfs40_proc_get_locations(struct inode *inode, | |
6273 | struct nfs4_fs_locations *locations, | |
6274 | struct page *page, struct rpc_cred *cred) | |
6275 | { | |
6276 | struct nfs_server *server = NFS_SERVER(inode); | |
6277 | struct rpc_clnt *clnt = server->client; | |
6278 | u32 bitmask[2] = { | |
6279 | [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS, | |
6280 | }; | |
6281 | struct nfs4_fs_locations_arg args = { | |
6282 | .clientid = server->nfs_client->cl_clientid, | |
6283 | .fh = NFS_FH(inode), | |
6284 | .page = page, | |
6285 | .bitmask = bitmask, | |
6286 | .migration = 1, /* skip LOOKUP */ | |
6287 | .renew = 1, /* append RENEW */ | |
6288 | }; | |
6289 | struct nfs4_fs_locations_res res = { | |
6290 | .fs_locations = locations, | |
6291 | .migration = 1, | |
6292 | .renew = 1, | |
6293 | }; | |
6294 | struct rpc_message msg = { | |
6295 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS], | |
6296 | .rpc_argp = &args, | |
6297 | .rpc_resp = &res, | |
6298 | .rpc_cred = cred, | |
6299 | }; | |
6300 | unsigned long now = jiffies; | |
6301 | int status; | |
6302 | ||
6303 | nfs_fattr_init(&locations->fattr); | |
6304 | locations->server = server; | |
6305 | locations->nlocations = 0; | |
6306 | ||
6307 | nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); | |
6308 | nfs4_set_sequence_privileged(&args.seq_args); | |
6309 | status = nfs4_call_sync_sequence(clnt, server, &msg, | |
6310 | &args.seq_args, &res.seq_res); | |
6311 | if (status) | |
6312 | return status; | |
6313 | ||
6314 | renew_lease(server, now); | |
6315 | return 0; | |
6316 | } | |
6317 | ||
6318 | #ifdef CONFIG_NFS_V4_1 | |
6319 | ||
6320 | /* | |
6321 | * This operation also signals the server that this client is | |
6322 | * performing migration recovery. The server can stop asserting | |
6323 | * SEQ4_STATUS_LEASE_MOVED for this client. The client ID | |
6324 | * performing this operation is identified in the SEQUENCE | |
6325 | * operation in this compound. | |
6326 | * | |
6327 | * When the client supports GETATTR(fs_locations_info), it can | |
6328 | * be plumbed in here. | |
6329 | */ | |
6330 | static int _nfs41_proc_get_locations(struct inode *inode, | |
6331 | struct nfs4_fs_locations *locations, | |
6332 | struct page *page, struct rpc_cred *cred) | |
6333 | { | |
6334 | struct nfs_server *server = NFS_SERVER(inode); | |
6335 | struct rpc_clnt *clnt = server->client; | |
6336 | u32 bitmask[2] = { | |
6337 | [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS, | |
6338 | }; | |
6339 | struct nfs4_fs_locations_arg args = { | |
6340 | .fh = NFS_FH(inode), | |
6341 | .page = page, | |
6342 | .bitmask = bitmask, | |
6343 | .migration = 1, /* skip LOOKUP */ | |
6344 | }; | |
6345 | struct nfs4_fs_locations_res res = { | |
6346 | .fs_locations = locations, | |
6347 | .migration = 1, | |
6348 | }; | |
6349 | struct rpc_message msg = { | |
6350 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS], | |
6351 | .rpc_argp = &args, | |
6352 | .rpc_resp = &res, | |
6353 | .rpc_cred = cred, | |
6354 | }; | |
6355 | int status; | |
6356 | ||
6357 | nfs_fattr_init(&locations->fattr); | |
6358 | locations->server = server; | |
6359 | locations->nlocations = 0; | |
6360 | ||
6361 | nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); | |
6362 | nfs4_set_sequence_privileged(&args.seq_args); | |
6363 | status = nfs4_call_sync_sequence(clnt, server, &msg, | |
6364 | &args.seq_args, &res.seq_res); | |
6365 | if (status == NFS4_OK && | |
6366 | res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED) | |
6367 | status = -NFS4ERR_LEASE_MOVED; | |
6368 | return status; | |
6369 | } | |
6370 | ||
6371 | #endif /* CONFIG_NFS_V4_1 */ | |
6372 | ||
6373 | /** | |
6374 | * nfs4_proc_get_locations - discover locations for a migrated FSID | |
6375 | * @inode: inode on FSID that is migrating | |
6376 | * @locations: result of query | |
6377 | * @page: buffer | |
6378 | * @cred: credential to use for this operation | |
6379 | * | |
6380 | * Returns NFS4_OK on success, a negative NFS4ERR status code if the | |
6381 | * operation failed, or a negative errno if a local error occurred. | |
6382 | * | |
6383 | * On success, "locations" is filled in, but if the server has | |
6384 | * no locations information, NFS_ATTR_FATTR_V4_LOCATIONS is not | |
6385 | * asserted. | |
6386 | * | |
6387 | * -NFS4ERR_LEASE_MOVED is returned if the server still has leases | |
6388 | * from this client that require migration recovery. | |
6389 | */ | |
6390 | int nfs4_proc_get_locations(struct inode *inode, | |
6391 | struct nfs4_fs_locations *locations, | |
6392 | struct page *page, struct rpc_cred *cred) | |
6393 | { | |
6394 | struct nfs_server *server = NFS_SERVER(inode); | |
6395 | struct nfs_client *clp = server->nfs_client; | |
6396 | const struct nfs4_mig_recovery_ops *ops = | |
6397 | clp->cl_mvops->mig_recovery_ops; | |
6398 | struct nfs4_exception exception = { }; | |
6399 | int status; | |
6400 | ||
6401 | dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__, | |
6402 | (unsigned long long)server->fsid.major, | |
6403 | (unsigned long long)server->fsid.minor, | |
6404 | clp->cl_hostname); | |
6405 | nfs_display_fhandle(NFS_FH(inode), __func__); | |
6406 | ||
6407 | do { | |
6408 | status = ops->get_locations(inode, locations, page, cred); | |
6409 | if (status != -NFS4ERR_DELAY) | |
6410 | break; | |
6411 | nfs4_handle_exception(server, status, &exception); | |
6412 | } while (exception.retry); | |
6413 | return status; | |
6414 | } | |
6415 | ||
44c99933 CL |
6416 | /* |
6417 | * This operation also signals the server that this client is | |
6418 | * performing "lease moved" recovery. The server can stop | |
6419 | * returning NFS4ERR_LEASE_MOVED to this client. A RENEW operation | |
6420 | * is appended to this compound to identify the client ID which is | |
6421 | * performing recovery. | |
6422 | */ | |
6423 | static int _nfs40_proc_fsid_present(struct inode *inode, struct rpc_cred *cred) | |
6424 | { | |
6425 | struct nfs_server *server = NFS_SERVER(inode); | |
6426 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; | |
6427 | struct rpc_clnt *clnt = server->client; | |
6428 | struct nfs4_fsid_present_arg args = { | |
6429 | .fh = NFS_FH(inode), | |
6430 | .clientid = clp->cl_clientid, | |
6431 | .renew = 1, /* append RENEW */ | |
6432 | }; | |
6433 | struct nfs4_fsid_present_res res = { | |
6434 | .renew = 1, | |
6435 | }; | |
6436 | struct rpc_message msg = { | |
6437 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT], | |
6438 | .rpc_argp = &args, | |
6439 | .rpc_resp = &res, | |
6440 | .rpc_cred = cred, | |
6441 | }; | |
6442 | unsigned long now = jiffies; | |
6443 | int status; | |
6444 | ||
6445 | res.fh = nfs_alloc_fhandle(); | |
6446 | if (res.fh == NULL) | |
6447 | return -ENOMEM; | |
6448 | ||
6449 | nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); | |
6450 | nfs4_set_sequence_privileged(&args.seq_args); | |
6451 | status = nfs4_call_sync_sequence(clnt, server, &msg, | |
6452 | &args.seq_args, &res.seq_res); | |
6453 | nfs_free_fhandle(res.fh); | |
6454 | if (status) | |
6455 | return status; | |
6456 | ||
6457 | do_renew_lease(clp, now); | |
6458 | return 0; | |
6459 | } | |
6460 | ||
6461 | #ifdef CONFIG_NFS_V4_1 | |
6462 | ||
6463 | /* | |
6464 | * This operation also signals the server that this client is | |
6465 | * performing "lease moved" recovery. The server can stop asserting | |
6466 | * SEQ4_STATUS_LEASE_MOVED for this client. The client ID performing | |
6467 | * this operation is identified in the SEQUENCE operation in this | |
6468 | * compound. | |
6469 | */ | |
6470 | static int _nfs41_proc_fsid_present(struct inode *inode, struct rpc_cred *cred) | |
6471 | { | |
6472 | struct nfs_server *server = NFS_SERVER(inode); | |
6473 | struct rpc_clnt *clnt = server->client; | |
6474 | struct nfs4_fsid_present_arg args = { | |
6475 | .fh = NFS_FH(inode), | |
6476 | }; | |
6477 | struct nfs4_fsid_present_res res = { | |
6478 | }; | |
6479 | struct rpc_message msg = { | |
6480 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT], | |
6481 | .rpc_argp = &args, | |
6482 | .rpc_resp = &res, | |
6483 | .rpc_cred = cred, | |
6484 | }; | |
6485 | int status; | |
6486 | ||
6487 | res.fh = nfs_alloc_fhandle(); | |
6488 | if (res.fh == NULL) | |
6489 | return -ENOMEM; | |
6490 | ||
6491 | nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); | |
6492 | nfs4_set_sequence_privileged(&args.seq_args); | |
6493 | status = nfs4_call_sync_sequence(clnt, server, &msg, | |
6494 | &args.seq_args, &res.seq_res); | |
6495 | nfs_free_fhandle(res.fh); | |
6496 | if (status == NFS4_OK && | |
6497 | res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED) | |
6498 | status = -NFS4ERR_LEASE_MOVED; | |
6499 | return status; | |
6500 | } | |
6501 | ||
6502 | #endif /* CONFIG_NFS_V4_1 */ | |
6503 | ||
6504 | /** | |
6505 | * nfs4_proc_fsid_present - Is this FSID present or absent on server? | |
6506 | * @inode: inode on FSID to check | |
6507 | * @cred: credential to use for this operation | |
6508 | * | |
6509 | * Server indicates whether the FSID is present, moved, or not | |
6510 | * recognized. This operation is necessary to clear a LEASE_MOVED | |
6511 | * condition for this client ID. | |
6512 | * | |
6513 | * Returns NFS4_OK if the FSID is present on this server, | |
6514 | * -NFS4ERR_MOVED if the FSID is no longer present, a negative | |
6515 | * NFS4ERR code if some error occurred on the server, or a | |
6516 | * negative errno if a local failure occurred. | |
6517 | */ | |
6518 | int nfs4_proc_fsid_present(struct inode *inode, struct rpc_cred *cred) | |
6519 | { | |
6520 | struct nfs_server *server = NFS_SERVER(inode); | |
6521 | struct nfs_client *clp = server->nfs_client; | |
6522 | const struct nfs4_mig_recovery_ops *ops = | |
6523 | clp->cl_mvops->mig_recovery_ops; | |
6524 | struct nfs4_exception exception = { }; | |
6525 | int status; | |
6526 | ||
6527 | dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__, | |
6528 | (unsigned long long)server->fsid.major, | |
6529 | (unsigned long long)server->fsid.minor, | |
6530 | clp->cl_hostname); | |
6531 | nfs_display_fhandle(NFS_FH(inode), __func__); | |
6532 | ||
6533 | do { | |
6534 | status = ops->fsid_present(inode, cred); | |
6535 | if (status != -NFS4ERR_DELAY) | |
6536 | break; | |
6537 | nfs4_handle_exception(server, status, &exception); | |
6538 | } while (exception.retry); | |
6539 | return status; | |
6540 | } | |
6541 | ||
5ec16a85 | 6542 | /** |
a5250def WAA |
6543 | * If 'use_integrity' is true and the state managment nfs_client |
6544 | * cl_rpcclient is using krb5i/p, use the integrity protected cl_rpcclient | |
6545 | * and the machine credential as per RFC3530bis and RFC5661 Security | |
6546 | * Considerations sections. Otherwise, just use the user cred with the | |
6547 | * filesystem's rpc_client. | |
5ec16a85 | 6548 | */ |
a5250def | 6549 | static int _nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, struct nfs4_secinfo_flavors *flavors, bool use_integrity) |
5a5ea0d4 BS |
6550 | { |
6551 | int status; | |
6552 | struct nfs4_secinfo_arg args = { | |
6553 | .dir_fh = NFS_FH(dir), | |
6554 | .name = name, | |
6555 | }; | |
6556 | struct nfs4_secinfo_res res = { | |
6557 | .flavors = flavors, | |
6558 | }; | |
6559 | struct rpc_message msg = { | |
6560 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO], | |
6561 | .rpc_argp = &args, | |
6562 | .rpc_resp = &res, | |
6563 | }; | |
a5250def | 6564 | struct rpc_clnt *clnt = NFS_SERVER(dir)->client; |
7cb852df | 6565 | struct rpc_cred *cred = NULL; |
a5250def WAA |
6566 | |
6567 | if (use_integrity) { | |
6568 | clnt = NFS_SERVER(dir)->nfs_client->cl_rpcclient; | |
7cb852df WAA |
6569 | cred = nfs4_get_clid_cred(NFS_SERVER(dir)->nfs_client); |
6570 | msg.rpc_cred = cred; | |
a5250def | 6571 | } |
5a5ea0d4 BS |
6572 | |
6573 | dprintk("NFS call secinfo %s\n", name->name); | |
8b5bee2e WAA |
6574 | |
6575 | nfs4_state_protect(NFS_SERVER(dir)->nfs_client, | |
6576 | NFS_SP4_MACH_CRED_SECINFO, &clnt, &msg); | |
6577 | ||
a5250def WAA |
6578 | status = nfs4_call_sync(clnt, NFS_SERVER(dir), &msg, &args.seq_args, |
6579 | &res.seq_res, 0); | |
5a5ea0d4 | 6580 | dprintk("NFS reply secinfo: %d\n", status); |
a5250def | 6581 | |
7cb852df WAA |
6582 | if (cred) |
6583 | put_rpccred(cred); | |
a5250def | 6584 | |
5a5ea0d4 BS |
6585 | return status; |
6586 | } | |
6587 | ||
72de53ec BS |
6588 | int nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, |
6589 | struct nfs4_secinfo_flavors *flavors) | |
5a5ea0d4 BS |
6590 | { |
6591 | struct nfs4_exception exception = { }; | |
6592 | int err; | |
6593 | do { | |
a5250def WAA |
6594 | err = -NFS4ERR_WRONGSEC; |
6595 | ||
6596 | /* try to use integrity protection with machine cred */ | |
6597 | if (_nfs4_is_integrity_protected(NFS_SERVER(dir)->nfs_client)) | |
6598 | err = _nfs4_proc_secinfo(dir, name, flavors, true); | |
6599 | ||
6600 | /* | |
6601 | * if unable to use integrity protection, or SECINFO with | |
6602 | * integrity protection returns NFS4ERR_WRONGSEC (which is | |
6603 | * disallowed by spec, but exists in deployed servers) use | |
6604 | * the current filesystem's rpc_client and the user cred. | |
6605 | */ | |
6606 | if (err == -NFS4ERR_WRONGSEC) | |
6607 | err = _nfs4_proc_secinfo(dir, name, flavors, false); | |
6608 | ||
078ea3df TM |
6609 | trace_nfs4_secinfo(dir, name, err); |
6610 | err = nfs4_handle_exception(NFS_SERVER(dir), err, | |
5a5ea0d4 BS |
6611 | &exception); |
6612 | } while (exception.retry); | |
6613 | return err; | |
6614 | } | |
6615 | ||
557134a3 | 6616 | #ifdef CONFIG_NFS_V4_1 |
357f54d6 AA |
6617 | /* |
6618 | * Check the exchange flags returned by the server for invalid flags, having | |
6619 | * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or | |
6620 | * DS flags set. | |
6621 | */ | |
6622 | static int nfs4_check_cl_exchange_flags(u32 flags) | |
6623 | { | |
6624 | if (flags & ~EXCHGID4_FLAG_MASK_R) | |
6625 | goto out_inval; | |
6626 | if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) && | |
6627 | (flags & EXCHGID4_FLAG_USE_NON_PNFS)) | |
6628 | goto out_inval; | |
6629 | if (!(flags & (EXCHGID4_FLAG_MASK_PNFS))) | |
6630 | goto out_inval; | |
6631 | return NFS_OK; | |
6632 | out_inval: | |
6633 | return -NFS4ERR_INVAL; | |
6634 | } | |
6635 | ||
78fe0f41 | 6636 | static bool |
79d4e1f0 CL |
6637 | nfs41_same_server_scope(struct nfs41_server_scope *a, |
6638 | struct nfs41_server_scope *b) | |
78fe0f41 WAA |
6639 | { |
6640 | if (a->server_scope_sz == b->server_scope_sz && | |
6641 | memcmp(a->server_scope, b->server_scope, a->server_scope_sz) == 0) | |
6642 | return true; | |
6643 | ||
6644 | return false; | |
6645 | } | |
6646 | ||
7c44f1ae WAA |
6647 | /* |
6648 | * nfs4_proc_bind_conn_to_session() | |
6649 | * | |
6650 | * The 4.1 client currently uses the same TCP connection for the | |
6651 | * fore and backchannel. | |
6652 | */ | |
2cf047c9 | 6653 | int nfs4_proc_bind_conn_to_session(struct nfs_client *clp, struct rpc_cred *cred) |
7c44f1ae WAA |
6654 | { |
6655 | int status; | |
71a097c6 TM |
6656 | struct nfs41_bind_conn_to_session_args args = { |
6657 | .client = clp, | |
6658 | .dir = NFS4_CDFC4_FORE_OR_BOTH, | |
6659 | }; | |
7c44f1ae WAA |
6660 | struct nfs41_bind_conn_to_session_res res; |
6661 | struct rpc_message msg = { | |
6662 | .rpc_proc = | |
6663 | &nfs4_procedures[NFSPROC4_CLNT_BIND_CONN_TO_SESSION], | |
71a097c6 | 6664 | .rpc_argp = &args, |
7c44f1ae | 6665 | .rpc_resp = &res, |
2cf047c9 | 6666 | .rpc_cred = cred, |
7c44f1ae WAA |
6667 | }; |
6668 | ||
6669 | dprintk("--> %s\n", __func__); | |
7c44f1ae | 6670 | |
71a097c6 TM |
6671 | nfs4_copy_sessionid(&args.sessionid, &clp->cl_session->sess_id); |
6672 | if (!(clp->cl_session->flags & SESSION4_BACK_CHAN)) | |
6673 | args.dir = NFS4_CDFC4_FORE; | |
7c44f1ae WAA |
6674 | |
6675 | status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); | |
c6d01c6f | 6676 | trace_nfs4_bind_conn_to_session(clp, status); |
7c44f1ae | 6677 | if (status == 0) { |
71a097c6 | 6678 | if (memcmp(res.sessionid.data, |
7c44f1ae WAA |
6679 | clp->cl_session->sess_id.data, NFS4_MAX_SESSIONID_LEN)) { |
6680 | dprintk("NFS: %s: Session ID mismatch\n", __func__); | |
6681 | status = -EIO; | |
71a097c6 | 6682 | goto out; |
7c44f1ae | 6683 | } |
71a097c6 | 6684 | if ((res.dir & args.dir) != res.dir || res.dir == 0) { |
7c44f1ae WAA |
6685 | dprintk("NFS: %s: Unexpected direction from server\n", |
6686 | __func__); | |
6687 | status = -EIO; | |
71a097c6 | 6688 | goto out; |
7c44f1ae | 6689 | } |
71a097c6 | 6690 | if (res.use_conn_in_rdma_mode != args.use_conn_in_rdma_mode) { |
7c44f1ae WAA |
6691 | dprintk("NFS: %s: Server returned RDMA mode = true\n", |
6692 | __func__); | |
6693 | status = -EIO; | |
71a097c6 | 6694 | goto out; |
7c44f1ae WAA |
6695 | } |
6696 | } | |
7c44f1ae WAA |
6697 | out: |
6698 | dprintk("<-- %s status= %d\n", __func__, status); | |
6699 | return status; | |
6700 | } | |
6701 | ||
99fe60d0 | 6702 | /* |
fa940720 WAA |
6703 | * Minimum set of SP4_MACH_CRED operations from RFC 5661 in the enforce map |
6704 | * and operations we'd like to see to enable certain features in the allow map | |
2031cd1a WAA |
6705 | */ |
6706 | static const struct nfs41_state_protection nfs4_sp4_mach_cred_request = { | |
6707 | .how = SP4_MACH_CRED, | |
6708 | .enforce.u.words = { | |
6709 | [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) | | |
6710 | 1 << (OP_EXCHANGE_ID - 32) | | |
6711 | 1 << (OP_CREATE_SESSION - 32) | | |
6712 | 1 << (OP_DESTROY_SESSION - 32) | | |
6713 | 1 << (OP_DESTROY_CLIENTID - 32) | |
fa940720 WAA |
6714 | }, |
6715 | .allow.u.words = { | |
6716 | [0] = 1 << (OP_CLOSE) | | |
a0279625 WAA |
6717 | 1 << (OP_LOCKU) | |
6718 | 1 << (OP_COMMIT), | |
8b5bee2e | 6719 | [1] = 1 << (OP_SECINFO - 32) | |
3787d506 WAA |
6720 | 1 << (OP_SECINFO_NO_NAME - 32) | |
6721 | 1 << (OP_TEST_STATEID - 32) | | |
a0279625 WAA |
6722 | 1 << (OP_FREE_STATEID - 32) | |
6723 | 1 << (OP_WRITE - 32) | |
2031cd1a WAA |
6724 | } |
6725 | }; | |
6726 | ||
6727 | /* | |
6728 | * Select the state protection mode for client `clp' given the server results | |
6729 | * from exchange_id in `sp'. | |
99fe60d0 | 6730 | * |
2031cd1a WAA |
6731 | * Returns 0 on success, negative errno otherwise. |
6732 | */ | |
6733 | static int nfs4_sp4_select_mode(struct nfs_client *clp, | |
6734 | struct nfs41_state_protection *sp) | |
6735 | { | |
6736 | static const u32 supported_enforce[NFS4_OP_MAP_NUM_WORDS] = { | |
6737 | [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) | | |
6738 | 1 << (OP_EXCHANGE_ID - 32) | | |
6739 | 1 << (OP_CREATE_SESSION - 32) | | |
6740 | 1 << (OP_DESTROY_SESSION - 32) | | |
6741 | 1 << (OP_DESTROY_CLIENTID - 32) | |
6742 | }; | |
6743 | unsigned int i; | |
6744 | ||
6745 | if (sp->how == SP4_MACH_CRED) { | |
6746 | /* Print state protect result */ | |
6747 | dfprintk(MOUNT, "Server SP4_MACH_CRED support:\n"); | |
6748 | for (i = 0; i <= LAST_NFS4_OP; i++) { | |
6749 | if (test_bit(i, sp->enforce.u.longs)) | |
6750 | dfprintk(MOUNT, " enforce op %d\n", i); | |
6751 | if (test_bit(i, sp->allow.u.longs)) | |
6752 | dfprintk(MOUNT, " allow op %d\n", i); | |
6753 | } | |
6754 | ||
6755 | /* make sure nothing is on enforce list that isn't supported */ | |
6756 | for (i = 0; i < NFS4_OP_MAP_NUM_WORDS; i++) { | |
6757 | if (sp->enforce.u.words[i] & ~supported_enforce[i]) { | |
6758 | dfprintk(MOUNT, "sp4_mach_cred: disabled\n"); | |
6759 | return -EINVAL; | |
6760 | } | |
6761 | } | |
6762 | ||
6763 | /* | |
6764 | * Minimal mode - state operations are allowed to use machine | |
6765 | * credential. Note this already happens by default, so the | |
6766 | * client doesn't have to do anything more than the negotiation. | |
6767 | * | |
6768 | * NOTE: we don't care if EXCHANGE_ID is in the list - | |
6769 | * we're already using the machine cred for exchange_id | |
6770 | * and will never use a different cred. | |
6771 | */ | |
6772 | if (test_bit(OP_BIND_CONN_TO_SESSION, sp->enforce.u.longs) && | |
6773 | test_bit(OP_CREATE_SESSION, sp->enforce.u.longs) && | |
6774 | test_bit(OP_DESTROY_SESSION, sp->enforce.u.longs) && | |
6775 | test_bit(OP_DESTROY_CLIENTID, sp->enforce.u.longs)) { | |
6776 | dfprintk(MOUNT, "sp4_mach_cred:\n"); | |
6777 | dfprintk(MOUNT, " minimal mode enabled\n"); | |
6778 | set_bit(NFS_SP4_MACH_CRED_MINIMAL, &clp->cl_sp4_flags); | |
6779 | } else { | |
6780 | dfprintk(MOUNT, "sp4_mach_cred: disabled\n"); | |
6781 | return -EINVAL; | |
6782 | } | |
fa940720 WAA |
6783 | |
6784 | if (test_bit(OP_CLOSE, sp->allow.u.longs) && | |
6785 | test_bit(OP_LOCKU, sp->allow.u.longs)) { | |
6786 | dfprintk(MOUNT, " cleanup mode enabled\n"); | |
6787 | set_bit(NFS_SP4_MACH_CRED_CLEANUP, &clp->cl_sp4_flags); | |
6788 | } | |
8b5bee2e WAA |
6789 | |
6790 | if (test_bit(OP_SECINFO, sp->allow.u.longs) && | |
6791 | test_bit(OP_SECINFO_NO_NAME, sp->allow.u.longs)) { | |
6792 | dfprintk(MOUNT, " secinfo mode enabled\n"); | |
6793 | set_bit(NFS_SP4_MACH_CRED_SECINFO, &clp->cl_sp4_flags); | |
6794 | } | |
3787d506 WAA |
6795 | |
6796 | if (test_bit(OP_TEST_STATEID, sp->allow.u.longs) && | |
6797 | test_bit(OP_FREE_STATEID, sp->allow.u.longs)) { | |
6798 | dfprintk(MOUNT, " stateid mode enabled\n"); | |
6799 | set_bit(NFS_SP4_MACH_CRED_STATEID, &clp->cl_sp4_flags); | |
6800 | } | |
8c21c62c WAA |
6801 | |
6802 | if (test_bit(OP_WRITE, sp->allow.u.longs)) { | |
6803 | dfprintk(MOUNT, " write mode enabled\n"); | |
6804 | set_bit(NFS_SP4_MACH_CRED_WRITE, &clp->cl_sp4_flags); | |
6805 | } | |
6806 | ||
6807 | if (test_bit(OP_COMMIT, sp->allow.u.longs)) { | |
6808 | dfprintk(MOUNT, " commit mode enabled\n"); | |
6809 | set_bit(NFS_SP4_MACH_CRED_COMMIT, &clp->cl_sp4_flags); | |
6810 | } | |
2031cd1a WAA |
6811 | } |
6812 | ||
6813 | return 0; | |
6814 | } | |
6815 | ||
6816 | /* | |
6817 | * _nfs4_proc_exchange_id() | |
6bbb4ae8 | 6818 | * |
2031cd1a | 6819 | * Wrapper for EXCHANGE_ID operation. |
99fe60d0 | 6820 | */ |
2031cd1a WAA |
6821 | static int _nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred, |
6822 | u32 sp4_how) | |
99fe60d0 BH |
6823 | { |
6824 | nfs4_verifier verifier; | |
6825 | struct nfs41_exchange_id_args args = { | |
cd93710e | 6826 | .verifier = &verifier, |
99fe60d0 | 6827 | .client = clp, |
cd3fadec | 6828 | #ifdef CONFIG_NFS_V4_1_MIGRATION |
4f0b429d | 6829 | .flags = EXCHGID4_FLAG_SUPP_MOVED_REFER | |
cd3fadec CL |
6830 | EXCHGID4_FLAG_BIND_PRINC_STATEID | |
6831 | EXCHGID4_FLAG_SUPP_MOVED_MIGR, | |
6832 | #else | |
6833 | .flags = EXCHGID4_FLAG_SUPP_MOVED_REFER | | |
6834 | EXCHGID4_FLAG_BIND_PRINC_STATEID, | |
6835 | #endif | |
99fe60d0 BH |
6836 | }; |
6837 | struct nfs41_exchange_id_res res = { | |
32b01310 | 6838 | 0 |
99fe60d0 BH |
6839 | }; |
6840 | int status; | |
6841 | struct rpc_message msg = { | |
6842 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID], | |
6843 | .rpc_argp = &args, | |
6844 | .rpc_resp = &res, | |
6845 | .rpc_cred = cred, | |
6846 | }; | |
99fe60d0 | 6847 | |
f092075d | 6848 | nfs4_init_boot_verifier(clp, &verifier); |
e984a55a CL |
6849 | args.id_len = nfs4_init_uniform_client_string(clp, args.id, |
6850 | sizeof(args.id)); | |
6bbb4ae8 CL |
6851 | dprintk("NFS call exchange_id auth=%s, '%.*s'\n", |
6852 | clp->cl_rpcclient->cl_auth->au_ops->au_name, | |
6853 | args.id_len, args.id); | |
99fe60d0 | 6854 | |
acdeb69d | 6855 | res.server_owner = kzalloc(sizeof(struct nfs41_server_owner), |
bbafffd2 | 6856 | GFP_NOFS); |
acdeb69d | 6857 | if (unlikely(res.server_owner == NULL)) { |
abe9a6d5 WAA |
6858 | status = -ENOMEM; |
6859 | goto out; | |
6860 | } | |
78fe0f41 | 6861 | |
79d4e1f0 | 6862 | res.server_scope = kzalloc(sizeof(struct nfs41_server_scope), |
bbafffd2 | 6863 | GFP_NOFS); |
177313f1 | 6864 | if (unlikely(res.server_scope == NULL)) { |
abe9a6d5 | 6865 | status = -ENOMEM; |
acdeb69d | 6866 | goto out_server_owner; |
abe9a6d5 | 6867 | } |
78fe0f41 | 6868 | |
bbafffd2 | 6869 | res.impl_id = kzalloc(sizeof(struct nfs41_impl_id), GFP_NOFS); |
177313f1 | 6870 | if (unlikely(res.impl_id == NULL)) { |
7d2ed9ac WAA |
6871 | status = -ENOMEM; |
6872 | goto out_server_scope; | |
6873 | } | |
6874 | ||
2031cd1a WAA |
6875 | switch (sp4_how) { |
6876 | case SP4_NONE: | |
6877 | args.state_protect.how = SP4_NONE; | |
6878 | break; | |
6879 | ||
6880 | case SP4_MACH_CRED: | |
6881 | args.state_protect = nfs4_sp4_mach_cred_request; | |
6882 | break; | |
6883 | ||
6884 | default: | |
6885 | /* unsupported! */ | |
6886 | WARN_ON_ONCE(1); | |
6887 | status = -EINVAL; | |
6888 | goto out_server_scope; | |
6889 | } | |
6890 | ||
1bd714f2 | 6891 | status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); |
c6d01c6f | 6892 | trace_nfs4_exchange_id(clp, status); |
177313f1 | 6893 | if (status == 0) |
32b01310 | 6894 | status = nfs4_check_cl_exchange_flags(res.flags); |
78fe0f41 | 6895 | |
2031cd1a WAA |
6896 | if (status == 0) |
6897 | status = nfs4_sp4_select_mode(clp, &res.state_protect); | |
6898 | ||
acdeb69d | 6899 | if (status == 0) { |
32b01310 | 6900 | clp->cl_clientid = res.clientid; |
e11259f9 TM |
6901 | clp->cl_exchange_flags = res.flags; |
6902 | /* Client ID is not confirmed */ | |
6903 | if (!(res.flags & EXCHGID4_FLAG_CONFIRMED_R)) { | |
6904 | clear_bit(NFS4_SESSION_ESTABLISHED, | |
6905 | &clp->cl_session->session_state); | |
32b01310 | 6906 | clp->cl_seqid = res.seqid; |
e11259f9 | 6907 | } |
32b01310 | 6908 | |
acdeb69d CL |
6909 | kfree(clp->cl_serverowner); |
6910 | clp->cl_serverowner = res.server_owner; | |
6911 | res.server_owner = NULL; | |
78fe0f41 | 6912 | |
7d2ed9ac | 6913 | /* use the most recent implementation id */ |
59155546 CL |
6914 | kfree(clp->cl_implid); |
6915 | clp->cl_implid = res.impl_id; | |
7d2ed9ac | 6916 | |
177313f1 | 6917 | if (clp->cl_serverscope != NULL && |
79d4e1f0 | 6918 | !nfs41_same_server_scope(clp->cl_serverscope, |
78fe0f41 WAA |
6919 | res.server_scope)) { |
6920 | dprintk("%s: server_scope mismatch detected\n", | |
6921 | __func__); | |
6922 | set_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state); | |
79d4e1f0 CL |
6923 | kfree(clp->cl_serverscope); |
6924 | clp->cl_serverscope = NULL; | |
78fe0f41 WAA |
6925 | } |
6926 | ||
177313f1 | 6927 | if (clp->cl_serverscope == NULL) { |
79d4e1f0 | 6928 | clp->cl_serverscope = res.server_scope; |
abe9a6d5 WAA |
6929 | goto out; |
6930 | } | |
32b01310 TM |
6931 | } else |
6932 | kfree(res.impl_id); | |
7d2ed9ac | 6933 | |
acdeb69d CL |
6934 | out_server_owner: |
6935 | kfree(res.server_owner); | |
7d2ed9ac | 6936 | out_server_scope: |
abe9a6d5 WAA |
6937 | kfree(res.server_scope); |
6938 | out: | |
177313f1 | 6939 | if (clp->cl_implid != NULL) |
6bbb4ae8 | 6940 | dprintk("NFS reply exchange_id: Server Implementation ID: " |
7d2ed9ac | 6941 | "domain: %s, name: %s, date: %llu,%u\n", |
6bbb4ae8 | 6942 | clp->cl_implid->domain, clp->cl_implid->name, |
59155546 CL |
6943 | clp->cl_implid->date.seconds, |
6944 | clp->cl_implid->date.nseconds); | |
6bbb4ae8 | 6945 | dprintk("NFS reply exchange_id: %d\n", status); |
99fe60d0 BH |
6946 | return status; |
6947 | } | |
6948 | ||
2031cd1a WAA |
6949 | /* |
6950 | * nfs4_proc_exchange_id() | |
6951 | * | |
6952 | * Returns zero, a negative errno, or a negative NFS4ERR status code. | |
6953 | * | |
6954 | * Since the clientid has expired, all compounds using sessions | |
6955 | * associated with the stale clientid will be returning | |
6956 | * NFS4ERR_BADSESSION in the sequence operation, and will therefore | |
6957 | * be in some phase of session reset. | |
6958 | * | |
6959 | * Will attempt to negotiate SP4_MACH_CRED if krb5i / krb5p auth is used. | |
6960 | */ | |
6961 | int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred) | |
6962 | { | |
6963 | rpc_authflavor_t authflavor = clp->cl_rpcclient->cl_auth->au_flavor; | |
6964 | int status; | |
6965 | ||
6966 | /* try SP4_MACH_CRED if krb5i/p */ | |
6967 | if (authflavor == RPC_AUTH_GSS_KRB5I || | |
6968 | authflavor == RPC_AUTH_GSS_KRB5P) { | |
6969 | status = _nfs4_proc_exchange_id(clp, cred, SP4_MACH_CRED); | |
6970 | if (!status) | |
6971 | return 0; | |
6972 | } | |
6973 | ||
6974 | /* try SP4_NONE */ | |
6975 | return _nfs4_proc_exchange_id(clp, cred, SP4_NONE); | |
6976 | } | |
6977 | ||
66245539 TM |
6978 | static int _nfs4_proc_destroy_clientid(struct nfs_client *clp, |
6979 | struct rpc_cred *cred) | |
6980 | { | |
6981 | struct rpc_message msg = { | |
6982 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_CLIENTID], | |
6983 | .rpc_argp = clp, | |
6984 | .rpc_cred = cred, | |
6985 | }; | |
6986 | int status; | |
6987 | ||
6988 | status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); | |
c6d01c6f | 6989 | trace_nfs4_destroy_clientid(clp, status); |
66245539 | 6990 | if (status) |
02c67525 | 6991 | dprintk("NFS: Got error %d from the server %s on " |
66245539 TM |
6992 | "DESTROY_CLIENTID.", status, clp->cl_hostname); |
6993 | return status; | |
6994 | } | |
6995 | ||
6996 | static int nfs4_proc_destroy_clientid(struct nfs_client *clp, | |
6997 | struct rpc_cred *cred) | |
6998 | { | |
6999 | unsigned int loop; | |
7000 | int ret; | |
7001 | ||
7002 | for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) { | |
7003 | ret = _nfs4_proc_destroy_clientid(clp, cred); | |
7004 | switch (ret) { | |
7005 | case -NFS4ERR_DELAY: | |
7006 | case -NFS4ERR_CLIENTID_BUSY: | |
7007 | ssleep(1); | |
7008 | break; | |
7009 | default: | |
7010 | return ret; | |
7011 | } | |
7012 | } | |
7013 | return 0; | |
7014 | } | |
7015 | ||
7016 | int nfs4_destroy_clientid(struct nfs_client *clp) | |
7017 | { | |
7018 | struct rpc_cred *cred; | |
7019 | int ret = 0; | |
7020 | ||
7021 | if (clp->cl_mvops->minor_version < 1) | |
7022 | goto out; | |
7023 | if (clp->cl_exchange_flags == 0) | |
7024 | goto out; | |
05f4c350 CL |
7025 | if (clp->cl_preserve_clid) |
7026 | goto out; | |
73d8bde5 | 7027 | cred = nfs4_get_clid_cred(clp); |
66245539 TM |
7028 | ret = nfs4_proc_destroy_clientid(clp, cred); |
7029 | if (cred) | |
7030 | put_rpccred(cred); | |
7031 | switch (ret) { | |
7032 | case 0: | |
7033 | case -NFS4ERR_STALE_CLIENTID: | |
7034 | clp->cl_exchange_flags = 0; | |
7035 | } | |
7036 | out: | |
7037 | return ret; | |
7038 | } | |
7039 | ||
2050f0cc AA |
7040 | struct nfs4_get_lease_time_data { |
7041 | struct nfs4_get_lease_time_args *args; | |
7042 | struct nfs4_get_lease_time_res *res; | |
7043 | struct nfs_client *clp; | |
7044 | }; | |
7045 | ||
7046 | static void nfs4_get_lease_time_prepare(struct rpc_task *task, | |
7047 | void *calldata) | |
7048 | { | |
2050f0cc AA |
7049 | struct nfs4_get_lease_time_data *data = |
7050 | (struct nfs4_get_lease_time_data *)calldata; | |
7051 | ||
7052 | dprintk("--> %s\n", __func__); | |
7053 | /* just setup sequence, do not trigger session recovery | |
7054 | since we're invoked within one */ | |
d9afbd1b TM |
7055 | nfs41_setup_sequence(data->clp->cl_session, |
7056 | &data->args->la_seq_args, | |
7057 | &data->res->lr_seq_res, | |
7058 | task); | |
2050f0cc AA |
7059 | dprintk("<-- %s\n", __func__); |
7060 | } | |
7061 | ||
7062 | /* | |
7063 | * Called from nfs4_state_manager thread for session setup, so don't recover | |
7064 | * from sequence operation or clientid errors. | |
7065 | */ | |
7066 | static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata) | |
7067 | { | |
7068 | struct nfs4_get_lease_time_data *data = | |
7069 | (struct nfs4_get_lease_time_data *)calldata; | |
7070 | ||
7071 | dprintk("--> %s\n", __func__); | |
14516c3a TM |
7072 | if (!nfs41_sequence_done(task, &data->res->lr_seq_res)) |
7073 | return; | |
2050f0cc AA |
7074 | switch (task->tk_status) { |
7075 | case -NFS4ERR_DELAY: | |
7076 | case -NFS4ERR_GRACE: | |
7077 | dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status); | |
7078 | rpc_delay(task, NFS4_POLL_RETRY_MIN); | |
7079 | task->tk_status = 0; | |
a8a4ae3a AA |
7080 | /* fall through */ |
7081 | case -NFS4ERR_RETRY_UNCACHED_REP: | |
d00c5d43 | 7082 | rpc_restart_call_prepare(task); |
2050f0cc AA |
7083 | return; |
7084 | } | |
2050f0cc AA |
7085 | dprintk("<-- %s\n", __func__); |
7086 | } | |
7087 | ||
17280175 | 7088 | static const struct rpc_call_ops nfs4_get_lease_time_ops = { |
2050f0cc AA |
7089 | .rpc_call_prepare = nfs4_get_lease_time_prepare, |
7090 | .rpc_call_done = nfs4_get_lease_time_done, | |
7091 | }; | |
7092 | ||
7093 | int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo) | |
7094 | { | |
7095 | struct rpc_task *task; | |
7096 | struct nfs4_get_lease_time_args args; | |
7097 | struct nfs4_get_lease_time_res res = { | |
7098 | .lr_fsinfo = fsinfo, | |
7099 | }; | |
7100 | struct nfs4_get_lease_time_data data = { | |
7101 | .args = &args, | |
7102 | .res = &res, | |
7103 | .clp = clp, | |
7104 | }; | |
7105 | struct rpc_message msg = { | |
7106 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME], | |
7107 | .rpc_argp = &args, | |
7108 | .rpc_resp = &res, | |
7109 | }; | |
7110 | struct rpc_task_setup task_setup = { | |
7111 | .rpc_client = clp->cl_rpcclient, | |
7112 | .rpc_message = &msg, | |
7113 | .callback_ops = &nfs4_get_lease_time_ops, | |
1bd714f2 TM |
7114 | .callback_data = &data, |
7115 | .flags = RPC_TASK_TIMEOUT, | |
2050f0cc AA |
7116 | }; |
7117 | int status; | |
7118 | ||
a9c92d6b | 7119 | nfs4_init_sequence(&args.la_seq_args, &res.lr_seq_res, 0); |
8fe72bac | 7120 | nfs4_set_sequence_privileged(&args.la_seq_args); |
2050f0cc AA |
7121 | dprintk("--> %s\n", __func__); |
7122 | task = rpc_run_task(&task_setup); | |
7123 | ||
7124 | if (IS_ERR(task)) | |
7125 | status = PTR_ERR(task); | |
7126 | else { | |
7127 | status = task->tk_status; | |
7128 | rpc_put_task(task); | |
7129 | } | |
7130 | dprintk("<-- %s return %d\n", __func__, status); | |
7131 | ||
7132 | return status; | |
7133 | } | |
7134 | ||
fc931582 AA |
7135 | /* |
7136 | * Initialize the values to be used by the client in CREATE_SESSION | |
7137 | * If nfs4_init_session set the fore channel request and response sizes, | |
7138 | * use them. | |
7139 | * | |
7140 | * Set the back channel max_resp_sz_cached to zero to force the client to | |
7141 | * always set csa_cachethis to FALSE because the current implementation | |
7142 | * of the back channel DRC only supports caching the CB_SEQUENCE operation. | |
7143 | */ | |
7144 | static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args) | |
7145 | { | |
18aad3d5 AA |
7146 | unsigned int max_rqst_sz, max_resp_sz; |
7147 | ||
7148 | max_rqst_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxwrite_overhead; | |
7149 | max_resp_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxread_overhead; | |
fc931582 | 7150 | |
fc931582 | 7151 | /* Fore channel attributes */ |
18aad3d5 AA |
7152 | args->fc_attrs.max_rqst_sz = max_rqst_sz; |
7153 | args->fc_attrs.max_resp_sz = max_resp_sz; | |
fc931582 | 7154 | args->fc_attrs.max_ops = NFS4_MAX_OPS; |
ef159e91 | 7155 | args->fc_attrs.max_reqs = max_session_slots; |
fc931582 AA |
7156 | |
7157 | dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u " | |
8e0d46e1 | 7158 | "max_ops=%u max_reqs=%u\n", |
fc931582 AA |
7159 | __func__, |
7160 | args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz, | |
8e0d46e1 | 7161 | args->fc_attrs.max_ops, args->fc_attrs.max_reqs); |
fc931582 AA |
7162 | |
7163 | /* Back channel attributes */ | |
fc931582 AA |
7164 | args->bc_attrs.max_rqst_sz = PAGE_SIZE; |
7165 | args->bc_attrs.max_resp_sz = PAGE_SIZE; | |
7166 | args->bc_attrs.max_resp_sz_cached = 0; | |
7167 | args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS; | |
7168 | args->bc_attrs.max_reqs = 1; | |
7169 | ||
7170 | dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u " | |
7171 | "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n", | |
7172 | __func__, | |
7173 | args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz, | |
7174 | args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops, | |
7175 | args->bc_attrs.max_reqs); | |
7176 | } | |
7177 | ||
79969dd1 TM |
7178 | static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args, |
7179 | struct nfs41_create_session_res *res) | |
8d35301d | 7180 | { |
43c2e885 | 7181 | struct nfs4_channel_attrs *sent = &args->fc_attrs; |
79969dd1 | 7182 | struct nfs4_channel_attrs *rcvd = &res->fc_attrs; |
43c2e885 | 7183 | |
43c2e885 BF |
7184 | if (rcvd->max_resp_sz > sent->max_resp_sz) |
7185 | return -EINVAL; | |
7186 | /* | |
7187 | * Our requested max_ops is the minimum we need; we're not | |
7188 | * prepared to break up compounds into smaller pieces than that. | |
7189 | * So, no point even trying to continue if the server won't | |
7190 | * cooperate: | |
7191 | */ | |
7192 | if (rcvd->max_ops < sent->max_ops) | |
7193 | return -EINVAL; | |
7194 | if (rcvd->max_reqs == 0) | |
7195 | return -EINVAL; | |
b4b9a0c1 VG |
7196 | if (rcvd->max_reqs > NFS4_MAX_SLOT_TABLE) |
7197 | rcvd->max_reqs = NFS4_MAX_SLOT_TABLE; | |
43c2e885 | 7198 | return 0; |
8d35301d AA |
7199 | } |
7200 | ||
79969dd1 TM |
7201 | static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args, |
7202 | struct nfs41_create_session_res *res) | |
43c2e885 BF |
7203 | { |
7204 | struct nfs4_channel_attrs *sent = &args->bc_attrs; | |
79969dd1 | 7205 | struct nfs4_channel_attrs *rcvd = &res->bc_attrs; |
8d35301d | 7206 | |
b1c0df5f TM |
7207 | if (!(res->flags & SESSION4_BACK_CHAN)) |
7208 | goto out; | |
43c2e885 BF |
7209 | if (rcvd->max_rqst_sz > sent->max_rqst_sz) |
7210 | return -EINVAL; | |
7211 | if (rcvd->max_resp_sz < sent->max_resp_sz) | |
7212 | return -EINVAL; | |
7213 | if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached) | |
7214 | return -EINVAL; | |
7215 | /* These would render the backchannel useless: */ | |
b4b9a0c1 | 7216 | if (rcvd->max_ops != sent->max_ops) |
43c2e885 | 7217 | return -EINVAL; |
b4b9a0c1 | 7218 | if (rcvd->max_reqs != sent->max_reqs) |
43c2e885 | 7219 | return -EINVAL; |
b1c0df5f | 7220 | out: |
43c2e885 BF |
7221 | return 0; |
7222 | } | |
8d35301d | 7223 | |
8d35301d | 7224 | static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args, |
79969dd1 | 7225 | struct nfs41_create_session_res *res) |
8d35301d | 7226 | { |
43c2e885 | 7227 | int ret; |
8d35301d | 7228 | |
79969dd1 | 7229 | ret = nfs4_verify_fore_channel_attrs(args, res); |
43c2e885 BF |
7230 | if (ret) |
7231 | return ret; | |
79969dd1 TM |
7232 | return nfs4_verify_back_channel_attrs(args, res); |
7233 | } | |
7234 | ||
7235 | static void nfs4_update_session(struct nfs4_session *session, | |
7236 | struct nfs41_create_session_res *res) | |
7237 | { | |
7238 | nfs4_copy_sessionid(&session->sess_id, &res->sessionid); | |
e11259f9 TM |
7239 | /* Mark client id and session as being confirmed */ |
7240 | session->clp->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R; | |
7241 | set_bit(NFS4_SESSION_ESTABLISHED, &session->session_state); | |
79969dd1 TM |
7242 | session->flags = res->flags; |
7243 | memcpy(&session->fc_attrs, &res->fc_attrs, sizeof(session->fc_attrs)); | |
b1c0df5f TM |
7244 | if (res->flags & SESSION4_BACK_CHAN) |
7245 | memcpy(&session->bc_attrs, &res->bc_attrs, | |
7246 | sizeof(session->bc_attrs)); | |
8d35301d AA |
7247 | } |
7248 | ||
848f5bda TM |
7249 | static int _nfs4_proc_create_session(struct nfs_client *clp, |
7250 | struct rpc_cred *cred) | |
fc931582 AA |
7251 | { |
7252 | struct nfs4_session *session = clp->cl_session; | |
7253 | struct nfs41_create_session_args args = { | |
7254 | .client = clp, | |
79969dd1 TM |
7255 | .clientid = clp->cl_clientid, |
7256 | .seqid = clp->cl_seqid, | |
fc931582 AA |
7257 | .cb_program = NFS4_CALLBACK, |
7258 | }; | |
79969dd1 TM |
7259 | struct nfs41_create_session_res res; |
7260 | ||
fc931582 AA |
7261 | struct rpc_message msg = { |
7262 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION], | |
7263 | .rpc_argp = &args, | |
7264 | .rpc_resp = &res, | |
848f5bda | 7265 | .rpc_cred = cred, |
fc931582 AA |
7266 | }; |
7267 | int status; | |
7268 | ||
7269 | nfs4_init_channel_attrs(&args); | |
0f91421e | 7270 | args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN); |
fc931582 | 7271 | |
1bd714f2 | 7272 | status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); |
c6d01c6f | 7273 | trace_nfs4_create_session(clp, status); |
fc931582 | 7274 | |
43095d39 | 7275 | if (!status) { |
8d35301d | 7276 | /* Verify the session's negotiated channel_attrs values */ |
79969dd1 | 7277 | status = nfs4_verify_channel_attrs(&args, &res); |
fc931582 | 7278 | /* Increment the clientid slot sequence id */ |
79969dd1 TM |
7279 | if (clp->cl_seqid == res.seqid) |
7280 | clp->cl_seqid++; | |
7281 | if (status) | |
7282 | goto out; | |
7283 | nfs4_update_session(session, &res); | |
fc931582 | 7284 | } |
79969dd1 | 7285 | out: |
fc931582 AA |
7286 | return status; |
7287 | } | |
7288 | ||
7289 | /* | |
7290 | * Issues a CREATE_SESSION operation to the server. | |
7291 | * It is the responsibility of the caller to verify the session is | |
7292 | * expired before calling this routine. | |
7293 | */ | |
848f5bda | 7294 | int nfs4_proc_create_session(struct nfs_client *clp, struct rpc_cred *cred) |
fc931582 AA |
7295 | { |
7296 | int status; | |
7297 | unsigned *ptr; | |
fc931582 AA |
7298 | struct nfs4_session *session = clp->cl_session; |
7299 | ||
7300 | dprintk("--> %s clp=%p session=%p\n", __func__, clp, session); | |
7301 | ||
848f5bda | 7302 | status = _nfs4_proc_create_session(clp, cred); |
fc931582 AA |
7303 | if (status) |
7304 | goto out; | |
7305 | ||
aacd5537 AA |
7306 | /* Init or reset the session slot tables */ |
7307 | status = nfs4_setup_session_slot_tables(session); | |
7308 | dprintk("slot table setup returned %d\n", status); | |
fc931582 AA |
7309 | if (status) |
7310 | goto out; | |
7311 | ||
7312 | ptr = (unsigned *)&session->sess_id.data[0]; | |
7313 | dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__, | |
7314 | clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]); | |
fc931582 AA |
7315 | out: |
7316 | dprintk("<-- %s\n", __func__); | |
7317 | return status; | |
7318 | } | |
7319 | ||
0f3e66c6 AA |
7320 | /* |
7321 | * Issue the over-the-wire RPC DESTROY_SESSION. | |
7322 | * The caller must serialize access to this routine. | |
7323 | */ | |
848f5bda TM |
7324 | int nfs4_proc_destroy_session(struct nfs4_session *session, |
7325 | struct rpc_cred *cred) | |
0f3e66c6 | 7326 | { |
848f5bda TM |
7327 | struct rpc_message msg = { |
7328 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION], | |
7329 | .rpc_argp = session, | |
7330 | .rpc_cred = cred, | |
7331 | }; | |
0f3e66c6 | 7332 | int status = 0; |
0f3e66c6 AA |
7333 | |
7334 | dprintk("--> nfs4_proc_destroy_session\n"); | |
7335 | ||
7336 | /* session is still being setup */ | |
e11259f9 TM |
7337 | if (!test_and_clear_bit(NFS4_SESSION_ESTABLISHED, &session->session_state)) |
7338 | return 0; | |
0f3e66c6 | 7339 | |
1bd714f2 | 7340 | status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); |
c6d01c6f | 7341 | trace_nfs4_destroy_session(session->clp, status); |
0f3e66c6 AA |
7342 | |
7343 | if (status) | |
08106ac7 | 7344 | dprintk("NFS: Got error %d from the server on DESTROY_SESSION. " |
0f3e66c6 AA |
7345 | "Session has been destroyed regardless...\n", status); |
7346 | ||
7347 | dprintk("<-- nfs4_proc_destroy_session\n"); | |
7348 | return status; | |
7349 | } | |
7350 | ||
fc01cea9 AA |
7351 | /* |
7352 | * Renew the cl_session lease. | |
7353 | */ | |
d5f8d3fe TM |
7354 | struct nfs4_sequence_data { |
7355 | struct nfs_client *clp; | |
7356 | struct nfs4_sequence_args args; | |
7357 | struct nfs4_sequence_res res; | |
7358 | }; | |
7359 | ||
dc96aef9 AB |
7360 | static void nfs41_sequence_release(void *data) |
7361 | { | |
d5f8d3fe TM |
7362 | struct nfs4_sequence_data *calldata = data; |
7363 | struct nfs_client *clp = calldata->clp; | |
dc96aef9 | 7364 | |
7135840f AB |
7365 | if (atomic_read(&clp->cl_count) > 1) |
7366 | nfs4_schedule_state_renewal(clp); | |
7367 | nfs_put_client(clp); | |
d5f8d3fe | 7368 | kfree(calldata); |
dc96aef9 AB |
7369 | } |
7370 | ||
aa5190d0 TM |
7371 | static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp) |
7372 | { | |
7373 | switch(task->tk_status) { | |
7374 | case -NFS4ERR_DELAY: | |
aa5190d0 TM |
7375 | rpc_delay(task, NFS4_POLL_RETRY_MAX); |
7376 | return -EAGAIN; | |
7377 | default: | |
0400a6b0 | 7378 | nfs4_schedule_lease_recovery(clp); |
aa5190d0 TM |
7379 | } |
7380 | return 0; | |
7381 | } | |
7382 | ||
dc96aef9 | 7383 | static void nfs41_sequence_call_done(struct rpc_task *task, void *data) |
fc01cea9 | 7384 | { |
d5f8d3fe TM |
7385 | struct nfs4_sequence_data *calldata = data; |
7386 | struct nfs_client *clp = calldata->clp; | |
fc01cea9 | 7387 | |
14516c3a TM |
7388 | if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp)) |
7389 | return; | |
fc01cea9 | 7390 | |
c6d01c6f | 7391 | trace_nfs4_sequence(clp, task->tk_status); |
fc01cea9 AA |
7392 | if (task->tk_status < 0) { |
7393 | dprintk("%s ERROR %d\n", __func__, task->tk_status); | |
7135840f AB |
7394 | if (atomic_read(&clp->cl_count) == 1) |
7395 | goto out; | |
fc01cea9 | 7396 | |
aa5190d0 TM |
7397 | if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) { |
7398 | rpc_restart_call_prepare(task); | |
fc01cea9 AA |
7399 | return; |
7400 | } | |
7401 | } | |
fc01cea9 | 7402 | dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred); |
7135840f | 7403 | out: |
fc01cea9 AA |
7404 | dprintk("<-- %s\n", __func__); |
7405 | } | |
7406 | ||
7407 | static void nfs41_sequence_prepare(struct rpc_task *task, void *data) | |
7408 | { | |
d5f8d3fe TM |
7409 | struct nfs4_sequence_data *calldata = data; |
7410 | struct nfs_client *clp = calldata->clp; | |
fc01cea9 AA |
7411 | struct nfs4_sequence_args *args; |
7412 | struct nfs4_sequence_res *res; | |
7413 | ||
fc01cea9 AA |
7414 | args = task->tk_msg.rpc_argp; |
7415 | res = task->tk_msg.rpc_resp; | |
7416 | ||
d9afbd1b | 7417 | nfs41_setup_sequence(clp->cl_session, args, res, task); |
fc01cea9 AA |
7418 | } |
7419 | ||
7420 | static const struct rpc_call_ops nfs41_sequence_ops = { | |
7421 | .rpc_call_done = nfs41_sequence_call_done, | |
7422 | .rpc_call_prepare = nfs41_sequence_prepare, | |
dc96aef9 | 7423 | .rpc_release = nfs41_sequence_release, |
fc01cea9 AA |
7424 | }; |
7425 | ||
8fe72bac TM |
7426 | static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp, |
7427 | struct rpc_cred *cred, | |
7428 | bool is_privileged) | |
fc01cea9 | 7429 | { |
d5f8d3fe | 7430 | struct nfs4_sequence_data *calldata; |
fc01cea9 AA |
7431 | struct rpc_message msg = { |
7432 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE], | |
7433 | .rpc_cred = cred, | |
7434 | }; | |
71ac6da9 TM |
7435 | struct rpc_task_setup task_setup_data = { |
7436 | .rpc_client = clp->cl_rpcclient, | |
7437 | .rpc_message = &msg, | |
8fe72bac | 7438 | .callback_ops = &nfs41_sequence_ops, |
bc7a05ca | 7439 | .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT, |
71ac6da9 | 7440 | }; |
fc01cea9 | 7441 | |
7135840f | 7442 | if (!atomic_inc_not_zero(&clp->cl_count)) |
71ac6da9 | 7443 | return ERR_PTR(-EIO); |
dfb4f309 | 7444 | calldata = kzalloc(sizeof(*calldata), GFP_NOFS); |
d5f8d3fe | 7445 | if (calldata == NULL) { |
7135840f | 7446 | nfs_put_client(clp); |
71ac6da9 | 7447 | return ERR_PTR(-ENOMEM); |
fc01cea9 | 7448 | } |
a9c92d6b | 7449 | nfs4_init_sequence(&calldata->args, &calldata->res, 0); |
8fe72bac TM |
7450 | if (is_privileged) |
7451 | nfs4_set_sequence_privileged(&calldata->args); | |
d5f8d3fe TM |
7452 | msg.rpc_argp = &calldata->args; |
7453 | msg.rpc_resp = &calldata->res; | |
7454 | calldata->clp = clp; | |
71ac6da9 | 7455 | task_setup_data.callback_data = calldata; |
fc01cea9 | 7456 | |
71ac6da9 TM |
7457 | return rpc_run_task(&task_setup_data); |
7458 | } | |
7459 | ||
2f60ea6b | 7460 | static int nfs41_proc_async_sequence(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags) |
71ac6da9 TM |
7461 | { |
7462 | struct rpc_task *task; | |
7463 | int ret = 0; | |
7464 | ||
2f60ea6b | 7465 | if ((renew_flags & NFS4_RENEW_TIMEOUT) == 0) |
d1f456b0 | 7466 | return -EAGAIN; |
8fe72bac | 7467 | task = _nfs41_proc_sequence(clp, cred, false); |
71ac6da9 TM |
7468 | if (IS_ERR(task)) |
7469 | ret = PTR_ERR(task); | |
7470 | else | |
bf294b41 | 7471 | rpc_put_task_async(task); |
71ac6da9 TM |
7472 | dprintk("<-- %s status=%d\n", __func__, ret); |
7473 | return ret; | |
7474 | } | |
7475 | ||
7476 | static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred) | |
7477 | { | |
7478 | struct rpc_task *task; | |
7479 | int ret; | |
7480 | ||
8fe72bac | 7481 | task = _nfs41_proc_sequence(clp, cred, true); |
71ac6da9 TM |
7482 | if (IS_ERR(task)) { |
7483 | ret = PTR_ERR(task); | |
7484 | goto out; | |
7485 | } | |
7486 | ret = rpc_wait_for_completion_task(task); | |
b4410c2f TM |
7487 | if (!ret) { |
7488 | struct nfs4_sequence_res *res = task->tk_msg.rpc_resp; | |
7489 | ||
7490 | if (task->tk_status == 0) | |
7491 | nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags); | |
71ac6da9 | 7492 | ret = task->tk_status; |
b4410c2f | 7493 | } |
71ac6da9 TM |
7494 | rpc_put_task(task); |
7495 | out: | |
7496 | dprintk("<-- %s status=%d\n", __func__, ret); | |
7497 | return ret; | |
fc01cea9 AA |
7498 | } |
7499 | ||
fce5c838 RL |
7500 | struct nfs4_reclaim_complete_data { |
7501 | struct nfs_client *clp; | |
7502 | struct nfs41_reclaim_complete_args arg; | |
7503 | struct nfs41_reclaim_complete_res res; | |
7504 | }; | |
7505 | ||
7506 | static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data) | |
7507 | { | |
7508 | struct nfs4_reclaim_complete_data *calldata = data; | |
7509 | ||
d9afbd1b TM |
7510 | nfs41_setup_sequence(calldata->clp->cl_session, |
7511 | &calldata->arg.seq_args, | |
7512 | &calldata->res.seq_res, | |
7513 | task); | |
fce5c838 RL |
7514 | } |
7515 | ||
aa5190d0 TM |
7516 | static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp) |
7517 | { | |
7518 | switch(task->tk_status) { | |
7519 | case 0: | |
7520 | case -NFS4ERR_COMPLETE_ALREADY: | |
7521 | case -NFS4ERR_WRONG_CRED: /* What to do here? */ | |
7522 | break; | |
7523 | case -NFS4ERR_DELAY: | |
aa5190d0 | 7524 | rpc_delay(task, NFS4_POLL_RETRY_MAX); |
a8a4ae3a AA |
7525 | /* fall through */ |
7526 | case -NFS4ERR_RETRY_UNCACHED_REP: | |
aa5190d0 TM |
7527 | return -EAGAIN; |
7528 | default: | |
0400a6b0 | 7529 | nfs4_schedule_lease_recovery(clp); |
aa5190d0 TM |
7530 | } |
7531 | return 0; | |
7532 | } | |
7533 | ||
fce5c838 RL |
7534 | static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data) |
7535 | { | |
7536 | struct nfs4_reclaim_complete_data *calldata = data; | |
7537 | struct nfs_client *clp = calldata->clp; | |
7538 | struct nfs4_sequence_res *res = &calldata->res.seq_res; | |
7539 | ||
7540 | dprintk("--> %s\n", __func__); | |
14516c3a TM |
7541 | if (!nfs41_sequence_done(task, res)) |
7542 | return; | |
fce5c838 | 7543 | |
c6d01c6f | 7544 | trace_nfs4_reclaim_complete(clp, task->tk_status); |
aa5190d0 TM |
7545 | if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) { |
7546 | rpc_restart_call_prepare(task); | |
7547 | return; | |
7548 | } | |
fce5c838 RL |
7549 | dprintk("<-- %s\n", __func__); |
7550 | } | |
7551 | ||
7552 | static void nfs4_free_reclaim_complete_data(void *data) | |
7553 | { | |
7554 | struct nfs4_reclaim_complete_data *calldata = data; | |
7555 | ||
7556 | kfree(calldata); | |
7557 | } | |
7558 | ||
7559 | static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = { | |
7560 | .rpc_call_prepare = nfs4_reclaim_complete_prepare, | |
7561 | .rpc_call_done = nfs4_reclaim_complete_done, | |
7562 | .rpc_release = nfs4_free_reclaim_complete_data, | |
7563 | }; | |
7564 | ||
7565 | /* | |
7566 | * Issue a global reclaim complete. | |
7567 | */ | |
965e9c23 TM |
7568 | static int nfs41_proc_reclaim_complete(struct nfs_client *clp, |
7569 | struct rpc_cred *cred) | |
fce5c838 RL |
7570 | { |
7571 | struct nfs4_reclaim_complete_data *calldata; | |
7572 | struct rpc_task *task; | |
7573 | struct rpc_message msg = { | |
7574 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE], | |
965e9c23 | 7575 | .rpc_cred = cred, |
fce5c838 RL |
7576 | }; |
7577 | struct rpc_task_setup task_setup_data = { | |
7578 | .rpc_client = clp->cl_rpcclient, | |
7579 | .rpc_message = &msg, | |
7580 | .callback_ops = &nfs4_reclaim_complete_call_ops, | |
7581 | .flags = RPC_TASK_ASYNC, | |
7582 | }; | |
7583 | int status = -ENOMEM; | |
7584 | ||
7585 | dprintk("--> %s\n", __func__); | |
8535b2be | 7586 | calldata = kzalloc(sizeof(*calldata), GFP_NOFS); |
fce5c838 RL |
7587 | if (calldata == NULL) |
7588 | goto out; | |
7589 | calldata->clp = clp; | |
7590 | calldata->arg.one_fs = 0; | |
fce5c838 | 7591 | |
a9c92d6b | 7592 | nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 0); |
8fe72bac | 7593 | nfs4_set_sequence_privileged(&calldata->arg.seq_args); |
fce5c838 RL |
7594 | msg.rpc_argp = &calldata->arg; |
7595 | msg.rpc_resp = &calldata->res; | |
7596 | task_setup_data.callback_data = calldata; | |
7597 | task = rpc_run_task(&task_setup_data); | |
acf82b85 | 7598 | if (IS_ERR(task)) { |
fce5c838 | 7599 | status = PTR_ERR(task); |
acf82b85 DC |
7600 | goto out; |
7601 | } | |
c34c32ea AA |
7602 | status = nfs4_wait_for_completion_rpc_task(task); |
7603 | if (status == 0) | |
7604 | status = task->tk_status; | |
fce5c838 | 7605 | rpc_put_task(task); |
acf82b85 | 7606 | return 0; |
fce5c838 RL |
7607 | out: |
7608 | dprintk("<-- %s status=%d\n", __func__, status); | |
7609 | return status; | |
7610 | } | |
b1f69b75 AA |
7611 | |
7612 | static void | |
7613 | nfs4_layoutget_prepare(struct rpc_task *task, void *calldata) | |
7614 | { | |
7615 | struct nfs4_layoutget *lgp = calldata; | |
c31663d4 | 7616 | struct nfs_server *server = NFS_SERVER(lgp->args.inode); |
6ba7db34 | 7617 | struct nfs4_session *session = nfs4_get_session(server); |
b1f69b75 AA |
7618 | |
7619 | dprintk("--> %s\n", __func__); | |
c31663d4 FI |
7620 | /* Note the is a race here, where a CB_LAYOUTRECALL can come in |
7621 | * right now covering the LAYOUTGET we are about to send. | |
7622 | * However, that is not so catastrophic, and there seems | |
7623 | * to be no way to prevent it completely. | |
7624 | */ | |
6ba7db34 | 7625 | if (nfs41_setup_sequence(session, &lgp->args.seq_args, |
9d12b216 | 7626 | &lgp->res.seq_res, task)) |
b1f69b75 | 7627 | return; |
cf7d63f1 FI |
7628 | if (pnfs_choose_layoutget_stateid(&lgp->args.stateid, |
7629 | NFS_I(lgp->args.inode)->layout, | |
ce6ab4f2 | 7630 | &lgp->args.range, |
cf7d63f1 FI |
7631 | lgp->args.ctx->state)) { |
7632 | rpc_exit(task, NFS4_OK); | |
cf7d63f1 | 7633 | } |
b1f69b75 AA |
7634 | } |
7635 | ||
7636 | static void nfs4_layoutget_done(struct rpc_task *task, void *calldata) | |
7637 | { | |
7638 | struct nfs4_layoutget *lgp = calldata; | |
ee314c2a TM |
7639 | struct inode *inode = lgp->args.inode; |
7640 | struct nfs_server *server = NFS_SERVER(inode); | |
7641 | struct pnfs_layout_hdr *lo; | |
7642 | struct nfs4_state *state = NULL; | |
ed7e5423 | 7643 | unsigned long timeo, now, giveup; |
b1f69b75 | 7644 | |
ed7e5423 | 7645 | dprintk("--> %s tk_status => %d\n", __func__, -task->tk_status); |
b1f69b75 | 7646 | |
6ba7db34 | 7647 | if (!nfs41_sequence_done(task, &lgp->res.seq_res)) |
ee314c2a | 7648 | goto out; |
b1f69b75 AA |
7649 | |
7650 | switch (task->tk_status) { | |
7651 | case 0: | |
ee314c2a | 7652 | goto out; |
ed7e5423 BH |
7653 | /* |
7654 | * NFS4ERR_LAYOUTTRYLATER is a conflict with another client | |
7655 | * (or clients) writing to the same RAID stripe | |
7656 | */ | |
b1f69b75 | 7657 | case -NFS4ERR_LAYOUTTRYLATER: |
ed7e5423 BH |
7658 | /* |
7659 | * NFS4ERR_RECALLCONFLICT is when conflict with self (must recall | |
7660 | * existing layout before getting a new one). | |
7661 | */ | |
b1f69b75 | 7662 | case -NFS4ERR_RECALLCONFLICT: |
30005121 WAA |
7663 | timeo = rpc_get_timeout(task->tk_client); |
7664 | giveup = lgp->args.timestamp + timeo; | |
ed7e5423 BH |
7665 | now = jiffies; |
7666 | if (time_after(giveup, now)) { | |
7667 | unsigned long delay; | |
7668 | ||
7669 | /* Delay for: | |
7670 | * - Not less then NFS4_POLL_RETRY_MIN. | |
7671 | * - One last time a jiffie before we give up | |
7672 | * - exponential backoff (time_now minus start_attempt) | |
7673 | */ | |
7674 | delay = max_t(unsigned long, NFS4_POLL_RETRY_MIN, | |
7675 | min((giveup - now - 1), | |
7676 | now - lgp->args.timestamp)); | |
7677 | ||
7678 | dprintk("%s: NFS4ERR_RECALLCONFLICT waiting %lu\n", | |
7679 | __func__, delay); | |
7680 | rpc_delay(task, delay); | |
7681 | task->tk_status = 0; | |
7682 | rpc_restart_call_prepare(task); | |
7683 | goto out; /* Do not call nfs4_async_handle_error() */ | |
7684 | } | |
ee314c2a TM |
7685 | break; |
7686 | case -NFS4ERR_EXPIRED: | |
7687 | case -NFS4ERR_BAD_STATEID: | |
7688 | spin_lock(&inode->i_lock); | |
7689 | lo = NFS_I(inode)->layout; | |
7690 | if (!lo || list_empty(&lo->plh_segs)) { | |
7691 | spin_unlock(&inode->i_lock); | |
7692 | /* If the open stateid was bad, then recover it. */ | |
7693 | state = lgp->args.ctx->state; | |
7694 | } else { | |
7695 | LIST_HEAD(head); | |
7696 | ||
defb8460 CH |
7697 | /* |
7698 | * Mark the bad layout state as invalid, then retry | |
7699 | * with the current stateid. | |
7700 | */ | |
ee314c2a TM |
7701 | pnfs_mark_matching_lsegs_invalid(lo, &head, NULL); |
7702 | spin_unlock(&inode->i_lock); | |
ee314c2a | 7703 | pnfs_free_lseg_list(&head); |
defb8460 CH |
7704 | |
7705 | task->tk_status = 0; | |
7706 | rpc_restart_call_prepare(task); | |
b1f69b75 AA |
7707 | } |
7708 | } | |
8478eaa1 | 7709 | if (nfs4_async_handle_error(task, server, state, NULL) == -EAGAIN) |
ee314c2a TM |
7710 | rpc_restart_call_prepare(task); |
7711 | out: | |
b1f69b75 AA |
7712 | dprintk("<-- %s\n", __func__); |
7713 | } | |
7714 | ||
8554116e IK |
7715 | static size_t max_response_pages(struct nfs_server *server) |
7716 | { | |
7717 | u32 max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz; | |
7718 | return nfs_page_array_len(0, max_resp_sz); | |
7719 | } | |
7720 | ||
7721 | static void nfs4_free_pages(struct page **pages, size_t size) | |
7722 | { | |
7723 | int i; | |
7724 | ||
7725 | if (!pages) | |
7726 | return; | |
7727 | ||
7728 | for (i = 0; i < size; i++) { | |
7729 | if (!pages[i]) | |
7730 | break; | |
7731 | __free_page(pages[i]); | |
7732 | } | |
7733 | kfree(pages); | |
7734 | } | |
7735 | ||
7736 | static struct page **nfs4_alloc_pages(size_t size, gfp_t gfp_flags) | |
7737 | { | |
7738 | struct page **pages; | |
7739 | int i; | |
7740 | ||
7741 | pages = kcalloc(size, sizeof(struct page *), gfp_flags); | |
7742 | if (!pages) { | |
7743 | dprintk("%s: can't alloc array of %zu pages\n", __func__, size); | |
7744 | return NULL; | |
7745 | } | |
7746 | ||
7747 | for (i = 0; i < size; i++) { | |
7748 | pages[i] = alloc_page(gfp_flags); | |
7749 | if (!pages[i]) { | |
7750 | dprintk("%s: failed to allocate page\n", __func__); | |
7751 | nfs4_free_pages(pages, size); | |
7752 | return NULL; | |
7753 | } | |
7754 | } | |
7755 | ||
7756 | return pages; | |
7757 | } | |
7758 | ||
b1f69b75 AA |
7759 | static void nfs4_layoutget_release(void *calldata) |
7760 | { | |
7761 | struct nfs4_layoutget *lgp = calldata; | |
a47970ff WAA |
7762 | struct inode *inode = lgp->args.inode; |
7763 | struct nfs_server *server = NFS_SERVER(inode); | |
8554116e | 7764 | size_t max_pages = max_response_pages(server); |
b1f69b75 AA |
7765 | |
7766 | dprintk("--> %s\n", __func__); | |
8554116e | 7767 | nfs4_free_pages(lgp->args.layout.pages, max_pages); |
a47970ff | 7768 | pnfs_put_layout_hdr(NFS_I(inode)->layout); |
b1f69b75 AA |
7769 | put_nfs_open_context(lgp->args.ctx); |
7770 | kfree(calldata); | |
7771 | dprintk("<-- %s\n", __func__); | |
7772 | } | |
7773 | ||
7774 | static const struct rpc_call_ops nfs4_layoutget_call_ops = { | |
7775 | .rpc_call_prepare = nfs4_layoutget_prepare, | |
7776 | .rpc_call_done = nfs4_layoutget_done, | |
7777 | .rpc_release = nfs4_layoutget_release, | |
7778 | }; | |
7779 | ||
a0b0a6e3 TM |
7780 | struct pnfs_layout_segment * |
7781 | nfs4_proc_layoutget(struct nfs4_layoutget *lgp, gfp_t gfp_flags) | |
b1f69b75 | 7782 | { |
a47970ff WAA |
7783 | struct inode *inode = lgp->args.inode; |
7784 | struct nfs_server *server = NFS_SERVER(inode); | |
8554116e | 7785 | size_t max_pages = max_response_pages(server); |
b1f69b75 AA |
7786 | struct rpc_task *task; |
7787 | struct rpc_message msg = { | |
7788 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET], | |
7789 | .rpc_argp = &lgp->args, | |
7790 | .rpc_resp = &lgp->res, | |
6ab59344 | 7791 | .rpc_cred = lgp->cred, |
b1f69b75 AA |
7792 | }; |
7793 | struct rpc_task_setup task_setup_data = { | |
7794 | .rpc_client = server->client, | |
7795 | .rpc_message = &msg, | |
7796 | .callback_ops = &nfs4_layoutget_call_ops, | |
7797 | .callback_data = lgp, | |
7798 | .flags = RPC_TASK_ASYNC, | |
7799 | }; | |
a0b0a6e3 | 7800 | struct pnfs_layout_segment *lseg = NULL; |
b1f69b75 AA |
7801 | int status = 0; |
7802 | ||
7803 | dprintk("--> %s\n", __func__); | |
7804 | ||
4bd5a980 PT |
7805 | /* nfs4_layoutget_release calls pnfs_put_layout_hdr */ |
7806 | pnfs_get_layout_hdr(NFS_I(inode)->layout); | |
7807 | ||
8554116e IK |
7808 | lgp->args.layout.pages = nfs4_alloc_pages(max_pages, gfp_flags); |
7809 | if (!lgp->args.layout.pages) { | |
7810 | nfs4_layoutget_release(lgp); | |
a0b0a6e3 | 7811 | return ERR_PTR(-ENOMEM); |
8554116e IK |
7812 | } |
7813 | lgp->args.layout.pglen = max_pages * PAGE_SIZE; | |
30005121 | 7814 | lgp->args.timestamp = jiffies; |
8554116e | 7815 | |
35124a09 | 7816 | lgp->res.layoutp = &lgp->args.layout; |
b1f69b75 | 7817 | lgp->res.seq_res.sr_slot = NULL; |
a9c92d6b | 7818 | nfs4_init_sequence(&lgp->args.seq_args, &lgp->res.seq_res, 0); |
a47970ff | 7819 | |
b1f69b75 AA |
7820 | task = rpc_run_task(&task_setup_data); |
7821 | if (IS_ERR(task)) | |
a0b0a6e3 | 7822 | return ERR_CAST(task); |
b1f69b75 | 7823 | status = nfs4_wait_for_completion_rpc_task(task); |
c31663d4 FI |
7824 | if (status == 0) |
7825 | status = task->tk_status; | |
1037e6ea TM |
7826 | trace_nfs4_layoutget(lgp->args.ctx, |
7827 | &lgp->args.range, | |
7828 | &lgp->res.range, | |
7829 | status); | |
085b7a45 WAA |
7830 | /* if layoutp->len is 0, nfs4_layoutget_prepare called rpc_exit */ |
7831 | if (status == 0 && lgp->res.layoutp->len) | |
a0b0a6e3 | 7832 | lseg = pnfs_layout_process(lgp); |
b1f69b75 AA |
7833 | rpc_put_task(task); |
7834 | dprintk("<-- %s status=%d\n", __func__, status); | |
a0b0a6e3 TM |
7835 | if (status) |
7836 | return ERR_PTR(status); | |
7837 | return lseg; | |
b1f69b75 AA |
7838 | } |
7839 | ||
cbe82603 BH |
7840 | static void |
7841 | nfs4_layoutreturn_prepare(struct rpc_task *task, void *calldata) | |
7842 | { | |
7843 | struct nfs4_layoutreturn *lrp = calldata; | |
7844 | ||
7845 | dprintk("--> %s\n", __func__); | |
d9afbd1b TM |
7846 | nfs41_setup_sequence(lrp->clp->cl_session, |
7847 | &lrp->args.seq_args, | |
7848 | &lrp->res.seq_res, | |
7849 | task); | |
cbe82603 BH |
7850 | } |
7851 | ||
7852 | static void nfs4_layoutreturn_done(struct rpc_task *task, void *calldata) | |
7853 | { | |
7854 | struct nfs4_layoutreturn *lrp = calldata; | |
7855 | struct nfs_server *server; | |
7856 | ||
7857 | dprintk("--> %s\n", __func__); | |
7858 | ||
6ba7db34 | 7859 | if (!nfs41_sequence_done(task, &lrp->res.seq_res)) |
cbe82603 BH |
7860 | return; |
7861 | ||
7862 | server = NFS_SERVER(lrp->args.inode); | |
f22e5edd TM |
7863 | switch (task->tk_status) { |
7864 | default: | |
7865 | task->tk_status = 0; | |
7866 | case 0: | |
7867 | break; | |
7868 | case -NFS4ERR_DELAY: | |
8478eaa1 | 7869 | if (nfs4_async_handle_error(task, server, NULL, NULL) != -EAGAIN) |
f22e5edd | 7870 | break; |
d00c5d43 | 7871 | rpc_restart_call_prepare(task); |
cbe82603 BH |
7872 | return; |
7873 | } | |
cbe82603 BH |
7874 | dprintk("<-- %s\n", __func__); |
7875 | } | |
7876 | ||
7877 | static void nfs4_layoutreturn_release(void *calldata) | |
7878 | { | |
7879 | struct nfs4_layoutreturn *lrp = calldata; | |
849b286f | 7880 | struct pnfs_layout_hdr *lo = lrp->args.layout; |
cbe82603 BH |
7881 | |
7882 | dprintk("--> %s\n", __func__); | |
849b286f TM |
7883 | spin_lock(&lo->plh_inode->i_lock); |
7884 | if (lrp->res.lrs_present) | |
7885 | pnfs_set_layout_stateid(lo, &lrp->res.stateid, true); | |
d67ae825 | 7886 | pnfs_clear_layoutreturn_waitbit(lo); |
193e3aa2 PT |
7887 | clear_bit(NFS_LAYOUT_RETURN_BEFORE_CLOSE, &lo->plh_flags); |
7888 | rpc_wake_up(&NFS_SERVER(lo->plh_inode)->roc_rpcwaitq); | |
849b286f TM |
7889 | lo->plh_block_lgets--; |
7890 | spin_unlock(&lo->plh_inode->i_lock); | |
70c3bd2b | 7891 | pnfs_put_layout_hdr(lrp->args.layout); |
5a0ec8ac | 7892 | nfs_iput_and_deactive(lrp->inode); |
cbe82603 BH |
7893 | kfree(calldata); |
7894 | dprintk("<-- %s\n", __func__); | |
7895 | } | |
7896 | ||
7897 | static const struct rpc_call_ops nfs4_layoutreturn_call_ops = { | |
7898 | .rpc_call_prepare = nfs4_layoutreturn_prepare, | |
7899 | .rpc_call_done = nfs4_layoutreturn_done, | |
7900 | .rpc_release = nfs4_layoutreturn_release, | |
7901 | }; | |
7902 | ||
6c16605d | 7903 | int nfs4_proc_layoutreturn(struct nfs4_layoutreturn *lrp, bool sync) |
cbe82603 BH |
7904 | { |
7905 | struct rpc_task *task; | |
7906 | struct rpc_message msg = { | |
7907 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTRETURN], | |
7908 | .rpc_argp = &lrp->args, | |
7909 | .rpc_resp = &lrp->res, | |
9556000d | 7910 | .rpc_cred = lrp->cred, |
cbe82603 BH |
7911 | }; |
7912 | struct rpc_task_setup task_setup_data = { | |
1771c577 | 7913 | .rpc_client = NFS_SERVER(lrp->args.inode)->client, |
cbe82603 BH |
7914 | .rpc_message = &msg, |
7915 | .callback_ops = &nfs4_layoutreturn_call_ops, | |
7916 | .callback_data = lrp, | |
7917 | }; | |
6c16605d | 7918 | int status = 0; |
cbe82603 BH |
7919 | |
7920 | dprintk("--> %s\n", __func__); | |
5a0ec8ac TM |
7921 | if (!sync) { |
7922 | lrp->inode = nfs_igrab_and_active(lrp->args.inode); | |
7923 | if (!lrp->inode) { | |
7924 | nfs4_layoutreturn_release(lrp); | |
7925 | return -EAGAIN; | |
7926 | } | |
7927 | task_setup_data.flags |= RPC_TASK_ASYNC; | |
7928 | } | |
a9c92d6b | 7929 | nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1); |
cbe82603 BH |
7930 | task = rpc_run_task(&task_setup_data); |
7931 | if (IS_ERR(task)) | |
7932 | return PTR_ERR(task); | |
5a0ec8ac TM |
7933 | if (sync) |
7934 | status = task->tk_status; | |
1037e6ea | 7935 | trace_nfs4_layoutreturn(lrp->args.inode, status); |
cbe82603 BH |
7936 | dprintk("<-- %s status=%d\n", __func__, status); |
7937 | rpc_put_task(task); | |
7938 | return status; | |
7939 | } | |
7940 | ||
b1f69b75 | 7941 | static int |
cd5875fe TM |
7942 | _nfs4_proc_getdeviceinfo(struct nfs_server *server, |
7943 | struct pnfs_device *pdev, | |
7944 | struct rpc_cred *cred) | |
b1f69b75 AA |
7945 | { |
7946 | struct nfs4_getdeviceinfo_args args = { | |
7947 | .pdev = pdev, | |
4e590803 TM |
7948 | .notify_types = NOTIFY_DEVICEID4_CHANGE | |
7949 | NOTIFY_DEVICEID4_DELETE, | |
b1f69b75 AA |
7950 | }; |
7951 | struct nfs4_getdeviceinfo_res res = { | |
7952 | .pdev = pdev, | |
7953 | }; | |
7954 | struct rpc_message msg = { | |
7955 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO], | |
7956 | .rpc_argp = &args, | |
7957 | .rpc_resp = &res, | |
cd5875fe | 7958 | .rpc_cred = cred, |
b1f69b75 AA |
7959 | }; |
7960 | int status; | |
7961 | ||
7962 | dprintk("--> %s\n", __func__); | |
7c513058 | 7963 | status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
4e590803 TM |
7964 | if (res.notification & ~args.notify_types) |
7965 | dprintk("%s: unsupported notification\n", __func__); | |
df52699e TM |
7966 | if (res.notification != args.notify_types) |
7967 | pdev->nocache = 1; | |
4e590803 | 7968 | |
b1f69b75 AA |
7969 | dprintk("<-- %s status=%d\n", __func__, status); |
7970 | ||
7971 | return status; | |
7972 | } | |
7973 | ||
cd5875fe TM |
7974 | int nfs4_proc_getdeviceinfo(struct nfs_server *server, |
7975 | struct pnfs_device *pdev, | |
7976 | struct rpc_cred *cred) | |
b1f69b75 AA |
7977 | { |
7978 | struct nfs4_exception exception = { }; | |
7979 | int err; | |
7980 | ||
7981 | do { | |
7982 | err = nfs4_handle_exception(server, | |
cd5875fe | 7983 | _nfs4_proc_getdeviceinfo(server, pdev, cred), |
b1f69b75 AA |
7984 | &exception); |
7985 | } while (exception.retry); | |
7986 | return err; | |
7987 | } | |
7988 | EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo); | |
7989 | ||
863a3c6c AA |
7990 | static void nfs4_layoutcommit_prepare(struct rpc_task *task, void *calldata) |
7991 | { | |
7992 | struct nfs4_layoutcommit_data *data = calldata; | |
7993 | struct nfs_server *server = NFS_SERVER(data->args.inode); | |
6ba7db34 | 7994 | struct nfs4_session *session = nfs4_get_session(server); |
863a3c6c | 7995 | |
d9afbd1b TM |
7996 | nfs41_setup_sequence(session, |
7997 | &data->args.seq_args, | |
7998 | &data->res.seq_res, | |
7999 | task); | |
863a3c6c AA |
8000 | } |
8001 | ||
8002 | static void | |
8003 | nfs4_layoutcommit_done(struct rpc_task *task, void *calldata) | |
8004 | { | |
8005 | struct nfs4_layoutcommit_data *data = calldata; | |
8006 | struct nfs_server *server = NFS_SERVER(data->args.inode); | |
8007 | ||
6ba7db34 | 8008 | if (!nfs41_sequence_done(task, &data->res.seq_res)) |
863a3c6c AA |
8009 | return; |
8010 | ||
8011 | switch (task->tk_status) { /* Just ignore these failures */ | |
e59d27e0 TM |
8012 | case -NFS4ERR_DELEG_REVOKED: /* layout was recalled */ |
8013 | case -NFS4ERR_BADIOMODE: /* no IOMODE_RW layout for range */ | |
8014 | case -NFS4ERR_BADLAYOUT: /* no layout */ | |
8015 | case -NFS4ERR_GRACE: /* loca_recalim always false */ | |
863a3c6c | 8016 | task->tk_status = 0; |
e59d27e0 | 8017 | case 0: |
e59d27e0 TM |
8018 | break; |
8019 | default: | |
8478eaa1 | 8020 | if (nfs4_async_handle_error(task, server, NULL, NULL) == -EAGAIN) { |
e59d27e0 TM |
8021 | rpc_restart_call_prepare(task); |
8022 | return; | |
8023 | } | |
8024 | } | |
863a3c6c AA |
8025 | } |
8026 | ||
8027 | static void nfs4_layoutcommit_release(void *calldata) | |
8028 | { | |
8029 | struct nfs4_layoutcommit_data *data = calldata; | |
8030 | ||
db29c089 | 8031 | pnfs_cleanup_layoutcommit(data); |
d8c951c3 TM |
8032 | nfs_post_op_update_inode_force_wcc(data->args.inode, |
8033 | data->res.fattr); | |
863a3c6c | 8034 | put_rpccred(data->cred); |
472e2594 | 8035 | nfs_iput_and_deactive(data->inode); |
863a3c6c AA |
8036 | kfree(data); |
8037 | } | |
8038 | ||
8039 | static const struct rpc_call_ops nfs4_layoutcommit_ops = { | |
8040 | .rpc_call_prepare = nfs4_layoutcommit_prepare, | |
8041 | .rpc_call_done = nfs4_layoutcommit_done, | |
8042 | .rpc_release = nfs4_layoutcommit_release, | |
8043 | }; | |
8044 | ||
8045 | int | |
ef311537 | 8046 | nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync) |
863a3c6c AA |
8047 | { |
8048 | struct rpc_message msg = { | |
8049 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTCOMMIT], | |
8050 | .rpc_argp = &data->args, | |
8051 | .rpc_resp = &data->res, | |
8052 | .rpc_cred = data->cred, | |
8053 | }; | |
8054 | struct rpc_task_setup task_setup_data = { | |
8055 | .task = &data->task, | |
8056 | .rpc_client = NFS_CLIENT(data->args.inode), | |
8057 | .rpc_message = &msg, | |
8058 | .callback_ops = &nfs4_layoutcommit_ops, | |
8059 | .callback_data = data, | |
863a3c6c AA |
8060 | }; |
8061 | struct rpc_task *task; | |
8062 | int status = 0; | |
8063 | ||
8064 | dprintk("NFS: %4d initiating layoutcommit call. sync %d " | |
8065 | "lbw: %llu inode %lu\n", | |
8066 | data->task.tk_pid, sync, | |
8067 | data->args.lastbytewritten, | |
8068 | data->args.inode->i_ino); | |
8069 | ||
472e2594 TM |
8070 | if (!sync) { |
8071 | data->inode = nfs_igrab_and_active(data->args.inode); | |
8072 | if (data->inode == NULL) { | |
8073 | nfs4_layoutcommit_release(data); | |
8074 | return -EAGAIN; | |
8075 | } | |
8076 | task_setup_data.flags = RPC_TASK_ASYNC; | |
8077 | } | |
a9c92d6b | 8078 | nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1); |
863a3c6c AA |
8079 | task = rpc_run_task(&task_setup_data); |
8080 | if (IS_ERR(task)) | |
8081 | return PTR_ERR(task); | |
472e2594 TM |
8082 | if (sync) |
8083 | status = task->tk_status; | |
1037e6ea | 8084 | trace_nfs4_layoutcommit(data->args.inode, status); |
863a3c6c AA |
8085 | dprintk("%s: status %d\n", __func__, status); |
8086 | rpc_put_task(task); | |
8087 | return status; | |
8088 | } | |
fca78d6d | 8089 | |
97431204 AA |
8090 | /** |
8091 | * Use the state managment nfs_client cl_rpcclient, which uses krb5i (if | |
8092 | * possible) as per RFC3530bis and RFC5661 Security Considerations sections | |
8093 | */ | |
fca78d6d BS |
8094 | static int |
8095 | _nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle, | |
b1b3e136 WAA |
8096 | struct nfs_fsinfo *info, |
8097 | struct nfs4_secinfo_flavors *flavors, bool use_integrity) | |
fca78d6d BS |
8098 | { |
8099 | struct nfs41_secinfo_no_name_args args = { | |
8100 | .style = SECINFO_STYLE_CURRENT_FH, | |
8101 | }; | |
8102 | struct nfs4_secinfo_res res = { | |
8103 | .flavors = flavors, | |
8104 | }; | |
8105 | struct rpc_message msg = { | |
8106 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO_NO_NAME], | |
8107 | .rpc_argp = &args, | |
8108 | .rpc_resp = &res, | |
8109 | }; | |
b1b3e136 | 8110 | struct rpc_clnt *clnt = server->client; |
7cb852df | 8111 | struct rpc_cred *cred = NULL; |
b1b3e136 WAA |
8112 | int status; |
8113 | ||
8114 | if (use_integrity) { | |
8115 | clnt = server->nfs_client->cl_rpcclient; | |
7cb852df WAA |
8116 | cred = nfs4_get_clid_cred(server->nfs_client); |
8117 | msg.rpc_cred = cred; | |
b1b3e136 WAA |
8118 | } |
8119 | ||
8120 | dprintk("--> %s\n", __func__); | |
8121 | status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, | |
8122 | &res.seq_res, 0); | |
8123 | dprintk("<-- %s status=%d\n", __func__, status); | |
8124 | ||
7cb852df WAA |
8125 | if (cred) |
8126 | put_rpccred(cred); | |
b1b3e136 WAA |
8127 | |
8128 | return status; | |
fca78d6d BS |
8129 | } |
8130 | ||
8131 | static int | |
8132 | nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle, | |
8133 | struct nfs_fsinfo *info, struct nfs4_secinfo_flavors *flavors) | |
8134 | { | |
8135 | struct nfs4_exception exception = { }; | |
8136 | int err; | |
8137 | do { | |
b1b3e136 WAA |
8138 | /* first try using integrity protection */ |
8139 | err = -NFS4ERR_WRONGSEC; | |
8140 | ||
8141 | /* try to use integrity protection with machine cred */ | |
8142 | if (_nfs4_is_integrity_protected(server->nfs_client)) | |
8143 | err = _nfs41_proc_secinfo_no_name(server, fhandle, info, | |
8144 | flavors, true); | |
8145 | ||
8146 | /* | |
8147 | * if unable to use integrity protection, or SECINFO with | |
8148 | * integrity protection returns NFS4ERR_WRONGSEC (which is | |
8149 | * disallowed by spec, but exists in deployed servers) use | |
8150 | * the current filesystem's rpc_client and the user cred. | |
8151 | */ | |
8152 | if (err == -NFS4ERR_WRONGSEC) | |
8153 | err = _nfs41_proc_secinfo_no_name(server, fhandle, info, | |
8154 | flavors, false); | |
8155 | ||
fca78d6d BS |
8156 | switch (err) { |
8157 | case 0: | |
8158 | case -NFS4ERR_WRONGSEC: | |
78b19bae | 8159 | case -ENOTSUPP: |
05e9cfb4 | 8160 | goto out; |
fca78d6d BS |
8161 | default: |
8162 | err = nfs4_handle_exception(server, err, &exception); | |
8163 | } | |
8164 | } while (exception.retry); | |
05e9cfb4 | 8165 | out: |
fca78d6d BS |
8166 | return err; |
8167 | } | |
8168 | ||
8169 | static int | |
8170 | nfs41_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle, | |
8171 | struct nfs_fsinfo *info) | |
8172 | { | |
8173 | int err; | |
8174 | struct page *page; | |
367156d9 | 8175 | rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR; |
fca78d6d | 8176 | struct nfs4_secinfo_flavors *flavors; |
58a8cf12 WAA |
8177 | struct nfs4_secinfo4 *secinfo; |
8178 | int i; | |
fca78d6d BS |
8179 | |
8180 | page = alloc_page(GFP_KERNEL); | |
8181 | if (!page) { | |
8182 | err = -ENOMEM; | |
8183 | goto out; | |
8184 | } | |
8185 | ||
8186 | flavors = page_address(page); | |
8187 | err = nfs41_proc_secinfo_no_name(server, fhandle, info, flavors); | |
8188 | ||
8189 | /* | |
8190 | * Fall back on "guess and check" method if | |
8191 | * the server doesn't support SECINFO_NO_NAME | |
8192 | */ | |
78b19bae | 8193 | if (err == -NFS4ERR_WRONGSEC || err == -ENOTSUPP) { |
fca78d6d BS |
8194 | err = nfs4_find_root_sec(server, fhandle, info); |
8195 | goto out_freepage; | |
8196 | } | |
8197 | if (err) | |
8198 | goto out_freepage; | |
8199 | ||
58a8cf12 WAA |
8200 | for (i = 0; i < flavors->num_flavors; i++) { |
8201 | secinfo = &flavors->flavors[i]; | |
8202 | ||
8203 | switch (secinfo->flavor) { | |
8204 | case RPC_AUTH_NULL: | |
8205 | case RPC_AUTH_UNIX: | |
8206 | case RPC_AUTH_GSS: | |
8207 | flavor = rpcauth_get_pseudoflavor(secinfo->flavor, | |
8208 | &secinfo->flavor_info); | |
8209 | break; | |
8210 | default: | |
8211 | flavor = RPC_AUTH_MAXFLAVOR; | |
8212 | break; | |
8213 | } | |
8214 | ||
4d4b69dd WAA |
8215 | if (!nfs_auth_info_match(&server->auth_info, flavor)) |
8216 | flavor = RPC_AUTH_MAXFLAVOR; | |
8217 | ||
58a8cf12 WAA |
8218 | if (flavor != RPC_AUTH_MAXFLAVOR) { |
8219 | err = nfs4_lookup_root_sec(server, fhandle, | |
8220 | info, flavor); | |
8221 | if (!err) | |
8222 | break; | |
8223 | } | |
8224 | } | |
8225 | ||
8226 | if (flavor == RPC_AUTH_MAXFLAVOR) | |
8227 | err = -EPERM; | |
fca78d6d BS |
8228 | |
8229 | out_freepage: | |
8230 | put_page(page); | |
8231 | if (err == -EACCES) | |
8232 | return -EPERM; | |
8233 | out: | |
8234 | return err; | |
8235 | } | |
1cab0652 | 8236 | |
ab7cb0df TM |
8237 | static int _nfs41_test_stateid(struct nfs_server *server, |
8238 | nfs4_stateid *stateid, | |
8239 | struct rpc_cred *cred) | |
7d974794 BS |
8240 | { |
8241 | int status; | |
8242 | struct nfs41_test_stateid_args args = { | |
1cab0652 | 8243 | .stateid = stateid, |
7d974794 BS |
8244 | }; |
8245 | struct nfs41_test_stateid_res res; | |
8246 | struct rpc_message msg = { | |
8247 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_TEST_STATEID], | |
8248 | .rpc_argp = &args, | |
8249 | .rpc_resp = &res, | |
ab7cb0df | 8250 | .rpc_cred = cred, |
7d974794 | 8251 | }; |
3787d506 WAA |
8252 | struct rpc_clnt *rpc_client = server->client; |
8253 | ||
8254 | nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID, | |
8255 | &rpc_client, &msg); | |
1cab0652 | 8256 | |
38527b15 | 8257 | dprintk("NFS call test_stateid %p\n", stateid); |
a9c92d6b | 8258 | nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); |
8fe72bac | 8259 | nfs4_set_sequence_privileged(&args.seq_args); |
3787d506 | 8260 | status = nfs4_call_sync_sequence(rpc_client, server, &msg, |
8fe72bac | 8261 | &args.seq_args, &res.seq_res); |
38527b15 CL |
8262 | if (status != NFS_OK) { |
8263 | dprintk("NFS reply test_stateid: failed, %d\n", status); | |
377e507d | 8264 | return status; |
38527b15 CL |
8265 | } |
8266 | dprintk("NFS reply test_stateid: succeeded, %d\n", -res.status); | |
377e507d | 8267 | return -res.status; |
7d974794 BS |
8268 | } |
8269 | ||
38527b15 CL |
8270 | /** |
8271 | * nfs41_test_stateid - perform a TEST_STATEID operation | |
8272 | * | |
8273 | * @server: server / transport on which to perform the operation | |
8274 | * @stateid: state ID to test | |
ab7cb0df | 8275 | * @cred: credential |
38527b15 CL |
8276 | * |
8277 | * Returns NFS_OK if the server recognizes that "stateid" is valid. | |
8278 | * Otherwise a negative NFS4ERR value is returned if the operation | |
8279 | * failed or the state ID is not currently valid. | |
8280 | */ | |
ab7cb0df TM |
8281 | static int nfs41_test_stateid(struct nfs_server *server, |
8282 | nfs4_stateid *stateid, | |
8283 | struct rpc_cred *cred) | |
7d974794 BS |
8284 | { |
8285 | struct nfs4_exception exception = { }; | |
8286 | int err; | |
8287 | do { | |
ab7cb0df | 8288 | err = _nfs41_test_stateid(server, stateid, cred); |
377e507d CL |
8289 | if (err != -NFS4ERR_DELAY) |
8290 | break; | |
8291 | nfs4_handle_exception(server, err, &exception); | |
7d974794 BS |
8292 | } while (exception.retry); |
8293 | return err; | |
8294 | } | |
9aeda35f | 8295 | |
7c1d5fae TM |
8296 | struct nfs_free_stateid_data { |
8297 | struct nfs_server *server; | |
8298 | struct nfs41_free_stateid_args args; | |
9aeda35f | 8299 | struct nfs41_free_stateid_res res; |
7c1d5fae TM |
8300 | }; |
8301 | ||
8302 | static void nfs41_free_stateid_prepare(struct rpc_task *task, void *calldata) | |
8303 | { | |
8304 | struct nfs_free_stateid_data *data = calldata; | |
8305 | nfs41_setup_sequence(nfs4_get_session(data->server), | |
8306 | &data->args.seq_args, | |
8307 | &data->res.seq_res, | |
8308 | task); | |
8309 | } | |
8310 | ||
8311 | static void nfs41_free_stateid_done(struct rpc_task *task, void *calldata) | |
8312 | { | |
8313 | struct nfs_free_stateid_data *data = calldata; | |
8314 | ||
8315 | nfs41_sequence_done(task, &data->res.seq_res); | |
8316 | ||
8317 | switch (task->tk_status) { | |
8318 | case -NFS4ERR_DELAY: | |
8478eaa1 | 8319 | if (nfs4_async_handle_error(task, data->server, NULL, NULL) == -EAGAIN) |
7c1d5fae TM |
8320 | rpc_restart_call_prepare(task); |
8321 | } | |
8322 | } | |
8323 | ||
8324 | static void nfs41_free_stateid_release(void *calldata) | |
8325 | { | |
8326 | kfree(calldata); | |
8327 | } | |
8328 | ||
17f26b12 | 8329 | static const struct rpc_call_ops nfs41_free_stateid_ops = { |
7c1d5fae TM |
8330 | .rpc_call_prepare = nfs41_free_stateid_prepare, |
8331 | .rpc_call_done = nfs41_free_stateid_done, | |
8332 | .rpc_release = nfs41_free_stateid_release, | |
8333 | }; | |
8334 | ||
8335 | static struct rpc_task *_nfs41_free_stateid(struct nfs_server *server, | |
8336 | nfs4_stateid *stateid, | |
ab7cb0df | 8337 | struct rpc_cred *cred, |
7c1d5fae TM |
8338 | bool privileged) |
8339 | { | |
9aeda35f BS |
8340 | struct rpc_message msg = { |
8341 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FREE_STATEID], | |
ab7cb0df | 8342 | .rpc_cred = cred, |
9aeda35f | 8343 | }; |
7c1d5fae TM |
8344 | struct rpc_task_setup task_setup = { |
8345 | .rpc_client = server->client, | |
8346 | .rpc_message = &msg, | |
8347 | .callback_ops = &nfs41_free_stateid_ops, | |
8348 | .flags = RPC_TASK_ASYNC, | |
8349 | }; | |
8350 | struct nfs_free_stateid_data *data; | |
9aeda35f | 8351 | |
3787d506 WAA |
8352 | nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID, |
8353 | &task_setup.rpc_client, &msg); | |
8354 | ||
38527b15 | 8355 | dprintk("NFS call free_stateid %p\n", stateid); |
7c1d5fae TM |
8356 | data = kmalloc(sizeof(*data), GFP_NOFS); |
8357 | if (!data) | |
8358 | return ERR_PTR(-ENOMEM); | |
8359 | data->server = server; | |
8360 | nfs4_stateid_copy(&data->args.stateid, stateid); | |
8361 | ||
8362 | task_setup.callback_data = data; | |
8363 | ||
8364 | msg.rpc_argp = &data->args; | |
8365 | msg.rpc_resp = &data->res; | |
a9c92d6b | 8366 | nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 0); |
7c1d5fae TM |
8367 | if (privileged) |
8368 | nfs4_set_sequence_privileged(&data->args.seq_args); | |
8369 | ||
8370 | return rpc_run_task(&task_setup); | |
9aeda35f BS |
8371 | } |
8372 | ||
38527b15 CL |
8373 | /** |
8374 | * nfs41_free_stateid - perform a FREE_STATEID operation | |
8375 | * | |
8376 | * @server: server / transport on which to perform the operation | |
8377 | * @stateid: state ID to release | |
ab7cb0df | 8378 | * @cred: credential |
38527b15 CL |
8379 | * |
8380 | * Returns NFS_OK if the server freed "stateid". Otherwise a | |
8381 | * negative NFS4ERR value is returned. | |
8382 | */ | |
ab7cb0df TM |
8383 | static int nfs41_free_stateid(struct nfs_server *server, |
8384 | nfs4_stateid *stateid, | |
8385 | struct rpc_cred *cred) | |
9aeda35f | 8386 | { |
7c1d5fae TM |
8387 | struct rpc_task *task; |
8388 | int ret; | |
8389 | ||
ab7cb0df | 8390 | task = _nfs41_free_stateid(server, stateid, cred, true); |
7c1d5fae TM |
8391 | if (IS_ERR(task)) |
8392 | return PTR_ERR(task); | |
8393 | ret = rpc_wait_for_completion_task(task); | |
8394 | if (!ret) | |
8395 | ret = task->tk_status; | |
8396 | rpc_put_task(task); | |
8397 | return ret; | |
9aeda35f | 8398 | } |
36281caa | 8399 | |
f1cdae87 JL |
8400 | static void |
8401 | nfs41_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp) | |
c8b2d0bf TM |
8402 | { |
8403 | struct rpc_task *task; | |
ab7cb0df | 8404 | struct rpc_cred *cred = lsp->ls_state->owner->so_cred; |
c8b2d0bf | 8405 | |
ab7cb0df | 8406 | task = _nfs41_free_stateid(server, &lsp->ls_stateid, cred, false); |
c8b2d0bf TM |
8407 | nfs4_free_lock_state(server, lsp); |
8408 | if (IS_ERR(task)) | |
f1cdae87 | 8409 | return; |
c8b2d0bf | 8410 | rpc_put_task(task); |
c8b2d0bf TM |
8411 | } |
8412 | ||
36281caa TM |
8413 | static bool nfs41_match_stateid(const nfs4_stateid *s1, |
8414 | const nfs4_stateid *s2) | |
8415 | { | |
2d2f24ad | 8416 | if (memcmp(s1->other, s2->other, sizeof(s1->other)) != 0) |
36281caa TM |
8417 | return false; |
8418 | ||
2d2f24ad | 8419 | if (s1->seqid == s2->seqid) |
36281caa | 8420 | return true; |
2d2f24ad | 8421 | if (s1->seqid == 0 || s2->seqid == 0) |
36281caa TM |
8422 | return true; |
8423 | ||
8424 | return false; | |
8425 | } | |
8426 | ||
557134a3 AA |
8427 | #endif /* CONFIG_NFS_V4_1 */ |
8428 | ||
36281caa TM |
8429 | static bool nfs4_match_stateid(const nfs4_stateid *s1, |
8430 | const nfs4_stateid *s2) | |
8431 | { | |
f597c537 | 8432 | return nfs4_stateid_match(s1, s2); |
36281caa TM |
8433 | } |
8434 | ||
8435 | ||
17280175 | 8436 | static const struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = { |
7eff03ae | 8437 | .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT, |
b79a4a1b | 8438 | .state_flag_bit = NFS_STATE_RECLAIM_REBOOT, |
1da177e4 LT |
8439 | .recover_open = nfs4_open_reclaim, |
8440 | .recover_lock = nfs4_lock_reclaim, | |
591d71cb | 8441 | .establish_clid = nfs4_init_clientid, |
05f4c350 | 8442 | .detect_trunking = nfs40_discover_server_trunking, |
1da177e4 LT |
8443 | }; |
8444 | ||
591d71cb | 8445 | #if defined(CONFIG_NFS_V4_1) |
17280175 | 8446 | static const struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = { |
591d71cb AA |
8447 | .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT, |
8448 | .state_flag_bit = NFS_STATE_RECLAIM_REBOOT, | |
8449 | .recover_open = nfs4_open_reclaim, | |
8450 | .recover_lock = nfs4_lock_reclaim, | |
4d643d1d | 8451 | .establish_clid = nfs41_init_clientid, |
fce5c838 | 8452 | .reclaim_complete = nfs41_proc_reclaim_complete, |
05f4c350 | 8453 | .detect_trunking = nfs41_discover_server_trunking, |
591d71cb AA |
8454 | }; |
8455 | #endif /* CONFIG_NFS_V4_1 */ | |
8456 | ||
17280175 | 8457 | static const struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = { |
591d71cb AA |
8458 | .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE, |
8459 | .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE, | |
4dfd4f7a | 8460 | .recover_open = nfs40_open_expired, |
591d71cb AA |
8461 | .recover_lock = nfs4_lock_expired, |
8462 | .establish_clid = nfs4_init_clientid, | |
8463 | }; | |
8464 | ||
8465 | #if defined(CONFIG_NFS_V4_1) | |
17280175 | 8466 | static const struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = { |
7eff03ae | 8467 | .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE, |
b79a4a1b | 8468 | .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE, |
f062eb6c BS |
8469 | .recover_open = nfs41_open_expired, |
8470 | .recover_lock = nfs41_lock_expired, | |
4d643d1d | 8471 | .establish_clid = nfs41_init_clientid, |
1da177e4 | 8472 | }; |
591d71cb | 8473 | #endif /* CONFIG_NFS_V4_1 */ |
1da177e4 | 8474 | |
17280175 | 8475 | static const struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = { |
29fba38b | 8476 | .sched_state_renewal = nfs4_proc_async_renew, |
a7b72103 | 8477 | .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked, |
8e69514f | 8478 | .renew_lease = nfs4_proc_renew, |
29fba38b BH |
8479 | }; |
8480 | ||
8481 | #if defined(CONFIG_NFS_V4_1) | |
17280175 | 8482 | static const struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = { |
29fba38b | 8483 | .sched_state_renewal = nfs41_proc_async_sequence, |
a7b72103 | 8484 | .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked, |
8e69514f | 8485 | .renew_lease = nfs4_proc_sequence, |
29fba38b BH |
8486 | }; |
8487 | #endif | |
8488 | ||
ec011fe8 | 8489 | static const struct nfs4_mig_recovery_ops nfs40_mig_recovery_ops = { |
b03d735b | 8490 | .get_locations = _nfs40_proc_get_locations, |
44c99933 | 8491 | .fsid_present = _nfs40_proc_fsid_present, |
ec011fe8 CL |
8492 | }; |
8493 | ||
8494 | #if defined(CONFIG_NFS_V4_1) | |
8495 | static const struct nfs4_mig_recovery_ops nfs41_mig_recovery_ops = { | |
b03d735b | 8496 | .get_locations = _nfs41_proc_get_locations, |
44c99933 | 8497 | .fsid_present = _nfs41_proc_fsid_present, |
ec011fe8 CL |
8498 | }; |
8499 | #endif /* CONFIG_NFS_V4_1 */ | |
8500 | ||
97dc1359 TM |
8501 | static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = { |
8502 | .minor_version = 0, | |
39c6daae TM |
8503 | .init_caps = NFS_CAP_READDIRPLUS |
8504 | | NFS_CAP_ATOMIC_OPEN | |
8505 | | NFS_CAP_CHANGE_ATTR | |
8506 | | NFS_CAP_POSIX_LOCK, | |
abf79bb3 CL |
8507 | .init_client = nfs40_init_client, |
8508 | .shutdown_client = nfs40_shutdown_client, | |
36281caa | 8509 | .match_stateid = nfs4_match_stateid, |
fca78d6d | 8510 | .find_root_sec = nfs4_find_root_sec, |
c8b2d0bf | 8511 | .free_lock_state = nfs4_release_lockowner, |
63f5f796 | 8512 | .alloc_seqid = nfs_alloc_seqid, |
9915ea7e | 8513 | .call_sync_ops = &nfs40_call_sync_ops, |
c48f4f35 TM |
8514 | .reboot_recovery_ops = &nfs40_reboot_recovery_ops, |
8515 | .nograce_recovery_ops = &nfs40_nograce_recovery_ops, | |
8516 | .state_renewal_ops = &nfs40_state_renewal_ops, | |
ec011fe8 | 8517 | .mig_recovery_ops = &nfs40_mig_recovery_ops, |
97dc1359 TM |
8518 | }; |
8519 | ||
8520 | #if defined(CONFIG_NFS_V4_1) | |
63f5f796 TM |
8521 | static struct nfs_seqid * |
8522 | nfs_alloc_no_seqid(struct nfs_seqid_counter *arg1, gfp_t arg2) | |
8523 | { | |
8524 | return NULL; | |
8525 | } | |
8526 | ||
97dc1359 TM |
8527 | static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = { |
8528 | .minor_version = 1, | |
39c6daae TM |
8529 | .init_caps = NFS_CAP_READDIRPLUS |
8530 | | NFS_CAP_ATOMIC_OPEN | |
8531 | | NFS_CAP_CHANGE_ATTR | |
3b66486c | 8532 | | NFS_CAP_POSIX_LOCK |
49f9a0fa | 8533 | | NFS_CAP_STATEID_NFSV41 |
e983120e | 8534 | | NFS_CAP_ATOMIC_OPEN_V1, |
abf79bb3 CL |
8535 | .init_client = nfs41_init_client, |
8536 | .shutdown_client = nfs41_shutdown_client, | |
36281caa | 8537 | .match_stateid = nfs41_match_stateid, |
fca78d6d | 8538 | .find_root_sec = nfs41_find_root_sec, |
c8b2d0bf | 8539 | .free_lock_state = nfs41_free_lock_state, |
63f5f796 | 8540 | .alloc_seqid = nfs_alloc_no_seqid, |
9915ea7e | 8541 | .call_sync_ops = &nfs41_call_sync_ops, |
c48f4f35 TM |
8542 | .reboot_recovery_ops = &nfs41_reboot_recovery_ops, |
8543 | .nograce_recovery_ops = &nfs41_nograce_recovery_ops, | |
8544 | .state_renewal_ops = &nfs41_state_renewal_ops, | |
ec011fe8 | 8545 | .mig_recovery_ops = &nfs41_mig_recovery_ops, |
97dc1359 TM |
8546 | }; |
8547 | #endif | |
8548 | ||
42c2c424 SD |
8549 | #if defined(CONFIG_NFS_V4_2) |
8550 | static const struct nfs4_minor_version_ops nfs_v4_2_minor_ops = { | |
8551 | .minor_version = 2, | |
7017310a BS |
8552 | .init_caps = NFS_CAP_READDIRPLUS |
8553 | | NFS_CAP_ATOMIC_OPEN | |
8554 | | NFS_CAP_CHANGE_ATTR | |
8555 | | NFS_CAP_POSIX_LOCK | |
8556 | | NFS_CAP_STATEID_NFSV41 | |
e983120e | 8557 | | NFS_CAP_ATOMIC_OPEN_V1 |
f4ac1674 | 8558 | | NFS_CAP_ALLOCATE |
624bd5b7 | 8559 | | NFS_CAP_DEALLOCATE |
e983120e | 8560 | | NFS_CAP_SEEK, |
abf79bb3 CL |
8561 | .init_client = nfs41_init_client, |
8562 | .shutdown_client = nfs41_shutdown_client, | |
42c2c424 SD |
8563 | .match_stateid = nfs41_match_stateid, |
8564 | .find_root_sec = nfs41_find_root_sec, | |
7017310a | 8565 | .free_lock_state = nfs41_free_lock_state, |
9915ea7e | 8566 | .call_sync_ops = &nfs41_call_sync_ops, |
63f5f796 | 8567 | .alloc_seqid = nfs_alloc_no_seqid, |
42c2c424 SD |
8568 | .reboot_recovery_ops = &nfs41_reboot_recovery_ops, |
8569 | .nograce_recovery_ops = &nfs41_nograce_recovery_ops, | |
8570 | .state_renewal_ops = &nfs41_state_renewal_ops, | |
8571 | }; | |
8572 | #endif | |
8573 | ||
97dc1359 TM |
8574 | const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = { |
8575 | [0] = &nfs_v4_0_minor_ops, | |
8576 | #if defined(CONFIG_NFS_V4_1) | |
8577 | [1] = &nfs_v4_1_minor_ops, | |
8578 | #endif | |
42c2c424 SD |
8579 | #if defined(CONFIG_NFS_V4_2) |
8580 | [2] = &nfs_v4_2_minor_ops, | |
8581 | #endif | |
97dc1359 TM |
8582 | }; |
8583 | ||
17f26b12 | 8584 | static const struct inode_operations nfs4_dir_inode_operations = { |
73a79706 BS |
8585 | .create = nfs_create, |
8586 | .lookup = nfs_lookup, | |
8587 | .atomic_open = nfs_atomic_open, | |
8588 | .link = nfs_link, | |
8589 | .unlink = nfs_unlink, | |
8590 | .symlink = nfs_symlink, | |
8591 | .mkdir = nfs_mkdir, | |
8592 | .rmdir = nfs_rmdir, | |
8593 | .mknod = nfs_mknod, | |
8594 | .rename = nfs_rename, | |
8595 | .permission = nfs_permission, | |
8596 | .getattr = nfs_getattr, | |
8597 | .setattr = nfs_setattr, | |
8598 | .getxattr = generic_getxattr, | |
8599 | .setxattr = generic_setxattr, | |
8600 | .listxattr = generic_listxattr, | |
8601 | .removexattr = generic_removexattr, | |
8602 | }; | |
8603 | ||
92e1d5be | 8604 | static const struct inode_operations nfs4_file_inode_operations = { |
6b3b5496 BF |
8605 | .permission = nfs_permission, |
8606 | .getattr = nfs_getattr, | |
8607 | .setattr = nfs_setattr, | |
64c2ce8b AK |
8608 | .getxattr = generic_getxattr, |
8609 | .setxattr = generic_setxattr, | |
8610 | .listxattr = generic_listxattr, | |
8611 | .removexattr = generic_removexattr, | |
6b3b5496 BF |
8612 | }; |
8613 | ||
509de811 | 8614 | const struct nfs_rpc_ops nfs_v4_clientops = { |
1da177e4 LT |
8615 | .version = 4, /* protocol version */ |
8616 | .dentry_ops = &nfs4_dentry_operations, | |
8617 | .dir_inode_ops = &nfs4_dir_inode_operations, | |
6b3b5496 | 8618 | .file_inode_ops = &nfs4_file_inode_operations, |
1788ea6e | 8619 | .file_ops = &nfs4_file_operations, |
1da177e4 | 8620 | .getroot = nfs4_proc_get_root, |
281cad46 | 8621 | .submount = nfs4_submount, |
ff9099f2 | 8622 | .try_mount = nfs4_try_mount, |
1da177e4 LT |
8623 | .getattr = nfs4_proc_getattr, |
8624 | .setattr = nfs4_proc_setattr, | |
8625 | .lookup = nfs4_proc_lookup, | |
8626 | .access = nfs4_proc_access, | |
8627 | .readlink = nfs4_proc_readlink, | |
1da177e4 LT |
8628 | .create = nfs4_proc_create, |
8629 | .remove = nfs4_proc_remove, | |
8630 | .unlink_setup = nfs4_proc_unlink_setup, | |
34e137cc | 8631 | .unlink_rpc_prepare = nfs4_proc_unlink_rpc_prepare, |
1da177e4 | 8632 | .unlink_done = nfs4_proc_unlink_done, |
d3d4152a | 8633 | .rename_setup = nfs4_proc_rename_setup, |
c6bfa1a1 | 8634 | .rename_rpc_prepare = nfs4_proc_rename_rpc_prepare, |
d3d4152a | 8635 | .rename_done = nfs4_proc_rename_done, |
1da177e4 LT |
8636 | .link = nfs4_proc_link, |
8637 | .symlink = nfs4_proc_symlink, | |
8638 | .mkdir = nfs4_proc_mkdir, | |
8639 | .rmdir = nfs4_proc_remove, | |
8640 | .readdir = nfs4_proc_readdir, | |
8641 | .mknod = nfs4_proc_mknod, | |
8642 | .statfs = nfs4_proc_statfs, | |
8643 | .fsinfo = nfs4_proc_fsinfo, | |
8644 | .pathconf = nfs4_proc_pathconf, | |
e9326dca | 8645 | .set_capabilities = nfs4_server_capabilities, |
1da177e4 | 8646 | .decode_dirent = nfs4_decode_dirent, |
a4cdda59 | 8647 | .pgio_rpc_prepare = nfs4_proc_pgio_rpc_prepare, |
1da177e4 | 8648 | .read_setup = nfs4_proc_read_setup, |
ec06c096 | 8649 | .read_done = nfs4_read_done, |
1da177e4 | 8650 | .write_setup = nfs4_proc_write_setup, |
788e7a89 | 8651 | .write_done = nfs4_write_done, |
1da177e4 | 8652 | .commit_setup = nfs4_proc_commit_setup, |
0b7c0153 | 8653 | .commit_rpc_prepare = nfs4_proc_commit_rpc_prepare, |
788e7a89 | 8654 | .commit_done = nfs4_commit_done, |
1da177e4 | 8655 | .lock = nfs4_proc_lock, |
e50a1c2e | 8656 | .clear_acl_cache = nfs4_zap_acl_attr, |
7fe5c398 | 8657 | .close_context = nfs4_close_context, |
2b484297 | 8658 | .open_context = nfs4_atomic_open, |
011e2a7f | 8659 | .have_delegation = nfs4_have_delegation, |
57ec14c5 | 8660 | .return_delegation = nfs4_inode_return_delegation, |
6663ee7f | 8661 | .alloc_client = nfs4_alloc_client, |
45a52a02 | 8662 | .init_client = nfs4_init_client, |
cdb7eced | 8663 | .free_client = nfs4_free_client, |
1179acc6 BS |
8664 | .create_server = nfs4_create_server, |
8665 | .clone_server = nfs_clone_server, | |
1da177e4 LT |
8666 | }; |
8667 | ||
64c2ce8b AK |
8668 | static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = { |
8669 | .prefix = XATTR_NAME_NFSV4_ACL, | |
8670 | .list = nfs4_xattr_list_nfs4_acl, | |
8671 | .get = nfs4_xattr_get_nfs4_acl, | |
8672 | .set = nfs4_xattr_set_nfs4_acl, | |
8673 | }; | |
8674 | ||
8675 | const struct xattr_handler *nfs4_xattr_handlers[] = { | |
8676 | &nfs4_xattr_nfs4_acl_handler, | |
c9bccef6 DQ |
8677 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
8678 | &nfs4_xattr_nfs4_label_handler, | |
8679 | #endif | |
64c2ce8b AK |
8680 | NULL |
8681 | }; | |
8682 | ||
1da177e4 LT |
8683 | /* |
8684 | * Local variables: | |
8685 | * c-basic-offset: 8 | |
8686 | * End: | |
8687 | */ |