-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbinary_update.c
More file actions
295 lines (227 loc) · 8.65 KB
/
binary_update.c
File metadata and controls
295 lines (227 loc) · 8.65 KB
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
/****************************************************************************
*
* Copyright (c) 2021 - 2022 IMProject Development Team. All rights reserved.
* Authors: Igor Misic <igy1000mb@gmail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name IMProject nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
****************************************************************************/
#include "utils.h"
#include "binary_update.h"
#include "flash_adapter.h"
#include "security.h"
#include "signature.h"
__attribute__ ((section(".restart_info")))
volatile bootInfo_S boot_info; //!< Instruction on where to jump after the restart
static uintptr_t s_address; //!< Address from where to erase flash and write binary
static signatureType_E s_detected_binary; //!< Detected binary
static bool BinaryUpdate_writeToFlash(uint8_t* write_buffer, const uint32_t data_length);
static bool BinaryUpdate_writeToRam(uint8_t* write_buffer, const uint32_t data_length);
bool
BinaryUpdate_handleDetectedBinary(signatureType_E detected_binary) {
bool success = true;
s_detected_binary = detected_binary;
switch (detected_binary) {
case signatureType_FIRMWARE_FLASH:
s_address = FLASH_FIRMWARE_ADDRESS;
break;
case signatureType_BOOTLOADER_FLASH:
s_address = FLASH_BOOTLOADER_ADDRESS;
break;
case signatureType_FIRMWARE_RAM:
case signatureType_BOOTLOADER_RAM:
s_address = RAM_FIRMWARE_ADDRESS;
break;
case signatureType_UNKNOWN:
//we support unsigned binary but handle it as firmware for flash
success = false;
s_address = FLASH_FIRMWARE_ADDRESS;
break;
default:
break;
}
return success;
}
void
BinaryUpdate_handleBootInfo(void) {
switch (boot_info.jump_address) {
case FLASH_FIRMWARE_ADDRESS:
case FLASH_BOOTLOADER_ADDRESS:
case RAM_FIRMWARE_ADDRESS:
break;
default:
boot_info.jump_address = FLASH_FIRMWARE_ADDRESS;
boot_info.skip_bl_loop = false;
break;
}
}
uint32_t
BinaryUpdate_getJumpAddress(void) {
return boot_info.jump_address;
}
void
BinaryUpdate_resetJumpAddress(void) {
boot_info.jump_address = signatureType_FIRMWARE_FLASH;;
}
bool
BinaryUpdate_checkSkipLoopFlag(void) {
return boot_info.skip_bl_loop;
}
void
BinaryUpdate_disableLoopFlag(void) {
boot_info.skip_bl_loop = false;
}
bool
BinaryUpdate_erase(uint32_t firmware_size) {
bool success = true;
switch (s_detected_binary) {
case signatureType_FIRMWARE_FLASH:
success = FlashAdapter_erase(firmware_size, s_address);
break;
case signatureType_BOOTLOADER_FLASH:
if (boot_info.jump_address == RAM_FIRMWARE_ADDRESS) {
//Only allowed to erase if RAM version is running
success = FlashAdapter_erase(firmware_size, s_address);
}
break;
case signatureType_FIRMWARE_RAM:
case signatureType_BOOTLOADER_RAM:
break;
case signatureType_UNKNOWN:
success = FlashAdapter_erase(firmware_size, s_address);
break;
default:
break;
}
return success;
}
bool
BinaryUpdate_write(uint8_t* write_buffer, const uint32_t packet_length) {
bool success = true;
uint32_t data_length = packet_length;
uint8_t* data = write_buffer;
bool is_secured = Security_isSecured();
if (is_secured) {
success = false;
uint32_t data_length = packet_length - (MAC_SIZE + NONCE_SIZE);
if (data_length > 0U) {
uint8_t mac[MAC_SIZE];
uint8_t nonce[NONCE_SIZE];
uint8_t encrypted_data[DATA_SIZE];
uint8_t decrypted_data[DATA_SIZE];
Utils_DeserializeBlobLE(&(write_buffer[0]), mac, MAC_SIZE);
Utils_DeserializeBlobLE(&(write_buffer[MAC_SIZE]), nonce, NONCE_SIZE);
Utils_DeserializeBlobLE(&(write_buffer[MAC_SIZE + NONCE_SIZE]), encrypted_data, data_length);
success = Security_decrypt(mac, nonce, encrypted_data, decrypted_data, data_length);
if (success) {
data = decrypted_data;
}
}
}
if (success) {
switch (s_detected_binary) {
case signatureType_FIRMWARE_FLASH:
case signatureType_BOOTLOADER_FLASH:
case signatureType_UNKNOWN:
success = BinaryUpdate_writeToFlash(data, data_length);
break;
case signatureType_FIRMWARE_RAM:
case signatureType_BOOTLOADER_RAM:
success = BinaryUpdate_writeToRam(data, data_length);
break;
default:
success = false;
break;
}
}
return success;
}
bool
BinaryUpdate_finish(void) {
bool success = true;
bool is_secured = Security_isSecured();
if (is_secured) {
Security_wipeKeys();
}
switch (s_detected_binary) {
case signatureType_FIRMWARE_FLASH:
boot_info.jump_address = FLASH_FIRMWARE_ADDRESS;
boot_info.skip_bl_loop = false;
success = FlashAdapter_finish();
break;
case signatureType_FIRMWARE_RAM:
boot_info.jump_address = RAM_FIRMWARE_ADDRESS;
boot_info.skip_bl_loop = false;
break;
case signatureType_BOOTLOADER_FLASH:
boot_info.jump_address = FLASH_FIRMWARE_ADDRESS;
boot_info.skip_bl_loop = false;
break;
case signatureType_BOOTLOADER_RAM:
boot_info.jump_address = RAM_FIRMWARE_ADDRESS;
boot_info.skip_bl_loop = true;
break;
case signatureType_UNKNOWN:
boot_info.jump_address = FLASH_FIRMWARE_ADDRESS;
boot_info.skip_bl_loop = false;
success = FlashAdapter_finish();
break;
default:
break;
}
return success;
}
bool
BinaryUpdate_writeToFlash(uint8_t* write_buffer, const uint32_t data_length) {
bool success = false;
success = FlashAdapter_program((uint32_t)s_address, write_buffer, data_length);
if (success) {
// cppcheck-suppress misra-c2012-18.8;
uint8_t readout_buffer[data_length];
success = FlashAdapter_readBytes((uint32_t)s_address, readout_buffer, data_length);
if (success) {
for (uint32_t i = 0U; (success) && (i < data_length); ++i) {
if (write_buffer[i] != readout_buffer[i]) {
success = false;
}
}
}
}
s_address += data_length;
return success;
}
bool
BinaryUpdate_writeToRam(uint8_t* write_buffer, const uint32_t data_length) {
bool success = false;
memcpy ((void*)s_address, write_buffer, data_length);
if (0 == memcmp ((void*)s_address, write_buffer, data_length)) {
success = true;
s_address += data_length;
}
return success;
}