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 #define NTP_SEND_TIMEOUT 2
73 #define NTP_SEND_RETRIES 3
75 #define NTP_FLAG_LI_SHIFT 6
76 #define NTP_FLAG_LI_MASK 0x3
77 #define NTP_FLAG_LI_NOWARNING 0x0
78 #define NTP_FLAG_LI_ADDSECOND 0x1
79 #define NTP_FLAG_LI_DELSECOND 0x2
80 #define NTP_FLAG_LI_NOTINSYNC 0x3
82 #define NTP_FLAG_VN_SHIFT 3
83 #define NTP_FLAG_VN_MASK 0x7
85 #define NTP_FLAG_MD_SHIFT 0
86 #define NTP_FLAG_MD_MASK 0x7
87 #define NTP_FLAG_MD_UNSPEC 0
88 #define NTP_FLAG_MD_ACTIVE 1
89 #define NTP_FLAG_MD_PASSIVE 2
90 #define NTP_FLAG_MD_CLIENT 3
91 #define NTP_FLAG_MD_SERVER 4
92 #define NTP_FLAG_MD_BROADCAST 5
93 #define NTP_FLAG_MD_CONTROL 6
94 #define NTP_FLAG_MD_PRIVATE 7
96 #define NTP_FLAGS_ENCODE(li, vn, md) ((uint8_t)( \
97 (((li) & NTP_FLAG_LI_MASK) << NTP_FLAG_LI_SHIFT) | \
98 (((vn) & NTP_FLAG_VN_MASK) << NTP_FLAG_VN_SHIFT) | \
99 (((md) & NTP_FLAG_MD_MASK) << NTP_FLAG_MD_SHIFT)))
101 #define NTP_FLAGS_LI_DECODE(flags) ((uint8_t)(((flags) >> NTP_FLAG_LI_SHIFT) & NTP_FLAG_LI_MASK))
102 #define NTP_FLAGS_VN_DECODE(flags) ((uint8_t)(((flags) >> NTP_FLAG_VN_SHIFT) & NTP_FLAG_VN_MASK))
103 #define NTP_FLAGS_MD_DECODE(flags) ((uint8_t)(((flags) >> NTP_FLAG_MD_SHIFT) & NTP_FLAG_MD_MASK))
105 #define NTP_PRECISION_S 0
106 #define NTP_PRECISION_DS -3
107 #define NTP_PRECISION_CS -6
108 #define NTP_PRECISION_MS -9
109 #define NTP_PRECISION_US -19
110 #define NTP_PRECISION_NS -29
112 static guint channel_watch = 0;
113 static struct timespec mtx_time;
114 static int transmit_fd = 0;
116 static char *timeserver = NULL;
117 static gint poll_id = 0;
118 static gint timeout_id = 0;
119 static guint retries = 0;
121 static void send_packet(int fd, const char *server);
123 static void next_server(void)
125 if (timeserver != NULL) {
130 __connman_timeserver_sync_next();
133 static gboolean send_timeout(gpointer user_data)
135 DBG("send timeout (retries %d)", retries);
137 if (retries++ == NTP_SEND_RETRIES)
140 send_packet(transmit_fd, timeserver);
145 static void send_packet(int fd, const char *server)
148 struct sockaddr_in addr;
149 struct timeval transmit_timeval;
153 * At some point, we could specify the actual system precision with:
155 * clock_getres(CLOCK_REALTIME, &ts);
156 * msg.precision = (int)log2(ts.tv_sec + (ts.tv_nsec * 1.0e-9));
158 memset(&msg, 0, sizeof(msg));
159 msg.flags = NTP_FLAGS_ENCODE(NTP_FLAG_LI_NOTINSYNC, 4, NTP_FLAG_MD_CLIENT);
161 msg.poll = 10; // max
162 msg.precision = NTP_PRECISION_S;
164 memset(&addr, 0, sizeof(addr));
165 addr.sin_family = AF_INET;
166 addr.sin_port = htons(123);
167 addr.sin_addr.s_addr = inet_addr(server);
169 gettimeofday(&transmit_timeval, NULL);
170 clock_gettime(CLOCK_MONOTONIC, &mtx_time);
172 msg.xmttime.seconds = htonl(transmit_timeval.tv_sec + OFFSET_1900_1970);
173 msg.xmttime.fraction = htonl(transmit_timeval.tv_usec * 1000);
175 len = sendto(fd, &msg, sizeof(msg), MSG_DONTWAIT,
176 &addr, sizeof(addr));
178 connman_error("Time request for server %s failed (%d/%s)",
179 server, errno, strerror(errno));
181 if (errno == ENETUNREACH)
182 __connman_timeserver_sync_next();
187 if (len != sizeof(msg)) {
188 connman_error("Broken time request for server %s", server);
193 * Add a retry timeout of two seconds to retry the existing
194 * request. After a set number of retries, we'll fallback to
195 * trying another server.
198 timeout_id = g_timeout_add_seconds(NTP_SEND_TIMEOUT, send_timeout, NULL);
201 static gboolean next_poll(gpointer user_data)
203 if (timeserver == NULL || transmit_fd == 0)
206 send_packet(transmit_fd, timeserver);
211 static void reset_timeout(void)
214 g_source_remove(timeout_id);
219 static void decode_msg(void *base, size_t len, struct timeval *tv,
220 struct timespec *mrx_time)
222 struct ntp_msg *msg = base;
223 double m_delta, org, rec, xmt, dst;
224 double delay, offset;
225 static guint transmit_delay;
227 if (len < sizeof(*msg)) {
228 connman_error("Invalid response from time server");
233 connman_error("Invalid packet timestamp from time server");
237 DBG("flags : 0x%02x", msg->flags);
238 DBG("stratum : %u", msg->stratum);
239 DBG("poll : %f seconds (%d)",
240 LOGTOD(msg->poll), msg->poll);
241 DBG("precision : %f seconds (%d)",
242 LOGTOD(msg->precision), msg->precision);
243 DBG("root delay : %u seconds (fraction %u)",
244 msg->rootdelay.seconds, msg->rootdelay.fraction);
245 DBG("root disp. : %u seconds (fraction %u)",
246 msg->rootdisp.seconds, msg->rootdisp.fraction);
247 DBG("reference : 0x%04x", msg->refid);
249 transmit_delay = LOGTOD(msg->poll);
251 if (NTP_FLAGS_LI_DECODE(msg->flags) == NTP_FLAG_LI_NOTINSYNC) {
252 DBG("ignoring unsynchronized peer");
256 if (NTP_FLAGS_VN_DECODE(msg->flags) != 4) {
257 DBG("unsupported version %d", NTP_FLAGS_VN_DECODE(msg->flags));
261 if (NTP_FLAGS_MD_DECODE(msg->flags) != NTP_FLAG_MD_SERVER) {
262 DBG("unsupported mode %d", NTP_FLAGS_MD_DECODE(msg->flags));
266 m_delta = mrx_time->tv_sec - mtx_time.tv_sec +
267 1.0e-9 * (mrx_time->tv_nsec - mtx_time.tv_nsec);
269 org = tv->tv_sec + (1.0e-6 * tv->tv_usec) - m_delta + OFFSET_1900_1970;
270 rec = ntohl(msg->rectime.seconds) +
271 ((double) ntohl(msg->rectime.fraction) / UINT_MAX);
272 xmt = ntohl(msg->xmttime.seconds) +
273 ((double) ntohl(msg->xmttime.fraction) / UINT_MAX);
274 dst = tv->tv_sec + (1.0e-6 * tv->tv_usec) + OFFSET_1900_1970;
276 DBG("org=%f rec=%f xmt=%f dst=%f", org, rec, xmt, dst);
278 offset = ((rec - org) + (xmt - dst)) / 2;
279 delay = (dst - org) - (xmt - rec);
281 DBG("offset=%f delay=%f", offset, delay);
283 /* Remove the timeout, as timeserver has responded */
288 * Now poll the server every transmit_delay seconds
289 * for time correction.
292 g_source_remove(poll_id);
294 DBG("Timeserver %s, next sync in %d seconds", timeserver, transmit_delay);
296 poll_id = g_timeout_add_seconds(transmit_delay, next_poll, NULL);
298 connman_info("ntp: time slew %+.6f s", offset);
300 if (offset < STEPTIME_MIN_OFFSET && offset > -STEPTIME_MIN_OFFSET) {
303 adj.tv_sec = (long) offset;
304 adj.tv_usec = (offset - adj.tv_sec) * 1000000;
306 DBG("adjusting time");
308 if (adjtime(&adj, &adj) < 0) {
309 connman_error("Failed to adjust time");
313 DBG("%lu seconds, %lu msecs", adj.tv_sec, adj.tv_usec);
318 gettimeofday(&cur, NULL);
319 dtime = offset + cur.tv_sec + 1.0e-6 * cur.tv_usec;
320 cur.tv_sec = (long) dtime;
321 cur.tv_usec = (dtime - cur.tv_sec) * 1000000;
325 if (settimeofday(&cur, NULL) < 0) {
326 connman_error("Failed to set time");
330 DBG("%lu seconds, %lu msecs", cur.tv_sec, cur.tv_usec);
334 static gboolean received_data(GIOChannel *channel, GIOCondition condition,
337 unsigned char buf[128];
340 struct cmsghdr *cmsg;
342 struct timespec mrx_time;
347 if (condition & (G_IO_HUP | G_IO_ERR | G_IO_NVAL)) {
348 connman_error("Problem with timer server channel");
353 fd = g_io_channel_unix_get_fd(channel);
356 iov.iov_len = sizeof(buf);
358 memset(&msg, 0, sizeof(msg));
361 msg.msg_control = aux;
362 msg.msg_controllen = sizeof(aux);
364 len = recvmsg(fd, &msg, MSG_DONTWAIT);
369 clock_gettime(CLOCK_MONOTONIC, &mrx_time);
371 for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
372 if (cmsg->cmsg_level != SOL_SOCKET)
375 switch (cmsg->cmsg_type) {
377 tv = (struct timeval *) CMSG_DATA(cmsg);
382 decode_msg(iov.iov_base, iov.iov_len, tv, &mrx_time);
387 static void start_ntp(char *server)
390 struct sockaddr_in addr;
391 int tos = IPTOS_LOWDELAY, timestamp = 1;
396 DBG("server %s", server);
398 if (channel_watch > 0)
401 transmit_fd = socket(PF_INET, SOCK_DGRAM | SOCK_CLOEXEC, 0);
402 if (transmit_fd < 0) {
403 connman_error("Failed to open time server socket");
407 memset(&addr, 0, sizeof(addr));
408 addr.sin_family = AF_INET;
410 if (bind(transmit_fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
411 connman_error("Failed to bind time server socket");
416 if (setsockopt(transmit_fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0) {
417 connman_error("Failed to set type of service option");
422 if (setsockopt(transmit_fd, SOL_SOCKET, SO_TIMESTAMP, ×tamp,
423 sizeof(timestamp)) < 0) {
424 connman_error("Failed to enable timestamp support");
429 channel = g_io_channel_unix_new(transmit_fd);
430 if (channel == NULL) {
435 g_io_channel_set_encoding(channel, NULL, NULL);
436 g_io_channel_set_buffered(channel, FALSE);
438 g_io_channel_set_close_on_unref(channel, TRUE);
440 channel_watch = g_io_add_watch_full(channel, G_PRIORITY_DEFAULT,
441 G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
442 received_data, NULL, NULL);
444 g_io_channel_unref(channel);
447 send_packet(transmit_fd, server);
450 int __connman_ntp_start(char *server)
457 if (timeserver != NULL)
460 timeserver = g_strdup(server);
462 start_ntp(timeserver);
467 void __connman_ntp_stop()
472 g_source_remove(poll_id);
476 if (channel_watch > 0) {
477 g_source_remove(channel_watch);
482 if (timeserver != NULL) {