-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathnblchain.h
More file actions
578 lines (402 loc) · 9.87 KB
/
nblchain.h
File metadata and controls
578 lines (402 loc) · 9.87 KB
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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
/*++
Copyright (c) Microsoft. All rights reserved.
This code is licensed under the MIT License.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT.
Module Name:
nblchain.h
Provenance:
Version 1.2.0 from https://github.com/microsoft/ndis-driver-library
Abstract:
Utility functions for handling lists of NET_BUFFER_LISTs (NBLs) and lists
of NET_BUFFERs (NBs)
NBLs are typically linked into a singly-linked list. A list of NBLs is
called an NBL chain. Unless explicitly stated otherwise, an NBL chain must
have at least 1 NBL in it.
This module defines several small utility routines for operating on NBL
chains.
Table of Contents:
NdisNumNblsInNblChain
NdisNumNbsInNbChain
NdisNumNbsInNblChain
NdisNumDataBytesInNbChain
NdisNumDataBytesInNblChain
NdisLastNblInNblChain
NdisLastNblInNblChainWithCount
NdisLastNbInNbChain
NdisLastNbInNbChainWithCount
NdisSetStatusInNblChain
Environment:
Kernel mode
--*/
#pragma once
#pragma region System Family (kernel drivers) with Desktop Family for compat
#include <winapifamily.h>
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_SYSTEM | WINAPI_PARTITION_DESKTOP)
#ifndef NDIS_ASSERT
# define NDIS_ASSERT(x) NT_ASSERT(x)
#endif
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
ULONG
NdisNumNblsInNblChain(
_In_opt_ NET_BUFFER_LIST const *NblChain)
/*++
Routine Description:
Returns the number of NBLs in an NBL chain
Arguments:
NblChain - Zero or more NBLs
Return Value:
Number of NBLs the NBL chain
--*/
{
ULONG Count = 0;
while (NblChain)
{
Count++;
NblChain = NblChain->Next;
}
return Count;
}
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
ULONG
NdisNumNbsInNbChain(
_In_opt_ NET_BUFFER const *NbChain)
/*++
Routine Description:
Returns the number of NBs in an NB chain
Arguments:
NbChain - Zero or more NET_BUFFERs
Return Value:
Number of NBs in the NB chain
--*/
{
ULONG Count = 0;
while (NbChain)
{
Count++;
NbChain = NbChain->Next;
}
return Count;
}
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
ULONG
NdisNumNbsInNblChain(
_In_opt_ NET_BUFFER_LIST const *NblChain)
/*++
Routine Description:
Returns the number of NBs in each NBL an NBL chain
Arguments:
NblChain - Zero or more NBLs
Return Value:
Number of NBs in the NBL chain
--*/
{
ULONG Count = 0;
while (NblChain)
{
Count += NdisNumNbsInNbChain(NblChain->FirstNetBuffer);
NblChain = NblChain->Next;
}
return Count;
}
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
ULONG64
NdisNumDataBytesInNbChain(
_In_opt_ NET_BUFFER const *NbChain)
/*++
Routine Description:
Returns the number of bytes of data in each NB of an NB chain
Arguments:
NbChain - Zero or more NET_BUFFERs
Return Value:
Number of bytes of data in the NB chain
--*/
{
ULONG64 ByteCount = 0;
while (NbChain)
{
ByteCount += NbChain->DataLength;
NbChain = NbChain->Next;
}
return ByteCount;
}
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
ULONG64
NdisNumDataBytesInNblChain(
_In_opt_ NET_BUFFER_LIST const *NblChain)
/*++
Routine Description:
Returns the number of bytes of data in each NB of an NBL chain
Arguments:
NblChain - Zero or more NBLs
Return Value:
Number of bytes of data in the NBL chain
--*/
{
ULONG64 ByteCount = 0;
while (NblChain)
{
ByteCount += NdisNumDataBytesInNbChain(NblChain->FirstNetBuffer);
NblChain = NblChain->Next;
}
return ByteCount;
}
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
NET_BUFFER_LIST *
NdisLastNblInNblChain(
_In_ NET_BUFFER_LIST *NblChain)
/*++
Routine Description:
Returns the last NBL in an NBL chain
Arguments:
NblChain - One or more NBLs
Return Value:
The last NBL in the chain
--*/
{
NET_BUFFER_LIST *Nbl = NblChain;
NET_BUFFER_LIST *Next;
while (NULL != (Next = Nbl->Next))
{
Nbl = Next;
}
return Nbl;
}
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
NET_BUFFER_LIST *
NdisLastNblInNblChainWithCount(
_In_ NET_BUFFER_LIST *NblChain,
_Out_ SIZE_T *NblCount)
/*++
Routine Description:
Returns the last NBL in an NBL chain
Arguments:
NblChain - One or more NBLs
NblCount - Receives the number of NBLs in NblChain
Return Value:
The last NBL in the chain
--*/
{
NET_BUFFER_LIST *Nbl = NblChain;
NET_BUFFER_LIST *Next;
SIZE_T Count = 1;
while (NULL != (Next = Nbl->Next))
{
Count++;
Nbl = Next;
}
*NblCount = Count;
return Nbl;
}
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
NET_BUFFER *
NdisLastNbInNbChain(
_In_ NET_BUFFER *NbChain)
/*++
Routine Description:
Returns the last NB in an NB chain
Arguments:
NbChain - One or more NET_BUFFERs
Return Value:
The last NB in the chain
--*/
{
NET_BUFFER *Nb = NbChain;
NET_BUFFER *Next;
while (NULL != (Next = Nb->Next))
{
Nb = Next;
}
return Nb;
}
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
NET_BUFFER *
NdisLastNbInNbChainWithCount(
_In_ NET_BUFFER *NbChain,
_Out_ SIZE_T *NbCount)
/*++
Routine Description:
Returns the last NB in an NB chain
Arguments:
NbChain - One or more NET_BUFFERs
NblCount - Receives the number of NET_BUFFERs in NbChain
Return Value:
The last NB in the chain
--*/
{
NET_BUFFER *Nb = NbChain;
NET_BUFFER *Next;
SIZE_T Count = 1;
while (NULL != (Next = Nb->Next))
{
Count++;
Nb = Next;
}
*NbCount = Count;
return Nb;
}
#ifdef __cplusplus
// Repeat the NdisLastXxxInXxxChain functions with `const` inputs & outputs.
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
NET_BUFFER_LIST const *
NdisLastNblInNblChain(
_In_ NET_BUFFER_LIST const *NblChain)
/*++
Routine Description:
Returns the last NBL in an NBL chain
Arguments:
NblChain - One or more NBLs
Return Value:
The last NBL in the chain
--*/
{
NET_BUFFER_LIST const *Nbl = NblChain;
NET_BUFFER_LIST const *Next;
while (NULL != (Next = Nbl->Next))
{
Nbl = Next;
}
return Nbl;
}
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
NET_BUFFER_LIST const *
NdisLastNblInNblChainWithCount(
_In_ NET_BUFFER_LIST const *NblChain,
_Out_ SIZE_T *NblCount)
/*++
Routine Description:
Returns the last NBL in an NBL chain
Arguments:
NblChain - One or more NBLs
NblCount - Receives the number of NBLs in NblChain
Return Value:
The last NBL in the chain
--*/
{
NET_BUFFER_LIST const *Nbl = NblChain;
NET_BUFFER_LIST const *Next;
SIZE_T Count = 1;
while (NULL != (Next = Nbl->Next))
{
Count++;
Nbl = Next;
}
*NblCount = Count;
return Nbl;
}
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
NET_BUFFER const *
NdisLastNbInNbChain(
_In_ NET_BUFFER const *NbChain)
/*++
Routine Description:
Returns the last NB in an NB chain
Arguments:
NbChain - One or more NET_BUFFERs
Return Value:
The last NB in the chain
--*/
{
NET_BUFFER const *Nb = NbChain;
NET_BUFFER const *Next;
while (NULL != (Next = Nb->Next))
{
Nb = Next;
}
return Nb;
}
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
NET_BUFFER const *
NdisLastNbInNbChainWithCount(
_In_ NET_BUFFER const *NbChain,
_Out_ SIZE_T *NbCount)
/*++
Routine Description:
Returns the last NB in an NB chain
Arguments:
NbChain - One or more NET_BUFFERs
NblCount - Receives the number of NET_BUFFERs in NbChain
Return Value:
The last NB in the chain
--*/
{
NET_BUFFER const *Nb = NbChain;
NET_BUFFER const *Next;
SIZE_T Count = 1;
while (NULL != (Next = Nb->Next))
{
Count++;
Nb = Next;
}
*NbCount = Count;
return Nb;
}
#endif // __cplusplus
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
void
NDIS_ASSERT_NBL_CHAINS_DO_NOT_OVERLAP(
_In_ NET_BUFFER_LIST const *Chain1,
_In_ NET_BUFFER_LIST const *Chain2)
/*++
Routine Description:
Verifies that two NBL chains have no overlap
Consider the following example:
Chain1: A->B->C->D->NULL
Chain2: C->D->NULL
In this example, Chain1 and Chain2 overlap (they have elements C & D in
common) so this routine would assert.
Arguments:
Chain1
Chain2
--*/
{
#if DBG
if (Chain1 == NULL || Chain2 == NULL)
{
// The empty set has no common element with any other set.
return;
}
NDIS_ASSERT(
NdisLastNblInNblChain((NET_BUFFER_LIST *)Chain1) != NdisLastNblInNblChain((NET_BUFFER_LIST *)Chain2));
#else
UNREFERENCED_PARAMETER((Chain1, Chain2));
#endif
}
_IRQL_requires_max_(DISPATCH_LEVEL)
inline
void
NdisSetStatusInNblChain(
_In_opt_ NET_BUFFER_LIST *NblChain,
_In_ NDIS_STATUS NdisStatus)
/*++
Routine Description:
Sets the NBL->Status of each NBL in the chain to NdisStatus
Arguments:
NblChain - Zero or more NBLs
NdisStatus - A status code to assign to each NBL
--*/
{
while (NblChain)
{
NblChain->Status = NdisStatus;
NblChain = NblChain->Next;
}
}
#endif // WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_SYSTEM | WINAPI_PARTITION_DESKTOP)
#pragma endregion