- added function DirectDrawEnumerateEx
[wine/dcerpc.git] / msdos / int21.c
blob6f7c9b1e0c2ddd12506aa9d54ac84e7eeed35631
1 /*
2 * DOS interrupt 21h handler
3 */
5 #include <time.h>
6 #include <fcntl.h>
7 #include <errno.h>
8 #include <stdlib.h>
9 #ifdef HAVE_SYS_FILE_H
10 # include <sys/file.h>
11 #endif
12 #include <string.h>
13 #include <sys/stat.h>
14 #include <sys/time.h>
15 #include <sys/types.h>
16 #include <unistd.h>
17 #include <utime.h>
18 #include <ctype.h>
19 #include "windef.h"
20 #include "winbase.h"
21 #include "winuser.h" /* SW_NORMAL */
22 #include "wine/winbase16.h"
23 #include "winerror.h"
24 #include "drive.h"
25 #include "file.h"
26 #include "heap.h"
27 #include "msdos.h"
28 #include "ldt.h"
29 #include "task.h"
30 #include "options.h"
31 #include "miscemu.h"
32 #include "dosexe.h" /* for the MZ_SUPPORTED define */
33 #include "module.h"
34 #include "debug.h"
35 #include "console.h"
36 #if defined(__svr4__) || defined(_SCO_DS)
37 /* SVR4 DOESNT do locking the same way must implement properly */
38 #define LOCK_EX 0
39 #define LOCK_SH 1
40 #define LOCK_NB 8
41 #endif
44 #define DOS_GET_DRIVE(reg) ((reg) ? (reg) - 1 : DRIVE_GetCurrentDrive())
46 /* Define the drive parameter block, as used by int21/1F
47 * and int21/32. This table can be accessed through the
48 * global 'dpb' pointer, which points into the local dos
49 * heap.
51 struct DPB
53 BYTE drive_num; /* 0=A, etc. */
54 BYTE unit_num; /* Drive's unit number (?) */
55 WORD sector_size; /* Sector size in bytes */
56 BYTE high_sector; /* Highest sector in a cluster */
57 BYTE shift; /* Shift count (?) */
58 WORD reserved; /* Number of reserved sectors at start */
59 BYTE num_FAT; /* Number of FATs */
60 WORD dir_entries; /* Number of root dir entries */
61 WORD first_data; /* First data sector */
62 WORD high_cluster; /* Highest cluster number */
63 WORD sectors_in_FAT; /* Number of sectors per FAT */
64 WORD start_dir; /* Starting sector of first dir */
65 DWORD driver_head; /* Address of device driver header (?) */
66 BYTE media_ID; /* Media ID */
67 BYTE access_flag; /* Prev. accessed flag (0=yes,0xFF=no) */
68 DWORD next; /* Pointer to next DPB in list */
69 WORD free_search; /* Free cluster search start */
70 WORD free_clusters; /* Number of free clusters (0xFFFF=unknown) */
73 WORD CodePage = 437;
74 DWORD dpbsegptr;
76 struct DosHeap {
77 BYTE InDosFlag;
78 BYTE mediaID;
79 BYTE biosdate[8];
80 struct DPB dpb;
81 BYTE DummyDBCSLeadTable[6];
83 static struct DosHeap *heap;
84 static WORD DosHeapHandle;
86 WORD sharing_retries = 3; /* number of retries at sharing violation */
87 WORD sharing_pause = 1; /* pause between retries */
89 extern char TempDirectory[];
91 static BOOL INT21_CreateHeap(void)
93 if (!(DosHeapHandle = GlobalAlloc16(GMEM_FIXED,sizeof(struct DosHeap))))
95 WARN(int21, "Out of memory\n");
96 return FALSE;
98 heap = (struct DosHeap *) GlobalLock16(DosHeapHandle);
99 dpbsegptr = PTR_SEG_OFF_TO_SEGPTR(DosHeapHandle,(int)&heap->dpb-(int)heap);
100 heap->InDosFlag = 0;
101 strcpy(heap->biosdate, "01/01/80");
102 memset(heap->DummyDBCSLeadTable, 0, 6);
103 return TRUE;
106 static BYTE *GetCurrentDTA( CONTEXT *context )
108 TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
110 /* FIXME: This assumes DTA was set correctly! */
111 return (BYTE *)CTX_SEG_OFF_TO_LIN( context, SELECTOROF(pTask->dta),
112 (DWORD)OFFSETOF(pTask->dta) );
116 void CreateBPB(int drive, BYTE *data, BOOL16 limited)
117 /* limited == TRUE is used with INT 0x21/0x440d */
119 if (drive > 1) {
120 setword(data, 512);
121 data[2] = 2;
122 setword(&data[3], 0);
123 data[5] = 2;
124 setword(&data[6], 240);
125 setword(&data[8], 64000);
126 data[0x0a] = 0xf8;
127 setword(&data[0x0b], 40);
128 setword(&data[0x0d], 56);
129 setword(&data[0x0f], 2);
130 setword(&data[0x11], 0);
131 if (!limited) {
132 setword(&data[0x1f], 800);
133 data[0x21] = 5;
134 setword(&data[0x22], 1);
136 } else { /* 1.44mb */
137 setword(data, 512);
138 data[2] = 2;
139 setword(&data[3], 0);
140 data[5] = 2;
141 setword(&data[6], 240);
142 setword(&data[8], 2880);
143 data[0x0a] = 0xf8;
144 setword(&data[0x0b], 6);
145 setword(&data[0x0d], 18);
146 setword(&data[0x0f], 2);
147 setword(&data[0x11], 0);
148 if (!limited) {
149 setword(&data[0x1f], 80);
150 data[0x21] = 7;
151 setword(&data[0x22], 2);
156 static int INT21_GetFreeDiskSpace( CONTEXT *context )
158 DWORD cluster_sectors, sector_bytes, free_clusters, total_clusters;
159 char root[] = "A:\\";
161 *root += DOS_GET_DRIVE( DL_reg(context) );
162 if (!GetDiskFreeSpaceA( root, &cluster_sectors, &sector_bytes,
163 &free_clusters, &total_clusters )) return 0;
164 AX_reg(context) = cluster_sectors;
165 BX_reg(context) = free_clusters;
166 CX_reg(context) = sector_bytes;
167 DX_reg(context) = total_clusters;
168 return 1;
171 static int INT21_GetDriveAllocInfo( CONTEXT *context )
173 if (!INT21_GetFreeDiskSpace( context )) return 0;
174 if (!heap && !INT21_CreateHeap()) return 0;
175 heap->mediaID = 0xf0;
176 DS_reg(context) = DosHeapHandle;
177 BX_reg(context) = (int)&heap->mediaID - (int)heap;
178 return 1;
181 static void GetDrivePB( CONTEXT *context, int drive )
183 if(!DRIVE_IsValid(drive))
185 SetLastError( ERROR_INVALID_DRIVE );
186 AX_reg(context) = 0x00ff;
188 else if (heap || INT21_CreateHeap())
190 FIXME(int21, "GetDrivePB not fully implemented.\n");
192 /* FIXME: I have no idea what a lot of this information should
193 * say or whether it even really matters since we're not allowing
194 * direct block access. However, some programs seem to depend on
195 * getting at least _something_ back from here. The 'next' pointer
196 * does worry me, though. Should we have a complete table of
197 * separate DPBs per drive? Probably, but I'm lazy. :-) -CH
199 heap->dpb.drive_num = heap->dpb.unit_num = drive; /*The same?*/
200 heap->dpb.sector_size = 512;
201 heap->dpb.high_sector = 1;
202 heap->dpb.shift = drive < 2 ? 0 : 6; /*6 for HD, 0 for floppy*/
203 heap->dpb.reserved = 0;
204 heap->dpb.num_FAT = 1;
205 heap->dpb.dir_entries = 2;
206 heap->dpb.first_data = 2;
207 heap->dpb.high_cluster = 64000;
208 heap->dpb.sectors_in_FAT = 1;
209 heap->dpb.start_dir = 1;
210 heap->dpb.driver_head = 0;
211 heap->dpb.media_ID = (drive > 1) ? 0xF8 : 0xF0;
212 heap->dpb.access_flag = 0;
213 heap->dpb.next = 0;
214 heap->dpb.free_search = 0;
215 heap->dpb.free_clusters = 0xFFFF; /* unknown */
217 AL_reg(context) = 0x00;
218 DS_reg(context) = SELECTOROF(dpbsegptr);
219 BX_reg(context) = OFFSETOF(dpbsegptr);
224 static void ioctlGetDeviceInfo( CONTEXT *context )
226 int curr_drive;
227 const DOS_DEVICE *dev;
229 TRACE(int21, "(%d)\n", BX_reg(context));
231 RESET_CFLAG(context);
233 /* DOS device ? */
234 if ((dev = DOSFS_GetDeviceByHandle( FILE_GetHandle(BX_reg(context)) )))
236 DX_reg(context) = dev->flags;
237 return;
240 /* it seems to be a file */
241 curr_drive = DRIVE_GetCurrentDrive();
242 DX_reg(context) = 0x0140 + curr_drive + ((curr_drive > 1) ? 0x0800 : 0);
243 /* no floppy */
244 /* bits 0-5 are current drive
245 * bit 6 - file has NOT been written..FIXME: correct?
246 * bit 8 - generate int24 if no diskspace on write/ read past end of file
247 * bit 11 - media not removable
248 * bit 14 - don't set file date/time on closing
249 * bit 15 - file is remote
253 static BOOL ioctlGenericBlkDevReq( CONTEXT *context )
255 BYTE *dataptr = CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context));
256 int drive = DOS_GET_DRIVE( BL_reg(context) );
258 if (!DRIVE_IsValid(drive))
260 SetLastError( ERROR_FILE_NOT_FOUND );
261 return TRUE;
264 if (CH_reg(context) != 0x08)
266 INT_BARF( context, 0x21 );
267 return FALSE;
270 switch (CL_reg(context))
272 case 0x4a: /* lock logical volume */
273 TRACE(int21,"lock logical volume (%d) level %d mode %d\n",drive,BH_reg(context),DX_reg(context));
274 break;
276 case 0x60: /* get device parameters */
277 /* used by w4wgrp's winfile */
278 memset(dataptr, 0, 0x20); /* DOS 6.22 uses 0x20 bytes */
279 dataptr[0] = 0x04;
280 dataptr[6] = 0; /* media type */
281 if (drive > 1)
283 dataptr[1] = 0x05; /* fixed disk */
284 setword(&dataptr[2], 0x01); /* non removable */
285 setword(&dataptr[4], 0x300); /* # of cylinders */
287 else
289 dataptr[1] = 0x07; /* block dev, floppy */
290 setword(&dataptr[2], 0x02); /* removable */
291 setword(&dataptr[4], 80); /* # of cylinders */
293 CreateBPB(drive, &dataptr[7], TRUE);
294 RESET_CFLAG(context);
295 break;
297 case 0x41: /* write logical device track */
298 case 0x61: /* read logical device track */
300 BYTE drive = BL_reg(context) ?
301 BL_reg(context) : DRIVE_GetCurrentDrive();
302 WORD head = *(WORD *)dataptr+1;
303 WORD cyl = *(WORD *)dataptr+3;
304 WORD sect = *(WORD *)dataptr+5;
305 WORD nrsect = *(WORD *)dataptr+7;
306 BYTE *data = (BYTE *)dataptr+9;
307 int (*raw_func)(BYTE, DWORD, DWORD, BYTE *, BOOL);
309 raw_func = (CL_reg(context) == 0x41) ?
310 DRIVE_RawWrite : DRIVE_RawRead;
312 if (raw_func(drive, head*cyl*sect, nrsect, data, FALSE))
313 RESET_CFLAG(context);
314 else
316 AX_reg(context) = 0x1e; /* read fault */
317 SET_CFLAG(context);
320 break;
321 case 0x66:/* get disk serial number */
323 char label[12],fsname[9],path[4];
324 DWORD serial;
326 strcpy(path,"x:\\");path[0]=drive+'A';
327 GetVolumeInformationA(
328 path,label,12,&serial,NULL,NULL,fsname,9
330 *(WORD*)dataptr = 0;
331 memcpy(dataptr+2,&serial,4);
332 memcpy(dataptr+6,label ,11);
333 memcpy(dataptr+17,fsname,8);
335 break;
337 case 0x6a:
338 TRACE(int21,"logical volume %d unlocked.\n",drive);
339 break;
341 case 0x6f:
342 memset(dataptr+1, '\0', dataptr[0]-1);
343 dataptr[1] = dataptr[0];
344 dataptr[2] = 0x07; /* protected mode driver; no eject; no notification */
345 dataptr[3] = 0xFF; /* no physical drive */
346 break;
348 default:
349 INT_BARF( context, 0x21 );
351 return FALSE;
354 static void INT21_ParseFileNameIntoFCB( CONTEXT *context )
356 char *filename =
357 CTX_SEG_OFF_TO_LIN(context, DS_reg(context), ESI_reg(context) );
358 char *fcb =
359 CTX_SEG_OFF_TO_LIN(context, ES_reg(context), EDI_reg(context) );
360 char *buffer, *s, *d;
362 AL_reg(context) = 0xff; /* failed */
364 TRACE(int21, "filename: '%s'\n", filename);
366 buffer = HeapAlloc( GetProcessHeap(), 0, strlen(filename) + 1);
368 s = filename;
369 d = buffer;
370 while (*s)
372 if ((*s != ' ') && (*s != '\r') && (*s != '\n'))
373 *d++ = *s++;
374 else
375 break;
378 *d = '\0';
379 DOSFS_ToDosFCBFormat(buffer, fcb + 1);
380 *fcb = 0;
381 TRACE(int21, "FCB: '%s'\n", ((CHAR *)fcb + 1));
383 HeapFree( GetProcessHeap(), 0, buffer);
385 AL_reg(context) =
386 ((strchr(filename, '*')) || (strchr(filename, '$'))) != 0;
388 /* point DS:SI to first unparsed character */
389 SI_reg(context) += (int)s - (int)filename;
392 static void INT21_GetSystemDate( CONTEXT *context )
394 SYSTEMTIME systime;
395 GetLocalTime( &systime );
396 CX_reg(context) = systime.wYear;
397 DX_reg(context) = (systime.wMonth << 8) | systime.wDay;
398 AX_reg(context) = systime.wDayOfWeek;
401 static void INT21_GetSystemTime( CONTEXT *context )
403 SYSTEMTIME systime;
404 GetLocalTime( &systime );
405 CX_reg(context) = (systime.wHour << 8) | systime.wMinute;
406 DX_reg(context) = (systime.wSecond << 8) | (systime.wMilliseconds / 10);
409 /* Many calls translate a drive argument like this:
410 drive number (00h = default, 01h = A:, etc)
412 static char drivestring[]="default";
414 char *INT21_DriveName(int drive)
417 if(drive >0)
419 drivestring[0]= (unsigned char)drive + '@';
420 drivestring[1]=':';
421 drivestring[2]=0;
423 return drivestring;
425 static BOOL INT21_CreateFile( CONTEXT *context )
427 AX_reg(context) = _lcreat16( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
428 EDX_reg(context) ), CX_reg(context) );
429 return (AX_reg(context) == (WORD)HFILE_ERROR16);
433 static void OpenExistingFile( CONTEXT *context )
435 AX_reg(context) = _lopen16( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)),
436 AL_reg(context) );
437 if (AX_reg(context) == (WORD)HFILE_ERROR16)
439 AX_reg(context) = GetLastError();
440 SET_CFLAG(context);
444 static BOOL INT21_ExtendedOpenCreateFile(CONTEXT *context )
446 BOOL bExtendedError = FALSE;
447 BYTE action = DL_reg(context);
449 /* Shuffle arguments to call OpenExistingFile */
450 AL_reg(context) = BL_reg(context);
451 DX_reg(context) = SI_reg(context);
452 /* BX,CX and DX should be preserved */
453 OpenExistingFile(context);
455 if ((EFL_reg(context) & 0x0001) == 0) /* File exists */
457 UINT16 uReturnCX = 0;
459 /* Now decide what do do */
461 if ((action & 0x07) == 0)
463 _lclose16( AX_reg(context) );
464 AX_reg(context) = 0x0050; /*File exists*/
465 SET_CFLAG(context);
466 WARN(int21, "extended open/create: failed because file exists \n");
468 else if ((action & 0x07) == 2)
470 /* Truncate it, but first check if opened for write */
471 if ((BL_reg(context) & 0x0007)== 0)
473 _lclose16( AX_reg(context) );
474 WARN(int21, "extended open/create: failed, trunc on ro file\n");
475 AX_reg(context) = 0x000C; /*Access code invalid*/
476 SET_CFLAG(context);
478 else
480 TRACE(int21, "extended open/create: Closing before truncate\n");
481 if (_lclose16( AX_reg(context) ))
483 WARN(int21, "extended open/create: close before trunc failed\n");
484 AX_reg(context) = 0x0019; /*Seek Error*/
485 CX_reg(context) = 0;
486 SET_CFLAG(context);
488 /* Shuffle arguments to call CreateFile */
490 TRACE(int21, "extended open/create: Truncating\n");
491 AL_reg(context) = BL_reg(context);
492 /* CX is still the same */
493 DX_reg(context) = SI_reg(context);
494 bExtendedError = INT21_CreateFile(context);
496 if (EFL_reg(context) & 0x0001) /*no file open, flags set */
498 WARN(int21, "extended open/create: trunc failed\n");
499 return bExtendedError;
501 uReturnCX = 0x3;
504 else uReturnCX = 0x1;
506 CX_reg(context) = uReturnCX;
508 else /* file does not exist */
510 RESET_CFLAG(context); /* was set by OpenExistingFile(context) */
511 if ((action & 0xF0)== 0)
513 CX_reg(context) = 0;
514 SET_CFLAG(context);
515 WARN(int21, "extended open/create: failed, file dosen't exist\n");
517 else
519 /* Shuffle arguments to call CreateFile */
520 TRACE(int21, "extended open/create: Creating\n");
521 AL_reg(context) = BL_reg(context);
522 /* CX should still be the same */
523 DX_reg(context) = SI_reg(context);
524 bExtendedError = INT21_CreateFile(context);
525 if (EFL_reg(context) & 0x0001) /*no file open, flags set */
527 WARN(int21, "extended open/create: create failed\n");
528 return bExtendedError;
530 CX_reg(context) = 2;
534 return bExtendedError;
538 static BOOL INT21_ChangeDir( CONTEXT *context )
540 int drive;
541 char *dirname = CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context));
543 TRACE(int21,"changedir %s\n", dirname);
544 if (dirname[0] && (dirname[1] == ':'))
546 drive = toupper(dirname[0]) - 'A';
547 dirname += 2;
549 else drive = DRIVE_GetCurrentDrive();
550 return DRIVE_Chdir( drive, dirname );
554 static int INT21_FindFirst( CONTEXT *context )
556 char *p;
557 const char *path;
558 DOS_FULL_NAME full_name;
559 FINDFILE_DTA *dta = (FINDFILE_DTA *)GetCurrentDTA(context);
561 path = (const char *)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context));
562 dta->unixPath = NULL;
563 if (!DOSFS_GetFullName( path, FALSE, &full_name ))
565 AX_reg(context) = GetLastError();
566 SET_CFLAG(context);
567 return 0;
569 dta->unixPath = HEAP_strdupA( GetProcessHeap(), 0, full_name.long_name );
570 p = strrchr( dta->unixPath, '/' );
571 *p = '\0';
573 /* Note: terminating NULL in dta->mask overwrites dta->search_attr
574 * (doesn't matter as it is set below anyway)
576 if (!DOSFS_ToDosFCBFormat( p + 1, dta->mask ))
578 HeapFree( GetProcessHeap(), 0, dta->unixPath );
579 dta->unixPath = NULL;
580 SetLastError( ERROR_FILE_NOT_FOUND );
581 AX_reg(context) = ERROR_FILE_NOT_FOUND;
582 SET_CFLAG(context);
583 return 0;
585 dta->drive = (path[0] && (path[1] == ':')) ? toupper(path[0]) - 'A'
586 : DRIVE_GetCurrentDrive();
587 dta->count = 0;
588 dta->search_attr = CL_reg(context);
589 return 1;
593 static int INT21_FindNext( CONTEXT *context )
595 FINDFILE_DTA *dta = (FINDFILE_DTA *)GetCurrentDTA(context);
596 WIN32_FIND_DATAA entry;
597 int count;
599 if (!dta->unixPath) return 0;
600 if (!(count = DOSFS_FindNext( dta->unixPath, dta->mask, NULL, dta->drive,
601 dta->search_attr, dta->count, &entry )))
603 HeapFree( GetProcessHeap(), 0, dta->unixPath );
604 dta->unixPath = NULL;
605 return 0;
607 if ((int)dta->count + count > 0xffff)
609 WARN(int21, "Too many directory entries in %s\n", dta->unixPath );
610 HeapFree( GetProcessHeap(), 0, dta->unixPath );
611 dta->unixPath = NULL;
612 return 0;
614 dta->count += count;
615 dta->fileattr = entry.dwFileAttributes;
616 dta->filesize = entry.nFileSizeLow;
617 FileTimeToDosDateTime( &entry.ftLastWriteTime,
618 &dta->filedate, &dta->filetime );
619 strcpy( dta->filename, entry.cAlternateFileName );
620 if (!memchr(dta->mask,'?',11)) {
621 /* wildcardless search, release resources in case no findnext will
622 * be issued, and as a workaround in case file creation messes up
623 * findnext, as sometimes happens with pkunzip */
624 HeapFree( GetProcessHeap(), 0, dta->unixPath );
625 dta->unixPath = NULL;
627 return 1;
631 static BOOL INT21_CreateTempFile( CONTEXT *context )
633 static int counter = 0;
634 char *name = CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context) );
635 char *p = name + strlen(name);
637 /* despite what Ralf Brown says, some programs seem to call without
638 * ending backslash (DOS accepts that, so we accept it too) */
639 if ((p == name) || (p[-1] != '\\')) *p++ = '\\';
641 for (;;)
643 sprintf( p, "wine%04x.%03d", (int)getpid(), counter );
644 counter = (counter + 1) % 1000;
646 if ((AX_reg(context) = _lcreat16_uniq( name, 0 )) != (WORD)HFILE_ERROR16)
648 TRACE(int21, "created %s\n", name );
649 return TRUE;
651 if (GetLastError() != ERROR_FILE_EXISTS) return FALSE;
656 static BOOL INT21_GetCurrentDirectory( CONTEXT *context )
658 int drive = DOS_GET_DRIVE( DL_reg(context) );
659 char *ptr = (char *)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), ESI_reg(context) );
661 if (!DRIVE_IsValid(drive))
663 SetLastError( ERROR_INVALID_DRIVE );
664 return FALSE;
666 lstrcpynA( ptr, DRIVE_GetDosCwd(drive), 64 );
667 AX_reg(context) = 0x0100; /* success return code */
668 return TRUE;
672 static void INT21_GetDBCSLeadTable( CONTEXT *context )
674 if (heap || INT21_CreateHeap())
675 { /* return an empty table just as DOS 4.0+ does */
676 DS_reg(context) = DosHeapHandle;
677 SI_reg(context) = (int)&heap->DummyDBCSLeadTable - (int)heap;
679 else
681 AX_reg(context) = 0x1; /* error */
682 SET_CFLAG(context);
687 static int INT21_GetDiskSerialNumber( CONTEXT *context )
689 BYTE *dataptr = CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context));
690 int drive = DOS_GET_DRIVE( BL_reg(context) );
692 if (!DRIVE_IsValid(drive))
694 SetLastError( ERROR_INVALID_DRIVE );
695 return 0;
698 *(WORD *)dataptr = 0;
699 *(DWORD *)(dataptr + 2) = DRIVE_GetSerialNumber( drive );
700 memcpy( dataptr + 6, DRIVE_GetLabel( drive ), 11 );
701 strncpy(dataptr + 0x11, "FAT16 ", 8);
702 return 1;
706 static int INT21_SetDiskSerialNumber( CONTEXT *context )
708 BYTE *dataptr = CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context));
709 int drive = DOS_GET_DRIVE( BL_reg(context) );
711 if (!DRIVE_IsValid(drive))
713 SetLastError( ERROR_INVALID_DRIVE );
714 return 0;
717 DRIVE_SetSerialNumber( drive, *(DWORD *)(dataptr + 2) );
718 return 1;
722 /* microsoft's programmers should be shot for using CP/M style int21
723 calls in Windows for Workgroup's winfile.exe */
725 static int INT21_FindFirstFCB( CONTEXT *context )
727 BYTE *fcb = (BYTE *)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context));
728 FINDFILE_FCB *pFCB;
729 LPCSTR root, cwd;
730 int drive;
732 if (*fcb == 0xff) pFCB = (FINDFILE_FCB *)(fcb + 7);
733 else pFCB = (FINDFILE_FCB *)fcb;
734 drive = DOS_GET_DRIVE( pFCB->drive );
735 if (!DRIVE_IsValid( drive )) return 0;
736 root = DRIVE_GetRoot( drive );
737 cwd = DRIVE_GetUnixCwd( drive );
738 pFCB->unixPath = HeapAlloc( GetProcessHeap(), 0,
739 strlen(root)+strlen(cwd)+2 );
740 if (!pFCB->unixPath) return 0;
741 strcpy( pFCB->unixPath, root );
742 strcat( pFCB->unixPath, "/" );
743 strcat( pFCB->unixPath, cwd );
744 pFCB->count = 0;
745 return 1;
749 static int INT21_FindNextFCB( CONTEXT *context )
751 BYTE *fcb = (BYTE *)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context));
752 FINDFILE_FCB *pFCB;
753 DOS_DIRENTRY_LAYOUT *pResult = (DOS_DIRENTRY_LAYOUT *)GetCurrentDTA(context);
754 WIN32_FIND_DATAA entry;
755 BYTE attr;
756 int count;
758 if (*fcb == 0xff) /* extended FCB ? */
760 attr = fcb[6];
761 pFCB = (FINDFILE_FCB *)(fcb + 7);
763 else
765 attr = 0;
766 pFCB = (FINDFILE_FCB *)fcb;
769 if (!pFCB->unixPath) return 0;
770 if (!(count = DOSFS_FindNext( pFCB->unixPath, pFCB->filename, NULL,
771 DOS_GET_DRIVE( pFCB->drive ), attr,
772 pFCB->count, &entry )))
774 HeapFree( GetProcessHeap(), 0, pFCB->unixPath );
775 pFCB->unixPath = NULL;
776 return 0;
778 pFCB->count += count;
780 if (*fcb == 0xff) { /* place extended FCB header before pResult if called with extended FCB */
781 *(BYTE *)pResult = 0xff;
782 (BYTE *)pResult +=6; /* leave reserved field behind */
783 *(BYTE *)pResult = entry.dwFileAttributes;
784 ((BYTE *)pResult)++;
786 *(BYTE *)pResult = DOS_GET_DRIVE( pFCB->drive ); /* DOS_DIRENTRY_LAYOUT after current drive number */
787 ((BYTE *)pResult)++;
788 pResult->fileattr = entry.dwFileAttributes;
789 pResult->cluster = 0; /* what else? */
790 pResult->filesize = entry.nFileSizeLow;
791 memset( pResult->reserved, 0, sizeof(pResult->reserved) );
792 FileTimeToDosDateTime( &entry.ftLastWriteTime,
793 &pResult->filedate, &pResult->filetime );
795 /* Convert file name to FCB format */
797 memset( pResult->filename, ' ', sizeof(pResult->filename) );
798 if (!strcmp( entry.cAlternateFileName, "." )) pResult->filename[0] = '.';
799 else if (!strcmp( entry.cAlternateFileName, ".." ))
800 pResult->filename[0] = pResult->filename[1] = '.';
801 else
803 char *p = strrchr( entry.cAlternateFileName, '.' );
804 if (p && p[1] && (p != entry.cAlternateFileName))
806 memcpy( pResult->filename, entry.cAlternateFileName,
807 MIN( (p - entry.cAlternateFileName), 8 ) );
808 memcpy( pResult->filename + 8, p + 1, MIN( strlen(p), 3 ) );
810 else
811 memcpy( pResult->filename, entry.cAlternateFileName,
812 MIN( strlen(entry.cAlternateFileName), 8 ) );
814 return 1;
818 static void DeleteFileFCB( CONTEXT *context )
820 FIXME(int21, "(%p): stub\n", context);
823 static void RenameFileFCB( CONTEXT *context )
825 FIXME(int21, "(%p): stub\n", context);
830 static void fLock( CONTEXT * context )
833 switch ( AX_reg(context) & 0xff )
835 case 0x00: /* LOCK */
836 TRACE(int21,"lock handle %d offset %ld length %ld\n",
837 BX_reg(context),
838 MAKELONG(DX_reg(context),CX_reg(context)),
839 MAKELONG(DI_reg(context),SI_reg(context))) ;
840 if (!LockFile(FILE_GetHandle(BX_reg(context)),
841 MAKELONG(DX_reg(context),CX_reg(context)), 0,
842 MAKELONG(DI_reg(context),SI_reg(context)), 0)) {
843 AX_reg(context) = GetLastError();
844 SET_CFLAG(context);
846 break;
848 case 0x01: /* UNLOCK */
849 TRACE(int21,"unlock handle %d offset %ld length %ld\n",
850 BX_reg(context),
851 MAKELONG(DX_reg(context),CX_reg(context)),
852 MAKELONG(DI_reg(context),SI_reg(context))) ;
853 if (!UnlockFile(FILE_GetHandle(BX_reg(context)),
854 MAKELONG(DX_reg(context),CX_reg(context)), 0,
855 MAKELONG(DI_reg(context),SI_reg(context)), 0)) {
856 AX_reg(context) = GetLastError();
857 SET_CFLAG(context);
859 return;
860 default:
861 AX_reg(context) = 0x0001;
862 SET_CFLAG(context);
863 return;
867 static BOOL
868 INT21_networkfunc (CONTEXT *context)
870 switch (AL_reg(context)) {
871 case 0x00: /* Get machine name. */
873 char *dst = CTX_SEG_OFF_TO_LIN (context,DS_reg(context),EDX_reg(context));
874 TRACE(int21, "getting machine name to %p\n", dst);
875 if (gethostname (dst, 15))
877 WARN(int21,"failed!\n");
878 SetLastError( ER_NoNetwork );
879 return TRUE;
880 } else {
881 int len = strlen (dst);
882 while (len < 15)
883 dst[len++] = ' ';
884 dst[15] = 0;
885 CH_reg(context) = 1; /* Valid */
886 CL_reg(context) = 1; /* NETbios number??? */
887 TRACE(int21, "returning %s\n", debugstr_an (dst, 16));
888 return FALSE;
892 default:
893 SetLastError( ER_NoNetwork );
894 return TRUE;
898 static void INT21_SetCurrentPSP(WORD psp)
900 #ifdef MZ_SUPPORTED
901 TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
902 NE_MODULE *pModule = pTask ? NE_GetPtr( pTask->hModule ) : NULL;
904 GlobalUnlock16( GetCurrentTask() );
905 if (pModule->lpDosTask)
906 pModule->lpDosTask->psp_seg = psp;
907 else
908 #endif
909 ERR(int21, "Cannot change PSP for non-DOS task!\n");
912 static WORD INT21_GetCurrentPSP()
914 #ifdef MZ_SUPPORTED
915 TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
916 NE_MODULE *pModule = pTask ? NE_GetPtr( pTask->hModule ) : NULL;
918 GlobalUnlock16( GetCurrentTask() );
919 if (pModule->lpDosTask)
920 return pModule->lpDosTask->psp_seg;
921 else
922 #endif
923 return GetCurrentPDB16();
927 SEGPTR INT21_GetListOfLists()
929 static DOS_LISTOFLISTS *LOL;
930 static SEGPTR seg_LOL;
933 Output of DOS 6.22:
935 0133:0020 6A 13-33 01 CC 00 33 01 59 00 j.3...3.Y.
936 0133:0030 70 00 00 00 72 02 00 02-6D 00 33 01 00 00 2E 05 p...r...m.3.....
937 0133:0040 00 00 FC 04 00 00 03 08-92 21 11 E0 04 80 C6 0D .........!......
938 0133:0050 CC 0D 4E 55 4C 20 20 20-20 20 00 00 00 00 00 00 ..NUL ......
939 0133:0060 00 4B BA C1 06 14 00 00-00 03 01 00 04 70 CE FF .K...........p..
940 0133:0070 FF 00 00 00 00 00 00 00-00 01 00 00 0D 05 00 00 ................
941 0133:0080 00 FF FF 00 00 00 00 FE-00 00 F8 03 FF 9F 70 02 ..............p.
942 0133:0090 D0 44 C8 FD D4 44 C8 FD-D4 44 C8 FD D0 44 C8 FD .D...D...D...D..
943 0133:00A0 D0 44 C8 FD D0 44 .D...D
945 if (!LOL) {
946 LOL = SEGPTR_ALLOC(sizeof(DOS_LISTOFLISTS));
948 LOL->CX_Int21_5e01 = 0x0;
949 LOL->LRU_count_FCB_cache = 0x0;
950 LOL->LRU_count_FCB_open = 0x0;
951 LOL->OEM_func_handler = -1; /* not available */
952 LOL->INT21_offset = 0x0;
953 LOL->sharing_retry_count = sharing_retries; /* default value: 3 */
954 LOL->sharing_retry_delay = sharing_pause; /* default value: 1 */
955 LOL->ptr_disk_buf = 0x0;
956 LOL->offs_unread_CON = 0x0;
957 LOL->seg_first_MCB = 0x0;
958 LOL->ptr_first_DPB = 0x0;
959 LOL->ptr_first_SysFileTable = 0x0;
960 LOL->ptr_clock_dev_hdr = 0x0;
961 LOL->ptr_CON_dev_hdr = 0x0;
962 LOL->max_byte_per_sec = 512;
963 LOL->ptr_disk_buf_info = 0x0;
964 LOL->ptr_array_CDS = 0x0;
965 LOL->ptr_sys_FCB = 0x0;
966 LOL->nr_protect_FCB = 0x0;
967 LOL->nr_block_dev = 0x0;
968 LOL->nr_avail_drive_letters = 26; /* A - Z */
969 LOL->nr_drives_JOINed = 0x0;
970 LOL->ptr_spec_prg_names = 0x0;
971 LOL->ptr_SETVER_prg_list = 0x0; /* no SETVER list */
972 LOL->DOS_HIGH_A20_func_offs = 0x0;
973 LOL->PSP_last_exec = 0x0;
974 LOL->BUFFERS_val = 99; /* maximum: 99 */
975 LOL->BUFFERS_nr_lookahead = 8; /* maximum: 8 */
976 LOL->boot_drive = 3; /* C: */
977 LOL->flag_DWORD_moves = 0x01; /* i386+ */
978 LOL->size_extended_mem = 0xf000; /* very high value */
980 if (!seg_LOL) seg_LOL = SEGPTR_GET(LOL);
981 return seg_LOL+(WORD)&((DOS_LISTOFLISTS*)0)->ptr_first_DPB;
985 /***********************************************************************
986 * INT21_GetExtendedError
988 static void INT21_GetExtendedError( CONTEXT *context )
990 BYTE class, action, locus;
991 WORD error = GetLastError();
993 switch(error)
995 case ERROR_SUCCESS:
996 class = action = locus = 0;
997 break;
998 case ERROR_DIR_NOT_EMPTY:
999 class = EC_Exists;
1000 action = SA_Ignore;
1001 locus = EL_Disk;
1002 break;
1003 case ERROR_ACCESS_DENIED:
1004 class = EC_AccessDenied;
1005 action = SA_Abort;
1006 locus = EL_Disk;
1007 break;
1008 case ERROR_CANNOT_MAKE:
1009 class = EC_AccessDenied;
1010 action = SA_Abort;
1011 locus = EL_Unknown;
1012 break;
1013 case ERROR_HANDLE_DISK_FULL:
1014 class = EC_MediaError;
1015 action = SA_Abort;
1016 locus = EL_Disk;
1017 break;
1018 case ERROR_FILE_EXISTS:
1019 class = EC_Exists;
1020 action = SA_Abort;
1021 locus = EL_Disk;
1022 break;
1023 case ERROR_FILE_NOT_FOUND:
1024 class = EC_NotFound;
1025 action = SA_Abort;
1026 locus = EL_Disk;
1027 break;
1028 case ER_GeneralFailure:
1029 class = EC_SystemFailure;
1030 action = SA_Abort;
1031 locus = EL_Unknown;
1032 break;
1033 case ERROR_INVALID_DRIVE:
1034 class = EC_MediaError;
1035 action = SA_Abort;
1036 locus = EL_Disk;
1037 break;
1038 case ERROR_INVALID_HANDLE:
1039 class = EC_ProgramError;
1040 action = SA_Abort;
1041 locus = EL_Disk;
1042 break;
1043 case ERROR_LOCK_VIOLATION:
1044 class = EC_AccessDenied;
1045 action = SA_Abort;
1046 locus = EL_Disk;
1047 break;
1048 case ERROR_NO_MORE_FILES:
1049 class = EC_MediaError;
1050 action = SA_Abort;
1051 locus = EL_Disk;
1052 break;
1053 case ER_NoNetwork:
1054 class = EC_NotFound;
1055 action = SA_Abort;
1056 locus = EL_Network;
1057 break;
1058 case ERROR_NOT_ENOUGH_MEMORY:
1059 class = EC_OutOfResource;
1060 action = SA_Abort;
1061 locus = EL_Memory;
1062 break;
1063 case ERROR_PATH_NOT_FOUND:
1064 class = EC_NotFound;
1065 action = SA_Abort;
1066 locus = EL_Disk;
1067 break;
1068 case ERROR_SEEK:
1069 class = EC_NotFound;
1070 action = SA_Ignore;
1071 locus = EL_Disk;
1072 break;
1073 case ERROR_SHARING_VIOLATION:
1074 class = EC_Temporary;
1075 action = SA_Retry;
1076 locus = EL_Disk;
1077 break;
1078 case ERROR_TOO_MANY_OPEN_FILES:
1079 class = EC_ProgramError;
1080 action = SA_Abort;
1081 locus = EL_Disk;
1082 break;
1083 default:
1084 FIXME( int21, "Unknown error %d\n", error );
1085 class = EC_SystemFailure;
1086 action = SA_Abort;
1087 locus = EL_Unknown;
1088 break;
1090 TRACE( int21, "GET EXTENDED ERROR code 0x%02x class 0x%02x action 0x%02x locus %02x\n",
1091 error, class, action, locus );
1092 AX_reg(context) = error;
1093 BH_reg(context) = class;
1094 BL_reg(context) = action;
1095 CH_reg(context) = locus;
1098 /***********************************************************************
1099 * DOS3Call (KERNEL.102)
1101 void WINAPI DOS3Call( CONTEXT *context )
1103 BOOL bSetDOSExtendedError = FALSE;
1106 TRACE(int21, "AX=%04x BX=%04x CX=%04x DX=%04x "
1107 "SI=%04x DI=%04x DS=%04x ES=%04x EFL=%08lx\n",
1108 AX_reg(context), BX_reg(context), CX_reg(context), DX_reg(context),
1109 SI_reg(context), DI_reg(context),
1110 (WORD)DS_reg(context), (WORD)ES_reg(context),
1111 EFL_reg(context) );
1114 if (AH_reg(context) == 0x59) /* Get extended error info */
1116 INT21_GetExtendedError( context );
1117 return;
1120 if (AH_reg(context) == 0x0C) /* Flush buffer and read standard input */
1122 TRACE(int21, "FLUSH BUFFER AND READ STANDARD INPUT\n");
1123 /* no flush here yet */
1124 AH_reg(context) = AL_reg(context);
1127 if (AH_reg(context)>=0x2f) {
1128 /* extended error is used by (at least) functions 0x2f to 0x62 */
1129 SetLastError(0);
1131 RESET_CFLAG(context); /* Not sure if this is a good idea */
1133 switch(AH_reg(context))
1135 case 0x03: /* READ CHARACTER FROM STDAUX */
1136 case 0x04: /* WRITE CHARACTER TO STDAUX */
1137 case 0x05: /* WRITE CHARACTER TO PRINTER */
1138 case 0x0f: /* OPEN FILE USING FCB */
1139 case 0x10: /* CLOSE FILE USING FCB */
1140 case 0x14: /* SEQUENTIAL READ FROM FCB FILE */
1141 case 0x15: /* SEQUENTIAL WRITE TO FCB FILE */
1142 case 0x16: /* CREATE OR TRUNCATE FILE USING FCB */
1143 case 0x21: /* READ RANDOM RECORD FROM FCB FILE */
1144 case 0x22: /* WRITE RANDOM RECORD TO FCB FILE */
1145 case 0x23: /* GET FILE SIZE FOR FCB */
1146 case 0x24: /* SET RANDOM RECORD NUMBER FOR FCB */
1147 case 0x26: /* CREATE NEW PROGRAM SEGMENT PREFIX */
1148 case 0x27: /* RANDOM BLOCK READ FROM FCB FILE */
1149 case 0x28: /* RANDOM BLOCK WRITE TO FCB FILE */
1150 case 0x54: /* GET VERIFY FLAG */
1151 INT_BARF( context, 0x21 );
1152 break;
1154 case 0x00: /* TERMINATE PROGRAM */
1155 TRACE(int21,"TERMINATE PROGRAM\n");
1156 ExitProcess( 0 );
1157 break;
1159 case 0x01: /* READ CHARACTER FROM STANDARD INPUT, WITH ECHO */
1160 TRACE(int21,"DIRECT CHARACTER INPUT WITH ECHO\n");
1161 AL_reg(context) = CONSOLE_GetCharacter();
1162 /* FIXME: no echo */
1163 break;
1165 case 0x02: /* WRITE CHARACTER TO STANDARD OUTPUT */
1166 TRACE(int21, "Write Character to Standard Output\n");
1167 CONSOLE_Write(DL_reg(context), 0, 0, 0);
1168 break;
1170 case 0x06: /* DIRECT CONSOLE IN/OUTPUT */
1171 TRACE(int21, "Direct Console Input/Output\n");
1172 if (DL_reg(context) == 0xff) {
1173 FIXME(int21,"Direct Console Input should not block\n");
1174 AL_reg(context) = CONSOLE_GetCharacter();
1175 FL_reg(context) &= ~0x40; /* clear ZF */
1176 } else
1177 CONSOLE_Write(DL_reg(context), 0, 0, 0);
1178 break;
1180 case 0x07: /* DIRECT CHARACTER INPUT WITHOUT ECHO */
1181 TRACE(int21,"DIRECT CHARACTER INPUT WITHOUT ECHO\n");
1182 AL_reg(context) = CONSOLE_GetCharacter();
1183 break;
1185 case 0x08: /* CHARACTER INPUT WITHOUT ECHO */
1186 TRACE(int21,"CHARACTER INPUT WITHOUT ECHO\n");
1187 AL_reg(context) = CONSOLE_GetCharacter();
1188 break;
1190 case 0x09: /* WRITE STRING TO STANDARD OUTPUT */
1191 TRACE(int21,"WRITE '$'-terminated string from %04lX:%04X to stdout\n",
1192 DS_reg(context),DX_reg(context) );
1194 LPSTR data = CTX_SEG_OFF_TO_LIN(context,DS_reg(context),EDX_reg(context));
1195 LPSTR p = data;
1196 /* do NOT use strchr() to calculate the string length,
1197 as '\0' is valid string content, too !
1198 Maybe we should check for non-'$' strings, but DOS doesn't. */
1199 while (*p != '$') p++;
1200 _hwrite16( 1, data, (int)p - (int)data);
1201 AL_reg(context) = '$'; /* yes, '$' (0x24) gets returned in AL */
1203 break;
1205 case 0x0a: /* BUFFERED INPUT */
1207 char *buffer = ((char *)CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
1208 EDX_reg(context) ));
1209 int res;
1211 TRACE(int21,"BUFFERED INPUT (size=%d)\n",buffer[0]);
1212 if (buffer[1])
1213 TRACE(int21,"Handle old chars in buffer!\n");
1214 res=_lread16( 0, buffer+2,buffer[0]);
1215 buffer[1]=res;
1216 if(buffer[res+1] == '\n')
1217 buffer[res+1] = '\r';
1218 break;
1221 case 0x0b: {/* GET STDIN STATUS */
1222 char x1,x2;
1224 if (CONSOLE_CheckForKeystroke(&x1,&x2))
1225 AL_reg(context) = 0xff;
1226 else
1227 AL_reg(context) = 0;
1228 break;
1230 case 0x2e: /* SET VERIFY FLAG */
1231 TRACE(int21,"SET VERIFY FLAG ignored\n");
1232 /* we cannot change the behaviour anyway, so just ignore it */
1233 break;
1235 case 0x18: /* NULL FUNCTIONS FOR CP/M COMPATIBILITY */
1236 case 0x1d:
1237 case 0x1e:
1238 case 0x20:
1239 case 0x6b: /* NULL FUNCTION */
1240 AL_reg(context) = 0;
1241 break;
1243 case 0x5c: /* "FLOCK" - RECORD LOCKING */
1244 fLock(context);
1245 break;
1247 case 0x0d: /* DISK BUFFER FLUSH */
1248 TRACE(int21,"DISK BUFFER FLUSH ignored\n");
1249 RESET_CFLAG(context); /* dos 6+ only */
1250 break;
1252 case 0x0e: /* SELECT DEFAULT DRIVE */
1253 TRACE(int21,"SELECT DEFAULT DRIVE %d\n", DL_reg(context));
1254 DRIVE_SetCurrentDrive( DL_reg(context) );
1255 AL_reg(context) = MAX_DOS_DRIVES;
1256 break;
1258 case 0x11: /* FIND FIRST MATCHING FILE USING FCB */
1259 TRACE(int21,"FIND FIRST MATCHING FILE USING FCB %p\n",
1260 CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
1261 if (!INT21_FindFirstFCB(context))
1263 AL_reg(context) = 0xff;
1264 break;
1266 /* else fall through */
1268 case 0x12: /* FIND NEXT MATCHING FILE USING FCB */
1269 AL_reg(context) = INT21_FindNextFCB(context) ? 0x00 : 0xff;
1270 break;
1272 case 0x13: /* DELETE FILE USING FCB */
1273 DeleteFileFCB(context);
1274 break;
1276 case 0x17: /* RENAME FILE USING FCB */
1277 RenameFileFCB(context);
1278 break;
1280 case 0x19: /* GET CURRENT DEFAULT DRIVE */
1281 AL_reg(context) = DRIVE_GetCurrentDrive();
1282 break;
1284 case 0x1a: /* SET DISK TRANSFER AREA ADDRESS */
1286 TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
1287 pTask->dta = PTR_SEG_OFF_TO_SEGPTR(DS_reg(context),DX_reg(context));
1288 TRACE(int21, "Set DTA: %08lx\n", pTask->dta);
1290 break;
1292 case 0x1b: /* GET ALLOCATION INFORMATION FOR DEFAULT DRIVE */
1293 DL_reg(context) = 0;
1294 if (!INT21_GetDriveAllocInfo(context)) AX_reg(context) = 0xffff;
1295 break;
1297 case 0x1c: /* GET ALLOCATION INFORMATION FOR SPECIFIC DRIVE */
1298 if (!INT21_GetDriveAllocInfo(context)) AX_reg(context) = 0xffff;
1299 break;
1301 case 0x1f: /* GET DRIVE PARAMETER BLOCK FOR DEFAULT DRIVE */
1302 GetDrivePB(context, DRIVE_GetCurrentDrive());
1303 break;
1305 case 0x25: /* SET INTERRUPT VECTOR */
1306 INT_CtxSetHandler( context, AL_reg(context),
1307 (FARPROC16)PTR_SEG_OFF_TO_SEGPTR( DS_reg(context),
1308 DX_reg(context)));
1309 break;
1311 case 0x29: /* PARSE FILENAME INTO FCB */
1312 INT21_ParseFileNameIntoFCB(context);
1313 break;
1315 case 0x2a: /* GET SYSTEM DATE */
1316 INT21_GetSystemDate(context);
1317 break;
1319 case 0x2b: /* SET SYSTEM DATE */
1320 FIXME(int21, "SetSystemDate(%02d/%02d/%04d): not allowed\n",
1321 DL_reg(context), DH_reg(context), CX_reg(context) );
1322 AL_reg(context) = 0; /* Let's pretend we succeeded */
1323 break;
1325 case 0x2c: /* GET SYSTEM TIME */
1326 INT21_GetSystemTime(context);
1327 break;
1329 case 0x2d: /* SET SYSTEM TIME */
1330 FIXME(int21, "SetSystemTime(%02d:%02d:%02d.%02d): not allowed\n",
1331 CH_reg(context), CL_reg(context),
1332 DH_reg(context), DL_reg(context) );
1333 AL_reg(context) = 0; /* Let's pretend we succeeded */
1334 break;
1336 case 0x2f: /* GET DISK TRANSFER AREA ADDRESS */
1337 TRACE(int21,"GET DISK TRANSFER AREA ADDRESS\n");
1339 TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
1340 ES_reg(context) = SELECTOROF( pTask->dta );
1341 BX_reg(context) = OFFSETOF( pTask->dta );
1343 break;
1345 case 0x30: /* GET DOS VERSION */
1346 TRACE(int21,"GET DOS VERSION %s requested\n",
1347 (AL_reg(context) == 0x00)?"OEM number":"version flag");
1348 AX_reg(context) = (HIWORD(GetVersion16()) >> 8) |
1349 (HIWORD(GetVersion16()) << 8);
1350 #if 0
1351 AH_reg(context) = 0x7;
1352 AL_reg(context) = 0xA;
1353 #endif
1355 BX_reg(context) = 0x00FF; /* 0x123456 is Wine's serial # */
1356 CX_reg(context) = 0x0000;
1357 break;
1359 case 0x31: /* TERMINATE AND STAY RESIDENT */
1360 FIXME(int21,"TERMINATE AND STAY RESIDENT stub\n");
1361 break;
1363 case 0x32: /* GET DOS DRIVE PARAMETER BLOCK FOR SPECIFIC DRIVE */
1364 TRACE(int21,"GET DOS DRIVE PARAMETER BLOCK FOR DRIVE %s\n",
1365 INT21_DriveName( DL_reg(context)));
1366 GetDrivePB(context, DOS_GET_DRIVE( DL_reg(context) ) );
1367 break;
1369 case 0x33: /* MULTIPLEXED */
1370 switch (AL_reg(context))
1372 case 0x00: /* GET CURRENT EXTENDED BREAK STATE */
1373 TRACE(int21,"GET CURRENT EXTENDED BREAK STATE\n");
1374 DL_reg(context) = DOSCONF_config.brk_flag;
1375 break;
1377 case 0x01: /* SET EXTENDED BREAK STATE */
1378 TRACE(int21,"SET CURRENT EXTENDED BREAK STATE\n");
1379 DOSCONF_config.brk_flag = (DL_reg(context) > 0);
1380 break;
1382 case 0x02: /* GET AND SET EXTENDED CONTROL-BREAK CHECKING STATE*/
1383 TRACE(int21,"GET AND SET EXTENDED CONTROL-BREAK CHECKING STATE\n");
1384 /* ugly coding in order to stay reentrant */
1385 if (DL_reg(context))
1387 DL_reg(context) = DOSCONF_config.brk_flag;
1388 DOSCONF_config.brk_flag = 1;
1390 else
1392 DL_reg(context) = DOSCONF_config.brk_flag;
1393 DOSCONF_config.brk_flag = 0;
1395 break;
1397 case 0x05: /* GET BOOT DRIVE */
1398 TRACE(int21,"GET BOOT DRIVE\n");
1399 DL_reg(context) = 3;
1400 /* c: is Wine's bootdrive (a: is 1)*/
1401 break;
1403 case 0x06: /* GET TRUE VERSION NUMBER */
1404 TRACE(int21,"GET TRUE VERSION NUMBER\n");
1405 BX_reg(context) = (HIWORD(GetVersion16() >> 8)) |
1406 (HIWORD(GetVersion16() << 8));
1407 DX_reg(context) = 0x00;
1408 break;
1410 default:
1411 INT_BARF( context, 0x21 );
1412 break;
1414 break;
1416 case 0x34: /* GET ADDRESS OF INDOS FLAG */
1417 TRACE(int21,"GET ADDRESS OF INDOS FLAG\n");
1418 if (!heap) INT21_CreateHeap();
1419 ES_reg(context) = DosHeapHandle;
1420 BX_reg(context) = (int)&heap->InDosFlag - (int)heap;
1421 break;
1423 case 0x35: /* GET INTERRUPT VECTOR */
1424 TRACE(int21,"GET INTERRUPT VECTOR 0x%02x\n",AL_reg(context));
1426 FARPROC16 addr = INT_CtxGetHandler( context, AL_reg(context) );
1427 ES_reg(context) = SELECTOROF(addr);
1428 BX_reg(context) = OFFSETOF(addr);
1430 break;
1432 case 0x36: /* GET FREE DISK SPACE */
1433 TRACE(int21,"GET FREE DISK SPACE FOR DRIVE %s\n",
1434 INT21_DriveName( DL_reg(context)));
1435 if (!INT21_GetFreeDiskSpace(context)) AX_reg(context) = 0xffff;
1436 break;
1438 case 0x37:
1440 unsigned char switchchar='/';
1441 switch (AL_reg(context))
1443 case 0x00: /* "SWITCHAR" - GET SWITCH CHARACTER */
1444 TRACE(int21,"SWITCHAR - GET SWITCH CHARACTER\n");
1445 AL_reg(context) = 0x00; /* success*/
1446 DL_reg(context) = switchchar;
1447 break;
1448 case 0x01: /*"SWITCHAR" - SET SWITCH CHARACTER*/
1449 TRACE(int21,"SWITCHAR - SET SWITCH CHARACTER\n");
1450 switchchar = DL_reg(context);
1451 AL_reg(context) = 0x00; /* success*/
1452 break;
1453 default: /*"AVAILDEV" - SPECIFY \DEV\ PREFIX USE*/
1454 INT_BARF( context, 0x21 );
1455 break;
1457 break;
1460 case 0x38: /* GET COUNTRY-SPECIFIC INFORMATION */
1461 TRACE(int21,"GET COUNTRY-SPECIFIC INFORMATION for country 0x%02x\n",
1462 AL_reg(context));
1463 AX_reg(context) = 0x02; /* no country support available */
1464 SET_CFLAG(context);
1465 break;
1467 case 0x39: /* "MKDIR" - CREATE SUBDIRECTORY */
1468 TRACE(int21,"MKDIR %s\n",
1469 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
1470 bSetDOSExtendedError = (!CreateDirectory16( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
1471 EDX_reg(context) ), NULL));
1472 break;
1474 case 0x3a: /* "RMDIR" - REMOVE SUBDIRECTORY */
1475 TRACE(int21,"RMDIR %s\n",
1476 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
1477 bSetDOSExtendedError = (!RemoveDirectory16( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
1478 EDX_reg(context) )));
1479 break;
1481 case 0x3b: /* "CHDIR" - SET CURRENT DIRECTORY */
1482 TRACE(int21,"CHDIR %s\n",
1483 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
1484 bSetDOSExtendedError = !INT21_ChangeDir(context);
1485 break;
1487 case 0x3c: /* "CREAT" - CREATE OR TRUNCATE FILE */
1488 TRACE(int21,"CREAT flag 0x%02x %s\n",CX_reg(context),
1489 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
1490 AX_reg(context) = _lcreat16( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
1491 EDX_reg(context) ), CX_reg(context) );
1492 bSetDOSExtendedError = (AX_reg(context) == (WORD)HFILE_ERROR16);
1493 break;
1495 case 0x3d: /* "OPEN" - OPEN EXISTING FILE */
1496 TRACE(int21,"OPEN mode 0x%02x %s\n",AL_reg(context),
1497 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
1498 OpenExistingFile(context);
1499 break;
1501 case 0x3e: /* "CLOSE" - CLOSE FILE */
1502 TRACE(int21,"CLOSE handle %d\n",BX_reg(context));
1503 bSetDOSExtendedError = ((AX_reg(context) = _lclose16( BX_reg(context) )) != 0);
1504 break;
1506 case 0x3f: /* "READ" - READ FROM FILE OR DEVICE */
1507 TRACE(int21,"READ from %d to %04lX:%04X for %d byte\n",BX_reg(context),
1508 DS_reg(context),DX_reg(context),CX_reg(context) );
1510 LONG result;
1511 if (ISV86(context))
1512 result = _hread16( BX_reg(context),
1513 CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
1514 EDX_reg(context) ),
1515 CX_reg(context) );
1516 else
1517 result = WIN16_hread( BX_reg(context),
1518 PTR_SEG_OFF_TO_SEGPTR( DS_reg(context),
1519 EDX_reg(context) ),
1520 CX_reg(context) );
1521 if (result == -1) bSetDOSExtendedError = TRUE;
1522 else AX_reg(context) = (WORD)result;
1524 break;
1526 case 0x40: /* "WRITE" - WRITE TO FILE OR DEVICE */
1527 TRACE(int21,"WRITE from %04lX:%04X to handle %d for %d byte\n",
1528 DS_reg(context),DX_reg(context),BX_reg(context),CX_reg(context) );
1530 LONG result = _hwrite16( BX_reg(context),
1531 CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
1532 EDX_reg(context) ),
1533 CX_reg(context) );
1534 if (result == -1) bSetDOSExtendedError = TRUE;
1535 else AX_reg(context) = (WORD)result;
1537 break;
1539 case 0x41: /* "UNLINK" - DELETE FILE */
1540 TRACE(int21,"UNLINK%s\n",
1541 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
1542 bSetDOSExtendedError = (!DeleteFileA( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
1543 EDX_reg(context) )));
1544 break;
1546 case 0x42: /* "LSEEK" - SET CURRENT FILE POSITION */
1547 TRACE(int21,"LSEEK handle %d offset %ld from %s\n",
1548 BX_reg(context), MAKELONG(DX_reg(context),CX_reg(context)),
1549 (AL_reg(context)==0)?"start of file":(AL_reg(context)==1)?
1550 "current file position":"end of file");
1552 LONG status = _llseek16( BX_reg(context),
1553 MAKELONG(DX_reg(context),CX_reg(context)),
1554 AL_reg(context) );
1555 if (status == -1) bSetDOSExtendedError = TRUE;
1556 else
1558 AX_reg(context) = LOWORD(status);
1559 DX_reg(context) = HIWORD(status);
1562 break;
1564 case 0x43: /* FILE ATTRIBUTES */
1565 switch (AL_reg(context))
1567 case 0x00:
1568 TRACE(int21,"GET FILE ATTRIBUTES for %s\n",
1569 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
1570 AX_reg(context) = (WORD)GetFileAttributesA(
1571 CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
1572 EDX_reg(context)));
1573 if (AX_reg(context) == 0xffff) bSetDOSExtendedError = TRUE;
1574 else CX_reg(context) = AX_reg(context);
1575 break;
1577 case 0x01:
1578 TRACE(int21,"SET FILE ATTRIBUTES 0x%02x for %s\n", CX_reg(context),
1579 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
1580 bSetDOSExtendedError =
1581 (!SetFileAttributesA( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
1582 EDX_reg(context)),
1583 CX_reg(context) ));
1584 break;
1585 case 0x02:
1586 TRACE(int21,"GET COMPRESSED FILE SIZE for %s stub\n",
1587 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
1589 break;
1591 case 0x44: /* IOCTL */
1592 switch (AL_reg(context))
1594 case 0x00:
1595 ioctlGetDeviceInfo(context);
1596 break;
1598 case 0x01:
1599 break;
1600 case 0x02:{
1601 const DOS_DEVICE *dev;
1602 if ((dev = DOSFS_GetDeviceByHandle( FILE_GetHandle(BX_reg(context)) )) &&
1603 !strcasecmp( dev->name, "SCSIMGR$" ))
1605 ASPI_DOS_HandleInt(context);
1607 break;
1609 case 0x05:{ /* IOCTL - WRITE TO BLOCK DEVICE CONTROL CHANNEL */
1610 /*BYTE *dataptr = CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context));*/
1611 int drive = DOS_GET_DRIVE(BL_reg(context));
1613 FIXME(int21,"program tried to write to block device control channel of drive %d:\n",drive);
1614 /* for (i=0;i<CX_reg(context);i++)
1615 fprintf(stdnimp,"%02x ",dataptr[i]);
1616 fprintf(stdnimp,"\n");*/
1617 AX_reg(context)=CX_reg(context);
1618 break;
1620 case 0x08: /* Check if drive is removable. */
1621 TRACE(int21,"IOCTL - CHECK IF BLOCK DEVICE REMOVABLE for drive %s\n",
1622 INT21_DriveName( BL_reg(context)));
1623 switch(GetDriveType16( DOS_GET_DRIVE( BL_reg(context) )))
1625 case DRIVE_CANNOTDETERMINE:
1626 SetLastError( ERROR_INVALID_DRIVE );
1627 AX_reg(context) = ERROR_INVALID_DRIVE;
1628 SET_CFLAG(context);
1629 break;
1630 case DRIVE_REMOVABLE:
1631 AX_reg(context) = 0; /* removable */
1632 break;
1633 default:
1634 AX_reg(context) = 1; /* not removable */
1635 break;
1637 break;
1639 case 0x09: /* CHECK IF BLOCK DEVICE REMOTE */
1640 TRACE(int21,"IOCTL - CHECK IF BLOCK DEVICE REMOTE for drive %s\n",
1641 INT21_DriveName( BL_reg(context)));
1642 switch(GetDriveType16( DOS_GET_DRIVE( BL_reg(context) )))
1644 case DRIVE_CANNOTDETERMINE:
1645 SetLastError( ERROR_INVALID_DRIVE );
1646 AX_reg(context) = ERROR_INVALID_DRIVE;
1647 SET_CFLAG(context);
1648 break;
1649 case DRIVE_REMOTE:
1650 DX_reg(context) = (1<<9) | (1<<12); /* remote */
1651 break;
1652 default:
1653 DX_reg(context) = 0; /* FIXME: use driver attr here */
1654 break;
1656 break;
1658 case 0x0a: /* check if handle (BX) is remote */
1659 TRACE(int21,"IOCTL - CHECK IF HANDLE %d IS REMOTE\n",BX_reg(context));
1660 /* returns DX, bit 15 set if remote, bit 14 set if date/time
1661 * not set on close
1663 DX_reg(context) = 0;
1664 break;
1666 case 0x0b: /* SET SHARING RETRY COUNT */
1667 TRACE(int21,"IOCTL - SET SHARING RETRY COUNT pause %d retries %d\n",
1668 CX_reg(context), DX_reg(context));
1669 if (!CX_reg(context))
1671 AX_reg(context) = 1;
1672 SET_CFLAG(context);
1673 break;
1675 sharing_pause = CX_reg(context);
1676 if (!DX_reg(context))
1677 sharing_retries = DX_reg(context);
1678 RESET_CFLAG(context);
1679 break;
1681 case 0x0d:
1682 TRACE(int21,"IOCTL - GENERIC BLOCK DEVICE REQUEST %s\n",
1683 INT21_DriveName( BL_reg(context)));
1684 bSetDOSExtendedError = ioctlGenericBlkDevReq(context);
1685 break;
1687 case 0x0e: /* get logical drive mapping */
1688 TRACE(int21,"IOCTL - GET LOGICAL DRIVE MAP for drive %s\n",
1689 INT21_DriveName( BL_reg(context)));
1690 AL_reg(context) = 0; /* drive has no mapping - FIXME: may be wrong*/
1691 break;
1693 case 0x0F: /* Set logical drive mapping */
1695 int drive;
1696 TRACE(int21,"IOCTL - SET LOGICAL DRIVE MAP for drive %s\n",
1697 INT21_DriveName( BL_reg(context)));
1698 drive = DOS_GET_DRIVE ( BL_reg(context) );
1699 if ( ! DRIVE_SetLogicalMapping ( drive, drive+1 ) )
1701 SET_CFLAG(context);
1702 AX_reg(context) = 0x000F; /* invalid drive */
1704 break;
1707 case 0xe0: /* Sun PC-NFS API */
1708 /* not installed */
1709 break;
1711 default:
1712 INT_BARF( context, 0x21 );
1713 break;
1715 break;
1717 case 0x45: /* "DUP" - DUPLICATE FILE HANDLE */
1719 HANDLE handle;
1720 TRACE(int21,"DUP - DUPLICATE FILE HANDLE %d\n",BX_reg(context));
1721 if ((bSetDOSExtendedError = !DuplicateHandle( GetCurrentProcess(),
1722 FILE_GetHandle(BX_reg(context)),
1723 GetCurrentProcess(), &handle,
1724 0, TRUE, DUPLICATE_SAME_ACCESS )))
1725 AX_reg(context) = HFILE_ERROR16;
1726 else
1727 AX_reg(context) = FILE_AllocDosHandle(handle);
1728 break;
1731 case 0x46: /* "DUP2", "FORCEDUP" - FORCE DUPLICATE FILE HANDLE */
1732 TRACE(int21,"FORCEDUP - FORCE DUPLICATE FILE HANDLE %d to %d\n",
1733 BX_reg(context),CX_reg(context));
1734 bSetDOSExtendedError = (FILE_Dup2( BX_reg(context), CX_reg(context) ) == HFILE_ERROR16);
1735 break;
1737 case 0x47: /* "CWD" - GET CURRENT DIRECTORY */
1738 TRACE(int21,"CWD - GET CURRENT DIRECTORY for drive %s\n",
1739 INT21_DriveName( DL_reg(context)));
1740 bSetDOSExtendedError = !INT21_GetCurrentDirectory(context);
1741 break;
1743 case 0x48: /* ALLOCATE MEMORY */
1744 TRACE(int21,"ALLOCATE MEMORY for %d paragraphs\n", BX_reg(context));
1746 LPVOID *mem;
1747 if (ISV86(context))
1749 mem= DOSMEM_GetBlock(0,(DWORD)BX_reg(context)<<4,NULL);
1750 if (mem)
1751 AX_reg(context) = DOSMEM_MapLinearToDos(mem)>>4;
1753 else
1755 mem = (LPVOID)GlobalDOSAlloc16(BX_reg(context)<<4);
1756 if (mem)
1757 AX_reg(context) = (DWORD)mem&0xffff;
1759 if (!mem)
1761 SET_CFLAG(context);
1762 AX_reg(context) = 0x0008; /* insufficient memory */
1763 BX_reg(context) = DOSMEM_Available(0)>>4;
1766 break;
1768 case 0x49: /* FREE MEMORY */
1769 TRACE(int21,"FREE MEMORY segment %04lX\n", ES_reg(context));
1771 BOOL ret;
1772 if (ISV86(context))
1773 ret= DOSMEM_FreeBlock(0,DOSMEM_MapDosToLinear(ES_reg(context)<<4));
1774 else
1776 ret = !GlobalDOSFree16(ES_reg(context));
1777 /* If we don't reset ES_reg, we will fail in the relay code */
1778 ES_reg(context)=ret;
1780 if (!ret)
1782 TRACE(int21,"FREE MEMORY failed\n");
1783 SET_CFLAG(context);
1784 AX_reg(context) = 0x0009; /* memory block address invalid */
1787 break;
1789 case 0x4a: /* RESIZE MEMORY BLOCK */
1790 TRACE(int21,"RESIZE MEMORY segment %04lX to %d paragraphs\n", ES_reg(context), BX_reg(context));
1791 if (!ISV86(context))
1792 FIXME(int21,"RESIZE MEMORY probably insufficent implementation. Expect crash soon\n");
1794 LPVOID *mem = DOSMEM_ResizeBlock(0,DOSMEM_MapDosToLinear(ES_reg(context)<<4),
1795 BX_reg(context)<<4,NULL);
1796 if (mem)
1797 AX_reg(context) = DOSMEM_MapLinearToDos(mem)>>4;
1798 else {
1799 SET_CFLAG(context);
1800 AX_reg(context) = 0x0008; /* insufficient memory */
1801 BX_reg(context) = DOSMEM_Available(0)>>4; /* not quite right */
1804 break;
1806 case 0x4b: /* "EXEC" - LOAD AND/OR EXECUTE PROGRAM */
1807 TRACE(int21,"EXEC %s\n",
1808 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context) ));
1809 AX_reg(context) = WinExec16( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
1810 EDX_reg(context) ),
1811 SW_NORMAL );
1812 if (AX_reg(context) < 32) SET_CFLAG(context);
1813 break;
1815 case 0x4c: /* "EXIT" - TERMINATE WITH RETURN CODE */
1816 TRACE(int21,"EXIT with return code %d\n",AL_reg(context));
1817 ExitProcess( AL_reg(context) );
1818 break;
1820 case 0x4d: /* GET RETURN CODE */
1821 TRACE(int21,"GET RETURN CODE (ERRORLEVEL)\n");
1822 AX_reg(context) = 0; /* normal exit */
1823 break;
1825 case 0x4e: /* "FINDFIRST" - FIND FIRST MATCHING FILE */
1826 TRACE(int21,"FINDFIRST mask 0x%04x spec %s\n",CX_reg(context),
1827 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
1828 if (!INT21_FindFirst(context)) break;
1829 /* fall through */
1831 case 0x4f: /* "FINDNEXT" - FIND NEXT MATCHING FILE */
1832 TRACE(int21,"FINDNEXT\n");
1833 if (!INT21_FindNext(context))
1835 SetLastError( ERROR_NO_MORE_FILES );
1836 AX_reg(context) = ERROR_NO_MORE_FILES;
1837 SET_CFLAG(context);
1839 else AX_reg(context) = 0; /* OK */
1840 break;
1841 case 0x50: /* SET CURRENT PROCESS ID (SET PSP ADDRESS) */
1842 TRACE(int21, "SET CURRENT PROCESS ID (SET PSP ADDRESS)\n");
1843 INT21_SetCurrentPSP(BX_reg(context));
1844 break;
1845 case 0x51: /* GET PSP ADDRESS */
1846 TRACE(int21,"GET CURRENT PROCESS ID (GET PSP ADDRESS)\n");
1847 /* FIXME: should we return the original DOS PSP upon */
1848 /* Windows startup ? */
1849 BX_reg(context) = INT21_GetCurrentPSP();
1850 break;
1851 case 0x62: /* GET PSP ADDRESS */
1852 TRACE(int21,"GET CURRENT PSP ADDRESS\n");
1853 /* FIXME: should we return the original DOS PSP upon */
1854 /* Windows startup ? */
1855 BX_reg(context) = INT21_GetCurrentPSP();
1856 break;
1858 case 0x52: /* "SYSVARS" - GET LIST OF LISTS */
1859 TRACE(int21,"SYSVARS - GET LIST OF LISTS\n");
1861 SEGPTR lol;
1862 lol = INT21_GetListOfLists();
1863 ES_reg(context) = HIWORD(lol);
1864 BX_reg(context) = LOWORD(lol);
1866 break;
1868 case 0x56: /* "RENAME" - RENAME FILE */
1869 TRACE(int21,"RENAME %s to %s\n",
1870 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)),
1871 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, ES_reg(context),EDI_reg(context)));
1872 bSetDOSExtendedError =
1873 (!MoveFileA( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)),
1874 CTX_SEG_OFF_TO_LIN(context, ES_reg(context),EDI_reg(context))));
1875 break;
1877 case 0x57: /* FILE DATE AND TIME */
1878 switch (AL_reg(context))
1880 case 0x00: /* Get */
1882 FILETIME filetime;
1883 TRACE(int21,"GET FILE DATE AND TIME for handle %d\n",
1884 BX_reg(context));
1885 if (!GetFileTime( FILE_GetHandle(BX_reg(context)), NULL, NULL, &filetime ))
1886 bSetDOSExtendedError = TRUE;
1887 else FileTimeToDosDateTime( &filetime, &DX_reg(context),
1888 &CX_reg(context) );
1890 break;
1892 case 0x01: /* Set */
1894 FILETIME filetime;
1895 TRACE(int21,"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( FILE_GetHandle(BX_reg(context)),
1901 NULL, NULL, &filetime ));
1903 break;
1905 break;
1907 case 0x58: /* GET OR SET MEMORY/UMB ALLOCATION STRATEGY */
1908 TRACE(int21,"GET OR SET MEMORY/UMB ALLOCATION STRATEGY subfunction %d\n",
1909 AL_reg(context));
1910 switch (AL_reg(context))
1912 case 0x00:
1913 AX_reg(context) = 1;
1914 break;
1915 case 0x02:
1916 AX_reg(context) = 0;
1917 break;
1918 case 0x01:
1919 case 0x03:
1920 break;
1922 RESET_CFLAG(context);
1923 break;
1925 case 0x5a: /* CREATE TEMPORARY FILE */
1926 TRACE(int21,"CREATE TEMPORARY FILE\n");
1927 bSetDOSExtendedError = !INT21_CreateTempFile(context);
1928 break;
1930 case 0x5b: /* CREATE NEW FILE */
1931 TRACE(int21,"CREATE NEW FILE 0x%02x for %s\n", CX_reg(context),
1932 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
1933 bSetDOSExtendedError = ((AX_reg(context) =
1934 _lcreat16_uniq( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)), 0 ))
1935 == (WORD)HFILE_ERROR16);
1936 break;
1938 case 0x5d: /* NETWORK */
1939 FIXME(int21,"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;
1945 case 0x5e:
1946 bSetDOSExtendedError = INT21_networkfunc (context);
1947 break;
1949 case 0x5f: /* NETWORK */
1950 switch (AL_reg(context))
1952 case 0x07: /* ENABLE DRIVE */
1953 TRACE(int21,"ENABLE DRIVE %c:\n",(DL_reg(context)+'A'));
1954 if (!DRIVE_Enable( DL_reg(context) ))
1956 SetLastError( ERROR_INVALID_DRIVE );
1957 bSetDOSExtendedError = TRUE;
1959 break;
1961 case 0x08: /* DISABLE DRIVE */
1962 TRACE(int21,"DISABLE DRIVE %c:\n",(DL_reg(context)+'A'));
1963 if (!DRIVE_Disable( DL_reg(context) ))
1965 SetLastError( ERROR_INVALID_DRIVE );
1966 bSetDOSExtendedError = TRUE;
1968 break;
1970 default:
1971 /* network software not installed */
1972 TRACE(int21,"NETWORK function AX=%04x not implemented\n",AX_reg(context));
1973 SetLastError( ER_NoNetwork );
1974 bSetDOSExtendedError = TRUE;
1975 break;
1977 break;
1979 case 0x60: /* "TRUENAME" - CANONICALIZE FILENAME OR PATH */
1980 TRACE(int21,"TRUENAME %s\n",
1981 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context),ESI_reg(context)));
1983 if (!GetFullPathNameA( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
1984 ESI_reg(context)), 128,
1985 CTX_SEG_OFF_TO_LIN(context, ES_reg(context),
1986 EDI_reg(context)),NULL))
1987 bSetDOSExtendedError = TRUE;
1988 else AX_reg(context) = 0;
1990 break;
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;
1999 break;
2000 case 0x64: /* OS/2 DOS BOX */
2001 INT_BARF( context, 0x21 );
2002 SET_CFLAG(context);
2003 break;
2005 case 0x65:{/* GET EXTENDED COUNTRY INFORMATION */
2006 extern WORD WINE_LanguageId;
2007 BYTE *dataptr=CTX_SEG_OFF_TO_LIN(context, ES_reg(context),EDI_reg(context));
2008 TRACE(int21,"GET EXTENDED COUNTRY INFORMATION code page %d country %d\n",
2009 BX_reg(context), DX_reg(context));
2010 switch (AL_reg(context)) {
2011 case 0x01:
2012 TRACE(int21,"\tget general internationalization info\n");
2013 dataptr[0] = 0x1;
2014 *(WORD*)(dataptr+1) = 41;
2015 *(WORD*)(dataptr+3) = WINE_LanguageId;
2016 *(WORD*)(dataptr+5) = CodePage;
2017 *(DWORD*)(dataptr+0x19) = 0; /* FIXME: ptr to case map routine */
2018 break;
2019 case 0x06:
2020 TRACE(int21,"\tget pointer to collating sequence table\n");
2021 dataptr[0] = 0x06;
2022 *(DWORD*)(dataptr+1) = MAKELONG(DOSMEM_CollateTable & 0xFFFF,DOSMEM_AllocSelector(DOSMEM_CollateTable>>16));
2023 CX_reg(context) = 258;/*FIXME: size of table?*/
2024 break;
2025 default:
2026 TRACE(int21,"\tunimplemented function %d\n",AL_reg(context));
2027 INT_BARF( context, 0x21 );
2028 SET_CFLAG(context);
2029 break;
2031 break;
2033 case 0x66: /* GLOBAL CODE PAGE TABLE */
2034 switch (AL_reg(context))
2036 case 0x01:
2037 TRACE(int21,"GET GLOBAL CODE PAGE TABLE\n");
2038 DX_reg(context) = BX_reg(context) = CodePage;
2039 RESET_CFLAG(context);
2040 break;
2041 case 0x02:
2042 TRACE(int21,"SET GLOBAL CODE PAGE TABLE active page %d system page %d\n",
2043 BX_reg(context),DX_reg(context));
2044 CodePage = BX_reg(context);
2045 RESET_CFLAG(context);
2046 break;
2048 break;
2050 case 0x67: /* SET HANDLE COUNT */
2051 TRACE(int21,"SET HANDLE COUNT to %d\n",BX_reg(context) );
2052 SetHandleCount16( BX_reg(context) );
2053 if (GetLastError()) bSetDOSExtendedError = TRUE;
2054 break;
2056 case 0x68: /* "FFLUSH" - COMMIT FILE */
2057 case 0x6a: /* COMMIT FILE */
2058 TRACE(int21,"FFLUSH/COMMIT handle %d\n",BX_reg(context));
2059 bSetDOSExtendedError = (!FlushFileBuffers( FILE_GetHandle(BX_reg(context)) ));
2060 break;
2062 case 0x69: /* DISK SERIAL NUMBER */
2063 switch (AL_reg(context))
2065 case 0x00:
2066 TRACE(int21,"GET DISK SERIAL NUMBER for drive %s\n",
2067 INT21_DriveName(BL_reg(context)));
2068 if (!INT21_GetDiskSerialNumber(context)) bSetDOSExtendedError = TRUE;
2069 else AX_reg(context) = 0;
2070 break;
2072 case 0x01:
2073 TRACE(int21,"SET DISK SERIAL NUMBER for drive %s\n",
2074 INT21_DriveName(BL_reg(context)));
2075 if (!INT21_SetDiskSerialNumber(context)) bSetDOSExtendedError = TRUE;
2076 else AX_reg(context) = 1;
2077 break;
2079 break;
2081 case 0x6C: /* Extended Open/Create*/
2082 TRACE(int21,"EXTENDED OPEN/CREATE %s\n",
2083 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDI_reg(context)));
2084 bSetDOSExtendedError = INT21_ExtendedOpenCreateFile(context);
2085 break;
2087 case 0x71: /* MS-DOS 7 (Windows95) - LONG FILENAME FUNCTIONS */
2088 if ((GetVersion()&0xC0000004)!=0xC0000004) {
2089 /* not supported on anything but Win95 */
2090 TRACE(int21,"LONG FILENAME functions supported only by win95\n");
2091 SET_CFLAG(context);
2092 AL_reg(context) = 0;
2093 } else
2094 switch(AL_reg(context))
2096 case 0x39: /* Create directory */
2097 TRACE(int21,"LONG FILENAME - MAKE DIRECTORY %s\n",
2098 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)));
2099 bSetDOSExtendedError = (!CreateDirectoryA(
2100 CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
2101 EDX_reg(context) ), NULL));
2102 break;
2103 case 0x3a: /* Remove directory */
2104 TRACE(int21,"LONG FILENAME - REMOVE DIRECTORY %s\n",
2105 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)));
2106 bSetDOSExtendedError = (!RemoveDirectoryA(
2107 CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
2108 EDX_reg(context) )));
2109 break;
2110 case 0x43: /* Get/Set file attributes */
2111 TRACE(int21,"LONG FILENAME -EXTENDED GET/SET FILE ATTRIBUTES %s\n",
2112 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)));
2113 switch (BL_reg(context))
2115 case 0x00: /* Get file attributes */
2116 TRACE(int21,"\tretrieve attributes\n");
2117 CX_reg(context) = (WORD)GetFileAttributesA(
2118 CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
2119 EDX_reg(context)));
2120 if (CX_reg(context) == 0xffff) bSetDOSExtendedError = TRUE;
2121 break;
2122 case 0x01:
2123 TRACE(int21,"\tset attributes 0x%04x\n",CX_reg(context));
2124 bSetDOSExtendedError = (!SetFileAttributesA(
2125 CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
2126 EDX_reg(context)),
2127 CX_reg(context) ) );
2128 break;
2129 default:
2130 FIXME(int21, "Unimplemented long file name function:\n");
2131 INT_BARF( context, 0x21 );
2132 SET_CFLAG(context);
2133 AL_reg(context) = 0;
2134 break;
2136 break;
2137 case 0x47: /* Get current directory */
2138 TRACE(int21," LONG FILENAME - GET CURRENT DIRECTORY for drive %s\n",
2139 INT21_DriveName(DL_reg(context)));
2140 bSetDOSExtendedError = !INT21_GetCurrentDirectory(context);
2141 break;
2143 case 0x4e: /* Find first file */
2144 TRACE(int21," LONG FILENAME - FIND FIRST MATCHING FILE for %s\n",
2145 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)));
2146 /* FIXME: use attributes in CX */
2147 if ((AX_reg(context) = FindFirstFile16(
2148 CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)),
2149 (WIN32_FIND_DATAA *)CTX_SEG_OFF_TO_LIN(context, ES_reg(context),
2150 EDI_reg(context))))
2151 == INVALID_HANDLE_VALUE16)
2152 bSetDOSExtendedError = TRUE;
2153 break;
2154 case 0x4f: /* Find next file */
2155 TRACE(int21,"LONG FILENAME - FIND NEXT MATCHING FILE for handle %d\n",
2156 BX_reg(context));
2157 if (!FindNextFile16( BX_reg(context),
2158 (WIN32_FIND_DATAA *)CTX_SEG_OFF_TO_LIN(context, ES_reg(context),
2159 EDI_reg(context))))
2160 bSetDOSExtendedError = TRUE;
2161 break;
2162 case 0xa1: /* Find close */
2163 TRACE(int21,"LONG FILENAME - FINDCLOSE for handle %d\n",
2164 BX_reg(context));
2165 bSetDOSExtendedError = (!FindClose16( BX_reg(context) ));
2166 break;
2167 case 0xa0:
2168 TRACE(int21,"LONG FILENAME - GET VOLUME INFORMATION for drive %s stub\n",
2169 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)));
2170 break;
2171 case 0x60:
2172 switch(CL_reg(context))
2174 case 0x01: /*Get short filename or path */
2175 if (!GetShortPathNameA
2176 ( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
2177 ESI_reg(context)),
2178 CTX_SEG_OFF_TO_LIN(context, ES_reg(context),
2179 EDI_reg(context)), 67))
2180 bSetDOSExtendedError = TRUE;
2181 else AX_reg(context) = 0;
2182 break;
2183 case 0x02: /*Get canonical long filename or path */
2184 if (!GetFullPathNameA
2185 ( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
2186 ESI_reg(context)), 128,
2187 CTX_SEG_OFF_TO_LIN(context, ES_reg(context),
2188 EDI_reg(context)),NULL))
2189 bSetDOSExtendedError = TRUE;
2190 else AX_reg(context) = 0;
2191 break;
2192 default:
2193 FIXME(int21, "Unimplemented long file name function:\n");
2194 INT_BARF( context, 0x21 );
2195 SET_CFLAG(context);
2196 AL_reg(context) = 0;
2197 break;
2199 break;
2200 case 0x6c: /* Create or open file */
2201 TRACE(int21,"LONG FILENAME - CREATE OR OPEN FILE %s\n",
2202 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), ESI_reg(context)));
2203 /* translate Dos 7 action to Dos 6 action */
2204 bSetDOSExtendedError = INT21_ExtendedOpenCreateFile(context);
2205 break;
2207 case 0x3b: /* Change directory */
2208 TRACE(int21,"LONG FILENAME - CHANGE DIRECTORY %s\n",
2209 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
2210 if (!SetCurrentDirectoryA(CTX_SEG_OFF_TO_LIN(context,
2211 DS_reg(context),
2212 EDX_reg(context)
2215 SET_CFLAG(context);
2216 AL_reg(context) = GetLastError();
2218 break;
2219 case 0x41: /* Delete file */
2220 TRACE(int21,"LONG FILENAME - DELETE FILE %s\n",
2221 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
2222 if (!DeleteFileA(CTX_SEG_OFF_TO_LIN(context,
2223 DS_reg(context),
2224 EDX_reg(context))
2225 )) {
2226 SET_CFLAG(context);
2227 AL_reg(context) = GetLastError();
2229 break;
2230 case 0x56: /* Move (rename) file */
2231 TRACE(int21,"LONG FILENAME - RENAME FILE %s to %s stub\n",
2232 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)),
2233 (LPCSTR)CTX_SEG_OFF_TO_LIN(context, ES_reg(context), EDI_reg(context)));
2234 default:
2235 FIXME(int21, "Unimplemented long file name function:\n");
2236 INT_BARF( context, 0x21 );
2237 SET_CFLAG(context);
2238 AL_reg(context) = 0;
2239 break;
2241 break;
2243 case 0x70: /* MS-DOS 7 (Windows95) - ??? (country-specific?)*/
2244 case 0x72: /* MS-DOS 7 (Windows95) - ??? */
2245 case 0x73: /* MS-DOS 7 (Windows95) - DRIVE LOCKING ??? */
2246 TRACE(int21,"windows95 function AX %04x\n",
2247 AX_reg(context));
2248 WARN(int21, " returning unimplemented\n");
2249 SET_CFLAG(context);
2250 AL_reg(context) = 0;
2251 break;
2253 case 0xdc: /* CONNECTION SERVICES - GET CONNECTION NUMBER */
2254 case 0xea: /* NOVELL NETWARE - RETURN SHELL VERSION */
2255 break;
2257 default:
2258 INT_BARF( context, 0x21 );
2259 break;
2261 } /* END OF SWITCH */
2263 if( bSetDOSExtendedError ) /* set general error condition */
2265 AX_reg(context) = GetLastError();
2266 SET_CFLAG(context);
2269 if ((EFL_reg(context) & 0x0001))
2270 TRACE(int21, "failed, error 0x%04lx\n", GetLastError() );
2272 TRACE(int21, "returning: AX=%04x BX=%04x CX=%04x DX=%04x "
2273 "SI=%04x DI=%04x DS=%04x ES=%04x EFL=%08lx\n",
2274 AX_reg(context), BX_reg(context), CX_reg(context),
2275 DX_reg(context), SI_reg(context), DI_reg(context),
2276 (WORD)DS_reg(context), (WORD)ES_reg(context),
2277 EFL_reg(context));
2280 FARPROC16 WINAPI GetSetKernelDOSProc16(FARPROC16 DosProc)
2282 FIXME(int21, "(DosProc=0x%08x): stub\n", (UINT)DosProc);
2283 return NULL;