Received: (from majordom@localhost) by hyperreal.com (8.8.4/8.8.4) id SAA07626; Mon, 14 Apr 1997 18:05:50 -0700 (PDT) Received: from valis.worldgate.com (marcs@valis.worldgate.com [198.161.84.2]) by hyperreal.com (8.8.4/8.8.4) with ESMTP id SAA07595 for ; Mon, 14 Apr 1997 18:05:46 -0700 (PDT) Received: from localhost (marcs@localhost) by valis.worldgate.com (8.8.5/8.8.5) with SMTP id TAA28951 for ; Mon, 14 Apr 1997 19:05:44 -0600 (MDT) Date: Mon, 14 Apr 1997 19:05:43 -0600 (MDT) From: Marc Slemko To: new-httpd@apache.org Subject: Re: [STATUS] Sun Apr 13 19:08:09 PDT 1997 In-Reply-To: <199704150103.UAA11357@sierra.zyzzyva.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: new-httpd-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org On Mon, 14 Apr 1997, Randy Terbush wrote: > Bus errors. Lots of em. I also spent some time this past weekend > trying to get a coredump out of FreeBSD. I have verified that > RLIMIT_CORE is of sufficient size. Despite the fact that Ken's > patch now helps find where we might be putting the core, and the > directory is world writeable, no core... > > I'll be looking at this more through the week. You did read my message the other week in response to Chuck's attempts, right? Included below: >> I'm trying to get the (&&^$%$#ing thing to dump core. I'm beginning to >> wonder if that's one of the security improvements in 2.1.7. 8^( > >Yes. In sys/kern/kern_sig.c there is: > > if (p->p_flag & P_SUGID) > return (EFAULT); > >P_SUGID is set when a process does a setuid() and is only reset on exec. >(sortof; there were a few bugs with this... but that is the intent). The >easiest way I can think of to get a core dump is to just temporarily >remove the above two lines; it creates a relatively minor security hole, >but...