4 * This module contains the private function __rpc_get_time_offset()
5 * which will return the difference in seconds between the local system's
6 * notion of time and a remote server's notion of time. This must be
7 * possible without calling any functions that may invoke the name
8 * service. (netdir_getbyxxx, getXbyY, etc). The function is used in the
9 * synchronize call of the authdes code to synchronize clocks between
10 * NIS+ clients and their servers.
12 * Note to minimize the amount of duplicate code, portions of the
13 * synchronize() function were folded into this code, and the synchronize
14 * call becomes simply a wrapper around this function. Further, if this
15 * function is called with a timehost it *DOES* recurse to the name
16 * server so don't use it in that mode if you are doing name service code.
18 * Copyright (c) 1992 Sun Microsystems Inc.
19 * All rights reserved.
22 * When called a client handle to a RPCBIND process is created
23 * and destroyed. Two strings "netid" and "uaddr" are malloc'd
24 * and returned. The SIGALRM processing is modified only if
25 * needed to deal with TCP connections.
27 * @(#)auth_time.c 1.4 92/11/10 SMI
28 * $FreeBSD: src/lib/libc/rpc/auth_time.c,v 1.12 2007/09/20 22:35:24 matteo Exp $
29 * $DragonFly: src/lib/libc/rpc/auth_time.c,v 1.4 2005/11/13 12:27:04 swildner Exp $
32 #include "namespace.h"
39 #include <sys/signal.h>
40 #include <sys/errno.h>
41 #include <sys/socket.h>
42 #include <netinet/in.h>
43 #include <arpa/inet.h>
45 #include <rpc/rpc_com.h>
46 #include <rpc/rpcb_prot.h>
48 #include <rpcsvc/nis.h>
49 #include "un-namespace.h"
51 extern int _rpc_dtablesize(void);
54 #define msg(x) printf("ERROR: %s\n", x)
55 /* #define msg(x) syslog(LOG_ERR, "%s", x) */
60 static int saw_alarm
= 0;
70 * The internet time server defines the epoch to be Jan 1, 1900
71 * whereas UNIX defines it to be Jan 1, 1970. To adjust the result
72 * from internet time-service time, into UNIX time we subtract the
75 #define NYEARS (1970 - 1900)
76 #define TOFFSET ((u_long)60*60*24*(365*NYEARS + (NYEARS/4)))
80 * Stolen from rpc.nisd:
81 * Turn a 'universal address' into a struct sockaddr_in.
85 uaddr_to_sockaddr(char *uaddr
, struct sockaddr_in
*sin
)
87 unsigned char p_bytes
[2];
91 i
= sscanf(uaddr
, "%lu.%lu.%lu.%lu.%lu.%lu", &a
[0], &a
[1], &a
[2],
97 for (i
= 0; i
< 4; i
++)
98 sin
->sin_addr
.s_addr
|= (a
[i
] & 0x000000FF) << (8 * i
);
100 p_bytes
[0] = (unsigned char)a
[4] & 0x000000FF;
101 p_bytes
[1] = (unsigned char)a
[5] & 0x000000FF;
103 sin
->sin_family
= AF_INET
; /* always */
104 bcopy((char *)&p_bytes
, (char *)&sin
->sin_port
, 2);
112 * Free the strings that were strduped into the eps structure.
115 free_eps(endpoint eps
[], int num
)
119 for (i
= 0; i
< num
; i
++) {
130 * This function constructs a nis_server structure description for the
131 * indicated hostname.
133 * NOTE: There is a chance we may end up recursing here due to the
134 * fact that gethostbyname() could do an NIS search. Ideally, the
135 * NIS+ server will call __rpc_get_time_offset() with the nis_server
136 * structure already populated.
139 get_server(struct sockaddr_in
*sin
,
140 char *host
, /* name of the time host */
141 nis_server
*srv
, /* nis_server struct to use. */
142 endpoint eps
[], /* array of endpoints */
143 int maxep
) /* max array size */
148 struct hostent dummy
;
152 if (host
== NULL
&& sin
== NULL
)
156 he
= gethostbyname(host
);
161 ptr
[0] = (char *)&sin
->sin_addr
.s_addr
;
163 dummy
.h_addr_list
= ptr
;
167 * This is lame. We go around once for TCP, then again
170 for (i
= 0, ep
= eps
; (he
->h_addr_list
[i
] != NULL
) && (num_ep
< maxep
);
171 i
++, ep
++, num_ep
++) {
174 a
= (struct in_addr
*)he
->h_addr_list
[i
];
175 snprintf(hname
, sizeof(hname
), "%s.0.111", inet_ntoa(*a
));
176 ep
->uaddr
= strdup(hname
);
177 ep
->family
= strdup("inet");
178 ep
->proto
= strdup("tcp");
179 if (ep
->uaddr
== NULL
|| ep
->family
== NULL
|| ep
->proto
== NULL
) {
180 free_eps(eps
, num_ep
+ 1);
185 for (i
= 0; (he
->h_addr_list
[i
] != NULL
) && (num_ep
< maxep
);
186 i
++, ep
++, num_ep
++) {
189 a
= (struct in_addr
*)he
->h_addr_list
[i
];
190 snprintf(hname
, sizeof(hname
), "%s.0.111", inet_ntoa(*a
));
191 ep
->uaddr
= strdup(hname
);
192 ep
->family
= strdup("inet");
193 ep
->proto
= strdup("udp");
194 if (ep
->uaddr
== NULL
|| ep
->family
== NULL
|| ep
->proto
== NULL
) {
195 free_eps(eps
, num_ep
+ 1);
200 srv
->name
= (nis_name
) host
;
201 srv
->ep
.ep_len
= num_ep
;
202 srv
->ep
.ep_val
= eps
;
203 srv
->key_type
= NIS_PK_NONE
;
204 srv
->pkey
.n_bytes
= NULL
;
210 * __rpc_get_time_offset()
212 * This function uses a nis_server structure to contact the a remote
213 * machine (as named in that structure) and returns the offset in time
214 * between that machine and this one. This offset is returned in seconds
215 * and may be positive or negative.
217 * The first time through, a lot of fiddling is done with the netconfig
218 * stuff to find a suitable transport. The function is very aggressive
219 * about choosing UDP or at worst TCP if it can. This is because
220 * those transports support both the RCPBIND call and the internet
223 * Once through, *uaddr is set to the universal address of
224 * the machine and *netid is set to the local netid for the transport
225 * that uaddr goes with. On the second call, the netconfig stuff
226 * is skipped and the uaddr/netid pair are used to fetch the netconfig
227 * structure and to then contact the machine for the time.
229 * td = "server" - "client"
232 __rpc_get_time_offset(struct timeval
*td
, /* Time difference */
233 nis_server
*srv
, /* NIS Server description */
234 char *thost
, /* if no server, this is the timehost */
235 char **uaddr
, /* known universal address */
236 struct sockaddr_in
*netid
)/* known network identifier */
238 CLIENT
*clnt
; /* Client handle */
239 endpoint
*ep
, /* useful endpoints */
240 *useep
= NULL
; /* endpoint of xp */
241 char *useua
= NULL
; /* uaddr of selected xp */
242 int epl
, i
; /* counters */
243 enum clnt_stat status
; /* result of clnt_call */
244 u_long thetime
, delta
;
248 int udp_ep
= -1, tcp_ep
= -1;
250 char ut
[64], ipuaddr
[64];
253 void (*oldsig
)() = NULL
; /* old alarm handler */
254 struct sockaddr_in sin
;
263 * First check to see if we need to find and address for this
266 if (*uaddr
== NULL
) {
267 if ((srv
!= NULL
) && (thost
!= NULL
)) {
268 msg("both timehost and srv pointer used!");
272 srv
= get_server(netid
, thost
, &tsrv
, teps
, 32);
274 msg("unable to contruct server data.");
277 needfree
= 1; /* need to free data in endpoints */
281 epl
= srv
->ep
.ep_len
;
283 /* Identify the TCP and UDP endpoints */
285 (i
< epl
) && ((udp_ep
== -1) || (tcp_ep
== -1)); i
++) {
286 if (strcasecmp(ep
[i
].proto
, "udp") == 0)
288 if (strcasecmp(ep
[i
].proto
, "tcp") == 0)
292 /* Check to see if it is UDP or TCP */
295 useua
= ep
[tcp_ep
].uaddr
;
297 } else if (udp_ep
> -1) {
299 useua
= ep
[udp_ep
].uaddr
;
304 msg("no acceptable transport endpoints.");
306 free_eps(teps
, tsrv
.ep
.ep_len
);
312 * Create a sockaddr from the uaddr.
317 /* Fixup test for NIS+ */
318 sscanf(useua
, "%d.%d.%d.%d.", &a1
, &a2
, &a3
, &a4
);
319 sprintf(ipuaddr
, "%d.%d.%d.%d.0.111", a1
, a2
, a3
, a4
);
322 bzero((char *)&sin
, sizeof(sin
));
323 if (uaddr_to_sockaddr(useua
, &sin
)) {
324 msg("unable to translate uaddr to sockaddr.");
326 free_eps(teps
, tsrv
.ep
.ep_len
);
331 * Create the client handle to rpcbind. Note we always try
332 * version 3 since that is the earliest version that supports
333 * the RPCB_GETTIME call. Also it is the version that comes
334 * standard with SVR4. Since most everyone supports TCP/IP
335 * we could consider trying the rtime call first.
337 clnt
= clnttcp_create(&sin
, RPCBPROG
, RPCBVERS
, &s
, 0, 0);
339 msg("unable to create client handle to rpcbind.");
341 free_eps(teps
, tsrv
.ep
.ep_len
);
348 status
= clnt_call(clnt
, RPCBPROC_GETTIME
, (xdrproc_t
)xdr_void
, NULL
,
349 (xdrproc_t
)xdr_u_long
, &thetime
, tv
);
351 * The only error we check for is anything but success. In
352 * fact we could have seen PROGMISMATCH if talking to a 4.1
353 * machine (pmap v2) or TIMEDOUT if the net was busy.
355 if (status
== RPC_SUCCESS
)
360 /* Blow away possible stale CLNT handle. */
367 * Convert PMAP address into timeservice address
368 * We take advantage of the fact that we "know" what
369 * the universal address looks like for inet transports.
371 * We also know that the internet timeservice is always
372 * listening on port 37.
374 sscanf(useua
, "%d.%d.%d.%d.", &a1
, &a2
, &a3
, &a4
);
375 sprintf(ut
, "%d.%d.%d.%d.0.37", a1
, a2
, a3
, a4
);
377 if (uaddr_to_sockaddr(ut
, &sin
)) {
378 msg("cannot convert timeservice uaddr to sockaddr.");
382 s
= _socket(AF_INET
, type
, 0);
384 msg("unable to open fd to network.");
389 * Now depending on whether or not we're talking to
390 * UDP we set a timeout or not.
392 if (type
== SOCK_DGRAM
) {
393 struct timeval timeout
= { 20, 0 };
394 struct sockaddr_in from
;
398 if (_sendto(s
, &thetime
, sizeof(thetime
), 0,
399 (struct sockaddr
*)&sin
, sizeof(sin
)) == -1) {
400 msg("udp : sendto failed.");
406 res
= _select(_rpc_dtablesize(), &readfds
,
407 NULL
, NULL
, &timeout
);
408 } while (res
< 0 && errno
== EINTR
);
412 res
= _recvfrom(s
, (char *)&thetime
, sizeof(thetime
), 0,
413 (struct sockaddr
*)&from
, &len
);
415 msg("recvfrom failed on udp transport.");
422 oldsig
= (void (*)())signal(SIGALRM
, alarm_hndler
);
423 saw_alarm
= 0; /* global tracking the alarm */
424 alarm(20); /* only wait 20 seconds */
425 res
= _connect(s
, (struct sockaddr
*)&sin
, sizeof(sin
));
427 msg("failed to connect to tcp endpoint.");
431 msg("alarm caught it, must be unreachable.");
434 res
= _read(s
, (char *)&thetime
, sizeof(thetime
));
435 if (res
!= sizeof(thetime
)) {
437 msg("timed out TCP call.");
439 msg("wrong size of results returned");
451 thetime
= ntohl(thetime
);
452 thetime
= thetime
- TOFFSET
; /* adjust to UNIX time */
457 gettimeofday(&tv
, 0);
461 * clean up our allocated data structures.
464 if (s
!= RPC_ANYSOCK
)
470 alarm(0); /* reset that alarm if its outstanding */
472 signal(SIGALRM
, oldsig
);
476 * note, don't free uaddr strings until after we've made a
481 *uaddr
= strdup(useua
);
483 /* Round to the nearest second */
484 tv
.tv_sec
+= (tv
.tv_sec
> 500000) ? 1 : 0;
485 delta
= (thetime
> tv
.tv_sec
) ? thetime
- tv
.tv_sec
:
487 td
->tv_sec
= (thetime
< tv
.tv_sec
) ? - delta
: delta
;
490 msg("unable to get the server's time.");
494 free_eps(teps
, tsrv
.ep
.ep_len
);