From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5D025158015 for ; Mon, 25 Dec 2023 20:11:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CA512BC019; Mon, 25 Dec 2023 20:11:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5494B2BC019 for ; Mon, 25 Dec 2023 20:11:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 55207335DEC for ; Mon, 25 Dec 2023 20:11:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C2B8105D for ; Mon, 25 Dec 2023 20:11:43 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1703535092.f47490979e61f9b1da27f671e28ac7df6677d355.dilfridge@gentoo> Subject: [gentoo-commits] proj/toolchain/glibc-patches:master commit in: 9999/ X-VCS-Repository: proj/toolchain/glibc-patches X-VCS-Files: 9999/0010-disable-tunables-in-AT_SECURE.patch X-VCS-Directories: 9999/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: f47490979e61f9b1da27f671e28ac7df6677d355 X-VCS-Branch: master Date: Mon, 25 Dec 2023 20:11:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5957582f-362c-47de-ad32-022604fede66 X-Archives-Hash: 637ae3cc45c4fdc307795b99806d04ad commit: f47490979e61f9b1da27f671e28ac7df6677d355 Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Dec 25 20:11:18 2023 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Mon Dec 25 20:11:32 2023 +0000 URL: https://gitweb.gentoo.org/proj/toolchain/glibc-patches.git/commit/?id=f4749097 Drop patch that is now in master Signed-off-by: Andreas K. Hüttel gentoo.org> 9999/0010-disable-tunables-in-AT_SECURE.patch | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/9999/0010-disable-tunables-in-AT_SECURE.patch b/9999/0010-disable-tunables-in-AT_SECURE.patch deleted file mode 100644 index 4307c89..0000000 --- a/9999/0010-disable-tunables-in-AT_SECURE.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 5d1686416ab766f3dd0780ab730650c4c0f76ca9 Mon Sep 17 00:00:00 2001 -From: Gleb Fotengauer-Malinovskiy -Date: Wed, 20 Sep 2023 05:00:00 +0000 -Subject: [PATCH] elf/dl-tunables.c: avoid processing of tunables in AT_SECURE executables - -Complements: owl-alt-sanitize-env ---- - elf/dl-tunables.c | 3 +++ - 1 files changed, 3 insertions(+), 0 deletions(-) - -diff --git a/elf/dl-tunables.c b/elf/dl-tunables.c -index 62b7332..e5e9093 100644 ---- a/elf/dl-tunables.c -+++ b/elf/dl-tunables.c -@@ -274,6 +274,9 @@ __tunables_init (char **envp) - size_t len = 0; - char **prev_envp = envp; - -+ if (__glibc_unlikely (__libc_enable_secure)) -+ return; -+ - maybe_enable_malloc_check (); - - while ((envp = get_next_env (envp, &envname, &len, &envval, --- -1.7.3.3 -