parent
77f30d9fb6
commit
2cba595a92
@ -2,7 +2,7 @@
|
|||||||
* mtd - simple memory technology device manipulation tool
|
* mtd - simple memory technology device manipulation tool
|
||||||
*
|
*
|
||||||
* Copyright (C) 2005 Waldemar Brodkorb <wbx@dass-it.de>,
|
* Copyright (C) 2005 Waldemar Brodkorb <wbx@dass-it.de>,
|
||||||
* Felix Fietkau <nbd@vd-s.ath.cx>
|
* Felix Fietkau <nbd@openwrt.org>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
@ -16,11 +16,11 @@
|
|||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
* code is based on linux-mtd example code
|
* The code is based on the linux-mtd examples.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
@ -43,9 +43,11 @@
|
|||||||
#include <linux/mtd/mtd.h>
|
#include <linux/mtd/mtd.h>
|
||||||
|
|
||||||
#define TRX_MAGIC 0x30524448 /* "HDR0" */
|
#define TRX_MAGIC 0x30524448 /* "HDR0" */
|
||||||
#define BUFSIZE (10 * 1024)
|
#define BUFSIZE (16 * 1024)
|
||||||
#define MAX_ARGS 8
|
#define MAX_ARGS 8
|
||||||
|
|
||||||
|
#define DEBUG
|
||||||
|
|
||||||
struct trx_header {
|
struct trx_header {
|
||||||
uint32_t magic; /* "HDR0" */
|
uint32_t magic; /* "HDR0" */
|
||||||
uint32_t len; /* Length of file including header */
|
uint32_t len; /* Length of file including header */
|
||||||
@ -54,49 +56,33 @@ struct trx_header {
|
|||||||
uint32_t offsets[3]; /* Offsets of partitions from start of header */
|
uint32_t offsets[3]; /* Offsets of partitions from start of header */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
char buf[BUFSIZE];
|
||||||
|
int buflen;
|
||||||
|
|
||||||
int
|
int
|
||||||
trx_check(const char *trxfile, const char *mtd, int force)
|
trx_check(int imagefd, const char *mtd)
|
||||||
{
|
{
|
||||||
struct mtd_info_user mtdInfo;
|
struct mtd_info_user mtdInfo;
|
||||||
int trxfd, fd;
|
int fd;
|
||||||
size_t count;
|
size_t count;
|
||||||
struct trx_header trx;
|
struct trx_header *trx = (struct trx_header *) buf;
|
||||||
struct stat trxstat;
|
struct stat trxstat;
|
||||||
|
|
||||||
trxfd = open(trxfile,O_RDONLY);
|
buflen = read(imagefd, buf, sizeof(struct trx_header));
|
||||||
if(trxfd < 0) {
|
if (buflen < sizeof(struct trx_header)) {
|
||||||
fprintf(stderr, "Could not open image: %s\n", trxfile);
|
fprintf(stderr, "Could not get trx header, file too small (%ld bytes)\n", buflen);
|
||||||
exit(1);
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fstat(trxfd,&trxstat) < 0) {
|
if (trx->magic != TRX_MAGIC || trx->len < sizeof(struct trx_header)) {
|
||||||
fprintf(stderr, "Could not get image file status: %s\n", trxfile);
|
fprintf(stderr, "Bad trx header\n");
|
||||||
close(trxfd);
|
fprintf(stderr, "If this is a firmware in bin format, like some of the\n"
|
||||||
exit(1);
|
"original firmware files are, use following command to convert to trx:\n"
|
||||||
}
|
"dd if=firmware.bin of=firmware.trx bs=32 skip=1\n");
|
||||||
|
return 0;
|
||||||
if (force == 0) {
|
|
||||||
count = read(trxfd, &trx, sizeof(struct trx_header));
|
|
||||||
if (count < sizeof(struct trx_header)) {
|
|
||||||
fprintf(stderr, "Could not get trx header, file too small (%ld bytes)\n", count);
|
|
||||||
close(trxfd);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (trx.magic != TRX_MAGIC || trx.len < sizeof(struct trx_header)) {
|
|
||||||
fprintf(stderr, "Bad trx header\n");
|
|
||||||
fprintf(stderr, "If this is a firmware in bin format, like some of the\n"
|
|
||||||
"original firmware files are, use following command to convert to trx:\n"
|
|
||||||
"dd if=firmware.bin of=firmware.trx bs=32 skip=1\n");
|
|
||||||
close(trxfd);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
lseek(trxfd, 0, SEEK_SET);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* check if image fits to mtd device */
|
/* check if image fits to mtd device */
|
||||||
|
|
||||||
fd = mtd_open(mtd, O_RDWR);
|
fd = mtd_open(mtd, O_RDWR);
|
||||||
if(fd < 0) {
|
if(fd < 0) {
|
||||||
fprintf(stderr, "Could not open mtd device: %s\n", mtd);
|
fprintf(stderr, "Could not open mtd device: %s\n", mtd);
|
||||||
@ -105,22 +91,37 @@ trx_check(const char *trxfile, const char *mtd, int force)
|
|||||||
|
|
||||||
if(ioctl(fd, MEMGETINFO, &mtdInfo)) {
|
if(ioctl(fd, MEMGETINFO, &mtdInfo)) {
|
||||||
fprintf(stderr, "Could not get MTD device info from %s\n", mtd);
|
fprintf(stderr, "Could not get MTD device info from %s\n", mtd);
|
||||||
close(fd);
|
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(mtdInfo.size < trxstat.st_size) {
|
if(mtdInfo.size < trx->len) {
|
||||||
fprintf(stderr, "Image too big for partition: %s\n", mtd);
|
fprintf(stderr, "Image too big for partition: %s\n", mtd);
|
||||||
close(trxfd);
|
|
||||||
close(fd);
|
close(fd);
|
||||||
exit(1);
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Writing %s to %s ...\n", trxfile, mtd);
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int mtd_check(char *mtd)
|
||||||
|
{
|
||||||
|
struct mtd_info_user mtdInfo;
|
||||||
|
int fd;
|
||||||
|
|
||||||
|
fd = mtd_open(mtd, O_RDWR);
|
||||||
|
if(fd < 0) {
|
||||||
|
fprintf(stderr, "Could not open mtd device: %s\n", mtd);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(ioctl(fd, MEMGETINFO, &mtdInfo)) {
|
||||||
|
fprintf(stderr, "Could not get MTD device info from %s\n", mtd);
|
||||||
|
close(fd);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
close(fd);
|
close(fd);
|
||||||
|
return 1;
|
||||||
return(trxfd);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
@ -142,7 +143,7 @@ mtd_unlock(const char *mtd)
|
|||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Unlocking %s ...\n", mtd);
|
fprintf(stderr, "Unlocking %s ...\n", mtd);
|
||||||
mtdLockInfo.start = 0;
|
mtdLockInfo.start = 0;
|
||||||
mtdLockInfo.length = mtdInfo.size;
|
mtdLockInfo.length = mtdInfo.size;
|
||||||
if(ioctl(fd, MEMUNLOCK, &mtdLockInfo)) {
|
if(ioctl(fd, MEMUNLOCK, &mtdLockInfo)) {
|
||||||
@ -194,7 +195,7 @@ mtd_erase(const char *mtd)
|
|||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Erasing %s ...\n", mtd);
|
fprintf(stderr, "Erasing %s ...\n", mtd);
|
||||||
mtdEraseInfo.length = mtdInfo.erasesize;
|
mtdEraseInfo.length = mtdInfo.erasesize;
|
||||||
|
|
||||||
for (mtdEraseInfo.start = 0;
|
for (mtdEraseInfo.start = 0;
|
||||||
@ -215,20 +216,12 @@ mtd_erase(const char *mtd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
mtd_write(int trxfd, const char *mtd)
|
mtd_write(int imagefd, const char *mtd)
|
||||||
{
|
{
|
||||||
int fd,i;
|
int fd, i, result;
|
||||||
size_t result,size,written;
|
size_t r, w, e;
|
||||||
struct mtd_info_user mtdInfo;
|
struct mtd_info_user mtdInfo;
|
||||||
struct erase_info_user mtdEraseInfo;
|
struct erase_info_user mtdEraseInfo;
|
||||||
unsigned char src[BUFSIZE],dest[BUFSIZE];
|
|
||||||
struct stat trxstat;
|
|
||||||
|
|
||||||
if (fstat(trxfd,&trxstat) < 0) {
|
|
||||||
fprintf(stderr, "Could not get trx image file status\n");
|
|
||||||
close(trxfd);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
fd = mtd_open(mtd, O_RDWR);
|
fd = mtd_open(mtd, O_RDWR);
|
||||||
if(fd < 0) {
|
if(fd < 0) {
|
||||||
@ -242,51 +235,63 @@ mtd_write(int trxfd, const char *mtd)
|
|||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
mtdEraseInfo.start = 0;
|
r = w = e = 0;
|
||||||
mtdEraseInfo.length = trxstat.st_size & ~(mtdInfo.erasesize -1);
|
fprintf(stderr, " [ ]");
|
||||||
if(trxstat.st_size % mtdInfo.erasesize) mtdEraseInfo.length += mtdInfo.erasesize;
|
|
||||||
|
|
||||||
/* erase the chunk */
|
for (;;) {
|
||||||
if (ioctl (fd,MEMERASE,&mtdEraseInfo) < 0) {
|
/* buffer may contain data already (from trx check) */
|
||||||
fprintf(stderr, "Erasing mtd failed: %s\n", mtd);
|
r = buflen;
|
||||||
exit(1);
|
r += read(imagefd, buf + buflen, BUFSIZE - buflen);
|
||||||
}
|
w += r;
|
||||||
|
|
||||||
size = trxstat.st_size;
|
|
||||||
i = BUFSIZE;
|
|
||||||
written = 0;
|
|
||||||
|
|
||||||
while (size) {
|
/* EOF */
|
||||||
if (size < BUFSIZE) i = size;
|
if (r <= 0) break;
|
||||||
read(trxfd,src,i);
|
|
||||||
result = write(fd,src,i);
|
/* need to erase the next block before writing data to it */
|
||||||
if (i != result) {
|
while (w > e) {
|
||||||
if (result < 0) {
|
mtdEraseInfo.start = e;
|
||||||
fprintf(stderr,"Error while writing image");
|
mtdEraseInfo.length = mtdInfo.erasesize;
|
||||||
|
|
||||||
|
fprintf(stderr, "\b\b\b[e]");
|
||||||
|
/* erase the chunk */
|
||||||
|
if (ioctl (fd,MEMERASE,&mtdEraseInfo) < 0) {
|
||||||
|
fprintf(stderr, "Erasing mtd failed: %s\n", mtd);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
fprintf(stderr,"Error writing image");
|
e += mtdInfo.erasesize;
|
||||||
exit(1);
|
|
||||||
}
|
}
|
||||||
written += i;
|
|
||||||
size -= i;
|
fprintf(stderr, "\b\b\b[w]");
|
||||||
|
|
||||||
|
if ((result = write(fd, buf, r)) < r) {
|
||||||
|
if (result < 0) {
|
||||||
|
fprintf(stderr, "Error writing image.\n");
|
||||||
|
exit(1);
|
||||||
|
} else {
|
||||||
|
fprintf(stderr, "Insufficient space.\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
buflen = 0;
|
||||||
}
|
}
|
||||||
|
fprintf(stderr, "\b\b\b\b");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void usage(void)
|
void usage(void)
|
||||||
{
|
{
|
||||||
printf("Usage: mtd [<options> ...] <command> [<arguments> ...] <device>\n\n"
|
fprintf(stderr, "Usage: mtd [<options> ...] <command> [<arguments> ...] <device>\n\n"
|
||||||
"The device is in the format of mtdX (eg: mtd4) or its label.\n"
|
"The device is in the format of mtdX (eg: mtd4) or its label.\n"
|
||||||
"mtd recognizes these commands:\n"
|
"mtd recognizes these commands:\n"
|
||||||
" unlock unlock the device\n"
|
" unlock unlock the device\n"
|
||||||
" erase erase all data on device\n"
|
" erase erase all data on device\n"
|
||||||
" write <imagefile> write imagefile to device\n"
|
" write <imagefile>|- write <imagefile> (use - for stdin) to device\n"
|
||||||
"Following options are available:\n"
|
"Following options are available:\n"
|
||||||
" -r reboot after successful command\n"
|
" -r reboot after successful command\n"
|
||||||
" -f force write without trx checks\n"
|
" -f force write without trx checks\n"
|
||||||
" -e <device> erase <device> before executing the command\n\n"
|
" -e <device> erase <device> before executing the command\n\n"
|
||||||
"Example: To write linux.trx to mtd4 labeled as linux and reboot afterwards\n"
|
"Example: To write linux.trx to mtd4 labeled as linux and reboot afterwards\n"
|
||||||
" mtd -r write linux.trx linux\n\n");
|
" mtd -r write linux.trx linux\n\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
@ -294,8 +299,8 @@ void usage(void)
|
|||||||
|
|
||||||
int main (int argc, char **argv)
|
int main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
int ch, i, boot, unlock, trxfd, force;
|
int ch, i, boot, unlock, imagefd, force;
|
||||||
char *erase[MAX_ARGS], *device;
|
char *erase[MAX_ARGS], *device, *imagefile;
|
||||||
enum {
|
enum {
|
||||||
CMD_ERASE,
|
CMD_ERASE,
|
||||||
CMD_WRITE,
|
CMD_WRITE,
|
||||||
@ -305,6 +310,7 @@ int main (int argc, char **argv)
|
|||||||
erase[0] = NULL;
|
erase[0] = NULL;
|
||||||
boot = 0;
|
boot = 0;
|
||||||
force = 0;
|
force = 0;
|
||||||
|
buflen = 0;
|
||||||
|
|
||||||
while ((ch = getopt(argc, argv, "fre:")) != -1)
|
while ((ch = getopt(argc, argv, "fre:")) != -1)
|
||||||
switch (ch) {
|
switch (ch) {
|
||||||
@ -342,14 +348,37 @@ int main (int argc, char **argv)
|
|||||||
} else if ((strcmp(argv[0], "write") == 0) && (argc == 3)) {
|
} else if ((strcmp(argv[0], "write") == 0) && (argc == 3)) {
|
||||||
cmd = CMD_WRITE;
|
cmd = CMD_WRITE;
|
||||||
device = argv[2];
|
device = argv[2];
|
||||||
/* check trx file before erasing or writing anything */
|
|
||||||
trxfd = trx_check(argv[1], device, force);
|
if (strcmp(argv[1], "-") == 0) {
|
||||||
|
imagefile = "<stdin>";
|
||||||
|
imagefd = 0;
|
||||||
|
} else {
|
||||||
|
imagefile = argv[1];
|
||||||
|
if ((imagefd = open(argv[1], O_RDONLY)) < 0) {
|
||||||
|
fprintf(stderr, "Couldn't open image file: %s!\n", imagefile);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (system("grep Broadcom /proc/cpuinfo >&- >&-") != 0) {
|
||||||
|
/* check trx file before erasing or writing anything */
|
||||||
|
if (!trx_check(imagefd, device)) {
|
||||||
|
fprintf(stderr, "TRX check failed!\n");
|
||||||
|
if (!force)
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (!mtd_check(device)) {
|
||||||
|
fprintf(stderr, "Can't open device for writing!\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
usage();
|
usage();
|
||||||
}
|
}
|
||||||
|
|
||||||
sync();
|
sync();
|
||||||
|
|
||||||
i = 0;
|
i = 0;
|
||||||
while (erase[i] != NULL) {
|
while (erase[i] != NULL) {
|
||||||
mtd_unlock(erase[i]);
|
mtd_unlock(erase[i]);
|
||||||
@ -366,7 +395,9 @@ int main (int argc, char **argv)
|
|||||||
mtd_erase(device);
|
mtd_erase(device);
|
||||||
break;
|
break;
|
||||||
case CMD_WRITE:
|
case CMD_WRITE:
|
||||||
mtd_write(trxfd, device);
|
fprintf(stderr, "Writing from %s to %s ... ", imagefile, device);
|
||||||
|
mtd_write(imagefd, device);
|
||||||
|
fprintf(stderr, "\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user