Use reallocf instead of malloc to fix leak with outbuf_pmap
[freebsd.git] / lib / libc / rpc / clnt_bcast.c
1 /*      $NetBSD: clnt_bcast.c,v 1.3 2000/07/06 03:05:20 christos Exp $  */
2
3 /*-
4  * Copyright (c) 2009, Sun Microsystems, Inc.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without 
8  * modification, are permitted provided that the following conditions are met:
9  * - Redistributions of source code must retain the above copyright notice, 
10  *   this list of conditions and the following disclaimer.
11  * - Redistributions in binary form must reproduce the above copyright notice, 
12  *   this list of conditions and the following disclaimer in the documentation 
13  *   and/or other materials provided with the distribution.
14  * - Neither the name of Sun Microsystems, Inc. nor the names of its 
15  *   contributors may be used to endorse or promote products derived 
16  *   from this software without specific prior written permission.
17  * 
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
28  * POSSIBILITY OF SUCH DAMAGE.
29  */
30 /*
31  * Copyright (c) 1986-1991 by Sun Microsystems Inc. 
32  */
33
34 #if defined(LIBC_SCCS) && !defined(lint)
35 #ident  "@(#)clnt_bcast.c       1.18    94/05/03 SMI"
36 static char sccsid[] = "@(#)clnt_bcast.c 1.15 89/04/21 Copyr 1988 Sun Micro";
37 #endif
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD$");
40
41
42 /*
43  * clnt_bcast.c
44  * Client interface to broadcast service.
45  *
46  * Copyright (C) 1988, Sun Microsystems, Inc.
47  *
48  * The following is kludged-up support for simple rpc broadcasts.
49  * Someday a large, complicated system will replace these routines.
50  */
51
52 #include "namespace.h"
53 #include <sys/types.h>
54 #include <sys/socket.h>
55 #include <sys/queue.h>
56 #include <net/if.h>
57 #include <netinet/in.h>
58 #include <ifaddrs.h>
59 #include <sys/poll.h>
60 #include <rpc/rpc.h>
61 #ifdef PORTMAP
62 #include <rpc/pmap_prot.h>
63 #include <rpc/pmap_clnt.h>
64 #include <rpc/pmap_rmt.h>
65 #endif                          /* PORTMAP */
66 #include <rpc/nettype.h>
67 #include <arpa/inet.h>
68 #ifdef RPC_DEBUG
69 #include <stdio.h>
70 #endif
71 #include <errno.h>
72 #include <stdlib.h>
73 #include <unistd.h>
74 #include <netdb.h>
75 #include <err.h>
76 #include <string.h>
77 #include "un-namespace.h"
78
79 #include "rpc_com.h"
80
81 #define MAXBCAST 20     /* Max no of broadcasting transports */
82 #define INITTIME 4000   /* Time to wait initially */
83 #define WAITTIME 8000   /* Maximum time to wait */
84
85 /*
86  * If nettype is NULL, it broadcasts on all the available
87  * datagram_n transports. May potentially lead to broadacst storms
88  * and hence should be used with caution, care and courage.
89  *
90  * The current parameter xdr packet size is limited by the max tsdu
91  * size of the transport. If the max tsdu size of any transport is
92  * smaller than the parameter xdr packet, then broadcast is not
93  * sent on that transport.
94  *
95  * Also, the packet size should be less the packet size of
96  * the data link layer (for ethernet it is 1400 bytes).  There is
97  * no easy way to find out the max size of the data link layer and
98  * we are assuming that the args would be smaller than that.
99  *
100  * The result size has to be smaller than the transport tsdu size.
101  *
102  * If PORTMAP has been defined, we send two packets for UDP, one for
103  * rpcbind and one for portmap. For those machines which support
104  * both rpcbind and portmap, it will cause them to reply twice, and
105  * also here it will get two responses ... inefficient and clumsy.
106  */
107
108 struct broadif {
109         int index;
110         struct sockaddr_storage broadaddr;
111         TAILQ_ENTRY(broadif) link;
112 };
113
114 typedef TAILQ_HEAD(, broadif) broadlist_t;
115
116 int __rpc_getbroadifs(int, int, int, broadlist_t *);
117 void __rpc_freebroadifs(broadlist_t *);
118 int __rpc_broadenable(int, int, struct broadif *);
119
120 int __rpc_lowvers = 0;
121
122 int
123 __rpc_getbroadifs(int af, int proto, int socktype, broadlist_t *list)
124 {
125         int count = 0;
126         struct broadif *bip;
127         struct ifaddrs *ifap, *ifp;
128 #ifdef INET6
129         struct sockaddr_in6 *sin6;
130 #endif
131         struct sockaddr_in *sin;
132         struct addrinfo hints, *res;
133
134         if (getifaddrs(&ifp) < 0)
135                 return 0;
136
137         memset(&hints, 0, sizeof hints);
138
139         hints.ai_family = af;
140         hints.ai_protocol = proto;
141         hints.ai_socktype = socktype;
142
143         if (getaddrinfo(NULL, "sunrpc", &hints, &res) != 0) {
144                 freeifaddrs(ifp);
145                 return 0;
146         }
147
148         for (ifap = ifp; ifap != NULL; ifap = ifap->ifa_next) {
149                 if (ifap->ifa_addr->sa_family != af ||
150                     !(ifap->ifa_flags & IFF_UP))
151                         continue;
152                 bip = (struct broadif *)malloc(sizeof *bip);
153                 if (bip == NULL)
154                         break;
155                 bip->index = if_nametoindex(ifap->ifa_name);
156                 if (
157 #ifdef INET6
158                 af != AF_INET6 &&
159 #endif
160                 (ifap->ifa_flags & IFF_BROADCAST) &&
161                  ifap->ifa_broadaddr) {
162                         memcpy(&bip->broadaddr, ifap->ifa_broadaddr,
163                             (size_t)ifap->ifa_broadaddr->sa_len);
164                         sin = (struct sockaddr_in *)(void *)&bip->broadaddr;
165                         sin->sin_port =
166                             ((struct sockaddr_in *)
167                             (void *)res->ai_addr)->sin_port;
168                 } else
169 #ifdef INET6
170                 if (af == AF_INET6 && (ifap->ifa_flags & IFF_MULTICAST)) {
171                         sin6 = (struct sockaddr_in6 *)(void *)&bip->broadaddr;
172                         inet_pton(af, RPCB_MULTICAST_ADDR, &sin6->sin6_addr);
173                         sin6->sin6_family = af;
174                         sin6->sin6_len = sizeof *sin6;
175                         sin6->sin6_port =
176                             ((struct sockaddr_in6 *)
177                             (void *)res->ai_addr)->sin6_port;
178                         sin6->sin6_scope_id = bip->index;
179                 } else
180 #endif
181                 {
182                         free(bip);
183                         continue;
184                 }
185                 TAILQ_INSERT_TAIL(list, bip, link);
186                 count++;
187         }
188         freeifaddrs(ifp);
189         freeaddrinfo(res);
190
191         return count;
192 }
193
194 void
195 __rpc_freebroadifs(broadlist_t *list)
196 {
197         struct broadif *bip, *next;
198
199         bip = TAILQ_FIRST(list);
200
201         while (bip != NULL) {
202                 next = TAILQ_NEXT(bip, link);
203                 free(bip);
204                 bip = next;
205         }
206 }
207
208 int
209 /*ARGSUSED*/
210 __rpc_broadenable(int af, int s, struct broadif *bip)
211 {
212         int o = 1;
213
214 #if 0
215         if (af == AF_INET6) {
216                 fprintf(stderr, "set v6 multicast if to %d\n", bip->index);
217                 if (_setsockopt(s, IPPROTO_IPV6, IPV6_MULTICAST_IF, &bip->index,
218                     sizeof bip->index) < 0)
219                         return -1;
220         } else
221 #endif
222                 if (_setsockopt(s, SOL_SOCKET, SO_BROADCAST, &o, sizeof o) < 0)
223                         return -1;
224
225         return 0;
226 }
227
228 /*
229  * rpc_broadcast_exp()
230  *
231  * prog      - program number
232  * vers      - version number
233  * proc      - procedure number
234  * xargs     - xdr routine for args
235  * argsp     - pointer to args
236  * xresults  - xdr routine for results
237  * resultsp  - pointer to results
238  * eachresult - call with each result obtained
239  * inittime  - how long to wait initially
240  * waittime  - maximum time to wait
241  * nettype   - transport type
242  */
243 enum clnt_stat
244 rpc_broadcast_exp(rpcprog_t prog, rpcvers_t vers, rpcproc_t proc,
245     xdrproc_t xargs, caddr_t argsp, xdrproc_t xresults, caddr_t resultsp,
246     resultproc_t eachresult, int inittime, int waittime,
247     const char *nettype)
248 {
249         enum clnt_stat  stat = RPC_SUCCESS; /* Return status */
250         XDR             xdr_stream; /* XDR stream */
251         XDR             *xdrs = &xdr_stream;
252         struct rpc_msg  msg;    /* RPC message */
253         struct timeval  t;
254         char            *outbuf = NULL; /* Broadcast msg buffer */
255         char            *inbuf = NULL; /* Reply buf */
256         int             inlen;
257         u_int           maxbufsize = 0;
258         AUTH            *sys_auth = authunix_create_default();
259         u_int           i;
260         void            *handle;
261         char            uaddress[1024]; /* A self imposed limit */
262         char            *uaddrp = uaddress;
263         int             pmap_reply_flag; /* reply recvd from PORTMAP */
264         /* An array of all the suitable broadcast transports */
265         struct {
266                 int fd;         /* File descriptor */
267                 int af;
268                 int proto;
269                 struct netconfig *nconf; /* Netconfig structure */
270                 u_int asize;    /* Size of the addr buf */
271                 u_int dsize;    /* Size of the data buf */
272                 struct sockaddr_storage raddr; /* Remote address */
273                 broadlist_t nal;
274         } fdlist[MAXBCAST];
275         struct pollfd pfd[MAXBCAST];
276         size_t fdlistno = 0;
277         struct r_rpcb_rmtcallargs barg; /* Remote arguments */
278         struct r_rpcb_rmtcallres bres; /* Remote results */
279         size_t outlen;
280         struct netconfig *nconf;
281         int msec;
282         int pollretval;
283         int fds_found;
284
285 #ifdef PORTMAP
286         size_t outlen_pmap = 0;
287         u_long port;            /* Remote port number */
288         int pmap_flag = 0;      /* UDP exists ? */
289         char *outbuf_pmap = NULL;
290         struct rmtcallargs barg_pmap;   /* Remote arguments */
291         struct rmtcallres bres_pmap; /* Remote results */
292         u_int udpbufsz = 0;
293 #endif                          /* PORTMAP */
294
295         if (sys_auth == NULL) {
296                 return (RPC_SYSTEMERROR);
297         }
298         /*
299          * initialization: create a fd, a broadcast address, and send the
300          * request on the broadcast transport.
301          * Listen on all of them and on replies, call the user supplied
302          * function.
303          */
304
305         if (nettype == NULL)
306                 nettype = "datagram_n";
307         if ((handle = __rpc_setconf(nettype)) == NULL) {
308                 AUTH_DESTROY(sys_auth);
309                 return (RPC_UNKNOWNPROTO);
310         }
311         while ((nconf = __rpc_getconf(handle)) != NULL) {
312                 int fd;
313                 struct __rpc_sockinfo si;
314
315                 if (nconf->nc_semantics != NC_TPI_CLTS)
316                         continue;
317                 if (fdlistno >= MAXBCAST)
318                         break;  /* No more slots available */
319                 if (!__rpc_nconf2sockinfo(nconf, &si))
320                         continue;
321
322                 TAILQ_INIT(&fdlist[fdlistno].nal);
323                 if (__rpc_getbroadifs(si.si_af, si.si_proto, si.si_socktype, 
324                     &fdlist[fdlistno].nal) == 0)
325                         continue;
326
327                 fd = _socket(si.si_af, si.si_socktype, si.si_proto);
328                 if (fd < 0) {
329                         stat = RPC_CANTSEND;
330                         continue;
331                 }
332                 fdlist[fdlistno].af = si.si_af;
333                 fdlist[fdlistno].proto = si.si_proto;
334                 fdlist[fdlistno].fd = fd;
335                 fdlist[fdlistno].nconf = nconf;
336                 fdlist[fdlistno].asize = __rpc_get_a_size(si.si_af);
337                 pfd[fdlistno].events = POLLIN | POLLPRI |
338                         POLLRDNORM | POLLRDBAND;
339                 pfd[fdlistno].fd = fdlist[fdlistno].fd = fd;
340                 fdlist[fdlistno].dsize = __rpc_get_t_size(si.si_af, si.si_proto,
341                                                           0);
342
343                 if (maxbufsize <= fdlist[fdlistno].dsize)
344                         maxbufsize = fdlist[fdlistno].dsize;
345
346 #ifdef PORTMAP
347                 if (si.si_af == AF_INET && si.si_proto == IPPROTO_UDP) {
348                         udpbufsz = fdlist[fdlistno].dsize;
349                         outbuf_pmap = reallocf(outbuf_pmap, udpbufsz);
350                         if (outbuf_pmap == NULL) {
351                                 outbuf_pmap = NULL;
352                                 _close(fd);
353                                 stat = RPC_SYSTEMERROR;
354                                 goto done_broad;
355                         }
356                         pmap_flag = 1;
357                 }
358 #endif                          /* PORTMAP */
359                 fdlistno++;
360         }
361
362         if (fdlistno == 0) {
363                 if (stat == RPC_SUCCESS)
364                         stat = RPC_UNKNOWNPROTO;
365                 goto done_broad;
366         }
367         if (maxbufsize == 0) {
368                 if (stat == RPC_SUCCESS)
369                         stat = RPC_CANTSEND;
370                 goto done_broad;
371         }
372         inbuf = malloc(maxbufsize);
373         outbuf = malloc(maxbufsize);
374         if ((inbuf == NULL) || (outbuf == NULL)) {
375                 stat = RPC_SYSTEMERROR;
376                 goto done_broad;
377         }
378
379         /* Serialize all the arguments which have to be sent */
380         (void) gettimeofday(&t, NULL);
381         msg.rm_xid = __RPC_GETXID(&t);
382         msg.rm_direction = CALL;
383         msg.rm_call.cb_rpcvers = RPC_MSG_VERSION;
384         msg.rm_call.cb_prog = RPCBPROG;
385         msg.rm_call.cb_vers = RPCBVERS;
386         msg.rm_call.cb_proc = RPCBPROC_CALLIT;
387         barg.prog = prog;
388         barg.vers = vers;
389         barg.proc = proc;
390         barg.args.args_val = argsp;
391         barg.xdr_args = xargs;
392         bres.addr = uaddrp;
393         bres.results.results_val = resultsp;
394         bres.xdr_res = xresults;
395         msg.rm_call.cb_cred = sys_auth->ah_cred;
396         msg.rm_call.cb_verf = sys_auth->ah_verf;
397         xdrmem_create(xdrs, outbuf, maxbufsize, XDR_ENCODE);
398         if ((!xdr_callmsg(xdrs, &msg)) ||
399             (!xdr_rpcb_rmtcallargs(xdrs,
400             (struct rpcb_rmtcallargs *)(void *)&barg))) {
401                 stat = RPC_CANTENCODEARGS;
402                 goto done_broad;
403         }
404         outlen = xdr_getpos(xdrs);
405         xdr_destroy(xdrs);
406
407 #ifdef PORTMAP
408         /* Prepare the packet for version 2 PORTMAP */
409         if (pmap_flag) {
410                 msg.rm_xid++;   /* One way to distinguish */
411                 msg.rm_call.cb_prog = PMAPPROG;
412                 msg.rm_call.cb_vers = PMAPVERS;
413                 msg.rm_call.cb_proc = PMAPPROC_CALLIT;
414                 barg_pmap.prog = prog;
415                 barg_pmap.vers = vers;
416                 barg_pmap.proc = proc;
417                 barg_pmap.args_ptr = argsp;
418                 barg_pmap.xdr_args = xargs;
419                 bres_pmap.port_ptr = &port;
420                 bres_pmap.xdr_results = xresults;
421                 bres_pmap.results_ptr = resultsp;
422                 xdrmem_create(xdrs, outbuf_pmap, udpbufsz, XDR_ENCODE);
423                 if ((! xdr_callmsg(xdrs, &msg)) ||
424                     (! xdr_rmtcall_args(xdrs, &barg_pmap))) {
425                         stat = RPC_CANTENCODEARGS;
426                         goto done_broad;
427                 }
428                 outlen_pmap = xdr_getpos(xdrs);
429                 xdr_destroy(xdrs);
430         }
431 #endif                          /* PORTMAP */
432
433         /*
434          * Basic loop: broadcast the packets to transports which
435          * support data packets of size such that one can encode
436          * all the arguments.
437          * Wait a while for response(s).
438          * The response timeout grows larger per iteration.
439          */
440         for (msec = inittime; msec <= waittime; msec += msec) {
441                 struct broadif *bip;
442
443                 /* Broadcast all the packets now */
444                 for (i = 0; i < fdlistno; i++) {
445                         if (fdlist[i].dsize < outlen) {
446                                 stat = RPC_CANTSEND;
447                                 continue;
448                         }
449                         for (bip = TAILQ_FIRST(&fdlist[i].nal); bip != NULL;
450                              bip = TAILQ_NEXT(bip, link)) {
451                                 void *addr;
452
453                                 addr = &bip->broadaddr;
454
455                                 __rpc_broadenable(fdlist[i].af, fdlist[i].fd,
456                                     bip);
457
458                                 /*
459                                  * Only use version 3 if lowvers is not set
460                                  */
461
462                                 if (!__rpc_lowvers)
463                                         if (_sendto(fdlist[i].fd, outbuf,
464                                             outlen, 0, (struct sockaddr*)addr,
465                                             (size_t)fdlist[i].asize) !=
466                                             outlen) {
467 #ifdef RPC_DEBUG
468                                                 perror("sendto");
469 #endif
470                                                 warnx("clnt_bcast: cannot send "
471                                                       "broadcast packet");
472                                                 stat = RPC_CANTSEND;
473                                                 continue;
474                                         }
475 #ifdef RPC_DEBUG
476                                 if (!__rpc_lowvers)
477                                         fprintf(stderr, "Broadcast packet sent "
478                                                 "for %s\n",
479                                                  fdlist[i].nconf->nc_netid);
480 #endif
481 #ifdef PORTMAP
482                                 /*
483                                  * Send the version 2 packet also
484                                  * for UDP/IP
485                                  */
486                                 if (pmap_flag &&
487                                     fdlist[i].proto == IPPROTO_UDP) {
488                                         if (_sendto(fdlist[i].fd, outbuf_pmap,
489                                             outlen_pmap, 0, addr,
490                                             (size_t)fdlist[i].asize) !=
491                                                 outlen_pmap) {
492                                                 warnx("clnt_bcast: "
493                                                     "Cannot send broadcast packet");
494                                                 stat = RPC_CANTSEND;
495                                                 continue;
496                                         }
497                                 }
498 #ifdef RPC_DEBUG
499                                 fprintf(stderr, "PMAP Broadcast packet "
500                                         "sent for %s\n",
501                                         fdlist[i].nconf->nc_netid);
502 #endif
503 #endif                          /* PORTMAP */
504                         }
505                         /* End for sending all packets on this transport */
506                 }       /* End for sending on all transports */
507
508                 if (eachresult == NULL) {
509                         stat = RPC_SUCCESS;
510                         goto done_broad;
511                 }
512
513                 /*
514                  * Get all the replies from these broadcast requests
515                  */
516         recv_again:
517
518                 switch (pollretval = _poll(pfd, fdlistno, msec)) {
519                 case 0:         /* timed out */
520                         stat = RPC_TIMEDOUT;
521                         continue;
522                 case -1:        /* some kind of error - we ignore it */
523                         goto recv_again;
524                 }               /* end of poll results switch */
525
526                 for (i = fds_found = 0;
527                      i < fdlistno && fds_found < pollretval; i++) {
528                         bool_t done = FALSE;
529
530                         if (pfd[i].revents == 0)
531                                 continue;
532                         else if (pfd[i].revents & POLLNVAL) {
533                                 /*
534                                  * Something bad has happened to this descri-
535                                  * ptor. We can cause _poll() to ignore
536                                  * it simply by using a negative fd.  We do that
537                                  * rather than compacting the pfd[] and fdlist[]
538                                  * arrays.
539                                  */
540                                 pfd[i].fd = -1;
541                                 fds_found++;
542                                 continue;
543                         } else
544                                 fds_found++;
545 #ifdef RPC_DEBUG
546                         fprintf(stderr, "response for %s\n",
547                                 fdlist[i].nconf->nc_netid);
548 #endif
549                 try_again:
550                         inlen = _recvfrom(fdlist[i].fd, inbuf, fdlist[i].dsize,
551                             0, (struct sockaddr *)(void *)&fdlist[i].raddr,
552                             &fdlist[i].asize);
553                         if (inlen < 0) {
554                                 if (errno == EINTR)
555                                         goto try_again;
556                                 warnx("clnt_bcast: Cannot receive reply to "
557                                         "broadcast");
558                                 stat = RPC_CANTRECV;
559                                 continue;
560                         }
561                         if (inlen < sizeof (u_int32_t))
562                                 continue; /* Drop that and go ahead */
563                         /*
564                          * see if reply transaction id matches sent id.
565                          * If so, decode the results. If return id is xid + 1
566                          * it was a PORTMAP reply
567                          */
568                         if (*((u_int32_t *)(void *)(inbuf)) ==
569                             *((u_int32_t *)(void *)(outbuf))) {
570                                 pmap_reply_flag = 0;
571                                 msg.acpted_rply.ar_verf = _null_auth;
572                                 msg.acpted_rply.ar_results.where =
573                                         (caddr_t)(void *)&bres;
574                                 msg.acpted_rply.ar_results.proc =
575                                         (xdrproc_t)xdr_rpcb_rmtcallres;
576 #ifdef PORTMAP
577                         } else if (pmap_flag &&
578                                 *((u_int32_t *)(void *)(inbuf)) ==
579                                 *((u_int32_t *)(void *)(outbuf_pmap))) {
580                                 pmap_reply_flag = 1;
581                                 msg.acpted_rply.ar_verf = _null_auth;
582                                 msg.acpted_rply.ar_results.where =
583                                         (caddr_t)(void *)&bres_pmap;
584                                 msg.acpted_rply.ar_results.proc =
585                                         (xdrproc_t)xdr_rmtcallres;
586 #endif                          /* PORTMAP */
587                         } else
588                                 continue;
589                         xdrmem_create(xdrs, inbuf, (u_int)inlen, XDR_DECODE);
590                         if (xdr_replymsg(xdrs, &msg)) {
591                                 if ((msg.rm_reply.rp_stat == MSG_ACCEPTED) &&
592                                     (msg.acpted_rply.ar_stat == SUCCESS)) {
593                                         struct netbuf taddr, *np;
594                                         struct sockaddr_in *sin;
595
596 #ifdef PORTMAP
597                                         if (pmap_flag && pmap_reply_flag) {
598                                                 sin = (struct sockaddr_in *)
599                                                     (void *)&fdlist[i].raddr;
600                                                 sin->sin_port =
601                                                     htons((u_short)port);
602                                                 taddr.len = taddr.maxlen = 
603                                                     fdlist[i].raddr.ss_len;
604                                                 taddr.buf = &fdlist[i].raddr;
605                                                 done = (*eachresult)(resultsp,
606                                                     &taddr, fdlist[i].nconf);
607                                         } else {
608 #endif                          /* PORTMAP */
609 #ifdef RPC_DEBUG
610                                                 fprintf(stderr, "uaddr %s\n",
611                                                     uaddrp);
612 #endif
613                                                 np = uaddr2taddr(
614                                                     fdlist[i].nconf, uaddrp);
615                                                 done = (*eachresult)(resultsp,
616                                                     np, fdlist[i].nconf);
617                                                 free(np);
618 #ifdef PORTMAP
619                                         }
620 #endif                          /* PORTMAP */
621                                 }
622                                 /* otherwise, we just ignore the errors ... */
623                         }
624                         /* else some kind of deserialization problem ... */
625
626                         xdrs->x_op = XDR_FREE;
627                         msg.acpted_rply.ar_results.proc = (xdrproc_t) xdr_void;
628                         (void) xdr_replymsg(xdrs, &msg);
629                         (void) (*xresults)(xdrs, resultsp);
630                         XDR_DESTROY(xdrs);
631                         if (done) {
632                                 stat = RPC_SUCCESS;
633                                 goto done_broad;
634                         } else {
635                                 goto recv_again;
636                         }
637                 }               /* The recv for loop */
638         }                       /* The giant for loop */
639
640 done_broad:
641         free(inbuf);
642         free(outbuf);
643 #ifdef PORTMAP
644         free(outbuf_pmap);
645 #endif                          /* PORTMAP */
646         for (i = 0; i < fdlistno; i++) {
647                 (void)_close(fdlist[i].fd);
648                 __rpc_freebroadifs(&fdlist[i].nal);
649         }
650         AUTH_DESTROY(sys_auth);
651         (void) __rpc_endconf(handle);
652
653         return (stat);
654 }
655
656 /*
657  * rpc_broadcast()
658  *
659  * prog       - program number 
660  * vers       - version number 
661  * proc       - procedure number 
662  * xargs      - xdr routine for args 
663  * argsp      - pointer to args 
664  * xresults   - xdr routine for results 
665  * resultsp   - pointer to results 
666  * eachresult - call with each result obtained 
667  * nettype    - transport type 
668  */
669 enum clnt_stat
670 rpc_broadcast(rpcprog_t prog, rpcvers_t vers, rpcproc_t proc, xdrproc_t xargs,
671     caddr_t argsp, xdrproc_t xresults, caddr_t resultsp,
672     resultproc_t eachresult, const char *nettype)
673 {
674         enum clnt_stat  dummy;
675
676         dummy = rpc_broadcast_exp(prog, vers, proc, xargs, argsp,
677                 xresults, resultsp, eachresult,
678                 INITTIME, WAITTIME, nettype);
679         return (dummy);
680 }