summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorThanassis Avgerinos <thanassis.avgerinos@gmail.com>2024-04-17 11:30:02 -0400
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>2024-04-29 18:35:55 +0900
commit38762a0763c10c24a4915feee722d7aa6e73eb98 (patch)
tree7fcd0217f11c6268ea846d96a61cb9fff7a92dde /drivers
parente67572cd2204894179d89bd7b984072f19313b03 (diff)
downloadlinux-stable-38762a0763c10c24a4915feee722d7aa6e73eb98.tar.gz
linux-stable-38762a0763c10c24a4915feee722d7aa6e73eb98.tar.bz2
linux-stable-38762a0763c10c24a4915feee722d7aa6e73eb98.zip
firewire: nosy: ensure user_length is taken into account when fetching packet contents
Ensure that packet_buffer_get respects the user_length provided. If the length of the head packet exceeds the user_length, packet_buffer_get will now return 0 to signify to the user that no data were read and a larger buffer size is required. Helps prevent user space overflows. Signed-off-by: Thanassis Avgerinos <thanassis.avgerinos@gmail.com> Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/firewire/nosy.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/firewire/nosy.c b/drivers/firewire/nosy.c
index b0d671db178a..ea31ac7ac1ca 100644
--- a/drivers/firewire/nosy.c
+++ b/drivers/firewire/nosy.c
@@ -148,10 +148,12 @@ packet_buffer_get(struct client *client, char __user *data, size_t user_length)
if (atomic_read(&buffer->size) == 0)
return -ENODEV;
- /* FIXME: Check length <= user_length. */
+ length = buffer->head->length;
+
+ if (length > user_length)
+ return 0;
end = buffer->data + buffer->capacity;
- length = buffer->head->length;
if (&buffer->head->data[length] < end) {
if (copy_to_user(data, buffer->head->data, length))