summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/ndis40/debug.c
blob: c3e6feb053747e7d41576cd5c1f2e0d5c3d1d79d (plain) (blame)
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
/*++

Copyright (c) 1990-1995  Microsoft Corporation

Module Name:

	debug.c

Abstract:

	NDIS wrapper definitions

Author:


Environment:

	Kernel mode, FSD

Revision History:

	10/22/95		Kyle Brandon	Created.
--*/

#include <precomp.h>
#pragma hdrstop

//
//  Define module number for debug code
//
#define MODULE_NUMBER	MODULE_DEBUG

#if DBG && _DBG


VOID
ndisMInitializeDebugInformation(
	IN PNDIS_MINIPORT_BLOCK Miniport
	)
/*++

Routine Description:

Arguments:

Return Value:

--*/
{
	PNDIS_MOJO	NdisMojo;

	//
	//	Allocate the initial debug structure.
	//
	NdisMojo = ALLOC_FROM_POOL(sizeof(NDIS_MOJO), NDIS_TAG_DBG);

	ASSERT(NdisMojo != NULL);

	//
	//	Clear out the log memory.
	//
	ZeroMemory(NdisMojo, sizeof(NDIS_MOJO));

	//
	//	Allocate memory for the spin lock log.
	//
	NdisMojo->SpinLockLog = ALLOC_FROM_POOL(sizeof(SPIN_LOCK_LOG) +
												(sizeof(SPIN_LOCK_LOG_ENTRY) * LOG_SIZE),
											NDIS_TAG_DBG_S);

	ASSERT(NdisMojo->SpinLockLog != NULL);

	//
	//	Initialize the spin lock log.
	//
	NdisZeroMemory(
		NdisMojo->SpinLockLog,
		sizeof(SPIN_LOCK_LOG) + (sizeof(SPIN_LOCK_LOG_ENTRY) * LOG_SIZE));

	NdisMojo->SpinLockLog->Buffer = (PSPIN_LOCK_LOG_ENTRY)((PUCHAR)NdisMojo->SpinLockLog + sizeof(SPIN_LOCK_LOG));
	NdisMojo->SpinLockLog->CurrentEntry = (LOG_SIZE - 1);


	//
	//	Allocate memory for the local lock log.
	//
	NdisMojo->LocalLockLog = ALLOC_FROM_POOL(sizeof(LOCAL_LOCK_LOG) +
											 (sizeof(LOCAL_LOCK_LOG_ENTRY) * LOG_SIZE),
											NDIS_TAG_DBG_L);
	ASSERT(NdisMojo->LocalLockLog != NULL);

	//
	//	Initialize the local lock log.
	//
	NdisZeroMemory(
		NdisMojo->LocalLockLog,
		sizeof(LOCAL_LOCK_LOG) + (sizeof(LOCAL_LOCK_LOG_ENTRY) * LOG_SIZE));

	NdisMojo->LocalLockLog->Buffer = (PLOCAL_LOCK_LOG_ENTRY)((PUCHAR)NdisMojo->LocalLockLog + sizeof(LOCAL_LOCK_LOG));
	NdisMojo->LocalLockLog->CurrentEntry = (LOG_SIZE - 1);

	//
	//	Allocate memory for the send packet log.
	//
	NdisMojo->SendPacketLog = ALLOC_FROM_POOL(
								sizeof(PACKET_LOG) +
									(sizeof(PACKET_LOG_ENTRY) * LOG_SIZE),
								NDIS_TAG_DBG_P);
	ASSERT(NdisMojo->SendPacketLog != NULL);

	//
	//	Initialize the packet log.
	//
	NdisZeroMemory(
		NdisMojo->SendPacketLog,
		sizeof(PACKET_LOG) + (sizeof(PACKET_LOG_ENTRY) * LOG_SIZE));

	NdisMojo->SendPacketLog->Buffer = (PPACKET_LOG_ENTRY)((PUCHAR)NdisMojo->SendPacketLog + sizeof(PACKET_LOG));
	NdisMojo->SendPacketLog->CurrentEntry = (LOG_SIZE - 1);

	//
	//	Allocate memory for the receive packet log.
	//
	NdisMojo->RecvPacketLog = ALLOC_FROM_POOL(
								sizeof(PACKET_LOG) +
									(sizeof(PACKET_LOG_ENTRY) * LOG_SIZE),
								NDIS_TAG_DBG_P);
	ASSERT(NdisMojo->RecvPacketLog != NULL);

	//
	//	Initialize the packet log.
	//
	NdisZeroMemory(
		NdisMojo->RecvPacketLog,
		sizeof(PACKET_LOG) + (sizeof(PACKET_LOG_ENTRY) * LOG_SIZE));

	NdisMojo->RecvPacketLog->Buffer = (PPACKET_LOG_ENTRY)((PUCHAR)NdisMojo->RecvPacketLog + sizeof(PACKET_LOG));
	NdisMojo->RecvPacketLog->CurrentEntry = (LOG_SIZE - 1);


	//
	//	Initialize the spin locks.
	//
	INITIALIZE_SPIN_LOCK(&NdisMojo->SpinLockLog->Lock);
	INITIALIZE_SPIN_LOCK(&NdisMojo->LocalLockLog->Lock);
	INITIALIZE_SPIN_LOCK(&NdisMojo->SendPacketLog->Lock);
	INITIALIZE_SPIN_LOCK(&NdisMojo->RecvPacketLog->Lock);

	//
	//	Save the debug information with the miniport.
	//
	Miniport->Reserved = NdisMojo;

}

