Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * wpa_supplicant / WPS integration |
| 3 | * Copyright (c) 2008-2009, Jouni Malinen <j@w1.fi> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * Alternatively, this software may be distributed under the terms of BSD |
| 10 | * license. |
| 11 | * |
| 12 | * See README and COPYING for more details. |
| 13 | */ |
| 14 | |
| 15 | #ifndef WPS_SUPPLICANT_H |
| 16 | #define WPS_SUPPLICANT_H |
| 17 | |
| 18 | struct wpa_scan_res; |
| 19 | |
| 20 | #ifdef CONFIG_WPS |
| 21 | |
| 22 | #include "wps/wps.h" |
| 23 | #include "wps/wps_defs.h" |
| 24 | |
| 25 | struct wpa_bss; |
| 26 | |
| 27 | struct wps_new_ap_settings { |
| 28 | const char *ssid_hex; |
| 29 | const char *auth; |
| 30 | const char *encr; |
| 31 | const char *key_hex; |
| 32 | }; |
| 33 | |
| 34 | int wpas_wps_init(struct wpa_supplicant *wpa_s); |
| 35 | void wpas_wps_deinit(struct wpa_supplicant *wpa_s); |
| 36 | int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s); |
| 37 | enum wps_request_type wpas_wps_get_req_type(struct wpa_ssid *ssid); |
| 38 | int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid, |
| 39 | int p2p_group); |
| 40 | int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid, |
| 41 | const char *pin, int p2p_group, u16 dev_pw_id); |
| 42 | int wpas_wps_cancel(struct wpa_supplicant *wpa_s); |
| 43 | int wpas_wps_start_oob(struct wpa_supplicant *wpa_s, char *device_type, |
| 44 | char *path, char *method, char *name); |
| 45 | int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid, |
| 46 | const char *pin, struct wps_new_ap_settings *settings); |
| 47 | int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s, |
| 48 | struct wpa_ssid *ssid, struct wpa_scan_res *bss); |
| 49 | int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s, |
| 50 | struct wpa_ssid *ssid, struct wpa_scan_res *bss); |
| 51 | int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s, |
| 52 | struct wpa_bss *selected, struct wpa_ssid *ssid); |
| 53 | void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s); |
| 54 | int wpas_wps_searching(struct wpa_supplicant *wpa_s); |
| 55 | int wpas_wps_scan_result_text(const u8 *ies, size_t ies_len, char *pos, |
| 56 | char *end); |
| 57 | int wpas_wps_er_start(struct wpa_supplicant *wpa_s, const char *filter); |
| 58 | int wpas_wps_er_stop(struct wpa_supplicant *wpa_s); |
| 59 | int wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const u8 *addr, |
| 60 | const char *uuid, const char *pin); |
| 61 | int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid); |
| 62 | int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid, |
| 63 | const char *pin); |
| 64 | int wpas_wps_er_set_config(struct wpa_supplicant *wpa_s, const char *uuid, |
| 65 | int id); |
| 66 | int wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid, |
| 67 | const char *pin, struct wps_new_ap_settings *settings); |
| 68 | int wpas_wps_terminate_pending(struct wpa_supplicant *wpa_s); |
| 69 | int wpas_wps_in_progress(struct wpa_supplicant *wpa_s); |
| 70 | void wpas_wps_update_config(struct wpa_supplicant *wpa_s); |
| 71 | |
| 72 | #else /* CONFIG_WPS */ |
| 73 | |
| 74 | static inline int wpas_wps_init(struct wpa_supplicant *wpa_s) |
| 75 | { |
| 76 | return 0; |
| 77 | } |
| 78 | |
| 79 | static inline void wpas_wps_deinit(struct wpa_supplicant *wpa_s) |
| 80 | { |
| 81 | } |
| 82 | |
| 83 | static inline int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s) |
| 84 | { |
| 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | static inline u8 wpas_wps_get_req_type(struct wpa_ssid *ssid) |
| 89 | { |
| 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | static inline int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s, |
| 94 | struct wpa_ssid *ssid, |
| 95 | struct wpa_scan_res *bss) |
| 96 | { |
| 97 | return -1; |
| 98 | } |
| 99 | |
| 100 | static inline int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s, |
| 101 | struct wpa_ssid *ssid, |
| 102 | struct wpa_scan_res *bss) |
| 103 | { |
| 104 | return 0; |
| 105 | } |
| 106 | |
| 107 | static inline int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s, |
| 108 | struct wpa_bss *selected, |
| 109 | struct wpa_ssid *ssid) |
| 110 | { |
| 111 | return 0; |
| 112 | } |
| 113 | |
| 114 | static inline void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s) |
| 115 | { |
| 116 | } |
| 117 | |
| 118 | static inline int wpas_wps_searching(struct wpa_supplicant *wpa_s) |
| 119 | { |
| 120 | return 0; |
| 121 | } |
| 122 | |
| 123 | #endif /* CONFIG_WPS */ |
| 124 | |
| 125 | #endif /* WPS_SUPPLICANT_H */ |