aboutsummaryrefslogtreecommitdiffstats
path: root/net/x25/af_x25.c
diff options
context:
space:
mode:
authorMatthew Daley <mattjd@gmail.com>2011-10-14 14:45:03 -0400
committerDavid S. Miller <davem@davemloft.net>2011-10-17 19:31:39 -0400
commitc7fd0d48bde943e228e9c28ce971a22d6a1744c4 (patch)
tree16eb8261bb302f21549c8663ddfc052025634aed /net/x25/af_x25.c
parentf36c23bb9f822904dacf83a329518d0a5fde7968 (diff)
x25: Validate incoming call user data lengths
X.25 call user data is being copied in its entirety from incoming messages without consideration to the size of the destination buffers, leading to possible buffer overflows. Validate incoming call user data lengths before these copies are performed. It appears this issue was noticed some time ago, however nothing seemed to come of it: see http://www.spinics.net/lists/linux-x25/msg00043.html and commit 8db09f26f912f7c90c764806e804b558da520d4f. Signed-off-by: Matthew Daley <mattjd@gmail.com> Acked-by: Eric Dumazet <eric.dumazet@gmail.com> Tested-by: Andrew Hendry <andrew.hendry@gmail.com> Cc: stable <stable@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/x25/af_x25.c')
-rw-r--r--net/x25/af_x25.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/net/x25/af_x25.c b/net/x25/af_x25.c
index d30615419b4d..a4bd1720e39b 100644
--- a/net/x25/af_x25.c
+++ b/net/x25/af_x25.c
@@ -959,6 +959,12 @@ int x25_rx_call_request(struct sk_buff *skb, struct x25_neigh *nb,
959 skb_pull(skb,len); 959 skb_pull(skb,len);
960 960
961 /* 961 /*
962 * Ensure that the amount of call user data is valid.
963 */
964 if (skb->len > X25_MAX_CUD_LEN)
965 goto out_clear_request;
966
967 /*
962 * Find a listener for the particular address/cud pair. 968 * Find a listener for the particular address/cud pair.
963 */ 969 */
964 sk = x25_find_listener(&source_addr,skb); 970 sk = x25_find_listener(&source_addr,skb);