ran_dec logging: log message sizes on errors

Change-Id: Id08e4ee5a4dbf552dbb107d8f0519110664f6acb
This commit is contained in:
Neels Hofmeyr 2019-08-22 17:19:49 +02:00 committed by neels
parent 4b78b29b8c
commit f092301a0f
1 changed files with 7 additions and 3 deletions

View File

@ -761,13 +761,17 @@ static int ran_a_decode_bssmap(struct ran_dec *ran_dec, struct msgb *bssmap)
}
if (msgb_l3len(bssmap) < h->length) {
LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "BSSMAP data truncated, discarding message\n");
LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "BSSMAP data truncated, discarding message:"
" msgb_l3len(bssmap) == %u < bssmap_header->length == %u\n",
msgb_l3len(bssmap), h->length);
return -1;
}
if (msgb_l3len(bssmap) > h->length) {
LOG_RAN_A_DEC(ran_dec, LOGL_NOTICE, "There are %u extra bytes after the BSSMAP data, truncating\n",
msgb_l3len(bssmap) - h->length);
LOG_RAN_A_DEC(ran_dec, LOGL_NOTICE, "There are %u extra bytes after the BSSMAP data, truncating:"
" msgb_l3len(bssmap) == %u > bssmap_header->length == %u\n",
msgb_l3len(bssmap) - h->length,
msgb_l3len(bssmap), h->length);
msgb_l3trim(bssmap, h->length);
}