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
|
/* -*- 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 David Greaves <david@dgreaves.com>
* Licensed under 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.
*
* Derived from activeCmosToken.cpp by Michael Brown
*
* 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 <stdlib.h>
#include "smbios/IMemory.h" // only needed if you want to use fake input (memdump.dat)
#include "smbios/IToken.h"
#include "smbios/ICmosRW.h"
#include "smbios/IObserver.h"
#include "smbios/version.h"
#include "getopts.h"
using namespace std;
// This program sets and activates the BIOS Wakeup timer on an SC420 (and...??)
// Called with no paramters it reports the current Wakeup timer state.
// retval = 0; successfully set wakeup time
// retval = 1; failed cmos checksum pre-check
// retval = 2; failed to set time
// retval = 3; unknown failure
#define WAKE_HOUR_LOCN (0x2b)
#define WAKE_MIN_LOCN (0x2c)
#define WAKE_DISABLE (0x28)
#define WAKE_EVERYDAY (0x29)
#define WAKE_WEEKDAY (0x2A)
struct options opts[] =
{
{ 1, "hour", "set wakeup hour", NULL, 1 },
{ 2, "minute", "set wakeup minute", NULL, 1 },
{ 3, "everyday", "set wakeup for everyday", NULL, 0 },
{ 4, "weekday", "set wakeup for weekdays only", NULL, 0 },
{ 5, "disable", "disable wakeups", NULL, 0 },
{ 252, "password", "BIOS setup password", "p", 1 },
{ 249, "rawpassword", "Do not auto-convert password to scancodes", NULL, 0 },
{ 253, "cmos_file", "Debug: CMOS dump file to use instead of physical cmos", "c", 1 },
{ 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 }
};
void getCurrentWakeup(smbios::ITokenTable *tokenTable, string prefix)
{
u8 hour_c[2] = {0};
u8 minute_c[2] = {0};
(*tokenTable)[ WAKE_HOUR_LOCN ]->getString(hour_c,2);
(*tokenTable)[ WAKE_MIN_LOCN ]->getString(minute_c,2);
cout << prefix << " wakeup type: " <<
((*tokenTable)[ WAKE_EVERYDAY ]->isActive()?"Every day":"") <<
((*tokenTable)[ WAKE_WEEKDAY ]->isActive()?"Week days":"") <<
((*tokenTable)[ WAKE_DISABLE ]->isActive()?"Disabled":"") <<
endl;
if (!(*tokenTable)[WAKE_DISABLE]->isActive() )
{
cout << prefix << " wakeup time: " <<
hex << static_cast<int>(hour_c[0]) << ":" <<
static_cast<int>(minute_c[0]) << dec << endl;
}
}
void checkExistingChecksums(bool doUpdate=false)
{
// We need to ensure that cmos checksums are correct before we go
// messing with things, or we could mess up the system.
cmos::ICmosRW *cmos =
cmos::CmosRWFactory::getFactory()->getSingleton();
observer::IObservable *o = dynamic_cast<observer::IObservable*>(cmos);
// will throw an exception on failure.
if( o )
o->notify(&doUpdate);
}
int
main (int argc, char **argv)
{
int retval = 0; // success
try
{
int wake_hour=0, wake_min=0;
int wake_hour_bcd = 0, wake_min_bcd = 0;
bool doSet=false;
int token=0;
string password("");
bool rawPassword=false;
int c=0;
char *args = 0;
memory::MemoryFactory *memoryFactory = 0;
cmos::CmosRWFactory *cmosFactory = 0;
while ( (c=getopts(argc, argv, opts, &args)) != 0 )
{
switch(c)
{
case 1: // hour
wake_hour = strtoul(args, 0, 0);
if (wake_hour < 0 or wake_hour >23)
{
cerr << "Wake hour: " << args << " must be between 0 and 23" << endl;
throw "bad data";
}
wake_hour_bcd = ((wake_hour / 10) <<4) + (wake_hour % 10);
break;
case 2: // minute
wake_min = strtoul(args, 0, 0);
if (wake_min < 0 or wake_min >59)
{
cerr << "Wake min: " << args << " must be between 0 and 59" << endl;
throw "bad data";
}
wake_min_bcd = ((wake_min / 10) << 4) + (wake_min % 10);
break;
case 3: // everyday
doSet = true;
token = WAKE_EVERYDAY;
break;
case 4: // weekday
doSet = true;
token = WAKE_WEEKDAY;
break;
case 5: // disable
doSet = true;
token = WAKE_DISABLE;
wake_hour_bcd=0;
wake_min_bcd=0;
break;
case 254:
// 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 = memory::MemoryFactory::getFactory();
memoryFactory->setParameter("memFile", args);
memoryFactory->setMode( memory::MemoryFactory::UnitTestMode );
break;
case 253:
// ditto, except for CMOS
cmosFactory = cmos::CmosRWFactory::getFactory();
cmosFactory->setParameter("cmosMapFile", args);
cmosFactory->setMode( cmos::CmosRWFactory::UnitTestMode );
break;
case 252:
password = args;
break;
case 249:
rawPassword = true;
break;
case 255:
cout << "Libsmbios version: " << LIBSMBIOS_RELEASE_VERSION << endl;
exit(0);
break;
default:
break;
}
free(args);
}
checkExistingChecksums();
smbios::TokenTableFactory *ttFactory = smbios::TokenTableFactory::getFactory() ;
smbios::ITokenTable *tokenTable = ttFactory->getSingleton();
// get wakeup...
getCurrentWakeup(tokenTable, "Current");
if( doSet )
{
// set wakeup...
(*tokenTable)[ WAKE_HOUR_LOCN ]->setString( reinterpret_cast<const u8*>(&wake_hour_bcd), 1);
(*tokenTable)[ WAKE_MIN_LOCN ]->setString( reinterpret_cast<const u8*>(&wake_min_bcd), 1);
(*tokenTable)[ token ]->activate();
getCurrentWakeup(tokenTable, "Set");
}
}
catch( const smbios::InvalidChecksum &e )
{
cerr << "Pre-check of CMOS checksum failed. System is in an unknown state, unable to continue."
<< endl
<< "The exact exception was: "
<< e.what();
retval = 1;
}
catch( const smbios::IException &e )
{
cerr << "An Error occurred. The Error message is: " << endl << e.what() << endl;
retval = 2;
}
catch ( ... )
{
cerr << "An Unknown Error occurred. Aborting." << endl;
retval = 3;
}
return retval;
}
|