summaryrefslogtreecommitdiffstats
path: root/service/lib/nbd.h
blob: d4c1592be14d765a92184ae880e022fd99bc476c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276

#include "wifi_hal.h"

#ifndef __WIFI_HAL_NBD_H__
#define __WIFI_HAL_NBD_H__

/*****************************************************************************
 * NearBy Discovery
 *****************************************************************************/

#define NBD_MAC_ADDR_LEN 6
#define NBD_COUNTRY_STRING_LEN 3

typedef struct {
    u8 addr[NBD_MAC_ADDR_LEN];
    u8 channel;
    u8 role;
    u8 country_string[NBD_COUNTRY_STRING_LEN];
    u8 operating_class;
    u32 availability_bitmap;
} NbdWlanInfrastructureAttr;

typedef struct {
    u8 addr[NBD_MAC_ADDR_LEN];
    u8 channel;
    u8 role;
    u8 country_string[NBD_COUNTRY_STRING_LEN];
    u8 operating_class;
    u32 availability_bitmap;
} NbdP2pOperationAttr;

typedef struct {
    u8 addr[NBD_MAC_ADDR_LEN];
    u8 channel;
    u8 reserved;
    u8 country_string[NBD_COUNTRY_STRING_LEN];
    u8 operating_class;
    u32 availability_bitmap;
} NbdWlanIbssAttr;

typedef struct {
    u8 addr[NBD_MAC_ADDR_LEN];
    u8 channel;
    u8 reserved;
    u8 country_string[NBD_COUNTRY_STRING_LEN];
    u8 operating_class;
    u32 availability_bitmap;
    u8 tlvs[];
} NbdWlanMeshAttr;

typedef enum {
    NBD_RESPONSE_ENABLED,
    NBD_RESPONSE_PUBLISH,
    NBD_RESPONSE_PUBLISH_CANCEL,
    NBD_RESPONSE_PUBLISH_SSI,
    NBD_RESPONSE_SUBSCRIBE,
    NBD_RESPONSE_SUBSCRIBE_CANCEL,
    NBD_RESPONSE_SUBSCRIBE_FOLLOWUP,
    NBD_RESPONSE_STATS,
    NBD_RESPONSE_DISABLED
} NbdWlanRspType;

typedef struct {
    u16 version : 4;
    u16 message_id : 12;
    u16 message_length;
    u16 handle;
    u16 transaction_id;
} NbdWlanHeader;

typedef struct {

} NbdHeader;

typedef struct {
    NbdWlanHeader header;
    u16 status;
    u16 value;
    u8 *tlvs;
    u16 tlv_len;
} NbdWlanRspData;

typedef struct {
    NbdHeader header;
    u8 addr[NBD_MAC_ADDR_LEN];
} NbdPublishRepliedIndType;

typedef struct {
    NbdHeader header;
    u16 reason;
} NbdPublishTerminatedIndType;

typedef struct {
    NbdHeader header;
    u8 addr[NBD_MAC_ADDR_LEN];
    u8 *tlvs;
    u16 tlv_len;
} NbdPublishFollowupIndType;

typedef struct {
    NbdHeader header;
    u16 match_handle;
    u8 addr[NBD_MAC_ADDR_LEN];
    u8 *tlvs;
    u16 tlv_len;
} NbdSubscribeMatchIndType;

typedef struct {
    NbdHeader header;
    u16 match_handle;
} NbdSubscribeUnmatchIndType;

typedef struct {
    NbdHeader header;
    u16 reason;
} NbdSubscribeTerminatedIndType;

typedef struct {
    NbdHeader header;
    u16 match_handle;
    u8 *tlvs;
    u16 tlv_len;
} NbdSubscribeSsiIndType;

typedef struct {
    NbdHeader header;
    u8 event_id;
    u8 *tlvs;
    u16 tlv_len;
} NbdDeEventIndType;

typedef struct {
    NbdHeader header;
    u16 reason;
} NbdDisableIndType;

