Export Gateway from service properties IPv4
[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 void __connman_ipconfig_set_index(struct connman_ipconfig *ipconfig, int index)
719 {
720         ipconfig->index = index;
721 }
722
723 /**
724  * connman_ipconfig_create:
725  *
726  * Allocate a new ipconfig structure.
727  *
728  * Returns: a newly-allocated #connman_ipconfig structure
729  */
730 struct connman_ipconfig *connman_ipconfig_create(int index)
731 {
732         struct connman_ipconfig *ipconfig;
733
734         DBG("index %d", index);
735
736         ipconfig = g_try_new0(struct connman_ipconfig, 1);
737         if (ipconfig == NULL)
738                 return NULL;
739
740         ipconfig->refcount = 1;
741
742         ipconfig->index = index;
743
744         ipconfig->address = connman_ipaddress_alloc();
745         if (ipconfig->address == NULL) {
746                 g_free(ipconfig);
747                 return NULL;
748         }
749
750         ipconfig->system = connman_ipaddress_alloc();
751
752         DBG("ipconfig %p", ipconfig);
753
754         return ipconfig;
755 }
756
757 /**
758  * connman_ipconfig_clone:
759  *
760  * Clone an ipconfig structure and create new reference.
761  *
762  * Returns: a newly-allocated #connman_ipconfig structure
763  */
764 struct connman_ipconfig *connman_ipconfig_clone(struct connman_ipconfig *ipconfig)
765 {
766         struct connman_ipconfig *ipconfig_clone;
767
768         DBG("ipconfig %p", ipconfig);
769
770         ipconfig_clone = g_try_new0(struct connman_ipconfig, 1);
771         if (ipconfig_clone == NULL)
772                 return NULL;
773
774         ipconfig_clone->refcount = 1;
775
776         ipconfig_clone->origin = connman_ipconfig_ref(ipconfig);
777
778         ipconfig_clone->index = -1;
779
780         return ipconfig_clone;
781 }
782
783 /**
784  * connman_ipconfig_ref:
785  * @ipconfig: ipconfig structure
786  *
787  * Increase reference counter of ipconfig
788  */
789 struct connman_ipconfig *connman_ipconfig_ref(struct connman_ipconfig *ipconfig)
790 {
791         g_atomic_int_inc(&ipconfig->refcount);
792
793         return ipconfig;
794 }
795
796 /**
797  * connman_ipconfig_unref:
798  * @ipconfig: ipconfig structure
799  *
800  * Decrease reference counter of ipconfig
801  */
802 void connman_ipconfig_unref(struct connman_ipconfig *ipconfig)
803 {
804         if (g_atomic_int_dec_and_test(&ipconfig->refcount) == TRUE) {
805                 __connman_ipconfig_disable(ipconfig);
806
807                 connman_ipconfig_set_ops(ipconfig, NULL);
808
809                 if (ipconfig->origin != NULL) {
810                         connman_ipconfig_unref(ipconfig->origin);
811                         ipconfig->origin = NULL;
812                 }
813
814                 connman_ipaddress_free(ipconfig->system);
815                 connman_ipaddress_free(ipconfig->address);
816                 g_free(ipconfig);
817         }
818 }
819
820 /**
821  * connman_ipconfig_get_data:
822  * @ipconfig: ipconfig structure
823  *
824  * Get private data pointer
825  */
826 void *connman_ipconfig_get_data(struct connman_ipconfig *ipconfig)
827 {
828         return ipconfig->ops_data;
829 }
830
831 /**
832  * connman_ipconfig_set_data:
833  * @ipconfig: ipconfig structure
834  * @data: data pointer
835  *
836  * Set private data pointer
837  */
838 void connman_ipconfig_set_data(struct connman_ipconfig *ipconfig, void *data)
839 {
840         ipconfig->ops_data = data;
841 }
842
843 /**
844  * connman_ipconfig_get_index:
845  * @ipconfig: ipconfig structure
846  *
847  * Get interface index
848  */
849 int connman_ipconfig_get_index(struct connman_ipconfig *ipconfig)
850 {
851         if (ipconfig->origin != NULL)
852                 return ipconfig->origin->index;
853
854         return ipconfig->index;
855 }
856
857 /**
858  * connman_ipconfig_get_ifname:
859  * @ipconfig: ipconfig structure
860  *
861  * Get interface name
862  */
863 const char *connman_ipconfig_get_ifname(struct connman_ipconfig *ipconfig)
864 {
865         struct connman_ipdevice *ipdevice;
866
867         if (ipconfig->index < 0)
868                 return NULL;
869
870         ipdevice = g_hash_table_lookup(ipdevice_hash,
871                                         GINT_TO_POINTER(ipconfig->index));
872         if (ipdevice == NULL)
873                 return NULL;
874
875         return ipdevice->ifname;
876 }
877
878 /**
879  * connman_ipconfig_set_ops:
880  * @ipconfig: ipconfig structure
881  * @ops: operation callbacks
882  *
883  * Set the operation callbacks
884  */
885 void connman_ipconfig_set_ops(struct connman_ipconfig *ipconfig,
886                                 const struct connman_ipconfig_ops *ops)
887 {
888         ipconfig->ops = ops;
889 }
890
891 /**
892  * connman_ipconfig_set_method:
893  * @ipconfig: ipconfig structure
894  * @method: configuration method
895  *
896  * Set the configuration method
897  */
898 int connman_ipconfig_set_method(struct connman_ipconfig *ipconfig,
899                                         enum connman_ipconfig_method method)
900 {
901         ipconfig->method = method;
902
903         return 0;
904 }
905
906 enum connman_ipconfig_method __connman_ipconfig_get_method(
907                                 struct connman_ipconfig *ipconfig)
908 {
909         if (ipconfig == NULL)
910                 return CONNMAN_IPCONFIG_METHOD_UNKNOWN;
911
912         return ipconfig->method;
913 }
914
915 /**
916  * connman_ipconfig_bind:
917  * @ipconfig: ipconfig structure
918  * @ipaddress: ipaddress structure
919  *
920  * Bind IP address details to configuration
921  */
922 void connman_ipconfig_bind(struct connman_ipconfig *ipconfig,
923                                         struct connman_ipaddress *ipaddress)
924 {
925         struct connman_ipconfig *origin;
926
927         origin = ipconfig->origin ? ipconfig->origin : ipconfig;
928
929         connman_ipaddress_copy(origin->address, ipaddress);
930
931         connman_inet_set_address(origin->index, origin->address);
932 }
933
934 /* FIXME: The element soulution should be removed in the future */
935 int __connman_ipconfig_set_gateway(struct connman_ipconfig *ipconfig,
936                                                 struct connman_element *parent)
937 {
938         struct connman_element *connection;
939
940         connection = connman_element_create(NULL);
941
942         connection->type  = CONNMAN_ELEMENT_TYPE_CONNECTION;
943         connection->index = ipconfig->index;
944         connection->ipv4.gateway = ipconfig->address->gateway;
945
946         if (connman_element_register(connection, parent) < 0)
947                 connman_element_unref(connection);
948
949         return 0;
950 }
951
952 int __connman_ipconfig_set_address(struct connman_ipconfig *ipconfig)
953 {
954         DBG("");
955
956         switch (ipconfig->method) {
957         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
958         case CONNMAN_IPCONFIG_METHOD_OFF:
959         case CONNMAN_IPCONFIG_METHOD_FIXED:
960         case CONNMAN_IPCONFIG_METHOD_DHCP:
961                 break;
962         case CONNMAN_IPCONFIG_METHOD_MANUAL:
963                 return connman_inet_set_address(ipconfig->index,
964                                                 ipconfig->address);
965         }
966
967         return 0;
968 }
969
970 int __connman_ipconfig_clear_address(struct connman_ipconfig *ipconfig)
971 {
972         DBG("");
973
974         if (ipconfig == NULL)
975                 return 0;
976
977         DBG("method %d", ipconfig->method);
978
979         switch (ipconfig->method) {
980         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
981         case CONNMAN_IPCONFIG_METHOD_OFF:
982         case CONNMAN_IPCONFIG_METHOD_FIXED:
983         case CONNMAN_IPCONFIG_METHOD_DHCP:
984                 break;
985         case CONNMAN_IPCONFIG_METHOD_MANUAL:
986                 return connman_inet_clear_address(ipconfig->index);
987         }
988
989         return 0;
990
991 }
992
993 int __connman_ipconfig_enable(struct connman_ipconfig *ipconfig)
994 {
995         struct connman_ipdevice *ipdevice;
996
997         DBG("ipconfig %p", ipconfig);
998
999         if (ipconfig == NULL || ipconfig->index < 0)
1000                 return -ENODEV;
1001
1002         ipdevice = g_hash_table_lookup(ipdevice_hash,
1003                                         GINT_TO_POINTER(ipconfig->index));
1004         if (ipdevice == NULL)
1005                 return -ENXIO;
1006
1007         if (ipdevice->config == ipconfig)
1008                 return -EALREADY;
1009
1010         if (ipdevice->config != NULL) {
1011                 ipconfig_list = g_list_remove(ipconfig_list, ipconfig);
1012
1013                 connman_ipaddress_clear(ipdevice->config->system);
1014
1015                 connman_ipconfig_unref(ipdevice->config);
1016         }
1017
1018         ipdevice->config = connman_ipconfig_ref(ipconfig);
1019
1020         ipconfig_list = g_list_append(ipconfig_list, ipconfig);
1021
1022         return 0;
1023 }
1024
1025 int __connman_ipconfig_disable(struct connman_ipconfig *ipconfig)
1026 {
1027         struct connman_ipdevice *ipdevice;
1028
1029         DBG("ipconfig %p", ipconfig);
1030
1031         if (ipconfig == NULL || ipconfig->index < 0)
1032                 return -ENODEV;
1033
1034         ipdevice = g_hash_table_lookup(ipdevice_hash,
1035                                         GINT_TO_POINTER(ipconfig->index));
1036         if (ipdevice == NULL)
1037                 return -ENXIO;
1038
1039         if (ipdevice->config == NULL || ipdevice->config != ipconfig)
1040                 return -EINVAL;
1041
1042         ipconfig_list = g_list_remove(ipconfig_list, ipconfig);
1043
1044         connman_ipaddress_clear(ipdevice->config->system);
1045
1046         connman_ipconfig_unref(ipdevice->config);
1047         ipdevice->config = NULL;
1048
1049         return 0;
1050 }
1051
1052 const char *__connman_ipconfig_method2string(enum connman_ipconfig_method method)
1053 {
1054         switch (method) {
1055         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
1056                 break;
1057         case CONNMAN_IPCONFIG_METHOD_OFF:
1058                 return "off";
1059         case CONNMAN_IPCONFIG_METHOD_FIXED:
1060                 return "fixed";
1061         case CONNMAN_IPCONFIG_METHOD_MANUAL:
1062                 return "manual";
1063         case CONNMAN_IPCONFIG_METHOD_DHCP:
1064                 return "dhcp";
1065         }
1066
1067         return NULL;
1068 }
1069
1070 enum connman_ipconfig_method __connman_ipconfig_string2method(const char *method)
1071 {
1072         if (g_strcmp0(method, "off") == 0)
1073                 return CONNMAN_IPCONFIG_METHOD_OFF;
1074         else if (g_strcmp0(method, "fixed") == 0)
1075                 return CONNMAN_IPCONFIG_METHOD_FIXED;
1076         else if (g_strcmp0(method, "manual") == 0)
1077                 return CONNMAN_IPCONFIG_METHOD_MANUAL;
1078         else if (g_strcmp0(method, "dhcp") == 0)
1079                 return CONNMAN_IPCONFIG_METHOD_DHCP;
1080         else
1081                 return CONNMAN_IPCONFIG_METHOD_UNKNOWN;
1082 }
1083
1084 void __connman_ipconfig_append_ipv4(struct connman_ipconfig *ipconfig,
1085                                                         DBusMessageIter *iter)
1086 {
1087         const char *str;
1088
1089         str = __connman_ipconfig_method2string(ipconfig->method);
1090         if (str == NULL)
1091                 return;
1092
1093         connman_dbus_dict_append_basic(iter, "Method", DBUS_TYPE_STRING, &str);
1094
1095         if (ipconfig->system == NULL)
1096                 return;
1097
1098         if (ipconfig->system->local != NULL) {
1099                 in_addr_t addr;
1100                 struct in_addr netmask;
1101                 char *mask;
1102
1103                 connman_dbus_dict_append_basic(iter, "Address",
1104                                 DBUS_TYPE_STRING, &ipconfig->system->local);
1105
1106                 addr = 0xffffffff << (32 - ipconfig->system->prefixlen);
1107                 netmask.s_addr = htonl(addr);
1108                 mask = inet_ntoa(netmask);
1109                 connman_dbus_dict_append_basic(iter, "Netmask",
1110                                                 DBUS_TYPE_STRING, &mask);
1111         }
1112 }
1113
1114 void __connman_ipconfig_append_ipv4config(struct connman_ipconfig *ipconfig,
1115                                                         DBusMessageIter *iter)
1116 {
1117         const char *str;
1118
1119         str = __connman_ipconfig_method2string(ipconfig->method);
1120         if (str == NULL)
1121                 return;
1122
1123         connman_dbus_dict_append_basic(iter, "Method", DBUS_TYPE_STRING, &str);
1124
1125         switch (ipconfig->method) {
1126         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
1127         case CONNMAN_IPCONFIG_METHOD_OFF:
1128         case CONNMAN_IPCONFIG_METHOD_FIXED:
1129         case CONNMAN_IPCONFIG_METHOD_DHCP:
1130                 return;
1131         case CONNMAN_IPCONFIG_METHOD_MANUAL:
1132                 break;
1133         }
1134
1135         if (ipconfig->address == NULL)
1136                 return;
1137
1138         if (ipconfig->address->local != NULL) {
1139                 in_addr_t addr;
1140                 struct in_addr netmask;
1141                 char *mask;
1142
1143                 connman_dbus_dict_append_basic(iter, "Address",
1144                                 DBUS_TYPE_STRING, &ipconfig->address->local);
1145
1146                 addr = 0xffffffff << (32 - ipconfig->address->prefixlen);
1147                 netmask.s_addr = htonl(addr);
1148                 mask = inet_ntoa(netmask);
1149                 connman_dbus_dict_append_basic(iter, "Netmask",
1150                                                 DBUS_TYPE_STRING, &mask);
1151
1152                 connman_dbus_dict_append_basic(iter, "Gateway",
1153                                 DBUS_TYPE_STRING, &ipconfig->address->gateway);
1154         }
1155 }
1156
1157 int __connman_ipconfig_set_ipv4config(struct connman_ipconfig *ipconfig,
1158                                                         DBusMessageIter *array)
1159 {
1160         enum connman_ipconfig_method method = CONNMAN_IPCONFIG_METHOD_UNKNOWN;
1161         const char *address = NULL, *netmask = NULL, *gateway = NULL;
1162         DBusMessageIter dict;
1163
1164         DBG("ipconfig %p", ipconfig);
1165
1166         if (dbus_message_iter_get_arg_type(array) != DBUS_TYPE_ARRAY)
1167                 return -EINVAL;
1168
1169         dbus_message_iter_recurse(array, &dict);
1170
1171         while (dbus_message_iter_get_arg_type(&dict) == DBUS_TYPE_DICT_ENTRY) {
1172                 DBusMessageIter entry;
1173                 const char *key;
1174                 int type;
1175
1176                 dbus_message_iter_recurse(&dict, &entry);
1177
1178                 if (dbus_message_iter_get_arg_type(&entry) != DBUS_TYPE_STRING)
1179                         return -EINVAL;
1180
1181                 dbus_message_iter_get_basic(&entry, &key);
1182                 dbus_message_iter_next(&entry);
1183
1184                 type = dbus_message_iter_get_arg_type(&entry);
1185
1186                 if (g_str_equal(key, "Method") == TRUE) {
1187                         const char *str;
1188
1189                         if (type != DBUS_TYPE_STRING)
1190                                 return -EINVAL;
1191
1192                         dbus_message_iter_get_basic(&entry, &str);
1193                         method = __connman_ipconfig_string2method(str);
1194                 } else if (g_str_equal(key, "Address") == TRUE) {
1195                         if (type != DBUS_TYPE_STRING)
1196                                 return -EINVAL;
1197
1198                         dbus_message_iter_get_basic(&entry, &address);
1199                 } else if (g_str_equal(key, "Netmask") == TRUE) {
1200                         if (type != DBUS_TYPE_STRING)
1201                                 return -EINVAL;
1202
1203                         dbus_message_iter_get_basic(&entry, &netmask);
1204                 } else if (g_str_equal(key, "Gateway") == TRUE) {
1205                         if (type != DBUS_TYPE_STRING)
1206                                 return -EINVAL;
1207
1208                         dbus_message_iter_get_basic(&entry, &gateway);
1209                 }
1210                 dbus_message_iter_next(&dict);
1211         }
1212
1213         DBG("method %d address %s netmask %s gateway %s",
1214                                 method, address, netmask, gateway);
1215
1216         switch (method) {
1217         case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
1218         case CONNMAN_IPCONFIG_METHOD_OFF:
1219         case CONNMAN_IPCONFIG_METHOD_FIXED:
1220                 return -EINVAL;
1221
1222         case CONNMAN_IPCONFIG_METHOD_MANUAL:
1223                 if (address == NULL)
1224                         return -EINVAL;
1225
1226                 ipconfig->method = method;
1227                 connman_ipaddress_set(ipconfig->address,
1228                                 address, netmask, gateway);
1229                 break;
1230
1231         case CONNMAN_IPCONFIG_METHOD_DHCP:
1232                 if (ipconfig->method == method)
1233                         return 0;
1234
1235                 ipconfig->method = method;
1236                 break;
1237         }
1238
1239         return 0;
1240 }
1241
1242 void __connman_ipconfig_append_proxy(struct connman_ipconfig *ipconfig,
1243                                                         DBusMessageIter *iter)
1244 {
1245         const char *method = "direct";
1246
1247         connman_dbus_dict_append_basic(iter, "Method",
1248                                                 DBUS_TYPE_STRING, &method);
1249 }
1250
1251 void __connman_ipconfig_append_ethernet(struct connman_ipconfig *ipconfig,
1252                                                         DBusMessageIter *iter)
1253 {
1254         struct connman_ipdevice *ipdevice;
1255         const char *method = "auto";
1256
1257         connman_dbus_dict_append_basic(iter, "Method",
1258                                                 DBUS_TYPE_STRING, &method);
1259
1260         ipdevice = g_hash_table_lookup(ipdevice_hash,
1261                                         GINT_TO_POINTER(ipconfig->index));
1262         if (ipdevice == NULL)
1263                 return;
1264
1265         if (ipdevice->ifname != NULL)
1266                 connman_dbus_dict_append_basic(iter, "Interface",
1267                                         DBUS_TYPE_STRING, &ipdevice->ifname);
1268
1269         if (ipdevice->address != NULL)
1270                 connman_dbus_dict_append_basic(iter, "Address",
1271                                         DBUS_TYPE_STRING, &ipdevice->address);
1272
1273         if (ipdevice->mtu > 0)
1274                 connman_dbus_dict_append_basic(iter, "MTU",
1275                                         DBUS_TYPE_UINT16, &ipdevice->mtu);
1276 }
1277
1278 int __connman_ipconfig_load(struct connman_ipconfig *ipconfig,
1279                 GKeyFile *keyfile, const char *identifier, const char *prefix)
1280 {
1281         const char *method;
1282         char *key;
1283
1284         DBG("ipconfig %p identifier %s", ipconfig, identifier);
1285
1286         key = g_strdup_printf("%smethod", prefix);
1287         method = g_key_file_get_string(keyfile, identifier, key, NULL);
1288         if (method == NULL)
1289                 ipconfig->method = CONNMAN_IPCONFIG_METHOD_DHCP;
1290         else
1291                 ipconfig->method = __connman_ipconfig_string2method(method);
1292         g_free(key);
1293
1294         key = g_strdup_printf("%snetmask_prefixlen", prefix);
1295         ipconfig->address->prefixlen = g_key_file_get_integer(
1296                                 keyfile, identifier, key, NULL);
1297         g_free(key);
1298
1299         key = g_strdup_printf("%slocal_address", prefix);
1300         ipconfig->address->local = g_key_file_get_string(
1301                         keyfile, identifier, key, NULL);
1302         g_free(key);
1303
1304         key = g_strdup_printf("%speer_address", prefix);
1305         ipconfig->address->peer = g_key_file_get_string(
1306                                 keyfile, identifier, key, NULL);
1307         g_free(key);
1308
1309         key = g_strdup_printf("%sbroadcast_address", prefix);
1310         ipconfig->address->broadcast = g_key_file_get_string(
1311                                 keyfile, identifier, key, NULL);
1312         g_free(key);
1313
1314         key = g_strdup_printf("%sgateway", prefix);
1315         ipconfig->address->gateway = g_key_file_get_string(
1316                                 keyfile, identifier, key, NULL);
1317         g_free(key);
1318
1319         return 0;
1320 }
1321
1322 int __connman_ipconfig_save(struct connman_ipconfig *ipconfig,
1323                 GKeyFile *keyfile, const char *identifier, const char *prefix)
1324 {
1325         const char *method;
1326         char *key;
1327
1328         DBG("ipconfig %p identifier %s", ipconfig, identifier);
1329
1330         method = __connman_ipconfig_method2string(ipconfig->method);
1331
1332         key = g_strdup_printf("%smethod", prefix);
1333         g_key_file_set_string(keyfile, identifier, key, method);
1334         g_free(key);
1335
1336         key = g_strdup_printf("%snetmask_prefixlen", prefix);
1337         g_key_file_set_integer(keyfile, identifier,
1338                         key, ipconfig->address->prefixlen);
1339         g_free(key);
1340
1341         key = g_strdup_printf("%slocal_address", prefix);
1342         if (ipconfig->address->local != NULL)
1343                 g_key_file_set_string(keyfile, identifier,
1344                                 key, ipconfig->address->local);
1345         g_free(key);
1346
1347         key = g_strdup_printf("%speer_address", prefix);
1348         if (ipconfig->address->peer != NULL)
1349                 g_key_file_set_string(keyfile, identifier,
1350                                 key, ipconfig->address->peer);
1351         g_free(key);
1352
1353         key = g_strdup_printf("%sbroadcast_address", prefix);
1354         if (ipconfig->address->broadcast != NULL)
1355                 g_key_file_set_string(keyfile, identifier,
1356                         key, ipconfig->address->broadcast);
1357         g_free(key);
1358
1359         key = g_strdup_printf("%sgateway", prefix);
1360         if (ipconfig->address->gateway != NULL)
1361                 g_key_file_set_string(keyfile, identifier,
1362                         key, ipconfig->address->gateway);
1363         g_free(key);
1364
1365         return 0;
1366 }
1367
1368 int __connman_ipconfig_init(void)
1369 {
1370         DBG("");
1371
1372         ipdevice_hash = g_hash_table_new_full(g_direct_hash, g_direct_equal,
1373                                                         NULL, free_ipdevice);
1374
1375         return 0;
1376 }
1377
1378 void __connman_ipconfig_cleanup(void)
1379 {
1380         DBG("");
1381
1382         g_hash_table_destroy(ipdevice_hash);
1383         ipdevice_hash = NULL;
1384 }