VOID
NDISM_LOG_RECV_PACKET(
	IN	PNDIS_MINIPORT_BLOCK	Miniport,
	IN	PVOID					Context1,
	IN	PVOID					Context2,
	IN	ULONG					Ident
	)
{
	KIRQL	OldIrql;

	IF_DBG(DBG_COMP_RECV, DBG_LEVEL_LOG)
	{
		ACQUIRE_SPIN_LOCK(&RPL_LOCK(Miniport), &OldIrql);
	
		RPL_HEAD(Miniport) = &RPL_LOG(Miniport)[RPL_CURRENT_ENTRY(Miniport)];
		RPL_HEAD(Miniport)->Miniport = Miniport;
		RPL_HEAD(Miniport)->Context1 = Context1;
		RPL_HEAD(Miniport)->Context2 = Context2;
		RPL_HEAD(Miniport)->Ident = Ident;
	
		if (RPL_CURRENT_ENTRY(Miniport)-- == 0)
		{
			RPL_CURRENT_ENTRY(Miniport) = (LOG_SIZE - 1);
		}
	
		RELEASE_SPIN_LOCK(&RPL_LOCK(Miniport), OldIrql);
	}
}

VOID
NDISM_LOG_PACKET(
	IN	PNDIS_MINIPORT_BLOCK	Miniport,
	IN	PNDIS_PACKET			Context1,
	IN	PVOID					Context2,
	IN	ULONG	 				Ident
	)
{
	KIRQL	  		OldIrql;

	IF_DBG(DBG_COMP_SEND, DBG_LEVEL_LOG)
	{
		ACQUIRE_SPIN_LOCK(&SPL_LOCK(Miniport), &OldIrql);
	
		SPL_HEAD(Miniport) = &SPL_LOG(Miniport)[SPL_CURRENT_ENTRY(Miniport)];
		SPL_HEAD(Miniport)->Miniport = Miniport;
		SPL_HEAD(Miniport)->Context1 = Context1;
		SPL_HEAD(Miniport)->Context2 = Context2;
		SPL_HEAD(Miniport)->Ident = Ident;
	
		if (SPL_CURRENT_ENTRY(Miniport)-- == 0)
		{
			SPL_CURRENT_ENTRY(Miniport) = (LOG_SIZE - 1);
		}
	
		RELEASE_SPIN_LOCK(&SPL_LOCK(Miniport), OldIrql);
	}
}

