summaryrefslogtreecommitdiffstats
path: root/rbutil/rbutilqt/base/bootloaderinstalltcc.cpp
blob: 1551d7c45d8b5e9a3e62f136f5747904cdc4d7a7 (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
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 *
 *   Copyright (C) 2009 by Tomer Shalev
 *
 * All files in this archive are subject to the GNU General Public License.
 * See the file COPYING in the source tree root for full license agreement.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 * This file is a modified version of the AMS installer by Dominik Wenger
 *
 ****************************************************************************/

#include <QtCore>
#include "bootloaderinstallbase.h"
#include "bootloaderinstalltcc.h"
#include "../mktccboot/mktccboot.h"

BootloaderInstallTcc::BootloaderInstallTcc(QObject *parent)
        : BootloaderInstallBase(parent)
{
}

QString BootloaderInstallTcc::ofHint()
{
    return tr("Bootloader installation requires you to provide "
              "a firmware file of the original firmware (bin file). "
              "You need to download this file yourself due to legal "
              "reasons. Please refer to the "
              "<a href='http://www.rockbox.org/manual.shtml'>manual</a> and the "
              "<a href='http://www.rockbox.org/wiki/CowonD2Info'>CowonD2Info</a> "
              "wiki page on how to obtain the file.<br/>"
              "Press Ok to continue and browse your computer for the firmware "
              "file.");
}

bool BootloaderInstallTcc::install(void)
{
    if(m_offile.isEmpty())
        return false;

    // Download firmware from server
    emit logItem(tr("Downloading bootloader file"), LOGINFO);

    connect(this, SIGNAL(downloadDone()), this, SLOT(installStage2()));
    downloadBlStart(m_blurl);

    return true;
}

void BootloaderInstallTcc::installStage2(void)
{
    unsigned char *of_buf, *boot_buf = nullptr, *patched_buf = nullptr;
    int n, of_size, boot_size, patched_size;
    char errstr[200];
    bool ret = false;

    m_tempfile.open();
    QString bootfile = m_tempfile.fileName();
    m_tempfile.close();

    /* Construct path for write out.
     * Combine path of m_blfile with filename from OF */
    QString outfilename = QFileInfo(m_blfile).absolutePath() + "/" +
        QFileInfo(m_offile).fileName();

    /* Write out file */
    QFile out(outfilename);

    /* Load original firmware file */
    of_buf = file_read(m_offile.toLocal8Bit().data(), &of_size);
    if (of_buf == nullptr)
    {
        emit logItem(errstr, LOGERROR);
        emit logItem(tr("Could not load %1").arg(m_offile), LOGERROR);
        goto exit;
    }

    /* A CRC test in order to reject non OF file */
    if (test_firmware_tcc(of_buf, of_size))
    {
        emit logItem(errstr, LOGERROR);
        emit logItem(tr("Unknown OF file used: %1").arg(m_offile), LOGERROR);
        goto exit;
    }

    /* Load bootloader file */
    boot_buf = file_read(bootfile.toLocal8Bit().data(), &boot_size);
    if (boot_buf == nullptr)
    {
        emit logItem(errstr, LOGERROR);
        emit logItem(tr("Could not load %1").arg(bootfile), LOGERROR);
        goto exit;
    }

    /* Patch the firmware */
    emit logItem(tr("Patching Firmware..."), LOGINFO);

    patched_buf = patch_firmware_tcc(of_buf, of_size, boot_buf, boot_size,
            &patched_size);
    if (patched_buf == nullptr)
    {
        emit logItem(errstr, LOGERROR);
        emit logItem(tr("Could not patch firmware"), LOGERROR);
        goto exit;
    }

    if(!out.open(QIODevice::WriteOnly | QIODevice::Truncate))
    {
        emit logItem(tr("Could not open %1 for writing").arg(m_blfile),
                LOGERROR);
        goto exit;
    }

    n = out.write((char*)patched_buf, patched_size);
    out.close();
    if (n != patched_size)
    {
        emit logItem(tr("Could not write firmware file"), LOGERROR);
        goto exit;
    }

    /* End of install */
    emit logItem(tr("Success: modified firmware file created"), LOGINFO);
    logInstall(LogAdd);

    ret = true;

exit:
    if (of_buf)
        free(of_buf);

    if (boot_buf)
        free(boot_buf);

    if (patched_buf)
        free(patched_buf);

    emit done(ret);
}

bool BootloaderInstallTcc::uninstall(void)
{
    emit logItem(tr("To uninstall, perform a normal upgrade with an unmodified original firmware"), LOGINFO);
    logInstall(LogRemove);
    emit done(true);
    return false;
}

BootloaderInstallBase::BootloaderType BootloaderInstallTcc::installed(void)
{
    return BootloaderUnknown;
}

BootloaderInstallBase::Capabilities BootloaderInstallTcc::capabilities(void)
{
    return (Install | NeedsOf);
}