summaryrefslogtreecommitdiff
path: root/src/network.c
blob: 1a080b981a0a1aaf5f09aae4c04bd0bc2bd8b164 (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*
 *
 *  Connection Manager
 *
 *  Copyright (C) 2007  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 <gdbus.h>

#include "connman.h"

static DBusConnection *connection = NULL;
static unsigned int index = 0;

static GSList *networks = NULL;

void __connman_iface_network_list(struct connman_iface *iface,
						DBusMessageIter *iter)
{
	GSList *list;

	DBG("");

	for (list = networks; list; list = list->next) {
		struct connman_network *network = list->data;

		if (network->iface != iface)
			continue;

		dbus_message_iter_append_basic(iter,
				DBUS_TYPE_OBJECT_PATH, &network->path);
	}
}

struct connman_network *__connman_iface_find_network(struct connman_iface *iface,
								const char *path)
{
	GSList *list;

	DBG("");

	for (list = networks; list; list = list->next) {
		struct connman_network *network = list->data;

		if (network->iface == iface &&
				g_str_equal(network->path, path) == TRUE)
			return network;
	}

	return NULL;
}

int __connman_iface_remove_network(struct connman_iface *iface, const char *path)
{
	g_dbus_unregister_object(connection, path);

	return 0;
}

static DBusMessage *get_identifier(DBusConnection *conn,
					DBusMessage *msg, void *data)
{
	struct connman_network *network = data;
	DBusMessage *reply;

	DBG("conn %p", conn);

	reply = dbus_message_new_method_return(msg);
	if (reply == NULL)
		return NULL;

	dbus_message_append_args(reply, DBUS_TYPE_STRING, &network->identifier,
							DBUS_TYPE_INVALID);

	return reply;
}

static DBusMessage *get_passphrase(DBusConnection *conn,
					DBusMessage *msg, void *data)
{
	struct connman_network *network = data;
	DBusMessage *reply;

	DBG("conn %p", conn);

	reply = dbus_message_new_method_return(msg);
	if (reply == NULL)
		return NULL;

	dbus_message_append_args(reply, DBUS_TYPE_STRING, &network->passphrase,
							DBUS_TYPE_INVALID);

	return reply;
}

static GDBusMethodTable network_methods[] = {
	{ "GetIdentifier", "", "s", get_identifier },
	{ "GetPassphrase", "", "s", get_passphrase },
	{ },
};

static void network_free(void *data)
{
	struct connman_network *network = data;

	DBG("");

	networks = g_slist_remove(networks, network);

	g_free(network->path);
	g_free(network->identifier);
	g_free(network->passphrase);
	g_free(network);
}

const char *__connman_iface_add_network(struct connman_iface *iface,
				const char *identifier, const char *passphrase)
{
	struct connman_network *network;
	gchar *path;

	DBG("iface %p", iface);

	network = g_try_new0(struct connman_network, 1);
	if (network == NULL)
		return NULL;

	path = g_strdup_printf("%s/net_%d", iface->path, index++);
	if (path == NULL) {
		g_free(network);
		return NULL;
	}

	network->iface = iface;

	network->path = path;
	network->identifier = g_strdup(identifier);
	network->passphrase = g_strdup(passphrase ? passphrase : "");

	networks = g_slist_append(networks, network);

	g_dbus_register_object(connection, path, network, network_free);

	g_dbus_register_interface(connection, path, CONNMAN_NETWORK_INTERFACE,
						network_methods, NULL, NULL);

	return path;
}

int __connman_network_init(DBusConnection *conn)
{
	DBG("conn %p", conn);

	connection = dbus_connection_ref(conn);
	if (connection == NULL)
		return -1;

	return 0;
}

void __connman_network_cleanup(void)
{
	DBG("conn %p", connection);

	dbus_connection_unref(connection);
}