1 /* $NetBSD: rpcb_svc_4.c,v 1.5 2006/05/25 02:33:16 christos Exp $ */
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.
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.
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.
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.
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.
27 * Sun Microsystems, Inc.
29 * Mountain View, California 94043
32 * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc.
35 /* #ident "@(#)rpcb_svc_4.c 1.8 93/07/05 SMI" */
39 * The server procedure for the version 4 rpcbind.
43 #include <sys/types.h>
48 #include <netconfig.h>
54 static void *rpcbproc_getaddr_4_local(void *, struct svc_req
*, SVCXPRT
*,
56 static void *rpcbproc_getversaddr_4_local(void *, struct svc_req
*, SVCXPRT
*,
58 static void *rpcbproc_getaddrlist_4_local(void *, struct svc_req
*, SVCXPRT
*,
60 static void free_rpcb_entry_list(rpcb_entry_list_ptr
*);
61 static void *rpcbproc_dump_4_local(void *, struct svc_req
*, SVCXPRT
*,
65 * Called by svc_getreqset. There is a separate server handle for
66 * every transport that it waits on.
69 rpcb_service_4(struct svc_req
*rqstp
, SVCXPRT
*transp
)
72 rpcb rpcbproc_set_4_arg
;
73 rpcb rpcbproc_unset_4_arg
;
74 rpcb rpcbproc_getaddr_4_local_arg
;
75 char *rpcbproc_uaddr2taddr_4_arg
;
76 struct netbuf rpcbproc_taddr2uaddr_4_arg
;
79 xdrproc_t xdr_argument
, xdr_result
;
80 void *(*local
)(void *, struct svc_req
*, SVCXPRT
*, rpcvers_t
);
82 rpcbs_procinfo(RPCBVERS_4_STAT
, rqstp
->rq_proc
);
84 switch (rqstp
->rq_proc
) {
91 fprintf(stderr
, "RPCBPROC_NULL\n");
93 check_access(transp
, rqstp
->rq_proc
, NULL
, RPCBVERS4
);
94 (void) svc_sendreply(transp
, (xdrproc_t
) xdr_void
,
100 * Check to see whether the message came from
101 * loopback transports (for security reasons)
103 xdr_argument
= (xdrproc_t
)xdr_rpcb
;
104 xdr_result
= (xdrproc_t
)xdr_bool
;
105 local
= rpcbproc_set_com
;
110 * Check to see whether the message came from
111 * loopback transports (for security reasons)
113 xdr_argument
= (xdrproc_t
)xdr_rpcb
;
114 xdr_result
= (xdrproc_t
)xdr_bool
;
115 local
= rpcbproc_unset_com
;
118 case RPCBPROC_GETADDR
:
119 xdr_argument
= (xdrproc_t
)xdr_rpcb
;
120 xdr_result
= (xdrproc_t
)xdr_wrapstring
;
121 local
= rpcbproc_getaddr_4_local
;
124 case RPCBPROC_GETVERSADDR
:
127 fprintf(stderr
, "RPCBPROC_GETVERSADDR\n");
129 xdr_argument
= (xdrproc_t
)xdr_rpcb
;
130 xdr_result
= (xdrproc_t
)xdr_wrapstring
;
131 local
= rpcbproc_getversaddr_4_local
;
137 fprintf(stderr
, "RPCBPROC_DUMP\n");
139 xdr_argument
= (xdrproc_t
)xdr_void
;
140 xdr_result
= (xdrproc_t
)xdr_rpcblist_ptr
;
141 local
= rpcbproc_dump_4_local
;
144 case RPCBPROC_INDIRECT
:
147 fprintf(stderr
, "RPCBPROC_INDIRECT\n");
149 rpcbproc_callit_com(rqstp
, transp
, rqstp
->rq_proc
, RPCBVERS4
);
152 /* case RPCBPROC_CALLIT: */
156 fprintf(stderr
, "RPCBPROC_BCAST\n");
158 rpcbproc_callit_com(rqstp
, transp
, rqstp
->rq_proc
, RPCBVERS4
);
161 case RPCBPROC_GETTIME
:
164 fprintf(stderr
, "RPCBPROC_GETTIME\n");
166 xdr_argument
= (xdrproc_t
)xdr_void
;
167 xdr_result
= (xdrproc_t
)xdr_u_long
;
168 local
= rpcbproc_gettime_com
;
171 case RPCBPROC_UADDR2TADDR
:
174 fprintf(stderr
, "RPCBPROC_UADDR2TADDR\n");
176 xdr_argument
= (xdrproc_t
)xdr_wrapstring
;
177 xdr_result
= (xdrproc_t
)xdr_netbuf
;
178 local
= rpcbproc_uaddr2taddr_com
;
181 case RPCBPROC_TADDR2UADDR
:
184 fprintf(stderr
, "RPCBPROC_TADDR2UADDR\n");
186 xdr_argument
= (xdrproc_t
)xdr_netbuf
;
187 xdr_result
= (xdrproc_t
)xdr_wrapstring
;
188 local
= rpcbproc_taddr2uaddr_com
;
191 case RPCBPROC_GETADDRLIST
:
194 fprintf(stderr
, "RPCBPROC_GETADDRLIST\n");
196 xdr_argument
= (xdrproc_t
)xdr_rpcb
;
197 xdr_result
= (xdrproc_t
)xdr_rpcb_entry_list_ptr
;
198 local
= rpcbproc_getaddrlist_4_local
;
201 case RPCBPROC_GETSTAT
:
204 fprintf(stderr
, "RPCBPROC_GETSTAT\n");
206 xdr_argument
= (xdrproc_t
)xdr_void
;
207 xdr_result
= (xdrproc_t
)xdr_rpcb_stat_byvers
;
208 local
= rpcbproc_getstat
;
212 svcerr_noproc(transp
);
215 memset((char *)&argument
, 0, sizeof (argument
));
216 if (!svc_getargs(transp
, (xdrproc_t
) xdr_argument
,
217 (char *)&argument
)) {
218 svcerr_decode(transp
);
220 (void) fprintf(stderr
, "rpcbind: could not decode\n");
223 if (!check_access(transp
, rqstp
->rq_proc
, &argument
, RPCBVERS4
)) {
224 svcerr_weakauth(transp
);
227 result
= (*local
)(&argument
, rqstp
, transp
, RPCBVERS4
);
228 if (result
!= NULL
&& !svc_sendreply(transp
, (xdrproc_t
) xdr_result
,
230 svcerr_systemerr(transp
);
232 (void) fprintf(stderr
, "rpcbind: svc_sendreply\n");
239 if (!svc_freeargs(transp
, (xdrproc_t
) xdr_argument
,
240 (char *)&argument
)) {
242 (void) fprintf(stderr
, "unable to free arguments\n");
252 * Lookup the mapping for a program, version and return its
253 * address. Assuming that the caller wants the address of the
254 * server running on the transport on which the request came.
255 * Even if a service with a different version number is available,
256 * it will return that address. The client should check with an
257 * clnt_call to verify whether the service is the one that is desired.
258 * We also try to resolve the universal address in terms of
259 * address of the caller.
263 rpcbproc_getaddr_4_local(void *arg
, struct svc_req
*rqstp
, SVCXPRT
*transp
,
264 rpcvers_t rpcbversnum
)
266 RPCB
*regp
= (RPCB
*)arg
;
271 uaddr
= taddr2uaddr(rpcbind_get_conf(transp
->xp_netid
),
272 svc_getrpccaller(transp
));
273 fprintf(stderr
, "RPCB_GETADDR req for (%lu, %lu, %s) from %s: ",
274 (unsigned long)regp
->r_prog
, (unsigned long)regp
->r_vers
,
275 regp
->r_netid
, uaddr
);
279 return (rpcbproc_getaddr_com(regp
, rqstp
, transp
, RPCBVERS4
,
284 * Lookup the mapping for a program, version and return its
285 * address. Assuming that the caller wants the address of the
286 * server running on the transport on which the request came.
288 * We also try to resolve the universal address in terms of
289 * address of the caller.
293 rpcbproc_getversaddr_4_local(void *arg
, struct svc_req
*rqstp
, SVCXPRT
*transp
,
296 RPCB
*regp
= (RPCB
*)arg
;
301 uaddr
= taddr2uaddr(rpcbind_get_conf(transp
->xp_netid
),
302 svc_getrpccaller(transp
));
303 fprintf(stderr
, "RPCB_GETVERSADDR rqst for (%lu, %lu, %s)"
305 (unsigned long)regp
->r_prog
, (unsigned long)regp
->r_vers
,
306 regp
->r_netid
, uaddr
);
310 return (rpcbproc_getaddr_com(regp
, rqstp
, transp
, RPCBVERS4
,
315 * Lookup the mapping for a program, version and return the
316 * addresses for all transports in the current transport family.
317 * We return a merged address.
321 rpcbproc_getaddrlist_4_local(void *arg
, struct svc_req
*rqstp
, SVCXPRT
*transp
,
324 RPCB
*regp
= (RPCB
*)arg
;
325 static rpcb_entry_list_ptr rlist
;
326 register rpcblist_ptr rbl
;
327 rpcb_entry_list_ptr rp
, tail
= NULL
;
331 struct netconfig
*nconf
;
332 struct netconfig
*reg_nconf
;
333 char *saddr
, *maddr
= NULL
;
335 free_rpcb_entry_list(&rlist
);
338 reg_nconf
= rpcbind_get_conf(transp
->xp_netid
);
339 if (reg_nconf
== NULL
)
341 if (*(regp
->r_addr
) != '\0') {
342 saddr
= regp
->r_addr
;
348 fprintf(stderr
, "r_addr: %s r_netid: %s nc_protofmly: %s\n",
349 regp
->r_addr
, regp
->r_netid
, reg_nconf
->nc_protofmly
);
352 for (rbl
= list_rbl
; rbl
!= NULL
; rbl
= rbl
->rpcb_next
) {
353 if ((rbl
->rpcb_map
.r_prog
== prog
) &&
354 (rbl
->rpcb_map
.r_vers
== vers
)) {
355 nconf
= rpcbind_get_conf(rbl
->rpcb_map
.r_netid
);
358 if (strcmp(nconf
->nc_protofmly
, reg_nconf
->nc_protofmly
)
360 continue; /* not same proto family */
364 fprintf(stderr
, "\tmerge with: %s\n", rbl
->rpcb_map
.r_addr
);
366 if ((maddr
= mergeaddr(transp
, rbl
->rpcb_map
.r_netid
,
367 rbl
->rpcb_map
.r_addr
, saddr
)) == NULL
) {
370 fprintf(stderr
, " FAILED\n");
373 } else if (!maddr
[0]) {
376 fprintf(stderr
, " SUCCEEDED, but port died - maddr: nullstring\n");
378 /* The server died. Unset this combination */
379 delete_prog(regp
->r_prog
);
385 fprintf(stderr
, " SUCCEEDED maddr: %s\n", maddr
);
390 rp
= (rpcb_entry_list_ptr
)
391 malloc((u_int
)sizeof (rpcb_entry_list
));
396 a
= &rp
->rpcb_entry_map
;
398 a
->r_nc_netid
= nconf
->nc_netid
;
399 a
->r_nc_semantics
= nconf
->nc_semantics
;
400 a
->r_nc_protofmly
= nconf
->nc_protofmly
;
401 a
->r_nc_proto
= nconf
->nc_proto
;
402 rp
->rpcb_entry_next
= NULL
;
407 tail
->rpcb_entry_next
= rp
;
415 for (rp
= rlist
; rp
; rp
= rp
->rpcb_entry_next
) {
416 fprintf(stderr
, "\t%s %s\n", rp
->rpcb_entry_map
.r_maddr
,
417 rp
->rpcb_entry_map
.r_nc_proto
);
422 * XXX: getaddrlist info is also being stuffed into getaddr.
423 * Perhaps wrong, but better than it not getting counted at all.
425 rpcbs_getaddr(RPCBVERS4
- 2, prog
, vers
, transp
->xp_netid
, maddr
);
426 return (void *)&rlist
;
428 fail
: free_rpcb_entry_list(&rlist
);
433 * Free only the allocated structure, rest is all a pointer to some
434 * other data somewhere else.
437 free_rpcb_entry_list(rpcb_entry_list_ptr
*rlistp
)
439 register rpcb_entry_list_ptr rbl
, tmp
;
441 for (rbl
= *rlistp
; rbl
!= NULL
; ) {
443 rbl
= rbl
->rpcb_entry_next
;
444 free((char *)tmp
->rpcb_entry_map
.r_maddr
);
452 rpcbproc_dump_4_local(void *arg
, struct svc_req
*req
, SVCXPRT
*xprt
,
455 return ((void *)&list_rbl
);