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
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
|
/*++
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: Testapp.c
Abstract:
Testapp for PCIDRV
Environment:
User mode only.
--*/
#include "testapp.h"
//
// Global variables
//
HINSTANCE HWndInstance;
HWND HWndList; // handle to the embedded list box
TCHAR WindowTitle[]=TEXT("MyPing - Test Application for PCIDRV");
LIST_ENTRY ListHead;
HDEVNOTIFY InterfaceNotificationHandle;
TCHAR OutText[500];
UINT ListBoxIndex = 0;
GUID InterfaceGuid;// = GUID_DEVINTERFACE_PCIDRV;
ULONG DeviceIndex;
BOOLEAN Verbose = FALSE;
VOID
Display(
_In_ LPWSTR pstrFormat, // @parm A printf style format string
... // @parm | ... | Variable paramters based on <p pstrFormat>
)
{
HRESULT hr;
va_list va;
va_start(va, pstrFormat);
//
// Truncation is acceptable.
//
hr = StringCbVPrintf(OutText, sizeof(OutText)-sizeof(WCHAR), pstrFormat, va);
va_end(va);
if(FAILED(hr)){
return;
}
SendMessage(HWndList, LB_INSERTSTRING, ListBoxIndex, (LPARAM)OutText);
SendMessage(HWndList, LB_SETCURSEL, ListBoxIndex, 0);
ListBoxIndex++;
}
_Use_decl_annotations_
int
PASCAL
WinMain (
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nShowCmd
)
{
static TCHAR szAppName[]=TEXT("MYPING");
HWND hWnd;
MSG msg;
WNDCLASS wndclass;
InterfaceGuid = GUID_DEVINTERFACE_PCIDRV;
HWndInstance=hInstance;
if (!hPrevInstance)
{
wndclass.style = CS_HREDRAW | CS_VREDRAW;
wndclass.lpfnWndProc = WndProc;
wndclass.cbClsExtra = 0;
wndclass.cbWndExtra = 0;
wndclass.hInstance = hInstance;
wndclass.hIcon = LoadIcon (NULL, IDI_APPLICATION);
wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
wndclass.hbrBackground= GetStockObject(WHITE_BRUSH);
wndclass.lpszMenuName = TEXT("GenericMenu");
wndclass.lpszClassName= szAppName;
RegisterClass(&wndclass);
}
hWnd = CreateWindow (szAppName,
WindowTitle,
WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT,
CW_USEDEFAULT,
CW_USEDEFAULT,
CW_USEDEFAULT,
NULL,
NULL,
hInstance,
NULL);
ShowWindow (hWnd, nShowCmd);
UpdateWindow(hWnd);
while (GetMessage (&msg, NULL, 0,0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return (0);
}
LRESULT FAR PASCAL
WndProc (HWND hWnd,
UINT message,
WPARAM wParam,
LPARAM lParam
)
{
DWORD nEventType = (DWORD)wParam;
PDEV_BROADCAST_HDR p = (PDEV_BROADCAST_HDR) lParam;
DEV_BROADCAST_DEVICEINTERFACE filter;
WSADATA wsd;
switch (message)
{
case WM_COMMAND:
HandleCommands(hWnd, message, wParam, lParam);
return 0;
case WM_CREATE:
// Load Winsock
if (WSAStartup(MAKEWORD(2,2), &wsd) != 0)
{
MessageBox(hWnd, TEXT("WSAStartup failed"), TEXT("Error"), MB_OK);
exit(0);
}
HWndList = CreateWindow (TEXT("listbox"),
NULL,
WS_CHILD|WS_VISIBLE|LBS_NOTIFY |
WS_VSCROLL | WS_BORDER,
CW_USEDEFAULT,
CW_USEDEFAULT,
CW_USEDEFAULT,
CW_USEDEFAULT,
hWnd,
(HMENU)ID_EDIT,
HWndInstance,
NULL);
filter.dbcc_size = sizeof(filter);
filter.dbcc_devicetype = DBT_DEVTYP_DEVICEINTERFACE;
filter.dbcc_classguid = InterfaceGuid;
InterfaceNotificationHandle = RegisterDeviceNotification(hWnd, &filter, 0);
InitializeListHead(&ListHead);
EnumExistingDevices(hWnd);
return 0;
case WM_SIZE:
MoveWindow(HWndList, 0, 0, LOWORD(lParam), HIWORD(lParam), TRUE);
return 0;
case WM_SETFOCUS:
SetFocus(HWndList);
return 0;
case WM_DEVICECHANGE:
//
// The DBT_DEVNODES_CHANGED broadcast message is sent
// everytime a device is added or removed. This message
// is typically handled by Device Manager kind of apps,
// which uses it to refresh window whenever something changes.
// The lParam is always NULL in this case.
//
if(DBT_DEVNODES_CHANGED == wParam) {
DisplayV(TEXT("Received DBT_DEVNODES_CHANGED broadcast message"));
return 0;
}
//
// All the events we're interested in come with lParam pointing to
// a structure headed by a DEV_BROADCAST_HDR. This is denoted by
// bit 15 of wParam being set, and bit 14 being clear.
//
if((wParam & 0xC000) == 0x8000) {
if (!p)
return 0;
if (p->dbch_devicetype == DBT_DEVTYP_DEVICEINTERFACE) {
HandleDeviceInterfaceChange(hWnd, nEventType, (PDEV_BROADCAST_DEVICEINTERFACE) p);
} else if (p->dbch_devicetype == DBT_DEVTYP_HANDLE) {
HandleDeviceChange(hWnd, nEventType, (PDEV_BROADCAST_HANDLE) p);
}
}
return 0;
case WM_POWERBROADCAST:
HandlePowerBroadcast(hWnd, wParam, lParam);
return 0;
case WM_CLOSE:
Cleanup(hWnd);
UnregisterDeviceNotification(InterfaceNotificationHandle);
return DefWindowProc(hWnd,message, wParam, lParam);
case WM_DESTROY:
PostQuitMessage(0);
return 0;
}
return DefWindowProc(hWnd,message, wParam, lParam);
}
LRESULT
HandleCommands(
HWND hWnd,
UINT uMsg,
WPARAM wParam,
LPARAM lParam
)
{
PDIALOG_RESULT result = NULL;
PDEVICE_INFO deviceInfo = NULL;
switch (wParam) {
case IDM_CLOSE:
Cleanup(hWnd);
Display(TEXT("Handle to the device closed"));
EnableMenuItem(GetMenu(hWnd), IDM_PING, MF_BYCOMMAND|MF_GRAYED);
EnableMenuItem(GetMenu(hWnd), IDM_CLOSE, MF_BYCOMMAND|MF_GRAYED);
break;
case IDM_ENUMERATE:
//
// First cleanup everything, and then reenumerate all the devices.
Cleanup(hWnd);
EnumExistingDevices(hWnd);
EnableMenuItem(GetMenu(hWnd), IDM_PING, MF_BYCOMMAND|MF_ENABLED);
break;
case IDM_PING:
result = (PDIALOG_RESULT)DialogBox(HWndInstance, MAKEINTRESOURCE(IDD_DIALOG), hWnd, DlgProc);
if(result) {
deviceInfo = FindDeviceInfo(result);
if(!deviceInfo){
MessageBox(hWnd, TEXT("FindDeviceInfo failed"), TEXT("Error"), MB_OK);
break;
}
if(!OpenDevice(hWnd, deviceInfo)){
MessageBox(hWnd, TEXT("OpenDevice failed"), TEXT("Error"), MB_OK);
break;
}
if (!CreatePingThread(deviceInfo)) {
MessageBox(hWnd, TEXT("CreatePingThread failed"), TEXT("Error"), MB_OK);
break;
}
EnableMenuItem(GetMenu(hWnd), IDM_PING, MF_BYCOMMAND|MF_GRAYED);
EnableMenuItem(GetMenu(hWnd), IDM_CLOSE, MF_BYCOMMAND|MF_ENABLED);
}
break;
case IDM_CLEAR:
SendMessage(HWndList, LB_RESETCONTENT, 0, 0);
ListBoxIndex = 0;
break;
case IDM_VERBOSE: {
HMENU hMenu = GetMenu(hWnd);
Verbose = !Verbose;
if(Verbose) {
CheckMenuItem(hMenu, (UINT)wParam, MF_CHECKED);
} else {
CheckMenuItem(hMenu, (UINT)wParam, MF_UNCHECKED);
}
}
break;
case IDM_EXIT:
Cleanup(hWnd);
PostQuitMessage(0);
break;
default:
break;
}
if(result) {
HeapFree (GetProcessHeap(), 0, result);
}
return TRUE;
}
INT_PTR CALLBACK
DlgProc(
HWND hDlg,
UINT message,
WPARAM wParam,
LPARAM lParam
)
{
BOOL success;
PDIALOG_RESULT dialogResult = NULL;
ULONG value;
WCHAR SourceIP[80];
WCHAR DestinationIP[80];
DWORD SourceIPLen = sizeof(SourceIP);
switch(message)
{
case WM_INITDIALOG:
//
// Set default values.
//
if(GetRegistryInfo(SourceIP, &SourceIPLen, DestinationIP, &SourceIPLen)) {
SetDlgItemText(hDlg, IDC_SOURCE_IP, SourceIP);
SetDlgItemText(hDlg, IDC_DESTINATION_IP, DestinationIP);
} else {
SetDlgItemText(hDlg, IDC_SOURCE_IP, DEF_SOURCE_IP);
SetDlgItemText(hDlg, IDC_DESTINATION_IP, DEF_DEST_IP);
}
SetDlgItemInt(hDlg, IDC_PACKET_SIZE, MAX_PAYLOAD_SIZE, FALSE);
return TRUE;
case WM_COMMAND:
switch( wParam)
{
case ID_OK:
//
// Allocate memory to store the input values.
//
dialogResult = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
sizeof(DIALOG_RESULT));
if(dialogResult) {
dialogResult->DeviceIndex = GetDlgItemInt(hDlg,
IDC_DEVICE_INDEX, &success, FALSE );
if(!success){
break;
}
value = GetDlgItemText(hDlg, IDC_SOURCE_IP,
dialogResult->SourceIp, MAX_LEN-1 );
if(!value){
break;
}
GetDlgItemText(hDlg, IDC_DESTINATION_IP,
dialogResult->DestIp, MAX_LEN-1 );
if(!value){
break;
}
value = GetDlgItemInt(hDlg,IDC_PACKET_SIZE, &success, FALSE );
if(success){
value = min(value, MAX_PAYLOAD_SIZE);
value = max(value, MIN_PAYLOAD_SIZE);
} else {
value = MIN_PAYLOAD_SIZE;
}
dialogResult->PacketSize = value;
SetRegistryInfo(dialogResult->SourceIp,
sizeof(dialogResult->SourceIp),
dialogResult->DestIp,
sizeof(dialogResult->DestIp));
}
EndDialog(hDlg, (UINT_PTR)dialogResult);
return TRUE;
case ID_CANCEL:
EndDialog(hDlg, 0);
return TRUE;
}
break;
}
return FALSE;
}
BOOL
HandleDeviceInterfaceChange(
HWND hWnd,
DWORD evtype,
PDEV_BROADCAST_DEVICEINTERFACE dip
)
{
switch (evtype)
{
case DBT_DEVICEARRIVAL:
//
// New device arrived. Create a devicinfo structure and record
// information about the device.
//
Display(TEXT("New device Arrived (Interface Change Notification)"));
if(!CreateDeviceInfo(dip->dbcc_name)) {
return FALSE;
}
break;
case DBT_DEVICEREMOVECOMPLETE:
//
// Device Removed.
//
Display(TEXT("Remove Complete (Interface Change Notification)"), NULL);
break;
default:
DisplayV(TEXT("Unknown (Interface Change Notification)"), NULL);
break;
}
return TRUE;
}
BOOL
HandleDeviceChange(
HWND hWnd,
DWORD evtype,
PDEV_BROADCAST_HANDLE dhp
)
{
PDEVICE_INFO deviceInfo = NULL;
PLIST_ENTRY thisEntry;
//
// Walk the list to get the deviceInfo for this device
// by matching the notification handle saved in our deviceInfo
// and the one provided as part of the message.
//
for(thisEntry = ListHead.Flink; thisEntry != &ListHead;
thisEntry = thisEntry->Flink)
{
deviceInfo = CONTAINING_RECORD(thisEntry, DEVICE_INFO, ListEntry);
if(dhp->dbch_hdevnotify == deviceInfo->hHandleNotification) {
break;
}
deviceInfo = NULL;
}
if(!deviceInfo) {
Display(TEXT("Error: spurious message Event Type %x, Device Type %x"),
evtype, dhp->dbch_devicetype);
return FALSE;
}
switch (evtype)
{
case DBT_DEVICEQUERYREMOVE:
Display(TEXT("Query Remove (Handle Notification): %ws"),
deviceInfo->DeviceName);
// User is trying to disable, uninstall, or eject our device.
// Terminate the ping thread and close the handle
// to the device so that the target device can
// get removed. Do not unregister the notification
// at this point, because we want to know whether
// the device is successfully removed or not.
//
TerminatePingThread(deviceInfo);
break;
case DBT_DEVICEREMOVECOMPLETE:
Display(TEXT("Remove Complete (Handle Notification):%ws"),
deviceInfo->DeviceName);
//
// Device is getting surprise removed. So terminate the
// ping thread to close the handle to device and
// unregister the PNP notification.
//
TerminatePingThread(deviceInfo);
if (deviceInfo->hHandleNotification) {
UnregisterDeviceNotification(deviceInfo->hHandleNotification);
deviceInfo->hHandleNotification = NULL;
}
//
// Unlink this deviceInfo from the list and free the memory
//
RemoveEntryList(&deviceInfo->ListEntry);
HeapFree (GetProcessHeap(), 0, deviceInfo);
break;
case DBT_DEVICEREMOVEPENDING:
Display(TEXT("Remove Pending (Handle Notification):%ws"),
deviceInfo->DeviceName);
//
// Device is successfully removed so unregister the notification
// and free the memory.
//
FreeDeviceInfo(deviceInfo);
break;
case DBT_DEVICEQUERYREMOVEFAILED :
Display(TEXT("Remove failed (Handle Notification):%ws"),
deviceInfo->DeviceName);
//
// Remove failed. So reopen the device and register for
// notification on the new handle. But first we should unregister
// the previous notification.
//
if (deviceInfo->hHandleNotification) {
UnregisterDeviceNotification(deviceInfo->hHandleNotification);
deviceInfo->hHandleNotification = NULL;
}
if(!OpenDevice(hWnd, deviceInfo)) {
Display(TEXT("Failed to reopen the device: %ws"),
deviceInfo->DeviceName);
FreeDeviceInfo(deviceInfo);
break;
}
Display(TEXT("Reopened device %ws"), deviceInfo->DeviceName);
//
// Restart the ping operation.
//
if(CreatePingThread(deviceInfo)){
FreeDeviceInfo(deviceInfo);
break;
}
break;
default:
Display(TEXT("Unknown (Handle Notification)"));
break;
}
return TRUE;
}
BOOLEAN
EnumExistingDevices(
HWND hWnd
)
{
HDEVINFO hardwareDeviceInfo;
SP_DEVICE_INTERFACE_DATA deviceInterfaceData;
PSP_DEVICE_INTERFACE_DETAIL_DATA deviceInterfaceDetailData = NULL;
ULONG predictedLength = 0;
ULONG requiredLength = 0, i;
DWORD error;
PDEVICE_INFO deviceInfo =NULL;
DisplayV(TEXT("Entered EnumExistingDevices"));
//
// Make sure the list is empty
//
if(!IsListEmpty(&ListHead) ){
MessageBox(hWnd, TEXT("ListHead should be empty"), TEXT("Error!"), MB_OK);
return FALSE;
}
DeviceIndex = 0;
hardwareDeviceInfo = SetupDiGetClassDevs (
(LPGUID)&InterfaceGuid,
NULL, // Define no enumerator (global)
NULL, // Define no
(DIGCF_PRESENT | // Only Devices present
DIGCF_DEVICEINTERFACE)); // Function class devices.
if(INVALID_HANDLE_VALUE == hardwareDeviceInfo)
{
goto Error;
}
//
// Enumerate devices of a specific interface class
//
deviceInterfaceData.cbSize = sizeof(deviceInterfaceData);
for(i=0; SetupDiEnumDeviceInterfaces (hardwareDeviceInfo,
0, // No care about specific PDOs
(LPGUID)&InterfaceGuid,
i, //
&deviceInterfaceData); i++ ) {
//
// Allocate a function class device data structure to
// receive the information about this particular device.
//
//
// First find out required length of the buffer
//
if (deviceInterfaceDetailData) {
HeapFree (GetProcessHeap(), 0, deviceInterfaceDetailData);
deviceInterfaceDetailData = NULL;
}
if(!SetupDiGetDeviceInterfaceDetail (
hardwareDeviceInfo,
&deviceInterfaceData,
NULL, // probing so no output buffer yet
0, // probing so output buffer length of zero
&requiredLength,
NULL) && (error = GetLastError()) != ERROR_INSUFFICIENT_BUFFER)
{
goto Error;
}
predictedLength = requiredLength;
deviceInterfaceDetailData = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
predictedLength);
if (deviceInterfaceDetailData == NULL) {
goto Error;
}
deviceInterfaceDetailData->cbSize =
sizeof (SP_DEVICE_INTERFACE_DETAIL_DATA);
if (! SetupDiGetDeviceInterfaceDetail (
hardwareDeviceInfo,
&deviceInterfaceData,
deviceInterfaceDetailData,
predictedLength,
&requiredLength,
NULL)) {
goto Error;
}
deviceInfo = CreateDeviceInfo(deviceInterfaceDetailData->DevicePath);
if(!deviceInfo)
goto Error;
}
if(deviceInterfaceDetailData) {
HeapFree (GetProcessHeap(), 0, deviceInterfaceDetailData);
}
SetupDiDestroyDeviceInfoList (hardwareDeviceInfo);
return 0;
Error:
error = GetLastError();
MessageBox(hWnd, TEXT("EnumExisting Devices failed"), TEXT("Error!"), MB_OK);
if(deviceInterfaceDetailData)
HeapFree (GetProcessHeap(), 0, deviceInterfaceDetailData);
SetupDiDestroyDeviceInfoList (hardwareDeviceInfo);
Cleanup(hWnd);
return 0;
}
PDEVICE_INFO
FindDeviceInfo(
PDIALOG_RESULT InputInfo
)
{
PLIST_ENTRY thisEntry, listHead;
PDEVICE_INFO deviceInfo = NULL, result = NULL;
listHead = &ListHead;
for(thisEntry = listHead->Flink;
thisEntry != listHead;
thisEntry = thisEntry->Flink){
deviceInfo = CONTAINING_RECORD(thisEntry, DEVICE_INFO, ListEntry);
if(deviceInfo->DeviceIndex == InputInfo->DeviceIndex){
if(deviceInfo->IsANetworkMiniport){
Display(TEXT("You can't use this app on a device installed as a network device"));
break;
}
if(deviceInfo->hDevice &&
deviceInfo->hDevice != INVALID_HANDLE_VALUE){
Display(TEXT("%ws device is already in use"),
deviceInfo->DeviceName);
break;
}
deviceInfo->DeviceIndex = InputInfo->DeviceIndex;
deviceInfo->PacketSize = InputInfo->PacketSize;
memcpy(deviceInfo->UnicodeSourceIp, InputInfo->SourceIp, MAX_LEN);
memcpy(deviceInfo->UnicodeDestIp, InputInfo->DestIp, MAX_LEN);
//
// Convert the unicode source and destination IP string
// to ANSI and store it.
//
WideCharToMultiByte(CP_ACP, //ANSI code page
0, deviceInfo->UnicodeSourceIp, -1,
deviceInfo->SourceIp, MAX_LEN, NULL, NULL);
//
// Convert Unicode string to ANSI.
//
WideCharToMultiByte(CP_ACP, 0, deviceInfo->UnicodeDestIp, -1,
deviceInfo->DestIp, MAX_LEN, NULL, NULL);
result = deviceInfo;
break;
}
}
return result;
}
PDEVICE_INFO
CreateDeviceInfo(
_In_ LPWSTR DevicePath
)
{
PDEVICE_INFO deviceInfo = NULL;
HRESULT hr;
DisplayV(TEXT("Entered CreateDeviceInfo"));
deviceInfo = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(DEVICE_INFO));
if(!deviceInfo) {
goto Error;
}
if(!GetDeviceDescription(DevicePath,
deviceInfo->DeviceName,
sizeof(deviceInfo->DeviceName),
&deviceInfo->IsANetworkMiniport
)) {
Display(TEXT("GetDeviceDescription failed %x"), GetLastError());
goto Error;
}
//
// Copy the device path so that we can open the device using CreateFile.
//
hr = StringCchCopy(deviceInfo->DevicePath, MAX_PATH, DevicePath);
if(FAILED(hr)){
goto Error;
}
DeviceIndex++;
deviceInfo->DeviceIndex = DeviceIndex;
//
// Link this to the global list of devices.
//
InitializeListHead(&deviceInfo->ListEntry);
InsertTailList(&ListHead, &deviceInfo->ListEntry);
Display(TEXT("Device %d is %ws"), DeviceIndex, deviceInfo->DeviceName);
return deviceInfo;
Error:
if(deviceInfo) {
HeapFree (GetProcessHeap(), 0, deviceInfo);
}
return NULL;
}
VOID
FreeDeviceInfo(
_In_ PDEVICE_INFO DeviceInfo
)
{
DisplayV(TEXT("Entered FreeDeviceInfo"));
if (DeviceInfo->hHandleNotification) {
UnregisterDeviceNotification(DeviceInfo->hHandleNotification);
DeviceInfo->hHandleNotification = NULL;
}
if (DeviceInfo->hDevice != INVALID_HANDLE_VALUE &&
DeviceInfo->hDevice != NULL) {
CloseHandle(DeviceInfo->hDevice);
DeviceInfo->hDevice = INVALID_HANDLE_VALUE;
Display(TEXT("Closed handle to device %ws"), DeviceInfo->DeviceName );
}
RemoveEntryList(&DeviceInfo->ListEntry);
HeapFree (GetProcessHeap(), 0, DeviceInfo);
return;
}
BOOL
SetRegistryInfo(
_In_reads_bytes_(SourceIPLen) LPWSTR SourceIP,
_In_ DWORD SourceIPLen,
_In_reads_bytes_(DestinationIPLen) LPWSTR DestinationIP,
_In_ DWORD DestinationIPLen
)
{
HKEY hKey;
BOOL ret = FALSE;
size_t srcStrLen, destStrLen;
if (FAILED(StringCbLengthW(SourceIP, SourceIPLen, &srcStrLen))) {
return ret;
}
if (FAILED(StringCbLengthW(DestinationIP, DestinationIPLen, &destStrLen))) {
return ret;
}
//
// RegSetValueEx takes a DWORD, in the rare case that size_t is larger than
// a DWORD return an error.
//
if (srcStrLen > (DWORD_MAX - sizeof(WCHAR))||
destStrLen > (DWORD_MAX - sizeof(WCHAR))) {
return ret;
}
if (RegOpenKey(HKEY_LOCAL_MACHINE, REG_PATH, &hKey)) {
if (ERROR_SUCCESS != RegCreateKey(HKEY_LOCAL_MACHINE, REG_PATH, &hKey)) {
Display(TEXT("RegCreateKey failed: %x"), GetLastError());
return ret;
}
}
if (ERROR_SUCCESS == RegSetValueEx(hKey, L"SourceIP", 0, REG_SZ,
(LPBYTE)SourceIP, (DWORD) srcStrLen+sizeof(WCHAR))) {
if (ERROR_SUCCESS == RegSetValueEx(hKey, L"DestinationIP", 0, REG_SZ,
(LPBYTE)DestinationIP, (DWORD) destStrLen+sizeof(WCHAR))) {
ret = TRUE;
}
}
RegCloseKey(hKey);
return ret;
}
_Success_(return)
BOOL
GetRegistryInfo(
_Out_writes_bytes_(* SourceIPLen) PWSTR SourceIP,
_Inout_ LPDWORD SourceIPLen,
_Out_writes_bytes_(* DestinationIPLen) PWSTR DestinationIP,
_Inout_ LPDWORD DestinationIPLen
)
{
HKEY hKey;
DWORD dwType = REG_SZ;
BOOL ret = FALSE;
if(ERROR_SUCCESS == RegOpenKey(HKEY_LOCAL_MACHINE, REG_PATH, &hKey)) {
if(ERROR_SUCCESS == RegQueryValueEx(hKey, L"SourceIP", NULL, &dwType,
(LPBYTE)SourceIP, SourceIPLen)){
if(ERROR_SUCCESS == RegQueryValueEx(hKey, L"DestinationIP", NULL, &dwType,
(LPBYTE)DestinationIP, DestinationIPLen)){
ret = TRUE;
}
}
RegCloseKey(hKey);
}
return ret;
}
BOOLEAN
OpenDevice(
_In_ HWND HWnd,
_In_ PDEVICE_INFO DeviceInfo
)
{
DEV_BROADCAST_HANDLE filter;
HANDLE hDevice;
DisplayV(TEXT("Entered OpenDevice"));
//
// Open an handle to the device.
//
hDevice = CreateFile (
DeviceInfo->DevicePath,
GENERIC_READ | GENERIC_WRITE,
0,
NULL, // no SECURITY_ATTRIBUTES structure
OPEN_EXISTING, // No special create flags
FILE_FLAG_OVERLAPPED,
NULL);
if (INVALID_HANDLE_VALUE == hDevice) {
Display(TEXT("Failed to open the device: %ws"),
DeviceInfo->DeviceName);
return FALSE;
}
Display(TEXT("Opened handled to the device: %ws"),
DeviceInfo->DeviceName);
//
// Register handle based notification to receive pnp
// device change notification on the handle.
//
memset (&filter, 0, sizeof(filter)); //zero the structure
filter.dbch_size = sizeof(filter);
filter.dbch_devicetype = DBT_DEVTYP_HANDLE;
filter.dbch_handle = hDevice;
DeviceInfo->hHandleNotification = RegisterDeviceNotification(HWnd, &filter, 0);
if(!DeviceInfo->hHandleNotification){
Display(TEXT("Failed to register notification: %ws"),
DeviceInfo->DeviceName);
CloseHandle(hDevice);
return FALSE;
}
DeviceInfo->hDevice = hDevice;
return TRUE;
}
BOOL
CreatePingThread(
PDEVICE_INFO DeviceInfo
)
{
ULONG id;
DisplayV(TEXT("CreatePingThread"));
DeviceInfo->ExitThread = FALSE;
//
// Start the ping operation in a separate thread.
//
DeviceInfo->ThreadHandle = CreateThread( NULL, // security attributes
0, // initial stack size
(LPTHREAD_START_ROUTINE) PingThread, // Main() function
DeviceInfo, // arg to Reader thread
0, // creation flags
(LPDWORD)&id); // returned thread id
if ( NULL == DeviceInfo->ThreadHandle) {
Display(TEXT("CreateThread failed %x"), GetLastError());
return FALSE;
}
return TRUE;
}
VOID
TerminatePingThread(
PDEVICE_INFO DeviceInfo
)
{
DWORD status;
DisplayV(TEXT("TerminatePingThread"));
if(DeviceInfo->ThreadHandle){
DeviceInfo->ExitThread = TRUE;
//
// Wait for the thread to exit
//
status = WaitForSingleObjectEx(DeviceInfo->ThreadHandle, 1000, TRUE );
if(status == WAIT_FAILED){
Display(TEXT("Wait failed %x"), GetLastError());
}
CloseHandle(DeviceInfo->ThreadHandle);
DeviceInfo->ThreadHandle = NULL;
}
}
BOOLEAN
Cleanup(
HWND hWnd
)
/*++
This routine walks the global list of currently enumerated devices
and close all handles and frees the memory.
--*/
{
PDEVICE_INFO deviceInfo =NULL;
PLIST_ENTRY thisEntry;
DisplayV(TEXT("Entered Cleanup"));
while (!IsListEmpty(&ListHead)) {
thisEntry = ListHead.Flink;
deviceInfo = CONTAINING_RECORD(thisEntry, DEVICE_INFO, ListEntry);
//
// First let us make sure the PingThread is not running.
//
TerminatePingThread(deviceInfo);
FreeDeviceInfo(deviceInfo);
}
return TRUE;
}
_Success_(return != FALSE)
BOOL
GetDeviceDescription(
_In_ LPTSTR DevPath,
_Out_writes_bytes_all_(OutBufferLen) LPTSTR OutBuffer,
_In_ ULONG OutBufferLen,
BOOL *NetClassDevice
)
{
HDEVINFO hardwareDeviceInfo = NULL;
SP_DEVICE_INTERFACE_DATA deviceInterfaceData;
SP_DEVINFO_DATA deviceInfoData;
DWORD dwRegType, error;
TCHAR classGuidString[MAX_GUID_STRING_LEN];
HRESULT hr;
GUID classGuid;
BOOL ret = FALSE;
DisplayV(TEXT("GetDeviceDescription"));
hardwareDeviceInfo = SetupDiCreateDeviceInfoList(NULL, NULL);
if(INVALID_HANDLE_VALUE == hardwareDeviceInfo)
{
Display(TEXT("Couldn't create DeviceInfoList: %x"), GetLastError());
goto Error;
}
//
// Enumerate devices of toaster class
//
deviceInterfaceData.cbSize = sizeof(deviceInterfaceData);
SetupDiOpenDeviceInterface (hardwareDeviceInfo, DevPath,
0, //
&deviceInterfaceData);
deviceInfoData.cbSize = sizeof(deviceInfoData);
if(!SetupDiGetDeviceInterfaceDetail (
hardwareDeviceInfo,
&deviceInterfaceData,
NULL, // probing so no output buffer yet
0, // probing so output buffer length of zero
NULL,
&deviceInfoData) && (error = GetLastError()) != ERROR_INSUFFICIENT_BUFFER)
{
Display(TEXT("Couldn't get interface detail: %x"), GetLastError());
goto Error;
}
//
// Get the friendly name for this instance, if that fails
// try to get the device description.
//
if(!SetupDiGetDeviceRegistryProperty(hardwareDeviceInfo, &deviceInfoData,
SPDRP_FRIENDLYNAME,
&dwRegType,
(BYTE*) OutBuffer,
OutBufferLen,
NULL))
{
if(!SetupDiGetDeviceRegistryProperty(hardwareDeviceInfo, &deviceInfoData,
SPDRP_DEVICEDESC,
&dwRegType,
(BYTE*) OutBuffer,
OutBufferLen,
NULL)){
Display(TEXT("Couldn't get friendlyname: %x"), GetLastError());
goto Error;
}
}
//
// Get the class guid of the device and find out whether this is a
// network miniport.
//
if(!SetupDiGetDeviceRegistryProperty(hardwareDeviceInfo,
&deviceInfoData,
SPDRP_CLASSGUID,
&dwRegType,
(BYTE*) classGuidString,
sizeof(classGuidString),
NULL)) {
Display(TEXT("Class guid is not available for device: %ws"), OutBuffer );
}
hr = CLSIDFromString(classGuidString, &classGuid);
if(FAILED(hr)) {
goto Error;
}
if(IsEqualGUID(&classGuid, &GUID_DEVCLASS_NET)){
*NetClassDevice = TRUE;
} else {
*NetClassDevice = FALSE;
}
ret = TRUE;
Error:
if(hardwareDeviceInfo) {
SetupDiDestroyDeviceInfoList (hardwareDeviceInfo);
}
return ret;
}
BOOL
HandlePowerBroadcast(
HWND hWnd,
WPARAM wParam,
LPARAM lParam)
{
BOOL fRet = TRUE;
switch (wParam)
{
case PBT_APMQUERYSTANDBY:
DisplayV(TEXT("PBT_APMQUERYSTANDBY"));
break;
case PBT_APMQUERYSUSPEND:
DisplayV(TEXT("PBT_APMQUERYSUSPEND"));
break;
case PBT_APMSTANDBY :
DisplayV(TEXT("PBT_APMSTANDBY"));
break;
case PBT_APMSUSPEND :
DisplayV(TEXT("PBT_APMSUSPEND"));
break;
case PBT_APMQUERYSTANDBYFAILED:
DisplayV(TEXT("PBT_APMQUERYSTANDBYFAILED"));
break;
case PBT_APMRESUMESTANDBY:
DisplayV(TEXT("PBT_APMRESUMESTANDBY"));
break;
case PBT_APMQUERYSUSPENDFAILED:
DisplayV(TEXT("PBT_APMQUERYSUSPENDFAILED"));
break;
case PBT_APMRESUMESUSPEND:
DisplayV(TEXT("PBT_APMRESUMESUSPEND"));
break;
case PBT_APMBATTERYLOW:
DisplayV(TEXT("PBT_APMBATTERYLOW"));
break;
case PBT_APMOEMEVENT:
DisplayV(TEXT("PBT_APMOEMEVENT"));
break;
case PBT_APMRESUMEAUTOMATIC:
DisplayV(TEXT("PBT_APMRESUMEAUTOMATIC"));
break;
case PBT_APMRESUMECRITICAL:
DisplayV(TEXT("PBT_APMRESUMECRITICAL"));
break;
case PBT_APMPOWERSTATUSCHANGE:
DisplayV(TEXT("PBT_APMPOWERSTATUSCHANGE"));
break;
default:
DisplayV(TEXT("Default"));
break;
}
return fRet;
}
|