Release 980104
[wine] / msdos / int21.c
1 /*
2  * DOS interrupt 21h handler
3  */
4
5 #include <time.h>
6 #include <fcntl.h>
7 #include <errno.h>
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <sys/file.h>
11 #include <string.h>
12 #include <sys/stat.h>
13 #include <sys/time.h>
14 #include <sys/types.h>
15 #include <unistd.h>
16 #include <utime.h>
17 #include <ctype.h>
18 #include "windows.h"
19 #include "drive.h"
20 #include "file.h"
21 #include "heap.h"
22 #include "msdos.h"
23 #include "ldt.h"
24 #include "task.h"
25 #include "options.h"
26 #include "miscemu.h"
27 #include "stddebug.h"
28 #include "debug.h"
29 #if defined(__svr4__) || defined(_SCO_DS)
30 /* SVR4 DOESNT do locking the same way must implement properly */
31 #define LOCK_EX 0
32 #define LOCK_SH  1
33 #define LOCK_NB  8
34 #endif
35
36
37 #define DOS_GET_DRIVE(reg) ((reg) ? (reg) - 1 : DRIVE_GetCurrentDrive())
38
39 /* Define the drive parameter block, as used by int21/1F
40  * and int21/32.  This table can be accessed through the
41  * global 'dpb' pointer, which points into the local dos
42  * heap.
43  */
44 struct DPB
45 {
46     BYTE drive_num;         /* 0=A, etc. */
47     BYTE unit_num;          /* Drive's unit number (?) */
48     WORD sector_size;       /* Sector size in bytes */
49     BYTE high_sector;       /* Highest sector in a cluster */
50     BYTE shift;             /* Shift count (?) */
51     WORD reserved;          /* Number of reserved sectors at start */
52     BYTE num_FAT;           /* Number of FATs */
53     WORD dir_entries;       /* Number of root dir entries */
54     WORD first_data;        /* First data sector */
55     WORD high_cluster;      /* Highest cluster number */
56     WORD sectors_in_FAT;    /* Number of sectors per FAT */
57     WORD start_dir;         /* Starting sector of first dir */
58     DWORD driver_head;      /* Address of device driver header (?) */
59     BYTE media_ID;          /* Media ID */
60     BYTE access_flag;       /* Prev. accessed flag (0=yes,0xFF=no) */
61     DWORD next;             /* Pointer to next DPB in list */
62     WORD free_search;       /* Free cluster search start */
63     WORD free_clusters;     /* Number of free clusters (0xFFFF=unknown) */
64 };
65
66 WORD CodePage = 437;
67 DWORD dpbsegptr;
68
69 struct DosHeap {
70         BYTE InDosFlag;
71         BYTE mediaID;
72         BYTE biosdate[8];
73         struct DPB dpb;
74 };
75 static struct DosHeap *heap;
76 static WORD DosHeapHandle;
77
78 WORD sharing_retries = 3;      /* number of retries at sharing violation */
79 WORD sharing_pause = 1;        /* pause between retries */
80
81 extern char TempDirectory[];
82
83 static BOOL32 INT21_CreateHeap(void)
84 {
85     if (!(DosHeapHandle = GlobalAlloc16(GMEM_FIXED,sizeof(struct DosHeap))))
86     {
87         fprintf( stderr, "INT21_Init: Out of memory\n");
88         return FALSE;
89     }
90     heap = (struct DosHeap *) GlobalLock16(DosHeapHandle);
91     dpbsegptr = PTR_SEG_OFF_TO_SEGPTR(DosHeapHandle,(int)&heap->dpb-(int)heap);
92     heap->InDosFlag = 0;
93     strcpy(heap->biosdate, "01/01/80");
94     return TRUE;
95 }
96
97 static BYTE *GetCurrentDTA(void)
98 {
99     TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
100     return (BYTE *)PTR_SEG_TO_LIN( pTask->dta );
101 }
102
103
104 void CreateBPB(int drive, BYTE *data)
105 {
106         if (drive > 1) {
107                 setword(data, 512);
108                 data[2] = 2;
109                 setword(&data[3], 0);
110                 data[5] = 2;
111                 setword(&data[6], 240);
112                 setword(&data[8], 64000);
113                 data[0x0a] = 0xf8;
114                 setword(&data[0x0b], 40);
115                 setword(&data[0x0d], 56);
116                 setword(&data[0x0f], 2);
117                 setword(&data[0x11], 0);
118                 setword(&data[0x1f], 800);
119                 data[0x21] = 5;
120                 setword(&data[0x22], 1);
121         } else { /* 1.44mb */
122                 setword(data, 512);
123                 data[2] = 2;
124                 setword(&data[3], 0);
125                 data[5] = 2;
126                 setword(&data[6], 240);
127                 setword(&data[8], 2880);
128                 data[0x0a] = 0xf8;
129                 setword(&data[0x0b], 6);
130                 setword(&data[0x0d], 18);
131                 setword(&data[0x0f], 2);
132                 setword(&data[0x11], 0);
133                 setword(&data[0x1f], 80);
134                 data[0x21] = 7;
135                 setword(&data[0x22], 2);
136         }       
137 }
138
139 static int INT21_GetFreeDiskSpace( CONTEXT *context )
140 {
141     DWORD cluster_sectors, sector_bytes, free_clusters, total_clusters;
142     char root[] = "A:\\";
143
144     *root += DOS_GET_DRIVE( DL_reg(context) );
145     if (!GetDiskFreeSpace32A( root, &cluster_sectors, &sector_bytes,
146                               &free_clusters, &total_clusters )) return 0;
147     AX_reg(context) = cluster_sectors;
148     BX_reg(context) = free_clusters;
149     CX_reg(context) = sector_bytes;
150     DX_reg(context) = total_clusters;
151     return 1;
152 }
153
154 static int INT21_GetDriveAllocInfo( CONTEXT *context )
155 {
156     if (!INT21_GetFreeDiskSpace( context )) return 0;
157     if (!heap && !INT21_CreateHeap()) return 0;
158     heap->mediaID = 0xf0;
159     DS_reg(context) = DosHeapHandle;
160     BX_reg(context) = (int)&heap->mediaID - (int)heap;
161     return 1;
162 }
163
164 static void GetDrivePB( CONTEXT *context, int drive )
165 {
166         if(!DRIVE_IsValid(drive))
167         {
168             DOS_ERROR( ER_InvalidDrive, EC_MediaError, SA_Abort, EL_Disk );
169             AX_reg(context) = 0x00ff;
170         }
171         else if (heap || INT21_CreateHeap())
172         {
173                 dprintf_int(stddeb, "int21: GetDrivePB not fully implemented.\n");
174
175                 /* FIXME: I have no idea what a lot of this information should
176                  * say or whether it even really matters since we're not allowing
177                  * direct block access.  However, some programs seem to depend on
178                  * getting at least _something_ back from here.  The 'next' pointer
179                  * does worry me, though.  Should we have a complete table of
180                  * separate DPBs per drive?  Probably, but I'm lazy. :-)  -CH
181                  */
182                 heap->dpb.drive_num = heap->dpb.unit_num = drive; /*The same?*/
183                 heap->dpb.sector_size = 512;
184                 heap->dpb.high_sector = 1;
185                 heap->dpb.shift = drive < 2 ? 0 : 6; /*6 for HD, 0 for floppy*/
186                 heap->dpb.reserved = 0;
187                 heap->dpb.num_FAT = 1;
188                 heap->dpb.dir_entries = 2;
189                 heap->dpb.first_data = 2;
190                 heap->dpb.high_cluster = 64000;
191                 heap->dpb.sectors_in_FAT = 1;
192                 heap->dpb.start_dir = 1;
193                 heap->dpb.driver_head = 0;
194                 heap->dpb.media_ID = (drive > 1) ? 0xF8 : 0xF0;
195                 heap->dpb.access_flag = 0;
196                 heap->dpb.next = 0;
197                 heap->dpb.free_search = 0;
198                 heap->dpb.free_clusters = 0xFFFF;    /* unknown */
199
200                 AL_reg(context) = 0x00;
201                 DS_reg(context) = SELECTOROF(dpbsegptr);
202                 BX_reg(context) = OFFSETOF(dpbsegptr);
203         }
204 }
205
206
207 static void ioctlGetDeviceInfo( CONTEXT *context )
208 {
209     int curr_drive;
210     dprintf_int (stddeb, "int21: ioctl (%d, GetDeviceInfo)\n", BX_reg(context));
211     
212     curr_drive = DRIVE_GetCurrentDrive();
213     DX_reg(context) = 0x0140 + curr_drive + ((curr_drive > 1) ? 0x0800 : 0); /* no floppy */
214     /* bits 0-5 are current drive
215      * bit 6 - file has NOT been written..FIXME: correct?
216      * bit 8 - generate int24 if no diskspace on write/ read past end of file
217      * bit 11 - media not removable
218      */
219     RESET_CFLAG(context);
220 }
221
222 static BOOL32 ioctlGenericBlkDevReq( CONTEXT *context )
223 {
224         BYTE *dataptr = PTR_SEG_OFF_TO_LIN(DS_reg(context), DX_reg(context));
225         int drive = DOS_GET_DRIVE( BL_reg(context) );
226
227         if (!DRIVE_IsValid(drive))
228         {
229             DOS_ERROR( ER_FileNotFound, EC_NotFound, SA_Abort, EL_Disk );
230             return TRUE;
231         }
232
233         if (CH_reg(context) != 0x08)
234         {
235             INT_BARF( context, 0x21 );
236             return FALSE;
237         }
238
239         switch (CL_reg(context)) 
240         {
241                 case 0x4a: /* lock logical volume */
242                         dprintf_int(stddeb,"int21: lock logical volume (%d) level %d mode %d\n",drive,BH_reg(context),DX_reg(context));
243                         break;
244
245                 case 0x60: /* get device parameters */
246                            /* used by w4wgrp's winfile */
247                         memset(dataptr, 0, 0x26);
248                         dataptr[0] = 0x04;
249                         dataptr[6] = 0; /* media type */
250                         if (drive > 1) 
251                         {
252                                 dataptr[1] = 0x05; /* fixed disk */
253                                 setword(&dataptr[2], 0x01); /* non removable */
254                                 setword(&dataptr[4], 0x300); /* # of cylinders */
255                         }
256                         else
257                         {
258                                 dataptr[1] = 0x07; /* block dev, floppy */
259                                 setword(&dataptr[2], 0x02); /* removable */
260                                 setword(&dataptr[4], 80); /* # of cylinders */
261                         }
262                         CreateBPB(drive, &dataptr[7]);                  
263                         RESET_CFLAG(context);
264                         break;
265
266                 case 0x66:/*  get disk serial number */
267                         {       
268                                 char    label[12],fsname[9],path[4];
269                                 DWORD   serial;
270
271                                 strcpy(path,"x:\\");path[0]=drive+'A';
272                                 GetVolumeInformation32A(
273                                         path,label,12,&serial,NULL,NULL,fsname,9
274                                 );
275                                 *(WORD*)dataptr         = 0;
276                                 memcpy(dataptr+2,&serial,4);
277                                 memcpy(dataptr+6,label  ,11);
278                                 memcpy(dataptr+17,fsname,8);
279                         }
280                         break;
281
282                 case 0x6a:
283                         dprintf_int(stddeb,"int21: logical volume %d unlocked.\n",drive);
284                         break;
285
286                 default:
287                         INT_BARF( context, 0x21 );
288         }
289         return FALSE;
290 }
291
292 static void INT21_GetSystemDate( CONTEXT *context )
293 {
294     SYSTEMTIME systime;
295     GetLocalTime( &systime );
296     CX_reg(context) = systime.wYear;
297     DX_reg(context) = (systime.wMonth << 8) | systime.wDay;
298     AX_reg(context) = systime.wDayOfWeek;
299 }
300
301 static void INT21_GetSystemTime( CONTEXT *context )
302 {
303     SYSTEMTIME systime;
304     GetLocalTime( &systime );
305     CX_reg(context) = (systime.wHour << 8) | systime.wMinute;
306     DX_reg(context) = (systime.wSecond << 8) | (systime.wMilliseconds / 10);
307 }
308
309 static BOOL32 INT21_CreateFile( CONTEXT *context )
310 {
311     AX_reg(context) = _lcreat16( PTR_SEG_OFF_TO_LIN( DS_reg(context),
312                                           DX_reg(context) ), CX_reg(context) );
313     return (AX_reg(context) == (WORD)HFILE_ERROR16);
314 }
315
316
317 static void OpenExistingFile( CONTEXT *context )
318 {
319     AX_reg(context) = _lopen16( PTR_SEG_OFF_TO_LIN(DS_reg(context),DX_reg(context)),
320                               AL_reg(context) );
321     if (AX_reg(context) == (WORD)HFILE_ERROR16)
322     {
323         AX_reg(context) = DOS_ExtendedError;
324         SET_CFLAG(context);
325     }
326 #if 0
327     {
328         int handle;
329         int mode;
330         int lock;
331
332         switch (AX_reg(context) & 0x0070)
333         {
334           case 0x00:    /* compatability mode */
335           case 0x40:    /* DENYNONE */
336             lock = -1;
337             break;
338
339           case 0x30:    /* DENYREAD */
340             dprintf_int(stddeb,
341               "OpenExistingFile (%s): DENYREAD changed to DENYALL\n",
342               (char *)PTR_SEG_OFF_TO_LIN(DS_reg(context),DX_reg(context)));
343           case 0x10:    /* DENYALL */  
344             lock = LOCK_EX;
345             break;
346
347           case 0x20:    /* DENYWRITE */
348             lock = LOCK_SH;
349             break;
350
351           default:
352             lock = -1;
353         }
354
355         if (lock != -1)
356         {
357
358           int result,retries=sharing_retries;
359           {
360 #if defined(__svr4__) || defined(_SCO_DS)
361               printf("Should call flock and needs porting to lockf\n");
362               result = 0;
363               retries = 0;
364 #else
365             result = flock(handle, lock | LOCK_NB);
366 #endif
367             if ( retries && (!result) )
368             {
369               int i;
370               for(i=0;i<32768*((int)sharing_pause);i++)
371                   result++;                          /* stop the optimizer */
372               for(i=0;i<32768*((int)sharing_pause);i++)
373                   result--;
374             }
375           }
376           while( (!result) && (!(retries--)) );
377
378           if(result)  
379           {
380             errno_to_doserr();
381             AX_reg(context) = DOS_ExtendedError;
382             close(handle);
383             SET_CFLAG(context);
384             return;
385           }
386
387         }
388
389         Error (0,0,0);
390         AX_reg(context) = handle;
391         RESET_CFLAG(context);
392     }
393 #endif
394 }
395
396 static void CloseFile( CONTEXT *context )
397 {
398     if ((AX_reg(context) = _lclose16( BX_reg(context) )) != 0)
399     {
400         AX_reg(context) = DOS_ExtendedError;
401         SET_CFLAG(context);
402     }
403 }
404
405 static BOOL32 INT21_ExtendedOpenCreateFile(CONTEXT *context )
406 {
407   BOOL32 bExtendedError = FALSE;
408   BYTE action = DL_reg(context);
409
410   /* Shuffle arguments to call OpenExistingFile */
411   AL_reg(context) = BL_reg(context);
412   DX_reg(context) = SI_reg(context);
413   /* BX,CX and DX should be preserved */
414   OpenExistingFile(context);
415
416   if ((EFL_reg(context) & 0x0001) == 0) /* File exists */
417   {
418       UINT16    uReturnCX = 0;
419
420       /* Now decide what do do */
421
422       if ((action & 0x07) == 0)
423       {
424           BX_reg(context) = AX_reg(context);
425           CloseFile(context);
426           AX_reg(context) = 0x0050;     /*File exists*/
427           SET_CFLAG(context);
428           dprintf_int(stddeb, "int21: extended open/create: failed because file exists \n");
429       }
430       else if ((action & 0x07) == 2) 
431       {
432         /* Truncate it, but first check if opened for write */
433         if ((BL_reg(context) & 0x0007)== 0) 
434         {
435                   BX_reg(context) = AX_reg(context);
436                   CloseFile(context);
437                   dprintf_int(stddeb, "int21: extended open/create: failed, trunc on ro file");
438                   AX_reg(context) = 0x000C;     /*Access code invalid*/
439                   SET_CFLAG(context);
440         }
441         else
442         {
443                 /* Shuffle arguments to call CloseFile while
444                  * preserving BX and DX */
445
446                 dprintf_int(stddeb, "int21: extended open/create: Closing before truncate\n");
447                 BX_reg(context) = AX_reg(context);
448                 CloseFile(context);
449                 if (EFL_reg(context) & 0x0001) 
450                 {
451                    dprintf_int(stddeb, "int21: extended open/create: close before trunc failed");
452                    AX_reg(context) = 0x0019;    /*Seek Error*/
453                    CX_reg(context) = 0;
454                    SET_CFLAG(context);
455                 }
456                 /* Shuffle arguments to call CreateFile */
457
458                 dprintf_int(stddeb, "int21: extended open/create: Truncating\n");
459                 AL_reg(context) = BL_reg(context);
460                 /* CX is still the same */
461                 DX_reg(context) = SI_reg(context);
462                 bExtendedError = INT21_CreateFile(context);
463
464                 if (EFL_reg(context) & 0x0001)  /*no file open, flags set */
465                 {
466                     dprintf_int(stddeb, "int21: extended open/create: trunc failed");
467                     return bExtendedError;
468                 }
469                 uReturnCX = 0x3;
470         }
471       } 
472       else uReturnCX = 0x1;
473
474       CX_reg(context) = uReturnCX;
475   }
476   else /* file does not exist */
477   {
478       RESET_CFLAG(context); /* was set by OpenExistingFile(context) */
479       if ((action & 0xF0)== 0)
480       {
481         CX_reg(context) = 0;
482         SET_CFLAG(context);
483         dprintf_int(stddeb, "int21: extended open/create: failed, file dosen't exist\n");
484       }
485       else
486       {
487         /* Shuffle arguments to call CreateFile */
488         dprintf_int(stddeb, "int21: extended open/create: Creating\n");
489         AL_reg(context) = BL_reg(context);
490         /* CX should still be the same */
491         DX_reg(context) = SI_reg(context);
492         bExtendedError = INT21_CreateFile(context);
493         if (EFL_reg(context) & 0x0001)  /*no file open, flags set */
494         {
495             dprintf_int(stddeb, "int21: extended open/create: create failed\n");
496             return bExtendedError;
497         }
498         CX_reg(context) = 2;
499       }
500   }
501
502   return bExtendedError;
503 }
504
505
506 static BOOL32 INT21_ChangeDir( CONTEXT *context )
507 {
508     int drive;
509     char *dirname = PTR_SEG_OFF_TO_LIN(DS_reg(context),DX_reg(context));
510
511     dprintf_int(stddeb,"int21: changedir %s\n", dirname);
512     if (dirname[0] && (dirname[1] == ':'))
513     {
514         drive = toupper(dirname[0]) - 'A';
515         dirname += 2;
516     }
517     else drive = DRIVE_GetCurrentDrive();
518     return DRIVE_Chdir( drive, dirname );
519 }
520
521
522 static int INT21_FindFirst( CONTEXT *context )
523 {
524     char *p;
525     const char *path;
526     DOS_FULL_NAME full_name;
527     FINDFILE_DTA *dta = (FINDFILE_DTA *)GetCurrentDTA();
528
529     path = (const char *)PTR_SEG_OFF_TO_LIN(DS_reg(context), DX_reg(context));
530     dta->unixPath = NULL;
531     if (!DOSFS_GetFullName( path, FALSE, &full_name ))
532     {
533         AX_reg(context) = DOS_ExtendedError;
534         SET_CFLAG(context);
535         return 0;
536     }
537     dta->unixPath = HEAP_strdupA( GetProcessHeap(), 0, full_name.long_name );
538     p = strrchr( dta->unixPath, '/' );
539     *p = '\0';
540
541     /* Note: terminating NULL in dta->mask overwrites dta->search_attr
542      *       (doesn't matter as it is set below anyway)
543      */
544     if (!DOSFS_ToDosFCBFormat( p + 1, dta->mask ))
545     {
546         HeapFree( GetProcessHeap(), 0, dta->unixPath );
547         dta->unixPath = NULL;
548         DOS_ERROR( ER_FileNotFound, EC_NotFound, SA_Abort, EL_Disk );
549         AX_reg(context) = ER_FileNotFound;
550         SET_CFLAG(context);
551         return 0;
552     }
553     dta->drive = (path[0] && (path[1] == ':')) ? toupper(path[0]) - 'A'
554                                                : DRIVE_GetCurrentDrive();
555     dta->count = 0;
556     dta->search_attr = CL_reg(context);
557     return 1;
558 }
559
560
561 static int INT21_FindNext( CONTEXT *context )
562 {
563     FINDFILE_DTA *dta = (FINDFILE_DTA *)GetCurrentDTA();
564     WIN32_FIND_DATA32A entry;
565     int count;
566
567     if (!dta->unixPath) return 0;
568     if (!(count = DOSFS_FindNext( dta->unixPath, dta->mask, NULL, dta->drive,
569                                   dta->search_attr, dta->count, &entry )))
570     {
571         HeapFree( GetProcessHeap(), 0, dta->unixPath );
572         dta->unixPath = NULL;
573         return 0;
574     }
575     if ((int)dta->count + count > 0xffff)
576     {
577         fprintf( stderr, "Too many directory entries in %s\n", dta->unixPath );
578         HeapFree( GetProcessHeap(), 0, dta->unixPath );
579         dta->unixPath = NULL;
580         return 0;
581     }
582     dta->count += count;
583     dta->fileattr = entry.dwFileAttributes;
584     dta->filesize = entry.nFileSizeLow;
585     FileTimeToDosDateTime( &entry.ftLastWriteTime,
586                            &dta->filedate, &dta->filetime );
587     strcpy( dta->filename, entry.cAlternateFileName );
588     return 1;
589 }
590
591
592 static BOOL32 INT21_CreateTempFile( CONTEXT *context )
593 {
594     static int counter = 0;
595     char *name = PTR_SEG_OFF_TO_LIN( DS_reg(context), DX_reg(context) );
596     char *p = name + strlen(name);
597
598     for (;;)
599     {
600         sprintf( p, "wine%04x.%03d", (int)getpid(), counter );
601         counter = (counter + 1) % 1000;
602
603         if ((AX_reg(context) = _lcreat_uniq( name, 0 )) != (WORD)HFILE_ERROR16)
604         {
605             dprintf_int( stddeb, "INT21_CreateTempFile: created %s\n", name );
606             return TRUE;
607         }
608         if (DOS_ExtendedError != ER_FileExists) return FALSE;
609     }
610 }
611
612
613 static BOOL32 INT21_GetCurrentDirectory( CONTEXT *context ) 
614 {
615     int drive = DOS_GET_DRIVE( DL_reg(context) );
616     char *ptr = (char *)PTR_SEG_OFF_TO_LIN( DS_reg(context), SI_reg(context) );
617
618     if (!DRIVE_IsValid(drive))
619     {
620         DOS_ERROR( ER_InvalidDrive, EC_NotFound, SA_Abort, EL_Disk );
621         return FALSE;
622     }
623     lstrcpyn32A( ptr, DRIVE_GetDosCwd(drive), 64 );
624     AX_reg(context) = 0x0100;                        /* success return code */
625     return TRUE;
626 }
627
628
629 static int INT21_GetDiskSerialNumber( CONTEXT *context )
630 {
631     BYTE *dataptr = PTR_SEG_OFF_TO_LIN(DS_reg(context), DX_reg(context));
632     int drive = DOS_GET_DRIVE( BL_reg(context) );
633         
634     if (!DRIVE_IsValid(drive))
635     {
636         DOS_ERROR( ER_InvalidDrive, EC_NotFound, SA_Abort, EL_Disk );
637         return 0;
638     }
639     
640     *(WORD *)dataptr = 0;
641     *(DWORD *)(dataptr + 2) = DRIVE_GetSerialNumber( drive );
642     memcpy( dataptr + 6, DRIVE_GetLabel( drive ), 11 );
643     strncpy(dataptr + 0x11, "FAT16   ", 8);
644     return 1;
645 }
646
647
648 static int INT21_SetDiskSerialNumber( CONTEXT *context )
649 {
650     BYTE *dataptr = PTR_SEG_OFF_TO_LIN(DS_reg(context), DX_reg(context));
651     int drive = DOS_GET_DRIVE( BL_reg(context) );
652
653     if (!DRIVE_IsValid(drive))
654     {
655         DOS_ERROR( ER_InvalidDrive, EC_NotFound, SA_Abort, EL_Disk );
656         return 0;
657     }
658
659     DRIVE_SetSerialNumber( drive, *(DWORD *)(dataptr + 2) );
660     return 1;
661 }
662
663
664 /* microsoft's programmers should be shot for using CP/M style int21
665    calls in Windows for Workgroup's winfile.exe */
666
667 static int INT21_FindFirstFCB( CONTEXT *context )
668 {
669     BYTE *fcb = (BYTE *)PTR_SEG_OFF_TO_LIN(DS_reg(context), DX_reg(context));
670     FINDFILE_FCB *pFCB;
671     LPCSTR root, cwd;
672     int drive;
673
674     if (*fcb == 0xff) pFCB = (FINDFILE_FCB *)(fcb + 7);
675     else pFCB = (FINDFILE_FCB *)fcb;
676     drive = DOS_GET_DRIVE( pFCB->drive );
677     root = DRIVE_GetRoot( drive );
678     cwd  = DRIVE_GetUnixCwd( drive );
679     pFCB->unixPath = HeapAlloc( GetProcessHeap(), 0,
680                                 strlen(root)+strlen(cwd)+2 );
681     if (!pFCB->unixPath) return 0;
682     strcpy( pFCB->unixPath, root );
683     strcat( pFCB->unixPath, "/" );
684     strcat( pFCB->unixPath, cwd );
685     pFCB->count = 0;
686     return 1;
687 }
688
689
690 static int INT21_FindNextFCB( CONTEXT *context )
691 {
692     BYTE *fcb = (BYTE *)PTR_SEG_OFF_TO_LIN(DS_reg(context), DX_reg(context));
693     FINDFILE_FCB *pFCB;
694     DOS_DIRENTRY_LAYOUT *pResult = (DOS_DIRENTRY_LAYOUT *)GetCurrentDTA();
695     WIN32_FIND_DATA32A entry;
696     BYTE attr;
697     int count;
698
699     if (*fcb == 0xff) /* extended FCB ? */
700     {
701         attr = fcb[6];
702         pFCB = (FINDFILE_FCB *)(fcb + 7);
703     }
704     else
705     {
706         attr = 0;
707         pFCB = (FINDFILE_FCB *)fcb;
708     }
709
710     if (!pFCB->unixPath) return 0;
711     if (!(count = DOSFS_FindNext( pFCB->unixPath, pFCB->filename, NULL,
712                                   DOS_GET_DRIVE( pFCB->drive ), attr,
713                                   pFCB->count, &entry )))
714     {
715         HeapFree( GetProcessHeap(), 0, pFCB->unixPath );
716         pFCB->unixPath = NULL;
717         return 0;
718     }
719     pFCB->count += count;
720
721     if (*fcb == 0xff) { /* place extended FCB header before pResult if called with extended FCB */
722         *(BYTE *)pResult = 0xff;
723         (BYTE *)pResult +=6; /* leave reserved field behind */
724         *(BYTE *)pResult = entry.dwFileAttributes;
725         ((BYTE *)pResult)++;
726     }
727     *(BYTE *)pResult = DOS_GET_DRIVE( pFCB->drive ); /* DOS_DIRENTRY_LAYOUT after current drive number */
728     ((BYTE *)pResult)++;
729     pResult->fileattr = entry.dwFileAttributes;
730     pResult->cluster  = 0;  /* what else? */
731     pResult->filesize = entry.nFileSizeLow;
732     memset( pResult->reserved, 0, sizeof(pResult->reserved) );
733     FileTimeToDosDateTime( &entry.ftLastWriteTime,
734                            &pResult->filedate, &pResult->filetime );
735
736     /* Convert file name to FCB format */
737
738     memset( pResult->filename, ' ', sizeof(pResult->filename) );
739     if (!strcmp( entry.cAlternateFileName, "." )) pResult->filename[0] = '.';
740     else if (!strcmp( entry.cAlternateFileName, ".." ))
741         pResult->filename[0] = pResult->filename[1] = '.';
742     else
743     {
744         char *p = strrchr( entry.cAlternateFileName, '.' );
745         if (p && p[1] && (p != entry.cAlternateFileName))
746         {
747             memcpy( pResult->filename, entry.cAlternateFileName,
748                     MIN( (p - entry.cAlternateFileName), 8 ) );
749             memcpy( pResult->filename + 8, p + 1, MIN( strlen(p), 3 ) );
750         }
751         else
752             memcpy( pResult->filename, entry.cAlternateFileName,
753                     MIN( strlen(entry.cAlternateFileName), 8 ) );
754     }
755     return 1;
756 }
757
758
759 static void DeleteFileFCB( CONTEXT *context )
760 {
761     fprintf( stderr, "DeleteFileFCB: not implemented yet\n" );
762 }
763
764 static void RenameFileFCB( CONTEXT *context )
765 {
766     fprintf( stderr, "RenameFileFCB: not implemented yet\n" );
767 }
768
769
770
771 static void fLock( CONTEXT * context )
772 {
773
774     switch ( AX_reg(context) & 0xff )
775     {
776         case 0x00: /* LOCK */
777           if (!LockFile(BX_reg(context),
778                         MAKELONG(DX_reg(context),CX_reg(context)), 0,
779                         MAKELONG(DI_reg(context),SI_reg(context)), 0)) {
780             AX_reg(context) = DOS_ExtendedError;
781             SET_CFLAG(context);
782           }
783           break;
784
785         case 0x01: /* UNLOCK */
786           if (!UnlockFile(BX_reg(context),
787                           MAKELONG(DX_reg(context),CX_reg(context)), 0,
788                           MAKELONG(DI_reg(context),SI_reg(context)), 0)) {
789             AX_reg(context) = DOS_ExtendedError;
790             SET_CFLAG(context);
791           }
792           return;
793         default:
794           AX_reg(context) = 0x0001;
795           SET_CFLAG(context);
796           return;
797      }
798
799
800
801 extern void LOCAL_PrintHeap (WORD ds);
802
803 /***********************************************************************
804  *           DOS3Call  (KERNEL.102)
805  */
806 void WINAPI DOS3Call( CONTEXT *context )
807 {
808     BOOL32      bSetDOSExtendedError = FALSE;
809
810     dprintf_int( stddeb, "int21: AX=%04x BX=%04x CX=%04x DX=%04x "
811                  "SI=%04x DI=%04x DS=%04x ES=%04x EFL=%08lx\n",
812                  AX_reg(context), BX_reg(context), CX_reg(context),
813                  DX_reg(context), SI_reg(context), DI_reg(context),
814                  (WORD)DS_reg(context), (WORD)ES_reg(context),
815                  EFL_reg(context) );
816
817     if (AH_reg(context) == 0x59)  /* Get extended error info */
818     {
819         AX_reg(context) = DOS_ExtendedError;
820         BH_reg(context) = DOS_ErrorClass;
821         BL_reg(context) = DOS_ErrorAction;
822         CH_reg(context) = DOS_ErrorLocus;
823         return;
824     }
825
826     DOS_ERROR( 0, 0, 0, 0 );
827     RESET_CFLAG(context);  /* Not sure if this is a good idea */
828
829     switch(AH_reg(context)) 
830     {
831     case 0x00: /* TERMINATE PROGRAM */
832         TASK_KillCurrentTask( 0 );
833         break;
834
835     case 0x01: /* READ CHARACTER FROM STANDARD INPUT, WITH ECHO */
836     case 0x02: /* WRITE CHARACTER TO STANDARD OUTPUT */
837     case 0x03: /* READ CHARACTER FROM STDAUX  */
838     case 0x04: /* WRITE CHARACTER TO STDAUX */
839     case 0x05: /* WRITE CHARACTER TO PRINTER */
840     case 0x06: /* DIRECT CONSOLE IN/OUTPUT */
841     case 0x07: /* DIRECT CHARACTER INPUT, WITHOUT ECHO */
842     case 0x08: /* CHARACTER INPUT WITHOUT ECHO */
843     case 0x09: /* WRITE STRING TO STANDARD OUTPUT */
844     case 0x0a: /* BUFFERED INPUT */
845     case 0x0b: /* GET STDIN STATUS */
846     case 0x0c: /* FLUSH BUFFER AND READ STANDARD INPUT */
847     case 0x0f: /* OPEN FILE USING FCB */
848     case 0x10: /* CLOSE FILE USING FCB */
849     case 0x14: /* SEQUENTIAL READ FROM FCB FILE */              
850     case 0x15: /* SEQUENTIAL WRITE TO FCB FILE */
851     case 0x16: /* CREATE OR TRUNCATE FILE USING FCB */
852     case 0x21: /* READ RANDOM RECORD FROM FCB FILE */
853     case 0x22: /* WRITE RANDOM RECORD TO FCB FILE */
854     case 0x23: /* GET FILE SIZE FOR FCB */
855     case 0x24: /* SET RANDOM RECORD NUMBER FOR FCB */
856     case 0x26: /* CREATE NEW PROGRAM SEGMENT PREFIX */
857     case 0x27: /* RANDOM BLOCK READ FROM FCB FILE */
858     case 0x28: /* RANDOM BLOCK WRITE TO FCB FILE */
859     case 0x29: /* PARSE FILENAME INTO FCB */
860     case 0x37: /* "SWITCHAR" - GET SWITCH CHARACTER
861                   "SWITCHAR" - SET SWITCH CHARACTER
862                   "AVAILDEV" - SPECIFY \DEV\ PREFIX USE */
863     case 0x54: /* GET VERIFY FLAG */
864         INT_BARF( context, 0x21 );
865         break;
866     case 0x2e: /* SET VERIFY FLAG */
867         /* we cannot change the behaviour anyway, so just ignore it */
868         break;
869
870     case 0x18: /* NULL FUNCTIONS FOR CP/M COMPATIBILITY */
871     case 0x1d:
872     case 0x1e:
873     case 0x20:
874     case 0x6b: /* NULL FUNCTION */
875         AL_reg(context) = 0;
876         break;
877         
878     case 0x5c: /* "FLOCK" - RECORD LOCKING */
879         fLock(context);
880         break;
881
882     case 0x0d: /* DISK BUFFER FLUSH */
883         RESET_CFLAG(context); /* dos 6+ only */
884         break;
885
886     case 0x0e: /* SELECT DEFAULT DRIVE */
887         DRIVE_SetCurrentDrive( DL_reg(context) );
888         AL_reg(context) = MAX_DOS_DRIVES;
889         break;
890
891     case 0x11: /* FIND FIRST MATCHING FILE USING FCB */
892         if (!INT21_FindFirstFCB(context))
893         {
894             AL_reg(context) = 0xff;
895             break;
896         }
897         /* else fall through */
898
899     case 0x12: /* FIND NEXT MATCHING FILE USING FCB */
900         AL_reg(context) = INT21_FindNextFCB(context) ? 0x00 : 0xff;
901         break;
902
903     case 0x13: /* DELETE FILE USING FCB */
904         DeleteFileFCB(context);
905         break;
906             
907     case 0x17: /* RENAME FILE USING FCB */
908         RenameFileFCB(context);
909         break;
910
911     case 0x19: /* GET CURRENT DEFAULT DRIVE */
912         AL_reg(context) = DRIVE_GetCurrentDrive();
913         break;
914
915     case 0x1a: /* SET DISK TRANSFER AREA ADDRESS */
916         {
917             TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
918             pTask->dta = PTR_SEG_OFF_TO_SEGPTR(DS_reg(context),DX_reg(context));
919             dprintf_int(stddeb, "int21: Set DTA: %08lx\n", pTask->dta);
920         }
921         break;
922
923     case 0x1b: /* GET ALLOCATION INFORMATION FOR DEFAULT DRIVE */
924         DL_reg(context) = 0;
925         if (!INT21_GetDriveAllocInfo(context)) AX_reg(context) = 0xffff;
926         break;
927         
928     case 0x1c: /* GET ALLOCATION INFORMATION FOR SPECIFIC DRIVE */
929         if (!INT21_GetDriveAllocInfo(context)) AX_reg(context) = 0xffff;
930         break;
931
932     case 0x1f: /* GET DRIVE PARAMETER BLOCK FOR DEFAULT DRIVE */
933         GetDrivePB(context, DRIVE_GetCurrentDrive());
934         break;
935                 
936     case 0x25: /* SET INTERRUPT VECTOR */
937         INT_SetHandler( AL_reg(context),
938                         (FARPROC16)PTR_SEG_OFF_TO_SEGPTR( DS_reg(context),
939                                                           DX_reg(context)));
940         break;
941
942     case 0x2a: /* GET SYSTEM DATE */
943         INT21_GetSystemDate(context);
944         break;
945
946     case 0x2b: /* SET SYSTEM DATE */
947         fprintf( stdnimp, "SetSystemDate(%02d/%02d/%04d): not allowed\n",
948                  DL_reg(context), DH_reg(context), CX_reg(context) );
949         AL_reg(context) = 0;  /* Let's pretend we succeeded */
950         break;
951
952     case 0x2c: /* GET SYSTEM TIME */
953         INT21_GetSystemTime(context);
954         break;
955
956     case 0x2d: /* SET SYSTEM TIME */
957         fprintf( stdnimp, "SetSystemTime(%02d:%02d:%02d.%02d): not allowed\n",
958                  CH_reg(context), CL_reg(context),
959                  DH_reg(context), DL_reg(context) );
960         AL_reg(context) = 0;  /* Let's pretend we succeeded */
961         break;
962
963     case 0x2f: /* GET DISK TRANSFER AREA ADDRESS */
964         {
965             TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
966             ES_reg(context) = SELECTOROF( pTask->dta );
967             BX_reg(context) = OFFSETOF( pTask->dta );
968         }
969         break;
970             
971     case 0x30: /* GET DOS VERSION */
972         AX_reg(context) = (HIWORD(GetVersion16()) >> 8) |
973                           (HIWORD(GetVersion16()) << 8);
974         BX_reg(context) = 0x0012;     /* 0x123456 is Wine's serial # */
975         CX_reg(context) = 0x3456;
976         break;
977
978     case 0x31: /* TERMINATE AND STAY RESIDENT */
979         INT_BARF( context, 0x21 );
980         break;
981
982     case 0x32: /* GET DOS DRIVE PARAMETER BLOCK FOR SPECIFIC DRIVE */
983         GetDrivePB(context, DOS_GET_DRIVE( DL_reg(context) ) );
984         break;
985
986     case 0x33: /* MULTIPLEXED */
987         switch (AL_reg(context))
988         {
989               case 0x00: /* GET CURRENT EXTENDED BREAK STATE */
990                 DL_reg(context) = 0;
991                 break;
992
993               case 0x01: /* SET EXTENDED BREAK STATE */
994                 break;          
995                 
996               case 0x02: /* GET AND SET EXTENDED CONTROL-BREAK CHECKING STATE*/
997                 DL_reg(context) = 0;
998                 break;
999
1000               case 0x05: /* GET BOOT DRIVE */
1001                 DL_reg(context) = 3;
1002                 /* c: is Wine's bootdrive (a: is 1)*/
1003                 break;
1004                                 
1005               case 0x06: /* GET TRUE VERSION NUMBER */
1006                 BX_reg(context) = (HIWORD(GetVersion16() >> 8)) |
1007                                   (HIWORD(GetVersion16() << 8));
1008                 DX_reg(context) = 0x00;
1009                 break;
1010
1011               default:
1012                 INT_BARF( context, 0x21 );
1013                 break;                  
1014         }
1015         break;  
1016             
1017     case 0x34: /* GET ADDRESS OF INDOS FLAG */
1018         if (!heap) INT21_CreateHeap();
1019         ES_reg(context) = DosHeapHandle;
1020         BX_reg(context) = (int)&heap->InDosFlag - (int)heap;
1021         break;
1022
1023     case 0x35: /* GET INTERRUPT VECTOR */
1024         {
1025             FARPROC16 addr = INT_GetHandler( AL_reg(context) );
1026             ES_reg(context) = SELECTOROF(addr);
1027             BX_reg(context) = OFFSETOF(addr);
1028         }
1029         break;
1030
1031     case 0x36: /* GET FREE DISK SPACE */
1032         if (!INT21_GetFreeDiskSpace(context)) AX_reg(context) = 0xffff;
1033         break;
1034
1035     case 0x38: /* GET COUNTRY-SPECIFIC INFORMATION */
1036         AX_reg(context) = 0x02; /* no country support available */
1037         SET_CFLAG(context);
1038         break;
1039
1040     case 0x39: /* "MKDIR" - CREATE SUBDIRECTORY */
1041         bSetDOSExtendedError = (!CreateDirectory16( PTR_SEG_OFF_TO_LIN( DS_reg(context),
1042                                                            DX_reg(context) ), NULL));
1043         break;
1044         
1045     case 0x3a: /* "RMDIR" - REMOVE SUBDIRECTORY */
1046         bSetDOSExtendedError = (!RemoveDirectory16( PTR_SEG_OFF_TO_LIN( DS_reg(context),
1047                                                                  DX_reg(context) )));
1048         break;
1049
1050     case 0x3b: /* "CHDIR" - SET CURRENT DIRECTORY */
1051         bSetDOSExtendedError = !INT21_ChangeDir(context);
1052         break;
1053         
1054     case 0x3c: /* "CREAT" - CREATE OR TRUNCATE FILE */
1055         AX_reg(context) = _lcreat16( PTR_SEG_OFF_TO_LIN( DS_reg(context),
1056                                     DX_reg(context) ), CX_reg(context) );
1057         bSetDOSExtendedError = (AX_reg(context) == (WORD)HFILE_ERROR16);
1058         break;
1059
1060     case 0x3d: /* "OPEN" - OPEN EXISTING FILE */
1061         OpenExistingFile(context);
1062         break;
1063
1064     case 0x3e: /* "CLOSE" - CLOSE FILE */
1065         bSetDOSExtendedError = ((AX_reg(context) = _lclose16( BX_reg(context) )) != 0);
1066         break;
1067
1068     case 0x3f: /* "READ" - READ FROM FILE OR DEVICE */
1069         {
1070             LONG result = WIN16_hread( BX_reg(context),
1071                                        PTR_SEG_OFF_TO_SEGPTR( DS_reg(context),
1072                                                               DX_reg(context) ),
1073                                        CX_reg(context) );
1074             if (result == -1) bSetDOSExtendedError = TRUE;
1075             else AX_reg(context) = (WORD)result;
1076         }
1077         break;
1078
1079     case 0x40: /* "WRITE" - WRITE TO FILE OR DEVICE */
1080         {
1081             LONG result = _hwrite16( BX_reg(context),
1082                                      PTR_SEG_OFF_TO_LIN( DS_reg(context),
1083                                                          DX_reg(context) ),
1084                                      CX_reg(context) );
1085             if (result == -1) bSetDOSExtendedError = TRUE;
1086             else AX_reg(context) = (WORD)result;
1087         }
1088         break;
1089
1090     case 0x41: /* "UNLINK" - DELETE FILE */
1091         bSetDOSExtendedError = (!DeleteFile32A( PTR_SEG_OFF_TO_LIN( DS_reg(context),
1092                                                              DX_reg(context) )));
1093         break;
1094
1095     case 0x42: /* "LSEEK" - SET CURRENT FILE POSITION */
1096         {
1097             LONG status = _llseek16( BX_reg(context),
1098                                      MAKELONG(DX_reg(context),CX_reg(context)),
1099                                      AL_reg(context) );
1100             if (status == -1) bSetDOSExtendedError = TRUE;
1101             else
1102             {
1103                 AX_reg(context) = LOWORD(status);
1104                 DX_reg(context) = HIWORD(status);
1105             }
1106         }
1107         break;
1108
1109     case 0x43: /* FILE ATTRIBUTES */
1110         switch (AL_reg(context))
1111         {
1112         case 0x00:
1113             AX_reg(context) = (WORD)GetFileAttributes32A(
1114                                           PTR_SEG_OFF_TO_LIN(DS_reg(context),
1115                                                              DX_reg(context)));
1116             if (AX_reg(context) == 0xffff) bSetDOSExtendedError = TRUE;
1117             else CX_reg(context) = AX_reg(context);
1118             break;
1119
1120         case 0x01:
1121             bSetDOSExtendedError = 
1122                 (!SetFileAttributes32A( PTR_SEG_OFF_TO_LIN(DS_reg(context), 
1123                                                            DX_reg(context)),
1124                                                            CX_reg(context) ));
1125             break;
1126         }
1127         break;
1128         
1129     case 0x44: /* IOCTL */
1130         switch (AL_reg(context))
1131         {
1132         case 0x00:
1133             ioctlGetDeviceInfo(context);
1134             break;
1135
1136         case 0x01:
1137             break;
1138         case 0x05:{     /* IOCTL - WRITE TO BLOCK DEVICE CONTROL CHANNEL */
1139             BYTE *dataptr = PTR_SEG_OFF_TO_LIN(DS_reg(context),DX_reg(context));
1140             int i;
1141             int drive = DOS_GET_DRIVE(BL_reg(context));
1142
1143             fprintf(stdnimp,"int21: program tried to write to block device control channel of drive %d:\n",drive);
1144             for (i=0;i<CX_reg(context);i++)
1145                 fprintf(stdnimp,"%02x ",dataptr[i]);
1146             fprintf(stdnimp,"\n");
1147             AX_reg(context)=CX_reg(context);
1148             break;
1149         }
1150         case 0x08:   /* Check if drive is removable. */
1151             switch(GetDriveType16( DOS_GET_DRIVE( BL_reg(context) )))
1152             {
1153             case DRIVE_CANNOTDETERMINE:
1154                 DOS_ERROR( ER_InvalidDrive, EC_NotFound, SA_Abort, EL_Disk );
1155                 AX_reg(context) = ER_InvalidDrive;
1156                 SET_CFLAG(context);
1157                 break;
1158             case DRIVE_REMOVABLE:
1159                 AX_reg(context) = 0;      /* removable */
1160                 break;
1161             default:
1162                 AX_reg(context) = 1;   /* not removable */
1163                 break;
1164             }
1165             break;
1166
1167         case 0x09:   /* CHECK IF BLOCK DEVICE REMOTE */
1168             switch(GetDriveType16( DOS_GET_DRIVE( BL_reg(context) )))
1169             {
1170             case DRIVE_CANNOTDETERMINE:
1171                 DOS_ERROR( ER_InvalidDrive, EC_NotFound, SA_Abort, EL_Disk );
1172                 AX_reg(context) = ER_InvalidDrive;
1173                 SET_CFLAG(context);
1174                 break;
1175             case DRIVE_REMOTE:
1176                 DX_reg(context) = (1<<9) | (1<<12);  /* remote */
1177                 break;
1178             default:
1179                 DX_reg(context) = 0;  /* FIXME: use driver attr here */
1180                 break;
1181             }
1182             break;
1183
1184         case 0x0a: /* check if handle (BX) is remote */
1185             /* returns DX, bit 15 set if remote, bit 14 set if date/time
1186              * not set on close
1187              */
1188             DX_reg(context) = 0;
1189             break;
1190
1191         case 0x0b:   /* SET SHARING RETRY COUNT */
1192             if (!CX_reg(context))
1193             { 
1194                 AX_reg(context) = 1;
1195                 SET_CFLAG(context);
1196                 break;
1197             }
1198             sharing_pause = CX_reg(context);
1199             if (!DX_reg(context))
1200                 sharing_retries = DX_reg(context);
1201             RESET_CFLAG(context);
1202             break;
1203
1204         case 0x0d:
1205             bSetDOSExtendedError = ioctlGenericBlkDevReq(context);
1206             break;
1207
1208         case 0x0e: /* get logical drive mapping */
1209             AL_reg(context) = 0; /* drive has no mapping - FIXME: may be wrong*/
1210             break;
1211
1212         case 0x0F:   /* Set logical drive mapping */
1213             {
1214             int drive;
1215             drive = DOS_GET_DRIVE ( BL_reg(context) );
1216             if ( ! DRIVE_SetLogicalMapping ( drive, drive+1 ) )
1217             {
1218                 SET_CFLAG(context);
1219                 AX_reg(context) = 0x000F;  /* invalid drive */
1220             }
1221             break;
1222             }
1223                 
1224         default:
1225             INT_BARF( context, 0x21 );
1226             break;
1227         }
1228         break;
1229
1230     case 0x45: /* "DUP" - DUPLICATE FILE HANDLE */
1231         bSetDOSExtendedError = ((AX_reg(context) = FILE_Dup(BX_reg(context))) == (WORD)HFILE_ERROR16);
1232         break;
1233
1234     case 0x46: /* "DUP2", "FORCEDUP" - FORCE DUPLICATE FILE HANDLE */
1235         bSetDOSExtendedError = (FILE_Dup2( BX_reg(context), CX_reg(context) ) == HFILE_ERROR32);
1236         break;
1237
1238     case 0x47: /* "CWD" - GET CURRENT DIRECTORY */
1239         bSetDOSExtendedError = !INT21_GetCurrentDirectory(context);
1240         break;
1241
1242     case 0x48: /* ALLOCATE MEMORY */
1243     case 0x49: /* FREE MEMORY */
1244     case 0x4a: /* RESIZE MEMORY BLOCK */
1245         INT_BARF( context, 0x21 );
1246         break;
1247         
1248     case 0x4b: /* "EXEC" - LOAD AND/OR EXECUTE PROGRAM */
1249         AX_reg(context) = WinExec16( PTR_SEG_OFF_TO_LIN( DS_reg(context),
1250                                                          DX_reg(context) ),
1251                                      SW_NORMAL );
1252         if (AX_reg(context) < 32) SET_CFLAG(context);
1253         break;          
1254         
1255     case 0x4c: /* "EXIT" - TERMINATE WITH RETURN CODE */
1256         TASK_KillCurrentTask( AL_reg(context) );
1257         break;
1258
1259     case 0x4d: /* GET RETURN CODE */
1260         AX_reg(context) = 0; /* normal exit */
1261         break;
1262
1263     case 0x4e: /* "FINDFIRST" - FIND FIRST MATCHING FILE */
1264         if (!INT21_FindFirst(context)) break;
1265         /* fall through */
1266
1267     case 0x4f: /* "FINDNEXT" - FIND NEXT MATCHING FILE */
1268         if (!INT21_FindNext(context))
1269         {
1270             DOS_ERROR( ER_NoMoreFiles, EC_MediaError, SA_Abort, EL_Disk );
1271             AX_reg(context) = ER_NoMoreFiles;
1272             SET_CFLAG(context);
1273         }
1274         break;
1275
1276     case 0x51: /* GET PSP ADDRESS */
1277     case 0x62: /* GET PSP ADDRESS */
1278         /* FIXME: should we return the original DOS PSP upon */
1279         /*        Windows startup ? */
1280         BX_reg(context) = GetCurrentPDB();
1281         break;
1282
1283     case 0x52: /* "SYSVARS" - GET LIST OF LISTS */
1284         ES_reg(context) = 0x0;
1285         BX_reg(context) = 0x0;
1286         INT_BARF( context, 0x21 );
1287         break;
1288
1289     case 0x56: /* "RENAME" - RENAME FILE */
1290         bSetDOSExtendedError = 
1291                 (!MoveFile32A( PTR_SEG_OFF_TO_LIN(DS_reg(context),DX_reg(context)),
1292                                PTR_SEG_OFF_TO_LIN(ES_reg(context),DI_reg(context))));
1293         break;
1294
1295     case 0x57: /* FILE DATE AND TIME */
1296         switch (AL_reg(context))
1297         {
1298         case 0x00:  /* Get */
1299             {
1300                 FILETIME filetime;
1301                 if (!GetFileTime( BX_reg(context), NULL, NULL, &filetime ))
1302                      bSetDOSExtendedError = TRUE;
1303                 else FileTimeToDosDateTime( &filetime, &DX_reg(context),
1304                                             &CX_reg(context) );
1305             }
1306             break;
1307
1308         case 0x01:  /* Set */
1309             {
1310                 FILETIME filetime;
1311                 DosDateTimeToFileTime( DX_reg(context), CX_reg(context),
1312                                        &filetime );
1313                 bSetDOSExtendedError = 
1314                         (!SetFileTime( BX_reg(context), NULL, NULL, &filetime ));
1315             }
1316             break;
1317         }
1318         break;
1319
1320     case 0x58: /* GET OR SET MEMORY/UMB ALLOCATION STRATEGY */
1321         switch (AL_reg(context))
1322         {
1323         case 0x00:
1324             AX_reg(context) = 1;
1325             break;
1326         case 0x02:
1327             AX_reg(context) = 0;
1328             break;
1329         case 0x01:
1330         case 0x03:
1331             break;
1332         }
1333         RESET_CFLAG(context);
1334         break;
1335
1336     case 0x5a: /* CREATE TEMPORARY FILE */
1337         bSetDOSExtendedError = !INT21_CreateTempFile(context);
1338         break;
1339
1340     case 0x5b: /* CREATE NEW FILE */
1341         bSetDOSExtendedError = ((AX_reg(context) = 
1342                 _lcreat_uniq( PTR_SEG_OFF_TO_LIN(DS_reg(context),DX_reg(context)), 0 )) 
1343                                                                 == (WORD)HFILE_ERROR16);
1344         break;
1345
1346     case 0x5d: /* NETWORK */
1347     case 0x5e:
1348         /* network software not installed */
1349         DOS_ERROR( ER_NoNetwork, EC_NotFound, SA_Abort, EL_Network );
1350         bSetDOSExtendedError = TRUE;
1351         break;
1352
1353     case 0x5f: /* NETWORK */
1354         switch (AL_reg(context))
1355         {
1356         case 0x07: /* ENABLE DRIVE */
1357             if (!DRIVE_Enable( DL_reg(context) ))
1358             {
1359                 DOS_ERROR( ER_InvalidDrive, EC_MediaError, SA_Abort, EL_Disk );
1360                 bSetDOSExtendedError = TRUE;
1361             }
1362             break;
1363
1364         case 0x08: /* DISABLE DRIVE */
1365             if (!DRIVE_Disable( DL_reg(context) ))
1366             {
1367                 DOS_ERROR( ER_InvalidDrive, EC_MediaError, SA_Abort, EL_Disk );
1368                 bSetDOSExtendedError = TRUE;
1369             } 
1370             break;
1371
1372         default:
1373             /* network software not installed */
1374             DOS_ERROR( ER_NoNetwork, EC_NotFound, SA_Abort, EL_Network );
1375             bSetDOSExtendedError = TRUE;
1376             break;
1377         }
1378         break;
1379
1380     case 0x60: /* "TRUENAME" - CANONICALIZE FILENAME OR PATH */
1381         {
1382             if (!GetFullPathName32A( PTR_SEG_OFF_TO_LIN(DS_reg(context),
1383                                                         SI_reg(context)), 128,
1384                                      PTR_SEG_OFF_TO_LIN(ES_reg(context),
1385                                                         DI_reg(context)),NULL))
1386                 bSetDOSExtendedError = TRUE;
1387             else AX_reg(context) = 0;
1388         }
1389         break;
1390
1391     case 0x61: /* UNUSED */
1392     case 0x63: /* UNUSED */
1393     case 0x64: /* OS/2 DOS BOX */
1394         INT_BARF( context, 0x21 );
1395         SET_CFLAG(context);
1396         break;
1397
1398     case 0x65:{/* GET EXTENDED COUNTRY INFORMATION */
1399         extern WORD WINE_LanguageId;
1400         BYTE    *dataptr=PTR_SEG_OFF_TO_LIN(ES_reg(context),DI_reg(context));;
1401         switch (AL_reg(context)) {
1402         case 0x01:
1403             dataptr[0] = 0x1;
1404             *(WORD*)(dataptr+1) = 41;
1405             *(WORD*)(dataptr+3) = WINE_LanguageId;
1406             *(WORD*)(dataptr+5) = CodePage;
1407             break;
1408         case 0x06:
1409             dataptr[0] = 0x06;
1410             *(DWORD*)(dataptr+1) = MAKELONG(DOSMEM_CollateTable & 0xFFFF,DOSMEM_AllocSelector(DOSMEM_CollateTable>>16));
1411             CX_reg(context)         = 258;/*FIXME: size of table?*/
1412             break;
1413         default:
1414             INT_BARF( context, 0x21 );
1415             SET_CFLAG(context);
1416             break;
1417         }
1418         break;
1419     }
1420     case 0x66: /* GLOBAL CODE PAGE TABLE */
1421         switch (AL_reg(context))
1422         {
1423         case 0x01:
1424             DX_reg(context) = BX_reg(context) = CodePage;
1425             RESET_CFLAG(context);
1426             break;                      
1427         case 0x02: 
1428             CodePage = BX_reg(context);
1429             RESET_CFLAG(context);
1430             break;
1431         }
1432         break;
1433
1434     case 0x67: /* SET HANDLE COUNT */
1435         SetHandleCount16( BX_reg(context) );
1436         if (DOS_ExtendedError) bSetDOSExtendedError = TRUE;
1437         break;
1438
1439     case 0x68: /* "FFLUSH" - COMMIT FILE */
1440     case 0x6a: /* COMMIT FILE */
1441         bSetDOSExtendedError = (!FlushFileBuffers( BX_reg(context) ));
1442         break;          
1443         
1444     case 0x69: /* DISK SERIAL NUMBER */
1445         switch (AL_reg(context))
1446         {
1447         case 0x00:
1448             if (!INT21_GetDiskSerialNumber(context)) bSetDOSExtendedError = TRUE;
1449             else AX_reg(context) = 0;
1450             break;
1451
1452         case 0x01:
1453             if (!INT21_SetDiskSerialNumber(context)) bSetDOSExtendedError = TRUE;
1454             else AX_reg(context) = 1;
1455             break;
1456         }
1457         break;
1458     
1459     case 0x6C: /* Extended Open/Create*/
1460         bSetDOSExtendedError = INT21_ExtendedOpenCreateFile(context);
1461         break;
1462         
1463     case 0x71: /* MS-DOS 7 (Windows95) - LONG FILENAME FUNCTIONS */
1464         switch(AL_reg(context))
1465         {
1466         case 0x39:  /* Create directory */
1467             bSetDOSExtendedError = (!CreateDirectory32A( 
1468                                         PTR_SEG_OFF_TO_LIN( DS_reg(context),
1469                                                   DX_reg(context) ), NULL));
1470             break;
1471         case 0x3a:  /* Remove directory */
1472             bSetDOSExtendedError = (!RemoveDirectory32A( 
1473                                         PTR_SEG_OFF_TO_LIN( DS_reg(context),
1474                                                         DX_reg(context) )));
1475             break;
1476         case 0x43:  /* Get/Set file attributes */
1477         switch (BL_reg(context))
1478         {
1479         case 0x00: /* Get file attributes */
1480             CX_reg(context) = (WORD)GetFileAttributes32A(
1481                                           PTR_SEG_OFF_TO_LIN(DS_reg(context),
1482                                                              DX_reg(context)));
1483             if (CX_reg(context) == 0xffff) bSetDOSExtendedError = TRUE;
1484             break;
1485         case 0x01:
1486             bSetDOSExtendedError = (!SetFileAttributes32A( 
1487                                         PTR_SEG_OFF_TO_LIN(DS_reg(context),
1488                                                            DX_reg(context)),
1489                                         CX_reg(context)  ) );
1490             break;
1491         default:
1492           fprintf( stderr, 
1493                    "Unimplemented int21 long file name function:\n");
1494           INT_BARF( context, 0x21 );
1495           SET_CFLAG(context);
1496           AL_reg(context) = 0;
1497           break;
1498         }
1499         break;
1500         case 0x47:  /* Get current directory */
1501             bSetDOSExtendedError = !INT21_GetCurrentDirectory(context);
1502             break;
1503
1504         case 0x4e:  /* Find first file */
1505             /* FIXME: use attributes in CX */
1506             if ((AX_reg(context) = FindFirstFile16(
1507                    PTR_SEG_OFF_TO_LIN(DS_reg(context),DX_reg(context)),
1508                    (WIN32_FIND_DATA32A *)PTR_SEG_OFF_TO_LIN(ES_reg(context),
1509                                                             DI_reg(context))))
1510                 == INVALID_HANDLE_VALUE16)
1511                 bSetDOSExtendedError = TRUE;
1512             break;
1513         case 0x4f:  /* Find next file */
1514             if (!FindNextFile16( BX_reg(context),
1515                     (WIN32_FIND_DATA32A *)PTR_SEG_OFF_TO_LIN(ES_reg(context),
1516                                                              DI_reg(context))))
1517                 bSetDOSExtendedError = TRUE;
1518             break;
1519         case 0xa1:  /* Find close */
1520             bSetDOSExtendedError = (!FindClose16( BX_reg(context) ));
1521             break;
1522         case 0xa0:
1523             break;
1524         case 0x60:  
1525           switch(CL_reg(context))
1526           {
1527             case 0x02:  /*Get canonical long filename or path */
1528               if (!GetFullPathName32A
1529                   ( PTR_SEG_OFF_TO_LIN(DS_reg(context),
1530                                        SI_reg(context)), 128,
1531                     PTR_SEG_OFF_TO_LIN(ES_reg(context),
1532                                        DI_reg(context)),NULL))
1533                 bSetDOSExtendedError = TRUE;
1534               else AX_reg(context) = 0;
1535               break;
1536             default:
1537               fprintf( stderr, 
1538                        "Unimplemented int21 long file name function:\n");
1539               INT_BARF( context, 0x21 );
1540               SET_CFLAG(context);
1541               AL_reg(context) = 0;
1542               break;
1543           }
1544             break;
1545         case 0x6c:  /* Create or open file */
1546           /* translate Dos 7 action to Dos 6 action */
1547             bSetDOSExtendedError = INT21_ExtendedOpenCreateFile(context);
1548             break;
1549
1550         case 0x3b:  /* Change directory */
1551             if (!SetCurrentDirectory32A(PTR_SEG_OFF_TO_LIN(
1552                                                 DS_reg(context),
1553                                                 DX_reg(context)
1554                                         ))
1555             ) {
1556                 SET_CFLAG(context);
1557                 AL_reg(context) = DOS_ExtendedError;
1558             }
1559             break;
1560         case 0x41:  /* Delete file */
1561             if (!DeleteFile32A(PTR_SEG_OFF_TO_LIN(
1562                                         DS_reg(context),
1563                                         DX_reg(context))
1564             )) {
1565                 SET_CFLAG(context);
1566                 AL_reg(context) = DOS_ExtendedError;
1567             }
1568             break;
1569         case 0x56:  /* Move (rename) file */
1570         default:
1571             fprintf( stderr, "Unimplemented int21 long file name function:\n");
1572             INT_BARF( context, 0x21 );
1573             SET_CFLAG(context);
1574             AL_reg(context) = 0;
1575             break;
1576         }
1577         break;
1578
1579     case 0x70: /* MS-DOS 7 (Windows95) - ??? (country-specific?)*/
1580     case 0x72: /* MS-DOS 7 (Windows95) - ??? */
1581     case 0x73: /* MS-DOS 7 (Windows95) - DRIVE LOCKING ??? */
1582         dprintf_int(stddeb,"int21: windows95 function AX %04x\n",
1583                     AX_reg(context));
1584         dprintf_int(stddeb, "        returning unimplemented\n");
1585         SET_CFLAG(context);
1586         AL_reg(context) = 0;
1587         break;
1588
1589     case 0xdc: /* CONNECTION SERVICES - GET CONNECTION NUMBER */
1590     case 0xea: /* NOVELL NETWARE - RETURN SHELL VERSION */
1591         break;
1592
1593     default:
1594         INT_BARF( context, 0x21 );
1595         break;
1596
1597     } /* END OF SWITCH */
1598
1599     if( bSetDOSExtendedError )          /* set general error condition */
1600     {   
1601         AX_reg(context) = DOS_ExtendedError;
1602         SET_CFLAG(context);
1603     }
1604
1605     dprintf_int( stddeb, "ret21: AX=%04x BX=%04x CX=%04x DX=%04x "
1606                  "SI=%04x DI=%04x DS=%04x ES=%04x EFL=%08lx\n",
1607                  AX_reg(context), BX_reg(context), CX_reg(context),
1608                  DX_reg(context), SI_reg(context), DI_reg(context),
1609                  (WORD)DS_reg(context), (WORD)ES_reg(context),
1610                  EFL_reg(context));
1611 }
1612