lib3ddevil1/main.c

128 lines
3.6 KiB
C
Raw Normal View History

#include "devil1pld.h"
#include <stdbool.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
2018-04-02 07:44:58 +05:30
bool writedata(const char *basename,
unsigned int id,
const char *data,
unsigned int dsize) {
bool status = false;
char *fn = (char*)malloc(sizeof(char) * strlen(basename) + 4);
sprintf(fn, "%s_%d", basename, id);
FILE *out = fopen(fn, "w");
if (out != NULL) {
fwrite(data, sizeof(char), dsize, out);
fclose(out);
status = true;
}
free(fn);
return status;
}
2018-04-02 11:54:14 +05:30
void splitpld(const char *buffer,
const struct PldHeader *ph,
2018-04-02 07:44:58 +05:30
const char *name,
unsigned int s) {
char *wbuffer = NULL; // write buffer that will change.
unsigned int wsize = 0; // size of wbuffer.
unsigned int i;
2018-04-02 07:44:58 +05:30
unsigned int start = 0; // ending offset for data
unsigned int end = 0; // ending offset for data
for (i = 0; (i + 1) < (ph -> numOffset) + 1; i++) {
start = ph -> offsets[i];
// the last offset still has some data until the end of file
end = (i == (ph -> numOffset) - 1) ? s : ph -> offsets[i + 1];
// copy sector to write buffer
2018-04-02 07:44:58 +05:30
wsize = end - start;
wbuffer = (char*)malloc(sizeof(char) * wsize);
2018-04-02 07:44:58 +05:30
memcpy(wbuffer, buffer + start, wsize);
// create a file.
2018-04-02 07:44:58 +05:30
writedata(name, i, wbuffer, wsize);
}
free(wbuffer);
}
2018-04-02 11:54:14 +05:30
void showpldh(struct PldHeader *x) {
printf("number of offsets = %i\n", x -> numOffset);
unsigned int i;
for (i = 0; i < x -> numOffset; i++) {
printf("offset %i = %x\n", i, x -> offsets[i]);
}
}
2018-04-02 11:54:14 +05:30
struct PldHeader *getpldh(const char *buffer) {
2018-04-02 05:49:39 +05:30
if (buffer == NULL) {
return NULL;
2018-04-02 05:49:39 +05:30
}
int32_t *n = (int32_t*)buffer;
struct PldHeader *ph = (struct PldHeader*)malloc(
sizeof(struct PldHeader)
);
uint32_t size_offsets = sizeof(uint32_t) * n[0];
ph -> offsets = (uint32_t*)malloc(size_offsets);
if (ph -> offsets == NULL) {
perror("Error 4: ");
free(ph);
free(ph -> offsets);
return NULL;
}
// set data of struct.
ph -> numOffset = n[0];
memcpy(ph -> offsets, buffer + sizeof(int32_t), size_offsets);
return ph;
}
2018-04-02 11:54:14 +05:30
char *loadfile(const char *fname, unsigned int *s) {
FILE *f = fopen(fname, "rb");
unsigned int size = 0; // number of elements to buffer;
unsigned int rcnt = 0; // number of char's read by fread(...)
if (f == NULL) {
perror("Error 1: ");
return NULL;
}
// this method of determining file size doesn't work until 2 GB.
fseek(f, 0, SEEK_END);
size = ftell(f);
rewind(f);
char *buf = (char*)malloc(sizeof(char) * size);
2018-04-02 05:49:39 +05:30
if (buf == NULL) {
perror("Error 2: ");
2018-04-02 05:49:39 +05:30
free(buf);
return NULL;
}
2018-04-02 05:49:39 +05:30
rcnt = fread(buf, sizeof(char), size, f);
if (rcnt < size) {
perror("Error 3: ");
2018-04-02 05:49:39 +05:30
free(buf);
return NULL;
}
fclose(f);
2018-04-02 07:44:58 +05:30
*s = rcnt;
return buf;
}
2018-04-02 11:54:14 +05:30
bool unpackpld (const char *filename) {
bool status = false;
2018-04-02 07:44:58 +05:30
unsigned int fsize = 0;
2018-04-02 11:54:14 +05:30
char *filedata = loadfile(filename, &fsize);
2018-04-02 07:44:58 +05:30
printf("fsize is %i\n", fsize);
if (filedata != NULL && fsize != 0) {
2018-04-02 11:54:14 +05:30
struct PldHeader *pldh = getpldh(filedata);
splitpld(filedata, pldh, filename, fsize);
free(pldh -> offsets);
free(pldh);
2018-04-02 11:54:14 +05:30
status = true;
}
2018-04-02 05:49:39 +05:30
free(filedata);
2018-04-02 11:54:14 +05:30
return status;
}
int main(int argc, char ** argv) {
char *f = argv[1];
unpackpld(f);
return 0;
}