1 /* Copyright (C) 1997,1998,2001,2004,2005,2006 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 Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the 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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 #include <rpcsvc/nis.h>
27 #include <sys/socket.h>
28 #include <netinet/in.h>
29 #include <arpa/inet.h>
32 #include "nis_intern.h"
34 static const struct timeval RPCTIMEOUT
= {10, 0};
35 static const struct timeval UDPTIMEOUT
= {5, 0};
37 extern u_short
__pmap_getnisport (struct sockaddr_in
*address
, u_long program
,
38 u_long version
, u_int protocol
);
41 inetstr2int (const char *str
)
44 for (size_t i
= 0; str
[i
] != '\0'; ++i
)
45 if (str
[i
] == '.' && ++j
== 4)
49 return inet_addr (memcpy (buffer
, str
, i
));
52 return inet_addr (str
);
56 __nisbind_destroy (dir_binding
*bind
)
58 if (bind
->clnt
!= NULL
)
61 auth_destroy (bind
->clnt
->cl_auth
);
62 clnt_destroy (bind
->clnt
);
65 libnsl_hidden_def (__nisbind_destroy
)
68 __nisbind_next (dir_binding
*bind
)
72 if (bind
->clnt
!= NULL
)
75 auth_destroy (bind
->clnt
->cl_auth
);
76 clnt_destroy (bind
->clnt
);
80 if (bind
->trys
>= bind
->server_len
)
83 for (j
= bind
->current_ep
+ 1;
84 j
< bind
->server_val
[bind
->server_used
].ep
.ep_len
; ++j
)
85 if (strcmp (bind
->server_val
[bind
->server_used
].ep
.ep_val
[j
].family
,
87 if (bind
->server_val
[bind
->server_used
].ep
.ep_val
[j
].proto
[0] == '-')
95 if (bind
->server_used
>= bind
->server_len
)
96 bind
->server_used
= 0;
98 for (j
= 0; j
< bind
->server_val
[bind
->server_used
].ep
.ep_len
; ++j
)
99 if (strcmp (bind
->server_val
[bind
->server_used
].ep
.ep_val
[j
].family
,
101 if (bind
->server_val
[bind
->server_used
].ep
.ep_val
[j
].proto
[0] == '-')
103 bind
->current_ep
= j
;
109 libnsl_hidden_def (__nisbind_next
)
112 __nisbind_connect (dir_binding
*dbp
)
119 serv
= &dbp
->server_val
[dbp
->server_used
];
121 memset (&dbp
->addr
, '\0', sizeof (dbp
->addr
));
122 dbp
->addr
.sin_family
= AF_INET
;
124 dbp
->addr
.sin_addr
.s_addr
=
125 inetstr2int (serv
->ep
.ep_val
[dbp
->current_ep
].uaddr
);
127 if (dbp
->addr
.sin_addr
.s_addr
== 0)
130 /* Check, if the host is online and rpc.nisd is running. Much faster
131 then the clnt*_create functions: */
132 if (__pmap_getnisport (&dbp
->addr
, NIS_PROG
, NIS_VERSION
, IPPROTO_UDP
) == 0)
135 dbp
->socket
= RPC_ANYSOCK
;
137 dbp
->clnt
= clntudp_create (&dbp
->addr
, NIS_PROG
, NIS_VERSION
,
138 UDPTIMEOUT
, &dbp
->socket
);
140 dbp
->clnt
= clnttcp_create (&dbp
->addr
, NIS_PROG
, NIS_VERSION
,
143 if (dbp
->clnt
== NULL
)
146 clnt_control (dbp
->clnt
, CLSET_TIMEOUT
, (caddr_t
) &RPCTIMEOUT
);
147 /* If the program exists, close the socket */
148 if (fcntl (dbp
->socket
, F_SETFD
, 1) == -1)
149 perror ("fcntl: F_SETFD");
153 if (serv
->key_type
== NIS_PK_DH
)
155 char netname
[MAXNETNAMELEN
+ 1];
158 p
= stpcpy (netname
, "unix.");
159 strncpy (p
, serv
->name
, MAXNETNAMELEN
- 5);
160 netname
[MAXNETNAMELEN
] = '\0';
161 // XXX What is this supposed to do? If we really want to replace
162 // XXX the first dot, then we might as well use unix@ as the
163 // XXX prefix string. --drepper
164 p
= strchr (netname
, '.');
167 authdes_pk_create (netname
, &serv
->pkey
, 300, NULL
, NULL
);
168 if (!dbp
->clnt
->cl_auth
)
169 dbp
->clnt
->cl_auth
= authunix_create_default ();
172 dbp
->clnt
->cl_auth
= authunix_create_default ();
177 libnsl_hidden_def (__nisbind_connect
)
180 __nisbind_create (dir_binding
*dbp
, const nis_server
*serv_val
,
181 unsigned int serv_len
, unsigned int flags
)
185 dbp
->server_len
= serv_len
;
186 dbp
->server_val
= (nis_server
*)serv_val
;
188 if (flags
& USE_DGRAM
)
191 dbp
->use_udp
= FALSE
;
193 if (flags
& NO_AUTHINFO
)
194 dbp
->use_auth
= FALSE
;
196 dbp
->use_auth
= TRUE
;
198 if (flags
& MASTER_ONLY
)
199 dbp
->master_only
= TRUE
;
201 dbp
->master_only
= FALSE
;
203 /* We try the first server */
207 if (__nis_findfastest (dbp
) < 1)
208 return NIS_NAMEUNREACHABLE
;
212 libnsl_hidden_def (__nisbind_create
)
214 /* __nisbind_connect (dbp) must be run before calling this function !
215 So we could use the same binding twice */
217 __do_niscall3 (dir_binding
*dbp
, u_long prog
, xdrproc_t xargs
, caddr_t req
,
218 xdrproc_t xres
, caddr_t resp
, unsigned int flags
, nis_cb
*cb
)
220 enum clnt_stat result
;
224 return NIS_NAMEUNREACHABLE
;
229 result
= clnt_call (dbp
->clnt
, prog
, xargs
, req
, xres
, resp
, RPCTIMEOUT
);
231 if (result
!= RPC_SUCCESS
)
232 retcode
= NIS_RPCERROR
;
238 if ((((nis_result
*)resp
)->status
== NIS_CBRESULTS
) &&
241 __nis_do_callback (dbp
, &((nis_result
*) resp
)->cookie
, cb
);
244 /* Yes, the missing break is correct. If we doesn't have to
245 start a callback, look if we have to search another server */
255 if (((nis_result
*)resp
)->status
== NIS_SYSTEMERROR
256 || ((nis_result
*)resp
)->status
== NIS_NOSUCHNAME
257 || ((nis_result
*)resp
)->status
== NIS_NOT_ME
)
259 if (__nisbind_next (dbp
) == NIS_SUCCESS
)
261 while (__nisbind_connect (dbp
) != NIS_SUCCESS
)
263 if (__nisbind_next (dbp
) != NIS_SUCCESS
)
268 break; /* No more servers to search in */
272 case NIS_FINDDIRECTORY
:
273 if (((fd_result
*)resp
)->status
== NIS_SYSTEMERROR
274 || ((fd_result
*)resp
)->status
== NIS_NOSUCHNAME
275 || ((fd_result
*)resp
)->status
== NIS_NOT_ME
)
277 if (__nisbind_next (dbp
) == NIS_SUCCESS
)
279 while (__nisbind_connect (dbp
) != NIS_SUCCESS
)
281 if (__nisbind_next (dbp
) != NIS_SUCCESS
)
286 break; /* No more servers to search in */
290 case NIS_DUMPLOG
: /* log_result */
292 if (((log_result
*)resp
)->lr_status
== NIS_SYSTEMERROR
293 || ((log_result
*)resp
)->lr_status
== NIS_NOSUCHNAME
294 || ((log_result
*)resp
)->lr_status
== NIS_NOT_ME
)
296 if (__nisbind_next (dbp
) == NIS_SUCCESS
)
298 while (__nisbind_connect (dbp
) != NIS_SUCCESS
)
300 if (__nisbind_next (dbp
) != NIS_SUCCESS
)
305 break; /* No more servers to search in */
312 retcode
= NIS_SUCCESS
;
315 while ((flags
& HARD_LOOKUP
) && retcode
== NIS_RPCERROR
);
321 __do_niscall2 (const nis_server
*server
, u_int server_len
, u_long prog
,
322 xdrproc_t xargs
, caddr_t req
, xdrproc_t xres
, caddr_t resp
,
323 unsigned int flags
, nis_cb
*cb
)
328 if (flags
& MASTER_ONLY
)
331 status
= __nisbind_create (&dbp
, server
, server_len
, flags
);
332 if (status
!= NIS_SUCCESS
)
335 while (__nisbind_connect (&dbp
) != NIS_SUCCESS
)
336 if (__nisbind_next (&dbp
) != NIS_SUCCESS
)
337 return NIS_NAMEUNREACHABLE
;
339 status
= __do_niscall3 (&dbp
, prog
, xargs
, req
, xres
, resp
, flags
, cb
);
341 __nisbind_destroy (&dbp
);
347 static directory_obj
*
348 rec_dirsearch (const_nis_name name
, directory_obj
*dir
, nis_error
*status
)
353 switch (nis_dir_cmp (name
, dir
->do_name
))
356 *status
= NIS_SUCCESS
;
359 /* NOT_SEQUENTIAL means, go one up and try it there ! */
361 { /* We need data from a parent domain */
363 char ndomain
[strlen (name
) + 3];
365 nis_domain_of_r (dir
->do_name
, ndomain
, sizeof (ndomain
));
367 /* The root server of our domain is a replica of the parent
368 domain ! (Now I understand why a root server must be a
369 replica of the parent domain) */
370 fd_res
= __nis_finddirectory (dir
, ndomain
);
373 nis_free_directory (dir
);
374 *status
= NIS_NOMEMORY
;
377 *status
= fd_res
->status
;
378 if (fd_res
->status
!= NIS_SUCCESS
)
380 /* Try the current directory obj, maybe it works */
381 __free_fdresult (fd_res
);
384 nis_free_directory (dir
);
385 obj
= calloc (1, sizeof (directory_obj
));
388 __free_fdresult (fd_res
);
389 *status
= NIS_NOMEMORY
;
392 xdrmem_create (&xdrs
, fd_res
->dir_data
.dir_data_val
,
393 fd_res
->dir_data
.dir_data_len
, XDR_DECODE
);
394 _xdr_directory_obj (&xdrs
, obj
);
396 __free_fdresult (fd_res
);
398 /* We have found a NIS+ server serving ndomain, now
399 let us search for "name" */
400 return rec_dirsearch (name
, obj
, status
);
406 size_t namelen
= strlen (name
);
407 char leaf
[namelen
+ 3];
408 char domain
[namelen
+ 3];
409 char ndomain
[namelen
+ 3];
413 strcpy (domain
, name
);
417 if (domain
[0] == '\0')
419 nis_free_directory (dir
);
422 nis_leaf_of_r (domain
, leaf
, sizeof (leaf
));
423 nis_domain_of_r (domain
, ndomain
, sizeof (ndomain
));
424 strcpy (domain
, ndomain
);
427 while (nis_dir_cmp (domain
, dir
->do_name
) != SAME_NAME
);
431 /* We have found the directory above. Use it. */
435 cp
= rawmemchr (leaf
, '\0');
439 fd_res
= __nis_finddirectory (dir
, leaf
);
442 nis_free_directory (dir
);
443 *status
= NIS_NOMEMORY
;
446 *status
= fd_res
->status
;
447 if (fd_res
->status
!= NIS_SUCCESS
)
449 /* Try the current directory object, maybe it works */
450 __free_fdresult (fd_res
);
453 nis_free_directory (dir
);
454 obj
= calloc (1, sizeof(directory_obj
));
457 __free_fdresult (fd_res
);
458 *status
= NIS_NOMEMORY
;
461 xdrmem_create (&xdrs
, fd_res
->dir_data
.dir_data_val
,
462 fd_res
->dir_data
.dir_data_len
, XDR_DECODE
);
463 _xdr_directory_obj (&xdrs
, obj
);
465 __free_fdresult (fd_res
);
466 /* We have found a NIS+ server serving ndomain, now
467 let us search for "name" */
468 return rec_dirsearch (name
, obj
, status
);
472 nis_free_directory (dir
);
473 *status
= NIS_BADNAME
;
476 nis_free_directory (dir
);
481 /* We try to query the current server for the searched object,
482 maybe he know about it ? */
483 static directory_obj
*
484 first_shoot (const_nis_name name
, directory_obj
*dir
)
486 directory_obj
*obj
= NULL
;
489 char domain
[strlen (name
) + 3];
491 if (nis_dir_cmp (name
, dir
->do_name
) == SAME_NAME
)
494 nis_domain_of_r (name
, domain
, sizeof (domain
));
496 if (nis_dir_cmp (domain
, dir
->do_name
) == SAME_NAME
)
499 fd_res
= __nis_finddirectory (dir
, domain
);
502 if (fd_res
->status
== NIS_SUCCESS
503 && (obj
= calloc (1, sizeof (directory_obj
))) != NULL
)
505 xdrmem_create(&xdrs
, fd_res
->dir_data
.dir_data_val
,
506 fd_res
->dir_data
.dir_data_len
, XDR_DECODE
);
507 _xdr_directory_obj (&xdrs
, obj
);
511 __free_fdresult (fd_res
);
514 nis_free_directory (dir
);
520 __nisfind_server (const_nis_name name
, directory_obj
**dir
)
526 /* Search in local cache. In the moment, we ignore the fastest server */
527 if (!(flags
& NO_CACHE
))
528 dir
= __nis_cache_search (name
, flags
, &cinfo
);
531 nis_error result
= NIS_SUCCESS
;
537 *dir
= readColdStartFile ();
539 /* No /var/nis/NIS_COLD_START->no NIS+ installed. */
542 /* Try at first, if servers in "dir" know our object */
543 obj
= first_shoot (name
, *dir
);
546 obj
= rec_dirsearch (name
, *dir
, &status
);
558 __do_niscall (const_nis_name name
, u_long prog
, xdrproc_t xargs
,
559 caddr_t req
, xdrproc_t xres
, caddr_t resp
, unsigned int flags
,
564 directory_obj
*dir
= NULL
;
567 int saved_errno
= errno
;
569 retcode
= __nisfind_server (name
, &dir
);
570 if (retcode
!= NIS_SUCCESS
)
573 if (flags
& MASTER_ONLY
)
575 server
= dir
->do_servers
.do_servers_val
;
580 server
= dir
->do_servers
.do_servers_val
;
581 server_len
= dir
->do_servers
.do_servers_len
;
584 retcode
= __nisbind_create (&bptr
, server
, server_len
, flags
);
585 if (retcode
== NIS_SUCCESS
)
587 while (__nisbind_connect (&bptr
) != NIS_SUCCESS
)
589 if (__nisbind_next (&bptr
) != NIS_SUCCESS
)
591 nis_free_directory (dir
);
592 return NIS_NAMEUNREACHABLE
;
595 retcode
= __do_niscall3 (&bptr
, prog
, xargs
, req
, xres
, resp
, flags
, cb
);
597 __nisbind_destroy (&bptr
);
600 nis_free_directory (dir
);
602 __set_errno (saved_errno
);