From patchwork Thu Aug 25 21:46:32 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Eggert X-Patchwork-Id: 55105 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 8D24C385116E for ; Thu, 25 Aug 2022 21:47:08 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 6E209385F015 for ; Thu, 25 Aug 2022 21:46:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 6E209385F015 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=cs.ucla.edu Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=cs.ucla.edu Received: from zimbra.cs.ucla.edu ([131.179.128.68]:53710) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oRKge-0006r7-RX for libc-alpha@gnu.org; Thu, 25 Aug 2022 17:46:54 -0400 Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 0114C1600B0 for ; Thu, 25 Aug 2022 14:46:51 -0700 (PDT) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id fuL80o9p33B6; Thu, 25 Aug 2022 14:46:50 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 2618B1600AF; Thu, 25 Aug 2022 14:46:50 -0700 (PDT) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id f8NYU_d-eUrw; Thu, 25 Aug 2022 14:46:50 -0700 (PDT) Received: from penguin.cs.ucla.edu (Penguin.CS.UCLA.EDU [131.179.64.200]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id 0378D16009C; Thu, 25 Aug 2022 14:46:50 -0700 (PDT) From: Paul Eggert To: libc-alpha@gnu.org Subject: [PATCH v2 0/2] tempname ALSR etc. fixes from Gnulib Date: Thu, 25 Aug 2022 14:46:32 -0700 Message-Id: <20220825214634.3561419-1-eggert@cs.ucla.edu> X-Mailer: git-send-email 2.37.2 MIME-Version: 1.0 Received-SPF: pass client-ip=131.179.128.68; envelope-from=eggert@cs.ucla.edu; helo=zimbra.cs.ucla.edu X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Status: No, score=-8.8 required=5.0 tests=BAYES_00, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_PASS, TXREP, T_SCC_BODY_TEXT_LINE, T_SPF_PERMERROR autolearn=no 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.29 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 Sender: "Libc-alpha" This updates v1 as follows: * It omits v1's first two patches as they have been installed into glibc already. * It appends a patch to split __path_search into a separate file, as suggested by Bruno Haible on the Gnulib mailing list and now implemented in Gnulib . v2's first patch is identical to v1's third patch. v2's second patch is new. Paul Eggert (2): Merge tempname ASLR etc. patch from Gnulib Split __path_search into a separate file stdio-common/Makefile | 2 + stdio-common/path-search.c | 31 +++++++ stdio-common/tempname.c | 14 --- sysdeps/posix/path-search.c | 92 ++++++++++++++++++++ sysdeps/posix/tempname.c | 164 ++++++++++++------------------------ 5 files changed, 178 insertions(+), 125 deletions(-) create mode 100644 stdio-common/path-search.c create mode 100644 sysdeps/posix/path-search.c --- 2.37.2