00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
#include "ki.h"
00027
00028
VOID
00029
KiLowerIrqlSpecial(KIRQL);
00030
00031
VOID
00032 KiDispatchSoftwareInterrupt (
00033 KIRQL Irql
00034 )
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059 {
00060 PKPRCB Prcb =
KeGetCurrentPrcb();
00061
00062
KiLowerIrqlSpecial(Irql);
00063
00064
if (Irql ==
APC_LEVEL) {
00065
00066 Prcb->ApcBypassCount += 1;
00067 PCR->ApcInterrupt = 0;
00068
00069 _enable();
00070
00071
00072
00073
00074
00075
KiDeliverApc(
KernelMode,
NULL,
NULL);
00076
00077 _disable();
00078
00079 }
else {
00080
00081 Prcb->DpcBypassCount += 1;
00082 PCR->DispatchInterrupt = 0;
00083
00084 _enable();
00085
00086
00087
00088
00089
00090
KiDispatchInterrupt();
00091
00092 _disable();
00093
00094 }
00095 }
00096
00097
VOID
00098 KiCheckForSoftwareInterrupt (
00099 KIRQL RequestIrql
00100 )
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122 {
00123 BOOLEAN InterruptState;
00124
00125 InterruptState =
KiDisableInterrupts();
00126
00127
if (RequestIrql ==
APC_LEVEL) {
00128
00129
00130
00131
00132
00133
while (PCR->DispatchInterrupt) {
00134
KiDispatchSoftwareInterrupt(
DISPATCH_LEVEL);
00135 }
00136
00137 }
else {
00138
00139
00140
00141
00142
00143
while (PCR->SoftwareInterruptPending) {
00144 KIRQL Irql;
00145
00146
if (PCR->DispatchInterrupt) {
00147 Irql =
DISPATCH_LEVEL;
00148 }
else if (PCR->ApcInterrupt) {
00149 Irql =
APC_LEVEL;
00150 }
00151
KiDispatchSoftwareInterrupt(Irql);
00152 }
00153 }
00154
00155
KiRestoreInterrupts(InterruptState);
00156 }
00157
00158
VOID
00159 KiRequestSoftwareInterrupt (
00160 KIRQL RequestIrql
00161 )
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180 {
00181
#if DEBUG
00182
if ((RequestIrql < APC_LEVEL) || (RequestIrql >
DISPATCH_LEVEL))
00183
KeBugCheckEx(INVALID_SOFTWARE_INTERRUPT, RequestIrql, 0, 0, 0);
00184
#endif
00185
((PUCHAR)&PCR->SoftwareInterruptPending)[RequestIrql-
APC_LEVEL] = 1;
00186 }