Add static gateway support
[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
30 #ifndef IFF_LOWER_UP
31 #define IFF_LOWER_UP    0x10000
32 #endif
33
34 #include <gdbus.h>
35
36 #include "connman.h"
37
38 struct connman_ipconfig {
39         gint refcount;
40         int index;
41
42         struct connman_ipconfig *origin;
43
44         const struct connman_ipconfig_ops *ops;
45         void *ops_data;
46
47         enum connman_ipconfig_method method;
48         struct connman_ipaddress *address;
49         struct connman_ipaddress *system;
50 };
51
52 struct connman_ipdevice {
53         int index;
54         char *ifname;
55         unsigned short type;
56         unsigned int flags;
57         char *address;
58         uint16_t mtu;
59         uint32_t tx_bytes;
60         uint32_t rx_bytes;
61
62         GSList *address_list;
63         char *gateway;
64
65         struct connman_ipconfig *config;
66
67         struct connman_ipconfig_driver *driver;
68         struct connman_ipconfig *driver_config;
69 };
70
71 static GHashTable *ipdevice_hash = NULL;
72 static GList *ipconfig_list = NULL;
73
74 struct connman_ipaddress *connman_ipaddress_alloc(void)
75 {
76         struct connman_ipaddress *ipaddress;
77
78         ipaddress = g_try_new0(struct connman_ipaddress, 1);
79         if (ipaddress == NULL)
80                 return NULL;
81
82         return ipaddress;
83 }
84
85 void connman_ipaddress_free(struct connman_ipaddress *ipaddress)
86 {
87         if (ipaddress == NULL)
88                 return;
89
90         g_free(ipaddress->broadcast);
91         g_free(ipaddress->peer);
92         g_free(ipaddress->local);
93         g_free(ipaddress->gateway);
94         g_free(ipaddress);
95 }
96
97 static unsigned char netmask2prefixlen(const char *netmask)
98 {
99         unsigned char bits = 0;
100         in_addr_t mask = inet_network(netmask);
101         in_addr_t host = ~mask;
102
103         /* a valid netmask must be 2^n - 1 */
104         if ((host & (host + 1)) != 0)
105                 return -1;
106
107         for (; mask; mask <<= 1)
108                 ++bits;
109
110         return bits;
111 }
112
113 void connman_ipaddress_set(struct connman_ipaddress *ipaddress,
114                 const char *address, const char *netmask, const char *gateway)
115 {
116         if (ipaddress == NULL)
117                 return;
118
119         if (netmask != NULL)
120                 ipaddress->prefixlen = netmask2prefixlen(netmask);
121         else
122                 ipaddress->prefixlen = 32;
123
124         g_free(ipaddress->local);
125         ipaddress->local = g_strdup(address);
126
127         g_free(ipaddress->gateway);
128         ipaddress->gateway = g_strdup(gateway);
129 }
130
131 void connman_ipaddress_clear(struct connman_ipaddress *ipaddress)
132 {
133         if (ipaddress == NULL)
134                 return;
135
136         ipaddress->prefixlen = 0;
137
138         g_free(ipaddress->local);
139         ipaddress->local = NULL;
140
141         g_free(ipaddress->peer);
142         ipaddress->peer = NULL;
143
144         g_free(ipaddress->broadcast);
145         ipaddress->broadcast = NULL;
146
147         g_free(ipaddress->gateway);
148         ipaddress->gateway = NULL;
149 }
150
151 void connman_ipaddress_copy(struct connman_ipaddress *ipaddress,
152                                         struct connman_ipaddress *source)
153 {
154         if (ipaddress == NULL || source == NULL)
155                 return;
156
157         ipaddress->prefixlen = source->prefixlen;
158
159         g_free(ipaddress->local);
160         ipaddress->local = g_strdup(source->local);
161
162         g_free(ipaddress->peer);
163         ipaddress->peer = g_strdup(source->peer);
164
165         g_free(ipaddress->broadcast);
166         ipaddress->broadcast = g_strdup(source->broadcast);
167
168         g_free(ipaddress->gateway);
169         ipaddress->gateway = g_strdup(source->gateway);
170 }
171
172 static void free_address_list(struct connman_ipdevice *ipdevice)
173 {
174         GSList *list;
175
176         for (list = ipdevice->address_list; list; list = list->next) {
177                 struct connman_ipaddress *ipaddress = list->data;
178
179                 connman_ipaddress_free(ipaddress);
180                 list->data = NULL;
181         }
182
183         g_slist_free(ipdevice->address_list);
184         ipdevice->address_list = NULL;
185 }
186
187 static struct connman_ipaddress *find_ipaddress(struct connman_ipdevice *ipdevice,
188                                 unsigned char prefixlen, const char *local)
189 {
190         GSList *list;
191
192         for (list = ipdevice->address_list; list; list = list->next) {
193                 struct connman_ipaddress *ipaddress = list->data;
194
195                 if (g_strcmp0(ipaddress->local, local) == 0 &&
196                                         ipaddress->prefixlen == prefixlen)
197                         return ipaddress;
198         }
199
200         return NULL;
201 }
202
203 static const char *type2str(unsigned short type)
204 {
205         switch (type) {
206         case ARPHRD_ETHER:
207                 return "ETHER";
208         case ARPHRD_LOOPBACK:
209                 return "LOOPBACK";
210         case ARPHRD_PPP:
211                 return "PPP";
212         case ARPHRD_NONE:
213                 return "NONE";
214         case ARPHRD_VOID:
215                 return "VOID";
216         }
217
218         return "";
219 }
220
221 static const char *scope2str(unsigned char scope)
222 {
223         switch (scope) {
224         case 0:
225                 return "UNIVERSE";
226         case 253:
227                 return "LINK";
228         }
229
230         return "";
231 }
232
233 static void free_ipdevice(gpointer data)
234 {
235         struct connman_ipdevice *ipdevice = data;
236
237         connman_info("%s {remove} index %d", ipdevice->ifname,
238                                                         ipdevice->index);
239
240         if (ipdevice->config != NULL)
241                 connman_ipconfig_unref(ipdevice->config);
242
243         free_address_list(ipdevice);
244         g_free(ipdevice->gateway);
245
246         g_free(ipdevice->address);
247         g_free(ipdevice->ifname);
248         g_free(ipdevice);
249 }
250
251 static GSList *driver_list = NULL;
252
253 static gint compare_priority(gconstpointer a, gconstpointer b)
254 {
255         const struct connman_ipconfig_driver *driver1 = a;
256         const struct connman_ipconfig_driver *driver2 = b;
257
258         return driver2->priority - driver1->priority;
259 }
260
261 /**
262  * connman_ipconfig_driver_register:
263  * @driver: IP configuration driver
264  *
265  * Register a new IP configuration driver
266  *
267  * Returns: %0 on success
268  */
269 int connman_ipconfig_driver_register(struct connman_ipconfig_driver *driver)
270 {
271         DBG("driver %p name %s", driver, driver->name);
272
273         driver_list = g_slist_insert_sorted(driver_list, driver,
274                                                         compare_priority);
275
276         return 0;
277 }
278
279 /**
280  * connman_ipconfig_driver_unregister:
281  * @driver: IP configuration driver
282  *
283  * Remove a previously registered IP configuration driver.
284  */
285 void connman_ipconfig_driver_unregister(struct connman_ipconfig_driver *driver)
286 {
287         DBG("driver %p name %s", driver, driver->name);
288
289         driver_list = g_slist_remove(driver_list, driver);
290 }
291
292 static void __connman_ipconfig_lower_up(struct connman_ipdevice *ipdevice)
293 {
294         GSList *list;
295
296         DBG("ipconfig %p", ipdevice->config);
297
298         if (ipdevice->config == NULL)
299                 return;
300
301         switch (ipdevice->config->method) {
302         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
303         case CONNMAN_IPCONFIG_METHOD_OFF:
304         case CONNMAN_IPCONFIG_METHOD_FIXED:
305         case CONNMAN_IPCONFIG_METHOD_MANUAL:
306                 return;
307         case CONNMAN_IPCONFIG_METHOD_DHCP:
308                 break;
309         }
310
311         if (ipdevice->driver != NULL)
312                 return;
313
314         ipdevice->driver_config = connman_ipconfig_clone(ipdevice->config);
315         if (ipdevice->driver_config == NULL)
316                 return;
317
318         for (list = driver_list; list; list = list->next) {
319                 struct connman_ipconfig_driver *driver = list->data;
320
321                 if (driver->request(ipdevice->driver_config) == 0) {
322                         ipdevice->driver = driver;
323                         break;
324                 }
325         }
326
327         if (ipdevice->driver == NULL) {
328                 connman_ipconfig_unref(ipdevice->driver_config);
329                 ipdevice->driver_config = NULL;
330         }
331 }
332
333 static void __connman_ipconfig_lower_down(struct connman_ipdevice *ipdevice)
334 {
335         DBG("ipconfig %p", ipdevice->config);
336
337         if (ipdevice->config == NULL)
338                 return;
339
340         if (ipdevice->driver == NULL)
341                 return;
342
343         ipdevice->driver->release(ipdevice->driver_config);
344
345         ipdevice->driver = NULL;
346
347         connman_ipconfig_unref(ipdevice->driver_config);
348         ipdevice->driver_config = NULL;
349
350         connman_inet_clear_address(ipdevice->index);
351 }
352
353 static void update_stats(struct connman_ipdevice *ipdevice,
354                                                 struct rtnl_link_stats *stats)
355 {
356         if (stats->rx_packets == 0 && stats->tx_packets == 0)
357                 return;
358
359         connman_info("%s {RX} %u packets %u bytes", ipdevice->ifname,
360                                         stats->rx_packets, stats->rx_bytes);
361         connman_info("%s {TX} %u packets %u bytes", ipdevice->ifname,
362                                         stats->tx_packets, stats->tx_bytes);
363
364         if (ipdevice->config == NULL)
365                 return;
366
367         ipdevice->rx_bytes = stats->rx_bytes;
368         ipdevice->tx_bytes = stats->tx_bytes;
369
370         __connman_counter_notify(ipdevice->ifname,
371                                 ipdevice->rx_bytes, ipdevice->tx_bytes);
372 }
373
374 void __connman_ipconfig_newlink(int index, unsigned short type,
375                                 unsigned int flags, const char *address,
376                                                         unsigned short mtu,
377                                                 struct rtnl_link_stats *stats)
378 {
379         struct connman_ipdevice *ipdevice;
380         GList *list;
381         GString *str;
382         gboolean up = FALSE, down = FALSE;
383         gboolean lower_up = FALSE, lower_down = FALSE;
384         char *ifname;
385
386         DBG("index %d", index);
387
388         if (type == ARPHRD_LOOPBACK)
389                 return;
390
391         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
392         if (ipdevice != NULL)
393                 goto update;
394
395         ifname = connman_inet_ifname(index);
396
397         if (__connman_element_device_isfiltered(ifname) == TRUE) {
398                 connman_info("Ignoring interface %s (filtered)", ifname);
399                 g_free(ifname);
400                 return;
401         }
402
403         ipdevice = g_try_new0(struct connman_ipdevice, 1);
404         if (ipdevice == NULL) {
405                 g_free(ifname);
406                 return;
407         }
408
409         ipdevice->index = index;
410         ipdevice->ifname = ifname;
411         ipdevice->type = type;
412
413         ipdevice->address = g_strdup(address);
414
415         g_hash_table_insert(ipdevice_hash, GINT_TO_POINTER(index), ipdevice);
416
417         connman_info("%s {create} index %d type %d <%s>", ipdevice->ifname,
418                                                 index, type, type2str(type));
419
420 update:
421         ipdevice->mtu = mtu;
422
423         update_stats(ipdevice, stats);
424
425         if (flags == ipdevice->flags)
426                 return;
427
428         if ((ipdevice->flags & IFF_UP) != (flags & IFF_UP)) {
429                 if (flags & IFF_UP)
430                         up = TRUE;
431                 else
432                         down = TRUE;
433         }
434
435         if ((ipdevice->flags & (IFF_RUNNING | IFF_LOWER_UP)) !=
436                                 (flags & (IFF_RUNNING | IFF_LOWER_UP))) {
437                 if ((flags & (IFF_RUNNING | IFF_LOWER_UP)) ==
438                                         (IFF_RUNNING | IFF_LOWER_UP))
439                         lower_up = TRUE;
440                 else if ((flags & (IFF_RUNNING | IFF_LOWER_UP)) == 0)
441                         lower_down = TRUE;
442         }
443
444         ipdevice->flags = flags;
445
446         str = g_string_new(NULL);
447         if (str == NULL)
448                 return;
449
450         if (flags & IFF_UP)
451                 g_string_append(str, "UP");
452         else
453                 g_string_append(str, "DOWN");
454
455         if (flags & IFF_RUNNING)
456                 g_string_append(str, ",RUNNING");
457
458         if (flags & IFF_LOWER_UP)
459                 g_string_append(str, ",LOWER_UP");
460
461         connman_info("%s {update} flags %u <%s>", ipdevice->ifname,
462                                                         flags, str->str);
463
464         g_string_free(str, TRUE);
465
466         for (list = g_list_first(ipconfig_list); list;
467                                                 list = g_list_next(list)) {
468                 struct connman_ipconfig *ipconfig = list->data;
469
470                 if (index != ipconfig->index)
471                         continue;
472
473                 if (ipconfig->ops == NULL)
474                         continue;
475
476                 if (up == TRUE && ipconfig->ops->up)
477                         ipconfig->ops->up(ipconfig);
478                 if (lower_up == TRUE && ipconfig->ops->lower_up)
479                         ipconfig->ops->lower_up(ipconfig);
480
481                 if (lower_down == TRUE && ipconfig->ops->lower_down)
482                         ipconfig->ops->lower_down(ipconfig);
483                 if (down == TRUE && ipconfig->ops->down)
484                         ipconfig->ops->down(ipconfig);
485         }
486
487         if (lower_up)
488                 __connman_ipconfig_lower_up(ipdevice);
489         if (lower_down)
490                 __connman_ipconfig_lower_down(ipdevice);
491 }
492
493 void __connman_ipconfig_dellink(int index, struct rtnl_link_stats *stats)
494 {
495         struct connman_ipdevice *ipdevice;
496         GList *list;
497
498         DBG("index %d", index);
499
500         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
501         if (ipdevice == NULL)
502                 return;
503
504         update_stats(ipdevice, stats);
505
506         for (list = g_list_first(ipconfig_list); list;
507                                                 list = g_list_next(list)) {
508                 struct connman_ipconfig *ipconfig = list->data;
509
510                 if (index != ipconfig->index)
511                         continue;
512
513                 ipconfig->index = -1;
514
515                 if (ipconfig->ops == NULL)
516                         continue;
517
518                 if (ipconfig->ops->lower_down)
519                         ipconfig->ops->lower_down(ipconfig);
520                 if (ipconfig->ops->down)
521                         ipconfig->ops->down(ipconfig);
522         }
523
524         __connman_ipconfig_lower_down(ipdevice);
525
526         g_hash_table_remove(ipdevice_hash, GINT_TO_POINTER(index));
527 }
528
529 void __connman_ipconfig_newaddr(int index, const char *label,
530                                 unsigned char prefixlen, const char *address)
531 {
532         struct connman_ipdevice *ipdevice;
533         struct connman_ipaddress *ipaddress;
534         GList *list;
535
536         DBG("index %d", index);
537
538         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
539         if (ipdevice == NULL)
540                 return;
541
542         ipaddress = connman_ipaddress_alloc();
543         if (ipaddress == NULL)
544                 return;
545
546         ipaddress->prefixlen = prefixlen;
547         ipaddress->local = g_strdup(address);
548
549         ipdevice->address_list = g_slist_append(ipdevice->address_list,
550                                                                 ipaddress);
551
552         connman_info("%s {add} address %s/%u label %s", ipdevice->ifname,
553                                                 address, prefixlen, label);
554
555         if (ipdevice->config != NULL)
556                 connman_ipaddress_copy(ipdevice->config->system, ipaddress);
557
558         if ((ipdevice->flags & (IFF_RUNNING | IFF_LOWER_UP)) != (IFF_RUNNING | IFF_LOWER_UP))
559                 return;
560
561         if (g_slist_length(ipdevice->address_list) > 1)
562                 return;
563
564         for (list = g_list_first(ipconfig_list); list;
565                                                 list = g_list_next(list)) {
566                 struct connman_ipconfig *ipconfig = list->data;
567
568                 if (index != ipconfig->index)
569                         continue;
570
571                 if (ipconfig->ops == NULL)
572                         continue;
573
574                 if (ipconfig->ops->ip_bound)
575                         ipconfig->ops->ip_bound(ipconfig);
576         }
577 }
578
579 void __connman_ipconfig_deladdr(int index, const char *label,
580                                 unsigned char prefixlen, const char *address)
581 {
582         struct connman_ipdevice *ipdevice;
583         struct connman_ipaddress *ipaddress;
584         GList *list;
585
586         DBG("index %d", index);
587
588         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
589         if (ipdevice == NULL)
590                 return;
591
592         ipaddress = find_ipaddress(ipdevice, prefixlen, address);
593         if (ipaddress == NULL)
594                 return;
595
596         ipdevice->address_list = g_slist_remove(ipdevice->address_list,
597                                                                 ipaddress);
598
599         connman_ipaddress_free(ipaddress);
600
601         connman_info("%s {del} address %s/%u label %s", ipdevice->ifname,
602                                                 address, prefixlen, label);
603
604         if ((ipdevice->flags & (IFF_RUNNING | IFF_LOWER_UP)) != (IFF_RUNNING | IFF_LOWER_UP))
605                 return;
606
607         if (g_slist_length(ipdevice->address_list) > 0)
608                 return;
609
610         for (list = g_list_first(ipconfig_list); list;
611                                                 list = g_list_next(list)) {
612                 struct connman_ipconfig *ipconfig = list->data;
613
614                 if (index != ipconfig->index)
615                         continue;
616
617                 if (ipconfig->ops == NULL)
618                         continue;
619
620                 if (ipconfig->ops->ip_release)
621                         ipconfig->ops->ip_release(ipconfig);
622         }
623 }
624
625 void __connman_ipconfig_newroute(int index, unsigned char scope,
626                                         const char *dst, const char *gateway)
627 {
628         struct connman_ipdevice *ipdevice;
629
630         DBG("index %d", index);
631
632         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
633         if (ipdevice == NULL)
634                 return;
635
636         if (scope == 0 && g_strcmp0(dst, "0.0.0.0") == 0) {
637                 g_free(ipdevice->gateway);
638                 ipdevice->gateway = g_strdup(gateway);
639         }
640
641         connman_info("%s {add} route %s gw %s scope %u <%s>",
642                                         ipdevice->ifname, dst, gateway,
643                                                 scope, scope2str(scope));
644 }
645
646 void __connman_ipconfig_delroute(int index, unsigned char scope,
647                                         const char *dst, const char *gateway)
648 {
649         struct connman_ipdevice *ipdevice;
650
651         DBG("index %d", index);
652
653         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
654         if (ipdevice == NULL)
655                 return;
656
657         if (scope == 0 && g_strcmp0(dst, "0.0.0.0") == 0) {
658                 g_free(ipdevice->gateway);
659                 ipdevice->gateway = NULL;
660         }
661
662         connman_info("%s {del} route %s gw %s scope %u <%s>",
663                                         ipdevice->ifname, dst, gateway,
664                                                 scope, scope2str(scope));
665 }
666
667 void __connman_ipconfig_foreach(void (*function) (int index, void *user_data),
668                                                         void *user_data)
669 {
670         GList *list, *keys;
671
672         keys = g_hash_table_get_keys(ipdevice_hash);
673         if (keys == NULL)
674                 return;
675
676         for (list = g_list_first(keys); list; list = g_list_next(list)) {
677                 int index = GPOINTER_TO_INT(list->data);
678
679                 function(index, user_data);
680         }
681
682         g_list_free(keys);
683 }
684
685 unsigned short __connman_ipconfig_get_type(int index)
686 {
687         struct connman_ipdevice *ipdevice;
688
689         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
690         if (ipdevice == NULL)
691                 return ARPHRD_VOID;
692
693         return ipdevice->type;
694 }
695
696 unsigned int __connman_ipconfig_get_flags(int index)
697 {
698         struct connman_ipdevice *ipdevice;
699
700         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
701         if (ipdevice == NULL)
702                 return 0;
703
704         return ipdevice->flags;
705 }
706
707 const char *__connman_ipconfig_get_gateway(int index)
708 {
709         struct connman_ipdevice *ipdevice;
710
711         ipdevice = g_hash_table_lookup(ipdevice_hash, GINT_TO_POINTER(index));
712         if (ipdevice == NULL)
713                 return NULL;
714
715         return ipdevice->gateway;
716 }
717
718 /**
719  * connman_ipconfig_create:
720  *
721  * Allocate a new ipconfig structure.
722  *
723  * Returns: a newly-allocated #connman_ipconfig structure
724  */
725 struct connman_ipconfig *connman_ipconfig_create(int index)
726 {
727         struct connman_ipconfig *ipconfig;
728
729         DBG("index %d", index);
730
731         ipconfig = g_try_new0(struct connman_ipconfig, 1);
732         if (ipconfig == NULL)
733                 return NULL;
734
735         ipconfig->refcount = 1;
736
737         ipconfig->index = index;
738
739         ipconfig->address = connman_ipaddress_alloc();
740         if (ipconfig->address == NULL) {
741                 g_free(ipconfig);
742                 return NULL;
743         }
744
745         ipconfig->system = connman_ipaddress_alloc();
746
747         DBG("ipconfig %p", ipconfig);
748
749         return ipconfig;
750 }
751
752 /**
753  * connman_ipconfig_clone:
754  *
755  * Clone an ipconfig structure and create new reference.
756  *
757  * Returns: a newly-allocated #connman_ipconfig structure
758  */
759 struct connman_ipconfig *connman_ipconfig_clone(struct connman_ipconfig *ipconfig)
760 {
761         struct connman_ipconfig *ipconfig_clone;
762
763         DBG("ipconfig %p", ipconfig);
764
765         ipconfig_clone = g_try_new0(struct connman_ipconfig, 1);
766         if (ipconfig_clone == NULL)
767                 return NULL;
768
769         ipconfig_clone->refcount = 1;
770
771         ipconfig_clone->origin = connman_ipconfig_ref(ipconfig);
772
773         ipconfig_clone->index = -1;
774
775         return ipconfig_clone;
776 }
777
778 /**
779  * connman_ipconfig_ref:
780  * @ipconfig: ipconfig structure
781  *
782  * Increase reference counter of ipconfig
783  */
784 struct connman_ipconfig *connman_ipconfig_ref(struct connman_ipconfig *ipconfig)
785 {
786         g_atomic_int_inc(&ipconfig->refcount);
787
788         return ipconfig;
789 }
790
791 /**
792  * connman_ipconfig_unref:
793  * @ipconfig: ipconfig structure
794  *
795  * Decrease reference counter of ipconfig
796  */
797 void connman_ipconfig_unref(struct connman_ipconfig *ipconfig)
798 {
799         if (g_atomic_int_dec_and_test(&ipconfig->refcount) == TRUE) {
800                 __connman_ipconfig_disable(ipconfig);
801
802                 connman_ipconfig_set_ops(ipconfig, NULL);
803
804                 if (ipconfig->origin != NULL) {
805                         connman_ipconfig_unref(ipconfig->origin);
806                         ipconfig->origin = NULL;
807                 }
808
809                 connman_ipaddress_free(ipconfig->system);
810                 connman_ipaddress_free(ipconfig->address);
811                 g_free(ipconfig);
812         }
813 }
814
815 /**
816  * connman_ipconfig_get_data:
817  * @ipconfig: ipconfig structure
818  *
819  * Get private data pointer
820  */
821 void *connman_ipconfig_get_data(struct connman_ipconfig *ipconfig)
822 {
823         return ipconfig->ops_data;
824 }
825
826 /**
827  * connman_ipconfig_set_data:
828  * @ipconfig: ipconfig structure
829  * @data: data pointer
830  *
831  * Set private data pointer
832  */
833 void connman_ipconfig_set_data(struct connman_ipconfig *ipconfig, void *data)
834 {
835         ipconfig->ops_data = data;
836 }
837
838 /**
839  * connman_ipconfig_get_index:
840  * @ipconfig: ipconfig structure
841  *
842  * Get interface index
843  */
844 int connman_ipconfig_get_index(struct connman_ipconfig *ipconfig)
845 {
846         if (ipconfig->origin != NULL)
847                 return ipconfig->origin->index;
848
849         return ipconfig->index;
850 }
851
852 /**
853  * connman_ipconfig_get_ifname:
854  * @ipconfig: ipconfig structure
855  *
856  * Get interface name
857  */
858 const char *connman_ipconfig_get_ifname(struct connman_ipconfig *ipconfig)
859 {
860         struct connman_ipdevice *ipdevice;
861
862         if (ipconfig->index < 0)
863                 return NULL;
864
865         ipdevice = g_hash_table_lookup(ipdevice_hash,
866                                         GINT_TO_POINTER(ipconfig->index));
867         if (ipdevice == NULL)
868                 return NULL;
869
870         return ipdevice->ifname;
871 }
872
873 /**
874  * connman_ipconfig_set_ops:
875  * @ipconfig: ipconfig structure
876  * @ops: operation callbacks
877  *
878  * Set the operation callbacks
879  */
880 void connman_ipconfig_set_ops(struct connman_ipconfig *ipconfig,
881                                 const struct connman_ipconfig_ops *ops)
882 {
883         ipconfig->ops = ops;
884 }
885
886 /**
887  * connman_ipconfig_set_method:
888  * @ipconfig: ipconfig structure
889  * @method: configuration method
890  *
891  * Set the configuration method
892  */
893 int connman_ipconfig_set_method(struct connman_ipconfig *ipconfig,
894                                         enum connman_ipconfig_method method)
895 {
896         ipconfig->method = method;
897
898         return 0;
899 }
900
901 enum connman_ipconfig_method __connman_ipconfig_get_method(
902                                 struct connman_ipconfig *ipconfig)
903 {
904         if (ipconfig == NULL)
905                 return CONNMAN_IPCONFIG_METHOD_UNKNOWN;
906
907         return ipconfig->method;
908 }
909
910 /**
911  * connman_ipconfig_bind:
912  * @ipconfig: ipconfig structure
913  * @ipaddress: ipaddress structure
914  *
915  * Bind IP address details to configuration
916  */
917 void connman_ipconfig_bind(struct connman_ipconfig *ipconfig,
918                                         struct connman_ipaddress *ipaddress)
919 {
920         struct connman_ipconfig *origin;
921
922         origin = ipconfig->origin ? ipconfig->origin : ipconfig;
923
924         connman_ipaddress_copy(origin->address, ipaddress);
925
926         connman_inet_set_address(origin->index, origin->address);
927 }
928
929 /* FIXME: The element soulution should be removed in the future */
930 int __connman_ipconfig_set_gateway(struct connman_ipconfig *ipconfig,
931                                                 struct connman_element *parent)
932 {
933         struct connman_element *connection;
934
935         connection = connman_element_create(NULL);
936
937         connection->type  = CONNMAN_ELEMENT_TYPE_CONNECTION;
938         connection->index = ipconfig->index;
939         connection->ipv4.gateway = ipconfig->address->gateway;
940
941         if (connman_element_register(connection, parent) < 0)
942                 connman_element_unref(connection);
943
944         return 0;
945 }
946
947 int __connman_ipconfig_set_address(struct connman_ipconfig *ipconfig)
948 {
949         DBG("");
950
951         switch (ipconfig->method) {
952         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
953         case CONNMAN_IPCONFIG_METHOD_OFF:
954         case CONNMAN_IPCONFIG_METHOD_FIXED:
955         case CONNMAN_IPCONFIG_METHOD_DHCP:
956                 break;
957         case CONNMAN_IPCONFIG_METHOD_MANUAL:
958                 return connman_inet_set_address(ipconfig->index,
959                                                 ipconfig->address);
960         }
961
962         return 0;
963 }
964
965 int __connman_ipconfig_clear_address(struct connman_ipconfig *ipconfig)
966 {
967         DBG("");
968
969         if (ipconfig == NULL)
970                 return 0;
971
972         DBG("method %d", ipconfig->method);
973
974         switch (ipconfig->method) {
975         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
976         case CONNMAN_IPCONFIG_METHOD_OFF:
977         case CONNMAN_IPCONFIG_METHOD_FIXED:
978         case CONNMAN_IPCONFIG_METHOD_DHCP:
979                 break;
980         case CONNMAN_IPCONFIG_METHOD_MANUAL:
981                 return connman_inet_clear_address(ipconfig->index);
982         }
983
984         return 0;
985
986 }
987
988 int __connman_ipconfig_enable(struct connman_ipconfig *ipconfig)
989 {
990         struct connman_ipdevice *ipdevice;
991
992         DBG("ipconfig %p", ipconfig);
993
994         if (ipconfig == NULL || ipconfig->index < 0)
995                 return -ENODEV;
996
997         ipdevice = g_hash_table_lookup(ipdevice_hash,
998                                         GINT_TO_POINTER(ipconfig->index));
999         if (ipdevice == NULL)
1000                 return -ENXIO;
1001
1002         if (ipdevice->config == ipconfig)
1003                 return -EALREADY;
1004
1005         if (ipdevice->config != NULL) {
1006                 ipconfig_list = g_list_remove(ipconfig_list, ipconfig);
1007
1008                 connman_ipaddress_clear(ipdevice->config->system);
1009
1010                 connman_ipconfig_unref(ipdevice->config);
1011         }
1012
1013         ipdevice->config = connman_ipconfig_ref(ipconfig);
1014
1015         ipconfig_list = g_list_append(ipconfig_list, ipconfig);
1016
1017         return 0;
1018 }
1019
1020 int __connman_ipconfig_disable(struct connman_ipconfig *ipconfig)
1021 {
1022         struct connman_ipdevice *ipdevice;
1023
1024         DBG("ipconfig %p", ipconfig);
1025
1026         if (ipconfig == NULL || ipconfig->index < 0)
1027                 return -ENODEV;
1028
1029         ipdevice = g_hash_table_lookup(ipdevice_hash,
1030                                         GINT_TO_POINTER(ipconfig->index));
1031         if (ipdevice == NULL)
1032                 return -ENXIO;
1033
1034         if (ipdevice->config == NULL || ipdevice->config != ipconfig)
1035                 return -EINVAL;
1036
1037         ipconfig_list = g_list_remove(ipconfig_list, ipconfig);
1038
1039         connman_ipaddress_clear(ipdevice->config->system);
1040
1041         connman_ipconfig_unref(ipdevice->config);
1042         ipdevice->config = NULL;
1043
1044         return 0;
1045 }
1046
1047 const char *__connman_ipconfig_method2string(enum connman_ipconfig_method method)
1048 {
1049         switch (method) {
1050         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
1051                 break;
1052         case CONNMAN_IPCONFIG_METHOD_OFF:
1053                 return "off";
1054         case CONNMAN_IPCONFIG_METHOD_FIXED:
1055                 return "fixed";
1056         case CONNMAN_IPCONFIG_METHOD_MANUAL:
1057                 return "manual";
1058         case CONNMAN_IPCONFIG_METHOD_DHCP:
1059                 return "dhcp";
1060         }
1061
1062         return NULL;
1063 }
1064
1065 enum connman_ipconfig_method __connman_ipconfig_string2method(const char *method)
1066 {
1067         if (g_strcmp0(method, "off") == 0)
1068                 return CONNMAN_IPCONFIG_METHOD_OFF;
1069         else if (g_strcmp0(method, "fixed") == 0)
1070                 return CONNMAN_IPCONFIG_METHOD_FIXED;
1071         else if (g_strcmp0(method, "manual") == 0)
1072                 return CONNMAN_IPCONFIG_METHOD_MANUAL;
1073         else if (g_strcmp0(method, "dhcp") == 0)
1074                 return CONNMAN_IPCONFIG_METHOD_DHCP;
1075         else
1076                 return CONNMAN_IPCONFIG_METHOD_UNKNOWN;
1077 }
1078
1079 void __connman_ipconfig_append_ipv4(struct connman_ipconfig *ipconfig,
1080                                                         DBusMessageIter *iter)
1081 {
1082         const char *str;
1083
1084         str = __connman_ipconfig_method2string(ipconfig->method);
1085         if (str == NULL)
1086                 return;
1087
1088         connman_dbus_dict_append_basic(iter, "Method", DBUS_TYPE_STRING, &str);
1089
1090         if (ipconfig->system == NULL)
1091                 return;
1092
1093         if (ipconfig->system->local != NULL) {
1094                 in_addr_t addr;
1095                 struct in_addr netmask;
1096                 char *mask;
1097
1098                 connman_dbus_dict_append_basic(iter, "Address",
1099                                 DBUS_TYPE_STRING, &ipconfig->system->local);
1100
1101                 addr = 0xffffffff << (32 - ipconfig->system->prefixlen);
1102                 netmask.s_addr = htonl(addr);
1103                 mask = inet_ntoa(netmask);
1104                 connman_dbus_dict_append_basic(iter, "Netmask",
1105                                                 DBUS_TYPE_STRING, &mask);
1106         }
1107 }
1108
1109 void __connman_ipconfig_append_ipv4config(struct connman_ipconfig *ipconfig,
1110                                                         DBusMessageIter *iter)
1111 {
1112         const char *str;
1113
1114         str = __connman_ipconfig_method2string(ipconfig->method);
1115         if (str == NULL)
1116                 return;
1117
1118         connman_dbus_dict_append_basic(iter, "Method", DBUS_TYPE_STRING, &str);
1119
1120         switch (ipconfig->method) {
1121         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
1122         case CONNMAN_IPCONFIG_METHOD_OFF:
1123         case CONNMAN_IPCONFIG_METHOD_FIXED:
1124         case CONNMAN_IPCONFIG_METHOD_DHCP:
1125                 return;
1126         case CONNMAN_IPCONFIG_METHOD_MANUAL:
1127                 break;
1128         }
1129
1130         if (ipconfig->address == NULL)
1131                 return;
1132
1133         if (ipconfig->address->local != NULL) {
1134                 in_addr_t addr;
1135                 struct in_addr netmask;
1136                 char *mask;
1137
1138                 connman_dbus_dict_append_basic(iter, "Address",
1139                                 DBUS_TYPE_STRING, &ipconfig->address->local);
1140
1141                 addr = 0xffffffff << (32 - ipconfig->address->prefixlen);
1142                 netmask.s_addr = htonl(addr);
1143                 mask = inet_ntoa(netmask);
1144                 connman_dbus_dict_append_basic(iter, "Netmask",
1145                                                 DBUS_TYPE_STRING, &mask);
1146         }
1147 }
1148
1149 int __connman_ipconfig_set_ipv4config(struct connman_ipconfig *ipconfig,
1150                                                         DBusMessageIter *array)
1151 {
1152         enum connman_ipconfig_method method = CONNMAN_IPCONFIG_METHOD_UNKNOWN;
1153         const char *address = NULL, *netmask = NULL, *gateway = NULL;
1154         DBusMessageIter dict;
1155
1156         DBG("ipconfig %p", ipconfig);
1157
1158         if (dbus_message_iter_get_arg_type(array) != DBUS_TYPE_ARRAY)
1159                 return -EINVAL;
1160
1161         dbus_message_iter_recurse(array, &dict);
1162
1163         while (dbus_message_iter_get_arg_type(&dict) == DBUS_TYPE_DICT_ENTRY) {
1164                 DBusMessageIter entry;
1165                 const char *key;
1166                 int type;
1167
1168                 dbus_message_iter_recurse(&dict, &entry);
1169
1170                 if (dbus_message_iter_get_arg_type(&entry) != DBUS_TYPE_STRING)
1171                         return -EINVAL;
1172
1173                 dbus_message_iter_get_basic(&entry, &key);
1174                 dbus_message_iter_next(&entry);
1175
1176                 type = dbus_message_iter_get_arg_type(&entry);
1177
1178                 if (g_str_equal(key, "Method") == TRUE) {
1179                         const char *str;
1180
1181                         if (type != DBUS_TYPE_STRING)
1182                                 return -EINVAL;
1183
1184                         dbus_message_iter_get_basic(&entry, &str);
1185                         method = __connman_ipconfig_string2method(str);
1186                 } else if (g_str_equal(key, "Address") == TRUE) {
1187                         if (type != DBUS_TYPE_STRING)
1188                                 return -EINVAL;
1189
1190                         dbus_message_iter_get_basic(&entry, &address);
1191                 } else if (g_str_equal(key, "Netmask") == TRUE) {
1192                         if (type != DBUS_TYPE_STRING)
1193                                 return -EINVAL;
1194
1195                         dbus_message_iter_get_basic(&entry, &netmask);
1196                 } else if (g_str_equal(key, "Gateway") == TRUE) {
1197                         if (type != DBUS_TYPE_STRING)
1198                                 return -EINVAL;
1199
1200                         dbus_message_iter_get_basic(&entry, &gateway);
1201                 }
1202                 dbus_message_iter_next(&dict);
1203         }
1204
1205         DBG("method %d address %s netmask %s gateway %s",
1206                                 method, address, netmask, gateway);
1207
1208         switch (method) {
1209         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
1210         case CONNMAN_IPCONFIG_METHOD_OFF:
1211         case CONNMAN_IPCONFIG_METHOD_FIXED:
1212                 return -EINVAL;
1213
1214         case CONNMAN_IPCONFIG_METHOD_MANUAL:
1215                 if (address == NULL)
1216                         return -EINVAL;
1217
1218                 ipconfig->method = method;
1219                 connman_ipaddress_set(ipconfig->address,
1220                                 address, netmask, gateway);
1221                 break;
1222
1223         case CONNMAN_IPCONFIG_METHOD_DHCP:
1224                 if (ipconfig->method == method)
1225                         return 0;
1226
1227                 ipconfig->method = method;
1228                 break;
1229         }
1230
1231         return 0;
1232 }
1233
1234 void __connman_ipconfig_append_proxy(struct connman_ipconfig *ipconfig,
1235                                                         DBusMessageIter *iter)
1236 {
1237         const char *method = "direct";
1238
1239         connman_dbus_dict_append_basic(iter, "Method",
1240                                                 DBUS_TYPE_STRING, &method);
1241 }
1242
1243 void __connman_ipconfig_append_ethernet(struct connman_ipconfig *ipconfig,
1244                                                         DBusMessageIter *iter)
1245 {
1246         struct connman_ipdevice *ipdevice;
1247         const char *method = "auto";
1248
1249         connman_dbus_dict_append_basic(iter, "Method",
1250                                                 DBUS_TYPE_STRING, &method);
1251
1252         ipdevice = g_hash_table_lookup(ipdevice_hash,
1253                                         GINT_TO_POINTER(ipconfig->index));
1254         if (ipdevice == NULL)
1255                 return;
1256
1257         if (ipdevice->ifname != NULL)
1258                 connman_dbus_dict_append_basic(iter, "Interface",
1259                                         DBUS_TYPE_STRING, &ipdevice->ifname);
1260
1261         if (ipdevice->address != NULL)
1262                 connman_dbus_dict_append_basic(iter, "Address",
1263                                         DBUS_TYPE_STRING, &ipdevice->address);
1264
1265         if (ipdevice->mtu > 0)
1266                 connman_dbus_dict_append_basic(iter, "MTU",
1267                                         DBUS_TYPE_UINT16, &ipdevice->mtu);
1268 }
1269
1270 int __connman_ipconfig_load(struct connman_ipconfig *ipconfig,
1271                 GKeyFile *keyfile, const char *identifier, const char *prefix)
1272 {
1273         const char *method;
1274         char *key;
1275
1276         DBG("ipconfig %p identifier %s", ipconfig, identifier);
1277
1278         key = g_strdup_printf("%smethod", prefix);
1279         method = g_key_file_get_string(keyfile, identifier, key, NULL);
1280         if (method == NULL)
1281                 ipconfig->method = CONNMAN_IPCONFIG_METHOD_DHCP;
1282         else
1283                 ipconfig->method = __connman_ipconfig_string2method(method);
1284         g_free(key);
1285
1286         key = g_strdup_printf("%snetmask_prefixlen", prefix);
1287         ipconfig->address->prefixlen = g_key_file_get_integer(
1288                                 keyfile, identifier, key, NULL);
1289         g_free(key);
1290
1291         key = g_strdup_printf("%slocal_address", prefix);
1292         ipconfig->address->local = g_key_file_get_string(
1293                         keyfile, identifier, key, NULL);
1294         g_free(key);
1295
1296         key = g_strdup_printf("%speer_address", prefix);
1297         ipconfig->address->peer = g_key_file_get_string(
1298                                 keyfile, identifier, key, NULL);
1299         g_free(key);
1300
1301         key = g_strdup_printf("%sbroadcast_address", prefix);
1302         ipconfig->address->broadcast = g_key_file_get_string(
1303                                 keyfile, identifier, key, NULL);
1304         g_free(key);
1305
1306         key = g_strdup_printf("%sgateway", prefix);
1307         ipconfig->address->gateway = g_key_file_get_string(
1308                                 keyfile, identifier, key, NULL);
1309         g_free(key);
1310
1311         return 0;
1312 }
1313
1314 int __connman_ipconfig_save(struct connman_ipconfig *ipconfig,
1315                 GKeyFile *keyfile, const char *identifier, const char *prefix)
1316 {
1317         const char *method;
1318         char *key;
1319
1320         DBG("ipconfig %p identifier %s", ipconfig, identifier);
1321
1322         method = __connman_ipconfig_method2string(ipconfig->method);
1323
1324         key = g_strdup_printf("%smethod", prefix);
1325         g_key_file_set_string(keyfile, identifier, key, method);
1326         g_free(key);
1327
1328         key = g_strdup_printf("%snetmask_prefixlen", prefix);
1329         g_key_file_set_integer(keyfile, identifier,
1330                         key, ipconfig->address->prefixlen);
1331         g_free(key);
1332
1333         key = g_strdup_printf("%slocal_address", prefix);
1334         if (ipconfig->address->local != NULL)
1335                 g_key_file_set_string(keyfile, identifier,
1336                                 key, ipconfig->address->local);
1337         g_free(key);
1338
1339         key = g_strdup_printf("%speer_address", prefix);
1340         if (ipconfig->address->peer != NULL)
1341                 g_key_file_set_string(keyfile, identifier,
1342                                 key, ipconfig->address->peer);
1343         g_free(key);
1344
1345         key = g_strdup_printf("%sbroadcast_address", prefix);
1346         if (ipconfig->address->broadcast != NULL)
1347                 g_key_file_set_string(keyfile, identifier,
1348                         key, ipconfig->address->broadcast);
1349         g_free(key);
1350
1351         key = g_strdup_printf("%sgateway", prefix);
1352         if (ipconfig->address->gateway != NULL)
1353                 g_key_file_set_string(keyfile, identifier,
1354                         key, ipconfig->address->gateway);
1355         g_free(key);
1356
1357         return 0;
1358 }
1359
1360 int __connman_ipconfig_init(void)
1361 {
1362         DBG("");
1363
1364         ipdevice_hash = g_hash_table_new_full(g_direct_hash, g_direct_equal,
1365                                                         NULL, free_ipdevice);
1366
1367         return 0;
1368 }
1369
1370 void __connman_ipconfig_cleanup(void)
1371 {
1372         DBG("");
1373
1374         g_hash_table_destroy(ipdevice_hash);
1375         ipdevice_hash = NULL;
1376 }