#if defined(_M_IX86) && defined(_NDIS_INTERNAL_DEBUG)

//
//	gWatchMask[x][y]
//		x is the break point to set 0-3.
//		y is the following:
//			0	-	Mask to OR with dr7 to enable breakpoint x.
//			1	-	Mask to AND ~ with dr7 to disable breakpoint x.
//			2	-	The linear address that is currently in drX.
//					This is 0 if drX is clear.
//
ULONG	gWatch[4][3] =
{
	{
		0xD0303,
		0xD0003,
		0
	},
	{
		0xD0030C,
		0xD0000C,
		0
	},
	{
		0xD000330,
		0xD000030,
		0
	},
	{
		0xD00003C0,
		0xD00000C0,
		0
	}
};

#define	SET_WATCH						0
#define	CLEAR_WATCH						1
#define CURRENT_WATCH					2

#define NO_ADDRESS_SET					0
#define NO_DEBUG_REGISTERS_AVAILABLE	4

VOID
NdisMSetWriteBreakPoint(
	IN	PVOID	LinearAddress
	)
/*++

Routine Description:

Arguments:

Return Value:

--*/
{
	UINT	c;
	ULONG	Mask;

	//
	//	Find the first free debug register that we can use.
	//
	for (c = 0; c < NO_DEBUG_REGISTERS_AVAILABLE; c++)
	{
		if (NO_ADDRESS_SET == gWatch[c][CURRENT_WATCH])
		{
			break;
		}
	}

	//
	//	Did we get a debug register?
	//
	if (NO_DEBUG_REGISTERS_AVAILABLE == c)
	{
		DbgPrint("Attempted to set a write breakpoint with no registers available\n");
		DbgBreakPoint();
		return;
	}

	//
	//	Separate code for each debug register.
	//
	switch (c)
	{
		case 0:

			_asm {

				mov	eax, LinearAddress
				mov	dr0, eax
			}

			break;

		case 1:

			_asm {

				mov	eax, LinearAddress
				mov	dr1, eax
			}

			break;

		case 2:

			_asm {

				mov	eax, LinearAddress
				mov	dr2, eax
			}

			break;

		case 3:

			_asm {

				mov	eax, LinearAddress
				mov	dr3, eax
			}

			break;


		default:

			DbgPrint("Invalid debug register selected!!\n");
			DbgBreakPoint();
	}

	//
	//	Enable the break point.
	//
	Mask = gWatch[c][SET_WATCH];

	_asm {
		mov eax, dr7
		or  eax, Mask
		mov dr7, eax
	}

}


VOID
NdisMClearWriteBreakPoint(
	IN	PVOID	LinearAddress
	)
/*++

Routine Description:

Arguments:

Return Value:

--*/
{
	UINT	c;
	ULONG	Mask;

	//
	//	Find the register that this address is in.
	//
	for (c = 0; c < NO_DEBUG_REGISTERS_AVAILABLE; c++)
	{
		if (gWatch[c][CURRENT_WATCH] == (ULONG)LinearAddress)
		{
			break;
		}
	}

	//
	//	Did we get a debug register?
	//
	if (NO_DEBUG_REGISTERS_AVAILABLE == c)
	{
		DbgPrint("Attempted to set a write breakpoint with no registers available\n");
		DbgBreakPoint();
		return;
	}

	//
	//	Clear the address from our state array.
	//
	gWatch[c][CURRENT_WATCH] = 0;

	//
	//	Enable the break point.
	//
	Mask = gWatch[c][CLEAR_WATCH];

	_asm {
		mov     eax, dr7
		mov     ebx, Mask
		not     ebx
		and     eax, ebx
		mov     dr7, eax
	}
}

#endif

#else

#endif