Skip to content

Commit a7d34ca

Browse files
oyvindronningstadd3zd3z
authored andcommitted
boot_serial: Upgrade from cddl-gen 0.1.0 to zcbor 0.4.0
cddl-gen has been renamed to zcbor. Update regenerate_serial_recovery_cbor.sh and regenerate/recopy all files. Remove the submodule in ext/ since it is no longer necessary when the zcbor package is installed (only needed for regeneration, not for building). Signed-off-by: Øyvind Rønningstad <oyvind.ronningstad@nordicsemi.no>
1 parent 35f61d3 commit a7d34ca

23 files changed

+2968
-1930
lines changed

.gitmodules

-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
[submodule "boot/cypress/libs/cy-mbedtls-acceleration"]
2020
path = boot/cypress/libs/cy-mbedtls-acceleration
2121
url = https://github.com/cypresssemiconductorco/cy-mbedtls-acceleration.git
22-
[submodule "ext/cddl-gen"]
23-
path = ext/cddl-gen
24-
url = https://github.com/NordicSemiconductor/cddl-gen.git
2522
[submodule "boot/espressif/hal/esp-idf"]
2623
path = boot/espressif/hal/esp-idf
2724
url = https://github.com/espressif/esp-idf.git

.mbedignore

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ samples/*
1111
scripts/*
1212
sim/*
1313
testplan/*
14-
ext/cddl_gen/*
1514
ext/fiat/*
1615
ext/mbedtls/*
1716
ext/mbedtls-asn1/*

boot/boot_serial/src/boot_serial.c

+37-39
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include "sysflash/sysflash.h"
2626

2727
#include "bootutil/bootutil_log.h"
28-
#include "cbor_encode.h"
28+
#include "zcbor_encode.h"
2929

3030
#ifdef __ZEPHYR__
3131
#include <sys/reboot.h>
@@ -99,17 +99,12 @@ static char bs_obuf[BOOT_SERIAL_OUT_MAX];
9999

100100
static void boot_serial_output(void);
101101

102-
static cbor_state_backups_t dummy_backups;
103-
static cbor_state_t cbor_state = {
104-
.backups = &dummy_backups
105-
};
102+
static zcbor_state_t cbor_state[2];
106103

107104
void reset_cbor_state(void)
108105
{
109-
cbor_state.payload_mut = (uint8_t *)bs_obuf;
110-
cbor_state.payload_end = (const uint8_t *)bs_obuf
111-
+ sizeof(bs_obuf);
112-
cbor_state.elem_count = 0;
106+
zcbor_new_encode_state(cbor_state, 2, (uint8_t *)bs_obuf,
107+
(size_t)bs_obuf + sizeof(bs_obuf), 0);
113108
}
114109

115110
/**
@@ -126,7 +121,7 @@ void reset_cbor_state(void)
126121
*/
127122
extern int bs_peruser_system_specific(const struct nmgr_hdr *hdr,
128123
const char *buffer,
129-
int len, cbor_state_t *cs);
124+
int len, zcbor_state_t *cs);
130125

131126
/*
132127
* Convert version into string without use of snprintf().
@@ -157,6 +152,9 @@ u32toa(char *tgt, uint32_t val)
157152
return dst - tgt;
158153
}
159154

155+
#define zcbor_tstr_put_lit_cast(state, string) \
156+
zcbor_tstr_encode_ptr(state, (uint8_t *)string, sizeof(string) - 1)
157+
160158
/*
161159
* dst has to be able to fit "255.255.65535.4294967295" (25 characters).
162160
*/
@@ -186,9 +184,9 @@ bs_list(char *buf, int len)
186184
const struct flash_area *fap;
187185
uint8_t image_index;
188186

189-
map_start_encode(&cbor_state, 1);
190-
tstrx_put(&cbor_state, "images");
191-
list_start_encode(&cbor_state, 5);
187+
zcbor_map_start_encode(cbor_state, 1);
188+
zcbor_tstr_put_lit_cast(cbor_state, "images");
189+
zcbor_list_start_encode(cbor_state, 5);
192190
image_index = 0;
193191
IMAGES_ITER(image_index) {
194192
for (slot = 0; slot < 2; slot++) {
@@ -235,24 +233,24 @@ bs_list(char *buf, int len)
235233
continue;
236234
}
237235

238-
map_start_encode(&cbor_state, 20);
236+
zcbor_map_start_encode(cbor_state, 20);
239237

240238
#if (BOOT_IMAGE_NUMBER > 1)
241-
tstrx_put(&cbor_state, "image");
242-
uintx32_put(&cbor_state, image_index);
239+
zcbor_tstr_put_lit_cast(cbor_state, "image");
240+
zcbor_uint32_put(cbor_state, image_index);
243241
#endif
244242

245-
tstrx_put(&cbor_state, "slot");
246-
uintx32_put(&cbor_state, slot);
247-
tstrx_put(&cbor_state, "version");
243+
zcbor_tstr_put_lit_cast(cbor_state, "slot");
244+
zcbor_uint32_put(cbor_state, slot);
245+
zcbor_tstr_put_lit_cast(cbor_state, "version");
248246

249247
bs_list_img_ver((char *)tmpbuf, sizeof(tmpbuf), &hdr.ih_ver);
250-
tstrx_put_term(&cbor_state, (char *)tmpbuf);
251-
map_end_encode(&cbor_state, 20);
248+
zcbor_tstr_encode_ptr(cbor_state, tmpbuf, strlen((char *)tmpbuf));
249+
zcbor_map_end_encode(cbor_state, 20);
252250
}
253251
}
254-
list_end_encode(&cbor_state, 5);
255-
map_end_encode(&cbor_state, 1);
252+
zcbor_list_end_encode(cbor_state, 5);
253+
zcbor_map_end_encode(cbor_state, 1);
256254
boot_serial_output();
257255
}
258256

