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
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
PURPOSE.
Module Name:
Queue.c
Abstract:
Read/write functionality for bthecho client
Environment:
Kernel mode only
--*/
#include "clisrv.h"
#include "device.h"
#include "queue.h"
#if defined(EVENT_TRACING)
#include "queue.tmh"
#endif
void
BthEchoCliReadWriteCompletion(
_In_ WDFREQUEST Request,
_In_ WDFIOTARGET Target,
_In_ PWDF_REQUEST_COMPLETION_PARAMS Params,
_In_ WDFCONTEXT Context
)
/*++
Description:
Completion routine for read/write requests
We receive l2ca transfer BRB as the context. This BRB
is part of the request context and doesn't need to be freed
explicitly.
Arguments:
Request - Request that got completed
Target - Target to which request was sent
Params - Completion parameters for the request
Context - We receive BRB as the context
--*/
{
struct _BRB_L2CA_ACL_TRANSFER *brb;
size_t information;
UNREFERENCED_PARAMETER(Target);
TraceEvents(TRACE_LEVEL_INFORMATION, DBG_CONNECT,
"I/O completion, status: %!STATUS!", Params->IoStatus.Status);
brb = (struct _BRB_L2CA_ACL_TRANSFER *) Context;
NT_ASSERT((brb != NULL));
//
// Bytes read/written are contained in Brb->BufferSize
//
information = brb->BufferSize;
//
// Complete the request
//
WdfRequestCompleteWithInformation(
Request,
Params->IoStatus.Status,
information
);
}
VOID
BthEchoCliEvtQueueIoWrite(
_In_ WDFQUEUE Queue,
_In_ WDFREQUEST Request,
_In_ size_t Length
)
/*++
Description:
This routine is invoked by the framework to deliver a
Write request to the driver.
Arguments:
Queue - Queue delivering the request
Request - Write request
Length - Length of write
--*/
{
NTSTATUS status;
PBTHECHOSAMPLE_CLIENT_CONTEXT DevCtx;
WDFMEMORY memory;
struct _BRB_L2CA_ACL_TRANSFER * brb = NULL;
PBTHECHO_CONNECTION connection;
UNREFERENCED_PARAMETER(Length);
connection = GetFileContext(WdfRequestGetFileObject(Request))->Connection;
DevCtx = GetClientDeviceContext(WdfIoQueueGetDevice(Queue));
status = WdfRequestRetrieveInputMemory(
Request,
&memory
);
if (!NT_SUCCESS(status))
{
TraceEvents(TRACE_LEVEL_ERROR, DBG_WRITE,
"WdfRequestRetrieveInputMemory failed, request 0x%p, Status code %!STATUS!\n",
Request,
status);
goto exit;
}
//
// Get the BRB from request context and initialize it as
// BRB_L2CA_ACL_TRANSFER BRB
//
brb = (struct _BRB_L2CA_ACL_TRANSFER *)GetRequestContext(Request);
DevCtx->Header.ProfileDrvInterface.BthReuseBrb(
(PBRB)brb,
BRB_L2CA_ACL_TRANSFER
);
//
// Format the Write request for L2Ca OUT transfer
//
// This routine allocates a BRB which is returned to us
// in brb parameter
//
// This BRB is freed by the completion routine is we send the
// request successfully, else it is freed by this routine.
//
status = BthEchoConnectionObjectFormatRequestForL2CaTransfer(
connection,
Request,
&brb,
memory,
ACL_TRANSFER_DIRECTION_OUT
);
if (!NT_SUCCESS(status))
{
goto exit;
}
//
// Set a CompletionRoutine callback function.
//
WdfRequestSetCompletionRoutine(
Request,
BthEchoCliReadWriteCompletion,
brb
);
//
// Send the request down the stack
//
if (FALSE == WdfRequestSend(
Request,
DevCtx->Header.IoTarget,
NULL
))
{
status = WdfRequestGetStatus(Request);
TraceEvents(TRACE_LEVEL_ERROR, DBG_UTIL,
"Request send failed for request 0x%p, Brb 0x%p, Status code %!STATUS!\n",
Request,
brb,
status
);
goto exit;
}
exit:
if (!NT_SUCCESS(status))
{
WdfRequestComplete(Request, status);
}
}
VOID
BthEchoCliEvtQueueIoRead (
_In_ WDFQUEUE Queue,
_In_ WDFREQUEST Request,
_In_ size_t Length
)
/*++
Description:
This routine is invoked by the framework to deliver a
Read request to the driver.
Arguments:
Queue - Queue delivering the request
Request - Read request
Length - Length of Read
--*/
{
NTSTATUS status;
PBTHECHOSAMPLE_CLIENT_CONTEXT DevCtx;
WDFMEMORY memory;
struct _BRB_L2CA_ACL_TRANSFER * brb = NULL;
PBTHECHO_CONNECTION connection;
UNREFERENCED_PARAMETER(Length);
connection = GetFileContext(WdfRequestGetFileObject(Request))->Connection;
DevCtx = GetClientDeviceContext(WdfIoQueueGetDevice(Queue));
status = WdfRequestRetrieveOutputMemory(
Request,
&memory
);
if (!NT_SUCCESS(status))
{
TraceEvents(TRACE_LEVEL_ERROR, DBG_WRITE,
"WdfRequestRetrieveInputMemory failed, request 0x%p, Status code %!STATUS!\n",
Request,
status);
goto exit;
}
//
// Get the BRB from request context and initialize it as
// BRB_L2CA_ACL_TRANSFER BRB
//
brb = (struct _BRB_L2CA_ACL_TRANSFER *)GetRequestContext(Request);
DevCtx->Header.ProfileDrvInterface.BthReuseBrb(
(PBRB)brb,
BRB_L2CA_ACL_TRANSFER
);
//
// Format the Read request for L2Ca IN transfer
//
// This routine allocates a BRB which is returned to us
// in brb parameter
//
// This BRB is freed by the completion routine is we send the
// request successfully, else it is freed by this routine.
//
status = BthEchoConnectionObjectFormatRequestForL2CaTransfer(
connection,
Request,
&brb,
memory,
ACL_TRANSFER_DIRECTION_IN | ACL_SHORT_TRANSFER_OK
);
if (!NT_SUCCESS(status))
{
goto exit;
}
//
// Set a CompletionRoutine callback function.
//
WdfRequestSetCompletionRoutine(
Request,
BthEchoCliReadWriteCompletion,
brb
);
//
// Send the request down the stack
//
if (FALSE == WdfRequestSend(
Request,
DevCtx->Header.IoTarget,
NULL
))
{
status = WdfRequestGetStatus(Request);
TraceEvents(TRACE_LEVEL_ERROR, DBG_UTIL,
"Request send failed for request 0x%p, Brb 0x%p, Status code %!STATUS!\n",
Request,
brb,
status
);
goto exit;
}
exit:
if (!NT_SUCCESS(status))
{
WdfRequestComplete(Request, status);
}
}
VOID
BthEchoCliEvtQueueIoStop(
_In_ WDFQUEUE Queue,
_In_ WDFREQUEST Request,
_In_ ULONG ActionFlags
)
/*++
Description:
This routine is invoked by Framework when Queue is being stopped
We implement this routine to cancel any requests owned by our driver.
Without this Queue stop would wait indefinitely for requests to complete
during surprise remove.
Arguments:
Queue - Framework queue being stopped
Request - Request owned by the driver
ActionFlags - Action flags
--*/
{
UNREFERENCED_PARAMETER(Queue);
UNREFERENCED_PARAMETER(ActionFlags);
WdfRequestCancelSentRequest(Request);
}
|