Merge "Fix SVACE issues,(WGID: 2654,2649,2655,2650)" 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
36 #define CONNMAN_STORAGE         "/var/lib/connman"
37
38 #define WIFI_SECURITY_NONE              "none"
39 #define WIFI_SECURITY_WEP               "wep"
40 #define WIFI_SECURITY_WPA_PSK   "psk"
41 #define WIFI_SECURITY_EAP               "ieee8021x"
42
43 #define WIFI_CONFIG_PREFIX      "wifi_"
44 #define MAC_ADDRESS_LENGTH              12
45 #define WIFI_PREFIX_LENGTH              MAC_ADDRESS_LENGTH + 6  /* wifi_485a3f2f506a_ */
46 #define PROFILE_PREFIX_LENGTH   WIFI_PREFIX_LENGTH + 21 /* /net/connman/service/wifi_485a3f2f506a_ */
47
48 #define WIFI_MAC_ADD_LENGTH             17
49 #define WIFI_MAC_ADD_PATH               "/sys/class/net/wlan0/address"
50
51 struct wifi_eap_config {
52         gchar *anonymous_identity;
53         gchar *ca_cert;
54         gchar *client_cert;
55         gchar *private_key;
56         gchar *identity;
57         gchar *eap_type;
58         gchar *eap_auth_type;
59         gchar *subject_match;
60 };
61
62 struct wifi_config {
63         gchar *name;
64         gchar *ssid;
65         gchar *passphrase;
66         gchar *security_type;
67         gboolean favorite;
68         gboolean autoconnect;
69         gchar *is_hidden;
70         gchar *proxy_address;
71         struct wifi_eap_config *eap_config;
72         gchar *last_error;
73 };
74
75 static void __free_wifi_configuration(struct wifi_config *conf)
76 {
77         if (conf == NULL)
78                 return;
79
80         g_free(conf->name);
81         g_free(conf->ssid);
82         g_free(conf->passphrase);
83         g_free(conf->security_type);
84         g_free(conf->is_hidden);
85         g_free(conf->proxy_address);
86         g_free(conf->last_error);
87         if (conf->eap_config) {
88                 g_free(conf->eap_config->anonymous_identity);
89                 g_free(conf->eap_config->ca_cert);
90                 g_free(conf->eap_config->client_cert);
91                 g_free(conf->eap_config->private_key);
92                 g_free(conf->eap_config->identity);
93                 g_free(conf->eap_config->eap_type);
94                 g_free(conf->eap_config->eap_auth_type);
95                 g_free(conf->eap_config->subject_match);
96                 g_free(conf->eap_config);
97         }
98         g_free(conf);
99 }
100
101 static gboolean __get_mac_address(gchar **mac_address)
102 {
103         gchar *tmp_mac = NULL;
104         gchar *tmp = NULL;
105         gchar mac[13] = { 0, };
106         gint i = 0, j = 0;
107
108         if (TIZEN_TV) {
109                 FILE *fp = NULL;
110                 char buf[WIFI_MAC_ADD_LENGTH + 1];
111                 if (0 == access(WIFI_MAC_ADD_PATH, F_OK))
112                         fp = fopen(WIFI_MAC_ADD_PATH, "r");
113
114                 if (fp == NULL) {
115                         ERR("Failed to open file %s\n", WIFI_MAC_ADD_PATH);
116                         *mac_address = NULL;
117                         return FALSE;
118                 }
119
120                 if (fgets(buf, sizeof(buf), fp) == NULL) {
121                         ERR("Failed to get MAC info from %s\n", WIFI_MAC_ADD_PATH);
122                         *mac_address = NULL;
123                         fclose(fp);
124                         return FALSE;
125                 }
126                 tmp_mac = (gchar *)malloc(WIFI_MAC_ADD_LENGTH + 1);
127                 if (tmp_mac == NULL) {
128                         ERR("malloc() failed");
129                         *mac_address = NULL;
130                         fclose(fp);
131                         return FALSE;
132                 }
133                 memset(tmp_mac, 0, WIFI_MAC_ADD_LENGTH + 1);
134                 g_strlcpy(tmp_mac, buf, WIFI_MAC_ADD_LENGTH + 1);
135                 fclose(fp);
136         } else {
137                 tmp_mac = vconf_get_str(VCONFKEY_WIFI_BSSID_ADDRESS);
138                 if (tmp_mac == NULL) {
139                         ERR("vconf_get_str(WIFI_BSSID_ADDRESS) Failed");
140                         *mac_address = NULL;
141                         return FALSE;
142                 }
143         }
144         tmp = g_ascii_strdown(tmp_mac, (gssize)strlen(tmp_mac));
145         free(tmp_mac);
146         while (tmp && tmp[i]) {
147                 if (tmp[i] != ':')
148                         mac[j++] = tmp[i];
149                 i++;
150         }
151         mac[12] = '\0';
152         *mac_address = g_strdup(mac);
153
154         return TRUE;
155 }
156
157 static gboolean __get_group_name(const gchar *prefix, const gchar *config_id, gchar **group_name)
158 {
159         gchar *mac_address = NULL;
160         gchar *g_name = NULL;
161         gboolean ret = FALSE;
162
163         ret = __get_mac_address(&mac_address);
164         if ((ret != TRUE) || (strlen(mac_address) == 0)) {
165                 ERR("Cannot get WIFI MAC address");
166                 return FALSE;
167         }
168
169         g_name = g_strdup_printf("%s%s_%s", prefix, mac_address, config_id);
170         if (g_name == NULL) {
171                 g_free(mac_address);
172                 return FALSE;
173         }
174
175         *group_name = g_strdup(g_name);
176
177         g_free(mac_address);
178         g_free(g_name);
179
180         return TRUE;
181 }
182
183 static gboolean __get_security_type(const gchar *config_id, gchar **type)
184 {
185         if (g_str_has_suffix(config_id, WIFI_SECURITY_NONE) == TRUE) {
186                 *type = g_strdup(WIFI_SECURITY_NONE);
187         } else if (g_str_has_suffix(config_id, WIFI_SECURITY_WEP) == TRUE) {
188                 *type = g_strdup(WIFI_SECURITY_WEP);
189         } else if (g_str_has_suffix(config_id, WIFI_SECURITY_WPA_PSK) == TRUE) {
190                 *type = g_strdup(WIFI_SECURITY_WPA_PSK);
191         } else if (g_str_has_suffix(config_id, WIFI_SECURITY_EAP) == TRUE) {
192                 *type = g_strdup(WIFI_SECURITY_EAP);
193         } else {
194                 *type = NULL;
195                 return FALSE;
196         }
197
198         return TRUE;
199 }
200
201 static gboolean __get_config_id(const gchar *profile, gchar **config_id)
202 {
203         *config_id = g_strdup(profile + PROFILE_PREFIX_LENGTH);
204         if (*config_id == NULL) {
205                 ERR("OOM");
206                 return FALSE;
207         }
208
209         return TRUE;
210 }
211
212
213 static GKeyFile *__get_configuration_keyfile(const gchar *group_name)
214 {
215         GKeyFile *keyfile = NULL;
216         gchar *path;
217
218         path = g_strdup_printf(CONNMAN_STORAGE "/%s/settings", group_name);
219
220         keyfile = netconfig_keyfile_load(path);
221         if (keyfile == NULL)
222                 ERR("keyfile[%s] is NULL", path);
223
224         g_free(path);
225
226         return keyfile;
227 }
228
229 static gboolean __remove_file(const gchar *pathname, const gchar *filename)
230 {
231         gboolean ret = FALSE;
232         gchar *path;
233
234         path = g_strdup_printf("%s/%s", pathname, filename);
235         if (g_file_test(path, G_FILE_TEST_EXISTS) == FALSE) {
236                 ret = TRUE;
237         } else if (g_file_test(path, G_FILE_TEST_IS_REGULAR) == TRUE) {
238                 unlink(path);
239                 ret = TRUE;
240         }
241
242         g_free(path);
243         return ret;
244 }
245
246 static gboolean __remove_configuration(const gchar *pathname)
247 {
248         int ret = 0;
249
250         if (__remove_file(pathname, "settings") != TRUE) {
251                 ERR("Cannot remove [%s/settings]", pathname);
252                 return FALSE;
253         }
254         if (__remove_file(pathname, "data") != TRUE) {
255                 ERR("Cannot remove [%s/data]", pathname);
256                 return FALSE;
257         }
258
259         ret = rmdir(pathname);
260         if (ret == -1) {
261                 ERR("Cannot remove [%s]", pathname);
262                 return FALSE;
263         }
264
265         return TRUE;
266 }
267
268 static gboolean _load_configuration(const gchar *config_id, struct wifi_config *config)
269 {
270         GKeyFile *keyfile;
271         gchar *group_name;
272         gboolean hidden = FALSE;
273         gboolean ret = FALSE;
274
275         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
276         if (ret != TRUE) {
277                 ERR("Fail to get_wifi_config_group_name");
278                 return FALSE;
279         }
280
281         keyfile = __get_configuration_keyfile(group_name);
282         if (keyfile == NULL) {
283                 ERR("Fail to __get_configuration_keyfile[%s]", group_name);
284                 g_free(group_name);
285                 return FALSE;
286         }
287
288         config->name = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_NAME, NULL);
289         DBG("name [%s]", config->name);
290
291         __get_security_type(config_id, &config->security_type);
292         if (config->security_type == NULL) {
293                 ERR("Fail to _get_security_type");
294                 g_key_file_free(keyfile);
295                 g_free(group_name);
296                 return FALSE;
297         }
298         DBG("security_type [%s]", config->security_type);
299
300         config->proxy_address = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_PROXY_SERVER, NULL);
301         if (config->proxy_address)
302                 DBG("proxy_address [%s]", config->proxy_address);
303
304         hidden = g_key_file_get_boolean(keyfile, group_name, WIFI_CONFIG_HIDDEN, NULL);
305         if (hidden)
306                 config->is_hidden = g_strdup("TRUE");
307         else
308                 config->is_hidden = g_strdup("FALSE");
309         DBG("is_hidden [%s]", config->is_hidden);
310
311         if (g_strcmp0(config->security_type, WIFI_SECURITY_EAP) == 0) {
312                 config->eap_config->anonymous_identity = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY, NULL);
313                 config->eap_config->ca_cert = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_CACERT, NULL);
314                 config->eap_config->client_cert = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_CLIENTCERT, NULL);
315                 config->eap_config->private_key = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_PRIVATEKEY, NULL);
316                 config->eap_config->identity = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_IDENTITY, NULL);
317                 config->eap_config->eap_type = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_TYPE, NULL);
318                 config->eap_config->eap_auth_type = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_AUTH_TYPE, NULL);
319                 config->eap_config->subject_match = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_SUBJECT_MATCH, NULL);
320
321                 if (config->eap_config->anonymous_identity)
322                         DBG("anonymous_identity [%s]", config->eap_config->anonymous_identity);
323                 if (config->eap_config->ca_cert)
324                         DBG("ca_cert [%s]", config->eap_config->ca_cert);
325                 if (config->eap_config->client_cert)
326                         DBG("client_cert [%s]", config->eap_config->client_cert);
327                 if (config->eap_config->private_key)
328                         DBG("private_key [%s]", config->eap_config->private_key);
329                 if (config->eap_config->identity)
330                         DBG("identity [%s]", config->eap_config->identity);
331                 if (config->eap_config->eap_type)
332                         DBG("eap_type [%s]", config->eap_config->eap_type);
333                 if (config->eap_config->eap_auth_type)
334                         DBG("eap_auth_type [%s]", config->eap_config->eap_auth_type);
335                 if (config->eap_config->subject_match)
336                         DBG("subject_match [%s]", config->eap_config->subject_match);
337         }
338
339         config->last_error = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_FAILURE, NULL);
340         if (config->last_error)
341                 DBG("last_error [%s]", config->last_error);
342
343         g_key_file_free(keyfile);
344         g_free(group_name);
345
346         return TRUE;
347 }
348
349 static gboolean _save_configuration(const gchar *config_id, GKeyFile *keyfile)
350 {
351         gchar *dir;
352         gchar *path;
353         gchar *group_name;
354         gboolean ret = FALSE;
355
356         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
357         if (ret != TRUE) {
358                 ERR("Fail to get_wifi_config_group_name");
359                 return FALSE;
360         }
361
362         dir = g_strdup_printf(CONNMAN_STORAGE "/%s", group_name);
363         if (g_file_test(dir, G_FILE_TEST_IS_DIR) == TRUE) {
364                 if (__remove_configuration(dir) != TRUE) {
365                         ERR("[%s] is existed, but cannot remove", dir);
366                         g_free(group_name);
367                         g_free(dir);
368                         return FALSE;
369                 }
370         }
371
372         if (mkdir(dir, (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)) < 0) {
373                 ERR("Cannot mkdir %s", dir);
374                 g_free(group_name);
375                 g_free(dir);
376                 return FALSE;
377         }
378
379         path = g_strdup_printf(CONNMAN_STORAGE "/%s/settings", group_name);
380         netconfig_keyfile_save(keyfile, path);
381         g_free(group_name);
382         g_free(dir);
383         g_free(path);
384
385         return TRUE;
386 }
387
388 static gboolean _remove_configuration(const gchar *config_id)
389 {
390         gboolean ret = FALSE;
391         gchar *dir;
392         gchar *group_name;
393
394         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
395         if (ret != TRUE) {
396                 ERR("Fail to get_wifi_config_group_name");
397                 return FALSE;
398         }
399
400         dir = g_strdup_printf(CONNMAN_STORAGE "/%s", group_name);
401         if (g_file_test(dir, G_FILE_TEST_IS_DIR) == TRUE) {
402                 if (__remove_configuration(dir) != TRUE) {
403                         ERR("[%s] is existed, but cannot remove", dir);
404                         ret = FALSE;
405                 }
406                 INFO("Success to remove [%s]", dir);
407                 ret = TRUE;
408         } else {
409                 ERR("[%s] is not existed", dir);
410                 ret = FALSE;
411         }
412
413         g_free(group_name);
414         g_free(dir);
415
416         return ret;
417 }
418
419
420 static gboolean _set_field(const gchar *config_id, const gchar *key, const gchar *value)
421 {
422         gboolean ret = TRUE;
423         GKeyFile *keyfile;
424         gchar *group_name;
425
426         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
427         if (ret != TRUE) {
428                 ERR("Fail to get_wifi_config_group_name");
429                 return FALSE;
430         }
431         DBG("group_name %s", group_name);
432
433         keyfile = __get_configuration_keyfile(group_name);
434         if (keyfile == NULL) {
435                 ERR("Fail to __get_configuration_keyfile");
436                 g_free(group_name);
437                 return FALSE;
438         }
439
440         if (g_strcmp0(key, WIFI_CONFIG_PROXY_METHOD) == 0) {
441                 g_key_file_set_string(keyfile, group_name, key, value);
442         } else if (g_strcmp0(key, WIFI_CONFIG_PROXY_SERVER) == 0) {
443                 g_key_file_set_string(keyfile, group_name, key, value);
444         } else if (g_strcmp0(key, WIFI_CONFIG_HIDDEN) == 0) {
445                 gboolean hidden = FALSE;
446                 if (g_strcmp0(value, "TRUE") == 0)
447                         hidden = TRUE;
448                 g_key_file_set_boolean(keyfile, group_name, key, hidden);
449         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY) == 0) {
450                 g_key_file_set_string(keyfile, group_name, key, value);
451         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_CACERT) == 0) {
452                 g_key_file_set_string(keyfile, group_name, key, value);
453         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_CLIENTCERT) == 0) {
454                 g_key_file_set_string(keyfile, group_name, key, value);
455         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_PRIVATEKEY) == 0) {
456                 g_key_file_set_string(keyfile, group_name, key, value);
457         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_IDENTITY) == 0) {
458                 g_key_file_set_string(keyfile, group_name, key, value);
459         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_TYPE) == 0) {
460                 g_key_file_set_string(keyfile, group_name, key, value);
461         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_AUTH_TYPE) == 0) {
462                 g_key_file_set_string(keyfile, group_name, key, value);
463         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_SUBJECT_MATCH) == 0) {
464                 g_key_file_set_string(keyfile, group_name, key, value);
465         } else {
466                 ERR("key[%s] is not supported", key);
467                 ret = FALSE;
468         }
469
470         _save_configuration(config_id, keyfile);
471
472         g_key_file_free(keyfile);
473         g_free(group_name);
474
475         return ret;
476 }
477
478 static gboolean _get_field(const gchar *config_id, const gchar *key, gchar **value)
479 {
480         GKeyFile *keyfile;
481         gchar *group_name;
482         gchar *val = NULL;
483         gboolean hidden = FALSE;
484         gboolean ret = FALSE;
485
486         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
487         if (ret != TRUE) {
488                 ERR("Fail to get_wifi_config_group_name");
489                 return FALSE;
490         }
491         DBG("group_name %s", group_name);
492
493         keyfile = __get_configuration_keyfile(group_name);
494         if (keyfile == NULL) {
495                 ERR("Fail to __get_configuration_keyfile");
496                 g_free(group_name);
497                 return FALSE;
498         }
499
500         if (g_strcmp0(key, WIFI_CONFIG_NAME) == 0) {
501                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_NAME, NULL);
502         } else if (g_strcmp0(key, WIFI_CONFIG_PASSPHRASE) == 0) {
503                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_PASSPHRASE, NULL);
504         } else if (g_strcmp0(key, WIFI_CONFIG_PROXY_SERVER) == 0) {
505                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_PROXY_SERVER, NULL);
506         } else if (g_strcmp0(key, WIFI_CONFIG_HIDDEN) == 0) {
507                 hidden = g_key_file_get_boolean(keyfile, group_name, WIFI_CONFIG_HIDDEN, NULL);
508                 if (hidden)
509                         val = g_strdup("TRUE");
510                 else
511                         val = g_strdup("FALSE");
512         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY) == 0) {
513                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY, NULL);
514         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_CACERT) == 0) {
515                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_CACERT, NULL);
516         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_CLIENTCERT) == 0) {
517                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_CLIENTCERT, NULL);
518         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_PRIVATEKEY) == 0) {
519                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_PRIVATEKEY, NULL);
520         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_IDENTITY) == 0) {
521                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_IDENTITY, NULL);
522         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_TYPE) == 0) {
523                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_TYPE, NULL);
524         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_AUTH_TYPE) == 0) {
525                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_AUTH_TYPE, NULL);
526         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_SUBJECT_MATCH) == 0) {
527                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_EAP_SUBJECT_MATCH, NULL);
528         } else if (g_strcmp0(key, WIFI_CONFIG_FAILURE) == 0) {
529                 val = g_key_file_get_string(keyfile, group_name, WIFI_CONFIG_FAILURE, NULL);
530         } else {
531                 ERR("Invalid key[%s]", key);
532                 val = g_strdup("NOTSUPPORTED");
533         }
534
535         *value = g_strdup(val);
536         g_free(val);
537
538         g_key_file_free(keyfile);
539         g_free(group_name);
540
541         return TRUE;
542 }
543
544 static GSList *_get_list(void)
545 {
546         GSList *list = NULL;
547         struct dirent *dp = NULL;
548         DIR *dir;
549
550         dir = opendir(CONNMAN_STORAGE);
551         if (dir == NULL) {
552                 ERR("Cannot open dir %s", CONNMAN_STORAGE);
553                 return NULL;
554         }
555
556         while ((dp = readdir(dir)) != NULL) {
557                 if (g_strcmp0(dp->d_name, ".") == 0 || g_strcmp0(dp->d_name, "..") == 0 ||
558                                 strncmp(dp->d_name, WIFI_CONFIG_PREFIX, strlen(WIFI_CONFIG_PREFIX)) != 0) {
559                         continue;
560                 }
561                 gchar *config_id = g_strdup(dp->d_name + WIFI_PREFIX_LENGTH);
562                 list = g_slist_append(list, g_strdup(config_id));
563                 g_free(config_id);
564         }
565         closedir(dir);
566
567         return list;
568 }
569
570 gboolean wifi_config_get_config_id(const gchar *service_profile, gchar **config_id)
571 {
572         gboolean ret = FALSE;
573         gchar *val = NULL;
574
575         if ((service_profile == NULL) || (config_id == NULL)) {
576                 ERR("Invalid parameter");
577                 return FALSE;
578         }
579
580         ret = __get_config_id(service_profile, &val);
581         *config_id = g_strdup(val);
582         g_free(val);
583
584         return ret;
585 }
586
587 gboolean wifi_config_remove_configuration(const gchar *config_id)
588 {
589         gboolean ret = FALSE;
590
591         ret = _remove_configuration(config_id);
592
593         return ret;
594 }
595
596 /* dbus method */
597 gboolean handle_get_config_ids(Wifi *wifi, GDBusMethodInvocation *context)
598 {
599         guint i = 0;
600         GSList *config_ids = NULL;
601         guint length;
602         gchar **result = NULL;
603
604         g_return_val_if_fail(wifi != NULL, FALSE);
605
606         config_ids = _get_list();
607         if (config_ids == NULL) {
608                 netconfig_error_no_profile(context);
609                 ERR("Fail to get config list");
610                 return FALSE;
611         }
612
613         length = g_slist_length(config_ids);
614         result = g_new0(gchar *, length + 1);
615         for (i = 0; i < length; i++) {
616                 gchar *config_id = g_slist_nth_data(config_ids, i);
617                 result[i] = g_strdup(config_id);
618         }
619
620         config_ids = g_slist_nth(config_ids, 0);
621         g_slist_free_full(config_ids, g_free);
622
623         wifi_complete_get_config_ids(wifi, context, (const gchar * const *)result);
624
625         for (i = 0; i < length; i++)
626                 if (result[i])
627                         g_free(result[i]);
628
629         if (result)
630                 g_free(result);
631
632         return TRUE;
633 }
634
635 gboolean handle_load_configuration(Wifi *wifi, GDBusMethodInvocation *context,
636                 const gchar *config_id)
637 {
638         gboolean ret = FALSE;
639         GVariantBuilder *b = NULL;
640         struct wifi_config *conf = NULL;
641
642         g_return_val_if_fail(wifi != NULL, FALSE);
643
644         conf = g_new0(struct wifi_config, 1);
645
646         ret = _load_configuration(config_id, conf);
647         if (ret != TRUE) {
648                 g_free(conf);
649                 ERR("Fail to _load_configuration");
650                 netconfig_error_no_profile(context);
651                 return FALSE;
652         }
653
654         b = g_variant_builder_new(G_VARIANT_TYPE("a{sv}"));
655         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_NAME, g_variant_new_string(conf->name));
656         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_SECURITY_TYPE, g_variant_new_string(conf->security_type));
657         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_HIDDEN, g_variant_new_string(conf->is_hidden));
658
659         if (conf->proxy_address != NULL)
660                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_PROXYADDRESS, g_variant_new_string(conf->proxy_address));
661         else
662                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_PROXYADDRESS, g_variant_new_string("NONE"));
663
664         if (conf->last_error != NULL)
665                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_FAILURE, g_variant_new_string(conf->last_error));
666         else
667                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_FAILURE, g_variant_new_string("ERROR_NONE"));
668
669         g_free(conf->proxy_address);
670         g_free(conf->last_error);
671         g_free(conf->name);
672         g_free(conf->security_type);
673         g_free(conf->is_hidden);
674         g_free(conf);
675
676         wifi_complete_load_configuration(wifi, context, g_variant_builder_end(b));
677         g_variant_builder_unref(b);
678         return TRUE;
679 }
680
681 gboolean handle_save_configuration(Wifi *wifi, GDBusMethodInvocation *context,
682                 const gchar *config_id, GVariant *configuration)
683 {
684         gboolean ret = FALSE;
685         struct wifi_config *conf = NULL;
686         GKeyFile *keyfile = NULL;
687         GVariantIter *iter;
688         GVariant *value;
689         gchar *field;
690         gchar *group_name = NULL;
691
692         if ((wifi == NULL) || (config_id == NULL) || (configuration == NULL)) {
693                 ERR("Invalid parameter");
694                 netconfig_error_invalid_parameter(context);
695                 return FALSE;
696         }
697
698         conf = g_new0(struct wifi_config, 1);
699
700         g_variant_get(configuration, "a{sv}", &iter);
701         while (g_variant_iter_loop(iter, "{sv}", &field, &value)) {
702                 if (g_strcmp0(field, WIFI_CONFIG_NAME) == 0) {
703                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
704                                 conf->name = g_strdup(g_variant_get_string(value, NULL));
705                                 DBG("name [%s]", conf->name);
706                         } else {
707                                 conf->name = NULL;
708                         }
709                 } else if (g_strcmp0(field, WIFI_CONFIG_SSID) == 0) {
710                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
711                                 conf->ssid = g_strdup(g_variant_get_string(value, NULL));
712                                 DBG("ssid [%s]", conf->ssid);
713                         } else {
714                                 conf->ssid = NULL;
715                         }
716                 } else if (g_strcmp0(field, WIFI_CONFIG_PASSPHRASE) == 0) {
717                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
718                                 conf->passphrase = g_strdup(g_variant_get_string(value, NULL));
719                                 DBG("passphrase []");
720                         } else {
721                                 conf->passphrase = NULL;
722                         }
723                 } else if (g_strcmp0(field, WIFI_CONFIG_HIDDEN) == 0) {
724                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
725                                 conf->is_hidden = g_strdup(g_variant_get_string(value, NULL));
726                                 DBG("is_hidden [%s]", conf->is_hidden);
727                         } else {
728                                 conf->is_hidden = NULL;
729                         }
730                 } else if (g_strcmp0(field, WIFI_CONFIG_PROXYADDRESS) == 0) {
731                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
732                                 conf->proxy_address = g_strdup(g_variant_get_string(value, NULL));
733                                 DBG("proxy_address [%s]", conf->proxy_address);
734                         } else {
735                                 conf->proxy_address = NULL;
736                         }
737                 }
738         }
739         conf->favorite = TRUE;
740         conf->autoconnect = TRUE;
741
742         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
743         if (ret != TRUE) {
744                 g_free(conf->name);
745                 g_free(conf->ssid);
746                 g_free(conf->passphrase);
747                 g_free(conf->is_hidden);
748                 g_free(conf->proxy_address);
749                 g_free(conf);
750                 ERR("Fail to get_wifi_config_group_name");
751                 return FALSE;
752         }
753
754         keyfile = g_key_file_new();
755         g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_NAME, conf->name);
756         g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_SSID, conf->ssid);
757
758         if (conf->passphrase != NULL)
759                 g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_PASSPHRASE, conf->passphrase);
760
761         g_key_file_set_boolean(keyfile, group_name, WIFI_CONFIG_FAVORITE, conf->favorite);
762         g_key_file_set_boolean(keyfile, group_name, WIFI_CONFIG_AUTOCONNECT, conf->autoconnect);
763
764         /* Optional field */
765         if (conf->proxy_address != NULL) {
766                 g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_PROXY_METHOD, "manual");
767                 g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_PROXY_SERVER, conf->proxy_address);
768         }
769
770         if (conf->is_hidden != NULL) {
771                 gboolean hidden = FALSE;
772                 if (g_strcmp0(conf->is_hidden, "TRUE") == 0)
773                         hidden = TRUE;
774                 g_key_file_set_boolean(keyfile, group_name, WIFI_CONFIG_HIDDEN, hidden);
775         }
776
777         ret = _save_configuration(config_id, keyfile);
778         if (ret == TRUE) {
779                 INFO("Success to save configuration [%s]", config_id);
780                 wifi_complete_save_configuration(wifi, context);
781         } else {
782                 INFO("Fail to save configuration [%s]", config_id);
783                 netconfig_error_dbus_method_return(context, NETCONFIG_ERROR_INTERNAL, "FailSaveConfiguration");
784         }
785
786         g_key_file_free(keyfile);
787         g_free(group_name);
788         g_free(conf->name);
789         g_free(conf->ssid);
790         g_free(conf->passphrase);
791         g_free(conf->is_hidden);
792         g_free(conf->proxy_address);
793         g_free(conf);
794
795         g_variant_iter_free(iter);
796
797         return ret;
798 }
799
800 gboolean handle_load_eap_configuration(Wifi *wifi, GDBusMethodInvocation *context,
801                 const gchar *config_id)
802 {
803         gboolean ret = FALSE;
804         GVariantBuilder *b = NULL;
805         struct wifi_config *conf = NULL;
806
807         g_return_val_if_fail(wifi != NULL, FALSE);
808
809         conf = g_new0(struct wifi_config, 1);
810         conf->eap_config = g_new0(struct wifi_eap_config, 1);
811
812         ret = _load_configuration(config_id, conf);
813         if (ret != TRUE) {
814                 g_free(conf->eap_config);
815                 g_free(conf);
816                 ERR("Fail to _load_configuration");
817                 netconfig_error_no_profile(context);
818                 return FALSE;
819         }
820
821         b = g_variant_builder_new(G_VARIANT_TYPE("a{sv}"));
822         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_NAME, g_variant_new_string(conf->name));
823         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_SECURITY_TYPE, g_variant_new_string(conf->security_type));
824         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_HIDDEN, g_variant_new_string(conf->is_hidden));
825         if (conf->proxy_address != NULL)
826                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_PROXYADDRESS, g_variant_new_string(conf->proxy_address));
827         else
828                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_PROXYADDRESS, g_variant_new_string("NONE"));
829
830         if (conf->last_error != NULL)
831                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_FAILURE, g_variant_new_string(conf->last_error));
832         else
833                 g_variant_builder_add(b, "{sv}", WIFI_CONFIG_FAILURE, g_variant_new_string("ERROR_NONE"));
834
835         if (conf->eap_config != NULL) {
836                 if (conf->eap_config->anonymous_identity != NULL)
837                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY, g_variant_new_string(conf->eap_config->anonymous_identity));
838                 else
839                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY, g_variant_new_string("NONE"));
840
841                 if (conf->eap_config->ca_cert != NULL)
842                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_CACERT, g_variant_new_string(conf->eap_config->ca_cert));
843                 else
844                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_CACERT, g_variant_new_string("NONE"));
845
846                 if (conf->eap_config->client_cert != NULL)
847                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_CLIENTCERT, g_variant_new_string(conf->eap_config->client_cert));
848                 else
849                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_CLIENTCERT, g_variant_new_string("NONE"));
850
851                 if (conf->eap_config->private_key != NULL)
852                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_PRIVATEKEY, g_variant_new_string(conf->eap_config->private_key));
853                 else
854                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_PRIVATEKEY, g_variant_new_string("NONE"));
855
856                 if (conf->eap_config->identity != NULL)
857                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_IDENTITY, g_variant_new_string(conf->eap_config->identity));
858                 else
859                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_IDENTITY, g_variant_new_string("NONE"));
860
861                 if (conf->eap_config->eap_type != NULL)
862                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_TYPE, g_variant_new_string(conf->eap_config->eap_type));
863                 else
864                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_TYPE, g_variant_new_string("NONE"));
865
866                 if (conf->eap_config->eap_auth_type != NULL)
867                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_AUTH_TYPE, g_variant_new_string(conf->eap_config->eap_auth_type));
868                 else
869                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_AUTH_TYPE, g_variant_new_string("NONE"));
870
871                 if (conf->eap_config->subject_match != NULL)
872                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_SUBJECT_MATCH, g_variant_new_string(conf->eap_config->subject_match));
873                 else
874                         g_variant_builder_add(b, "{sv}", WIFI_CONFIG_EAP_SUBJECT_MATCH, g_variant_new_string("NONE"));
875         }
876
877         __free_wifi_configuration(conf);
878
879         wifi_complete_load_eap_configuration(wifi, context, g_variant_builder_end(b));
880         g_variant_builder_unref(b);
881         return TRUE;
882 }
883
884 gboolean handle_save_eap_configuration(Wifi *wifi, GDBusMethodInvocation *context,
885                 const gchar *config_id, GVariant *configuration)
886 {
887         gboolean ret = FALSE;
888         struct wifi_config *conf = NULL;
889         GKeyFile *keyfile = NULL;
890         GVariantIter *iter;
891         GVariant *value;
892         gchar *field;
893         gchar *group_name = NULL;
894
895         if ((wifi == NULL) || (config_id == NULL) || (configuration == NULL)) {
896                 ERR("Invalid parameter");
897                 netconfig_error_invalid_parameter(context);
898                 return FALSE;
899         }
900
901         conf = g_new0(struct wifi_config, 1);
902         conf->eap_config = g_new0(struct wifi_eap_config, 1);
903
904         g_variant_get(configuration, "a{sv}", &iter);
905         while (g_variant_iter_loop(iter, "{sv}", &field, &value)) {
906                 if (g_strcmp0(field, WIFI_CONFIG_NAME) == 0) {
907                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
908                                 conf->name = g_strdup(g_variant_get_string(value, NULL));
909                                 DBG("name [%s]", conf->name);
910                         } else {
911                                 conf->name = NULL;
912                         }
913                 } else if (g_strcmp0(field, WIFI_CONFIG_SSID) == 0) {
914                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
915                                 conf->ssid = g_strdup(g_variant_get_string(value, NULL));
916                                 DBG("ssid [%s]", conf->ssid);
917                         } else {
918                                 conf->ssid = NULL;
919                         }
920                 } else if (g_strcmp0(field, WIFI_CONFIG_PASSPHRASE) == 0) {
921                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
922                                 conf->passphrase = g_strdup(g_variant_get_string(value, NULL));
923                                 DBG("passphrase [%s]", conf->passphrase);
924                         } else {
925                                 conf->passphrase = NULL;
926                         }
927                 } else if (g_strcmp0(field, WIFI_CONFIG_HIDDEN) == 0) {
928                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
929                                 conf->is_hidden = g_strdup(g_variant_get_string(value, NULL));
930                                 DBG("is_hidden [%s]", conf->is_hidden);
931                         } else {
932                                 conf->is_hidden = NULL;
933                         }
934                 } else if (g_strcmp0(field, WIFI_CONFIG_PROXYADDRESS) == 0) {
935                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
936                                 conf->proxy_address = g_strdup(g_variant_get_string(value, NULL));
937                                 DBG("proxy_address [%s]", conf->proxy_address);
938                         } else {
939                                 conf->proxy_address = NULL;
940                         }
941                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY) == 0) {
942                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
943                                 conf->eap_config->anonymous_identity = g_strdup(g_variant_get_string(value, NULL));
944                                 DBG("anonymous_identity [%s]", conf->eap_config->anonymous_identity);
945                         } else {
946                                 conf->eap_config->anonymous_identity = NULL;
947                         }
948                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_CACERT) == 0) {
949                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
950                                 conf->eap_config->ca_cert = g_strdup(g_variant_get_string(value, NULL));
951                                 DBG("ca_cert [%s]", conf->eap_config->ca_cert);
952                         } else {
953                                 conf->eap_config->ca_cert = NULL;
954                         }
955                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_CLIENTCERT) == 0) {
956                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
957                                 conf->eap_config->client_cert = g_strdup(g_variant_get_string(value, NULL));
958                                 DBG("client_cert [%s]", conf->eap_config->client_cert);
959                         } else {
960                                 conf->eap_config->client_cert = NULL;
961                         }
962                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_PRIVATEKEY) == 0) {
963                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
964                                 conf->eap_config->private_key = g_strdup(g_variant_get_string(value, NULL));
965                                 DBG("private_key [%s]", conf->eap_config->private_key);
966                         } else {
967                                 conf->eap_config->private_key = NULL;
968                         }
969                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_IDENTITY) == 0) {
970                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
971                                 conf->eap_config->identity = g_strdup(g_variant_get_string(value, NULL));
972                                 DBG("identity [%s]", conf->eap_config->identity);
973                         } else {
974                                 conf->eap_config->identity = NULL;
975                         }
976                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_TYPE) == 0) {
977                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
978                                 conf->eap_config->eap_type = g_strdup(g_variant_get_string(value, NULL));
979                                 DBG("eap_type [%s]", conf->eap_config->eap_type);
980                         } else {
981                                 conf->eap_config->eap_type = NULL;
982                         }
983                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_AUTH_TYPE) == 0) {
984                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
985                                 conf->eap_config->eap_auth_type = g_strdup(g_variant_get_string(value, NULL));
986                                 DBG("eap_auth_type [%s]", conf->eap_config->eap_auth_type);
987                         } else {
988                                 conf->eap_config->eap_auth_type = NULL;
989                         }
990                 } else if (g_strcmp0(field, WIFI_CONFIG_EAP_SUBJECT_MATCH) == 0) {
991                         if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
992                                 conf->eap_config->subject_match = g_strdup(g_variant_get_string(value, NULL));
993                                 DBG("subject_match [%s]", conf->eap_config->subject_match);
994                         } else {
995                                 conf->eap_config->subject_match = NULL;
996                         }
997                 }
998         }
999         conf->favorite = TRUE;
1000         conf->autoconnect = TRUE;
1001
1002         ret = __get_group_name(WIFI_CONFIG_PREFIX, config_id, &group_name);
1003         if (ret != TRUE) {
1004                 __free_wifi_configuration(conf);
1005                 ERR("Fail to get_wifi_config_group_name");
1006                 return FALSE;
1007         }
1008
1009         keyfile = g_key_file_new();
1010         g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_NAME, conf->name);
1011         g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_SSID, conf->ssid);
1012
1013         if (conf->passphrase != NULL)
1014                 g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_PASSPHRASE, conf->passphrase);
1015
1016         g_key_file_set_boolean(keyfile, group_name, WIFI_CONFIG_FAVORITE, conf->favorite);
1017         g_key_file_set_boolean(keyfile, group_name, WIFI_CONFIG_AUTOCONNECT, conf->autoconnect);
1018
1019         /* Optional field */
1020         if (conf->proxy_address != NULL) {
1021                 g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_PROXY_METHOD, "manual");
1022                 g_key_file_set_string(keyfile, group_name, WIFI_CONFIG_PROXY_SERVER, conf->proxy_address);
1023         }
1024
1025         if (conf->is_hidden != NULL) {
1026                 gboolean hidden = FALSE;
1027                 if (g_strcmp0(conf->is_hidden, "TRUE") == 0)
1028                         hidden = TRUE;
1029                 g_key_file_set_boolean(keyfile, group_name, WIFI_CONFIG_HIDDEN, hidden);
1030         }
1031
1032         if (conf->eap_config->anonymous_identity != NULL)
1033                 g_key_file_set_string(keyfile, group_name,
1034                         WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY, conf->eap_config->anonymous_identity);
1035
1036         if (conf->eap_config->ca_cert != NULL)
1037                 g_key_file_set_string(keyfile, group_name,
1038                         WIFI_CONFIG_EAP_CACERT, conf->eap_config->ca_cert);
1039
1040         if (conf->eap_config->client_cert != NULL)
1041                 g_key_file_set_string(keyfile, group_name,
1042                         WIFI_CONFIG_EAP_CLIENTCERT, conf->eap_config->client_cert);
1043
1044         if (conf->eap_config->private_key != NULL)
1045                 g_key_file_set_string(keyfile, group_name,
1046                         WIFI_CONFIG_EAP_PRIVATEKEY, conf->eap_config->private_key);
1047
1048         if (conf->eap_config->identity != NULL)
1049                 g_key_file_set_string(keyfile, group_name,
1050                         WIFI_CONFIG_EAP_IDENTITY, conf->eap_config->identity);
1051
1052         if (conf->eap_config->eap_type != NULL)
1053                 g_key_file_set_string(keyfile, group_name,
1054                         WIFI_CONFIG_EAP_TYPE, conf->eap_config->eap_type);
1055
1056         if (conf->eap_config->eap_auth_type != NULL)
1057                 g_key_file_set_string(keyfile, group_name,
1058                         WIFI_CONFIG_EAP_AUTH_TYPE, conf->eap_config->eap_auth_type);
1059
1060         if (conf->eap_config->subject_match != NULL)
1061                 g_key_file_set_string(keyfile, group_name,
1062                         WIFI_CONFIG_EAP_SUBJECT_MATCH, conf->eap_config->subject_match);
1063
1064         ret = _save_configuration(config_id, keyfile);
1065         if (ret == TRUE) {
1066                 INFO("Success to save eap configuration [%s]", config_id);
1067                 wifi_complete_save_eap_configuration(wifi, context);
1068         } else {
1069                 INFO("Fail to save eap configuration [%s]", config_id);
1070                 netconfig_error_dbus_method_return(context, NETCONFIG_ERROR_INTERNAL, "FailSaveEapConfiguration");
1071         }
1072
1073         g_key_file_free(keyfile);
1074         g_free(group_name);
1075         __free_wifi_configuration(conf);
1076
1077         g_variant_iter_free(iter);
1078
1079         return ret;
1080 }
1081
1082 gboolean handle_remove_configuration(Wifi *wifi, GDBusMethodInvocation *context, const gchar *config_id)
1083 {
1084         gboolean ret = FALSE;
1085
1086         if ((wifi == NULL) || (config_id == NULL)) {
1087                 ERR("Invalid parameter");
1088                 netconfig_error_invalid_parameter(context);
1089                 return FALSE;
1090         }
1091
1092         ret = _remove_configuration(config_id);
1093         if (ret != TRUE) {
1094                 /* no configuration or error */
1095                 ERR("No [%s] configuration", config_id);
1096                 netconfig_error_no_profile(context);
1097                 return FALSE;
1098         }
1099
1100         wifi_complete_remove_configuration(wifi, context);
1101         return ret;
1102 }
1103
1104 /* config field key / value */
1105 /*
1106  * [wifi_macaddress_config_id]
1107  * Name=name (mandatory)
1108  * SSID=SSID (mandatory)
1109  * Frequency=2462 (X)
1110  * Favorite=true (X)
1111  * AutoConnect=true (Default true)
1112  * Modified=2015-03-20 (X)
1113  * IPv4.method=manual (O)
1114  * IPv4.DHCP.LastAddress=192.0.0.1 (X)
1115  * IPv6.method=auto (X)
1116  * IPv6.privacy=disabled (X)
1117  * IPv4.netmask_prefixlen=24 (X)
1118  * IPv4.local_address=192.0.0.1 (O)
1119  * IPv4.gateway=192.0.0.1 (O ? X ?)
1120  * Nameservers=192.168.43.22; (O)
1121  * Proxy.Method=manual (O)
1122  * Proxy.Servers=trst.com:8888; (O)
1123  */
1124 gboolean handle_set_config_field(Wifi *wifi, GDBusMethodInvocation *context,
1125                 const gchar *config_id, const gchar *key, const gchar *value)
1126 {
1127         gboolean ret = FALSE;
1128         gchar *keyfile_key = NULL;
1129
1130         g_return_val_if_fail(wifi != NULL, FALSE);
1131         g_return_val_if_fail(config_id != NULL, FALSE);
1132         g_return_val_if_fail(key != NULL, FALSE);
1133
1134         DBG("Key[%s] Value[%d]", key, value);
1135
1136         if (g_strcmp0(key, WIFI_CONFIG_PROXYADDRESS) == 0) {
1137                 ret = _set_field(config_id, WIFI_CONFIG_PROXY_METHOD, "manual");
1138                 if (!ret) {
1139                         ERR("Fail to [%s]set_wifi_config_field(%s/manual)", config_id, WIFI_CONFIG_PROXY_METHOD);
1140                         netconfig_error_invalid_parameter(context);
1141                         return FALSE;
1142                 }
1143                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_PROXY_SERVER);
1144         } else if (g_strcmp0(key, WIFI_CONFIG_HIDDEN) == 0) {
1145                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_HIDDEN);
1146         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY) == 0) {
1147                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_ANONYMOUS_IDENTITY);
1148         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_CACERT) == 0) {
1149                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_CACERT);
1150         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_CLIENTCERT) == 0) {
1151                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_CLIENTCERT);
1152         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_PRIVATEKEY) == 0) {
1153                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_PRIVATEKEY);
1154         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_IDENTITY) == 0) {
1155                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_IDENTITY);
1156         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_TYPE) == 0) {
1157                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_TYPE);
1158         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_AUTH_TYPE) == 0) {
1159                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_AUTH_TYPE);
1160         } else if (g_strcmp0(key, WIFI_CONFIG_EAP_SUBJECT_MATCH) == 0) {
1161                 keyfile_key = g_strdup_printf("%s", WIFI_CONFIG_EAP_SUBJECT_MATCH);
1162         } else {
1163                 ERR("Not supported key[%s]", key);
1164                 netconfig_error_invalid_parameter(context);
1165                 return FALSE;
1166         }
1167
1168         ret = _set_field(config_id, keyfile_key, (const gchar *)value);
1169         if (!ret) {
1170                 ERR("Fail to [%s]set_wifi_config_field(%s/%s)", config_id, key, value);
1171                 ret = FALSE;
1172         }
1173
1174         if (keyfile_key != NULL)
1175                 g_free(keyfile_key);
1176
1177         wifi_complete_set_config_field(wifi, context);
1178         return ret;
1179 }
1180
1181 gboolean handle_get_config_passphrase(Wifi *wifi, GDBusMethodInvocation *context, const gchar *config_id)
1182 {
1183         gboolean ret = FALSE;
1184         gchar *passphrase = NULL;
1185
1186         if ((wifi == NULL) || (config_id == NULL)) {
1187                 ERR("Invalid parameter");
1188                 netconfig_error_invalid_parameter(context);
1189                 return FALSE;
1190         }
1191
1192         ret = _get_field(config_id, WIFI_CONFIG_PASSPHRASE, &passphrase);
1193         if (!ret) {
1194                 ERR("Fail to [%s] _get_field(%s)", config_id, WIFI_CONFIG_PASSPHRASE);
1195                 netconfig_error_dbus_method_return(context, NETCONFIG_ERROR_INTERNAL, "OperationFailed");
1196                 return FALSE;
1197         }
1198
1199         wifi_complete_get_config_passphrase(wifi, context, passphrase);
1200         g_free(passphrase);
1201
1202         return ret;
1203 }