NetBSD/bin/date/netdate.c

197 lines
5.6 KiB
C
Raw Normal View History

2002-09-21 22:15:57 +04:00
/* $NetBSD: netdate.c,v 1.22 2002/09/21 18:15:57 mycroft Exp $ */
1995-03-21 12:01:59 +03:00
1993-03-21 12:45:37 +03:00
/*-
1994-09-22 13:24:46 +04:00
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
1995-03-21 12:01:59 +03:00
#if 0
1995-09-07 10:12:53 +04:00
static char sccsid[] = "@(#)netdate.c 8.2 (Berkeley) 4/28/95";
1995-03-21 12:01:59 +03:00
#else
2002-09-21 22:15:57 +04:00
__RCSID("$NetBSD: netdate.c,v 1.22 2002/09/21 18:15:57 mycroft Exp $");
1995-03-21 12:01:59 +03:00
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#include <sys/param.h>
#include <sys/time.h>
#include <sys/socket.h>
1994-09-22 13:24:46 +04:00
1993-03-21 12:45:37 +03:00
#include <netinet/in.h>
#include <netdb.h>
#define TSPTYPES
#include <protocols/timed.h>
1994-09-22 13:24:46 +04:00
#include <err.h>
#include <errno.h>
2002-09-21 22:15:57 +04:00
#include <poll.h>
1993-03-21 12:45:37 +03:00
#include <stdio.h>
#include <string.h>
1994-09-22 13:24:46 +04:00
#include <unistd.h>
#include "extern.h"
1993-03-21 12:45:37 +03:00
#define WAITACK 2 /* seconds */
#define WAITDATEACK 5 /* seconds */
extern int retval;
/*
* Set the date in the machines controlled by timedaemons by communicating the
* new date to the local timedaemon. If the timedaemon is in the master state,
* it performs the correction on all slaves. If it is in the slave state, it
* notifies the master that a correction is needed.
* Returns 0 on success. Returns > 0 on failure, setting retval to 2;
*/
1994-09-22 13:24:46 +04:00
int
netsettime(time_t tval)
1993-03-21 12:45:37 +03:00
{
2001-11-03 16:08:16 +03:00
struct sockaddr_in dest, from, nsin;
1993-03-21 12:45:37 +03:00
struct tsp msg;
char hostname[MAXHOSTNAMELEN];
struct servent *sp;
2002-09-21 22:15:57 +04:00
struct pollfd ready[1];
1993-03-21 12:45:37 +03:00
long waittime;
int error, found, s, timed_ack;
socklen_t length;
#ifdef IP_PORTRANGE
int on;
#endif
1993-03-21 12:45:37 +03:00
if ((sp = getservbyname("timed", "udp")) == NULL) {
1994-09-22 13:24:46 +04:00
warnx("udp/timed: unknown service");
1993-03-21 12:45:37 +03:00
return (retval = 2);
}
1997-11-06 00:17:14 +03:00
(void)memset(&dest, 0, sizeof(dest));
1998-11-04 15:50:17 +03:00
#ifdef BSD4_4
1995-06-04 02:24:45 +04:00
dest.sin_len = sizeof(struct sockaddr_in);
1998-11-04 15:50:17 +03:00
#endif
1993-03-21 12:45:37 +03:00
dest.sin_family = AF_INET;
1995-06-04 02:24:45 +04:00
dest.sin_port = sp->s_port;
dest.sin_addr.s_addr = htonl(INADDR_ANY);
1993-03-21 12:45:37 +03:00
s = socket(AF_INET, SOCK_DGRAM, 0);
if (s < 0) {
if (errno != EPROTONOSUPPORT)
1994-09-22 13:24:46 +04:00
warn("timed");
return (retval = 2);
1993-03-21 12:45:37 +03:00
}
#ifdef IP_PORTRANGE
on = IP_PORTRANGE_LOW;
if (setsockopt(s, IPPROTO_IP, IP_PORTRANGE, &on, sizeof(on)) < 0) {
warn("setsockopt");
goto bad;
}
#endif
2001-11-03 16:08:16 +03:00
(void)memset(&nsin, 0, sizeof(nsin));
1998-11-04 15:50:17 +03:00
#ifdef BSD4_4
2001-11-03 16:08:16 +03:00
nsin.sin_len = sizeof(struct sockaddr_in);
1998-11-04 15:50:17 +03:00
#endif
2001-11-03 16:08:16 +03:00
nsin.sin_family = AF_INET;
if (bind(s, (struct sockaddr *)&nsin, sizeof(nsin)) < 0) {
warn("bind");
1993-03-21 12:45:37 +03:00
goto bad;
}
1993-03-21 12:45:37 +03:00
msg.tsp_type = TSP_SETDATE;
msg.tsp_vers = TSPVERSION;
if (gethostname(hostname, sizeof(hostname))) {
1994-09-22 13:24:46 +04:00
warn("gethostname");
1993-03-21 12:45:37 +03:00
goto bad;
}
hostname[sizeof(hostname) - 1] = '\0';
1993-03-21 12:45:37 +03:00
(void)strncpy(msg.tsp_name, hostname, sizeof(hostname));
msg.tsp_seq = htons((u_short)0);
msg.tsp_time.tv_sec = htonl((u_long)tval);
msg.tsp_time.tv_usec = htonl((u_long)0);
length = sizeof(struct sockaddr_in);
if (connect(s, (struct sockaddr *)&dest, length) < 0) {
1994-09-22 13:24:46 +04:00
warn("connect");
1993-03-21 12:45:37 +03:00
goto bad;
}
if (send(s, (char *)&msg, sizeof(struct tsp), 0) < 0) {
if (errno != ECONNREFUSED)
1994-09-22 13:24:46 +04:00
warn("send");
1993-03-21 12:45:37 +03:00
goto bad;
}
timed_ack = -1;
waittime = WAITACK;
2002-09-21 22:15:57 +04:00
ready[0].fd = s;
ready[0].events = POLLIN;
1993-03-21 12:45:37 +03:00
loop:
2002-09-21 22:15:57 +04:00
found = poll(ready, 1, waittime * 1000);
1993-03-21 12:45:37 +03:00
1998-07-28 07:47:14 +04:00
length = sizeof(error);
1994-09-22 13:24:46 +04:00
if (!getsockopt(s,
1998-07-28 07:47:14 +04:00
SOL_SOCKET, SO_ERROR, (char *)&error, &length) && error) {
if (error != ECONNREFUSED)
1994-09-22 13:24:46 +04:00
warn("send (delayed error)");
1993-03-21 12:45:37 +03:00
goto bad;
}
2002-09-21 22:15:57 +04:00
if (found > 0 && ready[0].revents & POLLIN) {
1993-03-21 12:45:37 +03:00
length = sizeof(struct sockaddr_in);
if (recvfrom(s, &msg, sizeof(struct tsp), 0,
(struct sockaddr *)&from, &length) < 0) {
if (errno != ECONNREFUSED)
1994-09-22 13:24:46 +04:00
warn("recvfrom");
1993-03-21 12:45:37 +03:00
goto bad;
}
msg.tsp_seq = ntohs(msg.tsp_seq);
msg.tsp_time.tv_sec = ntohl(msg.tsp_time.tv_sec);
msg.tsp_time.tv_usec = ntohl(msg.tsp_time.tv_usec);
switch (msg.tsp_type) {
case TSP_ACK:
timed_ack = TSP_ACK;
waittime = WAITDATEACK;
goto loop;
case TSP_DATEACK:
(void)close(s);
return (0);
default:
1994-09-22 13:24:46 +04:00
warnx("wrong ack received from timed: %s",
1993-03-21 12:45:37 +03:00
tsptype[msg.tsp_type]);
timed_ack = -1;
break;
}
}
if (timed_ack == -1)
1994-09-22 13:24:46 +04:00
warnx("can't reach time daemon, time set locally");
1993-03-21 12:45:37 +03:00
bad:
(void)close(s);
1994-09-22 13:24:46 +04:00
return (retval = 2);
1993-03-21 12:45:37 +03:00
}