5 * Copyright (C) 2007-2010 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
30 #include <gweb/gresolv.h>
35 static GSList *ts_list = NULL;
37 static GResolv *resolv = NULL;
38 static int resolv_id = 0;
40 static void resolv_debug(const char *str, void *data)
42 connman_info("%s: %s\n", (const char *) data, str);
44 static void save_timeservers(char **servers)
49 keyfile = __connman_storage_load_global();
51 keyfile = g_key_file_new();
53 for (cnt = 0; servers != NULL && servers[cnt] != NULL; cnt++);
55 g_key_file_set_string_list(keyfile, "global", "Timeservers",
56 (const gchar **)servers, cnt);
58 __connman_storage_save_global(keyfile);
60 g_key_file_free(keyfile);
65 static char **load_timeservers()
69 char **servers = NULL;
71 keyfile = __connman_storage_load_global();
75 servers = g_key_file_get_string_list(keyfile, "global",
76 "Timeservers", NULL, &error);
78 DBG("Error loading timeservers: %s", error->message);
82 g_key_file_free(keyfile);
87 static void resolv_result(GResolvResultStatus status, char **results, gpointer user_data)
91 DBG("status %d", status);
93 if (status == G_RESOLV_RESULT_STATUS_SUCCESS) {
94 if (results != NULL) {
95 for (i = 0; results[i]; i++)
96 DBG("result: %s", results[i]);
98 __connman_ntp_start(results[0]);
104 /* If resolving fails, move to the next server */
105 __connman_timeserver_sync_next();
109 * Once the timeserver list (ts_list) is created, we start querying the
110 * servers one by one. If resolving fails on one of them, we move to the
111 * next one. The user can enter either an IP address or a URL for the
112 * timeserver. We only resolve the urls. Once we have a IP for the NTP
113 * server, we start querying it for time corrections.
115 void __connman_timeserver_sync_next()
119 struct addrinfo hints;
120 struct addrinfo *addr;
122 __connman_ntp_stop();
124 /* Get the 1st server in the list */
128 server = ts_list->data;
130 ts_list = g_slist_delete_link(ts_list, ts_list);
132 memset(&hints, 0, sizeof(struct addrinfo));
133 hints.ai_flags = AI_NUMERICHOST;
136 ret = getaddrinfo(server, NULL, &hints, &addr);
139 /* if its a IP , directly query it. */
141 DBG("Using timeservers %s", server);
143 __connman_ntp_start(server);
149 DBG("Resolving server %s", server);
151 resolv_id = g_resolv_lookup_hostname(resolv, server,
152 resolv_result, NULL);
161 * __connman_timeserver_sync function recreates the timeserver
162 * list which will be used to determine NTP server for time corrections.
163 * It must be called everytime the default service changes, the service
164 * timeserver(s) changes or the global timeserver(s) changes.The service
165 * settings take priority over the global timeservers.
167 int __connman_timeserver_sync(struct connman_service *default_service)
169 struct connman_service *service;
174 if (default_service != NULL)
175 service = default_service;
177 service = __connman_service_get_default();
185 * Before be start creating the new timeserver list we must stop
186 * any ongoing ntp query and server resolution.
189 __connman_ntp_stop();
192 g_resolv_cancel_lookup(resolv, resolv_id);
194 if (ts_list != NULL) {
195 g_slist_free_full(ts_list, g_free);
199 service_ts = connman_service_get_timeservers(service);
201 for (i=0; service_ts != NULL && service_ts[i] != NULL; i++)
202 ts_list = g_slist_prepend(ts_list, g_strdup(service_ts[i]));
204 timeservers = load_timeservers();
206 for (i=0; timeservers != NULL && timeservers[i] != NULL; i++)
207 ts_list = g_slist_prepend(ts_list, g_strdup(timeservers[i]));
209 if (ts_list == NULL) {
210 DBG("No timeservers set.");
214 ts_list = g_slist_reverse(ts_list);
216 __connman_timeserver_sync_next();
221 static int timeserver_start(struct connman_service *service)
226 DBG("service %p", service);
228 i = __connman_service_get_index(service);
232 nameservers = connman_service_get_nameservers(service);
233 if (nameservers == NULL)
236 /* Stop an already ongoing resolution, if there is one */
238 g_resolv_cancel_lookup(resolv, resolv_id);
240 /* get rid of the old resolver */
241 if (resolv != NULL) {
242 g_resolv_unref(resolv);
246 resolv = g_resolv_new(i);
250 if (getenv("CONNMAN_RESOLV_DEBUG"))
251 g_resolv_set_debug(resolv, resolv_debug, "RESOLV");
253 for (i = 0; nameservers[i] != NULL; i++)
254 g_resolv_add_nameserver(resolv, nameservers[i], 53, 0);
256 return __connman_timeserver_sync(service);
259 static void timeserver_stop()
263 if (resolv != NULL) {
264 g_resolv_unref(resolv);
269 g_slist_free_full(ts_list, g_free);
273 __connman_ntp_stop();
276 int __connman_timeserver_system_set(char **servers)
278 save_timeservers(servers);
280 __connman_timeserver_sync(NULL);
285 char **__connman_timeserver_system_get()
289 servers = load_timeservers();
293 static void default_changed(struct connman_service *default_service)
295 if (default_service != NULL)
296 timeserver_start(default_service);
301 static struct connman_notifier timeserver_notifier = {
302 .name = "timeserver",
303 .default_changed = default_changed,
306 int __connman_timeserver_init(void)
310 connman_notifier_register(×erver_notifier);
315 void __connman_timeserver_cleanup(void)
319 connman_notifier_unregister(×erver_notifier);