2008-11-28 18:46:22 +01:00
|
|
|
/*
|
|
|
|
* wpa_supplicant / WPS integration
|
2009-09-06 12:58:15 +02:00
|
|
|
* Copyright (c) 2008-2009, Jouni Malinen <j@w1.fi>
|
2008-11-28 18:46:22 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of BSD
|
|
|
|
* license.
|
|
|
|
*
|
|
|
|
* See README and COPYING for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WPS_SUPPLICANT_H
|
|
|
|
#define WPS_SUPPLICANT_H
|
|
|
|
|
2010-01-03 20:21:03 +01:00
|
|
|
struct wpa_scan_res;
|
|
|
|
|
2008-11-28 18:46:22 +01:00
|
|
|
#ifdef CONFIG_WPS
|
|
|
|
|
2009-01-03 18:50:49 +01:00
|
|
|
#include "wps/wps.h"
|
|
|
|
#include "wps/wps_defs.h"
|
|
|
|
|
2010-01-02 15:16:02 +01:00
|
|
|
struct wpa_bss;
|
|
|
|
|
2009-09-06 12:58:15 +02:00
|
|
|
struct wps_new_ap_settings {
|
|
|
|
const char *ssid_hex;
|
|
|
|
const char *auth;
|
|
|
|
const char *encr;
|
|
|
|
const char *key_hex;
|
|
|
|
};
|
|
|
|
|
2008-11-28 19:32:13 +01:00
|
|
|
int wpas_wps_init(struct wpa_supplicant *wpa_s);
|
|
|
|
void wpas_wps_deinit(struct wpa_supplicant *wpa_s);
|
2008-11-28 18:46:22 +01:00
|
|
|
int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s);
|
2009-01-03 18:50:49 +01:00
|
|
|
enum wps_request_type wpas_wps_get_req_type(struct wpa_ssid *ssid);
|
2010-07-18 23:30:24 +02:00
|
|
|
int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid,
|
|
|
|
int p2p_group);
|
2008-11-29 19:59:45 +01:00
|
|
|
int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
|
2010-06-27 07:49:41 +02:00
|
|
|
const char *pin, int p2p_group, u16 dev_pw_id);
|
2010-09-06 19:51:06 +02:00
|
|
|
int wpas_wps_cancel(struct wpa_supplicant *wpa_s);
|
2009-02-26 20:57:38 +01:00
|
|
|
int wpas_wps_start_oob(struct wpa_supplicant *wpa_s, char *device_type,
|
2009-03-06 15:16:22 +01:00
|
|
|
char *path, char *method, char *name);
|
2008-11-29 19:59:45 +01:00
|
|
|
int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid,
|
2009-09-06 12:58:15 +02:00
|
|
|
const char *pin, struct wps_new_ap_settings *settings);
|
2009-01-23 12:10:58 +01:00
|
|
|
int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid, struct wpa_scan_res *bss);
|
|
|
|
int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid, struct wpa_scan_res *bss);
|
2008-11-29 21:06:34 +01:00
|
|
|
int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
|
2010-01-02 15:16:02 +01:00
|
|
|
struct wpa_bss *selected, struct wpa_ssid *ssid);
|
2008-12-15 19:09:57 +01:00
|
|
|
void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s);
|
2008-12-20 21:55:02 +01:00
|
|
|
int wpas_wps_searching(struct wpa_supplicant *wpa_s);
|
2009-09-11 16:14:49 +02:00
|
|
|
int wpas_wps_scan_result_text(const u8 *ies, size_t ies_len, char *pos,
|
|
|
|
char *end);
|
2010-05-27 14:23:55 +02:00
|
|
|
int wpas_wps_er_start(struct wpa_supplicant *wpa_s, const char *filter);
|
2009-11-07 11:41:01 +01:00
|
|
|
int wpas_wps_er_stop(struct wpa_supplicant *wpa_s);
|
2009-12-12 15:40:10 +01:00
|
|
|
int wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const u8 *addr,
|
|
|
|
const char *uuid, const char *pin);
|
2009-11-15 17:46:03 +01:00
|
|
|
int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid);
|
2009-11-15 21:27:06 +01:00
|
|
|
int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid,
|
|
|
|
const char *pin);
|
2010-05-27 23:01:48 +02:00
|
|
|
int wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid,
|
|
|
|
const char *pin, struct wps_new_ap_settings *settings);
|
2009-12-19 22:47:54 +01:00
|
|
|
int wpas_wps_terminate_pending(struct wpa_supplicant *wpa_s);
|
2010-06-11 22:50:13 +02:00
|
|
|
int wpas_wps_in_progress(struct wpa_supplicant *wpa_s);
|
2010-07-18 23:30:24 +02:00
|
|
|
void wpas_wps_update_config(struct wpa_supplicant *wpa_s);
|
2008-11-28 18:46:22 +01:00
|
|
|
|
|
|
|
#else /* CONFIG_WPS */
|
|
|
|
|
2008-11-28 19:32:13 +01:00
|
|
|
static inline int wpas_wps_init(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void wpas_wps_deinit(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-11-28 18:46:22 +01:00
|
|
|
static inline int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-11-29 21:06:34 +01:00
|
|
|
static inline u8 wpas_wps_get_req_type(struct wpa_ssid *ssid)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-23 12:10:58 +01:00
|
|
|
static inline int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid,
|
2008-11-29 21:06:34 +01:00
|
|
|
struct wpa_scan_res *bss)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-01-23 12:10:58 +01:00
|
|
|
static inline int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid,
|
2008-11-29 21:06:34 +01:00
|
|
|
struct wpa_scan_res *bss)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
|
2010-01-03 20:21:03 +01:00
|
|
|
struct wpa_bss *selected,
|
2008-11-29 21:06:34 +01:00
|
|
|
struct wpa_ssid *ssid)
|
2008-11-28 18:46:22 +01:00
|
|
|
{
|
2008-11-29 12:38:03 +01:00
|
|
|
return 0;
|
2008-11-28 18:46:22 +01:00
|
|
|
}
|
|
|
|
|
2008-12-15 19:09:57 +01:00
|
|
|
static inline void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-12-20 21:55:02 +01:00
|
|
|
static inline int wpas_wps_searching(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-11-28 18:46:22 +01:00
|
|
|
#endif /* CONFIG_WPS */
|
|
|
|
|
|
|
|
#endif /* WPS_SUPPLICANT_H */
|