summaryrefslogtreecommitdiffstats
path: root/utils/jz4740_tools/IHFSsplit.c
blob: ad62d81daf4f7e38814b4b6aa06b8457289768eb (plain)
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
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2008 by William Poetra Yoga Hadisoeseno 
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#include <libgen.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>

void usage()
{
    fprintf(stderr, "usage: IHFSsplit <ihfs_img> <output_dir>\n");
    exit(1);
}

typedef struct {
    uint32_t signature;
    uint32_t fslen;
    uint32_t unknown1;
    uint32_t unknown2;
    char timestamp[12];
    uint32_t numfiles;
    char zeros[476];
    uint32_t marker;
} ihfs_header_t;

#define MAX_FILES 2048
#define MAX_IHFS_PATH 56

typedef struct {
    struct {
        char fullpath[MAX_IHFS_PATH];
        uint32_t sector;
        uint32_t length;
    } files[MAX_FILES];
} ihfs_file_table_t;

#define SECTOR_SIZE 512

int ihfs_sanity(const int ihfs_img)
{
    struct stat statbuf;
    ihfs_header_t ihfs_hdr;

    printf("starting sanity check for IHFS image...\n");

    lseek(ihfs_img, 0, SEEK_SET);
    read(ihfs_img, &ihfs_hdr, sizeof (ihfs_hdr));

    printf("  checking for IHFS signature...\n");
    if (ihfs_hdr.signature != 0x49484653)
        return 1;

    printf("  checking for FS length...\n");
    fstat(ihfs_img, &statbuf);
    if (ihfs_hdr.fslen * SECTOR_SIZE != statbuf.st_size)
        return 1;

    printf("  checking for unknown value 1...\n");
    if (ihfs_hdr.unknown1 != 0x00000004)
        return 1;

    printf("  checking for unknown value 2...\n");
    if (ihfs_hdr.unknown2 != 0xfffff000)
        return 1;

    printf("  checking for number of files...\n");
    if (ihfs_hdr.numfiles > MAX_FILES)
        return 1;

    printf("  checking for marker...\n");
    if (ihfs_hdr.marker != 0x55aa55aa)
        return 1;

    return 0;
}

void mkdir_p(const char *path)
{
    char *dir;

    dir = dirname(strdup(path));
    if (strchr(dir, '/'))
        mkdir_p(dir);

#ifdef _WIN32
    mkdir(dir);
#else
    mkdir(dir, 0755);
#endif
}

#define BUF_SIZE 4096

void outputfile(const char *outpath, const int ihfs_img, const int offset, const int length)
{
    int outfd;
    int i, rem;
    char buf[BUF_SIZE];

    lseek(ihfs_img, offset, SEEK_SET);

    outfd = creat(outpath, 0644);

    for (i = 0; i < length / BUF_SIZE; ++i) {
        read(ihfs_img, buf, BUF_SIZE);
        write(outfd, buf, BUF_SIZE);
    }
    rem = length - i * BUF_SIZE;
    if (rem > 0) {
        read(ihfs_img, buf, rem);
        write(outfd, buf, rem);
    }

    close(outfd);
}

int main(int argc, char **argv)
{
    struct stat statbuf;
    int ihfs_img;
    ihfs_header_t ihfs_hdr;
    ihfs_file_table_t ihfs_ftbl;
    int i, j;
    char *outpath, *base_path, ihfs_path[MAX_IHFS_PATH+1];

    /* check the arguments */

    if (argc != 3)
        usage();

    stat(argv[1], &statbuf);
    if (!S_ISREG(statbuf.st_mode))
        usage();

    stat(argv[2], &statbuf);
    if (!S_ISDIR(statbuf.st_mode))
        usage();

    /* check the file, then split */

    ihfs_img = open(argv[1], O_RDONLY);

    if (ihfs_sanity(ihfs_img)) {
        printf("Non-IHFS format!\n");
        return 1;
    } else
        printf("sanity check OK\n");

    lseek(ihfs_img, 0, SEEK_SET);
    read(ihfs_img, &ihfs_hdr, sizeof (ihfs_hdr));
    lseek(ihfs_img, 4 * SECTOR_SIZE, SEEK_SET);
    read(ihfs_img, &ihfs_ftbl, sizeof (ihfs_ftbl));

    base_path = strdup(argv[2]);
    outpath = malloc(strlen(base_path) + 1 + MAX_IHFS_PATH + 1);
    for (i = 0; i < ihfs_hdr.numfiles; ++i) {
        printf("\n");
        printf("pathname: %s\n", ihfs_ftbl.files[i].fullpath);
        printf("starts at sector %d, length is %d bytes\n", ihfs_ftbl.files[i].sector, ihfs_ftbl.files[i].length);

        strncpy(ihfs_path, ihfs_ftbl.files[i].fullpath, MAX_IHFS_PATH);
        ihfs_path[MAX_IHFS_PATH] = '\0';
        for (j = 0; j < strlen(ihfs_path); ++j)
            if (ihfs_path[j] == '\\')
                ihfs_path[j] = '/';

        sprintf(outpath, "%s/%s", base_path, ihfs_path);
        mkdir_p(outpath);
        outputfile(outpath, ihfs_img, ihfs_ftbl.files[i].sector * SECTOR_SIZE, ihfs_ftbl.files[i].length);
    }
    free(outpath);

    close(ihfs_img);

    return 0;
}