2 * linux/net/sunrpc/clnt.c
4 * This file contains the high-level RPC interface.
5 * It is modeled as a finite state machine to support both synchronous
6 * and asynchronous requests.
8 * - RPC header generation and argument serialization.
9 * - Credential refresh.
10 * - TCP connect handling.
11 * - Retry of operation when it is suspected the operation failed because
12 * of uid squashing on the server, or when the credentials were stale
13 * and need to be refreshed, or when a packet was damaged in transit.
14 * This may be have to be moved to the VFS layer.
16 * NB: BSD uses a more intelligent approach to guessing when a request
17 * or reply has been lost by keeping the RTO estimate for each procedure.
18 * We currently make do with a constant timeout value.
20 * Copyright (C) 1992,1993 Rick Sladkey <jrs@world.std.com>
21 * Copyright (C) 1995,1996 Olaf Kirch <okir@monad.swb.de>
24 #include <asm/system.h>
26 #include <linux/module.h>
27 #include <linux/types.h>
29 #include <linux/slab.h>
30 #include <linux/smp_lock.h>
31 #include <linux/utsname.h>
32 #include <linux/workqueue.h>
34 #include <linux/sunrpc/clnt.h>
35 #include <linux/sunrpc/rpc_pipe_fs.h>
36 #include <linux/sunrpc/metrics.h>
39 #define RPC_SLACK_SPACE (1024) /* total overkill */
42 # define RPCDBG_FACILITY RPCDBG_CALL
45 static DECLARE_WAIT_QUEUE_HEAD(destroy_wait
);
48 static void call_start(struct rpc_task
*task
);
49 static void call_reserve(struct rpc_task
*task
);
50 static void call_reserveresult(struct rpc_task
*task
);
51 static void call_allocate(struct rpc_task
*task
);
52 static void call_encode(struct rpc_task
*task
);
53 static void call_decode(struct rpc_task
*task
);
54 static void call_bind(struct rpc_task
*task
);
55 static void call_bind_status(struct rpc_task
*task
);
56 static void call_transmit(struct rpc_task
*task
);
57 static void call_status(struct rpc_task
*task
);
58 static void call_transmit_status(struct rpc_task
*task
);
59 static void call_refresh(struct rpc_task
*task
);
60 static void call_refreshresult(struct rpc_task
*task
);
61 static void call_timeout(struct rpc_task
*task
);
62 static void call_connect(struct rpc_task
*task
);
63 static void call_connect_status(struct rpc_task
*task
);
64 static __be32
* call_header(struct rpc_task
*task
);
65 static __be32
* call_verify(struct rpc_task
*task
);
69 rpc_setup_pipedir(struct rpc_clnt
*clnt
, char *dir_name
)
71 static uint32_t clntid
;
74 clnt
->cl_vfsmnt
= ERR_PTR(-ENOENT
);
75 clnt
->cl_dentry
= ERR_PTR(-ENOENT
);
79 clnt
->cl_vfsmnt
= rpc_get_mount();
80 if (IS_ERR(clnt
->cl_vfsmnt
))
81 return PTR_ERR(clnt
->cl_vfsmnt
);
84 snprintf(clnt
->cl_pathname
, sizeof(clnt
->cl_pathname
),
85 "%s/clnt%x", dir_name
,
86 (unsigned int)clntid
++);
87 clnt
->cl_pathname
[sizeof(clnt
->cl_pathname
) - 1] = '\0';
88 clnt
->cl_dentry
= rpc_mkdir(clnt
->cl_pathname
, clnt
);
89 if (!IS_ERR(clnt
->cl_dentry
))
91 error
= PTR_ERR(clnt
->cl_dentry
);
92 if (error
!= -EEXIST
) {
93 printk(KERN_INFO
"RPC: Couldn't create pipefs entry %s, error %d\n",
94 clnt
->cl_pathname
, error
);
101 static struct rpc_clnt
* rpc_new_client(struct rpc_xprt
*xprt
, char *servname
, struct rpc_program
*program
, u32 vers
, rpc_authflavor_t flavor
)
103 struct rpc_version
*version
;
104 struct rpc_clnt
*clnt
= NULL
;
105 struct rpc_auth
*auth
;
109 dprintk("RPC: creating %s client for %s (xprt %p)\n",
110 program
->name
, servname
, xprt
);
115 if (vers
>= program
->nrvers
|| !(version
= program
->version
[vers
]))
119 clnt
= kzalloc(sizeof(*clnt
), GFP_KERNEL
);
122 atomic_set(&clnt
->cl_users
, 0);
123 atomic_set(&clnt
->cl_count
, 1);
124 clnt
->cl_parent
= clnt
;
126 clnt
->cl_server
= clnt
->cl_inline_name
;
127 len
= strlen(servname
) + 1;
128 if (len
> sizeof(clnt
->cl_inline_name
)) {
129 char *buf
= kmalloc(len
, GFP_KERNEL
);
131 clnt
->cl_server
= buf
;
133 len
= sizeof(clnt
->cl_inline_name
);
135 strlcpy(clnt
->cl_server
, servname
, len
);
137 clnt
->cl_xprt
= xprt
;
138 clnt
->cl_procinfo
= version
->procs
;
139 clnt
->cl_maxproc
= version
->nrprocs
;
140 clnt
->cl_protname
= program
->name
;
141 clnt
->cl_prog
= program
->number
;
142 clnt
->cl_vers
= version
->number
;
143 clnt
->cl_stats
= program
->stats
;
144 clnt
->cl_metrics
= rpc_alloc_iostats(clnt
);
146 if (clnt
->cl_metrics
== NULL
)
148 clnt
->cl_program
= program
;
150 if (!xprt_bound(clnt
->cl_xprt
))
151 clnt
->cl_autobind
= 1;
153 clnt
->cl_rtt
= &clnt
->cl_rtt_default
;
154 rpc_init_rtt(&clnt
->cl_rtt_default
, xprt
->timeout
.to_initval
);
156 err
= rpc_setup_pipedir(clnt
, program
->pipe_dir_name
);
160 auth
= rpcauth_create(flavor
, clnt
);
162 printk(KERN_INFO
"RPC: Couldn't create auth handle (flavor %u)\n",
168 /* save the nodename */
169 clnt
->cl_nodelen
= strlen(utsname()->nodename
);
170 if (clnt
->cl_nodelen
> UNX_MAXNODENAME
)
171 clnt
->cl_nodelen
= UNX_MAXNODENAME
;
172 memcpy(clnt
->cl_nodename
, utsname()->nodename
, clnt
->cl_nodelen
);
176 if (!IS_ERR(clnt
->cl_dentry
)) {
177 rpc_rmdir(clnt
->cl_dentry
);
181 rpc_free_iostats(clnt
->cl_metrics
);
183 if (clnt
->cl_server
!= clnt
->cl_inline_name
)
184 kfree(clnt
->cl_server
);
193 * rpc_create - create an RPC client and transport with one call
194 * @args: rpc_clnt create argument structure
196 * Creates and initializes an RPC transport and an RPC client.
198 * It can ping the server in order to determine if it is up, and to see if
199 * it supports this program and version. RPC_CLNT_CREATE_NOPING disables
200 * this behavior so asynchronous tasks can also use rpc_create.
202 struct rpc_clnt
*rpc_create(struct rpc_create_args
*args
)
204 struct rpc_xprt
*xprt
;
205 struct rpc_clnt
*clnt
;
207 xprt
= xprt_create_transport(args
->protocol
, args
->address
,
208 args
->addrsize
, args
->timeout
);
210 return (struct rpc_clnt
*)xprt
;
213 * By default, kernel RPC client connects from a reserved port.
214 * CAP_NET_BIND_SERVICE will not be set for unprivileged requesters,
215 * but it is always enabled for rpciod, which handles the connect
219 if (args
->flags
& RPC_CLNT_CREATE_NONPRIVPORT
)
222 dprintk("RPC: creating %s client for %s (xprt %p)\n",
223 args
->program
->name
, args
->servername
, xprt
);
225 clnt
= rpc_new_client(xprt
, args
->servername
, args
->program
,
226 args
->version
, args
->authflavor
);
230 if (!(args
->flags
& RPC_CLNT_CREATE_NOPING
)) {
231 int err
= rpc_ping(clnt
, RPC_TASK_SOFT
|RPC_TASK_NOINTR
);
233 rpc_shutdown_client(clnt
);
238 clnt
->cl_softrtry
= 1;
239 if (args
->flags
& RPC_CLNT_CREATE_HARDRTRY
)
240 clnt
->cl_softrtry
= 0;
242 if (args
->flags
& RPC_CLNT_CREATE_INTR
)
244 if (args
->flags
& RPC_CLNT_CREATE_AUTOBIND
)
245 clnt
->cl_autobind
= 1;
246 if (args
->flags
& RPC_CLNT_CREATE_ONESHOT
)
247 clnt
->cl_oneshot
= 1;
251 EXPORT_SYMBOL_GPL(rpc_create
);
254 * This function clones the RPC client structure. It allows us to share the
255 * same transport while varying parameters such as the authentication
259 rpc_clone_client(struct rpc_clnt
*clnt
)
261 struct rpc_clnt
*new;
264 new = kmemdup(clnt
, sizeof(*new), GFP_KERNEL
);
267 atomic_set(&new->cl_count
, 1);
268 atomic_set(&new->cl_users
, 0);
269 new->cl_metrics
= rpc_alloc_iostats(clnt
);
270 if (new->cl_metrics
== NULL
)
272 err
= rpc_setup_pipedir(new, clnt
->cl_program
->pipe_dir_name
);
275 new->cl_parent
= clnt
;
276 atomic_inc(&clnt
->cl_count
);
277 new->cl_xprt
= xprt_get(clnt
->cl_xprt
);
278 /* Turn off autobind on clones */
279 new->cl_autobind
= 0;
282 rpc_init_rtt(&new->cl_rtt_default
, clnt
->cl_xprt
->timeout
.to_initval
);
284 atomic_inc(&new->cl_auth
->au_count
);
287 rpc_free_iostats(new->cl_metrics
);
291 dprintk("RPC: %s returned error %d\n", __FUNCTION__
, err
);
296 * Properly shut down an RPC client, terminating all outstanding
297 * requests. Note that we must be certain that cl_oneshot and
298 * cl_dead are cleared, or else the client would be destroyed
299 * when the last task releases it.
302 rpc_shutdown_client(struct rpc_clnt
*clnt
)
304 dprintk("RPC: shutting down %s client for %s, tasks=%d\n",
305 clnt
->cl_protname
, clnt
->cl_server
,
306 atomic_read(&clnt
->cl_users
));
308 while (atomic_read(&clnt
->cl_users
) > 0) {
309 /* Don't let rpc_release_client destroy us */
310 clnt
->cl_oneshot
= 0;
312 rpc_killall_tasks(clnt
);
313 wait_event_timeout(destroy_wait
,
314 !atomic_read(&clnt
->cl_users
), 1*HZ
);
317 if (atomic_read(&clnt
->cl_users
) < 0) {
318 printk(KERN_ERR
"RPC: rpc_shutdown_client clnt %p tasks=%d\n",
319 clnt
, atomic_read(&clnt
->cl_users
));
326 return rpc_destroy_client(clnt
);
330 * Delete an RPC client
333 rpc_destroy_client(struct rpc_clnt
*clnt
)
335 if (!atomic_dec_and_test(&clnt
->cl_count
))
337 BUG_ON(atomic_read(&clnt
->cl_users
) != 0);
339 dprintk("RPC: destroying %s client for %s\n",
340 clnt
->cl_protname
, clnt
->cl_server
);
342 rpcauth_destroy(clnt
->cl_auth
);
343 clnt
->cl_auth
= NULL
;
345 if (!IS_ERR(clnt
->cl_dentry
)) {
346 rpc_rmdir(clnt
->cl_dentry
);
349 if (clnt
->cl_parent
!= clnt
) {
350 rpc_destroy_client(clnt
->cl_parent
);
353 if (clnt
->cl_server
!= clnt
->cl_inline_name
)
354 kfree(clnt
->cl_server
);
356 rpc_free_iostats(clnt
->cl_metrics
);
357 clnt
->cl_metrics
= NULL
;
358 xprt_put(clnt
->cl_xprt
);
364 * Release an RPC client
367 rpc_release_client(struct rpc_clnt
*clnt
)
369 dprintk("RPC: rpc_release_client(%p, %d)\n",
370 clnt
, atomic_read(&clnt
->cl_users
));
372 if (!atomic_dec_and_test(&clnt
->cl_users
))
374 wake_up(&destroy_wait
);
375 if (clnt
->cl_oneshot
|| clnt
->cl_dead
)
376 rpc_destroy_client(clnt
);
380 * rpc_bind_new_program - bind a new RPC program to an existing client
381 * @old - old rpc_client
382 * @program - rpc program to set
383 * @vers - rpc program version
385 * Clones the rpc client and sets up a new RPC program. This is mainly
386 * of use for enabling different RPC programs to share the same transport.
387 * The Sun NFSv2/v3 ACL protocol can do this.
389 struct rpc_clnt
*rpc_bind_new_program(struct rpc_clnt
*old
,
390 struct rpc_program
*program
,
393 struct rpc_clnt
*clnt
;
394 struct rpc_version
*version
;
397 BUG_ON(vers
>= program
->nrvers
|| !program
->version
[vers
]);
398 version
= program
->version
[vers
];
399 clnt
= rpc_clone_client(old
);
402 clnt
->cl_procinfo
= version
->procs
;
403 clnt
->cl_maxproc
= version
->nrprocs
;
404 clnt
->cl_protname
= program
->name
;
405 clnt
->cl_prog
= program
->number
;
406 clnt
->cl_vers
= version
->number
;
407 clnt
->cl_stats
= program
->stats
;
408 err
= rpc_ping(clnt
, RPC_TASK_SOFT
|RPC_TASK_NOINTR
);
410 rpc_shutdown_client(clnt
);
418 * Default callback for async RPC calls
421 rpc_default_callback(struct rpc_task
*task
, void *data
)
425 static const struct rpc_call_ops rpc_default_ops
= {
426 .rpc_call_done
= rpc_default_callback
,
430 * Export the signal mask handling for synchronous code that
431 * sleeps on RPC calls
433 #define RPC_INTR_SIGNALS (sigmask(SIGHUP) | sigmask(SIGINT) | sigmask(SIGQUIT) | sigmask(SIGTERM))
435 static void rpc_save_sigmask(sigset_t
*oldset
, int intr
)
437 unsigned long sigallow
= sigmask(SIGKILL
);
440 /* Block all signals except those listed in sigallow */
442 sigallow
|= RPC_INTR_SIGNALS
;
443 siginitsetinv(&sigmask
, sigallow
);
444 sigprocmask(SIG_BLOCK
, &sigmask
, oldset
);
447 static inline void rpc_task_sigmask(struct rpc_task
*task
, sigset_t
*oldset
)
449 rpc_save_sigmask(oldset
, !RPC_TASK_UNINTERRUPTIBLE(task
));
452 static inline void rpc_restore_sigmask(sigset_t
*oldset
)
454 sigprocmask(SIG_SETMASK
, oldset
, NULL
);
457 void rpc_clnt_sigmask(struct rpc_clnt
*clnt
, sigset_t
*oldset
)
459 rpc_save_sigmask(oldset
, clnt
->cl_intr
);
462 void rpc_clnt_sigunmask(struct rpc_clnt
*clnt
, sigset_t
*oldset
)
464 rpc_restore_sigmask(oldset
);
468 * New rpc_call implementation
470 int rpc_call_sync(struct rpc_clnt
*clnt
, struct rpc_message
*msg
, int flags
)
472 struct rpc_task
*task
;
476 /* If this client is slain all further I/O fails */
480 BUG_ON(flags
& RPC_TASK_ASYNC
);
482 task
= rpc_new_task(clnt
, flags
, &rpc_default_ops
, NULL
);
486 /* Mask signals on RPC calls _and_ GSS_AUTH upcalls */
487 rpc_task_sigmask(task
, &oldset
);
489 rpc_call_setup(task
, msg
, 0);
491 /* Set up the call info struct and execute the task */
492 status
= task
->tk_status
;
494 rpc_release_task(task
);
497 atomic_inc(&task
->tk_count
);
498 status
= rpc_execute(task
);
500 status
= task
->tk_status
;
503 rpc_restore_sigmask(&oldset
);
508 * New rpc_call implementation
511 rpc_call_async(struct rpc_clnt
*clnt
, struct rpc_message
*msg
, int flags
,
512 const struct rpc_call_ops
*tk_ops
, void *data
)
514 struct rpc_task
*task
;
518 /* If this client is slain all further I/O fails */
523 flags
|= RPC_TASK_ASYNC
;
525 /* Create/initialize a new RPC task */
527 if (!(task
= rpc_new_task(clnt
, flags
, tk_ops
, data
)))
530 /* Mask signals on GSS_AUTH upcalls */
531 rpc_task_sigmask(task
, &oldset
);
533 rpc_call_setup(task
, msg
, 0);
535 /* Set up the call info struct and execute the task */
536 status
= task
->tk_status
;
540 rpc_release_task(task
);
542 rpc_restore_sigmask(&oldset
);
545 rpc_release_calldata(tk_ops
, data
);
551 rpc_call_setup(struct rpc_task
*task
, struct rpc_message
*msg
, int flags
)
554 task
->tk_flags
|= flags
;
555 /* Bind the user cred */
556 if (task
->tk_msg
.rpc_cred
!= NULL
)
557 rpcauth_holdcred(task
);
559 rpcauth_bindcred(task
);
561 if (task
->tk_status
== 0)
562 task
->tk_action
= call_start
;
564 task
->tk_action
= rpc_exit_task
;
568 * rpc_peeraddr - extract remote peer address from clnt's xprt
569 * @clnt: RPC client structure
570 * @buf: target buffer
571 * @size: length of target buffer
573 * Returns the number of bytes that are actually in the stored address.
575 size_t rpc_peeraddr(struct rpc_clnt
*clnt
, struct sockaddr
*buf
, size_t bufsize
)
578 struct rpc_xprt
*xprt
= clnt
->cl_xprt
;
580 bytes
= sizeof(xprt
->addr
);
583 memcpy(buf
, &clnt
->cl_xprt
->addr
, bytes
);
584 return xprt
->addrlen
;
586 EXPORT_SYMBOL_GPL(rpc_peeraddr
);
589 * rpc_peeraddr2str - return remote peer address in printable format
590 * @clnt: RPC client structure
591 * @format: address format
594 char *rpc_peeraddr2str(struct rpc_clnt
*clnt
, enum rpc_display_format_t format
)
596 struct rpc_xprt
*xprt
= clnt
->cl_xprt
;
598 if (xprt
->address_strings
[format
] != NULL
)
599 return xprt
->address_strings
[format
];
601 return "unprintable";
603 EXPORT_SYMBOL_GPL(rpc_peeraddr2str
);
606 rpc_setbufsize(struct rpc_clnt
*clnt
, unsigned int sndsize
, unsigned int rcvsize
)
608 struct rpc_xprt
*xprt
= clnt
->cl_xprt
;
609 if (xprt
->ops
->set_buffer_size
)
610 xprt
->ops
->set_buffer_size(xprt
, sndsize
, rcvsize
);
614 * Return size of largest payload RPC client can support, in bytes
616 * For stream transports, this is one RPC record fragment (see RFC
617 * 1831), as we don't support multi-record requests yet. For datagram
618 * transports, this is the size of an IP packet minus the IP, UDP, and
621 size_t rpc_max_payload(struct rpc_clnt
*clnt
)
623 return clnt
->cl_xprt
->max_payload
;
625 EXPORT_SYMBOL_GPL(rpc_max_payload
);
628 * rpc_force_rebind - force transport to check that remote port is unchanged
629 * @clnt: client to rebind
632 void rpc_force_rebind(struct rpc_clnt
*clnt
)
634 if (clnt
->cl_autobind
)
635 xprt_clear_bound(clnt
->cl_xprt
);
637 EXPORT_SYMBOL_GPL(rpc_force_rebind
);
640 * Restart an (async) RPC call. Usually called from within the
644 rpc_restart_call(struct rpc_task
*task
)
646 if (RPC_ASSASSINATED(task
))
649 task
->tk_action
= call_start
;
655 * Other FSM states can be visited zero or more times, but
656 * this state is visited exactly once for each RPC.
659 call_start(struct rpc_task
*task
)
661 struct rpc_clnt
*clnt
= task
->tk_client
;
663 dprintk("RPC: %4d call_start %s%d proc %d (%s)\n", task
->tk_pid
,
664 clnt
->cl_protname
, clnt
->cl_vers
, task
->tk_msg
.rpc_proc
->p_proc
,
665 (RPC_IS_ASYNC(task
) ? "async" : "sync"));
667 /* Increment call count */
668 task
->tk_msg
.rpc_proc
->p_count
++;
669 clnt
->cl_stats
->rpccnt
++;
670 task
->tk_action
= call_reserve
;
674 * 1. Reserve an RPC call slot
677 call_reserve(struct rpc_task
*task
)
679 dprintk("RPC: %4d call_reserve\n", task
->tk_pid
);
681 if (!rpcauth_uptodatecred(task
)) {
682 task
->tk_action
= call_refresh
;
687 task
->tk_action
= call_reserveresult
;
692 * 1b. Grok the result of xprt_reserve()
695 call_reserveresult(struct rpc_task
*task
)
697 int status
= task
->tk_status
;
699 dprintk("RPC: %4d call_reserveresult (status %d)\n",
700 task
->tk_pid
, task
->tk_status
);
703 * After a call to xprt_reserve(), we must have either
704 * a request slot or else an error status.
708 if (task
->tk_rqstp
) {
709 task
->tk_action
= call_allocate
;
713 printk(KERN_ERR
"%s: status=%d, but no request slot, exiting\n",
714 __FUNCTION__
, status
);
715 rpc_exit(task
, -EIO
);
720 * Even though there was an error, we may have acquired
721 * a request slot somehow. Make sure not to leak it.
723 if (task
->tk_rqstp
) {
724 printk(KERN_ERR
"%s: status=%d, request allocated anyway\n",
725 __FUNCTION__
, status
);
730 case -EAGAIN
: /* woken up; retry */
731 task
->tk_action
= call_reserve
;
733 case -EIO
: /* probably a shutdown */
736 printk(KERN_ERR
"%s: unrecognized error %d, exiting\n",
737 __FUNCTION__
, status
);
740 rpc_exit(task
, status
);
744 * 2. Allocate the buffer. For details, see sched.c:rpc_malloc.
745 * (Note: buffer memory is freed in xprt_release).
748 call_allocate(struct rpc_task
*task
)
750 struct rpc_rqst
*req
= task
->tk_rqstp
;
751 struct rpc_xprt
*xprt
= task
->tk_xprt
;
754 dprintk("RPC: %4d call_allocate (status %d)\n",
755 task
->tk_pid
, task
->tk_status
);
756 task
->tk_action
= call_bind
;
760 /* FIXME: compute buffer requirements more exactly using
762 bufsiz
= task
->tk_msg
.rpc_proc
->p_bufsiz
+ RPC_SLACK_SPACE
;
764 if (xprt
->ops
->buf_alloc(task
, bufsiz
<< 1) != NULL
)
766 printk(KERN_INFO
"RPC: buffer allocation failed for task %p\n", task
);
768 if (RPC_IS_ASYNC(task
) || !signalled()) {
770 task
->tk_action
= call_reserve
;
771 rpc_delay(task
, HZ
>>4);
775 rpc_exit(task
, -ERESTARTSYS
);
779 rpc_task_need_encode(struct rpc_task
*task
)
781 return task
->tk_rqstp
->rq_snd_buf
.len
== 0;
785 rpc_task_force_reencode(struct rpc_task
*task
)
787 task
->tk_rqstp
->rq_snd_buf
.len
= 0;
791 * 3. Encode arguments of an RPC call
794 call_encode(struct rpc_task
*task
)
796 struct rpc_rqst
*req
= task
->tk_rqstp
;
797 struct xdr_buf
*sndbuf
= &req
->rq_snd_buf
;
798 struct xdr_buf
*rcvbuf
= &req
->rq_rcv_buf
;
803 dprintk("RPC: %4d call_encode (status %d)\n",
804 task
->tk_pid
, task
->tk_status
);
806 /* Default buffer setup */
807 bufsiz
= req
->rq_bufsize
>> 1;
808 sndbuf
->head
[0].iov_base
= (void *)req
->rq_buffer
;
809 sndbuf
->head
[0].iov_len
= bufsiz
;
810 sndbuf
->tail
[0].iov_len
= 0;
811 sndbuf
->page_len
= 0;
813 sndbuf
->buflen
= bufsiz
;
814 rcvbuf
->head
[0].iov_base
= (void *)((char *)req
->rq_buffer
+ bufsiz
);
815 rcvbuf
->head
[0].iov_len
= bufsiz
;
816 rcvbuf
->tail
[0].iov_len
= 0;
817 rcvbuf
->page_len
= 0;
819 rcvbuf
->buflen
= bufsiz
;
821 /* Encode header and provided arguments */
822 encode
= task
->tk_msg
.rpc_proc
->p_encode
;
823 if (!(p
= call_header(task
))) {
824 printk(KERN_INFO
"RPC: call_header failed, exit EIO\n");
825 rpc_exit(task
, -EIO
);
832 task
->tk_status
= rpcauth_wrap_req(task
, encode
, req
, p
,
833 task
->tk_msg
.rpc_argp
);
835 if (task
->tk_status
== -ENOMEM
) {
836 /* XXX: Is this sane? */
837 rpc_delay(task
, 3*HZ
);
838 task
->tk_status
= -EAGAIN
;
843 * 4. Get the server port number if not yet set
846 call_bind(struct rpc_task
*task
)
848 struct rpc_xprt
*xprt
= task
->tk_xprt
;
850 dprintk("RPC: %4d call_bind (status %d)\n",
851 task
->tk_pid
, task
->tk_status
);
853 task
->tk_action
= call_connect
;
854 if (!xprt_bound(xprt
)) {
855 task
->tk_action
= call_bind_status
;
856 task
->tk_timeout
= xprt
->bind_timeout
;
857 xprt
->ops
->rpcbind(task
);
862 * 4a. Sort out bind result
865 call_bind_status(struct rpc_task
*task
)
867 int status
= -EACCES
;
869 if (task
->tk_status
>= 0) {
870 dprintk("RPC: %4d call_bind_status (status %d)\n",
871 task
->tk_pid
, task
->tk_status
);
873 task
->tk_action
= call_connect
;
877 switch (task
->tk_status
) {
879 dprintk("RPC: %4d remote rpcbind: RPC program/version unavailable\n",
881 rpc_delay(task
, 3*HZ
);
884 dprintk("RPC: %4d rpcbind request timed out\n",
888 dprintk("RPC: %4d remote rpcbind service unavailable\n",
891 case -EPROTONOSUPPORT
:
892 dprintk("RPC: %4d remote rpcbind version 2 unavailable\n",
896 dprintk("RPC: %4d unrecognized rpcbind error (%d)\n",
897 task
->tk_pid
, -task
->tk_status
);
901 rpc_exit(task
, status
);
905 task
->tk_action
= call_timeout
;
909 * 4b. Connect to the RPC server
912 call_connect(struct rpc_task
*task
)
914 struct rpc_xprt
*xprt
= task
->tk_xprt
;
916 dprintk("RPC: %4d call_connect xprt %p %s connected\n",
918 (xprt_connected(xprt
) ? "is" : "is not"));
920 task
->tk_action
= call_transmit
;
921 if (!xprt_connected(xprt
)) {
922 task
->tk_action
= call_connect_status
;
923 if (task
->tk_status
< 0)
930 * 4c. Sort out connect result
933 call_connect_status(struct rpc_task
*task
)
935 struct rpc_clnt
*clnt
= task
->tk_client
;
936 int status
= task
->tk_status
;
938 dprintk("RPC: %5u call_connect_status (status %d)\n",
939 task
->tk_pid
, task
->tk_status
);
943 clnt
->cl_stats
->netreconn
++;
944 task
->tk_action
= call_transmit
;
948 /* Something failed: remote service port may have changed */
949 rpc_force_rebind(clnt
);
954 task
->tk_action
= call_bind
;
955 if (!RPC_IS_SOFT(task
))
957 /* if soft mounted, test if we've timed out */
959 task
->tk_action
= call_timeout
;
962 rpc_exit(task
, -EIO
);
966 * 5. Transmit the RPC request, and wait for reply
969 call_transmit(struct rpc_task
*task
)
971 dprintk("RPC: %4d call_transmit (status %d)\n",
972 task
->tk_pid
, task
->tk_status
);
974 task
->tk_action
= call_status
;
975 if (task
->tk_status
< 0)
977 task
->tk_status
= xprt_prepare_transmit(task
);
978 if (task
->tk_status
!= 0)
980 task
->tk_action
= call_transmit_status
;
981 /* Encode here so that rpcsec_gss can use correct sequence number. */
982 if (rpc_task_need_encode(task
)) {
983 BUG_ON(task
->tk_rqstp
->rq_bytes_sent
!= 0);
985 /* Did the encode result in an error condition? */
986 if (task
->tk_status
!= 0)
990 if (task
->tk_status
< 0)
993 * On success, ensure that we call xprt_end_transmit() before sleeping
994 * in order to allow access to the socket to other RPC requests.
996 call_transmit_status(task
);
997 if (task
->tk_msg
.rpc_proc
->p_decode
!= NULL
)
999 task
->tk_action
= rpc_exit_task
;
1000 rpc_wake_up_task(task
);
1004 * 5a. Handle cleanup after a transmission
1007 call_transmit_status(struct rpc_task
*task
)
1009 task
->tk_action
= call_status
;
1011 * Special case: if we've been waiting on the socket's write_space()
1012 * callback, then don't call xprt_end_transmit().
1014 if (task
->tk_status
== -EAGAIN
)
1016 xprt_end_transmit(task
);
1017 rpc_task_force_reencode(task
);
1021 * 6. Sort out the RPC call status
1024 call_status(struct rpc_task
*task
)
1026 struct rpc_clnt
*clnt
= task
->tk_client
;
1027 struct rpc_rqst
*req
= task
->tk_rqstp
;
1030 if (req
->rq_received
> 0 && !req
->rq_bytes_sent
)
1031 task
->tk_status
= req
->rq_received
;
1033 dprintk("RPC: %4d call_status (status %d)\n",
1034 task
->tk_pid
, task
->tk_status
);
1036 status
= task
->tk_status
;
1038 task
->tk_action
= call_decode
;
1042 task
->tk_status
= 0;
1048 * Delay any retries for 3 seconds, then handle as if it
1051 rpc_delay(task
, 3*HZ
);
1053 task
->tk_action
= call_timeout
;
1057 rpc_force_rebind(clnt
);
1058 task
->tk_action
= call_bind
;
1061 task
->tk_action
= call_transmit
;
1064 /* shutdown or soft timeout */
1065 rpc_exit(task
, status
);
1068 printk("%s: RPC call returned error %d\n",
1069 clnt
->cl_protname
, -status
);
1070 rpc_exit(task
, status
);
1075 * 6a. Handle RPC timeout
1076 * We do not release the request slot, so we keep using the
1077 * same XID for all retransmits.
1080 call_timeout(struct rpc_task
*task
)
1082 struct rpc_clnt
*clnt
= task
->tk_client
;
1084 if (xprt_adjust_timeout(task
->tk_rqstp
) == 0) {
1085 dprintk("RPC: %4d call_timeout (minor)\n", task
->tk_pid
);
1089 dprintk("RPC: %4d call_timeout (major)\n", task
->tk_pid
);
1090 task
->tk_timeouts
++;
1092 if (RPC_IS_SOFT(task
)) {
1093 printk(KERN_NOTICE
"%s: server %s not responding, timed out\n",
1094 clnt
->cl_protname
, clnt
->cl_server
);
1095 rpc_exit(task
, -EIO
);
1099 if (!(task
->tk_flags
& RPC_CALL_MAJORSEEN
)) {
1100 task
->tk_flags
|= RPC_CALL_MAJORSEEN
;
1101 printk(KERN_NOTICE
"%s: server %s not responding, still trying\n",
1102 clnt
->cl_protname
, clnt
->cl_server
);
1104 rpc_force_rebind(clnt
);
1107 clnt
->cl_stats
->rpcretrans
++;
1108 task
->tk_action
= call_bind
;
1109 task
->tk_status
= 0;
1113 * 7. Decode the RPC reply
1116 call_decode(struct rpc_task
*task
)
1118 struct rpc_clnt
*clnt
= task
->tk_client
;
1119 struct rpc_rqst
*req
= task
->tk_rqstp
;
1120 kxdrproc_t decode
= task
->tk_msg
.rpc_proc
->p_decode
;
1123 dprintk("RPC: %4d call_decode (status %d)\n",
1124 task
->tk_pid
, task
->tk_status
);
1126 if (task
->tk_flags
& RPC_CALL_MAJORSEEN
) {
1127 printk(KERN_NOTICE
"%s: server %s OK\n",
1128 clnt
->cl_protname
, clnt
->cl_server
);
1129 task
->tk_flags
&= ~RPC_CALL_MAJORSEEN
;
1132 if (task
->tk_status
< 12) {
1133 if (!RPC_IS_SOFT(task
)) {
1134 task
->tk_action
= call_bind
;
1135 clnt
->cl_stats
->rpcretrans
++;
1138 dprintk("%s: too small RPC reply size (%d bytes)\n",
1139 clnt
->cl_protname
, task
->tk_status
);
1140 task
->tk_action
= call_timeout
;
1145 * Ensure that we see all writes made by xprt_complete_rqst()
1146 * before it changed req->rq_received.
1149 req
->rq_rcv_buf
.len
= req
->rq_private_buf
.len
;
1151 /* Check that the softirq receive buffer is valid */
1152 WARN_ON(memcmp(&req
->rq_rcv_buf
, &req
->rq_private_buf
,
1153 sizeof(req
->rq_rcv_buf
)) != 0);
1155 /* Verify the RPC header */
1156 p
= call_verify(task
);
1158 if (p
== ERR_PTR(-EAGAIN
))
1163 task
->tk_action
= rpc_exit_task
;
1167 task
->tk_status
= rpcauth_unwrap_resp(task
, decode
, req
, p
,
1168 task
->tk_msg
.rpc_resp
);
1171 dprintk("RPC: %4d call_decode result %d\n", task
->tk_pid
,
1175 req
->rq_received
= req
->rq_private_buf
.len
= 0;
1176 task
->tk_status
= 0;
1180 * 8. Refresh the credentials if rejected by the server
1183 call_refresh(struct rpc_task
*task
)
1185 dprintk("RPC: %4d call_refresh\n", task
->tk_pid
);
1187 xprt_release(task
); /* Must do to obtain new XID */
1188 task
->tk_action
= call_refreshresult
;
1189 task
->tk_status
= 0;
1190 task
->tk_client
->cl_stats
->rpcauthrefresh
++;
1191 rpcauth_refreshcred(task
);
1195 * 8a. Process the results of a credential refresh
1198 call_refreshresult(struct rpc_task
*task
)
1200 int status
= task
->tk_status
;
1201 dprintk("RPC: %4d call_refreshresult (status %d)\n",
1202 task
->tk_pid
, task
->tk_status
);
1204 task
->tk_status
= 0;
1205 task
->tk_action
= call_reserve
;
1206 if (status
>= 0 && rpcauth_uptodatecred(task
))
1208 if (status
== -EACCES
) {
1209 rpc_exit(task
, -EACCES
);
1212 task
->tk_action
= call_refresh
;
1213 if (status
!= -ETIMEDOUT
)
1214 rpc_delay(task
, 3*HZ
);
1219 * Call header serialization
1222 call_header(struct rpc_task
*task
)
1224 struct rpc_clnt
*clnt
= task
->tk_client
;
1225 struct rpc_rqst
*req
= task
->tk_rqstp
;
1226 __be32
*p
= req
->rq_svec
[0].iov_base
;
1228 /* FIXME: check buffer size? */
1230 p
= xprt_skip_transport_header(task
->tk_xprt
, p
);
1231 *p
++ = req
->rq_xid
; /* XID */
1232 *p
++ = htonl(RPC_CALL
); /* CALL */
1233 *p
++ = htonl(RPC_VERSION
); /* RPC version */
1234 *p
++ = htonl(clnt
->cl_prog
); /* program number */
1235 *p
++ = htonl(clnt
->cl_vers
); /* program version */
1236 *p
++ = htonl(task
->tk_msg
.rpc_proc
->p_proc
); /* procedure */
1237 p
= rpcauth_marshcred(task
, p
);
1238 req
->rq_slen
= xdr_adjust_iovec(&req
->rq_svec
[0], p
);
1243 * Reply header verification
1246 call_verify(struct rpc_task
*task
)
1248 struct kvec
*iov
= &task
->tk_rqstp
->rq_rcv_buf
.head
[0];
1249 int len
= task
->tk_rqstp
->rq_rcv_buf
.len
>> 2;
1250 __be32
*p
= iov
->iov_base
;
1252 int error
= -EACCES
;
1254 if ((task
->tk_rqstp
->rq_rcv_buf
.len
& 3) != 0) {
1255 /* RFC-1014 says that the representation of XDR data must be a
1256 * multiple of four bytes
1257 * - if it isn't pointer subtraction in the NFS client may give
1261 "call_verify: XDR representation not a multiple of"
1262 " 4 bytes: 0x%x\n", task
->tk_rqstp
->rq_rcv_buf
.len
);
1267 p
+= 1; /* skip XID */
1269 if ((n
= ntohl(*p
++)) != RPC_REPLY
) {
1270 printk(KERN_WARNING
"call_verify: not an RPC reply: %x\n", n
);
1273 if ((n
= ntohl(*p
++)) != RPC_MSG_ACCEPTED
) {
1276 switch ((n
= ntohl(*p
++))) {
1277 case RPC_AUTH_ERROR
:
1280 dprintk("%s: RPC call version mismatch!\n", __FUNCTION__
);
1281 error
= -EPROTONOSUPPORT
;
1284 dprintk("%s: RPC call rejected, unknown error: %x\n", __FUNCTION__
, n
);
1289 switch ((n
= ntohl(*p
++))) {
1290 case RPC_AUTH_REJECTEDCRED
:
1291 case RPC_AUTH_REJECTEDVERF
:
1292 case RPCSEC_GSS_CREDPROBLEM
:
1293 case RPCSEC_GSS_CTXPROBLEM
:
1294 if (!task
->tk_cred_retry
)
1296 task
->tk_cred_retry
--;
1297 dprintk("RPC: %4d call_verify: retry stale creds\n",
1299 rpcauth_invalcred(task
);
1300 task
->tk_action
= call_refresh
;
1302 case RPC_AUTH_BADCRED
:
1303 case RPC_AUTH_BADVERF
:
1304 /* possibly garbled cred/verf? */
1305 if (!task
->tk_garb_retry
)
1307 task
->tk_garb_retry
--;
1308 dprintk("RPC: %4d call_verify: retry garbled creds\n",
1310 task
->tk_action
= call_bind
;
1312 case RPC_AUTH_TOOWEAK
:
1313 printk(KERN_NOTICE
"call_verify: server %s requires stronger "
1314 "authentication.\n", task
->tk_client
->cl_server
);
1317 printk(KERN_WARNING
"call_verify: unknown auth error: %x\n", n
);
1320 dprintk("RPC: %4d call_verify: call rejected %d\n",
1324 if (!(p
= rpcauth_checkverf(task
, p
))) {
1325 printk(KERN_WARNING
"call_verify: auth check failed\n");
1326 goto out_garbage
; /* bad verifier, retry */
1328 len
= p
- (__be32
*)iov
->iov_base
- 1;
1331 switch ((n
= ntohl(*p
++))) {
1334 case RPC_PROG_UNAVAIL
:
1335 dprintk("RPC: call_verify: program %u is unsupported by server %s\n",
1336 (unsigned int)task
->tk_client
->cl_prog
,
1337 task
->tk_client
->cl_server
);
1338 error
= -EPFNOSUPPORT
;
1340 case RPC_PROG_MISMATCH
:
1341 dprintk("RPC: call_verify: program %u, version %u unsupported by server %s\n",
1342 (unsigned int)task
->tk_client
->cl_prog
,
1343 (unsigned int)task
->tk_client
->cl_vers
,
1344 task
->tk_client
->cl_server
);
1345 error
= -EPROTONOSUPPORT
;
1347 case RPC_PROC_UNAVAIL
:
1348 dprintk("RPC: call_verify: proc %p unsupported by program %u, version %u on server %s\n",
1349 task
->tk_msg
.rpc_proc
,
1350 task
->tk_client
->cl_prog
,
1351 task
->tk_client
->cl_vers
,
1352 task
->tk_client
->cl_server
);
1353 error
= -EOPNOTSUPP
;
1355 case RPC_GARBAGE_ARGS
:
1356 dprintk("RPC: %4d %s: server saw garbage\n", task
->tk_pid
, __FUNCTION__
);
1359 printk(KERN_WARNING
"call_verify: server accept status: %x\n", n
);
1364 task
->tk_client
->cl_stats
->rpcgarbage
++;
1365 if (task
->tk_garb_retry
) {
1366 task
->tk_garb_retry
--;
1367 dprintk("RPC %s: retrying %4d\n", __FUNCTION__
, task
->tk_pid
);
1368 task
->tk_action
= call_bind
;
1370 return ERR_PTR(-EAGAIN
);
1372 printk(KERN_WARNING
"RPC %s: retry failed, exit EIO\n", __FUNCTION__
);
1376 rpc_exit(task
, error
);
1377 return ERR_PTR(error
);
1379 printk(KERN_WARNING
"RPC %s: server reply was truncated.\n", __FUNCTION__
);
1383 static int rpcproc_encode_null(void *rqstp
, __be32
*data
, void *obj
)
1388 static int rpcproc_decode_null(void *rqstp
, __be32
*data
, void *obj
)
1393 static struct rpc_procinfo rpcproc_null
= {
1394 .p_encode
= rpcproc_encode_null
,
1395 .p_decode
= rpcproc_decode_null
,
1398 int rpc_ping(struct rpc_clnt
*clnt
, int flags
)
1400 struct rpc_message msg
= {
1401 .rpc_proc
= &rpcproc_null
,
1404 msg
.rpc_cred
= authnull_ops
.lookup_cred(NULL
, NULL
, 0);
1405 err
= rpc_call_sync(clnt
, &msg
, flags
);
1406 put_rpccred(msg
.rpc_cred
);