More fixes for indefinite length in the ASN.1 parsing routines
git-svn-id: https://origsvn.digium.com/svn/libpri/trunk@226 2fbb986a-6c06-0410-b554-c9c1f0a7f128
This commit is contained in:
parent
3c1f055287
commit
c9710c8b33
@ -272,7 +272,7 @@ static int rose_public_party_number_decode(struct pri *pri, q931_call *call, uns
|
||||
return -1;
|
||||
value->ton = ton;
|
||||
|
||||
return res + 2;
|
||||
return res + 3;
|
||||
|
||||
} while(0);
|
||||
return -1;
|
||||
@ -335,6 +335,7 @@ static int rose_address_decode(struct pri *pri, q931_call *call, unsigned char *
|
||||
pri_message(pri, "!! Unknown Party number component received 0x%X\n", comp->type);
|
||||
return -1;
|
||||
}
|
||||
ASN1_FIXUP_LEN(comp, res);
|
||||
NEXT_COMPONENT(comp, i);
|
||||
if(i < len)
|
||||
pri_message(pri, "!! not all information is handled from Address component\n");
|
||||
@ -348,6 +349,7 @@ static int rose_address_decode(struct pri *pri, q931_call *call, unsigned char *
|
||||
static int rose_presented_number_unscreened_decode(struct pri *pri, q931_call *call, unsigned char *data, int len, struct addressingdataelements_presentednumberunscreened *value)
|
||||
{
|
||||
int i = 0;
|
||||
int size = 0;
|
||||
struct rose_component *comp = NULL;
|
||||
unsigned char *vdata = data;
|
||||
|
||||
@ -362,7 +364,9 @@ static int rose_presented_number_unscreened_decode(struct pri *pri, q931_call *c
|
||||
switch(comp->type) {
|
||||
case (ASN1_CONTEXT_SPECIFIC | ASN1_CONSTRUCTOR | ASN1_TAG_0): /* [0] presentationAllowedNumber */
|
||||
value->pres = PRES_ALLOWED_USER_NUMBER_NOT_SCREENED;
|
||||
return rose_address_decode(pri, call, comp->data, comp->len, value) + 2;
|
||||
size = rose_address_decode(pri, call, comp->data, comp->len, value);
|
||||
ASN1_FIXUP_LEN(comp, size);
|
||||
return size + 2;
|
||||
case (ASN1_CONTEXT_SPECIFIC | ASN1_TAG_1): /* [1] IMPLICIT presentationRestricted */
|
||||
if (comp->len != 0) { /* must be NULL */
|
||||
pri_error(pri, "!! Invalid PresentationRestricted component received (len != 0)\n");
|
||||
@ -379,7 +383,9 @@ static int rose_presented_number_unscreened_decode(struct pri *pri, q931_call *c
|
||||
return 2;
|
||||
case (ASN1_CONTEXT_SPECIFIC | ASN1_CONSTRUCTOR | ASN1_TAG_3): /* [3] presentationRestrictedNumber */
|
||||
value->pres = PRES_PROHIB_USER_NUMBER_NOT_SCREENED;
|
||||
return rose_address_decode(pri, call, comp->data, comp->len, value) + 2;
|
||||
size = rose_address_decode(pri, call, comp->data, comp->len, value) + 2;
|
||||
ASN1_FIXUP_LEN(comp, size);
|
||||
return size + 2;
|
||||
default:
|
||||
pri_message(pri, "Invalid PresentedNumberUnscreened component 0x%X\n", comp->type);
|
||||
}
|
||||
@ -431,6 +437,7 @@ static int rose_diverting_leg_information2_decode(struct pri *pri, q931_call *ca
|
||||
case ASN1_TAG_1: /* divertingnr: presentednumberunscreened */
|
||||
res = rose_presented_number_unscreened_decode(pri, call, comp->data, comp->len, &divertingnr);
|
||||
/* TODO: Fix indefinite length form hacks */
|
||||
ASN1_FIXUP_LEN(comp, res);
|
||||
comp->len = res;
|
||||
if (res < 0)
|
||||
return -1;
|
||||
@ -443,6 +450,7 @@ static int rose_diverting_leg_information2_decode(struct pri *pri, q931_call *ca
|
||||
res = rose_presented_number_unscreened_decode(pri, call, comp->data, comp->len, &originalcallednr);
|
||||
if (res < 0)
|
||||
return -1;
|
||||
ASN1_FIXUP_LEN(comp, res);
|
||||
comp->len = res;
|
||||
if (pri->debug & PRI_DEBUG_APDU) {
|
||||
pri_message(pri, " Received originalcallednr '%s'\n", originalcallednr.partyaddress);
|
||||
@ -450,12 +458,20 @@ static int rose_diverting_leg_information2_decode(struct pri *pri, q931_call *ca
|
||||
}
|
||||
break;
|
||||
case ASN1_TAG_3:
|
||||
comp->len = asn1_name_decode(comp->data, comp->len, redirectingname, sizeof(redirectingname));
|
||||
res = asn1_name_decode(comp->data, comp->len, redirectingname, sizeof(redirectingname));
|
||||
if (res < 0)
|
||||
return -1;
|
||||
ASN1_FIXUP_LEN(comp, res);
|
||||
comp->len = res;
|
||||
if (pri->debug & PRI_DEBUG_APDU)
|
||||
pri_message(pri, " Received RedirectingName '%s'\n", redirectingname);
|
||||
break;
|
||||
case ASN1_TAG_4:
|
||||
comp->len = asn1_name_decode(comp->data, comp->len, origcalledname, sizeof(origcalledname));
|
||||
res = asn1_name_decode(comp->data, comp->len, origcalledname, sizeof(origcalledname));
|
||||
if (res < 0)
|
||||
return -1;
|
||||
ASN1_FIXUP_LEN(comp, res);
|
||||
comp->len = res;
|
||||
if (pri->debug & PRI_DEBUG_APDU)
|
||||
pri_message(pri, " Received Originally Called Name '%s'\n", origcalledname);
|
||||
break;
|
||||
|
@ -180,6 +180,12 @@ struct rose_component {
|
||||
(variable) = ((variable) << 8) | (component)->data[comp_idx]; \
|
||||
} while (0)
|
||||
|
||||
#define ASN1_FIXUP_LEN(component, size) \
|
||||
do { \
|
||||
if ((component)->len == ASN1_LEN_INDEF) \
|
||||
size += 2; \
|
||||
} while (0)
|
||||
|
||||
#define ASN1_ADD_SIMPLE(component, comptype, ptr, idx) \
|
||||
do { \
|
||||
(component) = (struct rose_component *)&((ptr)[(idx)]); \
|
||||
|
Loading…
Reference in New Issue
Block a user