/* Response and Event Callbacks */
typedef struct {
    /* NotifyResponse invoked to notify the status of the Request */
    void (*NotifyResponse)(NbdWlanRspType rsp_type, NbdWlanRspData* rsp_data);
    /* Various Event Callback */
    void (*EventPublishReplied)(NbdPublishRepliedIndType* event_data);
    void (*EventPublishTerminated)(NbdPublishTerminatedIndType* event_data);
    void (*EventPublishFollowup) (NbdPublishFollowupIndType* event_data);
    void (*EventSubscribeMatch) (NbdSubscribeMatchIndType* event_data);
    /* void (*EventSubscribeUnMatch) (NbdSubscribeUnMatchIndType* event_data); */
    void (*EventSubscribeTerminated) (NbdSubscribeTerminatedIndType* event_data);
    void (*EventSubscribeSSI) (NbdSubscribeSsiIndType* event_data);
    void (*EventNbdDeEvent) (NbdDeEventIndType* event_data);
    void (*EventNbdDisabled) (NbdDisableIndType* event_data);
} NbdCallbackHandler;

/* Enable NBD in driver*/
wifi_error wifi_nbd_enable(
        wifi_request_id id,
        wifi_interface_handle handle,
        u8 support_5g,
        u16 cluster_low,
        u16 cluster_high,
        u8 sid,
        u8 sync_disc_5g,
        u8 rssi_close,
        u8 rssi_med,
        u8 hc_limit,
        u8 random_update_time,
        u8 master_pref,
        u8 periodic_scan_interval,
        NbdWlanInfrastructureAttr* wlan_infra,
        NbdP2pOperationAttr* p2p_oper,
        NbdWlanIbssAttr* wlan_ibss,
        NbdWlanMeshAttr* wlan_mesh,
        size_t wlan_mesh_len,
        NbdCallbackHandler handler
        /* TODO : Add support for Google Specific IE */
        );

/* Disable NBD request*/
wifi_error wifi_nbd_disable(
        wifi_request_id id);

/* Cluster discovery/joining */
typedef struct {
    void (*NotifyClusterDiscovery)(wifi_request_id id, mac_addr addr);
    void (*NotifyClusterLoss)(wifi_request_id id);
} NbdClusterDiscoveryHandler;

wifi_error wifi_nbd_discover(
        wifi_interface_handle handle,
        NbdClusterDiscoveryHandler handler,
        int single_shot
        );

wifi_error wifi_nbd_start_or_join_cluster(
        wifi_interface_handle handle,
        int preference,                     // Local Master preference
        byte token[64],                     // token to publish in discovery beacon
        int recommended_hop_count,          // hop count to publish in the discovery beacon
        int maximum_rssi);                  // maximum_rssi to publish in the discovery beacon

/* Send NBD Publish request */
wifi_error wifi_nbd_publish(
        wifi_request_id id,
        wifi_interface_handle handle,
        u32 ttl,
        u32 period,
        u32 replied_event,
        u32 count,
        u32 publish_type,
        u32 tx_type,
        char *service_name,
        size_t service_name_len,
        char *rx_match_filter,
        size_t rx_match_filter_len,
        char *tx_match_filter,
        size_t tx_match_filter_len,
        char *service_specific_info,
        size_t service_specific_info_len,
        char *group_key,
        size_t group_key_len);

/* Cancel NBD Publish request */
wifi_error wifi_nbd_publish_cancel(
        wifi_request_id id);

/* Send NBD Publish Service Specific Info Request */
wifi_error wifi_nbd_publish_ssi(
        wifi_request_id id,
        wifi_interface_handle handle,
        u32 priority, // should we make this frequency?
        char *addr,
        char *service_name,
        size_t service_name_len,
        char *tx_match_filter,
        size_t tx_match_filter_len,
        char *service_specific_info,
        size_t service_specific_info_len);

/* Send NBD subscribe request */
wifi_error wifi_nbd_subscribe(
        wifi_request_id id,
        wifi_interface_handle handle,
        u32 subscribe_type,
        u32 period,
        u32 ttl,
        u32 count,
        u32 srf,
        u32 srfa,
        u32 srfi,
        u32 ssin,
        u32 match,
        char* service_name,
        size_t service_name_len,
        char* rx_match_filter,
        size_t rx_match_filter_len,
        char *tx_match_filter,
        size_t tx_match_filter_len,
        char *service_specific_info,
        size_t service_specific_info_len,
        char *group_key,
        size_t group_key_len);

/* Cancel NBD subscribe request*/
wifi_error wifi_nbd_subscribe_cancel(
        wifi_request_id id);

/* Send NBD subscribe followup request*/
wifi_error wifi_nbd_subscribe_followup(
        wifi_request_id id,
        u16 match_handle);

/* Get NBD Stat */
wifi_error wifi_nbd_stats(
        wifi_request_id id,
        u8 stats_id);

#endif