ipconfig: Add function to clear ipaddress information
[platform/upstream/connman.git] / src / rtnl.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2012  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 <unistd.h>
29 #include <string.h>
30 #include <sys/socket.h>
31 #include <sys/ioctl.h>
32 #include <arpa/inet.h>
33 #include <netinet/ether.h>
34 #include <netinet/icmp6.h>
35 #include <net/if_arp.h>
36 #include <linux/if.h>
37 #include <linux/netlink.h>
38 #include <linux/rtnetlink.h>
39 #include <linux/wireless.h>
40
41 #include <glib.h>
42
43 #include "connman.h"
44
45 #ifndef ARPHDR_PHONET_PIPE
46 #define ARPHDR_PHONET_PIPE (821)
47 #endif
48
49 #define print(arg...) do { if (0) connman_info(arg); } while (0)
50 //#define print(arg...) connman_info(arg)
51
52 struct watch_data {
53         unsigned int id;
54         int index;
55         connman_rtnl_link_cb_t newlink;
56         void *user_data;
57 };
58
59 static GSList *watch_list = NULL;
60 static unsigned int watch_id = 0;
61
62 static GSList *update_list = NULL;
63 static guint update_interval = G_MAXUINT;
64 static guint update_timeout = 0;
65
66 struct interface_data {
67         int index;
68         char *name;
69         char *ident;
70         enum connman_service_type service_type;
71         enum connman_device_type device_type;
72 };
73
74 static GHashTable *interface_list = NULL;
75
76 static void free_interface(gpointer data)
77 {
78         struct interface_data *interface = data;
79
80         __connman_technology_remove_interface(interface->service_type,
81                         interface->index, interface->name, interface->ident);
82
83         g_free(interface->ident);
84         g_free(interface->name);
85         g_free(interface);
86 }
87
88 static connman_bool_t ether_blacklisted(const char *name)
89 {
90         if (name == NULL)
91                 return TRUE;
92
93         if (__connman_device_isfiltered(name) == TRUE)
94                 return TRUE;
95
96         return FALSE;
97 }
98
99 static connman_bool_t wext_interface(char *ifname)
100 {
101         struct iwreq wrq;
102         int fd, err;
103
104         fd = socket(PF_INET, SOCK_DGRAM | SOCK_CLOEXEC, 0);
105         if (fd < 0)
106                 return FALSE;
107
108         memset(&wrq, 0, sizeof(wrq));
109         strncpy(wrq.ifr_name, ifname, IFNAMSIZ);
110
111         err = ioctl(fd, SIOCGIWNAME, &wrq);
112
113         close(fd);
114
115         if (err < 0)
116                 return FALSE;
117
118         return TRUE;
119 }
120
121 static void read_uevent(struct interface_data *interface)
122 {
123         char *filename, line[128];
124         connman_bool_t found_devtype;
125         FILE *f;
126
127         if (ether_blacklisted(interface->name) == TRUE) {
128                 interface->service_type = CONNMAN_SERVICE_TYPE_UNKNOWN;
129                 interface->device_type = CONNMAN_DEVICE_TYPE_UNKNOWN;
130         } else {
131                 interface->service_type = CONNMAN_SERVICE_TYPE_ETHERNET;
132                 interface->device_type = CONNMAN_DEVICE_TYPE_ETHERNET;
133         }
134
135         filename = g_strdup_printf("/sys/class/net/%s/uevent",
136                                                 interface->name);
137
138         f = fopen(filename, "re");
139
140         g_free(filename);
141
142         if (f == NULL)
143                 return;
144
145         found_devtype = FALSE;
146         while (fgets(line, sizeof(line), f)) {
147                 char *pos;
148
149                 pos = strchr(line, '\n');
150                 if (pos == NULL)
151                         continue;
152                 pos[0] = '\0';
153
154                 if (strncmp(line, "DEVTYPE=", 8) != 0)
155                         continue;
156
157                 found_devtype = TRUE;
158
159                 if (strcmp(line + 8, "wlan") == 0) {
160                         interface->service_type = CONNMAN_SERVICE_TYPE_WIFI;
161                         interface->device_type = CONNMAN_DEVICE_TYPE_WIFI;
162                 } else if (strcmp(line + 8, "wwan") == 0) {
163                         interface->service_type = CONNMAN_SERVICE_TYPE_CELLULAR;
164                         interface->device_type = CONNMAN_DEVICE_TYPE_CELLULAR;
165                 } else if (strcmp(line + 8, "bluetooth") == 0) {
166                         interface->service_type = CONNMAN_SERVICE_TYPE_BLUETOOTH;
167                         interface->device_type = CONNMAN_DEVICE_TYPE_BLUETOOTH;
168                 } else if (strcmp(line + 8, "wimax") == 0) {
169                         interface->service_type = CONNMAN_SERVICE_TYPE_WIMAX;
170                         interface->device_type = CONNMAN_DEVICE_TYPE_WIMAX;
171                 } else if (strcmp(line + 8, "gadget") == 0) {
172                         interface->service_type = CONNMAN_SERVICE_TYPE_GADGET;
173                         interface->device_type = CONNMAN_DEVICE_TYPE_GADGET;
174
175                 } else {
176                         interface->service_type = CONNMAN_SERVICE_TYPE_UNKNOWN;
177                         interface->device_type = CONNMAN_DEVICE_TYPE_UNKNOWN;
178                 }
179         }
180
181         fclose(f);
182
183         if (found_devtype)
184                 return;
185
186         /* We haven't got a DEVTYPE, let's check if it's a wireless device */
187         if (wext_interface(interface->name)) {
188                 interface->service_type = CONNMAN_SERVICE_TYPE_WIFI;
189                 interface->device_type = CONNMAN_DEVICE_TYPE_WIFI;
190
191                 connman_error("%s runs an unsupported 802.11 driver",
192                                 interface->name);
193         }
194 }
195
196 enum connman_device_type __connman_rtnl_get_device_type(int index)
197 {
198         struct interface_data *interface;
199
200         interface = g_hash_table_lookup(interface_list,
201                                         GINT_TO_POINTER(index));
202         if (interface == NULL)
203                 return CONNMAN_DEVICE_TYPE_UNKNOWN;
204
205         return interface->device_type;
206 }
207
208 /**
209  * connman_rtnl_add_newlink_watch:
210  * @index: network device index
211  * @callback: callback function
212  * @user_data: callback data;
213  *
214  * Add a new RTNL watch for newlink events
215  *
216  * Returns: %0 on failure and a unique id on success
217  */
218 unsigned int connman_rtnl_add_newlink_watch(int index,
219                         connman_rtnl_link_cb_t callback, void *user_data)
220 {
221         struct watch_data *watch;
222
223         watch = g_try_new0(struct watch_data, 1);
224         if (watch == NULL)
225                 return 0;
226
227         watch->id = ++watch_id;
228         watch->index = index;
229
230         watch->newlink = callback;
231         watch->user_data = user_data;
232
233         watch_list = g_slist_prepend(watch_list, watch);
234
235         DBG("id %d", watch->id);
236
237         if (callback) {
238                 unsigned int flags = __connman_ipconfig_get_flags_from_index(index);
239
240                 if (flags > 0)
241                         callback(flags, 0, user_data);
242         }
243
244         return watch->id;
245 }
246
247 /**
248  * connman_rtnl_remove_watch:
249  * @id: watch identifier
250  *
251  * Remove the RTNL watch for the identifier
252  */
253 void connman_rtnl_remove_watch(unsigned int id)
254 {
255         GSList *list;
256
257         DBG("id %d", id);
258
259         if (id == 0)
260                 return;
261
262         for (list = watch_list; list; list = list->next) {
263                 struct watch_data *watch = list->data;
264
265                 if (watch->id  == id) {
266                         watch_list = g_slist_remove(watch_list, watch);
267                         g_free(watch);
268                         break;
269                 }
270         }
271 }
272
273 static void trigger_rtnl(int index, void *user_data)
274 {
275         struct connman_rtnl *rtnl = user_data;
276
277         if (rtnl->newlink) {
278                 unsigned short type = __connman_ipconfig_get_type_from_index(index);
279                 unsigned int flags = __connman_ipconfig_get_flags_from_index(index);
280
281                 rtnl->newlink(type, index, flags, 0);
282         }
283
284         if (rtnl->newgateway) {
285                 const char *gateway =
286                         __connman_ipconfig_get_gateway_from_index(index,
287                                         CONNMAN_IPCONFIG_TYPE_ALL);
288
289                 if (gateway != NULL)
290                         rtnl->newgateway(index, gateway);
291         }
292 }
293
294 static GSList *rtnl_list = NULL;
295
296 static gint compare_priority(gconstpointer a, gconstpointer b)
297 {
298         const struct connman_rtnl *rtnl1 = a;
299         const struct connman_rtnl *rtnl2 = b;
300
301         return rtnl2->priority - rtnl1->priority;
302 }
303
304 /**
305  * connman_rtnl_register:
306  * @rtnl: RTNL module
307  *
308  * Register a new RTNL module
309  *
310  * Returns: %0 on success
311  */
312 int connman_rtnl_register(struct connman_rtnl *rtnl)
313 {
314         DBG("rtnl %p name %s", rtnl, rtnl->name);
315
316         rtnl_list = g_slist_insert_sorted(rtnl_list, rtnl,
317                                                         compare_priority);
318
319         __connman_ipconfig_foreach(trigger_rtnl, rtnl);
320
321         return 0;
322 }
323
324 /**
325  * connman_rtnl_unregister:
326  * @rtnl: RTNL module
327  *
328  * Remove a previously registered RTNL module
329  */
330 void connman_rtnl_unregister(struct connman_rtnl *rtnl)
331 {
332         DBG("rtnl %p name %s", rtnl, rtnl->name);
333
334         rtnl_list = g_slist_remove(rtnl_list, rtnl);
335 }
336
337 static const char *operstate2str(unsigned char operstate)
338 {
339         switch (operstate) {
340         case IF_OPER_UNKNOWN:
341                 return "UNKNOWN";
342         case IF_OPER_NOTPRESENT:
343                 return "NOT-PRESENT";
344         case IF_OPER_DOWN:
345                 return "DOWN";
346         case IF_OPER_LOWERLAYERDOWN:
347                 return "LOWER-LAYER-DOWN";
348         case IF_OPER_TESTING:
349                 return "TESTING";
350         case IF_OPER_DORMANT:
351                 return "DORMANT";
352         case IF_OPER_UP:
353                 return "UP";
354         }
355
356         return "";
357 }
358
359 static connman_bool_t extract_link(struct ifinfomsg *msg, int bytes,
360                                 struct ether_addr *address, const char **ifname,
361                                 unsigned int *mtu, unsigned char *operstate,
362                                 struct rtnl_link_stats *stats)
363 {
364         struct rtattr *attr;
365
366         for (attr = IFLA_RTA(msg); RTA_OK(attr, bytes);
367                                         attr = RTA_NEXT(attr, bytes)) {
368                 switch (attr->rta_type) {
369                 case IFLA_ADDRESS:
370                         if (address != NULL)
371                                 memcpy(address, RTA_DATA(attr), ETH_ALEN);
372                         break;
373                 case IFLA_IFNAME:
374                         if (ifname != NULL)
375                                 *ifname = RTA_DATA(attr);
376                         break;
377                 case IFLA_MTU:
378                         if (mtu != NULL)
379                                 *mtu = *((unsigned int *) RTA_DATA(attr));
380                         break;
381                 case IFLA_STATS:
382                         if (stats != NULL)
383                                 memcpy(stats, RTA_DATA(attr),
384                                         sizeof(struct rtnl_link_stats));
385                         break;
386                 case IFLA_OPERSTATE:
387                         if (operstate != NULL)
388                                 *operstate = *((unsigned char *) RTA_DATA(attr));
389                         break;
390                 case IFLA_LINKMODE:
391                         break;
392                 case IFLA_WIRELESS:
393                         return FALSE;
394                 }
395         }
396
397         return TRUE;
398 }
399
400 static void process_newlink(unsigned short type, int index, unsigned flags,
401                         unsigned change, struct ifinfomsg *msg, int bytes)
402 {
403         struct ether_addr address = {{ 0, 0, 0, 0, 0, 0 }};
404         struct ether_addr compare = {{ 0, 0, 0, 0, 0, 0 }};
405         struct rtnl_link_stats stats;
406         unsigned char operstate = 0xff;
407         struct interface_data *interface;
408         const char *ifname = NULL;
409         unsigned int mtu = 0;
410         char ident[13], str[18];
411         GSList *list;
412
413         memset(&stats, 0, sizeof(stats));
414         if (extract_link(msg, bytes, &address, &ifname, &mtu, &operstate,
415                                         &stats) == FALSE)
416                 return;
417
418         snprintf(ident, 13, "%02x%02x%02x%02x%02x%02x",
419                                                 address.ether_addr_octet[0],
420                                                 address.ether_addr_octet[1],
421                                                 address.ether_addr_octet[2],
422                                                 address.ether_addr_octet[3],
423                                                 address.ether_addr_octet[4],
424                                                 address.ether_addr_octet[5]);
425
426         snprintf(str, 18, "%02X:%02X:%02X:%02X:%02X:%02X",
427                                                 address.ether_addr_octet[0],
428                                                 address.ether_addr_octet[1],
429                                                 address.ether_addr_octet[2],
430                                                 address.ether_addr_octet[3],
431                                                 address.ether_addr_octet[4],
432                                                 address.ether_addr_octet[5]);
433
434         switch (type) {
435         case ARPHRD_ETHER:
436         case ARPHRD_LOOPBACK:
437         case ARPHDR_PHONET_PIPE:
438         case ARPHRD_PPP:
439         case ARPHRD_NONE:
440                 __connman_ipconfig_newlink(index, type, flags,
441                                                         str, mtu, &stats);
442                 break;
443         }
444
445         if (memcmp(&address, &compare, ETH_ALEN) != 0)
446                 connman_info("%s {newlink} index %d address %s mtu %u",
447                                                 ifname, index, str, mtu);
448
449         if (operstate != 0xff)
450                 connman_info("%s {newlink} index %d operstate %u <%s>",
451                                                 ifname, index, operstate,
452                                                 operstate2str(operstate));
453
454         interface = g_hash_table_lookup(interface_list, GINT_TO_POINTER(index));
455         if (interface == NULL) {
456                 interface = g_new0(struct interface_data, 1);
457                 interface->index = index;
458                 interface->name = g_strdup(ifname);
459                 interface->ident = g_strdup(ident);
460
461                 g_hash_table_insert(interface_list,
462                                         GINT_TO_POINTER(index), interface);
463
464                 if (type == ARPHRD_ETHER)
465                         read_uevent(interface);
466
467                 __connman_technology_add_interface(interface->service_type,
468                         interface->index, interface->name, interface->ident);
469         }
470
471         for (list = rtnl_list; list; list = list->next) {
472                 struct connman_rtnl *rtnl = list->data;
473
474                 if (rtnl->newlink)
475                         rtnl->newlink(type, index, flags, change);
476         }
477
478         for (list = watch_list; list; list = list->next) {
479                 struct watch_data *watch = list->data;
480
481                 if (watch->index != index)
482                         continue;
483
484                 if (watch->newlink)
485                         watch->newlink(flags, change, watch->user_data);
486         }
487 }
488
489 static void process_dellink(unsigned short type, int index, unsigned flags,
490                         unsigned change, struct ifinfomsg *msg, int bytes)
491 {
492         struct rtnl_link_stats stats;
493         unsigned char operstate = 0xff;
494         const char *ifname = NULL;
495         GSList *list;
496
497         memset(&stats, 0, sizeof(stats));
498         if (extract_link(msg, bytes, NULL, &ifname, NULL, &operstate,
499                                         &stats) == FALSE)
500                 return;
501
502         if (operstate != 0xff)
503                 connman_info("%s {dellink} index %d operstate %u <%s>",
504                                                 ifname, index, operstate,
505                                                 operstate2str(operstate));
506
507         for (list = rtnl_list; list; list = list->next) {
508                 struct connman_rtnl *rtnl = list->data;
509
510                 if (rtnl->dellink)
511                         rtnl->dellink(type, index, flags, change);
512         }
513
514         switch (type) {
515         case ARPHRD_ETHER:
516         case ARPHRD_LOOPBACK:
517         case ARPHRD_NONE:
518                 __connman_ipconfig_dellink(index, &stats);
519                 break;
520         }
521
522         g_hash_table_remove(interface_list, GINT_TO_POINTER(index));
523 }
524
525 static void extract_ipv4_addr(struct ifaddrmsg *msg, int bytes,
526                                                 const char **label,
527                                                 struct in_addr *local,
528                                                 struct in_addr *address,
529                                                 struct in_addr *broadcast)
530 {
531         struct rtattr *attr;
532
533         for (attr = IFA_RTA(msg); RTA_OK(attr, bytes);
534                                         attr = RTA_NEXT(attr, bytes)) {
535                 switch (attr->rta_type) {
536                 case IFA_ADDRESS:
537                         if (address != NULL)
538                                 *address = *((struct in_addr *) RTA_DATA(attr));
539                         break;
540                 case IFA_LOCAL:
541                         if (local != NULL)
542                                 *local = *((struct in_addr *) RTA_DATA(attr));
543                         break;
544                 case IFA_BROADCAST:
545                         if (broadcast != NULL)
546                                 *broadcast = *((struct in_addr *) RTA_DATA(attr));
547                         break;
548                 case IFA_LABEL:
549                         if (label != NULL)
550                                 *label = RTA_DATA(attr);
551                         break;
552                 }
553         }
554 }
555
556 static void extract_ipv6_addr(struct ifaddrmsg *msg, int bytes,
557                                                 struct in6_addr *addr,
558                                                 struct in6_addr *local)
559 {
560         struct rtattr *attr;
561
562         for (attr = IFA_RTA(msg); RTA_OK(attr, bytes);
563                                         attr = RTA_NEXT(attr, bytes)) {
564                 switch (attr->rta_type) {
565                 case IFA_ADDRESS:
566                         if (addr != NULL)
567                                 *addr = *((struct in6_addr *) RTA_DATA(attr));
568                         break;
569                 case IFA_LOCAL:
570                         if (local != NULL)
571                                 *local = *((struct in6_addr *) RTA_DATA(attr));
572                         break;
573                 }
574         }
575 }
576
577 static void process_newaddr(unsigned char family, unsigned char prefixlen,
578                                 int index, struct ifaddrmsg *msg, int bytes)
579 {
580         const char *label = NULL;
581         void *src;
582         char ip_string[INET6_ADDRSTRLEN];
583
584         if (family == AF_INET) {
585                 struct in_addr ipv4_addr = { INADDR_ANY };
586
587                 extract_ipv4_addr(msg, bytes, &label, &ipv4_addr, NULL, NULL);
588                 src = &ipv4_addr;
589         } else if (family == AF_INET6) {
590                 struct in6_addr ipv6_address, ipv6_local;
591
592                 extract_ipv6_addr(msg, bytes, &ipv6_address, &ipv6_local);
593                 if (IN6_IS_ADDR_LINKLOCAL(&ipv6_address))
594                         return;
595
596                 src = &ipv6_address;
597         } else {
598                 return;
599         }
600
601         if (inet_ntop(family, src, ip_string, INET6_ADDRSTRLEN) == NULL)
602                 return;
603
604         __connman_ipconfig_newaddr(index, family, label,
605                                         prefixlen, ip_string);
606
607         if (family == AF_INET6) {
608                 /*
609                  * Re-create RDNSS configured servers if there are any
610                  * for this interface. This is done because we might
611                  * have now properly configured interface with proper
612                  * autoconfigured address.
613                  */
614                 char *interface = connman_inet_ifname(index);
615
616                 __connman_resolver_redo_servers(interface);
617
618                 g_free(interface);
619         }
620 }
621
622 static void process_deladdr(unsigned char family, unsigned char prefixlen,
623                                 int index, struct ifaddrmsg *msg, int bytes)
624 {
625         const char *label = NULL;
626         void *src;
627         char ip_string[INET6_ADDRSTRLEN];
628
629         if (family == AF_INET) {
630                 struct in_addr ipv4_addr = { INADDR_ANY };
631
632                 extract_ipv4_addr(msg, bytes, &label, &ipv4_addr, NULL, NULL);
633                 src = &ipv4_addr;
634         } else if (family == AF_INET6) {
635                 struct in6_addr ipv6_address, ipv6_local;
636
637                 extract_ipv6_addr(msg, bytes, &ipv6_address, &ipv6_local);
638                 if (IN6_IS_ADDR_LINKLOCAL(&ipv6_address))
639                         return;
640
641                 src = &ipv6_address;
642         } else {
643                 return;
644         }
645
646         if (inet_ntop(family, src, ip_string, INET6_ADDRSTRLEN) == NULL)
647                 return;
648
649         __connman_ipconfig_deladdr(index, family, label,
650                                         prefixlen, ip_string);
651 }
652
653 static void extract_ipv4_route(struct rtmsg *msg, int bytes, int *index,
654                                                 struct in_addr *dst,
655                                                 struct in_addr *gateway)
656 {
657         struct rtattr *attr;
658
659         for (attr = RTM_RTA(msg); RTA_OK(attr, bytes);
660                                         attr = RTA_NEXT(attr, bytes)) {
661                 switch (attr->rta_type) {
662                 case RTA_DST:
663                         if (dst != NULL)
664                                 *dst = *((struct in_addr *) RTA_DATA(attr));
665                         break;
666                 case RTA_GATEWAY:
667                         if (gateway != NULL)
668                                 *gateway = *((struct in_addr *) RTA_DATA(attr));
669                         break;
670                 case RTA_OIF:
671                         if (index != NULL)
672                                 *index = *((int *) RTA_DATA(attr));
673                         break;
674                 }
675         }
676 }
677
678 static void extract_ipv6_route(struct rtmsg *msg, int bytes, int *index,
679                                                 struct in6_addr *dst,
680                                                 struct in6_addr *gateway)
681 {
682         struct rtattr *attr;
683
684         for (attr = RTM_RTA(msg); RTA_OK(attr, bytes);
685                                         attr = RTA_NEXT(attr, bytes)) {
686                 switch (attr->rta_type) {
687                 case RTA_DST:
688                         if (dst != NULL)
689                                 *dst = *((struct in6_addr *) RTA_DATA(attr));
690                         break;
691                 case RTA_GATEWAY:
692                         if (gateway != NULL)
693                                 *gateway =
694                                         *((struct in6_addr *) RTA_DATA(attr));
695                         break;
696                 case RTA_OIF:
697                         if (index != NULL)
698                                 *index = *((int *) RTA_DATA(attr));
699                         break;
700                 }
701         }
702 }
703
704 static void process_newroute(unsigned char family, unsigned char scope,
705                                                 struct rtmsg *msg, int bytes)
706 {
707         GSList *list;
708         char dststr[INET6_ADDRSTRLEN], gatewaystr[INET6_ADDRSTRLEN];
709         int index = -1;
710
711         if (family == AF_INET) {
712                 struct in_addr dst = { INADDR_ANY }, gateway = { INADDR_ANY };
713
714                 extract_ipv4_route(msg, bytes, &index, &dst, &gateway);
715
716                 inet_ntop(family, &dst, dststr, sizeof(dststr));
717                 inet_ntop(family, &gateway, gatewaystr, sizeof(gatewaystr));
718
719                 __connman_ipconfig_newroute(index, family, scope, dststr,
720                                                                 gatewaystr);
721
722                 /* skip host specific routes */
723                 if (scope != RT_SCOPE_UNIVERSE &&
724                         !(scope == RT_SCOPE_LINK && dst.s_addr == INADDR_ANY))
725                         return;
726
727                 if (dst.s_addr != INADDR_ANY)
728                         return;
729
730         } else if (family == AF_INET6) {
731                 struct in6_addr dst = IN6ADDR_ANY_INIT,
732                                 gateway = IN6ADDR_ANY_INIT;
733
734                 extract_ipv6_route(msg, bytes, &index, &dst, &gateway);
735
736                 inet_ntop(family, &dst, dststr, sizeof(dststr));
737                 inet_ntop(family, &gateway, gatewaystr, sizeof(gatewaystr));
738
739                 __connman_ipconfig_newroute(index, family, scope, dststr,
740                                                                 gatewaystr);
741
742                 /* skip host specific routes */
743                 if (scope != RT_SCOPE_UNIVERSE &&
744                         !(scope == RT_SCOPE_LINK &&
745                                 IN6_IS_ADDR_UNSPECIFIED(&dst)))
746                         return;
747
748                 if (!IN6_IS_ADDR_UNSPECIFIED(&dst))
749                         return;
750         } else
751                 return;
752
753         for (list = rtnl_list; list; list = list->next) {
754                 struct connman_rtnl *rtnl = list->data;
755
756                 if (rtnl->newgateway)
757                         rtnl->newgateway(index, gatewaystr);
758         }
759 }
760
761 static void process_delroute(unsigned char family, unsigned char scope,
762                                                 struct rtmsg *msg, int bytes)
763 {
764         GSList *list;
765         char dststr[INET6_ADDRSTRLEN], gatewaystr[INET6_ADDRSTRLEN];
766         int index = -1;
767
768         if (family == AF_INET) {
769                 struct in_addr dst = { INADDR_ANY }, gateway = { INADDR_ANY };
770
771                 extract_ipv4_route(msg, bytes, &index, &dst, &gateway);
772
773                 inet_ntop(family, &dst, dststr, sizeof(dststr));
774                 inet_ntop(family, &gateway, gatewaystr, sizeof(gatewaystr));
775
776                 __connman_ipconfig_delroute(index, family, scope, dststr,
777                                                                 gatewaystr);
778
779                 /* skip host specific routes */
780                 if (scope != RT_SCOPE_UNIVERSE &&
781                         !(scope == RT_SCOPE_LINK && dst.s_addr == INADDR_ANY))
782                         return;
783
784                 if (dst.s_addr != INADDR_ANY)
785                         return;
786
787         }  else if (family == AF_INET6) {
788                 struct in6_addr dst = IN6ADDR_ANY_INIT,
789                                 gateway = IN6ADDR_ANY_INIT;
790
791                 extract_ipv6_route(msg, bytes, &index, &dst, &gateway);
792
793                 inet_ntop(family, &dst, dststr, sizeof(dststr));
794                 inet_ntop(family, &gateway, gatewaystr, sizeof(gatewaystr));
795
796                 __connman_ipconfig_delroute(index, family, scope, dststr,
797                                                 gatewaystr);
798
799                 /* skip host specific routes */
800                 if (scope != RT_SCOPE_UNIVERSE &&
801                         !(scope == RT_SCOPE_LINK &&
802                                 IN6_IS_ADDR_UNSPECIFIED(&dst)))
803                         return;
804
805                 if (!IN6_IS_ADDR_UNSPECIFIED(&dst))
806                         return;
807         } else
808                 return;
809
810         for (list = rtnl_list; list; list = list->next) {
811                 struct connman_rtnl *rtnl = list->data;
812
813                 if (rtnl->delgateway)
814                         rtnl->delgateway(index, gatewaystr);
815         }
816 }
817
818 static inline void print_ether(struct rtattr *attr, const char *name)
819 {
820         int len = (int) RTA_PAYLOAD(attr);
821
822         if (len == ETH_ALEN) {
823                 struct ether_addr eth;
824                 memcpy(&eth, RTA_DATA(attr), ETH_ALEN);
825                 print("  attr %s (len %d) %s\n", name, len, ether_ntoa(&eth));
826         } else
827                 print("  attr %s (len %d)\n", name, len);
828 }
829
830 static inline void print_inet(struct rtattr *attr, const char *name,
831                                                         unsigned char family)
832 {
833         int len = (int) RTA_PAYLOAD(attr);
834
835         if (family == AF_INET && len == sizeof(struct in_addr)) {
836                 struct in_addr addr;
837                 addr = *((struct in_addr *) RTA_DATA(attr));
838                 print("  attr %s (len %d) %s\n", name, len, inet_ntoa(addr));
839         } else
840                 print("  attr %s (len %d)\n", name, len);
841 }
842
843 static inline void print_string(struct rtattr *attr, const char *name)
844 {
845         print("  attr %s (len %d) %s\n", name, (int) RTA_PAYLOAD(attr),
846                                                 (char *) RTA_DATA(attr));
847 }
848
849 static inline void print_byte(struct rtattr *attr, const char *name)
850 {
851         print("  attr %s (len %d) 0x%02x\n", name, (int) RTA_PAYLOAD(attr),
852                                         *((unsigned char *) RTA_DATA(attr)));
853 }
854
855 static inline void print_integer(struct rtattr *attr, const char *name)
856 {
857         print("  attr %s (len %d) %d\n", name, (int) RTA_PAYLOAD(attr),
858                                                 *((int *) RTA_DATA(attr)));
859 }
860
861 static inline void print_attr(struct rtattr *attr, const char *name)
862 {
863         int len = (int) RTA_PAYLOAD(attr);
864
865         if (name && len > 0)
866                 print("  attr %s (len %d)\n", name, len);
867         else
868                 print("  attr %d (len %d)\n", attr->rta_type, len);
869 }
870
871 static void rtnl_link(struct nlmsghdr *hdr)
872 {
873         struct ifinfomsg *msg;
874         struct rtattr *attr;
875         int bytes;
876
877         msg = (struct ifinfomsg *) NLMSG_DATA(hdr);
878         bytes = IFLA_PAYLOAD(hdr);
879
880         print("ifi_index %d ifi_flags 0x%04x", msg->ifi_index, msg->ifi_flags);
881
882         for (attr = IFLA_RTA(msg); RTA_OK(attr, bytes);
883                                         attr = RTA_NEXT(attr, bytes)) {
884                 switch (attr->rta_type) {
885                 case IFLA_ADDRESS:
886                         print_ether(attr, "address");
887                         break;
888                 case IFLA_BROADCAST:
889                         print_ether(attr, "broadcast");
890                         break;
891                 case IFLA_IFNAME:
892                         print_string(attr, "ifname");
893                         break;
894                 case IFLA_MTU:
895                         print_integer(attr, "mtu");
896                         break;
897                 case IFLA_LINK:
898                         print_attr(attr, "link");
899                         break;
900                 case IFLA_QDISC:
901                         print_attr(attr, "qdisc");
902                         break;
903                 case IFLA_STATS:
904                         print_attr(attr, "stats");
905                         break;
906                 case IFLA_COST:
907                         print_attr(attr, "cost");
908                         break;
909                 case IFLA_PRIORITY:
910                         print_attr(attr, "priority");
911                         break;
912                 case IFLA_MASTER:
913                         print_attr(attr, "master");
914                         break;
915                 case IFLA_WIRELESS:
916                         print_attr(attr, "wireless");
917                         break;
918                 case IFLA_PROTINFO:
919                         print_attr(attr, "protinfo");
920                         break;
921                 case IFLA_TXQLEN:
922                         print_integer(attr, "txqlen");
923                         break;
924                 case IFLA_MAP:
925                         print_attr(attr, "map");
926                         break;
927                 case IFLA_WEIGHT:
928                         print_attr(attr, "weight");
929                         break;
930                 case IFLA_OPERSTATE:
931                         print_byte(attr, "operstate");
932                         break;
933                 case IFLA_LINKMODE:
934                         print_byte(attr, "linkmode");
935                         break;
936                 default:
937                         print_attr(attr, NULL);
938                         break;
939                 }
940         }
941 }
942
943 static void rtnl_newlink(struct nlmsghdr *hdr)
944 {
945         struct ifinfomsg *msg = (struct ifinfomsg *) NLMSG_DATA(hdr);
946
947         rtnl_link(hdr);
948
949         process_newlink(msg->ifi_type, msg->ifi_index, msg->ifi_flags,
950                                 msg->ifi_change, msg, IFA_PAYLOAD(hdr));
951 }
952
953 static void rtnl_dellink(struct nlmsghdr *hdr)
954 {
955         struct ifinfomsg *msg = (struct ifinfomsg *) NLMSG_DATA(hdr);
956
957         rtnl_link(hdr);
958
959         process_dellink(msg->ifi_type, msg->ifi_index, msg->ifi_flags,
960                                 msg->ifi_change, msg, IFA_PAYLOAD(hdr));
961 }
962
963 static void rtnl_addr(struct nlmsghdr *hdr)
964 {
965         struct ifaddrmsg *msg;
966         struct rtattr *attr;
967         int bytes;
968
969         msg = (struct ifaddrmsg *) NLMSG_DATA(hdr);
970         bytes = IFA_PAYLOAD(hdr);
971
972         print("ifa_family %d ifa_index %d", msg->ifa_family, msg->ifa_index);
973
974         for (attr = IFA_RTA(msg); RTA_OK(attr, bytes);
975                                         attr = RTA_NEXT(attr, bytes)) {
976                 switch (attr->rta_type) {
977                 case IFA_ADDRESS:
978                         print_inet(attr, "address", msg->ifa_family);
979                         break;
980                 case IFA_LOCAL:
981                         print_inet(attr, "local", msg->ifa_family);
982                         break;
983                 case IFA_LABEL:
984                         print_string(attr, "label");
985                         break;
986                 case IFA_BROADCAST:
987                         print_inet(attr, "broadcast", msg->ifa_family);
988                         break;
989                 case IFA_ANYCAST:
990                         print_attr(attr, "anycast");
991                         break;
992                 case IFA_CACHEINFO:
993                         print_attr(attr, "cacheinfo");
994                         break;
995                 case IFA_MULTICAST:
996                         print_attr(attr, "multicast");
997                         break;
998                 default:
999                         print_attr(attr, NULL);
1000                         break;
1001                 }
1002         }
1003 }
1004
1005 static void rtnl_newaddr(struct nlmsghdr *hdr)
1006 {
1007         struct ifaddrmsg *msg = (struct ifaddrmsg *) NLMSG_DATA(hdr);
1008
1009         rtnl_addr(hdr);
1010
1011         process_newaddr(msg->ifa_family, msg->ifa_prefixlen, msg->ifa_index,
1012                                                 msg, IFA_PAYLOAD(hdr));
1013 }
1014
1015 static void rtnl_deladdr(struct nlmsghdr *hdr)
1016 {
1017         struct ifaddrmsg *msg = (struct ifaddrmsg *) NLMSG_DATA(hdr);
1018
1019         rtnl_addr(hdr);
1020
1021         process_deladdr(msg->ifa_family, msg->ifa_prefixlen, msg->ifa_index,
1022                                                 msg, IFA_PAYLOAD(hdr));
1023 }
1024
1025 static void rtnl_route(struct nlmsghdr *hdr)
1026 {
1027         struct rtmsg *msg;
1028         struct rtattr *attr;
1029         int bytes;
1030
1031         msg = (struct rtmsg *) NLMSG_DATA(hdr);
1032         bytes = RTM_PAYLOAD(hdr);
1033
1034         print("rtm_family %d rtm_table %d rtm_protocol %d",
1035                         msg->rtm_family, msg->rtm_table, msg->rtm_protocol);
1036         print("rtm_scope %d rtm_type %d rtm_flags 0x%04x",
1037                                 msg->rtm_scope, msg->rtm_type, msg->rtm_flags);
1038
1039         for (attr = RTM_RTA(msg); RTA_OK(attr, bytes);
1040                                         attr = RTA_NEXT(attr, bytes)) {
1041                 switch (attr->rta_type) {
1042                 case RTA_DST:
1043                         print_inet(attr, "dst", msg->rtm_family);
1044                         break;
1045                 case RTA_SRC:
1046                         print_inet(attr, "src", msg->rtm_family);
1047                         break;
1048                 case RTA_IIF:
1049                         print_string(attr, "iif");
1050                         break;
1051                 case RTA_OIF:
1052                         print_integer(attr, "oif");
1053                         break;
1054                 case RTA_GATEWAY:
1055                         print_inet(attr, "gateway", msg->rtm_family);
1056                         break;
1057                 case RTA_PRIORITY:
1058                         print_attr(attr, "priority");
1059                         break;
1060                 case RTA_PREFSRC:
1061                         print_inet(attr, "prefsrc", msg->rtm_family);
1062                         break;
1063                 case RTA_METRICS:
1064                         print_attr(attr, "metrics");
1065                         break;
1066                 case RTA_TABLE:
1067                         print_integer(attr, "table");
1068                         break;
1069                 default:
1070                         print_attr(attr, NULL);
1071                         break;
1072                 }
1073         }
1074 }
1075
1076 static connman_bool_t is_route_rtmsg(struct rtmsg *msg)
1077 {
1078
1079         if (msg->rtm_table != RT_TABLE_MAIN)
1080                 return FALSE;
1081
1082         if (msg->rtm_protocol != RTPROT_BOOT &&
1083                         msg->rtm_protocol != RTPROT_KERNEL)
1084                 return FALSE;
1085
1086         if (msg->rtm_type != RTN_UNICAST)
1087                 return FALSE;
1088
1089         return TRUE;
1090 }
1091
1092 static void rtnl_newroute(struct nlmsghdr *hdr)
1093 {
1094         struct rtmsg *msg = (struct rtmsg *) NLMSG_DATA(hdr);
1095
1096         rtnl_route(hdr);
1097
1098         if (is_route_rtmsg(msg))
1099                 process_newroute(msg->rtm_family, msg->rtm_scope,
1100                                                 msg, RTM_PAYLOAD(hdr));
1101 }
1102
1103 static void rtnl_delroute(struct nlmsghdr *hdr)
1104 {
1105         struct rtmsg *msg = (struct rtmsg *) NLMSG_DATA(hdr);
1106
1107         rtnl_route(hdr);
1108
1109         if (is_route_rtmsg(msg))
1110                 process_delroute(msg->rtm_family, msg->rtm_scope,
1111                                                 msg, RTM_PAYLOAD(hdr));
1112 }
1113
1114 static void *rtnl_nd_opt_rdnss(struct nd_opt_hdr *opt, guint32 *lifetime,
1115                                int *nr_servers)
1116 {
1117         guint32 *optint = (void *)opt;
1118
1119         if (opt->nd_opt_len < 3)
1120                 return NULL;
1121
1122         if (*lifetime > ntohl(optint[1]))
1123                 *lifetime = ntohl(optint[1]);
1124
1125         /* nd_opt_len is in units of 8 bytes. The header is 1 unit (8 bytes)
1126            and each address is another 2 units (16 bytes).
1127            So the number of addresses (given rounding) is nd_opt_len/2 */
1128         *nr_servers = opt->nd_opt_len / 2;
1129
1130         /* And they start 8 bytes into the packet, or two guint32s in. */
1131         return optint + 2;
1132 }
1133
1134 static const char **rtnl_nd_opt_dnssl(struct nd_opt_hdr *opt, guint32 *lifetime)
1135 {
1136         const char **domains = NULL;
1137         guint32 *optint = (void *)opt;
1138         unsigned char *optc = (void *)&optint[2];
1139         int data_len = (opt->nd_opt_len * 8) - 8;
1140         int nr_domains = 0;
1141         int i, tmp;
1142
1143         if (*lifetime > ntohl(optint[1]))
1144                 *lifetime = ntohl(optint[1]);
1145
1146         /* Turn it into normal strings by converting the length bytes into '.',
1147            and count how many search domains there are while we're at it. */
1148         i = 0;
1149         while (i < data_len) {
1150                 if (optc[i] > 0x3f) {
1151                         DBG("DNSSL contains compressed elements in violation of RFC6106");
1152                         return NULL;
1153                 }
1154
1155                 if (optc[i] == 0) {
1156                         nr_domains++;
1157                         i++;
1158                         /* Check for double zero */
1159                         if (i < data_len && optc[i] == 0)
1160                                 break;
1161                         continue;
1162                 }
1163
1164                 tmp = i;
1165                 i += optc[i] + 1;
1166
1167                 if (i >= data_len) {
1168                         DBG("DNSSL data overflows option length");
1169                         return NULL;
1170                 }
1171
1172                 optc[tmp] = '.';
1173         }
1174
1175         domains = g_try_new0(const char *, nr_domains + 1);
1176         if (!domains)
1177                 return NULL;
1178
1179         /* Now point to the normal strings, missing out the leading '.' that
1180            each of them will have now. */
1181         for (i = 0; i < nr_domains; i++) {
1182                 domains[i] = (char *)optc + 1;
1183                 optc += strlen((char *)optc) + 1;
1184         }
1185
1186         return domains;
1187 }
1188
1189 static void rtnl_newnduseropt(struct nlmsghdr *hdr)
1190 {
1191         struct nduseroptmsg *msg = (struct nduseroptmsg *) NLMSG_DATA(hdr);
1192         struct nd_opt_hdr *opt;
1193         guint32 lifetime = -1;
1194         const char **domains = NULL;
1195         struct in6_addr *servers = NULL;
1196         int i, nr_servers = 0;
1197         int msglen = msg->nduseropt_opts_len;
1198         char *interface;
1199
1200         DBG("family %d index %d len %d type %d code %d",
1201                 msg->nduseropt_family, msg->nduseropt_ifindex,
1202                 msg->nduseropt_opts_len, msg->nduseropt_icmp_type,
1203                 msg->nduseropt_icmp_code);
1204
1205         if (msg->nduseropt_family != AF_INET6 ||
1206                         msg->nduseropt_icmp_type != ND_ROUTER_ADVERT ||
1207                         msg->nduseropt_icmp_code != 0)
1208                 return;
1209
1210         interface = connman_inet_ifname(msg->nduseropt_ifindex);
1211         if (!interface)
1212                 return;
1213
1214         for (opt = (void *)&msg[1];
1215                         msglen > 0;
1216                         msglen -= opt->nd_opt_len * 8,
1217                         opt = ((void *)opt) + opt->nd_opt_len*8) {
1218
1219                 DBG("remaining %d nd opt type %d len %d\n",
1220                         msglen, opt->nd_opt_type, opt->nd_opt_len);
1221
1222                 if (opt->nd_opt_type == 25) { /* ND_OPT_RDNSS */
1223                         char buf[40];
1224
1225                         servers = rtnl_nd_opt_rdnss(opt, &lifetime,
1226                                                                 &nr_servers);
1227                         for (i = 0; i < nr_servers; i++) {
1228                                 if (!inet_ntop(AF_INET6, servers + i, buf,
1229                                                                 sizeof(buf)))
1230                                         continue;
1231
1232                                 connman_resolver_append_lifetime(interface,
1233                                                         NULL, buf, lifetime);
1234                         }
1235
1236                 } else if (opt->nd_opt_type == 31) { /* ND_OPT_DNSSL */
1237                         g_free(domains);
1238
1239                         domains = rtnl_nd_opt_dnssl(opt, &lifetime);
1240                         for (i = 0; domains != NULL && domains[i] != NULL; i++)
1241                                 connman_resolver_append_lifetime(interface,
1242                                                 domains[i], NULL, lifetime);
1243                 }
1244         }
1245
1246         g_free(domains);
1247         g_free(interface);
1248 }
1249
1250 static const char *type2string(uint16_t type)
1251 {
1252         switch (type) {
1253         case NLMSG_NOOP:
1254                 return "NOOP";
1255         case NLMSG_ERROR:
1256                 return "ERROR";
1257         case NLMSG_DONE:
1258                 return "DONE";
1259         case NLMSG_OVERRUN:
1260                 return "OVERRUN";
1261         case RTM_GETLINK:
1262                 return "GETLINK";
1263         case RTM_NEWLINK:
1264                 return "NEWLINK";
1265         case RTM_DELLINK:
1266                 return "DELLINK";
1267         case RTM_GETADDR:
1268                 return "GETADDR";
1269         case RTM_NEWADDR:
1270                 return "NEWADDR";
1271         case RTM_DELADDR:
1272                 return "DELADDR";
1273         case RTM_GETROUTE:
1274                 return "GETROUTE";
1275         case RTM_NEWROUTE:
1276                 return "NEWROUTE";
1277         case RTM_DELROUTE:
1278                 return "DELROUTE";
1279         case RTM_NEWNDUSEROPT:
1280                 return "NEWNDUSEROPT";
1281         default:
1282                 return "UNKNOWN";
1283         }
1284 }
1285
1286 static GIOChannel *channel = NULL;
1287
1288 struct rtnl_request {
1289         struct nlmsghdr hdr;
1290         struct rtgenmsg msg;
1291 };
1292 #define RTNL_REQUEST_SIZE  (sizeof(struct nlmsghdr) + sizeof(struct rtgenmsg))
1293
1294 static GSList *request_list = NULL;
1295 static guint32 request_seq = 0;
1296
1297 static struct rtnl_request *find_request(guint32 seq)
1298 {
1299         GSList *list;
1300
1301         for (list = request_list; list; list = list->next) {
1302                 struct rtnl_request *req = list->data;
1303
1304                 if (req->hdr.nlmsg_seq == seq)
1305                         return req;
1306         }
1307
1308         return NULL;
1309 }
1310
1311 static int send_request(struct rtnl_request *req)
1312 {
1313         struct sockaddr_nl addr;
1314         int sk;
1315
1316         DBG("%s len %d type %d flags 0x%04x seq %d",
1317                                 type2string(req->hdr.nlmsg_type),
1318                                 req->hdr.nlmsg_len, req->hdr.nlmsg_type,
1319                                 req->hdr.nlmsg_flags, req->hdr.nlmsg_seq);
1320
1321         sk = g_io_channel_unix_get_fd(channel);
1322
1323         memset(&addr, 0, sizeof(addr));
1324         addr.nl_family = AF_NETLINK;
1325
1326         return sendto(sk, req, req->hdr.nlmsg_len, 0,
1327                                 (struct sockaddr *) &addr, sizeof(addr));
1328 }
1329
1330 static int queue_request(struct rtnl_request *req)
1331 {
1332         request_list = g_slist_append(request_list, req);
1333
1334         if (g_slist_length(request_list) > 1)
1335                 return 0;
1336
1337         return send_request(req);
1338 }
1339
1340 static int process_response(guint32 seq)
1341 {
1342         struct rtnl_request *req;
1343
1344         DBG("seq %d", seq);
1345
1346         req = find_request(seq);
1347         if (req != NULL) {
1348                 request_list = g_slist_remove(request_list, req);
1349                 g_free(req);
1350         }
1351
1352         req = g_slist_nth_data(request_list, 0);
1353         if (req == NULL)
1354                 return 0;
1355
1356         return send_request(req);
1357 }
1358
1359 static void rtnl_message(void *buf, size_t len)
1360 {
1361         DBG("buf %p len %zd", buf, len);
1362
1363         while (len > 0) {
1364                 struct nlmsghdr *hdr = buf;
1365                 struct nlmsgerr *err;
1366
1367                 if (!NLMSG_OK(hdr, len))
1368                         break;
1369
1370                 DBG("%s len %d type %d flags 0x%04x seq %d pid %d",
1371                                         type2string(hdr->nlmsg_type),
1372                                         hdr->nlmsg_len, hdr->nlmsg_type,
1373                                         hdr->nlmsg_flags, hdr->nlmsg_seq,
1374                                         hdr->nlmsg_pid);
1375
1376                 switch (hdr->nlmsg_type) {
1377                 case NLMSG_NOOP:
1378                 case NLMSG_OVERRUN:
1379                         return;
1380                 case NLMSG_DONE:
1381                         process_response(hdr->nlmsg_seq);
1382                         return;
1383                 case NLMSG_ERROR:
1384                         err = NLMSG_DATA(hdr);
1385                         DBG("error %d (%s)", -err->error,
1386                                                 strerror(-err->error));
1387                         return;
1388                 case RTM_NEWLINK:
1389                         rtnl_newlink(hdr);
1390                         break;
1391                 case RTM_DELLINK:
1392                         rtnl_dellink(hdr);
1393                         break;
1394                 case RTM_NEWADDR:
1395                         rtnl_newaddr(hdr);
1396                         break;
1397                 case RTM_DELADDR:
1398                         rtnl_deladdr(hdr);
1399                         break;
1400                 case RTM_NEWROUTE:
1401                         rtnl_newroute(hdr);
1402                         break;
1403                 case RTM_DELROUTE:
1404                         rtnl_delroute(hdr);
1405                         break;
1406                 case RTM_NEWNDUSEROPT:
1407                         rtnl_newnduseropt(hdr);
1408                         break;
1409                 }
1410
1411                 len -= hdr->nlmsg_len;
1412                 buf += hdr->nlmsg_len;
1413         }
1414 }
1415
1416 static gboolean netlink_event(GIOChannel *chan,
1417                                 GIOCondition cond, gpointer data)
1418 {
1419         unsigned char buf[4096];
1420         struct sockaddr_nl nladdr;
1421         socklen_t addr_len = sizeof(nladdr);
1422         ssize_t status;
1423         int fd;
1424
1425         if (cond & (G_IO_NVAL | G_IO_HUP | G_IO_ERR))
1426                 return FALSE;
1427
1428         memset(buf, 0, sizeof(buf));
1429         memset(&nladdr, 0, sizeof(nladdr));
1430
1431         fd = g_io_channel_unix_get_fd(chan);
1432
1433         status = recvfrom(fd, buf, sizeof(buf), 0,
1434                        (struct sockaddr *) &nladdr, &addr_len);
1435         if (status < 0) {
1436                 if (errno == EINTR || errno == EAGAIN)
1437                         return TRUE;
1438
1439                 return FALSE;
1440         }
1441
1442         if (status == 0)
1443                 return FALSE;
1444
1445         if (nladdr.nl_pid != 0) { /* not sent by kernel, ignore */
1446                 DBG("Received msg from %u, ignoring it", nladdr.nl_pid);
1447                 return TRUE;
1448         }
1449
1450         rtnl_message(buf, status);
1451
1452         return TRUE;
1453 }
1454
1455 static int send_getlink(void)
1456 {
1457         struct rtnl_request *req;
1458
1459         DBG("");
1460
1461         req = g_try_malloc0(RTNL_REQUEST_SIZE);
1462         if (req == NULL)
1463                 return -ENOMEM;
1464
1465         req->hdr.nlmsg_len = RTNL_REQUEST_SIZE;
1466         req->hdr.nlmsg_type = RTM_GETLINK;
1467         req->hdr.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP;
1468         req->hdr.nlmsg_pid = 0;
1469         req->hdr.nlmsg_seq = request_seq++;
1470         req->msg.rtgen_family = AF_INET;
1471
1472         return queue_request(req);
1473 }
1474
1475 static int send_getaddr(void)
1476 {
1477         struct rtnl_request *req;
1478
1479         DBG("");
1480
1481         req = g_try_malloc0(RTNL_REQUEST_SIZE);
1482         if (req == NULL)
1483                 return -ENOMEM;
1484
1485         req->hdr.nlmsg_len = RTNL_REQUEST_SIZE;
1486         req->hdr.nlmsg_type = RTM_GETADDR;
1487         req->hdr.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP;
1488         req->hdr.nlmsg_pid = 0;
1489         req->hdr.nlmsg_seq = request_seq++;
1490         req->msg.rtgen_family = AF_INET;
1491
1492         return queue_request(req);
1493 }
1494
1495 static int send_getroute(void)
1496 {
1497         struct rtnl_request *req;
1498
1499         DBG("");
1500
1501         req = g_try_malloc0(RTNL_REQUEST_SIZE);
1502         if (req == NULL)
1503                 return -ENOMEM;
1504
1505         req->hdr.nlmsg_len = RTNL_REQUEST_SIZE;
1506         req->hdr.nlmsg_type = RTM_GETROUTE;
1507         req->hdr.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP;
1508         req->hdr.nlmsg_pid = 0;
1509         req->hdr.nlmsg_seq = request_seq++;
1510         req->msg.rtgen_family = AF_INET;
1511
1512         return queue_request(req);
1513 }
1514
1515 static gboolean update_timeout_cb(gpointer user_data)
1516 {
1517         __connman_rtnl_request_update();
1518
1519         return TRUE;
1520 }
1521
1522 static void update_interval_callback(guint min)
1523 {
1524         if (update_timeout > 0)
1525                 g_source_remove(update_timeout);
1526
1527         if (min < G_MAXUINT) {
1528                 update_interval = min;
1529                 update_timeout = g_timeout_add_seconds(update_interval,
1530                                                 update_timeout_cb, NULL);
1531         } else {
1532                 update_timeout = 0;
1533                 update_interval = G_MAXUINT;
1534         }
1535 }
1536
1537 static gint compare_interval(gconstpointer a, gconstpointer b)
1538 {
1539         guint val_a = GPOINTER_TO_UINT(a);
1540         guint val_b = GPOINTER_TO_UINT(b);
1541
1542         return val_a - val_b;
1543 }
1544
1545 unsigned int __connman_rtnl_update_interval_add(unsigned int interval)
1546 {
1547         guint min;
1548
1549         if (interval == 0)
1550                 return 0;
1551
1552         update_list = g_slist_insert_sorted(update_list,
1553                         GUINT_TO_POINTER(interval), compare_interval);
1554
1555         min = GPOINTER_TO_UINT(g_slist_nth_data(update_list, 0));
1556         if (min < update_interval) {
1557                 update_interval_callback(min);
1558                 __connman_rtnl_request_update();
1559         }
1560
1561         return update_interval;
1562 }
1563
1564 unsigned int __connman_rtnl_update_interval_remove(unsigned int interval)
1565 {
1566         guint min = G_MAXUINT;
1567
1568         if (interval == 0)
1569                 return 0;
1570
1571         update_list = g_slist_remove(update_list, GINT_TO_POINTER(interval));
1572
1573         if (update_list != NULL)
1574                 min = GPOINTER_TO_UINT(g_slist_nth_data(update_list, 0));
1575
1576         if (min > update_interval)
1577                 update_interval_callback(min);
1578
1579         return min;
1580 }
1581
1582 int __connman_rtnl_request_update(void)
1583 {
1584         return send_getlink();
1585 }
1586
1587 int __connman_rtnl_init(void)
1588 {
1589         struct sockaddr_nl addr;
1590         int sk;
1591
1592         DBG("");
1593
1594         interface_list = g_hash_table_new_full(g_direct_hash, g_direct_equal,
1595                                                         NULL, free_interface);
1596
1597         sk = socket(PF_NETLINK, SOCK_DGRAM | SOCK_CLOEXEC, NETLINK_ROUTE);
1598         if (sk < 0)
1599                 return -1;
1600
1601         memset(&addr, 0, sizeof(addr));
1602         addr.nl_family = AF_NETLINK;
1603         addr.nl_groups = RTMGRP_LINK | RTMGRP_IPV4_IFADDR | RTMGRP_IPV4_ROUTE |
1604                                 RTMGRP_IPV6_IFADDR | RTMGRP_IPV6_ROUTE |
1605                                 (1<<(RTNLGRP_ND_USEROPT-1));
1606
1607         if (bind(sk, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
1608                 close(sk);
1609                 return -1;
1610         }
1611
1612         channel = g_io_channel_unix_new(sk);
1613         g_io_channel_set_close_on_unref(channel, TRUE);
1614
1615         g_io_channel_set_encoding(channel, NULL, NULL);
1616         g_io_channel_set_buffered(channel, FALSE);
1617
1618         g_io_add_watch(channel, G_IO_IN | G_IO_NVAL | G_IO_HUP | G_IO_ERR,
1619                                                         netlink_event, NULL);
1620
1621         return 0;
1622 }
1623
1624 void __connman_rtnl_start(void)
1625 {
1626         DBG("");
1627
1628         send_getlink();
1629         send_getaddr();
1630         send_getroute();
1631 }
1632
1633 void __connman_rtnl_cleanup(void)
1634 {
1635         GSList *list;
1636
1637         DBG("");
1638
1639         for (list = watch_list; list; list = list->next) {
1640                 struct watch_data *watch = list->data;
1641
1642                 DBG("removing watch %d", watch->id);
1643
1644                 g_free(watch);
1645                 list->data = NULL;
1646         }
1647
1648         g_slist_free(watch_list);
1649         watch_list = NULL;
1650
1651         g_slist_free(update_list);
1652         update_list = NULL;
1653
1654         for (list = request_list; list; list = list->next) {
1655                 struct rtnl_request *req = list->data;
1656
1657                 DBG("%s len %d type %d flags 0x%04x seq %d",
1658                                 type2string(req->hdr.nlmsg_type),
1659                                 req->hdr.nlmsg_len, req->hdr.nlmsg_type,
1660                                 req->hdr.nlmsg_flags, req->hdr.nlmsg_seq);
1661
1662                 g_free(req);
1663                 list->data = NULL;
1664         }
1665
1666         g_slist_free(request_list);
1667         request_list = NULL;
1668
1669         g_io_channel_shutdown(channel, TRUE, NULL);
1670         g_io_channel_unref(channel);
1671
1672         channel = NULL;
1673
1674         g_hash_table_destroy(interface_list);
1675 }