@@ -289,15 +287,15 @@ bs_upload(char *buf, int len)
289287
*/
290288

291289
struct Upload upload;
292-
uint32_t decoded_len;
293-
bool result = cbor_decode_Upload((const uint8_t *)buf, len, &upload, &decoded_len);
290+
size_t decoded_len;
291+
uint_fast8_t result = cbor_decode_Upload((const uint8_t *)buf, len, &upload, &decoded_len);
294292

295-
if (!result || (len != decoded_len)) {
293+
if ((result != ZCBOR_SUCCESS) || (len != decoded_len)) {
296294
goto out_invalid_data;
297295
}
298296

299297
for (int i = 0; i < upload._Upload_members_count; i++) {
300-
struct Member_ *member = &upload._Upload_members[i];
298+
struct Member_ *member = &upload._Upload_members[i]._Upload_members;
301299
switch(member->_Member_choice) {
302300
case _Member_image:
303301
img_num = member->_Member_image;
@@ -458,14 +456,14 @@ bs_upload(char *buf, int len)
458456

459457
out:
460458
BOOT_LOG_INF("RX: 0x%x", rc);
461-
map_start_encode(&cbor_state, 10);
462-
tstrx_put(&cbor_state, "rc");
463-
uintx32_put(&cbor_state, rc);
459+
zcbor_map_start_encode(cbor_state, 10);
460+
zcbor_tstr_put_lit_cast(cbor_state, "rc");
461+
zcbor_uint32_put(cbor_state, rc);
464462
if (rc == 0) {
465-
tstrx_put(&cbor_state, "off");
466-
uintx32_put(&cbor_state, curr_off);
463+
zcbor_tstr_put_lit_cast(cbor_state, "off");
464+
zcbor_uint32_put(cbor_state, curr_off);
467465
}
468-
map_end_encode(&cbor_state, 10);
466+
zcbor_map_end_encode(cbor_state, 10);
469467

470468
boot_serial_output();
471469
flash_area_close(fap);
@@ -484,10 +482,10 @@ bs_upload(char *buf, int len)
484482
static void
485483
bs_rc_rsp(int rc_code)
486484
{
487-
map_start_encode(&cbor_state, 10);
488-
tstrx_put(&cbor_state, "rc");
489-
uintx32_put(&cbor_state, rc_code);
490-
map_end_encode(&cbor_state, 10);
485+
zcbor_map_start_encode(cbor_state, 10);
486+
zcbor_tstr_put_lit_cast(cbor_state, "rc");
487+
zcbor_uint32_put(cbor_state, rc_code);
488+
zcbor_map_end_encode(cbor_state, 10);
491489
boot_serial_output();
492490
}
493491

@@ -605,7 +603,7 @@ boot_serial_input(char *buf, int len)
605603
break;
606604
}
607605
} else if (MCUBOOT_PERUSER_MGMT_GROUP_ENABLED == 1) {
608-
if (bs_peruser_system_specific(hdr, buf, len, &cbor_state) == 0) {
606+
if (bs_peruser_system_specific(hdr, buf, len, cbor_state) == 0) {
609607
boot_serial_output();
610608
}
611609
} else {
@@ -628,7 +626,7 @@ boot_serial_output(void)
628626
char encoded_buf[BASE64_ENCODE_SIZE(sizeof(buf))];
629627

630628
data = bs_obuf;
631-
len = (uint32_t)cbor_state.payload_mut - (uint32_t)bs_obuf;
629+
len = (uint32_t)cbor_state->payload_mut - (uint32_t)bs_obuf;
632630

633631
bs_hdr->nh_op++;
634632
bs_hdr->nh_flags = 0;

boot/boot_serial/src/cbor_common.c

-125
This file was deleted.

0 commit comments

Comments
 (0)