/* $Id: bs3-rm-InitHighDlls.c 102157 2023-11-20 16:16:55Z vboxsync $ */ /** @file * BS3Kit - Initialize any high DLLs, real mode. */ /* * Copyright (C) 2007-2023 Oracle and/or its affiliates. * * This file is part of VirtualBox base platform packages, as * available from https://www.virtualbox.org. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation, in version 3 of the * License. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * The contents of this file may alternatively be used under the terms * of the Common Development and Distribution License Version 1.0 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included * in the VirtualBox distribution, in which case the provisions of the * CDDL are applicable instead of those of the GPL. * * You may elect to license modified versions of this file under the * terms and conditions of either the GPL or the CDDL or both. * * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 */ /********************************************************************************************************************************* * Header Files * *********************************************************************************************************************************/ //#define BS3_USE_RM_TEXT_SEG 1 #include "bs3kit-template-header.h" #include "bs3kit-linker.h" #include "bs3-cmn-memory.h" extern BS3HIGHDLLENTRY BS3_FAR_DATA BS3_DATA_NM(g_aBs3HighDllTable)[]; extern BS3HIGHDLLENTRY BS3_FAR_DATA BS3_DATA_NM(g_Bs3HighDllTable_End); BS3_DECL_FAR(void) Bs3InitHighDlls_rm_far(void) { unsigned const cHighDlls = (unsigned)(&g_Bs3HighDllTable_End - &g_aBs3HighDllTable[0]); if ( cHighDlls > 0 && (g_uBs3CpuDetected & BS3CPU_TYPE_MASK) >= BS3CPU_80386) { unsigned i; /* * We need a buffer first of all. Using a 4K / PAGE_SIZE buffer let us * share calculations and variables with the allocation code. */ void BS3_FAR * const pvBuf = Bs3MemAlloc(BS3MEMKIND_REAL, _4K); uint32_t const uFlatBuf = BS3_FP_REAL_TO_FLAT(pvBuf); if (!pvBuf) { Bs3TestPrintf("Failed to allocate 4 KiB memory buffer for loading high DLL(s)!\n"); Bs3Shutdown(); } /* * Iterate the high DLL table and load it all into memory. */ for (i = 0; i < cHighDlls; i++) { const char RT_FAR * const pszzStrings = (char RT_FAR *)&g_aBs3HighDllTable[i] + g_aBs3HighDllTable[i].offStrings; const char RT_FAR * const pszFilename = &pszzStrings[g_aBs3HighDllTable[i].offFilename]; uint16_t cPagesToLoad = (uint16_t)(g_aBs3HighDllTable[i].cbLoaded / _4K); uint16_t iPage; Bs3Printf("Loading dll '%s' at %#RX32 ...", pszFilename, g_aBs3HighDllTable[i].uLoadAddr); /* Allocate the memory taken by the DLL. */ iPage = Bs3SlabAllocFixed(&g_Bs3Mem4KUpperTiled.Core, g_aBs3HighDllTable[i].uLoadAddr, cPagesToLoad); if (iPage == 0 || iPage == UINT16_MAX) { Bs3TestPrintf("Bs3SlabAllocFixed(,%#RX32, %#RX16) failed: %#RX16 (%s)\n", g_aBs3HighDllTable[i].uLoadAddr, cPagesToLoad, iPage, pszFilename); Bs3Shutdown(); } /* We don't have any memory management above 16MB... */ /* * Load the DLL. This is where we ASSUME real-mode as we need to * use int13 for the actual reading. We temporarily restores the * int13 entry in the interrupt table and loads the next chunk. * Then we switch to 32-bit protected mode and copies the chunk * from pvBuf and to the actual load address. */ { uint32_t uCurFlatLoadAddr; uint32_t uCurSectorInImage; uint16_t cSectorsPerCylinder; /* Get the drive geometry. ASSUMES the bootsector hasn't been trashed yet! */ uint8_t const bDrive = ((BS3BOOTSECTOR RT_FAR *)BS3_FP_MAKE(0,0x7c00))->bBootDrv; uint16_t uMaxCylinder = 0; uint8_t uMaxHead = 0; uint8_t uMaxSector = 0; int rc; rc = Bs3DiskQueryGeometry_rm(bDrive, &uMaxCylinder, &uMaxHead, &uMaxSector); if (rc != 0) { Bs3TestPrintf("Bs3DiskQueryGeometry(%#x) failed: %#x\n", bDrive, rc); Bs3Shutdown(); } cSectorsPerCylinder = uMaxSector * ((uint16_t)uMaxHead + 1); //Bs3TestPrintf("Bs3DiskQueryGeometry(%#x)-> C=%#x H=%#x S=%#x cSectorsPerCylinder=%#x\n", // bDrive, uMaxCylinder, uMaxHead, uMaxSector, cSectorsPerCylinder); /* Load the image. */ if (g_aBs3HighDllTable[i].cbInImage < g_aBs3HighDllTable[i].cbLoaded) cPagesToLoad = (uint16_t)(g_aBs3HighDllTable[i].cbInImage / _4K); uCurFlatLoadAddr = g_aBs3HighDllTable[i].uLoadAddr; uCurSectorInImage = g_aBs3HighDllTable[i].offInImage / 512; iPage = 0; while (iPage < cPagesToLoad) { /* Read the next page. */ uint16_t const uCylinder = uCurSectorInImage / cSectorsPerCylinder; uint16_t const uRemainder = uCurSectorInImage % cSectorsPerCylinder; uint8_t const uHead = uRemainder / uMaxSector; uint8_t const uSector = (uRemainder % uMaxSector) + 1; //Bs3TestPrintf("Calling Bs3DiskRead(%#x,%#x,%#x,%#x,%#x,%p) [uCurSectorInImage=%RX32]\n", // bDrive, uCylinder, uHead, uSector, (uint8_t)(_4K / 512), pvBuf, uCurSectorInImage); rc = Bs3DiskRead_rm(bDrive, uCylinder, uHead, uSector, _4K / 512, pvBuf); if (rc != 0) { Bs3TestPrintf("Bs3DiskRead(%#x,%#x,%#x,%#x,,) failed: %#x\n", bDrive, uCylinder, uHead, uSector, rc); Bs3Shutdown(); } /* Copy the page to where the DLL is being loaded. */ Bs3MemCopyFlat_rm_far(uCurFlatLoadAddr, uFlatBuf, _4K); Bs3PrintChr('.'); /* Advance */ iPage += 1; uCurFlatLoadAddr += _4K; uCurSectorInImage += _4K / 512; } } } Bs3Printf("\n"); Bs3MemFree(pvBuf, _4K); } }