Modify winedos interrupt handlers so that they work with PM
[wine] / dlls / winedos / int21.c
1 /*
2  * DOS interrupt 21h handler
3  *
4  * Copyright 1993, 1994 Erik Bos
5  * Copyright 1996 Alexandre Julliard
6  * Copyright 1997 Andreas Mohr
7  * Copyright 1998 Uwe Bonnes
8  * Copyright 1998, 1999 Ove Kaaven
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23  */
24
25 #include "config.h"
26
27 #include "windef.h"
28 #include "winbase.h"
29 #include "winternl.h"
30 #include "wine/winbase16.h"
31 #include "dosexe.h"
32 #include "miscemu.h"
33 #include "msdos.h"
34 #include "file.h"
35 #include "wine/unicode.h"
36 #include "wine/debug.h"
37
38 WINE_DEFAULT_DEBUG_CHANNEL(int21);
39
40 void WINAPI DOSVM_Int21Handler_Ioctl( CONTEXT86 *context )
41 {
42   static const WCHAR emmxxxx0W[] = {'E','M','M','X','X','X','X','0',0};
43   const DOS_DEVICE *dev = DOSFS_GetDeviceByHandle(
44       DosFileHandleToWin32Handle(BX_reg(context)) );
45
46   if (dev && !strcmpiW( dev->name, emmxxxx0W )) {
47     EMS_Ioctl_Handler(context);
48     return;
49   }
50
51   switch (AL_reg(context))
52   {
53   case 0x0b: /* SET SHARING RETRY COUNT */
54       TRACE("IOCTL - SET SHARING RETRY COUNT pause %d retries %d\n",
55            CX_reg(context), DX_reg(context));
56       if (!CX_reg(context))
57       {
58          SET_AX( context, 1 );
59          SET_CFLAG(context);
60          break;
61       }
62       DOSMEM_LOL()->sharing_retry_delay = CX_reg(context);
63       if (!DX_reg(context))
64          DOSMEM_LOL()->sharing_retry_count = DX_reg(context);
65       RESET_CFLAG(context);
66       break;
67   default:
68       DOS3Call( context );
69   }
70 }
71
72 /***********************************************************************
73  *           DOSVM_Int21Handler
74  *
75  * int 21h handler. Most calls are passed directly to DOS3Call.
76  */
77 void WINAPI DOSVM_Int21Handler( CONTEXT86 *context )
78 {
79     BYTE ascii;
80
81     if (DOSVM_IsWin16()) {
82         DOS3Call( context );
83         return;
84     }
85
86     RESET_CFLAG(context);  /* Not sure if this is a good idea */
87
88     if(AH_reg(context) == 0x0c) /* FLUSH BUFFER AND READ STANDARD INPUT */
89     {
90         BYTE al = AL_reg(context); /* Input function to execute after flush. */
91
92         /* FIXME: buffers are not flushed */
93
94         /*
95          * If AL is not one of 0x01, 0x06, 0x07, 0x08, or 0x0a,
96          * the buffer is flushed but no input is attempted.
97          */
98         if(al != 0x01 && al != 0x06 && al != 0x07 && al != 0x08 && al != 0x0a)
99             return;
100
101         SET_AH( context, al );
102     }
103
104     switch(AH_reg(context))
105     {
106     case 0x00: /* TERMINATE PROGRAM */
107         TRACE("TERMINATE PROGRAM\n");
108         MZ_Exit( context, FALSE, 0 );
109         break;
110
111     case 0x01: /* READ CHARACTER FROM STANDARD INPUT, WITH ECHO */
112         TRACE("DIRECT CHARACTER INPUT WITH ECHO\n");
113         DOSVM_Int16ReadChar(&ascii, NULL, FALSE);
114         SET_AL( context, ascii );
115         DOSVM_PutChar(AL_reg(context));
116         break;
117
118     case 0x02: /* WRITE CHARACTER TO STANDARD OUTPUT */
119         TRACE("Write Character to Standard Output\n");
120         DOSVM_PutChar(DL_reg(context));
121         break;
122
123     case 0x06: /* DIRECT CONSOLE IN/OUTPUT */
124         /* FIXME: Use DOSDEV_Peek/Read/Write(DOSDEV_Console(),...) !! */
125         if (DL_reg(context) == 0xff) {
126             static char scan = 0;
127             TRACE("Direct Console Input\n");
128             if (scan) {
129                 /* return pending scancode */
130                 SET_AL( context, scan );
131                 RESET_ZFLAG(context);
132                 scan = 0;
133             } else {
134                 if (DOSVM_Int16ReadChar(&ascii,&scan,TRUE)) {
135                     DOSVM_Int16ReadChar(&ascii,&scan,FALSE);
136                     /* return ASCII code */
137                     SET_AL( context, ascii );
138                     RESET_ZFLAG(context);
139                     /* return scan code on next call only if ascii==0 */
140                     if (ascii) scan = 0;
141                 } else {
142                     /* nothing pending, clear everything */
143                     SET_AL( context, 0 );
144                     SET_ZFLAG(context);
145                     scan = 0; /* just in case */
146                 }
147             }
148         } else {
149             TRACE("Direct Console Output\n");
150             DOSVM_PutChar(DL_reg(context));
151         }
152         break;
153
154     case 0x07: /* DIRECT CHARACTER INPUT WITHOUT ECHO */
155         /* FIXME: Use DOSDEV_Peek/Read(DOSDEV_Console(),...) !! */
156         TRACE("DIRECT CHARACTER INPUT WITHOUT ECHO\n");
157         DOSVM_Int16ReadChar(&ascii, NULL, FALSE);
158         SET_AL( context, ascii );
159         break;
160
161     case 0x08: /* CHARACTER INPUT WITHOUT ECHO */
162         /* FIXME: Use DOSDEV_Peek/Read(DOSDEV_Console(),...) !! */
163         TRACE("CHARACTER INPUT WITHOUT ECHO\n");
164         DOSVM_Int16ReadChar(&ascii, NULL, FALSE);
165         SET_AL( context, ascii );
166         break;
167
168     case 0x0b: /* GET STDIN STATUS */
169         {
170             BIOSDATA *data = BIOS_DATA;
171             if(data->FirstKbdCharPtr == data->NextKbdCharPtr)
172                 SET_AL( context, 0 );
173             else
174                 SET_AL( context, 0xff );
175         }
176         break;
177
178     case 0x25: /* SET INTERRUPT VECTOR */
179         DOSVM_SetRMHandler( AL_reg(context),
180                             (FARPROC16)MAKESEGPTR( context->SegDs, DX_reg(context)));
181         break;
182
183     case 0x35: /* GET INTERRUPT VECTOR */
184         TRACE("GET INTERRUPT VECTOR 0x%02x\n",AL_reg(context));
185         {
186             FARPROC16 addr = DOSVM_GetRMHandler( AL_reg(context) );
187             context->SegEs = SELECTOROF(addr);
188             SET_BX( context, OFFSETOF(addr) );
189         }
190         break;
191
192     case 0x40: /* WRITE TO FILE OR DEVICE */
193         /* Writes to stdout are handled here. */
194         if (BX_reg(context) == 1) {
195           BYTE *ptr = CTX_SEG_OFF_TO_LIN(context,
196                                          context->SegDs,
197                                          context->Edx);
198           int i;
199
200           for(i=0; i<CX_reg(context); i++)
201             DOSVM_PutChar(ptr[i]);
202         } else
203           DOS3Call( context );
204         break;
205
206     case 0x44: /* IOCTL */
207         DOSVM_Int21Handler_Ioctl( context );
208         break;
209
210     case 0x4b: /* "EXEC" - LOAD AND/OR EXECUTE PROGRAM */
211         TRACE("EXEC %s\n", (LPCSTR)CTX_SEG_OFF_TO_LIN(context, context->SegDs, context->Edx ));
212         if (!MZ_Exec( context, CTX_SEG_OFF_TO_LIN(context, context->SegDs, context->Edx),
213                       AL_reg(context), CTX_SEG_OFF_TO_LIN(context, context->SegEs, context->Ebx) ))
214         {
215             SET_AX( context, GetLastError() );
216             SET_CFLAG(context);
217         }
218         break;
219
220     case 0x4c: /* "EXIT" - TERMINATE WITH RETURN CODE */
221         TRACE("EXIT with return code %d\n",AL_reg(context));
222         MZ_Exit( context, FALSE, AL_reg(context) );
223         break;
224
225     case 0x4d: /* GET RETURN CODE */
226         TRACE("GET RETURN CODE (ERRORLEVEL)\n");
227         SET_AX( context, DOSVM_retval );
228         DOSVM_retval = 0;
229         break;
230
231     case 0x50: /* SET CURRENT PROCESS ID (SET PSP ADDRESS) */
232         TRACE("SET CURRENT PROCESS ID (SET PSP ADDRESS)\n");
233         DOSVM_psp = BX_reg(context);
234         break;
235
236     case 0x51: /* GET PSP ADDRESS */
237         TRACE("GET CURRENT PROCESS ID (GET PSP ADDRESS)\n");
238         /* FIXME: should we return the original DOS PSP upon */
239         /*        Windows startup ? */
240         SET_BX( context, DOSVM_psp );
241         break;
242
243     case 0x52: /* "SYSVARS" - GET LIST OF LISTS */
244         TRACE("SYSVARS - GET LIST OF LISTS\n");
245         {
246             context->SegEs = HIWORD(DOS_LOLSeg);
247             SET_BX( context, FIELD_OFFSET(DOS_LISTOFLISTS, ptr_first_DPB) );
248         }
249         break;
250
251     case 0x62: /* GET PSP ADDRESS */
252         TRACE("GET CURRENT PSP ADDRESS\n");
253         /* FIXME: should we return the original DOS PSP upon */
254         /*        Windows startup ? */
255         SET_BX( context, DOSVM_psp );
256         break;
257
258     default:
259         DOS3Call( context );
260     }
261 }