summaryrefslogtreecommitdiff
path: root/src/wifi.c
blob: 3bc9050d2a4512865b34d1205c415b54aebee3aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
 *
 *  Connection Manager
 *
 *  Copyright (C) 2007-2010  Intel Corporation. All rights reserved.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdio.h>
#include <string.h>

#include <glib.h>

#include "connman.h"

char *connman_wifi_build_group_name(const unsigned char *ssid,
						unsigned int ssid_len,
							const char *mode,
							const char *security)
{
	GString *str;
	unsigned int i;

	str = g_string_sized_new((ssid_len * 2) + 24);
	if (str == NULL)
		return NULL;

	if (ssid_len > 0 && ssid[0] != '\0') {
		for (i = 0; i < ssid_len; i++)
			g_string_append_printf(str, "%02x", ssid[i]);
	}

	g_string_append_printf(str, "_%s_%s", mode, security);

	return g_string_free(str, FALSE);
}

char **connman_wifi_load_ssid(void)
{
	GKeyFile *key_file;
	const char * profile;
	gchar **groups, *group;
	gsize num_groups;
	char **hex_ssids;
	int i, j;

	profile = __connman_profile_active_ident();

	key_file = __connman_storage_open_profile(profile);
	if (key_file == NULL)
		return NULL;

	groups = g_key_file_get_groups(key_file, &num_groups);

	hex_ssids = g_try_malloc0(sizeof(*hex_ssids) * (num_groups + 1));
	if (hex_ssids == NULL)
		goto done;

	for (i = 0, j = 0; groups[i]; i++) {
		gchar *hex_ssid;
		gboolean favorite;

		group = groups[i];

		favorite = g_key_file_get_boolean(key_file, group,
							"Favorite", NULL);
		if (favorite == FALSE)
			continue;

		hex_ssid = g_key_file_get_string(key_file, group,
							"SSID", NULL);
		if (hex_ssid == NULL)
			continue;

		hex_ssids[j++] = hex_ssid;
	}

	hex_ssids[j] = NULL;

done:
	g_strfreev(groups);

	__connman_storage_close_profile(profile, key_file, FALSE);

	return hex_ssids;
}