]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/rpcbind/rpcb_svc_4.c
Remove $FreeBSD$: one-line .c comment pattern
[FreeBSD/FreeBSD.git] / usr.sbin / rpcbind / rpcb_svc_4.c
1 /*
2  * $NetBSD: rpcb_svc_4.c,v 1.1 2000/06/02 23:15:41 fvdl Exp $
3  */
4
5 /*-
6  * SPDX-License-Identifier: BSD-3-Clause
7  *
8  * Copyright (c) 2009, Sun Microsystems, Inc.
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions are met:
13  * - Redistributions of source code must retain the above copyright notice,
14  *   this list of conditions and the following disclaimer.
15  * - Redistributions in binary form must reproduce the above copyright notice,
16  *   this list of conditions and the following disclaimer in the documentation
17  *   and/or other materials provided with the distribution.
18  * - Neither the name of Sun Microsystems, Inc. nor the names of its
19  *   contributors may be used to endorse or promote products derived
20  *   from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
26  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  */
34 /*
35  * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc.
36  */
37
38 /* #ident       "@(#)rpcb_svc_4.c       1.8     93/07/05 SMI" */
39
40 /*
41  * rpcb_svc_4.c
42  * The server procedure for the version 4 rpcbind.
43  *
44  */
45
46 #include <sys/types.h>
47 #include <sys/stat.h>
48 #include <rpc/rpc.h>
49 #include <stdio.h>
50 #include <netconfig.h>
51 #include <string.h>
52 #include <stdlib.h>
53 #include "rpcbind.h"
54
55 static void *rpcbproc_getaddr_4_local(void *, struct svc_req *, SVCXPRT *,
56                                       rpcvers_t);
57 static void *rpcbproc_getversaddr_4_local(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
58 static void *rpcbproc_getaddrlist_4_local
59         (void *, struct svc_req *, SVCXPRT *, rpcvers_t);
60 static void free_rpcb_entry_list(rpcb_entry_list_ptr *);
61 static void *rpcbproc_dump_4_local(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
62
63 /*
64  * Called by svc_getreqset. There is a separate server handle for
65  * every transport that it waits on.
66  */
67 void
68 rpcb_service_4(struct svc_req *rqstp, SVCXPRT *transp)
69 {
70         union {
71                 rpcb rpcbproc_set_4_arg;
72                 rpcb rpcbproc_unset_4_arg;
73                 rpcb rpcbproc_getaddr_4_local_arg;
74                 char *rpcbproc_uaddr2taddr_4_arg;
75                 struct netbuf rpcbproc_taddr2uaddr_4_arg;
76         } argument;
77         char *result;
78         xdrproc_t xdr_argument, xdr_result;
79         void *(*local)(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
80
81         rpcbs_procinfo(RPCBVERS_4_STAT, rqstp->rq_proc);
82
83         switch (rqstp->rq_proc) {
84         case NULLPROC:
85                 /*
86                  * Null proc call
87                  */
88 #ifdef RPCBIND_DEBUG
89                 if (debugging)
90                         fprintf(stderr, "RPCBPROC_NULL\n");
91 #endif
92                 check_access(transp, rqstp->rq_proc, NULL, RPCBVERS4);
93                 (void) svc_sendreply(transp, (xdrproc_t) xdr_void,
94                                         (char *)NULL);
95                 return;
96
97         case RPCBPROC_SET:
98                 /*
99                  * Check to see whether the message came from
100                  * loopback transports (for security reasons)
101                  */
102                 xdr_argument = (xdrproc_t)xdr_rpcb;
103                 xdr_result = (xdrproc_t)xdr_bool;
104                 local = rpcbproc_set_com;
105                 break;
106
107         case RPCBPROC_UNSET:
108                 /*
109                  * Check to see whether the message came from
110                  * loopback transports (for security reasons)
111                  */
112                 xdr_argument = (xdrproc_t)xdr_rpcb;
113                 xdr_result = (xdrproc_t)xdr_bool;
114                 local = rpcbproc_unset_com;
115                 break;
116
117         case RPCBPROC_GETADDR:
118                 xdr_argument = (xdrproc_t)xdr_rpcb;
119                 xdr_result = (xdrproc_t)xdr_wrapstring;
120                 local = rpcbproc_getaddr_4_local;
121                 break;
122
123         case RPCBPROC_GETVERSADDR:
124 #ifdef RPCBIND_DEBUG
125                 if (debugging)
126                         fprintf(stderr, "RPCBPROC_GETVERSADDR\n");
127 #endif
128                 xdr_argument = (xdrproc_t)xdr_rpcb;
129                 xdr_result = (xdrproc_t)xdr_wrapstring;
130                 local = rpcbproc_getversaddr_4_local;
131                 break;
132
133         case RPCBPROC_DUMP:
134 #ifdef RPCBIND_DEBUG
135                 if (debugging)
136                         fprintf(stderr, "RPCBPROC_DUMP\n");
137 #endif
138                 xdr_argument = (xdrproc_t)xdr_void;
139                 xdr_result = (xdrproc_t)xdr_rpcblist_ptr;
140                 local = rpcbproc_dump_4_local;
141                 break;
142
143         case RPCBPROC_INDIRECT:
144 #ifdef RPCBIND_DEBUG
145                 if (debugging)
146                         fprintf(stderr, "RPCBPROC_INDIRECT\n");
147 #endif
148                 rpcbproc_callit_com(rqstp, transp, rqstp->rq_proc, RPCBVERS4);
149                 return;
150
151 /*      case RPCBPROC_CALLIT: */
152         case RPCBPROC_BCAST:
153 #ifdef RPCBIND_DEBUG
154                 if (debugging)
155                         fprintf(stderr, "RPCBPROC_BCAST\n");
156 #endif
157                 rpcbproc_callit_com(rqstp, transp, rqstp->rq_proc, RPCBVERS4);
158                 return;
159
160         case RPCBPROC_GETTIME:
161 #ifdef RPCBIND_DEBUG
162                 if (debugging)
163                         fprintf(stderr, "RPCBPROC_GETTIME\n");
164 #endif
165                 xdr_argument = (xdrproc_t)xdr_void;
166                 xdr_result = (xdrproc_t)xdr_u_long;
167                 local = rpcbproc_gettime_com;
168                 break;
169
170         case RPCBPROC_UADDR2TADDR:
171 #ifdef RPCBIND_DEBUG
172                 if (debugging)
173                         fprintf(stderr, "RPCBPROC_UADDR2TADDR\n");
174 #endif
175                 xdr_argument = (xdrproc_t)xdr_wrapstring;
176                 xdr_result = (xdrproc_t)xdr_netbuf;
177                 local = rpcbproc_uaddr2taddr_com;
178                 break;
179
180         case RPCBPROC_TADDR2UADDR:
181 #ifdef RPCBIND_DEBUG
182                 if (debugging)
183                         fprintf(stderr, "RPCBPROC_TADDR2UADDR\n");
184 #endif
185                 xdr_argument = (xdrproc_t)xdr_netbuf;
186                 xdr_result = (xdrproc_t)xdr_wrapstring;
187                 local = rpcbproc_taddr2uaddr_com;
188                 break;
189
190         case RPCBPROC_GETADDRLIST:
191 #ifdef RPCBIND_DEBUG
192                 if (debugging)
193                         fprintf(stderr, "RPCBPROC_GETADDRLIST\n");
194 #endif
195                 xdr_argument = (xdrproc_t)xdr_rpcb;
196                 xdr_result = (xdrproc_t)xdr_rpcb_entry_list_ptr;
197                 local = rpcbproc_getaddrlist_4_local;
198                 break;
199
200         case RPCBPROC_GETSTAT:
201 #ifdef RPCBIND_DEBUG
202                 if (debugging)
203                         fprintf(stderr, "RPCBPROC_GETSTAT\n");
204 #endif
205                 xdr_argument = (xdrproc_t)xdr_void;
206                 xdr_result = (xdrproc_t)xdr_rpcb_stat_byvers;
207                 local = rpcbproc_getstat;
208                 break;
209
210         default:
211                 svcerr_noproc(transp);
212                 return;
213         }
214         memset((char *)&argument, 0, sizeof (argument));
215         if (!svc_getargs(transp, (xdrproc_t) xdr_argument,
216                 (char *)&argument)) {
217                 svcerr_decode(transp);
218                 if (debugging)
219                         (void) fprintf(stderr, "rpcbind: could not decode\n");
220                 return;
221         }
222         if (!check_access(transp, rqstp->rq_proc, &argument, RPCBVERS4)) {
223                 svcerr_weakauth(transp);
224                 goto done;
225         }
226         result = (*local)(&argument, rqstp, transp, RPCBVERS4);
227         if (result != NULL && !svc_sendreply(transp, (xdrproc_t) xdr_result,
228                                                 result)) {
229                 svcerr_systemerr(transp);
230                 if (debugging) {
231                         (void) fprintf(stderr, "rpcbind: svc_sendreply\n");
232                         if (doabort) {
233                                 rpcbind_abort();
234                         }
235                 }
236         }
237 done:
238         if (!svc_freeargs(transp, (xdrproc_t) xdr_argument,
239                                 (char *)&argument)) {
240                 if (debugging) {
241                         (void) fprintf(stderr, "unable to free arguments\n");
242                         if (doabort) {
243                                 rpcbind_abort();
244                         }
245                 }
246         }
247 }
248
249 /*
250  * Lookup the mapping for a program, version and return its
251  * address. Assuming that the caller wants the address of the
252  * server running on the transport on which the request came.
253  * Even if a service with a different version number is available,
254  * it will return that address.  The client should check with an
255  * clnt_call to verify whether the service is the one that is desired.
256  * We also try to resolve the universal address in terms of
257  * address of the caller.
258  */
259 /* ARGSUSED */
260 static void *
261 rpcbproc_getaddr_4_local(void *arg, struct svc_req *rqstp, SVCXPRT *transp,
262                          rpcvers_t rpcbversnum __unused)
263 {
264         RPCB *regp = (RPCB *)arg;
265 #ifdef RPCBIND_DEBUG
266         if (debugging) {
267                 char *uaddr;
268
269                 uaddr = taddr2uaddr(rpcbind_get_conf(transp->xp_netid),
270                             svc_getrpccaller(transp));
271                 fprintf(stderr, "RPCB_GETADDR req for (%lu, %lu, %s) from %s: ",
272                     (unsigned long)regp->r_prog, (unsigned long)regp->r_vers,
273                     regp->r_netid, uaddr);
274                 free(uaddr);
275         }
276 #endif
277         return (rpcbproc_getaddr_com(regp, rqstp, transp, RPCBVERS4,
278                                         RPCB_ALLVERS));
279 }
280
281 /*
282  * Lookup the mapping for a program, version and return its
283  * address. Assuming that the caller wants the address of the
284  * server running on the transport on which the request came.
285  *
286  * We also try to resolve the universal address in terms of
287  * address of the caller.
288  */
289 /* ARGSUSED */
290 static void *
291 rpcbproc_getversaddr_4_local(void *arg, struct svc_req *rqstp, SVCXPRT *transp,
292                              rpcvers_t versnum __unused)
293 {
294         RPCB *regp = (RPCB *)arg;
295 #ifdef RPCBIND_DEBUG
296         if (debugging) {
297                 char *uaddr;
298
299                 uaddr = taddr2uaddr(rpcbind_get_conf(transp->xp_netid),
300                             svc_getrpccaller(transp));
301                 fprintf(stderr, "RPCB_GETVERSADDR rqst for (%lu, %lu, %s)"
302                                 " from %s : ",
303                     (unsigned long)regp->r_prog, (unsigned long)regp->r_vers,
304                     regp->r_netid, uaddr);
305                 free(uaddr);
306         }
307 #endif
308         return (rpcbproc_getaddr_com(regp, rqstp, transp, RPCBVERS4,
309                                         RPCB_ONEVERS));
310 }
311
312 /*
313  * Lookup the mapping for a program, version and return the
314  * addresses for all transports in the current transport family.
315  * We return a merged address.
316  */
317 /* ARGSUSED */
318 static void *
319 rpcbproc_getaddrlist_4_local(void *arg, struct svc_req *rqstp __unused,
320                              SVCXPRT *transp, rpcvers_t versnum __unused)
321 {
322         RPCB *regp = (RPCB *)arg;
323         static rpcb_entry_list_ptr rlist;
324         register rpcblist_ptr rbl;
325         rpcb_entry_list_ptr rp, tail;
326         rpcprog_t prog;
327         rpcvers_t vers;
328         rpcb_entry *a;
329         struct netconfig *nconf;
330         struct netconfig *reg_nconf;
331         char *saddr, *maddr = NULL;
332
333         free_rpcb_entry_list(&rlist);
334         tail = NULL;
335         prog = regp->r_prog;
336         vers = regp->r_vers;
337         reg_nconf = rpcbind_get_conf(transp->xp_netid);
338         if (reg_nconf == NULL)
339                 return (NULL);
340         if (*(regp->r_addr) != '\0') {
341                 saddr = regp->r_addr;
342         } else {
343                 saddr = NULL;
344         }
345 #ifdef RPCBIND_DEBUG
346         if (debugging) {
347                 fprintf(stderr, "r_addr: %s r_netid: %s nc_protofmly: %s\n",
348                     regp->r_addr, regp->r_netid, reg_nconf->nc_protofmly);
349         }
350 #endif
351         for (rbl = list_rbl; rbl != NULL; rbl = rbl->rpcb_next) {
352             if ((rbl->rpcb_map.r_prog == prog) &&
353                 (rbl->rpcb_map.r_vers == vers)) {
354                 nconf = rpcbind_get_conf(rbl->rpcb_map.r_netid);
355                 if (nconf == NULL)
356                         goto fail;
357                 if (strcmp(nconf->nc_protofmly, reg_nconf->nc_protofmly)
358                                 != 0) {
359                         continue;       /* not same proto family */
360                 }
361 #ifdef RPCBIND_DEBUG
362                 if (debugging)
363                         fprintf(stderr, "\tmerge with: %s\n",
364                             rbl->rpcb_map.r_addr);
365 #endif
366                 if ((maddr = mergeaddr(transp, rbl->rpcb_map.r_netid,
367                                 rbl->rpcb_map.r_addr, saddr)) == NULL) {
368 #ifdef RPCBIND_DEBUG
369                 if (debugging)
370                         fprintf(stderr, " FAILED\n");
371 #endif
372                         continue;
373                 } else if (!maddr[0]) {
374 #ifdef RPCBIND_DEBUG
375         if (debugging)
376                 fprintf(stderr, " SUCCEEDED, but port died -  maddr: nullstring\n");
377 #endif
378                         /* The server died. Unset this combination */
379                         delete_prog(regp->r_prog);
380                         continue;
381                 }
382 #ifdef RPCBIND_DEBUG
383                 if (debugging)
384                         fprintf(stderr, " SUCCEEDED maddr: %s\n", maddr);
385 #endif
386                 /*
387                  * Add it to rlist.
388                  */
389                 rp = malloc(sizeof (rpcb_entry_list));
390                 if (rp == NULL)
391                         goto fail;
392                 a = &rp->rpcb_entry_map;
393                 a->r_maddr = maddr;
394                 a->r_nc_netid = nconf->nc_netid;
395                 a->r_nc_semantics = nconf->nc_semantics;
396                 a->r_nc_protofmly = nconf->nc_protofmly;
397                 a->r_nc_proto = nconf->nc_proto;
398                 rp->rpcb_entry_next = NULL;
399                 if (rlist == NULL) {
400                         rlist = rp;
401                         tail = rp;
402                 } else {
403                         tail->rpcb_entry_next = rp;
404                         tail = rp;
405                 }
406                 rp = NULL;
407             }
408         }
409 #ifdef RPCBIND_DEBUG
410         if (debugging) {
411                 for (rp = rlist; rp; rp = rp->rpcb_entry_next) {
412                         fprintf(stderr, "\t%s %s\n", rp->rpcb_entry_map.r_maddr,
413                                 rp->rpcb_entry_map.r_nc_proto);
414                 }
415         }
416 #endif
417         /*
418          * XXX: getaddrlist info is also being stuffed into getaddr.
419          * Perhaps wrong, but better than it not getting counted at all.
420          */
421         rpcbs_getaddr(RPCBVERS4 - 2, prog, vers, transp->xp_netid, maddr);
422         return (void *)&rlist;
423
424 fail:   free_rpcb_entry_list(&rlist);
425         return (NULL);
426 }
427
428 /*
429  * Free only the allocated structure, rest is all a pointer to some
430  * other data somewhere else.
431  */
432 static void
433 free_rpcb_entry_list(rpcb_entry_list_ptr *rlistp)
434 {
435         register rpcb_entry_list_ptr rbl, tmp;
436
437         for (rbl = *rlistp; rbl != NULL; ) {
438                 tmp = rbl;
439                 rbl = rbl->rpcb_entry_next;
440                 free((char *)tmp->rpcb_entry_map.r_maddr);
441                 free((char *)tmp);
442         }
443         *rlistp = NULL;
444 }
445
446 /* ARGSUSED */
447 static void *
448 rpcbproc_dump_4_local(void *arg __unused, struct svc_req *req __unused,
449                       SVCXPRT *xprt __unused, rpcvers_t versnum __unused)
450 {
451         return ((void *)&list_rbl);
452 }