25
25
#include "sysflash/sysflash.h"
26
26
27
27
#include "bootutil/bootutil_log.h"
28
- #include "cbor_encode .h"
28
+ #include "zcbor_encode .h"
29
29
30
30
#ifdef __ZEPHYR__
31
31
#include <sys/reboot.h>
@@ -99,17 +99,12 @@ static char bs_obuf[BOOT_SERIAL_OUT_MAX];
99
99
100
100
static void boot_serial_output (void );
101
101
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 ];
106
103
107
104
void reset_cbor_state (void )
108
105
{
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 );
113
108
}
114
109
115
110
/**
@@ -126,7 +121,7 @@ void reset_cbor_state(void)
126
121
*/
127
122
extern int bs_peruser_system_specific (const struct nmgr_hdr * hdr ,
128
123
const char * buffer ,
129
- int len , cbor_state_t * cs );
124
+ int len , zcbor_state_t * cs );
130
125
131
126
/*
132
127
* Convert version into string without use of snprintf().
@@ -157,6 +152,9 @@ u32toa(char *tgt, uint32_t val)
157
152
return dst - tgt ;
158
153
}
159
154
155
+ #define zcbor_tstr_put_lit_cast (state , string ) \
156
+ zcbor_tstr_encode_ptr(state, (uint8_t *)string, sizeof(string) - 1)
157
+
160
158
/*
161
159
* dst has to be able to fit "255.255.65535.4294967295" (25 characters).
162
160
*/
@@ -186,9 +184,9 @@ bs_list(char *buf, int len)
186
184
const struct flash_area * fap ;
187
185
uint8_t image_index ;
188
186
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 );
192
190
image_index = 0 ;
193
191
IMAGES_ITER (image_index ) {
194
192
for (slot = 0 ; slot < 2 ; slot ++ ) {
@@ -235,24 +233,24 @@ bs_list(char *buf, int len)
235
233
continue ;
236
234
}
237
235
238
- map_start_encode ( & cbor_state , 20 );
236
+ zcbor_map_start_encode ( cbor_state , 20 );
239
237
240
238
#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 );
243
241
#endif
244
242
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" );
248
246
249
247
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 );
252
250
}
253
251
}
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 );
256
254
boot_serial_output ();
257
255
}
258
256
@@ -289,15 +287,15 @@ bs_upload(char *buf, int len)
289
287
*/
290
288
291
289
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 );
294
292
295
- if (! result || (len != decoded_len )) {
293
+ if (( result != ZCBOR_SUCCESS ) || (len != decoded_len )) {
296
294
goto out_invalid_data ;
297
295
}
298
296
299
297
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 ;
301
299
switch (member -> _Member_choice ) {
302
300
case _Member_image :
303
301
img_num = member -> _Member_image ;
@@ -458,14 +456,14 @@ bs_upload(char *buf, int len)
458
456
459
457
out :
460
458
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 );
464
462
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 );
467
465
}
468
- map_end_encode ( & cbor_state , 10 );
466
+ zcbor_map_end_encode ( cbor_state , 10 );
469
467
470
468
boot_serial_output ();
471
469
flash_area_close (fap );
@@ -484,10 +482,10 @@ bs_upload(char *buf, int len)
484
482
static void
485
483
bs_rc_rsp (int rc_code )
486
484
{
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 );
491
489
boot_serial_output ();
492
490
}
493
491
@@ -605,7 +603,7 @@ boot_serial_input(char *buf, int len)
605
603
break ;
606
604
}
607
605
} 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 ) {
609
607
boot_serial_output ();
610
608
}
611
609
} else {
@@ -628,7 +626,7 @@ boot_serial_output(void)
628
626
char encoded_buf [BASE64_ENCODE_SIZE (sizeof (buf ))];
629
627
630
628
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 ;
632
630
633
631
bs_hdr -> nh_op ++ ;
634
632
bs_hdr -> nh_flags = 0 ;
0 commit comments