]> git.ipfire.org Git - thirdparty/glibc.git/blame - sunrpc/clnt_simp.c
powerpc: Fix build of wcscpy with --disable-multi-arch
[thirdparty/glibc.git] / sunrpc / clnt_simp.c
CommitLineData
c28fb3c8 1/*
a7ab6ec8
UD
2 * clnt_simple.c
3 * Simplified front end to rpc.
ab09b221 4 *
a7ab6ec8 5 * Copyright (c) 2010, Oracle America, Inc.
cb636bb2 6 *
a7ab6ec8
UD
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
cb636bb2 10 *
a7ab6ec8
UD
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials
16 * provided with the distribution.
17 * * Neither the name of the "Oracle America, Inc." nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
ab09b221 20 *
a7ab6ec8
UD
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
26 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
28 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
30 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28f540f4
RM
33 */
34
e4cf5070
UD
35#include <alloca.h>
36#include <errno.h>
28f540f4 37#include <stdio.h>
e7fd8a39 38#include <unistd.h>
28f540f4
RM
39#include <rpc/rpc.h>
40#include <sys/socket.h>
41#include <netdb.h>
a5a0310d 42#include <string.h>
82f43dd2 43#include <shlib-compat.h>
28f540f4 44
f1e4a4a4 45struct callrpc_private_s
e7fd8a39
UD
46 {
47 CLIENT *client;
48 int socket;
49 u_long oldprognum, oldversnum, valid;
50 char *oldhost;
f1e4a4a4 51 };
1bc1a2b9 52#define callrpc_private RPC_THREAD_VARIABLE(callrpc_private_s)
28f540f4 53
e7fd8a39
UD
54int
55callrpc (const char *host, u_long prognum, u_long versnum, u_long procnum,
56 xdrproc_t inproc, const char *in, xdrproc_t outproc, char *out)
28f540f4 57{
f1e4a4a4 58 struct callrpc_private_s *crp = callrpc_private;
e7fd8a39
UD
59 struct sockaddr_in server_addr;
60 enum clnt_stat clnt_stat;
e7fd8a39 61 struct timeval timeout, tottimeout;
28f540f4 62
e7fd8a39
UD
63 if (crp == 0)
64 {
f1e4a4a4 65 crp = (struct callrpc_private_s *) calloc (1, sizeof (*crp));
e7fd8a39
UD
66 if (crp == 0)
67 return 0;
68 callrpc_private = crp;
69 }
70 if (crp->oldhost == NULL)
71 {
72 crp->oldhost = malloc (256);
73 crp->oldhost[0] = 0;
74 crp->socket = RPC_ANYSOCK;
75 }
76 if (crp->valid && crp->oldprognum == prognum && crp->oldversnum == versnum
77 && strcmp (crp->oldhost, host) == 0)
78 {
79 /* reuse old client */
80 }
81 else
82 {
e7fd8a39
UD
83 crp->valid = 0;
84 if (crp->socket != RPC_ANYSOCK)
85 {
50304ef0 86 (void) __close (crp->socket);
e7fd8a39 87 crp->socket = RPC_ANYSOCK;
28f540f4 88 }
e7fd8a39
UD
89 if (crp->client)
90 {
91 clnt_destroy (crp->client);
92 crp->client = NULL;
28f540f4 93 }
e4cf5070 94
5c6e6747
FW
95 if (__libc_rpc_gethostbyname (host, &server_addr) != 0)
96 return (int) get_rpc_createerr().cf_stat;
e4cf5070 97
e7fd8a39
UD
98 timeout.tv_usec = 0;
99 timeout.tv_sec = 5;
7b57bfe5 100 if ((crp->client = clntudp_create (&server_addr, (u_long) prognum,
e7fd8a39 101 (u_long) versnum, timeout, &crp->socket)) == NULL)
543cf8a9 102 return (int) get_rpc_createerr().cf_stat;
e7fd8a39
UD
103 crp->valid = 1;
104 crp->oldprognum = prognum;
105 crp->oldversnum = versnum;
106 (void) strncpy (crp->oldhost, host, 255);
6bf22cc7 107 crp->oldhost[255] = '\0';
e7fd8a39
UD
108 }
109 tottimeout.tv_sec = 25;
110 tottimeout.tv_usec = 0;
111 clnt_stat = clnt_call (crp->client, procnum, inproc, (char *) in,
112 outproc, out, tottimeout);
113 /*
114 * if call failed, empty cache
115 */
116 if (clnt_stat != RPC_SUCCESS)
117 crp->valid = 0;
118 return (int) clnt_stat;
28f540f4 119}
021db4be 120libc_hidden_nolink_sunrpc (callrpc, GLIBC_2_0)
f1e4a4a4 121
f1e4a4a4
UD
122void
123__rpc_thread_clnt_cleanup (void)
124{
125 struct callrpc_private_s *rcp = RPC_THREAD_VARIABLE(callrpc_private_s);
126
127 if (rcp) {
128 if (rcp->client)
129 CLNT_DESTROY (rcp->client);
130 free (rcp);
131 }
132}