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