blob: 353eb4a0b847f8600200bbf5289ce16614b11bb8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfsd/nfs4callback.c
3 *
4 * Copyright (c) 2001 The Regents of the University of Michigan.
5 * All rights reserved.
6 *
7 * Kendrick Smith <kmsmith@umich.edu>
8 * Andy Adamson <andros@umich.edu>
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 *
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its
20 * contributors may be used to endorse or promote products derived
21 * from this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
24 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 */
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/module.h>
37#include <linux/list.h>
38#include <linux/inet.h>
39#include <linux/errno.h>
40#include <linux/delay.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040041#include <linux/sched.h>
J. Bruce Fields2b47eec2007-07-27 18:06:50 -040042#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/sunrpc/xdr.h>
44#include <linux/sunrpc/svc.h>
45#include <linux/sunrpc/clnt.h>
46#include <linux/nfsd/nfsd.h>
47#include <linux/nfsd/state.h>
48#include <linux/sunrpc/sched.h>
49#include <linux/nfs4.h>
50
51#define NFSDDBG_FACILITY NFSDDBG_PROC
52
53#define NFSPROC4_CB_NULL 0
54#define NFSPROC4_CB_COMPOUND 1
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/* Index of predefined Linux callback client operations */
57
58enum {
59 NFSPROC4_CLNT_CB_NULL = 0,
60 NFSPROC4_CLNT_CB_RECALL,
61};
62
63enum nfs_cb_opnum4 {
64 OP_CB_RECALL = 4,
65};
66
67#define NFS4_MAXTAGLEN 20
68
69#define NFS4_enc_cb_null_sz 0
70#define NFS4_dec_cb_null_sz 0
71#define cb_compound_enc_hdr_sz 4
72#define cb_compound_dec_hdr_sz (3 + (NFS4_MAXTAGLEN >> 2))
73#define op_enc_sz 1
74#define op_dec_sz 2
75#define enc_nfs4_fh_sz (1 + (NFS4_FHSIZE >> 2))
Benny Halevy0ac68d12007-07-17 04:04:37 -070076#define enc_stateid_sz (NFS4_STATEID_SIZE >> 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#define NFS4_enc_cb_recall_sz (cb_compound_enc_hdr_sz + \
78 1 + enc_stateid_sz + \
79 enc_nfs4_fh_sz)
80
81#define NFS4_dec_cb_recall_sz (cb_compound_dec_hdr_sz + \
82 op_dec_sz)
83
84/*
85* Generic encode routines from fs/nfs/nfs4xdr.c
86*/
Al Virof00f3282006-10-19 23:29:01 -070087static inline __be32 *
88xdr_writemem(__be32 *p, const void *ptr, int nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 int tmp = XDR_QUADLEN(nbytes);
91 if (!tmp)
92 return p;
93 p[tmp-1] = 0;
94 memcpy(p, ptr, nbytes);
95 return p + tmp;
96}
97
98#define WRITE32(n) *p++ = htonl(n)
99#define WRITEMEM(ptr,nbytes) do { \
100 p = xdr_writemem(p, ptr, nbytes); \
101} while (0)
102#define RESERVE_SPACE(nbytes) do { \
103 p = xdr_reserve_space(xdr, nbytes); \
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700104 if (!p) dprintk("NFSD: RESERVE_SPACE(%d) failed in function %s\n", (int) (nbytes), __func__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 BUG_ON(!p); \
106} while (0)
107
108/*
109 * Generic decode routines from fs/nfs/nfs4xdr.c
110 */
111#define DECODE_TAIL \
112 status = 0; \
113out: \
114 return status; \
115xdr_error: \
116 dprintk("NFSD: xdr error! (%s:%d)\n", __FILE__, __LINE__); \
117 status = -EIO; \
118 goto out
119
120#define READ32(x) (x) = ntohl(*p++)
121#define READ64(x) do { \
122 (x) = (u64)ntohl(*p++) << 32; \
123 (x) |= ntohl(*p++); \
124} while (0)
125#define READTIME(x) do { \
126 p++; \
127 (x.tv_sec) = ntohl(*p++); \
128 (x.tv_nsec) = ntohl(*p++); \
129} while (0)
130#define READ_BUF(nbytes) do { \
131 p = xdr_inline_decode(xdr, nbytes); \
132 if (!p) { \
Greg Banks3e3b4802006-10-02 02:17:41 -0700133 dprintk("NFSD: %s: reply buffer overflowed in line %d.\n", \
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700134 __func__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return -EIO; \
136 } \
137} while (0)
138
139struct nfs4_cb_compound_hdr {
140 int status;
141 u32 ident;
142 u32 nops;
Andy Adamsonef52bff2009-06-16 04:20:50 +0300143 __be32 *nops_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 u32 taglen;
Andy Adamsonef52bff2009-06-16 04:20:50 +0300145 char *tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
148static struct {
149int stat;
150int errno;
151} nfs_cb_errtbl[] = {
152 { NFS4_OK, 0 },
153 { NFS4ERR_PERM, EPERM },
154 { NFS4ERR_NOENT, ENOENT },
155 { NFS4ERR_IO, EIO },
156 { NFS4ERR_NXIO, ENXIO },
157 { NFS4ERR_ACCESS, EACCES },
158 { NFS4ERR_EXIST, EEXIST },
159 { NFS4ERR_XDEV, EXDEV },
160 { NFS4ERR_NOTDIR, ENOTDIR },
161 { NFS4ERR_ISDIR, EISDIR },
162 { NFS4ERR_INVAL, EINVAL },
163 { NFS4ERR_FBIG, EFBIG },
164 { NFS4ERR_NOSPC, ENOSPC },
165 { NFS4ERR_ROFS, EROFS },
166 { NFS4ERR_MLINK, EMLINK },
167 { NFS4ERR_NAMETOOLONG, ENAMETOOLONG },
168 { NFS4ERR_NOTEMPTY, ENOTEMPTY },
169 { NFS4ERR_DQUOT, EDQUOT },
170 { NFS4ERR_STALE, ESTALE },
171 { NFS4ERR_BADHANDLE, EBADHANDLE },
172 { NFS4ERR_BAD_COOKIE, EBADCOOKIE },
173 { NFS4ERR_NOTSUPP, ENOTSUPP },
174 { NFS4ERR_TOOSMALL, ETOOSMALL },
175 { NFS4ERR_SERVERFAULT, ESERVERFAULT },
176 { NFS4ERR_BADTYPE, EBADTYPE },
177 { NFS4ERR_LOCKED, EAGAIN },
178 { NFS4ERR_RESOURCE, EREMOTEIO },
179 { NFS4ERR_SYMLINK, ELOOP },
180 { NFS4ERR_OP_ILLEGAL, EOPNOTSUPP },
181 { NFS4ERR_DEADLOCK, EDEADLK },
182 { -1, EIO }
183};
184
185static int
186nfs_cb_stat_to_errno(int stat)
187{
188 int i;
189 for (i = 0; nfs_cb_errtbl[i].stat != -1; i++) {
190 if (nfs_cb_errtbl[i].stat == stat)
191 return nfs_cb_errtbl[i].errno;
192 }
193 /* If we cannot translate the error, the recovery routines should
194 * handle it.
195 * Note: remaining NFSv4 error codes have values > 10000, so should
196 * not conflict with native Linux error codes.
197 */
198 return stat;
199}
200
201/*
202 * XDR encode
203 */
204
Andy Adamsonef52bff2009-06-16 04:20:50 +0300205static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206encode_cb_compound_hdr(struct xdr_stream *xdr, struct nfs4_cb_compound_hdr *hdr)
207{
Al Virof00f3282006-10-19 23:29:01 -0700208 __be32 * p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 RESERVE_SPACE(16);
211 WRITE32(0); /* tag length is always 0 */
212 WRITE32(NFS4_MINOR_VERSION);
213 WRITE32(hdr->ident);
Andy Adamsonef52bff2009-06-16 04:20:50 +0300214 hdr->nops_p = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 WRITE32(hdr->nops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
Andy Adamsonef52bff2009-06-16 04:20:50 +0300218static void encode_cb_nops(struct nfs4_cb_compound_hdr *hdr)
219{
220 *hdr->nops_p = htonl(hdr->nops);
221}
222
223static void
224encode_cb_recall(struct xdr_stream *xdr, struct nfs4_delegation *dp,
225 struct nfs4_cb_compound_hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Al Virof00f3282006-10-19 23:29:01 -0700227 __be32 *p;
J. Bruce Fieldsb53d40c2009-05-01 19:50:00 -0400228 int len = dp->dl_fh.fh_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
J. Bruce Fieldsb53d40c2009-05-01 19:50:00 -0400230 RESERVE_SPACE(12+sizeof(dp->dl_stateid) + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 WRITE32(OP_CB_RECALL);
J. Bruce Fieldsb53d40c2009-05-01 19:50:00 -0400232 WRITE32(dp->dl_stateid.si_generation);
233 WRITEMEM(&dp->dl_stateid.si_opaque, sizeof(stateid_opaque_t));
J. Bruce Fields6707bd32009-05-01 19:57:46 -0400234 WRITE32(0); /* truncate optimization not implemented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 WRITE32(len);
J. Bruce Fieldsb53d40c2009-05-01 19:50:00 -0400236 WRITEMEM(&dp->dl_fh.fh_base, len);
Andy Adamsonef52bff2009-06-16 04:20:50 +0300237 hdr->nops++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
240static int
Al Virof00f3282006-10-19 23:29:01 -0700241nfs4_xdr_enc_cb_null(struct rpc_rqst *req, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 struct xdr_stream xdrs, *xdr = &xdrs;
244
245 xdr_init_encode(&xdrs, &req->rq_snd_buf, p);
246 RESERVE_SPACE(0);
247 return 0;
248}
249
250static int
J. Bruce Fieldsb53d40c2009-05-01 19:50:00 -0400251nfs4_xdr_enc_cb_recall(struct rpc_rqst *req, __be32 *p, struct nfs4_delegation *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
253 struct xdr_stream xdr;
254 struct nfs4_cb_compound_hdr hdr = {
J. Bruce Fieldsb53d40c2009-05-01 19:50:00 -0400255 .ident = args->dl_ident,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 };
257
258 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
259 encode_cb_compound_hdr(&xdr, &hdr);
Andy Adamsonef52bff2009-06-16 04:20:50 +0300260 encode_cb_recall(&xdr, args, &hdr);
261 encode_cb_nops(&hdr);
262 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265
266static int
267decode_cb_compound_hdr(struct xdr_stream *xdr, struct nfs4_cb_compound_hdr *hdr){
Al Virof00f3282006-10-19 23:29:01 -0700268 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 READ_BUF(8);
271 READ32(hdr->status);
272 READ32(hdr->taglen);
273 READ_BUF(hdr->taglen + 4);
274 hdr->tag = (char *)p;
275 p += XDR_QUADLEN(hdr->taglen);
276 READ32(hdr->nops);
277 return 0;
278}
279
280static int
281decode_cb_op_hdr(struct xdr_stream *xdr, enum nfs_opnum4 expected)
282{
Al Virof00f3282006-10-19 23:29:01 -0700283 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 u32 op;
285 int32_t nfserr;
286
287 READ_BUF(8);
288 READ32(op);
289 if (op != expected) {
290 dprintk("NFSD: decode_cb_op_hdr: Callback server returned "
291 " operation %d but we issued a request for %d\n",
292 op, expected);
293 return -EIO;
294 }
295 READ32(nfserr);
296 if (nfserr != NFS_OK)
297 return -nfs_cb_stat_to_errno(nfserr);
298 return 0;
299}
300
301static int
Al Virof00f3282006-10-19 23:29:01 -0700302nfs4_xdr_dec_cb_null(struct rpc_rqst *req, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 return 0;
305}
306
307static int
Al Virof00f3282006-10-19 23:29:01 -0700308nfs4_xdr_dec_cb_recall(struct rpc_rqst *rqstp, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 struct xdr_stream xdr;
311 struct nfs4_cb_compound_hdr hdr;
312 int status;
313
314 xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, p);
315 status = decode_cb_compound_hdr(&xdr, &hdr);
316 if (status)
317 goto out;
318 status = decode_cb_op_hdr(&xdr, OP_CB_RECALL);
319out:
320 return status;
321}
322
323/*
324 * RPC procedure tables
325 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#define PROC(proc, call, argtype, restype) \
327[NFSPROC4_CLNT_##proc] = { \
328 .p_proc = NFSPROC4_CB_##call, \
329 .p_encode = (kxdrproc_t) nfs4_xdr_##argtype, \
330 .p_decode = (kxdrproc_t) nfs4_xdr_##restype, \
Chuck Lever2bea90d2007-03-29 16:47:53 -0400331 .p_arglen = NFS4_##argtype##_sz, \
332 .p_replen = NFS4_##restype##_sz, \
Chuck Levercc0175c2006-03-20 13:44:22 -0500333 .p_statidx = NFSPROC4_CB_##call, \
334 .p_name = #proc, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
NeilBrownfd39ca92005-06-23 22:04:03 -0700337static struct rpc_procinfo nfs4_cb_procedures[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 PROC(CB_NULL, NULL, enc_cb_null, dec_cb_null),
339 PROC(CB_RECALL, COMPOUND, enc_cb_recall, dec_cb_recall),
340};
341
NeilBrownfd39ca92005-06-23 22:04:03 -0700342static struct rpc_version nfs_cb_version4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 .number = 1,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800344 .nrprocs = ARRAY_SIZE(nfs4_cb_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 .procs = nfs4_cb_procedures
346};
347
348static struct rpc_version * nfs_cb_version[] = {
349 NULL,
350 &nfs_cb_version4,
351};
352
Olga Kornievskaiaff7d9752008-03-28 16:04:56 -0400353static struct rpc_program cb_program;
354
355static struct rpc_stat cb_stats = {
356 .program = &cb_program
357};
358
359#define NFS4_CALLBACK 0x40000000
360static struct rpc_program cb_program = {
361 .name = "nfs4_cb",
362 .number = NFS4_CALLBACK,
363 .nrvers = ARRAY_SIZE(nfs_cb_version),
364 .version = nfs_cb_version,
365 .stats = &cb_stats,
Olga Kornievskaia61054b12008-12-23 16:19:00 -0500366 .pipe_dir_name = "/nfsd4_cb",
Olga Kornievskaiaff7d9752008-03-28 16:04:56 -0400367};
368
J. Bruce Fields595947a2009-03-05 17:18:10 -0500369static int max_cb_time(void)
370{
371 return max(NFSD_LEASE_TIME/10, (time_t)1) * HZ;
372}
373
J. Bruce Fields2b47eec2007-07-27 18:06:50 -0400374/* Reference counting, callback cleanup, etc., all look racy as heck.
375 * And why is cb_set an atomic? */
376
J. Bruce Fieldse1cab5a52009-02-23 10:45:27 -0800377int setup_callback_client(struct nfs4_client *clp)
J. Bruce Fields2b47eec2007-07-27 18:06:50 -0400378{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 struct sockaddr_in addr;
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400380 struct nfs4_cb_conn *cb = &clp->cl_cb_conn;
Chuck Leverae5c7942006-08-22 20:06:21 -0400381 struct rpc_timeout timeparms = {
J. Bruce Fields595947a2009-03-05 17:18:10 -0500382 .to_initval = max_cb_time(),
383 .to_retries = 0,
Chuck Leverae5c7942006-08-22 20:06:21 -0400384 };
Chuck Leverae5c7942006-08-22 20:06:21 -0400385 struct rpc_create_args args = {
386 .protocol = IPPROTO_TCP,
387 .address = (struct sockaddr *)&addr,
388 .addrsize = sizeof(addr),
389 .timeout = &timeparms,
Olga Kornievskaiaff7d9752008-03-28 16:04:56 -0400390 .program = &cb_program,
Benny Halevyd5b337b2008-09-28 09:21:26 +0300391 .prognumber = cb->cb_prog,
Chuck Leverae5c7942006-08-22 20:06:21 -0400392 .version = nfs_cb_version[1]->number,
Olga Kornievskaia61054b12008-12-23 16:19:00 -0500393 .authflavor = clp->cl_flavor,
Olga Kornievskaiab6b61522008-06-09 16:51:31 -0400394 .flags = (RPC_CLNT_CREATE_NOPING | RPC_CLNT_CREATE_QUIET),
Olga Kornievskaia608207e2008-12-23 16:17:40 -0500395 .client_name = clp->cl_principal,
Chuck Leverae5c7942006-08-22 20:06:21 -0400396 };
J. Bruce Fields63c86712007-10-25 19:00:26 -0400397 struct rpc_clnt *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
J. Bruce Fields418cd20a2009-02-22 15:52:13 -0800399 if (!clp->cl_principal && (clp->cl_flavor >= RPC_AUTH_GSS_KRB5))
J. Bruce Fieldse1cab5a52009-02-23 10:45:27 -0800400 return -EINVAL;
Olga Kornievskaia608207e2008-12-23 16:17:40 -0500401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 /* Initialize address */
403 memset(&addr, 0, sizeof(addr));
404 addr.sin_family = AF_INET;
405 addr.sin_port = htons(cb->cb_port);
406 addr.sin_addr.s_addr = htonl(cb->cb_addr);
407
Chuck Leverae5c7942006-08-22 20:06:21 -0400408 /* Create RPC client */
J. Bruce Fields63c86712007-10-25 19:00:26 -0400409 client = rpc_create(&args);
J. Bruce Fieldse1cab5a52009-02-23 10:45:27 -0800410 if (IS_ERR(client)) {
J. Bruce Fieldsa601cae2009-02-22 16:43:45 -0800411 dprintk("NFSD: couldn't create callback client: %ld\n",
412 PTR_ERR(client));
J. Bruce Fieldse1cab5a52009-02-23 10:45:27 -0800413 return PTR_ERR(client);
414 }
415 cb->cb_client = client;
416 return 0;
J. Bruce Fieldsa601cae2009-02-22 16:43:45 -0800417
418}
419
J. Bruce Fieldsecdd03b2009-02-23 19:35:22 -0800420static void warn_no_callback_path(struct nfs4_client *clp, int reason)
421{
422 dprintk("NFSD: warning: no callback path to client %.*s: error %d\n",
423 (int)clp->cl_name.len, clp->cl_name.data, reason);
424}
425
J. Bruce Fieldse300a632009-03-05 15:01:11 -0500426static void nfsd4_cb_probe_done(struct rpc_task *task, void *calldata)
427{
428 struct nfs4_client *clp = calldata;
429
430 if (task->tk_status)
431 warn_no_callback_path(clp, task->tk_status);
432 else
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400433 atomic_set(&clp->cl_cb_conn.cb_set, 1);
J. Bruce Fieldse300a632009-03-05 15:01:11 -0500434 put_nfs4_client(clp);
435}
436
437static const struct rpc_call_ops nfsd4_cb_probe_ops = {
438 .rpc_call_done = nfsd4_cb_probe_done,
439};
440
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400441static struct rpc_cred *lookup_cb_cred(struct nfs4_cb_conn *cb)
J. Bruce Fields3cef9ab2009-02-23 21:42:10 -0800442{
443 struct auth_cred acred = {
444 .machine_cred = 1
445 };
446
447 /*
448 * Note in the gss case this doesn't actually have to wait for a
449 * gss upcall (or any calls to the client); this just creates a
450 * non-uptodate cred which the rpc state machine will fill in with
451 * a refresh_upcall later.
452 */
453 return rpcauth_lookup_credcache(cb->cb_client->cl_auth, &acred,
454 RPCAUTH_LOOKUP_NEW);
455}
456
J. Bruce Fieldse300a632009-03-05 15:01:11 -0500457void do_probe_callback(struct nfs4_client *clp)
J. Bruce Fieldsa601cae2009-02-22 16:43:45 -0800458{
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400459 struct nfs4_cb_conn *cb = &clp->cl_cb_conn;
J. Bruce Fieldsa601cae2009-02-22 16:43:45 -0800460 struct rpc_message msg = {
461 .rpc_proc = &nfs4_cb_procedures[NFSPROC4_CLNT_CB_NULL],
462 .rpc_argp = clp,
463 };
J. Bruce Fields3cef9ab2009-02-23 21:42:10 -0800464 struct rpc_cred *cred;
J. Bruce Fieldsa601cae2009-02-22 16:43:45 -0800465 int status;
466
J. Bruce Fields3cef9ab2009-02-23 21:42:10 -0800467 cred = lookup_cb_cred(cb);
468 if (IS_ERR(cred)) {
469 status = PTR_ERR(cred);
470 goto out;
471 }
472 cb->cb_cred = cred;
473 msg.rpc_cred = cb->cb_cred;
J. Bruce Fieldse300a632009-03-05 15:01:11 -0500474 status = rpc_call_async(cb->cb_client, &msg, RPC_TASK_SOFT,
475 &nfsd4_cb_probe_ops, (void *)clp);
J. Bruce Fields3cef9ab2009-02-23 21:42:10 -0800476out:
J. Bruce Fieldse300a632009-03-05 15:01:11 -0500477 if (status) {
J. Bruce Fieldsecdd03b2009-02-23 19:35:22 -0800478 warn_no_callback_path(clp, status);
J. Bruce Fieldse300a632009-03-05 15:01:11 -0500479 put_nfs4_client(clp);
480 }
J. Bruce Fields63c86712007-10-25 19:00:26 -0400481}
482
483/*
484 * Set up the callback client and put a NFSPROC4_CB_NULL on the wire...
485 */
486void
487nfsd4_probe_callback(struct nfs4_client *clp)
488{
J. Bruce Fieldsecdd03b2009-02-23 19:35:22 -0800489 int status;
J. Bruce Fields63c86712007-10-25 19:00:26 -0400490
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400491 BUG_ON(atomic_read(&clp->cl_cb_conn.cb_set));
J. Bruce Fields63c86712007-10-25 19:00:26 -0400492
J. Bruce Fieldsecdd03b2009-02-23 19:35:22 -0800493 status = setup_callback_client(clp);
494 if (status) {
495 warn_no_callback_path(clp, status);
496 return;
497 }
498
NeilBrown541e0e02006-04-10 22:55:38 -0700499 /* the task holds a reference to the nfs4_client struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 atomic_inc(&clp->cl_count);
501
J. Bruce Fieldse300a632009-03-05 15:01:11 -0500502 do_probe_callback(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
J. Bruce Fields63e48632009-05-01 22:36:55 -0400505static void nfsd4_cb_recall_done(struct rpc_task *task, void *calldata)
506{
507 struct nfs4_delegation *dp = calldata;
508 struct nfs4_client *clp = dp->dl_client;
509
510 switch (task->tk_status) {
511 case -EIO:
512 /* Network partition? */
513 atomic_set(&clp->cl_cb_conn.cb_set, 0);
514 warn_no_callback_path(clp, task->tk_status);
515 case -EBADHANDLE:
516 case -NFS4ERR_BAD_STATEID:
517 /* Race: client probably got cb_recall
518 * before open reply granting delegation */
519 break;
520 default:
521 /* success, or error we can't handle */
522 return;
523 }
524 if (dp->dl_retries--) {
525 rpc_delay(task, 2*HZ);
526 task->tk_status = 0;
527 rpc_restart_call(task);
528 } else {
529 atomic_set(&clp->cl_cb_conn.cb_set, 0);
530 warn_no_callback_path(clp, task->tk_status);
531 }
532}
533
534static void nfsd4_cb_recall_release(void *calldata)
535{
536 struct nfs4_delegation *dp = calldata;
537 struct nfs4_client *clp = dp->dl_client;
538
539 nfs4_put_delegation(dp);
540 put_nfs4_client(clp);
541}
542
543static const struct rpc_call_ops nfsd4_cb_recall_ops = {
544 .rpc_call_done = nfsd4_cb_recall_done,
545 .rpc_release = nfsd4_cb_recall_release,
546};
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548/*
549 * called with dp->dl_count inc'ed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 */
551void
552nfsd4_cb_recall(struct nfs4_delegation *dp)
553{
554 struct nfs4_client *clp = dp->dl_client;
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400555 struct rpc_clnt *clnt = clp->cl_cb_conn.cb_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 struct rpc_message msg = {
557 .rpc_proc = &nfs4_cb_procedures[NFSPROC4_CLNT_CB_RECALL],
J. Bruce Fieldsb53d40c2009-05-01 19:50:00 -0400558 .rpc_argp = dp,
J. Bruce Fieldsc237dc02009-04-29 19:09:19 -0400559 .rpc_cred = clp->cl_cb_conn.cb_cred
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 };
J. Bruce Fields63e48632009-05-01 22:36:55 -0400561 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
J. Bruce Fields3aea09d2009-05-01 20:11:12 -0400563 dp->dl_retries = 1;
J. Bruce Fields63e48632009-05-01 22:36:55 -0400564 status = rpc_call_async(clnt, &msg, RPC_TASK_SOFT,
565 &nfsd4_cb_recall_ops, dp);
566 if (status) {
567 put_nfs4_client(clp);
568 nfs4_put_delegation(dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570}