Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions cram/cram_codecs.c
Original file line number Diff line number Diff line change
Expand Up @@ -3357,14 +3357,19 @@ int cram_byte_array_len_decode(cram_slice *slice, cram_codec *c,
int32_t len = 0, one = 1;
int r;

r = c->u.byte_array_len.len_codec->decode(slice, c->u.byte_array_len.len_codec,
in, (char *)&len, &one);
//printf("ByteArray Len=%d\n", len);

if (!r && c->u.byte_array_len.val_codec && len >= 0) {
r = c->u.byte_array_len.val_codec->decode(slice,
c->u.byte_array_len.val_codec,
in, out, &len);
cram_codec *len_codec = c->u.byte_array_len.len_codec;
cram_codec *val_codec = c->u.byte_array_len.val_codec;

r = len_codec->decode(slice, len_codec, in, (char *)&len, &one);
if (len < 0 || (len > *out_size &&
!(val_codec->codec == E_EXTERNAL &&
val_codec->u.external.type == E_BYTE_ARRAY_BLOCK))) {
fprintf(stderr, "Attempted overrun detected in %s\n", __FUNCTION__);
return -1;
}

if (!r && val_codec) {
r = val_codec->decode(slice, val_codec, in, out, &len);
} else {
return -1;
}
Expand Down
24 changes: 24 additions & 0 deletions cram/cram_decode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1948,6 +1948,23 @@ static int cram_decode_aux_1_0(cram_container *c, cram_slice *s,
return -1;
}

// Derived from sam.c aux_type2size
static inline int aux_ele_size(uint8_t type)
{
switch (type) {
case 'A': case 'c': case 'C':
return 1;
case 's': case 'S':
return 2;
case 'i': case 'I': case 'f':
return 4;
case 'd':
return 8;
default:
return 1;
}
}

// has_MD and has_NM are filled out with 0 for none present,
// 1 for present and verbatim, and -pos for present as placeholder
// (MD*, NM*) to be generated and filled out at offset +pos.
Expand Down Expand Up @@ -2039,6 +2056,13 @@ static int cram_decode_aux(cram_fd *fd,
BLOCK_APPEND(s->aux_blk, (char *)tag_data, 3);

if (!m->codec) return -1;
if (m->codec->codec == E_BYTE_ARRAY_LEN ||
m->codec->codec == E_BYTE_ARRAY_STOP)
// NB we don't know the maximum length for B arrays yet,
// but we're using BYTE_ARRAY_BLOCK encodings so they're auto-
// resizing arrays that cannot overflow. The codec handles this
// check for us.
out_sz *= aux_ele_size(TN[-1]);
r |= m->codec->decode(s, m->codec, blk, (char *)s->aux_blk, &out_sz);
if (r) break;
cr->aux_size += out_sz + 3;
Expand Down