1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim:expandtab:autoindent:tabstop=4:shiftwidth=4:filetype=c:cindent:textwidth=0:
*
* Copyright (C) 2005 Dell Inc.
* by Michael Brown <Michael_E_Brown@dell.com>
* Licensed under the Open Software License version 2.1
*
* Alternatively, you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published
* by the Free Software Foundation; either version 2 of the License,
* or (at your option) any later version.
* 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.
*/
// compat header should always be first header if including system headers
#include "smbios/compat.h"
#include <string>
#include <iostream>
#include <iomanip>
#include <string.h> // memset
#include <stdlib.h>
#include <sys/io.h>
#include "smbios/ISmbios.h"
#include "smbios/IMemory.h" // only needed if you want to use fake input (memdump.dat)
#include "smbios/version.h"
#include "getopts.h"
// always include last if included.
#include "smbios/message.h" // not needed outside of this lib. (mainly for gettext i18n)
#if defined(DEBUG_MEDIA_DIRECT)
# define DCOUT(line) do { cout << line; } while(0)
# define DCERR(line) do { cerr << line; } while(0)
#else
# define DCOUT(line) do {} while(0)
# define DCERR(line) do {} while(0)
#endif
using namespace std;
struct options opts[] =
{
{ 1, "info", "Display Media Direct Info", "i", 0 },
{ 2, "remove", "Remove Media Direct Xloader BIOS Support", "r", 0 },
{ 3, 0, "Install Xloader Blocks", "b", 0 },
{ 4, "lowlba", "Low 32-bits of LBA for Xloader blocks", 0, 0 },
{ 5, "highlba", "High 32-bits of LBA for Xloader blocks", 0, 0 },
{ 254, "memory_file", "Debug: Memory dump file to use instead of physical memory", "m", 1 },
{ 255, "version", "Display libsmbios version information", "v", 0 },
{ 0, NULL, NULL, NULL, 0 }
};
#if defined(_MSC_VER)
#pragma pack(push,1)
#endif
struct mediaDirectTable {
u8 signature[4];
u8 versionMinor;
u8 versionMajor;
u8 checksum;
u8 portIndex;
u8 portValue;
}
LIBSMBIOS_PACKED_ATTR;
#if defined(_MSC_VER)
#pragma pack(pop)
#endif
struct smiRegs
{
u32 eax; // output only
u32 ebx; // output only
u32 ecx; // output only
u32 esi; // input/output
u32 edi; // input/output
};
enum {
E_BLOCK_START = 0xE0000UL,
F_BLOCK_START = 0xF0000UL,
F_BLOCK_END = 0xFFFFFUL
};
void getMediaDirectTable(mediaDirectTable *mdTable);
void printMDInfo(mediaDirectTable *mdTable);
void removeXloader(mediaDirectTable *mdTable);
void installXloader(mediaDirectTable *mdTable, u32 highLba, u32 lowLba);
int
main (int argc, char **argv)
{
int retval = 0;
try
{
int c=0;
char *args = 0;
memory::MemoryFactory *memoryFactory = 0;
bool xml = false;
bool lowInit = false, highInit = false;
u32 lowLba = 0, highLba = 0;
memoryFactory = memory::MemoryFactory::getFactory();
mediaDirectTable mdTable;
while ( (c=getopts(argc, argv, opts, &args)) != 0 )
{
switch(c)
{
case 1: // -i, --info
getMediaDirectTable(&mdTable);
printMDInfo(&mdTable);
break;
case 2: // -r, --remove
getMediaDirectTable(&mdTable);
printMDInfo(&mdTable);
removeXloader(&mdTable);
break;
case 3: // -b, --break-my-machine
if( ! (lowInit && highInit )) {
cerr << "Need low/high LBA. (cmdline order matters)" << endl;
break;
}
getMediaDirectTable(&mdTable);
installXloader(&mdTable, lowLba, highLba);
printMDInfo(&mdTable);
break;
case 4: // --lowlba
lowInit = 1;
lowLba = strtol(args, 0, 0);
break;
case 5: // --highlba
highInit = 1;
highLba = strtol(args, 0, 0);
break;
case 254: // -m FILE, --memory FILE
// This is for unit testing. You can specify a file that
// contains a dump of memory to use instead of writing
// directly to RAM.
memoryFactory->setParameter("memFile", args);
memoryFactory->setMode( memory::MemoryFactory::UnitTestMode );
break;
case 255: // -v, --version
cout << "Libsmbios version: " << LIBSMBIOS_RELEASE_VERSION << endl;
exit(0);
break;
default:
break;
}
free(args);
}
}
catch( const exception &e )
{
cerr << "An Error occurred. The Error message is: " << endl << e.what() << endl;
retval = 1;
}
catch ( ... )
{
cerr << "An Unknown Error occurred. Aborting." << endl;
retval = 2;
}
return retval;
}
class MyError : public std::exception
{
private:
std::string s;
public:
MyError(std::string s_) : s(s_) { };
~MyError() throw() { };
const char* what() const throw() { return s.c_str(); };
};
void _callSmi(smiRegs *r, u8 port)
{
iopl(3);
asm volatile (
// magic port
"outb %%al, %%dx \n\t"
: /* output args */
"=a" (r->eax),
"=b" (r->ebx),
"=c" (r->ecx),
"=S" (r->esi),
"=D" (r->edi)
: /* input args */
"0" (r->eax),
"1" (r->ebx),
"2" (r->ecx),
"3" (r->esi),
"4" (r->edi),
"d" (port)
: /* clobber */
);
}
void callSmi(mediaDirectTable *md, smiRegs *r, u8 function, u8 subFunction)
{
// set AL = smi port
// set AH = function
r->eax = function << 8 | md->portValue;
// set BL = subfunction
r->ebx = subFunction;
_callSmi(r, md->portIndex);
if (r->eax == 0){
// success
} else if( r->eax == -1 ) {
// failure
DCERR("smi failure" << endl);
throw "smi failure"; // TODO: make this a regular class-based exception
} else {
DCERR("SMI NOT SUPPORTED" << endl);
throw "SMI NOT SUPPORTED"; // TODO: make this a regular class-based exception
}
}
#define BIT_IS_SET(bit, value) ( (value) & (1<<bit) )
void printMDInfo(mediaDirectTable *mdTable)
{
smiRegs r = {0,};
cout << "Media Direct Info:" << endl;
cout << "\tBIOS MD Version: " << (int)mdTable->versionMajor << "." << (int)mdTable->versionMinor << endl;
// call info smi
callSmi(mdTable, &r, 0x01 ,0);
//BX[16-5]= - RESERVED FOR FUTURE USE
//BX[0] = 0 - system is NOT “Media Direct” capable
// = 1 - system is “Media Direct” capable
cout << "\tMedia Direct Capable : " << (BIT_IS_SET(0, r.ebx) ? "yes" : "no") << endl;
//BX[1] = 0 - user did NOT press the MD button to start the system
// = 1 - user pressed the MD button to start the system
cout << "\tSystem Start via MD Button : " << (BIT_IS_SET(1, r.ebx) ? "yes" : "no") << endl;
//BX[2] = 0 - BIOS does NOT support the Vista HotStart feature
// = 1 - BIOS supports the Vista HotStart feature
cout << "\tBIOS Support for Vista HotStart: " << (BIT_IS_SET(2, r.ebx) ? "yes" : "no") << endl;
//BX[3] = 0 - Pretty Boot mode is NOT active
// = 1 - Pretty Boot mode is active
cout << "\tPretty Boot Active : " << (BIT_IS_SET(3, r.ebx) ? "yes" : "no") << endl;
//BX[4] = 0 - BIOS does NOT support xloder extended functions
// = 1 -BIOS supports the xloader extended functions
cout << "\tBIOS Supports extended xloader : " << (BIT_IS_SET(4, r.ebx) ? "yes" : "no") << endl;
callSmi(mdTable, &r, 0x02 ,0);
cout << "\tBIOS Configuration Changed : " << (BIT_IS_SET(0, r.ebx) ? "yes" : "no") << endl;
callSmi(mdTable, &r, 0x04 ,0);
cout << "\tXloader Configured : " << (BIT_IS_SET(0, r.ebx) ? "yes" : "no") << endl;
cout << hex;
// following info is only valid if "Xloader Configured", above, is yes.
cout << "\tXloader Revision : " << r.ecx << endl;
cout << "\tXloader Low 32-bit LBA : " << r.esi << endl;
cout << "\tXloader High 32-bit LBA : " << r.edi << endl;
cout << dec;
cout << "DONE." << endl;
}
void installXloader(mediaDirectTable *mdTable, u32 lowLba, u32 highLba)
{
smiRegs r = {0,};
r.esi = lowLba;
r.edi = highLba;
cout << "Installing Xloader sector information" << endl;
cout << "\tXloader Low 32-bit LBA : " << r.esi << endl;
cout << "\tXloader High 32-bit LBA : " << r.edi << endl;
callSmi(mdTable, &r, 0x04 ,1);
cout << "DONE." << endl;
}
void removeXloader(mediaDirectTable *mdTable)
{
smiRegs r = {0,};
cout << "Removing Xloader sector information from BIOS" << endl;
callSmi(mdTable, &r, 0x04 ,2);
cout << "DONE." << endl;
}
void getMediaDirectTable(mediaDirectTable *mdTable)
{
memory::IMemory *mem = memory::MemoryFactory::getFactory()->getSingleton();
unsigned long fp = F_BLOCK_START;
DCERR("getMediaDirectTable() Memory scan for Media Direct table." << endl);
// tell the memory subsystem that it can optimize here and
// keep memory open while we scan rather than open/close/open/close/...
// for each fillBuffer() call
//
// this would be safer if we used spiffy c++ raii technique here
mem->decReopenHint();
while ( (fp + sizeof(*mdTable)) < F_BLOCK_END)
{
memset(mdTable, 0, sizeof(*mdTable));
mem->fillBuffer(
reinterpret_cast<u8 *>(mdTable),
fp,
sizeof(*mdTable)
);
// search for promising looking headers
// first, look for old-style DMI header
if (memcmp (mdTable->signature, "MD20", 4) == 0)
{
DCERR("Found MD20 anchor. Trying to parse legacy DMI structure." << endl);
u8 checksum=0;
for(int i=0; i<sizeof(*mdTable); ++i){
u8 byte = reinterpret_cast<u8*>(mdTable)[i];
checksum += byte;
DCERR("byte " << dec << i << " = " << hex << (int)byte << endl);
DCERR(" checksum: " << hex << (int)checksum << endl);
}
if(checksum == 0) // check the checksum
{
DCERR("Found valid Media Direct entry point at offset: " << fp << endl);
break;
}
}
fp += 4;
}
// dont need memory optimization anymore
mem->incReopenHint();
// bad stuff happened if we got to here and fp > 0xFFFFFL
if ((fp + sizeof(*mdTable)) >= F_BLOCK_END)
{
memset(mdTable, 0, sizeof(*mdTable));
throw MyError("Unable to find table entry point.");
}
}
|