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
|
/* biossums.c --- written by Eike W. for the Bochs BIOS */
/* adapted for the LGPL'd VGABIOS by vruppert */
/* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
typedef unsigned char byte;
void check( int value, char* message );
#define MAX_BIOS_DATA 0x10000
long chksum_bios_get_offset( byte* data, long offset );
byte chksum_bios_calc_value( byte* data, long offset );
byte chksum_bios_get_value( byte* data, long offset );
void chksum_bios_set_value( byte* data, long offset, byte value );
#define PMID_LEN 20
#define PMID_CHKSUM 19
long chksum_pmid_get_offset( byte* data, long offset );
byte chksum_pmid_calc_value( byte* data, long offset );
byte chksum_pmid_get_value( byte* data, long offset );
void chksum_pmid_set_value( byte* data, long offset, byte value );
#define PCIR_LEN 24
long chksum_pcir_get_offset( byte* data, long offset );
byte bios_data[MAX_BIOS_DATA];
long bios_len;
int main(int argc, char* argv[])
{
FILE* stream;
long offset, tmp_offset, pcir_offset;
byte bios_len_byte, cur_val = 0, new_val = 0;
int hits, modified;
if (argc != 2) {
printf( "Error. Need a file-name as an argument.\n" );
exit( EXIT_FAILURE );
}
if ((stream = fopen(argv[1], "rb")) == NULL) {
printf("Error opening %s for reading.\n", argv[1]);
exit(EXIT_FAILURE);
}
memset(bios_data, 0, MAX_BIOS_DATA);
bios_len = fread(bios_data, 1, MAX_BIOS_DATA, stream);
if (bios_len > MAX_BIOS_DATA) {
printf("Error reading max. 65536 Bytes from %s.\n", argv[1]);
fclose(stream);
exit(EXIT_FAILURE);
}
fclose(stream);
modified = 0;
if (bios_len < 0x8000) {
bios_len = 0x8000;
modified = 1;
} else if ((bios_len & 0x1FF) != 0) {
bios_len = (bios_len + 0x200) & ~0x1FF;
modified = 1;
}
bios_len_byte = (byte)(bios_len / 512);
if (bios_len_byte != bios_data[2]) {
if (modified == 0) {
bios_len += 0x200;
}
bios_data[2] = (byte)(bios_len / 512);
modified = 1;
}
hits = 0;
offset = 0L;
while( (tmp_offset = chksum_pmid_get_offset( bios_data, offset )) != -1L ) {
offset = tmp_offset;
cur_val = chksum_pmid_get_value( bios_data, offset );
new_val = chksum_pmid_calc_value( bios_data, offset );
printf( "\nPMID entry at: 0x%4lX\n", offset );
printf( "Current checksum: 0x%02X\n", cur_val );
printf( "Calculated checksum: 0x%02X ", new_val );
hits++;
}
if ((hits == 1) && (cur_val != new_val)) {
printf("Setting checksum.");
chksum_pmid_set_value( bios_data, offset, new_val );
if (modified == 0) {
bios_len += 0x200;
bios_data[2]++;
}
modified = 1;
}
if (hits >= 2) {
printf( "Multiple PMID entries! No checksum set." );
}
if (hits) {
printf("\n");
}
offset = 0L;
pcir_offset = chksum_pcir_get_offset( bios_data, offset );
if (pcir_offset != -1L) {
if (bios_data[pcir_offset + 16] != bios_data[2]) {
bios_data[pcir_offset + 16] = bios_data[2];
if (modified == 0) {
bios_len += 0x200;
bios_data[2]++;
bios_data[pcir_offset + 16]++;
}
modified = 1;
}
}
offset = 0L;
do {
offset = chksum_bios_get_offset(bios_data, offset);
cur_val = chksum_bios_get_value(bios_data, offset);
new_val = chksum_bios_calc_value(bios_data, offset);
if ((cur_val != new_val) && (modified == 0)) {
bios_len += 0x200;
bios_data[2]++;
if (pcir_offset != -1L) {
bios_data[pcir_offset + 16]++;
}
modified = 1;
} else {
printf("\nBios checksum at: 0x%4lX\n", offset);
printf("Current checksum: 0x%02X\n", cur_val);
printf("Calculated checksum: 0x%02X ", new_val);
if (cur_val != new_val) {
printf("Setting checksum.");
chksum_bios_set_value(bios_data, offset, new_val);
cur_val = new_val;
modified = 1;
}
printf( "\n" );
}
} while (cur_val != new_val);
if (modified == 1) {
if ((stream = fopen( argv[1], "wb")) == NULL) {
printf("Error opening %s for writing.\n", argv[1]);
exit(EXIT_FAILURE);
}
if (fwrite(bios_data, 1, bios_len, stream) < bios_len) {
printf("Error writing %d KBytes to %s.\n", bios_len / 1024, argv[1]);
fclose(stream);
exit(EXIT_FAILURE);
}
fclose(stream);
}
return (EXIT_SUCCESS);
}
void check( int okay, char* message ) {
if( !okay ) {
printf( "\n\nError. %s.\n", message );
exit( EXIT_FAILURE );
}
}
long chksum_bios_get_offset( byte* data, long offset ) {
return (bios_len - 1);
}
byte chksum_bios_calc_value( byte* data, long offset ) {
int i;
byte sum;
sum = 0;
for( i = 0; i < offset; i++ ) {
sum = sum + *( data + i );
}
sum = -sum; /* iso ensures -s + s == 0 on unsigned types */
return( sum );
}
byte chksum_bios_get_value( byte* data, long offset ) {
return( *( data + offset ) );
}
void chksum_bios_set_value( byte* data, long offset, byte value ) {
*( data + offset ) = value;
}
byte chksum_pmid_calc_value( byte* data, long offset ) {
int i;
int len;
byte sum;
len = PMID_LEN;
check((offset + len) <= (bios_len - 1), "PMID entry length out of bounds" );
sum = 0;
for( i = 0; i < len; i++ ) {
if( i != PMID_CHKSUM ) {
sum = sum + *( data + offset + i );
}
}
sum = -sum;
return( sum );
}
long chksum_pmid_get_offset( byte* data, long offset ) {
long result = -1L;
while ((offset + PMID_LEN) < (bios_len - 1)) {
offset = offset + 1;
if( *( data + offset + 0 ) == 'P' && \
*( data + offset + 1 ) == 'M' && \
*( data + offset + 2 ) == 'I' && \
*( data + offset + 3 ) == 'D' ) {
result = offset;
break;
}
}
return( result );
}
byte chksum_pmid_get_value( byte* data, long offset ) {
check((offset + PMID_CHKSUM) <= (bios_len - 1), "PMID checksum out of bounds" );
return( *( data + offset + PMID_CHKSUM ) );
}
void chksum_pmid_set_value( byte* data, long offset, byte value ) {
check((offset + PMID_CHKSUM) <= (bios_len - 1), "PMID checksum out of bounds" );
*( data + offset + PMID_CHKSUM ) = value;
}
long chksum_pcir_get_offset( byte* data, long offset ) {
long result = -1L;
while ((offset + PCIR_LEN) < (bios_len - 1)) {
offset = offset + 1;
if( *( data + offset + 0 ) == 'P' && \
*( data + offset + 1 ) == 'C' && \
*( data + offset + 2 ) == 'I' && \
*( data + offset + 3 ) == 'R' ) {
result = offset;
break;
}
}
return( result );
}
|