diff options
author | Johan Hovold <johan@kernel.org> | 2017-03-13 08:53:58 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-05-25 09:44:42 -0400 |
commit | 8ebb884009b60f662024630a6df8e565ed5956f1 (patch) | |
tree | 8976ca6f805cbcb45252efb8c4570307b60742cc | |
parent | 1b24b8c070230d4a539063ca3291233fa0cd80a6 (diff) |
cx231xx-audio: fix NULL-deref at probe
commit 65f921647f4c89a2068478c89691f39b309b58f7 upstream.
Make sure to check the number of endpoints to avoid dereferencing a
NULL-pointer or accessing memory beyond the endpoint array should a
malicious device lack the expected endpoints.
Fixes: e0d3bafd0258 ("V4L/DVB (10954): Add cx231xx USB driver")
Cc: Sri Deevi <Srinivasa.Deevi@conexant.com>
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/media/usb/cx231xx/cx231xx-audio.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/drivers/media/usb/cx231xx/cx231xx-audio.c b/drivers/media/usb/cx231xx/cx231xx-audio.c index 2ca713b1c086..bf4b3ca2abf9 100644 --- a/drivers/media/usb/cx231xx/cx231xx-audio.c +++ b/drivers/media/usb/cx231xx/cx231xx-audio.c | |||
@@ -701,6 +701,11 @@ static int cx231xx_audio_init(struct cx231xx *dev) | |||
701 | hs_config_info[0].interface_info. | 701 | hs_config_info[0].interface_info. |
702 | audio_index + 1]; | 702 | audio_index + 1]; |
703 | 703 | ||
704 | if (uif->altsetting[0].desc.bNumEndpoints < isoc_pipe + 1) { | ||
705 | err = -ENODEV; | ||
706 | goto err_free_card; | ||
707 | } | ||
708 | |||
704 | adev->end_point_addr = | 709 | adev->end_point_addr = |
705 | uif->altsetting[0].endpoint[isoc_pipe].desc. | 710 | uif->altsetting[0].endpoint[isoc_pipe].desc. |
706 | bEndpointAddress; | 711 | bEndpointAddress; |
@@ -716,8 +721,14 @@ static int cx231xx_audio_init(struct cx231xx *dev) | |||
716 | } | 721 | } |
717 | 722 | ||
718 | for (i = 0; i < adev->num_alt; i++) { | 723 | for (i = 0; i < adev->num_alt; i++) { |
719 | u16 tmp = | 724 | u16 tmp; |
720 | le16_to_cpu(uif->altsetting[i].endpoint[isoc_pipe].desc. | 725 | |
726 | if (uif->altsetting[i].desc.bNumEndpoints < isoc_pipe + 1) { | ||
727 | err = -ENODEV; | ||
728 | goto err_free_pkt_size; | ||
729 | } | ||
730 | |||
731 | tmp = le16_to_cpu(uif->altsetting[i].endpoint[isoc_pipe].desc. | ||
721 | wMaxPacketSize); | 732 | wMaxPacketSize); |
722 | adev->alt_max_pkt_size[i] = | 733 | adev->alt_max_pkt_size[i] = |
723 | (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1); | 734 | (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1); |
@@ -728,6 +739,8 @@ static int cx231xx_audio_init(struct cx231xx *dev) | |||
728 | 739 | ||
729 | return 0; | 740 | return 0; |
730 | 741 | ||
742 | err_free_pkt_size: | ||
743 | kfree(adev->alt_max_pkt_size); | ||
731 | err_free_card: | 744 | err_free_card: |
732 | snd_card_free(card); | 745 | snd_card_free(card); |
733 | 746 | ||