WPS: Moved WPS IE building for ProbeReq/AssocReq into wps.c
[libeap.git] / src / wps / wps.h
1 /*
2  * Wi-Fi Protected Setup
3  * Copyright (c) 2007-2008, 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_H
16 #define WPS_H
17
18 enum wsc_op_code {
19         WSC_Start = 0x01,
20         WSC_ACK = 0x02,
21         WSC_NACK = 0x03,
22         WSC_MSG = 0x04,
23         WSC_Done = 0x05,
24         WSC_FRAG_ACK = 0x06
25 };
26
27 struct wps_registrar;
28
29 struct wps_credential {
30         u8 ssid[32];
31         size_t ssid_len;
32         u16 auth_type;
33         u16 encr_type;
34         u8 key_idx;
35         u8 key[64];
36         size_t key_len;
37         u8 mac_addr[ETH_ALEN];
38 };
39
40 struct wps_device_data {
41         u8 mac_addr[ETH_ALEN];
42         char *device_name;
43         char *manufacturer;
44         char *model_name;
45         char *model_number;
46         char *serial_number;
47         u16 categ;
48         u32 oui;
49         u16 sub_categ;
50         u32 os_version;
51         u8 rf_bands; /* WPS_RF_* */
52 };
53
54 struct wps_config {
55         int authenticator;
56         struct wps_context *wps;
57         struct wps_registrar *registrar; /* NULL for Enrollee */
58         const u8 *enrollee_mac_addr; /* NULL for Registrar */
59         const u8 *pin; /* Enrollee Device Password (NULL for Registrar or PBC)
60                         */
61         size_t pin_len;
62         const u8 *uuid; /* 128-bit Enrollee UUID (NULL for Registrar) */
63         int pbc;
64         const struct wpabuf *assoc_wps_ie; /* (Re)AssocReq WPS IE (in AP) */
65 };
66
67 struct wps_data * wps_init(const struct wps_config *cfg);
68
69 void wps_deinit(struct wps_data *data);
70
71 enum wps_process_res {
72         WPS_DONE, WPS_CONTINUE, WPS_FAILURE, WPS_PENDING
73 };
74 enum wps_process_res wps_process_msg(struct wps_data *wps, u8 op_code,
75                                      const struct wpabuf *msg);
76
77 struct wpabuf * wps_get_msg(struct wps_data *wps, u8 *op_code);
78
79 int wps_is_selected_pbc_registrar(const u8 *buf, size_t len);
80 int wps_is_selected_pin_registrar(const u8 *buf, size_t len);
81 const u8 * wps_get_uuid_e(const u8 *buf, size_t len);
82 struct wpabuf * wps_build_assoc_req_ie(void);
83 struct wpabuf * wps_build_probe_req_ie(int pbc, struct wps_device_data *dev,
84                                        const u8 *uuid);
85
86
87 struct wps_registrar_config {
88         int (*new_psk_cb)(void *ctx, const u8 *mac_addr, const u8 *psk,
89                           size_t psk_len);
90         int (*set_ie_cb)(void *ctx, const u8 *beacon_ie, size_t beacon_ie_len,
91                          const u8 *probe_resp_ie, size_t probe_resp_ie_len);
92         void (*pin_needed_cb)(void *ctx, const u8 *uuid_e,
93                               const struct wps_device_data *dev);
94         void *cb_ctx;
95 };
96
97
98 /**
99  * struct wps_context - Long term WPS context data
100  *
101  * This data is stored at the higher layer Authenticator or Supplicant data
102  * structures and it is maintained over multiple registration protocol runs.
103  */
104 struct wps_context {
105         int ap;
106         struct wps_registrar *registrar;
107         int wps_state;
108         int ap_setup_locked;
109         u8 uuid[16];
110         u8 ssid[32];
111         size_t ssid_len;
112         struct wps_device_data dev;
113         u16 config_methods; /* bit field of WPS_CONFIG_* */
114         u16 encr_types; /* bit field of WPS_ENCR_* */
115         u16 auth_types; /* bit field of WPS_AUTH_* */
116         u8 *network_key; /* or NULL to generate per-device PSK */
117         size_t network_key_len;
118
119         int (*cred_cb)(void *ctx, const struct wps_credential *cred);
120         void *cb_ctx;
121 };
122
123
124 struct wps_registrar *
125 wps_registrar_init(struct wps_context *wps,
126                    const struct wps_registrar_config *cfg);
127 void wps_registrar_deinit(struct wps_registrar *reg);
128 int wps_registrar_add_pin(struct wps_registrar *reg, const u8 *uuid,
129                           const u8 *pin, size_t pin_len);
130 int wps_registrar_invalidate_pin(struct wps_registrar *reg, const u8 *uuid);
131 int wps_registrar_unlock_pin(struct wps_registrar *reg, const u8 *uuid);
132 int wps_registrar_button_pushed(struct wps_registrar *reg);
133 void wps_registrar_probe_req_rx(struct wps_registrar *reg, const u8 *addr,
134                                 const struct wpabuf *wps_data);
135
136 #endif /* WPS_H */