From patchwork Thu Nov 23 18:04:54 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 80657 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id ADE1C384F998 for ; Thu, 23 Nov 2023 18:05:15 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from esa4.mentor.iphmx.com (esa4.mentor.iphmx.com [68.232.137.252]) by sourceware.org (Postfix) with ESMTPS id 54A313858C31 for ; Thu, 23 Nov 2023 18:05:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 54A313858C31 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=mentor.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 54A313858C31 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=68.232.137.252 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1700762704; cv=none; b=gjmiVSj/6ji/YUuygAIB6wosxr7/0Q00EA8UHpMiv0RXV8uSs2R1coE5NNDD8Qd6uSMmIaXXPfpOOrV9dMCncSDKHKy7/0WiMtPDWjzRlKVX5wCAHhOhD/AO89ceHmuAi7x+sfZKTlVWJFrRFgsImnfkj6IVJlZIWsbqe4c1pu8= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1700762704; c=relaxed/simple; bh=E8XvJS4gKRkPbI6XjxpEqlxgSZt4uAxBT613I13YLoc=; h=Date:From:To:Subject:Message-ID:MIME-Version; b=u2CdU+n1RmRIgxwRqDV7IhzuTEFMbdqqJuKFEtVu57xlbPD2JmKwJj9kN/p485lrLi9XmcYOvZwsj4TOuf9jcX0rmVX1x7+g2uQfDbZZG+j/bswT7Pj5a2sZ4Q6mFNuadFuhgfaETlIpPW8/yxCqSqfCKQLxrePZy0G1Na5ejik= ARC-Authentication-Results: i=1; server2.sourceware.org X-CSE-ConnectionGUID: c7LVbPovTkeJee04aYoC9w== X-CSE-MsgGUID: pwQp0pjJR4CbySO46jkPVw== X-IronPort-AV: E=Sophos;i="6.04,222,1695715200"; d="scan'208";a="23539822" Received: from orw-gwy-01-in.mentorg.com ([192.94.38.165]) by esa4.mentor.iphmx.com with ESMTP; 23 Nov 2023 10:04:58 -0800 IronPort-SDR: Rq0RBuYFoK/qRypWUACM55GgV9wZ1KeRPsi6wOOGnRuR2Og2NqOfe8tpBqHBHdznUS8mRrEjnl nl2xquwas9/5rONGkhRmk3EiP1TgdjLspwu43LWx9KupuqONfZT35X4Iq6wX7VwatmyT1GcJPJ NGQwGJmJypZNCT9DPgZwR0u+ogohIQ44qSQT6N8y5uOOsP6cHHRRgUpQydUHUAC86BLmoH4/gU SGN3xwPSXts5uP4t5jHqVWyi/voF+FHlzONGTn3EXVpRWNHUaHcx9SznoZjNtBv2NuCc5Fo/Us rRE= Date: Thu, 23 Nov 2023 18:04:54 +0000 From: Joseph Myers To: Subject: Remove __access_noerrno Message-ID: <72e13315-f067-835d-8fbb-1f8683933881@codesourcery.com> MIME-Version: 1.0 X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: svr-ies-mbx-10.mgc.mentorg.com (139.181.222.10) To svr-ies-mbx-10.mgc.mentorg.com (139.181.222.10) X-Spam-Status: No, score=-3108.3 required=5.0 tests=BAYES_00, GIT_PATCH_0, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, KAM_SHORT, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE, URIBL_BLACK autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org A recent commit, apparently commit 6c6fce572fb8f583f14d898e54fd7d25ae91cf56 "elf: Remove /etc/suid-debug support", resulted in localplt failures for i686-gnu and x86_64-gnu: Missing required PLT reference: ld.so: __access_noerrno After that commit, __access_noerrno is actually no longer used at all. So rather than just removing the localplt expectation for that symbol for Hurd, completely remove all definitions of and references to that symbol. Tested for x86_64, and with build-many-glibcs.py for i686-gnu and x86_64-gnu. Note: just above the changes to sysdeps/mach/hurd/dl-sysdep.c, there remain a comment and definition in that file: /* This function is called by the dynamic linker (rtld.c) to check whether debugging malloc is allowed even for SUID binaries. This stub will always fail, which means that malloc-debugging is always disabled for SUID binaries. */ check_no_hidden(__access); int weak_function __access (const char *file, int type) { return __hurd_fail (ENOSYS); } That comment is certainly inaccurate after /etc/suid-debug support was removed. But __access is also used in rtld.c for /etc/ld.so.preload. So does that __access use also need this special dummy definition on Hurd, in which case the comment should be changed to say that /etc/ld.so.preload is unsupported on Hurd, or would the normal Hurd __access work without needing a special dl-sysdep.c definition? diff --git a/io/access.c b/io/access.c index 29b8fdce89..06a3900a45 100644 --- a/io/access.c +++ b/io/access.c @@ -19,13 +19,6 @@ #include #include -/* Test for access to FILE without setting errno. */ -int -__access_noerrno (const char *file, int type) -{ - return -1; -} - /* Test for access to FILE. */ int __access (const char *file, int type) diff --git a/sysdeps/generic/not-errno.h b/sysdeps/generic/not-errno.h index 303f8a68a8..16ae34b42f 100644 --- a/sysdeps/generic/not-errno.h +++ b/sysdeps/generic/not-errno.h @@ -16,6 +16,4 @@ License along with the GNU C Library; if not, see . */ -extern __typeof (__access) __access_noerrno attribute_hidden; - extern __typeof (__kill) __kill_noerrno attribute_hidden; diff --git a/sysdeps/mach/hurd/Versions b/sysdeps/mach/hurd/Versions index 20ac0067c7..17592d3569 100644 --- a/sysdeps/mach/hurd/Versions +++ b/sysdeps/mach/hurd/Versions @@ -15,7 +15,7 @@ libc { } GLIBC_PRIVATE { # Functions shared with the dynamic linker - __access; __access_noerrno; __libc_read; __libc_write; __libc_lseek64; + __access; __libc_read; __libc_write; __libc_lseek64; __close_nocancel; __open_nocancel; __read_nocancel; __pread64_nocancel; @@ -56,7 +56,7 @@ ld { _dl_init_first; # functions that must be shared with libc - __access; __access_noerrno; __libc_read; __libc_write; __libc_lseek64; + __access; __libc_read; __libc_write; __libc_lseek64; __close_nocancel; __open_nocancel; __read_nocancel; __pread64_nocancel; diff --git a/sysdeps/mach/hurd/access.c b/sysdeps/mach/hurd/access.c index 9e8b9014a7..87a15e5a8b 100644 --- a/sysdeps/mach/hurd/access.c +++ b/sysdeps/mach/hurd/access.c @@ -19,16 +19,6 @@ #include #include -/* Test for access to FILE by our real user and group IDs without setting - errno. This may be unsafe to run during initialization of tunables - since access_common calls __hurd_file_name_lookup, which calls - __hurd_file_name_lookup_retry, which can set errno. */ -int -__access_noerrno (const char *file, int type) -{ - return __faccessat_noerrno (AT_FDCWD, file, type, 0); -} - /* Test for access to FILE by our real user and group IDs. */ int __access (const char *file, int type) diff --git a/sysdeps/mach/hurd/dl-sysdep.c b/sysdeps/mach/hurd/dl-sysdep.c index 6994f8f7b6..8dda4a1f83 100644 --- a/sysdeps/mach/hurd/dl-sysdep.c +++ b/sysdeps/mach/hurd/dl-sysdep.c @@ -552,12 +552,6 @@ __access (const char *file, int type) { return __hurd_fail (ENOSYS); } -check_no_hidden(__access_noerrno); -int weak_function -__access_noerrno (const char *file, int type) -{ - return -1; -} int __rtld_execve (const char *file_name, char *const argv[], diff --git a/sysdeps/mach/hurd/i386/localplt.data b/sysdeps/mach/hurd/i386/localplt.data index 89b124db9f..b7882d0fbd 100644 --- a/sysdeps/mach/hurd/i386/localplt.data +++ b/sysdeps/mach/hurd/i386/localplt.data @@ -27,7 +27,6 @@ ld.so: __mmap ld.so: __fstat64 ld.so: __stat64 ld.so: __access -ld.so: __access_noerrno ld.so: __getpid ld.so: __getcwd ld.so: _exit ? diff --git a/sysdeps/mach/hurd/not-errno.h b/sysdeps/mach/hurd/not-errno.h deleted file mode 100644 index 956b065974..0000000000 --- a/sysdeps/mach/hurd/not-errno.h +++ /dev/null @@ -1,21 +0,0 @@ -/* Syscall wrapper that do not set errno. Generic version. - Copyright (C) 2017-2023 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -/* The __access_noerrno stub mustn't be hidden in ld.so on Hurd since it needs - to be preempted by __access_noerrno from libc.so after bootstrap. */ -extern __typeof (__access) __access_noerrno; diff --git a/sysdeps/mach/hurd/x86_64/localplt.data b/sysdeps/mach/hurd/x86_64/localplt.data index c38821e2fa..b7689b5cb0 100644 --- a/sysdeps/mach/hurd/x86_64/localplt.data +++ b/sysdeps/mach/hurd/x86_64/localplt.data @@ -26,7 +26,6 @@ ld.so: __mmap ld.so: __fstat64 ld.so: __stat64 ld.so: __access -ld.so: __access_noerrno ld.so: __getpid ld.so: __getcwd ld.so: _exit ? diff --git a/sysdeps/unix/sysv/linux/not-errno.h b/sysdeps/unix/sysv/linux/not-errno.h index 9100bde124..e55a7c4698 100644 --- a/sysdeps/unix/sysv/linux/not-errno.h +++ b/sysdeps/unix/sysv/linux/not-errno.h @@ -19,23 +19,6 @@ #include #include -/* This function is used on maybe_enable_malloc_check (elf/dl-tunables.c) - and to avoid having to build/use multiple versions if stack protection - in enabled it is defined as inline. */ -static inline int -__access_noerrno (const char *pathname, int mode) -{ - int res; -#ifdef __NR_access - res = INTERNAL_SYSCALL_CALL (access, pathname, mode); -#else - res = INTERNAL_SYSCALL_CALL (faccessat, AT_FDCWD, pathname, mode); -#endif - if (INTERNAL_SYSCALL_ERROR_P (res)) - return INTERNAL_SYSCALL_ERRNO (res); - return 0; -} - static inline int __kill_noerrno (pid_t pid, int sig) {