2013-06-26 22:58:41 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: GPL - See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS Virtual DOS Machine
|
2015-09-18 17:01:49 +00:00
|
|
|
* FILE: subsystems/mvdm/ntvdm/dos/dos32krnl/dos.h
|
2014-05-15 23:13:06 +00:00
|
|
|
* PURPOSE: DOS32 Kernel
|
2013-06-26 22:58:41 +00:00
|
|
|
* PROGRAMMERS: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _DOS_H_
|
|
|
|
#define _DOS_H_
|
|
|
|
|
2015-10-04 11:49:28 +00:00
|
|
|
/* INCLUDES *******************************************************************/
|
|
|
|
|
|
|
|
#include "device.h"
|
|
|
|
|
|
|
|
/**/ #include "int32.h" /**/
|
|
|
|
|
2013-06-26 22:58:41 +00:00
|
|
|
/* DEFINES ********************************************************************/
|
|
|
|
|
2013-10-27 22:31:53 +00:00
|
|
|
//
|
2013-12-15 15:35:38 +00:00
|
|
|
// We are DOS 5.00 (reported by INT 21h, AH=30h)
|
|
|
|
// and DOS 5.50 (reported by INT 21h, AX=3306h) for Windows NT Compatibility
|
2013-10-27 22:31:53 +00:00
|
|
|
//
|
2013-12-15 15:35:38 +00:00
|
|
|
#define DOS_VERSION MAKEWORD(5, 00)
|
|
|
|
#define NTDOS_VERSION MAKEWORD(5, 50)
|
2013-10-27 22:31:53 +00:00
|
|
|
|
2013-06-26 22:58:41 +00:00
|
|
|
#define DOS_CONFIG_PATH L"%SystemRoot%\\system32\\CONFIG.NT"
|
|
|
|
#define DOS_COMMAND_INTERPRETER L"%SystemRoot%\\system32\\COMMAND.COM /k %SystemRoot%\\system32\\AUTOEXEC.NT"
|
2015-07-18 19:45:37 +00:00
|
|
|
|
2015-08-01 12:41:22 +00:00
|
|
|
#define BIOS_CODE_SEGMENT 0x70
|
|
|
|
#define BIOS_DATA_SEGMENT 0x70
|
|
|
|
#define DOS_CODE_SEGMENT 0x80
|
|
|
|
#define DOS_DATA_SEGMENT 0xA5
|
2015-05-11 02:54:46 +00:00
|
|
|
|
|
|
|
#define DOS_DATA_OFFSET(x) FIELD_OFFSET(DOS_DATA, x)
|
2014-05-11 19:25:09 +00:00
|
|
|
|
[NTVDM]
EMS:
- Introduce (and use) helpers for checking validity of EMS handles.
- Do not hardcode the EMS page frame segment, but instead allow it to be changed (for now, it is still set to a default value; in the future, via some configuration file or via the registry). This is done by acquiring a UMB block (see after).
XMS:
- Implement functions 0x01 "Request HMA" and 0x02 "Release HMA".
- Fix the return value of functions 0x04 "Global disable A20" and 0x08 "Query free Extended Memory"; simplify code of function 0x0B "Move EMB".
- Halfplement function 0x0F "Reallocate Extended Memory Block" in the simple case of size reduction (size expansion is left to the programmer as an exercise :PP )
- Rewrite the UMB provider support (functions 0x10, 0x11, 0x12) by calling the Upper Memory Area manager helpers (see after) (this is closer to reality: UMBs are either provided by XMS driver itself, or by an EMS driver which hooks into the XMS driver chain -- as it is done with MS' himem+EMM386; sometimes all that stuff is contained inside one driver only --) instead of calling back into DOS. This is the DOS which calls XMS for getting the UMB blocks and initializing them! (and not the other way around as it was done in r68001!).
NTVDM:
- Introduce an "Upper Memory Area manager" which maintains a list of areas of upper memory (>= A000:0000 and <= FFFF:000F) that can be used as RAM blocks. It is intended to work closely with the NTVDM memory manager and be used by XMS for getting possible free UMBs, and by VDDs for implementing the VDDInclude/ExcludeMem APIs (which adds/remove blocks in/from the UMB pool; those are unaccessible to DOS if those APIs are called after NTVDM have been started, but are accessible by XMS).
DOS:
- Add a helper function for detecting early DOS arena corruptions (for debugging purposes only).
- Make the DOS memory manager really UMB-compatible. This means:
* not hardcoding the start of the UMB chain;
* getting all the available UMB blocks from XMS and initializing them, marking the reserved blocks as read-only (with a correct header; reserved blocks are eg. VGA memory area, ROM blocks...).
There is room for improvements obviously (see the FIXMEs in the code). Used documentation is mentioned in comments in the code.
This commit should fix quite some apps, as well as it fixes corruptions of loaded ROMs in upper memory: that's how I came into working on fixing the UMB support. In other words, during those two last weeks, I was like in: http://i.imgur.com/zoWpqEB.gifv
CORE-9969 #resolve
svn path=/trunk/; revision=68586
2015-08-01 17:07:07 +00:00
|
|
|
#define SYSTEM_ENV_BLOCK 0x600 // FIXME: Should be dynamically initialized!
|
2015-08-01 12:41:22 +00:00
|
|
|
|
|
|
|
#define SYSTEM_PSP 0x0008
|
|
|
|
|
2014-05-11 19:25:09 +00:00
|
|
|
#define INVALID_DOS_HANDLE 0xFFFF
|
|
|
|
#define DOS_INPUT_HANDLE 0
|
|
|
|
#define DOS_OUTPUT_HANDLE 1
|
|
|
|
#define DOS_ERROR_HANDLE 2
|
|
|
|
|
2015-08-01 12:41:22 +00:00
|
|
|
#define DOS_SFT_SIZE 255 // Value of the 'FILES=' command; maximum 255
|
|
|
|
#define DOS_DIR_LENGTH 64
|
|
|
|
#define NUM_DRIVES ('Z' - 'A' + 1)
|
|
|
|
#define DOS_CHAR_ATTRIBUTE 0x07
|
2013-06-26 22:58:41 +00:00
|
|
|
|
2015-03-26 00:21:25 +00:00
|
|
|
#pragma pack(push, 1)
|
2013-06-26 22:58:41 +00:00
|
|
|
|
|
|
|
typedef struct _DOS_FCB
|
|
|
|
{
|
|
|
|
BYTE DriveNumber;
|
|
|
|
CHAR FileName[8];
|
|
|
|
CHAR FileExt[3];
|
|
|
|
WORD BlockNumber;
|
|
|
|
WORD RecordSize;
|
|
|
|
DWORD FileSize;
|
|
|
|
WORD LastWriteDate;
|
|
|
|
WORD LastWriteTime;
|
|
|
|
BYTE Reserved[8];
|
|
|
|
BYTE BlockRecord;
|
|
|
|
BYTE RecordNumber[3];
|
|
|
|
} DOS_FCB, *PDOS_FCB;
|
|
|
|
|
[NTVDM]
- Add support for DOS VDM reentry, i.e. the fact that a DOS app can start a 32-bit app, which in turn can start another DOS app, ad infinitum...
CORE-9711 CORE-9773 #resolve
- Add a small COMMAND.COM which is, for now, completely included in NTVDM. This COMMAND.COM is needed in order to support reentrancy. The fact that I chose to put it inside NTVDM is that any user can use instead his/her own COMMAND.COM, while retaining the possibility to perform VDM reentrancy (on Windows, if you remove the COMMAND.COM in windows\system32 and replace it with your own, you will break VDM reentrancy on windows' ntvdm).
CORE-5221 #resolve #comment I choose for the moment an internal COMMAND.COM, but you can recompile NTVDM to use it externally instead.
Global remarks:
- Quite a few DPRINTs were added for diagnostic purposes (since DOS reentrancy is a new feature), to be sure everything behaves as expected when being used with a large panel of applications. They will be removed when everything is OK.
- Support for current directories and 16/32-bit environment translation (in ntvdm + basevdm-side) remain to be implemented.
Other changes:
- Improve a bit the VDM shutdown code by gathering it at one place (there's still room for other improvements).
- Add suppport for properly pausing/resuming NTVDM.
- Bufferize some console events before dispatching.
Have fun ;^)
svn path=/trunk/; revision=69204
2015-09-12 20:09:25 +00:00
|
|
|
// http://www.ctyme.com/intr/rb-2983.htm
|
2015-04-26 18:09:57 +00:00
|
|
|
typedef struct _DOS_SYSVARS
|
|
|
|
{
|
|
|
|
DWORD OemHandler;
|
|
|
|
WORD Int21hReturn;
|
|
|
|
WORD ShareRetryCount;
|
|
|
|
WORD ShareRetryDelay;
|
|
|
|
DWORD DiskBuffer;
|
|
|
|
WORD UnreadConInput;
|
|
|
|
WORD FirstMcb;
|
|
|
|
|
|
|
|
/* This is where the SYSVARS really start */
|
2015-07-13 01:21:46 +00:00
|
|
|
DWORD FirstDpb; // 0x00
|
|
|
|
DWORD FirstSft; // 0x04
|
|
|
|
DWORD ActiveClock; // 0x08
|
|
|
|
DWORD ActiveCon; // 0x0c
|
|
|
|
BYTE Reserved0[6]; // 0x10
|
|
|
|
DWORD CurrentDirs; // 0x16
|
|
|
|
BYTE Reserved1[6]; // 0x1a
|
|
|
|
BYTE NumBlockDevices; // 0x20
|
|
|
|
BYTE NumLocalDrives; // 0x21 - Set by LASTDRIVE
|
|
|
|
DOS_DRIVER NullDevice; // 0x22
|
|
|
|
BYTE Reserved2; // 0x34
|
|
|
|
WORD ProgramVersionTable; // 0x35
|
|
|
|
DWORD SetVerTable; // 0x37
|
|
|
|
WORD Reserved3[2]; // 0x3b
|
|
|
|
WORD BuffersNumber; // 0x3f - 'x' parameter in "BUFFERS=x,y" command
|
|
|
|
WORD BuffersLookaheadNumber; // 0x41 - 'y' parameter in "BUFFERS=x,y" command
|
|
|
|
BYTE BootDrive; // 0x43
|
|
|
|
BYTE UseDwordMoves; // 0x44
|
|
|
|
WORD ExtMemSize; // 0x45
|
2015-07-18 19:45:37 +00:00
|
|
|
BYTE Reserved4[0x1C]; // 0x47
|
[NTVDM]
EMS:
- Introduce (and use) helpers for checking validity of EMS handles.
- Do not hardcode the EMS page frame segment, but instead allow it to be changed (for now, it is still set to a default value; in the future, via some configuration file or via the registry). This is done by acquiring a UMB block (see after).
XMS:
- Implement functions 0x01 "Request HMA" and 0x02 "Release HMA".
- Fix the return value of functions 0x04 "Global disable A20" and 0x08 "Query free Extended Memory"; simplify code of function 0x0B "Move EMB".
- Halfplement function 0x0F "Reallocate Extended Memory Block" in the simple case of size reduction (size expansion is left to the programmer as an exercise :PP )
- Rewrite the UMB provider support (functions 0x10, 0x11, 0x12) by calling the Upper Memory Area manager helpers (see after) (this is closer to reality: UMBs are either provided by XMS driver itself, or by an EMS driver which hooks into the XMS driver chain -- as it is done with MS' himem+EMM386; sometimes all that stuff is contained inside one driver only --) instead of calling back into DOS. This is the DOS which calls XMS for getting the UMB blocks and initializing them! (and not the other way around as it was done in r68001!).
NTVDM:
- Introduce an "Upper Memory Area manager" which maintains a list of areas of upper memory (>= A000:0000 and <= FFFF:000F) that can be used as RAM blocks. It is intended to work closely with the NTVDM memory manager and be used by XMS for getting possible free UMBs, and by VDDs for implementing the VDDInclude/ExcludeMem APIs (which adds/remove blocks in/from the UMB pool; those are unaccessible to DOS if those APIs are called after NTVDM have been started, but are accessible by XMS).
DOS:
- Add a helper function for detecting early DOS arena corruptions (for debugging purposes only).
- Make the DOS memory manager really UMB-compatible. This means:
* not hardcoding the start of the UMB chain;
* getting all the available UMB blocks from XMS and initializing them, marking the reserved blocks as read-only (with a correct header; reserved blocks are eg. VGA memory area, ROM blocks...).
There is room for improvements obviously (see the FIXMEs in the code). Used documentation is mentioned in comments in the code.
This commit should fix quite some apps, as well as it fixes corruptions of loaded ROMs in upper memory: that's how I came into working on fixing the UMB support. In other words, during those two last weeks, I was like in: http://i.imgur.com/zoWpqEB.gifv
CORE-9969 #resolve
svn path=/trunk/; revision=68586
2015-08-01 17:07:07 +00:00
|
|
|
BYTE UmbLinked; // 0x63 - 0/1: UMB chain (un)linked to MCB chain
|
2015-07-18 19:45:37 +00:00
|
|
|
WORD Reserved5; // 0x64
|
[NTVDM]
EMS:
- Introduce (and use) helpers for checking validity of EMS handles.
- Do not hardcode the EMS page frame segment, but instead allow it to be changed (for now, it is still set to a default value; in the future, via some configuration file or via the registry). This is done by acquiring a UMB block (see after).
XMS:
- Implement functions 0x01 "Request HMA" and 0x02 "Release HMA".
- Fix the return value of functions 0x04 "Global disable A20" and 0x08 "Query free Extended Memory"; simplify code of function 0x0B "Move EMB".
- Halfplement function 0x0F "Reallocate Extended Memory Block" in the simple case of size reduction (size expansion is left to the programmer as an exercise :PP )
- Rewrite the UMB provider support (functions 0x10, 0x11, 0x12) by calling the Upper Memory Area manager helpers (see after) (this is closer to reality: UMBs are either provided by XMS driver itself, or by an EMS driver which hooks into the XMS driver chain -- as it is done with MS' himem+EMM386; sometimes all that stuff is contained inside one driver only --) instead of calling back into DOS. This is the DOS which calls XMS for getting the UMB blocks and initializing them! (and not the other way around as it was done in r68001!).
NTVDM:
- Introduce an "Upper Memory Area manager" which maintains a list of areas of upper memory (>= A000:0000 and <= FFFF:000F) that can be used as RAM blocks. It is intended to work closely with the NTVDM memory manager and be used by XMS for getting possible free UMBs, and by VDDs for implementing the VDDInclude/ExcludeMem APIs (which adds/remove blocks in/from the UMB pool; those are unaccessible to DOS if those APIs are called after NTVDM have been started, but are accessible by XMS).
DOS:
- Add a helper function for detecting early DOS arena corruptions (for debugging purposes only).
- Make the DOS memory manager really UMB-compatible. This means:
* not hardcoding the start of the UMB chain;
* getting all the available UMB blocks from XMS and initializing them, marking the reserved blocks as read-only (with a correct header; reserved blocks are eg. VGA memory area, ROM blocks...).
There is room for improvements obviously (see the FIXMEs in the code). Used documentation is mentioned in comments in the code.
This commit should fix quite some apps, as well as it fixes corruptions of loaded ROMs in upper memory: that's how I came into working on fixing the UMB support. In other words, during those two last weeks, I was like in: http://i.imgur.com/zoWpqEB.gifv
CORE-9969 #resolve
svn path=/trunk/; revision=68586
2015-08-01 17:07:07 +00:00
|
|
|
WORD UmbChainStart; // 0x66 - Segment of the first UMB MCB
|
2015-07-18 19:45:37 +00:00
|
|
|
WORD MemAllocScanStart; // 0x68 - Segment where allocation scan starts
|
2015-04-26 18:09:57 +00:00
|
|
|
} DOS_SYSVARS, *PDOS_SYSVARS;
|
|
|
|
|
2015-05-11 02:54:46 +00:00
|
|
|
typedef struct _DOS_CLOCK_TRANSFER_RECORD
|
|
|
|
{
|
|
|
|
WORD NumberOfDays;
|
|
|
|
BYTE Minutes;
|
|
|
|
BYTE Hours;
|
|
|
|
BYTE Hundredths;
|
|
|
|
BYTE Seconds;
|
|
|
|
} DOS_CLOCK_TRANSFER_RECORD, *PDOS_CLOCK_TRANSFER_RECORD;
|
|
|
|
|
2013-06-26 22:58:41 +00:00
|
|
|
typedef struct _DOS_INPUT_BUFFER
|
|
|
|
{
|
[NTVDM]: DOS:
- The DosErrorLevel is stored as a WORD: its LOWORD is the return code and the HIWORD is the termination code.
- When copying CurrentDirectories[...], be sure that we copy maximum DOS_DIR_LENGTH chars.
- Implement (or stubplement) bunch of INT 21h functions: 0x03, 0x04, 0x05, 0x0C, 0x0D, 0x26, 0x37, 0x47, 0x4D and 0x50. Functions 0x18, 0x1D, 0x1E and 0x20 are NULL functions present in DOS for CP/M compatibility only.
- Fix DOS version querying.
- Use set/getAX() instead of EmulatorSet/GetRegister, and use setCF instead of EmulatorSetFlag.
svn path=/branches/ntvdm/; revision=60790
2013-10-29 01:55:54 +00:00
|
|
|
BYTE MaxLength;
|
|
|
|
BYTE Length;
|
2013-06-26 22:58:41 +00:00
|
|
|
CHAR Buffer[ANYSIZE_ARRAY];
|
|
|
|
} DOS_INPUT_BUFFER, *PDOS_INPUT_BUFFER;
|
|
|
|
|
2021-12-03 21:20:21 +00:00
|
|
|
/**
|
|
|
|
* @struct DOS_FIND_FILE_BLOCK
|
|
|
|
* Data block returned in the DTA (Disk Transfer Area) by the
|
|
|
|
* INT 21h, AH=4Eh "Find First File" and the INT 21h, AH=4Fh "Find Next File"
|
|
|
|
* functions.
|
|
|
|
*
|
|
|
|
* @see demFileFindFirst(), demFileFindNext()
|
|
|
|
**/
|
2014-01-26 21:51:27 +00:00
|
|
|
typedef struct _DOS_FIND_FILE_BLOCK
|
|
|
|
{
|
2021-12-03 21:20:21 +00:00
|
|
|
/* The 21 first bytes (0x00 to 0x14 included) are reserved */
|
2014-01-26 21:51:27 +00:00
|
|
|
CHAR DriveLetter;
|
|
|
|
CHAR Pattern[11];
|
|
|
|
UCHAR AttribMask;
|
2021-12-03 21:20:21 +00:00
|
|
|
DWORD Unused; // FIXME: We must NOT store a Win32 handle here!
|
|
|
|
HANDLE SearchHandle; // Instead we should use an ID and helpers to map it to Win32.
|
2014-01-26 21:51:27 +00:00
|
|
|
|
|
|
|
/* The following part of the structure is documented */
|
|
|
|
UCHAR Attributes;
|
|
|
|
WORD FileTime;
|
|
|
|
WORD FileDate;
|
|
|
|
DWORD FileSize;
|
2021-12-03 21:20:21 +00:00
|
|
|
_Null_terminated_ CHAR FileName[13];
|
2014-01-26 21:51:27 +00:00
|
|
|
} DOS_FIND_FILE_BLOCK, *PDOS_FIND_FILE_BLOCK;
|
|
|
|
|
[NTVDM]
- Add support for DOS VDM reentry, i.e. the fact that a DOS app can start a 32-bit app, which in turn can start another DOS app, ad infinitum...
CORE-9711 CORE-9773 #resolve
- Add a small COMMAND.COM which is, for now, completely included in NTVDM. This COMMAND.COM is needed in order to support reentrancy. The fact that I chose to put it inside NTVDM is that any user can use instead his/her own COMMAND.COM, while retaining the possibility to perform VDM reentrancy (on Windows, if you remove the COMMAND.COM in windows\system32 and replace it with your own, you will break VDM reentrancy on windows' ntvdm).
CORE-5221 #resolve #comment I choose for the moment an internal COMMAND.COM, but you can recompile NTVDM to use it externally instead.
Global remarks:
- Quite a few DPRINTs were added for diagnostic purposes (since DOS reentrancy is a new feature), to be sure everything behaves as expected when being used with a large panel of applications. They will be removed when everything is OK.
- Support for current directories and 16/32-bit environment translation (in ntvdm + basevdm-side) remain to be implemented.
Other changes:
- Improve a bit the VDM shutdown code by gathering it at one place (there's still room for other improvements).
- Add suppport for properly pausing/resuming NTVDM.
- Bufferize some console events before dispatching.
Have fun ;^)
svn path=/trunk/; revision=69204
2015-09-12 20:09:25 +00:00
|
|
|
// http://www.ctyme.com/intr/rb-3023.htm
|
2015-05-11 02:54:46 +00:00
|
|
|
typedef struct _DOS_SDA
|
|
|
|
{
|
|
|
|
BYTE PrinterEchoFlag;
|
|
|
|
CHAR CurrentSwitchChar;
|
|
|
|
BYTE AllocStrategy;
|
|
|
|
BYTE Unused0[28];
|
|
|
|
|
|
|
|
/* This is where the SDA really starts */
|
|
|
|
BYTE ErrorMode;
|
|
|
|
BYTE InDos;
|
|
|
|
BYTE ErrorDrive;
|
|
|
|
BYTE LastErrorLocus;
|
|
|
|
WORD LastErrorCode;
|
|
|
|
BYTE LastErrorAction;
|
|
|
|
BYTE LastErrorClass;
|
|
|
|
DWORD LastErrorPointer;
|
|
|
|
DWORD DiskTransferArea;
|
|
|
|
WORD CurrentPsp;
|
|
|
|
WORD Int23StackPointer;
|
|
|
|
WORD ErrorLevel;
|
|
|
|
BYTE CurrentDrive;
|
|
|
|
BYTE ExtendedBreakFlag;
|
|
|
|
|
|
|
|
/* This part is only valid while in DOS */
|
|
|
|
WORD LastAX;
|
|
|
|
WORD NetworkPsp;
|
|
|
|
WORD NetworkMachineNumber;
|
|
|
|
WORD FirstFreeMcb;
|
|
|
|
WORD BestFreeMcb;
|
|
|
|
WORD LastFreeMcb;
|
|
|
|
WORD MemorySize;
|
|
|
|
WORD LastSearchDirEntry;
|
|
|
|
BYTE Int24FailFlag;
|
|
|
|
BYTE DirectoryFlag;
|
|
|
|
BYTE CtrlBreakFlag;
|
|
|
|
BYTE AllowFcbBlanks;
|
|
|
|
BYTE Unused1;
|
|
|
|
BYTE DayOfMonth;
|
|
|
|
BYTE Month;
|
|
|
|
WORD Year;
|
|
|
|
WORD NumDays;
|
|
|
|
BYTE DayOfWeek;
|
|
|
|
BYTE ConsoleSwappedFlag;
|
|
|
|
BYTE Int28CallOk;
|
|
|
|
BYTE Int24AbortFlag;
|
2015-05-11 03:36:02 +00:00
|
|
|
DOS_RW_REQUEST Request;
|
2015-05-11 02:54:46 +00:00
|
|
|
DWORD DriverEntryPoint;
|
2015-05-11 03:36:02 +00:00
|
|
|
BYTE Unused2[44];
|
2015-05-11 02:54:46 +00:00
|
|
|
BYTE PspCopyType;
|
|
|
|
BYTE Unused3;
|
|
|
|
BYTE UserNumber[3];
|
|
|
|
BYTE OemNumber;
|
|
|
|
WORD ErrorCodeTable;
|
|
|
|
DOS_CLOCK_TRANSFER_RECORD ClockTransferRecord;
|
|
|
|
BYTE ByteBuffer;
|
|
|
|
BYTE Unused4;
|
|
|
|
CHAR FileNameBuffer[256];
|
|
|
|
BYTE Unused5[53];
|
|
|
|
CHAR CurrentDirectory[81];
|
|
|
|
CHAR FcbFilename[12];
|
|
|
|
CHAR FcbRenameDest[12];
|
|
|
|
BYTE Unused6[8];
|
|
|
|
BYTE ExtendedAttribute;
|
|
|
|
BYTE FcbType;
|
|
|
|
BYTE DirSearchAttributes;
|
|
|
|
BYTE FileOpenMode;
|
|
|
|
BYTE FileFound;
|
|
|
|
BYTE DeviceNameFound;
|
|
|
|
BYTE SpliceFlag;
|
|
|
|
BYTE DosCallFlag;
|
|
|
|
BYTE Unused7[5];
|
|
|
|
BYTE InsertMode;
|
|
|
|
BYTE ParsedFcbExists;
|
|
|
|
BYTE VolumeIDFlag;
|
|
|
|
BYTE TerminationType;
|
|
|
|
BYTE CreateFileFlag;
|
|
|
|
BYTE FileDeletedChar;
|
|
|
|
DWORD CriticalErrorDpb;
|
|
|
|
DWORD UserRegistersStack;
|
|
|
|
WORD Int24StackPointer;
|
|
|
|
BYTE Unused8[14];
|
|
|
|
DWORD DeviceHeader;
|
|
|
|
DWORD CurrentSft;
|
|
|
|
DWORD CurrentDirPointer;
|
|
|
|
DWORD CallerFcb;
|
|
|
|
WORD SftNumber;
|
|
|
|
WORD TempFileHandle;
|
|
|
|
DWORD JftEntry;
|
|
|
|
WORD FirstArgument;
|
|
|
|
WORD SecondArgument;
|
|
|
|
WORD LastComponent;
|
|
|
|
WORD TransferOffset;
|
|
|
|
BYTE Unused9[38];
|
|
|
|
DWORD WorkingSft;
|
|
|
|
WORD Int21CallerBX;
|
|
|
|
WORD Int21CallerDS;
|
|
|
|
WORD Unused10;
|
|
|
|
DWORD PrevCallFrame;
|
|
|
|
} DOS_SDA, *PDOS_SDA;
|
|
|
|
|
2015-08-01 12:41:22 +00:00
|
|
|
/*
|
|
|
|
* DOS kernel data structure
|
|
|
|
*/
|
2015-05-11 02:54:46 +00:00
|
|
|
typedef struct _DOS_DATA
|
|
|
|
{
|
2015-08-01 12:41:22 +00:00
|
|
|
DOS_SYSVARS SysVars;
|
|
|
|
BYTE NullDriverRoutine[7];
|
|
|
|
WORD DosVersion; // DOS version to report to programs (can be different from the true one)
|
|
|
|
DOS_SDA Sda;
|
|
|
|
CHAR CurrentDirectories[NUM_DRIVES][DOS_DIR_LENGTH];
|
2015-09-25 22:00:57 +00:00
|
|
|
BYTE UnreadConInputBuffer[128];
|
2015-08-01 12:41:22 +00:00
|
|
|
BYTE DosStack[384];
|
|
|
|
BYTE Sft[ANYSIZE_ARRAY];
|
|
|
|
} DOS_DATA, *PDOS_DATA;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DOS BIOS data structure at segment 70h
|
|
|
|
*/
|
|
|
|
typedef struct _BIOS_DATA
|
|
|
|
{
|
|
|
|
BYTE StartupCode[20]; // 0x00 - 20 bytes: large enough for now!
|
|
|
|
|
2015-07-18 19:45:37 +00:00
|
|
|
/*
|
|
|
|
* INT 13h (BIOS Disk Services) handler chain support.
|
|
|
|
*
|
|
|
|
* RomBiosInt13: The original INT 13h vector (normally from ROM BIOS).
|
|
|
|
* PrevInt13 : The previous INT 13h vector in the handler chain (initially
|
|
|
|
* initialized with the RomBiosInt13 value; each time some
|
|
|
|
* program calls INT 2Fh, AH=13h, PrevInt13 is updated).
|
|
|
|
*
|
|
|
|
* DOS hooks INT 13h with its own code, then (in normal circumstances) calls
|
|
|
|
* PrevInt13, so that when a program calls INT 13h, the DOS hook is first called,
|
|
|
|
* followed by the previous INT 13h (be it the original or some other hooked one).
|
|
|
|
* DOS may call PrevInt13 directly in some internal operations too.
|
|
|
|
* RomBiosInt13 is intended to be the original INT 13h vector that existed
|
|
|
|
* before DOS was loaded. A particular version of PC-AT's IBM's ROM BIOS
|
|
|
|
* (on systems with model byte FCh and BIOS date "01/10/84" only, see
|
|
|
|
* http://www.ctyme.com/intr/rb-4453.htm for more details) had a bug on disk
|
|
|
|
* reads so that it was patched by DOS, and therefore PrevInt13 was the fixed
|
|
|
|
* INT 13 interrupt (for the other cases, a direct call to RomBiosInt13 is done).
|
|
|
|
*
|
|
|
|
* NOTE: For compatibility with some programs (including virii), PrevInt13 should
|
|
|
|
* be at 0070:00B4, see for more details:
|
2025-01-28 04:36:45 +00:00
|
|
|
* http://repo.hackerzvoice.net/depot_madchat/vxdevl/vdat/tuvd0001.htm (DEAD_LINK)
|
|
|
|
* https://web.archive.org/web/20150407182047/http://vxheaven.org/lib/vsm01.html
|
2015-07-18 19:45:37 +00:00
|
|
|
*/
|
2015-08-01 12:41:22 +00:00
|
|
|
BYTE Padding0[0xB0 - /*FIELD_OFFSET(BIOS_DATA, StartupCode)*/ 20];
|
|
|
|
DWORD RomBiosInt13; // 0xb0
|
|
|
|
DWORD PrevInt13; // 0xb4
|
|
|
|
BYTE Padding1[0x100 - 0xB8]; // 0xb8
|
|
|
|
} BIOS_DATA, *PBIOS_DATA;
|
2015-07-18 19:45:37 +00:00
|
|
|
|
2015-08-01 12:41:22 +00:00
|
|
|
C_ASSERT(sizeof(BIOS_DATA) == 0x100);
|
2015-05-11 02:54:46 +00:00
|
|
|
|
2013-06-26 22:58:41 +00:00
|
|
|
#pragma pack(pop)
|
|
|
|
|
2015-03-26 00:21:25 +00:00
|
|
|
/* VARIABLES ******************************************************************/
|
|
|
|
|
2015-08-01 12:41:22 +00:00
|
|
|
extern PBIOS_DATA BiosData;
|
2015-07-13 01:21:46 +00:00
|
|
|
extern PDOS_DATA DosData;
|
2015-04-26 18:09:57 +00:00
|
|
|
extern PDOS_SYSVARS SysVars;
|
2015-05-11 02:54:46 +00:00
|
|
|
extern PDOS_SDA Sda;
|
2014-05-14 18:50:29 +00:00
|
|
|
|
2013-06-26 22:58:41 +00:00
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
|
2014-02-23 16:09:35 +00:00
|
|
|
extern CALLBACK16 DosContext;
|
2015-08-01 12:41:22 +00:00
|
|
|
#define RegisterDosInt32(IntNumber, IntHandler) \
|
2014-02-23 16:09:35 +00:00
|
|
|
do { \
|
2015-08-01 12:41:22 +00:00
|
|
|
ASSERT((0x20 <= IntNumber) && (IntNumber <= 0x2F)); \
|
|
|
|
RegisterInt32(DosContext.TrampolineFarPtr + \
|
|
|
|
DosContext.TrampolineSize + \
|
|
|
|
(IntNumber - 0x20) * Int16To32StubSize, \
|
|
|
|
(IntNumber), (IntHandler), NULL); \
|
2014-02-23 16:09:35 +00:00
|
|
|
} while(0);
|
|
|
|
|
[NTVDM]
- Add support for DOS VDM reentry, i.e. the fact that a DOS app can start a 32-bit app, which in turn can start another DOS app, ad infinitum...
CORE-9711 CORE-9773 #resolve
- Add a small COMMAND.COM which is, for now, completely included in NTVDM. This COMMAND.COM is needed in order to support reentrancy. The fact that I chose to put it inside NTVDM is that any user can use instead his/her own COMMAND.COM, while retaining the possibility to perform VDM reentrancy (on Windows, if you remove the COMMAND.COM in windows\system32 and replace it with your own, you will break VDM reentrancy on windows' ntvdm).
CORE-5221 #resolve #comment I choose for the moment an internal COMMAND.COM, but you can recompile NTVDM to use it externally instead.
Global remarks:
- Quite a few DPRINTs were added for diagnostic purposes (since DOS reentrancy is a new feature), to be sure everything behaves as expected when being used with a large panel of applications. They will be removed when everything is OK.
- Support for current directories and 16/32-bit environment translation (in ntvdm + basevdm-side) remain to be implemented.
Other changes:
- Improve a bit the VDM shutdown code by gathering it at one place (there's still room for other improvements).
- Add suppport for properly pausing/resuming NTVDM.
- Bufferize some console events before dispatching.
Have fun ;^)
svn path=/trunk/; revision=69204
2015-09-12 20:09:25 +00:00
|
|
|
VOID ConDrvInitialize(VOID);
|
|
|
|
VOID ConDrvCleanup(VOID);
|
|
|
|
|
2014-01-26 21:51:27 +00:00
|
|
|
/*
|
|
|
|
* DOS BIOS Functions
|
|
|
|
* See bios.c
|
|
|
|
*/
|
2015-09-26 00:05:10 +00:00
|
|
|
CHAR DosReadCharacter(WORD FileHandle, BOOLEAN Echo);
|
2014-01-26 21:51:27 +00:00
|
|
|
BOOLEAN DosCheckInput(VOID);
|
2014-05-11 19:25:09 +00:00
|
|
|
VOID DosPrintCharacter(WORD FileHandle, CHAR Character);
|
2014-01-26 21:51:27 +00:00
|
|
|
|
|
|
|
BOOLEAN DosBIOSInitialize(VOID);
|
|
|
|
|
2015-09-25 22:00:57 +00:00
|
|
|
BOOLEAN DosControlBreak(VOID);
|
|
|
|
VOID DosEchoCharacter(CHAR Character);
|
|
|
|
|
2014-01-26 21:51:27 +00:00
|
|
|
/*
|
|
|
|
* DOS Kernel Functions
|
|
|
|
* See dos.c
|
|
|
|
*/
|
|
|
|
BOOLEAN DosKRNLInitialize(VOID);
|
2013-06-26 22:58:41 +00:00
|
|
|
|
2015-10-04 11:49:28 +00:00
|
|
|
#endif // _DOS_H_
|
|
|
|
|
|
|
|
/* EOF */
|