forked from nmap/npcap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.h
284 lines (239 loc) · 10.6 KB
/
debug.h
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
/***********************IMPORTANT NPCAP LICENSE TERMS***********************
* *
* Npcap is a Windows packet sniffing driver and library and is copyright *
* (c) 2013-2021 by Insecure.Com LLC ("The Nmap Project"). All rights *
* reserved. *
* *
* Even though Npcap source code is publicly available for review, it is *
* not open source software and the free version may not be redistributed *
* or incorporated into other software without special permission from *
* the Nmap Project. It also has certain usage limitations described in *
* the LICENSE file included with Npcap and also available at *
* https://github.com/nmap/npcap/blob/master/LICENSE. This header *
* summarizes a few important aspects of the Npcap license, but is not a *
* substitute for that full Npcap license agreement. *
* *
* We fund the Npcap project by selling two commercial licenses: *
* *
* The Npcap OEM Redistribution License allows companies distribute Npcap *
* OEM within their products. Licensees generally use the Npcap OEM *
* silent installer, ensuring a seamless experience for end *
* users. Licensees may choose between a perpetual unlimited license or *
* an annual term license, along with options for commercial support and *
* updates. Prices and details: https://nmap.org/npcap/oem/redist.html *
* *
* The Npcap OEM Internal-Use License is for organizations that wish to *
* use Npcap OEM internally, without redistribution outside their *
* organization. This allows them to bypass the 5-system usage cap of the *
* Npcap free edition. It includes commercial support and update options, *
* and provides the extra Npcap OEM features such as the silent installer *
* for automated deployment. Prices and details: *
* https://nmap.org/npcap/oem/internal.html *
* *
* Free and open source software producers are also welcome to contact us *
* for redistribution requests, but we normally recommend that such *
* authors instead ask their users to download and install Npcap *
* themselves. *
* *
* Since the Npcap source code is available for download and review, *
* users sometimes contribute code patches to fix bugs or add new *
* features. You are encouraged to submit such patches as Github pull *
* requests or by email to [email protected]. If you wish to specify *
* special license conditions or restrictions on your contributions, just *
* say so when you send them. Otherwise, it is understood that you are *
* offering the Nmap Project the unlimited, non-exclusive right to reuse, *
* modify, and relicence your code contributions so that we may (but are *
* not obligated to) incorporate them into Npcap. *
* *
* This software is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Warranty rights *
* and commercial support are available for the OEM Edition described *
* above. *
* *
* Other copyright notices and attribution may appear below this license *
* header. We have kept those for attribution purposes, but any license *
* terms granted by those notices apply only to their original work, and *
* not to any changes made by the Nmap Project or to this entire file. *
* *
***************************************************************************/
/*
* Copyright (c) 2005 - 2006
* CACE Technologies LLC, Davis (CA)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the company (CACE Technologies LLC) nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#ifndef __PACKET_DEBUG_393073863432093179878957
#define __PACKET_DEBUG_393073863432093179878957
#ifdef _DEBUG_TO_FILE
#include <stdio.h>
#include <windows.h>
extern CHAR g_LogFileName[1024];
#pragma warning(push)
#pragma warning(disable : 4127)
static VOID OutputDebugStringVA(LPCSTR Format, ...)
{
FILE *f;
SYSTEMTIME LocalTime;
va_list Marker;
DWORD dwThreadId;
int loops = 0;
DWORD dwLastError = GetLastError();
dwThreadId = GetCurrentThreadId();
va_start( Marker, Format ); /* Initialize variable arguments. */
GetLocalTime(&LocalTime);
do
{
if (fopen_s(&f, "C:\\Program Files\\Npcap\\NpcapHelper.log", "a") == 0)
break;
Sleep(0);
loops++;
}
while(loops <= 10);
if (loops > 10 || !f)
{
SetLastError(dwLastError);
return;
}
fprintf(f, "[%.08X] %.04u-%.02u-%.02u %.02u:%02u:%02u ",
dwThreadId,
LocalTime.wYear,
LocalTime.wMonth,
LocalTime.wDay,
LocalTime.wHour,
LocalTime.wMinute,
LocalTime.wSecond);
vfprintf(f, Format, Marker);
fclose(f);
SetLastError(dwLastError);
}
#pragma warning(pop)
#elif defined (_DBG)
#include <strsafe.h>
static VOID OutputDebugStringVA(LPCSTR Format, ...)
{
va_list Marker;
CHAR string[1024];
DWORD dwLastError = GetLastError();
va_start( Marker, Format ); /* Initialize variable arguments. */
StringCchVPrintfA(string, sizeof(string), Format, Marker);
OutputDebugStringA(string);
va_end(Marker);
SetLastError(dwLastError);
}
#endif
#if defined(_DBG) || defined(_DEBUG_TO_FILE)
#ifdef _DBG
#define TRACE_PRINT_DLLMAIN(_x) OutputDebugStringVA (" " _x "\n")
#else
#define TRACE_PRINT_DLLMAIN(_x) //we cannot use the _DEBUG_TO_FILE stuff from DllMain!!
#endif
#define TRACE_ENTER(_x) OutputDebugStringVA ("--> " _x "\n")
#define TRACE_EXIT(_x) OutputDebugStringVA ("<-- " _x "\n")
#define TRACE_PRINT(_x) OutputDebugStringVA (" " _x "\n")
#define TRACE_PRINT1(_x, _y) OutputDebugStringVA(" " _x "\n", _y)
#define TRACE_PRINT2(_x, _p1, _p2) OutputDebugStringVA(" " _x "\n", _p1, _p2)
#define TRACE_PRINT4(_x, _p1, _p2, _p3, _p4) OutputDebugStringVA(" " _x "\n", _p1, _p2, _p3, _p4)
#define TRACE_PRINT6(_x, _p1, _p2, _p3, _p4, _p5, _p6) OutputDebugStringVA(" " _x "\n", _p1, _p2, _p3, _p4, _p5, _p6 )
static __forceinline void TRACE_PRINT_OS_INFO()
{
HKEY hKey;
CHAR buffer[1024];
DWORD size = sizeof(buffer);
DWORD type;
DWORD dwLastError;
dwLastError = GetLastError();
TRACE_PRINT("********************* OS info.*********************");
buffer[size-1] = 0;
if( RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment", 0, KEY_READ, &hKey) == ERROR_SUCCESS)
{
if (RegQueryValueExA(hKey, "PROCESSOR_ARCHITECTURE", 0, &type, (LPBYTE)buffer, &size) == ERROR_SUCCESS && type == REG_SZ)
{
OutputDebugStringVA("Architecture = %s\n", buffer);
}
else
{
OutputDebugStringVA("Architecture = <UNKNOWN>\n");
}
RegCloseKey(hKey);
}
else
{
OutputDebugStringVA("Architecture = <UNKNOWN>\n");
}
size = sizeof(buffer);
buffer[size-1] = 0;
if( RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", 0, KEY_READ, &hKey) == ERROR_SUCCESS)
{
if (RegQueryValueExA(hKey, "CurrentVersion", 0, &type, (LPBYTE)buffer, &size) == ERROR_SUCCESS && type == REG_SZ)
{
OutputDebugStringVA("Windows version = %s\n", buffer);
}
else
{
OutputDebugStringVA("Windows version = <UNKNOWN>\n");
}
RegCloseKey(hKey);
}
else
{
OutputDebugStringVA("Windows version = <UNKNOWN>\n");
}
size = sizeof(buffer);
buffer[size-1] = 0;
if( RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", 0, KEY_READ, &hKey) == ERROR_SUCCESS)
{
if (RegQueryValueExA(hKey, "CurrentType", 0, &type, (LPBYTE)buffer, &size) == ERROR_SUCCESS && type == REG_SZ)
{
OutputDebugStringVA("Windows CurrentType = %s\n", buffer);
}
else
{
OutputDebugStringVA("Windows CurrentType = <UNKNOWN>\n");
}
RegCloseKey(hKey);
}
else
{
OutputDebugStringVA("Windows CurrentType = <UNKNOWN>\n");
}
OutputDebugStringVA("*************************************************** \n");
SetLastError(dwLastError);
}
#else
#define TRACE_ENTER(_x)
#define TRACE_PRINT_DLLMAIN(_x)
#define TRACE_EXIT(_x)
#define TRACE_PRINT(_x)
#define TRACE_PRINT1(_x, _y)
#define TRACE_PRINT2(_x, _p1, _p2)
#define TRACE_PRINT4(_x, _p1, _p2, _p3, _p4)
#define TRACE_PRINT6(_x, _p1, _p2, _p3, _p4, _p5, _p6)
#define TRACE_PRINT_OS_INFO()
#endif
#endif //__PACKET_DEBUG_393073863432093179878957