4 * Copyright 2002 Jukka Heinonen
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/winbase16.h"
24 #include "kernel16_private.h"
27 #include "wine/debug.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(int);
30 WINE_DECLARE_DEBUG_CHANNEL(relay
);
32 #define BCD_TO_BIN(x) ((x&15) + (x>>4)*10)
33 #define BIN_TO_BCD(x) ((x%10) + ((x/10)<<4))
35 static void WINAPI
DOSVM_Int11Handler(CONTEXT
*);
36 static void WINAPI
DOSVM_Int12Handler(CONTEXT
*);
37 static void WINAPI
DOSVM_Int17Handler(CONTEXT
*);
38 static void WINAPI
DOSVM_Int19Handler(CONTEXT
*);
39 static void WINAPI
DOSVM_Int1aHandler(CONTEXT
*);
40 static void WINAPI
DOSVM_Int20Handler(CONTEXT
*);
41 static void WINAPI
DOSVM_Int2aHandler(CONTEXT
*);
42 static void WINAPI
DOSVM_Int41Handler(CONTEXT
*);
43 static void WINAPI
DOSVM_Int4bHandler(CONTEXT
*);
44 static void WINAPI
DOSVM_Int5cHandler(CONTEXT
*);
45 static void WINAPI
DOSVM_DefaultHandler(CONTEXT
*);
47 static FARPROC16 DOSVM_Vectors16
[256];
48 static const INTPROC DOSVM_VectorsBuiltin
[] =
54 /* 10 */ 0, DOSVM_Int11Handler
, DOSVM_Int12Handler
, 0,
55 /* 14 */ 0, DOSVM_Int15Handler
, 0, DOSVM_Int17Handler
,
56 /* 18 */ 0, DOSVM_Int19Handler
, DOSVM_Int1aHandler
, 0,
58 /* 20 */ DOSVM_Int20Handler
, DOSVM_Int21Handler
, 0, 0,
59 /* 24 */ 0, DOSVM_Int25Handler
, DOSVM_Int26Handler
, 0,
60 /* 28 */ 0, 0, DOSVM_Int2aHandler
, 0,
61 /* 2C */ 0, 0, 0, DOSVM_Int2fHandler
,
62 /* 30 */ 0, DOSVM_Int31Handler
, 0, 0,
63 /* 34 */ DOSVM_Int34Handler
, DOSVM_Int35Handler
, DOSVM_Int36Handler
, DOSVM_Int37Handler
,
64 /* 38 */ DOSVM_Int38Handler
, DOSVM_Int39Handler
, DOSVM_Int3aHandler
, DOSVM_Int3bHandler
,
65 /* 3C */ DOSVM_Int3cHandler
, DOSVM_Int3dHandler
, DOSVM_Int3eHandler
, 0,
66 /* 40 */ 0, DOSVM_Int41Handler
, 0, 0,
68 /* 48 */ 0, 0, 0, DOSVM_Int4bHandler
,
73 /* 5C */ DOSVM_Int5cHandler
78 * Sizes of real mode and protected mode interrupt stubs.
80 #define DOSVM_STUB_PM16 5
83 /**********************************************************************
84 * DOSVM_DefaultHandler
86 * Default interrupt handler. This will be used to emulate all
87 * interrupts that don't have their own interrupt handler.
89 static void WINAPI
DOSVM_DefaultHandler( CONTEXT
*context
)
94 /**********************************************************************
97 void DOSVM_Exit( WORD retval
)
101 ReleaseThunkLock( &count
);
102 ExitThread( retval
);
106 /**********************************************************************
107 * DOSVM_GetBuiltinHandler
109 * Return Wine interrupt handler procedure for a given interrupt.
111 static INTPROC
DOSVM_GetBuiltinHandler( BYTE intnum
)
113 if (intnum
< ARRAY_SIZE(DOSVM_VectorsBuiltin
)) {
114 INTPROC proc
= DOSVM_VectorsBuiltin
[intnum
];
119 WARN("int%x not implemented, returning dummy handler\n", intnum
);
120 return DOSVM_DefaultHandler
;
124 /**********************************************************************
127 * Simple DOSRELAY that interprets its argument as INTPROC and calls it.
129 static void DOSVM_IntProcRelay( CONTEXT
*context
, LPVOID data
)
131 INTPROC proc
= (INTPROC
)data
;
136 /**********************************************************************
139 * This routine is used to make default int25 and int26 handlers leave the
140 * original eflags into stack. In order to do this, stack is manipulated
141 * so that it actually contains two copies of eflags, one of which is
142 * popped during return from interrupt handler.
144 static void DOSVM_PushFlags( CONTEXT
*context
, BOOL islong
, BOOL isstub
)
148 DWORD
*stack
= CTX_SEG_OFF_TO_LIN(context
,
151 context
->Esp
+= -4; /* One item will be added to stack. */
157 stack
+= 2; /* Pop ip and cs. */
158 *(--stack
) = context
->EFlags
;
163 *(--stack
) = context
->EFlags
;
167 WORD
*stack
= CTX_SEG_OFF_TO_LIN(context
,
170 ADD_LOWORD( context
->Esp
, -2 ); /* One item will be added to stack. */
176 stack
+= 2; /* Pop ip and cs. */
177 *(--stack
) = LOWORD(context
->EFlags
);
182 *(--stack
) = LOWORD(context
->EFlags
);
187 /**********************************************************************
188 * DOSVM_HardwareInterruptPM
190 * Emulate call to interrupt handler in 16-bit or 32-bit protected mode.
192 * Pushes interrupt frame to stack and changes instruction
193 * pointer to interrupt handler.
195 static void DOSVM_HardwareInterruptPM( CONTEXT
*context
, BYTE intnum
)
197 FARPROC16 addr
= DOSVM_GetPMHandler16( intnum
);
199 if (SELECTOROF(addr
) == int16_sel
)
201 TRACE( "builtin interrupt %02x has been invoked "
202 "(through vector %02x)\n",
203 OFFSETOF(addr
)/DOSVM_STUB_PM16
, intnum
);
205 if (intnum
== 0x25 || intnum
== 0x26)
206 DOSVM_PushFlags( context
, FALSE
, FALSE
);
208 DOSVM_BuildCallFrame( context
,
210 DOSVM_GetBuiltinHandler(
211 OFFSETOF(addr
)/DOSVM_STUB_PM16
) );
215 TRACE( "invoking hooked interrupt %02x at %04x:%04x\n",
216 intnum
, SELECTOROF(addr
), OFFSETOF(addr
) );
218 /* Push the flags and return address on the stack */
219 PUSH_WORD16( context
, LOWORD(context
->EFlags
) );
220 PUSH_WORD16( context
, context
->SegCs
);
221 PUSH_WORD16( context
, LOWORD(context
->Eip
) );
223 /* Jump to the interrupt handler */
224 context
->SegCs
= HIWORD(addr
);
225 context
->Eip
= LOWORD(addr
);
230 /**********************************************************************
231 * DOSVM_EmulateInterruptPM
233 * Emulate software interrupt in 16-bit or 32-bit protected mode.
234 * Called from signal handler when intXX opcode is executed.
236 * Pushes interrupt frame to stack and changes instruction
237 * pointer to interrupt handler.
239 BOOL
DOSVM_EmulateInterruptPM( CONTEXT
*context
, BYTE intnum
)
241 TRACE_(relay
)("\1Call DOS int 0x%02x ret=%04x:%08x\n"
242 " eax=%08x ebx=%08x ecx=%08x edx=%08x\n"
243 " esi=%08x edi=%08x ebp=%08x esp=%08x\n"
244 " ds=%04x es=%04x fs=%04x gs=%04x ss=%04x flags=%08x\n",
245 intnum
, context
->SegCs
, context
->Eip
,
246 context
->Eax
, context
->Ebx
, context
->Ecx
, context
->Edx
,
247 context
->Esi
, context
->Edi
, context
->Ebp
, context
->Esp
,
248 context
->SegDs
, context
->SegEs
, context
->SegFs
, context
->SegGs
,
249 context
->SegSs
, context
->EFlags
);
251 DOSMEM_InitDosMemory();
253 if (context
->SegCs
== relay_code_sel
)
256 * This must not be called using DOSVM_BuildCallFrame.
258 DOSVM_RelayHandler( context
);
260 else if (context
->SegCs
== int16_sel
)
262 /* Restore original flags stored into the stack by the caller. */
263 WORD
*stack
= CTX_SEG_OFF_TO_LIN(context
,
264 context
->SegSs
, context
->Esp
);
265 context
->EFlags
= (DWORD
)MAKELONG( stack
[2], HIWORD(context
->EFlags
) );
267 if (intnum
!= context
->Eip
/ DOSVM_STUB_PM16
)
268 WARN( "interrupt stub has been modified "
269 "(interrupt is %02x, interrupt stub is %02x)\n",
270 intnum
, context
->Eip
/DOSVM_STUB_PM16
);
272 TRACE( "builtin interrupt %02x has been branched to\n", intnum
);
274 if (intnum
== 0x25 || intnum
== 0x26)
275 DOSVM_PushFlags( context
, FALSE
, TRUE
);
277 DOSVM_BuildCallFrame( context
,
279 DOSVM_GetBuiltinHandler(intnum
) );
281 else if (ldt_is_system(context
->SegCs
))
284 if (intnum
>= ARRAY_SIZE(DOSVM_VectorsBuiltin
)) return FALSE
;
285 if (!(proc
= DOSVM_VectorsBuiltin
[intnum
])) return FALSE
;
290 DOSVM_HardwareInterruptPM( context
, intnum
);
296 /**********************************************************************
297 * DOSVM_GetPMHandler16
299 * Return the protected mode interrupt vector for a given interrupt.
301 FARPROC16
DOSVM_GetPMHandler16( BYTE intnum
)
306 pTask
= GlobalLock16(GetCurrentTask());
336 if (!DOSVM_Vectors16
[intnum
])
338 proc
= (FARPROC16
)MAKESEGPTR( int16_sel
, DOSVM_STUB_PM16
* intnum
);
339 DOSVM_Vectors16
[intnum
] = proc
;
341 return DOSVM_Vectors16
[intnum
];
345 /**********************************************************************
346 * DOSVM_SetPMHandler16
348 * Set the protected mode interrupt handler for a given interrupt.
350 void DOSVM_SetPMHandler16( BYTE intnum
, FARPROC16 handler
)
354 TRACE("Set protected mode interrupt vector %02x <- %04x:%04x\n",
355 intnum
, HIWORD(handler
), LOWORD(handler
) );
357 pTask
= GlobalLock16(GetCurrentTask());
363 pTask
->int0
= handler
;
366 pTask
->int2
= handler
;
369 pTask
->int4
= handler
;
372 pTask
->int6
= handler
;
375 pTask
->int7
= handler
;
378 pTask
->int3e
= handler
;
381 pTask
->int75
= handler
;
384 DOSVM_Vectors16
[intnum
] = handler
;
390 /**********************************************************************
391 * DOSVM_CallBuiltinHandler
393 * Execute Wine interrupt handler procedure.
395 static void DOSVM_CallBuiltinHandler( CONTEXT
*context
, BYTE intnum
)
398 * FIXME: Make all builtin interrupt calls go via this routine.
399 * FIXME: Check for PM->RM interrupt reflection.
400 * FIXME: Check for RM->PM interrupt reflection.
403 INTPROC proc
= DOSVM_GetBuiltinHandler( intnum
);
408 /**********************************************************************
409 * __wine_call_int_handler (KERNEL.@)
411 void __wine_call_int_handler( CONTEXT
*context
, BYTE intnum
)
413 DOSMEM_InitDosMemory();
414 DOSVM_CallBuiltinHandler( context
, intnum
);
418 /**********************************************************************
421 * Handler for int 11h (get equipment list).
424 * Borrowed from Ralph Brown's interrupt lists:
426 * bits 15-14: number of parallel devices
427 * bit 13: [Conv] Internal modem
429 * bits 11- 9: number of serial devices
431 * bits 7- 6: number of diskette drives minus one
432 * bits 5- 4: Initial video mode:
434 * 01b = 40 x 25 color
435 * 10b = 80 x 25 color
438 * bit 2: [PS] =1 if pointing device
440 * bit 1: =1 if math co-processor
441 * bit 0: =1 if diskette available for boot
444 * Currently the only of these bits correctly set are:
446 * bits 15-14 } Added by William Owen Smith,
447 * bits 11-9 } wos@dcs.warwick.ac.uk
449 * bit 2 (always set) ( bit 2 = 4 )
450 * bit 1 } Robert 'Admiral' Coeyman
451 * All *nix systems either have a math processor or
454 static void WINAPI
DOSVM_Int11Handler( CONTEXT
*context
)
457 int parallelports
= 0;
461 if (GetDriveTypeA("A:\\") == DRIVE_REMOVABLE
) diskdrives
++;
462 if (GetDriveTypeA("B:\\") == DRIVE_REMOVABLE
) diskdrives
++;
463 if (diskdrives
) diskdrives
--;
465 for (x
=0; x
< 9; x
++)
470 /* serial port name */
471 sprintf( file
, "\\\\.\\COM%d", x
+1 );
472 handle
= CreateFileA( file
, 0, FILE_SHARE_READ
|FILE_SHARE_WRITE
, NULL
, OPEN_EXISTING
, 0, 0 );
473 if (handle
!= INVALID_HANDLE_VALUE
)
475 CloseHandle( handle
);
479 sprintf( file
, "\\\\.\\LPT%d", x
+1 );
480 handle
= CreateFileA( file
, 0, FILE_SHARE_READ
|FILE_SHARE_WRITE
, NULL
, OPEN_EXISTING
, 0, 0 );
481 if (handle
!= INVALID_HANDLE_VALUE
)
483 CloseHandle( handle
);
488 if (serialports
> 7) /* 3 bits -- maximum value = 7 */
491 if (parallelports
> 3) /* 2 bits -- maximum value = 3 */
495 (diskdrives
<< 6) | (serialports
<< 9) | (parallelports
<< 14) | 0x06 );
499 /**********************************************************************
502 * Handler for int 12h (get memory size).
504 static void WINAPI
DOSVM_Int12Handler( CONTEXT
*context
)
506 SET_AX( context
, 640 );
510 /**********************************************************************
513 * Handler for int 17h (printer - output character).
515 static void WINAPI
DOSVM_Int17Handler( CONTEXT
*context
)
517 switch( AH_reg(context
) )
519 case 0x00:/* Send character*/
520 FIXME("Send character not supported yet\n");
521 SET_AH( context
, 0x00 );/*Timeout*/
523 case 0x01: /* PRINTER - INITIALIZE */
524 FIXME("Initialize Printer - Not Supported\n");
525 SET_AH( context
, 0x30 ); /* selected | out of paper */
527 case 0x02: /* PRINTER - GET STATUS */
528 FIXME("Get Printer Status - Not Supported\n");
531 SET_AH( context
, 0 ); /* time out */
532 INT_BARF( context
, 0x17 );
537 /**********************************************************************
540 * Handler for int 19h (Reboot).
542 static void WINAPI
DOSVM_Int19Handler( CONTEXT
*context
)
544 TRACE( "Attempted Reboot\n" );
549 /**********************************************************************
552 * Handler for int 1ah.
554 static void WINAPI
DOSVM_Int1aHandler( CONTEXT
*context
)
556 switch(AH_reg(context
))
558 case 0x00: /* GET SYSTEM TIME */
560 BIOSDATA
*data
= DOSVM_BiosData();
561 SET_CX( context
, HIWORD(data
->Ticks
) );
562 SET_DX( context
, LOWORD(data
->Ticks
) );
563 SET_AL( context
, 0 ); /* FIXME: midnight flag is unsupported */
564 TRACE( "GET SYSTEM TIME - ticks=%d\n", data
->Ticks
);
568 case 0x01: /* SET SYSTEM TIME */
569 FIXME( "SET SYSTEM TIME - not allowed\n" );
572 case 0x02: /* GET REAL-TIME CLOCK TIME */
573 TRACE( "GET REAL-TIME CLOCK TIME\n" );
576 GetLocalTime( &systime
);
577 SET_CH( context
, BIN_TO_BCD(systime
.wHour
) );
578 SET_CL( context
, BIN_TO_BCD(systime
.wMinute
) );
579 SET_DH( context
, BIN_TO_BCD(systime
.wSecond
) );
580 SET_DL( context
, 0 ); /* FIXME: assume no daylight saving */
581 RESET_CFLAG(context
);
585 case 0x03: /* SET REAL-TIME CLOCK TIME */
586 FIXME( "SET REAL-TIME CLOCK TIME - not allowed\n" );
589 case 0x04: /* GET REAL-TIME CLOCK DATE */
590 TRACE( "GET REAL-TIME CLOCK DATE\n" );
593 GetLocalTime( &systime
);
594 SET_CH( context
, BIN_TO_BCD(systime
.wYear
/ 100) );
595 SET_CL( context
, BIN_TO_BCD(systime
.wYear
% 100) );
596 SET_DH( context
, BIN_TO_BCD(systime
.wMonth
) );
597 SET_DL( context
, BIN_TO_BCD(systime
.wDay
) );
598 RESET_CFLAG(context
);
602 case 0x05: /* SET REAL-TIME CLOCK DATE */
603 FIXME( "SET REAL-TIME CLOCK DATE - not allowed\n" );
606 case 0x06: /* SET ALARM */
607 FIXME( "SET ALARM - unimplemented\n" );
610 case 0x07: /* CANCEL ALARM */
611 FIXME( "CANCEL ALARM - unimplemented\n" );
614 case 0x08: /* SET RTC ACTIVATED POWER ON MODE */
615 case 0x09: /* READ RTC ALARM TIME AND STATUS */
616 case 0x0a: /* READ SYSTEM-TIMER DAY COUNTER */
617 case 0x0b: /* SET SYSTEM-TIMER DAY COUNTER */
618 case 0x0c: /* SET RTC DATE/TIME ACTIVATED POWER-ON MODE */
619 case 0x0d: /* RESET RTC DATE/TIME ACTIVATED POWER-ON MODE */
620 case 0x0e: /* GET RTC DATE/TIME ALARM AND STATUS */
621 case 0x0f: /* INITIALIZE REAL-TIME CLOCK */
622 INT_BARF( context
, 0x1a );
626 if (CX_reg(context
) == 0x4d52 &&
627 DX_reg(context
) == 0x4349 &&
628 AL_reg(context
) == 0x01)
631 * Microsoft Real-Time Compression Interface (MRCI).
632 * Ignoring this call indicates MRCI is not supported.
634 TRACE( "Microsoft Real-Time Compression Interface - not supported\n" );
638 INT_BARF(context
, 0x1a);
643 INT_BARF( context
, 0x1a );
648 /**********************************************************************
651 * Handler for int 20h.
653 static void WINAPI
DOSVM_Int20Handler( CONTEXT
*context
)
659 /**********************************************************************
662 * Handler for int 2ah (network).
664 static void WINAPI
DOSVM_Int2aHandler( CONTEXT
*context
)
666 switch(AH_reg(context
))
668 case 0x00: /* NETWORK INSTALLATION CHECK */
672 INT_BARF( context
, 0x2a );
677 /***********************************************************************
680 static void WINAPI
DOSVM_Int41Handler( CONTEXT
*context
)
682 switch ( AX_reg(context
) )
695 /* Notifies the debugger of a lot of stuff. We simply ignore it
696 for now, but some of the info might actually be useful ... */
700 INT_BARF( context
, 0x41 );
706 /***********************************************************************
710 static void WINAPI
DOSVM_Int4bHandler( CONTEXT
*context
)
712 switch(AH_reg(context
))
714 case 0x81: /* Virtual DMA Spec (IBM SCSI interface) */
715 if(AL_reg(context
) != 0x02) /* if not install check */
718 SET_AL( context
, 0x0f ); /* function is not implemented */
722 INT_BARF(context
, 0x4b);
727 /***********************************************************************
730 * Called from NetBIOSCall16.
732 static void WINAPI
DOSVM_Int5cHandler( CONTEXT
*context
)
735 ptr
= MapSL( MAKESEGPTR(context
->SegEs
,BX_reg(context
)) );
736 FIXME("(%p): command code %02x (ignored)\n",context
, *ptr
);
737 *(ptr
+0x01) = 0xFB; /* NetBIOS emulator not found */
738 SET_AL( context
, 0xFB );