From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 786 invoked by alias); 30 Jun 2009 08:48:24 -0000 Received: (qmail 777 invoked by uid 22791); 30 Jun 2009 08:48:23 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL,BAYES_00,SPF_PASS X-Spam-Check-By: sourceware.org Received: from hagrid.ecoscentric.com (HELO mail.ecoscentric.com) (212.13.207.197) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 30 Jun 2009 08:48:14 +0000 Received: from localhost (hagrid.ecoscentric.com [127.0.0.1]) by mail.ecoscentric.com (Postfix) with ESMTP id 69B3C15192AC for ; Tue, 30 Jun 2009 09:48:11 +0100 (BST) Received: from mail.ecoscentric.com ([127.0.0.1]) by localhost (hagrid.ecoscentric.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YZKgp-XyrMhP; Tue, 30 Jun 2009 09:48:10 +0100 (BST) From: bugzilla-daemon@ecoscentric.com To: ecos-bugs@ecos.sourceware.org Subject: [Bug 1000801] Synthetic target crash with -fstack-protector X-Bugzilla-Reason: QAcontact X-Bugzilla-Type: newchanged X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: eCos X-Bugzilla-Component: HAL X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: john@dallaway.org.uk X-Bugzilla-Status: NEW X-Bugzilla-Priority: normal X-Bugzilla-Assigned-To: bartv@ecoscentric.com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Tue, 30 Jun 2009 08:48:00 -0000 Message-Id: <20090630084810.3E9471519284@mail.ecoscentric.com> Mailing-List: contact ecos-bugs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: ecos-bugs-owner@sourceware.org X-SW-Source: 2009/txt/msg00238.txt.bz2 http://bugs.ecos.sourceware.org/show_bug.cgi?id=1000801 --- Comment #1 from John Dallaway 2009-06-30 09:48:08 --- -------- Original Message -------- Subject: Re: GCC stack protector with linux synthetic target Date: Mon, 29 Jun 2009 10:49:47 +0100 From: Bart Veer Basically -fstack-protector depends on some extra work done by the glibc startup code. Of course the synthetic target does not use glibc so that extra bit of initialization does not happen. The extra init is not straightforward. It involves manipulating the x86 segment registers via a Linux system call. I could find no documentation for exactly what has to be done, and I could not immediately figure it out from the glibc sources. Straightforward copying from glibc is not acceptable either because of licensing issues. Stack protection support was added to the compiler a few years back, offhand I don't know exactly when. However the default setting varies between distributions. Fedora and its ilk default to -fno-stack-protector, so everything just works. Debian and its ilk default to -fstack-protector, so things go wrong. Possible solutions are: 1) add -fno-stack-protector to the default flags for synth. This should work fine with all current distros. However it will break the world for anybody using an older distro where the gcc being used did not yet know about this compiler flag, or for anybody deliberately using an older gcc e.g. to use the same compiler version for synth and for real embedded targets. This was not really acceptable when we last looked at this. It may be more acceptable now, but is still not ideal. 2) try to do some run-time detection to figure out whether or not -fno-stack-protector should be added. There are various complications, e.g. if people change the COMMAND_PREFIX setting. 3) fix the problem properly by doing the segment register initialization. This should solve the problem irrespective of the distro or the version of gcc being used. It would also mean that the synthetic targets gains whatever benefits -fstack-protector offers. Since I run Fedora on most of my systems I am not affected by any of this, so sorting it out is a low priority for me. If you want to look at option (3), that would be great. I would much prefer that to option (1), since if you go for that then there will never be any incentive to do the job properly. -- Configure bugmail: http://bugs.ecos.sourceware.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug.