Merge "Revise driver load routine" into tizen
[platform/core/connectivity/net-config.git] / src / wifi-config.c
1 /*
2  * Network Configuration Module
3  *
4  * Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <sys/types.h>
24 #include <dirent.h>
25 #include <sys/stat.h>
26 #include <glib.h>
27 #include <unistd.h>
28
29 #include <vconf.h>
30
31 #include "log.h"
32 #include "util.h"
33 #include "neterror.h"
34 #include "wifi-config.h"
35 #include "netsupplicant.h"
36
37 #define CONNMAN_STORAGE         "/var/lib/connman"
38
39 #define WIFI_SECURITY_NONE              "none"
40 #define WIFI_SECURITY_WEP               "wep"
41 #define WIFI_SECURITY_WPA_PSK   "psk"
42 #define WIFI_SECURITY_EAP               "ieee8021x"
43
44 #define WIFI_CONFIG_PREFIX      "wifi_"
45 #define MAC_ADDRESS_LENGTH              12
46 #define WIFI_PREFIX_LENGTH              MAC_ADDRESS_LENGTH + 6  /* wifi_485a3f2f506a_ */
47 #define PROFILE_PREFIX_LENGTH   WIFI_PREFIX_LENGTH + 21 /* /net/connman/service/wifi_485a3f2f506a_ */
48
49 #define WIFI_MAC_ADD_LENGTH             17
50 #define WIFI_MAC_ADD_PATH               "/sys/class/net/wlan0/address"
51
52 struct wifi_eap_config {
53         gchar *anonymous_identity;
54         gchar *ca_cert;
55         gchar *client_cert;
56         gchar *private_key;
57         gchar *identity;
58         gchar *eap_type;
59         gchar *eap_auth_type;
60         gchar *subject_match;
61 };
62
63 struct wifi_config {
64         gchar *name;
65         gchar *ssid;
66         gchar *passphrase;
67         gchar *security_type;
68         gboolean favorite;
69         gboolean autoconnect;
70         gchar *is_hidden;
71         gchar *proxy_address;
72         struct wifi_eap_config *eap_config;
73         gchar *last_error;
74 };
75
76 static void __free_wifi_configuration(struct wifi_config *conf)
77 {
78         if (conf == NULL)
79                 return;
80
81         g_free(conf->name);
82         g_free(conf->ssid);
83         g_free(conf->passphrase);
84         g_free(conf->security_type);
85         g_free(conf->is_hidden);
86         g_free(conf->proxy_address);
87         g_free(conf->last_error);
88         if (conf->eap_config) {
89                 g_free(conf->eap_config->anonymous_identity);
90                 g_free(conf->eap_config->ca_cert);
91                 g_free(conf->eap_config->client_cert);
92                 g_free(conf->eap_config->private_key);
93                 g_free(conf->eap_config->identity);
94                 g_free(conf->eap_config->eap_type);
95                 g_free(conf->eap_config->eap_auth_type);
96                 g_free(conf->eap_config->subject_match);
97                 g_free(conf->eap_config);
98         }
99         g_free(conf);
100 }
101
102 static gboolean __get_mac_address(gchar **mac_address)
103 {
104         gchar *tmp_mac = NULL;
105         gchar *tmp = NULL;
106         gchar mac[13] = { 0, };
107         gint i = 0, j = 0;
108
109         if (TIZEN_TV) {
110                 FILE *fp = NULL;
111                 char buf[WIFI_MAC_ADD_LENGTH + 1];
112                 if (0 == access(WIFI_MAC_ADD_PATH, F_OK))
113                         fp = fopen(WIFI_MAC_ADD_PATH, "r");
114
115                 if (fp == NULL) {
116                         ERR("Failed to open file %s\n", WIFI_MAC_ADD_PATH);
117                         *mac_address = NULL;
118                         return FALSE;
119                 }
120
121                 if (fgets(buf, sizeof(buf), fp) == NULL) {
122                         ERR("Failed to get MAC info from %s\n", WIFI_MAC_ADD_PATH);
123                         *mac_address = NULL;
124                         fclose(fp);
125                         return FALSE;
126                 }
127                 tmp_mac = (gchar *)malloc(WIFI_MAC_ADD_LENGTH + 1);
128                 if (tmp_mac == NULL) {
129                         ERR("malloc() failed");
130                         *mac_address = NULL;
131                         fclose(fp);
132                         return FALSE;
133                 }
134                 memset(tmp_mac, 0, WIFI_MAC_ADD_LENGTH + 1);
135                 g_strlcpy(tmp_mac, buf, WIFI_MAC_ADD_LENGTH + 1);
136                 fclose(fp);
137         } else {
138                 tmp_mac = vconf_get_str(VCONFKEY_WIFI_BSSID_ADDRESS);
139                 if (tmp_mac == NULL) {
140                         ERR("vconf_get_str(WIFI_BSSID_ADDRESS) Failed");
141                         *mac_address = NULL;
142                         return FALSE;
143                 }
144         }
145         tmp = g_ascii_strdown(tmp_mac, (gssize)strlen(tmp_mac));
146         free(tmp_mac);
147         while (tmp && tmp[i]) {
148                 if (tmp[i] != ':')
149                         mac[j++] = tmp[i];
150                 i++;
151         }
152         mac[12] = '\0';
153         *mac_address = g_strdup(mac);
154
155         return TRUE;
156 }
157
158 static gboolean __get_group_name(const gchar *prefix, const gchar *config_id, gchar **group_name)
159 {
160         gchar *mac_address = NULL;
161         gchar *g_name = NULL;
162         gboolean ret = FALSE;
163
164         ret = __get_mac_address(&mac_address);
165         if ((ret != TRUE) || (strlen(mac_address) == 0)) {
166                 ERR("Cannot get WIFI MAC address");
167                 return FALSE;
168         }
169
170         g_name = g_strdup_printf("%s%s_%s", prefix, mac_address, config_id);
171         if (g_name == NULL) {
172                 g_free(mac_address);
173                 return FALSE;
174         }
175
176         *group_name = g_strdup(g_name);
177
178         g_free(mac_address);
179         g_free(g_name);
180
181         return TRUE;
182 }
183
184 static gboolean __get_security_type(const gchar *config_id, gchar **type)
185 {
186         if (g_str_has_suffix(config_id, WIFI_SECURITY_NONE) == TRUE) {
187                 *type = g_strdup(WIFI_SECURITY_NONE);
188         } else if (g_str_has_suffix(config_id, WIFI_SECURITY_WEP) == TRUE) {
189                 *type = g_strdup(WIFI_SECURITY_WEP);
190         } else if (g_str_has_suffix(config_id, WIFI_SECURITY_WPA_PSK) == TRUE) {
191                 *type = g_strdup(WIFI_SECURITY_WPA_PSK);
192         } else if (g_str_has_suffix(config_id, WIFI_SECURITY_EAP) == TRUE) {
193                 *type = g_strdup(WIFI_SECURITY_EAP);
194         } else {
195                 *type = NULL;
196                 return FALSE;
197         }
198
199         return TRUE;
200 }
201
202 static gboolean __get_config_id(const gchar *profile, gchar **config_id)
203 {
204         *config_id = g_strdup(profile + PROFILE_PREFIX_LENGTH);
205         if (*config_id == NULL) {
206                 ERR("OOM");
207                 return FALSE;
208         }
209
210         return TRUE;
211 }
212
213
214 static GKeyFile *__get_configuration_keyfile(const gchar *group_name)
215 {
216         GKeyFile *keyfile = NULL;
217         gchar *path;
218
219         path = g_strdup_printf(CONNMAN_STORAGE "/%s/settings", group_name);
220
221         keyfile = netconfig_keyfile_load(path);
222         if (keyfile == NULL)
223                 ERR("keyfile[%s] is NULL", path);
224
225         g_free(path);
226
227         return keyfile;
228 }
229
230 static gboolean __remove_file(const gchar *pathname, const gchar *filename)
231 {
232         gboolean ret = FALSE;
233         gchar *path;
234
235         path = g_strdup_printf("%s/%s", pathname, filename);
236         if (g_file_test(path, G_FILE_TEST_EXISTS) == FALSE) {
237                 ret = TRUE;
238         } else if (g_file_test(path, G_FILE_TEST_IS_REGULAR) == TRUE) {
239                 unlink(path);
240                 ret = TRUE;
241         }
242
243         g_free(path);
244         return ret;
245 }
246
247 static gboolean __remove_configuration(const gchar *pathname)
248 {
249         int ret = 0;
250
251         if (__remove_file(pathname, "settings") != TRUE) {
252                 ERR("Cannot remove [%s/settings]", pathname);
253                 return FALSE;
254         }
255         if (__remove_file(pathname, "data") != TRUE) {
256                 ERR("Cannot remove [%s/data]", pathname);
257                 return FALSE;
258         }
259
260         ret = rmdir(pathname);
261         if (ret == -1) {
262                 ERR("Cannot remove [%s]", pathname);
263                 return FALSE;
264         }
265
266         return TRUE;
267 }
268
269 static gboolean _load_configuration(const gchar *config_id, struct wifi_config *config)
270 {
271         GKeyFile *keyfile;
272         gchar *group_name;
273         gboolean hidden = FALSE;
274         gboolean ret = FALSE;
275
276         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
277         if (ret != TRUE) {
278                 ERR("Fail to get_wifi_config_group_name");
279                 return FALSE;
280         }
281
282         keyfile = __get_configuration_keyfile(group_name);
283         if (keyfile == NULL) {
284                 ERR("Fail to __get_configuration_keyfile[%s]", group_name);
285                 g_free(group_name);
286                 return FALSE;
287         }
288
289         config->name = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_NAME, NULL);
290         DBG("name [%s]", config->name);
291
292         __get_security_type(config_id, &config->security_type);
293         if (config->security_type == NULL) {
294                 ERR("Fail to _get_security_type");
295                 g_key_file_free(keyfile);
296                 g_free(group_name);
297                 return FALSE;
298         }
299         DBG("security_type [%s]", config->security_type);
300
301         config->proxy_address = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_PROXY_SERVER, NULL);
302         if (config->proxy_address)
303                 DBG("proxy_address [%s]", config->proxy_address);
304
305         hidden = g_key_file_get_boolean(keyfile, group_name, WIFI_CONFIG_HIDDEN, NULL);
306         if (hidden)
307                 config->is_hidden = g_strdup("TRUE");
308         else
309                 config->is_hidden = g_strdup("FALSE");
310         DBG("is_hidden [%s]", config->is_hidden);
311
312         if (g_strcmp0(config->security_type, WIFI_SECURITY_EAP) == 0) {
313                 config->eap_config->anonymous_identity = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY, NULL);
314                 config->eap_config->ca_cert = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_CACERT, NULL);
315                 config->eap_config->client_cert = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_CLIENTCERT, NULL);
316                 config->eap_config->private_key = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_PRIVATEKEY, NULL);
317                 config->eap_config->identity = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_IDENTITY, NULL);
318                 config->eap_config->eap_type = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_TYPE, NULL);
319                 config->eap_config->eap_auth_type = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_AUTH_TYPE, NULL);
320                 config->eap_config->subject_match = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_SUBJECT_MATCH, NULL);
321
322                 if (config->eap_config->anonymous_identity)
323                         DBG("anonymous_identity [%s]", config->eap_config->anonymous_identity);
324                 if (config->eap_config->ca_cert)
325                         DBG("ca_cert [%s]", config->eap_config->ca_cert);
326                 if (config->eap_config->client_cert)
327                         DBG("client_cert [%s]", config->eap_config->client_cert);
328                 if (config->eap_config->private_key)
329                         DBG("private_key [%s]", config->eap_config->private_key);
330                 if (config->eap_config->identity)
331                         DBG("identity [%s]", config->eap_config->identity);
332                 if (config->eap_config->eap_type)
333                         DBG("eap_type [%s]", config->eap_config->eap_type);
334                 if (config->eap_config->eap_auth_type)
335                         DBG("eap_auth_type [%s]", config->eap_config->eap_auth_type);
336                 if (config->eap_config->subject_match)
337                         DBG("subject_match [%s]", config->eap_config->subject_match);
338         }
339
340         config->last_error = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_FAILURE, NULL);
341         if (config->last_error)
342                 DBG("last_error [%s]", config->last_error);
343
344         g_key_file_free(keyfile);
345         g_free(group_name);
346
347         return TRUE;
348 }
349
350 static gboolean _save_configuration(const gchar *config_id, GKeyFile *keyfile)
351 {
352         gchar *dir;
353         gchar *path;
354         gchar *group_name;
355         gboolean ret = FALSE;
356
357         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
358         if (ret != TRUE) {
359                 ERR("Fail to get_wifi_config_group_name");
360                 return FALSE;
361         }
362
363         dir = g_strdup_printf(CONNMAN_STORAGE "/%s", group_name);
364         if (g_file_test(dir, G_FILE_TEST_IS_DIR) == TRUE) {
365                 if (__remove_configuration(dir) != TRUE) {
366                         ERR("[%s] is existed, but cannot remove", dir);
367                         g_free(group_name);
368                         g_free(dir);
369                         return FALSE;
370                 }
371         }
372
373         if (mkdir(dir, (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)) < 0) {
374                 ERR("Cannot mkdir %s", dir);
375                 g_free(group_name);
376                 g_free(dir);
377                 return FALSE;
378         }
379
380         path = g_strdup_printf(CONNMAN_STORAGE "/%s/settings", group_name);
381         netconfig_keyfile_save(keyfile, path);
382         g_free(group_name);
383         g_free(dir);
384         g_free(path);
385
386         return TRUE;
387 }
388
389 static gboolean _remove_configuration(const gchar *config_id)
390 {
391         gboolean ret = FALSE;
392         gchar *dir;
393         gchar *group_name;
394
395         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
396         if (ret != TRUE) {
397                 ERR("Fail to get_wifi_config_group_name");
398                 return FALSE;
399         }
400
401         dir = g_strdup_printf(CONNMAN_STORAGE "/%s", group_name);
402         if (g_file_test(dir, G_FILE_TEST_IS_DIR) == TRUE) {
403                 if (__remove_configuration(dir) != TRUE) {
404                         ERR("[%s] is existed, but cannot remove", dir);
405                         ret = FALSE;
406                 }
407                 INFO("Success to remove [%s]", dir);
408                 ret = TRUE;
409         } else {
410                 ERR("[%s] is not existed", dir);
411                 ret = FALSE;
412         }
413
414         g_free(group_name);
415         g_free(dir);
416
417         return ret;
418 }
419
420
421 static gboolean _set_field(const gchar *config_id, const gchar *key, const gchar *value)
422 {
423         gboolean ret = TRUE;
424         GKeyFile *keyfile;
425         gchar *group_name;
426
427         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
428         if (ret != TRUE) {
429                 ERR("Fail to get_wifi_config_group_name");
430                 return FALSE;
431         }
432         DBG("group_name %s", group_name);
433
434         keyfile = __get_configuration_keyfile(group_name);
435         if (keyfile == NULL) {
436                 ERR("Fail to __get_configuration_keyfile");
437                 g_free(group_name);
438                 return FALSE;
439         }
440
441         if (g_strcmp0(key, WIFI_CONFIG_PROXY_METHOD) == 0) {
442                 g_key_file_set_string(keyfile, group_name, key, value);
443         } else if (g_strcmp0(key, WIFI_CONFIG_PROXY_SERVER) == 0) {
444                 g_key_file_set_string(keyfile, group_name, key, value);
445         } else if (g_strcmp0(key, WIFI_CONFIG_HIDDEN) == 0) {
446                 gboolean hidden = FALSE;
447                 if (g_strcmp0(value, "TRUE") == 0)
448                         hidden = TRUE;
449                 g_key_file_set_boolean(keyfile, group_name, key, hidden);
450         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY) == 0) {
451                 g_key_file_set_string(keyfile, group_name, key, value);
452         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_CACERT) == 0) {
453                 g_key_file_set_string(keyfile, group_name, key, value);
454         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_CLIENTCERT) == 0) {
455                 g_key_file_set_string(keyfile, group_name, key, value);
456         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_PRIVATEKEY) == 0) {
457                 g_key_file_set_string(keyfile, group_name, key, value);
458         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_IDENTITY) == 0) {
459                 g_key_file_set_string(keyfile, group_name, key, value);
460         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_TYPE) == 0) {
461                 g_key_file_set_string(keyfile, group_name, key, value);
462         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_AUTH_TYPE) == 0) {
463                 g_key_file_set_string(keyfile, group_name, key, value);
464         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_SUBJECT_MATCH) == 0) {
465                 g_key_file_set_string(keyfile, group_name, key, value);
466         } else {
467                 ERR("key[%s] is not supported", key);
468                 ret = FALSE;
469         }
470
471         _save_configuration(config_id, keyfile);
472
473         g_key_file_free(keyfile);
474         g_free(group_name);
475
476         return ret;
477 }
478
479 static gboolean _get_field(const gchar *config_id, const gchar *key, gchar **value)
480 {
481         GKeyFile *keyfile;
482         gchar *group_name;
483         gchar *val = NULL;
484         gboolean hidden = FALSE;
485         gboolean ret = FALSE;
486
487         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
488         if (ret != TRUE) {
489                 ERR("Fail to get_wifi_config_group_name");
490                 return FALSE;
491         }
492         DBG("group_name %s", group_name);
493
494         keyfile = __get_configuration_keyfile(group_name);
495         if (keyfile == NULL) {
496                 ERR("Fail to __get_configuration_keyfile");
497                 g_free(group_name);
498                 return FALSE;
499         }
500
501         if (g_strcmp0(key, WIFI_CONFIG_NAME) == 0) {
502                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_NAME, NULL);
503         } else if (g_strcmp0(key, WIFI_CONFIG_PASSPHRASE) == 0) {
504                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_PASSPHRASE, NULL);
505         } else if (g_strcmp0(key, WIFI_CONFIG_PROXY_SERVER) == 0) {
506                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_PROXY_SERVER, NULL);
507         } else if (g_strcmp0(key, WIFI_CONFIG_HIDDEN) == 0) {
508                 hidden = g_key_file_get_boolean(keyfile, group_name, WIFI_CONFIG_HIDDEN, NULL);
509                 if (hidden)
510                         val = g_strdup("TRUE");
511                 else
512                         val = g_strdup("FALSE");
513         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY) == 0) {
514                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY, NULL);
515         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_CACERT) == 0) {
516                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_CACERT, NULL);
517         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_CLIENTCERT) == 0) {
518                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_CLIENTCERT, NULL);
519         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_PRIVATEKEY) == 0) {
520                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_PRIVATEKEY, NULL);
521         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_IDENTITY) == 0) {
522                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_IDENTITY, NULL);
523         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_TYPE) == 0) {
524                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_TYPE, NULL);
525         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_AUTH_TYPE) == 0) {
526                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_AUTH_TYPE, NULL);
527         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_SUBJECT_MATCH) == 0) {
528                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_SUBJECT_MATCH, NULL);
529         } else if (g_strcmp0(key, WIFI_CONFIG_FAILURE) == 0) {
530                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_FAILURE, NULL);
531         } else {
532                 ERR("Invalid key[%s]", key);
533                 val = g_strdup("NOTSUPPORTED");
534         }
535
536         *value = g_strdup(val);
537         g_free(val);
538
539         g_key_file_free(keyfile);
540         g_free(group_name);
541
542         return TRUE;
543 }
544
545 static GSList *_get_list(void)
546 {
547         GSList *list = NULL;
548         struct dirent *dp = NULL;
549         DIR *dir;
550
551         dir = opendir(CONNMAN_STORAGE);
552         if (dir == NULL) {
553                 ERR("Cannot open dir %s", CONNMAN_STORAGE);
554                 return NULL;
555         }
556
557         while ((dp = readdir(dir)) != NULL) {
558                 if (g_strcmp0(dp->d_name, ".") == 0 || g_strcmp0(dp->d_name, "..") == 0 ||
559                                 strncmp(dp->d_name, WIFI_CONFIG_PREFIX, strlen(WIFI_CONFIG_PREFIX)) != 0) {
560                         continue;
561                 }
562                 gchar *config_id = g_strdup(dp->d_name + WIFI_PREFIX_LENGTH);
563                 list = g_slist_append(list, g_strdup(config_id));
564                 g_free(config_id);
565         }
566         closedir(dir);
567
568         return list;
569 }
570
571 gboolean wifi_config_get_config_id(const gchar *service_profile, gchar **config_id)
572 {
573         gboolean ret = FALSE;
574         gchar *val = NULL;
575
576         if ((service_profile == NULL) || (config_id == NULL)) {
577                 ERR("Invalid parameter");
578                 return FALSE;
579         }
580
581         ret = __get_config_id(service_profile, &val);
582         *config_id = g_strdup(val);
583         g_free(val);
584
585         return ret;
586 }
587
588 gboolean wifi_config_remove_configuration(const gchar *config_id)
589 {
590         gboolean ret = FALSE;
591
592         ret = _remove_configuration(config_id);
593
594         return ret;
595 }
596
597 static int __netconfig_hex_char_to_num(char c)
598 {
599         if (c >= '0' && c <= '9')
600                 return c - '0';
601
602         if (c >= 'a' && c <= 'f')
603                 return c - 'a' + 10;
604
605         if (c >= 'A' && c <= 'F')
606                 return c - 'A' + 10;
607
608         return -1;
609 }
610
611 static int __netconfig_hex_to_byte(const char *hex)
612 {
613         int a, b;
614
615         a = __netconfig_hex_char_to_num(*hex++);
616         if (a < 0)
617                 return -1;
618
619         b = __netconfig_hex_char_to_num(*hex++);
620         if (b < 0)
621                 return -1;
622
623         return (a << 4) | b;
624 }
625
626 static int __netconfig_hex_str_to_bin(const char *hex, unsigned char *buf, size_t len)
627 {
628         size_t i;
629         int a;
630         const char *ipos = hex;
631         unsigned char *opos = buf;
632
633         for (i = 0; i < len; i++) {
634                 a = __netconfig_hex_to_byte(ipos);
635                 if (a < 0)
636                         return -1;
637
638                 *opos++ = a;
639                 ipos += 2;
640         }
641
642         return 0;
643 }
644
645 static int __netconfig_byte_to_txt(const unsigned char *src, char **dst, int src_len)
646 {
647         int dst_length = 0;
648         int i = 0;
649         char *buf = NULL;
650
651         if (src_len <= 0) {
652                 ERR("Invalid parameter.");
653                 return -1;
654         }
655
656         *dst = (char *) g_try_malloc0((2*src_len)+1);
657         if (!(*dst)) {
658                 ERR("failed to allocate memory to buffer.");
659                 return -1;
660         }
661
662         buf = (*dst);
663
664         for (i = 0; i < src_len; i++) {
665                 snprintf(buf, 3, "%02x", src[i]);
666                 buf += 2;
667                 dst_length += 2;
668         }
669
670         return dst_length;
671 }
672
673 static int __netconfig_unpack_ay_malloc(unsigned char **dst, GVariantIter *iter)
674 {
675         GVariantIter *iter_copy = NULL;
676         int length = 0;
677         char tmp = 0;
678         unsigned char *tmp_dst = NULL;
679
680         if (!dst || *dst || !iter) {
681                 ERR("Invalid parameter");
682                 return 0;
683         }
684
685         iter_copy = g_variant_iter_copy(iter);
686
687         while (g_variant_iter_loop(iter, "y", &tmp))
688                 length++;
689         g_variant_iter_free(iter);
690
691         tmp_dst = (unsigned char *)g_try_malloc0(length + 1);
692         if (!tmp_dst) {
693                 ERR("failed to allocate memory");
694                 return 0;
695         }
696
697         length = 0;
698         while (g_variant_iter_loop(iter_copy, "y", &tmp_dst[length]))
699                 length++;
700         g_variant_iter_free(iter_copy);
701
702         if (length == 0) {
703                 g_free(tmp_dst);
704                 tmp_dst = NULL;
705         } else {
706                 tmp_dst[length] = '\0';
707         }
708
709         *dst = tmp_dst;
710         DBG("Length [%d]", length);
711         return length;
712 }
713
714 gboolean _add_vsie(int frame_id, const char* vsie)
715 {
716         GVariant *params = NULL;
717         GVariant *message = NULL;
718         GVariantBuilder *bytearray_builder = NULL;
719         char *if_path;
720         int i = 0;
721         size_t vsie_len = 0;
722
723         unsigned char *bytearray = NULL;
724         size_t bytearray_len = 0;
725
726         if (frame_id >= NETCONFIG_VSIE_FRAME_MAX) {
727                 DBG("Invalid parameter, frame-id: %d", frame_id);
728                 return FALSE;
729         }
730
731         vsie_len = strlen(vsie);
732         if (vsie_len == 0) {
733                 DBG("vsie length is zero");
734                 return FALSE;
735         }
736
737         bytearray_len = (vsie_len % 2) ? ((vsie_len / 2) + 1) : (vsie_len / 2);
738
739         bytearray = (unsigned char *) g_try_malloc0(bytearray_len);
740         if (bytearray == NULL) {
741                 DBG("Failed to allocate memory to bytearray");
742                 return FALSE;
743         }
744
745         if (__netconfig_hex_str_to_bin(vsie, bytearray, bytearray_len) < 0) {
746                 DBG("invalid vsie string");
747                 g_free(bytearray);
748                 return FALSE;
749         }
750
751         bytearray_builder = g_variant_builder_new(G_VARIANT_TYPE("ay"));
752         for (i = 0; i < bytearray_len; i++)
753                 g_variant_builder_add(bytearray_builder, "y", bytearray[i]);
754
755         params = g_variant_new("(iay)", frame_id, bytearray_builder);
756         g_variant_builder_unref(bytearray_builder);
757
758         if_path = netconfig_wifi_get_supplicant_interface();
759
760         if (if_path == NULL) {
761                 ERR("Fail to get wpa_supplicant DBus path");
762                 g_free(bytearray);
763                 return FALSE;
764         }
765
766         message = netconfig_supplicant_invoke_dbus_method(SUPPLICANT_SERVICE,
767                         if_path, SUPPLICANT_INTERFACE ".Interface", "VendorElemAdd", params);
768
769         g_free(if_path);
770         if (message == NULL) {
771                 ERR("Failed to send command to wpa_supplicant");
772                 g_free(bytearray);
773                 return FALSE;
774         }
775
776         DBG("Succeeded to add vsie: Frame ID[%d], VSIE[%s]", frame_id, vsie);
777
778         g_free(bytearray);
779         return TRUE;
780 }
781
782 gboolean _get_vsie(int frame_id, char **vsie)
783 {
784         GVariant *params = NULL;
785         GVariant *message = NULL;
786         char *if_path;
787
788         if (frame_id >= NETCONFIG_VSIE_FRAME_MAX) {
789                 DBG("Invalid parameter, frame-id: %d", frame_id);
790                 return FALSE;
791         }
792
793         if_path = netconfig_wifi_get_supplicant_interface();
794         if (if_path == NULL) {
795                 ERR("Fail to get wpa_supplicant DBus path");
796                 return FALSE;
797         }
798
799         params = g_variant_new("(i)", frame_id);
800
801         message = netconfig_supplicant_invoke_dbus_method(SUPPLICANT_SERVICE,
802                         if_path, SUPPLICANT_INTERFACE ".Interface", "VendorElemGet", params);
803
804         g_free(if_path);
805         if (message == NULL) {
806                 ERR("Failed to send command to wpa_supplicant");
807                 return FALSE;
808         } else {
809                 GVariantIter *iter = NULL;
810                 unsigned char *vsie_bytes = NULL;
811                 int vsie_len = 0;
812                 int ret = 0;
813
814                 g_variant_get(message, "(ay)", &iter);
815                 if (iter == NULL) {
816                         ERR("vsie is not present");
817                         return FALSE;
818                 }
819
820                 vsie_len = __netconfig_unpack_ay_malloc(&vsie_bytes, iter);
821                 if (vsie_bytes == NULL) {
822                         ERR("vsie_bytes not allocated");
823                         return FALSE;
824                 }
825
826                 ret = __netconfig_byte_to_txt(vsie_bytes, vsie, vsie_len);
827                 if (ret < 0) {
828                         g_free(vsie_bytes);
829                         ERR("vsie not allocated.");
830                         return FALSE;
831                 }
832
833                 g_free(vsie_bytes);
834         }
835
836         ERR("Succeeded to get vsie: Frame ID[%d], VSIE[%s]", frame_id, *vsie);
837
838         return TRUE;
839
840 }
841
842 gboolean _remove_vsie(int frame_id, const char *vsie)
843 {
844         GVariant *params = NULL;
845         GVariant *message = NULL;
846         GVariantBuilder *bytearray_builder = NULL;
847         char *if_path;
848         int i = 0;
849         size_t vsie_len = 0;
850
851         unsigned char *bytearray = NULL;
852         size_t bytearray_len = 0;
853
854         if (frame_id >= NETCONFIG_VSIE_FRAME_MAX) {
855                 DBG("Invalid parameter, frame-id: %d", frame_id);
856                 return FALSE;
857         }
858
859         vsie_len = strlen(vsie);
860         if (vsie_len == 0) {
861                 DBG("vsie length is zero");
862                 return FALSE;
863         }
864
865         bytearray_len = (vsie_len % 2) ? ((vsie_len / 2) + 1) : (vsie_len / 2);
866
867         bytearray = (unsigned char *) g_try_malloc0(bytearray_len);
868         if (bytearray == NULL) {
869                 DBG("Failed to allocate memory to bytearray");
870                 return FALSE;
871         }
872
873         if (__netconfig_hex_str_to_bin(vsie, bytearray, bytearray_len) < 0) {
874                 DBG("invalid vsie string");
875                 g_free(bytearray);
876                 return FALSE;
877         }
878
879         bytearray_builder = g_variant_builder_new(G_VARIANT_TYPE("ay"));
880         for (i = 0; i < bytearray_len; i++)
881                 g_variant_builder_add(bytearray_builder, "y", bytearray[i]);
882
883         params = g_variant_new("(iay)", frame_id, bytearray_builder);
884         g_variant_builder_unref(bytearray_builder);
885
886         if_path = netconfig_wifi_get_supplicant_interface();
887         if (if_path == NULL) {
888                 ERR("Fail to get wpa_supplicant DBus path");
889                 g_free(bytearray);
890                 return FALSE;
891         }
892
893         message = netconfig_supplicant_invoke_dbus_method(SUPPLICANT_SERVICE,
894                         if_path, SUPPLICANT_INTERFACE ".Interface", "VendorElemRem", params);
895
896         g_free(if_path);
897         if (message == NULL) {
898                 ERR("Failed to send command to wpa_supplicant");
899                 g_free(bytearray);
900                 return FALSE;
901         }
902
903         DBG("Succeeded to remove vsie: Frame ID[%d], VSIE[%s]", frame_id, vsie);
904
905         g_free(bytearray);
906         return TRUE;
907 }
908
909 /* dbus method */
910 gboolean handle_get_config_ids(Wifi *wifi, GDBusMethodInvocation *context)
911 {
912         guint i = 0;
913         GSList *config_ids = NULL;
914         guint length;
915         gchar **result = NULL;
916
917         g_return_val_if_fail(wifi != NULL, FALSE);
918
919         config_ids = _get_list();
920         if (config_ids == NULL) {
921                 ERR("Fail to get config list");
922                 netconfig_error_no_profile(context);
923                 return FALSE;
924         }
925
926         length = g_slist_length(config_ids);
927         result = g_new0(gchar *, length + 1);
928         for (i = 0; i < length; i++) {
929                 gchar *config_id = g_slist_nth_data(config_ids, i);
930                 result[i] = g_strdup(config_id);
931         }
932
933         config_ids = g_slist_nth(config_ids, 0);
934         g_slist_free_full(config_ids, g_free);
935
936         wifi_complete_get_config_ids(wifi, context, (const gchar * const *)result);
937
938         for (i = 0; i < length; i++)
939                 if (result[i])
940                         g_free(result[i]);
941
942         if (result)
943                 g_free(result);
944
945         return TRUE;
946 }
947
948 gboolean handle_load_configuration(Wifi *wifi, GDBusMethodInvocation *context,
949                 const gchar *config_id)
950 {
951         gboolean ret = FALSE;
952         GVariantBuilder *b = NULL;
953         struct wifi_config *conf = NULL;
954
955         g_return_val_if_fail(wifi != NULL, FALSE);
956
957         conf = g_new0(struct wifi_config, 1);
958
959         ret = _load_configuration(config_id, conf);
960         if (ret != TRUE) {
961                 g_free(conf);
962                 ERR("Fail to _load_configuration");
963                 netconfig_error_no_profile(context);
964                 return FALSE;
965         }
966
967         b = g_variant_builder_new(G_VARIANT_TYPE("a{sv}"));
968         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_NAME, g_variant_new_string(conf->name));
969         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_SECURITY_TYPE, g_variant_new_string(conf->security_type));
970         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_HIDDEN, g_variant_new_string(conf->is_hidden));
971
972         if (conf->proxy_address != NULL)
973                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_PROXYADDRESS, g_variant_new_string(conf->proxy_address));
974         else
975                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_PROXYADDRESS, g_variant_new_string("NONE"));
976
977         if (conf->last_error != NULL)
978                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_FAILURE, g_variant_new_string(conf->last_error));
979         else
980                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_FAILURE, g_variant_new_string("ERROR_NONE"));
981
982         g_free(conf->proxy_address);
983         g_free(conf->last_error);
984         g_free(conf->name);
985         g_free(conf->security_type);
986         g_free(conf->is_hidden);
987         g_free(conf);
988
989         wifi_complete_load_configuration(wifi, context, g_variant_builder_end(b));
990         g_variant_builder_unref(b);
991         return TRUE;
992 }
993
994 gboolean handle_save_configuration(Wifi *wifi, GDBusMethodInvocation *context,
995                 const gchar *config_id, GVariant *configuration)
996 {
997         gboolean ret = FALSE;
998         struct wifi_config *conf = NULL;
999         GKeyFile *keyfile = NULL;
1000         GVariantIter *iter;
1001         GVariant *value;
1002         gchar *field;
1003         gchar *group_name = NULL;
1004
1005         if ((wifi == NULL) || (config_id == NULL) || (configuration == NULL)) {
1006                 ERR("Invalid parameter");
1007                 netconfig_error_invalid_parameter(context);
1008                 return FALSE;
1009         }
1010
1011         conf = g_new0(struct wifi_config, 1);
1012
1013         g_variant_get(configuration, "a{sv}", &iter);
1014         while (g_variant_iter_loop(iter, "{sv}", &field, &value)) {
1015                 if (g_strcmp0(field, WIFI_CONFIG_NAME) == 0) {
1016                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1017                                 conf->name = g_strdup(g_variant_get_string(value, NULL));
1018                                 DBG("name [%s]", conf->name);
1019                         } else {
1020                                 conf->name = NULL;
1021                         }
1022                 } else if (g_strcmp0(field, WIFI_CONFIG_SSID) == 0) {
1023                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1024                                 conf->ssid = g_strdup(g_variant_get_string(value, NULL));
1025                                 DBG("ssid [%s]", conf->ssid);
1026                         } else {
1027                                 conf->ssid = NULL;
1028                         }
1029                 } else if (g_strcmp0(field, WIFI_CONFIG_PASSPHRASE) == 0) {
1030                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1031                                 conf->passphrase = g_strdup(g_variant_get_string(value, NULL));
1032                                 DBG("passphrase []");
1033                         } else {
1034                                 conf->passphrase = NULL;
1035                         }
1036                 } else if (g_strcmp0(field, WIFI_CONFIG_HIDDEN) == 0) {
1037                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1038                                 conf->is_hidden = g_strdup(g_variant_get_string(value, NULL));
1039                                 DBG("is_hidden [%s]", conf->is_hidden);
1040                         } else {
1041                                 conf->is_hidden = NULL;
1042                         }
1043                 } else if (g_strcmp0(field, WIFI_CONFIG_PROXYADDRESS) == 0) {
1044                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1045                                 conf->proxy_address = g_strdup(g_variant_get_string(value, NULL));
1046                                 DBG("proxy_address [%s]", conf->proxy_address);
1047                         } else {
1048                                 conf->proxy_address = NULL;
1049                         }
1050                 }
1051         }
1052         conf->favorite = TRUE;
1053         conf->autoconnect = TRUE;
1054
1055         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
1056         if (ret != TRUE) {
1057                 g_free(conf->name);
1058                 g_free(conf->ssid);
1059                 g_free(conf->passphrase);
1060                 g_free(conf->is_hidden);
1061                 g_free(conf->proxy_address);
1062                 g_free(conf);
1063                 ERR("Fail to get_wifi_config_group_name");
1064                 return FALSE;
1065         }
1066
1067         keyfile = g_key_file_new();
1068         g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_NAME, conf->name);
1069         g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_SSID, conf->ssid);
1070
1071         if (conf->passphrase != NULL)
1072                 g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_PASSPHRASE, conf->passphrase);
1073
1074         g_key_file_set_boolean(keyfile, group_name, WIFI_CONFIG_FAVORITE, conf->favorite);
1075         g_key_file_set_boolean(keyfile, group_name, WIFI_CONFIG_AUTOCONNECT, conf->autoconnect);
1076
1077         /* Optional field */
1078         if (conf->proxy_address != NULL) {
1079                 g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_PROXY_METHOD, "manual");
1080                 g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_PROXY_SERVER, conf->proxy_address);
1081         }
1082
1083         if (conf->is_hidden != NULL) {
1084                 gboolean hidden = FALSE;
1085                 if (g_strcmp0(conf->is_hidden, "TRUE") == 0)
1086                         hidden = TRUE;
1087                 g_key_file_set_boolean(keyfile, group_name, WIFI_CONFIG_HIDDEN, hidden);
1088         }
1089
1090         ret = _save_configuration(config_id, keyfile);
1091         if (ret == TRUE) {
1092                 INFO("Success to save configuration [%s]", config_id);
1093                 wifi_complete_save_configuration(wifi, context);
1094         } else {
1095                 INFO("Fail to save configuration [%s]", config_id);
1096                 netconfig_error_dbus_method_return(context, NETCONFIG_ERROR_INTERNAL, "FailSaveConfiguration");
1097         }
1098
1099         g_key_file_free(keyfile);
1100         g_free(group_name);
1101         g_free(conf->name);
1102         g_free(conf->ssid);
1103         g_free(conf->passphrase);
1104         g_free(conf->is_hidden);
1105         g_free(conf->proxy_address);
1106         g_free(conf);
1107
1108         g_variant_iter_free(iter);
1109
1110         return ret;
1111 }
1112
1113 gboolean handle_load_eap_configuration(Wifi *wifi, GDBusMethodInvocation *context,
1114                 const gchar *config_id)
1115 {
1116         gboolean ret = FALSE;
1117         GVariantBuilder *b = NULL;
1118         struct wifi_config *conf = NULL;
1119
1120         g_return_val_if_fail(wifi != NULL, FALSE);
1121
1122         conf = g_new0(struct wifi_config, 1);
1123         conf->eap_config = g_new0(struct wifi_eap_config, 1);
1124
1125         ret = _load_configuration(config_id, conf);
1126         if (ret != TRUE) {
1127                 g_free(conf->eap_config);
1128                 g_free(conf);
1129                 ERR("Fail to _load_configuration");
1130                 netconfig_error_no_profile(context);
1131                 return FALSE;
1132         }
1133
1134         b = g_variant_builder_new(G_VARIANT_TYPE("a{sv}"));
1135         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_NAME, g_variant_new_string(conf->name));
1136         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_SECURITY_TYPE, g_variant_new_string(conf->security_type));
1137         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_HIDDEN, g_variant_new_string(conf->is_hidden));
1138         if (conf->proxy_address != NULL)
1139                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_PROXYADDRESS, g_variant_new_string(conf->proxy_address));
1140         else
1141                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_PROXYADDRESS, g_variant_new_string("NONE"));
1142
1143         if (conf->last_error != NULL)
1144                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_FAILURE, g_variant_new_string(conf->last_error));
1145         else
1146                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_FAILURE, g_variant_new_string("ERROR_NONE"));
1147
1148         if (conf->eap_config != NULL) {
1149                 if (conf->eap_config->anonymous_identity != NULL)
1150                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY, g_variant_new_string(conf->eap_config->anonymous_identity));
1151                 else
1152                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY, g_variant_new_string("NONE"));
1153
1154                 if (conf->eap_config->ca_cert != NULL)
1155                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_CACERT, g_variant_new_string(conf->eap_config->ca_cert));
1156                 else
1157                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_CACERT, g_variant_new_string("NONE"));
1158
1159                 if (conf->eap_config->client_cert != NULL)
1160                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_CLIENTCERT, g_variant_new_string(conf->eap_config->client_cert));
1161                 else
1162                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_CLIENTCERT, g_variant_new_string("NONE"));
1163
1164                 if (conf->eap_config->private_key != NULL)
1165                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_PRIVATEKEY, g_variant_new_string(conf->eap_config->private_key));
1166                 else
1167                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_PRIVATEKEY, g_variant_new_string("NONE"));
1168
1169                 if (conf->eap_config->identity != NULL)
1170                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_IDENTITY, g_variant_new_string(conf->eap_config->identity));
1171                 else
1172                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_IDENTITY, g_variant_new_string("NONE"));
1173
1174                 if (conf->eap_config->eap_type != NULL)
1175                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_TYPE, g_variant_new_string(conf->eap_config->eap_type));
1176                 else
1177                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_TYPE, g_variant_new_string("NONE"));
1178
1179                 if (conf->eap_config->eap_auth_type != NULL)
1180                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_AUTH_TYPE, g_variant_new_string(conf->eap_config->eap_auth_type));
1181                 else
1182                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_AUTH_TYPE, g_variant_new_string("NONE"));
1183
1184                 if (conf->eap_config->subject_match != NULL)
1185                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_SUBJECT_MATCH, g_variant_new_string(conf->eap_config->subject_match));
1186                 else
1187                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_SUBJECT_MATCH, g_variant_new_string("NONE"));
1188         }
1189
1190         __free_wifi_configuration(conf);
1191
1192         wifi_complete_load_eap_configuration(wifi, context, g_variant_builder_end(b));
1193         g_variant_builder_unref(b);
1194         return TRUE;
1195 }
1196
1197 gboolean handle_save_eap_configuration(Wifi *wifi, GDBusMethodInvocation *context,
1198                 const gchar *config_id, GVariant *configuration)
1199 {
1200         gboolean ret = FALSE;
1201         struct wifi_config *conf = NULL;
1202         GKeyFile *keyfile = NULL;
1203         GVariantIter *iter;
1204         GVariant *value;
1205         gchar *field;
1206         gchar *group_name = NULL;
1207
1208         if ((wifi == NULL) || (config_id == NULL) || (configuration == NULL)) {
1209                 ERR("Invalid parameter");
1210                 netconfig_error_invalid_parameter(context);
1211                 return FALSE;
1212         }
1213
1214         conf = g_new0(struct wifi_config, 1);
1215         conf->eap_config = g_new0(struct wifi_eap_config, 1);
1216
1217         g_variant_get(configuration, "a{sv}", &iter);
1218         while (g_variant_iter_loop(iter, "{sv}", &field, &value)) {
1219                 if (g_strcmp0(field, WIFI_CONFIG_NAME) == 0) {
1220                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1221                                 conf->name = g_strdup(g_variant_get_string(value, NULL));
1222                                 DBG("name [%s]", conf->name);
1223                         } else {
1224                                 conf->name = NULL;
1225                         }
1226                 } else if (g_strcmp0(field, WIFI_CONFIG_SSID) == 0) {
1227                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1228                                 conf->ssid = g_strdup(g_variant_get_string(value, NULL));
1229                                 DBG("ssid [%s]", conf->ssid);
1230                         } else {
1231                                 conf->ssid = NULL;
1232                         }
1233                 } else if (g_strcmp0(field, WIFI_CONFIG_PASSPHRASE) == 0) {
1234                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1235                                 conf->passphrase = g_strdup(g_variant_get_string(value, NULL));
1236                                 DBG("passphrase [%s]", conf->passphrase);
1237                         } else {
1238                                 conf->passphrase = NULL;
1239                         }
1240                 } else if (g_strcmp0(field, WIFI_CONFIG_HIDDEN) == 0) {
1241                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1242                                 conf->is_hidden = g_strdup(g_variant_get_string(value, NULL));
1243                                 DBG("is_hidden [%s]", conf->is_hidden);
1244                         } else {
1245                                 conf->is_hidden = NULL;
1246                         }
1247                 } else if (g_strcmp0(field, WIFI_CONFIG_PROXYADDRESS) == 0) {
1248                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1249                                 conf->proxy_address = g_strdup(g_variant_get_string(value, NULL));
1250                                 DBG("proxy_address [%s]", conf->proxy_address);
1251                         } else {
1252                                 conf->proxy_address = NULL;
1253                         }
1254                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY) == 0) {
1255                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1256                                 conf->eap_config->anonymous_identity = g_strdup(g_variant_get_string(value, NULL));
1257                                 DBG("anonymous_identity [%s]", conf->eap_config->anonymous_identity);
1258                         } else {
1259                                 conf->eap_config->anonymous_identity = NULL;
1260                         }
1261                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_CACERT) == 0) {
1262                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1263                                 conf->eap_config->ca_cert = g_strdup(g_variant_get_string(value, NULL));
1264                                 DBG("ca_cert [%s]", conf->eap_config->ca_cert);
1265                         } else {
1266                                 conf->eap_config->ca_cert = NULL;
1267                         }
1268                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_CLIENTCERT) == 0) {
1269                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1270                                 conf->eap_config->client_cert = g_strdup(g_variant_get_string(value, NULL));
1271                                 DBG("client_cert [%s]", conf->eap_config->client_cert);
1272                         } else {
1273                                 conf->eap_config->client_cert = NULL;
1274                         }
1275                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_PRIVATEKEY) == 0) {
1276                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1277                                 conf->eap_config->private_key = g_strdup(g_variant_get_string(value, NULL));
1278                                 DBG("private_key [%s]", conf->eap_config->private_key);
1279                         } else {
1280                                 conf->eap_config->private_key = NULL;
1281                         }
1282                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_IDENTITY) == 0) {
1283                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1284                                 conf->eap_config->identity = g_strdup(g_variant_get_string(value, NULL));
1285                                 DBG("identity [%s]", conf->eap_config->identity);
1286                         } else {
1287                                 conf->eap_config->identity = NULL;
1288                         }
1289                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_TYPE) == 0) {
1290                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1291                                 conf->eap_config->eap_type = g_strdup(g_variant_get_string(value, NULL));
1292                                 DBG("eap_type [%s]", conf->eap_config->eap_type);
1293                         } else {
1294                                 conf->eap_config->eap_type = NULL;
1295                         }
1296                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_AUTH_TYPE) == 0) {
1297                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1298                                 conf->eap_config->eap_auth_type = g_strdup(g_variant_get_string(value, NULL));
1299                                 DBG("eap_auth_type [%s]", conf->eap_config->eap_auth_type);
1300                         } else {
1301                                 conf->eap_config->eap_auth_type = NULL;
1302                         }
1303                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_SUBJECT_MATCH) == 0) {
1304                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
1305                                 conf->eap_config->subject_match = g_strdup(g_variant_get_string(value, NULL));
1306                                 DBG("subject_match [%s]", conf->eap_config->subject_match);
1307                         } else {
1308                                 conf->eap_config->subject_match = NULL;
1309                         }
1310                 }
1311         }
1312         conf->favorite = TRUE;
1313         conf->autoconnect = TRUE;
1314
1315         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
1316         if (ret != TRUE) {
1317                 __free_wifi_configuration(conf);
1318                 ERR("Fail to get_wifi_config_group_name");
1319                 return FALSE;
1320         }
1321
1322         keyfile = g_key_file_new();
1323         g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_NAME, conf->name);
1324         g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_SSID, conf->ssid);
1325
1326         if (conf->passphrase != NULL)
1327                 g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_PASSPHRASE, conf->passphrase);
1328
1329         g_key_file_set_boolean(keyfile, group_name, WIFI_CONFIG_FAVORITE, conf->favorite);
1330         g_key_file_set_boolean(keyfile, group_name, WIFI_CONFIG_AUTOCONNECT, conf->autoconnect);
1331
1332         /* Optional field */
1333         if (conf->proxy_address != NULL) {
1334                 g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_PROXY_METHOD, "manual");
1335                 g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_PROXY_SERVER, conf->proxy_address);
1336         }
1337
1338         if (conf->is_hidden != NULL) {
1339                 gboolean hidden = FALSE;
1340                 if (g_strcmp0(conf->is_hidden, "TRUE") == 0)
1341                         hidden = TRUE;
1342                 g_key_file_set_boolean(keyfile, group_name, WIFI_CONFIG_HIDDEN, hidden);
1343         }
1344
1345         if (conf->eap_config->anonymous_identity != NULL)
1346                 g_key_file_set_string(keyfile, group_name,
1347                         WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY, conf->eap_config->anonymous_identity);
1348
1349         if (conf->eap_config->ca_cert != NULL)
1350                 g_key_file_set_string(keyfile, group_name,
1351                         WIFI_CONFIG_EAP_CACERT, conf->eap_config->ca_cert);
1352
1353         if (conf->eap_config->client_cert != NULL)
1354                 g_key_file_set_string(keyfile, group_name,
1355                         WIFI_CONFIG_EAP_CLIENTCERT, conf->eap_config->client_cert);
1356
1357         if (conf->eap_config->private_key != NULL)
1358                 g_key_file_set_string(keyfile, group_name,
1359                         WIFI_CONFIG_EAP_PRIVATEKEY, conf->eap_config->private_key);
1360
1361         if (conf->eap_config->identity != NULL)
1362                 g_key_file_set_string(keyfile, group_name,
1363                         WIFI_CONFIG_EAP_IDENTITY, conf->eap_config->identity);
1364
1365         if (conf->eap_config->eap_type != NULL)
1366                 g_key_file_set_string(keyfile, group_name,
1367                         WIFI_CONFIG_EAP_TYPE, conf->eap_config->eap_type);
1368
1369         if (conf->eap_config->eap_auth_type != NULL)
1370                 g_key_file_set_string(keyfile, group_name,
1371                         WIFI_CONFIG_EAP_AUTH_TYPE, conf->eap_config->eap_auth_type);
1372
1373         if (conf->eap_config->subject_match != NULL)
1374                 g_key_file_set_string(keyfile, group_name,
1375                         WIFI_CONFIG_EAP_SUBJECT_MATCH, conf->eap_config->subject_match);
1376
1377         ret = _save_configuration(config_id, keyfile);
1378         if (ret == TRUE) {
1379                 INFO("Success to save eap configuration [%s]", config_id);
1380                 wifi_complete_save_eap_configuration(wifi, context);
1381         } else {
1382                 INFO("Fail to save eap configuration [%s]", config_id);
1383                 netconfig_error_dbus_method_return(context, NETCONFIG_ERROR_INTERNAL, "FailSaveEapConfiguration");
1384         }
1385
1386         g_key_file_free(keyfile);
1387         g_free(group_name);
1388         __free_wifi_configuration(conf);
1389
1390         g_variant_iter_free(iter);
1391
1392         return ret;
1393 }
1394
1395 gboolean handle_remove_configuration(Wifi *wifi, GDBusMethodInvocation *context, const gchar *config_id)
1396 {
1397         gboolean ret = FALSE;
1398
1399         if ((wifi == NULL) || (config_id == NULL)) {
1400                 ERR("Invalid parameter");
1401                 netconfig_error_invalid_parameter(context);
1402                 return FALSE;
1403         }
1404
1405         ret = _remove_configuration(config_id);
1406         if (ret != TRUE) {
1407                 /* no configuration or error */
1408                 ERR("No [%s] configuration", config_id);
1409                 netconfig_error_no_profile(context);
1410                 return FALSE;
1411         }
1412
1413         wifi_complete_remove_configuration(wifi, context);
1414         return ret;
1415 }
1416
1417 /* config field key / value */
1418 /*
1419  * [wifi_macaddress_config_id]
1420  * Name=name (mandatory)
1421  * SSID=SSID (mandatory)
1422  * Frequency=2462 (X)
1423  * Favorite=true (X)
1424  * AutoConnect=true (Default true)
1425  * Modified=2015-03-20 (X)
1426  * IPv4.method=manual (O)
1427  * IPv4.DHCP.LastAddress=192.0.0.1 (X)
1428  * IPv6.method=auto (X)
1429  * IPv6.privacy=disabled (X)
1430  * IPv4.netmask_prefixlen=24 (X)
1431  * IPv4.local_address=192.0.0.1 (O)
1432  * IPv4.gateway=192.0.0.1 (O ? X ?)
1433  * Nameservers=192.168.43.22; (O)
1434  * Proxy.Method=manual (O)
1435  * Proxy.Servers=trst.com:8888; (O)
1436  */
1437 gboolean handle_set_config_field(Wifi *wifi, GDBusMethodInvocation *context,
1438                 const gchar *config_id, const gchar *key, const gchar *value)
1439 {
1440         gboolean ret = FALSE;
1441         gchar *keyfile_key = NULL;
1442
1443         g_return_val_if_fail(wifi != NULL, FALSE);
1444         g_return_val_if_fail(config_id != NULL, FALSE);
1445         g_return_val_if_fail(key != NULL, FALSE);
1446
1447         DBG("Key[%s] Value[%d]", key, value);
1448
1449         if (g_strcmp0(key, WIFI_CONFIG_PROXYADDRESS) == 0) {
1450                 ret = _set_field(config_id, WIFI_CONFIG_PROXY_METHOD, "manual");
1451                 if (!ret) {
1452                         ERR("Fail to [%s]set_wifi_config_field(%s/manual)", config_id, WIFI_CONFIG_PROXY_METHOD);
1453                         netconfig_error_invalid_parameter(context);
1454                         return FALSE;
1455                 }
1456                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_PROXY_SERVER);
1457         } else if (g_strcmp0(key, WIFI_CONFIG_HIDDEN) == 0) {
1458                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_HIDDEN);
1459         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY) == 0) {
1460                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY);
1461         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_CACERT) == 0) {
1462                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_CACERT);
1463         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_CLIENTCERT) == 0) {
1464                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_CLIENTCERT);
1465         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_PRIVATEKEY) == 0) {
1466                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_PRIVATEKEY);
1467         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_IDENTITY) == 0) {
1468                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_IDENTITY);
1469         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_TYPE) == 0) {
1470                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_TYPE);
1471         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_AUTH_TYPE) == 0) {
1472                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_AUTH_TYPE);
1473         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_SUBJECT_MATCH) == 0) {
1474                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_SUBJECT_MATCH);
1475         } else {
1476                 ERR("Not supported key[%s]", key);
1477                 netconfig_error_invalid_parameter(context);
1478                 return FALSE;
1479         }
1480
1481         ret = _set_field(config_id, keyfile_key, (const gchar *)value);
1482         if (!ret) {
1483                 ERR("Fail to [%s]set_wifi_config_field(%s/%s)", config_id, key, value);
1484                 ret = FALSE;
1485         }
1486
1487         if (keyfile_key != NULL)
1488                 g_free(keyfile_key);
1489
1490         wifi_complete_set_config_field(wifi, context);
1491         return ret;
1492 }
1493
1494 gboolean handle_get_config_passphrase(Wifi *wifi, GDBusMethodInvocation *context, const gchar *config_id)
1495 {
1496         gboolean ret = FALSE;
1497         gchar *passphrase = NULL;
1498
1499         if ((wifi == NULL) || (config_id == NULL)) {
1500                 ERR("Invalid parameter");
1501                 netconfig_error_invalid_parameter(context);
1502                 return FALSE;
1503         }
1504
1505         ret = _get_field(config_id, WIFI_CONFIG_PASSPHRASE, &passphrase);
1506         if (!ret) {
1507                 ERR("Fail to [%s] _get_field(%s)", config_id, WIFI_CONFIG_PASSPHRASE);
1508                 netconfig_error_dbus_method_return(context, NETCONFIG_ERROR_INTERNAL, "OperationFailed");
1509                 return FALSE;
1510         }
1511
1512         wifi_complete_get_config_passphrase(wifi, context, passphrase);
1513         g_free(passphrase);
1514
1515         return ret;
1516 }
1517
1518 gboolean handle_add_vsie(Wifi *wifi, GDBusMethodInvocation *context,
1519                 int frame_id, const gchar *vsie)
1520 {
1521         DBG("Frame ID: [%d] VSIE: [%s]", frame_id, vsie);
1522
1523         g_return_val_if_fail(wifi != NULL, FALSE);
1524         g_return_val_if_fail(vsie != NULL, FALSE);
1525
1526         gboolean ret = FALSE;
1527
1528         ret = _add_vsie(frame_id, vsie);
1529         if (!ret) {
1530                 DBG("Failed to add vsie: %s", vsie);
1531                 netconfig_error_dbus_method_return(context, NETCONFIG_ERROR_INTERNAL, "OperationFailed");
1532                 return ret;
1533         }
1534
1535         wifi_complete_add_vsie(wifi, context);
1536         return ret;
1537 }
1538
1539 gboolean handle_get_vsie(Wifi *wifi, GDBusMethodInvocation *context,
1540                 int frame_id)
1541 {
1542         DBG("Frame ID: [%d]", frame_id);
1543
1544         g_return_val_if_fail(wifi != NULL, FALSE);
1545
1546         gboolean ret = FALSE;
1547         gchar *vsie = NULL;
1548
1549         ret = _get_vsie(frame_id, &vsie);
1550         if (!ret) {
1551                 DBG("Failed to get vsie for frame:[%d]", frame_id);
1552                 netconfig_error_dbus_method_return(context, NETCONFIG_ERROR_INTERNAL, "OperationFailed");
1553                 return ret;
1554         }
1555
1556         DBG("Received vsie: %s", vsie);
1557         wifi_complete_get_vsie(wifi, context, vsie);
1558
1559         return ret;
1560 }
1561
1562 gboolean handle_remove_vsie(Wifi *wifi, GDBusMethodInvocation *context,
1563                 int frame_id, const gchar *vsie)
1564 {
1565         DBG("Frame ID: [%d] VSIE: [%s]", frame_id, vsie);
1566
1567         g_return_val_if_fail(wifi != NULL, FALSE);
1568         g_return_val_if_fail(vsie != NULL, FALSE);
1569
1570         gboolean ret = FALSE;
1571
1572         ret = _remove_vsie(frame_id, vsie);
1573         if (!ret) {
1574                 DBG("Failed to remove vsie: %s", vsie);
1575                 netconfig_error_dbus_method_return(context, NETCONFIG_ERROR_INTERNAL, "OperationFailed");
1576                 return ret;
1577         }
1578
1579         wifi_complete_remove_vsie(wifi, context);
1580         return ret;
1581 }