08c3a6
commit 10f7bdebe570e42d1f7a43de4f90eda8ccb4f0da
08c3a6
Author: Siddhesh Poyarekar <siddhesh@sourceware.org>
08c3a6
Date:   Fri Dec 17 18:35:44 2021 +0530
08c3a6
08c3a6
    fortify: Fix spurious warning with realpath
08c3a6
    
08c3a6
    The length and object size arguments were swapped around for realpath.
08c3a6
    Also add a smoke test so that any changes in this area get caught in
08c3a6
    future.
08c3a6
    
08c3a6
    Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
08c3a6
    Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
08c3a6
    (cherry picked from commit 2bbd07c715275eb6c616988925738a0517180d57)
08c3a6
08c3a6
diff --git a/debug/Makefile b/debug/Makefile
08c3a6
index 357f888246061e15..bc37e466eed490fa 100644
08c3a6
--- a/debug/Makefile
08c3a6
+++ b/debug/Makefile
08c3a6
@@ -108,6 +108,7 @@ CFLAGS-tst-longjmp_chk2.c += -fexceptions -fasynchronous-unwind-tables
08c3a6
 CPPFLAGS-tst-longjmp_chk2.c += -D_FORTIFY_SOURCE=1
08c3a6
 CFLAGS-tst-longjmp_chk3.c += -fexceptions -fasynchronous-unwind-tables
08c3a6
 CPPFLAGS-tst-longjmp_chk3.c += -D_FORTIFY_SOURCE=1
08c3a6
+CPPFLAGS-tst-realpath-chk.c += -D_FORTIFY_SOURCE=2
08c3a6
 
08c3a6
 # We know these tests have problems with format strings, this is what
08c3a6
 # we are testing.  Disable that warning.  They are also testing
08c3a6
@@ -155,7 +156,7 @@ tests = backtrace-tst tst-longjmp_chk tst-chk1 tst-chk2 tst-chk3 \
08c3a6
 	tst-lfschk1 tst-lfschk2 tst-lfschk3 test-strcpy_chk test-stpcpy_chk \
08c3a6
 	tst-chk4 tst-chk5 tst-chk6 tst-chk7 tst-chk8 tst-lfschk4 tst-lfschk5 \
08c3a6
 	tst-lfschk6 tst-longjmp_chk2 tst-backtrace2 tst-backtrace3 \
08c3a6
-	tst-backtrace4 tst-backtrace5 tst-backtrace6
08c3a6
+	tst-backtrace4 tst-backtrace5 tst-backtrace6 tst-realpath-chk
08c3a6
 
08c3a6
 ifeq ($(have-ssp),yes)
08c3a6
 tests += tst-ssp-1
08c3a6
diff --git a/debug/tst-realpath-chk.c b/debug/tst-realpath-chk.c
08c3a6
new file mode 100644
08c3a6
index 0000000000000000..a8fcb327c43fb34d
08c3a6
--- /dev/null
08c3a6
+++ b/debug/tst-realpath-chk.c
08c3a6
@@ -0,0 +1,37 @@
08c3a6
+/* Smoke test to verify that realpath does not cause spurious warnings.
08c3a6
+   Copyright The GNU Toolchain Authors.
08c3a6
+   This file is part of the GNU C Library.
08c3a6
+
08c3a6
+   The GNU C Library is free software; you can redistribute it and/or
08c3a6
+   modify it under the terms of the GNU Lesser General Public
08c3a6
+   License as published by the Free Software Foundation; either
08c3a6
+   version 2.1 of the License, or (at your option) any later version.
08c3a6
+
08c3a6
+   The GNU C Library is distributed in the hope that it will be useful,
08c3a6
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
08c3a6
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
08c3a6
+   Lesser General Public License for more details.
08c3a6
+
08c3a6
+   You should have received a copy of the GNU Lesser General Public
08c3a6
+   License along with the GNU C Library; if not, see
08c3a6
+   <https://www.gnu.org/licenses/>.  */
08c3a6
+
08c3a6
+#include <limits.h>
08c3a6
+#include <stdlib.h>
08c3a6
+
08c3a6
+#include <support/check.h>
08c3a6
+#include <support/support.h>
08c3a6
+
08c3a6
+static int
08c3a6
+do_test (void)
08c3a6
+{
08c3a6
+#ifdef PATH_MAX
08c3a6
+  char buf[PATH_MAX + 1];
08c3a6
+  char *res = realpath (".", buf);
08c3a6
+  TEST_VERIFY (res == buf);
08c3a6
+#endif
08c3a6
+
08c3a6
+  return 0;
08c3a6
+}
08c3a6
+
08c3a6
+#include <support/test-driver.c>
08c3a6
diff --git a/stdlib/bits/stdlib.h b/stdlib/bits/stdlib.h
08c3a6
index 067115eeca123c6d..ccacbdf76a08225a 100644
08c3a6
--- a/stdlib/bits/stdlib.h
08c3a6
+++ b/stdlib/bits/stdlib.h
08c3a6
@@ -42,7 +42,7 @@ __NTH (realpath (const char *__restrict __name, char *__restrict __resolved))
08c3a6
     return __realpath_alias (__name, __resolved);
08c3a6
 
08c3a6
 #if defined _LIBC_LIMITS_H_ && defined PATH_MAX
08c3a6
-  if (__glibc_unsafe_len (sz, sizeof (char), PATH_MAX))
08c3a6
+  if (__glibc_unsafe_len (PATH_MAX, sizeof (char), sz))
08c3a6
     return __realpath_chk_warn (__name, __resolved, sz);
08c3a6
 #endif
08c3a6
   return __realpath_chk (__name, __resolved, sz);