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