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 <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>
37 #include <linux/netlink.h>
38 #include <linux/rtnetlink.h>
39 #include <linux/wireless.h>
45 #ifndef ARPHDR_PHONET_PIPE
46 #define ARPHDR_PHONET_PIPE (821)
49 #define print(arg...) do { if (0) connman_info(arg); } while (0)
50 //#define print(arg...) connman_info(arg)
55 connman_rtnl_link_cb_t newlink;
59 static GSList *watch_list = NULL;
60 static unsigned int watch_id = 0;
62 static GSList *update_list = NULL;
63 static guint update_interval = G_MAXUINT;
64 static guint update_timeout = 0;
66 struct interface_data {
70 enum connman_service_type service_type;
71 enum connman_device_type device_type;
74 static GHashTable *interface_list = NULL;
76 static void free_interface(gpointer data)
78 struct interface_data *interface = data;
80 __connman_technology_remove_interface(interface->service_type,
81 interface->index, interface->name, interface->ident);
83 g_free(interface->ident);
84 g_free(interface->name);
88 static connman_bool_t ether_blacklisted(const char *name)
93 /* virtual interface from VMware */
94 if (g_str_has_prefix(name, "vmnet") == TRUE)
97 /* virtual interface from VirtualBox */
98 if (g_str_has_prefix(name, "vboxnet") == TRUE)
101 /* virtual interface from Virtual Machine Manager */
102 if (g_str_has_prefix(name, "virbr") == TRUE)
108 static connman_bool_t wext_interface(char *ifname)
113 fd = socket(PF_INET, SOCK_DGRAM, 0);
117 memset(&wrq, 0, sizeof(wrq));
118 strncpy(wrq.ifr_name, ifname, IFNAMSIZ);
120 err = ioctl(fd, SIOCGIWNAME, &wrq);
130 static void read_uevent(struct interface_data *interface)
132 char *filename, line[128];
133 connman_bool_t found_devtype;
136 if (ether_blacklisted(interface->name) == TRUE) {
137 interface->service_type = CONNMAN_SERVICE_TYPE_UNKNOWN;
138 interface->device_type = CONNMAN_DEVICE_TYPE_UNKNOWN;
140 interface->service_type = CONNMAN_SERVICE_TYPE_ETHERNET;
141 interface->device_type = CONNMAN_DEVICE_TYPE_ETHERNET;
144 filename = g_strdup_printf("/sys/class/net/%s/uevent",
147 f = fopen(filename, "re");
154 found_devtype = FALSE;
155 while (fgets(line, sizeof(line), f)) {
158 pos = strchr(line, '\n');
163 if (strncmp(line, "DEVTYPE=", 8) != 0)
166 found_devtype = TRUE;
168 if (strcmp(line + 8, "wlan") == 0) {
169 interface->service_type = CONNMAN_SERVICE_TYPE_WIFI;
170 interface->device_type = CONNMAN_DEVICE_TYPE_WIFI;
171 } else if (strcmp(line + 8, "wwan") == 0) {
172 interface->service_type = CONNMAN_SERVICE_TYPE_CELLULAR;
173 interface->device_type = CONNMAN_DEVICE_TYPE_CELLULAR;
174 } else if (strcmp(line + 8, "bluetooth") == 0) {
175 interface->service_type = CONNMAN_SERVICE_TYPE_BLUETOOTH;
176 interface->device_type = CONNMAN_DEVICE_TYPE_BLUETOOTH;
177 } else if (strcmp(line + 8, "wimax") == 0) {
178 interface->service_type = CONNMAN_SERVICE_TYPE_WIMAX;
179 interface->device_type = CONNMAN_DEVICE_TYPE_WIMAX;
180 } else if (strcmp(line + 8, "gadget") == 0) {
181 interface->service_type = CONNMAN_SERVICE_TYPE_GADGET;
182 interface->device_type = CONNMAN_DEVICE_TYPE_GADGET;
185 interface->service_type = CONNMAN_SERVICE_TYPE_UNKNOWN;
186 interface->device_type = CONNMAN_DEVICE_TYPE_UNKNOWN;
195 /* We haven't got a DEVTYPE, let's check if it's a wireless device */
196 if (wext_interface(interface->name)) {
197 interface->service_type = CONNMAN_SERVICE_TYPE_WIFI;
198 interface->device_type = CONNMAN_DEVICE_TYPE_WIFI;
200 connman_error("%s runs an unsupported 802.11 driver",
205 enum connman_device_type __connman_rtnl_get_device_type(int index)
207 struct interface_data *interface;
209 interface = g_hash_table_lookup(interface_list,
210 GINT_TO_POINTER(index));
211 if (interface == NULL)
212 return CONNMAN_DEVICE_TYPE_UNKNOWN;
214 return interface->device_type;
218 * connman_rtnl_add_newlink_watch:
219 * @index: network device index
220 * @callback: callback function
221 * @user_data: callback data;
223 * Add a new RTNL watch for newlink events
225 * Returns: %0 on failure and a unique id on success
227 unsigned int connman_rtnl_add_newlink_watch(int index,
228 connman_rtnl_link_cb_t callback, void *user_data)
230 struct watch_data *watch;
232 watch = g_try_new0(struct watch_data, 1);
236 watch->id = ++watch_id;
237 watch->index = index;
239 watch->newlink = callback;
240 watch->user_data = user_data;
242 watch_list = g_slist_prepend(watch_list, watch);
244 DBG("id %d", watch->id);
247 unsigned int flags = __connman_ipconfig_get_flags_from_index(index);
250 callback(flags, 0, user_data);
257 * connman_rtnl_remove_watch:
258 * @id: watch identifier
260 * Remove the RTNL watch for the identifier
262 void connman_rtnl_remove_watch(unsigned int id)
271 for (list = watch_list; list; list = list->next) {
272 struct watch_data *watch = list->data;
274 if (watch->id == id) {
275 watch_list = g_slist_remove(watch_list, watch);
282 static void trigger_rtnl(int index, void *user_data)
284 struct connman_rtnl *rtnl = user_data;
287 unsigned short type = __connman_ipconfig_get_type_from_index(index);
288 unsigned int flags = __connman_ipconfig_get_flags_from_index(index);
290 rtnl->newlink(type, index, flags, 0);
293 if (rtnl->newgateway) {
294 const char *gateway = __connman_ipconfig_get_gateway_from_index(index);
297 rtnl->newgateway(index, gateway);
301 static GSList *rtnl_list = NULL;
303 static gint compare_priority(gconstpointer a, gconstpointer b)
305 const struct connman_rtnl *rtnl1 = a;
306 const struct connman_rtnl *rtnl2 = b;
308 return rtnl2->priority - rtnl1->priority;
312 * connman_rtnl_register:
315 * Register a new RTNL module
317 * Returns: %0 on success
319 int connman_rtnl_register(struct connman_rtnl *rtnl)
321 DBG("rtnl %p name %s", rtnl, rtnl->name);
323 rtnl_list = g_slist_insert_sorted(rtnl_list, rtnl,
326 __connman_ipconfig_foreach(trigger_rtnl, rtnl);
332 * connman_rtnl_unregister:
335 * Remove a previously registered RTNL module
337 void connman_rtnl_unregister(struct connman_rtnl *rtnl)
339 DBG("rtnl %p name %s", rtnl, rtnl->name);
341 rtnl_list = g_slist_remove(rtnl_list, rtnl);
344 static const char *operstate2str(unsigned char operstate)
347 case IF_OPER_UNKNOWN:
349 case IF_OPER_NOTPRESENT:
350 return "NOT-PRESENT";
353 case IF_OPER_LOWERLAYERDOWN:
354 return "LOWER-LAYER-DOWN";
355 case IF_OPER_TESTING:
357 case IF_OPER_DORMANT:
366 static void extract_link(struct ifinfomsg *msg, int bytes,
367 struct ether_addr *address, const char **ifname,
368 unsigned int *mtu, unsigned char *operstate,
369 struct rtnl_link_stats *stats)
373 for (attr = IFLA_RTA(msg); RTA_OK(attr, bytes);
374 attr = RTA_NEXT(attr, bytes)) {
375 switch (attr->rta_type) {
378 memcpy(address, RTA_DATA(attr), ETH_ALEN);
382 *ifname = RTA_DATA(attr);
386 *mtu = *((unsigned int *) RTA_DATA(attr));
390 memcpy(stats, RTA_DATA(attr),
391 sizeof(struct rtnl_link_stats));
394 if (operstate != NULL)
395 *operstate = *((unsigned char *) RTA_DATA(attr));
403 static void process_newlink(unsigned short type, int index, unsigned flags,
404 unsigned change, struct ifinfomsg *msg, int bytes)
406 struct ether_addr address = {{ 0, 0, 0, 0, 0, 0 }};
407 struct ether_addr compare = {{ 0, 0, 0, 0, 0, 0 }};
408 struct rtnl_link_stats stats;
409 unsigned char operstate = 0xff;
410 struct interface_data *interface;
411 const char *ifname = NULL;
412 unsigned int mtu = 0;
413 char ident[13], str[18];
416 memset(&stats, 0, sizeof(stats));
417 extract_link(msg, bytes, &address, &ifname, &mtu, &operstate, &stats);
419 snprintf(ident, 13, "%02x%02x%02x%02x%02x%02x",
420 address.ether_addr_octet[0],
421 address.ether_addr_octet[1],
422 address.ether_addr_octet[2],
423 address.ether_addr_octet[3],
424 address.ether_addr_octet[4],
425 address.ether_addr_octet[5]);
427 snprintf(str, 18, "%02X:%02X:%02X:%02X:%02X:%02X",
428 address.ether_addr_octet[0],
429 address.ether_addr_octet[1],
430 address.ether_addr_octet[2],
431 address.ether_addr_octet[3],
432 address.ether_addr_octet[4],
433 address.ether_addr_octet[5]);
437 case ARPHRD_LOOPBACK:
438 case ARPHDR_PHONET_PIPE:
440 __connman_ipconfig_newlink(index, type, flags,
445 if (memcmp(&address, &compare, ETH_ALEN) != 0)
446 connman_info("%s {newlink} index %d address %s mtu %u",
447 ifname, index, str, mtu);
449 if (operstate != 0xff)
450 connman_info("%s {newlink} index %d operstate %u <%s>",
451 ifname, index, operstate,
452 operstate2str(operstate));
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);
461 g_hash_table_insert(interface_list,
462 GINT_TO_POINTER(index), interface);
464 if (type == ARPHRD_ETHER)
465 read_uevent(interface);
467 __connman_technology_add_interface(interface->service_type,
468 interface->index, interface->name, interface->ident);
471 for (list = rtnl_list; list; list = list->next) {
472 struct connman_rtnl *rtnl = list->data;
475 rtnl->newlink(type, index, flags, change);
478 for (list = watch_list; list; list = list->next) {
479 struct watch_data *watch = list->data;
481 if (watch->index != index)
485 watch->newlink(flags, change, watch->user_data);
489 static void process_dellink(unsigned short type, int index, unsigned flags,
490 unsigned change, struct ifinfomsg *msg, int bytes)
492 struct rtnl_link_stats stats;
493 unsigned char operstate = 0xff;
494 const char *ifname = NULL;
497 memset(&stats, 0, sizeof(stats));
498 extract_link(msg, bytes, NULL, &ifname, NULL, &operstate, &stats);
500 if (operstate != 0xff)
501 connman_info("%s {dellink} index %d operstate %u <%s>",
502 ifname, index, operstate,
503 operstate2str(operstate));
505 for (list = rtnl_list; list; list = list->next) {
506 struct connman_rtnl *rtnl = list->data;
509 rtnl->dellink(type, index, flags, change);
514 case ARPHRD_LOOPBACK:
516 __connman_ipconfig_dellink(index, &stats);
520 g_hash_table_remove(interface_list, GINT_TO_POINTER(index));
523 static void extract_ipv4_addr(struct ifaddrmsg *msg, int bytes,
525 struct in_addr *local,
526 struct in_addr *address,
527 struct in_addr *broadcast)
531 for (attr = IFA_RTA(msg); RTA_OK(attr, bytes);
532 attr = RTA_NEXT(attr, bytes)) {
533 switch (attr->rta_type) {
536 *address = *((struct in_addr *) RTA_DATA(attr));
540 *local = *((struct in_addr *) RTA_DATA(attr));
543 if (broadcast != NULL)
544 *broadcast = *((struct in_addr *) RTA_DATA(attr));
548 *label = RTA_DATA(attr);
554 static void extract_ipv6_addr(struct ifaddrmsg *msg, int bytes,
555 struct in6_addr *addr,
556 struct in6_addr *local)
560 for (attr = IFA_RTA(msg); RTA_OK(attr, bytes);
561 attr = RTA_NEXT(attr, bytes)) {
562 switch (attr->rta_type) {
565 *addr = *((struct in6_addr *) RTA_DATA(attr));
569 *local = *((struct in6_addr *) RTA_DATA(attr));
575 static void process_newaddr(unsigned char family, unsigned char prefixlen,
576 int index, struct ifaddrmsg *msg, int bytes)
578 const char *label = NULL;
580 char ip_string[INET6_ADDRSTRLEN];
582 if (family == AF_INET) {
583 struct in_addr ipv4_addr = { INADDR_ANY };
585 extract_ipv4_addr(msg, bytes, &label, &ipv4_addr, NULL, NULL);
587 } else if (family == AF_INET6) {
588 struct in6_addr ipv6_address, ipv6_local;
590 extract_ipv6_addr(msg, bytes, &ipv6_address, &ipv6_local);
591 if (IN6_IS_ADDR_LINKLOCAL(&ipv6_address))
599 if (inet_ntop(family, src, ip_string, INET6_ADDRSTRLEN) == NULL)
602 __connman_ipconfig_newaddr(index, family, label,
603 prefixlen, ip_string);
606 static void process_deladdr(unsigned char family, unsigned char prefixlen,
607 int index, struct ifaddrmsg *msg, int bytes)
609 const char *label = NULL;
611 char ip_string[INET6_ADDRSTRLEN];
613 if (family == AF_INET) {
614 struct in_addr ipv4_addr = { INADDR_ANY };
616 extract_ipv4_addr(msg, bytes, &label, &ipv4_addr, NULL, NULL);
618 } else if (family == AF_INET6) {
619 struct in6_addr ipv6_address, ipv6_local;
621 extract_ipv6_addr(msg, bytes, &ipv6_address, &ipv6_local);
622 if (IN6_IS_ADDR_LINKLOCAL(&ipv6_address))
630 if (inet_ntop(family, src, ip_string, INET6_ADDRSTRLEN) == NULL)
633 __connman_ipconfig_deladdr(index, family, label,
634 prefixlen, ip_string);
637 static void extract_ipv4_route(struct rtmsg *msg, int bytes, int *index,
639 struct in_addr *gateway)
643 for (attr = RTM_RTA(msg); RTA_OK(attr, bytes);
644 attr = RTA_NEXT(attr, bytes)) {
645 switch (attr->rta_type) {
648 *dst = *((struct in_addr *) RTA_DATA(attr));
652 *gateway = *((struct in_addr *) RTA_DATA(attr));
656 *index = *((int *) RTA_DATA(attr));
662 static void extract_ipv6_route(struct rtmsg *msg, int bytes, int *index,
663 struct in6_addr *dst,
664 struct in6_addr *gateway)
668 for (attr = RTM_RTA(msg); RTA_OK(attr, bytes);
669 attr = RTA_NEXT(attr, bytes)) {
670 switch (attr->rta_type) {
673 *dst = *((struct in6_addr *) RTA_DATA(attr));
678 *((struct in6_addr *) RTA_DATA(attr));
682 *index = *((int *) RTA_DATA(attr));
688 static void process_newroute(unsigned char family, unsigned char scope,
689 struct rtmsg *msg, int bytes)
692 char dststr[INET6_ADDRSTRLEN], gatewaystr[INET6_ADDRSTRLEN];
695 if (family == AF_INET) {
696 struct in_addr dst = { INADDR_ANY }, gateway = { INADDR_ANY };
698 extract_ipv4_route(msg, bytes, &index, &dst, &gateway);
700 inet_ntop(family, &dst, dststr, sizeof(dststr));
701 inet_ntop(family, &gateway, gatewaystr, sizeof(gatewaystr));
703 __connman_ipconfig_newroute(index, family, scope, dststr,
706 /* skip host specific routes */
707 if (scope != RT_SCOPE_UNIVERSE &&
708 !(scope == RT_SCOPE_LINK && dst.s_addr == INADDR_ANY))
711 if (dst.s_addr != INADDR_ANY)
714 } else if (family == AF_INET6) {
715 struct in6_addr dst = IN6ADDR_ANY_INIT,
716 gateway = IN6ADDR_ANY_INIT;
718 extract_ipv6_route(msg, bytes, &index, &dst, &gateway);
720 inet_ntop(family, &dst, dststr, sizeof(dststr));
721 inet_ntop(family, &gateway, gatewaystr, sizeof(gatewaystr));
723 __connman_ipconfig_newroute(index, family, scope, dststr,
726 /* skip host specific routes */
727 if (scope != RT_SCOPE_UNIVERSE &&
728 !(scope == RT_SCOPE_LINK &&
729 IN6_IS_ADDR_UNSPECIFIED(&dst)))
732 if (!IN6_IS_ADDR_UNSPECIFIED(&dst))
737 for (list = rtnl_list; list; list = list->next) {
738 struct connman_rtnl *rtnl = list->data;
740 if (rtnl->newgateway)
741 rtnl->newgateway(index, gatewaystr);
745 static void process_delroute(unsigned char family, unsigned char scope,
746 struct rtmsg *msg, int bytes)
749 char dststr[INET6_ADDRSTRLEN], gatewaystr[INET6_ADDRSTRLEN];
752 if (family == AF_INET) {
753 struct in_addr dst = { INADDR_ANY }, gateway = { INADDR_ANY };
755 extract_ipv4_route(msg, bytes, &index, &dst, &gateway);
757 inet_ntop(family, &dst, dststr, sizeof(dststr));
758 inet_ntop(family, &gateway, gatewaystr, sizeof(gatewaystr));
760 __connman_ipconfig_delroute(index, family, scope, dststr,
763 /* skip host specific routes */
764 if (scope != RT_SCOPE_UNIVERSE &&
765 !(scope == RT_SCOPE_LINK && dst.s_addr == INADDR_ANY))
768 if (dst.s_addr != INADDR_ANY)
771 } else if (family == AF_INET6) {
772 struct in6_addr dst = IN6ADDR_ANY_INIT,
773 gateway = IN6ADDR_ANY_INIT;
775 extract_ipv6_route(msg, bytes, &index, &dst, &gateway);
777 inet_ntop(family, &dst, dststr, sizeof(dststr));
778 inet_ntop(family, &gateway, gatewaystr, sizeof(gatewaystr));
780 __connman_ipconfig_delroute(index, family, scope, dststr,
783 /* skip host specific routes */
784 if (scope != RT_SCOPE_UNIVERSE &&
785 !(scope == RT_SCOPE_LINK &&
786 IN6_IS_ADDR_UNSPECIFIED(&dst)))
789 if (!IN6_IS_ADDR_UNSPECIFIED(&dst))
794 for (list = rtnl_list; list; list = list->next) {
795 struct connman_rtnl *rtnl = list->data;
797 if (rtnl->delgateway)
798 rtnl->delgateway(index, gatewaystr);
802 static inline void print_ether(struct rtattr *attr, const char *name)
804 int len = (int) RTA_PAYLOAD(attr);
806 if (len == ETH_ALEN) {
807 struct ether_addr eth;
808 memcpy(ð, RTA_DATA(attr), ETH_ALEN);
809 print(" attr %s (len %d) %s\n", name, len, ether_ntoa(ð));
811 print(" attr %s (len %d)\n", name, len);
814 static inline void print_inet(struct rtattr *attr, const char *name,
815 unsigned char family)
817 int len = (int) RTA_PAYLOAD(attr);
819 if (family == AF_INET && len == sizeof(struct in_addr)) {
821 addr = *((struct in_addr *) RTA_DATA(attr));
822 print(" attr %s (len %d) %s\n", name, len, inet_ntoa(addr));
824 print(" attr %s (len %d)\n", name, len);
827 static inline void print_string(struct rtattr *attr, const char *name)
829 print(" attr %s (len %d) %s\n", name, (int) RTA_PAYLOAD(attr),
830 (char *) RTA_DATA(attr));
833 static inline void print_byte(struct rtattr *attr, const char *name)
835 print(" attr %s (len %d) 0x%02x\n", name, (int) RTA_PAYLOAD(attr),
836 *((unsigned char *) RTA_DATA(attr)));
839 static inline void print_integer(struct rtattr *attr, const char *name)
841 print(" attr %s (len %d) %d\n", name, (int) RTA_PAYLOAD(attr),
842 *((int *) RTA_DATA(attr)));
845 static inline void print_attr(struct rtattr *attr, const char *name)
847 int len = (int) RTA_PAYLOAD(attr);
850 print(" attr %s (len %d)\n", name, len);
852 print(" attr %d (len %d)\n", attr->rta_type, len);
855 static void rtnl_link(struct nlmsghdr *hdr)
857 struct ifinfomsg *msg;
861 msg = (struct ifinfomsg *) NLMSG_DATA(hdr);
862 bytes = IFLA_PAYLOAD(hdr);
864 print("ifi_index %d ifi_flags 0x%04x", msg->ifi_index, msg->ifi_flags);
866 for (attr = IFLA_RTA(msg); RTA_OK(attr, bytes);
867 attr = RTA_NEXT(attr, bytes)) {
868 switch (attr->rta_type) {
870 print_ether(attr, "address");
873 print_ether(attr, "broadcast");
876 print_string(attr, "ifname");
879 print_integer(attr, "mtu");
882 print_attr(attr, "link");
885 print_attr(attr, "qdisc");
888 print_attr(attr, "stats");
891 print_attr(attr, "cost");
894 print_attr(attr, "priority");
897 print_attr(attr, "master");
900 print_attr(attr, "wireless");
903 print_attr(attr, "protinfo");
906 print_integer(attr, "txqlen");
909 print_attr(attr, "map");
912 print_attr(attr, "weight");
915 print_byte(attr, "operstate");
918 print_byte(attr, "linkmode");
921 print_attr(attr, NULL);
927 static void rtnl_newlink(struct nlmsghdr *hdr)
929 struct ifinfomsg *msg = (struct ifinfomsg *) NLMSG_DATA(hdr);
933 process_newlink(msg->ifi_type, msg->ifi_index, msg->ifi_flags,
934 msg->ifi_change, msg, IFA_PAYLOAD(hdr));
937 static void rtnl_dellink(struct nlmsghdr *hdr)
939 struct ifinfomsg *msg = (struct ifinfomsg *) NLMSG_DATA(hdr);
943 process_dellink(msg->ifi_type, msg->ifi_index, msg->ifi_flags,
944 msg->ifi_change, msg, IFA_PAYLOAD(hdr));
947 static void rtnl_addr(struct nlmsghdr *hdr)
949 struct ifaddrmsg *msg;
953 msg = (struct ifaddrmsg *) NLMSG_DATA(hdr);
954 bytes = IFA_PAYLOAD(hdr);
956 print("ifa_family %d ifa_index %d", msg->ifa_family, msg->ifa_index);
958 for (attr = IFA_RTA(msg); RTA_OK(attr, bytes);
959 attr = RTA_NEXT(attr, bytes)) {
960 switch (attr->rta_type) {
962 print_inet(attr, "address", msg->ifa_family);
965 print_inet(attr, "local", msg->ifa_family);
968 print_string(attr, "label");
971 print_inet(attr, "broadcast", msg->ifa_family);
974 print_attr(attr, "anycast");
977 print_attr(attr, "cacheinfo");
980 print_attr(attr, "multicast");
983 print_attr(attr, NULL);
989 static void rtnl_newaddr(struct nlmsghdr *hdr)
991 struct ifaddrmsg *msg = (struct ifaddrmsg *) NLMSG_DATA(hdr);
995 process_newaddr(msg->ifa_family, msg->ifa_prefixlen, msg->ifa_index,
996 msg, IFA_PAYLOAD(hdr));
999 static void rtnl_deladdr(struct nlmsghdr *hdr)
1001 struct ifaddrmsg *msg = (struct ifaddrmsg *) NLMSG_DATA(hdr);
1005 process_deladdr(msg->ifa_family, msg->ifa_prefixlen, msg->ifa_index,
1006 msg, IFA_PAYLOAD(hdr));
1009 static void rtnl_route(struct nlmsghdr *hdr)
1012 struct rtattr *attr;
1015 msg = (struct rtmsg *) NLMSG_DATA(hdr);
1016 bytes = RTM_PAYLOAD(hdr);
1018 print("rtm_family %d rtm_table %d rtm_protocol %d",
1019 msg->rtm_family, msg->rtm_table, msg->rtm_protocol);
1020 print("rtm_scope %d rtm_type %d rtm_flags 0x%04x",
1021 msg->rtm_scope, msg->rtm_type, msg->rtm_flags);
1023 for (attr = RTM_RTA(msg); RTA_OK(attr, bytes);
1024 attr = RTA_NEXT(attr, bytes)) {
1025 switch (attr->rta_type) {
1027 print_inet(attr, "dst", msg->rtm_family);
1030 print_inet(attr, "src", msg->rtm_family);
1033 print_string(attr, "iif");
1036 print_integer(attr, "oif");
1039 print_inet(attr, "gateway", msg->rtm_family);
1042 print_attr(attr, "priority");
1045 print_inet(attr, "prefsrc", msg->rtm_family);
1048 print_attr(attr, "metrics");
1051 print_integer(attr, "table");
1054 print_attr(attr, NULL);
1060 static connman_bool_t is_route_rtmsg(struct rtmsg *msg)
1063 if (msg->rtm_table != RT_TABLE_MAIN)
1066 if (msg->rtm_protocol != RTPROT_BOOT &&
1067 msg->rtm_protocol != RTPROT_KERNEL)
1070 if (msg->rtm_type != RTN_UNICAST)
1076 static void rtnl_newroute(struct nlmsghdr *hdr)
1078 struct rtmsg *msg = (struct rtmsg *) NLMSG_DATA(hdr);
1082 if (is_route_rtmsg(msg))
1083 process_newroute(msg->rtm_family, msg->rtm_scope,
1084 msg, RTM_PAYLOAD(hdr));
1087 static void rtnl_delroute(struct nlmsghdr *hdr)
1089 struct rtmsg *msg = (struct rtmsg *) NLMSG_DATA(hdr);
1093 if (is_route_rtmsg(msg))
1094 process_delroute(msg->rtm_family, msg->rtm_scope,
1095 msg, RTM_PAYLOAD(hdr));
1098 static void *rtnl_nd_opt_rdnss(struct nd_opt_hdr *opt, guint32 *lifetime,
1101 guint32 *optint = (void *)opt;
1103 if (opt->nd_opt_len < 3)
1106 if (*lifetime > ntohl(optint[1]))
1107 *lifetime = ntohl(optint[1]);
1109 /* nd_opt_len is in units of 8 bytes. The header is 1 unit (8 bytes)
1110 and each address is another 2 units (16 bytes).
1111 So the number of addresses (given rounding) is nd_opt_len/2 */
1112 *nr_servers = opt->nd_opt_len / 2;
1114 /* And they start 8 bytes into the packet, or two guint32s in. */
1118 static const char **rtnl_nd_opt_dnssl(struct nd_opt_hdr *opt, guint32 *lifetime)
1120 const char **domains = NULL;
1121 guint32 *optint = (void *)opt;
1122 unsigned char *optc = (void *)&optint[2];
1123 int data_len = (opt->nd_opt_len * 8) - 8;
1127 if (*lifetime > ntohl(optint[1]))
1128 *lifetime = ntohl(optint[1]);
1130 /* Turn it into normal strings by converting the length bytes into '.',
1131 and count how many search domains there are while we're at it. */
1133 while (i < data_len) {
1134 if (optc[i] > 0x3f) {
1135 DBG("DNSSL contains compressed elements in violation of RFC6106");
1142 /* Check for double zero */
1143 if (i < data_len && optc[i] == 0)
1151 if (i >= data_len) {
1152 DBG("DNSSL data overflows option length");
1159 domains = g_try_new0(const char *, nr_domains + 1);
1163 /* Now point to the normal strings, missing out the leading '.' that
1164 each of them will have now. */
1165 for (i = 0; i < nr_domains; i++) {
1166 domains[i] = (char *)optc + 1;
1167 optc += strlen((char *)optc) + 1;
1173 static void rtnl_newnduseropt(struct nlmsghdr *hdr)
1175 struct nduseroptmsg *msg = (struct nduseroptmsg *) NLMSG_DATA(hdr);
1176 struct nd_opt_hdr *opt = (void *)&msg[1];
1177 guint32 lifetime = -1;
1178 const char **domains = NULL;
1179 struct in6_addr *servers = NULL;
1181 int msglen = msg->nduseropt_opts_len;
1184 DBG("family %02x index %x len %04x type %02x code %02x",
1185 msg->nduseropt_family, msg->nduseropt_ifindex,
1186 msg->nduseropt_opts_len, msg->nduseropt_icmp_type,
1187 msg->nduseropt_icmp_code);
1189 if (msg->nduseropt_family != AF_INET6 ||
1190 msg->nduseropt_icmp_type != ND_ROUTER_ADVERT ||
1191 msg->nduseropt_icmp_code != 0)
1194 interface = connman_inet_ifname(msg->nduseropt_ifindex);
1198 for (opt = (void *)&msg[1];
1199 msglen >= 2 && msglen >= opt->nd_opt_len && opt->nd_opt_len;
1200 msglen -= opt->nd_opt_len,
1201 opt = ((void *)opt) + opt->nd_opt_len*8) {
1203 DBG("nd opt type %d len %d\n",
1204 opt->nd_opt_type, opt->nd_opt_len);
1206 if (opt->nd_opt_type == 25)
1207 servers = rtnl_nd_opt_rdnss(opt, &lifetime,
1209 else if (opt->nd_opt_type == 31)
1210 domains = rtnl_nd_opt_dnssl(opt, &lifetime);
1217 for (i = 0; i < nr_servers; i++) {
1218 if (!inet_ntop(AF_INET6, servers + i, buf, sizeof(buf)))
1221 if (domains == NULL || domains[0] == NULL) {
1222 connman_resolver_append_lifetime(interface,
1223 NULL, buf, lifetime);
1227 for (j = 0; domains[j]; j++)
1228 connman_resolver_append_lifetime(interface,
1237 static const char *type2string(uint16_t type)
1264 case RTM_NEWNDUSEROPT:
1265 return "NEWNDUSEROPT";
1271 static GIOChannel *channel = NULL;
1273 struct rtnl_request {
1274 struct nlmsghdr hdr;
1275 struct rtgenmsg msg;
1277 #define RTNL_REQUEST_SIZE (sizeof(struct nlmsghdr) + sizeof(struct rtgenmsg))
1279 static GSList *request_list = NULL;
1280 static guint32 request_seq = 0;
1282 static struct rtnl_request *find_request(guint32 seq)
1286 for (list = request_list; list; list = list->next) {
1287 struct rtnl_request *req = list->data;
1289 if (req->hdr.nlmsg_seq == seq)
1296 static int send_request(struct rtnl_request *req)
1298 struct sockaddr_nl addr;
1301 DBG("%s len %d type %d flags 0x%04x seq %d",
1302 type2string(req->hdr.nlmsg_type),
1303 req->hdr.nlmsg_len, req->hdr.nlmsg_type,
1304 req->hdr.nlmsg_flags, req->hdr.nlmsg_seq);
1306 sk = g_io_channel_unix_get_fd(channel);
1308 memset(&addr, 0, sizeof(addr));
1309 addr.nl_family = AF_NETLINK;
1311 return sendto(sk, req, req->hdr.nlmsg_len, 0,
1312 (struct sockaddr *) &addr, sizeof(addr));
1315 static int queue_request(struct rtnl_request *req)
1317 request_list = g_slist_append(request_list, req);
1319 if (g_slist_length(request_list) > 1)
1322 return send_request(req);
1325 static int process_response(guint32 seq)
1327 struct rtnl_request *req;
1331 req = find_request(seq);
1333 request_list = g_slist_remove(request_list, req);
1337 req = g_slist_nth_data(request_list, 0);
1341 return send_request(req);
1344 static void rtnl_message(void *buf, size_t len)
1346 DBG("buf %p len %zd", buf, len);
1349 struct nlmsghdr *hdr = buf;
1350 struct nlmsgerr *err;
1352 if (!NLMSG_OK(hdr, len))
1355 DBG("%s len %d type %d flags 0x%04x seq %d",
1356 type2string(hdr->nlmsg_type),
1357 hdr->nlmsg_len, hdr->nlmsg_type,
1358 hdr->nlmsg_flags, hdr->nlmsg_seq);
1360 switch (hdr->nlmsg_type) {
1365 process_response(hdr->nlmsg_seq);
1368 err = NLMSG_DATA(hdr);
1369 DBG("error %d (%s)", -err->error,
1370 strerror(-err->error));
1390 case RTM_NEWNDUSEROPT:
1391 rtnl_newnduseropt(hdr);
1395 len -= hdr->nlmsg_len;
1396 buf += hdr->nlmsg_len;
1400 static gboolean netlink_event(GIOChannel *chan,
1401 GIOCondition cond, gpointer data)
1403 unsigned char buf[4096];
1407 if (cond & (G_IO_NVAL | G_IO_HUP | G_IO_ERR))
1410 memset(buf, 0, sizeof(buf));
1412 status = g_io_channel_read_chars(chan, (gchar *) buf,
1413 sizeof(buf), &len, NULL);
1416 case G_IO_STATUS_NORMAL:
1418 case G_IO_STATUS_AGAIN:
1424 rtnl_message(buf, len);
1429 static int send_getlink(void)
1431 struct rtnl_request *req;
1435 req = g_try_malloc0(RTNL_REQUEST_SIZE);
1439 req->hdr.nlmsg_len = RTNL_REQUEST_SIZE;
1440 req->hdr.nlmsg_type = RTM_GETLINK;
1441 req->hdr.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP;
1442 req->hdr.nlmsg_pid = 0;
1443 req->hdr.nlmsg_seq = request_seq++;
1444 req->msg.rtgen_family = AF_INET;
1446 return queue_request(req);
1449 static int send_getaddr(void)
1451 struct rtnl_request *req;
1455 req = g_try_malloc0(RTNL_REQUEST_SIZE);
1459 req->hdr.nlmsg_len = RTNL_REQUEST_SIZE;
1460 req->hdr.nlmsg_type = RTM_GETADDR;
1461 req->hdr.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP;
1462 req->hdr.nlmsg_pid = 0;
1463 req->hdr.nlmsg_seq = request_seq++;
1464 req->msg.rtgen_family = AF_INET;
1466 return queue_request(req);
1469 static int send_getroute(void)
1471 struct rtnl_request *req;
1475 req = g_try_malloc0(RTNL_REQUEST_SIZE);
1479 req->hdr.nlmsg_len = RTNL_REQUEST_SIZE;
1480 req->hdr.nlmsg_type = RTM_GETROUTE;
1481 req->hdr.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP;
1482 req->hdr.nlmsg_pid = 0;
1483 req->hdr.nlmsg_seq = request_seq++;
1484 req->msg.rtgen_family = AF_INET;
1486 return queue_request(req);
1489 static gboolean update_timeout_cb(gpointer user_data)
1491 __connman_rtnl_request_update();
1496 static void update_interval_callback(guint min)
1498 if (update_timeout > 0)
1499 g_source_remove(update_timeout);
1501 if (min < G_MAXUINT) {
1502 update_interval = min;
1503 update_timeout = g_timeout_add_seconds(update_interval,
1504 update_timeout_cb, NULL);
1507 update_interval = G_MAXUINT;
1511 static gint compare_interval(gconstpointer a, gconstpointer b)
1513 guint val_a = GPOINTER_TO_UINT(a);
1514 guint val_b = GPOINTER_TO_UINT(b);
1516 return val_a - val_b;
1519 unsigned int __connman_rtnl_update_interval_add(unsigned int interval)
1526 update_list = g_slist_insert_sorted(update_list,
1527 GUINT_TO_POINTER(interval), compare_interval);
1529 min = GPOINTER_TO_UINT(g_slist_nth_data(update_list, 0));
1530 if (min < update_interval) {
1531 update_interval_callback(min);
1532 __connman_rtnl_request_update();
1535 return update_interval;
1538 unsigned int __connman_rtnl_update_interval_remove(unsigned int interval)
1540 guint min = G_MAXUINT;
1545 update_list = g_slist_remove(update_list, GINT_TO_POINTER(interval));
1547 if (update_list != NULL)
1548 min = GPOINTER_TO_UINT(g_slist_nth_data(update_list, 0));
1550 if (min > update_interval)
1551 update_interval_callback(min);
1556 int __connman_rtnl_request_update(void)
1558 return send_getlink();
1561 int __connman_rtnl_init(void)
1563 struct sockaddr_nl addr;
1568 interface_list = g_hash_table_new_full(g_direct_hash, g_direct_equal,
1569 NULL, free_interface);
1571 sk = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE);
1575 memset(&addr, 0, sizeof(addr));
1576 addr.nl_family = AF_NETLINK;
1577 addr.nl_groups = RTMGRP_LINK | RTMGRP_IPV4_IFADDR | RTMGRP_IPV4_ROUTE |
1578 RTMGRP_IPV6_IFADDR | RTMGRP_IPV6_ROUTE |
1579 (1<<(RTNLGRP_ND_USEROPT-1));
1581 if (bind(sk, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
1586 channel = g_io_channel_unix_new(sk);
1587 g_io_channel_set_close_on_unref(channel, TRUE);
1589 g_io_channel_set_encoding(channel, NULL, NULL);
1590 g_io_channel_set_buffered(channel, FALSE);
1592 g_io_add_watch(channel, G_IO_IN | G_IO_NVAL | G_IO_HUP | G_IO_ERR,
1593 netlink_event, NULL);
1598 void __connman_rtnl_start(void)
1607 void __connman_rtnl_cleanup(void)
1613 for (list = watch_list; list; list = list->next) {
1614 struct watch_data *watch = list->data;
1616 DBG("removing watch %d", watch->id);
1622 g_slist_free(watch_list);
1625 g_slist_free(update_list);
1628 for (list = request_list; list; list = list->next) {
1629 struct rtnl_request *req = list->data;
1631 DBG("%s len %d type %d flags 0x%04x seq %d",
1632 type2string(req->hdr.nlmsg_type),
1633 req->hdr.nlmsg_len, req->hdr.nlmsg_type,
1634 req->hdr.nlmsg_flags, req->hdr.nlmsg_seq);
1640 g_slist_free(request_list);
1641 request_list = NULL;
1643 g_io_channel_shutdown(channel, TRUE, NULL);
1644 g_io_channel_unref(channel);
1648 g_hash_table_destroy(interface_list);