|
@@ -156,6 +156,8 @@ int x25_parse_facilities(struct sk_buff *skb, struct x25_facilities *facilities,
|
|
|
case X25_FAC_CALLING_AE:
|
|
|
if (p[1] > X25_MAX_DTE_FACIL_LEN || p[1] <= 1)
|
|
|
return -1;
|
|
|
+ if (p[2] > X25_MAX_AE_LEN)
|
|
|
+ return -1;
|
|
|
dte_facs->calling_len = p[2];
|
|
|
memcpy(dte_facs->calling_ae, &p[3], p[1] - 1);
|
|
|
*vc_fac_mask |= X25_MASK_CALLING_AE;
|
|
@@ -163,6 +165,8 @@ int x25_parse_facilities(struct sk_buff *skb, struct x25_facilities *facilities,
|
|
|
case X25_FAC_CALLED_AE:
|
|
|
if (p[1] > X25_MAX_DTE_FACIL_LEN || p[1] <= 1)
|
|
|
return -1;
|
|
|
+ if (p[2] > X25_MAX_AE_LEN)
|
|
|
+ return -1;
|
|
|
dte_facs->called_len = p[2];
|
|
|
memcpy(dte_facs->called_ae, &p[3], p[1] - 1);
|
|
|
*vc_fac_mask |= X25_MASK_CALLED_AE;
|