element: Remove element.c
[platform/upstream/connman.git] / src / timezone.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2010  Intel Corporation. All rights reserved.
6  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <errno.h>
27 #include <stdio.h>
28 #include <fcntl.h>
29 #include <unistd.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <dirent.h>
33 #include <sys/stat.h>
34 #include <sys/mman.h>
35 #include <sys/inotify.h>
36
37 #include <glib.h>
38
39 #include "connman.h"
40
41 #define ETC_LOCALTIME           "/etc/localtime"
42 #define ETC_SYSCONFIG_CLOCK     "/etc/sysconfig/clock"
43 #define USR_SHARE_ZONEINFO      "/usr/share/zoneinfo"
44
45 static char *read_key_file(const char *pathname, const char *key)
46 {
47         struct stat st;
48         char *map, *ptr, *str;
49         off_t ptrlen, keylen;
50         int fd;
51
52         fd = open(pathname, O_RDONLY);
53         if (fd < 0)
54                 return NULL;
55
56         if (fstat(fd, &st) < 0) {
57                 close(fd);
58                 return NULL;
59         }
60
61         map = mmap(0, st.st_size, PROT_READ, MAP_SHARED, fd, 0);
62         if (map == NULL || map == MAP_FAILED) {
63                 close(fd);
64                 return NULL;
65         }
66
67         ptr = map;
68         ptrlen = st.st_size;
69         keylen = strlen(key);
70
71         while (ptrlen > keylen + 1) {
72                 int cmp = strncmp(ptr, key, keylen);
73
74                 if (cmp == 0) {
75                         if (ptr == map)
76                                 break;
77
78                         if (*(ptr - 1) == '\n' && *(ptr + keylen) == '=')
79                                 break;
80                 }
81
82                 ptr = memchr(ptr + 1, key[0], ptrlen - 1);
83                 if (ptr == NULL)
84                         break;
85
86                 ptrlen = st.st_size - (ptr - map);
87         }
88
89         if (ptr != NULL) {
90                 char *end, *val;
91
92                 ptrlen = st.st_size - (ptr - map);
93
94                 end = memchr(ptr, '\n', ptrlen);
95                 if (end != NULL)
96                         ptrlen = end - ptr;
97
98                 val = memchr(ptr, '"', ptrlen);
99                 if (val != NULL) {
100                         end = memchr(val + 1, '"', end - val - 1);
101                         if (end != NULL)
102                                 str = g_strndup(val + 1, end - val - 1);
103                         else
104                                 str = NULL;
105                 } else
106                         str = g_strndup(ptr + keylen + 1, ptrlen - keylen - 1);
107         } else
108                 str = NULL;
109
110         munmap(map, st.st_size);
111
112         close(fd);
113
114         return str;
115 }
116
117 static int compare_file(void *src_map, struct stat *src_st,
118                                                 const char *pathname)
119 {
120         struct stat dst_st;
121         void *dst_map;
122         int fd, result;
123
124         fd = open(pathname, O_RDONLY);
125         if (fd < 0)
126                 return -1;
127
128         if (fstat(fd, &dst_st) < 0) {
129                 close(fd);
130                 return -1;
131         }
132
133         if (src_st->st_size != dst_st.st_size) {
134                 close(fd);
135                 return -1;
136         }
137
138         dst_map = mmap(0, dst_st.st_size, PROT_READ, MAP_SHARED, fd, 0);
139         if (dst_map == NULL || dst_map == MAP_FAILED) {
140                 close(fd);
141                 return -1;
142         }
143
144         result = memcmp(src_map, dst_map, src_st->st_size);
145
146         munmap(dst_map, dst_st.st_size);
147
148         close(fd);
149
150         return result;
151 }
152
153 static char *find_origin(void *src_map, struct stat *src_st,
154                                 const char *basepath, const char *subpath)
155 {
156         DIR *dir;
157         struct dirent *d;
158         char *str, pathname[PATH_MAX];
159
160         if (subpath == NULL)
161                 strncpy(pathname, basepath, sizeof(pathname));
162         else
163                 snprintf(pathname, sizeof(pathname),
164                                         "%s/%s", basepath, subpath);
165
166         dir = opendir(pathname);
167         if (dir == NULL)
168                 return NULL;
169
170         while ((d = readdir(dir))) {
171                 if (strcmp(d->d_name, ".") == 0 ||
172                                 strcmp(d->d_name, "..") == 0 ||
173                                 strcmp(d->d_name, "posix") == 0 ||
174                                 strcmp(d->d_name, "right") == 0)
175                         continue;
176
177                 switch (d->d_type) {
178                 case DT_REG:
179                         if (subpath == NULL)
180                                 snprintf(pathname, PATH_MAX,
181                                                 "%s/%s", basepath, d->d_name);
182                         else
183                                 snprintf(pathname, PATH_MAX,
184                                                 "%s/%s/%s", basepath,
185                                                         subpath, d->d_name);
186
187                         if (compare_file(src_map, src_st, pathname) == 0) {
188                                 closedir(dir);
189                                 return g_strdup_printf("%s/%s",
190                                                         subpath, d->d_name);
191                         }
192                         break;
193                 case DT_DIR:
194                         if (subpath == NULL)
195                                 strncpy(pathname, d->d_name, sizeof(pathname));
196                         else
197                                 snprintf(pathname, sizeof(pathname),
198                                                 "%s/%s", subpath, d->d_name);
199
200                         str = find_origin(src_map, src_st, basepath, pathname);
201                         if (str != NULL) {
202                                 closedir(dir);
203                                 return str;
204                         }
205                         break;
206                 }
207         }
208
209         closedir(dir);
210
211         return NULL;
212 }
213
214 char *__connman_timezone_lookup(void)
215 {
216         struct stat st;
217         void *map;
218         int fd;
219         char *zone;
220
221         zone = read_key_file(ETC_SYSCONFIG_CLOCK, "ZONE");
222
223         DBG("sysconfig zone %s", zone);
224
225         fd = open(ETC_LOCALTIME, O_RDONLY);
226         if (fd < 0) {
227                 g_free(zone);
228                 return NULL;
229         }
230
231         if (fstat(fd, &st) < 0)
232                 goto done;
233
234         if (S_ISREG(st.st_mode)) {
235                 map = mmap(0, st.st_size, PROT_READ, MAP_SHARED, fd, 0);
236                 if (map == NULL || map == MAP_FAILED) {
237                         g_free(zone);
238                         zone = NULL;
239
240                         goto done;
241                 }
242
243                 if (zone != NULL) {
244                         char pathname[PATH_MAX];
245
246                         snprintf(pathname, PATH_MAX, "%s/%s",
247                                                 USR_SHARE_ZONEINFO, zone);
248
249                         if (compare_file(map, &st, pathname) != 0) {
250                                 g_free(zone);
251                                 zone = NULL;
252                         }
253                 }
254
255                 if (zone == NULL)
256                         zone = find_origin(map, &st, USR_SHARE_ZONEINFO, NULL);
257
258                 munmap(map, st.st_size);
259         } else {
260                 g_free(zone);
261                 zone = NULL;
262         }
263
264 done:
265         close(fd);
266
267         DBG("localtime zone %s", zone);
268
269         return zone;
270 }
271
272 static int write_file(void *src_map, struct stat *src_st, const char *pathname)
273 {
274         int fd;
275         ssize_t written;
276
277         DBG("pathname %s", pathname);
278
279         fd = open(pathname, O_WRONLY | O_CREAT | O_TRUNC, 0644);
280         if (fd < 0)
281                 return -EIO;
282
283         written = write(fd, src_map, src_st->st_size);
284
285         close(fd);
286
287         if (written < 0)
288                 return -EIO;
289
290         return 0;
291 }
292
293 int __connman_timezone_change(const char *zone)
294 {
295         struct stat st;
296         char *map, pathname[PATH_MAX];
297         int fd, err;
298
299         DBG("zone %s", zone);
300
301         snprintf(pathname, PATH_MAX, "%s/%s", USR_SHARE_ZONEINFO, zone);
302
303         fd = open(pathname, O_RDONLY);
304         if (fd < 0)
305                 return -EINVAL;
306
307         if (fstat(fd, &st) < 0) {
308                 close(fd);
309                 return -EIO;
310         }
311
312         map = mmap(0, st.st_size, PROT_READ, MAP_SHARED, fd, 0);
313         if (map == NULL || map == MAP_FAILED) {
314                 close(fd);
315                 return -EIO;
316         }
317
318         err = write_file(map, &st, ETC_LOCALTIME);
319
320         munmap(map, st.st_size);
321
322         close(fd);
323
324         return err;
325 }
326
327 static guint inotify_watch = 0;
328
329 static gboolean inotify_data(GIOChannel *channel, GIOCondition cond,
330                                                         gpointer user_data)
331 {
332         char buffer[256];
333         void *ptr = buffer;
334         GIOStatus status;
335         gsize bytes_read;
336
337         DBG("");
338
339         if (cond & (G_IO_NVAL | G_IO_ERR | G_IO_HUP)) {
340                 inotify_watch = 0;
341                 return FALSE;
342         }
343
344         status = g_io_channel_read_chars(channel, buffer, sizeof(buffer),
345                                                         &bytes_read, NULL);
346
347         switch (status) {
348         case G_IO_STATUS_NORMAL:
349                 break;
350         case G_IO_STATUS_AGAIN:
351                 return TRUE;
352         default:
353                 inotify_watch = 0;
354                 return FALSE;
355         }
356
357         DBG("bytes read %zd", bytes_read);
358
359         while (bytes_read > 0) {
360                 struct inotify_event *event = ptr;
361
362                 if (bytes_read < sizeof(*event))
363                         break;
364
365                 ptr += sizeof(*event);
366                 bytes_read -= sizeof(*event);
367
368                 if (event->len == 0)
369                         continue;
370
371                 if (bytes_read < event->len)
372                         break;
373
374                 ptr += event->len;
375                 bytes_read -= event->len;
376
377                 if (g_strcmp0(event->name, "localtime") == 0)
378                         __connman_clock_update_timezone();
379         }
380
381         return TRUE;
382 }
383
384 int __connman_timezone_init(void)
385 {
386         GIOChannel *channel;
387         char *dirname;
388         int fd, wd;
389
390         DBG("");
391
392         fd = inotify_init1(IN_NONBLOCK | IN_CLOEXEC);
393         if (fd < 0)
394                 return -EIO;
395
396         channel = g_io_channel_unix_new(fd);
397         if (channel == NULL) {
398                 close(fd);
399                 return -EIO;
400         }
401
402         g_io_channel_set_close_on_unref(channel, TRUE);
403         g_io_channel_set_encoding(channel, NULL, NULL);
404         g_io_channel_set_buffered(channel, FALSE);
405
406         inotify_watch = g_io_add_watch(channel,
407                                 G_IO_IN | G_IO_HUP | G_IO_NVAL | G_IO_ERR,
408                                 inotify_data, NULL);
409
410         g_io_channel_unref(channel);
411
412         dirname = g_path_get_dirname(ETC_LOCALTIME);
413
414         wd = inotify_add_watch(fd, dirname, IN_DONT_FOLLOW |
415                                                 IN_MODIFY | IN_MOVED_TO);
416
417         g_free(dirname);
418
419         if (wd < 0)
420                 return -EIO;
421
422         return 0;
423 }
424
425 void __connman_timezone_cleanup(void)
426 {
427         DBG("");
428
429         if (inotify_watch > 0) {
430                 g_source_remove(inotify_watch);
431                 inotify_watch = 0;
432         }
433 }