Removed last users of msdos/interrupts.c.
[wine] / msdos / 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 #include "wine/port.h"
27
28 #include <time.h>
29 #include <fcntl.h>
30 #include <errno.h>
31 #include <stdlib.h>
32 #include <stdio.h>
33 #ifdef HAVE_SYS_FILE_H
34 # include <sys/file.h>
35 #endif
36 #include <string.h>
37 #ifdef HAVE_SYS_TIME_H
38 # include <sys/time.h>
39 #endif
40 #include <sys/types.h>
41 #ifdef HAVE_UNISTD_H
42 # include <unistd.h>
43 #endif
44 #ifdef HAVE_UTIME_H
45 # include <utime.h>
46 #endif
47 #include <ctype.h>
48 #include "windef.h"
49 #include "winbase.h"
50 #include "winternl.h"
51 #include "wingdi.h"
52 #include "winuser.h" /* SW_NORMAL */
53 #include "wine/winbase16.h"
54 #include "winerror.h"
55 #include "drive.h"
56 #include "file.h"
57 #include "callback.h"
58 #include "msdos.h"
59 #include "miscemu.h"
60 #include "task.h"
61 #include "wine/unicode.h"
62 #include "wine/debug.h"
63
64 WINE_DEFAULT_DEBUG_CHANNEL(int21);
65 #if defined(__svr4__) || defined(_SCO_DS)
66 /* SVR4 DOESNT do locking the same way must implement properly */
67 #define LOCK_EX 0
68 #define LOCK_SH  1
69 #define LOCK_NB  8
70 #endif
71
72
73 #define DOS_GET_DRIVE(reg) ((reg) ? (reg) - 1 : DRIVE_GetCurrentDrive())
74
75 /* Define the drive parameter block, as used by int21/1F
76  * and int21/32.  This table can be accessed through the
77  * global 'dpb' pointer, which points into the local dos
78  * heap.
79  */
80 struct DPB
81 {
82     BYTE drive_num;         /* 0=A, etc. */
83     BYTE unit_num;          /* Drive's unit number (?) */
84     WORD sector_size;       /* Sector size in bytes */
85     BYTE high_sector;       /* Highest sector in a cluster */
86     BYTE shift;             /* Shift count (?) */
87     WORD reserved;          /* Number of reserved sectors at start */
88     BYTE num_FAT;           /* Number of FATs */
89     WORD dir_entries;       /* Number of root dir entries */
90     WORD first_data;        /* First data sector */
91     WORD high_cluster;      /* Highest cluster number */
92     WORD sectors_in_FAT;    /* Number of sectors per FAT */
93     WORD start_dir;         /* Starting sector of first dir */
94     DWORD driver_head;      /* Address of device driver header (?) */
95     BYTE media_ID;          /* Media ID */
96     BYTE access_flag;       /* Prev. accessed flag (0=yes,0xFF=no) */
97     DWORD next;             /* Pointer to next DPB in list */
98     WORD free_search;       /* Free cluster search start */
99     WORD free_clusters;     /* Number of free clusters (0xFFFF=unknown) */
100 };
101
102 struct EDPB                     /* FAT32 extended Drive Parameter Block */
103 {                               /* from Ralf Brown's Interrupt List */
104         struct DPB dpb;         /* first 24 bytes = original DPB */
105
106         BYTE edpb_flags;        /* undocumented/unknown flags */
107         DWORD next_edpb;        /* pointer to next EDPB */
108         WORD free_cluster;      /* cluster to start search for free space on write, typically
109                                    the last cluster allocated */
110         WORD clusters_free;     /* number of free clusters on drive or FFFF = unknown */
111         WORD clusters_free_hi;  /* hiword of clusters_free */
112         WORD mirroring_flags;   /* mirroring flags: bit 7 set = do not mirror active FAT */
113                                 /* bits 0-3 = 0-based number of the active FAT */
114         WORD info_sector;       /* sector number of file system info sector, or FFFF for none */
115         WORD spare_boot_sector; /* sector number of backup boot sector, or FFFF for none */
116         DWORD first_cluster;    /* sector number of the first cluster */
117         DWORD max_cluster;      /* sector number of the last cluster */
118         DWORD fat_clusters;     /* number of clusters occupied by FAT */
119         DWORD root_cluster;     /* cluster number of start of root directory */
120         DWORD free_cluster2;    /* same as free_cluster: cluster at which to start
121                                    search for free space when writing */
122
123 };
124
125 WORD CodePage = 437;
126 DWORD dpbsegptr;
127
128 struct DosHeap {
129         BYTE InDosFlag;
130         BYTE mediaID;
131         BYTE biosdate[8];
132         struct DPB dpb;
133         BYTE DummyDBCSLeadTable[6];
134 };
135 static struct DosHeap *heap;
136 static WORD DosHeapHandle;
137
138 extern char TempDirectory[];
139
140 static void INT21_ReadConfigSys(void)
141 {
142     static int done;
143     if (!done) DOSCONF_ReadConfig();
144     done = 1;
145 }
146
147 static BOOL INT21_CreateHeap(void)
148 {
149     if (!(DosHeapHandle = GlobalAlloc16(GMEM_FIXED,sizeof(struct DosHeap))))
150     {
151         WARN("Out of memory\n");
152         return FALSE;
153     }
154     heap = (struct DosHeap *) GlobalLock16(DosHeapHandle);
155     dpbsegptr = MAKESEGPTR(DosHeapHandle,(int)&heap->dpb-(int)heap);
156     heap->InDosFlag = 0;
157     strcpy(heap->biosdate, "01/01/80");
158     memset(heap->DummyDBCSLeadTable, 0, 6);
159     return TRUE;
160 }
161
162 static BYTE *GetCurrentDTA( CONTEXT86 *context )
163 {
164     TDB *pTask = TASK_GetCurrent();
165
166     /* FIXME: This assumes DTA was set correctly! */
167     return (BYTE *)CTX_SEG_OFF_TO_LIN( context, SELECTOROF(pTask->dta),
168                                                 (DWORD)OFFSETOF(pTask->dta) );
169 }
170
171
172 void CreateBPB(int drive, BYTE *data, BOOL16 limited)
173 /* limited == TRUE is used with INT 0x21/0x440d */
174 {
175         if (drive > 1) {
176                 setword(data, 512);
177                 data[2] = 2;
178                 setword(&data[3], 0);
179                 data[5] = 2;
180                 setword(&data[6], 240);
181                 setword(&data[8], 64000);
182                 data[0x0a] = 0xf8;
183                 setword(&data[0x0b], 40);
184                 setword(&data[0x0d], 56);
185                 setword(&data[0x0f], 2);
186                 setword(&data[0x11], 0);
187                 if (!limited) {
188                     setword(&data[0x1f], 800);
189                     data[0x21] = 5;
190                     setword(&data[0x22], 1);
191                 }
192         } else { /* 1.44mb */
193                 setword(data, 512);
194                 data[2] = 2;
195                 setword(&data[3], 0);
196                 data[5] = 2;
197                 setword(&data[6], 240);
198                 setword(&data[8], 2880);
199                 data[0x0a] = 0xf8;
200                 setword(&data[0x0b], 6);
201                 setword(&data[0x0d], 18);
202                 setword(&data[0x0f], 2);
203                 setword(&data[0x11], 0);
204                 if (!limited) {
205                     setword(&data[0x1f], 80);
206                     data[0x21] = 7;
207                     setword(&data[0x22], 2);
208                 }
209         }
210 }
211
212 static int INT21_GetFreeDiskSpace( CONTEXT86 *context )
213 {
214     DWORD cluster_sectors, sector_bytes, free_clusters, total_clusters;
215     char root[] = "A:\\";
216
217     *root += DOS_GET_DRIVE( DL_reg(context) );
218     if (!GetDiskFreeSpaceA( root, &cluster_sectors, &sector_bytes,
219                               &free_clusters, &total_clusters )) return 0;
220     SET_AX( context, cluster_sectors );
221     SET_BX( context, free_clusters );
222     SET_CX( context, sector_bytes );
223     SET_DX( context, total_clusters );
224     return 1;
225 }
226
227 static int INT21_GetDriveAllocInfo( CONTEXT86 *context )
228 {
229     if (!INT21_GetFreeDiskSpace( context )) return 0;
230     if (!heap && !INT21_CreateHeap()) return 0;
231     heap->mediaID = 0xf0;
232     context->SegDs = DosHeapHandle;
233     SET_BX( context, (int)&heap->mediaID - (int)heap );
234     return 1;
235 }
236
237 static int FillInDrivePB( int drive )
238 {
239         if(!DRIVE_IsValid(drive))
240         {
241             SetLastError( ERROR_INVALID_DRIVE );
242                         return 0;
243         }
244         else if (heap || INT21_CreateHeap())
245         {
246                 /* FIXME: I have no idea what a lot of this information should
247                  * say or whether it even really matters since we're not allowing
248                  * direct block access.  However, some programs seem to depend on
249                  * getting at least _something_ back from here.  The 'next' pointer
250                  * does worry me, though.  Should we have a complete table of
251                  * separate DPBs per drive?  Probably, but I'm lazy. :-)  -CH
252                  */
253                 heap->dpb.drive_num = heap->dpb.unit_num = drive; /*The same?*/
254                 heap->dpb.sector_size = 512;
255                 heap->dpb.high_sector = 1;
256                 heap->dpb.shift = drive < 2 ? 0 : 6; /*6 for HD, 0 for floppy*/
257                 heap->dpb.reserved = 0;
258                 heap->dpb.num_FAT = 1;
259                 heap->dpb.dir_entries = 2;
260                 heap->dpb.first_data = 2;
261                 heap->dpb.high_cluster = 64000;
262                 heap->dpb.sectors_in_FAT = 1;
263                 heap->dpb.start_dir = 1;
264                 heap->dpb.driver_head = 0;
265                 heap->dpb.media_ID = (drive > 1) ? 0xF8 : 0xF0;
266                 heap->dpb.access_flag = 0;
267                 heap->dpb.next = 0;
268                 heap->dpb.free_search = 0;
269                 heap->dpb.free_clusters = 0xFFFF;    /* unknown */
270                                 return 1;
271                 }
272
273                 return 0;
274 }
275
276 static void GetDrivePB( CONTEXT86 *context, int drive )
277 {
278         if (FillInDrivePB( drive ))
279         {
280                 SET_AL( context, 0x00 );
281                 context->SegDs = SELECTOROF(dpbsegptr);
282                 SET_BX( context, OFFSETOF(dpbsegptr) );
283         }
284         else
285         {
286         SET_AX( context, 0x00ff );
287         }
288 }
289
290
291 static void ioctlGetDeviceInfo( CONTEXT86 *context )
292 {
293     int curr_drive;
294     const DOS_DEVICE *dev;
295
296     TRACE("(%d)\n", BX_reg(context));
297
298     RESET_CFLAG(context);
299
300     /* DOS device ? */
301     if ((dev = DOSFS_GetDeviceByHandle( DosFileHandleToWin32Handle(BX_reg(context)) )))
302     {
303         SET_DX( context, dev->flags );
304         return;
305     }
306
307     /* it seems to be a file */
308     curr_drive = DRIVE_GetCurrentDrive();
309     SET_DX( context, 0x0140 + curr_drive + ((curr_drive > 1) ? 0x0800 : 0) );
310     /* no floppy */
311     /* bits 0-5 are current drive
312      * bit 6 - file has NOT been written..FIXME: correct?
313      * bit 8 - generate int24 if no diskspace on write/ read past end of file
314      * bit 11 - media not removable
315      * bit 14 - don't set file date/time on closing
316      * bit 15 - file is remote
317      */
318 }
319
320 static BOOL ioctlGenericBlkDevReq( CONTEXT86 *context )
321 {
322         BYTE *dataptr = CTX_SEG_OFF_TO_LIN(context, context->SegDs, context->Edx);
323         int drive = DOS_GET_DRIVE( BL_reg(context) );
324
325         if (!DRIVE_IsValid(drive))
326         {
327             SetLastError( ERROR_FILE_NOT_FOUND );
328             return TRUE;
329         }
330
331         if (CH_reg(context) != 0x08)
332         {
333             INT_BARF( context, 0x21 );
334             return FALSE;
335         }
336
337         switch (CL_reg(context))
338         {
339                 case 0x4a: /* lock logical volume */
340                         TRACE("lock logical volume (%d) level %d mode %d\n",drive,BH_reg(context),DX_reg(context));
341                         break;
342
343                 case 0x60: /* get device parameters */
344                            /* used by w4wgrp's winfile */
345                         memset(dataptr, 0, 0x20); /* DOS 6.22 uses 0x20 bytes */
346                         dataptr[0] = 0x04;
347                         dataptr[6] = 0; /* media type */
348                         if (drive > 1)
349                         {
350                                 dataptr[1] = 0x05; /* fixed disk */
351                                 setword(&dataptr[2], 0x01); /* non removable */
352                                 setword(&dataptr[4], 0x300); /* # of cylinders */
353                         }
354                         else
355                         {
356                                 dataptr[1] = 0x07; /* block dev, floppy */
357                                 setword(&dataptr[2], 0x02); /* removable */
358                                 setword(&dataptr[4], 80); /* # of cylinders */
359                         }
360                         CreateBPB(drive, &dataptr[7], TRUE);
361                         RESET_CFLAG(context);
362                         break;
363
364                 case 0x41: /* write logical device track */
365                 case 0x61: /* read logical device track */
366                         {
367                                 BYTE drive = BL_reg(context) ?
368                                                 BL_reg(context) : DRIVE_GetCurrentDrive();
369                                 WORD head   = *(WORD *)dataptr+1;
370                                 WORD cyl    = *(WORD *)dataptr+3;
371                                 WORD sect   = *(WORD *)dataptr+5;
372                                 WORD nrsect = *(WORD *)dataptr+7;
373                                 BYTE *data  =  (BYTE *)dataptr+9;
374                                 int (*raw_func)(BYTE, DWORD, DWORD, BYTE *, BOOL);
375
376                                 raw_func = (CL_reg(context) == 0x41) ?
377                                                                 DRIVE_RawWrite : DRIVE_RawRead;
378
379                                 if (raw_func(drive, head*cyl*sect, nrsect, data, FALSE))
380                                         RESET_CFLAG(context);
381                                 else
382                                 {
383                                         SET_AX( context, 0x1e ); /* read fault */
384                                         SET_CFLAG(context);
385                                 }
386                         }
387                         break;
388                 case 0x66:/*  get disk serial number */
389                         {
390                                 char    label[12],fsname[9],path[4];
391                                 DWORD   serial;
392
393                                 strcpy(path,"x:\\");path[0]=drive+'A';
394                                 GetVolumeInformationA(
395                                         path,label,12,&serial,NULL,NULL,fsname,9
396                                 );
397                                 *(WORD*)dataptr         = 0;
398                                 memcpy(dataptr+2,&serial,4);
399                                 memcpy(dataptr+6,label  ,11);
400                                 memcpy(dataptr+17,fsname,8);
401                         }
402                         break;
403
404                 case 0x6a:
405                         TRACE("logical volume %d unlocked.\n",drive);
406                         break;
407
408                 case 0x6f:
409                         memset(dataptr+1, '\0', dataptr[0]-1);
410                         dataptr[1] = dataptr[0];
411                         dataptr[2] = 0x07; /* protected mode driver; no eject; no notification */
412                         dataptr[3] = 0xFF; /* no physical drive */
413                         break;
414
415                 case 0x72:
416                         /* Trail on error implementation */
417                         SET_AX( context, GetDriveType16(BL_reg(context)) == DRIVE_UNKNOWN ? 0x0f : 0x01 );
418                         SET_CFLAG(context);     /* Seems to be set all the time */
419                         break;
420
421                 default:
422                         INT_BARF( context, 0x21 );
423         }
424         return FALSE;
425 }
426
427 static void INT21_ParseFileNameIntoFCB( CONTEXT86 *context )
428 {
429     char *filename =
430         CTX_SEG_OFF_TO_LIN(context, context->SegDs, context->Esi );
431     char *fcb =
432         CTX_SEG_OFF_TO_LIN(context, context->SegEs, context->Edi );
433     char *s;
434     WCHAR *buffer;
435     WCHAR fcbW[12];
436     INT buffer_len, len;
437
438     SET_AL( context, 0xff ); /* failed */
439
440     TRACE("filename: '%s'\n", filename);
441
442     s = filename;
443     len = 0;
444     while (*s)
445     {
446         if ((*s != ' ') && (*s != '\r') && (*s != '\n'))
447         {
448             s++;
449             len++;
450         }
451         else
452             break;
453     }
454
455     buffer_len = MultiByteToWideChar(CP_OEMCP, 0, filename, len, NULL, 0);
456     buffer = HeapAlloc( GetProcessHeap(), 0, (buffer_len + 1) * sizeof(WCHAR));
457     len = MultiByteToWideChar(CP_OEMCP, 0, filename, len, buffer, buffer_len);
458     buffer[len] = 0;
459     DOSFS_ToDosFCBFormat(buffer, fcbW);
460     HeapFree(GetProcessHeap(), 0, buffer);
461     WideCharToMultiByte(CP_OEMCP, 0, fcbW, 12, fcb + 1, 12, NULL, NULL);
462     *fcb = 0;
463     TRACE("FCB: '%s'\n", fcb + 1);
464
465     SET_AL( context, ((strchr(filename, '*')) || (strchr(filename, '$'))) != 0 );
466
467     /* point DS:SI to first unparsed character */
468     SET_SI( context, context->Esi + (int)s - (int)filename );
469 }
470
471 static void INT21_GetSystemDate( CONTEXT86 *context )
472 {
473     SYSTEMTIME systime;
474     GetLocalTime( &systime );
475     SET_CX( context, systime.wYear );
476     SET_DX( context, (systime.wMonth << 8) | systime.wDay );
477     SET_AX( context, systime.wDayOfWeek );
478 }
479
480 static void INT21_GetSystemTime( CONTEXT86 *context )
481 {
482     SYSTEMTIME systime;
483     GetLocalTime( &systime );
484     SET_CX( context, (systime.wHour << 8) | systime.wMinute );
485     SET_DX( context, (systime.wSecond << 8) | (systime.wMilliseconds / 10) );
486 }
487
488 /* Many calls translate a drive argument like this:
489    drive number (00h = default, 01h = A:, etc)
490    */
491 static char drivestring[]="default";
492
493 char *INT21_DriveName(int drive)
494 {
495
496     if(drive >0)
497       {
498         drivestring[0]= (unsigned char)drive + '@';
499         drivestring[1]=':';
500         drivestring[2]=0;
501       }
502     return drivestring;
503 }
504 static BOOL INT21_CreateFile( CONTEXT86 *context )
505 {
506     SET_AX( context, _lcreat16( CTX_SEG_OFF_TO_LIN(context, context->SegDs,
507                                                    context->Edx ), CX_reg(context) ) );
508     return (AX_reg(context) == (WORD)HFILE_ERROR16);
509 }
510
511 static HFILE16 _lcreat16_uniq( LPCSTR path, INT attr )
512 {
513     /* Mask off all flags not explicitly allowed by the doc */
514     attr &= FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM;
515     return Win32HandleToDosFileHandle( CreateFileA( path, GENERIC_READ | GENERIC_WRITE,
516                                              FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
517                                              CREATE_NEW, attr, 0 ));
518 }
519
520 static void OpenExistingFile( CONTEXT86 *context )
521 {
522     SET_AX( context, _lopen16( CTX_SEG_OFF_TO_LIN(context, context->SegDs,context->Edx),
523                                AL_reg(context) ));
524     if (AX_reg(context) == (WORD)HFILE_ERROR16)
525     {
526         SET_AX( context, GetLastError() );
527         SET_CFLAG(context);
528     }
529 }
530
531 static BOOL INT21_ExtendedOpenCreateFile(CONTEXT86 *context )
532 {
533   BOOL bExtendedError = FALSE;
534   BYTE action = DL_reg(context);
535
536   /* Shuffle arguments to call OpenExistingFile */
537   SET_AL( context, BL_reg(context) );
538   SET_DX( context, SI_reg(context) );
539   /* BX,CX and DX should be preserved */
540   OpenExistingFile(context);
541
542   if ((context->EFlags & 0x0001) == 0) /* File exists */
543   {
544       UINT16    uReturnCX = 0;
545
546       /* Now decide what do do */
547
548       if ((action & 0x07) == 0)
549       {
550           _lclose16( AX_reg(context) );
551           SET_AX( context, 0x0050 );    /*File exists*/
552           SET_CFLAG(context);
553           WARN("extended open/create: failed because file exists \n");
554       }
555       else if ((action & 0x07) == 2)
556       {
557         /* Truncate it, but first check if opened for write */
558         if ((BL_reg(context) & 0x0007)== 0)
559         {
560             _lclose16( AX_reg(context) );
561             WARN("extended open/create: failed, trunc on ro file\n");
562             SET_AX( context, 0x000C );  /*Access code invalid*/
563             SET_CFLAG(context);
564         }
565         else
566         {
567                 TRACE("extended open/create: Closing before truncate\n");
568                 if (_lclose16( AX_reg(context) ))
569                 {
570                    WARN("extended open/create: close before trunc failed\n");
571                    SET_AX( context, 0x0019 );   /*Seek Error*/
572                    SET_CX( context, 0 );
573                    SET_CFLAG(context);
574                 }
575                 /* Shuffle arguments to call CreateFile */
576
577                 TRACE("extended open/create: Truncating\n");
578                 SET_AL( context, BL_reg(context) );
579                 /* CX is still the same */
580                 SET_DX( context, SI_reg(context) );
581                 bExtendedError = INT21_CreateFile(context);
582
583                 if (context->EFlags & 0x0001)   /*no file open, flags set */
584                 {
585                     WARN("extended open/create: trunc failed\n");
586                     return bExtendedError;
587                 }
588                 uReturnCX = 0x3;
589         }
590       }
591       else uReturnCX = 0x1;
592
593       SET_CX( context, uReturnCX );
594   }
595   else /* file does not exist */
596   {
597       RESET_CFLAG(context); /* was set by OpenExistingFile(context) */
598       if ((action & 0xF0)== 0)
599       {
600         SET_CX( context, 0 );
601         SET_CFLAG(context);
602         WARN("extended open/create: failed, file dosen't exist\n");
603       }
604       else
605       {
606         /* Shuffle arguments to call CreateFile */
607         TRACE("extended open/create: Creating\n");
608         SET_AL( context, BL_reg(context) );
609         /* CX should still be the same */
610         SET_DX( context, SI_reg(context) );
611         bExtendedError = INT21_CreateFile(context);
612         if (context->EFlags & 0x0001)  /*no file open, flags set */
613         {
614             WARN("extended open/create: create failed\n");
615             return bExtendedError;
616         }
617         SET_CX( context, 2 );
618       }
619   }
620
621   return bExtendedError;
622 }
623
624
625 static BOOL INT21_ChangeDir( CONTEXT86 *context )
626 {
627     int drive;
628     char *dirname = CTX_SEG_OFF_TO_LIN(context, context->SegDs,context->Edx);
629     WCHAR dirnameW[MAX_PATH];
630
631     TRACE("changedir %s\n", dirname);
632     if (dirname[0] && (dirname[1] == ':'))
633     {
634         drive = toupper(dirname[0]) - 'A';
635         dirname += 2;
636     }
637     else drive = DRIVE_GetCurrentDrive();
638     MultiByteToWideChar(CP_OEMCP, 0, dirname, -1, dirnameW, MAX_PATH);
639     return DRIVE_Chdir( drive, dirnameW );
640 }
641
642
643 static int INT21_FindFirst( CONTEXT86 *context )
644 {
645     char *p;
646     const char *path;
647     DOS_FULL_NAME full_name;
648     FINDFILE_DTA *dta = (FINDFILE_DTA *)GetCurrentDTA(context);
649     WCHAR pathW[MAX_PATH];
650     WCHAR maskW[12];
651
652     path = (const char *)CTX_SEG_OFF_TO_LIN(context, context->SegDs, context->Edx);
653     MultiByteToWideChar(CP_OEMCP, 0, path, -1, pathW, MAX_PATH);
654
655     dta->unixPath = NULL;
656     if (!DOSFS_GetFullName( pathW, FALSE, &full_name ))
657     {
658         SET_AX( context, GetLastError() );
659         SET_CFLAG(context);
660         return 0;
661     }
662     dta->unixPath = HeapAlloc( GetProcessHeap(), 0, strlen(full_name.long_name)+1 );
663     strcpy( dta->unixPath, full_name.long_name );
664     p = strrchr( dta->unixPath, '/' );
665     *p = '\0';
666
667     MultiByteToWideChar(CP_OEMCP, 0, p + 1, -1, pathW, MAX_PATH);
668
669     /* Note: terminating NULL in dta->mask overwrites dta->search_attr
670      *       (doesn't matter as it is set below anyway)
671      */
672     if (!DOSFS_ToDosFCBFormat( pathW, maskW ))
673     {
674         HeapFree( GetProcessHeap(), 0, dta->unixPath );
675         dta->unixPath = NULL;
676         SetLastError( ERROR_FILE_NOT_FOUND );
677         SET_AX( context, ERROR_FILE_NOT_FOUND );
678         SET_CFLAG(context);
679         return 0;
680     }
681     WideCharToMultiByte(CP_OEMCP, 0, maskW, 12, dta->mask, sizeof(dta->mask), NULL, NULL);
682     dta->drive = (path[0] && (path[1] == ':')) ? toupper(path[0]) - 'A'
683                                                : DRIVE_GetCurrentDrive();
684     dta->count = 0;
685     dta->search_attr = CL_reg(context);
686     return 1;
687 }
688
689
690 static int INT21_FindNext( CONTEXT86 *context )
691 {
692     FINDFILE_DTA *dta = (FINDFILE_DTA *)GetCurrentDTA(context);
693     WIN32_FIND_DATAA entry;
694     int count;
695
696     if (!dta->unixPath) return 0;
697     if (!(count = DOSFS_FindNext( dta->unixPath, dta->mask, NULL, dta->drive,
698                                   dta->search_attr, dta->count, &entry )))
699     {
700         HeapFree( GetProcessHeap(), 0, dta->unixPath );
701         dta->unixPath = NULL;
702         return 0;
703     }
704     if ((int)dta->count + count > 0xffff)
705     {
706         WARN("Too many directory entries in %s\n", dta->unixPath );
707         HeapFree( GetProcessHeap(), 0, dta->unixPath );
708         dta->unixPath = NULL;
709         return 0;
710     }
711     dta->count += count;
712     dta->fileattr = entry.dwFileAttributes;
713     dta->filesize = entry.nFileSizeLow;
714     FileTimeToDosDateTime( &entry.ftLastWriteTime,
715                            &dta->filedate, &dta->filetime );
716     strcpy( dta->filename, entry.cAlternateFileName );
717     if (!memchr(dta->mask,'?',11)) {
718         /* wildcardless search, release resources in case no findnext will
719          * be issued, and as a workaround in case file creation messes up
720          * findnext, as sometimes happens with pkunzip */
721         HeapFree( GetProcessHeap(), 0, dta->unixPath );
722         dta->unixPath = NULL;
723     }
724     return 1;
725 }
726
727
728 static BOOL INT21_CreateTempFile( CONTEXT86 *context )
729 {
730     static int counter = 0;
731     char *name = CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx );
732     char *p = name + strlen(name);
733
734     /* despite what Ralf Brown says, some programs seem to call without
735      * ending backslash (DOS accepts that, so we accept it too) */
736     if ((p == name) || (p[-1] != '\\')) *p++ = '\\';
737
738     for (;;)
739     {
740         sprintf( p, "wine%04x.%03d", (int)getpid(), counter );
741         counter = (counter + 1) % 1000;
742
743         if ((SET_AX( context, _lcreat16_uniq( name, 0 ))) != (WORD)HFILE_ERROR16)
744         {
745             TRACE("created %s\n", name );
746             return TRUE;
747         }
748         if (GetLastError() != ERROR_FILE_EXISTS) return FALSE;
749     }
750 }
751
752
753 static BOOL INT21_GetCurrentDirectory( CONTEXT86 *context )
754 {
755     int drive = DOS_GET_DRIVE( DL_reg(context) );
756     char *ptr = (char *)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Esi );
757
758     if (!DRIVE_IsValid(drive))
759     {
760         SetLastError( ERROR_INVALID_DRIVE );
761         return FALSE;
762     }
763     WideCharToMultiByte(CP_OEMCP, 0, DRIVE_GetDosCwd(drive), -1, ptr, 64, NULL, NULL);
764     ptr[63] = 0; /* ensure 0 termination */
765     SET_AX( context, 0x0100 );                       /* success return code */
766     return TRUE;
767 }
768
769
770 static void INT21_GetDBCSLeadTable( CONTEXT86 *context )
771 {
772     if (heap || INT21_CreateHeap())
773     { /* return an empty table just as DOS 4.0+ does */
774         context->SegDs = DosHeapHandle;
775         SET_SI( context, (int)&heap->DummyDBCSLeadTable - (int)heap );
776     }
777     else
778     {
779         SET_AX( context, 0x1 ); /* error */
780         SET_CFLAG(context);
781     }
782 }
783
784
785 static int INT21_GetDiskSerialNumber( CONTEXT86 *context )
786 {
787     BYTE *dataptr = CTX_SEG_OFF_TO_LIN(context, context->SegDs, context->Edx);
788     int drive = DOS_GET_DRIVE( BL_reg(context) );
789
790     if (!DRIVE_IsValid(drive))
791     {
792         SetLastError( ERROR_INVALID_DRIVE );
793         return 0;
794     }
795
796     *(WORD *)dataptr = 0;
797     *(DWORD *)(dataptr + 2) = DRIVE_GetSerialNumber( drive );
798     memcpy( dataptr + 6, DRIVE_GetLabel( drive ), 11 );
799     strncpy(dataptr + 0x11, "FAT16   ", 8);
800     return 1;
801 }
802
803
804 static int INT21_SetDiskSerialNumber( CONTEXT86 *context )
805 {
806     BYTE *dataptr = CTX_SEG_OFF_TO_LIN(context, context->SegDs, context->Edx);
807     int drive = DOS_GET_DRIVE( BL_reg(context) );
808
809     if (!DRIVE_IsValid(drive))
810     {
811         SetLastError( ERROR_INVALID_DRIVE );
812         return 0;
813     }
814
815     DRIVE_SetSerialNumber( drive, *(DWORD *)(dataptr + 2) );
816     return 1;
817 }
818
819
820 /* microsoft's programmers should be shot for using CP/M style int21
821    calls in Windows for Workgroup's winfile.exe */
822
823 static int INT21_FindFirstFCB( CONTEXT86 *context )
824 {
825     BYTE *fcb = (BYTE *)CTX_SEG_OFF_TO_LIN(context, context->SegDs, context->Edx);
826     FINDFILE_FCB *pFCB;
827     LPCSTR root, cwd;
828     int drive;
829
830     if (*fcb == 0xff) pFCB = (FINDFILE_FCB *)(fcb + 7);
831     else pFCB = (FINDFILE_FCB *)fcb;
832     drive = DOS_GET_DRIVE( pFCB->drive );
833     if (!DRIVE_IsValid( drive )) return 0;
834     root = DRIVE_GetRoot( drive );
835     cwd  = DRIVE_GetUnixCwd( drive );
836     pFCB->unixPath = HeapAlloc( GetProcessHeap(), 0,
837                                 strlen(root)+strlen(cwd)+2 );
838     if (!pFCB->unixPath) return 0;
839     strcpy( pFCB->unixPath, root );
840     strcat( pFCB->unixPath, "/" );
841     strcat( pFCB->unixPath, cwd );
842     pFCB->count = 0;
843     return 1;
844 }
845
846
847 static int INT21_FindNextFCB( CONTEXT86 *context )
848 {
849     BYTE *fcb = (BYTE *)CTX_SEG_OFF_TO_LIN(context, context->SegDs, context->Edx);
850     FINDFILE_FCB *pFCB;
851     DOS_DIRENTRY_LAYOUT *pResult = (DOS_DIRENTRY_LAYOUT *)GetCurrentDTA(context);
852     WIN32_FIND_DATAA entry;
853     BYTE attr;
854     int count;
855
856     if (*fcb == 0xff) /* extended FCB ? */
857     {
858         attr = fcb[6];
859         pFCB = (FINDFILE_FCB *)(fcb + 7);
860     }
861     else
862     {
863         attr = 0;
864         pFCB = (FINDFILE_FCB *)fcb;
865     }
866
867     if (!pFCB->unixPath) return 0;
868     if (!(count = DOSFS_FindNext( pFCB->unixPath, pFCB->filename, NULL,
869                                   DOS_GET_DRIVE( pFCB->drive ), attr,
870                                   pFCB->count, &entry )))
871     {
872         HeapFree( GetProcessHeap(), 0, pFCB->unixPath );
873         pFCB->unixPath = NULL;
874         return 0;
875     }
876     pFCB->count += count;
877
878     if (*fcb == 0xff) { /* place extended FCB header before pResult if called with extended FCB */
879         *(BYTE *)pResult = 0xff;
880         (BYTE *)pResult +=6; /* leave reserved field behind */
881         *(BYTE *)pResult = entry.dwFileAttributes;
882         ((BYTE *)pResult)++;
883     }
884     *(BYTE *)pResult = DOS_GET_DRIVE( pFCB->drive ); /* DOS_DIRENTRY_LAYOUT after current drive number */
885     ((BYTE *)pResult)++;
886     pResult->fileattr = entry.dwFileAttributes;
887     pResult->cluster  = 0;  /* what else? */
888     pResult->filesize = entry.nFileSizeLow;
889     memset( pResult->reserved, 0, sizeof(pResult->reserved) );
890     FileTimeToDosDateTime( &entry.ftLastWriteTime,
891                            &pResult->filedate, &pResult->filetime );
892
893     /* Convert file name to FCB format */
894
895     memset( pResult->filename, ' ', sizeof(pResult->filename) );
896     if (!strcmp( entry.cAlternateFileName, "." )) pResult->filename[0] = '.';
897     else if (!strcmp( entry.cAlternateFileName, ".." ))
898         pResult->filename[0] = pResult->filename[1] = '.';
899     else
900     {
901         char *p = strrchr( entry.cAlternateFileName, '.' );
902         if (p && p[1] && (p != entry.cAlternateFileName))
903         {
904             memcpy( pResult->filename, entry.cAlternateFileName,
905                     min( (p - entry.cAlternateFileName), 8 ) );
906             memcpy( pResult->filename + 8, p + 1, min( strlen(p), 3 ) );
907         }
908         else
909             memcpy( pResult->filename, entry.cAlternateFileName,
910                     min( strlen(entry.cAlternateFileName), 8 ) );
911     }
912     return 1;
913 }
914
915
916 static void DeleteFileFCB( CONTEXT86 *context )
917 {
918     FIXME("(%p): stub\n", context);
919 }
920
921 static void RenameFileFCB( CONTEXT86 *context )
922 {
923     FIXME("(%p): stub\n", context);
924 }
925
926
927
928 static void fLock( CONTEXT86 * context )
929 {
930
931     switch ( AX_reg(context) & 0xff )
932     {
933         case 0x00: /* LOCK */
934           TRACE("lock handle %d offset %ld length %ld\n",
935                 BX_reg(context),
936                 MAKELONG(DX_reg(context),CX_reg(context)),
937                 MAKELONG(DI_reg(context),SI_reg(context))) ;
938           if (!LockFile(DosFileHandleToWin32Handle(BX_reg(context)),
939                         MAKELONG(DX_reg(context),CX_reg(context)), 0,
940                         MAKELONG(DI_reg(context),SI_reg(context)), 0)) {
941             SET_AX( context, GetLastError() );
942             SET_CFLAG(context);
943           }
944           break;
945
946         case 0x01: /* UNLOCK */
947           TRACE("unlock handle %d offset %ld length %ld\n",
948                 BX_reg(context),
949                 MAKELONG(DX_reg(context),CX_reg(context)),
950                 MAKELONG(DI_reg(context),SI_reg(context))) ;
951           if (!UnlockFile(DosFileHandleToWin32Handle(BX_reg(context)),
952                           MAKELONG(DX_reg(context),CX_reg(context)), 0,
953                           MAKELONG(DI_reg(context),SI_reg(context)), 0)) {
954             SET_AX( context, GetLastError() );
955             SET_CFLAG(context);
956           }
957           return;
958         default:
959           SET_AX( context, 0x0001 );
960           SET_CFLAG(context);
961           return;
962      }
963 }
964
965 static BOOL
966 INT21_networkfunc (CONTEXT86 *context)
967 {
968      switch (AL_reg(context)) {
969      case 0x00: /* Get machine name. */
970      {
971           char *dst = CTX_SEG_OFF_TO_LIN (context,context->SegDs,context->Edx);
972           TRACE("getting machine name to %p\n", dst);
973           if (gethostname (dst, 15))
974           {
975                WARN("failed!\n");
976                SetLastError( ER_NoNetwork );
977                return TRUE;
978           } else {
979                int len = strlen (dst);
980                while (len < 15)
981                     dst[len++] = ' ';
982                dst[15] = 0;
983                SET_CH( context, 1 ); /* Valid */
984                SET_CL( context, 1 ); /* NETbios number??? */
985                TRACE("returning %s\n", debugstr_an (dst, 16));
986                return FALSE;
987           }
988      }
989
990      default:
991           SetLastError( ER_NoNetwork );
992           return TRUE;
993      }
994 }
995
996
997 static void ASPI_DOS_HandleInt( CONTEXT86 *context )
998 {
999     if (!Dosvm.ASPIHandler && !DPMI_LoadDosSystem())
1000     {
1001         ERR("could not setup ASPI handler\n");
1002         return;
1003     }
1004     Dosvm.ASPIHandler( context );
1005 }
1006
1007 /***********************************************************************
1008  *           INT21_GetExtendedError
1009  */
1010 static void INT21_GetExtendedError( CONTEXT86 *context )
1011 {
1012     BYTE class, action, locus;
1013     WORD error = GetLastError();
1014
1015     switch(error)
1016     {
1017     case ERROR_SUCCESS:
1018         class = action = locus = 0;
1019         break;
1020     case ERROR_DIR_NOT_EMPTY:
1021         class  = EC_Exists;
1022         action = SA_Ignore;
1023         locus  = EL_Disk;
1024         break;
1025     case ERROR_ACCESS_DENIED:
1026         class  = EC_AccessDenied;
1027         action = SA_Abort;
1028         locus  = EL_Disk;
1029         break;
1030     case ERROR_CANNOT_MAKE:
1031         class  = EC_AccessDenied;
1032         action = SA_Abort;
1033         locus  = EL_Unknown;
1034         break;
1035     case ERROR_DISK_FULL:
1036     case ERROR_HANDLE_DISK_FULL:
1037         class  = EC_MediaError;
1038         action = SA_Abort;
1039         locus  = EL_Disk;
1040         break;
1041     case ERROR_FILE_EXISTS:
1042     case ERROR_ALREADY_EXISTS:
1043         class  = EC_Exists;
1044         action = SA_Abort;
1045         locus  = EL_Disk;
1046         break;
1047     case ERROR_FILE_NOT_FOUND:
1048         class  = EC_NotFound;
1049         action = SA_Abort;
1050         locus  = EL_Disk;
1051         break;
1052     case ER_GeneralFailure:
1053         class  = EC_SystemFailure;
1054         action = SA_Abort;
1055         locus  = EL_Unknown;
1056         break;
1057     case ERROR_INVALID_DRIVE:
1058         class  = EC_MediaError;
1059         action = SA_Abort;
1060         locus  = EL_Disk;
1061         break;
1062     case ERROR_INVALID_HANDLE:
1063         class  = EC_ProgramError;
1064         action = SA_Abort;
1065         locus  = EL_Disk;
1066         break;
1067     case ERROR_LOCK_VIOLATION:
1068         class  = EC_AccessDenied;
1069         action = SA_Abort;
1070         locus  = EL_Disk;
1071         break;
1072     case ERROR_NO_MORE_FILES:
1073         class  = EC_MediaError;
1074         action = SA_Abort;
1075         locus  = EL_Disk;
1076         break;
1077     case ER_NoNetwork:
1078         class  = EC_NotFound;
1079         action = SA_Abort;
1080         locus  = EL_Network;
1081         break;
1082     case ERROR_NOT_ENOUGH_MEMORY:
1083         class  = EC_OutOfResource;
1084         action = SA_Abort;
1085         locus  = EL_Memory;
1086         break;
1087     case ERROR_PATH_NOT_FOUND:
1088         class  = EC_NotFound;
1089         action = SA_Abort;
1090         locus  = EL_Disk;
1091         break;
1092     case ERROR_SEEK:
1093         class  = EC_NotFound;
1094         action = SA_Ignore;
1095         locus  = EL_Disk;
1096         break;
1097     case ERROR_SHARING_VIOLATION:
1098         class  = EC_Temporary;
1099         action = SA_Retry;
1100         locus  = EL_Disk;
1101         break;
1102     case ERROR_TOO_MANY_OPEN_FILES:
1103         class  = EC_ProgramError;
1104         action = SA_Abort;
1105         locus  = EL_Disk;
1106         break;
1107     default:
1108         FIXME("Unknown error %d\n", error );
1109         class  = EC_SystemFailure;
1110         action = SA_Abort;
1111         locus  = EL_Unknown;
1112         break;
1113     }
1114     TRACE("GET EXTENDED ERROR code 0x%02x class 0x%02x action 0x%02x locus %02x\n",
1115            error, class, action, locus );
1116     SET_AX( context, error );
1117     SET_BH( context, class );
1118     SET_BL( context, action );
1119     SET_CH( context, locus );
1120 }
1121
1122 /***********************************************************************
1123  *           DOS3Call         (KERNEL.102)
1124  *           INT_Int21Handler (WPROCS.133)
1125  */
1126 void WINAPI DOS3Call( CONTEXT86 *context )
1127 {
1128     BOOL        bSetDOSExtendedError = FALSE;
1129
1130
1131     TRACE("AX=%04x BX=%04x CX=%04x DX=%04x "
1132           "SI=%04x DI=%04x DS=%04x ES=%04x EFL=%08lx\n",
1133           AX_reg(context), BX_reg(context), CX_reg(context), DX_reg(context),
1134           SI_reg(context), DI_reg(context),
1135           (WORD)context->SegDs, (WORD)context->SegEs,
1136           context->EFlags );
1137
1138
1139     if (AH_reg(context) == 0x59)  /* Get extended error info */
1140     {
1141         INT21_GetExtendedError( context );
1142         return;
1143     }
1144
1145     if (AH_reg(context) == 0x0C)  /* Flush buffer and read standard input */
1146     {
1147         TRACE("FLUSH BUFFER AND READ STANDARD INPUT\n");
1148         /* no flush here yet */
1149         SET_AH( context, AL_reg(context) );
1150     }
1151
1152     if (AH_reg(context)>=0x2f) {
1153         /* extended error is used by (at least) functions 0x2f to 0x62 */
1154         SetLastError(0);
1155     }
1156     RESET_CFLAG(context);  /* Not sure if this is a good idea */
1157
1158     switch(AH_reg(context))
1159     {
1160     case 0x01: /* READ CHARACTER FROM STANDARD INPUT, WITH ECHO */
1161     case 0x02: /* WRITE CHARACTER TO STANDARD OUTPUT */
1162     case 0x03: /* READ CHARACTER FROM STDAUX  */
1163     case 0x04: /* WRITE CHARACTER TO STDAUX */
1164     case 0x05: /* WRITE CHARACTER TO PRINTER */
1165     case 0x06: /* DIRECT CONSOLE IN/OUTPUT */
1166     case 0x07: /* DIRECT CHARACTER INPUT WITHOUT ECHO */
1167     case 0x08: /* CHARACTER INPUT WITHOUT ECHO */
1168     case 0x0b: /* GET STDIN STATUS */
1169     case 0x0f: /* OPEN FILE USING FCB */
1170     case 0x10: /* CLOSE FILE USING FCB */
1171     case 0x14: /* SEQUENTIAL READ FROM FCB FILE */
1172     case 0x15: /* SEQUENTIAL WRITE TO FCB FILE */
1173     case 0x16: /* CREATE OR TRUNCATE FILE USING FCB */
1174     case 0x21: /* READ RANDOM RECORD FROM FCB FILE */
1175     case 0x22: /* WRITE RANDOM RECORD TO FCB FILE */
1176     case 0x23: /* GET FILE SIZE FOR FCB */
1177     case 0x24: /* SET RANDOM RECORD NUMBER FOR FCB */
1178     case 0x26: /* CREATE NEW PROGRAM SEGMENT PREFIX */
1179     case 0x27: /* RANDOM BLOCK READ FROM FCB FILE */
1180     case 0x28: /* RANDOM BLOCK WRITE TO FCB FILE */
1181     case 0x4d: /* GET RETURN CODE */
1182     case 0x50: /* SET CURRENT PROCESS ID (SET PSP ADDRESS) */
1183         INT_BARF( context, 0x21 );
1184         break;
1185
1186     case 0x00: /* TERMINATE PROGRAM */
1187         TRACE("TERMINATE PROGRAM\n");
1188         ExitThread( 0 );
1189         break;
1190
1191     case 0x09: /* WRITE STRING TO STANDARD OUTPUT */
1192         TRACE("WRITE '$'-terminated string from %04lX:%04X to stdout\n",
1193               context->SegDs,DX_reg(context) );
1194         {
1195             LPSTR data = CTX_SEG_OFF_TO_LIN(context,context->SegDs,context->Edx);
1196             LPSTR p = data;
1197             /* do NOT use strchr() to calculate the string length,
1198             as '\0' is valid string content, too !
1199             Maybe we should check for non-'$' strings, but DOS doesn't. */
1200             while (*p != '$') p++;
1201             _hwrite16( 1, data, (int)p - (int)data);
1202             SET_AL( context, '$' ); /* yes, '$' (0x24) gets returned in AL */
1203         }
1204         break;
1205
1206     case 0x0a: /* BUFFERED INPUT */
1207       {
1208         char *buffer = ((char *)CTX_SEG_OFF_TO_LIN(context,  context->SegDs,
1209                                                    context->Edx ));
1210         int res;
1211
1212         TRACE("BUFFERED INPUT (size=%d)\n",buffer[0]);
1213         if (buffer[1])
1214           TRACE("Handle old chars in buffer!\n");
1215         res=_lread16( 0, buffer+2,buffer[0]);
1216         buffer[1]=res;
1217         if(buffer[res+1] == '\n')
1218           buffer[res+1] = '\r';
1219         break;
1220       }
1221
1222     case 0x2e: /* SET VERIFY FLAG */
1223         TRACE("SET VERIFY FLAG ignored\n");
1224         /* we cannot change the behaviour anyway, so just ignore it */
1225         break;
1226
1227     case 0x18: /* NULL FUNCTIONS FOR CP/M COMPATIBILITY */
1228     case 0x1d:
1229     case 0x1e:
1230     case 0x20:
1231     case 0x6b: /* NULL FUNCTION */
1232         SET_AL( context, 0 );
1233         break;
1234
1235     case 0x5c: /* "FLOCK" - RECORD LOCKING */
1236         fLock(context);
1237         break;
1238
1239     case 0x0d: /* DISK BUFFER FLUSH */
1240         TRACE("DISK BUFFER FLUSH ignored\n");
1241         RESET_CFLAG(context); /* dos 6+ only */
1242         break;
1243
1244     case 0x0e: /* SELECT DEFAULT DRIVE */
1245         TRACE("SELECT DEFAULT DRIVE %d\n", DL_reg(context));
1246         DRIVE_SetCurrentDrive( DL_reg(context) );
1247         SET_AL( context, MAX_DOS_DRIVES );
1248         break;
1249
1250     case 0x11: /* FIND FIRST MATCHING FILE USING FCB */
1251         TRACE("FIND FIRST MATCHING FILE USING FCB %p\n",
1252               CTX_SEG_OFF_TO_LIN(context, context->SegDs, context->Edx));
1253         if (!INT21_FindFirstFCB(context))
1254         {
1255             SET_AL( context, 0xff );
1256             break;
1257         }
1258         /* else fall through */
1259
1260     case 0x12: /* FIND NEXT MATCHING FILE USING FCB */
1261         SET_AL( context, INT21_FindNextFCB(context) ? 0x00 : 0xff );
1262         break;
1263
1264     case 0x13: /* DELETE FILE USING FCB */
1265         DeleteFileFCB(context);
1266         break;
1267
1268     case 0x17: /* RENAME FILE USING FCB */
1269         RenameFileFCB(context);
1270         break;
1271
1272     case 0x19: /* GET CURRENT DEFAULT DRIVE */
1273         SET_AL( context, DRIVE_GetCurrentDrive() );
1274         break;
1275
1276     case 0x1a: /* SET DISK TRANSFER AREA ADDRESS */
1277         {
1278             TDB *pTask = TASK_GetCurrent();
1279             pTask->dta = MAKESEGPTR(context->SegDs,DX_reg(context));
1280             TRACE("Set DTA: %08lx\n", pTask->dta);
1281         }
1282         break;
1283
1284     case 0x1b: /* GET ALLOCATION INFORMATION FOR DEFAULT DRIVE */
1285         SET_DL( context, 0 );
1286         if (!INT21_GetDriveAllocInfo(context)) SET_AX( context, 0xffff );
1287         break;
1288
1289     case 0x1c: /* GET ALLOCATION INFORMATION FOR SPECIFIC DRIVE */
1290         if (!INT21_GetDriveAllocInfo(context)) SET_AX( context, 0xffff );
1291         break;
1292
1293     case 0x1f: /* GET DRIVE PARAMETER BLOCK FOR DEFAULT DRIVE */
1294         GetDrivePB(context, DRIVE_GetCurrentDrive());
1295         break;
1296
1297     case 0x25: /* SET INTERRUPT VECTOR */
1298         FIXME("set interrupt vector - move to winedos...");
1299         break;
1300
1301     case 0x29: /* PARSE FILENAME INTO FCB */
1302         INT21_ParseFileNameIntoFCB(context);
1303         break;
1304
1305     case 0x2a: /* GET SYSTEM DATE */
1306         INT21_GetSystemDate(context);
1307         break;
1308
1309     case 0x2b: /* SET SYSTEM DATE */
1310         FIXME("SetSystemDate(%02d/%02d/%04d): not allowed\n",
1311               DL_reg(context), DH_reg(context), CX_reg(context) );
1312         SET_AL( context, 0 );  /* Let's pretend we succeeded */
1313         break;
1314
1315     case 0x2c: /* GET SYSTEM TIME */
1316         INT21_GetSystemTime(context);
1317         break;
1318
1319     case 0x2d: /* SET SYSTEM TIME */
1320         FIXME("SetSystemTime(%02d:%02d:%02d.%02d): not allowed\n",
1321               CH_reg(context), CL_reg(context),
1322               DH_reg(context), DL_reg(context) );
1323         SET_AL( context, 0 );  /* Let's pretend we succeeded */
1324         break;
1325
1326     case 0x2f: /* GET DISK TRANSFER AREA ADDRESS */
1327         TRACE("GET DISK TRANSFER AREA ADDRESS\n");
1328         {
1329             TDB *pTask = TASK_GetCurrent();
1330             context->SegEs = SELECTOROF( pTask->dta );
1331             SET_BX( context, OFFSETOF( pTask->dta ) );
1332         }
1333         break;
1334
1335     case 0x30: /* GET DOS VERSION */
1336         TRACE("GET DOS VERSION %s requested\n",
1337               (AL_reg(context) == 0x00)?"OEM number":"version flag");
1338         SET_AX( context, (HIWORD(GetVersion16()) >> 8) | (HIWORD(GetVersion16()) << 8) );
1339 #if 0
1340         SET_AH( context, 0x7 );
1341         SET_AL( context, 0xA );
1342 #endif
1343
1344         SET_BX( context, 0x00FF );     /* 0x123456 is Wine's serial # */
1345         SET_CX( context, 0x0000 );
1346         break;
1347
1348     case 0x31: /* TERMINATE AND STAY RESIDENT */
1349         FIXME("TERMINATE AND STAY RESIDENT stub\n");
1350         break;
1351
1352     case 0x32: /* GET DOS DRIVE PARAMETER BLOCK FOR SPECIFIC DRIVE */
1353         TRACE("GET DOS DRIVE PARAMETER BLOCK FOR DRIVE %s\n",
1354               INT21_DriveName( DL_reg(context)));
1355         GetDrivePB(context, DOS_GET_DRIVE( DL_reg(context) ) );
1356         break;
1357
1358     case 0x33: /* MULTIPLEXED */
1359         switch (AL_reg(context))
1360         {
1361               case 0x00: /* GET CURRENT EXTENDED BREAK STATE */
1362                 TRACE("GET CURRENT EXTENDED BREAK STATE\n");
1363                 INT21_ReadConfigSys();
1364                 SET_DL( context, DOSCONF_config.brk_flag );
1365                 break;
1366
1367               case 0x01: /* SET EXTENDED BREAK STATE */
1368                 TRACE("SET CURRENT EXTENDED BREAK STATE\n");
1369                 INT21_ReadConfigSys();
1370                 DOSCONF_config.brk_flag = (DL_reg(context) > 0);
1371                 break;
1372
1373               case 0x02: /* GET AND SET EXTENDED CONTROL-BREAK CHECKING STATE*/
1374                 TRACE("GET AND SET EXTENDED CONTROL-BREAK CHECKING STATE\n");
1375                 INT21_ReadConfigSys();
1376                 /* ugly coding in order to stay reentrant */
1377                 if (DL_reg(context))
1378                 {
1379                     SET_DL( context, DOSCONF_config.brk_flag );
1380                     DOSCONF_config.brk_flag = 1;
1381                 }
1382                 else
1383                 {
1384                     SET_DL( context, DOSCONF_config.brk_flag );
1385                     DOSCONF_config.brk_flag = 0;
1386                 }
1387                 break;
1388
1389               case 0x05: /* GET BOOT DRIVE */
1390                 TRACE("GET BOOT DRIVE\n");
1391                 SET_DL( context, 3 );
1392                 /* c: is Wine's bootdrive (a: is 1)*/
1393                 break;
1394
1395               case 0x06: /* GET TRUE VERSION NUMBER */
1396                 TRACE("GET TRUE VERSION NUMBER\n");
1397                 SET_BX( context, (HIWORD(GetVersion16() >> 8)) | (HIWORD(GetVersion16() << 8)) );
1398                 SET_DX( context, 0x00 );
1399                 break;
1400
1401               default:
1402                 INT_BARF( context, 0x21 );
1403                 break;
1404         }
1405         break;
1406
1407     case 0x34: /* GET ADDRESS OF INDOS FLAG */
1408         TRACE("GET ADDRESS OF INDOS FLAG\n");
1409         if (!heap) INT21_CreateHeap();
1410         context->SegEs = DosHeapHandle;
1411         SET_BX( context, (int)&heap->InDosFlag - (int)heap );
1412         break;
1413
1414     case 0x35: /* GET INTERRUPT VECTOR */
1415         TRACE("GET INTERRUPT VECTOR 0x%02x\n",AL_reg(context));
1416         {
1417             FARPROC16 addr = 0;
1418             FIXME("get interrupt vector - move to winedos...\n");            
1419             context->SegEs = SELECTOROF(addr);
1420             SET_BX( context, OFFSETOF(addr) );
1421         }
1422         break;
1423
1424     case 0x36: /* GET FREE DISK SPACE */
1425         TRACE("GET FREE DISK SPACE FOR DRIVE %s\n",
1426               INT21_DriveName( DL_reg(context)));
1427         if (!INT21_GetFreeDiskSpace(context)) SET_AX( context, 0xffff );
1428         break;
1429
1430     case 0x37:
1431       {
1432         unsigned char switchchar='/';
1433         switch (AL_reg(context))
1434         {
1435         case 0x00: /* "SWITCHAR" - GET SWITCH CHARACTER */
1436           TRACE("SWITCHAR - GET SWITCH CHARACTER\n");
1437           SET_AL( context, 0x00 ); /* success*/
1438           SET_DL( context, switchchar );
1439           break;
1440         case 0x01: /*"SWITCHAR" - SET SWITCH CHARACTER*/
1441           TRACE("SWITCHAR - SET SWITCH CHARACTER\n");
1442           switchchar = DL_reg(context);
1443           SET_AL( context, 0x00 ); /* success*/
1444           break;
1445         default: /*"AVAILDEV" - SPECIFY \DEV\ PREFIX USE*/
1446           INT_BARF( context, 0x21 );
1447           break;
1448         }
1449         break;
1450       }
1451
1452     case 0x38: /* GET COUNTRY-SPECIFIC INFORMATION */
1453         TRACE("GET COUNTRY-SPECIFIC INFORMATION for country 0x%02x\n",
1454               AL_reg(context));
1455         SET_AX( context, 0x02 ); /* no country support available */
1456         SET_CFLAG(context);
1457         break;
1458
1459     case 0x39: /* "MKDIR" - CREATE SUBDIRECTORY */
1460         TRACE("MKDIR %s\n",
1461               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx));
1462         bSetDOSExtendedError = (!CreateDirectory16( CTX_SEG_OFF_TO_LIN(context,  context->SegDs,
1463                                                            context->Edx ), NULL));
1464         /* FIXME: CreateDirectory's LastErrors will clash with the ones
1465          * used by dos. AH=39 only returns 3 (path not found) and 5 (access
1466          * denied), while CreateDirectory return several ones. remap some of
1467          * them. -Marcus
1468          */
1469         if (bSetDOSExtendedError) {
1470                 switch (GetLastError()) {
1471                 case ERROR_ALREADY_EXISTS:
1472                 case ERROR_FILENAME_EXCED_RANGE:
1473                 case ERROR_DISK_FULL:
1474                         SetLastError(ERROR_ACCESS_DENIED);
1475                         break;
1476                 default: break;
1477                 }
1478         }
1479         break;
1480
1481     case 0x3a: /* "RMDIR" - REMOVE SUBDIRECTORY */
1482         TRACE("RMDIR %s\n",
1483               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx));
1484         bSetDOSExtendedError = (!RemoveDirectory16( CTX_SEG_OFF_TO_LIN(context,  context->SegDs,
1485                                                                  context->Edx )));
1486         break;
1487
1488     case 0x3b: /* "CHDIR" - SET CURRENT DIRECTORY */
1489         TRACE("CHDIR %s\n",
1490               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx));
1491         bSetDOSExtendedError = !INT21_ChangeDir(context);
1492         break;
1493
1494     case 0x3c: /* "CREAT" - CREATE OR TRUNCATE FILE */
1495         TRACE("CREAT flag 0x%02x %s\n",CX_reg(context),
1496               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx));
1497         bSetDOSExtendedError = INT21_CreateFile( context );
1498         break;
1499
1500     case 0x3d: /* "OPEN" - OPEN EXISTING FILE */
1501         TRACE("OPEN mode 0x%02x %s\n",AL_reg(context),
1502               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx));
1503         OpenExistingFile(context);
1504         break;
1505
1506     case 0x3e: /* "CLOSE" - CLOSE FILE */
1507         TRACE("CLOSE handle %d\n",BX_reg(context));
1508         bSetDOSExtendedError = ((SET_AX( context, _lclose16( BX_reg(context) )) != 0) );
1509         break;
1510
1511     case 0x3f: /* "READ" - READ FROM FILE OR DEVICE */
1512         TRACE("READ from %d to %04lX:%04X for %d byte\n",BX_reg(context),
1513               context->SegDs,DX_reg(context),CX_reg(context) );
1514         {
1515             LONG result;
1516             if (ISV86(context))
1517                 result = _hread16( BX_reg(context),
1518                                    CTX_SEG_OFF_TO_LIN(context, context->SegDs,
1519                                                                context->Edx ),
1520                                    CX_reg(context) );
1521             else
1522                 result = WIN16_hread( BX_reg(context),
1523                                       MAKESEGPTR( context->SegDs, context->Edx ),
1524                                       CX_reg(context) );
1525             if (result == -1) bSetDOSExtendedError = TRUE;
1526             else SET_AX( context, (WORD)result );
1527         }
1528         break;
1529
1530     case 0x40: /* "WRITE" - WRITE TO FILE OR DEVICE */
1531         TRACE("WRITE from %04lX:%04X to handle %d for %d byte\n",
1532               context->SegDs,DX_reg(context),BX_reg(context),CX_reg(context) );
1533         {
1534             LONG result = _hwrite16( BX_reg(context),
1535                                      CTX_SEG_OFF_TO_LIN(context,  context->SegDs,
1536                                                          context->Edx ),
1537                                      CX_reg(context) );
1538             if (result == -1) bSetDOSExtendedError = TRUE;
1539             else SET_AX( context, (WORD)result );
1540         }
1541         break;
1542
1543     case 0x41: /* "UNLINK" - DELETE FILE */
1544         TRACE("UNLINK %s\n",
1545               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx));
1546         bSetDOSExtendedError = (!DeleteFileA( CTX_SEG_OFF_TO_LIN(context,  context->SegDs,
1547                                                              context->Edx )));
1548         break;
1549
1550     case 0x42: /* "LSEEK" - SET CURRENT FILE POSITION */
1551         TRACE("LSEEK handle %d offset %ld from %s\n",
1552               BX_reg(context), MAKELONG(DX_reg(context),CX_reg(context)),
1553               (AL_reg(context)==0)?"start of file":(AL_reg(context)==1)?
1554               "current file position":"end of file");
1555         {
1556             LONG status = _llseek16( BX_reg(context),
1557                                      MAKELONG(DX_reg(context),CX_reg(context)),
1558                                      AL_reg(context) );
1559             if (status == -1) bSetDOSExtendedError = TRUE;
1560             else
1561             {
1562                 SET_AX( context, LOWORD(status) );
1563                 SET_DX( context, HIWORD(status) );
1564             }
1565         }
1566         break;
1567
1568     case 0x43: /* FILE ATTRIBUTES */
1569         switch (AL_reg(context))
1570         {
1571         case 0x00:
1572             TRACE("GET FILE ATTRIBUTES for %s\n",
1573                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx));
1574             SET_AX( context, GetFileAttributesA( CTX_SEG_OFF_TO_LIN(context, context->SegDs,
1575                                                                     context->Edx)));
1576             if (AX_reg(context) == 0xffff) bSetDOSExtendedError = TRUE;
1577             else SET_CX( context, AX_reg(context) );
1578             break;
1579
1580         case 0x01:
1581             TRACE("SET FILE ATTRIBUTES 0x%02x for %s\n", CX_reg(context),
1582                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx));
1583             bSetDOSExtendedError =
1584                 (!SetFileAttributesA( CTX_SEG_OFF_TO_LIN(context, context->SegDs,
1585                                                            context->Edx),
1586                                                            CX_reg(context) ));
1587             break;
1588         case 0x02:
1589             FIXME("GET COMPRESSED FILE SIZE for %s stub\n",
1590                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx));
1591         }
1592         break;
1593
1594     case 0x44: /* IOCTL */
1595         switch (AL_reg(context))
1596         {
1597         case 0x00:
1598             ioctlGetDeviceInfo(context);
1599             break;
1600
1601         case 0x01:
1602             break;
1603         case 0x02:{
1604             const DOS_DEVICE *dev;
1605             static const WCHAR scsimgrW[] = {'S','C','S','I','M','G','R','$',0};
1606             if ((dev = DOSFS_GetDeviceByHandle( DosFileHandleToWin32Handle(BX_reg(context)) )) &&
1607                 !strcmpiW( dev->name, scsimgrW ))
1608             {
1609                 ASPI_DOS_HandleInt(context);
1610             }
1611             break;
1612        }
1613         case 0x05:{     /* IOCTL - WRITE TO BLOCK DEVICE CONTROL CHANNEL */
1614             /*BYTE *dataptr = CTX_SEG_OFF_TO_LIN(context, context->SegDs,context->Edx);*/
1615             int drive = DOS_GET_DRIVE(BL_reg(context));
1616
1617             FIXME("program tried to write to block device control channel of drive %d:\n",drive);
1618             /* for (i=0;i<CX_reg(context);i++)
1619                 fprintf(stdnimp,"%02x ",dataptr[i]);
1620             fprintf(stdnimp,"\n");*/
1621             SET_AX( context, context->Ecx );
1622             break;
1623         }
1624         case 0x08:   /* Check if drive is removable. */
1625             TRACE("IOCTL - CHECK IF BLOCK DEVICE REMOVABLE for drive %s\n",
1626                  INT21_DriveName( BL_reg(context)));
1627             switch(GetDriveType16( DOS_GET_DRIVE( BL_reg(context) )))
1628             {
1629             case DRIVE_UNKNOWN:
1630                 SetLastError( ERROR_INVALID_DRIVE );
1631                 SET_AX( context, ERROR_INVALID_DRIVE );
1632                 SET_CFLAG(context);
1633                 break;
1634             case DRIVE_REMOVABLE:
1635                 SET_AX( context, 0 );      /* removable */
1636                 break;
1637             default:
1638                 SET_AX( context, 1 );   /* not removable */
1639                 break;
1640             }
1641             break;
1642
1643         case 0x09:   /* CHECK IF BLOCK DEVICE REMOTE */
1644             TRACE("IOCTL - CHECK IF BLOCK DEVICE REMOTE for drive %s\n",
1645                  INT21_DriveName( BL_reg(context)));
1646             switch(GetDriveType16( DOS_GET_DRIVE( BL_reg(context) )))
1647             {
1648             case DRIVE_UNKNOWN:
1649                 SetLastError( ERROR_INVALID_DRIVE );
1650                 SET_AX( context, ERROR_INVALID_DRIVE );
1651                 SET_CFLAG(context);
1652                 break;
1653             case DRIVE_REMOTE:
1654                 SET_DX( context, (1<<9) | (1<<12) );  /* remote */
1655                 break;
1656             default:
1657                 SET_DX( context, 0 );  /* FIXME: use driver attr here */
1658                 break;
1659             }
1660             break;
1661
1662         case 0x0a: /* check if handle (BX) is remote */
1663             TRACE("IOCTL - CHECK IF HANDLE %d IS REMOTE\n",BX_reg(context));
1664             /* returns DX, bit 15 set if remote, bit 14 set if date/time
1665              * not set on close
1666              */
1667             SET_DX( context, 0 );
1668             break;
1669
1670         case 0x0d:
1671             TRACE("IOCTL - GENERIC BLOCK DEVICE REQUEST %s\n",
1672                   INT21_DriveName( BL_reg(context)));
1673             bSetDOSExtendedError = ioctlGenericBlkDevReq(context);
1674             break;
1675
1676         case 0x0e: /* get logical drive mapping */
1677             TRACE("IOCTL - GET LOGICAL DRIVE MAP for drive %s\n",
1678                   INT21_DriveName( BL_reg(context)));
1679             SET_AL( context, 0 ); /* drive has no mapping - FIXME: may be wrong*/
1680             break;
1681
1682         case 0x0F:   /* Set logical drive mapping */
1683             {
1684             int drive;
1685             TRACE("IOCTL - SET LOGICAL DRIVE MAP for drive %s\n",
1686                   INT21_DriveName( BL_reg(context)));
1687             drive = DOS_GET_DRIVE ( BL_reg(context) );
1688             if ( ! DRIVE_SetLogicalMapping ( drive, drive+1 ) )
1689             {
1690                 SET_CFLAG(context);
1691                 SET_AX( context, 0x000F );  /* invalid drive */
1692             }
1693             break;
1694             }
1695
1696         case 0xe0:  /* Sun PC-NFS API */
1697             /* not installed */
1698             break;
1699
1700         case 0x52:  /* DR-DOS version */
1701             /* This is not DR-DOS */
1702
1703             TRACE("GET DR-DOS VERSION requested\n");
1704
1705             SET_AX( context, 0x0001 ); /* Invalid function */
1706             SET_CFLAG(context);       /* Error */
1707             SetLastError( ERROR_INVALID_FUNCTION );
1708             break;
1709
1710         default:
1711             INT_BARF( context, 0x21 );
1712             break;
1713         }
1714         break;
1715
1716     case 0x45: /* "DUP" - DUPLICATE FILE HANDLE */
1717         {
1718             HANDLE handle;
1719             TRACE("DUP - DUPLICATE FILE HANDLE %d\n",BX_reg(context));
1720             if ((bSetDOSExtendedError = !DuplicateHandle( GetCurrentProcess(),
1721                                                           DosFileHandleToWin32Handle(BX_reg(context)),
1722                                                           GetCurrentProcess(), &handle,
1723                                                           0, TRUE, DUPLICATE_SAME_ACCESS )))
1724                 SET_AX( context, HFILE_ERROR16 );
1725             else
1726                 SET_AX( context, Win32HandleToDosFileHandle(handle) );
1727             break;
1728         }
1729
1730     case 0x46: /* "DUP2", "FORCEDUP" - FORCE DUPLICATE FILE HANDLE */
1731         TRACE("FORCEDUP - FORCE DUPLICATE FILE HANDLE %d to %d\n",
1732               BX_reg(context),CX_reg(context));
1733         bSetDOSExtendedError = (FILE_Dup2( BX_reg(context), CX_reg(context) ) == HFILE_ERROR16);
1734         break;
1735
1736     case 0x47: /* "CWD" - GET CURRENT DIRECTORY */
1737         TRACE("CWD - GET CURRENT DIRECTORY for drive %s\n",
1738               INT21_DriveName( DL_reg(context)));
1739         bSetDOSExtendedError = !INT21_GetCurrentDirectory(context);
1740         break;
1741
1742     case 0x48: /* ALLOCATE MEMORY */
1743         TRACE("ALLOCATE MEMORY for %d paragraphs\n", BX_reg(context));
1744         {
1745             LPVOID *mem;
1746             if (ISV86(context))
1747               {
1748                 mem= DOSMEM_GetBlock((DWORD)BX_reg(context)<<4,NULL);
1749             if (mem)
1750                 SET_AX( context, DOSMEM_MapLinearToDos(mem)>>4 );
1751               }
1752             else
1753               {
1754                 mem = (LPVOID)GlobalDOSAlloc16(BX_reg(context)<<4);
1755                 if (mem)
1756                   SET_AX( context, (DWORD)mem&0xffff );
1757               }
1758             if (!mem)
1759               {
1760                 SET_CFLAG(context);
1761                 SET_AX( context, 0x0008 ); /* insufficient memory */
1762                 SET_BX( context, DOSMEM_Available()>>4 );
1763             }
1764         }
1765         break;
1766
1767     case 0x49: /* FREE MEMORY */
1768         TRACE("FREE MEMORY segment %04lX\n", context->SegEs);
1769         {
1770           BOOL ret;
1771           if (ISV86(context))
1772             ret= DOSMEM_FreeBlock(DOSMEM_MapDosToLinear(context->SegEs<<4));
1773           else
1774             {
1775               ret = !GlobalDOSFree16(context->SegEs);
1776               /* If we don't reset ES_reg, we will fail in the relay code */
1777               context->SegEs=ret;
1778             }
1779           if (!ret)
1780             {
1781               TRACE("FREE MEMORY failed\n");
1782             SET_CFLAG(context);
1783             SET_AX( context, 0x0009 ); /* memory block address invalid */
1784         }
1785         }
1786         break;
1787
1788     case 0x4a: /* RESIZE MEMORY BLOCK */
1789         TRACE("RESIZE MEMORY segment %04lX to %d paragraphs\n", context->SegEs, BX_reg(context));
1790         if (!ISV86(context))
1791           FIXME("RESIZE MEMORY probably insufficient implementation. Expect crash soon\n");
1792         {
1793             LPVOID *mem = DOSMEM_ResizeBlock(DOSMEM_MapDosToLinear(context->SegEs<<4),
1794                                              BX_reg(context)<<4,NULL);
1795             if (mem)
1796                 SET_AX( context, DOSMEM_MapLinearToDos(mem)>>4 );
1797             else {
1798                 SET_CFLAG(context);
1799                 SET_AX( context, 0x0008 ); /* insufficient memory */
1800                 SET_BX( context, DOSMEM_Available()>>4 ); /* not quite right */
1801             }
1802         }
1803         break;
1804
1805     case 0x4b: /* "EXEC" - LOAD AND/OR EXECUTE PROGRAM */
1806         TRACE("EXEC %s\n", (LPCSTR)CTX_SEG_OFF_TO_LIN(context, context->SegDs, context->Edx ));
1807         SET_AX( context, WinExec16( CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx ),
1808                                     SW_NORMAL ));
1809         if (AX_reg(context) < 32) SET_CFLAG(context);
1810         break;
1811
1812     case 0x4c: /* "EXIT" - TERMINATE WITH RETURN CODE */
1813         TRACE("EXIT with return code %d\n",AL_reg(context));
1814         ExitThread( AL_reg(context) );
1815         break;
1816
1817     case 0x4e: /* "FINDFIRST" - FIND FIRST MATCHING FILE */
1818         TRACE("FINDFIRST mask 0x%04x spec %s\n",CX_reg(context),
1819               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx));
1820         if (!INT21_FindFirst(context)) break;
1821         /* fall through */
1822
1823     case 0x4f: /* "FINDNEXT" - FIND NEXT MATCHING FILE */
1824         TRACE("FINDNEXT\n");
1825         if (!INT21_FindNext(context))
1826         {
1827             SetLastError( ERROR_NO_MORE_FILES );
1828             SET_AX( context, ERROR_NO_MORE_FILES );
1829             SET_CFLAG(context);
1830         }
1831         else SET_AX( context, 0 );  /* OK */
1832         break;
1833     case 0x51: /* GET PSP ADDRESS */
1834         TRACE("GET CURRENT PROCESS ID (GET PSP ADDRESS)\n");
1835         /* FIXME: should we return the original DOS PSP upon */
1836         /*        Windows startup ? */
1837         SET_BX( context, GetCurrentPDB16() );
1838         break;
1839     case 0x62: /* GET PSP ADDRESS */
1840         /* FIXME: should we return the original DOS PSP upon */
1841         /*        Windows startup ? */
1842         SET_BX( context, GetCurrentPDB16() );
1843         break;
1844
1845     case 0x52: /* "SYSVARS" - GET LIST OF LISTS */
1846         TRACE("SYSVARS - GET LIST OF LISTS\n");
1847 #if 0
1848         {
1849             context->SegEs = LOWORD(DOS_LOLSeg);
1850             SET_BX( context, FIELD_OFFSET(DOS_LISTOFLISTS, ptr_first_DPB) );
1851         }
1852 #endif
1853         FIXME("LOLSeg broken for now\n");
1854         context->SegEs = 0;
1855         SET_BX( context, 0 );
1856         break;
1857
1858     case 0x54: /* Get Verify Flag */
1859         TRACE("Get Verify Flag - Not Supported\n");
1860         SET_AL( context, 0x00 );  /* pretend we can tell. 00h = off 01h = on */
1861         break;
1862
1863     case 0x56: /* "RENAME" - RENAME FILE */
1864         TRACE("RENAME %s to %s\n",
1865               (LPCSTR)CTX_SEG_OFF_TO_LIN(context, context->SegDs,context->Edx),
1866               (LPCSTR)CTX_SEG_OFF_TO_LIN(context, context->SegEs,context->Edi));
1867         bSetDOSExtendedError =
1868                 (!MoveFileA( CTX_SEG_OFF_TO_LIN(context, context->SegDs,context->Edx),
1869                                CTX_SEG_OFF_TO_LIN(context, context->SegEs,context->Edi)));
1870         break;
1871
1872     case 0x57: /* FILE DATE AND TIME */
1873         switch (AL_reg(context))
1874         {
1875         case 0x00:  /* Get */
1876             {
1877                 FILETIME filetime;
1878                 TRACE("GET FILE DATE AND TIME for handle %d\n",
1879                       BX_reg(context));
1880                 if (!GetFileTime( DosFileHandleToWin32Handle(BX_reg(context)), NULL, NULL, &filetime ))
1881                      bSetDOSExtendedError = TRUE;
1882                 else
1883                 {
1884                     WORD date, time;
1885                     FileTimeToDosDateTime( &filetime, &date, &time );
1886                     SET_DX( context, date );
1887                     SET_CX( context, time );
1888                 }
1889             }
1890             break;
1891
1892         case 0x01:  /* Set */
1893             {
1894                 FILETIME filetime;
1895                 TRACE("SET FILE DATE AND TIME for handle %d\n",
1896                       BX_reg(context));
1897                 DosDateTimeToFileTime( DX_reg(context), CX_reg(context),
1898                                        &filetime );
1899                 bSetDOSExtendedError =
1900                         (!SetFileTime( DosFileHandleToWin32Handle(BX_reg(context)),
1901                                       NULL, NULL, &filetime ));
1902             }
1903             break;
1904         }
1905         break;
1906
1907     case 0x58: /* GET OR SET MEMORY/UMB ALLOCATION STRATEGY */
1908         TRACE("GET OR SET MEMORY/UMB ALLOCATION STRATEGY subfunction %d\n",
1909               AL_reg(context));
1910         switch (AL_reg(context))
1911         {
1912         case 0x00:
1913             SET_AX( context, 1 );
1914             break;
1915         case 0x02:
1916             SET_AX( context, 0 );
1917             break;
1918         case 0x01:
1919         case 0x03:
1920             break;
1921         }
1922         RESET_CFLAG(context);
1923         break;
1924
1925     case 0x5a: /* CREATE TEMPORARY FILE */
1926         TRACE("CREATE TEMPORARY FILE\n");
1927         bSetDOSExtendedError = !INT21_CreateTempFile(context);
1928         break;
1929
1930     case 0x5b: /* CREATE NEW FILE */
1931         TRACE("CREATE NEW FILE 0x%02x for %s\n", CX_reg(context),
1932               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx));
1933         bSetDOSExtendedError = ((SET_AX( context,
1934                _lcreat16_uniq( CTX_SEG_OFF_TO_LIN(context, context->SegDs,context->Edx),
1935                                CX_reg(context) ))) == (WORD)HFILE_ERROR16);
1936         break;
1937
1938     case 0x5d: /* NETWORK */
1939         FIXME("Function 0x%04x not implemented.\n", AX_reg (context));
1940         /* Fix the following while you're at it.  */
1941         SetLastError( ER_NoNetwork );
1942         bSetDOSExtendedError = TRUE;
1943         break;
1944
1945     case 0x5e:
1946         bSetDOSExtendedError = INT21_networkfunc (context);
1947         break;
1948
1949     case 0x5f: /* NETWORK */
1950         switch (AL_reg(context))
1951         {
1952         case 0x07: /* ENABLE DRIVE */
1953             TRACE("ENABLE DRIVE %c:\n",(DL_reg(context)+'A'));
1954             if (!DRIVE_Enable( DL_reg(context) ))
1955             {
1956                 SetLastError( ERROR_INVALID_DRIVE );
1957                 bSetDOSExtendedError = TRUE;
1958             }
1959             break;
1960
1961         case 0x08: /* DISABLE DRIVE */
1962             TRACE("DISABLE DRIVE %c:\n",(DL_reg(context)+'A'));
1963             if (!DRIVE_Disable( DL_reg(context) ))
1964             {
1965                 SetLastError( ERROR_INVALID_DRIVE );
1966                 bSetDOSExtendedError = TRUE;
1967             }
1968             break;
1969
1970         default:
1971             /* network software not installed */
1972             TRACE("NETWORK function AX=%04x not implemented\n",AX_reg(context));
1973             SetLastError( ER_NoNetwork );
1974             bSetDOSExtendedError = TRUE;
1975             break;
1976         }
1977         break;
1978
1979     case 0x60: /* "TRUENAME" - CANONICALIZE FILENAME OR PATH */
1980         TRACE("TRUENAME %s\n",
1981               (LPCSTR)CTX_SEG_OFF_TO_LIN(context, context->SegDs,context->Esi));
1982         {
1983             if (!GetFullPathNameA( CTX_SEG_OFF_TO_LIN(context, context->SegDs,
1984                                                         context->Esi), 128,
1985                                      CTX_SEG_OFF_TO_LIN(context, context->SegEs,
1986                                                         context->Edi),NULL))
1987                 bSetDOSExtendedError = TRUE;
1988             else SET_AX( context, 0 );
1989         }
1990         break;
1991
1992     case 0x61: /* UNUSED */
1993     case 0x63: /* misc. language support */
1994         switch (AL_reg(context)) {
1995         case 0x00: /* GET DOUBLE BYTE CHARACTER SET LEAD-BYTE TABLE */
1996             INT21_GetDBCSLeadTable(context);
1997             break;
1998         }
1999         break;
2000     case 0x64: /* OS/2 DOS BOX */
2001         INT_BARF( context, 0x21 );
2002         SET_CFLAG(context);
2003         break;
2004
2005     case 0x65:{/* GET EXTENDED COUNTRY INFORMATION */
2006         BYTE    *dataptr=CTX_SEG_OFF_TO_LIN(context, context->SegEs,context->Edi);
2007         TRACE("GET EXTENDED COUNTRY INFORMATION code page %d country %d\n",
2008               BX_reg(context), DX_reg(context));
2009         switch (AL_reg(context)) {
2010         case 0x01:
2011             TRACE("\tget general internationalization info\n");
2012             dataptr[0] = 0x1;
2013             *(WORD*)(dataptr+1) = 41;
2014             *(WORD*)(dataptr+3) = GetSystemDefaultLangID();
2015             *(WORD*)(dataptr+5) = CodePage;
2016             *(DWORD*)(dataptr+0x19) = 0; /* FIXME: ptr to case map routine */
2017             break;
2018         case 0x06:
2019             TRACE("\tget pointer to collating sequence table\n");
2020             dataptr[0] = 0x06;
2021             *(DWORD*)(dataptr+1) = MAKELONG(DOSMEM_CollateTable & 0xFFFF,DOSMEM_AllocSelector(DOSMEM_CollateTable>>16));
2022             SET_CX( context, 258 );/*FIXME: size of table?*/
2023             break;
2024         case 0x20:
2025             TRACE("\tConvert char to uppercase\n");
2026             SET_DL( context, toupper(DL_reg(context)) );
2027             break;
2028         case 0x21:
2029             TRACE("\tconvert string to uppercase with length\n");
2030             {
2031                 char *ptr = (char *)CTX_SEG_OFF_TO_LIN(context,context->SegDs,context->Edx);
2032                 WORD len = CX_reg(context);
2033                 while (len--) { *ptr = toupper(*ptr); ptr++; }
2034             }
2035             break;
2036         case 0x22:
2037             TRACE("\tConvert ASCIIZ string to uppercase\n");
2038             _strupr( (LPSTR)CTX_SEG_OFF_TO_LIN(context,context->SegDs,context->Edx) );
2039             break;
2040         default:
2041             TRACE("\tunimplemented function %d\n",AL_reg(context));
2042             INT_BARF( context, 0x21 );
2043             SET_CFLAG(context);
2044             break;
2045         }
2046         break;
2047     }
2048     case 0x66: /* GLOBAL CODE PAGE TABLE */
2049         switch (AL_reg(context))
2050         {
2051         case 0x01:
2052             TRACE("GET GLOBAL CODE PAGE TABLE\n");
2053             SET_BX( context, CodePage );
2054             SET_DX( context, CodePage );
2055             RESET_CFLAG(context);
2056             break;
2057         case 0x02:
2058             TRACE("SET GLOBAL CODE PAGE TABLE active page %d system page %d\n",
2059                   BX_reg(context),DX_reg(context));
2060             CodePage = BX_reg(context);
2061             RESET_CFLAG(context);
2062             break;
2063         }
2064         break;
2065
2066     case 0x67: /* SET HANDLE COUNT */
2067         TRACE("SET HANDLE COUNT to %d\n",BX_reg(context) );
2068         SetHandleCount16( BX_reg(context) );
2069         if (GetLastError()) bSetDOSExtendedError = TRUE;
2070         break;
2071
2072     case 0x68: /* "FFLUSH" - COMMIT FILE */
2073     case 0x6a: /* COMMIT FILE */
2074         TRACE("FFLUSH/COMMIT handle %d\n",BX_reg(context));
2075         bSetDOSExtendedError = (!FlushFileBuffers( DosFileHandleToWin32Handle(BX_reg(context)) ));
2076         break;
2077
2078     case 0x69: /* DISK SERIAL NUMBER */
2079         switch (AL_reg(context))
2080         {
2081         case 0x00:
2082             TRACE("GET DISK SERIAL NUMBER for drive %s\n",
2083                   INT21_DriveName(BL_reg(context)));
2084             if (!INT21_GetDiskSerialNumber(context)) bSetDOSExtendedError = TRUE;
2085             else SET_AX( context, 0 );
2086             break;
2087
2088         case 0x01:
2089             TRACE("SET DISK SERIAL NUMBER for drive %s\n",
2090                   INT21_DriveName(BL_reg(context)));
2091             if (!INT21_SetDiskSerialNumber(context)) bSetDOSExtendedError = TRUE;
2092             else SET_AX( context, 1 );
2093             break;
2094         }
2095         break;
2096
2097     case 0x6C: /* Extended Open/Create*/
2098         TRACE("EXTENDED OPEN/CREATE %s\n",
2099               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edi));
2100         bSetDOSExtendedError = INT21_ExtendedOpenCreateFile(context);
2101         break;
2102
2103     case 0x71: /* MS-DOS 7 (Windows95) - LONG FILENAME FUNCTIONS */
2104         if ((GetVersion()&0xC0000004)!=0xC0000004) {
2105             /* not supported on anything but Win95 */
2106             TRACE("LONG FILENAME functions supported only by win95\n");
2107             SET_CFLAG(context);
2108             SET_AL( context, 0 );
2109         } else
2110         switch(AL_reg(context))
2111         {
2112         case 0x39:  /* Create directory */
2113             TRACE("LONG FILENAME - MAKE DIRECTORY %s\n",
2114                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs,context->Edx));
2115             bSetDOSExtendedError = (!CreateDirectoryA(
2116                                         CTX_SEG_OFF_TO_LIN(context,  context->SegDs,
2117                                                   context->Edx ), NULL));
2118             /* FIXME: CreateDirectory's LastErrors will clash with the ones
2119              * used by dos. AH=39 only returns 3 (path not found) and 5 (access
2120              * denied), while CreateDirectory return several ones. remap some of
2121              * them. -Marcus
2122              */
2123             if (bSetDOSExtendedError) {
2124                     switch (GetLastError()) {
2125                     case ERROR_ALREADY_EXISTS:
2126                     case ERROR_FILENAME_EXCED_RANGE:
2127                     case ERROR_DISK_FULL:
2128                             SetLastError(ERROR_ACCESS_DENIED);
2129                             break;
2130                     default: break;
2131                     }
2132             }
2133             break;
2134         case 0x3a:  /* Remove directory */
2135             TRACE("LONG FILENAME - REMOVE DIRECTORY %s\n",
2136                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs,context->Edx));
2137             bSetDOSExtendedError = (!RemoveDirectoryA(
2138                                         CTX_SEG_OFF_TO_LIN(context,  context->SegDs,
2139                                                         context->Edx )));
2140             break;
2141         case 0x43:  /* Get/Set file attributes */
2142           TRACE("LONG FILENAME -EXTENDED GET/SET FILE ATTRIBUTES %s\n",
2143                 (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs,context->Edx));
2144         switch (BL_reg(context))
2145         {
2146         case 0x00: /* Get file attributes */
2147             TRACE("\tretrieve attributes\n");
2148             SET_CX( context, GetFileAttributesA( CTX_SEG_OFF_TO_LIN(context, context->SegDs,
2149                                                                     context->Edx)));
2150             if (CX_reg(context) == 0xffff) bSetDOSExtendedError = TRUE;
2151             break;
2152         case 0x01:
2153             TRACE("\tset attributes 0x%04x\n",CX_reg(context));
2154             bSetDOSExtendedError = (!SetFileAttributesA(
2155                                         CTX_SEG_OFF_TO_LIN(context, context->SegDs,
2156                                                            context->Edx),
2157                                         CX_reg(context)  ) );
2158             break;
2159         default:
2160           FIXME("Unimplemented long file name function:\n");
2161           INT_BARF( context, 0x21 );
2162           SET_CFLAG(context);
2163           SET_AL( context, 0 );
2164           break;
2165         }
2166         break;
2167         case 0x47:  /* Get current directory */
2168             TRACE(" LONG FILENAME - GET CURRENT DIRECTORY for drive %s\n",
2169                   INT21_DriveName(DL_reg(context)));
2170             bSetDOSExtendedError = !INT21_GetCurrentDirectory(context);
2171             break;
2172
2173         case 0x4e:  /* Find first file */
2174             TRACE(" LONG FILENAME - FIND FIRST MATCHING FILE for %s\n",
2175                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context, context->SegDs,context->Edx));
2176             /* FIXME: use attributes in CX */
2177             if ((SET_AX( context, FindFirstFile16(
2178                    CTX_SEG_OFF_TO_LIN(context, context->SegDs,context->Edx),
2179                    (WIN32_FIND_DATAA *)CTX_SEG_OFF_TO_LIN(context, context->SegEs,
2180                                                           context->Edi))))
2181                 == INVALID_HANDLE_VALUE16)
2182                 bSetDOSExtendedError = TRUE;
2183             break;
2184         case 0x4f:  /* Find next file */
2185             TRACE("LONG FILENAME - FIND NEXT MATCHING FILE for handle %d\n",
2186                   BX_reg(context));
2187             if (!FindNextFile16( BX_reg(context),
2188                     (WIN32_FIND_DATAA *)CTX_SEG_OFF_TO_LIN(context, context->SegEs,
2189                                                              context->Edi)))
2190                 bSetDOSExtendedError = TRUE;
2191             break;
2192         case 0xa0:
2193             {
2194                 LPCSTR driveroot = (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs,context->Edx);
2195                 LPSTR buffer = (LPSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegEs,context->Edi);
2196                 DWORD filename_len, flags;
2197
2198                 TRACE("LONG FILENAME - GET VOLUME INFORMATION for drive having root dir '%s'.\n", driveroot);
2199                 SET_AX( context, 0 );
2200                 if (!GetVolumeInformationA( driveroot, NULL, 0, NULL, &filename_len,
2201                                             &flags, buffer, 8 ))
2202                 {
2203                     INT_BARF( context, 0x21 );
2204                     SET_CFLAG(context);
2205                     break;
2206                 }
2207                 SET_BX( context, flags | 0x4000 ); /* support for LFN functions */
2208                 SET_CX( context, filename_len );
2209                 SET_DX( context, MAX_PATH ); /* FIXME: which len if DRIVE_SHORT_NAMES ? */
2210             }
2211             break;
2212         case 0xa1:  /* Find close */
2213             TRACE("LONG FILENAME - FINDCLOSE for handle %d\n",
2214                   BX_reg(context));
2215             bSetDOSExtendedError = (!FindClose16( BX_reg(context) ));
2216             break;
2217         case 0x60:
2218           switch(CL_reg(context))
2219           {
2220             case 0x01:  /* Get short filename or path */
2221               if (!GetShortPathNameA
2222                   ( CTX_SEG_OFF_TO_LIN(context, context->SegDs,
2223                                        context->Esi),
2224                     CTX_SEG_OFF_TO_LIN(context, context->SegEs,
2225                                        context->Edi), 67))
2226                 bSetDOSExtendedError = TRUE;
2227               else SET_AX( context, 0 );
2228               break;
2229             case 0x02:  /* Get canonical long filename or path */
2230               if (!GetFullPathNameA
2231                   ( CTX_SEG_OFF_TO_LIN(context, context->SegDs,
2232                                        context->Esi), 128,
2233                     CTX_SEG_OFF_TO_LIN(context, context->SegEs,
2234                                        context->Edi),NULL))
2235                 bSetDOSExtendedError = TRUE;
2236               else SET_AX( context, 0 );
2237               break;
2238             default:
2239               FIXME("Unimplemented long file name function:\n");
2240               INT_BARF( context, 0x21 );
2241               SET_CFLAG(context);
2242               SET_AL( context, 0 );
2243               break;
2244           }
2245           break;
2246         case 0x6c:  /* Create or open file */
2247             TRACE("LONG FILENAME - CREATE OR OPEN FILE %s\n",
2248                  (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Esi));
2249           /* translate Dos 7 action to Dos 6 action */
2250             bSetDOSExtendedError = INT21_ExtendedOpenCreateFile(context);
2251             break;
2252
2253         case 0x3b:  /* Change directory */
2254             TRACE("LONG FILENAME - CHANGE DIRECTORY %s\n",
2255                  (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx));
2256             if (!SetCurrentDirectoryA(CTX_SEG_OFF_TO_LIN(context,
2257                                                 context->SegDs,
2258                                                 context->Edx
2259                                         ))
2260             ) {
2261                 SET_CFLAG(context);
2262                 SET_AL( context, GetLastError() );
2263             }
2264             break;
2265         case 0x41:  /* Delete file */
2266             TRACE("LONG FILENAME - DELETE FILE %s\n",
2267                  (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx));
2268             if (!DeleteFileA(CTX_SEG_OFF_TO_LIN(context,
2269                                         context->SegDs,
2270                                         context->Edx)
2271             )) {
2272                 SET_CFLAG(context);
2273                 SET_AL( context, GetLastError() );
2274             }
2275             break;
2276         case 0x56:  /* Move (rename) file */
2277             {
2278                 LPCSTR fn1 = (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegDs, context->Edx);
2279                 LPCSTR fn2 = (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  context->SegEs, context->Edi);
2280                 TRACE("LONG FILENAME - RENAME FILE %s to %s\n", fn1, fn2);
2281                 if (!MoveFileA(fn1, fn2))
2282                 {
2283                     SET_CFLAG(context);
2284                     SET_AL( context, GetLastError() );
2285                 }
2286             }
2287             break;
2288         default:
2289             FIXME("Unimplemented long file name function:\n");
2290             INT_BARF( context, 0x21 );
2291             SET_CFLAG(context);
2292             SET_AL( context, 0 );
2293             break;
2294         }
2295         break;
2296
2297     case 0x70: /* MS-DOS 7 (Windows95) - ??? (country-specific?)*/
2298     case 0x72: /* MS-DOS 7 (Windows95) - ??? */
2299         TRACE("windows95 function AX %04x\n",
2300                     AX_reg(context));
2301         WARN("        returning unimplemented\n");
2302         SET_CFLAG(context);
2303         SET_AL( context, 0 );
2304         break;
2305
2306     case 0x73: /* MULTIPLEXED: Win95 OSR2/Win98 FAT32 calls */
2307         TRACE("windows95 function AX %04x\n",
2308                     AX_reg(context));
2309
2310         switch (AL_reg(context))
2311                 {
2312                 case 0x02:      /* Get Extended Drive Parameter Block for specific drive */
2313                                 /* ES:DI points to word with length of data (should be 0x3d) */
2314                         {
2315                                 WORD *buffer;
2316                                 struct EDPB *edpb;
2317                             DWORD cluster_sectors, sector_bytes, free_clusters, total_clusters;
2318                             char root[] = "A:\\";
2319
2320                                 buffer = (WORD *)CTX_SEG_OFF_TO_LIN(context, context->SegEs, context->Edi);
2321
2322                                 TRACE("Get Extended DPB: linear buffer address is %p\n", buffer);
2323
2324                                 /* validate passed-in buffer lengths */
2325                                 if ((*buffer != 0x3d) || (context->Ecx != 0x3f))
2326                                 {
2327                                         WARN("Get Extended DPB: buffer lengths incorrect\n");
2328                                         WARN("CX = %lx, buffer[0] = %x\n", context->Ecx, *buffer);
2329                                         SET_CFLAG(context);
2330                                         SET_AL( context, 0x18 );                /* bad buffer length */
2331                                 }
2332
2333                                 /* buffer checks out */
2334                                 buffer++;               /* skip over length word now */
2335                                 if (FillInDrivePB( DX_reg(context) ) )
2336                                 {
2337                                         edpb = (struct EDPB *)buffer;
2338
2339                                         /* copy down the old-style DPB portion first */
2340                                         memcpy(&edpb->dpb, &heap->dpb, sizeof(struct DPB));
2341
2342                                         /* now fill in the extended entries */
2343                                         edpb->edpb_flags = 0;
2344                                         edpb->next_edpb = 0;
2345                                         edpb->free_cluster = edpb->free_cluster2 = 0;
2346
2347                                         /* determine free disk space */
2348                                     *root += DOS_GET_DRIVE( DX_reg(context) );
2349                                     GetDiskFreeSpaceA( root, &cluster_sectors, &sector_bytes,
2350                               &free_clusters, &total_clusters );
2351
2352                                         edpb->clusters_free = (free_clusters&0xffff);
2353
2354                                         edpb->clusters_free_hi = free_clusters >> 16;
2355                                         edpb->mirroring_flags = 0;
2356                                         edpb->info_sector = 0xffff;
2357                                         edpb->spare_boot_sector = 0xffff;
2358                                         edpb->first_cluster = 0;
2359                                         edpb->max_cluster = total_clusters;
2360                                         edpb->fat_clusters = 32;        /* made-up value */
2361                                         edpb->root_cluster = 0;
2362
2363                                         RESET_CFLAG(context);   /* clear carry */
2364                                         SET_AX( context, 0 );
2365                                 }
2366                                 else
2367                                 {
2368                                     SET_AX( context, 0x00ff );
2369                                     SET_CFLAG(context);
2370                                 }
2371                         }
2372                         break;
2373
2374                 case 0x03:      /* Get Extended free space on drive */
2375                 case 0x04:  /* Set DPB for formatting */
2376                 case 0x05:  /* extended absolute disk read/write */
2377                         FIXME("Unimplemented FAT32 int32 function %04x\n", AX_reg(context));
2378                         SET_CFLAG(context);
2379                         SET_AL( context, 0 );
2380                         break;
2381                 }
2382
2383                 break;
2384
2385
2386     case 0xdc: /* CONNECTION SERVICES - GET CONNECTION NUMBER */
2387     case 0xea: /* NOVELL NETWARE - RETURN SHELL VERSION */
2388         break;
2389
2390     default:
2391         INT_BARF( context, 0x21 );
2392         break;
2393
2394     } /* END OF SWITCH */
2395
2396     if( bSetDOSExtendedError )          /* set general error condition */
2397     {
2398         SET_AX( context, GetLastError() );
2399         SET_CFLAG(context);
2400     }
2401
2402     if ((context->EFlags & 0x0001))
2403         TRACE("failed, error %ld\n", GetLastError() );
2404
2405     TRACE("returning: AX=%04x BX=%04x CX=%04x DX=%04x "
2406                  "SI=%04x DI=%04x DS=%04x ES=%04x EFL=%08lx\n",
2407                  AX_reg(context), BX_reg(context), CX_reg(context),
2408                  DX_reg(context), SI_reg(context), DI_reg(context),
2409                  (WORD)context->SegDs, (WORD)context->SegEs,
2410                  context->EFlags);
2411 }
2412
2413 /***********************************************************************
2414  *              GetSetKernelDOSProc (KERNEL.311)
2415  */
2416 FARPROC16 WINAPI GetSetKernelDOSProc16(FARPROC16 DosProc)
2417 {
2418         FIXME("(DosProc=0x%08x): stub\n", (UINT)DosProc);
2419         return NULL;
2420 }