2 * DOS interrupt 21h handler
4 * Copyright 1993, 1994 Erik Bos
5 * Copyright 1996 Alexandre Julliard
6 * Copyright 1997 Andreas Mohr
7 * Copyright 1998 Uwe Bonnes
8 * Copyright 1998, 1999 Ove Kaaven
9 * Copyright 2003 Thomas Mertes
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include "wine/port.h"
31 #ifdef HAVE_SYS_STAT_H
32 # include <sys/stat.h>
42 #include "wine/winbase16.h"
46 #include "wine/unicode.h"
47 #include "wine/server.h"
48 #include "wine/debug.h"
49 #include "wine/exception.h"
51 BOOL WINAPI
VerifyConsoleIoHandle(HANDLE
);
54 * - Most of the file related functions are wrong. NT's kernel32
55 * doesn't maintain a per drive current directory, while DOS does.
56 * We should in fact keep track in here of those per drive
57 * directories, and use this info while dealing with partial paths
58 * (drive defined, but only relative paths). This could even be
59 * created as an array of CDS (there should be an entry for that in
64 * Forward declarations.
66 static BOOL
INT21_RenameFile( CONTEXT86
*context
);
68 WINE_DEFAULT_DEBUG_CHANNEL(int21
);
74 * Extended Drive Parameter Block.
75 * This structure is compatible with standard DOS4+ DPB and
78 typedef struct _INT21_DPB
{
79 BYTE drive
; /* 00 drive number (0=A, ...) */
80 BYTE unit
; /* 01 unit number within device driver */
81 WORD sector_bytes
; /* 02 bytes per sector */
82 BYTE cluster_sectors
; /* 04 highest sector number within a cluster */
83 BYTE shift
; /* 05 shift count to convert clusters into sectors */
84 WORD num_reserved
; /* 06 reserved sectors at beginning of drive */
85 BYTE num_FAT
; /* 08 number of FATs */
86 WORD num_root_entries
; /* 09 number of root directory entries */
87 WORD first_data_sector
; /* 0b number of first sector containing user data */
88 WORD num_clusters1
; /* 0d highest cluster number (number of data clusters + 1) */
89 WORD sectors_per_FAT
; /* 0f number of sectors per FAT */
90 WORD first_dir_sector
; /* 11 sector number of first directory sector */
91 SEGPTR driver_header
; /* 13 address of device driver header */
92 BYTE media_ID
; /* 17 media ID byte */
93 BYTE access_flag
; /* 18 0x00 if disk accessed, 0xff if not */
94 SEGPTR next
; /* 19 pointer to next DPB */
95 WORD search_cluster1
; /* 1d cluster at which to start search for free space */
96 WORD free_clusters_lo
; /* 1f number of free clusters on drive or 0xffff if unknown */
97 WORD free_clusters_hi
; /* 21 hiword of clusters_free */
98 WORD mirroring_flags
; /* 23 active FAT/mirroring flags */
99 WORD info_sector
; /* 25 sector number of file system info sector or 0xffff for none */
100 WORD spare_boot_sector
; /* 27 sector number of backup boot sector or 0xffff for none */
101 DWORD first_cluster_sector
; /* 29 sector number of the first cluster */
102 DWORD num_clusters2
; /* 2d maximum cluster number */
103 DWORD fat_clusters
; /* 31 number of clusters occupied by FAT */
104 DWORD root_cluster
; /* 35 cluster number of start of root directory */
105 DWORD search_cluster2
; /* 39 cluster at which to start searching for free space */
110 * Structure for DOS data that can be accessed directly from applications.
111 * Real and protected mode pointers will be returned to this structure so
112 * the structure must be correctly packed.
114 typedef struct _INT21_HEAP
{
115 WORD uppercase_size
; /* Size of the following table in bytes */
116 BYTE uppercase_table
[128]; /* Uppercase equivalents of chars from 0x80 to 0xff. */
118 WORD lowercase_size
; /* Size of the following table in bytes */
119 BYTE lowercase_table
[256]; /* Lowercase equivalents of chars from 0x00 to 0xff. */
121 WORD collating_size
; /* Size of the following table in bytes */
122 BYTE collating_table
[256]; /* Values used to sort characters from 0x00 to 0xff. */
124 WORD filename_size
; /* Size of the following filename data in bytes */
125 BYTE filename_reserved1
; /* 0x01 for MS-DOS 3.30-6.00 */
126 BYTE filename_lowest
; /* Lowest permissible character value for filename */
127 BYTE filename_highest
; /* Highest permissible character value for filename */
128 BYTE filename_reserved2
; /* 0x00 for MS-DOS 3.30-6.00 */
129 BYTE filename_exclude_first
; /* First illegal character in permissible range */
130 BYTE filename_exclude_last
; /* Last illegal character in permissible range */
131 BYTE filename_reserved3
; /* 0x02 for MS-DOS 3.30-6.00 */
132 BYTE filename_illegal_size
; /* Number of terminators in the following table */
133 BYTE filename_illegal_table
[16]; /* Characters which terminate a filename */
135 WORD dbcs_size
; /* Number of valid ranges in the following table */
136 BYTE dbcs_table
[16]; /* Start/end bytes for N ranges and 00/00 as terminator */
138 BYTE misc_indos
; /* Interrupt 21 nesting flag */
139 WORD misc_segment
; /* Real mode segment for INT21_HEAP */
140 WORD misc_selector
; /* Protected mode selector for INT21_HEAP */
141 INT21_DPB misc_dpb_list
[MAX_DOS_DRIVES
]; /* Drive parameter blocks for all drives */
149 CHAR file_extension
[3];
150 WORD current_block_number
;
151 WORD logical_record_size
;
153 WORD date_of_last_write
;
154 WORD time_of_last_write
;
157 WORD starting_cluster
;
158 WORD sequence_number
;
159 BYTE file_attributes
;
161 BYTE record_within_current_block
;
162 BYTE random_access_record_number
[4];
169 BYTE xfcb_file_attribute
;
173 /* DTA layout for FindFirst/FindNext */
176 BYTE drive
; /* 00 drive letter */
177 char mask
[11]; /* 01 search template */
178 BYTE search_attr
; /* 0c search attributes */
179 WORD count
; /* 0d entry count within directory */
180 WORD cluster
; /* 0f cluster of parent directory */
181 WCHAR
*fullPath
; /* 11 full path (was: reserved) */
182 BYTE fileattr
; /* 15 file attributes */
183 WORD filetime
; /* 16 file time */
184 WORD filedate
; /* 18 file date */
185 DWORD filesize
; /* 1a file size */
186 char filename
[13]; /* 1e file name + extension */
189 /* FCB layout for FindFirstFCB/FindNextFCB */
192 BYTE drive
; /* 00 drive letter */
193 char filename
[11]; /* 01 filename 8+3 format */
194 int count
; /* 0c entry count (was: reserved) */
195 WCHAR
*fullPath
; /* 10 full path (was: reserved) */
198 /* DOS directory entry for FindFirstFCB/FindNextFCB */
201 char filename
[11]; /* 00 filename 8+3 format */
202 BYTE fileattr
; /* 0b file attributes */
203 BYTE reserved
[10]; /* 0c reserved */
204 WORD filetime
; /* 16 file time */
205 WORD filedate
; /* 18 file date */
206 WORD cluster
; /* 1a file first cluster */
207 DWORD filesize
; /* 1c file size */
208 } DOS_DIRENTRY_LAYOUT
;
212 /* dos file attributes */
213 #define FA_NORMAL 0x00 /* Normal file, no attributes */
214 #define FA_RDONLY 0x01 /* Read only attribute */
215 #define FA_HIDDEN 0x02 /* Hidden file */
216 #define FA_SYSTEM 0x04 /* System file */
217 #define FA_LABEL 0x08 /* Volume label */
218 #define FA_DIRECTORY 0x10 /* Directory */
219 #define FA_ARCHIVE 0x20 /* Archive */
220 #define FA_UNUSED 0x40 /* Unused */
223 #define ER_NoNetwork 0x49
226 #define EC_OutOfResource 0x01
227 #define EC_Temporary 0x02
228 #define EC_AccessDenied 0x03
229 #define EC_InternalError 0x04
230 #define EC_HardwareFailure 0x05
231 #define EC_SystemFailure 0x06
232 #define EC_ProgramError 0x07
233 #define EC_NotFound 0x08
234 #define EC_MediaError 0x0b
235 #define EC_Exists 0x0c
236 #define EC_Unknown 0x0d
238 /* Suggested actions */
239 #define SA_Retry 0x01
240 #define SA_DelayedRetry 0x02
241 #define SA_Abort 0x04
242 #define SA_Ignore 0x06
243 #define SA_Ask4Retry 0x07
246 #define EL_Unknown 0x01
248 #define EL_Network 0x03
249 #define EL_Serial 0x04
250 #define EL_Memory 0x05
252 /* BIOS Keyboard Scancodes */
253 #define KEY_LEFT 0x4B
254 #define KEY_RIGHT 0x4D
256 #define KEY_DOWN 0x50
257 #define KEY_IC 0x52 /* insert char */
258 #define KEY_DC 0x53 /* delete char */
259 #define KEY_BACKSPACE 0x0E
260 #define KEY_HOME 0x47
262 #define KEY_NPAGE 0x49
263 #define KEY_PPAGE 0x51
271 void (*ioctl_handler
)(CONTEXT86
*);
274 static void INT21_IoctlScsiMgrHandler( CONTEXT86
* );
275 static void INT21_IoctlEMSHandler( CONTEXT86
* );
276 static void INT21_IoctlHPScanHandler( CONTEXT86
* );
278 static struct magic_device magic_devices
[] =
280 { {'s','c','s','i','m','g','r','$',0}, NULL
, { { 0, 0 } }, INT21_IoctlScsiMgrHandler
},
281 { {'e','m','m','x','x','x','x','0',0}, NULL
, { { 0, 0 } }, INT21_IoctlEMSHandler
},
282 { {'h','p','s','c','a','n',0}, NULL
, { { 0, 0 } }, INT21_IoctlHPScanHandler
},
285 #define NB_MAGIC_DEVICES (sizeof(magic_devices)/sizeof(magic_devices[0]))
288 /* Many calls translate a drive argument like this:
289 drive number (00h = default, 01h = A:, etc)
291 /******************************************************************
294 * Many calls translate a drive argument like this:
295 * drive number (00h = default, 01h = A:, etc)
297 static const char *INT21_DriveName(int drive
)
301 if (drive
<= 26) return wine_dbg_sprintf("%c:", 'A' + drive
- 1);
302 else return wine_dbg_sprintf( "<Bad drive: %d>", drive
);
307 /***********************************************************************
308 * INT21_GetCurrentDrive
310 * Return current drive using scheme (0=A:, 1=B:, 2=C:, ...) or
311 * MAX_DOS_DRIVES on error.
313 static BYTE
INT21_GetCurrentDrive(void)
315 WCHAR current_directory
[MAX_PATH
];
317 if (!GetCurrentDirectoryW( MAX_PATH
, current_directory
) ||
318 current_directory
[1] != ':')
320 TRACE( "Failed to get current drive.\n" );
321 return MAX_DOS_DRIVES
;
324 return toupperW( current_directory
[0] ) - 'A';
328 /***********************************************************************
331 * Convert drive number from scheme (0=default, 1=A:, 2=B:, ...) into
332 * scheme (0=A:, 1=B:, 2=C:, ...) or MAX_DOS_DRIVES on error.
334 static BYTE
INT21_MapDrive( BYTE drive
)
338 WCHAR drivespec
[3] = {'A', ':', 0};
341 drivespec
[0] += drive
- 1;
342 drivetype
= GetDriveTypeW( drivespec
);
344 if (drivetype
== DRIVE_UNKNOWN
|| drivetype
== DRIVE_NO_ROOT_DIR
)
345 return MAX_DOS_DRIVES
;
350 return INT21_GetCurrentDrive();
354 /***********************************************************************
355 * INT21_SetCurrentDrive
357 * Set current drive. Uses scheme (0=A:, 1=B:, 2=C:, ...).
359 static void INT21_SetCurrentDrive( BYTE drive
)
361 WCHAR drivespec
[3] = {'A', ':', 0};
363 drivespec
[0] += drive
;
365 if (!SetCurrentDirectoryW( drivespec
))
366 TRACE( "Failed to set current drive.\n" );
370 /***********************************************************************
373 * Reads a character from the standard input.
374 * Extended keycodes will be returned as two separate characters.
376 static BOOL
INT21_ReadChar( BYTE
*input
, CONTEXT86
*waitctx
)
378 static BYTE pending_scan
= 0;
383 *input
= pending_scan
;
392 if (!DOSVM_Int16ReadChar( &ascii
, &scan
, waitctx
))
397 if (waitctx
&& !ascii
)
404 /***********************************************************************
405 * INT21_GetSystemCountryCode
407 * Return DOS country code for default system locale.
409 static WORD
INT21_GetSystemCountryCode( void )
412 * FIXME: Determine country code. We should probably use
413 * DOSCONF structure for that.
415 return GetSystemDefaultLangID();
419 /***********************************************************************
420 * INT21_FillCountryInformation
422 * Fill 34-byte buffer with country information data using
423 * default system locale.
425 static void INT21_FillCountryInformation( BYTE
*buffer
)
427 /* 00 - WORD: date format
432 *(WORD
*)(buffer
+ 0) = 0; /* FIXME: Get from locale */
434 /* 02 - BYTE[5]: ASCIIZ currency symbol string */
435 buffer
[2] = '$'; /* FIXME: Get from locale */
438 /* 07 - BYTE[2]: ASCIIZ thousands separator */
439 buffer
[7] = 0; /* FIXME: Get from locale */
442 /* 09 - BYTE[2]: ASCIIZ decimal separator */
443 buffer
[9] = '.'; /* FIXME: Get from locale */
446 /* 11 - BYTE[2]: ASCIIZ date separator */
447 buffer
[11] = '/'; /* FIXME: Get from locale */
450 /* 13 - BYTE[2]: ASCIIZ time separator */
451 buffer
[13] = ':'; /* FIXME: Get from locale */
454 /* 15 - BYTE: Currency format
455 * bit 2 = set if currency symbol replaces decimal point
456 * bit 1 = number of spaces between value and currency symbol
457 * bit 0 = 0 if currency symbol precedes value
458 * 1 if currency symbol follows value
460 buffer
[15] = 0; /* FIXME: Get from locale */
462 /* 16 - BYTE: Number of digits after decimal in currency */
463 buffer
[16] = 0; /* FIXME: Get from locale */
465 /* 17 - BYTE: Time format
466 * bit 0 = 0 if 12-hour clock
469 buffer
[17] = 1; /* FIXME: Get from locale */
471 /* 18 - DWORD: Address of case map routine */
472 *(DWORD
*)(buffer
+ 18) = 0; /* FIXME: ptr to case map routine */
474 /* 22 - BYTE[2]: ASCIIZ data-list separator */
475 buffer
[22] = ','; /* FIXME: Get from locale */
478 /* 24 - BYTE[10]: Reserved */
479 memset( buffer
+ 24, 0, 10 );
483 /***********************************************************************
486 * Initialize DOS heap.
488 * Filename Terminator Table of w2k DE NTVDM:
489 * 16 00 01 00 FF 00 00 20-02 0E 2E 22 2F 5C 5B 5D ....... ..."/\[]
490 * 3A 7C 3C 3E 2B 3D 3B 2C-00 :|<>+=;,
492 static void INT21_FillHeap( INT21_HEAP
*heap
)
494 static const char terminators
[] = ".\"/\\[]:|<>+=;,";
500 heap
->uppercase_size
= 128;
501 for (i
= 0; i
< 128; i
++)
502 heap
->uppercase_table
[i
] = toupper( 128 + i
);
507 heap
->lowercase_size
= 256;
508 for (i
= 0; i
< 256; i
++)
509 heap
->lowercase_table
[i
] = tolower( i
);
514 heap
->collating_size
= 256;
515 for (i
= 0; i
< 256; i
++)
516 heap
->collating_table
[i
] = i
;
521 heap
->filename_size
= 8 + strlen(terminators
);
522 heap
->filename_illegal_size
= strlen(terminators
);
523 memcpy( heap
->filename_illegal_table
, terminators
, heap
->filename_illegal_size
);
525 heap
->filename_reserved1
= 0x01;
526 heap
->filename_lowest
= 0x00;
527 heap
->filename_highest
= 0xff;
528 heap
->filename_reserved2
= 0x00;
529 heap
->filename_exclude_first
= 0x00;
530 heap
->filename_exclude_last
= 0x20;
531 heap
->filename_reserved3
= 0x02;
534 * DBCS lead byte table. This table is empty.
537 memset( heap
->dbcs_table
, 0, sizeof(heap
->dbcs_table
) );
540 * Initialize InDos flag.
542 heap
->misc_indos
= 0;
545 * FIXME: Should drive parameter blocks (DPB) be
546 * initialized here and linked to DOS LOL?
551 /***********************************************************************
552 * INT21_GetHeapPointer
554 * Get pointer for DOS heap (INT21_HEAP).
555 * Creates and initializes heap on first call.
557 static INT21_HEAP
*INT21_GetHeapPointer( void )
559 static INT21_HEAP
*heap_pointer
= NULL
;
566 heap_pointer
= DOSVM_AllocDataUMB( sizeof(INT21_HEAP
),
570 heap_pointer
->misc_segment
= heap_segment
;
571 heap_pointer
->misc_selector
= heap_selector
;
572 INT21_FillHeap( heap_pointer
);
579 /***********************************************************************
580 * INT21_GetHeapSelector
582 * Get segment/selector for DOS heap (INT21_HEAP).
583 * Creates and initializes heap on first call.
585 static WORD
INT21_GetHeapSelector( CONTEXT86
*context
)
587 INT21_HEAP
*heap
= INT21_GetHeapPointer();
589 if (!ISV86(context
) && DOSVM_IsWin16())
590 return heap
->misc_selector
;
592 return heap
->misc_segment
;
596 /***********************************************************************
599 * Fill DOS heap drive parameter block for the specified drive.
600 * Return TRUE if drive was valid and there were
601 * no errors while reading drive information.
603 static BOOL
INT21_FillDrivePB( BYTE drive
)
605 WCHAR drivespec
[3] = {'A', ':', 0};
606 INT21_HEAP
*heap
= INT21_GetHeapPointer();
609 DWORD cluster_sectors
;
612 DWORD total_clusters
;
614 if (drive
>= MAX_DOS_DRIVES
)
617 dpb
= &heap
->misc_dpb_list
[drive
];
618 drivespec
[0] += drive
;
619 drivetype
= GetDriveTypeW( drivespec
);
622 * FIXME: Does this check work correctly with floppy/cdrom drives?
624 if (drivetype
== DRIVE_NO_ROOT_DIR
|| drivetype
== DRIVE_UNKNOWN
)
628 * FIXME: Does this check work correctly with floppy/cdrom drives?
630 if (!GetDiskFreeSpaceW( drivespec
, &cluster_sectors
, §or_bytes
,
631 &free_clusters
, &total_clusters
))
635 * FIXME: Most of the values listed below are incorrect.
636 * All values should be validated.
641 dpb
->sector_bytes
= sector_bytes
;
642 dpb
->cluster_sectors
= cluster_sectors
- 1;
645 while (cluster_sectors
> 1)
647 cluster_sectors
/= 2;
651 dpb
->num_reserved
= 0;
653 dpb
->num_root_entries
= 2;
654 dpb
->first_data_sector
= 2;
655 dpb
->num_clusters1
= total_clusters
;
656 dpb
->sectors_per_FAT
= 1;
657 dpb
->first_dir_sector
= 1;
658 dpb
->driver_header
= 0;
659 dpb
->media_ID
= (drivetype
== DRIVE_FIXED
) ? 0xF8 : 0xF0;
660 dpb
->access_flag
= 0;
662 dpb
->search_cluster1
= 0;
663 dpb
->free_clusters_lo
= LOWORD(free_clusters
);
664 dpb
->free_clusters_hi
= HIWORD(free_clusters
);
665 dpb
->mirroring_flags
= 0;
666 dpb
->info_sector
= 0xffff;
667 dpb
->spare_boot_sector
= 0xffff;
668 dpb
->first_cluster_sector
= 0;
669 dpb
->num_clusters2
= total_clusters
;
670 dpb
->fat_clusters
= 32;
671 dpb
->root_cluster
= 0;
672 dpb
->search_cluster2
= 0;
678 /***********************************************************************
679 * INT21_GetCurrentDirectory
683 * - subfunction 0x47 of function 0x71
685 static BOOL
INT21_GetCurrentDirectory( CONTEXT86
*context
, BOOL islong
)
687 char *buffer
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Esi
);
688 BYTE drive
= INT21_MapDrive( DL_reg(context
) );
689 WCHAR pathW
[MAX_PATH
];
690 char pathA
[MAX_PATH
];
693 TRACE( "drive %d\n", DL_reg(context
) );
695 if (drive
== MAX_DOS_DRIVES
)
697 SetLastError(ERROR_INVALID_DRIVE
);
702 * Grab current directory.
705 if (!GetCurrentDirectoryW( MAX_PATH
, pathW
)) return FALSE
;
707 if (toupperW(pathW
[0]) - 'A' != drive
|| pathW
[1] != ':')
709 /* cwd is not on the requested drive, get the environment string instead */
714 env_var
[1] = 'A' + drive
;
717 if (!GetEnvironmentVariableW( env_var
, pathW
, MAX_PATH
))
719 /* return empty path */
726 * Convert into short format.
731 DWORD result
= GetShortPathNameW( pathW
, pathW
, MAX_PATH
);
734 if (result
> MAX_PATH
)
736 WARN( "Short path too long!\n" );
737 SetLastError(ERROR_NETWORK_BUSY
); /* Internal Wine error. */
743 * The returned pathname does not include
744 * the drive letter, colon or leading backslash.
750 * FIXME: We should probably just strip host part from name...
752 FIXME( "UNC names are not supported.\n" );
753 SetLastError(ERROR_NETWORK_BUSY
); /* Internal Wine error. */
756 else if (!ptr
[0] || ptr
[1] != ':' || ptr
[2] != '\\')
758 WARN( "Path is neither UNC nor DOS path: %s\n",
759 wine_dbgstr_w(ptr
) );
760 SetLastError(ERROR_NETWORK_BUSY
); /* Internal Wine error. */
765 /* Remove drive letter, colon and leading backslash. */
770 * Convert into OEM string.
773 if (!WideCharToMultiByte(CP_OEMCP
, 0, ptr
, -1, pathA
,
774 MAX_PATH
, NULL
, NULL
))
776 WARN( "Cannot convert path!\n" );
777 SetLastError(ERROR_NETWORK_BUSY
); /* Internal Wine error. */
787 /* Undocumented success code. */
788 SET_AX( context
, 0x0100 );
790 /* Truncate buffer to 64 bytes. */
794 TRACE( "%c:=%s\n", 'A' + drive
, pathA
);
796 strcpy( buffer
, pathA
);
801 /***********************************************************************
802 * INT21_SetCurrentDirectory
806 * - subfunction 0x3b of function 0x71
808 static BOOL
INT21_SetCurrentDirectory( CONTEXT86
*context
)
810 WCHAR dirW
[MAX_PATH
];
813 char *dirA
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
814 BYTE drive
= INT21_GetCurrentDrive();
817 TRACE( "SET CURRENT DIRECTORY %s\n", dirA
);
819 MultiByteToWideChar(CP_OEMCP
, 0, dirA
, -1, dirW
, MAX_PATH
);
820 if (!GetFullPathNameW( dirW
, MAX_PATH
, dirW
, NULL
)) return FALSE
;
822 attr
= GetFileAttributesW( dirW
);
823 if (attr
== INVALID_FILE_ATTRIBUTES
|| !(attr
& FILE_ATTRIBUTE_DIRECTORY
))
825 SetLastError( ERROR_PATH_NOT_FOUND
);
830 env_var
[1] = dirW
[0];
833 result
= SetEnvironmentVariableW( env_var
, dirW
);
835 /* only set current directory if on the current drive */
836 if (result
&& (toupperW(dirW
[0]) - 'A' == drive
)) result
= SetCurrentDirectoryW( dirW
);
841 /***********************************************************************
842 * INT21_CreateMagicDeviceHandle
844 * Create a dummy file handle for a "magic" device.
846 static HANDLE
INT21_CreateMagicDeviceHandle( LPCWSTR name
)
848 static const WCHAR prefixW
[] = {'\\','?','?','\\','u','n','i','x'};
849 const char *dir
= wine_get_server_dir();
853 OBJECT_ATTRIBUTES attr
;
854 UNICODE_STRING nameW
;
857 len
= MultiByteToWideChar( CP_UNIXCP
, 0, dir
, -1, NULL
, 0 );
858 nameW
.Length
= sizeof(prefixW
) + (len
+ strlenW( name
)) * sizeof(WCHAR
);
859 nameW
.MaximumLength
= nameW
.Length
+ sizeof(WCHAR
);
860 if (!(nameW
.Buffer
= HeapAlloc( GetProcessHeap(), 0, nameW
.MaximumLength
)))
862 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
865 memcpy( nameW
.Buffer
, prefixW
, sizeof(prefixW
) );
866 MultiByteToWideChar( CP_UNIXCP
, 0, dir
, -1, nameW
.Buffer
+ sizeof(prefixW
)/sizeof(WCHAR
), len
);
867 len
+= sizeof(prefixW
) / sizeof(WCHAR
);
868 nameW
.Buffer
[len
-1] = '/';
869 strcpyW( nameW
.Buffer
+ len
, name
);
871 attr
.Length
= sizeof(attr
);
872 attr
.RootDirectory
= 0;
874 attr
.ObjectName
= &nameW
;
875 attr
.SecurityDescriptor
= NULL
;
876 attr
.SecurityQualityOfService
= NULL
;
878 status
= NtCreateFile( &ret
, GENERIC_READ
|GENERIC_WRITE
, &attr
, &io
, NULL
, 0,
879 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN_IF
,
880 FILE_SYNCHRONOUS_IO_ALERT
, NULL
, 0 );
884 SetLastError( RtlNtStatusToDosError(status
) );
886 RtlFreeUnicodeString( &nameW
);
891 /***********************************************************************
892 * INT21_OpenMagicDevice
894 * Open a file handle for "magic" devices like EMMXXXX0.
896 static HANDLE
INT21_OpenMagicDevice( LPCWSTR name
, DWORD access
)
902 if (name
[0] && (name
[1] == ':')) name
+= 2;
903 if ((p
= strrchrW( name
, '/' ))) name
= p
+ 1;
904 if ((p
= strrchrW( name
, '\\' ))) name
= p
+ 1;
906 for (i
= 0; i
< NB_MAGIC_DEVICES
; i
++)
908 int len
= strlenW( magic_devices
[i
].name
);
909 if (!strncmpiW( magic_devices
[i
].name
, name
, len
) &&
910 (!name
[len
] || name
[len
] == '.' || name
[len
] == ':')) break;
912 if (i
== NB_MAGIC_DEVICES
) return 0;
914 if (!magic_devices
[i
].handle
) /* need to open it */
917 FILE_INTERNAL_INFORMATION info
;
919 if (!(handle
= INT21_CreateMagicDeviceHandle( magic_devices
[i
].name
))) return 0;
921 NtQueryInformationFile( handle
, &io
, &info
, sizeof(info
), FileInternalInformation
);
922 magic_devices
[i
].index
= info
.IndexNumber
;
923 magic_devices
[i
].handle
= handle
;
925 if (!DuplicateHandle( GetCurrentProcess(), magic_devices
[i
].handle
,
926 GetCurrentProcess(), &handle
, access
, FALSE
, 0 )) handle
= 0;
931 /***********************************************************************
939 * - subfunction 0x6c of function 0x71
941 static BOOL
INT21_CreateFile( CONTEXT86
*context
,
948 char *pathA
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, pathSegOff
);
949 WCHAR pathW
[MAX_PATH
];
956 TRACE( "CreateFile called: function=%02x, action=%02x, access/share=%04x, "
957 "create flags=%04x, file=%s.\n",
958 AH_reg(context
), dosAction
, dosAccessShare
, CX_reg(context
), pathA
);
961 * Application tried to create/open a file whose name
962 * ends with a backslash. This is not allowed.
964 * FIXME: This needs to be validated, especially the return value.
966 if (pathA
[strlen(pathA
) - 1] == '/')
968 SetLastError( ERROR_FILE_NOT_FOUND
);
973 * Convert DOS action flags into Win32 creation disposition parameter.
978 winMode
= OPEN_EXISTING
;
981 winMode
= TRUNCATE_EXISTING
;
984 winMode
= CREATE_NEW
;
987 winMode
= OPEN_ALWAYS
;
990 winMode
= CREATE_ALWAYS
;
993 SetLastError( ERROR_INVALID_PARAMETER
);
998 * Convert DOS access/share flags into Win32 desired access parameter.
1000 switch(dosAccessShare
& 0x07)
1003 winAccess
= GENERIC_READ
;
1006 winAccess
= GENERIC_WRITE
;
1009 winAccess
= GENERIC_READ
| GENERIC_WRITE
;
1013 * Read-only, do not modify file's last-access time (DOS7).
1015 * FIXME: How to prevent modification of last-access time?
1017 winAccess
= GENERIC_READ
;
1024 * Convert DOS access/share flags into Win32 share mode parameter.
1026 switch(dosAccessShare
& 0x70)
1028 case OF_SHARE_EXCLUSIVE
:
1031 case OF_SHARE_DENY_WRITE
:
1032 winSharing
= FILE_SHARE_READ
;
1034 case OF_SHARE_DENY_READ
:
1035 winSharing
= FILE_SHARE_WRITE
;
1037 case OF_SHARE_DENY_NONE
:
1038 case OF_SHARE_COMPAT
:
1040 winSharing
= FILE_SHARE_READ
| FILE_SHARE_WRITE
;
1044 * FIXME: Bit (dosAccessShare & 0x80) represents inheritance.
1045 * What to do with this bit?
1046 * FIXME: Bits in the high byte of dosAccessShare are not supported.
1047 * See both function 0x6c and subfunction 0x6c of function 0x71 for
1048 * definition of these bits.
1052 * Convert DOS create attributes into Win32 flags and attributes parameter.
1054 if (winMode
== OPEN_EXISTING
|| winMode
== TRUNCATE_EXISTING
)
1060 WORD dosAttributes
= CX_reg(context
);
1062 if (dosAttributes
& FA_LABEL
)
1065 * Application tried to create volume label entry.
1066 * This is difficult to support so we do not allow it.
1068 * FIXME: If volume does not already have a label,
1069 * this function is supposed to succeed.
1071 SetLastError( ERROR_ACCESS_DENIED
);
1075 winAttributes
= dosAttributes
&
1076 (FILE_ATTRIBUTE_READONLY
| FILE_ATTRIBUTE_HIDDEN
|
1077 FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_ARCHIVE
);
1083 MultiByteToWideChar(CP_OEMCP
, 0, pathA
, -1, pathW
, MAX_PATH
);
1085 if ((winHandle
= INT21_OpenMagicDevice( pathW
, winAccess
)))
1091 winHandle
= CreateFileW( pathW
, winAccess
, winSharing
, NULL
,
1092 winMode
, winAttributes
, 0 );
1093 /* DOS allows to open files on a CDROM R/W */
1094 if( winHandle
== INVALID_HANDLE_VALUE
&&
1095 GetLastError()== ERROR_WRITE_PROTECT
) {
1096 winHandle
= CreateFileW( pathW
, winAccess
& ~GENERIC_WRITE
,
1097 winSharing
, NULL
, winMode
, winAttributes
, 0 );
1100 if (winHandle
== INVALID_HANDLE_VALUE
)
1104 * Determine DOS file status.
1115 case TRUNCATE_EXISTING
:
1122 dosStatus
= (GetLastError() == ERROR_ALREADY_EXISTS
) ? 1 : 2;
1125 dosStatus
= (GetLastError() == ERROR_ALREADY_EXISTS
) ? 3 : 2;
1133 * Return DOS file handle and DOS status.
1135 SET_AX( context
, Win32HandleToDosFileHandle(winHandle
) );
1138 SET_CX( context
, dosStatus
);
1140 TRACE( "CreateFile finished: handle=%d, status=%d.\n",
1141 AX_reg(context
), dosStatus
);
1147 /***********************************************************************
1148 * INT21_BufferedInput
1150 * Handler for function 0x0a and reading from console using
1153 * Reads a string of characters from standard input until
1154 * enter key is pressed. Returns either number of characters
1155 * read from console including terminating CR or
1156 * zero if capacity was zero.
1158 static WORD
INT21_BufferedInput( CONTEXT86
*context
, BYTE
*ptr
, WORD capacity
)
1163 * Return immediately if capacity is zero.
1173 DOSVM_Int16ReadChar( &ascii
, &scan
, context
);
1175 if (ascii
== '\r' || ascii
== '\n')
1182 * DOS handles only backspace and KEY_LEFT
1183 * perhaps we should do more
1185 if (ascii
== '\b' || scan
== KEY_LEFT
)
1187 if (length
==0) continue;
1188 DOSVM_PutChar( '\b' );
1194 * If the buffer becomes filled to within one byte of
1195 * capacity, DOS rejects all further characters up to,
1196 * but not including, the terminating carriage return.
1198 if (ascii
!= 0 && length
< capacity
-1)
1200 DOSVM_PutChar( ascii
);
1201 ptr
[length
] = ascii
;
1208 /***********************************************************************
1209 * INT21_GetCurrentDTA
1211 static BYTE
*INT21_GetCurrentDTA( CONTEXT86
*context
)
1213 TDB
*pTask
= GlobalLock16(GetCurrentTask());
1215 /* FIXME: This assumes DTA was set correctly! */
1216 return (BYTE
*)CTX_SEG_OFF_TO_LIN( context
, SELECTOROF(pTask
->dta
),
1217 (DWORD
)OFFSETOF(pTask
->dta
) );
1221 /***********************************************************************
1222 * INT21_OpenFileUsingFCB
1224 * Handler for function 0x0f.
1227 * DX:DX [I/O] File control block (FCB or XFCB) of unopened file
1234 * Opens a FCB file for read/write in compatibility mode. Upon calling
1235 * the FCB must have the drive_number, file_name, and file_extension
1236 * fields filled and all other bytes cleared.
1238 static void INT21_OpenFileUsingFCB( CONTEXT86
*context
)
1246 BY_HANDLE_FILE_INFORMATION info
;
1249 fcb
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
1250 if (fcb
->drive_number
== 0xff) {
1251 xfcb
= (struct XFCB
*) fcb
;
1252 fcb
= (struct FCB
*) xfcb
->fcb
;
1256 file_path
[0] = 'A' + INT21_MapDrive( fcb
->drive_number
);
1258 if (AL_result
== 0) {
1260 pos
= &file_path
[2];
1261 memcpy(pos
, fcb
->file_name
, 8);
1264 pos
= strchr(pos
, ' ');
1267 memcpy(pos
, fcb
->file_extension
, 3);
1270 pos
= strchr(pos
, ' ');
1273 handle
= (HANDLE
) _lopen(file_path
, OF_READWRITE
);
1274 if (handle
== INVALID_HANDLE_VALUE
) {
1275 TRACE("_lopen(\"%s\") failed: INVALID_HANDLE_VALUE\n", file_path
);
1276 AL_result
= 0xff; /* failed */
1278 hfile16
= Win32HandleToDosFileHandle(handle
);
1279 if (hfile16
== HFILE_ERROR16
) {
1280 TRACE("Win32HandleToDosFileHandle(%p) failed: HFILE_ERROR\n", handle
);
1281 CloseHandle(handle
);
1282 AL_result
= 0xff; /* failed */
1283 } else if (hfile16
> 255) {
1284 TRACE("hfile16 (=%d) larger than 255 for \"%s\"\n", hfile16
, file_path
);
1286 AL_result
= 0xff; /* failed */
1288 if (!GetFileInformationByHandle(handle
, &info
)) {
1289 TRACE("GetFileInformationByHandle(%d, %p) for \"%s\" failed\n",
1290 hfile16
, handle
, file_path
);
1292 AL_result
= 0xff; /* failed */
1294 fcb
->drive_number
= file_path
[0] - 'A' + 1;
1295 fcb
->current_block_number
= 0;
1296 fcb
->logical_record_size
= 128;
1297 fcb
->file_size
= info
.nFileSizeLow
;
1298 FileTimeToDosDateTime(&info
.ftLastWriteTime
,
1299 &fcb
->date_of_last_write
, &fcb
->time_of_last_write
);
1300 fcb
->file_number
= hfile16
;
1301 fcb
->attributes
= 0xc2;
1302 fcb
->starting_cluster
= 0; /* don't know correct init value */
1303 fcb
->sequence_number
= 0; /* don't know correct init value */
1304 fcb
->file_attributes
= info
.dwFileAttributes
;
1305 /* The following fields are not initialized */
1306 /* by the native function: */
1308 /* record_within_current_block */
1309 /* random_access_record_number */
1311 TRACE("successful opened file \"%s\" as %d (handle %p)\n",
1312 file_path
, hfile16
, handle
);
1313 AL_result
= 0x00; /* successful */
1318 SET_AL(context
, AL_result
);
1322 /***********************************************************************
1323 * INT21_CloseFileUsingFCB
1325 * Handler for function 0x10.
1328 * DX:DX [I/O] File control block (FCB or XFCB) of open file
1335 * Closes a FCB file.
1337 static void INT21_CloseFileUsingFCB( CONTEXT86
*context
)
1343 fcb
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
1344 if (fcb
->drive_number
== 0xff) {
1345 xfcb
= (struct XFCB
*) fcb
;
1346 fcb
= (struct FCB
*) xfcb
->fcb
;
1349 if (_lclose16((HFILE16
) fcb
->file_number
) != 0) {
1350 TRACE("_lclose16(%d) failed\n", fcb
->file_number
);
1351 AL_result
= 0xff; /* failed */
1353 TRACE("successful closed file %d\n", fcb
->file_number
);
1354 AL_result
= 0x00; /* successful */
1356 SET_AL(context
, AL_result
);
1360 /***********************************************************************
1361 * INT21_SequentialReadFromFCB
1363 * Handler for function 0x14.
1366 * DX:DX [I/O] File control block (FCB or XFCB) of open file
1370 * 1: end of file, no data read
1371 * 2: segment wrap in DTA, no data read (not returned now)
1372 * 3: end of file, partial record read
1375 * Reads a record with the size FCB->logical_record_size from the FCB
1376 * to the disk transfer area. The position of the record is specified
1377 * with FCB->current_block_number and FCB->record_within_current_block.
1378 * Then FCB->current_block_number and FCB->record_within_current_block
1379 * are updated to point to the next record. If a partial record is
1380 * read, it is filled with zeros up to the FCB->logical_record_size.
1382 static void INT21_SequentialReadFromFCB( CONTEXT86
*context
)
1387 DWORD record_number
;
1389 BYTE
*disk_transfer_area
;
1393 fcb
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
1394 if (fcb
->drive_number
== 0xff) {
1395 xfcb
= (struct XFCB
*) fcb
;
1396 fcb
= (struct FCB
*) xfcb
->fcb
;
1399 handle
= DosFileHandleToWin32Handle((HFILE16
) fcb
->file_number
);
1400 if (handle
== INVALID_HANDLE_VALUE
) {
1401 TRACE("DosFileHandleToWin32Handle(%d) failed: INVALID_HANDLE_VALUE\n",
1403 AL_result
= 0x01; /* end of file, no data read */
1405 record_number
= 128 * fcb
->current_block_number
+ fcb
->record_within_current_block
;
1406 position
= SetFilePointer(handle
, record_number
* fcb
->logical_record_size
, NULL
, 0);
1407 if (position
!= record_number
* fcb
->logical_record_size
) {
1408 TRACE("seek(%d, %d, 0) failed with %u\n",
1409 fcb
->file_number
, record_number
* fcb
->logical_record_size
, position
);
1410 AL_result
= 0x01; /* end of file, no data read */
1412 disk_transfer_area
= INT21_GetCurrentDTA(context
);
1413 bytes_read
= _lread((HFILE
) handle
, disk_transfer_area
, fcb
->logical_record_size
);
1414 if (bytes_read
!= fcb
->logical_record_size
) {
1415 TRACE("_lread(%d, %p, %d) failed with %d\n",
1416 fcb
->file_number
, disk_transfer_area
, fcb
->logical_record_size
, bytes_read
);
1417 if (bytes_read
== 0) {
1418 AL_result
= 0x01; /* end of file, no data read */
1420 memset(&disk_transfer_area
[bytes_read
], 0, fcb
->logical_record_size
- bytes_read
);
1421 AL_result
= 0x03; /* end of file, partial record read */
1424 TRACE("successful read %d bytes from record %d (position %u) of file %d (handle %p)\n",
1425 bytes_read
, record_number
, position
, fcb
->file_number
, handle
);
1426 AL_result
= 0x00; /* successful */
1430 if (AL_result
== 0x00 || AL_result
== 0x03) {
1431 if (fcb
->record_within_current_block
== 127) {
1432 fcb
->record_within_current_block
= 0;
1433 fcb
->current_block_number
++;
1435 fcb
->record_within_current_block
++;
1438 SET_AL(context
, AL_result
);
1442 /***********************************************************************
1443 * INT21_SequentialWriteToFCB
1445 * Handler for function 0x15.
1448 * DX:DX [I/O] File control block (FCB or XFCB) of open file
1453 * 2: segment wrap in DTA (not returned now)
1456 * Writes a record with the size FCB->logical_record_size from the disk
1457 * transfer area to the FCB. The position of the record is specified
1458 * with FCB->current_block_number and FCB->record_within_current_block.
1459 * Then FCB->current_block_number and FCB->record_within_current_block
1460 * are updated to point to the next record.
1462 static void INT21_SequentialWriteToFCB( CONTEXT86
*context
)
1467 DWORD record_number
;
1469 BYTE
*disk_transfer_area
;
1473 fcb
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
1474 if (fcb
->drive_number
== 0xff) {
1475 xfcb
= (struct XFCB
*) fcb
;
1476 fcb
= (struct FCB
*) xfcb
->fcb
;
1479 handle
= DosFileHandleToWin32Handle((HFILE16
) fcb
->file_number
);
1480 if (handle
== INVALID_HANDLE_VALUE
) {
1481 TRACE("DosFileHandleToWin32Handle(%d) failed: INVALID_HANDLE_VALUE\n",
1483 AL_result
= 0x01; /* disk full */
1485 record_number
= 128 * fcb
->current_block_number
+ fcb
->record_within_current_block
;
1486 position
= SetFilePointer(handle
, record_number
* fcb
->logical_record_size
, NULL
, 0);
1487 if (position
!= record_number
* fcb
->logical_record_size
) {
1488 TRACE("seek(%d, %d, 0) failed with %u\n",
1489 fcb
->file_number
, record_number
* fcb
->logical_record_size
, position
);
1490 AL_result
= 0x01; /* disk full */
1492 disk_transfer_area
= INT21_GetCurrentDTA(context
);
1493 bytes_written
= _lwrite((HFILE
) handle
, (LPCSTR
)disk_transfer_area
, fcb
->logical_record_size
);
1494 if (bytes_written
!= fcb
->logical_record_size
) {
1495 TRACE("_lwrite(%d, %p, %d) failed with %d\n",
1496 fcb
->file_number
, disk_transfer_area
, fcb
->logical_record_size
, bytes_written
);
1497 AL_result
= 0x01; /* disk full */
1499 TRACE("successful written %d bytes from record %d (position %u) of file %d (handle %p)\n",
1500 bytes_written
, record_number
, position
, fcb
->file_number
, handle
);
1501 AL_result
= 0x00; /* successful */
1505 if (AL_result
== 0x00) {
1506 if (fcb
->record_within_current_block
== 127) {
1507 fcb
->record_within_current_block
= 0;
1508 fcb
->current_block_number
++;
1510 fcb
->record_within_current_block
++;
1513 SET_AL(context
, AL_result
);
1517 /***********************************************************************
1518 * INT21_ReadRandomRecordFromFCB
1520 * Handler for function 0x21.
1523 * DX:DX [I/O] File control block (FCB or XFCB) of open file
1527 * 1: end of file, no data read
1528 * 2: segment wrap in DTA, no data read (not returned now)
1529 * 3: end of file, partial record read
1532 * Reads a record with the size FCB->logical_record_size from
1533 * the FCB to the disk transfer area. The position of the record
1534 * is specified with FCB->random_access_record_number. The
1535 * FCB->random_access_record_number is not updated. If a partial record
1536 * is read, it is filled with zeros up to the FCB->logical_record_size.
1538 static void INT21_ReadRandomRecordFromFCB( CONTEXT86
*context
)
1543 DWORD record_number
;
1545 BYTE
*disk_transfer_area
;
1549 fcb
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
1550 if (fcb
->drive_number
== 0xff) {
1551 xfcb
= (struct XFCB
*) fcb
;
1552 fcb
= (struct FCB
*) xfcb
->fcb
;
1555 memcpy(&record_number
, fcb
->random_access_record_number
, 4);
1556 handle
= DosFileHandleToWin32Handle((HFILE16
) fcb
->file_number
);
1557 if (handle
== INVALID_HANDLE_VALUE
) {
1558 TRACE("DosFileHandleToWin32Handle(%d) failed: INVALID_HANDLE_VALUE\n",
1560 AL_result
= 0x01; /* end of file, no data read */
1562 position
= SetFilePointer(handle
, record_number
* fcb
->logical_record_size
, NULL
, 0);
1563 if (position
!= record_number
* fcb
->logical_record_size
) {
1564 TRACE("seek(%d, %d, 0) failed with %u\n",
1565 fcb
->file_number
, record_number
* fcb
->logical_record_size
, position
);
1566 AL_result
= 0x01; /* end of file, no data read */
1568 disk_transfer_area
= INT21_GetCurrentDTA(context
);
1569 bytes_read
= _lread((HFILE
) handle
, disk_transfer_area
, fcb
->logical_record_size
);
1570 if (bytes_read
!= fcb
->logical_record_size
) {
1571 TRACE("_lread(%d, %p, %d) failed with %d\n",
1572 fcb
->file_number
, disk_transfer_area
, fcb
->logical_record_size
, bytes_read
);
1573 if (bytes_read
== 0) {
1574 AL_result
= 0x01; /* end of file, no data read */
1576 memset(&disk_transfer_area
[bytes_read
], 0, fcb
->logical_record_size
- bytes_read
);
1577 AL_result
= 0x03; /* end of file, partial record read */
1580 TRACE("successful read %d bytes from record %d (position %u) of file %d (handle %p)\n",
1581 bytes_read
, record_number
, position
, fcb
->file_number
, handle
);
1582 AL_result
= 0x00; /* successful */
1586 fcb
->current_block_number
= record_number
/ 128;
1587 fcb
->record_within_current_block
= record_number
% 128;
1588 SET_AL(context
, AL_result
);
1592 /***********************************************************************
1593 * INT21_WriteRandomRecordToFCB
1595 * Handler for function 0x22.
1598 * DX:DX [I/O] File control block (FCB or XFCB) of open file
1603 * 2: segment wrap in DTA (not returned now)
1606 * Writes a record with the size FCB->logical_record_size from
1607 * the disk transfer area to the FCB. The position of the record
1608 * is specified with FCB->random_access_record_number. The
1609 * FCB->random_access_record_number is not updated.
1611 static void INT21_WriteRandomRecordToFCB( CONTEXT86
*context
)
1616 DWORD record_number
;
1618 BYTE
*disk_transfer_area
;
1622 fcb
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
1623 if (fcb
->drive_number
== 0xff) {
1624 xfcb
= (struct XFCB
*) fcb
;
1625 fcb
= (struct FCB
*) xfcb
->fcb
;
1628 memcpy(&record_number
, fcb
->random_access_record_number
, 4);
1629 handle
= DosFileHandleToWin32Handle((HFILE16
) fcb
->file_number
);
1630 if (handle
== INVALID_HANDLE_VALUE
) {
1631 TRACE("DosFileHandleToWin32Handle(%d) failed: INVALID_HANDLE_VALUE\n",
1633 AL_result
= 0x01; /* disk full */
1635 position
= SetFilePointer(handle
, record_number
* fcb
->logical_record_size
, NULL
, 0);
1636 if (position
!= record_number
* fcb
->logical_record_size
) {
1637 TRACE("seek(%d, %d, 0) failed with %u\n",
1638 fcb
->file_number
, record_number
* fcb
->logical_record_size
, position
);
1639 AL_result
= 0x01; /* disk full */
1641 disk_transfer_area
= INT21_GetCurrentDTA(context
);
1642 bytes_written
= _lwrite((HFILE
) handle
, (LPCSTR
)disk_transfer_area
, fcb
->logical_record_size
);
1643 if (bytes_written
!= fcb
->logical_record_size
) {
1644 TRACE("_lwrite(%d, %p, %d) failed with %d\n",
1645 fcb
->file_number
, disk_transfer_area
, fcb
->logical_record_size
, bytes_written
);
1646 AL_result
= 0x01; /* disk full */
1648 TRACE("successful written %d bytes from record %d (position %u) of file %d (handle %p)\n",
1649 bytes_written
, record_number
, position
, fcb
->file_number
, handle
);
1650 AL_result
= 0x00; /* successful */
1654 fcb
->current_block_number
= record_number
/ 128;
1655 fcb
->record_within_current_block
= record_number
% 128;
1656 SET_AL(context
, AL_result
);
1660 /***********************************************************************
1661 * INT21_RandomBlockReadFromFCB
1663 * Handler for function 0x27.
1666 * CX [I/O] Number of records to read
1667 * DX:DX [I/O] File control block (FCB or XFCB) of open file
1671 * 1: end of file, no data read
1672 * 2: segment wrap in DTA, no data read (not returned now)
1673 * 3: end of file, partial record read
1676 * Reads several records with the size FCB->logical_record_size from
1677 * the FCB to the disk transfer area. The number of records to be
1678 * read is specified in the CX register. The position of the first
1679 * record is specified with FCB->random_access_record_number. The
1680 * FCB->random_access_record_number, the FCB->current_block_number
1681 * and FCB->record_within_current_block are updated to point to the
1682 * next record after the records read. If a partial record is read,
1683 * it is filled with zeros up to the FCB->logical_record_size. The
1684 * CX register is set to the number of successfully read records.
1686 static void INT21_RandomBlockReadFromFCB( CONTEXT86
*context
)
1691 DWORD record_number
;
1693 BYTE
*disk_transfer_area
;
1694 UINT records_requested
;
1695 UINT bytes_requested
;
1700 fcb
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
1701 if (fcb
->drive_number
== 0xff) {
1702 xfcb
= (struct XFCB
*) fcb
;
1703 fcb
= (struct FCB
*) xfcb
->fcb
;
1706 memcpy(&record_number
, fcb
->random_access_record_number
, 4);
1707 handle
= DosFileHandleToWin32Handle((HFILE16
) fcb
->file_number
);
1708 if (handle
== INVALID_HANDLE_VALUE
) {
1709 TRACE("DosFileHandleToWin32Handle(%d) failed: INVALID_HANDLE_VALUE\n",
1712 AL_result
= 0x01; /* end of file, no data read */
1714 position
= SetFilePointer(handle
, record_number
* fcb
->logical_record_size
, NULL
, 0);
1715 if (position
!= record_number
* fcb
->logical_record_size
) {
1716 TRACE("seek(%d, %d, 0) failed with %u\n",
1717 fcb
->file_number
, record_number
* fcb
->logical_record_size
, position
);
1719 AL_result
= 0x01; /* end of file, no data read */
1721 disk_transfer_area
= INT21_GetCurrentDTA(context
);
1722 records_requested
= CX_reg(context
);
1723 bytes_requested
= records_requested
* fcb
->logical_record_size
;
1724 bytes_read
= _lread((HFILE
) handle
, disk_transfer_area
, bytes_requested
);
1725 if (bytes_read
!= bytes_requested
) {
1726 TRACE("_lread(%d, %p, %d) failed with %d\n",
1727 fcb
->file_number
, disk_transfer_area
, bytes_requested
, bytes_read
);
1728 records_read
= bytes_read
/ fcb
->logical_record_size
;
1729 if (bytes_read
% fcb
->logical_record_size
== 0) {
1730 AL_result
= 0x01; /* end of file, no data read */
1733 memset(&disk_transfer_area
[bytes_read
], 0, records_read
* fcb
->logical_record_size
- bytes_read
);
1734 AL_result
= 0x03; /* end of file, partial record read */
1737 TRACE("successful read %d bytes from record %d (position %u) of file %d (handle %p)\n",
1738 bytes_read
, record_number
, position
, fcb
->file_number
, handle
);
1739 records_read
= records_requested
;
1740 AL_result
= 0x00; /* successful */
1744 record_number
+= records_read
;
1745 memcpy(fcb
->random_access_record_number
, &record_number
, 4);
1746 fcb
->current_block_number
= record_number
/ 128;
1747 fcb
->record_within_current_block
= record_number
% 128;
1748 SET_CX(context
, records_read
);
1749 SET_AL(context
, AL_result
);
1753 /***********************************************************************
1754 * INT21_RandomBlockWriteToFCB
1756 * Handler for function 0x28.
1759 * CX [I/O] Number of records to write
1760 * DX:DX [I/O] File control block (FCB or XFCB) of open file
1765 * 2: segment wrap in DTA (not returned now)
1768 * Writes several records with the size FCB->logical_record_size from
1769 * the disk transfer area to the FCB. The number of records to be
1770 * written is specified in the CX register. The position of the first
1771 * record is specified with FCB->random_access_record_number. The
1772 * FCB->random_access_record_number, the FCB->current_block_number
1773 * and FCB->record_within_current_block are updated to point to the
1774 * next record after the records written. The CX register is set to
1775 * the number of successfully written records.
1777 static void INT21_RandomBlockWriteToFCB( CONTEXT86
*context
)
1782 DWORD record_number
;
1784 BYTE
*disk_transfer_area
;
1785 UINT records_requested
;
1786 UINT bytes_requested
;
1788 UINT records_written
;
1791 fcb
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
1792 if (fcb
->drive_number
== 0xff) {
1793 xfcb
= (struct XFCB
*) fcb
;
1794 fcb
= (struct FCB
*) xfcb
->fcb
;
1797 memcpy(&record_number
, fcb
->random_access_record_number
, 4);
1798 handle
= DosFileHandleToWin32Handle((HFILE16
) fcb
->file_number
);
1799 if (handle
== INVALID_HANDLE_VALUE
) {
1800 TRACE("DosFileHandleToWin32Handle(%d) failed: INVALID_HANDLE_VALUE\n",
1802 records_written
= 0;
1803 AL_result
= 0x01; /* disk full */
1805 position
= SetFilePointer(handle
, record_number
* fcb
->logical_record_size
, NULL
, 0);
1806 if (position
!= record_number
* fcb
->logical_record_size
) {
1807 TRACE("seek(%d, %d, 0) failed with %u\n",
1808 fcb
->file_number
, record_number
* fcb
->logical_record_size
, position
);
1809 records_written
= 0;
1810 AL_result
= 0x01; /* disk full */
1812 disk_transfer_area
= INT21_GetCurrentDTA(context
);
1813 records_requested
= CX_reg(context
);
1814 bytes_requested
= records_requested
* fcb
->logical_record_size
;
1815 bytes_written
= _lwrite((HFILE
) handle
, (LPCSTR
)disk_transfer_area
, bytes_requested
);
1816 if (bytes_written
!= bytes_requested
) {
1817 TRACE("_lwrite(%d, %p, %d) failed with %d\n",
1818 fcb
->file_number
, disk_transfer_area
, bytes_requested
, bytes_written
);
1819 records_written
= bytes_written
/ fcb
->logical_record_size
;
1820 AL_result
= 0x01; /* disk full */
1822 TRACE("successful write %d bytes from record %d (position %u) of file %d (handle %p)\n",
1823 bytes_written
, record_number
, position
, fcb
->file_number
, handle
);
1824 records_written
= records_requested
;
1825 AL_result
= 0x00; /* successful */
1829 record_number
+= records_written
;
1830 memcpy(fcb
->random_access_record_number
, &record_number
, 4);
1831 fcb
->current_block_number
= record_number
/ 128;
1832 fcb
->record_within_current_block
= record_number
% 128;
1833 SET_CX(context
, records_written
);
1834 SET_AL(context
, AL_result
);
1838 /***********************************************************************
1839 * INT21_CreateDirectory
1843 * - subfunction 0x39 of function 0x71
1844 * - subfunction 0xff of function 0x43 (CL == 0x39)
1846 static BOOL
INT21_CreateDirectory( CONTEXT86
*context
)
1848 WCHAR dirW
[MAX_PATH
];
1849 char *dirA
= CTX_SEG_OFF_TO_LIN(context
,
1853 TRACE( "CREATE DIRECTORY %s\n", dirA
);
1855 MultiByteToWideChar(CP_OEMCP
, 0, dirA
, -1, dirW
, MAX_PATH
);
1857 if (CreateDirectoryW(dirW
, NULL
))
1861 * FIXME: CreateDirectory's LastErrors will clash with the ones
1862 * used by DOS. AH=39 only returns 3 (path not found) and
1863 * 5 (access denied), while CreateDirectory return several
1864 * ones. Remap some of them. -Marcus
1866 switch (GetLastError())
1868 case ERROR_ALREADY_EXISTS
:
1869 case ERROR_FILENAME_EXCED_RANGE
:
1870 case ERROR_DISK_FULL
:
1871 SetLastError(ERROR_ACCESS_DENIED
);
1881 /***********************************************************************
1882 * INT21_ExtendedCountryInformation
1884 * Handler for function 0x65.
1886 static void INT21_ExtendedCountryInformation( CONTEXT86
*context
)
1888 BYTE
*dataptr
= CTX_SEG_OFF_TO_LIN( context
, context
->SegEs
, context
->Edi
);
1889 BYTE buffsize
= CX_reg (context
);
1891 TRACE( "GET EXTENDED COUNTRY INFORMATION, subfunction %02x\n",
1895 * Check subfunctions that are passed country and code page.
1897 if (AL_reg(context
) >= 0x01 && AL_reg(context
) <= 0x07)
1899 WORD country
= DX_reg(context
);
1900 WORD codepage
= BX_reg(context
);
1902 if (country
!= 0xffff && country
!= INT21_GetSystemCountryCode())
1903 FIXME( "Requested info on non-default country %04x\n", country
);
1905 if (codepage
!= 0xffff && codepage
!= GetOEMCP())
1906 FIXME( "Requested info on non-default code page %04x\n", codepage
);
1909 switch (AL_reg(context
)) {
1910 case 0x00: /* SET GENERAL INTERNATIONALIZATION INFO */
1911 INT_BARF( context
, 0x21 );
1912 SET_CFLAG( context
);
1915 case 0x01: /* GET GENERAL INTERNATIONALIZATION INFO */
1916 TRACE( "Get general internationalization info\n" );
1917 dataptr
[0] = 0x01; /* Info ID */
1918 *(WORD
*)(dataptr
+1) = 38; /* Size of the following info */
1919 *(WORD
*)(dataptr
+3) = INT21_GetSystemCountryCode(); /* Country ID */
1920 *(WORD
*)(dataptr
+5) = GetOEMCP(); /* Code page */
1921 /* FIXME: fill buffer partially up to buffsize bytes*/
1922 if (buffsize
>= 0x29){
1923 INT21_FillCountryInformation( dataptr
+ 7 );
1924 SET_CX( context
, 0x29 ); /* Size of returned info */
1926 SET_CX( context
, 0x07 ); /* Size of returned info */
1930 case 0x02: /* GET POINTER TO UPPERCASE TABLE */
1931 case 0x04: /* GET POINTER TO FILENAME UPPERCASE TABLE */
1932 TRACE( "Get pointer to uppercase table\n" );
1933 dataptr
[0] = AL_reg(context
); /* Info ID */
1934 *(DWORD
*)(dataptr
+1) = MAKESEGPTR( INT21_GetHeapSelector( context
),
1935 offsetof(INT21_HEAP
, uppercase_size
) );
1936 SET_CX( context
, 5 ); /* Size of returned info */
1939 case 0x03: /* GET POINTER TO LOWERCASE TABLE */
1940 TRACE( "Get pointer to lowercase table\n" );
1941 dataptr
[0] = 0x03; /* Info ID */
1942 *(DWORD
*)(dataptr
+1) = MAKESEGPTR( INT21_GetHeapSelector( context
),
1943 offsetof(INT21_HEAP
, lowercase_size
) );
1944 SET_CX( context
, 5 ); /* Size of returned info */
1947 case 0x05: /* GET POINTER TO FILENAME TERMINATOR TABLE */
1948 TRACE("Get pointer to filename terminator table\n");
1949 dataptr
[0] = 0x05; /* Info ID */
1950 *(DWORD
*)(dataptr
+1) = MAKESEGPTR( INT21_GetHeapSelector( context
),
1951 offsetof(INT21_HEAP
, filename_size
) );
1952 SET_CX( context
, 5 ); /* Size of returned info */
1955 case 0x06: /* GET POINTER TO COLLATING SEQUENCE TABLE */
1956 TRACE("Get pointer to collating sequence table\n");
1957 dataptr
[0] = 0x06; /* Info ID */
1958 *(DWORD
*)(dataptr
+1) = MAKESEGPTR( INT21_GetHeapSelector( context
),
1959 offsetof(INT21_HEAP
, collating_size
) );
1960 SET_CX( context
, 5 ); /* Size of returned info */
1963 case 0x07: /* GET POINTER TO DBCS LEAD BYTE TABLE */
1964 TRACE("Get pointer to DBCS lead byte table\n");
1965 dataptr
[0] = 0x07; /* Info ID */
1966 *(DWORD
*)(dataptr
+1) = MAKESEGPTR( INT21_GetHeapSelector( context
),
1967 offsetof(INT21_HEAP
, dbcs_size
) );
1968 SET_CX( context
, 5 ); /* Size of returned info */
1971 case 0x20: /* CAPITALIZE CHARACTER */
1972 case 0xa0: /* CAPITALIZE FILENAME CHARACTER */
1973 TRACE("Convert char to uppercase\n");
1974 SET_DL( context
, toupper(DL_reg(context
)) );
1977 case 0x21: /* CAPITALIZE STRING */
1978 case 0xa1: /* CAPITALIZE COUNTED FILENAME STRING */
1979 TRACE("Convert string to uppercase with length\n");
1981 char *ptr
= (char *)CTX_SEG_OFF_TO_LIN( context
,
1984 WORD len
= CX_reg(context
);
1985 while (len
--) { *ptr
= toupper(*ptr
); ptr
++; }
1989 case 0x22: /* CAPITALIZE ASCIIZ STRING */
1990 case 0xa2: /* CAPITALIZE ASCIIZ FILENAME */
1991 TRACE("Convert ASCIIZ string to uppercase\n");
1993 char *p
= CTX_SEG_OFF_TO_LIN( context
, context
->SegDs
, context
->Edx
);
1994 for ( ; *p
; p
++) *p
= toupper(*p
);
1998 case 0x23: /* DETERMINE IF CHARACTER REPRESENTS YES/NO RESPONSE */
1999 INT_BARF( context
, 0x21 );
2000 SET_CFLAG( context
);
2004 INT_BARF( context
, 0x21 );
2011 /***********************************************************************
2012 * INT21_FileAttributes
2016 * - subfunction 0x43 of function 0x71
2018 static BOOL
INT21_FileAttributes( CONTEXT86
*context
,
2022 WCHAR fileW
[MAX_PATH
];
2023 char *fileA
= CTX_SEG_OFF_TO_LIN(context
,
2032 switch (subfunction
)
2034 case 0x00: /* GET FILE ATTRIBUTES */
2035 TRACE( "GET FILE ATTRIBUTES for %s\n", fileA
);
2036 MultiByteToWideChar(CP_OEMCP
, 0, fileA
, -1, fileW
, MAX_PATH
);
2038 result
= GetFileAttributesW( fileW
);
2039 if (result
== INVALID_FILE_ATTRIBUTES
)
2043 SET_CX( context
, (WORD
)result
);
2045 SET_AX( context
, (WORD
)result
); /* DR DOS */
2049 case 0x01: /* SET FILE ATTRIBUTES */
2050 TRACE( "SET FILE ATTRIBUTES 0x%02x for %s\n",
2051 CX_reg(context
), fileA
);
2052 MultiByteToWideChar(CP_OEMCP
, 0, fileA
, -1, fileW
, MAX_PATH
);
2054 if (!SetFileAttributesW( fileW
, CX_reg(context
) ))
2058 case 0x02: /* GET COMPRESSED FILE SIZE */
2059 TRACE( "GET COMPRESSED FILE SIZE for %s\n", fileA
);
2060 MultiByteToWideChar(CP_OEMCP
, 0, fileA
, -1, fileW
, MAX_PATH
);
2062 result
= GetCompressedFileSizeW( fileW
, NULL
);
2063 if (result
== INVALID_FILE_SIZE
)
2067 SET_AX( context
, LOWORD(result
) );
2068 SET_DX( context
, HIWORD(result
) );
2072 case 0x03: /* SET FILE LAST-WRITTEN DATE AND TIME */
2074 INT_BARF( context
, 0x21 );
2077 TRACE( "SET FILE LAST-WRITTEN DATE AND TIME, file %s\n", fileA
);
2078 MultiByteToWideChar(CP_OEMCP
, 0, fileA
, -1, fileW
, MAX_PATH
);
2080 handle
= CreateFileW( fileW
, GENERIC_WRITE
,
2081 FILE_SHARE_READ
| FILE_SHARE_WRITE
,
2082 NULL
, OPEN_EXISTING
, 0, 0 );
2083 if (handle
== INVALID_HANDLE_VALUE
)
2086 DosDateTimeToFileTime( DI_reg(context
),
2089 status
= SetFileTime( handle
, NULL
, NULL
, &filetime
);
2091 CloseHandle( handle
);
2096 case 0x04: /* GET FILE LAST-WRITTEN DATE AND TIME */
2098 INT_BARF( context
, 0x21 );
2101 TRACE( "GET FILE LAST-WRITTEN DATE AND TIME, file %s\n", fileA
);
2102 MultiByteToWideChar(CP_OEMCP
, 0, fileA
, -1, fileW
, MAX_PATH
);
2104 handle
= CreateFileW( fileW
, GENERIC_READ
,
2105 FILE_SHARE_READ
| FILE_SHARE_WRITE
,
2106 NULL
, OPEN_EXISTING
, 0, 0 );
2107 if (handle
== INVALID_HANDLE_VALUE
)
2110 status
= GetFileTime( handle
, NULL
, NULL
, &filetime
);
2113 FileTimeToDosDateTime( &filetime
, &date
, &time
);
2114 SET_DI( context
, date
);
2115 SET_CX( context
, time
);
2118 CloseHandle( handle
);
2123 case 0x05: /* SET FILE LAST ACCESS DATE */
2125 INT_BARF( context
, 0x21 );
2128 TRACE( "SET FILE LAST ACCESS DATE, file %s\n", fileA
);
2129 MultiByteToWideChar(CP_OEMCP
, 0, fileA
, -1, fileW
, MAX_PATH
);
2131 handle
= CreateFileW( fileW
, GENERIC_WRITE
,
2132 FILE_SHARE_READ
| FILE_SHARE_WRITE
,
2133 NULL
, OPEN_EXISTING
, 0, 0 );
2134 if (handle
== INVALID_HANDLE_VALUE
)
2137 DosDateTimeToFileTime( DI_reg(context
),
2140 status
= SetFileTime( handle
, NULL
, &filetime
, NULL
);
2142 CloseHandle( handle
);
2147 case 0x06: /* GET FILE LAST ACCESS DATE */
2149 INT_BARF( context
, 0x21 );
2152 TRACE( "GET FILE LAST ACCESS DATE, file %s\n", fileA
);
2153 MultiByteToWideChar(CP_OEMCP
, 0, fileA
, -1, fileW
, MAX_PATH
);
2155 handle
= CreateFileW( fileW
, GENERIC_READ
,
2156 FILE_SHARE_READ
| FILE_SHARE_WRITE
,
2157 NULL
, OPEN_EXISTING
, 0, 0 );
2158 if (handle
== INVALID_HANDLE_VALUE
)
2161 status
= GetFileTime( handle
, NULL
, &filetime
, NULL
);
2164 FileTimeToDosDateTime( &filetime
, &date
, NULL
);
2165 SET_DI( context
, date
);
2168 CloseHandle( handle
);
2173 case 0x07: /* SET FILE CREATION DATE AND TIME */
2175 INT_BARF( context
, 0x21 );
2178 TRACE( "SET FILE CREATION DATE AND TIME, file %s\n", fileA
);
2180 handle
= CreateFileW( fileW
, GENERIC_WRITE
,
2181 FILE_SHARE_READ
| FILE_SHARE_WRITE
,
2182 NULL
, OPEN_EXISTING
, 0, 0 );
2183 if (handle
== INVALID_HANDLE_VALUE
)
2187 * FIXME: SI has number of 10-millisecond units past time in CX.
2189 DosDateTimeToFileTime( DI_reg(context
),
2192 status
= SetFileTime( handle
, &filetime
, NULL
, NULL
);
2194 CloseHandle( handle
);
2199 case 0x08: /* GET FILE CREATION DATE AND TIME */
2201 INT_BARF( context
, 0x21 );
2204 TRACE( "GET FILE CREATION DATE AND TIME, handle %d\n",
2207 handle
= CreateFileW( fileW
, GENERIC_READ
,
2208 FILE_SHARE_READ
| FILE_SHARE_WRITE
,
2209 NULL
, OPEN_EXISTING
, 0, 0 );
2210 if (handle
== INVALID_HANDLE_VALUE
)
2213 status
= GetFileTime( handle
, &filetime
, NULL
, NULL
);
2216 FileTimeToDosDateTime( &filetime
, &date
, &time
);
2217 SET_DI( context
, date
);
2218 SET_CX( context
, time
);
2220 * FIXME: SI has number of 10-millisecond units past
2223 SET_SI( context
, 0 );
2226 CloseHandle(handle
);
2231 case 0xff: /* EXTENDED-LENGTH FILENAME OPERATIONS */
2232 if (islong
|| context
->Ebp
!= 0x5053)
2233 INT_BARF( context
, 0x21 );
2236 switch(CL_reg(context
))
2239 if (!INT21_CreateDirectory( context
))
2244 if (!INT21_RenameFile( context
))
2249 INT_BARF( context
, 0x21 );
2255 INT_BARF( context
, 0x21 );
2262 /***********************************************************************
2263 * INT21_FileDateTime
2265 * Handler for function 0x57.
2267 static BOOL
INT21_FileDateTime( CONTEXT86
*context
)
2269 HANDLE handle
= DosFileHandleToWin32Handle(BX_reg(context
));
2273 switch (AL_reg(context
)) {
2274 case 0x00: /* Get last-written stamp */
2275 TRACE( "GET FILE LAST-WRITTEN DATE AND TIME, handle %d\n",
2278 if (!GetFileTime( handle
, NULL
, NULL
, &filetime
))
2280 FileTimeToDosDateTime( &filetime
, &date
, &time
);
2281 SET_DX( context
, date
);
2282 SET_CX( context
, time
);
2286 case 0x01: /* Set last-written stamp */
2287 TRACE( "SET FILE LAST-WRITTEN DATE AND TIME, handle %d\n",
2290 DosDateTimeToFileTime( DX_reg(context
),
2293 if (!SetFileTime( handle
, NULL
, NULL
, &filetime
))
2298 case 0x04: /* Get last access stamp, DOS 7 */
2299 TRACE( "GET FILE LAST ACCESS DATE AND TIME, handle %d\n",
2302 if (!GetFileTime( handle
, NULL
, &filetime
, NULL
))
2304 FileTimeToDosDateTime( &filetime
, &date
, &time
);
2305 SET_DX( context
, date
);
2306 SET_CX( context
, time
);
2310 case 0x05: /* Set last access stamp, DOS 7 */
2311 TRACE( "SET FILE LAST ACCESS DATE AND TIME, handle %d\n",
2314 DosDateTimeToFileTime( DX_reg(context
),
2317 if (!SetFileTime( handle
, NULL
, &filetime
, NULL
))
2322 case 0x06: /* Get creation stamp, DOS 7 */
2323 TRACE( "GET FILE CREATION DATE AND TIME, handle %d\n",
2326 if (!GetFileTime( handle
, &filetime
, NULL
, NULL
))
2328 FileTimeToDosDateTime( &filetime
, &date
, &time
);
2329 SET_DX( context
, date
);
2330 SET_CX( context
, time
);
2332 * FIXME: SI has number of 10-millisecond units past time in CX.
2334 SET_SI( context
, 0 );
2338 case 0x07: /* Set creation stamp, DOS 7 */
2339 TRACE( "SET FILE CREATION DATE AND TIME, handle %d\n",
2343 * FIXME: SI has number of 10-millisecond units past time in CX.
2345 DosDateTimeToFileTime( DX_reg(context
),
2348 if (!SetFileTime( handle
, &filetime
, NULL
, NULL
))
2354 INT_BARF( context
, 0x21 );
2362 /***********************************************************************
2365 * Handler for functions 0x51 and 0x62.
2367 static void INT21_GetPSP( CONTEXT86
*context
)
2369 TRACE( "GET CURRENT PSP ADDRESS (%02x)\n", AH_reg(context
) );
2372 * FIXME: should we return the original DOS PSP upon
2375 if (!ISV86(context
) && DOSVM_IsWin16())
2376 SET_BX( context
, LOWORD(GetCurrentPDB16()) );
2378 SET_BX( context
, DOSVM_psp
);
2381 static inline void setword( BYTE
*ptr
, WORD w
)
2384 ptr
[1] = (BYTE
)(w
>> 8);
2387 static void CreateBPB(int drive
, BYTE
*data
, BOOL16 limited
)
2388 /* limited == TRUE is used with INT 0x21/0x440d */
2390 /* FIXME: we're forcing some values without checking that those are valid */
2395 setword(&data
[3], 0);
2397 setword(&data
[6], 240);
2398 setword(&data
[8], 64000);
2400 setword(&data
[0x0b], 40);
2401 setword(&data
[0x0d], 56);
2402 setword(&data
[0x0f], 2);
2403 setword(&data
[0x11], 0);
2406 setword(&data
[0x1f], 800);
2408 setword(&data
[0x22], 1);
2415 setword(&data
[3], 0);
2417 setword(&data
[6], 240);
2418 setword(&data
[8], 2880);
2420 setword(&data
[0x0b], 6);
2421 setword(&data
[0x0d], 18);
2422 setword(&data
[0x0f], 2);
2423 setword(&data
[0x11], 0);
2426 setword(&data
[0x1f], 80);
2428 setword(&data
[0x22], 2);
2433 static inline DWORD
INT21_Ioctl_CylHeadSect2Lin(DWORD cyl
, WORD head
, WORD sec
, WORD cyl_cnt
,
2434 WORD head_cnt
, WORD sec_cnt
)
2436 DWORD res
= (cyl
* head_cnt
*sec_cnt
+ head
* sec_cnt
+ sec
);
2440 /***********************************************************************
2443 * Handler for block device IOCTLs.
2445 static void INT21_Ioctl_Block( CONTEXT86
*context
)
2448 BYTE drive
= INT21_MapDrive( BL_reg(context
) );
2449 WCHAR drivespec
[4] = {'A', ':', '\\', 0};
2452 drivespec
[0] += drive
;
2453 drivetype
= GetDriveTypeW( drivespec
);
2455 RESET_CFLAG(context
);
2456 if (drivetype
== DRIVE_UNKNOWN
|| drivetype
== DRIVE_NO_ROOT_DIR
)
2458 TRACE( "IOCTL - SUBFUNCTION %d - INVALID DRIVE %c:\n",
2459 AL_reg(context
), 'A' + drive
);
2460 SetLastError( ERROR_INVALID_DRIVE
);
2461 SET_AX( context
, ERROR_INVALID_DRIVE
);
2462 SET_CFLAG( context
);
2466 switch (AL_reg(context
))
2468 case 0x04: /* READ FROM BLOCK DEVICE CONTROL CHANNEL */
2469 case 0x05: /* WRITE TO BLOCK DEVICE CONTROL CHANNEL */
2470 INT_BARF( context
, 0x21 );
2473 case 0x08: /* CHECK IF BLOCK DEVICE REMOVABLE */
2474 TRACE( "IOCTL - CHECK IF BLOCK DEVICE REMOVABLE - %c:\n",
2477 if (drivetype
== DRIVE_REMOVABLE
)
2478 SET_AX( context
, 0 ); /* removable */
2480 SET_AX( context
, 1 ); /* not removable */
2483 case 0x09: /* CHECK IF BLOCK DEVICE REMOTE */
2484 TRACE( "IOCTL - CHECK IF BLOCK DEVICE REMOTE - %c:\n",
2487 if (drivetype
== DRIVE_REMOTE
)
2488 SET_DX( context
, (1<<9) | (1<<12) ); /* remote + no direct IO */
2490 SET_DX( context
, 0 ); /* FIXME: use driver attr here */
2493 case 0x0d: /* GENERIC BLOCK DEVICE REQUEST */
2494 /* Get pointer to IOCTL parameter block */
2495 dataptr
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
2497 switch (CX_reg(context
))
2499 case 0x0841: /* write logical device track */
2500 TRACE( "GENERIC IOCTL - Write logical device track - %c:\n",
2503 WORD head
= *(WORD
*)(dataptr
+1);
2504 WORD cyl
= *(WORD
*)(dataptr
+3);
2505 WORD sect
= *(WORD
*)(dataptr
+5);
2506 WORD nrsect
= *(WORD
*)(dataptr
+7);
2507 BYTE
*data
= CTX_SEG_OFF_TO_LIN(context
, *(WORD
*)(dataptr
+11), *(WORD
*)(dataptr
+9));
2508 WORD cyl_cnt
, head_cnt
, sec_cnt
;
2510 /* FIXME: we're faking some values here */
2516 SET_AX( context
, ERROR_WRITE_FAULT
);
2527 if (!DOSVM_RawWrite(drive
, INT21_Ioctl_CylHeadSect2Lin(cyl
, head
, sect
, cyl_cnt
, head_cnt
, sec_cnt
), nrsect
, data
, FALSE
))
2529 SET_AX( context
, ERROR_WRITE_FAULT
);
2535 case 0x084a: /* lock logical volume */
2536 TRACE( "GENERIC IOCTL - Lock logical volume, level %d mode %d - %c:\n",
2537 BH_reg(context
), DX_reg(context
), 'A' + drive
);
2540 case 0x0860: /* get device parameters */
2541 /* FIXME: we're faking some values here */
2542 /* used by w4wgrp's winfile */
2543 memset(dataptr
, 0, 0x20); /* DOS 6.22 uses 0x20 bytes */
2545 dataptr
[6] = 0; /* media type */
2548 dataptr
[1] = 0x05; /* fixed disk */
2549 setword(&dataptr
[2], 0x01); /* non removable */
2550 setword(&dataptr
[4], 0x300); /* # of cylinders */
2554 dataptr
[1] = 0x07; /* block dev, floppy */
2555 setword(&dataptr
[2], 0x02); /* removable */
2556 setword(&dataptr
[4], 80); /* # of cylinders */
2558 CreateBPB(drive
, &dataptr
[7], TRUE
);
2559 RESET_CFLAG(context
);
2562 case 0x0861: /* read logical device track */
2563 TRACE( "GENERIC IOCTL - Read logical device track - %c:\n",
2566 WORD head
= *(WORD
*)(dataptr
+1);
2567 WORD cyl
= *(WORD
*)(dataptr
+3);
2568 WORD sect
= *(WORD
*)(dataptr
+5);
2569 WORD nrsect
= *(WORD
*)(dataptr
+7);
2570 BYTE
*data
= CTX_SEG_OFF_TO_LIN(context
, *(WORD
*)(dataptr
+11), *(WORD
*)(dataptr
+9));
2571 WORD cyl_cnt
, head_cnt
, sec_cnt
;
2573 /* FIXME: we're faking some values here */
2587 if (!DOSVM_RawRead(drive
, INT21_Ioctl_CylHeadSect2Lin(cyl
, head
, sect
, cyl_cnt
, head_cnt
, sec_cnt
), nrsect
, data
, FALSE
))
2589 SET_AX( context
, ERROR_READ_FAULT
);
2595 case 0x0866: /* get volume serial number */
2597 WCHAR label
[12],fsname
[9];
2600 drivespec
[0] += drive
;
2601 GetVolumeInformationW(drivespec
, label
, 12, &serial
, NULL
, NULL
, fsname
, 9);
2602 *(WORD
*)dataptr
= 0;
2603 memcpy(dataptr
+2,&serial
,4);
2604 WideCharToMultiByte(CP_OEMCP
, 0, label
, 11, (LPSTR
)dataptr
+ 6, 11, NULL
, NULL
);
2605 WideCharToMultiByte(CP_OEMCP
, 0, fsname
, 8, (LPSTR
)dataptr
+ 17, 8, NULL
, NULL
);
2609 case 0x086a: /* unlock logical volume */
2610 TRACE( "GENERIC IOCTL - Logical volume unlocked - %c:\n",
2614 case 0x086f: /* get drive map information */
2615 memset(dataptr
+1, '\0', dataptr
[0]-1);
2616 dataptr
[1] = dataptr
[0];
2617 dataptr
[2] = 0x07; /* protected mode driver; no eject; no notification */
2618 dataptr
[3] = 0xFF; /* no physical drive */
2622 /* Trial and error implementation */
2623 SET_AX( context
, drivetype
== DRIVE_UNKNOWN
? 0x0f : 0x01 );
2624 SET_CFLAG(context
); /* Seems to be set all the time */
2628 INT_BARF( context
, 0x21 );
2632 case 0x0e: /* GET LOGICAL DRIVE MAP */
2633 TRACE( "IOCTL - GET LOGICAL DRIVE MAP - %c:\n",
2635 /* FIXME: this is not correct if drive has mappings */
2636 SET_AL( context
, 0 ); /* drive has no mapping */
2639 case 0x0f: /* SET LOGICAL DRIVE MAP */
2640 TRACE("IOCTL - SET LOGICAL DRIVE MAP for drive %s\n",
2641 INT21_DriveName( BL_reg(context
)));
2642 /* FIXME: as of today, we don't support logical drive mapping... */
2643 SET_AL( context
, 0 );
2646 case 0x11: /* QUERY GENERIC IOCTL CAPABILITY */
2648 INT_BARF( context
, 0x21 );
2653 /***********************************************************************
2654 * INT21_IoctlScsiMgrHandler
2656 * IOCTL handler for the SCSIMGR device.
2658 static void INT21_IoctlScsiMgrHandler( CONTEXT86
*context
)
2660 switch (AL_reg(context
))
2662 case 0x00: /* GET DEVICE INFORMATION */
2663 SET_DX( context
, 0xc0c0 );
2666 case 0x02: /* READ FROM CHARACTER DEVICE CONTROL CHANNEL */
2667 DOSVM_ASPIHandler(context
);
2670 case 0x0a: /* CHECK IF HANDLE IS REMOTE */
2671 SET_DX( context
, 0 );
2674 case 0x01: /* SET DEVICE INFORMATION */
2675 case 0x03: /* WRITE TO CHARACTER DEVICE CONTROL CHANNEL */
2676 case 0x06: /* GET INPUT STATUS */
2677 case 0x07: /* GET OUTPUT STATUS */
2678 case 0x0c: /* GENERIC CHARACTER DEVICE REQUEST */
2679 case 0x10: /* QUERY GENERIC IOCTL CAPABILITY */
2681 INT_BARF( context
, 0x21 );
2687 /***********************************************************************
2688 * INT21_IoctlEMSHandler
2690 * IOCTL handler for the EMXXXX0 device.
2692 static void INT21_IoctlEMSHandler( CONTEXT86
*context
)
2694 EMS_Ioctl_Handler(context
);
2698 /***********************************************************************
2699 * INT21_IoctlHPScanHandler
2701 * IOCTL handler for the HPSCAN device.
2703 static void INT21_IoctlHPScanHandler( CONTEXT86
*context
)
2705 switch (AL_reg(context
))
2707 case 0x00: /* GET DEVICE INFORMATION */
2708 SET_DX( context
, 0xc0c0 );
2711 case 0x0a: /* CHECK IF HANDLE IS REMOTE */
2712 SET_DX( context
, 0 );
2715 case 0x01: /* SET DEVICE INFORMATION */
2716 case 0x02: /* READ FROM CHARACTER DEVICE CONTROL CHANNEL */
2717 case 0x03: /* WRITE TO CHARACTER DEVICE CONTROL CHANNEL */
2718 case 0x06: /* GET INPUT STATUS */
2719 case 0x07: /* GET OUTPUT STATUS */
2720 case 0x0c: /* GENERIC CHARACTER DEVICE REQUEST */
2721 case 0x10: /* QUERY GENERIC IOCTL CAPABILITY */
2723 INT_BARF( context
, 0x21 );
2729 /***********************************************************************
2732 * Handler for character device IOCTLs.
2734 static void INT21_Ioctl_Char( CONTEXT86
*context
)
2737 int IsConsoleIOHandle
= 0;
2739 FILE_INTERNAL_INFORMATION info
;
2740 HANDLE handle
= DosFileHandleToWin32Handle(BX_reg(context
));
2742 status
= NtQueryInformationFile( handle
, &io
, &info
, sizeof(info
), FileInternalInformation
);
2745 if( VerifyConsoleIoHandle( handle
))
2746 IsConsoleIOHandle
= 1;
2748 SET_AX( context
, RtlNtStatusToDosError(status
) );
2749 SET_CFLAG( context
);
2754 for (i
= 0; i
< NB_MAGIC_DEVICES
; i
++)
2756 if (!magic_devices
[i
].handle
) continue;
2757 if (magic_devices
[i
].index
.QuadPart
== info
.IndexNumber
.QuadPart
)
2760 magic_devices
[i
].ioctl_handler( context
);
2766 /* no magic device found, do default handling */
2768 switch (AL_reg(context
))
2770 case 0x00: /* GET DEVICE INFORMATION */
2771 TRACE( "IOCTL - GET DEVICE INFORMATION - %d\n", BX_reg(context
) );
2772 if (IsConsoleIOHandle
|| GetFileType(handle
) == FILE_TYPE_CHAR
)
2775 * Returns attribute word in DX:
2776 * Bit 14 - Device driver can process IOCTL requests.
2777 * Bit 13 - Output until busy supported.
2778 * Bit 11 - Driver supports OPEN/CLOSE calls.
2780 * Bit 7 - Set (indicates device).
2781 * Bit 6 - EOF on input.
2782 * Bit 5 - Raw (binary) mode.
2783 * Bit 4 - Device is special (uses int29).
2784 * Bit 3 - Clock device.
2785 * Bit 2 - NUL device.
2786 * Bit 1 - Console output device.
2787 * Bit 0 - Console input device.
2789 SET_DX( context
, IsConsoleIOHandle
? 0x80c3 : 0x80c0 /* FIXME */ );
2794 * Returns attribute word in DX:
2795 * Bit 15 - File is remote.
2796 * Bit 14 - Don't set file date/time on closing.
2797 * Bit 11 - Media not removable.
2798 * Bit 8 - Generate int24 if no disk space on write
2799 * or read past end of file
2800 * Bit 7 - Clear (indicates file).
2801 * Bit 6 - File has not been written.
2802 * Bit 5..0 - Drive number (0=A:,...)
2804 * FIXME: Should check if file is on remote or removable drive.
2805 * FIXME: Should use drive file is located on (and not current).
2807 SET_DX( context
, 0x0140 + INT21_GetCurrentDrive() );
2811 case 0x0a: /* CHECK IF HANDLE IS REMOTE */
2812 TRACE( "IOCTL - CHECK IF HANDLE IS REMOTE - %d\n", BX_reg(context
) );
2814 * Returns attribute word in DX:
2815 * Bit 15 - Set if remote.
2816 * Bit 14 - Set if date/time not set on close.
2818 * FIXME: Should check if file is on remote drive.
2820 SET_DX( context
, 0 );
2823 case 0x01: /* SET DEVICE INFORMATION */
2824 case 0x02: /* READ FROM CHARACTER DEVICE CONTROL CHANNEL */
2825 case 0x03: /* WRITE TO CHARACTER DEVICE CONTROL CHANNEL */
2826 case 0x06: /* GET INPUT STATUS */
2827 case 0x07: /* GET OUTPUT STATUS */
2828 case 0x0c: /* GENERIC CHARACTER DEVICE REQUEST */
2829 case 0x10: /* QUERY GENERIC IOCTL CAPABILITY */
2831 INT_BARF( context
, 0x21 );
2837 /***********************************************************************
2840 * Handler for function 0x44.
2842 static void INT21_Ioctl( CONTEXT86
*context
)
2844 switch (AL_reg(context
))
2850 INT21_Ioctl_Char( context
);
2855 INT21_Ioctl_Block( context
);
2860 INT21_Ioctl_Char( context
);
2865 INT21_Ioctl_Block( context
);
2869 INT21_Ioctl_Char( context
);
2872 case 0x0b: /* SET SHARING RETRY COUNT */
2873 TRACE( "SET SHARING RETRY COUNT: Pause %d, retries %d.\n",
2874 CX_reg(context
), DX_reg(context
) );
2875 if (!CX_reg(context
))
2877 SET_AX( context
, 1 );
2878 SET_CFLAG( context
);
2882 DOSDEV_SetSharingRetry( CX_reg(context
), DX_reg(context
) );
2883 RESET_CFLAG( context
);
2888 INT21_Ioctl_Char( context
);
2894 INT21_Ioctl_Block( context
);
2898 INT21_Ioctl_Char( context
);
2902 INT21_Ioctl_Block( context
);
2905 case 0x12: /* DR DOS - DETERMINE DOS TYPE (OBSOLETE FUNCTION) */
2906 TRACE( "DR DOS - DETERMINE DOS TYPE (OBSOLETE FUNCTION)\n" );
2907 SET_CFLAG(context
); /* Error / This is not DR DOS. */
2908 SET_AX( context
, 0x0001 ); /* Invalid function */
2911 case 0x52: /* DR DOS - DETERMINE DOS TYPE */
2912 TRACE( "DR DOS - DETERMINE DOS TYPE\n" );
2913 SET_CFLAG(context
); /* Error / This is not DR DOS. */
2914 SET_AX( context
, 0x0001 ); /* Invalid function */
2917 case 0xe0: /* Sun PC-NFS API */
2918 TRACE( "Sun PC-NFS API\n" );
2923 INT_BARF( context
, 0x21 );
2928 /***********************************************************************
2931 * Handler for function 0x73.
2933 static BOOL
INT21_Fat32( CONTEXT86
*context
)
2935 switch (AL_reg(context
))
2937 case 0x02: /* FAT32 - GET EXTENDED DPB */
2939 BYTE drive
= INT21_MapDrive( DL_reg(context
) );
2940 WORD
*ptr
= CTX_SEG_OFF_TO_LIN(context
,
2941 context
->SegEs
, context
->Edi
);
2942 INT21_DPB
*target
= (INT21_DPB
*)(ptr
+ 1);
2945 TRACE( "FAT32 - GET EXTENDED DPB %d\n", DL_reg(context
) );
2947 if ( CX_reg(context
) < sizeof(INT21_DPB
) + 2 || *ptr
< sizeof(INT21_DPB
) )
2949 SetLastError( ERROR_BAD_LENGTH
);
2953 if ( !INT21_FillDrivePB( drive
) )
2955 SetLastError( ERROR_INVALID_DRIVE
);
2959 source
= &INT21_GetHeapPointer()->misc_dpb_list
[drive
];
2961 *ptr
= sizeof(INT21_DPB
);
2964 if (LOWORD(context
->Esi
) != 0xF1A6)
2966 target
->driver_header
= 0;
2971 FIXME( "Caller requested driver and next DPB pointers!\n" );
2976 case 0x03: /* FAT32 - GET EXTENDED FREE SPACE ON DRIVE */
2978 WCHAR dirW
[MAX_PATH
];
2979 char *dirA
= CTX_SEG_OFF_TO_LIN( context
,
2980 context
->SegDs
, context
->Edx
);
2981 BYTE
*data
= CTX_SEG_OFF_TO_LIN( context
,
2982 context
->SegEs
, context
->Edi
);
2983 DWORD cluster_sectors
;
2985 DWORD free_clusters
;
2986 DWORD total_clusters
;
2988 TRACE( "FAT32 - GET EXTENDED FREE SPACE ON DRIVE %s\n", dirA
);
2989 MultiByteToWideChar(CP_OEMCP
, 0, dirA
, -1, dirW
, MAX_PATH
);
2991 if (CX_reg(context
) < 44)
2993 SetLastError( ERROR_BAD_LENGTH
);
2997 if (!GetDiskFreeSpaceW( dirW
, &cluster_sectors
, §or_bytes
,
2998 &free_clusters
, &total_clusters
))
3001 *(WORD
*) (data
+ 0) = 44; /* size of structure */
3002 *(WORD
*) (data
+ 2) = 0; /* version */
3003 *(DWORD
*)(data
+ 4) = cluster_sectors
;
3004 *(DWORD
*)(data
+ 8) = sector_bytes
;
3005 *(DWORD
*)(data
+ 12) = free_clusters
;
3006 *(DWORD
*)(data
+ 16) = total_clusters
;
3009 * Below we have free/total sectors and
3010 * free/total allocation units without adjustment
3011 * for compression. We fake both using cluster information.
3013 *(DWORD
*)(data
+ 20) = free_clusters
* cluster_sectors
;
3014 *(DWORD
*)(data
+ 24) = total_clusters
* cluster_sectors
;
3015 *(DWORD
*)(data
+ 28) = free_clusters
;
3016 *(DWORD
*)(data
+ 32) = total_clusters
;
3019 * Between (data + 36) and (data + 43) there
3020 * are eight reserved bytes.
3026 INT_BARF( context
, 0x21 );
3032 static void INT21_ConvertFindDataWtoA(WIN32_FIND_DATAA
*dataA
,
3033 const WIN32_FIND_DATAW
*dataW
)
3035 dataA
->dwFileAttributes
= dataW
->dwFileAttributes
;
3036 dataA
->ftCreationTime
= dataW
->ftCreationTime
;
3037 dataA
->ftLastAccessTime
= dataW
->ftLastAccessTime
;
3038 dataA
->ftLastWriteTime
= dataW
->ftLastWriteTime
;
3039 dataA
->nFileSizeHigh
= dataW
->nFileSizeHigh
;
3040 dataA
->nFileSizeLow
= dataW
->nFileSizeLow
;
3041 WideCharToMultiByte( CP_OEMCP
, 0, dataW
->cFileName
, -1,
3042 dataA
->cFileName
, sizeof(dataA
->cFileName
), NULL
, NULL
);
3043 WideCharToMultiByte( CP_OEMCP
, 0, dataW
->cAlternateFileName
, -1,
3044 dataA
->cAlternateFileName
, sizeof(dataA
->cAlternateFileName
), NULL
, NULL
);
3047 /***********************************************************************
3048 * INT21_LongFilename
3050 * Handler for function 0x71.
3052 static void INT21_LongFilename( CONTEXT86
*context
)
3054 BOOL bSetDOSExtendedError
= FALSE
;
3055 WCHAR pathW
[MAX_PATH
];
3058 switch (AL_reg(context
))
3060 case 0x0d: /* RESET DRIVE */
3061 INT_BARF( context
, 0x21 );
3064 case 0x39: /* LONG FILENAME - MAKE DIRECTORY */
3065 if (!INT21_CreateDirectory( context
))
3066 bSetDOSExtendedError
= TRUE
;
3069 case 0x3a: /* LONG FILENAME - REMOVE DIRECTORY */
3070 pathA
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
3072 TRACE( "LONG FILENAME - REMOVE DIRECTORY %s\n", pathA
);
3073 MultiByteToWideChar(CP_OEMCP
, 0, pathA
, -1, pathW
, MAX_PATH
);
3074 if (!RemoveDirectoryW( pathW
)) bSetDOSExtendedError
= TRUE
;
3077 case 0x3b: /* LONG FILENAME - CHANGE DIRECTORY */
3078 if (!INT21_SetCurrentDirectory( context
))
3079 bSetDOSExtendedError
= TRUE
;
3082 case 0x41: /* LONG FILENAME - DELETE FILE */
3083 pathA
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
3085 TRACE( "LONG FILENAME - DELETE FILE %s\n", pathA
);
3086 MultiByteToWideChar(CP_OEMCP
, 0, pathA
, -1, pathW
, MAX_PATH
);
3088 if (!DeleteFileW( pathW
)) bSetDOSExtendedError
= TRUE
;
3091 case 0x43: /* LONG FILENAME - EXTENDED GET/SET FILE ATTRIBUTES */
3092 if (!INT21_FileAttributes( context
, BL_reg(context
), TRUE
))
3093 bSetDOSExtendedError
= TRUE
;
3096 case 0x47: /* LONG FILENAME - GET CURRENT DIRECTORY */
3097 if (!INT21_GetCurrentDirectory( context
, TRUE
))
3098 bSetDOSExtendedError
= TRUE
;
3101 case 0x4e: /* LONG FILENAME - FIND FIRST MATCHING FILE */
3105 WIN32_FIND_DATAW dataW
;
3106 WIN32_FIND_DATAA
* dataA
;
3108 pathA
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
,context
->Edx
);
3109 TRACE(" LONG FILENAME - FIND FIRST MATCHING FILE for %s\n", pathA
);
3111 MultiByteToWideChar(CP_OEMCP
, 0, pathA
, -1, pathW
, MAX_PATH
);
3112 handle
= FindFirstFileW(pathW
, &dataW
);
3114 dataA
= (WIN32_FIND_DATAA
*)CTX_SEG_OFF_TO_LIN(context
, context
->SegEs
,
3116 if (handle
!= INVALID_HANDLE_VALUE
&&
3117 (h16
= GlobalAlloc16(GMEM_MOVEABLE
, sizeof(handle
))))
3119 HANDLE
* ptr
= GlobalLock16( h16
);
3121 GlobalUnlock16( h16
);
3122 SET_AX( context
, h16
);
3123 INT21_ConvertFindDataWtoA(dataA
, &dataW
);
3127 if (handle
!= INVALID_HANDLE_VALUE
) FindClose(handle
);
3128 SET_AX( context
, INVALID_HANDLE_VALUE16
);
3129 bSetDOSExtendedError
= TRUE
;
3134 case 0x4f: /* LONG FILENAME - FIND NEXT MATCHING FILE */
3136 HGLOBAL16 h16
= BX_reg(context
);
3138 WIN32_FIND_DATAW dataW
;
3139 WIN32_FIND_DATAA
* dataA
;
3141 TRACE("LONG FILENAME - FIND NEXT MATCHING FILE for handle %d\n",
3144 dataA
= (WIN32_FIND_DATAA
*)CTX_SEG_OFF_TO_LIN(context
, context
->SegEs
,
3147 if (h16
!= INVALID_HANDLE_VALUE16
&& (ptr
= GlobalLock16( h16
)))
3149 if (!FindNextFileW(*ptr
, &dataW
)) bSetDOSExtendedError
= TRUE
;
3150 else INT21_ConvertFindDataWtoA(dataA
, &dataW
);
3151 GlobalUnlock16( h16
);
3155 SetLastError( ERROR_INVALID_HANDLE
);
3156 bSetDOSExtendedError
= TRUE
;
3161 case 0x56: /* LONG FILENAME - RENAME FILE */
3162 if (!INT21_RenameFile(context
))
3163 bSetDOSExtendedError
= TRUE
;
3166 case 0x60: /* LONG FILENAME - CONVERT PATH */
3168 WCHAR res
[MAX_PATH
];
3170 switch (CL_reg(context
))
3172 case 0x00: /* "truename" - Canonicalize path */
3174 * FIXME: This is not 100% equal to 0x01 case,
3175 * if you fix this, fix int21 subfunction 0x60, too.
3178 case 0x01: /* Get short filename or path */
3179 MultiByteToWideChar(CP_OEMCP
, 0, CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Esi
), -1, pathW
, MAX_PATH
);
3180 if (!GetShortPathNameW(pathW
, res
, 67))
3181 bSetDOSExtendedError
= TRUE
;
3184 SET_AX( context
, 0 );
3185 WideCharToMultiByte(CP_OEMCP
, 0, res
, -1,
3186 CTX_SEG_OFF_TO_LIN(context
, context
->SegEs
, context
->Edi
),
3191 case 0x02: /* Get canonical long filename or path */
3192 MultiByteToWideChar(CP_OEMCP
, 0, CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Esi
), -1, pathW
, MAX_PATH
);
3193 if (!GetFullPathNameW(pathW
, 128, res
, NULL
))
3194 bSetDOSExtendedError
= TRUE
;
3197 SET_AX( context
, 0 );
3198 WideCharToMultiByte(CP_OEMCP
, 0, res
, -1,
3199 CTX_SEG_OFF_TO_LIN(context
, context
->SegEs
, context
->Edi
),
3204 FIXME("Unimplemented long file name function:\n");
3205 INT_BARF( context
, 0x21 );
3207 SET_AL( context
, 0 );
3213 case 0x6c: /* LONG FILENAME - CREATE OR OPEN FILE */
3214 if (!INT21_CreateFile( context
, context
->Esi
, TRUE
,
3215 BX_reg(context
), DL_reg(context
) ))
3216 bSetDOSExtendedError
= TRUE
;
3219 case 0xa0: /* LONG FILENAME - GET VOLUME INFORMATION */
3221 DWORD filename_len
, flags
;
3224 pathA
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
,context
->Edx
);
3226 TRACE("LONG FILENAME - GET VOLUME INFORMATION for drive having root dir '%s'.\n", pathA
);
3227 SET_AX( context
, 0 );
3228 MultiByteToWideChar(CP_OEMCP
, 0, pathA
, -1, pathW
, MAX_PATH
);
3229 if (!GetVolumeInformationW( pathW
, NULL
, 0, NULL
, &filename_len
,
3232 INT_BARF( context
, 0x21 );
3236 SET_BX( context
, flags
| 0x4000 ); /* support for LFN functions */
3237 SET_CX( context
, filename_len
);
3238 SET_DX( context
, MAX_PATH
); /* FIXME: which len if DRIVE_SHORT_NAMES ? */
3239 WideCharToMultiByte(CP_OEMCP
, 0, dstW
, -1,
3240 CTX_SEG_OFF_TO_LIN(context
, context
->SegEs
, context
->Edi
),
3245 case 0xa1: /* LONG FILENAME - "FindClose" - TERMINATE DIRECTORY SEARCH */
3247 HGLOBAL16 h16
= BX_reg(context
);
3250 TRACE("LONG FILENAME - FINDCLOSE for handle %d\n",
3252 if (h16
!= INVALID_HANDLE_VALUE16
&& (ptr
= GlobalLock16( h16
)))
3254 if (!FindClose( *ptr
)) bSetDOSExtendedError
= TRUE
;
3255 GlobalUnlock16( h16
);
3256 GlobalFree16( h16
);
3260 SetLastError( ERROR_INVALID_HANDLE
);
3261 bSetDOSExtendedError
= TRUE
;
3266 case 0xa6: /* LONG FILENAME - GET FILE INFO BY HANDLE */
3268 HANDLE handle
= DosFileHandleToWin32Handle(BX_reg(context
));
3269 BY_HANDLE_FILE_INFORMATION
*info
=
3270 CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
3272 TRACE( "LONG FILENAME - GET FILE INFO BY HANDLE\n" );
3274 if (!GetFileInformationByHandle(handle
, info
))
3275 bSetDOSExtendedError
= TRUE
;
3279 case 0xa7: /* LONG FILENAME - CONVERT TIME */
3280 switch (BL_reg(context
))
3282 case 0x00: /* FILE TIME TO DOS TIME */
3285 FILETIME
*filetime
= CTX_SEG_OFF_TO_LIN(context
,
3289 TRACE( "LONG FILENAME - FILE TIME TO DOS TIME\n" );
3291 FileTimeToDosDateTime( filetime
, &date
, &time
);
3293 SET_DX( context
, date
);
3294 SET_CX( context
, time
);
3297 * FIXME: BH has number of 10-millisecond units
3300 SET_BH( context
, 0 );
3304 case 0x01: /* DOS TIME TO FILE TIME */
3306 FILETIME
*filetime
= CTX_SEG_OFF_TO_LIN(context
,
3310 TRACE( "LONG FILENAME - DOS TIME TO FILE TIME\n" );
3313 * FIXME: BH has number of 10-millisecond units
3316 DosDateTimeToFileTime( DX_reg(context
), CX_reg(context
),
3322 INT_BARF( context
, 0x21 );
3327 case 0xa8: /* LONG FILENAME - GENERATE SHORT FILENAME */
3328 case 0xa9: /* LONG FILENAME - SERVER CREATE OR OPEN FILE */
3329 case 0xaa: /* LONG FILENAME - SUBST */
3331 FIXME("Unimplemented long file name function:\n");
3332 INT_BARF( context
, 0x21 );
3334 SET_AL( context
, 0 );
3338 if (bSetDOSExtendedError
)
3340 SET_AX( context
, GetLastError() );
3341 SET_CFLAG( context
);
3346 /***********************************************************************
3351 * - subfunction 0x56 of function 0x71
3352 * - subfunction 0xff of function 0x43 (CL == 0x56)
3354 static BOOL
INT21_RenameFile( CONTEXT86
*context
)
3356 WCHAR fromW
[MAX_PATH
];
3357 WCHAR toW
[MAX_PATH
];
3358 char *fromA
= CTX_SEG_OFF_TO_LIN(context
,
3359 context
->SegDs
,context
->Edx
);
3360 char *toA
= CTX_SEG_OFF_TO_LIN(context
,
3361 context
->SegEs
,context
->Edi
);
3363 TRACE( "RENAME FILE %s to %s\n", fromA
, toA
);
3364 MultiByteToWideChar(CP_OEMCP
, 0, fromA
, -1, fromW
, MAX_PATH
);
3365 MultiByteToWideChar(CP_OEMCP
, 0, toA
, -1, toW
, MAX_PATH
);
3367 return MoveFileW( fromW
, toW
);
3371 /***********************************************************************
3377 static BOOL
INT21_NetworkFunc (CONTEXT86
*context
)
3379 switch (AL_reg(context
))
3381 case 0x00: /* Get machine name. */
3383 WCHAR dstW
[MAX_COMPUTERNAME_LENGTH
+ 1];
3384 DWORD s
= sizeof(dstW
) / sizeof(WCHAR
);
3387 char *dst
= CTX_SEG_OFF_TO_LIN (context
,context
->SegDs
,context
->Edx
);
3388 TRACE("getting machine name to %p\n", dst
);
3389 if (!GetComputerNameW(dstW
, &s
) ||
3390 !WideCharToMultiByte(CP_OEMCP
, 0, dstW
, -1, dst
, 16, NULL
, NULL
))
3393 SetLastError( ER_NoNetwork
);
3396 for (len
= strlen(dst
); len
< 15; len
++) dst
[len
] = ' ';
3398 SET_CH( context
, 1 ); /* Valid */
3399 SET_CL( context
, 1 ); /* NETbios number??? */
3400 TRACE("returning %s\n", debugstr_an(dst
, 16));
3405 SetLastError( ER_NoNetwork
);
3410 /******************************************************************
3411 * INT21_GetDiskSerialNumber
3414 static int INT21_GetDiskSerialNumber( CONTEXT86
*context
)
3416 BYTE
*dataptr
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
3417 WCHAR path
[] = {'A',':',0}, label
[11];
3420 path
[0] += INT21_MapDrive(BL_reg(context
));
3421 if (!GetVolumeInformationW( path
, label
, 11, &serial
, NULL
, NULL
, NULL
, 0))
3423 SetLastError( ERROR_INVALID_DRIVE
);
3427 *(WORD
*)dataptr
= 0;
3428 memcpy(dataptr
+ 2, &serial
, sizeof(DWORD
));
3429 WideCharToMultiByte(CP_OEMCP
, 0, label
, 11, (LPSTR
)dataptr
+ 6, 11, NULL
, NULL
);
3430 memcpy(dataptr
+ 17, "FAT16 ", 8);
3435 /******************************************************************
3436 * INT21_SetDiskSerialNumber
3439 static int INT21_SetDiskSerialNumber( CONTEXT86
*context
)
3442 BYTE
*dataptr
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
3443 int drive
= INT21_MapDrive(BL_reg(context
));
3445 if (!is_valid_drive(drive
))
3447 SetLastError( ERROR_INVALID_DRIVE
);
3451 DRIVE_SetSerialNumber( drive
, *(DWORD
*)(dataptr
+ 2) );
3454 FIXME("Setting drive serial number is no longer supported\n");
3455 SetLastError( ERROR_NOT_SUPPORTED
);
3461 /******************************************************************
3462 * INT21_GetFreeDiskSpace
3465 static int INT21_GetFreeDiskSpace( CONTEXT86
*context
)
3467 DWORD cluster_sectors
, sector_bytes
, free_clusters
, total_clusters
;
3468 WCHAR root
[] = {'A',':','\\',0};
3469 const DWORD max_clusters
= 0x3d83;
3470 const DWORD max_sectors_per_cluster
= 0x7f;
3471 const DWORD max_bytes_per_sector
= 0x200;
3473 root
[0] += INT21_MapDrive(DL_reg(context
));
3474 if (!GetDiskFreeSpaceW( root
, &cluster_sectors
, §or_bytes
,
3475 &free_clusters
, &total_clusters
)) return 0;
3477 /* Some old win31 apps (Lotus SmartSuite 5.1) crap out if there's too
3478 * much disk space, so Windows XP seems to apply the following limits:
3479 * cluster_sectors <= 0x7f
3480 * sector size <= 0x200
3481 * clusters <= 0x3D83
3482 * This means total reported space is limited to about 1GB.
3485 /* Make sure bytes-per-sector is in [, max] */
3486 while (sector_bytes
> max_bytes_per_sector
) {
3488 free_clusters
<<= 1;
3489 total_clusters
<<= 1;
3491 /* Then make sure sectors-per-cluster is in [max/2, max]. */
3492 while (cluster_sectors
<= max_sectors_per_cluster
/2) {
3493 cluster_sectors
<<= 1;
3494 free_clusters
>>= 1;
3495 total_clusters
>>= 1;
3497 while (cluster_sectors
> max_sectors_per_cluster
) {
3498 cluster_sectors
>>= 1;
3499 free_clusters
<<= 1;
3500 total_clusters
<<= 1;
3503 /* scale up sectors_per_cluster to exactly max_sectors_per_cluster.
3504 * We could skip this, but that would impose an artificially low
3505 * limit on reported disk space.
3506 * To avoid overflow, first apply a preliminary cap on sector count;
3507 * this will not affect the correctness of the final result,
3508 * because if the preliminary cap hits, the final one will, too.
3510 if (total_clusters
> 4 * max_clusters
)
3511 total_clusters
= 4 * max_clusters
;
3512 if (free_clusters
> 4 * max_clusters
)
3513 free_clusters
= 4 * max_clusters
;
3514 if (cluster_sectors
< max_sectors_per_cluster
) {
3515 free_clusters
*= cluster_sectors
;
3516 free_clusters
/= max_sectors_per_cluster
;
3517 total_clusters
*= cluster_sectors
;
3518 total_clusters
/= max_sectors_per_cluster
;
3519 cluster_sectors
= max_sectors_per_cluster
;
3522 /* Finally, apply real cluster count cap. */
3523 if (total_clusters
> max_clusters
)
3524 total_clusters
= max_clusters
;
3525 if (free_clusters
> max_clusters
)
3526 free_clusters
= max_clusters
;
3528 SET_AX( context
, cluster_sectors
);
3529 SET_BX( context
, free_clusters
);
3530 SET_CX( context
, sector_bytes
);
3531 SET_DX( context
, total_clusters
);
3535 /******************************************************************
3536 * INT21_GetDriveAllocInfo
3539 static int INT21_GetDriveAllocInfo( CONTEXT86
*context
, BYTE drive
)
3543 drive
= INT21_MapDrive( drive
);
3544 if (!INT21_FillDrivePB( drive
)) return 0;
3545 dpb
= &(INT21_GetHeapPointer()->misc_dpb_list
[drive
]);
3546 SET_AL( context
, dpb
->cluster_sectors
+ 1 );
3547 SET_CX( context
, dpb
->sector_bytes
);
3548 SET_DX( context
, dpb
->num_clusters1
);
3550 context
->SegDs
= INT21_GetHeapSelector( context
);
3551 SET_BX( context
, offsetof( INT21_HEAP
, misc_dpb_list
[drive
].media_ID
) );
3555 /***********************************************************************
3556 * INT21_GetExtendedError
3558 static void INT21_GetExtendedError( CONTEXT86
*context
)
3560 BYTE
class, action
, locus
;
3561 WORD error
= GetLastError();
3566 class = action
= locus
= 0;
3568 case ERROR_DIR_NOT_EMPTY
:
3573 case ERROR_ACCESS_DENIED
:
3574 class = EC_AccessDenied
;
3578 case ERROR_CANNOT_MAKE
:
3579 class = EC_AccessDenied
;
3583 case ERROR_DISK_FULL
:
3584 case ERROR_HANDLE_DISK_FULL
:
3585 class = EC_MediaError
;
3589 case ERROR_FILE_EXISTS
:
3590 case ERROR_ALREADY_EXISTS
:
3595 case ERROR_FILE_NOT_FOUND
:
3596 class = EC_NotFound
;
3600 case ERROR_GEN_FAILURE
:
3601 class = EC_SystemFailure
;
3605 case ERROR_INVALID_DRIVE
:
3606 class = EC_MediaError
;
3610 case ERROR_INVALID_HANDLE
:
3611 class = EC_ProgramError
;
3615 case ERROR_LOCK_VIOLATION
:
3616 class = EC_AccessDenied
;
3620 case ERROR_NO_MORE_FILES
:
3621 class = EC_MediaError
;
3626 class = EC_NotFound
;
3630 case ERROR_NOT_ENOUGH_MEMORY
:
3631 class = EC_OutOfResource
;
3635 case ERROR_PATH_NOT_FOUND
:
3636 class = EC_NotFound
;
3641 class = EC_NotFound
;
3645 case ERROR_SHARING_VIOLATION
:
3646 class = EC_Temporary
;
3650 case ERROR_TOO_MANY_OPEN_FILES
:
3651 class = EC_ProgramError
;
3656 FIXME("Unknown error %d\n", error
);
3657 class = EC_SystemFailure
;
3662 TRACE("GET EXTENDED ERROR code 0x%02x class 0x%02x action 0x%02x locus %02x\n",
3663 error
, class, action
, locus
);
3664 SET_AX( context
, error
);
3665 SET_BH( context
, class );
3666 SET_BL( context
, action
);
3667 SET_CH( context
, locus
);
3670 static BOOL
INT21_CreateTempFile( CONTEXT86
*context
)
3672 static int counter
= 0;
3673 char *name
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
3674 char *p
= name
+ strlen(name
);
3676 /* despite what Ralf Brown says, some programs seem to call without
3677 * ending backslash (DOS accepts that, so we accept it too) */
3678 if ((p
== name
) || (p
[-1] != '\\')) *p
++ = '\\';
3682 sprintf( p
, "wine%04x.%03d", (int)getpid(), counter
);
3683 counter
= (counter
+ 1) % 1000;
3686 Win32HandleToDosFileHandle(
3687 CreateFileA( name
, GENERIC_READ
| GENERIC_WRITE
,
3688 FILE_SHARE_READ
| FILE_SHARE_WRITE
, NULL
,
3689 CREATE_NEW
, 0, 0 ) ) );
3690 if (AX_reg(context
) != HFILE_ERROR16
)
3692 TRACE("created %s\n", name
);
3695 if (GetLastError() != ERROR_FILE_EXISTS
) return FALSE
;
3699 /***********************************************************************
3700 * DOSFS_ToDosFCBFormat
3702 * Convert a file name to DOS FCB format (8+3 chars, padded with blanks),
3703 * expanding wild cards and converting to upper-case in the process.
3704 * File name can be terminated by '\0', '\\' or '/'.
3705 * Return FALSE if the name is not a valid DOS name.
3706 * 'buffer' must be at least 12 characters long.
3708 /* Chars we don't want to see in DOS file names */
3709 static BOOL
INT21_ToDosFCBFormat( LPCWSTR name
, LPWSTR buffer
)
3711 static const WCHAR invalid_chars
[] = {'*','?','<','>','|','\\','"','+','=',',',';','[',']',' ','\345',0};
3715 /* Check for "." and ".." */
3720 for(i
= 1; i
< 11; i
++) buffer
[i
] = ' ';
3727 return (!*p
|| (*p
== '/') || (*p
== '\\'));
3730 for (i
= 0; i
< 8; i
++)
3747 if (strchrW( invalid_chars
, *p
)) return FALSE
;
3748 buffer
[i
] = toupperW(*p
);
3756 /* Skip all chars after wildcard up to first dot */
3757 while (*p
&& (*p
!= '/') && (*p
!= '\\') && (*p
!= '.')) p
++;
3761 /* Check if name too long */
3762 if (*p
&& (*p
!= '/') && (*p
!= '\\') && (*p
!= '.')) return FALSE
;
3764 if (*p
== '.') p
++; /* Skip dot */
3766 for (i
= 8; i
< 11; i
++)
3776 return FALSE
; /* Second extension not allowed */
3784 if (strchrW( invalid_chars
, *p
)) return FALSE
;
3785 buffer
[i
] = toupperW(*p
);
3792 /* at most 3 character of the extension are processed
3793 * is something behind this ?
3795 while (*p
== '*' || *p
== ' ') p
++; /* skip wildcards and spaces */
3796 return (!*p
|| (*p
== '/') || (*p
== '\\'));
3799 static HANDLE INT21_FindHandle
;
3800 static const WCHAR
*INT21_FindPath
; /* will point to current dta->fullPath search */
3802 /******************************************************************
3805 static int INT21_FindFirst( CONTEXT86
*context
)
3809 FINDFILE_DTA
*dta
= (FINDFILE_DTA
*)INT21_GetCurrentDTA(context
);
3810 WCHAR maskW
[12], pathW
[MAX_PATH
];
3811 static const WCHAR wildcardW
[] = {'*','.','*',0};
3813 path
= (const char *)CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
3814 MultiByteToWideChar(CP_OEMCP
, 0, path
, -1, pathW
, MAX_PATH
);
3816 p
= strrchrW( pathW
, '\\');
3817 q
= strrchrW( pathW
, '/');
3821 if (pathW
[0] && pathW
[1] == ':') p
= pathW
+ 2;
3826 /* Note: terminating NULL in dta->mask overwrites dta->search_attr
3827 * (doesn't matter as it is set below anyway)
3829 if (!INT21_ToDosFCBFormat( p
, maskW
))
3831 SetLastError( ERROR_FILE_NOT_FOUND
);
3832 SET_AX( context
, ERROR_FILE_NOT_FOUND
);
3836 WideCharToMultiByte(CP_OEMCP
, 0, maskW
, 12, dta
->mask
, sizeof(dta
->mask
), NULL
, NULL
);
3838 dta
->fullPath
= HeapAlloc( GetProcessHeap(), 0, sizeof(wildcardW
) + (p
- pathW
)*sizeof(WCHAR
) );
3839 memcpy( dta
->fullPath
, pathW
, (p
- pathW
) * sizeof(WCHAR
) );
3840 memcpy( dta
->fullPath
+ (p
- pathW
), wildcardW
, sizeof(wildcardW
) );
3841 /* we must have a fully qualified file name in dta->fullPath
3842 * (we could have a UNC path, but this would lead to some errors later on)
3844 dta
->drive
= toupperW(dta
->fullPath
[0]) - 'A';
3846 dta
->search_attr
= CL_reg(context
);
3850 /******************************************************************
3853 * Check is a short path name (DTA unicode) matches a mask (FCB ansi)
3855 static BOOL
match_short(LPCWSTR shortW
, LPCSTR maskA
)
3857 WCHAR mask
[11], file
[12];
3860 if (!INT21_ToDosFCBFormat( shortW
, file
)) return FALSE
;
3861 MultiByteToWideChar(CP_OEMCP
, 0, maskA
, 11, mask
, 11);
3862 for (i
= 0; i
< 11; i
++)
3863 if (mask
[i
] != '?' && mask
[i
] != file
[i
]) return FALSE
;
3867 static unsigned INT21_FindHelper(LPCWSTR fullPath
, unsigned drive
, unsigned count
,
3868 LPCSTR mask
, unsigned search_attr
,
3869 WIN32_FIND_DATAW
* entry
)
3873 if ((search_attr
& ~(FA_UNUSED
| FA_ARCHIVE
| FA_RDONLY
)) == FA_LABEL
)
3875 WCHAR path
[] = {' ',':',0};
3877 if (count
) return 0;
3878 path
[0] = drive
+ 'A';
3879 if (!GetVolumeInformationW(path
, entry
->cAlternateFileName
, 13, NULL
, NULL
, NULL
, NULL
, 0)) return 0;
3880 RtlSecondsSince1970ToTime( (time_t)0, (LARGE_INTEGER
*)&entry
->ftCreationTime
);
3881 RtlSecondsSince1970ToTime( (time_t)0, (LARGE_INTEGER
*)&entry
->ftLastAccessTime
);
3882 RtlSecondsSince1970ToTime( (time_t)0, (LARGE_INTEGER
*)&entry
->ftLastWriteTime
);
3883 entry
->dwFileAttributes
= FA_LABEL
;
3884 entry
->nFileSizeHigh
= entry
->nFileSizeLow
= 0;
3885 TRACE("returning %s as label\n", debugstr_w(entry
->cAlternateFileName
));
3889 if (!INT21_FindHandle
|| INT21_FindPath
!= fullPath
|| count
== 0)
3891 if (INT21_FindHandle
) FindClose(INT21_FindHandle
);
3892 INT21_FindHandle
= FindFirstFileW(fullPath
, entry
);
3893 if (INT21_FindHandle
== INVALID_HANDLE_VALUE
)
3895 INT21_FindHandle
= 0;
3898 INT21_FindPath
= fullPath
;
3899 /* we need to resync search */
3904 while (ncalls
-- != 0)
3906 if (!FindNextFileW(INT21_FindHandle
, entry
))
3908 FindClose(INT21_FindHandle
); INT21_FindHandle
= 0;
3912 while (count
< 0xffff)
3915 /* Check the file attributes, and path */
3916 if (!(entry
->dwFileAttributes
& ~search_attr
) &&
3917 match_short(entry
->cAlternateFileName
[0] ? entry
->cAlternateFileName
: entry
->cFileName
,
3922 if (!FindNextFileW(INT21_FindHandle
, entry
))
3924 FindClose(INT21_FindHandle
); INT21_FindHandle
= 0;
3928 WARN("Too many directory entries in %s\n", debugstr_w(fullPath
) );
3932 /******************************************************************
3935 static int INT21_FindNext( CONTEXT86
*context
)
3937 FINDFILE_DTA
*dta
= (FINDFILE_DTA
*)INT21_GetCurrentDTA(context
);
3938 DWORD attr
= dta
->search_attr
| FA_UNUSED
| FA_ARCHIVE
| FA_RDONLY
;
3939 WIN32_FIND_DATAW entry
;
3942 if (!dta
->fullPath
) return 0;
3944 n
= INT21_FindHelper(dta
->fullPath
, dta
->drive
, dta
->count
,
3945 dta
->mask
, attr
, &entry
);
3948 dta
->fileattr
= entry
.dwFileAttributes
;
3949 dta
->filesize
= entry
.nFileSizeLow
;
3950 FileTimeToDosDateTime( &entry
.ftLastWriteTime
, &dta
->filedate
, &dta
->filetime
);
3951 if (entry
.cAlternateFileName
[0])
3952 WideCharToMultiByte(CP_OEMCP
, 0, entry
.cAlternateFileName
, -1,
3953 dta
->filename
, 13, NULL
, NULL
);
3955 WideCharToMultiByte(CP_OEMCP
, 0, entry
.cFileName
, -1, dta
->filename
, 13, NULL
, NULL
);
3957 if (!memchr(dta
->mask
,'?',11))
3959 /* wildcardless search, release resources in case no findnext will
3960 * be issued, and as a workaround in case file creation messes up
3961 * findnext, as sometimes happens with pkunzip
3963 HeapFree( GetProcessHeap(), 0, dta
->fullPath
);
3964 INT21_FindPath
= dta
->fullPath
= NULL
;
3969 HeapFree( GetProcessHeap(), 0, dta
->fullPath
);
3970 INT21_FindPath
= dta
->fullPath
= NULL
;
3974 /* microsoft's programmers should be shot for using CP/M style int21
3975 calls in Windows for Workgroup's winfile.exe */
3977 /******************************************************************
3978 * INT21_FindFirstFCB
3981 static int INT21_FindFirstFCB( CONTEXT86
*context
)
3983 BYTE
*fcb
= (BYTE
*)CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
3986 WCHAR p
[] = {' ',':',};
3988 if (*fcb
== 0xff) pFCB
= (FINDFILE_FCB
*)(fcb
+ 7);
3989 else pFCB
= (FINDFILE_FCB
*)fcb
;
3990 drive
= INT21_MapDrive( pFCB
->drive
);
3991 if (drive
== MAX_DOS_DRIVES
) return 0;
3994 pFCB
->fullPath
= HeapAlloc(GetProcessHeap(), 0, MAX_PATH
* sizeof(WCHAR
));
3995 if (!pFCB
->fullPath
) return 0;
3996 GetLongPathNameW(p
, pFCB
->fullPath
, MAX_PATH
);
4001 /******************************************************************
4005 static int INT21_FindNextFCB( CONTEXT86
*context
)
4007 BYTE
*fcb
= (BYTE
*)CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
4009 LPBYTE pResult
= INT21_GetCurrentDTA(context
);
4010 DOS_DIRENTRY_LAYOUT
*ddl
;
4011 WIN32_FIND_DATAW entry
;
4016 if (*fcb
== 0xff) /* extended FCB ? */
4019 pFCB
= (FINDFILE_FCB
*)(fcb
+ 7);
4024 pFCB
= (FINDFILE_FCB
*)fcb
;
4027 if (!pFCB
->fullPath
) return 0;
4028 n
= INT21_FindHelper(pFCB
->fullPath
, INT21_MapDrive( pFCB
->drive
),
4029 pFCB
->count
, pFCB
->filename
, attr
, &entry
);
4032 HeapFree( GetProcessHeap(), 0, pFCB
->fullPath
);
4033 INT21_FindPath
= pFCB
->fullPath
= NULL
;
4040 /* place extended FCB header before pResult if called with extended FCB */
4042 pResult
+= 6; /* leave reserved field behind */
4043 *pResult
++ = entry
.dwFileAttributes
;
4045 *pResult
++ = INT21_MapDrive( pFCB
->drive
); /* DOS_DIRENTRY_LAYOUT after current drive number */
4046 ddl
= (DOS_DIRENTRY_LAYOUT
*)pResult
;
4047 ddl
->fileattr
= entry
.dwFileAttributes
;
4048 ddl
->cluster
= 0; /* what else? */
4049 ddl
->filesize
= entry
.nFileSizeLow
;
4050 memset( ddl
->reserved
, 0, sizeof(ddl
->reserved
) );
4051 FileTimeToDosDateTime( &entry
.ftLastWriteTime
,
4052 &ddl
->filedate
, &ddl
->filetime
);
4054 /* Convert file name to FCB format */
4055 if (entry
.cAlternateFileName
[0])
4056 INT21_ToDosFCBFormat( entry
.cAlternateFileName
, nameW
);
4058 INT21_ToDosFCBFormat( entry
.cFileName
, nameW
);
4059 WideCharToMultiByte(CP_OEMCP
, 0, nameW
, 11, ddl
->filename
, 11, NULL
, NULL
);
4064 /******************************************************************
4065 * INT21_ParseFileNameIntoFCB
4068 static void INT21_ParseFileNameIntoFCB( CONTEXT86
*context
)
4071 CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Esi
);
4073 CTX_SEG_OFF_TO_LIN(context
, context
->SegEs
, context
->Edi
);
4077 INT buffer_len
, len
;
4079 SET_AL( context
, 0xff ); /* failed */
4081 TRACE("filename: '%s'\n", filename
);
4084 while (*s
&& (*s
!= ' ') && (*s
!= '\r') && (*s
!= '\n'))
4088 buffer_len
= MultiByteToWideChar(CP_OEMCP
, 0, filename
, len
, NULL
, 0);
4089 buffer
= HeapAlloc( GetProcessHeap(), 0, (buffer_len
+ 1) * sizeof(WCHAR
));
4090 len
= MultiByteToWideChar(CP_OEMCP
, 0, filename
, len
, buffer
, buffer_len
);
4092 INT21_ToDosFCBFormat(buffer
, fcbW
);
4093 HeapFree(GetProcessHeap(), 0, buffer
);
4094 WideCharToMultiByte(CP_OEMCP
, 0, fcbW
, 12, fcb
+ 1, 12, NULL
, NULL
);
4096 TRACE("FCB: '%s'\n", fcb
+ 1);
4098 SET_AL( context
, ((strchr(filename
, '*')) || (strchr(filename
, '$'))) != 0 );
4100 /* point DS:SI to first unparsed character */
4101 SET_SI( context
, context
->Esi
+ (int)s
- (int)filename
);
4104 static BOOL
INT21_Dup2(HFILE16 hFile1
, HFILE16 hFile2
)
4106 HFILE16 res
= HFILE_ERROR16
;
4107 HANDLE handle
, new_handle
;
4108 #define DOS_TABLE_SIZE 256
4109 DWORD map
[DOS_TABLE_SIZE
/ 32];
4112 handle
= DosFileHandleToWin32Handle(hFile1
);
4113 if (handle
== INVALID_HANDLE_VALUE
)
4117 /* now loop to allocate the same one... */
4118 memset(map
, 0, sizeof(map
));
4119 for (i
= 0; i
< DOS_TABLE_SIZE
; i
++)
4121 if (!DuplicateHandle(GetCurrentProcess(), handle
,
4122 GetCurrentProcess(), &new_handle
,
4123 0, FALSE
, DUPLICATE_SAME_ACCESS
))
4125 res
= HFILE_ERROR16
;
4128 res
= Win32HandleToDosFileHandle(new_handle
);
4129 if (res
== HFILE_ERROR16
|| res
== hFile2
) break;
4130 map
[res
/ 32] |= 1 << (res
% 32);
4132 /* clean up the allocated slots */
4133 for (i
= 0; i
< DOS_TABLE_SIZE
; i
++)
4135 if (map
[i
/ 32] & (1 << (i
% 32)))
4136 _lclose16((HFILE16
)i
);
4138 return res
== hFile2
;
4142 /***********************************************************************
4143 * DOSVM_Int21Handler
4145 * Interrupt 0x21 handler.
4147 void WINAPI
DOSVM_Int21Handler( CONTEXT86
*context
)
4149 BOOL bSetDOSExtendedError
= FALSE
;
4151 TRACE( "AX=%04x BX=%04x CX=%04x DX=%04x "
4152 "SI=%04x DI=%04x DS=%04x ES=%04x EFL=%08x\n",
4153 AX_reg(context
), BX_reg(context
),
4154 CX_reg(context
), DX_reg(context
),
4155 SI_reg(context
), DI_reg(context
),
4156 (WORD
)context
->SegDs
, (WORD
)context
->SegEs
,
4160 * Extended error is used by (at least) functions 0x2f to 0x62.
4161 * Function 0x59 returns extended error and error should not
4162 * be cleared before handling the function.
4164 if (AH_reg(context
) >= 0x2f && AH_reg(context
) != 0x59)
4167 RESET_CFLAG(context
); /* Not sure if this is a good idea. */
4169 switch(AH_reg(context
))
4171 case 0x00: /* TERMINATE PROGRAM */
4172 TRACE("TERMINATE PROGRAM\n");
4173 if (DOSVM_IsWin16())
4175 else if(ISV86(context
))
4176 MZ_Exit( context
, FALSE
, 0 );
4178 ERR( "Called from DOS protected mode\n" );
4181 case 0x01: /* READ CHARACTER FROM STANDARD INPUT, WITH ECHO */
4184 TRACE("DIRECT CHARACTER INPUT WITH ECHO\n");
4185 INT21_ReadChar( &ascii
, context
);
4186 SET_AL( context
, ascii
);
4188 * FIXME: What to echo when extended keycodes are read?
4190 DOSVM_PutChar(AL_reg(context
));
4194 case 0x02: /* WRITE CHARACTER TO STANDARD OUTPUT */
4195 TRACE("Write Character to Standard Output\n");
4196 DOSVM_PutChar(DL_reg(context
));
4199 case 0x03: /* READ CHARACTER FROM STDAUX */
4200 case 0x04: /* WRITE CHARACTER TO STDAUX */
4201 case 0x05: /* WRITE CHARACTER TO PRINTER */
4202 INT_BARF( context
, 0x21 );
4205 case 0x06: /* DIRECT CONSOLE IN/OUTPUT */
4206 if (DL_reg(context
) == 0xff)
4208 TRACE("Direct Console Input\n");
4210 if (INT21_ReadChar( NULL
, NULL
))
4213 INT21_ReadChar( &ascii
, context
);
4214 SET_AL( context
, ascii
);
4215 RESET_ZFLAG( context
);
4219 /* no character available */
4220 SET_AL( context
, 0 );
4221 SET_ZFLAG( context
);
4226 TRACE("Direct Console Output\n");
4227 DOSVM_PutChar(DL_reg(context
));
4229 * At least DOS versions 2.1-7.0 return character
4230 * that was written in AL register.
4232 SET_AL( context
, DL_reg(context
) );
4236 case 0x07: /* DIRECT CHARACTER INPUT WITHOUT ECHO */
4239 TRACE("DIRECT CHARACTER INPUT WITHOUT ECHO\n");
4240 INT21_ReadChar( &ascii
, context
);
4241 SET_AL( context
, ascii
);
4245 case 0x08: /* CHARACTER INPUT WITHOUT ECHO */
4248 TRACE("CHARACTER INPUT WITHOUT ECHO\n");
4249 INT21_ReadChar( &ascii
, context
);
4250 SET_AL( context
, ascii
);
4254 case 0x09: /* WRITE STRING TO STANDARD OUTPUT */
4255 TRACE("WRITE '$'-terminated string from %04X:%04X to stdout\n",
4256 context
->SegDs
, DX_reg(context
) );
4258 LPSTR data
= CTX_SEG_OFF_TO_LIN( context
,
4259 context
->SegDs
, context
->Edx
);
4263 * Do NOT use strchr() to calculate the string length,
4264 * as '\0' is valid string content, too!
4265 * Maybe we should check for non-'$' strings, but DOS doesn't.
4267 while (*p
!= '$') p
++;
4269 if (DOSVM_IsWin16())
4270 WriteFile( DosFileHandleToWin32Handle(1),
4271 data
, p
- data
, &w
, NULL
);
4273 for(; data
!= p
; data
++)
4274 DOSVM_PutChar( *data
);
4276 SET_AL( context
, '$' ); /* yes, '$' (0x24) gets returned in AL */
4280 case 0x0a: /* BUFFERED INPUT */
4282 BYTE
*ptr
= CTX_SEG_OFF_TO_LIN(context
,
4287 TRACE( "BUFFERED INPUT (size=%d)\n", ptr
[0] );
4290 * FIXME: Some documents state that
4291 * ptr[1] holds number of chars from last input which
4292 * may be recalled on entry, other documents do not mention
4296 TRACE( "Handle old chars in buffer!\n" );
4299 * ptr[0] - capacity (includes terminating CR)
4300 * ptr[1] - characters read (excludes terminating CR)
4302 result
= INT21_BufferedInput( context
, ptr
+ 2, ptr
[0] );
4304 ptr
[1] = (BYTE
)result
- 1;
4310 case 0x0b: /* GET STDIN STATUS */
4311 TRACE( "GET STDIN STATUS\n" );
4313 if (INT21_ReadChar( NULL
, NULL
))
4314 SET_AL( context
, 0xff ); /* character available */
4316 SET_AL( context
, 0 ); /* no character available */
4320 case 0x0c: /* FLUSH BUFFER AND READ STANDARD INPUT */
4322 BYTE al
= AL_reg(context
); /* Input function to execute after flush. */
4324 TRACE( "FLUSH BUFFER AND READ STANDARD INPUT - 0x%02x\n", al
);
4326 /* FIXME: buffers are not flushed */
4329 * If AL is one of 0x01, 0x06, 0x07, 0x08, or 0x0a,
4330 * int21 function identified by AL will be called.
4332 if(al
== 0x01 || al
== 0x06 || al
== 0x07 || al
== 0x08 || al
== 0x0a)
4334 SET_AH( context
, al
);
4335 DOSVM_Int21Handler( context
);
4340 case 0x0d: /* DISK BUFFER FLUSH */
4341 TRACE("DISK BUFFER FLUSH ignored\n");
4344 case 0x0e: /* SELECT DEFAULT DRIVE */
4345 TRACE( "SELECT DEFAULT DRIVE - %c:\n", 'A' + DL_reg(context
) );
4346 INT21_SetCurrentDrive( DL_reg(context
) );
4347 SET_AL( context
, MAX_DOS_DRIVES
);
4350 case 0x0f: /* OPEN FILE USING FCB */
4351 INT21_OpenFileUsingFCB( context
);
4354 case 0x10: /* CLOSE FILE USING FCB */
4355 INT21_CloseFileUsingFCB( context
);
4358 case 0x11: /* FIND FIRST MATCHING FILE USING FCB */
4359 TRACE("FIND FIRST MATCHING FILE USING FCB %p\n",
4360 CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
));
4361 if (!INT21_FindFirstFCB(context
))
4363 SET_AL( context
, 0xff );
4366 /* else fall through */
4368 case 0x12: /* FIND NEXT MATCHING FILE USING FCB */
4369 SET_AL( context
, INT21_FindNextFCB(context
) ? 0x00 : 0xff );
4372 case 0x13: /* DELETE FILE USING FCB */
4373 INT_BARF( context
, 0x21 );
4376 case 0x14: /* SEQUENTIAL READ FROM FCB FILE */
4377 INT21_SequentialReadFromFCB( context
);
4380 case 0x15: /* SEQUENTIAL WRITE TO FCB FILE */
4381 INT21_SequentialWriteToFCB( context
);
4384 case 0x16: /* CREATE OR TRUNCATE FILE USING FCB */
4385 case 0x17: /* RENAME FILE USING FCB */
4386 INT_BARF( context
, 0x21 );
4389 case 0x18: /* NULL FUNCTION FOR CP/M COMPATIBILITY */
4390 SET_AL( context
, 0 );
4393 case 0x19: /* GET CURRENT DEFAULT DRIVE */
4394 SET_AL( context
, INT21_GetCurrentDrive() );
4395 TRACE( "GET CURRENT DRIVE -> %c:\n", 'A' + AL_reg( context
) );
4398 case 0x1a: /* SET DISK TRANSFER AREA ADDRESS */
4399 TRACE( "SET DISK TRANSFER AREA ADDRESS %04X:%04X\n",
4400 context
->SegDs
, DX_reg(context
) );
4402 TDB
*task
= GlobalLock16( GetCurrentTask() );
4403 task
->dta
= MAKESEGPTR( context
->SegDs
, DX_reg(context
) );
4407 case 0x1b: /* GET ALLOCATION INFORMATION FOR DEFAULT DRIVE */
4408 if (!INT21_GetDriveAllocInfo(context
, 0))
4409 SET_AX( context
, 0xffff );
4412 case 0x1c: /* GET ALLOCATION INFORMATION FOR SPECIFIC DRIVE */
4413 if (!INT21_GetDriveAllocInfo(context
, DL_reg(context
)))
4414 SET_AX( context
, 0xffff );
4417 case 0x1d: /* NULL FUNCTION FOR CP/M COMPATIBILITY */
4418 case 0x1e: /* NULL FUNCTION FOR CP/M COMPATIBILITY */
4419 SET_AL( context
, 0 );
4422 case 0x1f: /* GET DRIVE PARAMETER BLOCK FOR DEFAULT DRIVE */
4424 BYTE drive
= INT21_MapDrive( 0 );
4425 TRACE( "GET DPB FOR DEFAULT DRIVE\n" );
4427 if (INT21_FillDrivePB( drive
))
4429 SET_AL( context
, 0x00 ); /* success */
4430 SET_BX( context
, offsetof( INT21_HEAP
, misc_dpb_list
[drive
] ) );
4431 context
->SegDs
= INT21_GetHeapSelector( context
);
4435 SET_AL( context
, 0xff ); /* invalid or network drive */
4440 case 0x20: /* NULL FUNCTION FOR CP/M COMPATIBILITY */
4441 SET_AL( context
, 0 );
4444 case 0x21: /* READ RANDOM RECORD FROM FCB FILE */
4445 INT21_ReadRandomRecordFromFCB( context
);
4448 case 0x22: /* WRITE RANDOM RECORD TO FCB FILE */
4449 INT21_WriteRandomRecordToFCB( context
);
4452 case 0x23: /* GET FILE SIZE FOR FCB */
4453 case 0x24: /* SET RANDOM RECORD NUMBER FOR FCB */
4454 INT_BARF( context
, 0x21 );
4457 case 0x25: /* SET INTERRUPT VECTOR */
4458 TRACE("SET INTERRUPT VECTOR 0x%02x\n",AL_reg(context
));
4460 FARPROC16 ptr
= (FARPROC16
)MAKESEGPTR( context
->SegDs
, DX_reg(context
) );
4461 if (!ISV86(context
) && DOSVM_IsWin16())
4462 DOSVM_SetPMHandler16( AL_reg(context
), ptr
);
4464 DOSVM_SetRMHandler( AL_reg(context
), ptr
);
4468 case 0x26: /* CREATE NEW PROGRAM SEGMENT PREFIX */
4469 INT_BARF( context
, 0x21 );
4472 case 0x27: /* RANDOM BLOCK READ FROM FCB FILE */
4473 INT21_RandomBlockReadFromFCB( context
);
4476 case 0x28: /* RANDOM BLOCK WRITE TO FCB FILE */
4477 INT21_RandomBlockWriteToFCB( context
);
4480 case 0x29: /* PARSE FILENAME INTO FCB */
4481 INT21_ParseFileNameIntoFCB(context
);
4484 case 0x2a: /* GET SYSTEM DATE */
4485 TRACE( "GET SYSTEM DATE\n" );
4488 GetLocalTime( &systime
);
4489 SET_CX( context
, systime
.wYear
);
4490 SET_DH( context
, systime
.wMonth
);
4491 SET_DL( context
, systime
.wDay
);
4492 SET_AL( context
, systime
.wDayOfWeek
);
4496 case 0x2b: /* SET SYSTEM DATE */
4497 TRACE( "SET SYSTEM DATE\n" );
4499 WORD year
= CX_reg(context
);
4500 BYTE month
= DH_reg(context
);
4501 BYTE day
= DL_reg(context
);
4503 if (year
>= 1980 && year
<= 2099 &&
4504 month
>= 1 && month
<= 12 &&
4505 day
>= 1 && day
<= 31)
4507 FIXME( "SetSystemDate(%02d/%02d/%04d): not allowed\n",
4509 SET_AL( context
, 0 ); /* Let's pretend we succeeded */
4513 SET_AL( context
, 0xff ); /* invalid date */
4514 TRACE( "SetSystemDate(%02d/%02d/%04d): invalid date\n",
4520 case 0x2c: /* GET SYSTEM TIME */
4521 TRACE( "GET SYSTEM TIME\n" );
4524 GetLocalTime( &systime
);
4525 SET_CH( context
, systime
.wHour
);
4526 SET_CL( context
, systime
.wMinute
);
4527 SET_DH( context
, systime
.wSecond
);
4528 SET_DL( context
, systime
.wMilliseconds
/ 10 );
4532 case 0x2d: /* SET SYSTEM TIME */
4533 if( CH_reg(context
) >= 24 || CL_reg(context
) >= 60 || DH_reg(context
) >= 60 || DL_reg(context
) >= 100 ) {
4534 TRACE("SetSystemTime(%02d:%02d:%02d.%02d): wrong time\n",
4535 CH_reg(context
), CL_reg(context
),
4536 DH_reg(context
), DL_reg(context
) );
4537 SET_AL( context
, 0xFF );
4541 FIXME("SetSystemTime(%02d:%02d:%02d.%02d): not allowed\n",
4542 CH_reg(context
), CL_reg(context
),
4543 DH_reg(context
), DL_reg(context
) );
4544 SET_AL( context
, 0 ); /* Let's pretend we succeeded */
4548 case 0x2e: /* SET VERIFY FLAG */
4549 TRACE("SET VERIFY FLAG ignored\n");
4550 /* we cannot change the behaviour anyway, so just ignore it */
4553 case 0x2f: /* GET DISK TRANSFER AREA ADDRESS */
4554 TRACE( "GET DISK TRANSFER AREA ADDRESS\n" );
4556 TDB
*task
= GlobalLock16( GetCurrentTask() );
4557 context
->SegEs
= SELECTOROF( task
->dta
);
4558 SET_BX( context
, OFFSETOF( task
->dta
) );
4562 case 0x30: /* GET DOS VERSION */
4563 TRACE( "GET DOS VERSION - %s requested\n",
4564 (AL_reg(context
) == 0x00) ? "OEM number" : "version flag" );
4566 if (AL_reg(context
) == 0x00)
4567 SET_BH( context
, 0xff ); /* OEM number => undefined */
4569 SET_BH( context
, 0x08 ); /* version flag => DOS is in ROM */
4571 SET_AL( context
, HIBYTE(HIWORD(GetVersion16())) ); /* major version */
4572 SET_AH( context
, LOBYTE(HIWORD(GetVersion16())) ); /* minor version */
4574 SET_BL( context
, 0x12 ); /* 0x123456 is 24-bit Wine's serial # */
4575 SET_CX( context
, 0x3456 );
4578 case 0x31: /* TERMINATE AND STAY RESIDENT */
4579 FIXME("TERMINATE AND STAY RESIDENT stub\n");
4582 case 0x32: /* GET DOS DRIVE PARAMETER BLOCK FOR SPECIFIC DRIVE */
4584 BYTE drive
= INT21_MapDrive( DL_reg(context
) );
4585 TRACE( "GET DPB FOR SPECIFIC DRIVE %d\n", DL_reg(context
) );
4587 if (INT21_FillDrivePB( drive
))
4589 SET_AL( context
, 0x00 ); /* success */
4590 SET_DX( context
, offsetof( INT21_HEAP
, misc_dpb_list
[drive
] ) );
4591 context
->SegDs
= INT21_GetHeapSelector( context
);
4595 SET_AL( context
, 0xff ); /* invalid or network drive */
4600 case 0x33: /* MULTIPLEXED */
4601 switch (AL_reg(context
))
4603 case 0x00: /* GET CURRENT EXTENDED BREAK STATE */
4604 TRACE("GET CURRENT EXTENDED BREAK STATE\n");
4605 SET_DL( context
, DOSCONF_GetConfig()->brk_flag
);
4608 case 0x01: /* SET EXTENDED BREAK STATE */
4609 TRACE("SET CURRENT EXTENDED BREAK STATE\n");
4610 DOSCONF_GetConfig()->brk_flag
= (DL_reg(context
) > 0) ? 1 : 0;
4613 case 0x02: /* GET AND SET EXTENDED CONTROL-BREAK CHECKING STATE*/
4614 TRACE("GET AND SET EXTENDED CONTROL-BREAK CHECKING STATE\n");
4615 /* ugly coding in order to stay reentrant */
4616 if (DL_reg(context
))
4618 SET_DL( context
, DOSCONF_GetConfig()->brk_flag
);
4619 DOSCONF_GetConfig()->brk_flag
= 1;
4623 SET_DL( context
, DOSCONF_GetConfig()->brk_flag
);
4624 DOSCONF_GetConfig()->brk_flag
= 0;
4628 case 0x05: /* GET BOOT DRIVE */
4629 TRACE("GET BOOT DRIVE\n");
4630 SET_DL( context
, 3 );
4631 /* c: is Wine's bootdrive (a: is 1)*/
4634 case 0x06: /* GET TRUE VERSION NUMBER */
4635 TRACE("GET TRUE VERSION NUMBER\n");
4636 SET_BL( context
, HIBYTE(HIWORD(GetVersion16())) ); /* major */
4637 SET_BH( context
, LOBYTE(HIWORD(GetVersion16())) ); /* minor */
4638 SET_DL( context
, 0x00 ); /* revision */
4639 SET_DH( context
, 0x08 ); /* DOS is in ROM */
4643 INT_BARF( context
, 0x21 );
4648 case 0x34: /* GET ADDRESS OF INDOS FLAG */
4649 TRACE( "GET ADDRESS OF INDOS FLAG\n" );
4650 context
->SegEs
= INT21_GetHeapSelector( context
);
4651 SET_BX( context
, offsetof(INT21_HEAP
, misc_indos
) );
4654 case 0x35: /* GET INTERRUPT VECTOR */
4655 TRACE("GET INTERRUPT VECTOR 0x%02x\n",AL_reg(context
));
4658 if (!ISV86(context
) && DOSVM_IsWin16())
4659 addr
= DOSVM_GetPMHandler16( AL_reg(context
) );
4661 addr
= DOSVM_GetRMHandler( AL_reg(context
) );
4662 context
->SegEs
= SELECTOROF(addr
);
4663 SET_BX( context
, OFFSETOF(addr
) );
4667 case 0x36: /* GET FREE DISK SPACE */
4668 TRACE("GET FREE DISK SPACE FOR DRIVE %s (limited to about 1GB)\n",
4669 INT21_DriveName( DL_reg(context
) ));
4670 if (!INT21_GetFreeDiskSpace(context
)) SET_AX( context
, 0xffff );
4673 case 0x37: /* SWITCHAR */
4675 switch (AL_reg(context
))
4677 case 0x00: /* "SWITCHAR" - GET SWITCH CHARACTER */
4678 TRACE( "SWITCHAR - GET SWITCH CHARACTER\n" );
4679 SET_AL( context
, 0x00 ); /* success*/
4680 SET_DL( context
, '/' );
4682 case 0x01: /*"SWITCHAR" - SET SWITCH CHARACTER*/
4683 FIXME( "SWITCHAR - SET SWITCH CHARACTER: %c\n",
4685 SET_AL( context
, 0x00 ); /* success*/
4688 INT_BARF( context
, 0x21 );
4694 case 0x38: /* GET COUNTRY-SPECIFIC INFORMATION */
4695 TRACE( "GET COUNTRY-SPECIFIC INFORMATION\n" );
4696 if (AL_reg(context
))
4698 WORD country
= AL_reg(context
);
4699 if (country
== 0xff)
4700 country
= BX_reg(context
);
4701 if (country
!= INT21_GetSystemCountryCode()) {
4702 FIXME( "Requested info on non-default country %04x\n", country
);
4707 if(AX_reg(context
) != 2 )
4709 INT21_FillCountryInformation( CTX_SEG_OFF_TO_LIN(context
,
4712 SET_AX( context
, INT21_GetSystemCountryCode() );
4713 SET_BX( context
, INT21_GetSystemCountryCode() );
4714 RESET_CFLAG(context
);
4718 case 0x39: /* "MKDIR" - CREATE SUBDIRECTORY */
4719 if (!INT21_CreateDirectory( context
))
4720 bSetDOSExtendedError
= TRUE
;
4722 RESET_CFLAG(context
);
4725 case 0x3a: /* "RMDIR" - REMOVE DIRECTORY */
4727 WCHAR dirW
[MAX_PATH
];
4728 char *dirA
= CTX_SEG_OFF_TO_LIN(context
,
4729 context
->SegDs
, context
->Edx
);
4731 TRACE( "REMOVE DIRECTORY %s\n", dirA
);
4733 MultiByteToWideChar(CP_OEMCP
, 0, dirA
, -1, dirW
, MAX_PATH
);
4735 if (!RemoveDirectoryW( dirW
))
4736 bSetDOSExtendedError
= TRUE
;
4738 RESET_CFLAG(context
);
4742 case 0x3b: /* "CHDIR" - SET CURRENT DIRECTORY */
4743 if (!INT21_SetCurrentDirectory( context
))
4744 bSetDOSExtendedError
= TRUE
;
4746 RESET_CFLAG(context
);
4749 case 0x3c: /* "CREAT" - CREATE OR TRUNCATE FILE */
4750 if (!INT21_CreateFile( context
, context
->Edx
, FALSE
,
4751 OF_READWRITE
| OF_SHARE_COMPAT
, 0x12 ))
4752 bSetDOSExtendedError
= TRUE
;
4754 RESET_CFLAG(context
);
4757 case 0x3d: /* "OPEN" - OPEN EXISTING FILE */
4758 if (!INT21_CreateFile( context
, context
->Edx
, FALSE
,
4759 AL_reg(context
), 0x01 ))
4760 bSetDOSExtendedError
= TRUE
;
4762 RESET_CFLAG(context
);
4765 case 0x3e: /* "CLOSE" - CLOSE FILE */
4766 TRACE( "CLOSE handle %d\n", BX_reg(context
) );
4767 if (_lclose16( BX_reg(context
) ) == HFILE_ERROR16
)
4768 bSetDOSExtendedError
= TRUE
;
4770 RESET_CFLAG(context
);
4773 case 0x3f: /* "READ" - READ FROM FILE OR DEVICE */
4774 TRACE( "READ from %d to %04X:%04X for %d bytes\n",
4781 WORD count
= CX_reg(context
);
4782 BYTE
*buffer
= CTX_SEG_OFF_TO_LIN( context
,
4786 /* Some programs pass a count larger than the allocated buffer */
4787 if (DOSVM_IsWin16())
4789 DWORD maxcount
= GetSelectorLimit16( context
->SegDs
)
4790 - DX_reg(context
) + 1;
4791 if (count
> maxcount
)
4796 * FIXME: Reading from console (BX=1) in DOS mode
4797 * does not work as it is supposed to work.
4800 RESET_CFLAG(context
); /* set if error */
4801 if (!DOSVM_IsWin16() && BX_reg(context
) == 0)
4803 result
= INT21_BufferedInput( context
, buffer
, count
);
4804 SET_AX( context
, (WORD
)result
);
4806 else if (ReadFile( DosFileHandleToWin32Handle(BX_reg(context
)),
4807 buffer
, count
, &result
, NULL
))
4808 SET_AX( context
, (WORD
)result
);
4810 bSetDOSExtendedError
= TRUE
;
4814 case 0x40: /* "WRITE" - WRITE TO FILE OR DEVICE */
4815 TRACE( "WRITE from %04X:%04X to handle %d for %d byte\n",
4816 context
->SegDs
, DX_reg(context
),
4817 BX_reg(context
), CX_reg(context
) );
4819 char *ptr
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
4821 if (!DOSVM_IsWin16() &&
4822 (BX_reg(context
) == 1 || BX_reg(context
) == 2))
4825 for(i
=0; i
<CX_reg(context
); i
++)
4826 DOSVM_PutChar(ptr
[i
]);
4827 SET_AX(context
, CX_reg(context
));
4828 RESET_CFLAG(context
);
4832 HFILE handle
= (HFILE
)DosFileHandleToWin32Handle(BX_reg(context
));
4833 LONG result
= _hwrite( handle
, ptr
, CX_reg(context
) );
4834 if (result
== HFILE_ERROR
)
4835 bSetDOSExtendedError
= TRUE
;
4838 SET_AX( context
, (WORD
)result
);
4839 RESET_CFLAG(context
);
4845 case 0x41: /* "UNLINK" - DELETE FILE */
4847 WCHAR fileW
[MAX_PATH
];
4848 char *fileA
= CTX_SEG_OFF_TO_LIN(context
,
4852 TRACE( "UNLINK %s\n", fileA
);
4853 MultiByteToWideChar(CP_OEMCP
, 0, fileA
, -1, fileW
, MAX_PATH
);
4855 if (!DeleteFileW( fileW
))
4856 bSetDOSExtendedError
= TRUE
;
4858 RESET_CFLAG(context
);
4862 case 0x42: /* "LSEEK" - SET CURRENT FILE POSITION */
4863 TRACE( "LSEEK handle %d offset %d from %s\n",
4865 MAKELONG( DX_reg(context
), CX_reg(context
) ),
4866 (AL_reg(context
) == 0) ?
4867 "start of file" : ((AL_reg(context
) == 1) ?
4868 "current file position" : "end of file") );
4870 HANDLE handle
= DosFileHandleToWin32Handle(BX_reg(context
));
4871 LONG offset
= MAKELONG( DX_reg(context
), CX_reg(context
) );
4872 DWORD status
= SetFilePointer( handle
, offset
,
4873 NULL
, AL_reg(context
) );
4874 if (status
== INVALID_SET_FILE_POINTER
)
4875 bSetDOSExtendedError
= TRUE
;
4878 SET_AX( context
, LOWORD(status
) );
4879 SET_DX( context
, HIWORD(status
) );
4880 RESET_CFLAG(context
);
4885 case 0x43: /* FILE ATTRIBUTES */
4886 if (!INT21_FileAttributes( context
, AL_reg(context
), FALSE
))
4887 bSetDOSExtendedError
= TRUE
;
4889 RESET_CFLAG(context
);
4892 case 0x44: /* IOCTL */
4893 INT21_Ioctl( context
);
4896 case 0x45: /* "DUP" - DUPLICATE FILE HANDLE */
4897 TRACE( "DUPLICATE FILE HANDLE %d\n", BX_reg(context
) );
4900 HFILE handle16
= HFILE_ERROR
;
4902 if (DuplicateHandle( GetCurrentProcess(),
4903 DosFileHandleToWin32Handle(BX_reg(context
)),
4904 GetCurrentProcess(),
4906 0, TRUE
, DUPLICATE_SAME_ACCESS
))
4907 handle16
= Win32HandleToDosFileHandle(handle32
);
4909 if (handle16
== HFILE_ERROR
)
4910 bSetDOSExtendedError
= TRUE
;
4913 SET_AX( context
, handle16
);
4914 RESET_CFLAG(context
);
4919 case 0x46: /* "DUP2", "FORCEDUP" - FORCE DUPLICATE FILE HANDLE */
4920 TRACE( "FORCEDUP - FORCE DUPLICATE FILE HANDLE %d to %d\n",
4921 BX_reg(context
), CX_reg(context
) );
4922 if (!INT21_Dup2(BX_reg(context
), CX_reg(context
)))
4923 bSetDOSExtendedError
= TRUE
;
4925 RESET_CFLAG(context
);
4928 case 0x47: /* "CWD" - GET CURRENT DIRECTORY */
4929 if (!INT21_GetCurrentDirectory( context
, FALSE
))
4930 bSetDOSExtendedError
= TRUE
;
4932 RESET_CFLAG(context
);
4935 case 0x48: /* ALLOCATE MEMORY */
4936 TRACE( "ALLOCATE MEMORY for %d paragraphs\n", BX_reg(context
) );
4939 DWORD bytes
= (DWORD
)BX_reg(context
) << 4;
4941 if (!ISV86(context
) && DOSVM_IsWin16())
4943 DWORD rv
= GlobalDOSAlloc16( bytes
);
4944 selector
= LOWORD( rv
);
4947 DOSMEM_AllocBlock( bytes
, &selector
);
4951 SET_AX( context
, selector
);
4952 RESET_CFLAG(context
);
4957 SET_AX( context
, 0x0008 ); /* insufficient memory */
4958 SET_BX( context
, DOSMEM_Available() >> 4 );
4963 case 0x49: /* FREE MEMORY */
4964 TRACE( "FREE MEMORY segment %04X\n", context
->SegEs
);
4968 if (!ISV86(context
) && DOSVM_IsWin16())
4970 ok
= !GlobalDOSFree16( context
->SegEs
);
4972 /* If we don't reset ES_reg, we will fail in the relay code */
4977 ok
= DOSMEM_FreeBlock( PTR_REAL_TO_LIN(context
->SegEs
, 0) );
4981 TRACE("FREE MEMORY failed\n");
4983 SET_AX( context
, 0x0009 ); /* memory block address invalid */
4988 case 0x4a: /* RESIZE MEMORY BLOCK */
4989 TRACE( "RESIZE MEMORY segment %04X to %d paragraphs\n",
4990 context
->SegEs
, BX_reg(context
) );
4992 DWORD newsize
= (DWORD
)BX_reg(context
) << 4;
4994 if (!ISV86(context
) && DOSVM_IsWin16())
4996 FIXME( "Resize memory block - unsupported under Win16\n" );
5001 LPVOID address
= (void*)(context
->SegEs
<< 4);
5002 UINT blocksize
= DOSMEM_ResizeBlock( address
, newsize
, FALSE
);
5004 RESET_CFLAG(context
);
5005 if (blocksize
== (UINT
)-1)
5007 SET_CFLAG( context
);
5008 SET_AX( context
, 0x0009 ); /* illegal address */
5010 else if(blocksize
!= newsize
)
5012 SET_CFLAG( context
);
5013 SET_AX( context
, 0x0008 ); /* insufficient memory */
5014 SET_BX( context
, blocksize
>> 4 ); /* new block size */
5020 case 0x4b: /* "EXEC" - LOAD AND/OR EXECUTE PROGRAM */
5022 char *program
= CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
);
5023 BYTE
*paramblk
= CTX_SEG_OFF_TO_LIN(context
, context
->SegEs
, context
->Ebx
);
5025 TRACE( "EXEC %s\n", program
);
5027 RESET_CFLAG(context
);
5028 if (DOSVM_IsWin16())
5030 HINSTANCE16 instance
= WinExec16( program
, SW_NORMAL
);
5033 SET_CFLAG( context
);
5034 SET_AX( context
, instance
);
5039 if (!MZ_Exec( context
, program
, AL_reg(context
), paramblk
))
5040 bSetDOSExtendedError
= TRUE
;
5045 case 0x4c: /* "EXIT" - TERMINATE WITH RETURN CODE */
5046 TRACE( "EXIT with return code %d\n", AL_reg(context
) );
5047 if (DOSVM_IsWin16())
5048 ExitThread( AL_reg(context
) );
5049 else if(ISV86(context
))
5050 MZ_Exit( context
, FALSE
, AL_reg(context
) );
5056 ULONG_PTR rv
= AL_reg(context
);
5057 RaiseException( EXCEPTION_VM86_INTx
, 0, 1, &rv
);
5061 case 0x4d: /* GET RETURN CODE */
5062 TRACE("GET RETURN CODE (ERRORLEVEL)\n");
5063 SET_AX( context
, DOSVM_retval
);
5067 case 0x4e: /* "FINDFIRST" - FIND FIRST MATCHING FILE */
5068 TRACE("FINDFIRST mask 0x%04x spec %s\n",CX_reg(context
),
5069 (LPCSTR
)CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Edx
));
5070 if (!INT21_FindFirst(context
)) break;
5073 case 0x4f: /* "FINDNEXT" - FIND NEXT MATCHING FILE */
5074 TRACE("FINDNEXT\n");
5075 if (!INT21_FindNext(context
))
5077 SetLastError( ERROR_NO_MORE_FILES
);
5078 SET_AX( context
, ERROR_NO_MORE_FILES
);
5081 else SET_AX( context
, 0 ); /* OK */
5084 case 0x50: /* SET CURRENT PROCESS ID (SET PSP ADDRESS) */
5085 TRACE("SET CURRENT PROCESS ID (SET PSP ADDRESS)\n");
5086 DOSVM_psp
= BX_reg(context
);
5089 case 0x51: /* GET PSP ADDRESS */
5090 INT21_GetPSP( context
);
5093 case 0x52: /* "SYSVARS" - GET LIST OF LISTS */
5095 SEGPTR ptr
= DOSDEV_GetLOL( ISV86(context
) || !DOSVM_IsWin16() );
5096 context
->SegEs
= SELECTOROF(ptr
);
5097 SET_BX( context
, OFFSETOF(ptr
) );
5101 case 0x54: /* Get Verify Flag */
5102 TRACE("Get Verify Flag - Not Supported\n");
5103 SET_AL( context
, 0x00 ); /* pretend we can tell. 00h = off 01h = on */
5106 case 0x56: /* "RENAME" - RENAME FILE */
5107 if (!INT21_RenameFile( context
))
5108 bSetDOSExtendedError
= TRUE
;
5110 RESET_CFLAG(context
);
5113 case 0x57: /* FILE DATE AND TIME */
5114 if (!INT21_FileDateTime( context
))
5115 bSetDOSExtendedError
= TRUE
;
5117 RESET_CFLAG(context
);
5120 case 0x58: /* GET OR SET MEMORY ALLOCATION STRATEGY */
5121 switch (AL_reg(context
))
5123 case 0x00: /* GET MEMORY ALLOCATION STRATEGY */
5124 TRACE( "GET MEMORY ALLOCATION STRATEGY\n" );
5125 SET_AX( context
, 0 ); /* low memory first fit */
5128 case 0x01: /* SET ALLOCATION STRATEGY */
5129 TRACE( "SET MEMORY ALLOCATION STRATEGY to %d - ignored\n",
5133 case 0x02: /* GET UMB LINK STATE */
5134 TRACE( "GET UMB LINK STATE\n" );
5135 SET_AL( context
, 0 ); /* UMBs not part of DOS memory chain */
5138 case 0x03: /* SET UMB LINK STATE */
5139 TRACE( "SET UMB LINK STATE to %d - ignored\n",
5144 INT_BARF( context
, 0x21 );
5148 case 0x59: /* GET EXTENDED ERROR INFO */
5149 INT21_GetExtendedError( context
);
5152 case 0x5a: /* CREATE TEMPORARY FILE */
5153 TRACE("CREATE TEMPORARY FILE\n");
5154 bSetDOSExtendedError
= !INT21_CreateTempFile(context
);
5157 case 0x5b: /* CREATE NEW FILE */
5158 if (!INT21_CreateFile( context
, context
->Edx
, FALSE
,
5159 OF_READWRITE
| OF_SHARE_COMPAT
, 0x10 ))
5160 bSetDOSExtendedError
= TRUE
;
5162 RESET_CFLAG(context
);
5165 case 0x5c: /* "FLOCK" - RECORD LOCKING */
5167 DWORD offset
= MAKELONG(DX_reg(context
), CX_reg(context
));
5168 DWORD length
= MAKELONG(DI_reg(context
), SI_reg(context
));
5169 HANDLE handle
= DosFileHandleToWin32Handle(BX_reg(context
));
5171 RESET_CFLAG(context
);
5172 switch (AL_reg(context
))
5174 case 0x00: /* LOCK */
5175 TRACE( "lock handle %d offset %d length %d\n",
5176 BX_reg(context
), offset
, length
);
5177 if (!LockFile( handle
, offset
, 0, length
, 0 ))
5178 bSetDOSExtendedError
= TRUE
;
5181 case 0x01: /* UNLOCK */
5182 TRACE( "unlock handle %d offset %d length %d\n",
5183 BX_reg(context
), offset
, length
);
5184 if (!UnlockFile( handle
, offset
, 0, length
, 0 ))
5185 bSetDOSExtendedError
= TRUE
;
5189 INT_BARF( context
, 0x21 );
5194 case 0x5d: /* NETWORK 5D */
5195 FIXME( "Network function 5D not implemented.\n" );
5196 SetLastError( ER_NoNetwork
);
5197 bSetDOSExtendedError
= TRUE
;
5200 case 0x5e: /* NETWORK 5E */
5201 bSetDOSExtendedError
= INT21_NetworkFunc( context
);
5204 case 0x5f: /* NETWORK 5F */
5205 /* FIXME: supporting this would need to 1:
5206 * - implement per drive current directory (as kernel32 doesn't)
5207 * - assign enabled/disabled flag on a per drive basis
5209 /* network software not installed */
5210 TRACE("NETWORK function AX=%04x not implemented\n",AX_reg(context
));
5211 SetLastError( ER_NoNetwork
);
5212 bSetDOSExtendedError
= TRUE
;
5215 case 0x60: /* "TRUENAME" - CANONICALIZE FILENAME OR PATH */
5217 WCHAR pathW
[MAX_PATH
], res
[MAX_PATH
];
5218 /* FIXME: likely to be broken */
5220 TRACE("TRUENAME %s\n",
5221 (LPCSTR
)CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
,context
->Esi
));
5222 MultiByteToWideChar(CP_OEMCP
, 0, CTX_SEG_OFF_TO_LIN(context
, context
->SegDs
, context
->Esi
), -1, pathW
, MAX_PATH
);
5223 if (!GetFullPathNameW( pathW
, 128, res
, NULL
))
5224 bSetDOSExtendedError
= TRUE
;
5227 SET_AX( context
, 0 );
5228 WideCharToMultiByte(CP_OEMCP
, 0, res
, -1,
5229 CTX_SEG_OFF_TO_LIN(context
, context
->SegEs
, context
->Edi
),
5235 case 0x61: /* UNUSED */
5236 SET_AL( context
, 0 );
5239 case 0x62: /* GET PSP ADDRESS */
5240 INT21_GetPSP( context
);
5243 case 0x63: /* MISC. LANGUAGE SUPPORT */
5244 switch (AL_reg(context
)) {
5245 case 0x00: /* GET DOUBLE BYTE CHARACTER SET LEAD-BYTE TABLE */
5246 TRACE( "GET DOUBLE BYTE CHARACTER SET LEAD-BYTE TABLE\n" );
5247 context
->SegDs
= INT21_GetHeapSelector( context
);
5248 SET_SI( context
, offsetof(INT21_HEAP
, dbcs_table
) );
5249 SET_AL( context
, 0 ); /* success */
5254 case 0x64: /* OS/2 DOS BOX */
5255 INT_BARF( context
, 0x21 );
5259 case 0x65: /* EXTENDED COUNTRY INFORMATION */
5260 INT21_ExtendedCountryInformation( context
);
5263 case 0x66: /* GLOBAL CODE PAGE TABLE */
5264 switch (AL_reg(context
))
5267 TRACE( "GET GLOBAL CODE PAGE TABLE\n" );
5268 SET_BX( context
, GetOEMCP() );
5269 SET_DX( context
, GetOEMCP() );
5272 FIXME( "SET GLOBAL CODE PAGE TABLE, active %d, system %d - ignored\n",
5273 BX_reg(context
), DX_reg(context
) );
5278 case 0x67: /* SET HANDLE COUNT */
5279 TRACE( "SET HANDLE COUNT to %d\n", BX_reg(context
) );
5280 if (SetHandleCount( BX_reg(context
) ) < BX_reg(context
) )
5281 bSetDOSExtendedError
= TRUE
;
5284 case 0x68: /* "FFLUSH" - COMMIT FILE */
5285 TRACE( "FFLUSH - handle %d\n", BX_reg(context
) );
5286 if (!FlushFileBuffers( DosFileHandleToWin32Handle(BX_reg(context
)) ))
5287 bSetDOSExtendedError
= TRUE
;
5290 case 0x69: /* DISK SERIAL NUMBER */
5291 switch (AL_reg(context
))
5294 TRACE("GET DISK SERIAL NUMBER for drive %s\n",
5295 INT21_DriveName(BL_reg(context
)));
5296 if (!INT21_GetDiskSerialNumber(context
)) bSetDOSExtendedError
= TRUE
;
5297 else SET_AX( context
, 0 );
5301 TRACE("SET DISK SERIAL NUMBER for drive %s\n",
5302 INT21_DriveName(BL_reg(context
)));
5303 if (!INT21_SetDiskSerialNumber(context
)) bSetDOSExtendedError
= TRUE
;
5304 else SET_AX( context
, 1 );
5309 case 0x6a: /* COMMIT FILE */
5310 TRACE( "COMMIT FILE - handle %d\n", BX_reg(context
) );
5311 if (!FlushFileBuffers( DosFileHandleToWin32Handle(BX_reg(context
)) ))
5312 bSetDOSExtendedError
= TRUE
;
5315 case 0x6b: /* NULL FUNCTION FOR CP/M COMPATIBILITY */
5316 SET_AL( context
, 0 );
5319 case 0x6c: /* EXTENDED OPEN/CREATE */
5320 if (!INT21_CreateFile( context
, context
->Esi
, TRUE
,
5321 BX_reg(context
), DL_reg(context
) ))
5322 bSetDOSExtendedError
= TRUE
;
5325 case 0x70: /* MSDOS 7 - GET/SET INTERNATIONALIZATION INFORMATION */
5326 FIXME( "MS-DOS 7 - GET/SET INTERNATIONALIZATION INFORMATION\n" );
5327 SET_CFLAG( context
);
5328 SET_AL( context
, 0 );
5331 case 0x71: /* MSDOS 7 - LONG FILENAME FUNCTIONS */
5332 INT21_LongFilename( context
);
5335 case 0x73: /* MSDOS7 - FAT32 */
5336 RESET_CFLAG( context
);
5337 if (!INT21_Fat32( context
))
5338 bSetDOSExtendedError
= TRUE
;
5341 case 0xdc: /* CONNECTION SERVICES - GET CONNECTION NUMBER */
5342 TRACE( "CONNECTION SERVICES - GET CONNECTION NUMBER - ignored\n" );
5345 case 0xea: /* NOVELL NETWARE - RETURN SHELL VERSION */
5346 TRACE( "NOVELL NETWARE - RETURN SHELL VERSION - ignored\n" );
5349 case 0xff: /* DOS32 EXTENDER (DOS/4GW) - API */
5350 /* we don't implement a DOS32 extender */
5351 TRACE( "DOS32 EXTENDER API - ignored\n" );
5355 INT_BARF( context
, 0x21 );
5358 } /* END OF SWITCH */
5360 /* Set general error condition. */
5361 if (bSetDOSExtendedError
)
5363 SET_AX( context
, GetLastError() );
5364 SET_CFLAG( context
);
5367 /* Print error code if carry flag is set. */
5368 if (context
->EFlags
& 0x0001)
5369 TRACE("failed, error %d\n", GetLastError() );
5371 TRACE( "returning: AX=%04x BX=%04x CX=%04x DX=%04x "
5372 "SI=%04x DI=%04x DS=%04x ES=%04x EFL=%08x\n",
5373 AX_reg(context
), BX_reg(context
),
5374 CX_reg(context
), DX_reg(context
),
5375 SI_reg(context
), DI_reg(context
),
5376 (WORD
)context
->SegDs
, (WORD
)context
->SegEs
,