rdate.c revision 1.13
1/*	$NetBSD: rdate.c,v 1.13 2002/05/16 19:57:47 wiz Exp $	*/
2
3/*
4 * Copyright (c) 1994 Christos Zoulas
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
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 *    must display the following acknowledgement:
17 *	This product includes software developed by Christos Zoulas.
18 * 4. The name of the author may not be used to endorse or promote products
19 *    derived from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33/*
34 * rdate.c: Set the date from the specified host
35 *
36 * 	Uses the rfc868 time protocol at socket 37.
37 *	Time is returned as the number of seconds since
38 *	midnight January 1st 1900.
39 */
40#include <sys/cdefs.h>
41#ifndef lint
42__RCSID("$NetBSD: rdate.c,v 1.13 2002/05/16 19:57:47 wiz Exp $");
43#endif /* lint */
44
45#include <sys/types.h>
46#include <sys/socket.h>
47#include <sys/time.h>
48
49#include <netinet/in.h>
50
51#include <ctype.h>
52#include <err.h>
53#include <netdb.h>
54#include <stdio.h>
55#include <stdlib.h>
56#include <string.h>
57#include <unistd.h>
58#include <util.h>
59
60/* seconds from midnight Jan 1900 - 1970 */
61#if __STDC__
62#define DIFFERENCE 2208988800UL
63#else
64#define DIFFERENCE 2208988800
65#endif
66
67	int	main __P((int, char **));
68static	void	usage __P((void));
69
70static void
71usage()
72{
73	(void) fprintf(stderr, "Usage: %s [-psa] host\n", getprogname());
74	(void) fprintf(stderr, "  -p: just print, don't set\n");
75	(void) fprintf(stderr, "  -s: just set, don't print\n");
76	(void) fprintf(stderr, "  -a: use adjtime instead of instant change\n");
77}
78
79int
80main(argc, argv)
81	int             argc;
82	char           *argv[];
83{
84	int             pr = 0, silent = 0, s;
85	int		slidetime = 0;
86	int		adjustment;
87	time_t          tim;
88	char           *hname, *emsg;
89	struct addrinfo	hints, *res, *res0;
90	int             c;
91	int		error;
92
93	adjustment = 0;
94	while ((c = getopt(argc, argv, "psa")) != -1)
95		switch (c) {
96		case 'p':
97			pr++;
98			break;
99
100		case 's':
101			silent++;
102			break;
103
104		case 'a':
105			slidetime++;
106			break;
107
108		default:
109			usage();
110			return 1;
111		}
112
113	if (argc - 1 != optind) {
114		usage();
115		return 1;
116	}
117	hname = argv[optind];
118
119	memset(&hints, 0, sizeof (hints));
120	hints.ai_family = PF_UNSPEC;
121	hints.ai_socktype = SOCK_STREAM;
122	hints.ai_flags = AI_CANONNAME;
123	error = getaddrinfo(hname, "time", &hints, &res0);
124	if (error)
125		errx(1, "%s: %s", gai_strerror(error), hname);
126
127	for (res = res0, s = -1; res != NULL; res = res->ai_next) {
128		s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
129		if (s < 0) {
130			emsg = "socket";
131			continue;
132		}
133
134		if (connect(s, res->ai_addr, res->ai_addrlen)) {
135			close(s);
136			s = -1;
137			emsg = "connect";
138			continue;
139		}
140
141		break;
142	}
143	if (s < 0)
144		err(1, "%s", emsg);
145
146	if (read(s, &tim, sizeof(time_t)) != sizeof(time_t))
147		err(1, "Could not read data");
148
149	(void) close(s);
150	tim = ntohl(tim) - DIFFERENCE;
151
152	if (!pr) {
153	    struct timeval  tv;
154	    if (!slidetime) {
155		    logwtmp("|", "date", "");
156		    tv.tv_sec = tim;
157		    tv.tv_usec = 0;
158		    if (settimeofday(&tv, NULL) == -1)
159			    err(1, "Could not set time of day");
160		    logwtmp("{", "date", "");
161	    } else {
162		    struct timeval tv_current;
163		    if (gettimeofday(&tv_current, NULL) == -1)
164			    err(1, "Could not get local time of day");
165		    adjustment = tv.tv_sec = tim - tv_current.tv_sec;
166		    tv.tv_usec = 0;
167		    if (adjtime(&tv, NULL) == -1)
168			    err(1, "Could not adjust time of day");
169	    }
170	}
171
172	if (!silent) {
173		(void) fputs(ctime(&tim), stdout);
174		if (slidetime)
175		    (void) fprintf(stdout,
176				   "%s: adjust local clock by %d seconds\n",
177				   getprogname(), adjustment);
178	}
179	return 0;
180}
181