mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-22 15:31:50 +00:00
305 lines
7.4 KiB
C++
305 lines
7.4 KiB
C++
/*
|
|
* Copyright (c) 2013, Kelvin W Sherlock
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
* list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
*/
|
|
|
|
#include <cerrno>
|
|
#include <cctype>
|
|
#include <ctime>
|
|
#include <algorithm>
|
|
#include <chrono>
|
|
#include <deque>
|
|
#include <string>
|
|
|
|
#include <sys/xattr.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/paths.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include <cpu/defs.h>
|
|
#include <cpu/CpuModule.h>
|
|
#include <cpu/fmem.h>
|
|
|
|
#include <macos/errors.h>
|
|
|
|
#include "os.h"
|
|
#include "os_internal.h"
|
|
#include "toolbox.h"
|
|
#include "stackframe.h"
|
|
|
|
using ToolBox::Log;
|
|
|
|
using OS::Internal::errno_to_oserr;
|
|
|
|
namespace OS {
|
|
|
|
uint16_t PBGetWDInfo(uint32_t parm)
|
|
{
|
|
|
|
enum { // WDPBRec
|
|
_qLink = 0,
|
|
_qType = 4,
|
|
_ioTrap = 6,
|
|
_ioCmdAddr = 8,
|
|
_ioCompletion = 12,
|
|
_ioResult = 16,
|
|
_ioNamePtr = 18,
|
|
_ioVRefNum = 22,
|
|
_filler1 = 24,
|
|
_ioWDIndex = 26,
|
|
_ioWDProcID = 28,
|
|
_ioWDVRefNum = 32,
|
|
_filler2 = 34,
|
|
_ioWDDirID = 48,
|
|
};
|
|
|
|
/*
|
|
* TODO - this is a Massive hack.
|
|
* MPW returns this: for a 0/0 entry.
|
|
* PBGetWDInfo
|
|
* 0
|
|
* ioNamePtr: MacOS
|
|
* ioVRefNum: -1
|
|
* ioWDProcID: 0
|
|
* ioWDVRefNum: -1
|
|
* ioWDDirID: 2 << Root volume is always entry #2.
|
|
*/
|
|
|
|
uint16_t d0 = 0;
|
|
|
|
uint32_t ioNamePtr = memoryReadLong(parm + _ioNamePtr);
|
|
uint16_t ioVRefNum = memoryReadWord(parm + _ioVRefNum);
|
|
uint16_t ioWDIndex = memoryReadWord(parm + _ioWDIndex);
|
|
//uint32_t ioWDProcID = memoryReadLong(parm + _ioWDProcID);
|
|
uint16_t ioWDVRefNum = memoryReadWord(parm + _ioWDVRefNum);
|
|
|
|
Log(" PBGetWDInfo($%04x, $%04x, $%04x)\n", ioVRefNum, ioWDIndex, ioWDVRefNum);
|
|
|
|
// todo -- need to expand the fsspec code to give a id #
|
|
// to all filse and directories.
|
|
// and move to common internal code.
|
|
|
|
|
|
ToolBox::WritePString(ioNamePtr, std::string("MacOS"));
|
|
memoryWriteWord(-1, parm + _ioVRefNum);
|
|
memoryWriteLong(0, parm + _ioWDProcID);
|
|
memoryWriteWord(-1, parm + _ioWDVRefNum);
|
|
memoryWriteLong(2, parm + _ioWDDirID);
|
|
|
|
d0 = 0;
|
|
memoryWriteWord(d0, parm + _ioResult);
|
|
return d0;
|
|
}
|
|
|
|
uint16_t PBGetCatInfo(uint32_t parm)
|
|
{
|
|
uint16_t d0;
|
|
|
|
// yuck. this is sort of a getdirent/stat call....
|
|
|
|
//uint32_t ioCompletion = memoryReadLong(parm + 12);
|
|
uint32_t ioNamePtr = memoryReadLong(parm + 18);
|
|
//uint16_t ioVRefNum = memoryReadWord(parm + 22);
|
|
//uint8_t ioFVersNum = memoryReadByte(parm + 26);
|
|
int16_t ioFDirIndex = memoryReadWord(parm + 28);
|
|
|
|
if (ioFDirIndex <= 0)
|
|
{
|
|
// based name
|
|
std::string sname;
|
|
|
|
if (!ioNamePtr)
|
|
{
|
|
memoryWriteWord(MacOS::bdNamErr, parm + 16);
|
|
return MacOS::bdNamErr;
|
|
}
|
|
|
|
sname = ToolBox::ReadPString(ioNamePtr, true);
|
|
|
|
Log(" PBGetCatInfo(%s)\n", sname.c_str());
|
|
|
|
struct stat st;
|
|
|
|
if (::stat(sname.c_str(), &st) < 0)
|
|
{
|
|
d0 = errno_to_oserr(errno);
|
|
|
|
memoryWriteWord(d0, parm + 16);
|
|
return d0;
|
|
}
|
|
|
|
if (S_ISDIR(st.st_mode))
|
|
{
|
|
// bit 4 - is a directory.
|
|
memoryWriteByte(1 << 4, parm + 30); // ioFlAttrib
|
|
memoryWriteByte(0, parm + 31); //ioACUser
|
|
|
|
std::memset(memoryPointer(parm + 32), 0, 16); // DInfo
|
|
memoryWriteLong(0, parm + 48); // ioDrDirID
|
|
memoryWriteWord(0, parm + 52); // ioDrNmFls - # of files in dir
|
|
|
|
memoryWriteLong(UnixToMac(st.st_birthtime), parm + 60); // create
|
|
memoryWriteLong(UnixToMac(st.st_mtime), parm + 64); // modify
|
|
memoryWriteLong(UnixToMac(st.st_mtime), parm + 68); // backup
|
|
|
|
std::memset(memoryPointer(parm + 72), 0, 16); // DXInfo
|
|
memoryWriteLong(0, parm + 88); // ioDrParID
|
|
}
|
|
else
|
|
{
|
|
memoryWriteByte(0, parm + 30);
|
|
|
|
memoryWriteByte(0, parm + 31); //ioACUser
|
|
Internal::GetFinderInfo(sname, memoryPointer(parm + 32), false); // finder info
|
|
memoryWriteLong(0, parm + 48); // ioDrDirID
|
|
memoryWriteWord(0, parm + 52); // ioFlStBlk
|
|
memoryWriteLong(st.st_size, parm + 54); // ioFlLgLen
|
|
memoryWriteLong(st.st_size, parm + 58); // ioFlPyLen
|
|
|
|
// resource info... below
|
|
|
|
memoryWriteLong(UnixToMac(st.st_birthtime), parm + 72); // create
|
|
memoryWriteLong(UnixToMac(st.st_mtime), parm + 76); // modify
|
|
memoryWriteLong(UnixToMac(st.st_mtime), parm + 80); // backup
|
|
|
|
std::memset(memoryPointer(parm + 84), 0, 16); // FXInfo
|
|
|
|
memoryWriteWord(0, parm + 100); // ioFlParID
|
|
memoryWriteWord(0, parm + 104); // ioFlClpSiz
|
|
|
|
sname.append(_PATH_RSRCFORKSPEC);
|
|
if (::stat(sname.c_str(), &st) >= 0)
|
|
{
|
|
memoryWriteWord(0, parm + 62);
|
|
memoryWriteLong(st.st_size, parm + 64);
|
|
memoryWriteLong(st.st_size, parm + 68);
|
|
}
|
|
else
|
|
{
|
|
memoryWriteWord(0, parm + 62);
|
|
memoryWriteLong(0, parm + 64);
|
|
memoryWriteLong(0, parm + 68);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
// no error.
|
|
memoryWriteWord(0, parm + 16);
|
|
return 0;
|
|
}
|
|
|
|
else
|
|
{
|
|
fprintf(stderr, "GetFileInfo -- ioFDirIndex not yet supported\n");
|
|
exit(1);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
uint16_t PBOpenDF(uint32_t paramBlock)
|
|
{
|
|
Log(" PBOpenDF\n");
|
|
// same as Open but slightly different handling of . files.
|
|
return OS::Open(0xa000);
|
|
}
|
|
|
|
|
|
uint16_t PBHOpenDF(uint32_t paramBlock)
|
|
{
|
|
// PBHOpen... is identical to PBOpen... except
|
|
// that it accepts a directory ID in ioDirID.
|
|
|
|
Log(" PBHOpenDF\n");
|
|
// same as Open but slightly different handling of . files.
|
|
return OS::Open(0xa000);
|
|
}
|
|
|
|
|
|
uint16_t FSDispatch(uint16_t trap)
|
|
{
|
|
|
|
// TODO -- check new hfs bit ( (trap & 0x0200) == 0x0200)
|
|
// TODO -- check async bit ((trap & 0x0400) == 0x0400)
|
|
|
|
|
|
|
|
uint32_t selector = cpuGetDReg(0);
|
|
uint32_t paramBlock = cpuGetAReg(0);
|
|
|
|
Log("%04x FSDispatch(%08x, %08x)\n", trap, selector, paramBlock);
|
|
|
|
switch (selector)
|
|
{
|
|
|
|
case 0x001a:
|
|
return PBOpenDF(paramBlock);
|
|
break;
|
|
|
|
default:
|
|
fprintf(stderr, "FSDispatch: selector %08x not implemented\n",
|
|
selector);
|
|
exit(1);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
uint16_t HFSDispatch(uint16_t trap)
|
|
{
|
|
|
|
uint32_t selector = cpuGetDReg(0);
|
|
uint32_t paramBlock = cpuGetAReg(0);
|
|
|
|
Log("%04x HFSDispatch(%08x, %08x)\n", trap, selector, paramBlock);
|
|
|
|
switch (selector)
|
|
{
|
|
case 0x0007:
|
|
return PBGetWDInfo(paramBlock);
|
|
break;
|
|
|
|
case 0x0009:
|
|
return PBGetCatInfo(paramBlock);
|
|
break;
|
|
|
|
case 0x001a:
|
|
return PBHOpenDF(paramBlock);
|
|
|
|
default:
|
|
fprintf(stderr, "HFSDispatch: selector %08x not implemented\n",
|
|
selector);
|
|
exit(1);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
}
|