summaryrefslogtreecommitdiff
path: root/network/wlan/WDI/COMMON/P2P_Build_Action.c
blob: 9db51145af37e77a0f8c9499fd8f0a33aea41061 (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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
#include "Mp_Precomp.h"

#if WPP_SOFTWARE_TRACE
#include "P2P_Build_Action.tmh"
#endif

#include "P2P_Internal.h"

#if (P2P_SUPPORT == 1)

//-----------------------------------------------------------------------------
// Local
//-----------------------------------------------------------------------------

static
VOID
p2p_add_P2PActionHdr(
	IN  FRAME_BUF				*pBuf,
	IN  u1Byte					subtype,
	IN  u1Byte					dialogToken
	)
{
	FrameBuf_Add_u1(pBuf, WLAN_ACTION_VENDOR_SPECIFIC);
	FrameBuf_Add_be_u4(pBuf, P2P_IE_VENDOR_TYPE);
	FrameBuf_Add_u1(pBuf, subtype);
	FrameBuf_Add_u1(pBuf, dialogToken);

	return;
}

static
VOID
p2p_build_PresenceReqIe(
	IN  FRAME_BUF				*pBuf,
	IN  const P2P_POWERSAVE_SET	*pPs
	)
{
	pu1Byte						pLen = NULL;
	
	if(NULL == (pLen = p2p_add_IEHdr(pBuf))) return;

	P2PAttr_Make_NoaFromPsSet(pBuf, pPs);

	p2p_update_IeHdrLen(pBuf, pLen);

	return;
}

static
VOID
p2p_build_PresenceRspIe(
	IN  FRAME_BUF				*pBuf,
	IN  u1Byte					status,
	IN  const P2P_INFO			*pP2PInfo
	)
{
	pu1Byte						pLen = NULL;
	
	if(NULL == (pLen = p2p_add_IEHdr(pBuf))) return;
		
	P2PAttr_Make_Status(pBuf, status);
	P2PAttr_Make_Noa(pBuf, 
		pP2PInfo->NoAIEIndex, 
		pP2PInfo->bOppPS, 
		pP2PInfo->CTWindow, 
		P2P_MAX_NUM_NOA_DESC, 
		pP2PInfo->NoADescriptors);

	p2p_update_IeHdrLen(pBuf, pLen);

	return;
}

static
VOID
p2p_build_GoDiscoverabilityReq(
	IN  FRAME_BUF				*pBuf,
	IN  const P2P_INFO			*pP2PInfo
	)
{
	// There is no Element field in a GO Discoverability Request frame.
	return;
}

//-----------------------------------------------------------------------------
// Exported
//-----------------------------------------------------------------------------

VOID
p2p_Construct_PresenceReq(
	IN  P2P_INFO 				*pP2PInfo,
	IN  const P2P_POWERSAVE_SET	*pP2pPs,
	IN  const u1Byte			*da,
	IN  u1Byte					dialogToken,
	IN  FRAME_BUF 				*pBuf
	)
{
	// MAC Header
	p2p_add_ActionFrameMacHdr(pBuf, da, pP2PInfo->DeviceAddress, da);

	// Action Header
	p2p_add_P2PActionHdr(pBuf, P2P_PRESENCE_REQ, dialogToken);

	// P2P IE
	p2p_build_PresenceReqIe(pBuf, pP2pPs);

	FrameBuf_Dump(pBuf, 0, DBG_LOUD, __FUNCTION__);
	
	return;
}

VOID
p2p_Construct_PresenceRsp(
	IN  P2P_INFO				*pP2PInfo,
	IN  const u1Byte 			*da,
	IN  u1Byte					dialogToken,
	IN  u1Byte					status,
	IN  FRAME_BUF 				*pBuf
	)
{	
	// MAC Header
	p2p_add_ActionFrameMacHdr(pBuf, da, pP2PInfo->DeviceAddress, pP2PInfo->DeviceAddress);

	// Action Header
	p2p_add_P2PActionHdr(pBuf, P2P_PRESENCE_RSP, dialogToken);

	// P2P IE
	p2p_build_PresenceRspIe(pBuf, status, pP2PInfo);

	FrameBuf_Dump(pBuf, 0, DBG_LOUD, __FUNCTION__);

	return;
}

VOID
p2p_Copnstruct_GoDiscoverabilityReq(
	IN  P2P_INFO				*pP2PInfo,
	IN  const u1Byte 			*da,
	IN  u1Byte					dialogToken,
	IN  FRAME_BUF 				*pBuf
	)
{	
	// MAC Header
	p2p_add_ActionFrameMacHdr(pBuf, da, pP2PInfo->DeviceAddress, pP2PInfo->InterfaceAddress);

	// Action Header
	p2p_add_P2PActionHdr(pBuf, P2P_GO_DISC_REQ, dialogToken);

	// P2P IE
	p2p_build_GoDiscoverabilityReq(pBuf, pP2PInfo);

	FrameBuf_Dump(pBuf, 0, DBG_LOUD, __FUNCTION__);

	return;
}

VOID 
p2p_Construct_SDReq(
	IN  const P2P_INFO 			*pP2PInfo,
	IN  FRAME_BUF 				*pBuf,
	IN  const u1Byte 			*da
	)
{
	u1Byte 						*pQueryReqLen = NULL;
	u1Byte 						*pAnqpQueryReqLen = NULL;
	u1Byte 						itSvcTlv = 0;

	FunctionIn(COMP_P2P);

	// MAC Header
	p2p_add_ActionFrameMacHdr(pBuf, da, pP2PInfo->DeviceAddress, da);

	// Action Header
	p2p_add_PublicActionHdr(pBuf, WLAN_PA_GAS_INITIAL_REQ, pP2PInfo->SDContext.DialogToken);

	// Advertisement Protocol Info IE
	FrameBuf_Add_u1(pBuf, 108);		// Element ID
	FrameBuf_Add_u1(pBuf, 2);		// Legnth
	FrameBuf_Add_u1(pBuf, 0);		// Query Response Length Limit and PAME-BI
	FrameBuf_Add_u1(pBuf, 0);		// Advertisment Protocol ID
	
	//Query Request Length
	pQueryReqLen = FrameBuf_Add(pBuf, 2);

	// ANQP Query Request 
	FrameBuf_Add_u1(pBuf, 0xDD); 					// Info ID, first
	FrameBuf_Add_u1(pBuf, 0xDD); 					// Info ID, second
	pAnqpQueryReqLen = FrameBuf_Add(pBuf, 2);		// Lenghth
	FrameBuf_Add_be_u4(pBuf, P2P_IE_VENDOR_TYPE); 	// OUI (OI) and subtype
	FrameBuf_Add_le_u2(pBuf, 0);					// Service update indicator, in req we always fill 0

	// Service TLVs
	for(itSvcTlv = 0; itSvcTlv < pP2PInfo->SDContext.UserSDReq.ServiceReqTLVSize; itSvcTlv++)
	{
		const P2P_SERVICE_REQ_TLV 	*tlv = &(pP2PInfo->SDContext.UserSDReq.ServiceReqTLVList[itSvcTlv]);
		u1Byte						*pContentLen = NULL;

		pContentLen = FrameBuf_Add(pBuf, 2);					// Length
		FrameBuf_Add_u1(pBuf, tlv->ServiceDesc.ServiceType);	// Service Protocol Type
		FrameBuf_Add_u1(pBuf, tlv->TransactionID);				// Service Transaction ID
		FrameBuf_Add_Data(pBuf, 								// Query Data
			tlv->ServiceDesc.Buffer, 
			tlv->ServiceDesc.BufferLength); 

		WriteEF2Byte(pContentLen, 								// Write back length
			FrameBuf_Tail(pBuf) - (pContentLen + 2));
	}

	WriteEF2Byte(pQueryReqLen, FrameBuf_Tail(pBuf) - (pQueryReqLen + 2));			// Write back query length
	WriteEF2Byte(pAnqpQueryReqLen, FrameBuf_Tail(pBuf) - (pAnqpQueryReqLen + 2));	// Write back ANQP query length

	FunctionOut(COMP_P2P);

	return;
}

VOID 
p2p_Construct_SDRsp(
	IN  const P2P_INFO 			*pP2PInfo,
	IN  FRAME_BUF 				*pBuf,
	IN  const u1Byte 			*da,
	IN  u1Byte 					dialogToken,
	IN  P2P_SD_STATUS_CODE		status,
	IN  BOOLEAN					bFrag
	)
{
	u1Byte 						*pQueryRspLen = NULL;

	FunctionIn(COMP_P2P);
	RT_TRACE_F(COMP_P2P, DBG_LOUD, ("bFragment: %u\n", bFrag));
	
	// MAC Header
	p2p_add_ActionFrameMacHdr(pBuf, da, pP2PInfo->DeviceAddress, pP2PInfo->DeviceAddress);

	// Action Header
	p2p_add_PublicActionHdr(pBuf, WLAN_PA_GAS_INITIAL_RESP, dialogToken);

	// Status code (11u): 2 octets
	FrameBuf_Add_le_u2(pBuf, 0);

	// GAS Comeback Delay: 0: no frag, 1: frag
	FrameBuf_Add_le_u2(pBuf, bFrag);

	// Advertisement Protocol Info IE
	FrameBuf_Add_u1(pBuf, 108);		// Element ID
	FrameBuf_Add_u1(pBuf, 2);		// Legnth
	FrameBuf_Add_u1(pBuf, 0x7F);	// Query Response Length Limit and PAME-BI. 
									// The Response Length set to 1111111 PAME-BI is 0
	FrameBuf_Add_u1(pBuf, 0);		// Advertisment Protocol ID

	// Query Request Length
	pQueryRspLen = FrameBuf_Add(pBuf, 2);

	// ANQP Query Response
	if(!bFrag)
	{// append the entire ANQP Query Rsp Field
		FrameBuf_Add_Data(pBuf, 
			pP2PInfo->SDContext.ANQPQueryRspFieldToSendBuf, 
			pP2PInfo->SDContext.ANQPQueryRspFieldToSendSize);

		RT_PRINT_DATA(COMP_P2P, DBG_LOUD, "Adding query rsp:\n",
			pP2PInfo->SDContext.ANQPQueryRspFieldToSendBuf, 
			pP2PInfo->SDContext.ANQPQueryRspFieldToSendSize);
	}

	WriteEF2Byte(pQueryRspLen, FrameBuf_Tail(pBuf) - (pQueryRspLen + 2)); // Write back length

	FunctionOut(COMP_P2P);

	return;
}

VOID 
p2p_Construct_SDComebackReq(
	IN  const P2P_INFO 			*pP2PInfo,
	IN  FRAME_BUF 				*pBuf,
	IN  const u1Byte 			*da,
	IN  u1Byte 					dialogToken
	)
{	
	FunctionIn(COMP_P2P);
	
	// MAC Header
	p2p_add_ActionFrameMacHdr(pBuf, da, pP2PInfo->DeviceAddress, da);
	
	// Action Header
	p2p_add_PublicActionHdr(pBuf, WLAN_PA_GAS_COMEBACK_REQ, dialogToken);

	FunctionOut(COMP_P2P);

	return;
}

VOID
p2p_Construct_SDComebackRsp(
	IN  const P2P_INFO 			*pP2PInfo,
	IN  FRAME_BUF 				*pBuf,
	IN  const u1Byte 			*da,
	IN  u1Byte 					dialogToken,
	IN  u2Byte					bytesToCopy,
	IN  BOOLEAN					bMoreData
	)
{	
	//
	// Note: if comeback is used, we send only 1 Service Rsp TLV in the ComebackRsp
	//

	u1Byte						fragId = 0;
	u1Byte						*pQueryRspLen = NULL;

	FunctionIn(COMP_P2P);

	// MAC Header
	p2p_add_ActionFrameMacHdr(pBuf, da, pP2PInfo->DeviceAddress, pP2PInfo->DeviceAddress);

	// Action Header
	p2p_add_PublicActionHdr(pBuf, WLAN_PA_GAS_COMEBACK_RESP, dialogToken);

	// Status code (11u): 2 octets
	FrameBuf_Add_le_u2(pBuf, 0);			

	// GAS Query Response Fragment ID
	fragId = pP2PInfo->SDContext.FragmentID;
	if(bMoreData) 
		SET_FLAG(fragId, BIT7);
	FrameBuf_Add_u1(pBuf, fragId);

	// GAS Comeback Delay: 0: no frag, 1: frag
	FrameBuf_Add_le_u2(pBuf, 0);

	// Advertisement Protocol Info IE
	FrameBuf_Add_u1(pBuf, 108);		// Element ID
	FrameBuf_Add_u1(pBuf, 2);		// Legnth
	FrameBuf_Add_u1(pBuf, 0x7F);	// Query Response Length Limit and PAME-BI. 
									// The Response Length set to 1111111 PAME-BI is 0
	FrameBuf_Add_u1(pBuf, 0);		// Advertisment Protocol ID

	// Query Request Length
	pQueryRspLen = FrameBuf_Add(pBuf, 2);

	// Payload
	FrameBuf_Add_Data(pBuf, 
		pP2PInfo->SDContext.ANQPQueryRspFieldToSendBuf + pP2PInfo->SDContext.ANQPQueryRspFieldToSendOffset, 
		bytesToCopy);

	WriteEF2Byte(pQueryRspLen, FrameBuf_Tail(pBuf) - (pQueryRspLen + 2)); // Write back length

	FunctionOut(COMP_P2P);

	return;
}

VOID
p2p_Construct_AnqpQueryRspField(
	IN  const P2P_INFO 			*pP2PInfo,
	IN  P2P_SD_RSP_CONTEXT 		*pRspCtx,
	OUT P2P_SD_CONTEXT			*pSdCtx
	)
{
	//
	// We construct an un-fragmented ANQP Query Rsp Field according to the Service Req TLVs
	//
	
	FRAME_BUF					fbuf;
	
	const P2P_SERVICE_RSP_TLV 	*pSvcRspTLVs = pRspCtx->ServiceRspTLVList;
	u1Byte						*pAnqpQueryRspLen = NULL;

	FrameBuf_Init(sizeof(pSdCtx->ANQPQueryRspFieldToSendBuf), 
		0, 
		pSdCtx->ANQPQueryRspFieldToSendBuf, 
		&fbuf);

	FrameBuf_Add_u1(&fbuf, 0xDD);
	FrameBuf_Add_u1(&fbuf, 0xDD);
	pAnqpQueryRspLen = FrameBuf_Add(&fbuf, 2);

	FrameBuf_Add_be_u4(&fbuf, P2P_IE_VENDOR_TYPE); 					// OUI (OI) and subtype
	FrameBuf_Add_le_u2(&fbuf, pRspCtx->ServiceUpdateIndicator); 	// Service update indicator

	// Service TLVs, it could be multi TLV for multi service type
	if(pRspCtx->SDStatus == P2P_SD_STATUS_SUCCESS)
	{
		u1Byte					itSvcTlv = 0;
		
		for(itSvcTlv = 0; itSvcTlv < pRspCtx->ServiceRspTLVSize; itSvcTlv++)
		{
			u1Byte					*pLen = NULL;
			
			pLen = FrameBuf_Add(&fbuf, 2);
			FrameBuf_Add_u1(&fbuf, pSvcRspTLVs[itSvcTlv].ServiceDesc.ServiceType);	// Service Protocol Type
			FrameBuf_Add_u1(&fbuf, pSvcRspTLVs[itSvcTlv].TransactionID);			// Service Transation ID
			FrameBuf_Add_u1(&fbuf, pSvcRspTLVs[itSvcTlv].Status);					// Status
			FrameBuf_Add_Data(&fbuf, 												// Response Data
				pSvcRspTLVs[itSvcTlv].ServiceDesc.Buffer, 
				pSvcRspTLVs[itSvcTlv].ServiceDesc.BufferLength);
			WriteEF2Byte(pLen, FrameBuf_Tail(&fbuf) - (pLen + 2));					// Write back length
		}
	}
	else
	{
		u1Byte					*pLen = NULL;

		pLen = FrameBuf_Add(&fbuf, 2);
		FrameBuf_Add_u1(&fbuf, P2P_SD_PROTOCOL_ALL_TYPE);		// Service Protocol Type
		FrameBuf_Add_u1(&fbuf, 0);								// Service Transation ID
		FrameBuf_Add_u1(&fbuf, pRspCtx->SDStatus);				// Status

		WriteEF2Byte(pLen, FrameBuf_Tail(&fbuf) - (pLen + 2)); 	// Write back length
	}

	pSdCtx->ANQPQueryRspFieldToSendSize = FrameBuf_Length(&fbuf);

	return;
}

#endif