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
00027
00028
00029
#include "ki.h"
00030
00031
VOID
00032 KeIA32GetGdtEntryThread(
00033 IN
PKTHREAD Thread,
00034 IN ULONG Offset,
00035 OUT PKGDTENTRY Descriptor
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
00061
00062 {
00063
#if 0
00064
PKGDTENTRY Gdt;
00065
PKPROCESS Process;
00066
00067
00068
00069
00070
00071
if (
Offset >= GDT_TABLE_SIZE) {
00072
return ;
00073 }
00074
00075
if (
Offset == KGDT_LDT) {
00076
00077
00078
00079
00080
00081 Process = Thread->ApcState.Process;
00082
00083
00084
00085
00086
ASSERT (&(
PsGetCurrentProcess()->Pcb) == Process);
00087
00088 *Descriptor = Process->LdtDescriptor;
00089
00090 }
else {
00091
00092
00093
00094
00095
00096
00097
00098 PTEB Teb = (PTEB)(Thread->Teb);
00099
00100 *Descriptor = *((PKGDTENTRY)((PCHAR)(Teb->Gdt) +
Offset));
00101
00102
00103
00104
00105
00106
if (
Offset == KGDT_R3_TEB) {
00107 Descriptor->BaseLow = (
USHORT)((ULONG_PTR)(Thread->Teb) & 0xFFFF);
00108 Descriptor->HighWord.Bytes.BaseMid =
00109 (UCHAR) ( ( (ULONG_PTR)(Thread->Teb) & ((ULONG_PTR)0xFF0000
L)) >> 16);
00110 Descriptor->HighWord.Bytes.BaseHi =
00111 (
CHAR) ( ( (ULONG_PTR)(Thread->Teb) & ((ULONG_PTR)0xFF000000
L)) >> 24);
00112 }
00113 }
00114
00115
return ;
00116
#endif
00117
}