summaryrefslogtreecommitdiffstats
path: root/rbutil/chinachippatcher/chinachip.c
blob: 79b5acad6652ddfe49e8ec2e8fd5d9e0c6d9915d (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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2009 by Maurus Cuelenaere
 *
 * 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 <stddef.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <time.h>
#include "chinachip.h"

/* From http://www.rockbox.org/wiki/ChinaChip */
struct header
{
    uint32_t signature;      /* WADF */
    uint32_t unk;
    int8_t   timestamp[12];  /* 200805081100 */
    uint32_t size;
    uint32_t checksum;
    uint32_t unk2;
    int8_t   identifier[32]; /* Chinachip PMP firmware V1.0 */
} __attribute__ ((packed));

static inline void int2le(unsigned char* addr, unsigned int val)
{
    addr[0] = val & 0xff;
    addr[1] = (val >> 8) & 0xff;
    addr[2] = (val >> 16) & 0xff;
    addr[3] = (val >> 24) & 0xff;
}

static inline unsigned int le2int(unsigned char* buf)
{
   return (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
}

static long int filesize(FILE* fd)
{
    long int len;
    fseek(fd, 0, SEEK_END);
    len = ftell(fd);
    fseek(fd, 0, SEEK_SET);
    return len;
}

#define FCLOSE(fd) fclose(fd); fd = NULL;
#define CCPMPBIN_HEADER_SIZE (sizeof(uint32_t)*2 + sizeof(uint8_t) + 9)
#define TOTAL_SIZE (fsize + CCPMPBIN_HEADER_SIZE + bsize)
enum cc_error chinachip_patch(const char* firmware, const char* bootloader,
                    const char* output, const char* ccpmp_backup)
{
    char header_time[13];
    time_t cur_time;
    struct tm* time_info;
    unsigned char* buf = NULL;
    FILE *fd = NULL, *bd = NULL, *od = NULL;
    unsigned int ccpmp_size = 0, i, fsize, bsize;
    signed int checksum = 0, ccpmp_pos;
    int result = E_OK;

    fd = fopen(firmware, "rb");
    if(!fd)
    {
        fprintf(stderr, "[ERR]  Can't open file %s!\n", firmware);
        result = E_OPEN_FIRMWARE;
        goto err;
    }
    bd = fopen(bootloader, "rb");
    if(!bd)
    {
        fprintf(stderr, "[ERR]  Can't open file %s!\n", bootloader);
        result = E_OPEN_BOOTLOADER;
        goto err;
    }

    bsize = filesize(bd);
    fprintf(stderr, "[INFO] Bootloader size is %d bytes\n", bsize);
    FCLOSE(bd);

    fsize = filesize(fd);
    fprintf(stderr, "[INFO] Firmware size is %d bytes\n", fsize);

    buf = malloc(TOTAL_SIZE);
    if(buf == NULL)
    {
        fprintf(stderr, "[ERR]  Can't allocate %d bytes!\n", fsize);
        result = E_MEMALLOC;
        goto err;
    }
    memset(buf, 0, TOTAL_SIZE);

    fprintf(stderr, "[INFO] Reading %s into memory...\n", firmware);
    if(fread(buf, fsize, 1, fd) != 1)
    {
        fprintf(stderr, "[ERR]  Can't read file %s to memory!\n", firmware);
        result = E_LOAD_FIRMWARE;
        goto err;
    }
    FCLOSE(fd);

    if(memcmp(buf, "WADF", 4))
    {
        fprintf(stderr, "[ERR]  File %s isn't a valid ChinaChip firmware!\n", firmware);
        result = E_INVALID_FILE;
        goto err;
    }

    ccpmp_pos = -1, i = 0x40;
    do
    {
        int filenamesize = le2int(&buf[i]);
        i += sizeof(uint32_t);

        if(!strncmp((char*) &buf[i], "ccpmp.bin", 9))
        {
            ccpmp_pos = i;
            ccpmp_size = le2int(&buf[i + sizeof(uint8_t) + filenamesize]);
        }
        else
            i += filenamesize + le2int(&buf[i + sizeof(uint8_t) + filenamesize])
                 + sizeof(uint32_t) + sizeof(uint8_t);
    } while(ccpmp_pos < 0 && i < fsize);

    if(i >= fsize)
    {
        fprintf(stderr, "[ERR]  Couldn't find ccpmp.bin in %s!\n", firmware);
        result = E_NO_CCPMP;
        goto err;
    }
    fprintf(stderr, "[INFO] Found ccpmp.bin at %d bytes\n", ccpmp_pos);

    if(ccpmp_backup)
    {
        int ccpmp_data_pos = ccpmp_pos + 9;
        bd = fopen(ccpmp_backup, "wb");
        if(!bd)
        {
            fprintf(stderr, "[ERR]  Can't open file %s!\n", ccpmp_backup);
            result = E_OPEN_BACKUP;
            goto err;
        }

        fprintf(stderr, "[INFO] Writing %d bytes to %s...\n", ccpmp_size, ccpmp_backup);
        if(fwrite(&buf[ccpmp_data_pos], ccpmp_size, 1, bd) != 1)
        {
            fprintf(stderr, "[ERR]  Can't write to file %s!\n", ccpmp_backup);
            result = E_WRITE_BACKUP;
            goto err;
        }
        FCLOSE(bd);
    }

    fprintf(stderr, "[INFO] Renaming it to ccpmp.old...\n");
    buf[ccpmp_pos + 6] = 'o';
    buf[ccpmp_pos + 7] = 'l';
    buf[ccpmp_pos + 8] = 'd';

    bd = fopen(bootloader, "rb");
    if(!bd)
    {
        fprintf(stderr, "[ERR]  Can't open file %s!\n", bootloader);
        result = E_OPEN_BOOTLOADER;
        goto err;
    }

    /* Also include path size */
    ccpmp_pos -= sizeof(uint32_t);

    fprintf(stderr, "[INFO] Making place for ccpmp.bin...\n");
    memmove(&buf[ccpmp_pos + bsize + CCPMPBIN_HEADER_SIZE],
            &buf[ccpmp_pos], fsize - ccpmp_pos);

    fprintf(stderr, "[INFO] Reading %s into memory...\n", bootloader);
    if(fread(&buf[ccpmp_pos + CCPMPBIN_HEADER_SIZE],
             bsize, 1, bd) != 1)
    {
        fprintf(stderr, "[ERR]  Can't read file %s to memory!\n", bootloader);
        result = E_LOAD_BOOTLOADER;
        goto err;
    }
    FCLOSE(bd);

    fprintf(stderr, "[INFO] Adding header to %s...\n", bootloader);
    int2le(&buf[ccpmp_pos            ], 9);                     /* Pathname Size */
    memcpy(&buf[ccpmp_pos + 4        ], "ccpmp.bin", 9);        /* Pathname */
    memset(&buf[ccpmp_pos + 4 + 9    ], 0x20, sizeof(uint8_t)); /* File Type */
    int2le(&buf[ccpmp_pos + 4 + 9 + 1], bsize);                 /* File Size */

    time(&cur_time);
    time_info = localtime(&cur_time);
    if(time_info == NULL)
    {
        fprintf(stderr, "[ERR]  Can't obtain current time!\n");
        result = E_GET_TIME;
        goto err;
    }

    snprintf(header_time, 13, "%04d%02d%02d%02d%02d", time_info->tm_year + 1900,
                                              time_info->tm_mon,
                                              time_info->tm_mday,
                                              time_info->tm_hour,
                                              time_info->tm_min);

    fprintf(stderr, "[INFO] Computing checksum...\n");
    for(i = sizeof(struct header); i < TOTAL_SIZE; i+=4)
        checksum += le2int(&buf[i]);

    fprintf(stderr, "[INFO] Updating main header...\n");
    memcpy(&buf[offsetof(struct header, timestamp)], header_time, 12);
    int2le(&buf[offsetof(struct header, size)     ], TOTAL_SIZE);
    int2le(&buf[offsetof(struct header, checksum) ], checksum);

    od = fopen(output, "wb");
    if(!od)
    {
        fprintf(stderr, "[ERR]  Can't open file %s!\n", output);
        result = E_OPEN_OUTFILE;
        goto err;
    }

    fprintf(stderr, "[INFO] Writing output to %s...\n", output);
    if(fwrite(buf, TOTAL_SIZE, 1, od) != 1)
    {
        fprintf(stderr, "[ERR]  Can't write to file %s!\n", output);
        result = E_WRITE_OUTFILE;
        goto err;
    }

err:
    if(buf)
        free(buf);
    if(fd)
        fclose(fd);
    if(bd)
        fclose(bd);
    if(od)
        fclose(od);

    return result;
}