1 /* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1997.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
22 #include <sys/ioctl.h>
23 #include <sys/socket.h>
24 #include <rpc/pmap_prot.h>
25 #include <rpc/pmap_clnt.h>
26 #include <rpcsvc/nis.h>
28 #include "nis_intern.h"
30 /* Private data kept per client handle, from sunrpc/clnt_udp.c */
35 struct sockaddr_in cu_raddr
;
37 struct timeval cu_wait
;
38 struct timeval cu_total
;
39 struct rpc_err cu_error
;
49 /* The following is the original routine from sunrpc/pm_getport.c.
50 The only change is the much shorter timeout. */
53 * Client interface to pmap rpc service.
55 * Copyright (C) 1984, Sun Microsystems, Inc.
59 * Find the mapped port for program,version.
60 * Calls the pmap service remotely to do the lookup.
61 * Returns 0 if no map exists.
64 __pmap_getnisport (struct sockaddr_in
*address
, u_long program
,
65 u_long version
, u_int protocol
)
67 const struct timeval timeout
= {1, 0};
68 const struct timeval tottimeout
= {1, 0};
74 address
->sin_port
= htons (PMAPPORT
);
75 client
= clntudp_bufcreate (address
, PMAPPROG
, PMAPVERS
, timeout
, &socket
,
76 RPCSMALLMSGSIZE
, RPCSMALLMSGSIZE
);
77 if (client
!= (CLIENT
*) NULL
)
79 parms
.pm_prog
= program
;
80 parms
.pm_vers
= version
;
81 parms
.pm_prot
= protocol
;
82 parms
.pm_port
= 0; /* not needed or used */
83 if (CLNT_CALL (client
, PMAPPROC_GETPORT
, (xdrproc_t
) xdr_pmap
,
84 (caddr_t
) & parms
, (xdrproc_t
) xdr_u_short
,
85 (caddr_t
) & port
, tottimeout
) != RPC_SUCCESS
)
87 rpc_createerr
.cf_stat
= RPC_PMAPFAILURE
;
88 clnt_geterr (client
, &rpc_createerr
.cf_error
);
93 rpc_createerr
.cf_stat
= RPC_PROGNOTREGISTERED
;
95 CLNT_DESTROY (client
);
97 /* (void)close(socket); CLNT_DESTROY already closed it */
98 address
->sin_port
= 0;
102 /* This is now the public function, which should find the fastest server */
106 struct sockaddr_in sin
;
113 __nis_findfastest (dir_binding
*bind
)
118 for (i
= 0; i
< bind
->server_len
; i
++)
119 for (j
= 0; j
< bind
->server_val
[i
].ep
.ep_len
; ++j
)
120 if (strcmp (bind
->server_val
[i
].ep
.ep_val
[j
].family
, "inet") == 0)
121 if ((bind
->server_val
[i
].ep
.ep_val
[j
].proto
== NULL
) ||
122 (bind
->server_val
[i
].ep
.ep_val
[j
].proto
[0] == '-') ||
123 (bind
->server_val
[i
].ep
.ep_val
[j
].proto
[0] == '\0'))
125 bind
->server_used
= i
;
126 bind
->current_ep
= j
;
132 const struct timeval TIMEOUT50
= {5, 0};
133 const struct timeval TIMEOUT00
= {0, 0};
134 struct findserv_req
**pings
;
135 struct sockaddr_in sin
, saved_sin
;
137 u_int32_t xid_seed
, xid_lookup
;
138 int sock
, dontblock
= 1;
142 u_long i
, j
, pings_count
, pings_max
;
145 pings_max
= bind
->server_len
* 2; /* Reserve a little bit more memory
146 for multihomed hosts */
148 pings
= malloc (sizeof (struct findserv_req
*) * pings_max
);
149 xid_seed
= (u_int32_t
) (time (NULL
) ^ getpid ());
151 memset (&sin
, '\0', sizeof (sin
));
152 sin
.sin_family
= AF_INET
;
153 for (i
= 0; i
< bind
->server_len
; i
++)
154 for (j
= 0; j
< bind
->server_val
[i
].ep
.ep_len
; ++j
)
155 if (strcmp (bind
->server_val
[i
].ep
.ep_val
[j
].family
, "inet") == 0)
156 if ((bind
->server_val
[i
].ep
.ep_val
[j
].proto
== NULL
) ||
157 (bind
->server_val
[i
].ep
.ep_val
[j
].proto
[0] == '-') ||
158 (bind
->server_val
[i
].ep
.ep_val
[j
].proto
[0] == '\0'))
160 sin
.sin_addr
.s_addr
=
161 inetstr2int (bind
->server_val
[i
].ep
.ep_val
[j
].uaddr
);
162 if (sin
.sin_addr
.s_addr
== 0)
164 sin
.sin_port
= htons (__pmap_getnisport (&sin
, NIS_PROG
,
167 if (sin
.sin_port
== 0)
170 if (pings_count
>= pings_max
)
173 pings
= realloc (pings
, sizeof (struct findserv_req
) *
176 pings
[pings_count
] = calloc (1, sizeof (struct findserv_req
));
177 memcpy ((char *) &pings
[pings_count
]->sin
, (char *) &sin
,
179 memcpy ((char *)&saved_sin
, (char *)&sin
, sizeof(sin
));
180 pings
[pings_count
]->xid
= xid_seed
;
181 pings
[pings_count
]->server_nr
= i
;
182 pings
[pings_count
]->server_ep
= j
;
187 /* Make sure at least one server was assigned */
188 if (pings_count
== 0)
194 /* Create RPC handle */
195 sock
= socket (AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
196 clnt
= clntudp_create (&saved_sin
, NIS_PROG
, NIS_VERSION
, TIMEOUT50
, &sock
);
200 for (i
= 0; i
< pings_count
; ++i
)
205 auth_destroy (clnt
->cl_auth
);
206 clnt
->cl_auth
= authunix_create_default ();
207 cu
= (struct cu_data
*) clnt
->cl_private
;
208 clnt_control (clnt
, CLSET_TIMEOUT
, (char *) &TIMEOUT00
);
209 ioctl (sock
, FIONBIO
, &dontblock
);
211 /* Send to all servers the NULLPROC */
212 for (i
= 0; i
< pings_count
; ++i
)
214 /* clntudp_call() will increment, subtract one */
215 *((u_int32_t
*) (cu
->cu_outbuf
)) = pings
[i
]->xid
- 1;
216 memcpy ((char *) &cu
->cu_raddr
, (char *) &pings
[i
]->sin
,
217 sizeof (struct sockaddr_in
));
218 /* Transmit to NULLPROC, return immediately. */
219 clnt_call (clnt
, NULLPROC
, (xdrproc_t
) xdr_void
, (caddr_t
) foo
,
220 (xdrproc_t
) xdr_void
, (caddr_t
) & clnt_res
, TIMEOUT00
);
223 /* Receive reply from NULLPROC asynchronously */
224 memset ((char *) &clnt_res
, 0, sizeof (clnt_res
));
225 clnt_call (clnt
, NULLPROC
, (xdrproc_t
) NULL
, (caddr_t
) foo
,
226 (xdrproc_t
) xdr_void
, (caddr_t
) &clnt_res
, TIMEOUT00
);
228 xid_lookup
= *((u_int32_t
*) (cu
->cu_inbuf
));
229 for (i
= 0; i
< pings_count
; i
++)
231 if (pings
[i
]->xid
== xid_lookup
)
233 bind
->server_used
= pings
[i
]->server_nr
;
234 bind
->current_ep
= pings
[i
]->server_ep
;
239 auth_destroy (clnt
->cl_auth
);
243 for (i
= 0; i
< pings_count
; ++i
)