From 8159bf79907b5332e15a09c95181f2b87c4814a3 Mon Sep 17 00:00:00 2001 From: Daniel Danzberger Date: Wed, 4 Nov 2015 16:28:50 +0100 Subject: [PATCH] atftp: fix invalid read in tftp_send_request. This invalid read of 1 byte caused a segfault on some arm platforms. Signed-off-by: Daniel Danzberger --- net/atftp/Makefile | 4 ++-- .../02-fix-invalid-read-in-tftp_send_request.patch | 13 +++++++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 net/atftp/patches/02-fix-invalid-read-in-tftp_send_request.patch diff --git a/net/atftp/Makefile b/net/atftp/Makefile index d456edb5e..f538ba2a9 100644 --- a/net/atftp/Makefile +++ b/net/atftp/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2014 OpenWrt.org +# Copyright (C) 2006-2015 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=atftp PKG_VERSION:=0.7.1 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_MAINTAINER:=Daniel Danzberger PKG_LICENSE:=GPL-2.0 diff --git a/net/atftp/patches/02-fix-invalid-read-in-tftp_send_request.patch b/net/atftp/patches/02-fix-invalid-read-in-tftp_send_request.patch new file mode 100644 index 000000000..679af5cf3 --- /dev/null +++ b/net/atftp/patches/02-fix-invalid-read-in-tftp_send_request.patch @@ -0,0 +1,13 @@ +diff --git a/tftp_io.c b/tftp_io.c +index 605a9c2..6cce1f4 100644 +--- a/tftp_io.c ++++ b/tftp_io.c +@@ -64,7 +64,7 @@ int tftp_send_request(int socket, struct sockaddr_storage *sa, short type, + buf_index += strlen(mode); + buf_index++; + +- for (i = 2; ; i++) ++ for (i = 2; i < OPT_NUMBER; i++) + { + if (strlen(tftp_options[i].option) == 0) + break;