int
seama_fix_md5(char *buf, size_t len)
{
- struct seama_hdr *shdr;
+ struct seama_hdr *shdr = (struct seama_hdr *) buf;
char *data;
size_t msize;
size_t isize;
if (len < sizeof(struct seama_hdr))
return -1;
- shdr = (struct seama_hdr *) buf;
- if (shdr->magic != htonl(SEAMA_MAGIC)) {
- fprintf(stderr, "no SEAMA header found\n");
- return -1;
- }
-
isize = ntohl(shdr->size);
msize = ntohs(shdr->metasize);
if (isize == 0) {
mtd_fixseama(const char *mtd, size_t offset)
{
int fd;
+ char *first_block;
char *buf;
ssize_t res;
size_t block_offset;
+ struct seama_hdr *shdr;
if (quiet < 2)
fprintf(stderr, "Trying to fix SEAMA header in %s at 0x%x...\n",
exit(1);
}
+ first_block = malloc(erasesize);
+ if (!first_block) {
+ perror("malloc");
+ exit(1);
+ }
+
+ res = pread(fd, first_block, erasesize, block_offset);
+ if (res != erasesize) {
+ perror("pread");
+ exit(1);
+ }
+
+ shdr = (struct seama_hdr *)first_block;
+ if (shdr->magic != htonl(SEAMA_MAGIC)) {
+ fprintf(stderr, "No SEAMA header found\n");
+ return -1;
+ }
+
buf = malloc(mtdsize);
if (!buf) {
perror("malloc");