Skip to content

Commit f1fdaa8

Browse files
monneratptitSeb
authored andcommitted
tftpd: always use curl's own tftp.h
Using the system's provided arpa/tftp.h and optimizing, GCC 12 detects and reports a stringop-overread warning: tftpd.c: In function ‘write_behind.isra’: tftpd.c:485:12: warning: ‘write’ reading between 1 and 2147483647 bytes from a region of size 0 [-Wstringop-overread] 485 | return write(test->ofile, writebuf, count); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from tftpd.c:71: /usr/include/arpa/tftp.h:58:30: note: source object ‘tu_data’ of size 0 58 | char tu_data[0]; /* data or error string */ | ^~~~~~~ This occurs because writebuf points to this field and the latter cannot be considered as being of dynamic length because it is not the last field in the structure. Thus it is bound to its declared size. This commit always uses curl's own version of tftp.h where the target field is last in its structure, effectively avoiding the warning. As HAVE_ARPA_TFTP_H is not used anymore, cmake/configure checks for arpa/tftp.h are removed. Closes curl#11897
1 parent 2e310e1 commit f1fdaa8

File tree

5 files changed

+1
-11
lines changed

5 files changed

+1
-11
lines changed

CMake/Platforms/WindowsCache.cmake

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ if(NOT UNIX)
5353
set(HAVE_LIBZ 0)
5454

5555
set(HAVE_ARPA_INET_H 0)
56-
set(HAVE_ARPA_TFTP_H 0)
5756
set(HAVE_FCNTL_H 1)
5857
set(HAVE_IFADDRS_H 0)
5958
set(HAVE_IO_H 1)

CMakeLists.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,6 @@ check_include_file_concat("sys/un.h" HAVE_SYS_UN_H)
10351035
check_include_file_concat("sys/utime.h" HAVE_SYS_UTIME_H)
10361036
check_include_file_concat("sys/xattr.h" HAVE_SYS_XATTR_H)
10371037
check_include_file_concat("arpa/inet.h" HAVE_ARPA_INET_H)
1038-
check_include_file_concat("arpa/tftp.h" HAVE_ARPA_TFTP_H)
10391038
check_include_file_concat("fcntl.h" HAVE_FCNTL_H)
10401039
check_include_file_concat("idn2.h" HAVE_IDN2_H)
10411040
check_include_file_concat("ifaddrs.h" HAVE_IFADDRS_H)

configure.ac

-1
Original file line numberDiff line numberDiff line change
@@ -3443,7 +3443,6 @@ AC_CHECK_HEADERS(
34433443
libgen.h \
34443444
locale.h \
34453445
stdbool.h \
3446-
arpa/tftp.h \
34473446
sys/filio.h \
34483447
sys/wait.h \
34493448
setjmp.h,

lib/curl_config.h.cmake

-3
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,6 @@
162162
/* Define to 1 if you have the <arpa/inet.h> header file. */
163163
#cmakedefine HAVE_ARPA_INET_H 1
164164

165-
/* Define to 1 if you have the <arpa/tftp.h> header file. */
166-
#cmakedefine HAVE_ARPA_TFTP_H 1
167-
168165
/* Define to 1 if you have _Atomic support. */
169166
#cmakedefine HAVE_ATOMIC 1
170167

tests/server/tftpd.c

+1-5
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,6 @@
6767
#ifdef HAVE_ARPA_INET_H
6868
#include <arpa/inet.h>
6969
#endif
70-
#ifdef HAVE_ARPA_TFTP_H
71-
#include <arpa/tftp.h>
72-
#else
73-
#include "tftp.h"
74-
#endif
7570
#ifdef HAVE_NETDB_H
7671
#include <netdb.h>
7772
#endif
@@ -97,6 +92,7 @@
9792
#include "getpart.h"
9893
#include "util.h"
9994
#include "server_sockaddr.h"
95+
#include "tftp.h"
10096

10197
/* include memdebug.h last */
10298
#include "memdebug.h"

0 commit comments

Comments
 (0)