8c00068e6584eff2158770ef3ab406895130e168
[platform/core/connectivity/net-config.git] / src / wifi-tdls.c
1 /*
2  * Network Configuration Module
3  *
4  * Copyright (c) 2012-2013 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 <time.h>
22 #include <stdlib.h>
23 #include <sys/time.h>
24 #include <unistd.h>
25 #include <string.h>
26 #include "neterror.h"
27 #include "netdbus.h"
28 #include "netsupplicant.h"
29 #include "network-state.h"
30 #include <vconf.h>
31 #include <vconf-keys.h>
32 #include <arpa/inet.h>
33 #include <log.h>
34 #include "util.h"
35 #include "neterror.h"
36 #include "wifi-tdls.h"
37 #include <glib.h>
38
39 char *peer_mac = NULL;
40 int is_connected = 0;
41 static gint tdls_timer_id = 0;
42 int is_discover_broadcast = 0;
43 int is_timer_expired = 0;
44
45 #define TDLS_DISCOVER_TIMOUT 4 /*TDLS Unicast Discovery Timeout*/
46 #define TDLS_DISCOVER_BROADCAST_TIMOUT 8 /*TDLS Broadcast Discovery Timeout*/
47 static void stop_tdls_timer()
48 {
49         if (tdls_timer_id > 0) {
50                 g_source_remove(tdls_timer_id);
51                 tdls_timer_id = 0;
52         }
53 }
54
55 void __netconfig_wifi_notify_tdls_event(const char *sig_name, const char *peer_mac)
56 {
57         GVariantBuilder *builder;
58         GVariant *params;
59         builder = g_variant_builder_new(G_VARIANT_TYPE("a{sv}"));
60         g_variant_builder_add(builder, "{sv}", "peermac", g_variant_new_string(peer_mac));
61
62         params = g_variant_new("(@a{sv})", g_variant_builder_end(builder));
63         g_variant_builder_unref(builder);
64
65         netconfig_dbus_emit_signal(NULL,
66                                 NETCONFIG_WIFI_PATH,
67                                 NETCONFIG_WIFI_INTERFACE,
68                                 sig_name,
69                                 params);
70
71         INFO("Sent signal (%s) Peer Mac (%s)", sig_name, peer_mac);
72 }
73
74 void __netconfig_wifi_notify_tdls_discover_event(const char *peer_mac, int discover_type)
75 {
76         GVariantBuilder *builder;
77         GVariant *params;
78         builder = g_variant_builder_new(G_VARIANT_TYPE("a{sv}"));
79
80         g_variant_builder_add(builder, "{sv}", "peermac", g_variant_new_string(peer_mac));
81         g_variant_builder_add(builder, "{sv}", "discover_type", g_variant_new_int32(discover_type));
82
83         params = g_variant_new("(@a{sv})", g_variant_builder_end(builder));
84         g_variant_builder_unref(builder);
85
86         netconfig_dbus_emit_signal(NULL,
87                                 NETCONFIG_WIFI_PATH,
88                                 NETCONFIG_WIFI_INTERFACE,
89                                 "TDLSPeerFound",
90                                 params);
91
92         INFO("Sent signal (%s) Peer Mac (%s)", "TDLSPeerFound", peer_mac);
93 }
94
95 static gboolean _tdls_timer_discover_event(gpointer user_data)
96 {
97
98         if (tdls_timer_id == 0)
99                 return FALSE;
100
101         INFO("[TDLS Discover Timer Expired");
102         __netconfig_wifi_notify_tdls_discover_event("00:00:00:00:00:00", is_discover_broadcast);
103         is_discover_broadcast = 0;
104         stop_tdls_timer();
105         is_timer_expired = 1;
106
107         return FALSE;
108 }
109
110 static GVariant * __netconfig_wifi_tdls_send_dbus_str(const char* method, const char *str)
111 {
112         GVariant *message = NULL;
113         const char *if_path = NULL;
114         GVariant *params = NULL;
115
116         if_path = netconfig_wifi_get_supplicant_interface();
117         if (if_path == NULL) {
118                 ERR("Fail to get wpa_supplicant DBus path");
119                 return NULL;
120         }
121
122         params = g_variant_new("(s)", str);
123         INFO("[TizenMW-->WPAS]Sent Dbus Method :[%s],value[%s]", method, str);
124         message = netconfig_invoke_dbus_method(SUPPLICANT_SERVICE,
125                         if_path, SUPPLICANT_INTERFACE ".Interface", method, params);
126
127         INFO("TDLS Returned from Blocking method for Send DBUS Command");
128         return message;
129 }
130
131 static unsigned char _netconfig_freq_to_channel(int freq)
132 {
133         if (freq < 2412 || freq > 5825 ||
134                 (freq > 2484 && freq < 5180)) {
135                 ERR("Invalid Frequence Range");
136                 return 0;
137         }
138         if (freq >= 5180)
139                 return 36 + (freq - 5180)/5;
140         else if (freq <= 2472)
141                 return 1 + (freq - 2412)/5;
142         else if (freq == 2484)
143                 return 14;
144         else
145                 return 0;
146 }
147
148 static unsigned char _netconfig_get_operating_class(int freq)
149 {
150         unsigned char channel = 0;
151         unsigned char oper_class = 0;
152
153         channel = _netconfig_freq_to_channel(freq);
154
155         if (channel) {
156                 /* Operating class 81 - 2.4 GHz band channels 1..13 */
157                 if (channel >= 1 && channel <= 13)
158                         oper_class = 81;
159                 /* Operating class 115 - 5 GHz, channels 36-48 */
160                 else if (channel >= 36 && channel <= 48)
161                         oper_class = 115;
162                 /* Operating class 124 - 5 GHz, channels 149,153,157,161 */
163                 else
164                         oper_class = 124;
165
166                 INFO("TDLS: Operating Class  is [%d]", oper_class);
167                 return oper_class;
168         }
169         return 0;
170 }
171
172 gboolean handle_tdls_connect(Wifi *wifi, GDBusMethodInvocation *context,
173                         gchar *peer_mac_Addr)
174 {
175         DBG("[TizenMW-->WPAS]: TDLS Setup Request: [%s]", peer_mac_Addr);
176
177         if (is_connected) {
178                 ERR(" Already TDLS Connection !!!");
179         } else {
180                 GVariant *message = NULL;
181                 message = __netconfig_wifi_tdls_send_dbus_str("TDLSSetup", (const char*)peer_mac_Addr);
182
183                 if (message == NULL) {
184                         ERR(" TDLS : failed to connect !!!");
185                         netconfig_error_dbus_method_return(context, NETCONFIG_ERROR_INTERNAL, "FailTdlsConnect");
186                         return FALSE;
187                 }
188
189                 DBG("[TizenMW<--WPAS] TDLS DBUS Command sent successfully");
190                 g_variant_unref(message);
191                 is_connected = 1;
192         }
193
194         wifi_complete_tdls_connect(wifi, context, 1);
195         return TRUE;
196 }
197
198 gboolean handle_tdls_discover(Wifi *wifi, GDBusMethodInvocation *context,
199                         gchar *peer_mac_Addr)
200 {
201         DBG("TDLS Discover Request: [%s]", peer_mac_Addr);
202         int discover_timeout = 0;
203
204         GVariant *message = NULL;
205
206         message = __netconfig_wifi_tdls_send_dbus_str("TDLSDiscover", (const char*)peer_mac_Addr);
207
208         if (message == NULL) {
209                 ERR(" TDLS : failed to discover !!!");
210                 netconfig_error_dbus_method_return(context, NETCONFIG_ERROR_INTERNAL, "FailTdlsDiscover");
211                 wifi_complete_tdls_discover(wifi, context, NETCONFIG_ERROR_TDLS_FAIL_DISCOVER);
212                 return FALSE;
213         }
214
215         DBG(" TDLS DBUS Command sent successfully");
216         g_variant_unref(message);
217
218         if (NULL != strstr(peer_mac_Addr, "ff:ff:ff:ff:ff:ff")) {
219                 DBG("TDLS: Broadcast Discovery");
220                 is_discover_broadcast = 1;
221                 discover_timeout = TDLS_DISCOVER_BROADCAST_TIMOUT;
222         } else {
223                 is_discover_broadcast = 0;
224                 discover_timeout = TDLS_DISCOVER_TIMOUT;
225         }
226
227         is_timer_expired = 0;
228         tdls_timer_id = g_timeout_add_seconds(discover_timeout,
229                                         _tdls_timer_discover_event, NULL);
230
231         wifi_complete_tdls_discover(wifi, context, NETCONFIG_ERROR_TDLS_NO_ERROR);
232         return TRUE;
233 }
234
235 gboolean handle_tdls_disconnect(Wifi *wifi, GDBusMethodInvocation *context,
236                         gchar *peer_mac_Addr)
237 {
238         DBG("[TizenMW-->WPAS]: TDLS Teardown Request: [%s]", peer_mac_Addr);
239
240         if (!is_connected) {
241                 ERR(" Already TDLS disconnection !!!");
242                 wifi_complete_tdls_disconnect(wifi, context, NETCONFIG_ERROR_TDLS_ALREADY_DONE);
243         } else {
244                 GVariant *message = NULL;
245                 message = __netconfig_wifi_tdls_send_dbus_str("TDLSTeardown", (const char*)peer_mac_Addr);
246
247                 if (message == NULL) {
248                         ERR(" TDLS : failed to disconnect !!!");
249                         netconfig_error_dbus_method_return(context, NETCONFIG_ERROR_INTERNAL, "FailTdlsDisconnect");
250                         return FALSE;
251                 }
252
253                 DBG("[TizenMW<--WPAS] TDLS DBUS Command sent successfully");
254                 g_variant_unref(message);
255                 is_connected = 0;
256         }
257
258         wifi_complete_tdls_disconnect(wifi, context, NETCONFIG_ERROR_TDLS_NO_ERROR);
259         return TRUE;
260 }
261
262 gboolean handle_tdls_connected_peer(Wifi *wifi, GDBusMethodInvocation *context)
263 {
264         DBG("[TizenMW-->WPAS]: TDLS Connected Peer Request: ");
265
266         GVariant *message = NULL;
267         const gchar* reply_str = NULL;
268
269         if (peer_mac == NULL) {
270                 INFO("TDLS: No Active Connection");
271                 wifi_complete_tdls_connected_peer(wifi, context, "00.00.00.00.00.00");
272                 return TRUE;
273         }
274         message = __netconfig_wifi_tdls_send_dbus_str("TDLSStatus", (const char*)peer_mac);
275         if (message == NULL) {
276                 ERR(" TDLS : No active TDLS Link Setup !!!");
277                 wifi_complete_tdls_connected_peer(wifi, context, "00.00.00.00.00.00");
278                 return TRUE;
279         }
280
281         g_variant_get(message, "(&s)", &reply_str);
282         INFO("TDLS reply: [%s]", reply_str);
283         INFO("TDLS :peer_mac [%s]", peer_mac);
284
285         if (g_strcmp0("connected", reply_str) != 0) {
286                 ERR("[TizenMW<--WPAS] TDLS Connection not available");
287                 wifi_complete_tdls_connected_peer(wifi, context, "00.00.00.00.00.00");
288                 g_variant_unref(message);
289                 return TRUE;
290         }
291
292         INFO("TDLS Connection available, Peer Mac address %s", peer_mac);
293         wifi_complete_tdls_connected_peer(wifi, context, peer_mac);
294
295         g_variant_unref(message);
296         return TRUE;
297 }
298
299 gboolean handle_tdls_channel_switch(Wifi *wifi, GDBusMethodInvocation *context,
300                         gchar *peer_mac_Addr, int freq)
301 {
302         GVariant *message = NULL;
303         GVariantBuilder *builder;
304         GVariant *params;
305         const char *if_path = NULL;
306         unsigned char oper_class = 0;
307
308         if (peer_mac_Addr == NULL) {
309                 ERR("TDLS: Invalid Parameter");
310                 wifi_complete_tdls_channel_switch(wifi, context,
311                                                         NETCONFIG_ERROR_TDLS_FAIL_CHANNEL_SWITCH);
312                 return TRUE;
313         }
314
315         oper_class = _netconfig_get_operating_class(freq);
316
317         if (!oper_class) {
318                 ERR("TDLS: Invalid Parameter");
319                 wifi_complete_tdls_channel_switch(wifi, context,
320                                                         NETCONFIG_ERROR_TDLS_FAIL_CHANNEL_SWITCH);
321                 return TRUE;
322         }
323
324         builder = g_variant_builder_new(G_VARIANT_TYPE("a{sv}"));
325
326         g_variant_builder_add(builder, "{sv}", "PeerAddress", g_variant_new_string(peer_mac_Addr));
327         g_variant_builder_add(builder, "{sv}", "Frequency", g_variant_new_uint32(freq));
328         g_variant_builder_add(builder, "{sv}", "OperClass", g_variant_new_byte(oper_class));
329         params = g_variant_new("(@a{sv})", g_variant_builder_end(builder));
330         g_variant_builder_unref(builder);
331
332         if_path = netconfig_wifi_get_supplicant_interface();
333
334         if (if_path == NULL) {
335                 ERR("Fail to get wpa_supplicant DBus path");
336                 wifi_complete_tdls_channel_switch(wifi, context,
337                                                 NETCONFIG_ERROR_TDLS_FAIL_CHANNEL_SWITCH);
338                 return TRUE;
339         }
340
341         message = netconfig_invoke_dbus_method(SUPPLICANT_SERVICE,
342                                 if_path, SUPPLICANT_INTERFACE ".Interface", "TDLSChannelSwitch", params);
343
344         if (message == NULL) {
345                 ERR(" TDLS : Fail to Process TDLS Channel Switch Request !!!");
346                 wifi_complete_tdls_channel_switch(wifi, context,
347                                                 NETCONFIG_ERROR_TDLS_FAIL_CHANNEL_SWITCH);
348                 return TRUE;
349         }
350
351         INFO("TDLS Channel Change Request: Success");
352         wifi_complete_tdls_channel_switch(wifi, context, NETCONFIG_ERROR_TDLS_NO_ERROR);
353
354         g_variant_unref(message);
355         return TRUE;
356 }
357
358
359 gboolean handle_tdls_cancel_channel_switch(Wifi *wifi, GDBusMethodInvocation *context,
360                         gchar *peer_mac_Addr)
361 {
362         GVariant *message = NULL;
363
364         if (peer_mac_Addr == NULL) {
365                 INFO("TDLS: Invalid Parameter");
366                 wifi_complete_tdls_cancel_channel_switch(wifi, context, NETCONFIG_ERROR_TDLS_FAIL_CHANNEL_SWITCH);
367                 return TRUE;
368         }
369         message = __netconfig_wifi_tdls_send_dbus_str("TDLSCancelChannelSwitch", (const char*)peer_mac_Addr);
370         if (message == NULL) {
371                 ERR(" TDLS : Fail to TDLS Cancel Channel Swicth Request !!!");
372                 wifi_complete_tdls_cancel_channel_switch(wifi, context, NETCONFIG_ERROR_TDLS_FAIL_CHANNEL_SWITCH);
373                 return TRUE;
374         }
375
376         INFO("TDLS Cancel Channel Swicth Request : Success");
377         wifi_complete_tdls_cancel_channel_switch(wifi, context, NETCONFIG_ERROR_TDLS_NO_ERROR);
378
379         g_variant_unref(message);
380         return TRUE;
381 }
382
383 void netconfig_wifi_tdls_connected_event(GVariant *message)
384 {
385
386         DBG("WiFi TDLS Connected EVENT");
387         if (is_connected == 1) {
388                 INFO("TDLS Peer already connected");
389                 g_free(peer_mac);
390         }
391
392         g_variant_get(message, "(s)", &peer_mac);
393         INFO("Peer Mac Address: [%s]", peer_mac);
394
395         is_connected = 1;
396         __netconfig_wifi_notify_tdls_event("TDLSConnect", peer_mac);
397 }
398
399 void netconfig_wifi_tdls_disconnected_event(GVariant *message)
400 {
401         DBG("WiFi TDLS Disconnected EVENT");
402         const gchar *peer_mac_addr = NULL;
403
404         g_variant_get(message, "(&s)", &peer_mac_addr);
405         if (g_strcmp0(peer_mac, peer_mac_addr) == 0) {
406                 INFO("TDLS Peer Disconnected Mac Address: [%s]", peer_mac);
407                 is_connected = 0;
408                 __netconfig_wifi_notify_tdls_event("TDLSDisconnect", peer_mac);
409         } else
410                 INFO("TDLS Peer Disconnected peer_mac(%s) != peer_mac_address(%s)", peer_mac, peer_mac_addr);
411 }
412
413
414 void netconfig_wifi_tdls_peer_found_event(GVariant *message)
415 {
416         DBG("WiFi TDLS Discovery EVENT Received !!");
417         const gchar *peer_mac_addr = NULL;
418
419         if (!is_timer_expired) {
420
421                 g_variant_get(message, "(s)", &peer_mac_addr);
422                 INFO("Discover Peer Mac Address: [%s]", peer_mac_addr);
423
424                 if (is_discover_broadcast == 0)
425                         stop_tdls_timer();
426
427                 __netconfig_wifi_notify_tdls_discover_event(peer_mac_addr, is_discover_broadcast);
428         } else
429                 DBG("Timer expired: Do not process the TDLS Discovery Event");
430 }
431