ipconfig: Removed obsolete parameter from __connman_ipconfig_set_config()
[platform/upstream/connman.git] / src / ipconfig.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2010  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <net/if.h>
27 #include <net/if_arp.h>
28 #include <linux/if_link.h>
29 #include <string.h>
30 #include <stdlib.h>
31
32 #ifndef IFF_LOWER_UP
33 #define IFF_LOWER_UP    0x10000
34 #endif
35
36 #include <gdbus.h>
37
38 #include "connman.h"
39
40 struct connman_ipconfig {
41         gint refcount;
42         int index;
43         enum connman_ipconfig_type type;
44
45         struct connman_ipconfig *origin;
46
47         const struct connman_ipconfig_ops *ops;
48         void *ops_data;
49
50         enum connman_ipconfig_method method;
51         struct connman_ipaddress *address;
52         struct connman_ipaddress *system;
53 };
54
55 struct connman_ipdevice {
56         int index;
57         char *ifname;
58         unsigned short type;
59         unsigned int flags;
60         char *address;
61         uint16_t mtu;
62         uint32_t rx_packets;
63         uint32_t tx_packets;
64         uint32_t rx_bytes;
65         uint32_t tx_bytes;
66         uint32_t rx_errors;
67         uint32_t tx_errors;
68         uint32_t rx_dropped;
69         uint32_t tx_dropped;
70
71         GSList *address_list;
72         char *ipv4_gateway;
73         char *ipv6_gateway;
74
75         char *pac;
76
77         struct connman_ipconfig *config_ipv4;
78         struct connman_ipconfig *config_ipv6;
79 };
80
81 static GHashTable *ipdevice_hash = NULL;
82 static GList *ipconfig_list = NULL;
83
84 struct connman_ipaddress *connman_ipaddress_alloc(int family)
85 {
86         struct connman_ipaddress *ipaddress;
87
88         ipaddress = g_try_new0(struct connman_ipaddress, 1);
89         if (ipaddress == NULL)
90                 return NULL;
91
92         ipaddress->family = family;
93         ipaddress->prefixlen = 0;
94         ipaddress->local = NULL;
95         ipaddress->peer = NULL;
96         ipaddress->broadcast = NULL;
97         ipaddress->gateway = NULL;
98
99         return ipaddress;
100 }
101
102 void connman_ipaddress_free(struct connman_ipaddress *ipaddress)
103 {
104         if (ipaddress == NULL)
105                 return;
106
107         g_free(ipaddress->broadcast);
108         g_free(ipaddress->peer);
109         g_free(ipaddress->local);
110         g_free(ipaddress->gateway);
111         g_free(ipaddress);
112 }
113
114 unsigned char __connman_ipconfig_netmask_prefix_len(const char *netmask)
115 {
116         unsigned char bits;
117         in_addr_t mask;
118         in_addr_t host;
119
120         if (netmask == NULL)
121                 return 32;
122
123         mask = inet_network(netmask);
124         host = ~mask;
125
126         /* a valid netmask must be 2^n - 1 */
127         if ((host & (host + 1)) != 0)
128                 return -1;
129
130         bits = 0;
131         for (; mask; mask <<= 1)
132                 ++bits;
133
134         return bits;
135 }
136
137 static gboolean check_ipv6_address(const char *address)
138 {
139         unsigned char buf[sizeof(struct in6_addr)];
140         int err;
141
142         err = inet_pton(AF_INET6, address, buf);
143         if (err > 0)
144                 return TRUE;
145
146         return FALSE;
147 }
148
149 int connman_ipaddress_set_ipv6(struct connman_ipaddress *ipaddress,
150                                 const char *address, const char *gateway,
151                                                 unsigned char prefix_length)
152 {
153         if (ipaddress == NULL)
154                 return -EINVAL;
155
156         if (check_ipv6_address(address) == FALSE)
157                 return -EINVAL;
158
159         if (check_ipv6_address(gateway) == FALSE)
160                 return -EINVAL;
161
162         DBG("prefix_len %d address %s gateway %s",
163                         prefix_length, address, gateway);
164
165         ipaddress->prefixlen = prefix_length;
166
167         g_free(ipaddress->local);
168         ipaddress->local = g_strdup(address);
169
170         g_free(ipaddress->gateway);
171         ipaddress->gateway = g_strdup(gateway);
172
173         return 0;
174 }
175
176 void connman_ipaddress_set_ipv4(struct connman_ipaddress *ipaddress,
177                 const char *address, const char *netmask, const char *gateway)
178 {
179         if (ipaddress == NULL)
180                 return;
181
182         ipaddress->prefixlen = __connman_ipconfig_netmask_prefix_len(netmask);
183
184         g_free(ipaddress->local);
185         ipaddress->local = g_strdup(address);
186
187         g_free(ipaddress->gateway);
188         ipaddress->gateway = g_strdup(gateway);
189 }
190
191 void connman_ipaddress_clear(struct connman_ipaddress *ipaddress)
192 {
193         if (ipaddress == NULL)
194                 return;
195
196         ipaddress->prefixlen = 0;
197
198         g_free(ipaddress->local);
199         ipaddress->local = NULL;
200
201         g_free(ipaddress->peer);
202         ipaddress->peer = NULL;
203
204         g_free(ipaddress->broadcast);
205         ipaddress->broadcast = NULL;
206
207         g_free(ipaddress->gateway);
208         ipaddress->gateway = NULL;
209 }
210
211 void connman_ipaddress_copy(struct connman_ipaddress *ipaddress,
212                                         struct connman_ipaddress *source)
213 {
214         if (ipaddress == NULL || source == NULL)
215                 return;
216
217         ipaddress->family = source->family;
218         ipaddress->prefixlen = source->prefixlen;
219
220         g_free(ipaddress->local);
221         ipaddress->local = g_strdup(source->local);
222
223         g_free(ipaddress->peer);
224         ipaddress->peer = g_strdup(source->peer);
225
226         g_free(ipaddress->broadcast);
227         ipaddress->broadcast = g_strdup(source->broadcast);
228
229         g_free(ipaddress->gateway);
230         ipaddress->gateway = g_strdup(source->gateway);
231 }
232
233 static void free_address_list(struct connman_ipdevice *ipdevice)
234 {
235         GSList *list;
236
237         for (list = ipdevice->address_list; list; list = list->next) {
238                 struct connman_ipaddress *ipaddress = list->data;
239
240                 connman_ipaddress_free(ipaddress);
241                 list->data = NULL;
242         }
243
244         g_slist_free(ipdevice->address_list);
245         ipdevice->address_list = NULL;
246 }
247
248 static struct connman_ipaddress *find_ipaddress(struct connman_ipdevice *ipdevice,
249                                 unsigned char prefixlen, const char *local)
250 {
251         GSList *list;
252
253         for (list = ipdevice->address_list; list; list = list->next) {
254                 struct connman_ipaddress *ipaddress = list->data;
255
256                 if (g_strcmp0(ipaddress->local, local) == 0 &&
257                                         ipaddress->prefixlen == prefixlen)
258                         return ipaddress;
259         }
260
261         return NULL;
262 }
263
264 static const char *type2str(unsigned short type)
265 {
266         switch (type) {
267         case ARPHRD_ETHER:
268                 return "ETHER";
269         case ARPHRD_LOOPBACK:
270                 return "LOOPBACK";
271         case ARPHRD_PPP:
272                 return "PPP";
273         case ARPHRD_NONE:
274                 return "NONE";
275         case ARPHRD_VOID:
276                 return "VOID";
277         }
278
279         return "";
280 }
281
282 static const char *scope2str(unsigned char scope)
283 {
284         switch (scope) {
285         case 0:
286                 return "UNIVERSE";
287         case 253:
288                 return "LINK";
289         }
290
291         return "";
292 }
293
294 static void free_ipdevice(gpointer data)
295 {
296         struct connman_ipdevice *ipdevice = data;
297
298         connman_info("%s {remove} index %d", ipdevice->ifname,
299                                                         ipdevice->index);
300
301         if (ipdevice->config_ipv4 != NULL) {
302                 connman_ipconfig_unref(ipdevice->config_ipv4);
303                 ipdevice->config_ipv4 = NULL;
304         }
305
306         if (ipdevice->config_ipv6 != NULL) {
307                 connman_ipconfig_unref(ipdevice->config_ipv6);
308                 ipdevice->config_ipv6 = NULL;
309         }
310
311         free_address_list(ipdevice);
312         g_free(ipdevice->ipv4_gateway);
313         g_free(ipdevice->ipv6_gateway);
314         g_free(ipdevice->pac);
315
316         g_free(ipdevice->address);
317         g_free(ipdevice->ifname);
318         g_free(ipdevice);
319 }
320
321 static void __connman_ipconfig_lower_up(struct connman_ipdevice *ipdevice)
322 {
323         DBG("ipconfig ipv4 %p ipv6 %p", ipdevice->config_ipv4,
324                                         ipdevice->config_ipv6);
325 }
326
327 static void __connman_ipconfig_lower_down(struct connman_ipdevice *ipdevice)
328 {
329         DBG("ipconfig ipv4 %p ipv6 %p", ipdevice->config_ipv4,
330                                         ipdevice->config_ipv6);
331
332         if (ipdevice->config_ipv4)
333                 connman_inet_clear_address(ipdevice->index,
334                                         ipdevice->config_ipv4->address);
335
336         if (ipdevice->config_ipv6)
337                 connman_inet_clear_ipv6_address(ipdevice->index,
338                                 ipdevice->config_ipv6->address->local,
339                                 ipdevice->config_ipv6->address->prefixlen);
340 }
341
342 static void update_stats(struct connman_ipdevice *ipdevice,
343                                                 struct rtnl_link_stats *stats)
344 {
345         struct connman_service *service;
346
347         if (stats->rx_packets == 0 && stats->tx_packets == 0)
348                 return;
349
350         connman_info("%s {RX} %u packets %u bytes", ipdevice->ifname,
351                                         stats->rx_packets, stats->rx_bytes);
352         connman_info("%s {TX} %u packets %u bytes", ipdevice->ifname,
353                                         stats->tx_packets, stats->tx_bytes);
354
355         if (ipdevice->config_ipv4 == NULL && ipdevice->config_ipv6 == NULL)
356                 return;
357
358         if (ipdevice->config_ipv4)
359                 service = connman_ipconfig_get_data(ipdevice->config_ipv4);
360         else if (ipdevice->config_ipv6)
361                 service = connman_ipconfig_get_data(ipdevice->config_ipv6);
362         else
363                 return;
364
365         if (service == NULL)
366                 return;
367
368         ipdevice->rx_packets = stats->rx_packets;
369         ipdevice->tx_packets = stats->tx_packets;
370         ipdevice->rx_bytes = stats->rx_bytes;
371         ipdevice->tx_bytes = stats->tx_bytes;
372         ipdevice->rx_errors = stats->rx_errors;
373         ipdevice->tx_errors = stats->tx_errors;
374         ipdevice->rx_dropped = stats->rx_dropped;
375         ipdevice->tx_dropped = stats->tx_dropped;
376
377         __connman_service_notify(service,
378                                 ipdevice->rx_packets, ipdevice->tx_packets,
379                                 ipdevice->rx_bytes, ipdevice->tx_bytes,
380                                 ipdevice->rx_errors, ipdevice->tx_errors,
381                                 ipdevice->rx_dropped, ipdevice->tx_dropped);
382 }
383
384 void __connman_ipconfig_newlink(int index, unsigned short type,
385                                 unsigned int flags, const char *address,
386                                                         unsigned short mtu,
387                                                 struct rtnl_link_stats *stats)
388 {
389         struct connman_ipdevice *ipdevice;
390         GList *list;
391         GString *str;
392         gboolean up = FALSE, down = FALSE;
393         gboolean lower_up = FALSE, lower_down = FALSE;
394
395         DBG("index %d", index);
396
397         if (type == ARPHRD_LOOPBACK)
398                 return;
399
400         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
401         if (ipdevice != NULL)
402                 goto update;
403
404         ipdevice = g_try_new0(struct connman_ipdevice, 1);
405         if (ipdevice == NULL)
406                 return;
407
408         ipdevice->index = index;
409         ipdevice->ifname = connman_inet_ifname(index);
410         ipdevice->type = type;
411
412         ipdevice->address = g_strdup(address);
413
414         g_hash_table_insert(ipdevice_hash, GINT_TO_POINTER(index), ipdevice);
415
416         connman_info("%s {create} index %d type %d <%s>", ipdevice->ifname,
417                                                 index, type, type2str(type));
418
419 update:
420         ipdevice->mtu = mtu;
421
422         update_stats(ipdevice, stats);
423
424         if (flags == ipdevice->flags)
425                 return;
426
427         if ((ipdevice->flags & IFF_UP) != (flags & IFF_UP)) {
428                 if (flags & IFF_UP)
429                         up = TRUE;
430                 else
431                         down = TRUE;
432         }
433
434         if ((ipdevice->flags & (IFF_RUNNING | IFF_LOWER_UP)) !=
435                                 (flags & (IFF_RUNNING | IFF_LOWER_UP))) {
436                 if ((flags & (IFF_RUNNING | IFF_LOWER_UP)) ==
437                                         (IFF_RUNNING | IFF_LOWER_UP))
438                         lower_up = TRUE;
439                 else if ((flags & (IFF_RUNNING | IFF_LOWER_UP)) == 0)
440                         lower_down = TRUE;
441         }
442
443         ipdevice->flags = flags;
444
445         str = g_string_new(NULL);
446         if (str == NULL)
447                 return;
448
449         if (flags & IFF_UP)
450                 g_string_append(str, "UP");
451         else
452                 g_string_append(str, "DOWN");
453
454         if (flags & IFF_RUNNING)
455                 g_string_append(str, ",RUNNING");
456
457         if (flags & IFF_LOWER_UP)
458                 g_string_append(str, ",LOWER_UP");
459
460         connman_info("%s {update} flags %u <%s>", ipdevice->ifname,
461                                                         flags, str->str);
462
463         g_string_free(str, TRUE);
464
465         for (list = g_list_first(ipconfig_list); list;
466                                                 list = g_list_next(list)) {
467                 struct connman_ipconfig *ipconfig = list->data;
468
469                 if (index != ipconfig->index)
470                         continue;
471
472                 if (ipconfig->ops == NULL)
473                         continue;
474
475                 if (up == TRUE && ipconfig->ops->up)
476                         ipconfig->ops->up(ipconfig);
477                 if (lower_up == TRUE && ipconfig->ops->lower_up)
478                         ipconfig->ops->lower_up(ipconfig);
479
480                 if (lower_down == TRUE && ipconfig->ops->lower_down)
481                         ipconfig->ops->lower_down(ipconfig);
482                 if (down == TRUE && ipconfig->ops->down)
483                         ipconfig->ops->down(ipconfig);
484         }
485
486         if (lower_up)
487                 __connman_ipconfig_lower_up(ipdevice);
488         if (lower_down)
489                 __connman_ipconfig_lower_down(ipdevice);
490 }
491
492 void __connman_ipconfig_dellink(int index, struct rtnl_link_stats *stats)
493 {
494         struct connman_ipdevice *ipdevice;
495         GList *list;
496
497         DBG("index %d", index);
498
499         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
500         if (ipdevice == NULL)
501                 return;
502
503         update_stats(ipdevice, stats);
504
505         for (list = g_list_first(ipconfig_list); list;
506                                                 list = g_list_next(list)) {
507                 struct connman_ipconfig *ipconfig = list->data;
508
509                 if (index != ipconfig->index)
510                         continue;
511
512                 ipconfig->index = -1;
513
514                 if (ipconfig->ops == NULL)
515                         continue;
516
517                 if (ipconfig->ops->lower_down)
518                         ipconfig->ops->lower_down(ipconfig);
519                 if (ipconfig->ops->down)
520                         ipconfig->ops->down(ipconfig);
521         }
522
523         __connman_ipconfig_lower_down(ipdevice);
524
525         g_hash_table_remove(ipdevice_hash, GINT_TO_POINTER(index));
526 }
527
528 static inline gint check_duplicate_address(gconstpointer a, gconstpointer b)
529 {
530         const struct connman_ipaddress *addr1 = a;
531         const struct connman_ipaddress *addr2 = b;
532
533         if (addr1->prefixlen != addr2->prefixlen)
534                 return addr2->prefixlen - addr1->prefixlen;
535
536         return g_strcmp0(addr1->local, addr2->local);
537 }
538
539 void __connman_ipconfig_newaddr(int index, int family, const char *label,
540                                 unsigned char prefixlen, const char *address)
541 {
542         struct connman_ipdevice *ipdevice;
543         struct connman_ipaddress *ipaddress;
544         GList *list;
545
546         DBG("index %d", index);
547
548         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
549         if (ipdevice == NULL)
550                 return;
551
552         ipaddress = connman_ipaddress_alloc(family);
553         if (ipaddress == NULL)
554                 return;
555
556         ipaddress->prefixlen = prefixlen;
557         ipaddress->local = g_strdup(address);
558
559         if (g_slist_find_custom(ipdevice->address_list, ipaddress,
560                                         check_duplicate_address)) {
561                 connman_ipaddress_free(ipaddress);
562                 return;
563         }
564
565         ipdevice->address_list = g_slist_append(ipdevice->address_list,
566                                                                 ipaddress);
567
568         connman_info("%s {add} address %s/%u label %s family %d",
569                 ipdevice->ifname, address, prefixlen, label, family);
570
571         if (ipdevice->config_ipv4 != NULL && family == AF_INET)
572                 connman_ipaddress_copy(ipdevice->config_ipv4->system,
573                                         ipaddress);
574
575         else if (ipdevice->config_ipv6 != NULL && family == AF_INET6)
576                 connman_ipaddress_copy(ipdevice->config_ipv6->system,
577                                         ipaddress);
578         else
579                 return;
580
581         if ((ipdevice->flags & (IFF_RUNNING | IFF_LOWER_UP)) != (IFF_RUNNING | IFF_LOWER_UP))
582                 return;
583
584         for (list = g_list_first(ipconfig_list); list;
585                                                 list = g_list_next(list)) {
586                 struct connman_ipconfig *ipconfig = list->data;
587
588                 if (index != ipconfig->index)
589                         continue;
590
591                 if (ipconfig->ops == NULL)
592                         continue;
593
594                 if (ipconfig->ops->ip_bound)
595                         ipconfig->ops->ip_bound(ipconfig);
596         }
597 }
598
599 void __connman_ipconfig_deladdr(int index, int family, const char *label,
600                                 unsigned char prefixlen, const char *address)
601 {
602         struct connman_ipdevice *ipdevice;
603         struct connman_ipaddress *ipaddress;
604         GList *list;
605
606         DBG("index %d", index);
607
608         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
609         if (ipdevice == NULL)
610                 return;
611
612         ipaddress = find_ipaddress(ipdevice, prefixlen, address);
613         if (ipaddress == NULL)
614                 return;
615
616         ipdevice->address_list = g_slist_remove(ipdevice->address_list,
617                                                                 ipaddress);
618
619         connman_ipaddress_free(ipaddress);
620
621         connman_info("%s {del} address %s/%u label %s", ipdevice->ifname,
622                                                 address, prefixlen, label);
623
624         if ((ipdevice->flags & (IFF_RUNNING | IFF_LOWER_UP)) != (IFF_RUNNING | IFF_LOWER_UP))
625                 return;
626
627         if (g_slist_length(ipdevice->address_list) > 0)
628                 return;
629
630         for (list = g_list_first(ipconfig_list); list;
631                                                 list = g_list_next(list)) {
632                 struct connman_ipconfig *ipconfig = list->data;
633
634                 if (index != ipconfig->index)
635                         continue;
636
637                 if (ipconfig->ops == NULL)
638                         continue;
639
640                 if (ipconfig->ops->ip_release)
641                         ipconfig->ops->ip_release(ipconfig);
642         }
643 }
644
645 void __connman_ipconfig_newroute(int index, int family, unsigned char scope,
646                                         const char *dst, const char *gateway)
647 {
648         struct connman_ipdevice *ipdevice;
649
650         DBG("index %d", index);
651
652         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
653         if (ipdevice == NULL)
654                 return;
655
656         if (scope == 0 && g_strcmp0(dst, "0.0.0.0") == 0) {
657                 GSList *list;
658                 GList *config_list;
659
660                 if (family == AF_INET6) {
661                         g_free(ipdevice->ipv6_gateway);
662                         ipdevice->ipv6_gateway = g_strdup(gateway);
663
664                         if (ipdevice->config_ipv6 != NULL &&
665                                 ipdevice->config_ipv6->system != NULL) {
666                                 g_free(ipdevice->config_ipv6->system->gateway);
667                                 ipdevice->config_ipv6->system->gateway =
668                                         g_strdup(gateway);
669                         }
670                 } else {
671                         g_free(ipdevice->ipv4_gateway);
672                         ipdevice->ipv4_gateway = g_strdup(gateway);
673
674                         if (ipdevice->config_ipv4 != NULL &&
675                                 ipdevice->config_ipv4->system != NULL) {
676                                 g_free(ipdevice->config_ipv4->system->gateway);
677                                 ipdevice->config_ipv4->system->gateway =
678                                         g_strdup(gateway);
679                         }
680                 }
681
682                 for (list = ipdevice->address_list; list; list = list->next) {
683                         struct connman_ipaddress *ipaddress = list->data;
684
685                         g_free(ipaddress->gateway);
686                         ipaddress->gateway = g_strdup(gateway);
687                 }
688
689                 for (config_list = g_list_first(ipconfig_list); config_list;
690                                         config_list = g_list_next(config_list)) {
691                         struct connman_ipconfig *ipconfig = config_list->data;
692
693                         if (index != ipconfig->index)
694                                 continue;
695
696                         if (ipconfig->ops == NULL)
697                                 continue;
698
699                         if (ipconfig->ops->ip_bound)
700                                 ipconfig->ops->ip_bound(ipconfig);
701                 }
702         }
703
704         connman_info("%s {add} route %s gw %s scope %u <%s>",
705                                         ipdevice->ifname, dst, gateway,
706                                                 scope, scope2str(scope));
707 }
708
709 void __connman_ipconfig_delroute(int index, int family, unsigned char scope,
710                                         const char *dst, const char *gateway)
711 {
712         struct connman_ipdevice *ipdevice;
713
714         DBG("index %d", index);
715
716         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
717         if (ipdevice == NULL)
718                 return;
719
720         if (scope == 0 && g_strcmp0(dst, "0.0.0.0") == 0) {
721                 GSList *list;
722                 GList *config_list;
723
724                 if (family == AF_INET6) {
725                         g_free(ipdevice->ipv6_gateway);
726                         ipdevice->ipv6_gateway = NULL;
727
728                         if (ipdevice->config_ipv6 != NULL &&
729                                 ipdevice->config_ipv6->system != NULL) {
730                                 g_free(ipdevice->config_ipv6->system->gateway);
731                                 ipdevice->config_ipv6->system->gateway = NULL;
732                         }
733                 } else {
734                         g_free(ipdevice->ipv4_gateway);
735                         ipdevice->ipv4_gateway = NULL;
736
737                         if (ipdevice->config_ipv4 != NULL &&
738                                 ipdevice->config_ipv4->system != NULL) {
739                                 g_free(ipdevice->config_ipv4->system->gateway);
740                                 ipdevice->config_ipv4->system->gateway = NULL;
741                         }
742                 }
743
744                 for (list = ipdevice->address_list; list; list = list->next) {
745                         struct connman_ipaddress *ipaddress = list->data;
746
747                         g_free(ipaddress->gateway);
748                         ipaddress->gateway = NULL;
749                 }
750
751                 for (config_list = g_list_first(ipconfig_list); config_list;
752                                         config_list = g_list_next(config_list)) {
753                         struct connman_ipconfig *ipconfig = config_list->data;
754
755                         if (index != ipconfig->index)
756                                 continue;
757
758                         if (ipconfig->ops == NULL)
759                                 continue;
760
761                         if (ipconfig->ops->ip_release)
762                                 ipconfig->ops->ip_release(ipconfig);
763                 }
764         }
765
766         connman_info("%s {del} route %s gw %s scope %u <%s>",
767                                         ipdevice->ifname, dst, gateway,
768                                                 scope, scope2str(scope));
769 }
770
771 void __connman_ipconfig_foreach(void (*function) (int index, void *user_data),
772                                                         void *user_data)
773 {
774         GList *list, *keys;
775
776         keys = g_hash_table_get_keys(ipdevice_hash);
777         if (keys == NULL)
778                 return;
779
780         for (list = g_list_first(keys); list; list = g_list_next(list)) {
781                 int index = GPOINTER_TO_INT(list->data);
782
783                 function(index, user_data);
784         }
785
786         g_list_free(keys);
787 }
788
789 unsigned short __connman_ipconfig_get_type(int index)
790 {
791         struct connman_ipdevice *ipdevice;
792
793         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
794         if (ipdevice == NULL)
795                 return ARPHRD_VOID;
796
797         return ipdevice->type;
798 }
799
800 unsigned int __connman_ipconfig_get_flags(int index)
801 {
802         struct connman_ipdevice *ipdevice;
803
804         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
805         if (ipdevice == NULL)
806                 return 0;
807
808         return ipdevice->flags;
809 }
810
811 const char *__connman_ipconfig_get_gateway(int index)
812 {
813         struct connman_ipdevice *ipdevice;
814
815         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
816         if (ipdevice == NULL)
817                 return NULL;
818
819         if (ipdevice->ipv4_gateway != NULL)
820                 return ipdevice->ipv4_gateway;
821
822         if (ipdevice->config_ipv4 != NULL &&
823                         ipdevice->config_ipv4->address != NULL)
824                 return ipdevice->config_ipv4->address->gateway;
825
826         if (ipdevice->ipv6_gateway != NULL)
827                 return ipdevice->ipv6_gateway;
828
829         if (ipdevice->config_ipv6 != NULL &&
830                         ipdevice->config_ipv6->address != NULL)
831                 return ipdevice->config_ipv6->address->gateway;
832
833         return NULL;
834 }
835
836 void __connman_ipconfig_set_index(struct connman_ipconfig *ipconfig, int index)
837 {
838         ipconfig->index = index;
839 }
840
841 static struct connman_ipconfig *create_ipv6config(int index)
842 {
843         struct connman_ipconfig *ipv6config;
844
845         DBG("index %d", index);
846
847         ipv6config = g_try_new0(struct connman_ipconfig, 1);
848         if (ipv6config == NULL)
849                 return NULL;
850
851         ipv6config->refcount = 1;
852
853         ipv6config->index = index;
854         ipv6config->type = CONNMAN_IPCONFIG_TYPE_IPV6;
855         ipv6config->method = CONNMAN_IPCONFIG_METHOD_AUTO;
856
857         ipv6config->address = connman_ipaddress_alloc(AF_INET6);
858         if (ipv6config->address == NULL) {
859                 g_free(ipv6config);
860                 return NULL;
861         }
862
863         ipv6config->system = connman_ipaddress_alloc(AF_INET6);
864
865         DBG("ipconfig %p", ipv6config);
866
867         return ipv6config;
868 }
869
870 /**
871  * connman_ipconfig_create:
872  *
873  * Allocate a new ipconfig structure.
874  *
875  * Returns: a newly-allocated #connman_ipconfig structure
876  */
877 struct connman_ipconfig *connman_ipconfig_create(int index,
878                                         enum connman_ipconfig_type type)
879 {
880         struct connman_ipconfig *ipconfig;
881
882         if (type == CONNMAN_IPCONFIG_TYPE_IPV6)
883                 return create_ipv6config(index);
884
885         DBG("index %d", index);
886
887         ipconfig = g_try_new0(struct connman_ipconfig, 1);
888         if (ipconfig == NULL)
889                 return NULL;
890
891         ipconfig->refcount = 1;
892
893         ipconfig->index = index;
894         ipconfig->type = CONNMAN_IPCONFIG_TYPE_IPV4;
895
896         ipconfig->address = connman_ipaddress_alloc(AF_INET);
897         if (ipconfig->address == NULL) {
898                 g_free(ipconfig);
899                 return NULL;
900         }
901
902         ipconfig->system = connman_ipaddress_alloc(AF_INET);
903
904         DBG("ipconfig %p", ipconfig);
905
906         return ipconfig;
907 }
908
909
910 /**
911  * connman_ipconfig_ref:
912  * @ipconfig: ipconfig structure
913  *
914  * Increase reference counter of ipconfig
915  */
916 struct connman_ipconfig *connman_ipconfig_ref(struct connman_ipconfig *ipconfig)
917 {
918         DBG("ipconfig %p refcount %d", ipconfig,
919                                 g_atomic_int_get(&ipconfig->refcount) + 1);
920
921         g_atomic_int_inc(&ipconfig->refcount);
922
923         return ipconfig;
924 }
925
926 /**
927  * connman_ipconfig_unref:
928  * @ipconfig: ipconfig structure
929  *
930  * Decrease reference counter of ipconfig
931  */
932 void connman_ipconfig_unref(struct connman_ipconfig *ipconfig)
933 {
934         if (ipconfig == NULL)
935                 return;
936
937         DBG("ipconfig %p refcount %d", ipconfig,
938                         g_atomic_int_get(&ipconfig->refcount) - 1);
939
940         if (g_atomic_int_dec_and_test(&ipconfig->refcount) == TRUE) {
941                 __connman_ipconfig_disable(ipconfig);
942
943                 connman_ipconfig_set_ops(ipconfig, NULL);
944
945                 if (ipconfig->origin != NULL) {
946                         connman_ipconfig_unref(ipconfig->origin);
947                         ipconfig->origin = NULL;
948                 }
949
950                 connman_ipaddress_free(ipconfig->system);
951                 connman_ipaddress_free(ipconfig->address);
952                 g_free(ipconfig);
953         }
954 }
955
956 /**
957  * connman_ipconfig_get_data:
958  * @ipconfig: ipconfig structure
959  *
960  * Get private data pointer
961  */
962 void *connman_ipconfig_get_data(struct connman_ipconfig *ipconfig)
963 {
964         if (ipconfig == NULL)
965                 return NULL;
966
967         return ipconfig->ops_data;
968 }
969
970 /**
971  * connman_ipconfig_set_data:
972  * @ipconfig: ipconfig structure
973  * @data: data pointer
974  *
975  * Set private data pointer
976  */
977 void connman_ipconfig_set_data(struct connman_ipconfig *ipconfig, void *data)
978 {
979         ipconfig->ops_data = data;
980 }
981
982 /**
983  * connman_ipconfig_get_index:
984  * @ipconfig: ipconfig structure
985  *
986  * Get interface index
987  */
988 int connman_ipconfig_get_index(struct connman_ipconfig *ipconfig)
989 {
990         if (ipconfig == NULL)
991                 return -1;
992
993         if (ipconfig->origin != NULL)
994                 return ipconfig->origin->index;
995
996         return ipconfig->index;
997 }
998
999 /**
1000  * connman_ipconfig_get_ifname:
1001  * @ipconfig: ipconfig structure
1002  *
1003  * Get interface name
1004  */
1005 const char *connman_ipconfig_get_ifname(struct connman_ipconfig *ipconfig)
1006 {
1007         struct connman_ipdevice *ipdevice;
1008
1009         if (ipconfig == NULL)
1010                 return NULL;
1011
1012         if (ipconfig->index < 0)
1013                 return NULL;
1014
1015         ipdevice = g_hash_table_lookup(ipdevice_hash,
1016                                         GINT_TO_POINTER(ipconfig->index));
1017         if (ipdevice == NULL)
1018                 return NULL;
1019
1020         return ipdevice->ifname;
1021 }
1022
1023 /**
1024  * connman_ipconfig_set_ops:
1025  * @ipconfig: ipconfig structure
1026  * @ops: operation callbacks
1027  *
1028  * Set the operation callbacks
1029  */
1030 void connman_ipconfig_set_ops(struct connman_ipconfig *ipconfig,
1031                                 const struct connman_ipconfig_ops *ops)
1032 {
1033         ipconfig->ops = ops;
1034 }
1035
1036 /**
1037  * connman_ipconfig_set_method:
1038  * @ipconfig: ipconfig structure
1039  * @method: configuration method
1040  *
1041  * Set the configuration method
1042  */
1043 int connman_ipconfig_set_method(struct connman_ipconfig *ipconfig,
1044                                         enum connman_ipconfig_method method)
1045 {
1046         ipconfig->method = method;
1047
1048         return 0;
1049 }
1050
1051 enum connman_ipconfig_method __connman_ipconfig_get_method(struct connman_ipconfig *ipconfig)
1052 {
1053         if (ipconfig == NULL)
1054                 return CONNMAN_IPCONFIG_METHOD_UNKNOWN;
1055
1056         return ipconfig->method;
1057 }
1058
1059 /**
1060  * connman_ipconfig_bind:
1061  * @ipconfig: ipconfig structure
1062  * @ipaddress: ipaddress structure
1063  *
1064  * Bind IP address details to configuration
1065  */
1066 void connman_ipconfig_bind(struct connman_ipconfig *ipconfig,
1067                                         struct connman_ipaddress *ipaddress)
1068 {
1069         struct connman_ipconfig *origin;
1070
1071         origin = ipconfig->origin ? ipconfig->origin : ipconfig;
1072
1073         connman_ipaddress_copy(origin->address, ipaddress);
1074
1075         connman_inet_set_address(origin->index, origin->address);
1076 }
1077
1078 void __connman_ipconfig_set_element_ipv6_gateway(
1079                         struct connman_ipconfig *ipconfig,
1080                                 struct connman_element *element)
1081 {
1082         if (ipconfig->type == CONNMAN_IPCONFIG_TYPE_IPV6)
1083                 element->ipv6.gateway = ipconfig->address->gateway;
1084 }
1085
1086 /*
1087  * FIXME: The element soulution should be removed in the future
1088  * Set IPv4 and IPv6 gateway
1089  */
1090 int __connman_ipconfig_set_gateway(struct connman_ipconfig *ipconfig,
1091                                                 struct connman_element *parent)
1092 {
1093         struct connman_element *connection;
1094
1095         connection = connman_element_create(NULL);
1096
1097         DBG("ipconfig %p", ipconfig);
1098
1099         connection->type  = CONNMAN_ELEMENT_TYPE_CONNECTION;
1100         connection->index = ipconfig->index;
1101
1102         if (ipconfig->type == CONNMAN_IPCONFIG_TYPE_IPV4)
1103                 connection->ipv4.gateway = ipconfig->address->gateway;
1104         else if (ipconfig->type == CONNMAN_IPCONFIG_TYPE_IPV6)
1105                 connection->ipv6.gateway = ipconfig->address->gateway;
1106
1107         if (connman_element_register(connection, parent) < 0)
1108                 connman_element_unref(connection);
1109
1110         return 0;
1111 }
1112
1113 int __connman_ipconfig_set_address(struct connman_ipconfig *ipconfig)
1114 {
1115         DBG("");
1116
1117         switch (ipconfig->method) {
1118         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
1119         case CONNMAN_IPCONFIG_METHOD_OFF:
1120         case CONNMAN_IPCONFIG_METHOD_FIXED:
1121         case CONNMAN_IPCONFIG_METHOD_DHCP:
1122         case CONNMAN_IPCONFIG_METHOD_AUTO:
1123                 break;
1124         case CONNMAN_IPCONFIG_METHOD_MANUAL:
1125                 if (ipconfig->type == CONNMAN_IPCONFIG_TYPE_IPV4)
1126                         return connman_inet_set_address(ipconfig->index,
1127                                                         ipconfig->address);
1128                 else if (ipconfig->type == CONNMAN_IPCONFIG_TYPE_IPV6)
1129                         return connman_inet_set_ipv6_address(
1130                                         ipconfig->index, ipconfig->address);
1131         }
1132
1133         return 0;
1134 }
1135
1136 int __connman_ipconfig_clear_address(struct connman_ipconfig *ipconfig)
1137 {
1138         DBG("");
1139
1140         if (ipconfig == NULL)
1141                 return 0;
1142
1143         DBG("method %d", ipconfig->method);
1144
1145         switch (ipconfig->method) {
1146         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
1147         case CONNMAN_IPCONFIG_METHOD_OFF:
1148         case CONNMAN_IPCONFIG_METHOD_FIXED:
1149         case CONNMAN_IPCONFIG_METHOD_DHCP:
1150         case CONNMAN_IPCONFIG_METHOD_AUTO:
1151                 break;
1152         case CONNMAN_IPCONFIG_METHOD_MANUAL:
1153                 if (ipconfig->type == CONNMAN_IPCONFIG_TYPE_IPV4)
1154                         return connman_inet_clear_address(ipconfig->index,
1155                                                         ipconfig->address);
1156                 else if (ipconfig->type == CONNMAN_IPCONFIG_TYPE_IPV6)
1157                         return connman_inet_clear_ipv6_address(
1158                                                 ipconfig->index,
1159                                                 ipconfig->address->local,
1160                                                 ipconfig->address->prefixlen);
1161         }
1162
1163         return 0;
1164 }
1165
1166 int __connman_ipconfig_set_proxy_autoconfig(struct connman_ipconfig *ipconfig,
1167                                                         const char *url)
1168 {
1169         struct connman_ipdevice *ipdevice;
1170
1171         DBG("ipconfig %p", ipconfig);
1172
1173         if (ipconfig == NULL || ipconfig->index < 0)
1174                 return -ENODEV;
1175
1176         ipdevice = g_hash_table_lookup(ipdevice_hash,
1177                                         GINT_TO_POINTER(ipconfig->index));
1178         if (ipdevice == NULL)
1179                 return -ENXIO;
1180
1181         g_free(ipdevice->pac);
1182         ipdevice->pac = g_strdup(url);
1183
1184         return 0;
1185 }
1186
1187 const char *__connman_ipconfig_get_proxy_autoconfig(struct connman_ipconfig *ipconfig)
1188 {
1189         struct connman_ipdevice *ipdevice;
1190
1191         DBG("ipconfig %p", ipconfig);
1192
1193         if (ipconfig == NULL || ipconfig->index < 0)
1194                 return NULL;
1195
1196         ipdevice = g_hash_table_lookup(ipdevice_hash,
1197                                         GINT_TO_POINTER(ipconfig->index));
1198         if (ipdevice == NULL)
1199                 return NULL;
1200
1201         return ipdevice->pac;
1202 }
1203
1204 int __connman_ipconfig_enable(struct connman_ipconfig *ipconfig)
1205 {
1206         struct connman_ipdevice *ipdevice;
1207         gboolean up = FALSE, down = FALSE;
1208         gboolean lower_up = FALSE, lower_down = FALSE;
1209         enum connman_ipconfig_type type;
1210
1211         DBG("ipconfig %p", ipconfig);
1212
1213         if (ipconfig == NULL || ipconfig->index < 0)
1214                 return -ENODEV;
1215
1216         ipdevice = g_hash_table_lookup(ipdevice_hash,
1217                                         GINT_TO_POINTER(ipconfig->index));
1218         if (ipdevice == NULL)
1219                 return -ENXIO;
1220
1221         if (ipconfig->type == CONNMAN_IPCONFIG_TYPE_IPV4) {
1222                 if (ipdevice->config_ipv4 == ipconfig)
1223                         return -EALREADY;
1224                 type = CONNMAN_IPCONFIG_TYPE_IPV4;
1225         } else if (ipconfig->type == CONNMAN_IPCONFIG_TYPE_IPV6) {
1226                 if (ipdevice->config_ipv6 == ipconfig)
1227                         return -EALREADY;
1228                 type = CONNMAN_IPCONFIG_TYPE_IPV6;
1229         } else
1230                 return -EINVAL;
1231
1232         if (type == CONNMAN_IPCONFIG_TYPE_IPV4 &&
1233                                         ipdevice->config_ipv4 != NULL) {
1234                 ipconfig_list = g_list_remove(ipconfig_list,
1235                                                         ipdevice->config_ipv4);
1236
1237                 connman_ipaddress_clear(ipdevice->config_ipv4->system);
1238
1239                 connman_ipconfig_unref(ipdevice->config_ipv4);
1240         }
1241
1242         if (type == CONNMAN_IPCONFIG_TYPE_IPV6 &&
1243                                         ipdevice->config_ipv6 != NULL) {
1244                 ipconfig_list = g_list_remove(ipconfig_list,
1245                                                         ipdevice->config_ipv6);
1246
1247                 connman_ipaddress_clear(ipdevice->config_ipv6->system);
1248
1249                 connman_ipconfig_unref(ipdevice->config_ipv6);
1250         }
1251
1252         if (type == CONNMAN_IPCONFIG_TYPE_IPV4)
1253                 ipdevice->config_ipv4 = connman_ipconfig_ref(ipconfig);
1254         else if (type == CONNMAN_IPCONFIG_TYPE_IPV6)
1255                 ipdevice->config_ipv6 = connman_ipconfig_ref(ipconfig);
1256
1257         ipconfig_list = g_list_append(ipconfig_list, ipconfig);
1258
1259         if (ipdevice->flags & IFF_UP)
1260                 up = TRUE;
1261         else
1262                 down = TRUE;
1263
1264         if ((ipdevice->flags & (IFF_RUNNING | IFF_LOWER_UP)) ==
1265                         (IFF_RUNNING | IFF_LOWER_UP))
1266                 lower_up = TRUE;
1267         else if ((ipdevice->flags & (IFF_RUNNING | IFF_LOWER_UP)) == 0)
1268                 lower_down = TRUE;
1269
1270         if (up == TRUE && ipconfig->ops->up)
1271                 ipconfig->ops->up(ipconfig);
1272         if (lower_up == TRUE && ipconfig->ops->lower_up)
1273                 ipconfig->ops->lower_up(ipconfig);
1274
1275         if (lower_down == TRUE && ipconfig->ops->lower_down)
1276                 ipconfig->ops->lower_down(ipconfig);
1277         if (down == TRUE && ipconfig->ops->down)
1278                 ipconfig->ops->down(ipconfig);
1279
1280         return 0;
1281 }
1282
1283 int __connman_ipconfig_disable(struct connman_ipconfig *ipconfig)
1284 {
1285         struct connman_ipdevice *ipdevice;
1286
1287         DBG("ipconfig %p", ipconfig);
1288
1289         if (ipconfig == NULL || ipconfig->index < 0)
1290                 return -ENODEV;
1291
1292         ipdevice = g_hash_table_lookup(ipdevice_hash,
1293                                         GINT_TO_POINTER(ipconfig->index));
1294         if (ipdevice == NULL)
1295                 return -ENXIO;
1296
1297         if (ipdevice->config_ipv4 == NULL && ipdevice->config_ipv6 == NULL)
1298                 return -EINVAL;
1299
1300         if (ipdevice->config_ipv4 == ipconfig) {
1301                 ipconfig_list = g_list_remove(ipconfig_list, ipconfig);
1302
1303                 connman_ipaddress_clear(ipdevice->config_ipv4->system);
1304                 connman_ipconfig_unref(ipdevice->config_ipv4);
1305                 ipdevice->config_ipv4 = NULL;
1306                 return 0;
1307         }
1308
1309         if (ipdevice->config_ipv6 == ipconfig) {
1310                 ipconfig_list = g_list_remove(ipconfig_list, ipconfig);
1311
1312                 connman_ipaddress_clear(ipdevice->config_ipv6->system);
1313                 connman_ipconfig_unref(ipdevice->config_ipv6);
1314                 ipdevice->config_ipv6 = NULL;
1315                 return 0;
1316         }
1317
1318         return -EINVAL;
1319 }
1320
1321 const char *__connman_ipconfig_method2string(enum connman_ipconfig_method method)
1322 {
1323         switch (method) {
1324         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
1325                 break;
1326         case CONNMAN_IPCONFIG_METHOD_OFF:
1327                 return "off";
1328         case CONNMAN_IPCONFIG_METHOD_FIXED:
1329                 return "fixed";
1330         case CONNMAN_IPCONFIG_METHOD_MANUAL:
1331                 return "manual";
1332         case CONNMAN_IPCONFIG_METHOD_DHCP:
1333                 return "dhcp";
1334         case CONNMAN_IPCONFIG_METHOD_AUTO:
1335                 return "auto";
1336         }
1337
1338         return NULL;
1339 }
1340
1341 enum connman_ipconfig_method __connman_ipconfig_string2method(const char *method)
1342 {
1343         if (g_strcmp0(method, "off") == 0)
1344                 return CONNMAN_IPCONFIG_METHOD_OFF;
1345         else if (g_strcmp0(method, "fixed") == 0)
1346                 return CONNMAN_IPCONFIG_METHOD_FIXED;
1347         else if (g_strcmp0(method, "manual") == 0)
1348                 return CONNMAN_IPCONFIG_METHOD_MANUAL;
1349         else if (g_strcmp0(method, "dhcp") == 0)
1350                 return CONNMAN_IPCONFIG_METHOD_DHCP;
1351         else if (g_strcmp0(method, "auto") == 0)
1352                 return CONNMAN_IPCONFIG_METHOD_AUTO;
1353         else
1354                 return CONNMAN_IPCONFIG_METHOD_UNKNOWN;
1355 }
1356
1357 void __connman_ipconfig_append_ipv4(struct connman_ipconfig *ipconfig,
1358                                                         DBusMessageIter *iter)
1359 {
1360         const char *str;
1361
1362         DBG("");
1363
1364         if (ipconfig->type != CONNMAN_IPCONFIG_TYPE_IPV4)
1365                 return;
1366
1367         str = __connman_ipconfig_method2string(ipconfig->method);
1368         if (str == NULL)
1369                 return;
1370
1371         connman_dbus_dict_append_basic(iter, "Method", DBUS_TYPE_STRING, &str);
1372
1373         if (ipconfig->system == NULL)
1374                 return;
1375
1376         if (ipconfig->system->local != NULL) {
1377                 in_addr_t addr;
1378                 struct in_addr netmask;
1379                 char *mask;
1380
1381                 connman_dbus_dict_append_basic(iter, "Address",
1382                                 DBUS_TYPE_STRING, &ipconfig->system->local);
1383
1384                 addr = 0xffffffff << (32 - ipconfig->system->prefixlen);
1385                 netmask.s_addr = htonl(addr);
1386                 mask = inet_ntoa(netmask);
1387                 connman_dbus_dict_append_basic(iter, "Netmask",
1388                                                 DBUS_TYPE_STRING, &mask);
1389         }
1390
1391         if (ipconfig->system->gateway != NULL)
1392                 connman_dbus_dict_append_basic(iter, "Gateway",
1393                                 DBUS_TYPE_STRING, &ipconfig->system->gateway);
1394 }
1395
1396 void __connman_ipconfig_append_ipv6(struct connman_ipconfig *ipconfig,
1397                                                         DBusMessageIter *iter)
1398 {
1399         const char *str;
1400
1401         DBG("");
1402
1403         if (ipconfig->type != CONNMAN_IPCONFIG_TYPE_IPV6)
1404                 return;
1405
1406         str = __connman_ipconfig_method2string(ipconfig->method);
1407         if (str == NULL)
1408                 return;
1409
1410         connman_dbus_dict_append_basic(iter, "Method", DBUS_TYPE_STRING, &str);
1411
1412         if (ipconfig->system == NULL)
1413                 return;
1414
1415         if (ipconfig->system->local != NULL) {
1416                 connman_dbus_dict_append_basic(iter, "Address",
1417                                 DBUS_TYPE_STRING, &ipconfig->system->local);
1418                 connman_dbus_dict_append_basic(iter, "PrefixLength",
1419                                                 DBUS_TYPE_BYTE,
1420                                                 &ipconfig->system->prefixlen);
1421         }
1422
1423         if (ipconfig->system->gateway != NULL)
1424                 connman_dbus_dict_append_basic(iter, "Gateway",
1425                                 DBUS_TYPE_STRING, &ipconfig->system->gateway);
1426 }
1427
1428 void __connman_ipconfig_append_ipv6config(struct connman_ipconfig *ipconfig,
1429                                                         DBusMessageIter *iter)
1430 {
1431         const char *str;
1432
1433         DBG("");
1434
1435         str = __connman_ipconfig_method2string(ipconfig->method);
1436         if (str == NULL)
1437                 return;
1438
1439         connman_dbus_dict_append_basic(iter, "Method", DBUS_TYPE_STRING, &str);
1440
1441         switch (ipconfig->method) {
1442         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
1443         case CONNMAN_IPCONFIG_METHOD_OFF:
1444         case CONNMAN_IPCONFIG_METHOD_DHCP:
1445                 return;
1446         case CONNMAN_IPCONFIG_METHOD_FIXED:
1447         case CONNMAN_IPCONFIG_METHOD_MANUAL:
1448         case CONNMAN_IPCONFIG_METHOD_AUTO:
1449                 break;
1450         }
1451
1452         if (ipconfig->address == NULL)
1453                 return;
1454
1455         if (ipconfig->address->local != NULL) {
1456                 connman_dbus_dict_append_basic(iter, "Address",
1457                                 DBUS_TYPE_STRING, &ipconfig->address->local);
1458                 connman_dbus_dict_append_basic(iter, "PrefixLength",
1459                                                 DBUS_TYPE_BYTE,
1460                                                 &ipconfig->address->prefixlen);
1461         }
1462
1463         if (ipconfig->address->gateway != NULL)
1464                 connman_dbus_dict_append_basic(iter, "Gateway",
1465                                 DBUS_TYPE_STRING, &ipconfig->address->gateway);
1466 }
1467
1468 void __connman_ipconfig_append_ipv4config(struct connman_ipconfig *ipconfig,
1469                                                         DBusMessageIter *iter)
1470 {
1471         const char *str;
1472
1473         DBG("");
1474
1475         str = __connman_ipconfig_method2string(ipconfig->method);
1476         if (str == NULL)
1477                 return;
1478
1479         connman_dbus_dict_append_basic(iter, "Method", DBUS_TYPE_STRING, &str);
1480
1481         switch (ipconfig->method) {
1482         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
1483         case CONNMAN_IPCONFIG_METHOD_OFF:
1484         case CONNMAN_IPCONFIG_METHOD_FIXED:
1485         case CONNMAN_IPCONFIG_METHOD_DHCP:
1486         case CONNMAN_IPCONFIG_METHOD_AUTO:
1487                 return;
1488         case CONNMAN_IPCONFIG_METHOD_MANUAL:
1489                 break;
1490         }
1491
1492         if (ipconfig->address == NULL)
1493                 return;
1494
1495         if (ipconfig->address->local != NULL) {
1496                 in_addr_t addr;
1497                 struct in_addr netmask;
1498                 char *mask;
1499
1500                 connman_dbus_dict_append_basic(iter, "Address",
1501                                 DBUS_TYPE_STRING, &ipconfig->address->local);
1502
1503                 addr = 0xffffffff << (32 - ipconfig->address->prefixlen);
1504                 netmask.s_addr = htonl(addr);
1505                 mask = inet_ntoa(netmask);
1506                 connman_dbus_dict_append_basic(iter, "Netmask",
1507                                                 DBUS_TYPE_STRING, &mask);
1508         }
1509
1510         if (ipconfig->address->gateway != NULL)
1511                 connman_dbus_dict_append_basic(iter, "Gateway",
1512                                 DBUS_TYPE_STRING, &ipconfig->address->gateway);
1513 }
1514
1515 int __connman_ipconfig_set_config(struct connman_ipconfig *ipconfig,
1516                                                         DBusMessageIter *array)
1517 {
1518         enum connman_ipconfig_method method = CONNMAN_IPCONFIG_METHOD_UNKNOWN;
1519         const char *address = NULL, *netmask = NULL, *gateway = NULL,
1520                         *prefix_length_string = NULL;
1521         int prefix_length = 0;
1522         DBusMessageIter dict;
1523
1524         DBG("ipconfig %p", ipconfig);
1525
1526         if (dbus_message_iter_get_arg_type(array) != DBUS_TYPE_ARRAY)
1527                 return -EINVAL;
1528
1529         dbus_message_iter_recurse(array, &dict);
1530
1531         while (dbus_message_iter_get_arg_type(&dict) == DBUS_TYPE_DICT_ENTRY) {
1532                 DBusMessageIter entry;
1533                 const char *key;
1534                 int type;
1535
1536                 dbus_message_iter_recurse(&dict, &entry);
1537
1538                 if (dbus_message_iter_get_arg_type(&entry) != DBUS_TYPE_STRING)
1539                         return -EINVAL;
1540
1541                 dbus_message_iter_get_basic(&entry, &key);
1542                 dbus_message_iter_next(&entry);
1543
1544                 type = dbus_message_iter_get_arg_type(&entry);
1545
1546                 if (g_str_equal(key, "Method") == TRUE) {
1547                         const char *str;
1548
1549                         if (type != DBUS_TYPE_STRING)
1550                                 return -EINVAL;
1551
1552                         dbus_message_iter_get_basic(&entry, &str);
1553                         method = __connman_ipconfig_string2method(str);
1554                 } else if (g_str_equal(key, "Address") == TRUE) {
1555                         if (type != DBUS_TYPE_STRING)
1556                                 return -EINVAL;
1557
1558                         dbus_message_iter_get_basic(&entry, &address);
1559                 } else if (g_str_equal(key, "PrefixLength") == TRUE) {
1560                         if (type != DBUS_TYPE_STRING)
1561                                 return -EINVAL;
1562
1563                         dbus_message_iter_get_basic(&entry,
1564                                                         &prefix_length_string);
1565
1566                         prefix_length = atoi(prefix_length_string);
1567                         if (prefix_length < 0 || prefix_length > 128)
1568                                 return -EINVAL;
1569
1570                 } else if (g_str_equal(key, "Netmask") == TRUE) {
1571                         if (type != DBUS_TYPE_STRING)
1572                                 return -EINVAL;
1573
1574                         dbus_message_iter_get_basic(&entry, &netmask);
1575                 } else if (g_str_equal(key, "Gateway") == TRUE) {
1576                         if (type != DBUS_TYPE_STRING)
1577                                 return -EINVAL;
1578
1579                         dbus_message_iter_get_basic(&entry, &gateway);
1580                 }
1581                 dbus_message_iter_next(&dict);
1582         }
1583
1584         DBG("method %d address %s netmask %s gateway %s prefix_length %d",
1585                         method, address, netmask, gateway, prefix_length);
1586
1587         switch (method) {
1588         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
1589         case CONNMAN_IPCONFIG_METHOD_OFF:
1590         case CONNMAN_IPCONFIG_METHOD_FIXED:
1591         case CONNMAN_IPCONFIG_METHOD_AUTO:
1592                 return -EINVAL;
1593
1594         case CONNMAN_IPCONFIG_METHOD_MANUAL:
1595                 if (address == NULL)
1596                         return -EINVAL;
1597
1598                 ipconfig->method = method;
1599
1600                 if (ipconfig->type == CONNMAN_IPCONFIG_TYPE_IPV4)
1601                         connman_ipaddress_set_ipv4(ipconfig->address,
1602                                                 address, netmask, gateway);
1603                 else
1604                         return connman_ipaddress_set_ipv6(
1605                                         ipconfig->address, address,
1606                                                 gateway, prefix_length);
1607                 break;
1608
1609         case CONNMAN_IPCONFIG_METHOD_DHCP:
1610                 if (ipconfig->method == method)
1611                         return 0;
1612
1613                 ipconfig->method = method;
1614                 break;
1615         }
1616
1617         return 0;
1618 }
1619
1620 void __connman_ipconfig_append_ethernet(struct connman_ipconfig *ipconfig,
1621                                                         DBusMessageIter *iter)
1622 {
1623         struct connman_ipdevice *ipdevice;
1624         const char *method = "auto";
1625
1626         connman_dbus_dict_append_basic(iter, "Method",
1627                                                 DBUS_TYPE_STRING, &method);
1628
1629         ipdevice = g_hash_table_lookup(ipdevice_hash,
1630                                         GINT_TO_POINTER(ipconfig->index));
1631         if (ipdevice == NULL)
1632                 return;
1633
1634         if (ipdevice->ifname != NULL)
1635                 connman_dbus_dict_append_basic(iter, "Interface",
1636                                         DBUS_TYPE_STRING, &ipdevice->ifname);
1637
1638         if (ipdevice->address != NULL)
1639                 connman_dbus_dict_append_basic(iter, "Address",
1640                                         DBUS_TYPE_STRING, &ipdevice->address);
1641
1642         if (ipdevice->mtu > 0)
1643                 connman_dbus_dict_append_basic(iter, "MTU",
1644                                         DBUS_TYPE_UINT16, &ipdevice->mtu);
1645 }
1646
1647 int __connman_ipconfig_load(struct connman_ipconfig *ipconfig,
1648                 GKeyFile *keyfile, const char *identifier, const char *prefix)
1649 {
1650         char *method;
1651         char *key;
1652
1653         DBG("ipconfig %p identifier %s", ipconfig, identifier);
1654
1655         key = g_strdup_printf("%smethod", prefix);
1656         method = g_key_file_get_string(keyfile, identifier, key, NULL);
1657         if (method == NULL) {
1658                 if (ipconfig->type == CONNMAN_IPCONFIG_TYPE_IPV4)
1659                         ipconfig->method = CONNMAN_IPCONFIG_METHOD_DHCP;
1660                 else
1661                         ipconfig->method = CONNMAN_IPCONFIG_METHOD_OFF;
1662         } else
1663                 ipconfig->method = __connman_ipconfig_string2method(method);
1664
1665         if (ipconfig->method == CONNMAN_IPCONFIG_METHOD_UNKNOWN)
1666                 ipconfig->method = CONNMAN_IPCONFIG_METHOD_OFF;
1667
1668         g_free(method);
1669         g_free(key);
1670
1671         key = g_strdup_printf("%snetmask_prefixlen", prefix);
1672         ipconfig->address->prefixlen = g_key_file_get_integer(
1673                                 keyfile, identifier, key, NULL);
1674         g_free(key);
1675
1676         key = g_strdup_printf("%slocal_address", prefix);
1677         ipconfig->address->local = g_key_file_get_string(
1678                         keyfile, identifier, key, NULL);
1679         g_free(key);
1680
1681         key = g_strdup_printf("%speer_address", prefix);
1682         ipconfig->address->peer = g_key_file_get_string(
1683                                 keyfile, identifier, key, NULL);
1684         g_free(key);
1685
1686         key = g_strdup_printf("%sbroadcast_address", prefix);
1687         ipconfig->address->broadcast = g_key_file_get_string(
1688                                 keyfile, identifier, key, NULL);
1689         g_free(key);
1690
1691         key = g_strdup_printf("%sgateway", prefix);
1692         ipconfig->address->gateway = g_key_file_get_string(
1693                                 keyfile, identifier, key, NULL);
1694         g_free(key);
1695
1696         return 0;
1697 }
1698
1699 int __connman_ipconfig_save(struct connman_ipconfig *ipconfig,
1700                 GKeyFile *keyfile, const char *identifier, const char *prefix)
1701 {
1702         const char *method;
1703         char *key;
1704
1705         DBG("ipconfig %p identifier %s", ipconfig, identifier);
1706
1707         method = __connman_ipconfig_method2string(ipconfig->method);
1708
1709         key = g_strdup_printf("%smethod", prefix);
1710         g_key_file_set_string(keyfile, identifier, key, method);
1711         g_free(key);
1712
1713         key = g_strdup_printf("%snetmask_prefixlen", prefix);
1714         g_key_file_set_integer(keyfile, identifier,
1715                         key, ipconfig->address->prefixlen);
1716         g_free(key);
1717
1718         key = g_strdup_printf("%slocal_address", prefix);
1719         if (ipconfig->address->local != NULL)
1720                 g_key_file_set_string(keyfile, identifier,
1721                                 key, ipconfig->address->local);
1722         g_free(key);
1723
1724         key = g_strdup_printf("%speer_address", prefix);
1725         if (ipconfig->address->peer != NULL)
1726                 g_key_file_set_string(keyfile, identifier,
1727                                 key, ipconfig->address->peer);
1728         g_free(key);
1729
1730         key = g_strdup_printf("%sbroadcast_address", prefix);
1731         if (ipconfig->address->broadcast != NULL)
1732                 g_key_file_set_string(keyfile, identifier,
1733                         key, ipconfig->address->broadcast);
1734         g_free(key);
1735
1736         key = g_strdup_printf("%sgateway", prefix);
1737         if (ipconfig->address->gateway != NULL)
1738                 g_key_file_set_string(keyfile, identifier,
1739                         key, ipconfig->address->gateway);
1740         g_free(key);
1741
1742         return 0;
1743 }
1744
1745 int __connman_ipconfig_init(void)
1746 {
1747         DBG("");
1748
1749         ipdevice_hash = g_hash_table_new_full(g_direct_hash, g_direct_equal,
1750                                                         NULL, free_ipdevice);
1751
1752         return 0;
1753 }
1754
1755 void __connman_ipconfig_cleanup(void)
1756 {
1757         DBG("");
1758
1759         g_hash_table_destroy(ipdevice_hash);
1760         ipdevice_hash = NULL;
1761 }