Merge "Added dbus method to get whether 6GHz band is supported" into tizen
[platform/upstream/connman.git] / gsupplicant / gsupplicant.h
1 /*
2  *
3  *  WPA supplicant library with GLib integration
4  *
5  *  Copyright (C) 2012-2013  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 #ifndef __G_SUPPLICANT_H
22 #define __G_SUPPLICANT_H
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27
28 #define G_SUPPLICANT_EAP_METHOD_MD5     (1 << 0)
29 #define G_SUPPLICANT_EAP_METHOD_TLS     (1 << 1)
30 #define G_SUPPLICANT_EAP_METHOD_MSCHAPV2        (1 << 2)
31 #define G_SUPPLICANT_EAP_METHOD_PEAP    (1 << 3)
32 #define G_SUPPLICANT_EAP_METHOD_TTLS    (1 << 4)
33 #define G_SUPPLICANT_EAP_METHOD_GTC     (1 << 5)
34 #define G_SUPPLICANT_EAP_METHOD_OTP     (1 << 6)
35 #define G_SUPPLICANT_EAP_METHOD_LEAP    (1 << 7)
36 #define G_SUPPLICANT_EAP_METHOD_WSC     (1 << 8)
37
38 #define G_SUPPLICANT_CAPABILITY_AUTHALG_OPEN    (1 << 0)
39 #define G_SUPPLICANT_CAPABILITY_AUTHALG_SHARED  (1 << 1)
40 #define G_SUPPLICANT_CAPABILITY_AUTHALG_LEAP    (1 << 2)
41
42 #define G_SUPPLICANT_CAPABILITY_PROTO_WPA               (1 << 0)
43 #define G_SUPPLICANT_CAPABILITY_PROTO_RSN               (1 << 1)
44
45 #define G_SUPPLICANT_CAPABILITY_SCAN_ACTIVE     (1 << 0)
46 #define G_SUPPLICANT_CAPABILITY_SCAN_PASSIVE    (1 << 1)
47 #define G_SUPPLICANT_CAPABILITY_SCAN_SSID               (1 << 2)
48
49 #define G_SUPPLICANT_CAPABILITY_MODE_INFRA      (1 << 0)
50 #define G_SUPPLICANT_CAPABILITY_MODE_IBSS               (1 << 1)
51 #define G_SUPPLICANT_CAPABILITY_MODE_AP         (1 << 2)
52 #define G_SUPPLICANT_CAPABILITY_MODE_P2P        (1 << 3)
53 #if defined TIZEN_EXT_WIFI_MESH
54 #define G_SUPPLICANT_CAPABILITY_MODE_MESH      (1 << 4)
55 #endif
56
57 #define G_SUPPLICANT_KEYMGMT_NONE               (1 << 0)
58 #define G_SUPPLICANT_KEYMGMT_IEEE8021X  (1 << 1)
59 #define G_SUPPLICANT_KEYMGMT_WPA_NONE   (1 << 2)
60 #define G_SUPPLICANT_KEYMGMT_WPA_PSK    (1 << 3)
61 #define G_SUPPLICANT_KEYMGMT_WPA_PSK_256        (1 << 4)
62 #if defined TIZEN_EXT
63 #define G_SUPPLICANT_KEYMGMT_WPA_FT_EAP (1 << 5)
64 #define G_SUPPLICANT_KEYMGMT_WPA_FT_PSK (1 << 6)
65 #else
66 #define G_SUPPLICANT_KEYMGMT_WPA_FT_PSK (1 << 5)
67 #define G_SUPPLICANT_KEYMGMT_WPA_FT_EAP (1 << 6)
68 #endif
69 #define G_SUPPLICANT_KEYMGMT_WPA_EAP    (1 << 7)
70 #define G_SUPPLICANT_KEYMGMT_WPA_EAP_256        (1 << 8)
71 #define G_SUPPLICANT_KEYMGMT_WPS                (1 << 9)
72 #if defined TIZEN_EXT
73 #define G_SUPPLICANT_KEYMGMT_SAE                (1 << 10)
74 #define G_SUPPLICANT_KEYMGMT_FT_SAE             (1 << 11)
75 #define G_SUPPLICANT_KEYMGMT_OWE                (1 << 22)
76 #define G_SUPPLICANT_KEYMGMT_DPP                (1 << 23)
77 #endif
78
79 #define G_SUPPLICANT_PROTO_WPA          (1 << 0)
80 #define G_SUPPLICANT_PROTO_RSN          (1 << 1)
81
82 #define G_SUPPLICANT_GROUP_WEP40                (1 << 0)
83 #define G_SUPPLICANT_GROUP_WEP104               (1 << 1)
84 #define G_SUPPLICANT_GROUP_TKIP         (1 << 2)
85 #define G_SUPPLICANT_GROUP_CCMP         (1 << 3)
86
87 #define G_SUPPLICANT_PAIRWISE_NONE      (1 << 0)
88 #define G_SUPPLICANT_PAIRWISE_TKIP      (1 << 1)
89 #define G_SUPPLICANT_PAIRWISE_CCMP      (1 << 2)
90
91 #define G_SUPPLICANT_WPS_CONFIGURED     (1 << 0)
92 #define G_SUPPLICANT_WPS_PBC            (1 << 1)
93 #define G_SUPPLICANT_WPS_PIN            (1 << 2)
94 #define G_SUPPLICANT_WPS_REGISTRAR      (1 << 3)
95
96 #define G_SUPPLICANT_WPS_CONFIG_PBC     0x0080
97
98 #define G_SUPPLICANT_GROUP_ROLE_CLIENT  (1 << 0)
99 #define G_SUPPLICANT_GROUP_ROLE_GO      (1 << 1)
100
101 typedef enum {
102         G_SUPPLICANT_MODE_UNKNOWN,
103         G_SUPPLICANT_MODE_INFRA,
104         G_SUPPLICANT_MODE_IBSS,
105         G_SUPPLICANT_MODE_MASTER,
106 #if defined TIZEN_EXT_WIFI_MESH
107         G_SUPPLICANT_MODE_MESH,
108 #endif
109 } GSupplicantMode;
110
111 #if defined TIZEN_EXT_WIFI_MESH
112 typedef enum {
113         G_SUPPLICANT_IEEE80211W_UNKNOWN,
114         G_SUPPLICANT_IEEE80211W_OPTIONAL,
115         G_SUPPLICANT_IEEE80211W_REQUIRED,
116 } GSupplicantPmf;
117 #endif
118
119 typedef enum {
120         G_SUPPLICANT_SECURITY_UNKNOWN,
121         G_SUPPLICANT_SECURITY_NONE,
122         G_SUPPLICANT_SECURITY_WEP,
123         G_SUPPLICANT_SECURITY_PSK,
124         G_SUPPLICANT_SECURITY_IEEE8021X,
125 #if defined TIZEN_EXT
126         G_SUPPLICANT_SECURITY_FT_PSK,
127         G_SUPPLICANT_SECURITY_FT_IEEE8021X,
128         G_SUPPLICANT_SECURITY_SAE,
129         G_SUPPLICANT_SECURITY_OWE,
130         G_SUPPLICANT_SECURITY_DPP,
131         G_SUPPLICANT_SECURITY_PSK_SHA256,
132 #endif
133 } GSupplicantSecurity;
134
135 #if defined TIZEN_EXT
136 typedef enum {
137         G_SUPPLICANT_EAP_KEYMGMT_NONE,
138         G_SUPPLICANT_EAP_KEYMGMT_FT,
139         G_SUPPLICANT_EAP_KEYMGMT_CCKM,
140         G_SUPPLICANT_EAP_KEYMGMT_OKC,
141 } GSupplicantEapKeymgmt;
142
143 typedef enum {
144         G_SUPPLICANT_MODE_IEEE80211_UNKNOWN,
145         G_SUPPLICANT_MODE_IEEE80211B,
146         G_SUPPLICANT_MODE_IEEE80211BG,
147         G_SUPPLICANT_MODE_IEEE80211BGN,
148         G_SUPPLICANT_MODE_IEEE80211A,
149         G_SUPPLICANT_MODE_IEEE80211AN,
150         G_SUPPLICANT_MODE_IEEE80211ANAC,
151 } GSupplicantPhy_mode;
152 #endif
153
154 typedef enum {
155         G_SUPPLICANT_STATE_UNKNOWN,
156         G_SUPPLICANT_STATE_DISABLED,
157         G_SUPPLICANT_STATE_DISCONNECTED,
158         G_SUPPLICANT_STATE_INACTIVE,
159         G_SUPPLICANT_STATE_SCANNING,
160         G_SUPPLICANT_STATE_AUTHENTICATING,
161         G_SUPPLICANT_STATE_ASSOCIATING,
162         G_SUPPLICANT_STATE_ASSOCIATED,
163         G_SUPPLICANT_STATE_4WAY_HANDSHAKE,
164         G_SUPPLICANT_STATE_GROUP_HANDSHAKE,
165         G_SUPPLICANT_STATE_COMPLETED,
166 } GSupplicantState;
167
168 typedef enum {
169         G_SUPPLICANT_WPS_STATE_UNKNOWN,
170         G_SUPPLICANT_WPS_STATE_SUCCESS,
171         G_SUPPLICANT_WPS_STATE_FAIL,
172 } GSupplicantWpsState;
173
174 typedef enum {
175         G_SUPPLICANT_PEER_SERVICES_CHANGED,
176         G_SUPPLICANT_PEER_GROUP_CHANGED,
177         G_SUPPLICANT_PEER_GROUP_STARTED,
178         G_SUPPLICANT_PEER_GROUP_FINISHED,
179         G_SUPPLICANT_PEER_GROUP_JOINED,
180         G_SUPPLICANT_PEER_GROUP_DISCONNECTED,
181         G_SUPPLICANT_PEER_GROUP_FAILED,
182 } GSupplicantPeerState;
183
184 #if defined TIZEN_EXT
185 typedef enum {
186         G_SUPPLICANT_INS_PREFERRED_FREQ_UNKNOWN,
187         G_SUPPLICANT_INS_PREFERRED_FREQ_24GHZ,
188         G_SUPPLICANT_INS_PREFERRED_FREQ_5GHZ,
189 } GSupplicantINSPreferredFreq;
190 #endif
191
192 typedef enum {
193         G_SUPPLICANT_MFP_NONE,
194         G_SUPPLICANT_MFP_OPTIONAL,
195         G_SUPPLICANT_MFP_REQUIRED,
196 } GSupplicantMfpOptions;
197
198 struct _GSupplicantSSID {
199 #if defined TIZEN_EXT
200         void *ssid;
201 #else
202         const void *ssid;
203 #endif
204         unsigned int ssid_len;
205         unsigned int scan_ssid;
206         GSupplicantMode mode;
207         GSupplicantSecurity security;
208         unsigned int protocol;
209         unsigned int pairwise_cipher;
210         unsigned int group_cipher;
211         unsigned int freq;
212         const char *eap;
213         const char *passphrase;
214         const char *identity;
215         const char *anonymous_identity;
216         const char *ca_cert_path;
217         const char *subject_match;
218         const char *altsubject_match;
219         const char *domain_suffix_match;
220         const char *domain_match;
221         const char *client_cert_path;
222         const char *private_key_path;
223         const char *private_key_passphrase;
224         const char *phase2_auth;
225         dbus_bool_t use_wps;
226         const char *pin_wps;
227         const char *bgscan;
228 #if defined TIZEN_EXT
229         unsigned char *bssid;
230         unsigned int bssid_for_connect_len;
231         unsigned char bssid_for_connect[6];
232         GSupplicantEapKeymgmt eap_keymgmt;
233         const char *phase1;
234         const char *pac_file;
235         unsigned int keymgmt;
236         const char *connector;
237         const char *c_sign_key;
238         const char *net_access_key;
239         bool is_passphrase_alloc;
240         bool is_connector_alloc;
241         bool is_c_sign_key_alloc;
242         bool is_net_access_key_alloc;
243 #endif
244         GSupplicantMfpOptions ieee80211w;
245 };
246
247 typedef struct _GSupplicantSSID GSupplicantSSID;
248
249 /*
250  * Max number of SSIDs that can be scanned.
251  * In wpa_s 0.7x the limit is 4.
252  * In wps_s 0.8 or later it is 16.
253  * The value is only used if wpa_supplicant does not return any max limit
254  * for number of scannable SSIDs.
255  */
256 #define WPAS_MAX_SCAN_SSIDS 4
257
258 struct scan_ssid {
259         unsigned char ssid[32];
260         uint8_t ssid_len;
261 };
262
263 struct _GSupplicantScanParams {
264         GSList *ssids;
265
266         uint8_t num_ssids;
267
268         uint8_t num_freqs;
269         uint16_t *freqs;
270 };
271
272 typedef struct _GSupplicantScanParams GSupplicantScanParams;
273
274 struct _GSupplicantPeerParams {
275         bool master;
276         char *wps_pin;
277         char *path;
278 };
279
280 typedef struct _GSupplicantPeerParams GSupplicantPeerParams;
281
282 struct _GSupplicantP2PServiceParams {
283         int version;
284         char *service;
285         unsigned char *query;
286         int query_length;
287         unsigned char *response;
288         int response_length;
289         unsigned char *wfd_ies;
290         int wfd_ies_length;
291 };
292
293 typedef struct _GSupplicantP2PServiceParams GSupplicantP2PServiceParams;
294
295 #if defined TIZEN_EXT
296 #define WIFI_BSSID_STR_LEN 18
297 #define MAC2STR(a) (a)[0], (a)[1], (a)[2], (a)[3], (a)[4], (a)[5]
298 #define MACSTR "%02x:%02x:%02x:%02x:%02x:%02x"
299
300 #define WIFI_BSSID_LEN_MAX 6
301
302 struct g_connman_bssids {
303         unsigned char bssid[WIFI_BSSID_LEN_MAX];
304         uint16_t strength;
305         uint16_t frequency;
306         uint16_t assoc_reject_cnt;
307         bool is_last_connected;
308         unsigned int est_throughput;
309         int score_snr;
310 #if defined TIZEN_EXT_INS
311         int score_last_connected_bssid;
312         int score_assoc_reject;
313         int score_frequency;
314         int score_strength;
315         int score_est_throughput;
316 #endif
317         int ins_score;
318 };
319 #endif
320
321 /* global API */
322 typedef void (*GSupplicantCountryCallback) (int result,
323                                                 const char *alpha2,
324                                                         void *user_data);
325
326 int g_supplicant_set_country(const char *alpha2,
327                                 GSupplicantCountryCallback callback,
328                                                 const void *user_data);
329
330 /* Interface API */
331 struct _GSupplicantInterface;
332 struct _GSupplicantPeer;
333
334 typedef struct _GSupplicantInterface GSupplicantInterface;
335 typedef struct _GSupplicantPeer GSupplicantPeer;
336 #if defined TIZEN_EXT_WIFI_MESH
337 typedef struct _GSupplicantMeshPeer GSupplicantMeshPeer;
338 #endif
339
340 typedef void (*GSupplicantInterfaceCallback) (int result,
341                                         GSupplicantInterface *interface,
342                                                         void *user_data);
343
344 #if defined TIZEN_EXT
345 typedef void (*GSupplicantMaxSpeedCallback) (int result, int maxspeed,
346                                              int strength, int snr, void *user_data,
347                                                  unsigned int est_throughput);
348 #endif
349
350 void g_supplicant_interface_cancel(GSupplicantInterface *interface);
351
352 int g_supplicant_interface_create(const char *ifname, const char *driver,
353                                         const char *bridge,
354 #ifdef TIZEN_EXT
355                                         unsigned int mac_policy,
356                                         unsigned int preassoc_mac_policy,
357                                         unsigned int random_mac_lifetime,
358 #endif /* TIZEN_EXT */
359                                         GSupplicantInterfaceCallback callback,
360                                                         void *user_data);
361 int g_supplicant_interface_remove(GSupplicantInterface *interface,
362                                         GSupplicantInterfaceCallback callback,
363                                                         void *user_data);
364 int g_supplicant_interface_scan(GSupplicantInterface *interface,
365                                         GSupplicantScanParams *scan_data,
366                                         GSupplicantInterfaceCallback callback,
367                                                         void *user_data);
368
369 #if defined TIZEN_EXT
370 int g_supplicant_interface_signalpoll(GSupplicantInterface *interface,
371                                         GSupplicantMaxSpeedCallback callback,
372                                         void *user_data);
373 #endif
374
375 int g_supplicant_interface_p2p_find(GSupplicantInterface *interface,
376                                         GSupplicantInterfaceCallback callback,
377                                                         void *user_data);
378
379 int g_supplicant_interface_p2p_stop_find(GSupplicantInterface *interface);
380
381 int g_supplicant_interface_p2p_connect(GSupplicantInterface *interface,
382                                         GSupplicantPeerParams *peer_params,
383                                         GSupplicantInterfaceCallback callback,
384                                         void *user_data);
385
386 int g_supplicant_interface_p2p_disconnect(GSupplicantInterface *interface,
387                                         GSupplicantPeerParams *peer_params);
388
389 int g_supplicant_interface_p2p_listen(GSupplicantInterface *interface,
390                                                 int period, int interval);
391
392 int g_supplicant_interface_p2p_add_service(GSupplicantInterface *interface,
393                                 GSupplicantInterfaceCallback callback,
394                                 GSupplicantP2PServiceParams *p2p_service_params,
395                                 void *user_data);
396
397 int g_supplicant_interface_p2p_del_service(GSupplicantInterface *interface,
398                                 GSupplicantP2PServiceParams *p2p_service_params);
399
400 int g_supplicant_set_widi_ies(GSupplicantP2PServiceParams *p2p_service_params,
401                                         GSupplicantInterfaceCallback callback,
402                                         void *user_data);
403
404 int g_supplicant_interface_connect(GSupplicantInterface *interface,
405                                         GSupplicantSSID *ssid,
406                                         GSupplicantInterfaceCallback callback,
407                                                         void *user_data);
408
409 int g_supplicant_interface_disconnect(GSupplicantInterface *interface,
410                                         GSupplicantInterfaceCallback callback,
411                                                         void *user_data);
412
413 int g_supplicant_interface_set_bss_expiration_age(GSupplicantInterface *interface,
414                                         unsigned int bss_expiration_age);
415
416 #if defined TIZEN_EXT
417 void g_supplicant_interface_remove_network(GSupplicantInterface *interface,
418                                 GSupplicantSSID *ssid);
419 #endif
420
421 int g_supplicant_interface_set_apscan(GSupplicantInterface *interface,
422                                                         unsigned int ap_scan);
423
424 void g_supplicant_interface_set_data(GSupplicantInterface *interface,
425                                                                 void *data);
426 void *g_supplicant_interface_get_data(GSupplicantInterface *interface);
427 const char *g_supplicant_interface_get_ifname(GSupplicantInterface *interface);
428 #if defined TIZEN_EXT
429 bool g_supplicant_interface_get_is_5_0_ghz_supported(GSupplicantInterface *interface);
430 bool g_supplicant_interface_get_is_6_0_ghz_supported(GSupplicantInterface *interface);
431 unsigned char *g_supplicant_interface_get_add_network_bssid(GSupplicantInterface *interface);
432
433 typedef void (*GSupplicantMacPolicyCallback) (int result, unsigned int policy, void *user_data);
434 int g_supplicant_interface_set_mac_policy(GSupplicantInterface *interface,
435                                         GSupplicantMacPolicyCallback callback,
436                                                         unsigned int policy,
437                                                         void *user_data);
438
439 int g_supplicant_interface_set_preassoc_mac_policy(GSupplicantInterface *interface,
440                                         GSupplicantMacPolicyCallback callback,
441                                                         unsigned int policy,
442                                                         void *user_data);
443
444 typedef void (*GSupplicantRandomMaclifetimeCallback) (int result, unsigned int lifetime, void *user_data);
445 int g_supplicant_interface_set_random_mac_lifetime(GSupplicantInterface *interface,
446                                         GSupplicantRandomMaclifetimeCallback callback,
447                                                         unsigned int lifetime,
448                                                         void *user_data);
449 #endif
450 const char *g_supplicant_interface_get_driver(GSupplicantInterface *interface);
451 GSupplicantState g_supplicant_interface_get_state(GSupplicantInterface *interface);
452 const char *g_supplicant_interface_get_wps_key(GSupplicantInterface *interface);
453 const void *g_supplicant_interface_get_wps_ssid(GSupplicantInterface *interface,
454                                                         unsigned int *ssid_len);
455 GSupplicantWpsState g_supplicant_interface_get_wps_state(GSupplicantInterface *interface);
456 unsigned int g_supplicant_interface_get_mode(GSupplicantInterface *interface);
457 dbus_bool_t g_supplicant_interface_get_ready(GSupplicantInterface *interface);
458 unsigned int g_supplicant_interface_get_max_scan_ssids(
459                                         GSupplicantInterface *interface);
460
461 int g_supplicant_interface_enable_selected_network(GSupplicantInterface *interface,
462                                                         dbus_bool_t enable);
463 int g_supplicant_interface_set_country(GSupplicantInterface *interface,
464                                         GSupplicantCountryCallback callback,
465                                                         const char *alpha2,
466                                                         void *user_data);
467 bool g_supplicant_interface_has_p2p(GSupplicantInterface *interface);
468 int g_supplicant_interface_set_p2p_device_config(GSupplicantInterface *interface,
469                                                 const char *device_name,
470                                                 const char *primary_dev_type);
471 GSupplicantPeer *g_supplicant_interface_peer_lookup(GSupplicantInterface *interface,
472                                                 const char *identifier);
473 bool g_supplicant_interface_is_p2p_finding(GSupplicantInterface *interface);
474
475 #if defined TIZEN_EXT_WIFI_MESH
476 bool g_supplicant_interface_has_mesh(GSupplicantInterface *interface);
477 int g_supplicant_mesh_interface_create(const char *ifname, const char *driver,
478                                                 const char *bridge, const char *parent_ifname,
479                                                 GSupplicantInterfaceCallback callback, void *user_data);
480 const void *g_supplicant_interface_get_mesh_group_ssid(
481                                                         GSupplicantInterface *interface,
482                                                         unsigned int *ssid_len);
483 int g_supplicant_mesh_get_disconnect_reason(GSupplicantInterface *interface);
484 const char *g_supplicant_mesh_peer_get_address(GSupplicantMeshPeer *mesh_peer);
485 int g_supplicant_mesh_peer_get_disconnect_reason(
486                                                         GSupplicantMeshPeer *mesh_peer);
487 int g_supplicant_interface_abort_scan(GSupplicantInterface *interface,
488                                 GSupplicantInterfaceCallback callback, void *user_data);
489 int g_supplicant_interface_mesh_peer_change_status(
490                                 GSupplicantInterface *interface,
491                                 GSupplicantInterfaceCallback callback, const char *peer_address,
492                                 const char *method, void *user_data);
493 #endif
494
495 /* Network and Peer API */
496 struct _GSupplicantNetwork;
497 struct _GSupplicantGroup;
498
499 typedef struct _GSupplicantNetwork GSupplicantNetwork;
500 typedef struct _GSupplicantGroup GSupplicantGroup;
501
502 GSupplicantInterface *g_supplicant_network_get_interface(GSupplicantNetwork *network);
503 const char *g_supplicant_network_get_name(GSupplicantNetwork *network);
504 const char *g_supplicant_network_get_identifier(GSupplicantNetwork *network);
505 const char *g_supplicant_network_get_path(GSupplicantNetwork *network);
506 const void *g_supplicant_network_get_ssid(GSupplicantNetwork *network,
507                                                         unsigned int *ssid_len);
508 const char *g_supplicant_network_get_mode(GSupplicantNetwork *network);
509 const char *g_supplicant_network_get_security(GSupplicantNetwork *network);
510 dbus_int16_t g_supplicant_network_get_signal(GSupplicantNetwork *network);
511 dbus_uint16_t g_supplicant_network_get_frequency(GSupplicantNetwork *network);
512 dbus_bool_t g_supplicant_network_get_wps(GSupplicantNetwork *network);
513 dbus_bool_t g_supplicant_network_is_wps_active(GSupplicantNetwork *network);
514 dbus_bool_t g_supplicant_network_is_wps_pbc(GSupplicantNetwork *network);
515 dbus_bool_t g_supplicant_network_is_wps_advertizing(GSupplicantNetwork *network);
516
517 GSupplicantInterface *g_supplicant_peer_get_interface(GSupplicantPeer *peer);
518 const char *g_supplicant_peer_get_path(GSupplicantPeer *peer);
519 const char *g_supplicant_peer_get_identifier(GSupplicantPeer *peer);
520 const void *g_supplicant_peer_get_device_address(GSupplicantPeer *peer);
521 const void *g_supplicant_peer_get_iface_address(GSupplicantPeer *peer);
522 const char *g_supplicant_peer_get_name(GSupplicantPeer *peer);
523 const unsigned char *g_supplicant_peer_get_widi_ies(GSupplicantPeer *peer,
524                                                                 int *length);
525 bool g_supplicant_peer_is_wps_pbc(GSupplicantPeer *peer);
526 bool g_supplicant_peer_is_wps_pin(GSupplicantPeer *peer);
527 bool g_supplicant_peer_is_in_a_group(GSupplicantPeer *peer);
528 GSupplicantInterface *g_supplicant_peer_get_group_interface(GSupplicantPeer *peer);
529 bool g_supplicant_peer_is_client(GSupplicantPeer *peer);
530 bool g_supplicant_peer_has_requested_connection(GSupplicantPeer *peer);
531
532 #if defined TIZEN_EXT
533 /*
534 * Description: Network client requires additional wifi specific info
535 */
536 const unsigned char *g_supplicant_network_get_bssid(
537                                                 GSupplicantNetwork *network);
538 unsigned int g_supplicant_network_get_maxrate(GSupplicantNetwork *network);
539 const char *g_supplicant_network_get_enc_mode(GSupplicantNetwork *network);
540 bool g_supplicant_network_get_rsn_mode(GSupplicantNetwork *network);
541 bool g_supplicant_network_is_hs20AP(GSupplicantNetwork *network);
542 const char *g_supplicant_network_get_eap(GSupplicantNetwork *network);
543 const char *g_supplicant_network_get_identity(GSupplicantNetwork *network);
544 const char *g_supplicant_network_get_phase2(GSupplicantNetwork *network);
545 unsigned int g_supplicant_network_get_keymgmt(GSupplicantNetwork *network);
546 dbus_bool_t g_supplicant_network_get_privacy(GSupplicantNetwork *network);
547 void *g_supplicant_network_get_wifi_vsie(GSupplicantNetwork *network);
548 const unsigned char *g_supplicant_network_get_countrycode(GSupplicantNetwork
549                                                           *network);
550 dbus_bool_t g_supplicant_network_is_pmf_required(GSupplicantNetwork *network);
551 void *g_supplicant_network_get_bssid_list(GSupplicantNetwork *network);
552 GSupplicantPhy_mode g_supplicant_network_get_phy_mode(GSupplicantNetwork *network);
553 dbus_bool_t g_supplicant_network_get_transition_mode(GSupplicantNetwork *network);
554 const unsigned char *g_supplicant_network_get_transition_mode_bssid(GSupplicantNetwork *network);
555 const void *g_supplicant_network_get_transition_mode_ssid(GSupplicantNetwork *network,
556                                                         unsigned int *transition_mode_ssid_len);
557 void g_supplicant_network_set_signal(GSupplicantNetwork *network, int signal);
558 void g_supplicant_network_set_bss_signal(GSupplicantNetwork *network,
559                 int signal, int snr);
560 GSupplicantNetwork *g_supplicant_interface_get_network(GSupplicantInterface *interface,
561                 const char *group);
562 #endif
563 #if defined TIZEN_EXT_INS
564 void g_supplicant_network_set_last_connected_bssid(GSupplicantNetwork *network, const unsigned char *bssid);
565 const unsigned char *g_supplicant_network_get_last_connected_bssid(GSupplicantNetwork *network);
566 void g_supplicant_network_update_assoc_reject(GSupplicantInterface *interface,
567                 GSupplicantNetwork *network);
568 GHashTable *g_supplicant_network_get_assoc_reject_table(GSupplicantNetwork *network);
569 GHashTable *g_supplicant_network_clone_assoc_reject_table(GSupplicantNetwork *network);
570 #endif
571
572 #if defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET
573 typedef void (*g_supplicant_eap_callback)(GSupplicantInterface *interface, bool status);
574 #endif /* defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET */
575
576 struct _GSupplicantCallbacks {
577         void (*system_ready) (void);
578         void (*system_killed) (void);
579         void (*interface_added) (GSupplicantInterface *interface);
580         void (*interface_state) (GSupplicantInterface *interface);
581         void (*interface_removed) (GSupplicantInterface *interface);
582         void (*p2p_support) (GSupplicantInterface *interface);
583         void (*scan_started) (GSupplicantInterface *interface);
584         void (*scan_finished) (GSupplicantInterface *interface);
585         void (*ap_create_fail) (GSupplicantInterface *interface);
586         void (*network_added) (GSupplicantNetwork *network);
587         void (*network_removed) (GSupplicantNetwork *network);
588 #if defined TIZEN_EXT
589         void (*network_merged) (GSupplicantNetwork *network);
590 #endif
591         void (*network_changed) (GSupplicantNetwork *network,
592                                         const char *property);
593         void (*network_associated) (GSupplicantNetwork *network);
594 #if defined TIZEN_EXT
595         void (*system_power_off) (void);
596         void (*assoc_failed) (void *user_data);
597         void (*scan_done) (GSupplicantInterface *interface);
598 #endif
599         void (*sta_authorized) (GSupplicantInterface *interface,
600                                         const char *addr);
601         void (*sta_deauthorized) (GSupplicantInterface *interface,
602                                         const char *addr);
603         void (*peer_found) (GSupplicantPeer *peer);
604         void (*peer_lost) (GSupplicantPeer *peer);
605         void (*peer_changed) (GSupplicantPeer *peer,
606                                         GSupplicantPeerState state);
607         void (*peer_request) (GSupplicantPeer *peer);
608         void (*debug) (const char *str);
609         void (*disconnect_reasoncode)(GSupplicantInterface *interface,
610                                 int reasoncode);
611         void (*assoc_status_code)(GSupplicantInterface *interface,
612                                 int reasoncode);
613 #if defined TIZEN_EXT_WIFI_MESH
614         void (*mesh_support) (GSupplicantInterface *interface);
615         void (*mesh_group_started) (GSupplicantInterface *interface);
616         void (*mesh_group_removed) (GSupplicantInterface *interface);
617         void (*mesh_peer_connected) (GSupplicantMeshPeer *mesh_peer);
618         void (*mesh_peer_disconnected) (GSupplicantMeshPeer *mesh_peer);
619 #endif
620
621 #if defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET
622         g_supplicant_eap_callback eap;
623 #endif /* defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET */
624 };
625
626 typedef struct _GSupplicantCallbacks GSupplicantCallbacks;
627
628 #if defined TIZEN_EXT && defined TIZEN_EXT_INS
629 void g_supplicant_set_ins_settings(GSupplicantINSPreferredFreq preferred_freq_bssid,
630                 bool last_connected_bssid, bool assoc_reject, bool signal_bssid,
631                 unsigned int preferred_freq_bssid_score, unsigned int last_connected_bssid_score,
632                 unsigned int assoc_reject_score, int signal_level3_5ghz, int signal_level3_24ghz);
633 #endif /* defined TIZEN_EXT && defined TIZEN_EXT_INS */
634
635 #if defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET
636 void g_supplicant_replace_config_file(const char *ifname, const char *config_file);
637 void g_supplicant_register_eap_callback(g_supplicant_eap_callback cb);
638 void g_supplicant_unregister_eap_callback(void);
639 #endif /* defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET */
640
641 #if defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET
642 int g_supplicant_register(GSupplicantCallbacks *callbacks);
643 #else /* defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET */
644 int g_supplicant_register(const GSupplicantCallbacks *callbacks);
645 #endif /* defined TIZEN_EXT && defined TIZEN_EXT_EAP_ON_ETHERNET */
646 void g_supplicant_unregister(const GSupplicantCallbacks *callbacks);
647
648 static inline
649 void g_supplicant_free_scan_params(GSupplicantScanParams *scan_params)
650 {
651         g_slist_free_full(scan_params->ssids, g_free);
652         g_free(scan_params->freqs);
653         g_free(scan_params);
654 }
655
656 #ifdef __cplusplus
657 }
658 #endif
659
660 #endif /* __G_SUPPLICANT_H */