summaryrefslogtreecommitdiff
path: root/src/lib/libssl/bs_cbb.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libssl/bs_cbb.c28
1 files changed, 20 insertions, 8 deletions
diff --git a/src/lib/libssl/bs_cbb.c b/src/lib/libssl/bs_cbb.c
index e86bb926ab..441141734b 100644
--- a/src/lib/libssl/bs_cbb.c
+++ b/src/lib/libssl/bs_cbb.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bs_cbb.c,v 1.11 2015/06/13 09:24:12 doug Exp $ */ 1/* $OpenBSD: bs_cbb.c,v 1.12 2015/06/18 23:25:07 doug Exp $ */
2/* 2/*
3 * Copyright (c) 2014, Google Inc. 3 * Copyright (c) 2014, Google Inc.
4 * 4 *
@@ -304,8 +304,11 @@ CBB_add_u24_length_prefixed(CBB *cbb, CBB *out_contents)
304} 304}
305 305
306int 306int
307CBB_add_asn1(CBB *cbb, CBB *out_contents, uint8_t tag) 307CBB_add_asn1(CBB *cbb, CBB *out_contents, unsigned int tag)
308{ 308{
309 if (tag > UINT8_MAX)
310 return 0;
311
309 /* Long form identifier octets are not supported. */ 312 /* Long form identifier octets are not supported. */
310 if ((tag & 0x1f) == 0x1f) 313 if ((tag & 0x1f) == 0x1f)
311 return 0; 314 return 0;
@@ -353,21 +356,30 @@ CBB_add_space(CBB *cbb, uint8_t **out_data, size_t len)
353} 356}
354 357
355int 358int
356CBB_add_u8(CBB *cbb, uint8_t value) 359CBB_add_u8(CBB *cbb, size_t value)
357{ 360{
358 return cbb_add_u(cbb, value, 1); 361 if (value > UINT8_MAX)
362 return 0;
363
364 return cbb_add_u(cbb, (uint32_t)value, 1);
359} 365}
360 366
361int 367int
362CBB_add_u16(CBB *cbb, uint16_t value) 368CBB_add_u16(CBB *cbb, size_t value)
363{ 369{
364 return cbb_add_u(cbb, value, 2); 370 if (value > UINT16_MAX)
371 return 0;
372
373 return cbb_add_u(cbb, (uint32_t)value, 2);
365} 374}
366 375
367int 376int
368CBB_add_u24(CBB *cbb, uint32_t value) 377CBB_add_u24(CBB *cbb, size_t value)
369{ 378{
370 return cbb_add_u(cbb, value, 3); 379 if (value > 0xffffffUL)
380 return 0;
381
382 return cbb_add_u(cbb, (uint32_t)value, 3);
371} 383}
372 384
373int 385int