Commit 1732bc83 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Protect against omitted being too large in network_prefix.

Thanks to Stephen Fisher.
parent cca56b2c
......@@ -83,7 +83,8 @@ network_prefix(int ae, int plen, unsigned int omitted,
switch(ae) {
case 0: break;
case 1:
if(pb > 4 || (pb > omitted && len < pb - omitted)) return -1;
if(omitted > 4 || pb > 4 || (pb > omitted && len < pb - omitted))
return -1;
memcpy(prefix, v4prefix, 12);
if(omitted) {
if (dp == NULL || !v4mapped(dp)) return -1;
......@@ -92,7 +93,7 @@ network_prefix(int ae, int plen, unsigned int omitted,
if(pb > omitted) memcpy(prefix + 12 + omitted, p, pb);
break;
case 2:
if(pb > omitted && len < pb - omitted) return -1;
if(omitted > 16 || (pb > omitted && len < pb - omitted)) return -1;
if(omitted) {
if (dp == NULL || v4mapped(dp)) return -1;
memcpy(prefix, dp, omitted);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment