xref: /freebsd/lib/libc/rpc/rtime.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /*
2  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3  * unrestricted use provided that this legend is included on all tape
4  * media and as a part of the software program in whole or part.  Users
5  * may copy or modify Sun RPC without charge, but are not authorized
6  * to license or distribute it to anyone else except as part of a product or
7  * program developed by the user.
8  *
9  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
11  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
12  *
13  * Sun RPC is provided with no support and without any obligation on the
14  * part of Sun Microsystems, Inc. to assist in its use, correction,
15  * modification or enhancement.
16  *
17  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19  * OR ANY PART THEREOF.
20  *
21  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22  * or profits or other special, indirect and consequential damages, even if
23  * Sun has been advised of the possibility of such damages.
24  *
25  * Sun Microsystems, Inc.
26  * 2550 Garcia Avenue
27  * Mountain View, California  94043
28  */
29 
30 /*
31  * Copyright (c) 1988 by Sun Microsystems, Inc.
32 
33  */
34 
35 /*
36  * rtime - get time from remote machine
37  *
38  * gets time, obtaining value from host
39  * on the udp/time socket.  Since timeserver returns
40  * with time of day in seconds since Jan 1, 1900,  must
41  * subtract seconds before Jan 1, 1970 to get
42  * what unix uses.
43  */
44 #include "namespace.h"
45 #include <stdlib.h>
46 #include <string.h>
47 #include <unistd.h>
48 #include <errno.h>
49 #include <sys/types.h>
50 #include <sys/socket.h>
51 #include <sys/time.h>
52 #include <netinet/in.h>
53 #include <stdio.h>
54 #include <netdb.h>
55 #include "un-namespace.h"
56 
57 #if defined(LIBC_SCCS) && !defined(lint)
58 /* from: static char sccsid[] = 	"@(#)rtime.c	2.2 88/08/10 4.0 RPCSRC; from 1.8 88/02/08 SMI"; */
59 static const char rcsid[] = "$FreeBSD$";
60 #endif
61 
62 extern int _rpc_dtablesize __P(( void ));
63 
64 #define NYEARS	(unsigned long)(1970 - 1900)
65 #define TOFFSET (unsigned long)(60*60*24*(365*NYEARS + (NYEARS/4)))
66 
67 static void do_close __P(( int ));
68 
69 int
70 rtime(addrp, timep, timeout)
71 	struct sockaddr_in *addrp;
72 	struct timeval *timep;
73 	struct timeval *timeout;
74 {
75 	int s;
76 	fd_set readfds;
77 	int res;
78 	unsigned long thetime;
79 	struct sockaddr_in from;
80 	int fromlen;
81 	int type;
82 	struct servent *serv;
83 
84 	if (timeout == NULL) {
85 		type = SOCK_STREAM;
86 	} else {
87 		type = SOCK_DGRAM;
88 	}
89 	s = _socket(AF_INET, type, 0);
90 	if (s < 0) {
91 		return(-1);
92 	}
93 	addrp->sin_family = AF_INET;
94 
95 	/* TCP and UDP port are the same in this case */
96 	if ((serv = getservbyname("time", "tcp")) == NULL) {
97 		return(-1);
98 	}
99 
100 	addrp->sin_port = serv->s_port;
101 
102 	if (type == SOCK_DGRAM) {
103 		res = _sendto(s, (char *)&thetime, sizeof(thetime), 0,
104 			     (struct sockaddr *)addrp, sizeof(*addrp));
105 		if (res < 0) {
106 			do_close(s);
107 			return(-1);
108 		}
109 		do {
110 			FD_ZERO(&readfds);
111 			FD_SET(s, &readfds);
112 			res = _select(_rpc_dtablesize(), &readfds,
113 				     (fd_set *)NULL, (fd_set *)NULL, timeout);
114 		} while (res < 0 && errno == EINTR);
115 		if (res <= 0) {
116 			if (res == 0) {
117 				errno = ETIMEDOUT;
118 			}
119 			do_close(s);
120 			return(-1);
121 		}
122 		fromlen = sizeof(from);
123 		res = _recvfrom(s, (char *)&thetime, sizeof(thetime), 0,
124 			       (struct sockaddr *)&from, &fromlen);
125 		do_close(s);
126 		if (res < 0) {
127 			return(-1);
128 		}
129 	} else {
130 		if (_connect(s, (struct sockaddr *)addrp, sizeof(*addrp)) < 0) {
131 			do_close(s);
132 			return(-1);
133 		}
134 		res = _read(s, (char *)&thetime, sizeof(thetime));
135 		do_close(s);
136 		if (res < 0) {
137 			return(-1);
138 		}
139 	}
140 	if (res != sizeof(thetime)) {
141 		errno = EIO;
142 		return(-1);
143 	}
144 	thetime = ntohl(thetime);
145 	timep->tv_sec = thetime - TOFFSET;
146 	timep->tv_usec = 0;
147 	return(0);
148 }
149 
150 static void
151 do_close(s)
152 	int s;
153 {
154 	int save;
155 
156 	save = errno;
157 	(void)_close(s);
158 	errno = save;
159 }
160