From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: [PATCH 3/6] daemon: On aarch64, use increments of 16 on the stack. Date: Sat, 05 Aug 2017 17:41:50 -0400 Message-ID: <87mv7d4rq9.fsf@netris.org> References: <20170209184510.24200-1-efraim@flashner.co.il> <20170209184510.24200-4-efraim@flashner.co.il> <87r331xiot.fsf@gnu.org> <874ltm5ybg.fsf@netris.org> <20170805182401.GA2458@macbook42.flashner.co.il> <87r2wp4s6k.fsf@netris.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47483) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1de6pn-0000Ff-1K for guix-devel@gnu.org; Sat, 05 Aug 2017 17:42:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1de6pj-0006kV-Ss for guix-devel@gnu.org; Sat, 05 Aug 2017 17:42:11 -0400 Received: from world.peace.net ([50.252.239.5]:43796) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1de6pj-0006kC-Os for guix-devel@gnu.org; Sat, 05 Aug 2017 17:42:07 -0400 In-Reply-To: <87r2wp4s6k.fsf@netris.org> (Mark H. Weaver's message of "Sat, 05 Aug 2017 17:32:03 -0400") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Efraim Flashner Cc: guix-devel@gnu.org I wrote: > Can you try the following patch on aarch64 and report back? Actually, the last patch was not quite right. C/C++ makes it rather difficult to avoid edge cases in arithmetic. Can you try this one instead? Thanks, Mark --8<---------------cut here---------------start------------->8--- diff --git a/nix/libstore/build.cc b/nix/libstore/build.cc index 693fa70c8..63540ddfc 100644 --- a/nix/libstore/build.cc +++ b/nix/libstore/build.cc @@ -26,6 +26,7 @@ #include #include #include +#include #include #include @@ -2008,11 +2009,11 @@ void DerivationGoal::startBuilder() char stack[32 * 1024]; int flags = CLONE_NEWPID | CLONE_NEWNS | CLONE_NEWIPC | CLONE_NEWUTS | SIGCHLD; if (!fixedOutput) flags |= CLONE_NEWNET; -#ifdef __aarch64__ - pid = clone(childEntry, stack + sizeof(stack) - 16, flags, this); -#else - pid = clone(childEntry, stack + sizeof(stack) - 8, flags, this); -#endif + /* Ensure proper alignment on the stack. On aarch64, it has to be 16 + bytes. */ + pid = clone(childEntry, + (char *)(((uintptr_t)stack + sizeof(stack) - 8) & ~(uintptr_t)0xf), + flags, this); if (pid == -1) throw SysError("cloning builder process"); } else --8<---------------cut here---------------end--------------->8---