build: Fix missing -lrt for clock_gettime()
[platform/upstream/connman.git] / src / config.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2012  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <errno.h>
27 #include <stdio.h>
28 #include <unistd.h>
29 #include <string.h>
30 #include <sys/vfs.h>
31 #include <sys/inotify.h>
32 #include <glib.h>
33
34 #include <connman/provision.h>
35 #include "connman.h"
36
37 struct connman_config_service {
38         char *ident;
39         char *name;
40         char *type;
41         void *ssid;
42         unsigned int ssid_len;
43         char *eap;
44         char *identity;
45         char *ca_cert_file;
46         char *client_cert_file;
47         char *private_key_file;
48         char *private_key_passphrase;
49         char *private_key_passphrase_type;
50         char *phase2;
51         char *passphrase;
52         GSList *service_identifiers;
53         char *config_ident; /* file prefix */
54         char *config_entry; /* entry name */
55         connman_bool_t hidden;
56 };
57
58 struct connman_config {
59         char *ident;
60         char *name;
61         char *description;
62         connman_bool_t protected;
63         GHashTable *service_table;
64 };
65
66 static GHashTable *config_table = NULL;
67 static GSList *protected_services = NULL;
68
69 static int inotify_wd = -1;
70
71 static GIOChannel *inotify_channel = NULL;
72 static uint inotify_watch = 0;
73 static connman_bool_t cleanup = FALSE;
74
75 #define INTERNAL_CONFIG_PREFIX           "__internal"
76
77 /* Definition of possible strings in the .config files */
78 #define CONFIG_KEY_NAME                "Name"
79 #define CONFIG_KEY_DESC                "Description"
80 #define CONFIG_KEY_PROT                "Protected"
81
82 #define SERVICE_KEY_TYPE               "Type"
83 #define SERVICE_KEY_NAME               "Name"
84 #define SERVICE_KEY_SSID               "SSID"
85 #define SERVICE_KEY_EAP                "EAP"
86 #define SERVICE_KEY_CA_CERT            "CACertFile"
87 #define SERVICE_KEY_CL_CERT            "ClientCertFile"
88 #define SERVICE_KEY_PRV_KEY            "PrivateKeyFile"
89 #define SERVICE_KEY_PRV_KEY_PASS       "PrivateKeyPassphrase"
90 #define SERVICE_KEY_PRV_KEY_PASS_TYPE  "PrivateKeyPassphraseType"
91 #define SERVICE_KEY_IDENTITY           "Identity"
92 #define SERVICE_KEY_PHASE2             "Phase2"
93 #define SERVICE_KEY_PASSPHRASE         "Passphrase"
94 #define SERVICE_KEY_HIDDEN             "Hidden"
95
96 static const char *config_possible_keys[] = {
97         CONFIG_KEY_NAME,
98         CONFIG_KEY_DESC,
99         CONFIG_KEY_PROT,
100         NULL,
101 };
102
103 static const char *service_possible_keys[] = {
104         SERVICE_KEY_TYPE,
105         SERVICE_KEY_NAME,
106         SERVICE_KEY_SSID,
107         SERVICE_KEY_EAP,
108         SERVICE_KEY_CA_CERT,
109         SERVICE_KEY_CL_CERT,
110         SERVICE_KEY_PRV_KEY,
111         SERVICE_KEY_PRV_KEY_PASS,
112         SERVICE_KEY_PRV_KEY_PASS_TYPE,
113         SERVICE_KEY_IDENTITY,
114         SERVICE_KEY_PHASE2,
115         SERVICE_KEY_PASSPHRASE,
116         SERVICE_KEY_HIDDEN,
117         NULL,
118 };
119
120 static void unregister_config(gpointer data)
121 {
122         struct connman_config *config = data;
123
124         connman_info("Removing configuration %s", config->ident);
125
126         g_hash_table_destroy(config->service_table);
127
128         g_free(config->description);
129         g_free(config->name);
130         g_free(config->ident);
131         g_free(config);
132 }
133
134 static void unregister_service(gpointer data)
135 {
136         struct connman_config_service *config_service = data;
137         struct connman_service *service;
138         char *service_id;
139         GSList *list;
140
141         if (cleanup == TRUE)
142                 goto free_only;
143
144         connman_info("Removing service configuration %s",
145                                                 config_service->ident);
146
147         protected_services = g_slist_remove(protected_services,
148                                                 config_service);
149
150         for (list = config_service->service_identifiers; list != NULL;
151                                                         list = list->next) {
152                 service_id = list->data;
153
154                 service = __connman_service_lookup_from_ident(service_id);
155                 if (service != NULL) {
156                         __connman_service_set_immutable(service, FALSE);
157                         __connman_service_remove(service);
158                 }
159
160                 if (__connman_storage_remove_service(service_id) == FALSE)
161                         DBG("Could not remove all files for service %s",
162                                                                 service_id);
163         }
164
165 free_only:
166         g_free(config_service->ident);
167         g_free(config_service->type);
168         g_free(config_service->name);
169         g_free(config_service->ssid);
170         g_free(config_service->eap);
171         g_free(config_service->identity);
172         g_free(config_service->ca_cert_file);
173         g_free(config_service->client_cert_file);
174         g_free(config_service->private_key_file);
175         g_free(config_service->private_key_passphrase);
176         g_free(config_service->private_key_passphrase_type);
177         g_free(config_service->phase2);
178         g_free(config_service->passphrase);
179         g_slist_free_full(config_service->service_identifiers, g_free);
180         g_free(config_service->config_ident);
181         g_free(config_service->config_entry);
182         g_free(config_service);
183 }
184
185 static void check_keys(GKeyFile *keyfile, const char *group,
186                         const char **possible_keys)
187 {
188         char **avail_keys;
189         gsize nb_avail_keys, i, j;
190
191         avail_keys = g_key_file_get_keys(keyfile, group, &nb_avail_keys, NULL);
192         if (avail_keys == NULL)
193                 return;
194
195         /*
196          * For each key in the configuration file,
197          * verify it is understood by connman
198          */
199         for (i = 0 ; i < nb_avail_keys; i++) {
200                 for (j = 0; possible_keys[j] ; j++)
201                         if (g_strcmp0(avail_keys[i], possible_keys[j]) == 0)
202                                 break;
203
204                 if (possible_keys[j] == NULL)
205                         connman_warn("Unknown configuration key %s in [%s]",
206                                         avail_keys[i], group);
207         }
208
209         g_strfreev(avail_keys);
210 }
211
212 static connman_bool_t
213 is_protected_service(struct connman_config_service *service)
214 {
215         GSList *list;
216
217         DBG("ident %s", service->ident);
218
219         for (list = protected_services; list; list = list->next) {
220                 struct connman_config_service *s = list->data;
221
222                 if (g_strcmp0(s->type, service->type) != 0)
223                         continue;
224
225                 if (s->ssid == NULL || service->ssid == NULL)
226                         continue;
227
228                 if (s->ssid_len != service->ssid_len)
229                         continue;
230
231                 if (g_strcmp0(service->type, "wifi") == 0 &&
232                         strncmp(s->ssid, service->ssid, s->ssid_len) == 0) {
233                         return TRUE;
234                 }
235         }
236
237         return FALSE;
238 }
239
240 static int load_service(GKeyFile *keyfile, const char *group,
241                                                 struct connman_config *config)
242 {
243         struct connman_config_service *service;
244         const char *ident;
245         char *str, *hex_ssid;
246         gboolean service_created = FALSE;
247         int err;
248
249         /* Strip off "service_" prefix */
250         ident = group + 8;
251
252         if (strlen(ident) < 1)
253                 return -EINVAL;
254
255         /* Verify that provided keys are good */
256         check_keys(keyfile, group, service_possible_keys);
257
258         service = g_hash_table_lookup(config->service_table, ident);
259         if (service == NULL) {
260                 service = g_try_new0(struct connman_config_service, 1);
261                 if (service == NULL)
262                         return -ENOMEM;
263
264                 service->ident = g_strdup(ident);
265
266                 service_created = TRUE;
267         }
268
269         str = g_key_file_get_string(keyfile, group, SERVICE_KEY_TYPE, NULL);
270         if (str != NULL) {
271                 g_free(service->type);
272                 service->type = str;
273         }
274
275         str = g_key_file_get_string(keyfile, group, SERVICE_KEY_NAME, NULL);
276         if (str != NULL) {
277                 g_free(service->name);
278                 service->name = str;
279         }
280
281         hex_ssid = g_key_file_get_string(keyfile, group, SERVICE_KEY_SSID,
282                                          NULL);
283         if (hex_ssid != NULL) {
284                 char *ssid;
285                 unsigned int i, j = 0, hex;
286                 size_t hex_ssid_len = strlen(hex_ssid);
287
288                 ssid = g_try_malloc0(hex_ssid_len / 2);
289                 if (ssid == NULL) {
290                         err = -ENOMEM;
291                         g_free(hex_ssid);
292                         goto err;
293                 }
294
295                 for (i = 0; i < hex_ssid_len; i += 2) {
296                         if (sscanf(hex_ssid + i, "%02x", &hex) <= 0) {
297                                 connman_warn("Invalid SSID %s", hex_ssid);
298                                 g_free(ssid);
299                                 g_free(hex_ssid);
300                                 err = -EILSEQ;
301                                 goto err;
302                         }
303                         ssid[j++] = hex;
304                 }
305
306                 g_free(hex_ssid);
307
308                 g_free(service->ssid);
309                 service->ssid = ssid;
310                 service->ssid_len = hex_ssid_len / 2;
311         } else if (service->name != NULL) {
312                 char *ssid;
313                 unsigned int ssid_len;
314
315                 ssid_len = strlen(service->name);
316                 ssid = g_try_malloc0(ssid_len);
317                 if (ssid == NULL) {
318                         err = -ENOMEM;
319                         goto err;
320                 }
321
322                 memcpy(ssid, service->name, ssid_len);
323                 g_free(service->ssid);
324                 service->ssid = ssid;
325                 service->ssid_len = ssid_len;
326         }
327
328         if (is_protected_service(service) == TRUE) {
329                 connman_error("Trying to provision a protected service");
330                 err = -EACCES;
331                 goto err;
332         }
333
334         str = g_key_file_get_string(keyfile, group, SERVICE_KEY_EAP, NULL);
335         if (str != NULL) {
336                 g_free(service->eap);
337                 service->eap = str;
338         }
339
340         str = g_key_file_get_string(keyfile, group, SERVICE_KEY_CA_CERT, NULL);
341         if (str != NULL) {
342                 g_free(service->ca_cert_file);
343                 service->ca_cert_file = str;
344         }
345
346         str = g_key_file_get_string(keyfile, group, SERVICE_KEY_CL_CERT, NULL);
347         if (str != NULL) {
348                 g_free(service->client_cert_file);
349                 service->client_cert_file = str;
350         }
351
352         str = g_key_file_get_string(keyfile, group, SERVICE_KEY_PRV_KEY, NULL);
353         if (str != NULL) {
354                 g_free(service->private_key_file);
355                 service->private_key_file = str;
356         }
357
358         str = g_key_file_get_string(keyfile, group,
359                                                 SERVICE_KEY_PRV_KEY_PASS, NULL);
360         if (str != NULL) {
361                 g_free(service->private_key_passphrase);
362                 service->private_key_passphrase = str;
363         }
364
365         str = g_key_file_get_string(keyfile, group,
366                                         SERVICE_KEY_PRV_KEY_PASS_TYPE, NULL);
367         if (str != NULL) {
368                 g_free(service->private_key_passphrase_type);
369                 service->private_key_passphrase_type = str;
370         }
371
372         str = g_key_file_get_string(keyfile, group, SERVICE_KEY_IDENTITY, NULL);
373         if (str != NULL) {
374                 g_free(service->identity);
375                 service->identity = str;
376         }
377
378         str = g_key_file_get_string(keyfile, group, SERVICE_KEY_PHASE2, NULL);
379         if (str != NULL) {
380                 g_free(service->phase2);
381                 service->phase2 = str;
382         }
383
384         str = g_key_file_get_string(keyfile, group, SERVICE_KEY_PASSPHRASE,
385                                         NULL);
386         if (str != NULL) {
387                 g_free(service->passphrase);
388                 service->passphrase = str;
389         }
390
391         service->config_ident = g_strdup(config->ident);
392         service->config_entry = g_strdup_printf("service_%s", service->ident);
393
394         service->hidden = g_key_file_get_boolean(keyfile, group,
395                                                 SERVICE_KEY_HIDDEN, NULL);
396
397         if (service_created)
398                 g_hash_table_insert(config->service_table, service->ident,
399                                         service);
400
401         if (config->protected == TRUE)
402                 protected_services =
403                         g_slist_prepend(protected_services, service);
404
405         connman_info("Adding service configuration %s", service->ident);
406
407         return 0;
408
409 err:
410         if (service_created == TRUE) {
411                 g_free(service->ident);
412                 g_free(service->type);
413                 g_free(service->name);
414                 g_free(service->ssid);
415                 g_free(service);
416         }
417
418         return err;
419 }
420
421 static int load_config(struct connman_config *config)
422 {
423         GKeyFile *keyfile;
424         GError *error = NULL;
425         gsize length;
426         char **groups;
427         char *str;
428         gboolean protected, found = FALSE;
429         int i;
430
431         DBG("config %p", config);
432
433         keyfile = __connman_storage_load_config(config->ident);
434         if (keyfile == NULL)
435                 return -EIO;
436
437         /* Verify keys validity of the global section */
438         check_keys(keyfile, "global", config_possible_keys);
439
440         str = g_key_file_get_string(keyfile, "global", CONFIG_KEY_NAME, NULL);
441         if (str != NULL) {
442                 g_free(config->name);
443                 config->name = str;
444         }
445
446         str = g_key_file_get_string(keyfile, "global", CONFIG_KEY_DESC, NULL);
447         if (str != NULL) {
448                 g_free(config->description);
449                 config->description = str;
450         }
451
452         protected = g_key_file_get_boolean(keyfile, "global",
453                                         CONFIG_KEY_PROT, &error);
454         if (error == NULL)
455                 config->protected = protected;
456         else
457                 config->protected = TRUE;
458         g_clear_error(&error);
459
460         groups = g_key_file_get_groups(keyfile, &length);
461
462         for (i = 0; groups[i] != NULL; i++) {
463                 if (g_str_has_prefix(groups[i], "service_") == TRUE) {
464                         if (load_service(keyfile, groups[i], config) == 0)
465                                 found = TRUE;
466                 }
467         }
468
469         if (found == FALSE)
470                 connman_warn("Config file %s/%s.config does not contain any "
471                         "configuration that can be provisioned!",
472                         STORAGEDIR, config->ident);
473
474         g_strfreev(groups);
475
476         g_key_file_free(keyfile);
477
478         return 0;
479 }
480
481 static struct connman_config *create_config(const char *ident)
482 {
483         struct connman_config *config;
484
485         DBG("ident %s", ident);
486
487         if (g_hash_table_lookup(config_table, ident) != NULL)
488                 return NULL;
489
490         config = g_try_new0(struct connman_config, 1);
491         if (config == NULL)
492                 return NULL;
493
494         config->ident = g_strdup(ident);
495
496         config->service_table = g_hash_table_new_full(g_str_hash, g_str_equal,
497                                                 NULL, unregister_service);
498
499         g_hash_table_insert(config_table, config->ident, config);
500
501         connman_info("Adding configuration %s", config->ident);
502
503         return config;
504 }
505
506 static connman_bool_t validate_ident(const char *ident)
507 {
508         unsigned int i;
509
510         if (ident == NULL)
511                 return FALSE;
512
513         for (i = 0; i < strlen(ident); i++)
514                 if (g_ascii_isprint(ident[i]) == FALSE)
515                         return FALSE;
516
517         return TRUE;
518 }
519
520 static int read_configs(void)
521 {
522         GDir *dir;
523
524         DBG("");
525
526         dir = g_dir_open(STORAGEDIR, 0, NULL);
527         if (dir != NULL) {
528                 const gchar *file;
529
530                 while ((file = g_dir_read_name(dir)) != NULL) {
531                         GString *str;
532                         gchar *ident;
533
534                         if (g_str_has_suffix(file, ".config") == FALSE)
535                                 continue;
536
537                         ident = g_strrstr(file, ".config");
538                         if (ident == NULL)
539                                 continue;
540
541                         str = g_string_new_len(file, ident - file);
542                         if (str == NULL)
543                                 continue;
544
545                         ident = g_string_free(str, FALSE);
546
547                         if (validate_ident(ident) == TRUE) {
548                                 struct connman_config *config;
549
550                                 config = create_config(ident);
551                                 if (config != NULL)
552                                         load_config(config);
553                         } else {
554                                 connman_error("Invalid config ident %s", ident);
555                         }
556                         g_free(ident);
557                 }
558
559                 g_dir_close(dir);
560         }
561
562         return 0;
563 }
564
565 static gboolean inotify_data(GIOChannel *channel, GIOCondition cond,
566                                                         gpointer user_data)
567 {
568         char buffer[256];
569         char *next_event;
570         gsize bytes_read;
571         GIOStatus status;
572
573         if (cond & (G_IO_NVAL | G_IO_ERR | G_IO_HUP)) {
574                 inotify_watch = 0;
575                 return FALSE;
576         }
577
578         status = g_io_channel_read_chars(channel, buffer,
579                                         sizeof(buffer) -1, &bytes_read, NULL);
580
581         switch (status) {
582         case G_IO_STATUS_NORMAL:
583                 break;
584         case G_IO_STATUS_AGAIN:
585                 return TRUE;
586         default:
587                 connman_error("Reading from inotify channel failed");
588                 inotify_watch = 0;
589                 return FALSE;
590         }
591
592         next_event = buffer;
593
594         while (bytes_read > 0) {
595                 struct inotify_event *event;
596                 gchar *ext;
597                 gchar *ident;
598                 gsize len;
599
600                 event = (struct inotify_event *) next_event;
601                 if (event->len)
602                         ident = next_event + sizeof(struct inotify_event);
603                 else
604                         ident = NULL;
605
606                 len = sizeof(struct inotify_event) + event->len;
607
608                 /* check if inotify_event block fit */
609                 if (len > bytes_read)
610                         break;
611
612                 next_event += len;
613                 bytes_read -= len;
614
615                 if (ident == NULL)
616                         continue;
617
618                 if (g_str_has_suffix(ident, ".config") == FALSE)
619                         continue;
620
621                 ext = g_strrstr(ident, ".config");
622                 if (ext == NULL)
623                         continue;
624
625                 *ext = '\0';
626
627                 if (validate_ident(ident) == FALSE) {
628                         connman_error("Invalid config ident %s", ident);
629                         continue;
630                 }
631
632                 if (event->mask & IN_CREATE)
633                         create_config(ident);
634
635                 if (event->mask & IN_MODIFY) {
636                         struct connman_config *config;
637
638                         config = g_hash_table_lookup(config_table, ident);
639                         if (config != NULL) {
640                                 int ret;
641
642                                 g_hash_table_remove_all(config->service_table);
643                                 load_config(config);
644                                 ret = __connman_service_provision_changed(ident);
645                                 if (ret > 0) {
646                                         /*
647                                          * Re-scan the config file for any
648                                          * changes
649                                          */
650                                         g_hash_table_remove_all(config->service_table);
651                                         load_config(config);
652                                         __connman_service_provision_changed(ident);
653                                 }
654                         }
655                 }
656
657                 if (event->mask & IN_DELETE)
658                         g_hash_table_remove(config_table, ident);
659         }
660
661         return TRUE;
662 }
663
664 static int create_watch(void)
665 {
666         int fd;
667
668         fd = inotify_init();
669         if (fd < 0)
670                 return -EIO;
671
672         inotify_wd = inotify_add_watch(fd, STORAGEDIR,
673                                         IN_MODIFY | IN_CREATE | IN_DELETE);
674         if (inotify_wd < 0) {
675                 connman_error("Creation of STORAGEDIR  watch failed");
676                 close(fd);
677                 return -EIO;
678         }
679
680         inotify_channel = g_io_channel_unix_new(fd);
681         if (inotify_channel == NULL) {
682                 connman_error("Creation of inotify channel failed");
683                 inotify_rm_watch(fd, inotify_wd);
684                 inotify_wd = 0;
685
686                 close(fd);
687                 return -EIO;
688         }
689
690         g_io_channel_set_close_on_unref(inotify_channel, TRUE);
691         g_io_channel_set_encoding(inotify_channel, NULL, NULL);
692         g_io_channel_set_buffered(inotify_channel, FALSE);
693
694         inotify_watch = g_io_add_watch(inotify_channel,
695                                 G_IO_IN | G_IO_HUP | G_IO_NVAL | G_IO_ERR,
696                                 inotify_data, NULL);
697
698         return 0;
699 }
700
701 static void remove_watch(void)
702 {
703         int fd;
704
705         if (inotify_channel == NULL)
706                 return;
707
708         if (inotify_watch > 0) {
709                 g_source_remove(inotify_watch);
710                 inotify_watch = 0;
711         }
712
713         fd = g_io_channel_unix_get_fd(inotify_channel);
714
715         if (inotify_wd >= 0) {
716                 inotify_rm_watch(fd, inotify_wd);
717                 inotify_wd = 0;
718         }
719
720         g_io_channel_unref(inotify_channel);
721 }
722
723 int __connman_config_init(void)
724 {
725         DBG("");
726
727         config_table = g_hash_table_new_full(g_str_hash, g_str_equal,
728                                                 NULL, unregister_config);
729
730         create_watch();
731
732         return read_configs();
733 }
734
735 void __connman_config_cleanup(void)
736 {
737         DBG("");
738
739         cleanup = TRUE;
740
741         remove_watch();
742
743         g_hash_table_destroy(config_table);
744         config_table = NULL;
745
746         cleanup = FALSE;
747 }
748
749 static char *config_pem_fsid(const char *pem_file)
750 {
751         struct statfs buf;
752         unsigned *fsid = (unsigned *) &buf.f_fsid;
753         unsigned long long fsid64;
754
755         if (pem_file == NULL)
756                 return NULL;
757
758         if (statfs(pem_file, &buf) < 0) {
759                 connman_error("statfs error %s for %s",
760                                                 strerror(errno), pem_file);
761                 return NULL;
762         }
763
764         fsid64 = ((unsigned long long) fsid[0] << 32) | fsid[1];
765
766         return g_strdup_printf("%llx", fsid64);
767 }
768
769 static void provision_service(gpointer key, gpointer value, gpointer user_data)
770 {
771         struct connman_service *service = user_data;
772         struct connman_config_service *config = value;
773         struct connman_network *network;
774         const void *ssid, *service_id;
775         unsigned int ssid_len;
776
777         /* For now only WiFi service entries are supported */
778         if (g_strcmp0(config->type, "wifi") != 0)
779                 return;
780
781         network = __connman_service_get_network(service);
782         if (network == NULL) {
783                 connman_error("Service has no network set");
784                 return;
785         }
786
787         ssid = connman_network_get_blob(network, "WiFi.SSID", &ssid_len);
788         if (ssid == NULL) {
789                 connman_error("Network SSID not set");
790                 return;
791         }
792
793         if (config->ssid == NULL || ssid_len != config->ssid_len)
794                 return;
795
796         if (memcmp(config->ssid, ssid, ssid_len) != 0)
797                 return;
798
799         service_id = __connman_service_get_ident(service);
800         config->service_identifiers =
801                 g_slist_prepend(config->service_identifiers,
802                                 g_strdup(service_id));
803
804         __connman_service_set_immutable(service, TRUE);
805
806         __connman_service_set_favorite_delayed(service, TRUE, TRUE);
807
808         __connman_service_set_config(service, config->config_ident,
809                                                 config->config_entry);
810
811         if (config->eap != NULL)
812                 __connman_service_set_string(service, "EAP", config->eap);
813
814         if (config->identity != NULL)
815                 __connman_service_set_string(service, "Identity",
816                                                         config->identity);
817
818         if (config->ca_cert_file != NULL)
819                 __connman_service_set_string(service, "CACertFile",
820                                                         config->ca_cert_file);
821
822         if (config->client_cert_file != NULL)
823                 __connman_service_set_string(service, "ClientCertFile",
824                                                 config->client_cert_file);
825
826         if (config->private_key_file != NULL)
827                 __connman_service_set_string(service, "PrivateKeyFile",
828                                                 config->private_key_file);
829
830         if (g_strcmp0(config->private_key_passphrase_type, "fsid") == 0 &&
831                                         config->private_key_file != NULL) {
832                 char *fsid;
833
834                 fsid = config_pem_fsid(config->private_key_file);
835                 if (fsid == NULL)
836                         return;
837
838                 g_free(config->private_key_passphrase);
839                 config->private_key_passphrase = fsid;
840         }
841
842         if (config->private_key_passphrase != NULL) {
843                 __connman_service_set_string(service, "PrivateKeyPassphrase",
844                                                 config->private_key_passphrase);
845                 /*
846                  * TODO: Support for PEAP with both identity and key passwd.
847                  * In that case, we should check if both of them are found
848                  * from the config file. If not, we should not set the
849                  * service passphrase in order for the UI to request for an
850                  * additional passphrase.
851                  */
852         }
853
854         if (config->phase2 != NULL)
855                 __connman_service_set_string(service, "Phase2", config->phase2);
856
857         if (config->passphrase != NULL)
858                 __connman_service_set_string(service, "Passphrase", config->passphrase);
859
860         if (config->hidden == TRUE)
861                 __connman_service_set_hidden(service);
862
863         __connman_service_mark_dirty();
864
865         __connman_service_save(service);
866 }
867
868 int __connman_config_provision_service(struct connman_service *service)
869 {
870         enum connman_service_type type;
871         GHashTableIter iter;
872         gpointer value, key;
873
874         DBG("service %p", service);
875
876         /* For now only WiFi services are supported */
877         type = connman_service_get_type(service);
878         if (type != CONNMAN_SERVICE_TYPE_WIFI)
879                 return -ENOSYS;
880
881         g_hash_table_iter_init(&iter, config_table);
882
883         while (g_hash_table_iter_next(&iter, &key, &value) == TRUE) {
884                 struct connman_config *config = value;
885
886                 g_hash_table_foreach(config->service_table,
887                                                 provision_service, service);
888         }
889
890         return 0;
891 }
892
893 int __connman_config_provision_service_ident(struct connman_service *service,
894                         const char *ident, const char *file, const char *entry)
895 {
896         enum connman_service_type type;
897         struct connman_config *config;
898         int ret = 0;
899
900         DBG("service %p", service);
901
902         /* For now only WiFi services are supported */
903         type = connman_service_get_type(service);
904         if (type != CONNMAN_SERVICE_TYPE_WIFI)
905                 return -ENOSYS;
906
907         config = g_hash_table_lookup(config_table, ident);
908         if (config != NULL) {
909                 GHashTableIter iter;
910                 gpointer value, key;
911                 gboolean found = FALSE;
912
913                 g_hash_table_iter_init(&iter, config->service_table);
914
915                 /*
916                  * Check if we need to remove individual service if it
917                  * is missing from config file.
918                  */
919                 if (file != NULL && entry != NULL) {
920                         while (g_hash_table_iter_next(&iter, &key,
921                                                         &value) == TRUE) {
922                                 struct connman_config_service *config_service;
923
924                                 config_service = value;
925
926                                 if (g_strcmp0(config_service->config_ident,
927                                                                 file) != 0)
928                                         continue;
929
930                                 if (g_strcmp0(config_service->config_entry,
931                                                                 entry) != 0)
932                                         continue;
933
934                                 found = TRUE;
935                                 break;
936                         }
937
938                         DBG("found %d ident %s file %s entry %s", found, ident,
939                                                                 file, entry);
940
941                         if (found == FALSE) {
942                                 /*
943                                  * The entry+8 will skip "service_" prefix
944                                  */
945                                 g_hash_table_remove(config->service_table,
946                                                 entry + 8);
947                                 ret = 1;
948                         }
949                 }
950
951                 g_hash_table_foreach(config->service_table,
952                                                 provision_service, service);
953         }
954
955         return ret;
956 }
957
958 struct connman_config_entry **connman_config_get_entries(void)
959 {
960         GHashTableIter iter_file, iter_config;
961         gpointer value, key;
962         struct connman_config_entry **entries = NULL;
963         int i = 0, count;
964
965         g_hash_table_iter_init(&iter_file, config_table);
966         while (g_hash_table_iter_next(&iter_file, &key, &value) == TRUE) {
967                 struct connman_config *config_file = value;
968
969                 count = g_hash_table_size(config_file->service_table);
970
971                 entries = g_try_realloc(entries, (i + count + 1) *
972                                         sizeof(struct connman_config_entry *));
973                 if (entries == NULL)
974                         return NULL;
975
976                 g_hash_table_iter_init(&iter_config,
977                                                 config_file->service_table);
978                 while (g_hash_table_iter_next(&iter_config, &key,
979                                                         &value) == TRUE) {
980                         struct connman_config_service *config = value;
981
982                         entries[i] = g_try_new0(struct connman_config_entry,
983                                                 1);
984                         if (entries[i] == NULL)
985                                 goto cleanup;
986
987                         entries[i]->ident = g_strdup(config->ident);
988                         entries[i]->name = g_strdup(config->name);
989                         entries[i]->ssid = g_try_malloc0(config->ssid_len + 1);
990                         if (entries[i]->ssid == NULL)
991                                 goto cleanup;
992
993                         memcpy(entries[i]->ssid, config->ssid,
994                                                         config->ssid_len);
995                         entries[i]->ssid_len = config->ssid_len;
996                         entries[i]->hidden = config->hidden;
997
998                         i++;
999                 }
1000         }
1001
1002         if (entries != NULL) {
1003                 entries = g_try_realloc(entries, (i + 1) *
1004                                         sizeof(struct connman_config_entry *));
1005                 if (entries == NULL)
1006                         return NULL;
1007
1008                 entries[i] = NULL;
1009
1010                 DBG("%d provisioned AP found", i);
1011         }
1012
1013         return entries;
1014
1015 cleanup:
1016         connman_config_free_entries(entries);
1017         return NULL;
1018 }
1019
1020 void connman_config_free_entries(struct connman_config_entry **entries)
1021 {
1022         int i;
1023
1024         if (entries == NULL)
1025                 return;
1026
1027         for (i = 0; entries[i]; i++) {
1028                 g_free(entries[i]->ident);
1029                 g_free(entries[i]->name);
1030                 g_free(entries[i]->ssid);
1031                 g_free(entries[i]);
1032         }
1033
1034         g_free(entries);
1035         return;
1036 }