- Add IRP tests based on a Alexander Morozov's patch to Wine ("[try 3] Add tests...
[reactos.git] / rostests / drivers / kmtest / ntos_io.c
1 /*
2 * NTOSKRNL Io Regressions KM-Test
3 * ReactOS Kernel Mode Regression Testing framework
4 *
5 * Copyright 2006 Aleksey Bragin <aleksey@reactos.org>
6 * Copyright 2008 Etersoft (Alexander Morozov)
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
17 *
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library; see the file COPYING.LIB.
20 * If not, write to the Free Software Foundation,
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
23
24 /* INCLUDES *******************************************************************/
25
26 #include <ddk/ntddk.h>
27 #include "kmtest.h"
28
29 #define NDEBUG
30 #include "debug.h"
31
32 VOID NtoskrnlIoDeviceInterface();
33
34
35 /* PUBLIC FUNCTIONS ***********************************************************/
36
37 VOID NtoskrnlIoMdlTest()
38 {
39 PMDL Mdl;
40 PIRP Irp;
41 PVOID VirtualAddress;
42 ULONG MdlSize = 2*4096+184; // 2 pages and some random value
43
44 StartTest();
45
46 // Try to alloc 2Gb MDL
47 Mdl = IoAllocateMdl(NULL, 2048UL*0x100000, FALSE, FALSE, NULL);
48
49 ok(Mdl == NULL,
50 "IoAllocateMdl should fail allocation of 2Gb or more, but got Mdl=0x%X",
51 (UINT)Mdl);
52
53 if (Mdl)
54 IoFreeMdl(Mdl);
55
56 // Now create a valid MDL
57 VirtualAddress = ExAllocatePool(NonPagedPool, MdlSize);
58 Mdl = IoAllocateMdl(VirtualAddress, MdlSize, FALSE, FALSE, NULL);
59 ok(Mdl != NULL, "Mdl allocation failed");
60 // Check fields of the allocated struct
61 ok(Mdl->Next == NULL, "Mdl->Next should be NULL, but is 0x%X",
62 (UINT)Mdl->Next);
63 ok(Mdl->ByteCount == MdlSize,
64 "Mdl->ByteCount should be equal to MdlSize, but is 0x%X",
65 (UINT)Mdl->ByteCount);
66 // TODO: Check other fields of MDL struct
67
68 IoFreeMdl(Mdl);
69 // Allocate now with pointer to an Irp
70 Irp = IoAllocateIrp(1, FALSE);
71 ok(Irp != NULL, "IRP allocation failed");
72 Mdl = IoAllocateMdl(VirtualAddress, MdlSize, FALSE, FALSE, Irp);
73 ok(Mdl != NULL, "Mdl allocation failed");
74 ok(Irp->MdlAddress == Mdl, "Irp->MdlAddress should be 0x%X, but is 0x%X",
75 (UINT)Mdl, (UINT)Irp->MdlAddress);
76
77 IoFreeMdl(Mdl);
78
79 // TODO: Check a case when SecondaryBuffer == TRUE
80
81 IoFreeIrp(Irp);
82 ExFreePool(VirtualAddress);
83
84 FinishTest("NTOSKRNL Io Mdl");
85 }
86
87 VOID NtoskrnlIoIrpTest()
88 {
89 USHORT size;
90 IRP *iorp;
91
92 // 1st test
93 size = sizeof(IRP) + 5 * sizeof(IO_STACK_LOCATION);
94 iorp = ExAllocatePool(NonPagedPool, size);
95
96 if (NULL != iorp)
97 {
98 IoInitializeIrp(iorp, size, 5);
99
100 ok(6 == iorp->Type, "Irp type should be 6, but got %d\n", iorp->Type);
101 ok(iorp->Size == size, "Irp size should be %d, but got %d\n",
102 iorp->Size, size);
103 ok(5 == iorp->StackCount, "Irp StackCount should be 5, but got %d\n",
104 iorp->StackCount);
105 ok(6 == iorp->CurrentLocation, "Irp CurrentLocation should be 6, but got %d\n",
106 iorp->CurrentLocation);
107 ok(IsListEmpty(&iorp->ThreadListEntry), "IRP thread list is not empty\n");
108 ok ((PIO_STACK_LOCATION)(iorp + 1) + 5 ==
109 iorp->Tail.Overlay.CurrentStackLocation,
110 "CurrentStackLocation mismatch\n");
111
112 ExFreePool(iorp);
113 }
114
115 // 2nd test
116 size = sizeof(IRP) + 2 * sizeof(IO_STACK_LOCATION);
117 iorp = IoAllocateIrp(2, FALSE);
118
119 if (NULL != iorp)
120 {
121 ok(6 == iorp->Type, "Irp type should be 6, but got %d\n", iorp->Type);
122 ok(iorp->Size >= size,
123 "Irp size should be more or equal to %d, but got %d\n",
124 iorp->Size, size);
125 ok(2 == iorp->StackCount, "Irp StackCount should be 2, but got %d\n",
126 iorp->StackCount);
127 ok(3 == iorp->CurrentLocation, "Irp CurrentLocation should be 3, but got %d\n",
128 iorp->CurrentLocation);
129 ok(IsListEmpty(&iorp->ThreadListEntry), "IRP thread list is not empty\n");
130 ok ((PIO_STACK_LOCATION)(iorp + 1) + 2 ==
131 iorp->Tail.Overlay.CurrentStackLocation,
132 "CurrentStackLocation mismatch\n");
133 ok((IRP_ALLOCATED_FIXED_SIZE & iorp->AllocationFlags),
134 "IRP Allocation flags lack fixed size attribute\n");
135 ok(!(IRP_LOOKASIDE_ALLOCATION & iorp->AllocationFlags),
136 "IRP Allocation flags should not have lookaside allocation\n");
137
138 IoFreeIrp(iorp);
139 }
140
141 // 3rd test
142 size = sizeof(IRP) + 2 * sizeof(IO_STACK_LOCATION);
143 iorp = IoAllocateIrp(2, TRUE);
144
145 if (NULL != iorp)
146 {
147 ok(6 == iorp->Type, "Irp type should be 6, but got %d\n", iorp->Type);
148 ok(iorp->Size >= size,
149 "Irp size should be more or equal to %d, but got %d\n",
150 iorp->Size, size);
151 ok(2 == iorp->StackCount, "Irp StackCount should be 2, but got %d\n",
152 iorp->StackCount);
153 ok(3 == iorp->CurrentLocation, "Irp CurrentLocation should be 3, but got %d\n",
154 iorp->CurrentLocation);
155 ok(IsListEmpty(&iorp->ThreadListEntry), "IRP thread list is not empty\n");
156 ok ((PIO_STACK_LOCATION)(iorp + 1) + 2 ==
157 iorp->Tail.Overlay.CurrentStackLocation,
158 "CurrentStackLocation mismatch\n");
159 ok((IRP_ALLOCATED_FIXED_SIZE & iorp->AllocationFlags),
160 "IRP Allocation flags lack fixed size attribute\n");
161 ok((IRP_LOOKASIDE_ALLOCATION & iorp->AllocationFlags),
162 "IRP Allocation flags lack lookaside allocation\n");
163
164 IoFreeIrp(iorp);
165 }
166 }
167
168 VOID NtoskrnlIoTests()
169 {
170 //NtoskrnlIoMdlTest();
171 //NtoskrnlIoDeviceInterface();
172 NtoskrnlIoIrpTest();
173 }