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
|
/* $Id: read_bios.c,v 1.6 2009-01-28 17:20:10 potyra Exp $
*
* Copyright (C) 2004-2009 FAUmachine Team <info@faumachine.org>.
* This program is free software. You can redistribute it and/or modify it
* under the terms of the GNU General Public License, either version 2 of
* the License, or (at your option) any later version. See COPYING.
*/
#include <features.h>
#define __USE_FILE_OFFSET64
#define __USE_LARGEFILE64
#include <errno.h>
#include <fcntl.h>
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
char *progname;
unsigned long addr = 0xf0000;
unsigned long size = 0x10000;
static __attribute__((__noreturn__)) void
usage(int retval)
{
fprintf(stderr, "Usage: %s [-a addr] [-s size]\n", progname);
exit(retval);
}
int
main(int argc, char **argv)
{
int c;
unsigned char bios[0x100000];
int fd;
int ret;
/*
* Get program name.
*/
progname = *argv;
/*
* Get options.
*/
while ((c = getopt(argc, argv, "a:s:")) != -1) {
switch (c) {
case 'a':
addr = strtoul(optarg, (char **) 0, 0);
break;
case 's':
size = strtoul(optarg, (char **) 0, 0);
break;
default:
usage(1);
}
}
argc -= optind;
argv += optind;
/*
* Check parameter.
*/
if (argc != 0) {
usage(1);
}
if (sizeof(bios) < size) {
fprintf(stderr, "Size too large (maximum: 0x%lx)!\n",
(unsigned long) sizeof(bios));
exit(1);
}
/*
* Do work.
*/
fd = open("/dev/mem", O_RDONLY | O_LARGEFILE);
if (fd < 0) {
fprintf(stderr, "%s: %s: open: %s.\n", progname, "/dev/mem",
strerror(errno));
exit(1);
}
ret = lseek(fd, addr, SEEK_SET);
if (ret == -1) {
fprintf(stderr, "%s: %s: lseek: %s.\n", progname, "/dev/mem",
strerror(errno));
exit(1);
}
if (ret != addr) {
fprintf(stderr, "%s: %s: lseek: %s.\n", progname, "/dev/mem",
"Bad seek");
exit(1);
}
ret = read(fd, bios, size);
if (ret < 0) {
fprintf(stderr, "%s: %s: read: %s.\n", progname, "/dev/mem",
strerror(errno));
exit(1);
}
if (ret < size) {
fprintf(stderr, "%s: %s: read: %s.\n", progname, "/dev/mem",
"Short read");
exit(1);
}
ret = close(fd);
if (ret < 0) {
fprintf(stderr, "%s: %s: close: %s.\n", progname, "/dev/mem",
strerror(errno));
exit(1);
}
ret = write(1, bios, size);
if (ret < 0) {
fprintf(stderr, "%s: %s: write: %s.\n", progname, "<stdout>",
strerror(errno));
exit(1);
}
if (ret < size) {
fprintf(stderr, "%s: %s: write: %s.\n", progname, "<stdout>",
"Short write");
exit(1);
}
return 0;
}
|