00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
#include "mi.h"
00024
00025
#ifdef ALLOC_PRAGMA
00026
#pragma alloc_text(PAGE,NtFlushWriteBuffer)
00027
#pragma alloc_text(PAGE,NtFlushInstructionCache)
00028
#endif
00029
00030
00031
NTSTATUS
00032 NtFlushWriteBuffer (
00033 VOID
00034 )
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052 {
00053
PAGED_CODE();
00054
00055
KeFlushWriteBuffer();
00056
return STATUS_SUCCESS;
00057 }
00058
00059 ULONG
00060 MiFlushRangeFilter (
00061 IN PEXCEPTION_POINTERS ExceptionPointers,
00062 IN PVOID *BaseAddress,
00063 IN PULONG Length,
00064 IN PBOOLEAN Retry
00065 )
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100 {
00101 PEXCEPTION_RECORD ExceptionRecord;
00102 ULONG_PTR BadVa;
00103 ULONG_PTR NextVa;
00104 ULONG_PTR EndVa;
00105
00106 ExceptionRecord = ExceptionPointers->ExceptionRecord;
00107
00108
00109
00110
00111
00112
00113
if ( ExceptionRecord->ExceptionCode == STATUS_ACCESS_VIOLATION ) {
00114
00115
00116
00117
00118
00119
00120 BadVa = ExceptionRecord->ExceptionInformation[1];
00121 NextVa =
ROUND_TO_PAGES( BadVa + 1 );
00122 EndVa = *(PULONG_PTR)BaseAddress + *Length;
00123
00124
00125
00126
00127
00128
00129
00130
00131
if ( (NextVa > BadVa) && (NextVa < EndVa) ) {
00132 *Length = (ULONG) (EndVa - NextVa);
00133 *BaseAddress = (PVOID)NextVa;
00134 *Retry =
TRUE;
00135 }
00136 }
00137
00138
return EXCEPTION_EXECUTE_HANDLER;
00139 }
00140
00141
NTSTATUS
00142 NtFlushInstructionCache (
00143 IN HANDLE ProcessHandle,
00144 IN PVOID BaseAddress OPTIONAL,
00145 IN ULONG Length
00146 )
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172 {
00173
00174
KPROCESSOR_MODE PreviousMode;
00175
PEPROCESS Process;
00176
NTSTATUS Status;
00177 BOOLEAN Retry;
00178 PVOID RangeBase;
00179 ULONG RangeLength;
00180
00181
PAGED_CODE();
00182
00183 PreviousMode = KeGetPreviousMode();
00184
00185
00186
00187
00188
00189
00190
00191
if ((ARGUMENT_PRESENT(BaseAddress) ==
FALSE) || (Length != 0)) {
00192
00193
00194
00195
00196
00197
00198
if ((ARGUMENT_PRESENT(BaseAddress) !=
FALSE) &&
00199 (PreviousMode !=
KernelMode)) {
00200
try {
00201
ProbeForRead(BaseAddress, Length,
sizeof(UCHAR));
00202 } except(
EXCEPTION_EXECUTE_HANDLER) {
00203
return GetExceptionCode();
00204 }
00205 }
00206
00207
00208
00209
00210
00211
00212
if (ProcessHandle != NtCurrentProcess()) {
00213
00214
00215
00216
00217
00218
00219
Status =
ObReferenceObjectByHandle(ProcessHandle,
00220 PROCESS_VM_WRITE,
00221
PsProcessType,
00222 PreviousMode,
00223 (PVOID *)&Process,
00224
NULL);
00225
00226
if (!
NT_SUCCESS(
Status)) {
00227
return Status;
00228 }
00229
00230
00231
00232
00233
00234
KeAttachProcess(&Process->Pcb);
00235 }
00236
00237
00238
00239
00240
00241
00242
if (ARGUMENT_PRESENT(BaseAddress) ==
FALSE) {
00243
KeSweepIcache(
FALSE);
00244
00245 }
else {
00246
00247
00248
00249
00250
00251
00252
00253
00254
00255
00256
00257
00258 RangeBase = BaseAddress;
00259 RangeLength = Length;
00260
00261
do {
00262 Retry =
FALSE;
00263
try {
00264
KeSweepIcacheRange(
FALSE, RangeBase, RangeLength);
00265 } except(
MiFlushRangeFilter(GetExceptionInformation(),
00266 &RangeBase,
00267 &RangeLength,
00268 &Retry)) {
00269
if (GetExceptionCode() != STATUS_ACCESS_VIOLATION) {
00270
Status = GetExceptionCode();
00271 }
00272 }
00273 }
while (Retry !=
FALSE);
00274 }
00275
00276
00277
00278
00279
00280
00281
if (ProcessHandle != NtCurrentProcess()) {
00282
KeDetachProcess();
00283
ObDereferenceObject(Process);
00284 }
00285 }
00286
00287
return STATUS_SUCCESS;
00288 }
00289