| |

VerySource

 Forgot password?
 Register
Search
View: 3207|Reply: 10

Under windows protected mode, the compiler&&reads the interrupt descriptor table?

[Copy link]

3

Threads

10

Posts

11.00

Credits

Newbie

Rank: 1

Credits
11.00

 China

Post time: 2020-3-16 02:30:01
| Show all posts |Read mode
Can I read the entry address of an interrupt under windows? Similar to * 4 under dos. Whether it can be read is also unmodifiable!

No way, the boss must ask to read the address and modify it.

Is the compilation environment under windows different from the programming environment used under dos? What compiler should be used?

Thank you!
Reply

Use magic Report

1

Threads

5

Posts

6.00

Credits

Newbie

Rank: 1

Credits
6.00

 China

Post time: 2020-6-16 15:30:02
| Show all posts
Unless your program can run at ring0 level, it is not allowed to modify. It's unclear if you read it.
Reply

Use magic Report

0

Threads

15

Posts

13.00

Credits

Newbie

Rank: 1

Credits
13.00

 China

Post time: 2020-6-20 11:15:01
| Show all posts
Operable under windows, the compiler can choose masm32
Reply

Use magic Report

0

Threads

1

Posts

2.00

Credits

Newbie

Rank: 1

Credits
2.00

 China

Post time: 2020-7-18 14:15:01
| Show all posts
Did not understand.

Is there an API to support reading? ? ? Or directly find the location of the descriptor table? ? ? Or is there a fixed entry address? ? ?
Reply

Use magic Report

0

Threads

4

Posts

4.00

Credits

Newbie

Rank: 1

Credits
4.00

 China

Post time: 2020-7-18 15:15:01
| Show all posts
Refer to "80386 Programming in Protected Mode" or the first volume of Intel manual (available for download on Intel website)
98 can read and write directly after class, for example, the following assembly program rewrites the interrupt:
.386
    .model flat, stdcall
option casemap: none

include windows.inc
include kernel32.inc
include user32.inc

INTNUM equ 9

includelib kernel32.lib
includelib user32.lib

.data
szAppName db "Ring0 Try--using IDT",0
szFormat db "My INT %u handler return the value of CRO: %08X",0
szMsg db 512 dup(0)

IDTR df 0
OldGate dq 0
MyGate dw 0
            dw 28h
            dw 0EE00h
            dw 0

.code

start:

    ;construct my call gate
    mov eax, IntHandler
    mov MyGate, ax
    shr eax, 16
    mov [MyGate+6], ax

    ;save old IDT
    sidt IDTR
    mov ebx, dword ptr [IDTR+2]
    add ebx, 8*INTNUM
    push ebx
    mov esi, ebx
    mov edi, offset OldGate
    cld
    movsd
    movsd

    ;modify IDT
    mov edi, ebx
    mov esi, offset MyGate
    cli
    movsd
    movsd

    ;interrupt!
    sti
    int INTNUM

    ;restore IDT
    pop edi
    mov esi, offset OldGate
    cli
    movsd
    movsd
    sti

    ;OK!
    invoke wsprintf, addr szMsg, addr szFormat, INTNUM, eax
    invoke MessageBox, NULL, addr szMsg, addr szAppName, MB_OK
   
    invoke ExitProcess, 0

IntHandler:
    mov eax, cr0
    iretd

end start

But NT/2000/XP does not work, you need to write a kernel driver.
Reply

Use magic Report

0

Threads

4

Posts

4.00

Credits

Newbie

Rank: 1

Credits
4.00

 China

Post time: 2020-7-18 15:45:01
| Show all posts
The compiler can use Microsoft's masm32
Reply

Use magic Report

3

Threads

10

Posts

11.00

Credits

Newbie

Rank: 1

Credits
11.00

 China

 Author| Post time: 2020-7-18 23:30:01
| Show all posts
Seeing everyone's replies, thank you very much! I will try it

In fact, my ultimate goal is to be able to modify the entry address of int 17h (print interrupt) so that under windows, as long as a printing action occurs, it will enter my interrupt service program and modify the printing content.

I don't know, under windows, can it be achieved in this way? In other words, under windows, will printing trigger an int 17h interrupt?

Thank you again for your attention!
Reply

Use magic Report

0

Threads

4

Posts

4.00

Credits

Newbie

Rank: 1

Credits
4.00

 China

Post time: 2020-7-21 16:00:02
| Show all posts
It seems that LZ could not get rid of the influence of DOS. You should write a printer driver and insert it into the Windows driver stack instead of interrupting
Reply

Use magic Report

3

Threads

10

Posts

11.00

Credits

Newbie

Rank: 1

Credits
11.00

 China

 Author| Post time: 2020-7-21 20:00:01
| Show all posts
Yeah! I'm stuck in dos thinking!

In fact, the main reason is that I am not familiar with the working principle of windows, and I have never touched the content of the kernel! Please forgive me!

renzichao: Can you give me some pointers about writing the printer driver? Let me start! Thank you!
Reply

Use magic Report

0

Threads

4

Posts

4.00

Credits

Newbie

Rank: 1

Credits
4.00

 China

Post time: 2020-7-29 00:30:01
| Show all posts
The Windows kernel driver is very complicated. There are many basic introductions on the Internet, and MS also has special materials. But it's expensive, a few hundred yuan.
WDM (Windows Diver Model) uses IRP (Interrupt Request Package) processing center, similar to Windows applications centered on message processing, driving and system mutual account to complete tasks.
If you are not familiar with the Windows architecture, it may be difficult to develop such a difficult thing as a print driver. If time is tight, I suggest you ask someone for help. If you have time, learn slowly. If you have a good foundation and are willing to work hard, it is at least half a year to get started.
Reply

Use magic Report

You have to log in before you can reply Login | Register

Points Rules

Contact us|Archive|Mobile|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

Quick Reply To Top Return to the list