storage: Don't list provider settings directories
[platform/upstream/connman.git] / src / storage.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2010  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <errno.h>
27 #include <unistd.h>
28 #include <sys/stat.h>
29 #include <dirent.h>
30
31 #include <connman/storage.h>
32
33 #include "connman.h"
34
35 #define SETTINGS        "settings"
36 #define DEFAULT         "default.profile"
37
38 #define MODE            (S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | \
39                         S_IXGRP | S_IROTH | S_IXOTH)
40
41 static GKeyFile *storage_load(const char *pathname)
42 {
43         GKeyFile *keyfile = NULL;
44         GError *error = NULL;
45
46         DBG("Loading %s", pathname);
47
48         keyfile = g_key_file_new();
49
50         if (!g_key_file_load_from_file(keyfile, pathname, 0, &error)) {
51                 DBG("Unable to load %s: %s", pathname, error->message);
52                 g_clear_error(&error);
53
54                 g_key_file_free(keyfile);
55                 keyfile = NULL;
56         }
57
58         return keyfile;
59 }
60
61 static void storage_save(GKeyFile *keyfile, char *pathname)
62 {
63         gchar *data = NULL;
64         gsize length = 0;
65         GError *error = NULL;
66
67         data = g_key_file_to_data(keyfile, &length, NULL);
68
69         if (!g_file_set_contents(pathname, data, length, &error)) {
70                 DBG("Failed to store information: %s", error->message);
71                 g_free(error);
72         }
73
74         g_free(data);
75 }
76
77 static void storage_delete(const char *pathname)
78 {
79         DBG("file path %s", pathname);
80
81         if (unlink(pathname) < 0)
82                 connman_error("Failed to remove %s", pathname);
83 }
84
85 GKeyFile *__connman_storage_load_global()
86 {
87         gchar *pathname;
88         GKeyFile *keyfile = NULL;
89
90         pathname = g_strdup_printf("%s/%s", STORAGEDIR, SETTINGS);
91         if(pathname == NULL)
92                 return NULL;
93
94         keyfile = storage_load(pathname);
95
96         g_free(pathname);
97
98         return keyfile;
99 }
100
101 void __connman_storage_save_global(GKeyFile *keyfile)
102 {
103         gchar *pathname;
104
105         pathname = g_strdup_printf("%s/%s", STORAGEDIR, SETTINGS);
106         if(pathname == NULL)
107                 return;
108
109         storage_save(keyfile, pathname);
110
111         g_free(pathname);
112 }
113
114 void __connman_storage_delete_global()
115 {
116         gchar *pathname;
117
118         pathname = g_strdup_printf("%s/%s", STORAGEDIR, SETTINGS);
119         if(pathname == NULL)
120                 return;
121
122         storage_delete(pathname);
123
124         g_free(pathname);
125 }
126
127 GKeyFile *__connman_storage_load_config(const char *ident)
128 {
129         gchar *pathname;
130         GKeyFile *keyfile = NULL;
131
132         pathname = g_strdup_printf("%s/%s.config", STORAGEDIR, ident);
133         if(pathname == NULL)
134                 return NULL;
135
136         keyfile = storage_load(pathname);
137
138         g_free(pathname);
139
140         return keyfile;
141 }
142
143 void __connman_storage_save_config(GKeyFile *keyfile, const char *ident)
144 {
145         gchar *pathname;
146
147         pathname = g_strdup_printf("%s/%s.config", STORAGEDIR, ident);
148         if(pathname == NULL)
149                 return;
150
151         storage_save(keyfile, pathname);
152 }
153
154 void __connman_storage_delete_config(const char *ident)
155 {
156         gchar *pathname;
157
158         pathname = g_strdup_printf("%s/%s.config", STORAGEDIR, ident);
159         if(pathname == NULL)
160                 return;
161
162         storage_delete(pathname);
163
164         g_free(pathname);
165 }
166
167 GKeyFile *__connman_storage_open_service(const char *service_id)
168 {
169         gchar *pathname;
170         GKeyFile *keyfile = NULL;
171
172         pathname = g_strdup_printf("%s/%s/%s", STORAGEDIR, service_id, SETTINGS);
173         if(pathname == NULL)
174                 return NULL;
175
176         keyfile =  storage_load(pathname);
177         if (keyfile) {
178                 g_free(pathname);
179                 return keyfile;
180         }
181
182         g_free(pathname);
183
184         keyfile = g_key_file_new();
185
186         return keyfile;
187 }
188
189 gchar **connman_storage_get_services()
190 {
191         struct dirent *d;
192         gchar *str;
193         DIR *dir;
194         GString *result;
195         gchar **services = NULL;
196         struct stat buf;
197         int ret;
198
199         dir = opendir(STORAGEDIR);
200         if (dir == NULL)
201                 return NULL;
202
203         result = g_string_new(NULL);
204
205         while ((d = readdir(dir))) {
206                 if (strcmp(d->d_name, ".") == 0 ||
207                                 strcmp(d->d_name, "..") == 0 ||
208                                 strncmp(d->d_name, "provider_", 9) == 0)
209                         continue;
210
211                 switch (d->d_type) {
212                 case DT_DIR:
213                         /*
214                          * If the settings file is not found, then
215                          * assume this directory is not a services dir.
216                          */
217                         str = g_strdup_printf("%s/%s/settings", STORAGEDIR,
218                                                                 d->d_name);
219                         ret = stat(str, &buf);
220                         g_free(str);
221                         if (ret < 0)
222                                 continue;
223
224                         g_string_append_printf(result, "%s/", d->d_name);
225                         break;
226                 }
227         }
228
229         closedir(dir);
230
231         str = g_string_free(result, FALSE);
232         if (str) {
233                 str[strlen(str) - 1] = '\0';
234                 services = g_strsplit(str, "/", -1);
235         }
236         g_free(str);
237
238         return services;
239 }
240
241 GKeyFile *connman_storage_load_service(const char *service_id)
242 {
243         gchar *pathname;
244         GKeyFile *keyfile = NULL;
245
246         pathname = g_strdup_printf("%s/%s/%s", STORAGEDIR, service_id, SETTINGS);
247         if(pathname == NULL)
248                 return NULL;
249
250         keyfile =  storage_load(pathname);
251         if (keyfile) {
252                 g_free(pathname);
253                 return keyfile;
254         }
255
256         g_free(pathname);
257
258         pathname = g_strdup_printf("%s/%s", STORAGEDIR, DEFAULT);
259         if(pathname == NULL)
260                 return NULL;
261
262         keyfile =  storage_load(pathname);
263
264         g_free(pathname);
265
266         return keyfile;
267 }
268
269 void __connman_storage_save_service(GKeyFile *keyfile, const char *service_id)
270 {
271         gchar *pathname, *dirname;
272
273         dirname = g_strdup_printf("%s/%s", STORAGEDIR, service_id);
274         if(dirname == NULL)
275                 return;
276
277         /* If the dir doesn't exist, create it */
278         if (!g_file_test(dirname, G_FILE_TEST_IS_DIR)) {
279                 if(mkdir(dirname, MODE) < 0) {
280                         if (errno != EEXIST) {
281                                 g_free(dirname);
282                                 return;
283                         }
284                 }
285         }
286
287         pathname = g_strdup_printf("%s/%s", dirname, SETTINGS);
288
289         g_free(dirname);
290
291         storage_save(keyfile, pathname);
292
293         g_free(pathname);
294 }
295
296 /*
297  * This function migrates keys from default.profile to settings file.
298  * This can be removed once the migration is over.
299 */
300 void __connman_storage_migrate()
301 {
302         gchar *pathname;
303         GKeyFile *keyfile_def = NULL;
304         GKeyFile *keyfile = NULL;
305         GError *error = NULL;
306         connman_bool_t val;
307
308         /* If setting file exists, migration has been done. */
309         keyfile = __connman_storage_load_global();
310         if (keyfile) {
311                 g_key_file_free(keyfile);
312                 return;
313         }
314
315         pathname = g_strdup_printf("%s/%s", STORAGEDIR, DEFAULT);
316         if(pathname == NULL)
317                 return;
318
319         /* If default.profile doesn't exists, no need to migrate. */
320         keyfile_def = storage_load(pathname);
321         if (keyfile_def == NULL) {
322                 g_free(pathname);
323                 return;
324         }
325
326         /* Copy global settings from default.profile to settings. */
327         keyfile = g_key_file_new();
328
329         /* offline mode */
330         val = g_key_file_get_boolean(keyfile_def, "global",
331                                         "OfflineMode", &error);
332         if (error != NULL)
333                 g_clear_error(&error);
334         else
335                 g_key_file_set_boolean(keyfile, "global",
336                                         "OfflineMode", val);
337
338         /* wifi */
339         val = g_key_file_get_boolean(keyfile_def, "WiFi",
340                                         "Enable", &error);
341         if (error != NULL)
342                 g_clear_error(&error);
343         else
344                 g_key_file_set_boolean(keyfile, "WiFi",
345                                         "Enable", val);
346
347         /* bluetooth */
348         val = g_key_file_get_boolean(keyfile_def, "Bluetooth",
349                                         "Enable", &error);
350         if (error != NULL)
351                 g_clear_error(&error);
352         else
353                 g_key_file_set_boolean(keyfile, "Bluetooth",
354                                         "Enable", val);
355
356         /* wired */
357         val = g_key_file_get_boolean(keyfile_def, "Wired",
358                                         "Enable", &error);
359         if (error != NULL)
360                 g_clear_error(&error);
361         else
362                 g_key_file_set_boolean(keyfile, "Wired",
363                                         "Enable", val);
364
365         /* 3G */
366         val = g_key_file_get_boolean(keyfile_def, "3G",
367                                         "Enable", &error);
368         if (error != NULL)
369                 g_clear_error(&error);
370         else
371                 g_key_file_set_boolean(keyfile, "3G",
372                                         "Enable", val);
373
374         /* WiMAX */
375         val = g_key_file_get_boolean(keyfile_def, "WiMAX",
376                                         "Enable", &error);
377         if (error != NULL)
378                 g_clear_error(&error);
379         else
380                 g_key_file_set_boolean(keyfile, "WiMAX",
381                                         "Enable", val);
382
383         __connman_storage_save_global(keyfile);
384
385         g_key_file_free(keyfile);
386         g_key_file_free(keyfile_def);
387         g_free(pathname);
388 }