]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - lib/libc/rpc/svc_simple.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / lib / libc / rpc / svc_simple.c
1 /*      $NetBSD: svc_simple.c,v 1.20 2000/07/06 03:10:35 christos Exp $ */
2
3 /*
4  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
5  * unrestricted use provided that this legend is included on all tape
6  * media and as a part of the software program in whole or part.  Users
7  * may copy or modify Sun RPC without charge, but are not authorized
8  * to license or distribute it to anyone else except as part of a product or
9  * program developed by the user.
10  *
11  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
12  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
13  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14  *
15  * Sun RPC is provided with no support and without any obligation on the
16  * part of Sun Microsystems, Inc. to assist in its use, correction,
17  * modification or enhancement.
18  *
19  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
20  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
21  * OR ANY PART THEREOF.
22  *
23  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
24  * or profits or other special, indirect and consequential damages, even if
25  * Sun has been advised of the possibility of such damages.
26  *
27  * Sun Microsystems, Inc.
28  * 2550 Garcia Avenue
29  * Mountain View, California  94043
30  */
31 /*
32  * Copyright (c) 1986-1991 by Sun Microsystems Inc. 
33  */
34
35 /* #pragma ident        "@(#)svc_simple.c       1.18    94/04/24 SMI" */
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD$");
38
39 /*
40  * svc_simple.c
41  * Simplified front end to rpc.
42  */
43
44 /*
45  * This interface creates a virtual listener for all the services
46  * started thru rpc_reg(). It listens on the same endpoint for
47  * all the services and then executes the corresponding service
48  * for the given prognum and procnum.
49  */
50
51 #include "namespace.h"
52 #include "reentrant.h"
53 #include <sys/types.h>
54 #include <rpc/rpc.h>
55 #include <rpc/nettype.h>
56 #include <stdio.h>
57 #include <stdlib.h>
58 #include <string.h>
59 #include <err.h>
60 #include "un-namespace.h"
61
62 #include "rpc_com.h"
63 #include "mt_misc.h"
64
65 static void universal(struct svc_req *, SVCXPRT *);
66
67 static struct proglst {
68         char *(*p_progname)(char *);
69         rpcprog_t p_prognum;
70         rpcvers_t p_versnum;
71         rpcproc_t p_procnum;
72         SVCXPRT *p_transp;
73         char *p_netid;
74         char *p_xdrbuf;
75         int p_recvsz;
76         xdrproc_t p_inproc, p_outproc;
77         struct proglst *p_nxt;
78 } *proglst;
79
80 static const char rpc_reg_err[] = "%s: %s";
81 static const char rpc_reg_msg[] = "rpc_reg: ";
82 static const char __reg_err1[] = "can't find appropriate transport";
83 static const char __reg_err2[] = "can't get protocol info";
84 static const char __reg_err3[] = "unsupported transport size";
85 static const char __no_mem_str[] = "out of memory";
86
87 /*
88  * For simplified, easy to use kind of rpc interfaces.
89  * nettype indicates the type of transport on which the service will be
90  * listening. Used for conservation of the system resource. Only one
91  * handle is created for all the services (actually one of each netid)
92  * and same xdrbuf is used for same netid. The size of the arguments
93  * is also limited by the recvsize for that transport, even if it is
94  * a COTS transport. This may be wrong, but for cases like these, they
95  * should not use the simplified interfaces like this.
96  */
97
98 int
99 rpc_reg(prognum, versnum, procnum, progname, inproc, outproc, nettype)
100         rpcprog_t prognum;                      /* program number */
101         rpcvers_t versnum;                      /* version number */
102         rpcproc_t procnum;                      /* procedure number */
103         char *(*progname)(char *); /* Server routine */
104         xdrproc_t inproc, outproc;      /* in/out XDR procedures */
105         char *nettype;                  /* nettype */
106 {
107         struct netconfig *nconf;
108         int done = FALSE;
109         void *handle;
110
111
112         if (procnum == NULLPROC) {
113                 warnx("%s can't reassign procedure number %u", rpc_reg_msg,
114                         NULLPROC);
115                 return (-1);
116         }
117
118         if (nettype == NULL)
119                 nettype = "netpath";            /* The default behavior */
120         if ((handle = __rpc_setconf(nettype)) == NULL) {
121                 warnx(rpc_reg_err, rpc_reg_msg, __reg_err1);
122                 return (-1);
123         }
124 /* VARIABLES PROTECTED BY proglst_lock: proglst */
125         mutex_lock(&proglst_lock);
126         while ((nconf = __rpc_getconf(handle)) != NULL) {
127                 struct proglst *pl;
128                 SVCXPRT *svcxprt;
129                 int madenow;
130                 u_int recvsz;
131                 char *xdrbuf;
132                 char *netid;
133
134                 madenow = FALSE;
135                 svcxprt = NULL;
136                 recvsz = 0;
137                 xdrbuf = netid = NULL;
138                 for (pl = proglst; pl; pl = pl->p_nxt) {
139                         if (strcmp(pl->p_netid, nconf->nc_netid) == 0) {
140                                 svcxprt = pl->p_transp;
141                                 xdrbuf = pl->p_xdrbuf;
142                                 recvsz = pl->p_recvsz;
143                                 netid = pl->p_netid;
144                                 break;
145                         }
146                 }
147
148                 if (svcxprt == NULL) {
149                         struct __rpc_sockinfo si;
150
151                         svcxprt = svc_tli_create(RPC_ANYFD, nconf, NULL, 0, 0);
152                         if (svcxprt == NULL)
153                                 continue;
154                         if (!__rpc_fd2sockinfo(svcxprt->xp_fd, &si)) {
155                                 warnx(rpc_reg_err, rpc_reg_msg, __reg_err2);
156                                 SVC_DESTROY(svcxprt);
157                                 continue;
158                         }
159                         recvsz = __rpc_get_t_size(si.si_af, si.si_proto, 0);
160                         if (recvsz == 0) {
161                                 warnx(rpc_reg_err, rpc_reg_msg, __reg_err3);
162                                 SVC_DESTROY(svcxprt);
163                                 continue;
164                         }
165                         if (((xdrbuf = malloc((unsigned)recvsz)) == NULL) ||
166                                 ((netid = strdup(nconf->nc_netid)) == NULL)) {
167                                 warnx(rpc_reg_err, rpc_reg_msg, __no_mem_str);
168                                 if (xdrbuf != NULL)
169                                         free(xdrbuf);
170                                 if (netid != NULL)
171                                         free(netid);
172                                 SVC_DESTROY(svcxprt);
173                                 break;
174                         }
175                         madenow = TRUE;
176                 }
177                 /*
178                  * Check if this (program, version, netid) had already been
179                  * registered.  The check may save a few RPC calls to rpcbind
180                  */
181                 for (pl = proglst; pl; pl = pl->p_nxt)
182                         if ((pl->p_prognum == prognum) &&
183                                 (pl->p_versnum == versnum) &&
184                                 (strcmp(pl->p_netid, netid) == 0))
185                                 break;
186                 if (pl == NULL) { /* Not yet */
187                         (void) rpcb_unset(prognum, versnum, nconf);
188                 } else {
189                         /* so that svc_reg does not call rpcb_set() */
190                         nconf = NULL;
191                 }
192
193                 if (!svc_reg(svcxprt, prognum, versnum, universal, nconf)) {
194                         warnx("%s couldn't register prog %u vers %u for %s",
195                                 rpc_reg_msg, (unsigned)prognum,
196                                 (unsigned)versnum, netid);
197                         if (madenow) {
198                                 SVC_DESTROY(svcxprt);
199                                 free(xdrbuf);
200                                 free(netid);
201                         }
202                         continue;
203                 }
204
205                 pl = malloc(sizeof (struct proglst));
206                 if (pl == NULL) {
207                         warnx(rpc_reg_err, rpc_reg_msg, __no_mem_str);
208                         if (madenow) {
209                                 SVC_DESTROY(svcxprt);
210                                 free(xdrbuf);
211                                 free(netid);
212                         }
213                         break;
214                 }
215                 pl->p_progname = progname;
216                 pl->p_prognum = prognum;
217                 pl->p_versnum = versnum;
218                 pl->p_procnum = procnum;
219                 pl->p_inproc = inproc;
220                 pl->p_outproc = outproc;
221                 pl->p_transp = svcxprt;
222                 pl->p_xdrbuf = xdrbuf;
223                 pl->p_recvsz = recvsz;
224                 pl->p_netid = netid;
225                 pl->p_nxt = proglst;
226                 proglst = pl;
227                 done = TRUE;
228         }
229         __rpc_endconf(handle);
230         mutex_unlock(&proglst_lock);
231
232         if (done == FALSE) {
233                 warnx("%s cant find suitable transport for %s",
234                         rpc_reg_msg, nettype);
235                 return (-1);
236         }
237         return (0);
238 }
239
240 /*
241  * The universal handler for the services registered using registerrpc.
242  * It handles both the connectionless and the connection oriented cases.
243  */
244
245 static void
246 universal(rqstp, transp)
247         struct svc_req *rqstp;
248         SVCXPRT *transp;
249 {
250         rpcprog_t prog;
251         rpcvers_t vers;
252         rpcproc_t proc;
253         char *outdata;
254         char *xdrbuf;
255         struct proglst *pl;
256
257         /*
258          * enforce "procnum 0 is echo" convention
259          */
260         if (rqstp->rq_proc == NULLPROC) {
261                 if (svc_sendreply(transp, (xdrproc_t) xdr_void, NULL) ==
262                     FALSE) {
263                         warnx("svc_sendreply failed");
264                 }
265                 return;
266         }
267         prog = rqstp->rq_prog;
268         vers = rqstp->rq_vers;
269         proc = rqstp->rq_proc;
270         mutex_lock(&proglst_lock);
271         for (pl = proglst; pl; pl = pl->p_nxt)
272                 if (pl->p_prognum == prog && pl->p_procnum == proc &&
273                         pl->p_versnum == vers &&
274                         (strcmp(pl->p_netid, transp->xp_netid) == 0)) {
275                         /* decode arguments into a CLEAN buffer */
276                         xdrbuf = pl->p_xdrbuf;
277                         /* Zero the arguments: reqd ! */
278                         (void) memset(xdrbuf, 0, sizeof (pl->p_recvsz));
279                         /*
280                          * Assuming that sizeof (xdrbuf) would be enough
281                          * for the arguments; if not then the program
282                          * may bomb. BEWARE!
283                          */
284                         if (!svc_getargs(transp, pl->p_inproc, xdrbuf)) {
285                                 svcerr_decode(transp);
286                                 mutex_unlock(&proglst_lock);
287                                 return;
288                         }
289                         outdata = (*(pl->p_progname))(xdrbuf);
290                         if (outdata == NULL &&
291                                 pl->p_outproc != (xdrproc_t) xdr_void){
292                                 /* there was an error */
293                                 mutex_unlock(&proglst_lock);
294                                 return;
295                         }
296                         if (!svc_sendreply(transp, pl->p_outproc, outdata)) {
297                                 warnx(
298                         "rpc: rpc_reg trouble replying to prog %u vers %u",
299                                 (unsigned)prog, (unsigned)vers);
300                                 mutex_unlock(&proglst_lock);
301                                 return;
302                         }
303                         /* free the decoded arguments */
304                         (void)svc_freeargs(transp, pl->p_inproc, xdrbuf);
305                         mutex_unlock(&proglst_lock);
306                         return;
307                 }
308         mutex_unlock(&proglst_lock);
309         /* This should never happen */
310         warnx("rpc: rpc_reg: never registered prog %u vers %u",
311                 (unsigned)prog, (unsigned)vers);
312         return;
313 }