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