5 * Copyright (C) 2007-2012 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
33 #include <sys/socket.h>
34 #include <netinet/in.h>
35 #include <netinet/ip.h>
36 #include <arpa/inet.h>
45 } __attribute__ ((packed));
50 } __attribute__ ((packed));
53 uint8_t flags; /* Mode, version and leap indicator */
54 uint8_t stratum; /* Stratum details */
55 int8_t poll; /* Maximum interval in log2 seconds */
56 int8_t precision; /* Clock precision in log2 seconds */
57 struct ntp_short rootdelay; /* Root delay */
58 struct ntp_short rootdisp; /* Root dispersion */
59 uint32_t refid; /* Reference ID */
60 struct ntp_time reftime; /* Reference timestamp */
61 struct ntp_time orgtime; /* Origin timestamp */
62 struct ntp_time rectime; /* Receive timestamp */
63 struct ntp_time xmttime; /* Transmit timestamp */
64 } __attribute__ ((packed));
66 #define OFFSET_1900_1970 2208988800UL /* 1970 - 1900 in seconds */
68 #define STEPTIME_MIN_OFFSET 0.128
70 #define LOGTOD(a) ((a) < 0 ? 1. / (1L << -(a)) : 1L << (int)(a))
72 static guint channel_watch = 0;
73 static struct timeval transmit_timeval;
74 static int transmit_fd = 0;
76 static char *timeserver = NULL;
77 static gint poll_id = 0;
78 static gint timeout_id = 0;
80 static void send_packet(int fd, const char *server)
83 struct sockaddr_in addr;
86 memset(&msg, 0, sizeof(msg));
90 msg.xmttime.seconds = random();
91 msg.xmttime.fraction = random();
93 memset(&addr, 0, sizeof(addr));
94 addr.sin_family = AF_INET;
95 addr.sin_port = htons(123);
96 addr.sin_addr.s_addr = inet_addr(server);
98 gettimeofday(&transmit_timeval, NULL);
100 len = sendto(fd, &msg, sizeof(msg), MSG_DONTWAIT,
101 &addr, sizeof(addr));
103 connman_error("Time request for server %s failed", server);
107 if (len != sizeof(msg)) {
108 connman_error("Broken time request for server %s", server);
113 static gboolean next_server(gpointer user_data)
115 if (timeserver != NULL) {
120 __connman_timeserver_sync_next();
125 static gboolean next_poll(gpointer user_data)
127 if (timeserver == NULL || transmit_fd == 0)
130 send_packet(transmit_fd, timeserver);
135 static void decode_msg(void *base, size_t len, struct timeval *tv)
137 struct ntp_msg *msg = base;
138 double org, rec, xmt, dst;
139 double delay, offset;
140 static guint transmit_delay;
142 if (len < sizeof(*msg)) {
143 connman_error("Invalid response from time server");
148 connman_error("Invalid packet timestamp from time server");
152 DBG("flags : 0x%02x", msg->flags);
153 DBG("stratum : %u", msg->stratum);
154 DBG("poll : %f seconds (%d)",
155 LOGTOD(msg->poll), msg->poll);
156 DBG("precision : %f seconds (%d)",
157 LOGTOD(msg->precision), msg->precision);
158 DBG("root delay : %u seconds (fraction %u)",
159 msg->rootdelay.seconds, msg->rootdelay.fraction);
160 DBG("root disp. : %u seconds (fraction %u)",
161 msg->rootdisp.seconds, msg->rootdisp.fraction);
162 DBG("reference : 0x%04x", msg->refid);
164 transmit_delay = LOGTOD(msg->poll);
166 if (msg->flags != 0x24)
169 org = transmit_timeval.tv_sec +
170 (1.0e-6 * transmit_timeval.tv_usec) + OFFSET_1900_1970;
171 rec = ntohl(msg->rectime.seconds) +
172 ((double) ntohl(msg->rectime.fraction) / UINT_MAX);
173 xmt = ntohl(msg->xmttime.seconds) +
174 ((double) ntohl(msg->xmttime.fraction) / UINT_MAX);
175 dst = tv->tv_sec + (1.0e-6 * tv->tv_usec) + OFFSET_1900_1970;
177 DBG("org=%f rec=%f xmt=%f dst=%f", org, rec, xmt, dst);
179 offset = ((rec - org) + (xmt - dst)) / 2;
180 delay = (dst - org) - (xmt - rec);
182 DBG("offset=%f delay=%f", offset, delay);
184 /* Remove the timeout, as timeserver has responded */
186 g_source_remove(timeout_id);
189 * Now poll the server every transmit_delay seconds
190 * for time correction.
193 g_source_remove(poll_id);
195 DBG("Timeserver %s, next sync in %d seconds", timeserver, transmit_delay);
197 poll_id = g_timeout_add_seconds(transmit_delay, next_poll, NULL);
199 if (offset < STEPTIME_MIN_OFFSET && offset > -STEPTIME_MIN_OFFSET) {
202 adj.tv_sec = (long) offset;
203 adj.tv_usec = (offset - adj.tv_sec) * 1000000;
205 DBG("adjusting time");
207 if (adjtime(&adj, &adj) < 0) {
208 connman_error("Failed to adjust time");
212 DBG("%lu seconds, %lu msecs", adj.tv_sec, adj.tv_usec);
217 gettimeofday(&cur, NULL);
218 dtime = offset + cur.tv_sec + 1.0e-6 * cur.tv_usec;
219 cur.tv_sec = (long) dtime;
220 cur.tv_usec = (dtime - cur.tv_sec) * 1000000;
224 if (settimeofday(&cur, NULL) < 0) {
225 connman_error("Failed to set time");
229 DBG("%lu seconds, %lu msecs", cur.tv_sec, cur.tv_usec);
233 static gboolean received_data(GIOChannel *channel, GIOCondition condition,
236 unsigned char buf[128];
239 struct cmsghdr *cmsg;
245 if (condition & (G_IO_HUP | G_IO_ERR | G_IO_NVAL)) {
246 connman_error("Problem with timer server channel");
251 fd = g_io_channel_unix_get_fd(channel);
254 iov.iov_len = sizeof(buf);
256 memset(&msg, 0, sizeof(msg));
259 msg.msg_control = aux;
260 msg.msg_controllen = sizeof(aux);
262 len = recvmsg(fd, &msg, MSG_DONTWAIT);
268 for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
269 if (cmsg->cmsg_level != SOL_SOCKET)
272 switch (cmsg->cmsg_type) {
274 tv = (struct timeval *) CMSG_DATA(cmsg);
279 decode_msg(iov.iov_base, iov.iov_len, tv);
284 static void start_ntp(char *server)
287 struct sockaddr_in addr;
288 int tos = IPTOS_LOWDELAY, timestamp = 1;
293 DBG("server %s", server);
295 if (channel_watch > 0)
298 transmit_fd = socket(PF_INET, SOCK_DGRAM | SOCK_CLOEXEC, 0);
299 if (transmit_fd < 0) {
300 connman_error("Failed to open time server socket");
304 memset(&addr, 0, sizeof(addr));
305 addr.sin_family = AF_INET;
307 if (bind(transmit_fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
308 connman_error("Failed to bind time server socket");
313 if (setsockopt(transmit_fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0) {
314 connman_error("Failed to set type of service option");
319 if (setsockopt(transmit_fd, SOL_SOCKET, SO_TIMESTAMP, ×tamp,
320 sizeof(timestamp)) < 0) {
321 connman_error("Failed to enable timestamp support");
326 channel = g_io_channel_unix_new(transmit_fd);
327 if (channel == NULL) {
332 g_io_channel_set_encoding(channel, NULL, NULL);
333 g_io_channel_set_buffered(channel, FALSE);
335 g_io_channel_set_close_on_unref(channel, TRUE);
337 channel_watch = g_io_add_watch_full(channel, G_PRIORITY_DEFAULT,
338 G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
339 received_data, NULL, NULL);
341 g_io_channel_unref(channel);
344 send_packet(transmit_fd, server);
347 int __connman_ntp_start(char *server)
354 if (timeserver != NULL)
357 timeserver = g_strdup(server);
359 start_ntp(timeserver);
362 * Add a fallback timeout , preferably short, 5 sec here,
363 * to fallback on the next server.
366 timeout_id = g_timeout_add_seconds(5, next_server, NULL);
371 void __connman_ntp_stop()
376 g_source_remove(poll_id);
379 g_source_remove(timeout_id);
381 if (channel_watch > 0) {
382 g_source_remove(channel_watch);
387 if (timeserver != NULL) {