From owner-freebsd-stable@FreeBSD.ORG Tue Jan 12 20:05:25 2010 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B4AE1065672 for ; Tue, 12 Jan 2010 20:05:25 +0000 (UTC) (envelope-from dweber@htw-saarland.de) Received: from theia.rz.uni-saarland.de (theia.rz.uni-saarland.de [134.96.7.31]) by mx1.freebsd.org (Postfix) with ESMTP id 0A7FF8FC08 for ; Tue, 12 Jan 2010 20:05:24 +0000 (UTC) Received: from zdve-mailx.htw-saarland.de (zdve-mailx.htw-saarland.de [134.96.208.108]) by theia.rz.uni-saarland.de (8.14.1/8.14.0) with ESMTP id o0CK5Mq4029147; Tue, 12 Jan 2010 21:05:23 +0100 Received: from magritte.htw-saarland.de (magritte.htw-saarland.de [134.96.216.98]) by zdve-mailx.htw-saarland.de (8.13.8/8.13.8) with ESMTP id o0CK5M5e002813; Tue, 12 Jan 2010 21:05:22 +0100 (CET) Date: Tue, 12 Jan 2010 21:05:17 +0100 (CET) From: Damian Weber To: Greg Rivers In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: clamav-milter 0.95.2 at zdve-mailx X-Virus-Status: Clean X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (theia.rz.uni-saarland.de [134.96.7.31]); Tue, 12 Jan 2010 21:05:23 +0100 (CET) X-AntiVirus: checked by AntiVir MailGate (version: 2.1.2-14; AVE: 7.9.1.134; VDF: 7.10.2.175; host: AntiVir1) Cc: freebsd-stable@freebsd.org Subject: Re: strange abort with kcheckpass (solved) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jan 2010 20:05:25 -0000 On Tue, 12 Jan 2010, Greg Rivers wrote: > Date: Tue, 12 Jan 2010 13:33:53 -0600 (CST) > From: Greg Rivers > To: Damian Weber > Cc: freebsd-stable@freebsd.org > Subject: Re: strange abort with kcheckpass > > On Tue, 12 Jan 2010, Damian Weber wrote: > > > I've got a strange SIGABRT issue with kcheckpass. Of course, kcheckpass is > > not contained in the base system, yet I write to this list since the base > > system could be able to help with tracking this down. (kcheckpass is called > > from a screen locker which fails to operate properly as a consequence of the > > SIGABRT.) > > > > Normal behaviour: > > (for example with wrong password) > > $ kcheckpass > > Password: > > Authentication failure > > > > Strange behaviour here (called mybox below): > > $ kcheckpass > > Abort trap: 6 > > > > Have you set security.bsd.map_at_zero=0 ? In my experience, several ports > (eg. samba, cups, parts of kde3) depend on PIE and will not run with this > disabled on 7.x. > Yes - that was the problem. Thanks a lot. # sysctl security.bsd.map_at_zero=1 security.bsd.map_at_zero: 0 -> 1 magritte# kcheckpass Password: Authentication failure Best regards Damian