]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net/x25: fix called/calling length calculation in x25_parse_address_block
authorMartin Schiller <ms@dev.tdt.de>
Tue, 27 Nov 2018 08:50:27 +0000 (09:50 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 13 Dec 2019 07:52:14 +0000 (08:52 +0100)
[ Upstream commit d449ba3d581ed29f751a59792fdc775572c66904 ]

The length of the called and calling address was not calculated
correctly (BCD encoding).

Signed-off-by: Martin Schiller <ms@dev.tdt.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/x25/af_x25.c

index f7f53f9ae7efb250dc169e36f7906e6c9fc7b679..3150648206b681d34566c9a153cff43d54a363f0 100644 (file)
@@ -100,7 +100,7 @@ int x25_parse_address_block(struct sk_buff *skb,
        }
 
        len = *skb->data;
-       needed = 1 + (len >> 4) + (len & 0x0f);
+       needed = 1 + ((len >> 4) + (len & 0x0f) + 1) / 2;
 
        if (!pskb_may_pull(skb, needed)) {
                /* packet is too short to hold the addresses it claims