From owner-freebsd-bugs Sun Feb 23 01:00:03 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA29283 for bugs-outgoing; Sun, 23 Feb 1997 01:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA29258; Sun, 23 Feb 1997 01:00:01 -0800 (PST) Date: Sun, 23 Feb 1997 01:00:01 -0800 (PST) Message-Id: <199702230900.BAA29258@freefall.freebsd.org> To: freebsd-bugs Cc: From: j@uriah.heep.sax.de (J Wunsch) Subject: Re: bin/2803: /bin/sh 'for' statement vs IFS setting problem Reply-To: j@uriah.heep.sax.de (J Wunsch) Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR bin/2803; it has been noted by GNATS. From: j@uriah.heep.sax.de (J Wunsch) To: mpp@freefall.freebsd.org (Mike Pritchard) Cc: FreeBSD-gnats-submit@freefall.freebsd.org, Scott.Blachowicz@seaslug.org Subject: Re: bin/2803: /bin/sh 'for' statement vs IFS setting problem Date: Sun, 23 Feb 1997 09:33:20 +0100 As Mike Pritchard wrote: > > >How-To-Repeat: > > > > I use this test script: > > > > #! /bin/sh > > IFS=' :' > > for tok in a:b:c > > do > > echo $tok > > done > > for tok in d e f > > do > > echo $tok > > done > > > > which SHOULD output 6 lines of output (letters a-f on separate > > lines), but what comes out is this: > > > > a b c > > d > > e > > f > 3) > IFS=' :' > xxx=a:b:C > for tok in $xxx > do > echo $tok > done > > For the record, under 3.0, every shell I tried, ksh, sh and bash > all work this way. Does this work the same way on other operating > systems? E.g. Sunos/Solaris, or some other SYSv variety? $ echo ${.sh.version} Version M-12/28/93e $ for tok in a:b:c > do > echo $tok > done a b c $ That's ksh93, the genuine Korn shell. Since this is `by definition' also the Posix shell, i think we can close the case. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sun Feb 23 01:20:45 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA00856 for bugs-outgoing; Sun, 23 Feb 1997 01:20:45 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id BAA00823 for ; Sun, 23 Feb 1997 01:20:41 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id KAA16805; Sun, 23 Feb 1997 10:20:37 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id KAA06837; Sun, 23 Feb 1997 10:06:20 +0100 (MET) Message-ID: Date: Sun, 23 Feb 1997 10:06:20 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: scott@statsci.com (Scott Blachowicz) Cc: freebsd-bugs@freefall.freebsd.org Subject: Re: bin/2803: /bin/sh 'for' statement vs IFS setting problem References: <199702230640.WAA23740@freefall.freebsd.org> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199702230640.WAA23740@freefall.freebsd.org>; from Scott Blachowicz on Feb 22, 1997 22:40:01 -0800 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Scott Blachowicz wrote: > Well...here's a few... > > basil: IRIX basil 5.2 02282013 IP12 mips > basil: a > basil: b > basil: c > basil: d > basil: e > basil: f > deck: OSF1 deck.statsci.com V3.2 17 alpha > deck: a > deck: b > deck: c > deck: d > deck: e > deck: f > hoki: HP-UX hoki B.08.00 A 9000/42E 08000917b2cd > hoki: a > hoki: b > hoki: c > hoki: d > hoki: e > hoki: f > mace: HP-UX mace A.09.05 A 9000/710 2012684354 two-user license > mace: a > mace: b > mace: c > mace: d > mace: e > mace: f > main: SunOS main 5.3 Generic sun4m sparc > main: a > main: b > main: c > main: d > main: e > main: f > spud: SunOS spud 4.1.1 7 sun4c > spud: a > spud: b > spud: c > spud: d > spud: e > spud: f Which isn't surprising since it's basically all the same obsolete version of /bin/sh. When in doubt about some feature, always ask the Korn shell first. This is the shell blessed by Posix, with all its crocks. We are not aiming to become bug-compatible with the obsolete Bourne shell, but we're aiming to become bug-compatible with Posix (which is basically == bug-compatible with ksh). Strictly spoken, all these systems should ship with the Korn shell as /bin/sh if they claim Posix compliance. The Korn shell itself also thinks it were sh(1): SH(1) SH(1) NAME sh, rsh - shell, the standard/restricted command and pro- gramming language However, i'm sure they won't do it within the next 20 or so years. They fear the hell would break (and don't even trust the freeware systems that prove that it's not the hell breaking, but only some very few scripts at all). Think of their habit to still ship a very obsolete version of awk as their /usr/bin/awk, and the now more than 10 years old version as /usr/bin/nawk (is it really a `new' awk still?). Or think of the crock Slowaris came up to move their off_t's to 64 bit. They won't have all their applications using 64-bit off_t's by 2005, i'm sure of this. I'm not very proud of various (mis)features of the Korn shell either, but to the very least, it's a standard that's not only enforced by using an identical source code on all platforms. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sun Feb 23 01:20:51 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA00894 for bugs-outgoing; Sun, 23 Feb 1997 01:20:51 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id BAA00866; Sun, 23 Feb 1997 01:20:45 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id KAA16811; Sun, 23 Feb 1997 10:20:44 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id KAA06849; Sun, 23 Feb 1997 10:09:21 +0100 (MET) Message-ID: Date: Sun, 23 Feb 1997 10:09:21 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: mpp@freefall.freebsd.org (Mike Pritchard) Cc: freebsd-bugs@freefall.freebsd.org Subject: Re: kern/2048 References: <199702230400.UAA14079@freefall.freebsd.org> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199702230400.UAA14079@freefall.freebsd.org>; from Mike Pritchard on Feb 22, 1997 20:00:01 -0800 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Mike Pritchard wrote: > > GENERIC kernel lacks SYSV IPC features (semaphore, shared memory, etc.) which is required by XFree86 S3 server. > > >How-To-Repeat: > > Run XFree86 X3 server with GENERIC kernel. > > >Fix: > > Add these lines to the sys/i386/isa/GENERIC configure file: > > > > options SYSVSHM > > options SYSVSEM > > options SYSVMSG > > So, should GENERIC contain the SYSV IPC stuff, or should I close this > PR? Keep GENERIC as it is, i'd say. The Xserver runs fine without these options (albeit with a complaint), and most people never need them at all. The Xserver only needs SYSVSHM if some application tries to use the MITSHM extension, and it needs SYSVSEM if somebody's going to run PEX. Both are not very general cases. If at all, leave SYSVMSG out. Almost nobody needs it. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sun Feb 23 01:22:15 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA01220 for bugs-outgoing; Sun, 23 Feb 1997 01:22:15 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id BAA01207; Sun, 23 Feb 1997 01:22:12 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id KAA16825; Sun, 23 Feb 1997 10:22:10 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id KAA06876; Sun, 23 Feb 1997 10:13:45 +0100 (MET) Message-ID: Date: Sun, 23 Feb 1997 10:13:45 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: mpp@freefall.freebsd.org (Mike Pritchard) Cc: nsayer@kfu.com, brian@freebsd.org, freebsd-bugs@freefall.freebsd.org Subject: Re: bin/2188 References: <199702230425.UAA15454@freefall.freebsd.org> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199702230425.UAA15454@freefall.freebsd.org>; from Mike Pritchard on Feb 22, 1997 20:25:27 -0800 Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As Mike Pritchard wrote: > Synopsis: ijppp incompatable with SLIRP > > State-Changed-From-To: open-closed > State-Changed-By: mpp > State-Changed-When: Sat Feb 22 20:24:40 PST 1997 > State-Changed-Why: > This can be fixed by disabling pred1 compression. Umm, that's rather a bug with IIJPPP's CCP handling. Please, make sure that at least one PR for the broken CCP layer remains open. I think you can also assign this PR to Brian... :-] -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sun Feb 23 01:22:28 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA01262 for bugs-outgoing; Sun, 23 Feb 1997 01:22:28 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id BAA01250; Sun, 23 Feb 1997 01:22:24 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id KAA16826; Sun, 23 Feb 1997 10:22:23 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id KAA06889; Sun, 23 Feb 1997 10:16:56 +0100 (MET) Message-ID: Date: Sun, 23 Feb 1997 10:16:56 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: mpp@freefall.freebsd.org (Mike Pritchard) Cc: freebsd-bugs@freefall.freebsd.org Subject: Re: bin/2304 References: <199702230510.VAA17973@freefall.freebsd.org> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199702230510.VAA17973@freefall.freebsd.org>; from Mike Pritchard on Feb 22, 1997 21:10:01 -0800 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Mike Pritchard wrote: > Maybe it should only ignore the error if errno == EEXIST? > Does POSIX or the like have anything to say on the matter? -p Create any missing intermediate pathname components. For each dir operand that does not name an existing directory, effects equivalent to those caused by following command shall occur: mkdir -p -m $(umask -S),u+wx $(dirname dir) && mkdir [-m mode] dir where the [-m mode] option represents that option supplied to the original invocation of mkdir, if any. Each dir operand that names an existing directory shall be ignored without error. 4.41.8 Exit Status The mkdir utility shall exit with one of the following values: 0 All the specified directories were created successfully or the -p option was specified and all the specified directories now exist. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sun Feb 23 01:50:43 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA02168 for bugs-outgoing; Sun, 23 Feb 1997 01:50:43 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id BAA02160; Sun, 23 Feb 1997 01:50:38 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id KAA17326; Sun, 23 Feb 1997 10:50:37 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id KAA06933; Sun, 23 Feb 1997 10:26:40 +0100 (MET) Message-ID: Date: Sun, 23 Feb 1997 10:26:40 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: mpp@freefall.freebsd.org (Mike Pritchard) Cc: freebsd-bugs@freefall.freebsd.org Subject: Re: misc/2728 References: <199702230750.XAA26932@freefall.freebsd.org> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199702230750.XAA26932@freefall.freebsd.org>; from Mike Pritchard on Feb 22, 1997 23:50:01 -0800 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Mike Pritchard wrote: > >How-To-Repeat: > Try to translate Darren Reed's ip filter > (No problem on FreeBSD 2.1.6). Darren maintains his ipfilter himself now. It's already part of FreeBSD 3.0-current, and i'll probably also merge it into 2.2. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sun Feb 23 02:58:24 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA03988 for bugs-outgoing; Sun, 23 Feb 1997 02:58:24 -0800 (PST) Received: (from joerg@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA03948; Sun, 23 Feb 1997 02:58:18 -0800 (PST) Date: Sun, 23 Feb 1997 02:58:18 -0800 (PST) From: Joerg Wunsch Message-Id: <199702231058.CAA03948@freefall.freebsd.org> To: jc@irbs.com, joerg, freebsd-bugs Subject: Re: kern/2696 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: de driver support for SMC9332BDT State-Changed-From-To: open-closed State-Changed-By: joerg State-Changed-When: Sun Feb 23 11:57:49 MET 1997 State-Changed-Why: Suggested fix applied in rev 1.60 of if_de.c, thanks! From owner-freebsd-bugs Sun Feb 23 02:59:27 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA04087 for bugs-outgoing; Sun, 23 Feb 1997 02:59:27 -0800 (PST) Received: (from joerg@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA04063; Sun, 23 Feb 1997 02:59:15 -0800 (PST) Date: Sun, 23 Feb 1997 02:59:15 -0800 (PST) From: Joerg Wunsch Message-Id: <199702231059.CAA04063@freefall.freebsd.org> To: iwaki@jaist.ac.jp, joerg, freebsd-bugs Subject: Re: kern/2767 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: [2.2-970215-GAMMA] de0 doesn't work with SMC9332BDT and a solution State-Changed-From-To: open-closed State-Changed-By: joerg State-Changed-When: Sun Feb 23 11:57:49 MET 1997 State-Changed-Why: A similar fix has been applied in rev 1.60 of if_de.c, please test whether this also fixed your problem. From owner-freebsd-bugs Sun Feb 23 04:25:20 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA07665 for bugs-outgoing; Sun, 23 Feb 1997 04:25:20 -0800 (PST) Received: from gvr.win.tue.nl (root@gvr.win.tue.nl [131.155.210.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA07659; Sun, 23 Feb 1997 04:25:12 -0800 (PST) Received: (from guido@localhost) by gvr.win.tue.nl (8.8.5/8.8.2) id NAA16772; Sun, 23 Feb 1997 13:25:09 +0100 (MET) From: Guido van Rooij Message-Id: <199702231225.NAA16772@gvr.win.tue.nl> Subject: Re: kern/1951 In-Reply-To: <199702230001.QAA02476@freefall.freebsd.org> from Mike Pritchard at "Feb 22, 97 04:01:43 pm" To: mpp@freefall.freebsd.org (Mike Pritchard) Date: Sun, 23 Feb 1997 13:25:09 +0100 (MET) Cc: mpp@freefall.freebsd.org, freebsd-bugs@freefall.freebsd.org, guido@freefall.freebsd.org X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Mike Pritchard wrote: > Synopsis: Warning! Defective early revision adapter! > > >From looking at things, the message reported in the > PR is just a warning, and it should work. This can probably > just be closed. Although you might want to improve the > error message? > Indeed, it is a warning. But if you get it you get lousy performance. The warning is quite correct. It is almost exactly as what is in the 3com specs. There used to be a bug in the driver where this message was print even for good adapters sometimes. This is fixed however. The PR will be closed by me. -Guido From owner-freebsd-bugs Sun Feb 23 04:29:41 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA07849 for bugs-outgoing; Sun, 23 Feb 1997 04:29:41 -0800 (PST) Received: from gvr.win.tue.nl (root@gvr.win.tue.nl [131.155.210.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA07842; Sun, 23 Feb 1997 04:29:36 -0800 (PST) Received: (from guido@localhost) by gvr.win.tue.nl (8.8.5/8.8.2) id NAA16824; Sun, 23 Feb 1997 13:29:27 +0100 (MET) From: Guido van Rooij Message-Id: <199702231229.NAA16824@gvr.win.tue.nl> Subject: Re: bin/1882 In-Reply-To: from J Wunsch at "Feb 23, 97 01:50:09 am" To: joerg_wunsch@uriah.heep.sax.de Date: Sun, 23 Feb 1997 13:29:27 +0100 (MET) Cc: mpp@freefall.freebsd.org, guido@freebsd.org, freebsd-bugs@freefall.freebsd.org X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk J Wunsch wrote: > Btw., as i've read in NetBSD's recent ``What's new?'', they decided to > special-case this one as ``anybody's allowed to su root''. Just one > point to consider. > You mean they specified it in the manpage of su? > (I don't thinkt it's a security flaw, since the default /etc/group > ships with just root in group wheel.) Neither do I. The behaviour has always been that if wheel is empty, su will be possible for anyone. -Guido From owner-freebsd-bugs Sun Feb 23 05:21:27 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA09510 for bugs-outgoing; Sun, 23 Feb 1997 05:21:27 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id FAA09503; Sun, 23 Feb 1997 05:21:24 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id OAA21892; Sun, 23 Feb 1997 14:21:18 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id OAA08397; Sun, 23 Feb 1997 14:01:40 +0100 (MET) Message-ID: Date: Sun, 23 Feb 1997 14:01:40 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: guido@gvr.win.tue.nl (Guido van Rooij) Cc: mpp@freefall.freebsd.org, freebsd-bugs@freefall.freebsd.org Subject: Re: bin/1882 References: <199702231229.NAA16824@gvr.win.tue.nl> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199702231229.NAA16824@gvr.win.tue.nl>; from Guido van Rooij on Feb 23, 1997 13:29:27 +0100 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Guido van Rooij wrote: > > (I don't thinkt it's a security flaw, since the default /etc/group > > ships with just root in group wheel.) > > Neither do I. The behaviour has always been that if wheel is empty, > su will be possible for anyone. Are you sure? The PR (see subject) seems to tell otherwise, and even suggests a patch to get exact this behaviour. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sun Feb 23 05:39:25 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA10229 for bugs-outgoing; Sun, 23 Feb 1997 05:39:25 -0800 (PST) Received: from grackle.grondar.za (dJRQD23EazqnRmVB/bTuApzEZazfabUd@grackle.grondar.za [196.7.18.131]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA10220; Sun, 23 Feb 1997 05:39:18 -0800 (PST) Received: from grackle.grondar.za (m7bIXhcef5nML0oMRbpBkdRpICrOOR/u@localhost [127.0.0.1]) by grackle.grondar.za (8.8.5/8.8.4) with ESMTP id PAA29102; Sun, 23 Feb 1997 15:37:49 +0200 (SAT) Message-Id: <199702231337.PAA29102@grackle.grondar.za> X-Mailer: exmh version 2.0gamma 1/27/96 To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) cc: guido@gvr.win.tue.nl (Guido van Rooij), mpp@freefall.freebsd.org, freebsd-bugs@freefall.freebsd.org Subject: Re: bin/1882 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 23 Feb 1997 15:37:39 +0200 From: Mark Murray Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wrote: > As Guido van Rooij wrote: > > > > (I don't thinkt it's a security flaw, since the default /etc/group > > > ships with just root in group wheel.) > > > > Neither do I. The behaviour has always been that if wheel is empty, > > su will be possible for anyone. > > Are you sure? The PR (see subject) seems to tell otherwise, and even > suggests a patch to get exact this behaviour. When in doubt, RTSL. There is a define that you can frob in su to turn this on/off - WHEELSU. M -- Mark Murray PGP key fingerprint = 80 36 6E 40 83 D6 8A 36 This .sig is umop ap!sdn. BC 06 EA 0E 7A F2 CE CE From owner-freebsd-bugs Sun Feb 23 05:57:55 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA10815 for bugs-outgoing; Sun, 23 Feb 1997 05:57:55 -0800 (PST) Received: from gvr.win.tue.nl (root@gvr.win.tue.nl [131.155.210.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA10808; Sun, 23 Feb 1997 05:57:50 -0800 (PST) Received: (from guido@localhost) by gvr.win.tue.nl (8.8.5/8.8.2) id OAA17308; Sun, 23 Feb 1997 14:57:41 +0100 (MET) From: Guido van Rooij Message-Id: <199702231357.OAA17308@gvr.win.tue.nl> Subject: Re: bin/1882 In-Reply-To: from J Wunsch at "Feb 23, 97 02:01:40 pm" To: joerg_wunsch@uriah.heep.sax.de Date: Sun, 23 Feb 1997 14:57:41 +0100 (MET) Cc: mpp@freefall.freebsd.org, freebsd-bugs@freefall.freebsd.org X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk J Wunsch wrote: > As Guido van Rooij wrote: > > > > (I don't thinkt it's a security flaw, since the default /etc/group > > > ships with just root in group wheel.) > > > > Neither do I. The behaviour has always been that if wheel is empty, > > su will be possible for anyone. > > Are you sure? The PR (see subject) seems to tell otherwise, and even > suggests a patch to get exact this behaviour. > I'm sorry. There has been confusion by me on exactly what was the problem. Indeed, the PR is correct. The behaviour is wrong: an empty wheel group means: let anyone be able to su, whereas the implementation is otherwise. I think the patch is correct. -Guido From owner-freebsd-bugs Sun Feb 23 06:41:48 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA13297 for bugs-outgoing; Sun, 23 Feb 1997 06:41:48 -0800 (PST) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id GAA13292 for ; Sun, 23 Feb 1997 06:41:45 -0800 (PST) Received: from ct.picker.com by whqvax.picker.com with SMTP; Sun, 23 Feb 1997 9:41:14 -0500 (EST) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA25196; Sun, 23 Feb 97 09:41:12 EST Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id JAA29314; Sun, 23 Feb 1997 09:38:59 -0500 Message-Id: <19970223093859.16976@ct.picker.com> Date: Sun, 23 Feb 1997 09:38:59 -0500 From: Randall Hopper To: bugs@freeBSD.org Subject: 2.2-GAMMA sysinstall failure Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.61 Sender: owner-bugs@freeBSD.org X-Loop: FreeBSD.org Precedence: bulk I'd send-pr this, but I'm trying to recover from 2.2-ALPHA having trashed my root disk, and have no FreeBSD to do it in. Aborting sysinstall off the bootfloppy (exit button at the bottom right of the dialog) results in a message something like "Can't find /etc/sysconfig: This is bad!" This is with the 970215 2.2-GAMMA snap Randall Hopper From owner-freebsd-bugs Sun Feb 23 06:59:02 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA14064 for bugs-outgoing; Sun, 23 Feb 1997 06:59:02 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA14040; Sun, 23 Feb 1997 06:58:59 -0800 (PST) Date: Sun, 23 Feb 1997 06:58:59 -0800 (PST) From: Poul-Henning Kamp Message-Id: <199702231458.GAA14040@freefall.freebsd.org> To: proff@iq.org, phk, freebsd-bugs Subject: Re: bin/2634 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: rtld patches for easy creation of chroot enviroments State-Changed-From-To: open-closed State-Changed-By: phk State-Changed-When: Sun Feb 23 06:54:44 PST 1997 State-Changed-Why: The actual advantage of using this feature has not been documented to exceed the very high threshold it has to cross to get to mess with the shared library mechanism. There seems no overwhelming reason not to call this creeping featurism or downright bloat, and the feature is of use only in environments where you would already have had to hack the sources heavily, qed: perfect fodder for a local enhancement. closed. From owner-freebsd-bugs Sun Feb 23 07:03:07 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA14226 for bugs-outgoing; Sun, 23 Feb 1997 07:03:07 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id HAA14217; Sun, 23 Feb 1997 07:02:58 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id QAA23585; Sun, 23 Feb 1997 16:02:30 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id PAA08613; Sun, 23 Feb 1997 15:28:41 +0100 (MET) Message-ID: Date: Sun, 23 Feb 1997 15:28:41 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: mark@grondar.za (Mark Murray) Cc: guido@gvr.win.tue.nl (Guido van Rooij), mpp@freefall.freebsd.org, freebsd-bugs@freefall.freebsd.org Subject: Re: bin/1882 References: <199702231337.PAA29102@grackle.grondar.za> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199702231337.PAA29102@grackle.grondar.za>; from Mark Murray on Feb 23, 1997 15:37:39 +0200 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Mark Murray wrote: > When in doubt, RTSL. There is a define that you can frob in su > to turn this on/off - WHEELSU. Ah, no. That's an _entirely_ different thing. It allows anybody in group wheel to `su root' with his/her own password. That's merely the opposite to the subject of this PR (allowing to su root with root's password but for anybody, not just members of wheel). So it seems the should be integrated into the source. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sun Feb 23 07:08:33 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA14594 for bugs-outgoing; Sun, 23 Feb 1997 07:08:33 -0800 (PST) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA14587 for ; Sun, 23 Feb 1997 07:08:27 -0800 (PST) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id HAA14433; Sun, 23 Feb 1997 07:08:18 -0800 (PST) To: Randall Hopper cc: bugs@FreeBSD.ORG Subject: Re: 2.2-GAMMA sysinstall failure In-reply-to: Your message of "Sun, 23 Feb 1997 09:38:59 EST." <19970223093859.16976@ct.picker.com> Date: Sun, 23 Feb 1997 07:08:18 -0800 Message-ID: <14429.856710498@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > I'd send-pr this, but I'm trying to recover from 2.2-ALPHA having trashed > my root disk, and have no FreeBSD to do it in. No problem, I can guess exactly what happened. Fixed! Thanks. Jordan From owner-freebsd-bugs Sun Feb 23 09:10:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA18968 for bugs-outgoing; Sun, 23 Feb 1997 09:10:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA18959; Sun, 23 Feb 1997 09:10:04 -0800 (PST) Resent-Date: Sun, 23 Feb 1997 09:10:04 -0800 (PST) Resent-Message-Id: <199702231710.JAA18959@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.JAA18706;Sun; (8.8.5/8.8.5);, 23 Feb 1997 09:04:23.-0800 (PST) Message-Id: <199702231704.JAA18706@freefall.freebsd.org> Date: Sun, 23 Feb 1997 09:04:23 -0800 (PST) From: froden@bigblue.no To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/2804: /usr/sbin/login reports: "root login refused on this terminal." when it should report "Login incorrect" Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2804 >Category: bin >Synopsis: /usr/sbin/login reports: "root login refused on this terminal." when it should report "Login incorrect" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 09:10:01 PST 1997 >Last-Modified: >Originator: Frode Nordahl >Organization: Big Blue Systems AS >Release: 2.1.5-RELEASE / 2.1.7-RELEASE >Environment: FreeBSD login.bigblue.no 2.1.5-RELEASE FreeBSD 2.1.5-RELEASE #0: Fri Feb 21 13:26:04 MET 1997 root@login.bigblue.no:/usr/src/sys/compile/LOGIN i386 >Description: When telneting into, or using any non-secure port on a FreeBSD system, /usr/sbin/login reports "root login refused on this terminal." when you try to log in as root with correct password. It should however report "Login incorect" no matter if the password is correct or not, if not outside users can test and find out what your root password is without even loging in. >How-To-Repeat: telnet to a FreeBSD machine and login with root with correct password. >Fix: Alter /usr/sbin/login to report "Login incorect" instead of "login refused on this terminal" ? >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sun Feb 23 09:12:36 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA19200 for bugs-outgoing; Sun, 23 Feb 1997 09:12:36 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA19178; Sun, 23 Feb 1997 09:12:29 -0800 (PST) Date: Sun, 23 Feb 1997 09:12:29 -0800 (PST) From: Mike Pritchard Message-Id: <199702231712.JAA19178@freefall.freebsd.org> To: desmo@bandwidth.org, mpp, freebsd-bugs Subject: Re: kern/2149 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Keyboard probe fails State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Sun Feb 23 09:11:54 PST 1997 State-Changed-Why: The originator says that the problem does not appear in 2.2-GAMMA or 3.0-current. From owner-freebsd-bugs Sun Feb 23 09:16:09 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA19411 for bugs-outgoing; Sun, 23 Feb 1997 09:16:09 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA19390; Sun, 23 Feb 1997 09:16:02 -0800 (PST) Date: Sun, 23 Feb 1997 09:16:02 -0800 (PST) From: Mike Pritchard Message-Id: <199702231716.JAA19390@freefall.freebsd.org> To: mpp, freebsd-bugs, joerg Subject: Re: kern/2388 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: start unit command screws up some CDROM drives. Responsible-Changed-From-To: freebsd-bugs->joerg Responsible-Changed-By: mpp Responsible-Changed-When: Sun Feb 23 09:15:45 PST 1997 Responsible-Changed-Why: Joerg said he would take this one. From owner-freebsd-bugs Sun Feb 23 09:18:55 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA19563 for bugs-outgoing; Sun, 23 Feb 1997 09:18:55 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA19543; Sun, 23 Feb 1997 09:18:50 -0800 (PST) Date: Sun, 23 Feb 1997 09:18:50 -0800 (PST) From: Mike Pritchard Message-Id: <199702231718.JAA19543@freefall.freebsd.org> To: muir@idiom.com, mpp, freebsd-bugs Subject: Re: misc/2505 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: /etc/utmp messed up (by xterm?) in 2.2-Beta State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Sun Feb 23 09:18:21 PST 1997 State-Changed-Why: Pilot error. The user didn't have to corect Xfree dist loaded. From owner-freebsd-bugs Sun Feb 23 09:22:59 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA19857 for bugs-outgoing; Sun, 23 Feb 1997 09:22:59 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA19831; Sun, 23 Feb 1997 09:22:46 -0800 (PST) Date: Sun, 23 Feb 1997 09:22:46 -0800 (PST) From: Mike Pritchard Message-Id: <199702231722.JAA19831@freefall.freebsd.org> To: ob@partner.de, mpp, freebsd-bugs Subject: Re: kern/2334 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: it doesn't recognise 3Com 5x9 PCMCIA Card in Toshiba Notebook T2400CT State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Sun Feb 23 09:22:28 PST 1997 State-Changed-Why: The originator reports that this was solved in 2.1.6. From owner-freebsd-bugs Sun Feb 23 09:27:55 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA20173 for bugs-outgoing; Sun, 23 Feb 1997 09:27:55 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA20150; Sun, 23 Feb 1997 09:27:48 -0800 (PST) Date: Sun, 23 Feb 1997 09:27:48 -0800 (PST) From: Mike Pritchard Message-Id: <199702231727.JAA20150@freefall.freebsd.org> To: gilbertd@cs.man.ac.uk, mpp, freebsd-bugs Subject: Re: bin/2627 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Can't shutdown cleanly (1 filesystem?) State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Sun Feb 23 09:27:05 PST 1997 State-Changed-Why: The originator says the problem seems to have gone away now that he is keeping up with the latest 2.2-GAMMA. From owner-freebsd-bugs Sun Feb 23 09:46:19 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA21333 for bugs-outgoing; Sun, 23 Feb 1997 09:46:19 -0800 (PST) Received: from halloran-eldar.lcs.mit.edu (halloran-eldar.lcs.mit.edu [18.26.0.159]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id JAA21309; Sun, 23 Feb 1997 09:46:11 -0800 (PST) Received: by halloran-eldar.lcs.mit.edu; (5.65v3.2/1.1.8.2/19Aug95-0530PM) id AA31339; Sun, 23 Feb 1997 12:46:10 -0500 Date: Sun, 23 Feb 1997 12:46:10 -0500 From: Garrett Wollman Message-Id: <9702231746.AA31339@halloran-eldar.lcs.mit.edu> To: Mike Pritchard Cc: freebsd-bugs@freefall.freebsd.org, wollman@freefall.freebsd.org Subject: Re: bin/2170 In-Reply-To: <199702230555.VAA21201@freefall.freebsd.org> References: <199702230555.VAA21201@freefall.freebsd.org> Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk < said: > Synopsis: fetch in 2.1.5R doesn't keep interrupted files and sets wrong mirror date > Responsible-Changed-From-To: freebsd-bugs->wollman > wollman did the last major overhaul of fetch. wollman did not do the version of fetch that was in 2.1.5, and wollman has no further plans to touch 2.1.5. wollman would strongly suggest that he is quite capable of accepting responsibility himself for those bugs which he intends/has time to fix, and would appreciate it if in the future mpp did not take it upon himself to assign other bugs to him. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, ANA, or NSA| - Susan Aglukark and Chad Irschick From owner-freebsd-bugs Sun Feb 23 10:00:07 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA22242 for bugs-outgoing; Sun, 23 Feb 1997 10:00:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA22201; Sun, 23 Feb 1997 10:00:03 -0800 (PST) Resent-Date: Sun, 23 Feb 1997 10:00:03 -0800 (PST) Resent-Message-Id: <199702231800.KAA22201@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.JAA21913;Sun; (8.8.5/8.8.5);, 23 Feb 1997 09:55:59.-0800 (PST) Message-Id: <199702231755.JAA21913@freefall.freebsd.org> Date: Sun, 23 Feb 1997 09:55:59 -0800 (PST) From: richterb@furball.wellsfargo.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/2805: remove hard coded slowdown count and failed login count Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2805 >Category: bin >Synopsis: remove hard coded slowdown count and failed login count >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 10:00:01 PST 1997 >Last-Modified: >Originator: Bill Richter >Organization: >Release: 2.2-GAMMA >Environment: FreeBSD binkley 2.2-GAMMA FreeBSD 2.2-GAMMA #2: Mon Feb 17 14:29:56 PST 1997 richterb@binkley:/usr/src/sys/compile/BINKLEY i386 >Description: Both 3 and 10 are hardcoded numbers and 10 is a lot of attempts at a failed login even with the default delay commencing after 3 failures. Just change 3 and 10 to defines instead would make customization of the function easier. Would prefer moving the numbers out to a configuration file but alas that might be a bit more complicated. /* we allow 10 tries, but after 3 we start backing off */ if (++cnt > 3) { if (cnt >= 10) { badlogin(username); sleepexit(1); } >How-To-Repeat: n/a >Fix: *** login.c Sun Feb 23 09:47:42 1997 --- mylogin.c Sun Feb 23 09:47:27 1997 *************** *** 94,99 **** --- 94,101 ---- extern void login __P((struct utmp *)); #define TTYGRPNAME "tty" /* name of group to own ttys */ + #define RETRY 3 /* count before slowing prompt * / + #define BAD_ATTEMPTS 10 /* count before aborting login * / /* * This bounds the time given to login. Not a define so it can *************** *** 341,351 **** (void)printf("Login incorrect\n"); failures++; ! /* we allow 10 tries, but after 3 we start backing off */ ! if (++cnt > 3) { ! if (cnt >= 10) { ! badlogin(username); ! sleepexit(1); } sleep((u_int)((cnt - 3) * 5)); } --- 343,355 ---- (void)printf("Login incorrect\n"); failures++; ! ! /* when bad logins exceeds BAD_ATTEMPTS, we exit but when ! bad logins exceeds RETRY we start adding delay to the prompt */ ! if (++cnt > RETRY) { ! if (cnt >= BAD_ATTEMPTS) { ! badlogin(username); ! sleepexit(1); } sleep((u_int)((cnt - 3) * 5)); } >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sun Feb 23 10:10:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA22811 for bugs-outgoing; Sun, 23 Feb 1997 10:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA22803; Sun, 23 Feb 1997 10:10:02 -0800 (PST) Date: Sun, 23 Feb 1997 10:10:02 -0800 (PST) Message-Id: <199702231810.KAA22803@freefall.freebsd.org> To: freebsd-bugs Cc: From: Garrett Wollman Subject: bin/2804: /usr/sbin/login reports: "root login refused on this terminal." when it should report "Login incorrect" Reply-To: Garrett Wollman Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR bin/2804; it has been noted by GNATS. From: Garrett Wollman To: froden@bigblue.no Cc: freebsd-gnats-submit@freebsd.org Subject: bin/2804: /usr/sbin/login reports: "root login refused on this terminal." when it should report "Login incorrect" Date: Sun, 23 Feb 1997 13:04:07 -0500 <> Synopsis: /usr/sbin/login reports: "root login refused on this terminal." when it should report "Login incorrect" That's really not very useful. I would suggest that you have this backwards: when a root login is attempted on an insecure terminal, it should either: 1) Refuse immediately without asking for a password. or 2) Respond `root login refused on this terminal' without verifying the password. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, ANA, or NSA| - Susan Aglukark and Chad Irschick From owner-freebsd-bugs Sun Feb 23 10:18:02 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA23152 for bugs-outgoing; Sun, 23 Feb 1997 10:18:02 -0800 (PST) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id KAA23144 for ; Sun, 23 Feb 1997 10:17:56 -0800 (PST) Received: from ct.picker.com by whqvax.picker.com with SMTP; Sun, 23 Feb 1997 13:17:23 -0500 (EST) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA27823; Sun, 23 Feb 97 13:17:21 EST Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id NAA29527; Sun, 23 Feb 1997 13:15:09 -0500 Message-Id: <19970223131508.05691@ct.picker.com> Date: Sun, 23 Feb 1997 13:15:08 -0500 From: Randall Hopper To: bugs@freebsd.org Subject: 2.2-GAMMA install nit (fstab) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.61 Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk The default fstab has this at the top: # Device Mountpoint FStype Options Dump? fsck pass# # (0=no) (0=no fsck) I suppose one of the 0= comments should be removed. Randall Hopper From owner-freebsd-bugs Sun Feb 23 10:19:53 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA23323 for bugs-outgoing; Sun, 23 Feb 1997 10:19:53 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA23299; Sun, 23 Feb 1997 10:19:44 -0800 (PST) Date: Sun, 23 Feb 1997 10:19:44 -0800 (PST) From: Mike Pritchard Message-Id: <199702231819.KAA23299@freefall.freebsd.org> To: george@cia-g.com, mpp, freebsd-bugs Subject: Re: kern/2270 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Hayes ESP serial card locks system as of 12/01 kernel. State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Sun Feb 23 10:19:18 PST 1997 State-Changed-Why: Duplicate of PR# 2270. From owner-freebsd-bugs Sun Feb 23 10:20:56 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA23542 for bugs-outgoing; Sun, 23 Feb 1997 10:20:56 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA23478; Sun, 23 Feb 1997 10:20:46 -0800 (PST) Date: Sun, 23 Feb 1997 10:20:46 -0800 (PST) From: Mike Pritchard Message-Id: <199702231820.KAA23478@freefall.freebsd.org> To: george@cia-g.com, mpp, freebsd-bugs Subject: Re: kern/2270 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Hayes ESP serial card locks system as of 12/01 kernel. State-Changed-From-To: closed-open State-Changed-By: mpp State-Changed-When: Sun Feb 23 10:20:12 PST 1997 State-Changed-Why: Oops, PR# 2611 is a duplicate of this one and I closed this one by mistake. From owner-freebsd-bugs Sun Feb 23 10:21:16 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA23596 for bugs-outgoing; Sun, 23 Feb 1997 10:21:16 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA23575; Sun, 23 Feb 1997 10:21:06 -0800 (PST) Date: Sun, 23 Feb 1997 10:21:06 -0800 (PST) From: Mike Pritchard Message-Id: <199702231821.KAA23575@freefall.freebsd.org> To: mike@outerware.com, mpp, freebsd-bugs Subject: Re: bin/2611 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: User PPP hangs machine hard periodically State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Sun Feb 23 10:20:12 PST 1997 State-Changed-Why: Duplicate or PR# 2270. From owner-freebsd-bugs Sun Feb 23 10:30:10 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA24036 for bugs-outgoing; Sun, 23 Feb 1997 10:30:10 -0800 (PST) Received: from mail.crl.com (mail.crl.com [165.113.1.22]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id KAA24024; Sun, 23 Feb 1997 10:30:03 -0800 (PST) Received: from crh.cl.msu.edu by mail.crl.com with SMTP id AA22115 (5.65c/IDA-1.5); Sun, 23 Feb 1997 10:28:28 -0800 Received: (from henrich@localhost) by crh.cl.msu.edu (8.8.5/8.8.4) id NAA03621; Sun, 23 Feb 1997 13:26:00 -0500 (EST) From: Charles Henrich Message-Id: <199702231826.NAA03621@crh.cl.msu.edu> Subject: Re: bin/2692 To: mpp@freefall.freebsd.org (Mike Pritchard) Date: Sun, 23 Feb 1997 13:25:59 -0500 (EST) Cc: henrich@msu.edu, mpp@freefall.freebsd.org, freebsd-bugs@freefall.freebsd.org In-Reply-To: <199702230722.XAA25824@freefall.freebsd.org> from Mike Pritchard at "Feb 22, 97 11:22:20 pm" X-Mailer: ELM [version 2.4ME+ PL22 (25)] Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Synopsis: Find is busted > > State-Changed-From-To: open-closed > State-Changed-By: mpp > State-Changed-When: Sat Feb 22 23:15:51 PST 1997 > State-Changed-Why: > Duplicate of PR# 1910. However, in this case, find is > doing as it should: reporting "expoitable" file names that > would have been handed off to xargs. this is bogus! On half of my systems I get three thousand lines everytime the damn thing runs, obscuring the daily reports. There should be a way to tell find to shut the hell up. Its not an "illegal" filename, because you can create (anyone can create it!) on the filesystm. -Crh Charles Henrich Michigan State University henrich@msu.edu http://pilot.msu.edu/~henrich From owner-freebsd-bugs Sun Feb 23 10:35:49 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA24311 for bugs-outgoing; Sun, 23 Feb 1997 10:35:49 -0800 (PST) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id KAA24305; Sun, 23 Feb 1997 10:35:46 -0800 (PST) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <15754(4)>; Sun, 23 Feb 1997 10:34:34 PST Received: from localhost by crevenia.parc.xerox.com with SMTP id <177476>; Sun, 23 Feb 1997 10:34:20 -0800 To: Mike Pritchard cc: henrich@msu.edu, freebsd-bugs@freefall.freebsd.org Subject: Re: bin/2692 In-reply-to: Your message of "Sat, 22 Feb 97 23:22:20 PST." <199702230722.XAA25824@freefall.freebsd.org> Date: Sun, 23 Feb 1997 10:34:14 PST From: Bill Fenner Message-Id: <97Feb23.103420pst.177476@crevenia.parc.xerox.com> Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Mike Pritchard wrote: >Duplicate of PR# 1910. However, in this case, find is >doing as it should: reporting "expoitable" file names that >would have been handed off to xargs. What about "find -print0 | xargs -0"? I thought these were implemented in response to the PR; were the appropriate scripts modified to use the new flags? Bill From owner-freebsd-bugs Sun Feb 23 10:49:52 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA24927 for bugs-outgoing; Sun, 23 Feb 1997 10:49:52 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA24912; Sun, 23 Feb 1997 10:49:31 -0800 (PST) From: Mike Pritchard Message-Id: <199702231849.KAA24912@freefall.freebsd.org> Subject: Re: bin/2692 To: fenner@parc.xerox.com (Bill Fenner) Date: Sun, 23 Feb 1997 10:49:31 -0800 (PST) Cc: henrich@msu.edu, freebsd-bugs@freefall.freebsd.org In-Reply-To: <97Feb23.103420pst.177476@crevenia.parc.xerox.com> from "Bill Fenner" at Feb 23, 97 10:34:14 am X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Bill Fenner wrote: > > Mike Pritchard wrote: > >Duplicate of PR# 1910. However, in this case, find is > >doing as it should: reporting "expoitable" file names that > >would have been handed off to xargs. > > What about "find -print0 | xargs -0"? I thought these were implemented > in response to the PR; were the appropriate scripts modified to use the > new flags? No, /etc/security was not changed to take advantage of this. Sigh... -- Mike Pritchard mpp@FreeBSD.org "Go that way. Really fast. If something gets in your way, turn" From owner-freebsd-bugs Sun Feb 23 11:37:03 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA28580 for bugs-outgoing; Sun, 23 Feb 1997 11:37:03 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA28557; Sun, 23 Feb 1997 11:36:56 -0800 (PST) Date: Sun, 23 Feb 1997 11:36:56 -0800 (PST) From: Mike Pritchard Message-Id: <199702231936.LAA28557@freefall.freebsd.org> To: proff@suburbia.net, mpp, freebsd-bugs Subject: Re: misc/2300 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: include/sys/dirent.h needs to include sys/type.h State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Sun Feb 23 11:35:25 PST 1997 State-Changed-Why: Bde said that he thinks POSIX requires the application to include types.h in this case. We may change this someyear, but not now. From owner-freebsd-bugs Sun Feb 23 11:52:46 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA29189 for bugs-outgoing; Sun, 23 Feb 1997 11:52:46 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id LAA29177 for ; Sun, 23 Feb 1997 11:52:36 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id UAA00847 for freebsd-bugs@freefall.freebsd.org; Sun, 23 Feb 1997 20:52:33 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id UAA16529; Sun, 23 Feb 1997 20:48:58 +0100 (MET) Message-ID: Date: Sun, 23 Feb 1997 20:48:58 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: freebsd-bugs@freefall.freebsd.org Subject: Re: bin/2804: /usr/sbin/login reports: "root login refused on this terminal." when it should report "Login incorrect" References: <199702231810.KAA22803@freefall.freebsd.org> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199702231810.KAA22803@freefall.freebsd.org>; from Garrett Wollman on Feb 23, 1997 10:10:02 -0800 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Garrett Wollman wrote: > 1) Refuse immediately without asking for a password. > > or > > 2) Respond `root login refused on this terminal' without verifying the > password. Both aren't correct either. They allow spying additional UID 0 accounts. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sun Feb 23 12:09:02 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA29972 for bugs-outgoing; Sun, 23 Feb 1997 12:09:02 -0800 (PST) Received: from gvr.win.tue.nl (root@gvr.win.tue.nl [131.155.210.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id MAA29966; Sun, 23 Feb 1997 12:08:55 -0800 (PST) Received: (from guido@localhost) by gvr.win.tue.nl (8.8.5/8.8.2) id VAA00485; Sun, 23 Feb 1997 21:08:14 +0100 (MET) From: Guido van Rooij Message-Id: <199702232008.VAA00485@gvr.win.tue.nl> Subject: Re: bin/1882 In-Reply-To: <199702231337.PAA29102@grackle.grondar.za> from Mark Murray at "Feb 23, 97 03:37:39 pm" To: mark@grondar.za (Mark Murray) Date: Sun, 23 Feb 1997 21:08:14 +0100 (MET) Cc: joerg_wunsch@uriah.heep.sax.de, mpp@freefall.freebsd.org, freebsd-bugs@freefall.freebsd.org X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > > > Are you sure? The PR (see subject) seems to tell otherwise, and even > > suggests a patch to get exact this behaviour. > > When in doubt, RTSL. There is a define that you can frob in su > to turn this on/off - WHEELSU. That's not the issue here. What is wanted is that wheel, when non-empty determines if you can su to root. When it is empty, su should not pose any limits on who can su to root. WHEELSU completely disables checking for who's in wheel. -Guido From owner-freebsd-bugs Sun Feb 23 12:30:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA00912 for bugs-outgoing; Sun, 23 Feb 1997 12:30:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA00903; Sun, 23 Feb 1997 12:30:02 -0800 (PST) Date: Sun, 23 Feb 1997 12:30:02 -0800 (PST) Message-Id: <199702232030.MAA00903@freefall.freebsd.org> To: freebsd-bugs Cc: From: Mike Pritchard Subject: Re: bin/2804: /usr/sbin/login reports: "root login refused on this terminal." when it should report "Login incorrect" Reply-To: Mike Pritchard Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR bin/2804; it has been noted by GNATS. From: Mike Pritchard To: joerg_wunsch@uriah.heep.sax.de Cc: freebsd-gnats-submit Subject: Re: bin/2804: /usr/sbin/login reports: "root login refused on this terminal." when it should report "Login incorrect" Date: Sun, 23 Feb 1997 12:26:09 -0800 (PST) J Wunsch wrote: > > As Garrett Wollman wrote: > > > 1) Refuse immediately without asking for a password. > > > > or > > > > 2) Respond `root login refused on this terminal' without verifying the > > password. > > Both aren't correct either. They allow spying additional UID 0 > accounts. The rule I taught to follow was that you should never provide any more information than "login incorrect" because anything beyond that may help the intruder. Telling them "root logins refused" informs them right off that you have secure ttys enabled, and that they should go try to find another way into the machine. I think the only other case we don't just report "login incorrect" is if the account is expired, but you need to correct password first. Both cases should probably just report "login incorrect", and send a syslog message about. -- Mike Pritchard mpp@FreeBSD.org "Go that way. Really fast. If something gets in your way, turn" From owner-freebsd-bugs Sun Feb 23 12:59:56 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA02121 for bugs-outgoing; Sun, 23 Feb 1997 12:59:56 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id MAA02110; Sun, 23 Feb 1997 12:59:44 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id VAA02812; Sun, 23 Feb 1997 21:59:27 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id VAA16704; Sun, 23 Feb 1997 21:29:22 +0100 (MET) Message-ID: Date: Sun, 23 Feb 1997 21:29:22 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: guido@gvr.win.tue.nl (Guido van Rooij) Cc: mark@grondar.za (Mark Murray), mpp@freefall.freebsd.org, freebsd-bugs@freefall.freebsd.org Subject: Re: bin/1882 References: <199702231337.PAA29102@grackle.grondar.za> <199702232008.VAA00485@gvr.win.tue.nl> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199702232008.VAA00485@gvr.win.tue.nl>; from Guido van Rooij on Feb 23, 1997 21:08:14 +0100 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Guido van Rooij wrote: > WHEELSU completely disables checking for who's in wheel. No. :-) It completely disables asking for the root password, and gets away with the user's password instead. Of course, it would combine _very badly_ with the ``empty wheel group means anybody can su root'' feature. ;-) -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sun Feb 23 13:04:13 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA02279 for bugs-outgoing; Sun, 23 Feb 1997 13:04:13 -0800 (PST) Received: from gvr.win.tue.nl (root@gvr.win.tue.nl [131.155.210.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA02273; Sun, 23 Feb 1997 13:04:04 -0800 (PST) Received: (from guido@localhost) by gvr.win.tue.nl (8.8.5/8.8.2) id WAA00728; Sun, 23 Feb 1997 22:03:10 +0100 (MET) From: Guido van Rooij Message-Id: <199702232103.WAA00728@gvr.win.tue.nl> Subject: Re: bin/1882 In-Reply-To: from J Wunsch at "Feb 23, 97 09:29:22 pm" To: joerg_wunsch@uriah.heep.sax.de Date: Sun, 23 Feb 1997 22:03:10 +0100 (MET) Cc: mark@grondar.za, mpp@freefall.freebsd.org, freebsd-bugs@freefall.freebsd.org X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk J Wunsch wrote: > As Guido van Rooij wrote: > > > WHEELSU completely disables checking for who's in wheel. > > No. :-) It completely disables asking for the root password, and gets > away with the user's password instead. Of course, it would combine > _very badly_ with the ``empty wheel group means anybody can su root'' > feature. ;-) Really? What a strange name for the define then.. -Guido From owner-freebsd-bugs Sun Feb 23 13:37:22 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA03660 for bugs-outgoing; Sun, 23 Feb 1997 13:37:22 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA03633; Sun, 23 Feb 1997 13:37:08 -0800 (PST) Date: Sun, 23 Feb 1997 13:37:08 -0800 (PST) From: Mike Pritchard Message-Id: <199702232137.NAA03633@freefall.freebsd.org> To: mi@aldan.ziplink.net, mpp, guido, freebsd-bugs Subject: Re: misc/1910 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: filenames with unusual characters break /etc/security (or find(1)) State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Sun Feb 23 13:34:51 PST 1997 State-Changed-Why: Fixed by: /home/ncvs/src/etc/security,v <-- security new revision: 1.19; previous revision: 1.18 Responsible-Changed-From-To: guido->freebsd-bugs Responsible-Changed-By: mpp Responsible-Changed-When: Sun Feb 23 13:34:51 PST 1997 Responsible-Changed-Why: Changed back to the mailing list for list notification. From owner-freebsd-bugs Sun Feb 23 13:53:43 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA04276 for bugs-outgoing; Sun, 23 Feb 1997 13:53:43 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA04264; Sun, 23 Feb 1997 13:53:30 -0800 (PST) From: Mike Pritchard Message-Id: <199702232153.NAA04264@freefall.freebsd.org> Subject: Re: bin/2692 To: henrich@crh.cl.msu.edu (Charles Henrich) Date: Sun, 23 Feb 1997 13:53:29 -0800 (PST) Cc: henrich@msu.edu, freebsd-bugs@freefall.freebsd.org In-Reply-To: <199702231826.NAA03621@crh.cl.msu.edu> from "Charles Henrich" at Feb 23, 97 01:25:59 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Charles Henrich wrote: > > Duplicate of PR# 1910. However, in this case, find is > > doing as it should: reporting "expoitable" file names that > > would have been handed off to xargs. > > this is bogus! On half of my systems I get three thousand lines everytime the > damn thing runs, obscuring the daily reports. There should be a way to tell > find to shut the hell up. Its not an "illegal" filename, because you can > create (anyone can create it!) on the filesystm. OK. I just committed a fix for this. find/xargs now use the -print0 and -0 options to pass "illegal" files names between each other in a safe manner. However, while looking at this, I noticed that we only check "ufs" file. Shouldn't the following line be changed from: MP=`mount -t ufs | grep -v " nosuid" | sed 's;/dev/;&r;' | awk '{ print $3 }'` to: MP=`mount -t ufs,ext2fs,mfs | ...` or some such list? -- Mike Pritchard mpp@FreeBSD.org "Go that way. Really fast. If something gets in your way, turn" From owner-freebsd-bugs Sun Feb 23 14:50:07 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA06655 for bugs-outgoing; Sun, 23 Feb 1997 14:50:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA06641; Sun, 23 Feb 1997 14:50:02 -0800 (PST) Date: Sun, 23 Feb 1997 14:50:02 -0800 (PST) Message-Id: <199702232250.OAA06641@freefall.freebsd.org> To: freebsd-bugs Cc: From: j@uriah.heep.sax.de (J Wunsch) Subject: Re: bin/2804: /usr/sbin/login reports: "root login refused on this terminal." when it should report "Login incorrect" Reply-To: j@uriah.heep.sax.de (J Wunsch) Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR bin/2804; it has been noted by GNATS. From: j@uriah.heep.sax.de (J Wunsch) To: mpp@freefall.freebsd.org (Mike Pritchard) Cc: freebsd-gnats-submit@freefall.freebsd.org Subject: Re: bin/2804: /usr/sbin/login reports: "root login refused on this terminal." when it should report "Login incorrect" Date: Sun, 23 Feb 1997 22:03:08 +0100 As Mike Pritchard wrote: > Both cases should probably just report "login incorrect", and send > a syslog message about. I also think so. Note that we've plugged a similar hole in uucpd long ago (in FreeBSD 1.1.5.1 or earlier), while it's still wide open in 4.4BSD-Lite2. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sun Feb 23 15:50:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA10462 for bugs-outgoing; Sun, 23 Feb 1997 15:50:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA10456; Sun, 23 Feb 1997 15:50:03 -0800 (PST) Resent-Date: Sun, 23 Feb 1997 15:50:03 -0800 (PST) Resent-Message-Id: <199702232350.PAA10456@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, carol@tinker.com Received: from tinker.com (troll.tinker.com [204.214.7.146]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA10140 for ; Sun, 23 Feb 1997 15:44:29 -0800 (PST) Received: by localhost (8.7.5/8.7.3) Received: by mail.tinker.com via smap (V1.3) id sma001235; Sun Feb 23 17:55:17 1997 Received: by localhost (8.7.5/8.7.3) Message-Id: <199702232323.RAA29283@mailhub.tinker.com> Date: Sun, 23 Feb 1997 17:23:05 -0600 (CST) From: carol@tinker.com Reply-To: carol@tinker.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/2807: pcisupport.c uses sprintf field widths, not supported in kernel Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2807 >Category: kern >Synopsis: pcisupport.c uses sprintf field widths, not supported in kernel >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 23 15:50:01 PST 1997 >Last-Modified: >Originator: Carol Lyn Deihl >Organization: Shrier and Deihl >Release: FreeBSD 2.1.7-RELEASE i386 >Environment: using PCI devices >Description: In 2.1.6 /usr/src/sys/pci/pcisupport.c was modified to ensure that the sprintf format string PPB_DESCR wouldn't overrun the space malloc'd for it. However, the modification uses sprintf field widths (e.g. %04x), which are not supported in the kernel's sprintf. At boot time, the string printed on the console still has the field width specifiers (since they weren't recognized by kernel's sprintf), instead of the desired data. At least it's guaranteed not to overrun the malloc'd buffer :-). This problem still exists in 2.1.7. >How-To-Repeat: Boot with PCI devices installed. >Fix: Here is a suggested patch that doesn't rely on field width specifiers and also guarantees no overrun: pcisupport.patch - patch to fix sprintf format string because kernel's sprintf doesn't understand field widths (e.g. %04x) Carol Deihl 1997/02/23 To apply these patches, copy this file to SOMEWHERE cd /usr/src patch > 16) & 0xffff, (classreg >> 16) & 0xff); --- 96,106 ---- unsigned id = pci_conf_read (tag, PCI_ID_REG); ! descr = malloc (sizeof PPB_DESCR /* includes the nul */ ! + 4 /* for vendor */ ! + 4 /* for device */ ! + 3 /* for subclass */ ! + 1 /* for just in case */, M_DEVBUF, M_WAITOK); if (descr) { sprintf (descr, PPB_DESCR, id & 0xffff, (id >> 16) & 0xffff, (classreg >> 16) & 0xff); >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sun Feb 23 16:30:40 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id QAA12874 for bugs-outgoing; Sun, 23 Feb 1997 16:30:40 -0800 (PST) Received: from main.statsci.com (main.statsci.com [206.63.206.110]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id QAA12869 for ; Sun, 23 Feb 1997 16:30:37 -0800 (PST) Received: from apple.statsci.com [206.63.206.4] with smtp by main.statsci.com with smtp (/\oo/\ Smail3.1.29.1 #29.3 #3) id m0vyoJO-0003wMC; Sun, 23 Feb 97 16:30 PST Received: from statsci.com [127.0.0.1] with smtp by apple.statsci.com with smtp (/\oo/\ Smail3.1.29.1 #29.3 #3) id m0vynUk-0006uFC; Sun, 23 Feb 97 15:38 PST Message-Id: To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) cc: freebsd-bugs@freefall.freebsd.org Subject: Re: bin/2803: /bin/sh 'for' statement vs IFS setting problem References: <199702230640.WAA23740@freefall.freebsd.org> In-reply-to: Your message of "Sun, 23 Feb 1997 10:06:20 +0100." Reply-to: scott@statsci.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <1383.856741093.1@statsci.com> Date: Sun, 23 Feb 1997 15:38:14 -0800 From: Scott Blachowicz Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk j@uriah.heep.sax.de (J Wunsch) wrote: > When in doubt about some feature, always ask the Korn shell first. > This is the shell blessed by Posix, with all its crocks. Blech...phooey...no comment (OK, maybe small comment :-)). > We are not aiming to become bug-compatible with the obsolete Bourne shell, > but we're aiming to become bug-compatible with Posix (which is basically == > bug-compatible with ksh). Yeah...I reran my test script on all those systems with /bin/ksh instead of /bin/sh and for the systems that actually had a /bin/ksh, I get the same results as FreeBSD. > Strictly spoken, all these systems should ship with the Korn shell as > /bin/sh if they claim Posix compliance. The Korn shell itself also > thinks it were sh(1): Except they probably don't wanna deal with the tech support fallout of dealing with a different set of bugs :-). So, I guess my bug report should be withdrawn if the idea is to maintain bug compatibility with ksh... Scott Blachowicz Ph: 206/283-8802x240 Mathsoft (Data Analysis Products Div) 1700 Westlake Ave N #500 scott@statsci.com Seattle, WA USA 98109 Scott.Blachowicz@seaslug.org From owner-freebsd-bugs Sun Feb 23 16:51:57 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id QAA14049 for bugs-outgoing; Sun, 23 Feb 1997 16:51:57 -0800 (PST) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA14042; Sun, 23 Feb 1997 16:51:52 -0800 (PST) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id QAA15810; Sun, 23 Feb 1997 16:50:53 -0800 (PST) To: Charles Henrich cc: mpp@freefall.freebsd.org (Mike Pritchard), henrich@msu.edu, freebsd-bugs@freefall.freebsd.org Subject: Re: bin/2692 In-reply-to: Your message of "Sun, 23 Feb 1997 13:25:59 EST." <199702231826.NAA03621@crh.cl.msu.edu> Date: Sun, 23 Feb 1997 16:50:53 -0800 Message-ID: <15806.856745453@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > this is bogus! On half of my systems I get three thousand lines everytime th e > damn thing runs, obscuring the daily reports. There should be a way to tell > find to shut the hell up. Its not an "illegal" filename, because you can > create (anyone can create it!) on the filesystm. I don't like it either, but what do you suggest instead? Did you adopt the `-ls' flag suggested by Guido? If so, was it acceptable? If not, do you have another compromise to suggest? :-) Jordan From owner-freebsd-bugs Sun Feb 23 18:10:46 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA18077 for bugs-outgoing; Sun, 23 Feb 1997 18:10:46 -0800 (PST) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA18061; Sun, 23 Feb 1997 18:10:38 -0800 (PST) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id SAA23576; Sun, 23 Feb 1997 18:06:06 -0800 (PST) cc: Charles Henrich , mpp@freefall.freebsd.org (Mike Pritchard), henrich@msu.edu, freebsd-bugs@freefall.freebsd.org Subject: Re: bin/2692 In-reply-to: Your message of "Sun, 23 Feb 1997 16:50:53 PST." <15806.856745453@time.cdrom.com> Date: Sun, 23 Feb 1997 18:06:06 -0800 Message-ID: <23572.856749966@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Actually, never mind - Mike's already committed the fix. :-) > > this is bogus! On half of my systems I get three thousand lines everytime th > e > > damn thing runs, obscuring the daily reports. There should be a way to tel l > > find to shut the hell up. Its not an "illegal" filename, because you can > > create (anyone can create it!) on the filesystm. > > I don't like it either, but what do you suggest instead? Did you adopt > the `-ls' flag suggested by Guido? If so, was it acceptable? If not, > do you have another compromise to suggest? :-) > > Jordan From owner-freebsd-bugs Sun Feb 23 20:06:12 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA24881 for bugs-outgoing; Sun, 23 Feb 1997 20:06:12 -0800 (PST) Received: (from davidn@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA24856; Sun, 23 Feb 1997 20:06:05 -0800 (PST) Date: Sun, 23 Feb 1997 20:06:05 -0800 (PST) From: David Nugent Message-Id: <199702240406.UAA24856@freefall.freebsd.org> To: davidn, freebsd-bugs, davidn Subject: Re: bin/2804 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: /usr/sbin/login reports: "root login refused on this terminal." when it should report "Login incorrect" Responsible-Changed-From-To: freebsd-bugs->davidn Responsible-Changed-By: davidn Responsible-Changed-When: Mon Feb 24 15:03:50 EST 1997 Responsible-Changed-Why: I'll fix this with other changes planned for login. From owner-freebsd-bugs Sun Feb 23 20:10:03 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA25153 for bugs-outgoing; Sun, 23 Feb 1997 20:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA25145; Sun, 23 Feb 1997 20:10:01 -0800 (PST) Date: Sun, 23 Feb 1997 20:10:01 -0800 (PST) Message-Id: <199702240410.UAA25145@freefall.freebsd.org> To: freebsd-bugs Cc: From: David Nugent Subject: Re: bin/2805: remove hard coded slowdown count and failed login count Reply-To: David Nugent Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR bin/2805; it has been noted by GNATS. From: David Nugent To: richterb@furball.wellsfargo.com Cc: freebsd-gnats-submit@freebsd.org Subject: Re: bin/2805: remove hard coded slowdown count and failed login count Date: Mon, 24 Feb 1997 15:08:43 +1100 On Feb 02, 1997 at 09:55:59AM, richterb@furball.wellsfargo.com wrote: > >Description: > Both 3 and 10 are hardcoded numbers and 10 is a lot of > attempts at a failed login even with the default delay > commencing after 3 failures. Just change 3 and 10 to > defines instead would make customization of the function > easier. Would prefer moving the numbers out to a configuration > file but alas that might be a bit more complicated. No, actually, it wouldn't. It could be done via login.conf capabilities. I'll add this to my todo list for login. Regards, David Nugent - Unique Computing Pty Ltd - Melbourne, Australia Voice +61-3-9791-9547 Data/BBS +61-3-9792-3507 3:632/348@fidonet davidn@freebsd.org davidn@blaze.net.au http://www.blaze.net.au/~davidn/ From owner-freebsd-bugs Sun Feb 23 20:12:49 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA25444 for bugs-outgoing; Sun, 23 Feb 1997 20:12:49 -0800 (PST) Received: (from davidn@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA25420; Sun, 23 Feb 1997 20:12:46 -0800 (PST) Date: Sun, 23 Feb 1997 20:12:46 -0800 (PST) From: David Nugent Message-Id: <199702240412.UAA25420@freefall.freebsd.org> To: davidn, freebsd-bugs, davidn Subject: Re: bin/2805 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: remove hard coded slowdown count and failed login count Responsible-Changed-From-To: freebsd-bugs->davidn Responsible-Changed-By: davidn Responsible-Changed-When: Mon Feb 24 15:12:20 EST 1997 Responsible-Changed-Why: I'll take care of this too. From owner-freebsd-bugs Sun Feb 23 21:25:13 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA28405 for bugs-outgoing; Sun, 23 Feb 1997 21:25:13 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA28375; Sun, 23 Feb 1997 21:25:05 -0800 (PST) Date: Sun, 23 Feb 1997 21:25:05 -0800 (PST) From: Mike Pritchard Message-Id: <199702240525.VAA28375@freefall.freebsd.org> To: andrew@why.whine.com, mpp, freebsd-bugs Subject: Re: kern/1252 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Heavy activity on a CD causes panic State-Changed-From-To: feedback-closed State-Changed-By: mpp State-Changed-When: Sun Feb 23 21:24:18 PST 1997 State-Changed-Why: The originator says that this is fixed in -current. From owner-freebsd-bugs Sun Feb 23 21:51:42 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA29815 for bugs-outgoing; Sun, 23 Feb 1997 21:51:42 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA29795; Sun, 23 Feb 1997 21:51:35 -0800 (PST) Date: Sun, 23 Feb 1997 21:51:35 -0800 (PST) From: Mike Pritchard Message-Id: <199702240551.VAA29795@freefall.freebsd.org> To: Scott.Blachowicz@seaslug.org, mpp, freebsd-bugs Subject: Re: bin/2803 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: /bin/sh 'for' doesn't token break properly State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Sun Feb 23 21:46:58 PST 1997 State-Changed-Why: We are bug-bug compatible with the "POSIX" ksh shell, in regards to this problem, so this should be closed according to joerg. From owner-freebsd-bugs Sun Feb 23 22:00:29 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA00519 for bugs-outgoing; Sun, 23 Feb 1997 22:00:29 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA00379; Sun, 23 Feb 1997 21:58:40 -0800 (PST) Date: Sun, 23 Feb 1997 21:58:40 -0800 (PST) From: Mike Pritchard Message-Id: <199702240558.VAA00379@freefall.freebsd.org> To: taob@io.org, mpp, freebsd-bugs Subject: Re: kern/932 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: de0 occasionally enables 100baseTX when plugged into 10baseT port State-Changed-From-To: feedback-closed State-Changed-By: mpp State-Changed-When: Sun Feb 23 21:57:34 PST 1997 State-Changed-Why: The originator says that this problem appears to be fixed in 3.0-current and that it would be OK to close this PR. From owner-freebsd-bugs Sun Feb 23 22:25:07 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA01426 for bugs-outgoing; Sun, 23 Feb 1997 22:25:07 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA01409 for ; Sun, 23 Feb 1997 22:25:03 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id RAA24906; Mon, 24 Feb 1997 17:06:46 +1100 Date: Mon, 24 Feb 1997 17:06:46 +1100 From: Bruce Evans Message-Id: <199702240606.RAA24906@godzilla.zeta.org.au> To: dpb@kafka.hqs.crc.com, syssgm@devetir.qld.gov.au Subject: Re: kern/2787: Cyrix 150+ CPU is seen as a 486, Kernels made for i586 don't recognize the chip as 586. Cc: freebsd-bugs@freebsd.org Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >>At boot time, Freebsd sees the Cyrix 150+ (120Mhz) as a 486 instead of a >>Pentium 120. When I build a kernel with the i586 option, it fails >>to boot, the error "unrecognized cpu" so I must re-make the kernel with >>the i486 option instead - and loose performance. > >A Cyrix 686 has none of the Pentium features that I586_CPU selects. From >an instruction set perspective it is a 486. But it plugs into a Pentium >socket. Run it with I486_CPU defined. That is your only option. Kato Takenori (the chief pc98 committer) has a lot of changes for better Cyrix identification. The 6x86 is still a 486, but it is identified and some of its features are enabled. Some more of its features can be enabled using compile-time options. >Basically, the CPU naming game is pretty complex now, and is likely to get >worse when Cyrix releases the M2 and Intel releases Klamath. It seems to >me that I386_CPU and I486_CPU were good names, but I586_CPU and I686_CPU are >not. We could replace them all with: CPU_386, CPU_486, CPU_PENTIUM, >CPU_PENTIUM_PRO, CPU_CYRIX_M1, etc. Or we could conditionalise on the >feature bits (and probably add some more of our own), without relying much >on the actual CPU type. With MMX (and maybe other stuff) it looks like you >have to anyway. Even I[5-6]86_CPU vs the rest require messy code with ifdefs for the features and runtime tests to check the actual cpu_class. I486_CPU isn't so good either, since non-Intel 486's sometimes have i586 features including a cpuid instruction to tell you which features they have. I think we should conditionalize on the features classified by cpuid to begin with. Many of the ifdefs would have to go away. This is good provided the runtime cost is tiny. >PS Umm, how does one close a PR? Or re-label it as a handbook/doc PR? Run `edit-pr ' and change the relevant words (often simply change "open" to "closed"). Save the file, quit the editor, then write something for a log entry. The log entry gets mailed. Bruce From owner-freebsd-bugs Sun Feb 23 23:28:27 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA06020 for bugs-outgoing; Sun, 23 Feb 1997 23:28:27 -0800 (PST) Received: (from jmg@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA06000; Sun, 23 Feb 1997 23:28:16 -0800 (PST) Date: Sun, 23 Feb 1997 23:28:16 -0800 (PST) From: John-Mark Gurney Message-Id: <199702240728.XAA06000@freefall.freebsd.org> To: gurney_j@efn.org, jmg, freebsd-bugs Subject: Re: kern/1887 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: serial line switches from 9600 to 57600 when shutting down to single user State-Changed-From-To: open-closed State-Changed-By: jmg State-Changed-When: Sun Feb 23 23:27:27 PST 1997 State-Changed-Why: this bug isn't in 3.0-970124-SNAP that I tried it on, so it seems fixed. From owner-freebsd-bugs Sun Feb 23 23:33:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA06240 for bugs-outgoing; Sun, 23 Feb 1997 23:33:04 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA06200; Sun, 23 Feb 1997 23:32:38 -0800 (PST) Date: Sun, 23 Feb 1997 23:32:38 -0800 (PST) From: Mike Pritchard Message-Id: <199702240732.XAA06200@freefall.freebsd.org> To: mpp, gnats-admin, freebsd-bugs Subject: Re: pending/2806 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Old Synopsis: New Synopsis: new kernel tags script Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: mpp Responsible-Changed-When: Sun Feb 23 23:26:08 PST 1997 Responsible-Changed-Why: Misfiled PR. Note: I did manual reformatting of this PR, so I hope I got it right :-). From owner-freebsd-bugs Mon Feb 24 00:13:48 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA07667 for bugs-outgoing; Mon, 24 Feb 1997 00:13:48 -0800 (PST) Received: from mikan.jaist.ac.jp (mikan-e0.jaist.ac.jp [150.65.1.9]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA07661; Mon, 24 Feb 1997 00:13:39 -0800 (PST) Received: from is19e1s01.jaist.ac.jp (Mamoru Iwaki ) by mikan.jaist.ac.jp (8.7.5); id RAA08162; Mon, 24 Feb 1997 17:13:34 +0900 (JST) Date: Mon, 24 Feb 1997 17:13:34 +0900 (JST) Message-Id: <199702240813.RAA08162@mikan.jaist.ac.jp> To: joerg@freefall.freebsd.org Cc: freebsd-bugs@freefall.freebsd.org Subject: Re: kern/2767 In-Reply-To: Your message of "Sun, 23 Feb 1997 02:59:15 -0800 (PST)". <199702231059.CAA04063@freefall.freebsd.org> From: iwaki@jaist.ac.jp (Mamoru Iwaki) X-Mailer: mnews [version 1.20] 1996-12/08(Sun) Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk In article <199702231059.CAA04063@freefall.freebsd.org> joerg@freefall.freebsd.org wrote: >>Synopsis: [2.2-970215-GAMMA] de0 doesn't work with SMC9332BDT and a solution >> >>State-Changed-From-To: open-closed >>State-Changed-By: joerg >>State-Changed-When: Sun Feb 23 11:57:49 MET 1997 >>State-Changed-Why: >>A similar fix has been applied in rev 1.60 of if_de.c, please test >>whether this also fixed your problem. Thank you for the information above. I got the rev 1.60 of if_de.c, i.e. $Id: if_de.c,v 1.60 1997/02/23 10:57:30 joerg Exp $ from FREEBSD-CURRENT/src/sys/pci to rebuild the 2.2-970215-GAMMA GENERIC kernel with it. But the compiling fails with the following messages: ---< BEGIN >---< BEGIN >------< BEGIN >------ cc -c -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -nostdinc -I- -I. -I../.. -I../../../include -DAPM_BROKEN_STATCLOCK -DFAILSAFE -DCOMPAT_43 -DCD9660 -DMSDOSFS -DNFS -DFFS -DINET -DKERNEL ../../pci/if_de.c ./../pci/if_de.c: In function `tulip_addr_filter': ./../pci/if_de.c:3309: structure has no member named `if_multiaddrs' ./../pci/if_de.c:3316: structure has no member named `if_multiaddrs' ./../pci/if_de.c:3317: dereferencing pointer to incomplete type ./../pci/if_de.c:3318: dereferencing pointer to incomplete type ./../pci/if_de.c:3322: dereferencing pointer to incomplete type ./../pci/if_de.c:3322: dereferencing pointer to incomplete type ./../pci/if_de.c:3349: structure has no member named `if_multiaddrs' ./../pci/if_de.c:3350: dereferencing pointer to incomplete type ./../pci/if_de.c:3351: dereferencing pointer to incomplete type ./../pci/if_de.c:3354: dereferencing pointer to incomplete type ./../pci/if_de.c:3354: dereferencing pointer to incomplete type *** Error code 1 Stop. ---< END >---< END >------< END >------ The rev 1.60 looks unsuitable for the 2.2-970215-GAMMA GENERIC kernel, I think. # However, you should know I am a very novice and easily make # mistakes. --- From owner-freebsd-bugs Mon Feb 24 01:11:21 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA09958 for bugs-outgoing; Mon, 24 Feb 1997 01:11:21 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id BAA09950 for ; Mon, 24 Feb 1997 01:11:00 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id KAA15784; Mon, 24 Feb 1997 10:10:50 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id JAA29749; Mon, 24 Feb 1997 09:32:34 +0100 (MET) Message-ID: Date: Mon, 24 Feb 1997 09:32:34 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: scott@statsci.com Cc: freebsd-bugs@freefall.freebsd.org Subject: Re: bin/2803: /bin/sh 'for' statement vs IFS setting problem References: <199702230640.WAA23740@freefall.freebsd.org> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: ; from Scott Blachowicz on Feb 23, 1997 15:38:14 -0800 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Scott Blachowicz wrote: > > Strictly spoken, all these systems should ship with the Korn shell as > > /bin/sh if they claim Posix compliance. The Korn shell itself also > > thinks it were sh(1): > Except they probably don't wanna deal with the tech support fallout > of dealing with a different set of bugs :-). Features, not bugs. :-)) > So, I guess my bug report should be withdrawn if the idea is to maintain bug > compatibility with ksh... The idea is to maintain compatibility with Posix, but this means in effect to maintain bug compatibility with ksh, yes. Btw., the traditional /bin/sh has never really been defined in its behaviour. Thus, the bug compatibility you've seen between the various SysV systems has only one reason: they're using an identical source code. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Mon Feb 24 01:22:20 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA10396 for bugs-outgoing; Mon, 24 Feb 1997 01:22:20 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id BAA10390 for ; Mon, 24 Feb 1997 01:22:14 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id KAA16049; Mon, 24 Feb 1997 10:22:00 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id KAA29842; Mon, 24 Feb 1997 10:01:10 +0100 (MET) Message-ID: Date: Mon, 24 Feb 1997 10:01:10 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: iwaki@jaist.ac.jp (Mamoru Iwaki) Cc: freebsd-bugs@freefall.freebsd.org Subject: Re: kern/2767 References: <199702231059.CAA04063@freefall.freebsd.org> <199702240813.RAA08162@mikan.jaist.ac.jp> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199702240813.RAA08162@mikan.jaist.ac.jp>; from Mamoru Iwaki on Feb 24, 1997 17:13:34 +0900 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Mamoru Iwaki wrote: > Thank you for the information above. I got the rev 1.60 of if_de.c, i.e. > > $Id: if_de.c,v 1.60 1997/02/23 10:57:30 joerg Exp $ > > from FREEBSD-CURRENT/src/sys/pci to rebuild the 2.2-970215-GAMMA > GENERIC kernel with it. But the compiling fails with the following > messages: > The rev 1.60 looks unsuitable for the 2.2-970215-GAMMA GENERIC kernel, > I think. Yes, you need to apply the diff between 1.59 and 1.60 only. Alternatively, you can get revision 1.54.2.3 which is from the 2.2 branch. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Mon Feb 24 08:20:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA26621 for bugs-outgoing; Mon, 24 Feb 1997 08:20:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA26611; Mon, 24 Feb 1997 08:20:02 -0800 (PST) Date: Mon, 24 Feb 1997 08:20:02 -0800 (PST) Message-Id: <199702241620.IAA26611@freefall.freebsd.org> To: freebsd-bugs Cc: From: David Greenman Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Reply-To: David Greenman Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2795; it has been noted by GNATS. From: David Greenman To: lewiz@netcom.com Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Date: Mon, 24 Feb 1997 08:14:34 -0800 >FreeBSD ppp.wpac.com 2.1.6-RELEASE FreeBSD 2.1.6-RELEASE #0: Fri Feb 21 15:37:57 > PST 1997 lewis@ppp.wpac.com:/usr/src/sys/compile/WPAC i386 >>Description: >dmesg output: cy0 irq 12 maddr 0xd4000 msize 8192 on isa >/dev/ttyc* : 0 crw------- 1 root wheel 48, 0 Feb 21 17:47 ttyc0 > >Cyclades ISA 8-port card does not work. Cyclom diags test okay, >no IRQ conflicts. Cyclades telnetted in and ran tests -- may be >a driver-related problem. Are the major/minor #'s correct? > >Problem: date > /dev/ttyc0 [locks up, even ^C ignored] >Can't use the Cyclades card at all! Can anyone please help?? >Telnet access available, if necessary. Did you get and install the updated Cyclades driver for FreeBSD that is available from the Cyclades FTP site? -DG David Greenman Core-team/Principal Architect, The FreeBSD Project From owner-freebsd-bugs Mon Feb 24 10:50:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA07602 for bugs-outgoing; Mon, 24 Feb 1997 10:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA07591; Mon, 24 Feb 1997 10:50:01 -0800 (PST) Date: Mon, 24 Feb 1997 10:50:01 -0800 (PST) Message-Id: <199702241850.KAA07591@freefall.freebsd.org> To: freebsd-bugs Cc: From: Lewis De Payne Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Reply-To: Lewis De Payne Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2795; it has been noted by GNATS. From: Lewis De Payne To: David Greenman Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Date: Mon, 24 Feb 1997 10:41:07 -0800 (PST) On Mon, 24 Feb 1997, David Greenman wrote: > >FreeBSD 2.1.6-RELEASE FreeBSD 2.1.6-RELEASE #0: > >dmesg output: cy0 irq 12 maddr 0xd4000 msize 8192 on isa > >/dev/ttyc* : 0 crw------- 1 root wheel 48,0 Feb 21 17:47 ttyc0 > > > >Cyclades ISA 8-port card does not work. Cyclom diags test okay, > >no IRQ conflicts. Cyclades telnetted in and ran tests -- may be > >a driver-related problem. Are the major/minor #'s correct? > > > >Problem: date > /dev/ttyc0 [locks up, even ^C ignored] > >Can't use the Cyclades card at all! Can anyone please help?? > >Telnet access available, if necessary. > > Did you get and install the updated Cyclades driver for > FreeBSD that is available from the Cyclades FTP site? Yes, and it still locks up even with "date > /dev/ttyc0". This is an 8-port ISA bus board. Cyclades Corp does not have a 2.1.6 system in-house, and their tech support help was limited. They suggest it is a driver problem, after poking around our system. Telnet access is available, if it helps someone to poke around. From owner-freebsd-bugs Mon Feb 24 12:00:05 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA12697 for bugs-outgoing; Mon, 24 Feb 1997 12:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA12660; Mon, 24 Feb 1997 12:00:02 -0800 (PST) Date: Mon, 24 Feb 1997 12:00:02 -0800 (PST) Message-Id: <199702242000.MAA12660@freefall.freebsd.org> To: freebsd-bugs Cc: From: David Greenman Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Reply-To: David Greenman Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2795; it has been noted by GNATS. From: David Greenman To: Lewis De Payne Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Date: Mon, 24 Feb 1997 11:55:31 -0800 >On Mon, 24 Feb 1997, David Greenman wrote: > >> >FreeBSD 2.1.6-RELEASE FreeBSD 2.1.6-RELEASE #0: >> >dmesg output: cy0 irq 12 maddr 0xd4000 msize 8192 on isa >> >/dev/ttyc* : 0 crw------- 1 root wheel 48,0 Feb 21 17:47 ttyc0 >> > >> >Cyclades ISA 8-port card does not work. Cyclom diags test okay, >> >no IRQ conflicts. Cyclades telnetted in and ran tests -- may be >> >a driver-related problem. Are the major/minor #'s correct? >> > >> >Problem: date > /dev/ttyc0 [locks up, even ^C ignored] >> >Can't use the Cyclades card at all! Can anyone please help?? >> >Telnet access available, if necessary. >> >> Did you get and install the updated Cyclades driver for >> FreeBSD that is available from the Cyclades FTP site? > >Yes, and it still locks up even with "date > /dev/ttyc0". This Why do think that "date > /dev/ttyc0" should work? Does the line have flow control enabled? If there is no carrier, then that command should block. What is the "WMESG" for the process that is blocked? Also, irq 5 is the standard interrupt for the Cyclades card. Are you sure that you have the card actually set to irq 12? Are you sure that you don't have an interrupt conflict with another device? -DG David Greenman Core-team/Principal Architect, The FreeBSD Project From owner-freebsd-bugs Mon Feb 24 13:42:11 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA20826 for bugs-outgoing; Mon, 24 Feb 1997 13:42:11 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA20623; Mon, 24 Feb 1997 13:39:18 -0800 (PST) Date: Mon, 24 Feb 1997 13:39:18 -0800 (PST) From: Mike Pritchard Message-Id: <199702242139.NAA20623@freefall.freebsd.org> To: drexler@telebyte.nl, mpp, freebsd-bugs Subject: Re: kern/2116 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Kernel crash at system boot time State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Mon Feb 24 13:38:07 PST 1997 State-Changed-Why: The originator says that this was fixed after reinstalling a newer version. From owner-freebsd-bugs Mon Feb 24 13:45:33 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA21082 for bugs-outgoing; Mon, 24 Feb 1997 13:45:33 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA21060; Mon, 24 Feb 1997 13:45:29 -0800 (PST) Date: Mon, 24 Feb 1997 13:45:29 -0800 (PST) From: Mike Pritchard Message-Id: <199702242145.NAA21060@freefall.freebsd.org> To: bwithrow@baynetworks.com, mpp, freebsd-bugs Subject: Re: kern/2693 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: AMD: Direct mounts don't work State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Mon Feb 24 13:44:56 PST 1997 State-Changed-Why: Doug Rabson says that this should already be fixed in 3.0 and 2.2. From owner-freebsd-bugs Mon Feb 24 13:50:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA21303 for bugs-outgoing; Mon, 24 Feb 1997 13:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA21292; Mon, 24 Feb 1997 13:50:02 -0800 (PST) Date: Mon, 24 Feb 1997 13:50:02 -0800 (PST) Message-Id: <199702242150.NAA21292@freefall.freebsd.org> To: freebsd-bugs Cc: From: Lewis De Payne Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE (fwd) Reply-To: Lewis De Payne Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2795; it has been noted by GNATS. From: Lewis De Payne To: dg@root.com Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE (fwd) Date: Mon, 24 Feb 1997 13:39:32 -0800 (PST) David, this might be the problem -- the latest driver on the Cyclades ftp site may not be the latest driver. Marcio has now sent me the driver you sent him recently. I'll install it and let you know. Thank you for your quick responses. ---------- Forwarded message ---------- Date: Mon, 24 Feb 1997 12:36:36 -0800 From: Marcio Saito To: Lewis De Payne Cc: Cyclades Technical Support Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE (fwd) Lewis: I think there was a misunderstanding. The Cyclom-Y driver has been in the FreeBSD kernel for a while. Some time ago, David Greenman *added* PCI support to the driver. By that time, 2.1.5 was the most popular driver. The driver in the ftp area (see README.FREEBSD) is only for 2.1.5 kernels. 2.1.6 has all the support for the Cyclom-Y board already built-in. A few days ago, David Greenman sent me patches for the drivers included in the 2.1.6 kernel. It was my understanding that the patch affected only PCI cards. But it seems that the patches might affect ISA cards and could explain your problems. So, what I suggest is: - Restore the original drivers that came with your 2.1.6. kernel (the driver in the ftp area is only for 2.1.5). - Apply David Greenman's patches (I'm forwarding his message to you right after I sent this one). Marcio. > DG> Did you get and install the updated Cyclades driver for DG> FreeBSD that is available from the Cyclades FTP site? From owner-freebsd-bugs Mon Feb 24 14:00:05 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA21962 for bugs-outgoing; Mon, 24 Feb 1997 14:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA21932; Mon, 24 Feb 1997 14:00:02 -0800 (PST) Date: Mon, 24 Feb 1997 14:00:02 -0800 (PST) Message-Id: <199702242200.OAA21932@freefall.freebsd.org> To: freebsd-bugs Cc: From: Lewis De Payne Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Reply-To: Lewis De Payne Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2795; it has been noted by GNATS. From: Lewis De Payne To: David Greenman Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Date: Mon, 24 Feb 1997 13:54:09 -0800 (PST) This is a diff between what was on the Cyclades ftp site and what I was just recently sent via email by them. No doubt, this is the bug you fixed, David. I'll see if it works... ppp: {24} diff cy.diff ../cy_old/cy.diff ppp: {25} diff cy_pci.c ../cy_old/cy_pci.c 122c122 < outw(ioport + CY_PLX_ICS, inw(ioport + CY_PLX_ICS) | --- > outw(ioport + CY_PLX_ICS, inw(CY_PLX_ICS) | ppp: {26} diff cy_pcireg.h ../cy_old/cy_pcireg.h From owner-freebsd-bugs Mon Feb 24 15:27:00 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA28467 for bugs-outgoing; Mon, 24 Feb 1997 15:27:00 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id PAA28448 for ; Mon, 24 Feb 1997 15:26:54 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id AAA05978 for bugs@freefall.freebsd.org; Tue, 25 Feb 1997 00:26:22 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id XAA01547; Mon, 24 Feb 1997 23:40:41 +0100 (MET) Message-ID: Date: Mon, 24 Feb 1997 23:40:41 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: bugs@freefall.freebsd.org Subject: Re: bin/2804: /usr/sbin/login reports: "root login refused on this terminal." when it should report "Login incorrect" References: <199702231810.KAA22803@freefall.freebsd.org> <9702241516.AA03803@halloran-eldar.lcs.mit.edu> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <9702241516.AA03803@halloran-eldar.lcs.mit.edu>; from Garrett Wollman on Feb 24, 1997 10:16:15 -0500 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk As Garrett Wollman wrote: > > Both aren't correct either. They allow spying additional UID 0 > > accounts. > > There shouldn't be any additional UID 0 accoinds. In your picture. You are not the center of the world, and other admins might have reasons to have another picture than you. There's no point in additionally compromising their security. A simple ``Login incorrect'' is the most logical refusal message, regardless of what's been the reason for the refusal. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Mon Feb 24 15:40:09 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA00260 for bugs-outgoing; Mon, 24 Feb 1997 15:40:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA00219; Mon, 24 Feb 1997 15:40:04 -0800 (PST) Resent-Date: Mon, 24 Feb 1997 15:40:04 -0800 (PST) Resent-Message-Id: <199702242340.PAA00219@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, nik@blueberry.co.uk Received: from coconut.blueberry.co.uk ([194.70.52.66]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA28979 for ; Mon, 24 Feb 1997 15:30:42 -0800 (PST) Received: (from nik@localhost) by coconut.blueberry.co.uk (8.8.5/8.8.5) id XAA23618; Mon, 24 Feb 1997 23:29:59 GMT Message-Id: <199702242329.XAA23618@coconut.blueberry.co.uk> Date: Mon, 24 Feb 1997 23:29:59 GMT From: Nik Clayton Reply-To: nik@blueberry.co.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: docs/2810: Tutorial submission: Upgrading FreeBSD from source Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2810 >Category: docs >Synopsis: Tutorial submission detailing how to upgrade FBSD from source >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 24 15:40:02 PST 1997 >Last-Modified: >Originator: Nik Clayton >Organization: Blueberry Design >Release: FreeBSD 2.1.7-RELEASE i386 >Environment: N/A >Description: As a penance for wasting a few folk's time with some of my recent SNAFU's when upgrading 2.1.5 to 2.1.7 (Hi Jordan), I've written up a document describing (hopefully accurately) the steps that need to be gone through when re-making the world, and the precise meaning of the phrase "You must merge in /etc by hand" that gets bandied about every now and then. I've placed this in and would welcome feedback from anyone who knows more about this subject than I do. At the moment, the document is plain text (I don't know LinuxDoc, would prefer not to (I'd rather spend the time learning DocBook, but don't know of a handy tutorial -- references appreciated)). I'm kind of hoping that with a bit of peer review it can become a candidate for the tutorials page, and ultimately spawn a new section of the handbook. As I say, feedback welcomed. Hope it's useful. This message also sent to doc@freebsd.org. >How-To-Repeat: N/A >Fix: N/A >Audit-Trail: >Unformatted: From owner-freebsd-bugs Mon Feb 24 16:50:08 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id QAA05575 for bugs-outgoing; Mon, 24 Feb 1997 16:50:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id QAA05568; Mon, 24 Feb 1997 16:50:03 -0800 (PST) Date: Mon, 24 Feb 1997 16:50:03 -0800 (PST) Message-Id: <199702250050.QAA05568@freefall.freebsd.org> To: freebsd-bugs Cc: From: Lewis De Payne Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Reply-To: Lewis De Payne Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2795; it has been noted by GNATS. From: Lewis De Payne To: David Greenman Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Date: Mon, 24 Feb 1997 16:43:11 -0800 (PST) David -- The Cyclades 8 ISA board is working properly again. The problem turned out to be old patches on the Cyclades ftp site. Thank you for your persistance and assistance. --- copy --- Marcio@cyclades.com wrote: A few days ago, David Greenman sent me patches for the drivers included in the 2.1.6 kernel. It was my understanding that the patch affected only PCI cards. But it seems that the patches might affect ISA cards and could explain your problems. --- !copy --- From owner-freebsd-bugs Mon Feb 24 18:50:05 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA12288 for bugs-outgoing; Mon, 24 Feb 1997 18:50:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA12273; Mon, 24 Feb 1997 18:50:01 -0800 (PST) Date: Mon, 24 Feb 1997 18:50:01 -0800 (PST) Message-Id: <199702250250.SAA12273@freefall.freebsd.org> To: freebsd-bugs Cc: From: David Greenman Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Reply-To: David Greenman Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2795; it has been noted by GNATS. From: David Greenman To: Lewis De Payne Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Date: Mon, 24 Feb 1997 18:45:00 -0800 > >This is a diff between what was on the Cyclades ftp site and >what I was just recently sent via email by them. No doubt, >this is the bug you fixed, David. I'll see if it works... > > >ppp: {24} diff cy.diff ../cy_old/cy.diff > >ppp: {25} diff cy_pci.c ../cy_old/cy_pci.c >122c122 >< outw(ioport + CY_PLX_ICS, inw(ioport + CY_PLX_ICS) | >--- >> outw(ioport + CY_PLX_ICS, inw(CY_PLX_ICS) | > >ppp: {26} diff cy_pcireg.h ../cy_old/cy_pcireg.h According to your device probe information, you have an ISA card. The above change only affects PCI versions of the Cyclades 'Y' adapter. -DG David Greenman Core-team/Principal Architect, The FreeBSD Project From owner-freebsd-bugs Mon Feb 24 18:50:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA12289 for bugs-outgoing; Mon, 24 Feb 1997 18:50:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA12281; Mon, 24 Feb 1997 18:50:03 -0800 (PST) Date: Mon, 24 Feb 1997 18:50:03 -0800 (PST) Message-Id: <199702250250.SAA12281@freefall.freebsd.org> To: freebsd-bugs Cc: From: David Greenman Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Reply-To: David Greenman Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2795; it has been noted by GNATS. From: David Greenman To: Lewis De Payne Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE Date: Mon, 24 Feb 1997 18:47:04 -0800 >David -- The Cyclades 8 ISA board is working properly again. >The problem turned out to be old patches on the Cyclades ftp >site. Thank you for your persistance and assistance. > >--- copy --- >Marcio@cyclades.com wrote: >A few days ago, David Greenman sent me patches for >the drivers included in the 2.1.6 kernel. It was >my understanding that the patch affected only PCI >cards. > >But it seems that the patches might affect ISA cards >and could explain your problems. >--- !copy --- It couldn't have been that patch that fixed it. It must have been a stale .o file or something. The code that the patch patches is only executed if a PCI Cyclades card is found, otherwise it is not executed. -DG David Greenman Core-team/Principal Architect, The FreeBSD Project From owner-freebsd-bugs Mon Feb 24 19:00:07 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA14009 for bugs-outgoing; Mon, 24 Feb 1997 19:00:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA13981; Mon, 24 Feb 1997 19:00:03 -0800 (PST) Date: Mon, 24 Feb 1997 19:00:03 -0800 (PST) Message-Id: <199702250300.TAA13981@freefall.freebsd.org> To: freebsd-bugs Cc: From: David Greenman Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE (fwd) Reply-To: David Greenman Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR misc/2795; it has been noted by GNATS. From: David Greenman To: Lewis De Payne Cc: freebsd-gnats-submit@freebsd.org Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE (fwd) Date: Mon, 24 Feb 1997 18:51:38 -0800 >---------- Forwarded message ---------- >Date: Mon, 24 Feb 1997 12:36:36 -0800 >From: Marcio Saito >To: Lewis De Payne >Cc: Cyclades Technical Support >Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE (fwd) > >Lewis: > >I think there was a misunderstanding. > >The Cyclom-Y driver has been in the FreeBSD kernel >for a while. > >Some time ago, David Greenman *added* PCI support >to the driver. > >By that time, 2.1.5 was the most popular driver. The >driver in the ftp area (see README.FREEBSD) is only >for 2.1.5 kernels. > >2.1.6 has all the support for the Cyclom-Y board >already built-in. Actually, both 2.1.5 and 2.1.6 support the ISA card, and *neither* version support the PCI card. We did not fold the PCI changes into any 2.1.x release (including 2.1.7) because they were far too extensive and included changes to the devices in /dev as well (which would be a real problem for people trying to do simple upgrades within the 2.1.x branch). It was easier to simply tell people that need PCI support to get the cy_pci.tar.gz file, read the README, etc... -DG David Greenman Core-team/Principal Architect, The FreeBSD Project From owner-freebsd-bugs Mon Feb 24 19:05:29 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA14338 for bugs-outgoing; Mon, 24 Feb 1997 19:05:29 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA14294; Mon, 24 Feb 1997 19:04:59 -0800 (PST) Date: Mon, 24 Feb 1997 19:04:59 -0800 (PST) From: Mike Pritchard Message-Id: <199702250304.TAA14294@freefall.freebsd.org> To: uhclem%nemesis@fw.ast.com, mpp, freebsd-bugs Subject: Re: bin/326 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Weekly cron generates some usage and error messages FDIV021 State-Changed-From-To: analyzed-closed State-Changed-By: mpp State-Changed-When: Mon Feb 24 18:57:12 PST 1997 State-Changed-Why: Fixed in rev 1.20 of /etc/weekly. From owner-freebsd-bugs Mon Feb 24 20:37:50 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA20799 for bugs-outgoing; Mon, 24 Feb 1997 20:37:50 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA20769; Mon, 24 Feb 1997 20:37:40 -0800 (PST) Date: Mon, 24 Feb 1997 20:37:40 -0800 (PST) From: Mike Pritchard Message-Id: <199702250437.UAA20769@freefall.freebsd.org> To: angio@aros.net, mpp, freebsd-bugs Subject: Re: misc/1335 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: /etc/security generates an error with files with spaces. State-Changed-From-To: feedback-closed State-Changed-By: mpp State-Changed-When: Mon Feb 24 20:37:07 PST 1997 State-Changed-Why: Fixed by my recent commit of /etc/security. From owner-freebsd-bugs Mon Feb 24 21:07:13 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA23273 for bugs-outgoing; Mon, 24 Feb 1997 21:07:13 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA23249; Mon, 24 Feb 1997 21:06:50 -0800 (PST) Date: Mon, 24 Feb 1997 21:06:50 -0800 (PST) From: Mike Pritchard Message-Id: <199702250506.VAA23249@freefall.freebsd.org> To: toni@devsoft.com, mpp, freebsd-bugs Subject: Re: misc/1373 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: RPC include lacks prototypes State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Mon Feb 24 20:58:23 PST 1997 State-Changed-Why: Fixed in rev 1.5 of rpc/rpc.h. From owner-freebsd-bugs Mon Feb 24 22:12:21 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA28303 for bugs-outgoing; Mon, 24 Feb 1997 22:12:21 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA28247; Mon, 24 Feb 1997 22:11:55 -0800 (PST) Date: Mon, 24 Feb 1997 22:11:55 -0800 (PST) From: Mike Pritchard Message-Id: <199702250611.WAA28247@freefall.freebsd.org> To: gwk@anaconda.dkrz.de, mpp, freebsd-bugs Subject: Re: bin/1391 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: cpio -O ignores umask State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Mon Feb 24 22:11:27 PST 1997 State-Changed-Why: Fixed in rev 1.3 of cpio/main.c. From owner-freebsd-bugs Mon Feb 24 22:30:35 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA29684 for bugs-outgoing; Mon, 24 Feb 1997 22:30:35 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA29661; Mon, 24 Feb 1997 22:30:20 -0800 (PST) Date: Mon, 24 Feb 1997 22:30:20 -0800 (PST) From: Mike Pritchard Message-Id: <199702250630.WAA29661@freefall.freebsd.org> To: darrylo@sr.hp.com, mpp, freebsd-bugs Subject: Re: bin/1548 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: ncrcontrol -i queries don't work for mere users State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Mon Feb 24 22:29:45 PST 1997 State-Changed-Why: Fixed in revs 1.11 & 1.12 of ncrcontrol.c. From owner-freebsd-bugs Mon Feb 24 22:35:52 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA00289 for bugs-outgoing; Mon, 24 Feb 1997 22:35:52 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA00258; Mon, 24 Feb 1997 22:35:45 -0800 (PST) Date: Mon, 24 Feb 1997 22:35:45 -0800 (PST) From: Mike Pritchard Message-Id: <199702250635.WAA00258@freefall.freebsd.org> To: mpp, freebsd-bugs, sos Subject: Re: i386/1556 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: ATAPI CDROM probes ok, but will not 'mount_cd9660' Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: mpp Responsible-Changed-When: Mon Feb 24 22:34:55 PST 1997 Responsible-Changed-Why: ATAPI problem. It looks like this may be a duplicate of PR# 2124. From owner-freebsd-bugs Mon Feb 24 22:46:44 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA01256 for bugs-outgoing; Mon, 24 Feb 1997 22:46:44 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA01228; Mon, 24 Feb 1997 22:46:35 -0800 (PST) Date: Mon, 24 Feb 1997 22:46:35 -0800 (PST) From: Mike Pritchard Message-Id: <199702250646.WAA01228@freefall.freebsd.org> To: Kees.Koster@nym.sc.philips.com, mpp, freebsd-bugs Subject: Re: bin/1621 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: last char in line stays "$" State-Changed-From-To: analyzed-closed State-Changed-By: mpp State-Changed-When: Mon Feb 24 22:45:18 PST 1997 State-Changed-Why: Keith Bostic states that this is fixed in nvi 1.76, and current has nvi version 1.79. From owner-freebsd-bugs Mon Feb 24 22:52:47 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA01653 for bugs-outgoing; Mon, 24 Feb 1997 22:52:47 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA01630; Mon, 24 Feb 1997 22:52:42 -0800 (PST) Date: Mon, 24 Feb 1997 22:52:42 -0800 (PST) From: Mike Pritchard Message-Id: <199702250652.WAA01630@freefall.freebsd.org> To: Kees.Koster@nym.sc.philips.com, mpp, freebsd-bugs Subject: Re: bin/1623 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: rpc/auth.h won't compile with -ansi flag State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Mon Feb 24 22:52:00 PST 1997 State-Changed-Why: Fixed in -current. From owner-freebsd-bugs Mon Feb 24 23:07:09 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA02609 for bugs-outgoing; Mon, 24 Feb 1997 23:07:09 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA02502; Mon, 24 Feb 1997 23:06:28 -0800 (PST) Date: Mon, 24 Feb 1997 23:06:28 -0800 (PST) From: Mike Pritchard Message-Id: <199702250706.XAA02502@freefall.freebsd.org> To: miz@pa.aix.or.jp, mpp, freebsd-bugs Subject: Re: bin/1653 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: cannot umount the node ending '/' when it was mounted State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Mon Feb 24 23:02:06 PST 1997 State-Changed-Why: This behaviour is correct. The paths passed to mount are cleaned up by a call to realpath() for a reason, and removing the call would not be a good idea. From owner-freebsd-bugs Mon Feb 24 23:29:22 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA04598 for bugs-outgoing; Mon, 24 Feb 1997 23:29:22 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA04577; Mon, 24 Feb 1997 23:29:16 -0800 (PST) Date: Mon, 24 Feb 1997 23:29:16 -0800 (PST) From: Mike Pritchard Message-Id: <199702250729.XAA04577@freefall.freebsd.org> To: skynyrd@opus.cts.cwu.edu, mpp, freebsd-bugs Subject: Re: kern/1859 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: fddi_input() floods system msg buffer when dropping noproto frames State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Mon Feb 24 23:28:21 PST 1997 State-Changed-Why: Fixed by: revision 1.10 date: 1996/11/12 08:43:32; author: davidg; state: Exp; lines: +1 -2 Killed "unknown protocol" printf. From owner-freebsd-bugs Mon Feb 24 23:50:16 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA06370 for bugs-outgoing; Mon, 24 Feb 1997 23:50:16 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA06243; Mon, 24 Feb 1997 23:49:59 -0800 (PST) Date: Mon, 24 Feb 1997 23:49:59 -0800 (PST) From: Mike Pritchard Message-Id: <199702250749.XAA06243@freefall.freebsd.org> To: ejk@runners.fi, mpp, freebsd-bugs Subject: Re: conf/1915 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: 8 bit chars dont work with LC_CTYPE=fi State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Mon Feb 24 23:49:45 PST 1997 State-Changed-Why: Fixed in -current. From owner-freebsd-bugs Tue Feb 25 00:10:10 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA08022 for bugs-outgoing; Tue, 25 Feb 1997 00:10:10 -0800 (PST) Received: from aeffle.Stanford.EDU (sequence.Stanford.EDU [171.65.76.7]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA07981 for ; Tue, 25 Feb 1997 00:09:59 -0800 (PST) Received: (from hlew@localhost) by aeffle.Stanford.EDU (8.8.4/8.6.6) id AAA06425; Tue, 25 Feb 1997 00:09:42 -0800 (PST) Date: Tue, 25 Feb 1997 00:09:42 -0800 (PST) From: Howard Lew To: Bruce Evans cc: freebsd-bugs@freebsd.org Subject: Re: kern/2787: Cyrix 150+ CPU is seen as a 486, Kernels made for , i586 don't recognize the chip as 586. In-Reply-To: <199702240606.RAA24906@godzilla.zeta.org.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Mon, 24 Feb 1997, Bruce Evans wrote: > >>At boot time, Freebsd sees the Cyrix 150+ (120Mhz) as a 486 instead of a > >>Pentium 120. When I build a kernel with the i586 option, it fails > >>to boot, the error "unrecognized cpu" so I must re-make the kernel with > >>the i486 option instead - and loose performance. > > > >A Cyrix 686 has none of the Pentium features that I586_CPU selects. From > >an instruction set perspective it is a 486. But it plugs into a Pentium > >socket. Run it with I486_CPU defined. That is your only option. > > Kato Takenori (the chief pc98 committer) has a lot of changes for better > Cyrix identification. The 6x86 is still a 486, but it is identified and > some of its features are enabled. Some more of its features can be enabled > using compile-time options. sounds like great news... Is that in 3.0-current or 2.2 or 2.1.7 kernel? > > >Basically, the CPU naming game is pretty complex now, and is likely to get > >worse when Cyrix releases the M2 and Intel releases Klamath. It seems to > >me that I386_CPU and I486_CPU were good names, but I586_CPU and I686_CPU are > >not. We could replace them all with: CPU_386, CPU_486, CPU_PENTIUM, > >CPU_PENTIUM_PRO, CPU_CYRIX_M1, etc. Or we could conditionalise on the > >feature bits (and probably add some more of our own), without relying much > >on the actual CPU type. With MMX (and maybe other stuff) it looks like you > >have to anyway. Sounds like that is the approach Microsoft is using.... The new OEMR2 shows: Pentium: Pentium(r) AMD K5: AuthenticAMD Cyrix 6x86: CyrixInstead But it would still be nice to know what cpu is powering the FreeBSD box... It looks aesthetically pleasing when we do dmesg. > > Even I[5-6]86_CPU vs the rest require messy code with ifdefs for the features > and runtime tests to check the actual cpu_class. I486_CPU isn't so good > either, since non-Intel 486's sometimes have i586 features including a > cpuid instruction to tell you which features they have. I think we should > conditionalize on the features classified by cpuid to begin with. Many of > the ifdefs would have to go away. This is good provided the runtime cost > is tiny. > > >PS Umm, how does one close a PR? Or re-label it as a handbook/doc PR? > How about table method? > Run `edit-pr ' and change the relevant words (often simply change > "open" to "closed"). Save the file, quit the editor, then write something > for a log entry. The log entry gets mailed. > > Bruce > From owner-freebsd-bugs Tue Feb 25 00:20:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA08487 for bugs-outgoing; Tue, 25 Feb 1997 00:20:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA08475; Tue, 25 Feb 1997 00:20:01 -0800 (PST) Date: Tue, 25 Feb 1997 00:20:01 -0800 (PST) Message-Id: <199702250820.AAA08475@freefall.freebsd.org> To: freebsd-bugs Cc: From: Andrew Subject: Re: kern/2351: panic:timeout table full Reply-To: Andrew Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/2351; it has been noted by GNATS. From: Andrew To: freebsd-gnats-submit@freebsd.org, andrew@ugh.net.au Cc: Subject: Re: kern/2351: panic:timeout table full Date: Tue, 25 Feb 1997 19:25:09 +1100 > > I can't seem to get it to happen again...(thankfully :-) > I certainly can now....most of the time if I try and boot wth my > custom I'm now running 2.2-GAMMA. It seems if I have my null modem cable plugged in during boot I will get this error every time. Unplug it until the login prompt appears and all is well. Andrew From owner-freebsd-bugs Tue Feb 25 00:50:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA10302 for bugs-outgoing; Tue, 25 Feb 1997 00:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA10294; Tue, 25 Feb 1997 00:50:02 -0800 (PST) Resent-Date: Tue, 25 Feb 1997 00:50:02 -0800 (PST) Resent-Message-Id: <199702250850.AAA10294@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.AAA10103;Tue; (8.8.5/8.8.5);, 25 Feb 1997 00:41:44.-0800 (PST) Message-Id: <199702250841.AAA10103@freefall.freebsd.org> Date: Tue, 25 Feb 1997 00:41:44 -0800 (PST) From: andrew@ugh.net.au To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/2812: sysinstall wont resolve addresses over PPP Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2812 >Category: bin >Synopsis: sysinstall wont resolve addresses over PPP >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 00:50:01 PST 1997 >Last-Modified: >Originator: Andrew >Organization: >Release: 2.2-970222-GAMMA >Environment: Not quite at that stage >Description: I am trying to install 2.2-970222-GAMMA over a PPP line (via FTP). I pick "URL not in list" when it asks what site I enter ftp:///path. After getting the PPP connection up it brings up the message: Cant resolve "". Is your nameserver, gateway etc configured correctly? The DNS is working but shouldn't even be needed as I entered an IP address. It appears it is trying to resolve a null string or something. >How-To-Repeat: Install 2.2-970222-GAMMA via FTP over a PPP link over a modem and specify an other URL that contains an IP address. >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Tue Feb 25 00:51:45 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA10459 for bugs-outgoing; Tue, 25 Feb 1997 00:51:45 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA10453 for ; Tue, 25 Feb 1997 00:51:41 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id TAA02760; Tue, 25 Feb 1997 19:48:22 +1100 Date: Tue, 25 Feb 1997 19:48:22 +1100 From: Bruce Evans Message-Id: <199702250848.TAA02760@godzilla.zeta.org.au> To: bde@zeta.org.au, hlew@sequence.Stanford.EDU Subject: Re: kern/2787: Cyrix 150+ CPU is seen as a 486, Kernels made for , i586 don't recognize the chip as 586. Cc: freebsd-bugs@freebsd.org Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >> Kato Takenori (the chief pc98 committer) has a lot of changes for better >> Cyrix identification. The 6x86 is still a 486, but it is identified and >> some of its features are enabled. Some more of its features can be enabled >> using compile-time options. > >sounds like great news... Is that in 3.0-current or 2.2 or 2.1.7 kernel? 3.0-future. Bruce From owner-freebsd-bugs Tue Feb 25 01:01:48 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA11050 for bugs-outgoing; Tue, 25 Feb 1997 01:01:48 -0800 (PST) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id BAA11026; Tue, 25 Feb 1997 01:01:42 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by who.cdrom.com (8.7.5/8.6.11) with ESMTP id AAA11889 ; Tue, 25 Feb 1997 00:32:20 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id TAA02246; Tue, 25 Feb 1997 19:29:48 +1100 Date: Tue, 25 Feb 1997 19:29:48 +1100 From: Bruce Evans Message-Id: <199702250829.TAA02246@godzilla.zeta.org.au> To: freebsd-bugs@freefall.freebsd.org, miz@pa.aix.or.jp, mpp@freefall.freebsd.org Subject: Re: bin/1653 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Synopsis: cannot umount the node ending '/' when it was mounted > >State-Changed-From-To: open-closed >State-Changed-By: mpp >State-Changed-When: Mon Feb 24 23:02:06 PST 1997 >State-Changed-Why: >This behaviour is correct. The paths passed to mount are cleaned up >by a call to realpath() for a reason, and removing the call >would not be a good idea. Erm, the behaviour is incorrect, although the realpath() call may be correct. However, the incorrect behaviour doesn't seem to occur in -current. Perhaps my trailing slash changes fixed it. ("foo/" is supposed to be equivalent to "foo" if "foo" is a directory or will become a directory.) Bruce From owner-freebsd-bugs Tue Feb 25 04:10:05 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA18306 for bugs-outgoing; Tue, 25 Feb 1997 04:10:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA18299; Tue, 25 Feb 1997 04:10:02 -0800 (PST) Resent-Date: Tue, 25 Feb 1997 04:10:02 -0800 (PST) Resent-Message-Id: <199702251210.EAA18299@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, neil.long@materials.oxford.ac.uk Received: from njl.materials.ox.ac.uk (njl.materials.ox.ac.uk [163.1.65.100]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA18187 for ; Tue, 25 Feb 1997 04:07:59 -0800 (PST) Received: (from long@localhost) by njl.materials.ox.ac.uk (8.8.5/8.8.5) id MAA20109; Tue, 25 Feb 1997 12:07:47 GMT Message-Id: <199702251207.MAA20109@njl.materials.ox.ac.uk> Date: Tue, 25 Feb 1997 12:07:47 GMT From: Neil Reply-To: neil.long@materials.oxford.ac.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: i386/2813: hard reference to /usr/src breaks make world for non-default src location Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2813 >Category: i386 >Synopsis: hard reference to /usr/src breaks make world for non-default src location >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 04:10:02 PST 1997 >Last-Modified: >Originator: Neil Long >Organization: University of Oxford >Release: FreeBSD 2.2-GAMMA i386 >Environment: >Description: in the lib/msun files /usr/include/machine/asmacros.h is included which includes /usr/src/lib/libc/i386/DEFS.h I kept /usr/src pristine for the SNAP and built locally in a different src directory. >How-To-Repeat: put /usr/src tree at a different mount point >Fix: workaround mv /usr/src /usr/src.orig; ln -s /mysource /usr/src >Audit-Trail: >Unformatted: From owner-freebsd-bugs Tue Feb 25 04:23:25 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA18635 for bugs-outgoing; Tue, 25 Feb 1997 04:23:25 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA18630 for ; Tue, 25 Feb 1997 04:23:22 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id XAA09187; Tue, 25 Feb 1997 23:21:15 +1100 Date: Tue, 25 Feb 1997 23:21:15 +1100 From: Bruce Evans Message-Id: <199702251221.XAA09187@godzilla.zeta.org.au> To: freebsd-bugs@freefall.freebsd.org, lewiz@netcom.com Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE (fwd) Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > David, this might be the problem -- the latest driver on the Cyclades > ftp site may not be the latest driver. Marcio has now sent me the > driver you sent him recently. I'll install it and let you know. > Thank you for your quick responses. You probably don't want the latest driver. The one in 2.1.6 is the best avaiable for 2.1.6 as far as I know (I wrote it). > ---------- Forwarded message ---------- > Date: Mon, 24 Feb 1997 12:36:36 -0800 > From: Marcio Saito > To: Lewis De Payne > Cc: Cyclades Technical Support > Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE (fwd) > ... > By that time, 2.1.5 was the most popular driver. The > driver in the ftp area (see README.FREEBSD) is only > for 2.1.5 kernels. I'm not sure what this means. 2.1.5 is an OS, not a driver. > 2.1.6 has all the support for the Cyclom-Y board > already built-in. 2.1.0 had almost all the available support for the Cyclom-Y board. It differs from the 2.1.7 version in just 4 lines (a minor bug fix involving not setting the physical speed to 0 when the logical speed is set to 0). Unfortunately, the cy driver in 2.1.7 is missing a major bug fix for carrier handling in CLOCAL mode. This is fixed in 2.2 and -current, but the -current driver won't work under 2.1.x. Bruce From owner-freebsd-bugs Tue Feb 25 07:38:40 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA27791 for bugs-outgoing; Tue, 25 Feb 1997 07:38:40 -0800 (PST) Received: from hauki.clinet.fi (root@hauki.clinet.fi [194.100.0.1]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA27749 for ; Tue, 25 Feb 1997 07:38:23 -0800 (PST) Received: from news.clinet.fi (root@news.clinet.fi [194.100.0.3]) by hauki.clinet.fi (8.8.5/8.6.4) with ESMTP id RAA12360 for ; Tue, 25 Feb 1997 17:37:42 +0200 (EET) Received: (root@localhost) by news.clinet.fi (8.8.5/8.6.4) id RAA11533; Tue, 25 Feb 1997 17:37:55 +0200 (EET) Date: Tue, 25 Feb 1997 17:37:55 +0200 (EET) Message-Id: <199702251537.RAA11533@news.clinet.fi> From: Heikki Suonsivu To: freebsd-bugs@freebsd.org Subject: More on bad dir panics Reply-To: Heikki Suonsivu Organization: Clinet Ltd, Espoo, Finland Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I have been trying to look around the crash dumps, as they are plentiful these days (twice a day seems to be the current rate). These always happen at the same point and all crashes are similar, crash occurs on directory lookup stombling over a block which contains something else than directory data. I can arrange access to crash dumps and kernels (with symbols). Current directory is /var/crash/ GDB is free software and you are welcome to distribute copies of it under certain conditions; type "show copying" to see the conditions. There is absolutely no warranty for GDB; type "show warranty" for details. GDB 4.16 (i386-unknown-freebsd), Copyright 1996 Free Software Foundation, Inc... IdlePTD 272000 current pcb at 211de8 panic: bad dir #0 boot (howto=256) at ../../kern/kern_shutdown.c:243 (kgdb) up #1 0xf01124d2 in panic (fmt=0xf01b3881 "bad dir") at ../../kern/kern_shutdown.c:367 (kgdb) up #2 0xf01b38c3 in ufs_dirbad (ip=0xf4b6cc00, offset=26739, how=0xf01b2c20 "mangled entry") at ../../ufs/ufs/ufs_lookup.c:589 (kgdb) print ip $1 = (struct inode *) 0x0 (kgdb) print mp $2 = (struct mount *) 0xf48d2c00 (kgdb) print *mp $3 = {mnt_list = {cqe_next = 0xf48d2200, cqe_prev = 0xf48d0600}, mnt_op = 0xf020a5f0, mnt_vfc = 0xf020a61c, mnt_vnodecovered = 0xf48c7780, mnt_vnodelist = {lh_first = 0xf4e58c00}, mnt_flag = 268439552, mnt_maxsymlinklen = 60, mnt_stat = {f_spare2 = 0, f_bsize = 1024, f_iosize = 8192, f_blocks = 2818526, f_bfree = 1370037, f_bavail = 1144555, f_files = 683518, f_ffree = 642806, f_fsid = {val = { 1124, 1}}, f_owner = 0, f_type = 1, f_flags = 268439552, f_spare = {0, 0, 0, 0, 0, 0}, f_mntonname = "/m/news/overview", '\000' , f_mntfromname = "/dev/sd12e", '\000' }, mnt_data = 0xf48d2a00, mnt_time = 0} (kgdb) up #3 0xf01b3121 in ufs_lookup (ap=0xefbffe50) at ../../ufs/ufs/ufs_lookup.c:284 (kgdb) print ep->d_reclen $4 = 24842 (kgdb) print entryoffsetinblock $5 = 26739 (kgdb) print *ep $6 = {d_ino = 2032152628, d_reclen = 24842, d_type = 108 'l', d_namlen = 116 't', d_name = ".fan.peter.hammill 0000000243 0000000238 y\nalt.job.gooley 0000000494 0000000491 y\nalt.hurricane.andrew 0000000213 0000000214 y\nalt.irc.corruption 0000000107 0000000097 y\nsci.med.nutrition 0000061174 0"...} (kgdb) set radix 16 Input and output radices now set to decimal 16, hex 10, octal 20. (kgdb) print entryoffsetinblock $7 = 0x6873 (kgdb) print bp $8 = (struct buf *) 0xf685f9e0 (kgdb) print *bp $9 = {b_hash = {le_next = 0xf68500a8, le_prev = 0xf0222144}, b_vnbufs = { le_next = 0x0, le_prev = 0xf4e58c30}, b_freelist = {tqe_next = 0x0, tqe_prev = 0xf68a9348}, b_act = {tqe_next = 0x0, tqe_prev = 0xf48482d4}, b_proc = 0x0, b_flags = 0x100230, b_qindex = 0x0, b_usecount = 0x5, b_error = 0x0, b_bufsize = 0x2000, b_bcount = 0x2000, b_resid = 0x0, b_dev = 0x464, b_un = { b_addr = 0xf6906000 "fetish.fashion:28695 alt.sex.fetish.feet:54468 alt.sex.fetish.feet.toes.opps:6273 alt.sex.fetish.giants:9450 alt.sex.fetish.hair:31370 alt.sex.fetish.hermunen:4146 alt.sex.fetish.jello:8782 alt.sex.fe"...}, b_kvabase = 0xf6906000 "fetish.fashion:28695 alt.sex.fetish.feet:54468 alt.sex.fetish.feet.toes.opps:6273 alt.sex.fetish.giants:9450 alt.sex.fetish.hair:31370 alt.sex.fetish.hermunen:4146 alt.sex.fetish.jello:8782 alt.sex.fe"..., b_kvasize = 0x2000, b_saveaddr = 0x0, b_lblkno = 0x0, b_blkno = 0xf122e, b_iodone = 0, b_iodone_chain = 0x0, b_vp = 0xf4e58c00, b_dirtyoff = 0x0, b_dirtyend = 0x0, b_rcred = 0x0, b_wcred = 0x0, b_validoff = 0x0, b_validend = 0x0, b_pblkno = 0x16422e, b_savekva = 0x0, b_driver1 = 0x0, b_driver2 = 0x0, b_spc = 0x0, b_cluster = {cluster_head = { tqh_first = 0xf68787c4, tqh_last = 0xf6844e78}, cluster_entry = { tqe_next = 0xf68787c4, tqe_prev = 0xf6844e78}}, b_pages = {0xf03b3d84, 0xf02ff7b8, 0x0 }, b_npages = 0xf6908} (kgdb) up #4 0xf01306c9 in lookup (ndp=0xefbfff0c) at vnode_if.h:31 (kgdb) down #3 0xf01b3121 in ufs_lookup (ap=0xefbffe50) at ../../ufs/ufs/ufs_lookup.c:284 (kgdb) print ep $10 = (struct direct *) 0xf690c873 (kgdb) print *ep $11 = {d_ino = 0x79203034, d_reclen = 0x610a, d_type = 0x6c, d_namlen = 0x74, d_name = ".fan.peter.hammill 0000000243 0000000238 y\nalt.job.gooley 0000000494 0000000491 y\nalt.hurricane.andrew 0000000213 0000000214 y\nalt.irc.corruption 0000000107 0000000097 y\nsci.med.nutrition 0000061174 0"...} (kgdb) print (struct direct *)((char *)bp->b_data) There is no member named b_data. (kgdb) print (struct direct *)((char *)bp->b_data) There is no member named b_data. (kgdb) print bp $12 = (struct buf *) 0xf685f9e0 (kgdb) print *bp $13 = {b_hash = {le_next = 0xf68500a8, le_prev = 0xf0222144}, b_vnbufs = { le_next = 0x0, le_prev = 0xf4e58c30}, b_freelist = {tqe_next = 0x0, tqe_prev = 0xf68a9348}, b_act = {tqe_next = 0x0, tqe_prev = 0xf48482d4}, b_proc = 0x0, b_flags = 0x100230, b_qindex = 0x0, b_usecount = 0x5, b_error = 0x0, b_bufsize = 0x2000, b_bcount = 0x2000, b_resid = 0x0, b_dev = 0x464, b_un = { b_addr = 0xf6906000 "fetish.fashion:28695 alt.sex.fetish.feet:54468 alt.sex.fetish.feet.toes.opps:6273 alt.sex.fetish.giants:9450 alt.sex.fetish.hair:31370 alt.sex.fetish.hermunen:4146 alt.sex.fetish.jello:8782 alt.sex.fe"...}, b_kvabase = 0xf6906000 "fetish.fashion:28695 alt.sex.fetish.feet:54468 alt.sex.fetish.feet.toes.opps:6273 alt.sex.fetish.giants:9450 alt.sex.fetish.hair:31370 alt.sex.fetish.hermunen:4146 alt.sex.fetish.jello:8782 alt.sex.fe"..., b_kvasize = 0x2000, b_saveaddr = 0x0, b_lblkno = 0x0, b_blkno = 0xf122e, b_iodone = 0, b_iodone_chain = 0x0, b_vp = 0xf4e58c00, b_dirtyoff = 0x0, b_dirtyend = 0x0, b_rcred = 0x0, b_wcred = 0x0, b_validoff = 0x0, b_validend = 0x0, b_pblkno = 0x16422e, b_savekva = 0x0, b_driver1 = 0x0, b_driver2 = 0x0, b_spc = 0x0, b_cluster = {cluster_head = { tqh_first = 0xf68787c4, tqh_last = 0xf6844e78}, cluster_entry = { tqe_next = 0xf68787c4, tqe_prev = 0xf6844e78}}, b_pages = {0xf03b3d84, 0xf02ff7b8, 0x0 }, b_npages = 0xf6908} (kgdb) print bp->b_addr There is no member named b_addr. (kgdb) print bp $14 = (struct buf *) 0xf685f9e0 (kgdb) print *(struct direct *) ((char *) bp->b_un.b_addr) $15 = (struct direct *) 0xf6906000 (kgdb) print *(struct direct *) ((char *) bp->b_un.b_addr) $16 = {d_ino = 0x69746566, d_reclen = 0x6873, d_type = 0x2e, d_namlen = 0x66, d_name = "ashion:28695 alt.sex.fetish.feet:54468 alt.sex.fetish.feet.toes.opps:6273 alt.sex.fetish.giants:9450 alt.sex.fetish.hair:31370 alt.sex.fetish.hermunen:4146 alt.sex.fetish.jello:8782 alt.sex.fetish.kit"...} (kgdb) print dp $17 = (struct inode *) 0xf4b6cc00 (kgdb) print dp->i_offset $18 = 0x6873 (kgdb) print *dp $19 = {i_next = 0xf4ce4100, i_prev = 0xf4884b30, i_vnode = 0xf4e58c00, i_devvp = 0xf48b6b00, i_flag = 0x8, i_dev = 0x464, i_number = 0x1c268, inode_u = {fs = 0xf48d4000, lfs = 0xf48d4000, e2fs = 0xf48d4000}, i_dquot = { 0x0, 0x0}, i_modrev = 0x3310db2a3ffc4f60, i_lockf = 0x0, i_lockholder = 0xdcd, i_lockwaiter = 0x0, i_count = 0x0, i_endoff = 0x0, i_diroff = 0x0, i_offset = 0x6873, i_ino = 0x0, i_reclen = 0x0, i_lockcount = 0x1, i_spare = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, i_din = {di_mode = 0x41ed, di_nlink = 0x3, di_u = {oldids = {0x0, 0x0}, inumber = 0x0}, di_size = 0x7370, di_atime = { tv_sec = 0x32e031d5, tv_nsec = 0x0}, di_mtime = {tv_sec = 0x330fc238, tv_nsec = 0x0}, di_ctime = {tv_sec = 0x330fc238, tv_nsec = 0x0}, di_db = {0x78917, 0x0 }, di_ib = {0x0, 0x0, 0x0}, di_flags = 0x0, di_blocks = 0x2, di_gen = 0x32fab649, di_uid = 0x8, di_gid = 0x6, di_spare = {0x0, 0x0}}} (kgdb) -- Heikki Suonsivu, T{ysikuu 10 C 83/02210 Espoo/FINLAND, hsu@clinet.fi mobile +358-40-5519679 work +358-9-43542270 fax -4555276 From owner-freebsd-bugs Tue Feb 25 08:16:16 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA29617 for bugs-outgoing; Tue, 25 Feb 1997 08:16:16 -0800 (PST) Received: from root.com (implode.root.com [198.145.90.17]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA29609 for ; Tue, 25 Feb 1997 08:16:11 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by root.com (8.8.5/8.6.5) with SMTP id IAA26169; Tue, 25 Feb 1997 08:16:16 -0800 (PST) Message-Id: <199702251616.IAA26169@root.com> X-Authentication-Warning: implode.root.com: localhost [127.0.0.1] didn't use HELO protocol To: Bruce Evans cc: freebsd-bugs@freefall.freebsd.org, lewiz@netcom.com Subject: Re: misc/2795: Cyclades 8YO -- Not working under 2.1.6-STABLE (fwd) In-reply-to: Your message of "Tue, 25 Feb 1997 23:21:15 +1100." <199702251221.XAA09187@godzilla.zeta.org.au> From: David Greenman Reply-To: dg@root.com Date: Tue, 25 Feb 1997 08:16:16 -0800 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >> David, this might be the problem -- the latest driver on the Cyclades >> ftp site may not be the latest driver. Marcio has now sent me the >> driver you sent him recently. I'll install it and let you know. >> Thank you for your quick responses. > >You probably don't want the latest driver. The one in 2.1.6 is the >best avaiable for 2.1.6 as far as I know (I wrote it). I back-ported the driver that went into -current shortly after adding support for PCI, the 16Y, and lots of controllers. Since the user is apparantly not needing any of those features, the driver in 2.1.6/2.1.7 should be sufficient. In any case, I made the port available to Cyclades and it's what they have on their FTP site. -DG David Greenman Core-team/Principal Architect, The FreeBSD Project From owner-freebsd-bugs Tue Feb 25 11:43:54 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA11202 for bugs-outgoing; Tue, 25 Feb 1997 11:43:54 -0800 (PST) Received: from Sisyphos.MI.Uni-Koeln.DE (Sisyphos.MI.Uni-Koeln.DE [134.95.212.10]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id LAA11190; Tue, 25 Feb 1997 11:43:35 -0800 (PST) Received: from x14.mi.uni-koeln.de (annexr3-11.slip.Uni-Koeln.DE) by Sisyphos.MI.Uni-Koeln.DE with SMTP id AA23441 (5.67b/IDA-1.5); Tue, 25 Feb 1997 20:43:20 +0100 Received: (from se@localhost) by x14.mi.uni-koeln.de (8.8.5/8.6.9) id UAA02157; Tue, 25 Feb 1997 20:42:38 +0100 (CET) Message-Id: <19970225204117.XF49008@x14.mi.uni-koeln.de> Date: Tue, 25 Feb 1997 20:41:17 +0100 From: se@freebsd.org (Stefan Esser) To: mpp@freefall.freebsd.org (Mike Pritchard) Cc: freebsd-bugs@freefall.freebsd.org, se@freefall.freebsd.org Subject: Re: kern/1670 References: <199702220021.QAA07177@freefall.freebsd.org> X-Mailer: Mutt 0.60_p2-3,5,8-9 Mime-Version: 1.0 In-Reply-To: <199702220021.QAA07177@freefall.freebsd.org>; from Mike Pritchard on Feb 21, 1997 16:21:04 -0800 Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Fixed by PHK in rev. 109 of /sys/i386/isa/if_ed.c. The patch has also been applied to the RELENG_2_2 branch. The problem didn't occur under 2.1. I'll close the PR, if nobody beats me on this :) Regards, STefan From owner-freebsd-bugs Tue Feb 25 11:55:11 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA11797 for bugs-outgoing; Tue, 25 Feb 1997 11:55:11 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id LAA11595 for ; Tue, 25 Feb 1997 11:52:26 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id UAA25576; Tue, 25 Feb 1997 20:51:14 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id UAA13027; Tue, 25 Feb 1997 20:50:30 +0100 (MET) Message-ID: Date: Tue, 25 Feb 1997 20:50:30 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: hsu@clinet.fi (Heikki Suonsivu) Cc: freebsd-bugs@freebsd.org Subject: Re: More on bad dir panics References: <199702251537.RAA11533@news.clinet.fi> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199702251537.RAA11533@news.clinet.fi>; from Heikki Suonsivu on Feb 25, 1997 17:37:55 +0200 Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As Heikki Suonsivu wrote: > > I have been trying to look around the crash dumps, as they are plentiful > these days (twice a day seems to be the current rate). These always happen > at the same point and all crashes are similar, crash occurs on directory > lookup stombling over a block which contains something else than directory > data. > > I can arrange access to crash dumps and kernels (with symbols). I think these are pretty useless for "bad dir" etc panics. These panics more sound like trashed data on the disk than something you could trace inside the kernel right when the panic happens. You need the history for the drive, but that's of course hard. See also Thomas David Rivers's investigations... -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Tue Feb 25 12:40:03 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA14512 for bugs-outgoing; Tue, 25 Feb 1997 12:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA14481; Tue, 25 Feb 1997 12:40:01 -0800 (PST) Date: Tue, 25 Feb 1997 12:40:01 -0800 (PST) Message-Id: <199702252040.MAA14481@freefall.freebsd.org> To: freebsd-bugs Cc: From: Fred Cawthorne Subject: Re: kern/2800: DDS large data writing probrem Reply-To: Fred Cawthorne Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/2800; it has been noted by GNATS. From: Fred Cawthorne To: freebsd-gnats-submit@freebsd.org, yoshiaki@kt.rim.or.jp Cc: Subject: Re: kern/2800: DDS large data writing probrem Date: Tue, 25 Feb 1997 15:36:54 -0500 Just to add another data point, I have the same problem with a P6-200 with an Adaptec 2940 controller connected to my drives and a 2940U (ultra scsi) controller connected to my dat drive (HP35480A) and my HP 4020i cd-R drive. The reboots occur when backing up or writing a CD... I have everything hooked up to the non ultra scsi controller now, and it appears to be working fine.. Maybe there is a problem with the 2940U support, or maybe when there is a 2940U and regular 2940 in the same system??? From owner-freebsd-bugs Tue Feb 25 15:58:22 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA25701 for bugs-outgoing; Tue, 25 Feb 1997 15:58:22 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA25655; Tue, 25 Feb 1997 15:57:57 -0800 (PST) Date: Tue, 25 Feb 1997 15:57:57 -0800 (PST) From: Mike Pritchard Message-Id: <199702252357.PAA25655@freefall.freebsd.org> To: cacho@crysophylax.sc.iteso.mx, mpp, freebsd-bugs Subject: Re: kern/2406 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: shmat(2) fails under 2.1.6R State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Tue Feb 25 15:56:48 PST 1997 State-Changed-Why: The originator reports that this has been fixed in later releases. From owner-freebsd-bugs Tue Feb 25 17:19:33 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA01710 for bugs-outgoing; Tue, 25 Feb 1997 17:19:33 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA01682; Tue, 25 Feb 1997 17:19:26 -0800 (PST) Date: Tue, 25 Feb 1997 17:19:26 -0800 (PST) From: Mike Pritchard Message-Id: <199702260119.RAA01682@freefall.freebsd.org> To: max@wide.ad.jp, mpp, freebsd-bugs Subject: Re: bin/1944 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: /usr/games/larn fails to create score file. State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Tue Feb 25 17:18:22 PST 1997 State-Changed-Why: Now fixed in 2.2 & 3.0-current. From owner-freebsd-bugs Tue Feb 25 18:33:20 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA06688 for bugs-outgoing; Tue, 25 Feb 1997 18:33:20 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA06560; Tue, 25 Feb 1997 18:32:01 -0800 (PST) Date: Tue, 25 Feb 1997 18:32:01 -0800 (PST) From: Mike Pritchard Message-Id: <199702260232.SAA06560@freefall.freebsd.org> To: mark@linus.demon.co.uk, mpp, freebsd-bugs Subject: Re: bin/1986 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: error in lpr(1) argument handling [with fix] State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Tue Feb 25 18:24:45 PST 1997 State-Changed-Why: Suggested fix applied, thanks! From owner-freebsd-bugs Tue Feb 25 19:26:55 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA10176 for bugs-outgoing; Tue, 25 Feb 1997 19:26:55 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA10156; Tue, 25 Feb 1997 19:26:50 -0800 (PST) Date: Tue, 25 Feb 1997 19:26:50 -0800 (PST) From: Mike Pritchard Message-Id: <199702260326.TAA10156@freefall.freebsd.org> To: mpp, freebsd-bugs, jkh Subject: Re: conf/2063 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: No file not found message in sysinstall Responsible-Changed-From-To: freebsd-bugs->jkh Responsible-Changed-By: mpp Responsible-Changed-When: Tue Feb 25 19:25:31 PST 1997 Responsible-Changed-Why: Sysinstall problem. From owner-freebsd-bugs Tue Feb 25 20:14:35 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA12834 for bugs-outgoing; Tue, 25 Feb 1997 20:14:35 -0800 (PST) Received: from mikan.jaist.ac.jp (mikan-e0.jaist.ac.jp [150.65.1.9]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA12829 for ; Tue, 25 Feb 1997 20:14:23 -0800 (PST) Received: from is19e1s01.jaist.ac.jp (Mamoru Iwaki ) by mikan.jaist.ac.jp (8.7.5); id NAA10832; Wed, 26 Feb 1997 13:14:07 +0900 (JST) Date: Wed, 26 Feb 1997 13:14:07 +0900 (JST) Message-Id: <199702260414.NAA10832@mikan.jaist.ac.jp> To: joerg_wunsch@uriah.heep.sax.de Cc: freebsd-bugs@freefall.freebsd.org Subject: Re: kern/2767 In-Reply-To: Your message of "Mon, 24 Feb 1997 10:01:10 +0100". From: iwaki@jaist.ac.jp (Mamoru Iwaki) X-Mailer: mnews [version 1.20] 1996-12/08(Sun) Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk In article j@uriah.heep.sax.de wrote: >>As Mamoru Iwaki wrote: >>> The rev 1.60 looks unsuitable for the 2.2-970215-GAMMA GENERIC kernel, >>> I think. >> >>Yes, you need to apply the diff between 1.59 and 1.60 only. >>Alternatively, you can get revision 1.54.2.3 which is from the 2.2 >>branch. I got $Id: if_de.c,v 1.54.2.3 1997/02/23 11:00:44 joerg Exp $ along with 2.2-970225-GAMMA from 22gamma.freebsd.org, and it works fine :-) I can ftp-install using boot.flp and the installed GENERIC kernel serves my telnet requests. I hope the RELEASE version is inherit this feature. thanks a lot ;-) # I may have made a mistake in the recompile with the rev 1.60 in the # last e-mail; I did not copy the following header files for if_de.c: # pci/dc21040.h, i386/pci/ic/dc21040.h and dev/ic/dc21040reg.h. Sorry. --- ----- Mamoru IWAKI (iwaki@jaist.ac.jp) Japan Advanced Institute of Science and Technology, Hokuriku From owner-freebsd-bugs Tue Feb 25 20:23:20 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA13393 for bugs-outgoing; Tue, 25 Feb 1997 20:23:20 -0800 (PST) Received: (from gpalmer@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA13222; Tue, 25 Feb 1997 20:20:41 -0800 (PST) Date: Tue, 25 Feb 1997 20:20:41 -0800 (PST) From: Gary Palmer Message-Id: <199702260420.UAA13222@freefall.freebsd.org> To: gpalmer, gnats-admin, freebsd-bugs Subject: Re: kern/2815 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Custom Kernel crashes Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: gpalmer Responsible-Changed-When: Tue Feb 25 20:19:37 PST 1997 Responsible-Changed-Why: Misfiled PR From owner-freebsd-bugs Tue Feb 25 21:30:58 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA15871 for bugs-outgoing; Tue, 25 Feb 1997 21:30:58 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA15836; Tue, 25 Feb 1997 21:30:41 -0800 (PST) Date: Tue, 25 Feb 1997 21:30:41 -0800 (PST) From: Mike Pritchard Message-Id: <199702260530.VAA15836@freefall.freebsd.org> To: charnier@xp11.frmug.org, mpp, freebsd-bugs Subject: Re: bin/2040 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: make world fails after cp -pR of /usr/bin State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Tue Feb 25 21:30:02 PST 1997 State-Changed-Why: Suggested fixes applied. From owner-freebsd-bugs Tue Feb 25 22:04:17 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA17850 for bugs-outgoing; Tue, 25 Feb 1997 22:04:17 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA17829; Tue, 25 Feb 1997 22:04:09 -0800 (PST) Date: Tue, 25 Feb 1997 22:04:09 -0800 (PST) From: Mike Pritchard Message-Id: <199702260604.WAA17829@freefall.freebsd.org> To: davidn@sdev.usn.blaze.net.au, mpp, freebsd-bugs Subject: Re: bin/2074 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: syslog.h with SYSLOG_NAMES defined generates warnings State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Tue Feb 25 22:03:29 PST 1997 State-Changed-Why: Fixed in rev 1.11 of syslog.h. From owner-freebsd-bugs Tue Feb 25 22:14:11 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA18520 for bugs-outgoing; Tue, 25 Feb 1997 22:14:11 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA18481; Tue, 25 Feb 1997 22:14:02 -0800 (PST) Date: Tue, 25 Feb 1997 22:14:02 -0800 (PST) From: Mike Pritchard Message-Id: <199702260614.WAA18481@freefall.freebsd.org> To: mpp, freebsd-bugs, sos Subject: Re: i386/2108 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Old Synopsis: wcd driver may hang under certain condition New Synopsis: [ATAPI] wcd driver may hang under certain condition Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: mpp Responsible-Changed-When: Tue Feb 25 22:12:50 PST 1997 Responsible-Changed-Why: Atapi problem. From owner-freebsd-bugs Tue Feb 25 22:25:43 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA19321 for bugs-outgoing; Tue, 25 Feb 1997 22:25:43 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA19288; Tue, 25 Feb 1997 22:25:17 -0800 (PST) Date: Tue, 25 Feb 1997 22:25:17 -0800 (PST) From: Mike Pritchard Message-Id: <199702260625.WAA19288@freefall.freebsd.org> To: davidn@blaze.net.au, mpp, freebsd-bugs Subject: Re: bin/2172 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Request update to getttyent.c & minor addition to /etc/ttys format State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Tue Feb 25 22:24:36 PST 1997 State-Changed-Why: Added to the system near the first of the year by the submitter. From owner-freebsd-bugs Tue Feb 25 22:41:39 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA20410 for bugs-outgoing; Tue, 25 Feb 1997 22:41:39 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA20358; Tue, 25 Feb 1997 22:41:19 -0800 (PST) Date: Tue, 25 Feb 1997 22:41:19 -0800 (PST) From: Mike Pritchard Message-Id: <199702260641.WAA20358@freefall.freebsd.org> To: mpp, freebsd-bugs, guido Subject: Re: bin/2265 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: su(1) does not call skeyaccess() Responsible-Changed-From-To: freebsd-bugs->guido Responsible-Changed-By: mpp Responsible-Changed-When: Tue Feb 25 22:40:58 PST 1997 Responsible-Changed-Why: Guido said he was working on this in the audit trail of this PR. From owner-freebsd-bugs Tue Feb 25 23:00:11 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA22062 for bugs-outgoing; Tue, 25 Feb 1997 23:00:11 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA22041; Tue, 25 Feb 1997 23:00:07 -0800 (PST) Date: Tue, 25 Feb 1997 23:00:07 -0800 (PST) From: Mike Pritchard Message-Id: <199702260700.XAA22041@freefall.freebsd.org> To: vazquez@IQM.Unicamp.BR, mpp, freebsd-bugs Subject: Re: misc/2359 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: /usr/share/examples/sunrpc/Makefile uses LIB=-lrpclib State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Tue Feb 25 22:59:26 PST 1997 State-Changed-Why: Suggested changes made. From owner-freebsd-bugs Tue Feb 25 23:02:26 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA22238 for bugs-outgoing; Tue, 25 Feb 1997 23:02:26 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA22215; Tue, 25 Feb 1997 23:02:14 -0800 (PST) Date: Tue, 25 Feb 1997 23:02:14 -0800 (PST) From: Mike Pritchard Message-Id: <199702260702.XAA22215@freefall.freebsd.org> To: wh@MX.BA-Stuttgart.De, mpp, freebsd-bugs Subject: Re: bin/2362 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: make tags does not work with objdir installed State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Tue Feb 25 23:01:20 PST 1997 State-Changed-Why: Duplicate of PR# 2729. From owner-freebsd-bugs Tue Feb 25 23:50:08 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA24321 for bugs-outgoing; Tue, 25 Feb 1997 23:50:08 -0800 (PST) Received: from satsun.sci.kz (satsun.sci.kz [194.67.96.1]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA24288 for ; Tue, 25 Feb 1997 23:49:57 -0800 (PST) Received: from satsun.sci.kz (sairan.sci.kz [194.67.96.63]) by satsun.sci.kz (8.7.4/8.7.3) with SMTP id NAA03896 for ; Wed, 26 Feb 1997 13:48:59 +0600 (TSK) Message-Id: <199702260748.NAA03896@satsun.sci.kz> Comments: Authenticated sender is From: "Sairan M. Kikkarin" Organization: PTI, Almaty, Kazakstan To: bugs@freebsd.org Date: Wed, 26 Feb 1997 13:49:20 +0600 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: timezone settings Priority: normal X-mailer: Pegasus Mail for Win32 (v2.52) Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi, I am trying FreeBSD 2.2 GAMMA and seems find some small bugs. 1) There are 3 time zone in timezone setting procedure for Kazakstan (east, central, and west), but actually THERE ARE ONLY two time zones here in my country: east: GMT+0600 and west GMT+0500. 2) When I choose east time zone (ALMT) the clock (in X-windows or asked by DATE command) shows a time shifted +0600 from PC CMOS clock. Then, the country name "Kazakhstan" is obsolete, more correct is "Kazakstan", as registered in United Nations Organization. With compliments S.M.Kikkarin From owner-freebsd-bugs Wed Feb 26 01:00:09 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA26628 for bugs-outgoing; Wed, 26 Feb 1997 01:00:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA26622; Wed, 26 Feb 1997 01:00:06 -0800 (PST) Resent-Date: Wed, 26 Feb 1997 01:00:06 -0800 (PST) Resent-Message-Id: <199702260900.BAA26622@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, vitjok@fasts.com Received: from mail.fasts.com (qmailr@server.fasts.com [199.125.215.66]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id AAA26470 for ; Wed, 26 Feb 1997 00:56:08 -0800 (PST) Received: (qmail 948 invoked by uid 0); 26 Feb 1997 10:55:31 -0000 Message-Id: <19970226105531.947.qmail@mail.fasts.com> Date: 26 Feb 1997 10:55:31 -0000 From: vitjok@fasts.com Reply-To: vitjok@fasts.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: conf/2819: bug in /etc/rc.local Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2819 >Category: conf >Synopsis: /etc/rc does not execute 'uname' when constructing /etc/motd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 01:00:03 PST 1997 >Last-Modified: >Originator: Victor Rotanov >Organization: FASTS Ltd. >Release: FreeBSD 2.2-GAMMA >Environment: Nothing special >Description: /etc/rc.local looks for "FreeBSD" instead of `uname` when constructing /etc/motd. >How-To-Repeat: Replace "FreeBSD" with something :) First line of /etc/motd will be duplicated then each time you reboot. >Fix: Some kind of fix should exist. >Audit-Trail: >Unformatted: From owner-freebsd-bugs Wed Feb 26 05:28:50 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA07067 for bugs-outgoing; Wed, 26 Feb 1997 05:28:50 -0800 (PST) Received: (from mckay@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA07046; Wed, 26 Feb 1997 05:28:39 -0800 (PST) Date: Wed, 26 Feb 1997 05:28:39 -0800 (PST) From: Stephen McKay Message-Id: <199702261328.FAA07046@freefall.freebsd.org> To: dpb@kafka.hqs.crc.com, mckay, freebsd-bugs Subject: Re: kern/2787 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Cyrix 150+ CPU is seen as a 486, Kernels made for i586 don't recognize the chip as 586. State-Changed-From-To: open-closed State-Changed-By: mckay State-Changed-When: Wed Feb 26 05:18:53 PST 1997 State-Changed-Why: At this time, I486_CPU is the correct value for the Cyrix 6x86 processor (also known as the M1). The handbook chapter on kernel configuration does not explain this, and neither does LINT. If I knew how to convert this to a doc pr, I would. From owner-freebsd-bugs Wed Feb 26 07:54:17 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA14187 for bugs-outgoing; Wed, 26 Feb 1997 07:54:17 -0800 (PST) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA14177 for ; Wed, 26 Feb 1997 07:54:13 -0800 (PST) Received: from csc.com (explorer.csc.com [20.1.10.27]) by who.cdrom.com (8.7.5/8.6.11) with SMTP id HAA14495 for ; Wed, 26 Feb 1997 07:54:09 -0800 (PST) Received: from evil.csc.com by csc.com with smtp (Smail3.1.29.1 #1) id m0vzlat-001B1RC; Wed, 26 Feb 97 10:48 EST Message-ID: <33145833.4E67@csc.com> Date: Wed, 26 Feb 1997 10:35:15 -0500 From: steve medrick Reply-To: smedrick@csc.com X-Mailer: Mozilla 3.0 (Win95; I) MIME-Version: 1.0 To: bugs@FreeBSD.org Subject: missing utils in 2.2-gamma Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk you probably already know, but PICO and PINE are both missing from the ftp install of 2.2-gamma. You do not need to reply as I have fixed this by porting the PICO and PINE off one the dns boxes we have running v2.1.5 -Steve Medrick smedrick@csc.com From owner-freebsd-bugs Wed Feb 26 08:54:49 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA17692 for bugs-outgoing; Wed, 26 Feb 1997 08:54:49 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA17628; Wed, 26 Feb 1997 08:53:22 -0800 (PST) Date: Wed, 26 Feb 1997 08:53:22 -0800 (PST) From: Mike Pritchard Message-Id: <199702261653.IAA17628@freefall.freebsd.org> To: nik@blueberry.co.uk, mpp, freebsd-bugs Subject: Re: bin/1964 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: In my NIS environment, finger(1) fails. State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Wed Feb 26 08:53:02 PST 1997 State-Changed-Why: The originator says that this is fixed in 2.1.7. From owner-freebsd-bugs Wed Feb 26 08:58:36 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA17951 for bugs-outgoing; Wed, 26 Feb 1997 08:58:36 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA17944; Wed, 26 Feb 1997 08:58:31 -0800 (PST) From: Mike Pritchard Message-Id: <199702261658.IAA17944@freefall.freebsd.org> Subject: Re: kern/2787 To: mckay@freefall.freebsd.org (Stephen McKay) Date: Wed, 26 Feb 1997 08:58:31 -0800 (PST) Cc: mckay (Stephen McKay), freebsd-bugs In-Reply-To: <199702261328.FAA07046@freefall.freebsd.org> from "Stephen McKay" at Feb 26, 97 05:28:39 am X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Stephen McKay wrote: > > Synopsis: Cyrix 150+ CPU is seen as a 486, Kernels made for i586 don't recognize the chip as 586. > > State-Changed-From-To: open-closed > State-Changed-By: mckay > State-Changed-When: Wed Feb 26 05:18:53 PST 1997 > State-Changed-Why: > At this time, I486_CPU is the correct value for the Cyrix 6x86 processor > (also known as the M1). The handbook chapter on kernel configuration > does not explain this, and neither does LINT. If I knew how to convert > this to a doc pr, I would. Edit the pr, and change the category from kern to docs. -- Mike Pritchard mpp@FreeBSD.org "Go that way. Really fast. If something gets in your way, turn" From owner-freebsd-bugs Wed Feb 26 09:04:02 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA18381 for bugs-outgoing; Wed, 26 Feb 1997 09:04:02 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA18327; Wed, 26 Feb 1997 09:03:54 -0800 (PST) Date: Wed, 26 Feb 1997 09:03:54 -0800 (PST) From: Mike Pritchard Message-Id: <199702261703.JAA18327@freefall.freebsd.org> To: jau@jau.tmt.tele.fi, mpp, freebsd-bugs Subject: Re: kern/2279 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: questionable parameter types in /usr/include/signal.h State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Wed Feb 26 08:58:58 PST 1997 State-Changed-Why: Bruce says that he changed the kill() prototype to make signal.h not depend on types.h, and to help work around a problem with non-ANSI compilers. From owner-freebsd-bugs Wed Feb 26 09:20:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA19581 for bugs-outgoing; Wed, 26 Feb 1997 09:20:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA19533; Wed, 26 Feb 1997 09:20:02 -0800 (PST) Resent-Date: Wed, 26 Feb 1997 09:20:02 -0800 (PST) Resent-Message-Id: <199702261720.JAA19533@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.JAA19392;Wed; (8.8.5/8.8.5);, 26 Feb 1997 09:18:19.-0800 (PST) Message-Id: <199702261718.JAA19392@freefall.freebsd.org> Date: Wed, 26 Feb 1997 09:18:19 -0800 (PST) From: root@eyelab.psy.msu.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: conf/2822: ftp install specifying URL confusing Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2822 >Category: conf >Synopsis: ftp install specifying URL confusing >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 26 09:20:01 PST 1997 >Last-Modified: >Originator: Gary Schrock >Organization: MSU Psycholinguistics and Visual Cognition Lab >Release: 2.2-GAMMA >Environment: FreeBSD eyelab.msu.edu 2.2-GAMMA FreeBSD 2.2-GAMMA #0: Tue Feb 25 22:47:05 EST 1997 root@eyelab.msu.edu:/usr/src/sys/compile/EYELAB i386 >Description: I don't know about other people, but I found that the information presented when you choose to specify a URL to use for doing an FTP install was a bit confusing. It wasn't obvious that you needed to include the /pub/FreeBSD part of the URL. >How-To-Repeat: During an FTP install, choose specify URL >Fix: Adding a line to the display that clarifies what you have to input. Maybe do it as an example (ex: ftp://ftp3.freebsd.org/pub/FreeBSD). >Audit-Trail: >Unformatted: From owner-freebsd-bugs Wed Feb 26 09:23:25 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA19892 for bugs-outgoing; Wed, 26 Feb 1997 09:23:25 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA19709; Wed, 26 Feb 1997 09:21:47 -0800 (PST) Date: Wed, 26 Feb 1997 09:21:47 -0800 (PST) From: Mike Pritchard Message-Id: <199702261721.JAA19709@freefall.freebsd.org> To: mpp, gnats-admin, freebsd-bugs Subject: Re: pending/2820 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: utmp man page error Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: mpp Responsible-Changed-When: Wed Feb 26 09:19:23 PST 1997 Responsible-Changed-Why: Misfiled PR. From owner-freebsd-bugs Wed Feb 26 09:30:29 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA20544 for bugs-outgoing; Wed, 26 Feb 1997 09:30:29 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA20414; Wed, 26 Feb 1997 09:29:56 -0800 (PST) Date: Wed, 26 Feb 1997 09:29:56 -0800 (PST) From: Mike Pritchard Message-Id: <199702261729.JAA20414@freefall.freebsd.org> To: fcawth@jjarray.umd.edu, mpp, freebsd-bugs Subject: Re: docs/2820 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: utmp man page error State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Wed Feb 26 09:29:06 PST 1997 State-Changed-Why: Fixed, thanks! From owner-freebsd-bugs Wed Feb 26 09:31:40 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA20696 for bugs-outgoing; Wed, 26 Feb 1997 09:31:40 -0800 (PST) Received: from Michelle.esfm.ipn.mx (Michelle.esfm.ipn.mx [148.204.104.23]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id JAA20666 for ; Wed, 26 Feb 1997 09:31:33 -0800 (PST) Received: from Michelle.esfm.ipn.mx (Michelle.esfm.ipn.mx [148.204.104.23]) by Michelle.esfm.ipn.mx (8.7.5/8.7.3) with SMTP id LAA05196 for ; Wed, 26 Feb 1997 11:30:48 -0600 (CST) Message-ID: <33147347.167EB0E7@esfm.ipn.mx> Date: Wed, 26 Feb 1997 11:30:47 -0600 From: Eduardo Viruena Silva Organization: esfm-ipn X-Mailer: Mozilla 3.01 (X11; I; FreeBSD 2.1.5-RELEASE i386) MIME-Version: 1.0 To: freebsd-bugs@FreeBSD.ORG Subject: xemacs and emacs Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hello there! I tried to install emacs and xemacs using my FreeBSD ver 2.1.6 CD. xemacs asks for the library: libXm.so.2.0 (it seems to be Motif!!) emacs asks for the library: libgcc.so.261.0 both libraries are not present in my cd (or I have been unable to find them). Where can I find a functional version of xemacs and emacs for FreeBSD version 2.1.6 ? or, Where may I find the libraries ? Thanks in advance. -- /\ /\ _ / \/ \ \___/_\ __ ( O O _) / / / \ /\ / ___ / / ___ | |\ / / | / / / |_|_ O __/____/\__/\___|/___/\__/ \/ From owner-freebsd-bugs Wed Feb 26 12:46:01 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA02006 for bugs-outgoing; Wed, 26 Feb 1997 12:46:01 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA01998 for freebsd-bugs; Wed, 26 Feb 1997 12:45:59 -0800 (PST) From: Mike Pritchard Message-Id: <199702262045.MAA01998@freefall.freebsd.org> Subject: Current problem reports To: freebsd-bugs Date: Wed, 26 Feb 1997 12:45:59 -0800 (PST) X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk This is a test message to see if it does down the same black hole that the real "Current problem reports" message seems to have found. -- Mike Pritchard mpp@FreeBSD.org "Go that way. Really fast. If something gets in your way, turn" From owner-freebsd-bugs Wed Feb 26 15:25:16 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA10848 for bugs-outgoing; Wed, 26 Feb 1997 15:25:16 -0800 (PST) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA10841 for ; Wed, 26 Feb 1997 15:25:13 -0800 (PST) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.4/8.7.3) id PAA03222; Wed, 26 Feb 1997 15:24:50 -0800 (PST) Date: Wed, 26 Feb 1997 15:24:50 -0800 (PST) Message-Id: <199702262324.PAA03222@vader.cs.berkeley.edu> To: mrspock@esfm.ipn.mx CC: freebsd-bugs@freebsd.org In-reply-to: <33147347.167EB0E7@esfm.ipn.mx> (message from Eduardo Viruena Silva on Wed, 26 Feb 1997 11:30:47 -0600) Subject: Re: xemacs and emacs From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * Where can I find a functional version of xemacs and emacs for * FreeBSD version 2.1.6 ? You can get them from ftp://ftp.freebsd.org/pub/FreeBSD/packages-2.1.6/ which is the same as what will be on the 2.1.7 CD. * Where may I find the libraries ? They are in compat20 (or was it compat21) dists. Satoshi From owner-freebsd-bugs Wed Feb 26 15:44:50 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA11720 for bugs-outgoing; Wed, 26 Feb 1997 15:44:50 -0800 (PST) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA11715; Wed, 26 Feb 1997 15:44:45 -0800 (PST) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.4/8.7.3) id PAA03979; Wed, 26 Feb 1997 15:44:03 -0800 (PST) Date: Wed, 26 Feb 1997 15:44:03 -0800 (PST) Message-Id: <199702262344.PAA03979@vader.cs.berkeley.edu> To: smedrick@csc.com, jkh@freebsd.org CC: bugs@freebsd.org In-reply-to: <33145833.4E67@csc.com> (message from steve medrick on Wed, 26 Feb 1997 10:35:15 -0500) Subject: Re: missing utils in 2.2-gamma From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * you probably already know, but PICO and PINE * are both missing from the ftp install of 2.2-gamma. * * You do not need to reply as I have fixed this by porting * the PICO and PINE off one the dns boxes we have running * v2.1.5 Jordan, this is because it's missing from packages-2.2/INDEX. It's in ports-current/INDEX and the package is there, so I don't know why it was deleted. Satoshi From owner-freebsd-bugs Wed Feb 26 16:13:28 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id QAA13895 for bugs-outgoing; Wed, 26 Feb 1997 16:13:28 -0800 (PST) Received: from mail.cs.tu-berlin.de (root@mail.cs.tu-berlin.de [130.149.17.13]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA13864; Wed, 26 Feb 1997 16:13:12 -0800 (PST) Received: from campa.panke.de (anonymous223.ppp.cs.tu-berlin.de [130.149.17.223]) by mail.cs.tu-berlin.de (8.8.5/8.8.5) with SMTP id AAA29651; Thu, 27 Feb 1997 00:59:50 +0100 (MET) Received: (from wosch@localhost) by campa.panke.de (8.6.12/8.6.12) id AAA00334; Thu, 27 Feb 1997 00:24:14 +0100 Date: Thu, 27 Feb 1997 00:24:14 +0100 Message-Id: <199702262324.AAA00334@campa.panke.de> From: Wolfram Schneider To: Mike Pritchard Cc: freebsd-bugs@freefall.freebsd.org Subject: Re: bin/2304 In-Reply-To: <199702230510.VAA17973@freefall.freebsd.org> References: <199702230510.VAA17973@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Mike Pritchard writes: > Maybe it should only ignore the error if errno == EEXIST? and only if the last file name is a directory, e.g. mkdir -p /dir1/dir2/dir3/file must print an error because 'file' is not a directory. Wolfram From owner-freebsd-bugs Wed Feb 26 17:41:38 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA20110 for bugs-outgoing; Wed, 26 Feb 1997 17:41:38 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA20100 for freebsd-bugs@freebsd.org; Wed, 26 Feb 1997 17:41:22 -0800 (PST) Date: Wed, 26 Feb 1997 17:41:22 -0800 (PST) Message-Id: <199702270141.RAA20100@freefall.freebsd.org> From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended Work on the problem has been postponed. This happens if a timely solution is not possible or is not cost-effective at the present time. The PR continues to exist, though a solution is not being actively sought. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1995/01/11] i386/105 bde Distributed libm (msun) has non-standard o [1995/02/14] kern/216 davidg /kernel: panic: ffs_alloccg: map corrupte o [1995/12/08] kern/876 NFS allows bogus accesses to cached data a [1996/01/22] kern/965 bde 2.0.5: system crashes daily because of "m a [1996/03/04] kern/1059 hsu null fs panics system o [1996/04/06] kern/1121 dyson System crashes on boot up just after the o [1996/05/07] kern/1177 dyson Machine hangs with message "vm_fork: no p f [1996/06/05] kern/1293 Fatal trap 12: page fault while in kernel o [1996/06/11] kern/1311 dyson Panic: vm_page_free while installing new a [1996/07/15] bin/1387 davidn Group file errors cause absolute havoc a [1996/08/09] kern/1487 bde bug in exec(2) o [1996/08/15] kern/1498 system hangs during inactivity o [1996/09/11] kern/1599 panic: locking against myself s [1996/09/13] conf/1608 FreeBSD's bug tracking system does not re f [1996/09/14] kern/1609 page fault while in kenel mode during Lin o [1996/09/29] bin/1694 rbootd does not appear to work o [1996/09/30] kern/1698 sup from around 21:51 GMT 28th very unsta a [1996/10/08] kern/1744 run queue or proc list smashed 4 times in o [1996/10/13] kern/1790 access to /dev/kmem panics system f [1996/10/28] kern/1919 access to files/directories fails, gives o [1996/11/01] kern/1940 TCP doesn't time out of FIN_WAIT_1 and fl o [1996/11/04] i386/1959 DELAY() won't work for fast CPUs o [1996/11/15] kern/2033 unmount of doubly mounted devfs forces pa o [1996/11/17] kern/2043 2.2-ALPHA stdio problems? (Bad Address e o [1996/11/29] kern/2121 MAXBSIZE in param.h causes kernel panic i o [1996/11/29] bin/2126 phk sysinstall installs broken geometory(sic) o [1996/12/14] i386/2218 cy.c XON/XOFF handling crashes kernel o [1996/12/17] kern/2240 ncr53c810 crashing o [1996/12/20] bin/2258 wollman route add/delete [network] xxx.yyy.zzz.0 o [1996/12/25] kern/2277 2.2-BETA fails to boot on my laptop o [1996/12/25] conf/2280 Can't configure 562 CD-Rom using interfac o [1996/12/28] kern/2305 se system hangs with second Ide controller o [1996/12/29] bin/2320 Trouble with using arrow keys to navigate f [1997/01/01] ports/2352 ports wu-ftp port does not work with DES crypte o [1997/01/03] conf/2367 gibbs Buslogic SCSI driver bad probe of 742A EI o [1997/01/04] kern/2371 gibbs SCSI disk corruption a [1997/01/10] bin/2440 julian Typo in libc and libc_r functions results o [1997/01/14] kern/2498 On installation, after selecting drivers, o [1997/01/25] bin/2578 imp security hole in resolver routines permit o [1997/01/25] bin/2580 imp security hole in glob.c o [1997/01/25] bin/2581 imp security holes in libtermcap o [1997/01/25] bin/2582 imp security hole in lib/libc/nls/msgcat.c o [1997/01/25] bin/2583 imp small security hole in localtime.c o [1997/01/25] bin/2586 imp various buffer overflow fixes o [1997/01/25] bin/2588 imp [possible] remote root exploit in rlogind o [1997/01/26] bin/2594 floppy install hangs after or on npx driv o [1997/01/27] bin/2599 Lite2 merg and critical bugfix for games/ o [1997/01/28] bin/2605 imp Buffer overflow in Paul Vixie's cron o [1997/02/01] kern/2635 NFS cache doesn't check execute permissio o [1997/02/06] kern/2680 bde bind of a local domain socket does not re f [1997/02/10] kern/2706 gibbs OS suddunly fail at using DAT tape drive. o [1997/02/11] kern/2717 Panic with daily script (find) o [1997/02/12] conf/2718 Table Configuration with Multi Serial Boa o [1997/02/14] bin/2740 wpaul root-fs full erases password table ! o [1997/02/17] kern/2754 Using memory mmapped to an NFS file can c o [1997/02/19] conf/2775 sos Syscons in 2.2 wont work with Diamond Spe o [1997/02/21] misc/2795 Cyclades 8YO -- Not working under 2.1.6-S o [1997/02/26] ports/2821 ports XFree86 distributed with 2.2-GAMMA corrup 58 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1994/11/30] kern/34 davidg nullfs and union mounts can result in wil a [1995/03/20] kern/260 davidg msync and munmap don't bother to update m s [1995/04/01] kern/291 se PCI devices still probe/attach after bein f [1995/05/08] bin/389 Simultaneous creation/deletion of dirs co a [1995/05/09] bin/392 Simultaneous cp and ls of files on dos f/ o [1995/05/16] kern/425 wollman arp entries not getting removed when inte a [1995/06/17] kern/527 dufault dump causes assertion in ncr.c o [1995/07/02] kern/579 bde sio: RS_IBUFSIZE at 256 bytes serial line f [1995/07/04] kern/587 if_le hangs on OACTIVE with 2k buffer s [1995/07/21] i386/631 if_ix does not support bpf, nor does it a s [1995/07/29] kern/638 Transmitted packets not passed to bpf in o [1995/08/01] bin/648 jmz [f2c] printf format conversion incorrect f [1995/08/11] gnu/672 Nor all ph headers get created o [1995/08/21] kern/703 amurai ppp not always deleting route properly wh o [1995/08/22] bin/706 jmg increased root DNS traffic and long laten f [1995/09/20] kern/730 gibbs 3Com 3C5x9 probe problem f [1995/09/27] kern/750 cd9660 confused by not-ready or I/O error a [1995/10/07] bin/771 telnet character mode not set and broken o [1995/10/18] bin/786 wpaul Problem with NIS and large group maps a [1995/10/26] kern/794 swap partition at offset 0 still broken o [1995/11/12] kern/820 gibbs scsi tape problems f [1995/11/16] bin/826 mpp tcpmux listener in inetd does not work o [1995/11/28] bin/850 joerg dump treats write-protect as an EOT & spo o [1995/12/20] i386/906 davidg /sys/i386/boot/netboot/nb8390.com cannot o [1996/01/01] bin/926 Mounting nfs disks before starting mountd o [1996/02/06] kern/998 badness in file system silently crashes m o [1996/02/12] kern/1020 .Boca 16-port board still hangs o [1996/02/12] docs/1023 mpp using touch to create swap file for NFS d a [1996/02/17] bin/1030 steve /bin/sh does not pass environment variabl f [1996/02/28] bin/1050 Process (zip) hangs (unkillable) after fl s [1996/03/06] kern/1067 mpp panic: ufs_lock: recursive lock not expec o [1996/03/09] bin/1073 telnet -8 does not work with SunOS or Sol f [1996/03/21] i386/1097 gibbs system hang during tape rewind/aic7870 co o [1996/03/23] kern/1098 File system corruption (2 cases) o [1996/03/30] bin/1111 scrappy mail.local will happily deliver mail to a o [1996/04/05] kern/1118 panic: setrunqueue encountered when wine f [1996/04/11] kern/1135 starting an extra mountd and then killing f [1996/05/10] misc/1187 pppd dies with a segv f [1996/05/14] kern/1204 umount -f after SCSI reset -> reboot o [1996/05/24] misc/1247 bde Conflicting header files f [1996/05/26] i386/1251 aha0 and bt0(eisa) conflicts again. o [1996/05/26] kern/1256 ZNYX 314 mysterously looses packets o [1996/05/28] kern/1271 phk Kernel panic using PLIP in 27/05 current o [1996/05/31] kern/1284 dyson panic: vm_page_free: freeing busy page o [1996/06/02] i386/1288 bde wdgetctlr (wd.c) return incorrect number o [1996/06/07] kern/1301 davidg DEC FDDI/PCI Adapter: halt code = 6 (DMA o [1996/06/10] kern/1308 dyson vm_page_free: wire count > 1 in 960501-SN a [1996/06/12] bin/1315 ls(1) o [1996/06/16] kern/1327 joerg keyboard probe in -current fails, X reboo a [1996/06/18] kern/1333 davidg free vnode isn't: another -stable coredum f [1996/06/25] bin/1351 guido security problem with mv(1) f [1996/07/03] bin/1364 mpp ps(1) bugs o [1996/07/09] bin/1377 guido mv(1) retains the setuid bit when it is u o [1996/07/09] gnu/1379 Man command problem, when it writes into a [1996/07/18] kern/1397 bde can't send to a pipe f [1996/07/19] gnu/1407 jdp ld computes wrong size of common (global f [1996/07/24] kern/1423 wollman route causes kernel page fault. f [1996/08/01] bin/1454 steve /bin/sh bug handling <<[n] FD processing o [1996/08/03] bin/1461 Incorrect address binding of Kerberized r o [1996/08/04] kern/1467 gibbs scsi_prevent causing tape problems on clo o [1996/08/18] kern/1512 dyson Use of madvise may may cause bad memory m o [1996/08/22] kern/1533 dyson Machine can be panicked by a userland pro o [1996/08/25] misc/1541 julian fork.o in libc_r fails to compile f [1996/09/05] kern/1570 Setting SHMALL > 35000 causes panic f [1996/09/08] kern/1584 [unionfs] same file is listed twice o [1996/09/08] docs/1588 jfieber Handbook Incorrect LaTeX/PostScript outpu o [1996/09/14] kern/1610 dyson mmap() of unassociated memory + mlock() c o [1996/09/14] kern/1613 I get ls: fts_read: No such file or direc o [1996/09/16] i386/1626 MUSTEK Scanner hangs NCR SCSI controller f [1996/09/18] kern/1637 mss driver causes feedback (squeal) on so o [1996/09/19] bin/1650 telnet encryption with char-mode and asci o [1996/09/21] kern/1661 ft driver hangs uninterruptably at "bavai a [1996/09/22] bin/1664 davidn getty doesn't use init kerninfo struct o [1996/09/26] kern/1684 inconsistent permission failures on NFS r a [1996/09/28] bin/1687 watch makes kernel crash o [1996/09/29] kern/1689 wollman TCP extensions throttles distant connecti o [1996/09/29] kern/1692 Page fault while in kernel modem fatal tr o [1996/10/01] bin/1702 installing of tcl manpages fails from mak o [1996/10/01] bin/1705 COM2 not detected when booting from Hardd o [1996/10/03] kern/1715 le driver non-reentrant o [1996/10/04] kern/1723 gibbs kernel fault when doing scsi reprobe o [1996/10/04] kern/1724 gibbs HP colorado T4000S tape drive hangs syste o [1996/10/04] kern/1726 panic in kmem_malloc (dump available) o [1996/10/05] i386/1730 sos SFF8020 violation and silly bug in atapi. o [1996/10/10] ports/1753 markm SSLeay doesn't work against Microsoft sec o [1996/10/10] kern/1754 netbooted machines freeze with ifconfig a o [1996/10/11] bin/1773 ports A NULL pointer causing segmentation core o [1996/10/13] gnu/1787 markm Diffs with Index: lines are not honored f o [1996/10/15] bin/1810 fsck -p does not check pass 0 filesystems o [1996/10/15] kern/1812 dyson vnodes are left in a locked state o [1996/10/15] kern/1814 cy driver gets deadlocked sometimes o [1996/10/16] i386/1821 boot fails if bad144 selected on large pa a [1996/10/18] kern/1839 mpp Multiple mfs mounts of same mount point o [1996/10/20] kern/1848 breakpoints may be set in shared librarie o [1996/10/21] kern/1856 read-only nfs mount: panic leaf should be o [1996/10/22] ports/1866 wosch popclient flushes remote mailbox even wit o [1996/10/24] kern/1880 kernel crash during boot when using 512 M o [1996/10/25] bin/1891 mountd fails to export o [1996/10/26] bin/1892 install(1) removes target file o [1996/10/29] bin/1927 User CPU time getting accounting as syste o [1996/10/30] misc/1928 phk fdisk incorrectly detects driver geometry o [1996/11/04] bin/1952 guido Long chat script makes ppp dump core o [1996/11/07] bin/1973 pppd uses /etc/ppp/options.tty after comm o [1996/11/08] gnu/1981 ypserv handles null key incorrectly f [1996/11/08] kern/1982 fenner arpresolve: cant allocate llinfo for 207. o [1996/11/10] kern/1989 gibbs dump(8) fails to dump if tagged command q o [1996/11/13] ports/2000 asami obsolete software in distfiles directory o [1996/11/13] bin/2001 vi confused about lines to display o [1996/11/13] i386/2002 sio doesn't detect com port on Compaq Con o [1996/11/14] misc/2013 'make world' fails on read-only /usr/src o [1996/11/14] kern/2014 sos Console keyboard lockup problem o [1996/11/15] bin/2016 static libtcl references symbols that are o [1996/11/15] kern/2034 julian [devfs] wd* driver "slot name rejection e o [1996/11/15] gnu/2035 peter deque bug, local gnu changes to deque hea o [1996/11/17] kern/2048 GENERIC kernel lacks SYSV IPC features o [1996/11/18] kern/2053 de0 driver don't work at 100M for Compex o [1996/11/19] i386/2058 sos amity series machines can not show instal o [1996/11/24] kern/2094 wd1: interrupt timeout: o [1996/11/26] bin/2107 problem building a system from cdrom. o [1996/11/29] kern/2124 sos Hitachi CDR-7730 ATAPI CD-ROM recognized o [1996/12/03] kern/2142 FP mask not saved for signal handlers o [1996/12/03] kern/2144 kernel panic (page fault) running chgrp o [1996/12/04] bin/2159 bsd on a 386 - 'configure' scripts for in o [1996/12/08] kern/2181 2.2-ALPHA flickers/wavers part of the upp o [1996/12/09] bin/2187 ijppp: LQR is broken o [1996/12/10] misc/2189 mpp netdb.h works not with -traditonal cc fla o [1996/12/10] bin/2191 syslogd stops logging after several hours o [1996/12/13] bin/2206 NIS Makefile can't manage appletalk entri o [1996/12/16] kern/2230 SEGV in sysctl o [1996/12/17] kern/2232 MSDOSFS corrupts MSDOS partitions > 500Mb o [1996/12/17] ports/2235 ports tcp-wrapper port doesn't log under 2.1.6R o [1996/12/18] kern/2246 symlinks should have their own attributes o [1996/12/18] kern/2248 Mitsumi CD-ROM driver has "timeout" probl s [1996/12/19] bin/2255 Client PPP negotiates Stacker compression o [1996/12/20] bin/2256 PPP process on port will not close when a s [1996/12/22] ports/2268 ports libc from linux emulator does not use /et o [1996/12/22] kern/2270 Hayes ESP serial card locks system as of o [1996/12/25] misc/2283 setlocale() in libxpg4 always returns NUL o [1996/12/27] bin/2303 cdcontrol can read to many toc entries if o [1996/12/27] bin/2304 mkdir -p o [1996/12/29] bin/2318 /usr/libexec/rlogind doesn't work after t a [1996/12/30] kern/2325 mpp quota.user enlarged, no boot on 2.2-BETA o [1996/12/30] kern/2330 changing root device to sd0a - ncr0: abor o [1996/12/31] ports/2340 obrien gshar+gunshar needs to be updated to 4.2 o [1997/01/01] kern/2351 panic:timeout table full o [1997/01/03] bin/2365 jkh Partition undo causes kernel panic o [1997/01/06] i386/2381 gcc built with i486 default can't compile o [1997/01/06] kern/2388 joerg start unit command screws up some CDROM d o [1997/01/07] gnu/2394 tar will extract files even if -C command o [1997/01/07] ports/2400 asami TeX port problem f [1997/01/07] kern/2401 joerg 2.2 RELENG sometimes locks up early on bo o [1997/01/08] kern/2423 some cdrom drives return bcd encoded trac o [1997/01/08] kern/2425 amd driver does not reprobe devices. o [1997/01/08] conf/2426 At end of install, panic: Going nowhere w o [1997/01/09] bin/2430 mountd stops on loading if subnet mask is o [1997/01/09] i386/2431 panic: get_pv_entry: cannot get a pv_entr o [1997/01/12] docs/2460 mpp manpages sometimes appear to be 0 bytes o [1997/01/12] ports/2467 chuckr tops display is corrupt o [1997/01/12] i386/2471 Sound: Reset failed - Can't reopen device o [1997/01/13] misc/2479 sos NEC CD-ROM NOT RECOGNIZED; MATROX MISTIQU o [1997/01/13] bin/2489 mpp gnats mangles sections o [1997/01/16] kern/2507 Renaming DOS directories with "mv" causes o [1997/01/18] kern/2521 kernel from 2.1.6 install CD doesn't acce o [1997/01/18] bin/2527 fetch doesn't print enough of the error m o [1997/01/20] kern/2538 worm burning suddenly broken o [1997/01/20] bin/2541 cd (using /bin/sh) may leave you in the w o [1997/01/20] kern/2545 se < sd0(ncr0:6:0): COMMAND FAILED ==> Not o [1997/01/21] bin/2549 sos cdcontrol refuses to play audio CDs from o [1997/01/21] bin/2550 davidn login: : No such file or directory f [1997/01/21] misc/2551 davidn limit too small for user root o [1997/01/23] kern/2569 route -iface breaks inet behaivour f [1997/01/24] kern/2570 fenner arpresolve: cant allocate llinfo o [1997/01/24] kern/2573 mmap on nfs mounted file hangs system o [1997/01/25] bin/2584 wollman eliminate possible passive attack against o [1997/01/25] bin/2591 sh coredumps when passing an argv of a ce o [1997/01/26] bin/2593 imp [small] security hole and nfs compatibili o [1997/01/26] bin/2597 everything stops when the new ld.so is in o [1997/01/28] misc/2606 FPE error on certain ports o [1997/01/29] kern/2613 ache syscons mistakes MONO for MONO VGA o [1997/01/29] misc/2614 make reinstall does not work o [1997/01/29] bin/2616 Installs very irratically from the same c o [1997/01/30] bin/2622 syslogd '-s' behavior either broken or po o [1997/01/31] misc/2625 fixed broken src/includes o [1997/01/31] kern/2626 Can't NFS export ext2fs due to lack of co o [1997/01/31] kern/2628 code clean up of sys/sys o [1997/01/31] kern/2632 enabling psm mouse causes keyboard to not o [1997/01/31] bin/2633 fsck -p in /etc/rc fails with cannot allo o [1997/02/02] kern/2640 2.2-RELENG leaks memory (router/pppd serv s [1997/02/03] kern/2647 changing existing route to -static crashe o [1997/02/04] ports/2664 elm methodically writes garbage into fold o [1997/02/05] kern/2667 wollman bpfattach can hang the system o [1997/02/05] ports/2669 obrien Fix for W3c-httpd 3.0relevant patch must f [1997/02/05] bin/2670 fetch fails with HTTP_PROXY o [1997/02/05] bin/2671 Run-away processes using all CPU time a [1997/02/06] kern/2675 lkmcioctl() is not consistent and careful o [1997/02/06] misc/2683 jkh Broken label-editor on the boot disk of 2 o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/08] kern/2695 sio1 (16540 serial port) is not recognize o [1997/02/09] kern/2698 After rewind I cannot read a tape; blocks o [1997/02/11] bin/2711 brian iij-ppp 'background' mode fails in LCP se o [1997/02/12] kern/2719 added support for magneto-optical SCSI di o [1997/02/13] misc/2728 /usr/include/machine/endian.h:60: opt_cpu o [1997/02/13] ports/2731 ports new port: Tcl 8.0A2 o [1997/02/14] kern/2732 mcopy 3.0 causes kernel hang o [1997/02/14] bin/2736 No boot block if no FreeBSD partitions on o [1997/02/14] kern/2738 julian [DEVFS problem] Kernel crashes when you m o [1997/02/15] kern/2742 panic: leaf should be empty o [1997/02/15] ports/2746 ports Updated port o [1997/02/15] bin/2747 davidn cannot submit at jobs from within an at j o [1997/02/17] kern/2751 asami 2GB limitation on CCD device partitions s o [1997/02/17] ports/2756 ports top causes segmentation fault o [1997/02/18] bin/2762 Precedence mistake in libncurses o [1997/02/18] ports/2766 ports sudo doesn't let you enter password somet o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/19] bin/2769 fsck needs several runs to clean up bad/d o [1997/02/19] kern/2770 panic: vm_fault: fault on nofault entry o [1997/02/19] kern/2771 panic: bad dir o [1997/02/19] kern/2772 gibbs panic: %s:%c:%d: Target did not send an I o [1997/02/19] kern/2773 bad dir panic o [1997/02/19] kern/2774 NFS client on 2.2-BETA blows holes in fil o [1997/02/20] ports/2777 ports sudo does not wait for password entry o [1997/02/20] misc/2781 Installation crashes if timeout in ftp tr o [1997/02/20] misc/2784 userland PPP rises load to 1.00 o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable o [1997/02/20] gnu/2786 gcc version 2.7.2.1 C compiler slows down o [1997/02/21] misc/2793 libc_r make fscanf failure o [1997/02/22] kern/2800 DDS large data writing probrem o [1997/02/24] ports/2809 ports Fetching x11/xfed is broken. o [1997/02/25] bin/2812 sysinstall wont resolve addresses over PP o [1997/02/25] kern/2815 Custom Kernel crashes 230 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1994/12/01] kern/35 mount -t union -o -b : lower layer not se o [1995/01/14] bin/115 systat iostat display doesn't scale high o [1995/01/22] kern/176 peter EIDRM not defined in errno.h o [1995/04/20] misc/355 policy on /usr/local permission in base r o [1995/05/13] bin/401 wollman Add REMOTE_* variables a [1995/05/23] i386/440 sos want vidcontrol option to apply settings a [1995/05/27] gnu/450 scrappy tar --exclude -c doesn't work o [1995/06/15] bin/517 wpaul Bad group change with 'install' o [1995/07/05] bin/591 phk SPAP request REJexted in stead of NAKed s [1995/08/05] gnu/655 jdp ld -r of shared objects worked in 1.1.5, o [1995/08/07] bin/658 ifconfig alias has to be separately given f [1995/08/12] kern/677 dyson X gets a bus error when calling mmap() o [1995/08/13] bin/680 joerg 2.0.5's tip using termios doesn't act the o [1995/08/29] bin/715 ache ls gives weird tabular form o [1995/09/26] kern/742 dyson syslog errors accessing Mac hard disks [p o [1995/10/03] kern/765 phk umount -f can`t umount a NFS filesystem i o [1995/10/25] kern/792 dyson cd9660 very slow. o [1995/10/31] bin/803 bsd m4 chokes and dies while FSF m4 works o [1995/11/11] bin/815 mountd reports unknown hosts with non-inf o [1995/11/20] kern/831 one minor complaint about the kernel visu o [1995/11/22] kern/835 davidg ed panics with SMC ultra with iomem, if n o [1995/11/27] bin/841 stale nfs mounts cannot be umounted o [1995/11/30] bin/854 dyson swapinfo shows incorrect information for f [1995/12/03] kern/861 sb16 support in 2.1 is erratic and has co o [1995/12/17] kern/900 dyson ext2fs triggers divide by zero trap in vn a [1995/12/29] misc/922 From line handling incorrect in mail.loca a [1995/12/31] kern/924 EISA devices have disappeared from vmstat o [1996/01/06] misc/934 amurai ppp dies with Bus Error when processing l f [1996/01/15] kern/946 divide-by-zero in kernel on bad disk info o [1996/01/21] bin/961 'more $file', incorrect CRLF compacting. o [1996/01/28] kern/975 bde getrusage returns negative deltas a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases s [1996/02/03] bin/993 peter g++ complains about /usr/include/machine/ o [1996/02/07] bin/999 peter /usr/share/mk/sys.mk missing common $(RM) o [1996/02/07] kern/1001 M_NAMEI malloc leak in the kernel o [1996/02/12] bin/1021 phk pppd doesn't handle PAP-only authenticati f [1996/02/14] kern/1026 deadlocks if parent vfork and child has c f [1996/02/15] bin/1029 cd behaves erraticly if cwd is a mount-po f [1996/02/19] bin/1037 2.x telnetd handles CTRL-M differently th o [1996/02/25] i386/1042 bde Warning from sio driver reports wrong dev o [1996/02/26] misc/1043 dyson vm_bounce_alloc error on 2.1 install with f [1996/02/29] kern/1051 zip fails on dos partition o [1996/03/20] kern/1090 iostat displays incorrect sps count o [1996/03/20] bin/1093 wollman route's diagnostic is weird o [1996/04/06] kern/1119 dyson Mounted EXT2FS partition is not cleanly u a [1996/04/15] kern/1144 sig{add, del}set and sigismember fns don' a [1996/04/22] bin/1154 Configure tunN device for ip-over-ip tunn o [1996/04/23] ports/1155 ports systat or top display disagreeing informa o [1996/05/09] bin/1184 scrappy ls + xterm + nvi + columns != 80 + ^Z = m f [1996/05/13] kern/1201 gibbs FreeBSD SCSI changer driver leaves a bit o [1996/05/15] bin/1206 steve /bin/sh + emacs + ^G = ruined terminal a [1996/05/20] ports/1222 andreas Header files conflict a [1996/05/21] bin/1229 bde redundant redeclaration of `lseek' o [1996/06/11] bin/1312 automounter hangs on boot o [1996/06/12] conf/1319 muldi3 is not included into kernel's Make a [1996/06/13] bin/1320 gpalmer dump limits blocksize to 32K o [1996/06/18] i386/1331 phk changes and bug in ft driver f [1996/06/18] bin/1332 changes to amd and possible nfs lkm bug? f [1996/07/04] i386/1367 reprobe a device that does not exist = pa f [1996/07/04] misc/1369 Need SC_MORE_LUS for Emulex MD23 also a [1996/07/07] bin/1375 Extraneous warning from mv(1) f [1996/07/07] misc/1376 if_tun.c does not set if_ibytes and if_ob o [1996/07/18] kern/1399 dyson invoking setuid programs over NFS case vn o [1996/07/21] ports/1416 cflow(1) doesn't parse GNU C __attribute_ s [1996/07/23] kern/1421 Non-bug in sosend() o [1996/07/24] misc/1428 ncurses doesn't always display ALTCHARSET o [1996/08/03] kern/1462 nfsstat doesn't work if using LKM'ed vers a [1996/08/07] ports/1470 asami need more info in the ports structure o [1996/08/17] kern/1501 vmstat reports impossible avm after start o [1996/08/17] bin/1502 vmstat 'avm' field merges with procs 'w' o [1996/08/17] ports/1504 jmz latex port completely failes o [1996/08/17] kern/1508 sos syscons should protect against useless DD o [1996/08/19] kern/1514 dyson mlock fails on readonly regions o [1996/08/20] kern/1516 dyson vm_fault.c contains dead code or too many o [1996/08/20] ports/1517 adam What is InterViews ??!?! o [1996/08/20] ports/1518 torstenb No man pages in audio/mpegaudio port o [1996/08/21] ports/1520 ports sudo dosn't recognise certain passwords a o [1996/08/21] bin/1523 "cvs update -d -P" prunes unchecked-in di o [1996/08/21] ports/1524 tg New port -- xtem-5.18beta o [1996/08/24] misc/1538 enhanced /etc/security script a [1996/08/28] ports/1550 ports "make install" needs to know how to updat o [1996/08/30] i386/1556 sos ATAPI CDROM probes ok, but will not 'moun o [1996/09/02] misc/1561 sos Wrong key mapping of five keys in german. a [1996/09/04] bin/1565 Moving a file to it's link completely rem o [1996/09/06] bin/1577 mail -f foo does not look in current dire o [1996/09/08] bin/1589 ftp fails to flush output o [1996/09/11] bin/1598 tip leaves OPOST set on controlling termi o [1996/09/12] docs/1602 ache /usr/lib/terminfo refered to in man termi o [1996/09/12] bin/1607 unmount fails for a NFS fs mounted withou o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize o [1996/09/14] kern/1614 Attempt to mount an NTFS partition causes o [1996/09/17] docs/1630 Addition to handbook concerning MFS kerne f [1996/09/18] kern/1636 mss driver extension to broaden support a [1996/09/18] bin/1642 pkg_install Makefiles could be simplified o [1996/09/19] bin/1649 md5(1) header file makes bad assumption o [1996/09/19] kern/1654 In procfs, vattr doesn't contain correct o [1996/09/20] kern/1658 ktrace/kdump flaky - corrupted ktrace.out o [1996/09/21] ports/1660 ports Updating of jp-fvwm2-port(-> jp-fvwm2-por a [1996/09/22] bin/1665 davidn telnetd doesn't use gettytab %m %r %v %s o [1996/09/23] i386/1671 s2 map in pcvt isn't ISO 8859-1 and claim o [1996/09/24] bin/1674 strange behaviour of pppd (daemonize, def o [1996/09/29] kern/1690 apm and sbxvi inappropriately probe as co o [1996/09/29] docs/1691 ppp server doc submission o [1996/10/02] misc/1708 monthly login accounting o [1996/10/02] kern/1711 kernel logging of signaled processes shou o [1996/10/02] gnu/1713 mkisofs doesn't match man page in behavio o [1996/10/03] misc/1717 Use of ntohl causes lint to complain o [1996/10/04] bin/1721 /sbin/route incorrectly installs routes w o [1996/10/04] kern/1725 visual config redraws bits of the screen f [1996/10/08] misc/1738 Install floppy returns random geometry wi o [1996/10/11] conf/1777 sysctl called in /etc/netstart before /us s [1996/10/13] kern/1788 pst netstat gives negative numbers for tcp by o [1996/10/13] misc/1791 syslimits.h does not allow overriding def o [1996/10/13] bin/1793 steve /bin/sh return w/o exitstatus in a functi o [1996/10/14] bin/1804 pkg_create hangs if the packing list has o [1996/10/16] bin/1827 add support of Glidepoint trackpad "tap/d f [1996/10/17] bin/1831 routed's rdisc mode is installing incorre o [1996/10/18] ports/1834 gpalmer COMMENT may be amusing but is not informa o [1996/10/19] docs/1841 pds NT boot mgr too Linux centric in FAQ o [1996/10/20] docs/1847 new handbook iijppp server section o [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong o [1996/10/20] misc/1853 Syscons font mapping semms not to work pr o [1996/10/20] docs/1855 joerg Addition to LINT o [1996/10/22] kern/1868 system knows it has no keyboard but compl o [1996/10/23] misc/1871 incorrect '===> item' when making world o [1996/10/23] bin/1872 automounter (amd) cannot ls directories w o [1996/10/24] kern/1878 SONY CDU76E IDE/ATAPI CDROM support. o [1996/10/24] bin/1881 file(1) misidentifies Sun3/m68k executabl o [1996/10/26] docs/1896 compilation errors in share/doc/psd/19.cu o [1996/10/26] bin/1897 Sendmail 8.8.2 requires /etc/sendmail.cw o [1996/10/27] bin/1904 /usr/bin/su is not careful enough in veri o [1996/10/27] conf/1906 sysinstall did not install bison.simple o o [1996/10/27] misc/1908 FTP install failed DNS lookup o [1996/10/29] bin/1924 if lpd is not running, lpc will say ``no o [1996/10/30] i386/1931 Mitsumi CDrom works well under 2.1.x, fai o [1996/10/31] ports/1939 ports exodus port doesn't build with new g++-2. o [1996/11/01] bin/1941 wtmp and monthly rotation o [1996/11/01] bin/1943 route(8) args o [1996/11/02] bin/1945 Out of date code/comments in dd o [1996/11/03] i386/1950 Sound driver doesn't encode/decode mu-law o [1996/11/04] i386/1953 syscons savers have no default timeout o [1996/11/04] gnu/1961 uucp logging files are in /var/spool/uucp o [1996/11/06] bin/1968 FreeBSD has no rdate(8), here's one o [1996/11/06] bin/1970 csh limtail() bug o [1996/11/09] bin/1985 pkg_delete outputs confusing message when o [1996/11/13] kern/2004 route add -link panic o [1996/11/13] bin/2005 Poor command line argument checking and b o [1996/11/14] bin/2008 kerberos tickets from login all have the o [1996/11/14] kern/2015 2.2-960801-SNAP kernel dosn't recognise m o [1996/11/15] kern/2022 Switching from X display to virtual conso o [1996/11/16] bin/2036 cpio size wraparound o [1996/11/16] ports/2038 torstenb sshd dies on FreeBSD machines if run as a o [1996/11/17] bin/2046 vjcomp problem in iij-ppp o [1996/11/18] ports/2051 obrien HDF library port o [1996/11/19] bin/2061 DEBUG_FLAGS in bsd.lib.mk is broken o [1996/11/19] conf/2063 jkh No file not found message in sysinstall o [1996/11/19] bin/2065 wollman in tzsetup/sysinstall, allow user to type o [1996/11/19] misc/2068 Unstable keyboard mappings on the main tt o [1996/11/20] kern/2072 ZIP drive support is available for FreeBS o [1996/11/21] ports/2079 obrien New ports supporting AWE sound driver (fo o [1996/11/21] bin/2080 The scanf family doesn't support 'q' modi o [1996/11/22] docs/2087 ifconfig.8 does not document how to remov o [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi o [1996/11/23] bin/2093 AMD gets sig 11 when /etc/malloc.conf is o [1996/11/24] ports/2096 ports ImageMagick outdated, lzw not supported o [1996/11/24] ports/2097 asami new port of des lib o [1996/11/25] ports/2100 andreas New port: VGBZoom o [1996/11/25] misc/2105 bsd.lib.mk has problems with STRIP and IN o [1996/11/26] bin/2106 Byte order problem in -current routed o [1996/11/26] i386/2108 sos [ATAPI] wcd driver may hang under certain o [1996/11/28] i386/2117 nb8390.com hangs with some BIOS combinati o [1996/11/28] kern/2118 writing to virtual consoles fails to disp o [1996/11/28] bin/2119 mount lies to child about argv0, which ca o [1996/12/01] bin/2133 netstat -s overflows to negative o [1996/12/02] bin/2137 vm statistics are bad o [1996/12/02] kern/2140 FreeBSD leaves EtherExpress 16 net card i o [1996/12/03] ports/2145 ports qpopper bulletin support broken o [1996/12/03] conf/2146 wrong /dev for COM2 during installation v a [1996/12/04] docs/2153 mpp Manual page of bootparams(8) refers to a o [1996/12/06] i386/2166 psm driver locks the console o [1996/12/07] ports/2169 pst zephyr port does not completely compile o [1996/12/08] ports/2173 peter top does not compile under FBSD 2.1.6 o [1996/12/08] ports/2182 ports FreeBSD's and X-32's list of locales do n o [1996/12/08] bin/2184 sendmail has lots of trouble with local d o [1996/12/08] misc/2185 phk add ability to change partition type in l a [1996/12/10] ports/2190 asami need cross-reference to xpdf from X11 por o [1996/12/12] kern/2199 joerg Got a lots of "Target Busy" messages with o [1996/12/14] kern/2214 File System gets corrupted when mounting o [1996/12/14] bin/2216 Ada specs not being compiled into cc/gcc o [1996/12/16] bin/2227 FreeBSD does not recognize WD7000-ASC dri f [1996/12/16] ports/2231 markm GNU Chess printing "gets() is unsafe" is o [1996/12/17] i386/2233 emulation o [1996/12/17] i386/2234 fbsdboot.exe does not turn off floppy dri o [1996/12/17] i386/2239 some interrupts take too long (i.e. BT946 o [1996/12/18] misc/2242 Suggest add optional mt blocksize 512 o [1996/12/18] bin/2247 imp getopt should return -1 rather than EOF o [1996/12/19] ports/2251 ports New *almost* port: Scilab o [1996/12/20] bin/2260 PPP logins using PAP to Nortel/Shiva syst o [1996/12/21] gnu/2263 info files ending in -1, -2, etc are not o [1996/12/21] ports/2264 ports latex* ports need updating a [1996/12/21] bin/2265 guido su(1) does not call skeyaccess() o [1996/12/22] docs/2266 Bad HTML format in online documentation o [1996/12/22] i386/2267 mouse motions do not exit from screen sav o [1996/12/23] kern/2271 FIONREAD on tunnel device returns incorre o [1996/12/24] kern/2273 support for POSIX.4 / POSIX.1a RT-schedul o [1996/12/24] docs/2275 no support for isdn-cards o [1996/12/25] conf/2284 Termcap ibm3163 entry has arrow keys wron o [1996/12/26] kern/2286 rpm (and possibly others) from RedHat 4.0 o [1996/12/26] bin/2291 race condition in /etc/master.passwd lock o [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 markm new crypt() including SHS and an extendab o [1996/12/28] misc/2309 Thread safe fixes to malloc, localtime, l o [1996/12/28] ports/2313 torstenb pidentd fails in 2.2-BETA o [1996/12/29] bin/2315 tail segfaults on NFS permission denied o [1996/12/29] misc/2323 FreeBSD.FAQ file in ftp.freebsd.org is lo o [1996/12/30] kern/2327 `Green' saver for pcvt o [1996/12/31] bin/2336 jkh Sysinstall won't install dists on 2nd pas o [1997/01/01] docs/2353 Changes to FAQ o [1997/01/03] bin/2366 libc does not consult /etc/services to fi o [1997/01/03] bin/2368 serial line logins "freeze" during login o [1997/01/05] ports/2379 ports New URT port o [1997/01/06] bin/2382 curses.h / -lcurses incompatible with C++ o [1997/01/06] bin/2383 Inconsistent tputs(3) prototypes in curse o [1997/01/06] misc/2386 patches for new socket credential firewal o [1997/01/06] bin/2387 virtual hosting patches for inetd o [1997/01/06] kern/2390 Some CDROM drives stop audio on cdcontrol o [1997/01/07] kern/2393 filesystems not unmounted following shutd o [1997/01/07] misc/2407 dirent.h does not include sys/types.h o [1997/01/07] bin/2410 pppd(8): failing PAP doesn't force line d o [1997/01/07] kern/2412 Wine does not work o [1997/01/07] ports/2413 peter Cannot redirect "top" output o [1997/01/08] kern/2424 Pressing ALT-Fn during boot -c leave bell o [1997/01/09] kern/2429 Driver for AIMS Lab RadioTrack radio card o [1997/01/09] ports/2434 tg new port: fmsx o [1997/01/10] bin/2437 minor nits on text in 2.2-BETA install o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/10] bin/2443 Fetch cannot find the correct boundary be o [1997/01/10] ports/2445 ports New port : Cosmo Gang the Puzzle (games/c o [1997/01/11] bin/2448 semctl() not portable -- freebsd requires o [1997/01/11] bin/2449 ij-ppp in auto mode goes into failure loo o [1997/01/11] docs/2455 no description "option COMCONSOLE" MLEN o [1997/01/25] bin/2589 uucpd, [almost certainly] non-exploitable o [1997/01/25] ports/2590 ports new ports sollection -- jp-a2ps-1.39 o [1997/01/26] misc/2596 dd refuses to respond to SIGkill o [1997/01/26] i386/2598 ep0 in EISA mode hangs if ep0-device (ISA o [1997/01/28] bin/2603 Added POSIX.4/POSIX.1b constants in unist o [1997/01/28] bin/2604 Added POSIX.4/POSIX.1b shm_open()/shm_unl o [1997/01/28] ports/2607 max New port: Gopher-2.3 o [1997/01/28] bin/2609 Problem receiving more than 1688835 bytes o [1997/01/29] misc/2617 Utility submission - upsmon - UPS monitor o [1997/01/30] ports/2620 ports classes.zip are looked for in the wrong d o [1997/01/30] kern/2621 Patch to support Cogent EM110 fast-ethern o [1997/01/30] docs/2623 ipfirewall(4) man page is way out of date o [1997/01/30] bin/2624 kdump unaware of semsys and several other o [1997/01/31] bin/2630 xargs does excessive and inconsistent arg o [1997/01/31] bin/2631 kill interprets empty arg as PID 0 o [1997/02/02] gnu/2637 tar dumped core with -g option. o [1997/02/02] ports/2639 ports FreeBSD 2.2 teTeX-0.4 package does not in a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/03] ports/2653 pst mh-6.8.4 manpage error for slocal o [1997/02/04] bin/2657 ypserv thinks there is no computers in ne o [1997/02/04] bin/2660 When selecting BSD to boot from system ha o [1997/02/04] bin/2665 port 22 isn't being converted to ".ssh" i o [1997/02/05] bin/2668 modification suggested for rarpd o [1997/02/05] bin/2672 Problem with telnetd o [1997/02/06] ports/2677 ports Various ports have checksum problems o [1997/02/06] kern/2681 missing prototype in o [1997/02/06] i386/2682 sigreturn() error code disagrees with man o [1997/02/07] ports/2684 torstenb ircII port upgrade; 2.9_roof -> 2.9alpha1 o [1997/02/07] kern/2686 struct igmpmsg in s o [1997/02/07] misc/2687 sysinstall umounts floppy after prompting o [1997/02/08] ports/2694 ports VFlib ports is updated. o [1997/02/09] ports/2701 obrien uu-deview/lib & xdeview ports old o [1997/02/10] bin/2703 vipw doesn't allow you to edit master.pas o [1997/02/10] kern/2704 Occasional failure to detect wdc1 on boot o [1997/02/10] kern/2705 `(c) 1992-1996 FreeBSD Inc.'; year is now o [1997/02/11] conf/2709 FBSD 2.1.6 X-Server installation setup ut o [1997/02/11] i386/2710 pst if_ppp LKM does not allow ppp line discip o [1997/02/11] bin/2713 ftp daemon processes don't terminate, eve o [1997/02/11] bin/2714 WEB pages served by apache seems to get s o [1997/02/11] kern/2715 MSDOS-FS 1024/2048 byte/sector media supp o [1997/02/11] kern/2716 od.c/sd.c non 512 byte/sector support imp o [1997/02/13] ports/2722 ports New port: newosaka o [1997/02/13] ports/2723 ports New port: recjis o [1997/02/13] i386/2729 "make tags" in sys/kern produces barely u o [1997/02/14] bin/2734 jkh pkg_* uses relative paths to executables o [1997/02/14] bin/2735 jkh Add signature support (both MD5 and PGP) o [1997/02/14] bin/2737 yppasswd fails to change password on a su o [1997/02/14] ports/2741 ports jp-vfghostscript-4.03 is updated. o [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/02/16] ports/2750 ports New port - jp-iv o [1997/02/17] bin/2752 NULL is used instead of 0 many places o [1997/02/18] ports/2758 ports multilingual nvi ports put in incoming di o [1997/02/18] ports/2760 ports New ports, jp-fvwm-2.0.45 o [1997/02/18] ports/2761 ports Update ports, jp-skk-9.6 o [1997/02/18] ports/2764 ports new ports of Japanized Tcl/Tk o [1997/02/18] ports/2765 ports gopher port uses gets() o [1997/02/20] ports/2778 ports New Port: Version of traceroute which pri o [1997/02/20] docs/2780 2.2 Handbook still says 2.1.6 o [1997/02/20] bin/2782 err man page is slightly wrong o [1997/02/20] misc/2788 Submitting LC_CTYPE definition of Korean( o [1997/02/21] misc/2789 na.phone update o [1997/02/21] docs/2791 Errors in relnotes.hlp (and relnotes.sgml o [1997/02/21] bin/2792 steve yacc-generated parser and (const)'s and c o [1997/02/21] ports/2794 ports ssh fails to exec ssh-askpass o [1997/02/21] ports/2796 ports olvwm thinks TrueColor is mono o [1997/02/22] ports/2797 ports New Port. o [1997/02/22] ports/2799 ports Submission of Angband 2.8.0 port. o [1997/02/23] bin/2804 davidn /usr/sbin/login reports: "root login refu o [1997/02/23] bin/2805 davidn remove hard coded slowdown count and fail o [1997/02/23] kern/2806 new kernel tags script o [1997/02/23] kern/2807 pcisupport.c uses sprintf field widths, n o [1997/02/24] ports/2808 ports New port for XaoS-2.2 uploaded o [1997/02/24] docs/2810 Tutorial submission detailing how to upgr o [1997/02/25] i386/2813 hard reference to /usr/src breaks make wo o [1997/02/25] ports/2816 ports New port - aftp ftp-like shell for apple2 o [1997/02/25] ports/2817 ports New port - prodosemu is an Apple2e prodos o [1997/02/25] ports/2818 ports New port - dvi2tty displays dvi files on o [1997/02/26] conf/2819 /etc/rc does not execute 'uname' when con o [1997/02/26] conf/2822 ftp install specifying URL confusing o [1997/02/26] ports/2823 ports su2 uses /etc/super-users rather than $PR 353 problems total. From owner-freebsd-bugs Thu Feb 27 02:35:58 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA17619 for bugs-outgoing; Thu, 27 Feb 1997 02:35:58 -0800 (PST) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA17612; Thu, 27 Feb 1997 02:35:52 -0800 (PST) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id CAA11030; Thu, 27 Feb 1997 02:35:36 -0800 (PST) To: asami@vader.cs.berkeley.edu (Satoshi Asami) cc: smedrick@csc.com, jkh@freebsd.org, bugs@freebsd.org Subject: Re: missing utils in 2.2-gamma In-reply-to: Your message of "Wed, 26 Feb 1997 15:44:03 PST." <199702262344.PAA03979@vader.cs.berkeley.edu> Date: Thu, 27 Feb 1997 02:35:36 -0800 Message-ID: <11027.857039736@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > Jordan, this is because it's missing from packages-2.2/INDEX. It's in > ports-current/INDEX and the package is there, so I don't know why it > was deleted. Something wrong with your ports munging script? :-) Can you copy the INDEX file back over from ports and see if it gets hatefully munged again in the next 24 hours? Thanks! Jordan From owner-freebsd-bugs Thu Feb 27 02:41:29 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA17865 for bugs-outgoing; Thu, 27 Feb 1997 02:41:29 -0800 (PST) Received: from dfw-ix8.ix.netcom.com (dfw-ix8.ix.netcom.com [206.214.98.8]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA17860; Thu, 27 Feb 1997 02:41:23 -0800 (PST) Received: (from smap@localhost) by dfw-ix8.ix.netcom.com (8.8.4/8.8.4) id EAA29821; Thu, 27 Feb 1997 04:40:45 -0600 (CST) Received: from wck-ca6-21.ix.netcom.com(199.35.213.213) by dfw-ix8.ix.netcom.com via smap (V1.3) id sma029808; Thu Feb 27 04:40:36 1997 Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.5/8.6.9) id CAA10164; Thu, 27 Feb 1997 02:40:32 -0800 (PST) Date: Thu, 27 Feb 1997 02:40:32 -0800 (PST) Message-Id: <199702271040.CAA10164@silvia.HIP.Berkeley.EDU> To: jkh@time.cdrom.com CC: smedrick@csc.com, jkh@freebsd.org, bugs@freebsd.org In-reply-to: <11027.857039736@time.cdrom.com> (jkh@time.cdrom.com) Subject: Re: missing utils in 2.2-gamma From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * Can you copy the INDEX file back over from ports and see if it * gets hatefully munged again in the next 24 hours? Why do I need to do that? I thought you were regenerating it every night from ports-current/INDEX (didn't I say so?).... Satoshi From owner-freebsd-bugs Thu Feb 27 03:22:57 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id DAA19779 for bugs-outgoing; Thu, 27 Feb 1997 03:22:57 -0800 (PST) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA19771; Thu, 27 Feb 1997 03:22:53 -0800 (PST) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id DAA11419; Thu, 27 Feb 1997 03:22:39 -0800 (PST) To: asami@vader.cs.berkeley.edu (Satoshi Asami) cc: smedrick@csc.com, jkh@freebsd.org, bugs@freebsd.org Subject: Re: missing utils in 2.2-gamma In-reply-to: Your message of "Thu, 27 Feb 1997 02:40:32 PST." <199702271040.CAA10164@silvia.HIP.Berkeley.EDU> Date: Thu, 27 Feb 1997 03:22:38 -0800 Message-ID: <11415.857042558@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > * Can you copy the INDEX file back over from ports and see if it > * gets hatefully munged again in the next 24 hours? > > Why do I need to do that? I thought you were regenerating it every > night from ports-current/INDEX (didn't I say so?).... No, it's actually been done from the fixed copy in packages-current all this time. In retrospect, that was a mistake. Fixed. Jordan From owner-freebsd-bugs Thu Feb 27 03:40:05 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id DAA20320 for bugs-outgoing; Thu, 27 Feb 1997 03:40:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id DAA20314; Thu, 27 Feb 1997 03:40:03 -0800 (PST) Resent-Date: Thu, 27 Feb 1997 03:40:03 -0800 (PST) Resent-Message-Id: <199702271140.DAA20314@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, neil.long@materials.oxford.ac.uk Received: from njl.materials.ox.ac.uk (njl.materials.ox.ac.uk [163.1.65.100]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA20240 for ; Thu, 27 Feb 1997 03:38:39 -0800 (PST) Received: (from long@localhost) by njl.materials.ox.ac.uk (8.8.5/8.8.5) id LAA00461; Thu, 27 Feb 1997 11:38:42 GMT Message-Id: <199702271138.LAA00461@njl.materials.ox.ac.uk> Date: Thu, 27 Feb 1997 11:38:42 GMT From: Neil Reply-To: neil.long@materials.oxford.ac.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: gnu/2827: RELENG_2.2 and gnu/usr/bin/genclass Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2827 >Category: gnu >Synopsis: after make world genclass is not installed/updated >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 03:40:01 PST 1997 >Last-Modified: >Originator: Neil Long >Organization: University of Oxford >Release: FreeBSD 2.2-GAMMA i386 >Environment: PC 486/33 make world started after cvsup on Tuesday 12:08 GMT >Description: Make world completed but on checking date/times of installed binaries I noticed that /usr/bin/genclass was the original 2.2-GAMMA versions -r-xr-xr-x 1 bin bin 10238 Feb 15 19:13 /usr/bin/genclass I logged the entire make and in the install phase it would appear that the install did not work even though there are no errors. >How-To-Repeat: Sorry, make world took 42 hours (old PC). >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Thu Feb 27 08:00:05 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA03638 for bugs-outgoing; Thu, 27 Feb 1997 08:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA03629; Thu, 27 Feb 1997 08:00:03 -0800 (PST) Resent-Date: Thu, 27 Feb 1997 08:00:03 -0800 (PST) Resent-Message-Id: <199702271600.IAA03629@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, grandi@noao.edu Received: from new-www.tuc.noao.edu (new-www.tuc.noao.edu [140.252.1.28]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA03455 for ; Thu, 27 Feb 1997 07:55:24 -0800 (PST) Received: (from grandi@localhost) by new-www.tuc.noao.edu (8.8.5/8.8.5) id IAA01289; Thu, 27 Feb 1997 08:55:18 -0700 (MST) Message-Id: <199702271555.IAA01289@new-www.tuc.noao.edu> Date: Thu, 27 Feb 1997 08:55:18 -0700 (MST) From: grandi@noao.edu Reply-To: grandi@noao.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/2828: Adaptec 2940 Ultra cannot see Exabyte 8505 and loops during boot Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2828 >Category: kern >Synopsis: Adaptec 2940 Ultra cannot see Exabyte 8505 and loops during boot >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 08:00:01 PST 1997 >Last-Modified: >Originator: Steve Grandi >Organization: National Optical Astronomy Observatories, Tucson, AZ USA >Release: FreeBSD 2.2-970225-GAMMA i386 >Environment: Gateway P6-200, 96MB RAM, Adaptec 2940 Ultra/Wide SCSI card, 3 Micropolis 3391 9GB SCSI disks, Matshita SCSI CD-ROM, Exabyte 8505XL SCSI Tape Boot messages (when the Exabyte is disconnected from the bus!): FreeBSD 2.2-970225-GAMMA #0: Wed Feb 26 11:56:29 MST 1997 grandi@new-www.tuc.noao.edu:/usr/src/sys/compile/WWW Calibrating clock(s) relative to mc146818A clock ... i586 clock: 199435372 Hz, i8254 clock: 1193203 Hz CPU: Pentium Pro (199.43-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x617 Stepping=7 Features=0xf9ff,MTRR,PGE,MCA,CMOV> real memory = 100663296 (98304K bytes) avail memory = 94969856 (92744K bytes) Probing for devices on PCI bus 0: chip0 rev 2 on pci0:0 chip1 rev 1 on pci0:7:0 chip2 rev 0 on pci0:7:1 ahc0 rev 0 int a irq 11 on pci0:11 ahc0: aic7880 Wide Channel, SCSI Id=7, 16 SCBs ahc0 waiting for scsi devices to settle (ahc0:1:0): "MICROP 3391SS P419" type 0 fixed SCSI 2 sd0(ahc0:1:0): Direct-Access 8681MB (17780058 512 byte sectors) (ahc0:2:0): "MICROP 3391SS P419" type 0 fixed SCSI 2 sd1(ahc0:2:0): Direct-Access 8681MB (17780058 512 byte sectors) (ahc0:3:0): "MICROP 3391SS P419" type 0 fixed SCSI 2 sd2(ahc0:3:0): Direct-Access 8681MB (17780058 512 byte sectors) ahc0:A:5: refuses WIDE negotiation. Using 8bit transfers (ahc0:5:0): "MATSHITA CD-ROM CR-506 8S04" type 5 removable SCSI 2 cd0(ahc0:5:0): CD-ROM cd present [253530 x 2048 byte records] vx0 <3COM 3C905 Fast Etherlink XL PCI> rev 0 int a irq 10 on pci0:15 mii[*mii*] address 00:60:97:6e:a4:d6 vga0 rev 65 on pci0:17 Probing for devices on the ISA bus: sc0 at 0x60-0x6f irq 1 on motherboard sc0: VGA color <16 virtual consoles, flags=0x0> sio0 at 0x3f8-0x3ff irq 4 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A sio2: disabled, not probed. sio3: disabled, not probed. lpt0 at 0x378-0x37f irq 7 on isa lpt0: Interrupt-driven port lp0: TCP/IP capable interface psm0 at 0x60-0x64 irq 12 on motherboard psm0: device ID 0 fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: NEC 72065B fd0: 1.44MB 3.5in npx0 on motherboard npx0: INT 16 interface apm0: disabled, not probed. changing root device to sd0a >Description: When I connect the Exabyte 8505XL to the SCSI bus (as target 6) and try to boot, the following happens...(The Exabyte is detected happily by the Adaptec's preboot probing and the ID string is displayed). ahc0:A:6: refuses WIDE negotiation. Using 8bit transfers ahc0: board is not responding (ahc0:6:0): time out in datain phase, SCSISIGI==0x44 SEQADDR==0x13b (ahc0:6:0): abort message in message buffer ahc0: board is not responding cmd fail (ahc0:6:0): "unknown unknown ?????" type 13 fixed SCSI 0 uk0(ahc0:6:0): Unknown ahc0: board is not responding (ahc0:6:1): time out...... repeat for all the LUNs followed by a reboot >How-To-Repeat: add the Exabyte to the bus. >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Thu Feb 27 10:15:56 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA11070 for bugs-outgoing; Thu, 27 Feb 1997 10:15:56 -0800 (PST) Received: from noao.edu (noao.edu [140.252.1.54]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id KAA10905; Thu, 27 Feb 1997 10:11:30 -0800 (PST) Received: from apus.tuc.noao.edu (apus.tuc.noao.edu [140.252.1.32]) by noao.edu (8.7.5/8.7.3/SAG-16Aug96) with ESMTP id LAA19651; Thu, 27 Feb 1997 11:11:29 -0700 (MST) Received: (from grandi@localhost) by apus.tuc.noao.edu (8.7.5/8.7.3/SAG-10Jul96) id LAA03058; Thu, 27 Feb 1997 11:11:27 -0700 (MST) Date: Thu, 27 Feb 1997 11:11:27 -0700 (MST) From: Steve Grandi Message-Id: <199702271811.LAA03058@apus.tuc.noao.edu> To: FreeBSD-gnats@freefall.freebsd.org, freebsd-bugs@freefall.freebsd.org Subject: Re: kern/2828: Adaptec 2940 Ultra cannot see Exabyte 8505 and loops during boot X-Sun-Charset: US-ASCII Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Rob Nelson suggested that I tell the Adaptec BIOS to not try Wide transfers with the Exabyte. I did as he suggested and Exabyte was found fine! Thanks Rob! Steve Grandi, grandi@noao.edu FreeBSD 2.2-970225-GAMMA #0: Wed Feb 26 11:56:29 MST 1997 grandi@new-www.tuc.noao.edu:/usr/src/sys/compile/WWW Calibrating clock(s) relative to mc146818A clock ... i586 clock: 199436527 Hz, i8254 clock: 1193211 Hz CPU: Pentium Pro (199.43-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x617 Stepping=7 Features=0xf9ff,MTRR,PGE,MCA,CMOV> real memory = 100663296 (98304K bytes) avail memory = 94969856 (92744K bytes) Probing for devices on PCI bus 0: chip0 rev 2 on pci0:0 chip1 rev 1 on pci0:7:0 chip2 rev 0 on pci0:7:1 ahc0 rev 0 int a irq 11 on pci0:11 ahc0: aic7880 Wide Channel, SCSI Id=7, 16 SCBs ahc0 waiting for scsi devices to settle (ahc0:1:0): "MICROP 3391SS P419" type 0 fixed SCSI 2 sd0(ahc0:1:0): Direct-Access 8681MB (17780058 512 byte sectors) (ahc0:2:0): "MICROP 3391SS P419" type 0 fixed SCSI 2 sd1(ahc0:2:0): Direct-Access 8681MB (17780058 512 byte sectors) (ahc0:3:0): "MICROP 3391SS P419" type 0 fixed SCSI 2 sd2(ahc0:3:0): Direct-Access 8681MB (17780058 512 byte sectors) ahc0:A:5: refuses WIDE negotiation. Using 8bit transfers (ahc0:5:0): "MATSHITA CD-ROM CR-506 8S04" type 5 removable SCSI 2 cd0(ahc0:5:0): CD-ROM cd present [253530 x 2048 byte records] (ahc0:6:0): "EXABYTE EXB-85058SQANXR1 07T0" type 1 removable SCSI 2 st0(ahc0:6:0): Sequential-Access density code 0x0, drive empty vx0 <3COM 3C905 Fast Etherlink XL PCI> rev 0 int a irq 10 on pci0:15 mii[*mii*] address 00:60:97:6e:a4:d6 vga0 rev 65 on pci0:17 Probing for devices on the ISA bus: sc0 at 0x60-0x6f irq 1 on motherboard sc0: VGA color <16 virtual consoles, flags=0x0> sio0 at 0x3f8-0x3ff irq 4 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A sio2: disabled, not probed. sio3: disabled, not probed. lpt0 at 0x378-0x37f irq 7 on isa lpt0: Interrupt-driven port lp0: TCP/IP capable interface psm0 at 0x60-0x64 irq 12 on motherboard psm0: device ID 0 fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: NEC 72065B fd0: 1.44MB 3.5in npx0 on motherboard npx0: INT 16 interface apm0: disabled, not probed. changing root device to sd0a From owner-freebsd-bugs Thu Feb 27 10:40:07 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA12334 for bugs-outgoing; Thu, 27 Feb 1997 10:40:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA12304; Thu, 27 Feb 1997 10:40:03 -0800 (PST) Resent-Date: Thu, 27 Feb 1997 10:40:03 -0800 (PST) Resent-Message-Id: <199702271840.KAA12304@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, jmaslak@blackfire.com Received: from blackfire.com (hill153.uwyo.edu [129.72.150.153]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id KAA12051 for ; Thu, 27 Feb 1997 10:35:18 -0800 (PST) Received: (from jmaslak@localhost) by blackfire.com (8.8.5/8.7.3) id LAA26929; Thu, 27 Feb 1997 11:35:31 -0700 (MST) Message-Id: <199702271835.LAA26929@blackfire.com> Date: Thu, 27 Feb 1997 11:35:31 -0700 (MST) From: Joel Maslak Reply-To: jmaslak@blackfire.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/2829: Faulty FTP Install Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2829 >Category: bin >Synopsis: FTP installs can only fail once >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 27 10:40:02 PST 1997 >Last-Modified: >Originator: Joel Maslak >Organization: Black Fire Productions >Release: FreeBSD 3.0-CURRENT i386 >Environment: Anything from FreeBSD 2.1.6 (and before?) through 3.0 current (December), including 2.1.7 and 2.2 Gamma. FTP network install, does not seem to matter what type of ethernet card. >Description: When an FTP install fails for some reason (FTP server refusing connections, selected distribution not found on server, etc), most of the time a reboot is needed. Failure to reboot will make it impossible to reconnect to the FTP server (you get DNS errors often, although others have been seen). The DNS server I use and my network connection work fine, if you make sure that you can get into the server. If you let BSD find out that it can't, then you have problems. >How-To-Repeat: Install BSD. Go into options, and change the distribution to something which doesn't exist. Select your favorate FTP site. Go back into options, change the distribution to one that does exist. It won't work. >Fix: Reboot everytime you make a typo. Boot from floppy. Eat lunch. >Audit-Trail: >Unformatted: From owner-freebsd-bugs Thu Feb 27 15:30:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA24170 for bugs-outgoing; Thu, 27 Feb 1997 15:30:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA24162; Thu, 27 Feb 1997 15:30:02 -0800 (PST) Date: Thu, 27 Feb 1997 15:30:02 -0800 (PST) Message-Id: <199702272330.PAA24162@freefall.freebsd.org> To: freebsd-bugs Cc: From: Steve Grandi Subject: Re: kern/2828: Adaptec 2940 Ultra cannot see Exabyte 8505 and loops during boot Reply-To: Steve Grandi Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/2828; it has been noted by GNATS. From: Steve Grandi To: FreeBSD-gnats@freefall.freebsd.org, freebsd-bugs@freefall.freebsd.org Cc: Subject: Re: kern/2828: Adaptec 2940 Ultra cannot see Exabyte 8505 and loops during boot Date: Thu, 27 Feb 1997 11:11:27 -0700 (MST) Rob Nelson suggested that I tell the Adaptec BIOS to not try Wide transfers with the Exabyte. I did as he suggested and Exabyte was found fine! Thanks Rob! Steve Grandi, grandi@noao.edu FreeBSD 2.2-970225-GAMMA #0: Wed Feb 26 11:56:29 MST 1997 grandi@new-www.tuc.noao.edu:/usr/src/sys/compile/WWW Calibrating clock(s) relative to mc146818A clock ... i586 clock: 199436527 Hz, i8254 clock: 1193211 Hz CPU: Pentium Pro (199.43-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x617 Stepping=7 Features=0xf9ff,MTRR,PGE,MCA,CMOV> real memory = 100663296 (98304K bytes) avail memory = 94969856 (92744K bytes) Probing for devices on PCI bus 0: chip0 rev 2 on pci0:0 chip1 rev 1 on pci0:7:0 chip2 rev 0 on pci0:7:1 ahc0 rev 0 int a irq 11 on pci0:11 ahc0: aic7880 Wide Channel, SCSI Id=7, 16 SCBs ahc0 waiting for scsi devices to settle (ahc0:1:0): "MICROP 3391SS P419" type 0 fixed SCSI 2 sd0(ahc0:1:0): Direct-Access 8681MB (17780058 512 byte sectors) (ahc0:2:0): "MICROP 3391SS P419" type 0 fixed SCSI 2 sd1(ahc0:2:0): Direct-Access 8681MB (17780058 512 byte sectors) (ahc0:3:0): "MICROP 3391SS P419" type 0 fixed SCSI 2 sd2(ahc0:3:0): Direct-Access 8681MB (17780058 512 byte sectors) ahc0:A:5: refuses WIDE negotiation. Using 8bit transfers (ahc0:5:0): "MATSHITA CD-ROM CR-506 8S04" type 5 removable SCSI 2 cd0(ahc0:5:0): CD-ROM cd present [253530 x 2048 byte records] (ahc0:6:0): "EXABYTE EXB-85058SQANXR1 07T0" type 1 removable SCSI 2 st0(ahc0:6:0): Sequential-Access density code 0x0, drive empty vx0 <3COM 3C905 Fast Etherlink XL PCI> rev 0 int a irq 10 on pci0:15 mii[*mii*] address 00:60:97:6e:a4:d6 vga0 rev 65 on pci0:17 Probing for devices on the ISA bus: sc0 at 0x60-0x6f irq 1 on motherboard sc0: VGA color <16 virtual consoles, flags=0x0> sio0 at 0x3f8-0x3ff irq 4 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A sio2: disabled, not probed. sio3: disabled, not probed. lpt0 at 0x378-0x37f irq 7 on isa lpt0: Interrupt-driven port lp0: TCP/IP capable interface psm0 at 0x60-0x64 irq 12 on motherboard psm0: device ID 0 fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: NEC 72065B fd0: 1.44MB 3.5in npx0 on motherboard npx0: INT 16 interface apm0: disabled, not probed. changing root device to sd0a From owner-freebsd-bugs Thu Feb 27 19:14:16 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA06523 for bugs-outgoing; Thu, 27 Feb 1997 19:14:16 -0800 (PST) Received: from crh.cl.msu.edu (crh.cl.msu.edu [35.8.1.24]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA06516 for ; Thu, 27 Feb 1997 19:14:09 -0800 (PST) Received: (from henrich@localhost) by crh.cl.msu.edu (8.8.5/8.8.4) id WAA00989 for freebsd-bugs@freebsd.org; Thu, 27 Feb 1997 22:13:55 -0500 (EST) From: Charles Henrich Message-Id: <199702280313.WAA00989@crh.cl.msu.edu> Subject: mail.local modifications? To: freebsd-bugs@freebsd.org Date: Thu, 27 Feb 1997 22:13:54 -0500 (EST) X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk At one point I grabbed the -current source (many moons ago)and my patches for the mail.local delivering to quota was applied, they seem to have been backed out, anyone remember why? The problem is still open for 2.1, and I believe I also submitted a (closed?) problem for 2.2, at least it doesnt appear in the open problem reports. -Crh Charles Henrich Michigan State University henrich@msu.edu http://pilot.msu.edu/~henrich From owner-freebsd-bugs Thu Feb 27 19:58:19 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA11930 for bugs-outgoing; Thu, 27 Feb 1997 19:58:19 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA11910; Thu, 27 Feb 1997 19:58:14 -0800 (PST) From: Mike Pritchard Message-Id: <199702280358.TAA11910@freefall.freebsd.org> Subject: Re: mail.local modifications? To: henrich@crh.cl.msu.edu (Charles Henrich) Date: Thu, 27 Feb 1997 19:58:14 -0800 (PST) Cc: freebsd-bugs@freebsd.org In-Reply-To: <199702280313.WAA00989@crh.cl.msu.edu> from "Charles Henrich" at Feb 27, 97 10:13:54 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Charles Henrich wrote: > > At one point I grabbed the -current source (many moons ago)and my patches for > the mail.local delivering to quota was applied, they seem to have been backed > out, anyone remember why? The problem is still open for 2.1, and I believe I > also submitted a (closed?) problem for 2.2, at least it doesnt appear in the > open problem reports. The cvs log for mail.local is attached to this message. It appears that the patch you supplied was screwed up. Looking at the PR, you didn't submit a proper context diff, and that caused it to not apply correctly. Please submit a new diff so that someone can work with it. If you had submitted a second PR for 2.2, then it was probably closed because it was really a duplicate of the original PR. revision 1.10 date: 1996/10/23 05:05:32; author: scrappy; state: Exp; lines: +1 -31 Totally botched ths patch...revert back to Rev 1.7, and request a proper context diff from the submitter... ---------------------------- revision 1.9 date: 1996/10/22 22:52:37; author: scrappy; state: Exp; lines: +23 -22 Last time I trust 'sucess's on a non-context diff... Pointed out by: Bill Fenner ---------------------------- revision 1.8 date: 1996/10/22 21:01:01; author: scrappy; state: Exp; lines: +30 -1 Fixes: >Description: /usr/libexec/mail.local runs as root. As such is can fill up a mailbox on a quota'd filesystem, and keep going... Makes quota's almost useless in an ISP environment. Closes: PR#bin/1111 Submitted by: Charles Henrich -- Mike Pritchard mpp@FreeBSD.org Go that way. Really fast. If something gets in your way, turn" From owner-freebsd-bugs Thu Feb 27 19:59:57 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA12500 for bugs-outgoing; Thu, 27 Feb 1997 19:59:57 -0800 (PST) Received: from crh.cl.msu.edu (crh.cl.msu.edu [35.8.1.24]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA12438 for ; Thu, 27 Feb 1997 19:59:51 -0800 (PST) Received: (from henrich@localhost) by crh.cl.msu.edu (8.8.5/8.8.4) id WAA01620; Thu, 27 Feb 1997 22:59:38 -0500 (EST) From: Charles Henrich Message-Id: <199702280359.WAA01620@crh.cl.msu.edu> Subject: Re: mail.local modifications? To: mpp@freefall.freebsd.org (Mike Pritchard) Date: Thu, 27 Feb 1997 22:59:38 -0500 (EST) Cc: freebsd-bugs@freebsd.org In-Reply-To: <199702280358.TAA11910@freefall.freebsd.org> from Mike Pritchard at "Feb 27, 97 07:58:14 pm" X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > Charles Henrich wrote: > > > > At one point I grabbed the -current source (many moons ago)and my patches fo r > > the mail.local delivering to quota was applied, they seem to have been backe d > > out, anyone remember why? The problem is still open for 2.1, and I believe I > > also submitted a (closed?) problem for 2.2, at least it doesnt appear in the > > open problem reports. > > The cvs log for mail.local is attached to this message. It appears that > the patch you supplied was screwed up. Looking at the PR, you > didn't submit a proper context diff, and that caused it to not apply > correctly. Please submit a new diff so that someone can work > with it. At the time I am sure I resubmitted one. Well I am in the process of rereviewing mail.local for security purposes so I will re-roll my diffs, thanks for checking into it! -Crh From owner-freebsd-bugs Thu Feb 27 23:10:34 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA23326 for bugs-outgoing; Thu, 27 Feb 1997 23:10:34 -0800 (PST) Received: (from gpalmer@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA23249; Thu, 27 Feb 1997 23:09:50 -0800 (PST) Date: Thu, 27 Feb 1997 23:09:50 -0800 (PST) From: Gary Palmer Message-Id: <199702280709.XAA23249@freefall.freebsd.org> To: gpalmer, gnats-admin, freebsd-bugs Subject: Re: docs/2831 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: newsyslog.8 contains typo Responsible-Changed-From-To: gnats-admin->freebsd-bugs Responsible-Changed-By: gpalmer Responsible-Changed-When: Thu Feb 27 23:09:34 PST 1997 Responsible-Changed-Why: Misfiled PR From owner-freebsd-bugs Thu Feb 27 23:35:01 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA25522 for bugs-outgoing; Thu, 27 Feb 1997 23:35:01 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA25491; Thu, 27 Feb 1997 23:34:57 -0800 (PST) Date: Thu, 27 Feb 1997 23:34:57 -0800 (PST) From: Mike Pritchard Message-Id: <199702280734.XAA25491@freefall.freebsd.org> To: marcs@znep.com, mpp, freebsd-bugs Subject: Re: docs/2831 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: newsyslog.8 contains typo State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Thu Feb 27 23:34:42 PST 1997 State-Changed-Why: Suggest patch applied. From owner-freebsd-bugs Fri Feb 28 09:40:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA07645 for bugs-outgoing; Fri, 28 Feb 1997 09:40:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA07620; Fri, 28 Feb 1997 09:40:03 -0800 (PST) Date: Fri, 28 Feb 1997 09:40:03 -0800 (PST) Message-Id: <199702281740.JAA07620@freefall.freebsd.org> To: freebsd-bugs Cc: From: Bill Fenner Subject: Re: bin/2443: Fetch cannot find the correct boundary between HTTP header and body. Reply-To: Bill Fenner Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR bin/2443; it has been noted by GNATS. From: Bill Fenner To: freebsd-gnats-submit@freebsd.org, hyama@acm.org Cc: Subject: Re: bin/2443: Fetch cannot find the correct boundary between HTTP header and body. Date: Fri, 28 Feb 1997 09:31:59 PST I cannot replicate this with either the fetch from 2.1.6 or the new fetch in 2.2 . Are you still having this problem? Can you supply another URL that you're having problems with, since http://www.sun.com/index.html doesn't fail? Thanks, Bill From owner-freebsd-bugs Fri Feb 28 11:20:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA12846 for bugs-outgoing; Fri, 28 Feb 1997 11:20:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA12839; Fri, 28 Feb 1997 11:20:03 -0800 (PST) Resent-Date: Fri, 28 Feb 1997 11:20:03 -0800 (PST) Resent-Message-Id: <199702281920.LAA12839@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, fenner@parc.xerox.com Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id LAA12385 for ; Fri, 28 Feb 1997 11:15:13 -0800 (PST) Received: from fenestro.parc.xerox.com ([13.0.208.199]) by alpha.xerox.com with SMTP id <16973(4)>; Fri, 28 Feb 1997 11:14:38 PST Received: (from fenner@localhost) by fenestro.parc.xerox.com (8.8.4/8.8.4) id LAA10869; Fri, 28 Feb 1997 11:14:52 -0800 (PST) Message-Id: <199702281914.LAA10869@fenestro.parc.xerox.com> Date: Fri, 28 Feb 1997 11:14:52 PST From: Bill Fenner Reply-To: fenner@parc.xerox.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/2832: w treats corrupted utmp as fatal error Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2832 >Category: bin >Synopsis: w treats corrupted utmp as fatal error >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 11:20:01 PST 1997 >Last-Modified: >Originator: Bill Fenner >Organization: Xerox >Release: FreeBSD 2.2-BETA_A i386 >Environment: FreeBSD fenestro.parc.xerox.com 2.2-BETA_A FreeBSD 2.2-BETA_A #1: Sat Jan 18 18:30:51 PST 1997 fenner@fenestro.parc.xerox.com:/usr/src/sys/compile/FENESTRO i386 2.2-BETA installed via ftp from ftp.freebsd.org in mid-January. X11R6 installed in that installation. >Description: My utmp file got corrupted (I don't know how). % who | cat -v root ttyv0 Feb 22 20:08 fenner ttyv1 Feb 22 21:30 fenner ttyp5 Feb 27 17:26 (crevenia) 4 {q^P3ttypDec 31 16:00 (er) w fails to run: % w w: /dev//{q^P3ttyp4: No such file or directory while it could at least manage to print out as much as who does. >How-To-Repeat: Corrupt your utmp file so that a tty field references a nonexistent device, and then run "w". >Fix: --- w.c.orig Fri Feb 28 11:10:06 1997 +++ w.c Fri Feb 28 11:11:28 1997 @@ -438,7 +438,7 @@ (void)snprintf(ttybuf, sizeof(ttybuf), "%s/%s", _PATH_DEV, line); if (stat(ttybuf, &sb)) - err(1, "%s", ttybuf); + warn("%s", ttybuf); return (&sb); } % ./w |& cat -v w: /dev//{q^P3ttyp4: No such file or directory 11:12AM up 5 days, 15:06, 5 users, load averages: 0.04, 0.03, 0.00 USER TTY FROM LOGIN@ IDLE WHAT root v0 - Sat08PM 13:54 -csh (csh) fenner v1 - Sat09PM 5days xinit ttyp0 fenner 13Aug95 9:12 - fenner p5 crevenia 5:26PM - ./w 4 {q^P er 31Dec69 - - >Audit-Trail: >Unformatted: From owner-freebsd-bugs Fri Feb 28 11:20:12 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA12870 for bugs-outgoing; Fri, 28 Feb 1997 11:20:12 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA12854; Fri, 28 Feb 1997 11:20:08 -0800 (PST) Resent-Date: Fri, 28 Feb 1997 11:20:08 -0800 (PST) Resent-Message-Id: <199702281920.LAA12854@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.LAA12518;Fri; (8.8.5/8.8.5);, 28 Feb 1997 11:17:46.-0800 (PST) Message-Id: <199702281917.LAA12518@freefall.freebsd.org> Date: Fri, 28 Feb 1997 11:17:46 -0800 (PST) From: nishika@usa.net, nishika@sm10.sciatl.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: docs/2833: Repeated topics on FAQ entry hardware compatibility Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2833 >Category: docs >Synopsis: Repeated topics on FAQ entry hardware compatibility >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 11:20:04 PST 1997 >Last-Modified: >Originator: Nishika >Organization: >Release: >Environment: >Description: Hey, I'm Nishika(e-name) and I'm translating a hardware session of FAQs for FreeBSD into Japanese. Yesterday I found one problem on FAQ(rev 1.31) entry hardware compatibility that contains two same questions. Today I confirmed web page http://www.freebsd.org/FAQ/FAQ.html has same situation. It contains same FAQs as 3.18 and 3.19. One of doc-jp staff, whose name is Koji Hino and e-mail address is hino@nwk.cl.nec.co.jp, says latest FAQ (FAQ.sgml,v 1.34 1997/02/22 12:58:01 peter Exp) also has same problem, though I don't know where I can check that. What should I do for that? Just posting this message? Or should I do anything else? Please let me know about that. ----- Nishika(e-name) mailto:nishika@usa.net (indirect but permanent of my life), mailto:nishika@sm10.sciatl.com (direct but currently) >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Fri Feb 28 14:30:07 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA21691 for bugs-outgoing; Fri, 28 Feb 1997 14:30:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA21685; Fri, 28 Feb 1997 14:30:04 -0800 (PST) Resent-Date: Fri, 28 Feb 1997 14:30:04 -0800 (PST) Resent-Message-Id: <199702282230.OAA21685@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, hfwirth@ping.at Received: from atlantis.ping.at (a013.static.Vienna.AT.EU.net [193.154.186.13]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA21359 for ; Fri, 28 Feb 1997 14:20:41 -0800 (PST) Received: (from hfwirth@localhost) by atlantis.ping.at (8.7.6/8.6.12) id XAA04288; Fri, 28 Feb 1997 23:20:24 +0100 (MET) Message-Id: <199702282220.XAA04288@atlantis.ping.at> Date: Fri, 28 Feb 1997 23:20:24 +0100 (MET) From: hfwirth@ping.at Reply-To: hfwirth@ping.at To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: gnu/2834: Support for Pentium MMX instructions in gas and gdb Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2834 >Category: gnu >Synopsis: Patches to gas and gdb to support MMX extensions >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 14:30:01 PST 1997 >Last-Modified: >Originator: Helmut F. Wirth >Organization: Helmut F. Wirth Email: hfwirth@ping.at >Release: FreeBSD 2.1-STABLE i386 >Environment: Machine: ASUS P55T2P4 with Pentium MMX 166 Opsys: FreeBSD 2.1.7-RELEASE #0 (derived from ctm) >Description: I added the MMX instructions to gas and gdb and tested the changes. I hope you will find this useful and will incorporate it to FreeBSD. >How-To-Repeat: N/A >Fix: Appended to this please find an uuencoded, gzipped tar file containing the following files: as.mmx.diff ... patch for (g)as gdb.mmx.diff ... patch for gdb how_to_patch ... Install instructions mmx_changes.doc ... Short documention, what I did mmxtest.c ... The test program I used mmxtest.result ... The results from the test program If you have any question, please feel free to email me! Regards Helmut ------------------------------ cut here ------------------------------- begin 644 mmx_changes.tar.gz M'XL("-=6%S,``VUM>%]C:&%N9V5S+G1A<@#L7'M7VTBRGW_1I^AP=P(FPNCA M%S"978:0#'.&A"3LG;DW)X/1M]]J9=I&+U.AWW'\-65GX;\9);=,6W&>K;1 M[=G]CFTR9EI&Q_J.&5^,(^65IYF3,/;=9#3SDVRRM-QLPGGP-1CZNB\4/-MV MV?9VPMT\2?U+SG;R--E)$W=G'.7XO3WTHQTGW7'C:.2/=S)WV[<'O;;+&M*T MK:VM.Q-8.YOD[&":,'/`+&.OV]FS.\SUIV]O;3=37GB<^>\Z'S((*YA[\ M=?M8H8_-JB]BP^KHUBZC1Z0'CT`>OFUKJ'>G`7=2SB8\F+(\9:'S@3,_8T.> M93QI4Y&M'?C0GK"=+7;@>=QC:3Z=QDG&1G'"L@EG)R>_,S]*LR1W,S^.TCUB M9L>P=JP>^YD'89ZQY^W?4+&`#-MB4LO^-O6C<=O)VNQPXD1CGK(X"JY9%K/` MC^`)E"WAU`(@X/E(FPD"_HAMON'CCV_QK=UF,R=E+M'PL'J1?1)>4:D$WE@; MRE'M'7B''OV7/XH\/L*V,GB$`9#Y+E))6.*FOO?N/7O*UO]R[.VQ$GG]DIEM M$DYWQ^CNV`8S.GN=_AX`G(P3/P2FCZZF["_K^]@`!Z9'C3(9#';UP6Y72(6Q M-7@!T$[D,;^=A&W@-^0A&_D\\-(V8[]QYKAN'$X#/YT`('[*AM=LY'P`_.#1 MR1"DBDXVBQF0\%,0(8NG/`'"@":".0;-CD!8A&K"+WD"PH\3#V0MY(PD$+[- M;/O'>.K&'C\/8^B&#Z0>LS>B!H#ZAEALL<>/D64^/B_;>?J462WVI_:(:*WE M4>J/(Y`+P`P]2M+L7"D.$&_Z[>QZRM-WQGMJ8=QB?P6["$JT+_FITT@Y:L,< MD47"3Y3ZF,ZC++EF6UDXA>+$^J@1GGY*%@7;&HAM)1Y,8OB#*Q:'F6*9$@T M2_"6)>8PBO/$Y3KS>)KM%R)9$ZG-V*/!M.C=_G@8`U9Q\/$9'^;CCV=`HT$F M:T@;:$FB*MQKI,V@/]B6727#/`$J'8)+`=,(\[&30V@X-HEV[J^]V3'40_5NA*>>6_QQ0FU36-+J6#F^[-:4E MG".@C6:D,%G"7JGX-@"L8EL'-V9/2TB1_OV5LR*S5M(P/X>&";*P*F01VN,1 M]A4P!-OK1(Q?91R8!W=#&$G$>0I.#!;1I7&5!CC*PR%/*F+0LT)(6*.$437Z M-1`)13#'99OGLLU'3]G+..(M&@T@HSX(JM>IC8>'$E3A5_T+Y'5W4O]I8EMA M33%I\/HGG[.FF'SNFF(ROZ:P]JS.+6L*4[=ZRIK"Q"5&L:;88C6G>4).L[WH M-,,:M^8T:U]@K<'FUQH+[O_9X?DQL(DI\`CKCB*%FD6"!2$#H:IV6/&%:S\Z57/LBW(LAJSV":\#3Y2_8]4M(5,$RS/`8C3;O>0 MD"BU+Q7]*FB(407T.Q5]I8F?KC-.PV_P\3@,Q=O;EE+@-W`:J0"T#YEF[_/4 M60R%G4J7:PFW*G*M9(,6#VI:7"]=5V%S%U;&RU78W-5!PRL1PF._$"#\[4@M MODV%!WO&G`I_1?TMUJM``Q8('-PB!X2*[((ERIPA+5__K,O]G$Q3(QQ]V]+[ M=K\"I`_^UZ`:U="A4_`I_#RDA0PVMHU>2L`Z,%3J>LC8G^ON-/>]=9T9\'=E MC!Q+9^TDHDN'O1B_AFE-GQ*MH$-5=9P[A"2NC.41T!4&Q._#2"7'I M!-!<(@4BE\0AX7_\\NSH5W::Q./$"4-T']_P$

PNJ(OKXM))F;.9>Q[V/@('-4L%=1F M?C8A6C%.6(*BJ@;M:F?B":#'PS"MP.OWEX$GBX=`#\&V9'E.Y65I80MT7%G; MUL<3'A95%^KU1+WY9>!'24@A4-`4A%#9`]])N1!;FH]&_A7;"#;VR3$GY]0? MB94M_"4W8A6+T+):T+A=;H5EK2IVCOR5J*D MP#6ZW734J9]YJG.4J:]YJK*7Y4%6*%88Z4%*5 M8H5A#I14I5AMB`.QFE*LUL.:4MRWBR6UNE*LQEE=*59C#9PLA=8JDU/D10JE M^\[F@EB<*-C?ERE!ZJI&:S6VW'#*+Q0Y]COWQXMH*7+L=U>DI;JDO56[.U/-2YK)34Q MKH)\,H^\]WBK()_/(WZ5Q!2]O%>23>>1O;[RHY:AC<27DG3GD.Y_N MO*/@Q5="WIE#_O;&=[;84>2Q>+1\TY+VB];+;0WU[P9W^5/)("ZFG&=!_'L1.ACVC+P>NJ\L-*%%BTVPIA71FWN@B MW:JG6VH=NYYG%W4Z]?1.D=ZMIW>!UJ."5J^>UROJ].OI_9L"!65G[^3@]_,W M1R_.7QZ<')V_/?[?(S9`Z'`[9NHD*6Z')>79AX/[E;0CYD=XVK$E3EP'W5U] MT*OV\?_/X2;JR+W&>3B*;74`0U`.0V.]ILV49BIIIDRSE#2KY"P,;27=EF4[ M2EI'IG65M*Y2OZ>D]V39OI+V133AH4/Q'N0U]H9?/`#T$_&?EM'IR_C/CM'% M[Z9E]OO?XC^_QNO.AUN@*/2/YRS;GI^V7;:8M/R`:['L_!%7=\_J5D=<#>7K MAUQV9\^\[9S6UJ%<=4YKZ[:EG-,R&?Q%QRJ_Q).(_>RD*;]FFQ/Z_)LWWDZR M:=L;M]TX;'V)`]J&8-!C>=1#@9]XC*328UD<*X; M!],IQG1>L8-64?`XRGC`!@8>(3<>,QH88*.H&53W5V(2HK.9[,\>9S7E.=UPUU7GLRIZPCW3MD MH3Q8EX7YP>]8&N8B';]C`)V:^Y.2^]-"[J&2>RAR&]'MV+K9433<['9TLU=& MC6%`"]#Y9;.EX^?;HQ>;K?TJ_=GQ&YGSZOES^>W9V[?'\NO1VV?%UU:$H'XTE1_516>RV(5L>Z=(;HQ2/T7A@6@MDYGM(WAY3P M?)IP/&7#E)1GYY2Y7Q'`!L8\,WM4`K[!P,<"C2AV3=WL*O$<9@]0[)OS.GI) M4F>6DC032;:2)'2#=2HMG3<)=1456L:Z=3>&IRAT&"UJ:(1;))K-UL[HZI9I M*/;.,G3+-N;[\>+-:8^QEW__]5==OIMV/;M?S^W4#Q:,AZA]L&L M7KTWE^W5L_MSV1?U[$%]$,X?Q"N,/__UU<'9X:MG1ZQKS"?7:)8%&T'NFH;> M-;L5R%T;$NR>LFQ`/KN,W'WAG1*+9WC\2\:9PO7+J6?9Q$$16]<4T!C@?$R! M7M0I48;!?(AA.N+C/)O%P^N,EV$/Y.@;AJ@AF>HA4XV=ZMEZM[^K+!G9^N;0 M\5KK4./N3ZM6!8Y[1KD"N1^=%:H6+`P>G(7^PZ/0'U2J\T`L#!3M7?\CAI7? M+Y>*EOT154DT$`<=O6>JZ_=_"R56S[E/+W1T(K#>7#9M>R_/II/HINPJ-H)R M+Q3DJU.#,DNI6!X#+,WTEF1600]5DTU#1XUF:**CA"1"/+G5THQ=!?'V!S-YO)#=-3SW3II%=3D]`TE%)3O-T@E%0HU2A.HVG5=J" M`&6A8?96]N2%RA&0\ZH,G1T/;\D\_+4P0;TN,-I53-"]&17Q@U^$T4:$>Z;> M&]@U!V"8SF#U!PN0M\PT_;_.%1X`^/PNCA41@]*`HW M];4L_:0V'N:C=[":DS^1[!NFWN]V:[[*ZN.MG#+DX>3B7"(/#ALS&N?:1=K% M4?B=I]ZF\5D%X#2P4L33W($9$2S3X"$405]+LC[1`95^U.05-(]T!4UG&?Y. M(\.?T,,RE.%S0>?SH"_'_*Z04_1.(ZS+`;^-=E.5J[E&;K4L52>6*&81J-"8 M<5>M+T)3/E<"HWD)+!7`$MY%/-Y=QH((,6T40#-M&0!Z"^U/&K,F9V(P,/3! M0-DBV>U:^NZN65D[Z=&DX)RL'=6\%IF3+,UQZSGX&Q'YL2,VP2-^A3];2#AG MXR3.IRES$EY$VR_;;!&[5$1#^/3R^4_Q(Y0Z*+$MI9W/*1W< MC78%B%B1K-(9[[,Z\SFE@[O1KG?F8J7.7-R9O;O2##Y-$Q.JD^K&#>A=_'7K M;E>]IL3HV;IE#@;JH+FASX1G>1*Q38/VNV^T)[?\@JC<<(<_=01OA>$5G7Z_ M>_]4(+G^/1WXXXN6B M?*$VZ0=_BMNM.TE(#!0:A`=LL?L],W1\^/?SY\=G!U@V;58'&5LKO]PPIW(C\8!3U/F M.9G#4O\?G(FJ/ZZW]DN*L@HT6L@O"=\K^:IN/)$Z(UF=/S?9+SL`N`#_G47^ M*T3,_5JB1$5)?7YT=O@S=8UM@H$]]Z-1K`N(\??]"HLD,;Q/8$OD_O@CZ[4` M';LJ0C*N%[&Q2+\J(CF0!6I9BEQK`*0S/W,G)*_YKKI(S=BK>)1%DY`$A<76 MJ$P'RZR16M%-#"#7`B3\66")#:G8FH!7L/J4=5O4WMH%O_.DJPDN>L.LXIRF#5M'B M_J94LUKL!*]A&N+1("RX96R8YR?($O:0-)]T@%VGL#30N>#=TIW MU46@$T&@@7-Z%/T17[-'FG9&01BXGT`W-7;8R,=8.VV+G*<4"DARB.),*ZY^Q(98$&/(GQ]R'>3#CO':@>A#A0_02"=Q'GA`4$0M MTI4,&OX6@M:-%&#(M&_&_O_1"X;!N5"BM.W%[A=IXW;[;QJF913VWX1_M/_] MGO'-_G^-UV]X==XQ6"-O3WM:O;1C-G.BK"'*.>*S\GJ:VKZ3O'I,F#NT/UH9 MS!SB!#.6EA"_DA4\N6;Q\`\PGQCCAH%QD"-4L2P+!=&`!GZ6H6U.V31.83$1 M\#9[`4]1/-,D?RF%RS5N\!:$7"?"=1/&=X<8BX>,M=EQQOQ4*^@B#WFZ0(1= M^@X[/W?2D/;2.%XR*'\^XKIMMOF6$SD-[QL$?YNNV`%4_<@-MOT/\/[C1$>TAARDQN6$4_W:1[T/CD+"H:B(YDZGW*78Q#UEPALPWT.! MP\*(]3ILJ%Y!N:=I:V%HZ"P,37RS\,W&MPZ^=?&MAV]]X.)_P(-PZ;8ZO*:( ME]*J>,G3(FI]`S<3&$4!;Q0W$+494-#D'.:/`45>2GT4.&.I7_#$KZ8PX<)B M:NJ`ZDJGY-()8/YLXU&!-H'%IWC&.7$644?=.$&WI0TNS36@"T/`!^J@Q3"W MHMI+-B1O8#DW-+P-*B&^J&=.`(*:D<]!;)!W@.UO8,#.!F!PZ.0HW4=:$>M/ MP&^`M%%UU$,*94-W$]6/XD):3%S/5].T-CO`/;X`)$3**A%R@IES/4>87R'2 M>.63`$7#ED;<@64?+_1%2L$'('XB'P0T),4]+RYHS>)H`]^3#ZA[<>"!#S$P M\#(L="DB\9,`=GCZ]\+S`7V/I()A*K@VW'50Y2G,55YB6@QDT<]VZ;[,Q`D. MB$#L\^"LFA1C6E41IH#A$MC=:!YR788ITW01(&D33/`0!#X!8* MN:=)G*G?]'"AH1G1BM!/G17QD.(;QF9J9>PE_G)"QEF67[T+K0Q*+1*#*C_` M?#Q,1GJ>(.MYGB:.^,53.M-DC(5XSC$!#[?A$8^RQ8>GB9`#\22+Y,4SU0%L MZ"V"R3?1\.!?DV&24$@$119?/$U&M(J$<38KOD"..)_71*`$I%.4BD8GIMA: M$'CB`[J&)[3XD(BT\H.R')'E>)KVG*PEF!8R%0!^' MSL()D)*.P$?,*APXOMS@_.A;(U#JK>IYOV79/>8BL=%43U:1!M3*G"-4_\TY^)"$))`(;-F M`X4M,?R+>8)^[X*M]#YZ*?.V!D$D]LY>:?L[H:0UB0V&C@`$MME)[7O-Z+O' MV:J_Z1V$AOT7;!%G!.M-SDU%)RAJJN1.M[11O/U!],T";A6<>QBIBX:C'1*= ME%I93X\6C68B4@\:7[_?[Y%:YP"QA"G1J.Q#O%\7:]*0>%4M5SE]FHZM/H6H M13=*+U8VFA;UHIUI-BUQ3X3=0H6Y+>P1V1KI%#+GZ#-;=G9D.6VJJ^7+PM/# M:\KFQ&74X)2L[^`\0Y.8\;-*LV"*+O0SU`3]:,>X:&TYER&`SET;!D)+R'Y% M,Y-?)M+6,8JFRG(+18LP,#C+8,3MTT)I=LA]8)L[!?$MA7="(B6S#`N"[%KC M]I8*OO9<*6/JY2*8U]G]O60UPEM30XHSL6=0MG\N#KYF\N`N2DD^/@"=/C5Q M<[/6C'B1R]&CFS7V^+_V9J1H%CJ-@[TI3K16(GS[GGC7ZHYH?TT\AYJ"\8.# MS3K5=+68\1$=,\O1ARRJR"+.M[0T@.?9'==!:D:JC3'@+*:)^!<->\+++13/ M=*R6KQ,PP#6'D0P>+*" M(,$T72\UW[>WHQ'B@#37BC;S6&QG5JJRA?GH._S:+D/WG\;S)]=N_]\@\`>% M_R_TKT+/"X*KP7']Y[-<")VT^:`11*7WH>\I[Z_E^04>'V#0JY]%C>,<7@[] M,+Q"`90I)`6D@88OSL%;PV>R9$7<+E^3)5O(PMN"_?65/M[`E$Z7&;QG\`S, MM(XL"R6+-6N)6$AI5C,($"/#7/E=LEHL-WE-(@H#9B06N7ZU"OP>Z\Q(HYPZ M)0.PXI4CA<6.)1BZ+SR)=3UD)1Z[GK$MB)L"U!AO-X'':+GD)1QQNRS6TEK& MAL7WS8R$S7I^BZIR:."6E[0O_>T*4=)$EYN9%D)6_]\LE[]E;$/4/7"PR@B4 M?B;NTMML3(.D5Z^\LQ^Q'YV,$8!I!B)2'G!*+]ZYT-%/6)B:D^ZEWU_!$;K+ M-3?^%GY,DO+9:&$OB:[5WHI3WJY*H6-F"1- M/=&84J&3R<3[=FFT`._;6:$03!1"NI0R,<:LC[U(R3),7VAK'X/6\UZ\M=.N M!O"&((71?\'/$,3)YX2S@E:X'/-[O.0->M'2TODTQ6GULE2M@8W>=-]@I;&% MAM$QO5.8=6R.J!NBXB&I6GD`9+Q\EE%*Y$%V:>QU ML$NEG_]BU,B_Y^MTL>S/_U%T/59,86VSMDRS`#3'3A\T=XU5:`(`DP<'I&WN M8#/_3Y6O>.'54?YOPR-UK4Z*)$0(Y295N(8ZH<(GYN'-A>QLQQ'P77A7(#>E!2WK8DBZ5;IIJ MA=Z*/!.NJ[@+G+O0N8N@$%5]A^6QL0`FC,Z#*N]"Y MBYR[@5,-@_*V4LU65W."3OC>>[L!BV&1S"Y=;?'"\2"=R98O0B:TS:GEON)( MN\H*82).6F%S!9>UK4CQ@JPR+?&A3"3O"ZT%W.B>0+`M1:5-8195.JXN8/>Q MMO-['G'*S/--53\0&XVE#$N0?'%+-MZJ:)59YI!8C_P]B=K2Z&9#6)P8S-.+ MLW#P/E$.*^SC+:"O+2M.]"$"AIB8]PY'UU+1JZY#\4O7%JQFD7*RO=LFJU0L MV?5BO+B!VQ^-L0[B6>1OB`3/SD$,N!>JH_&6Q=0W;]XM89& M!;WGS[/DX=>[4W5R>L)>%/V;>OW&\Y[Y#R-^M0_RI29?/E_A61A9J;%W^EUZ MZIU)K>=>3`D)PF=/TP>$0Y[H<3%8?5"*%W.T[&>T6=;B)8E8J"KN#HD?%BRDKRYEYOD>&+/3`K\:S-,BA'/?&W2'>)Q\WJ%S,>J#F/==]7 M:=.SB--_",)H<'DU'/6\DDS+I\EXDN*/GXZ+IUC)D?Q$GK>W?C5]+.E7E70L MGMNU\#J&]RP*G=SWU&+.[->`O-5`WF@!((_B%#(.NY2<=II' M(1Y%3L\@(J&6'PF5;OD==03TW9S,``X?'!-$,7/9FBGU8&UBLGVYJ^^8-JV^ M>YY-'IS....D)LG1)$M==:*$L&!6DL(,0RNR#@@YV40'KY':KAN/Q?JT*G]JJT&K5R&E5 MM9@S9&YQT\KA],FTOFVF]>U8'G6C]9W`-EV!A3LG3ER=1*J<(&QI]B=#B]E* MRE6OGNNREFO0D"NJY0H;<@6U7#Y/E[WP#VOXAPWXAS7\PP;\PQK^80/^80W_ MT,7?$D,((72D#[,3$"5^<`1%A8UP85;K4;8A%TQ;+;8?PEFE=!`0 M7U9U.3+$R._'<0VK)K)0=?D2#FTT&^6+S;A#:!EJ7[G3S,`[,VJ;BK868WV4 MBG9"RKN!"CN`VG2$%7UF1>F16L)J+6%C+6&UEG"O6J)J+5%C+5&UEJA!Z?L1 M[CK>@6596!S7(Y[`GA6RP@89NU.3G*TUMLSJTQK%VZ?U_A0Z/AR%=@/5C4*[ MP2HI]*B2?&F59"_\HQK^40/^40W_J`'_J(9_U(!_5,,_C,7J;KX9 MKQ$>U6SD:U6*,NVC2OU$V0^O2DWKNL^74J$0I_TE5"AT["%4J`).9Q4*`_!T M%4I&]H`J5!W@5ZA"(>C_,`**=PH<1D#))H.C"O4UJE"8U@=5H;`[Y7`4>B`5 M2O;#'%6HHPKU.56H$[..#`$+B6!O3W!FX>N[=]EJ+:+8S+O/OHJ\]UH@;RAS MUP*[+/L=0JOYV01JZM#^9E7TE7Z8O=V01LI@>F68H#FDL,3'Y&_,R4#B)XV. MI6(VCLZN'"Z02V1YRE#)UKX]!^MQB-NN$)O7CQL@CKM";&74^Q)4:^FPH738 MN7344#JJE7;H=+;*$H[8F./TA(\C5QO6UTRUL_6AJ7:V/C35SM9_+JHM63#6 MR[!WBW(M<#Z4!/>E]>79ADRMAB,"%JOF8-AD"[H9PZ:,8K1%UW5#CLS!M,F0 MD_2:P6:R=U.'!X8Z9,.TI7D.JJ0Q^*+K\#R*QXN!0A$&B42=+#=\1'DMKK5*/"NJ!&&\,QPS8R)./S415A$U?:%I_* MAV-8H:6/1_/MK)N/W.@&KI7Z*N"VW M_)9_8_H.L>DK[)HF0Q>O&MCDR8S/V\+^L>9M'_R"6%W^0[&#>KK"\ILYBHGW MCB:+.]F=5^QYHT[GO6=8+_AP/,_E#WZYQR9]FCH>.?\_C*SSGWU_P.<_!\?S MGS_+)1L?E=FV&!O_N9KZ_(GU=^W>WOBDL%4H1EQ2C%@8_D]9.V#40:N>=\C]*;@\M4\ED&D270X.)K]JC MG)1D>1G&E]G4:JN;+JTE3'#CQP*PO6EA?!5G/%P$B* ME5Z]C?6WZK"`J:Q^YS8[(R$ITVF9TGV129DRA&7QY0/GM@4`)8T:U3(X'F9U M>944^%!3?0U_,AH4F`\)S$!9'D-E#.Q8?_LFQ7=2?)/"/U23VT@%J5RQ_D[+ ME,!."4P*_E2+MZ!36>B2 M:N3S)];?.#BWHC(=]97C=;R.U_$Z7L?K>!VOXW6\CM?Q.E['J^'Z/S+^EGD` #R``` ` end >Audit-Trail: >Unformatted: From owner-freebsd-bugs Fri Feb 28 15:31:48 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA25309 for bugs-outgoing; Fri, 28 Feb 1997 15:31:48 -0800 (PST) Received: from crh.cl.msu.edu (crh.cl.msu.edu [35.8.1.24]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA25272 for ; Fri, 28 Feb 1997 15:31:32 -0800 (PST) Received: (from henrich@localhost) by crh.cl.msu.edu (8.8.5/8.8.4) id SAA07013; Fri, 28 Feb 1997 18:31:27 -0500 (EST) From: Charles Henrich Message-Id: <199702282331.SAA07013@crh.cl.msu.edu> Subject: Re: mail.local modifications? To: mpp@freefall.freebsd.org (Mike Pritchard) Date: Fri, 28 Feb 1997 18:31:27 -0500 (EST) Cc: freebsd-bugs@freebsd.org In-Reply-To: <199702280358.TAA11910@freefall.freebsd.org> from Mike Pritchard at "Feb 27, 97 07:58:14 pm" X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > The cvs log for mail.local is attached to this message. It appears that > the patch you supplied was screwed up. Looking at the PR, you > didn't submit a proper context diff, and that caused it to not apply > correctly. Please submit a new diff so that someone can work > with it. Okay here is the correct patch. This is the same one I've been running for years, so unless I had a complete brain fart, it works wonderful. Everyone please review and commit asap, thanks! One more thing, whomever added nobiff support intruduced a real nasty bug, in the case when the write to mailbox fails (for whatever reason) mail.local truncates the box, unfortunatly if running in nobiff mode the offset is never initialized (doesnt anyone use -Wall?) and the mailbox would be truncated at some random point. This patch also fixes that problem. Generated with: diff -c mail.local.c mail.local.c.new -Crh *** mail.local.c Sat Feb 22 23:49:15 1997 --- mail.local.c.new Fri Feb 28 18:30:44 1997 *************** *** 203,208 **** --- 203,209 ---- int mbfd, nr, nw, off; char biffmsg[100], buf[8*1024], path[MAXPATHLEN]; off_t curoff; + uid_t saveeuid; /* * Disallow delivery to unknown names -- special mailboxes can be *************** *** 238,243 **** --- 239,247 ---- * XXX * open(2) should support flock'ing the file. */ + + saveeuid=geteuid(); + tryagain: if (lstat(path, &sb)) { mbfd = open(path, *************** *** 250,260 **** --- 254,282 ---- warn("chown %u.%u: %s", pw->pw_uid, pw->pw_gid, name); return; } + + /* Now that the box is created and permissions are correct, we + close it and go back to the top so that we will come in + and write as the user. We dont seteuid() before the above + open, because we have to be root/bin to write in var/mail + -Crh (henrich@msu.edu) */ + + close(mbfd); + goto tryagain; + } else if (sb.st_nlink != 1 || S_ISLNK(sb.st_mode)) { e_to_sys(errno); warn("%s: linked file", path); return; } else { + + /* Become the user, so quota enforcement will occur */ + + if(seteuid(pw->pw_uid) != 0) { + warn("Unable to seteuid()"); + return; + } + mbfd = open(path, O_APPEND|O_WRONLY, 0); if (mbfd != -1 && (fstat(mbfd, &fsb) || fsb.st_nlink != 1 || *************** *** 262,267 **** --- 284,290 ---- sb.st_ino != fsb.st_ino)) { warn("%s: file changed after open", path); (void)close(mbfd); + seteuid(saveeuid); return; } } *************** *** 269,274 **** --- 292,299 ---- if (mbfd == -1) { e_to_sys(errno); warn("%s: %s", path, strerror(errno)); + seteuid(saveeuid); + return; } *************** *** 279,288 **** goto err1; } ! if (!nobiff) { ! /* Get the starting offset of the new message for biff. */ ! curoff = lseek(mbfd, (off_t)0, SEEK_END); ! (void)snprintf(biffmsg, sizeof(biffmsg), "%s@%qd\n", name, curoff); } --- 304,313 ---- goto err1; } ! curoff = lseek(mbfd, (off_t)0, SEEK_END); ! ! if (!nobiff) { ! (void)snprintf(biffmsg, sizeof(biffmsg), "%s@%qd\n", name, curoff); } *************** *** 304,309 **** --- 329,335 ---- warn("temporary file: %s", strerror(errno)); err2: (void)ftruncate(mbfd, curoff); err1: (void)close(mbfd); + seteuid(saveeuid); return; } *************** *** 320,327 **** --- 346,356 ---- if (close(mbfd)) { e_to_sys(errno); warn("%s: %s", path, strerror(errno)); + seteuid(saveeuid); return; } + + seteuid(saveeuid); if (!nobiff) notifybiff(biffmsg); From owner-freebsd-bugs Fri Feb 28 17:30:07 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA02485 for bugs-outgoing; Fri, 28 Feb 1997 17:30:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA02479; Fri, 28 Feb 1997 17:30:04 -0800 (PST) Resent-Date: Fri, 28 Feb 1997 17:30:04 -0800 (PST) Resent-Message-Id: <199703010130.RAA02479@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.RAA02184;Fri; (8.8.5/8.8.5);, 28 Feb 1997 17:23:31.-0800 (PST) Message-Id: <199703010123.RAA02184@freefall.freebsd.org> Date: Fri, 28 Feb 1997 17:23:31 -0800 (PST) From: register@sainet.or.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: bin/2837: Globalyst550 Disk-Drive Not found!! Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2837 >Category: bin >Synopsis: Globalyst550 Disk-Drive Not found!! >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 17:30:02 PST 1997 >Last-Modified: >Originator: Sekiguchi Shouichi >Organization: Jpan >Release: 2.15, 2.16, 2.2GANMMA(2/15) >Environment: FreeBSD 2.15-RELEASE - 2.2-GANMMA >Description: Globalyst 550 (i486 DX4 100Mhz) Memory 24Mbyte SCSI AHA-2940 or AHA1540 DiskDrive Conner CPF1080 Lan Interface D-Link (DE-250(C|T) >How-To-Repeat: Disk drive not found !! Install problem. >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Fri Feb 28 21:08:29 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA10376 for bugs-outgoing; Fri, 28 Feb 1997 21:08:29 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA10371 for ; Fri, 28 Feb 1997 21:08:23 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id QAA08904; Sat, 1 Mar 1997 16:02:27 +1100 Date: Sat, 1 Mar 1997 16:02:27 +1100 From: Bruce Evans Message-Id: <199703010502.QAA08904@godzilla.zeta.org.au> To: henrich@crh.cl.msu.edu, mpp@freefall.freebsd.org Subject: Re: mail.local modifications? Cc: freebsd-bugs@FreeBSD.org Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk >> The cvs log for mail.local is attached to this message. It appears that >> the patch you supplied was screwed up. Looking at the PR, you >> didn't submit a proper context diff, and that caused it to not apply >> correctly. Please submit a new diff so that someone can work >> with it. > >Okay here is the correct patch. This is the same one I've been running for >years, so unless I had a complete brain fart, it works wonderful. Everyone >please review and commit asap, thanks! Try again. This version has tab lossage and indentation breakage on every changed line. Bruce >*** mail.local.c Sat Feb 22 23:49:15 1997 >--- mail.local.c.new Fri Feb 28 18:30:44 1997 >*************** >*** 203,208 **** >--- 203,209 ---- > int mbfd, nr, nw, off; > char biffmsg[100], buf[8*1024], path[MAXPATHLEN]; > off_t curoff; >+ uid_t saveeuid; ^^^^^^^^^ 9 spaces, should be 1 tab > > /* > * Disallow delivery to unknown names -- special mailboxes can be From owner-freebsd-bugs Fri Feb 28 21:13:59 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA10586 for bugs-outgoing; Fri, 28 Feb 1997 21:13:59 -0800 (PST) Received: from crh.cl.msu.edu (crh.cl.msu.edu [35.8.1.24]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA10578 for ; Fri, 28 Feb 1997 21:13:56 -0800 (PST) Received: (from henrich@localhost) by crh.cl.msu.edu (8.8.5/8.8.4) id AAA08565; Sat, 1 Mar 1997 00:13:40 -0500 (EST) From: Charles Henrich Message-Id: <199703010513.AAA08565@crh.cl.msu.edu> Subject: Re: mail.local modifications? To: bde@zeta.org.au (Bruce Evans) Date: Sat, 1 Mar 1997 00:13:40 -0500 (EST) Cc: mpp@freefall.freebsd.org, freebsd-bugs@FreeBSD.org In-Reply-To: <199703010502.QAA08904@godzilla.zeta.org.au> from Bruce Evans at "Mar 1, 97 04:02:27 pm" X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk > > Try again. This version has tab lossage and indentation breakage on every > changed line. > Are you telling me because I used spaces instead of tabs that its rejected? Thats friggin ridiculous! I thought we were bitching about CONTENT not trivia! -Crh Charles Henrich Michigan State University henrich@msu.edu http://pilot.msu.edu/~henrich From owner-freebsd-bugs Fri Feb 28 21:30:05 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA11266 for bugs-outgoing; Fri, 28 Feb 1997 21:30:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA11260; Fri, 28 Feb 1997 21:30:02 -0800 (PST) Resent-Date: Fri, 28 Feb 1997 21:30:02 -0800 (PST) Resent-Message-Id: <199703010530.VAA11260@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Received:(from nobody@localhost) by.freefall.freebsd.org.id.VAA10900;Fri; (8.8.5/8.8.5);, 28 Feb 1997 21:22:43.-0800 (PST) Message-Id: <199703010522.VAA10900@freefall.freebsd.org> Date: Fri, 28 Feb 1997 21:22:43 -0800 (PST) From: pgiffuni@fps.biblos.unal.edu.co To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: conf/2838: Installation chooses incorrect default netmask Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2838 >Category: conf >Synopsis: Installation chooses incorrect default netmask >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 28 21:30:01 PST 1997 >Last-Modified: >Originator: Pedro Giffuni S. >Organization: Universidad Nacional de Colombia >Release: 2.1.7-Release >Environment: Non-relevant: 2.17 and previous releases, probably current >Description: suggested feature: default netmask should be determined instead of guessed. In the initial ftp or nfs installation, or when an interface is added the mask is, by default set to 255.255.255.0; the IP address of the system is ignored. >How-To-Repeat: It's not really a problem since we can always set this manually, but add an interface (/stand/sysinstall) on a class B network. >Fix: IMO the netmask selection should be intelligent enough to set 255.255.0.0 when it is in a class B network, and 255.0.0.0 on a class A network. The class could be determined by the IP address just typed. >Audit-Trail: >Unformatted: From owner-freebsd-bugs Fri Feb 28 22:25:31 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA13721 for bugs-outgoing; Fri, 28 Feb 1997 22:25:31 -0800 (PST) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA13715 for ; Fri, 28 Feb 1997 22:25:28 -0800 (PST) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id WAA01859; Fri, 28 Feb 1997 22:25:06 -0800 (PST) To: Charles Henrich cc: bde@zeta.org.au (Bruce Evans), mpp@freefall.freebsd.org, freebsd-bugs@FreeBSD.org Subject: Re: mail.local modifications? In-reply-to: Your message of "Sat, 01 Mar 1997 00:13:40 EST." <199703010513.AAA08565@crh.cl.msu.edu> Date: Fri, 28 Feb 1997 22:25:05 -0800 Message-ID: <1855.857197505@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk > Are you telling me because I used spaces instead of tabs that its rejected? > Thats friggin ridiculous! I thought we were bitching about CONTENT not trivi a! I think you may have missed the point. I can't speak for everyone else, but if someone sends me a patch which doesn't apply, and I've got 5001 other things to do (that being a constant), I simply won't bother with it. This isn't snobbery, this is a simple matter of saying "huh, oh well! I don't have time to grub through diff output, and a patch reject implies problems on the submitter's end in 99.9% of the cases (invalidating the patch) so I guess I'll come back to this later and go on to the next item in my list (a new stack frame is pushed, never to return :)." The moral of the story? Provide proper diffs, don't just go cut-n-paste happy. Overwork is the order of the day here, and if you make it harder on the committer then he's likely to simply move on to the next task and drop yours on the floor. Given the backlog of tasks we have, I also wouldn't have it any other way. Jordan From owner-freebsd-bugs Fri Feb 28 22:30:14 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA13854 for bugs-outgoing; Fri, 28 Feb 1997 22:30:14 -0800 (PST) Received: from crh.cl.msu.edu (crh.cl.msu.edu [35.8.1.24]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA13848 for ; Fri, 28 Feb 1997 22:30:12 -0800 (PST) Received: (from henrich@localhost) by crh.cl.msu.edu (8.8.5/8.8.4) id BAA09181; Sat, 1 Mar 1997 01:29:12 -0500 (EST) From: Charles Henrich Message-Id: <199703010629.BAA09181@crh.cl.msu.edu> Subject: Re: mail.local modifications? To: jkh@time.cdrom.com (Jordan K. Hubbard) Date: Sat, 1 Mar 1997 01:29:12 -0500 (EST) Cc: bde@zeta.org.au, mpp@freefall.freebsd.org, freebsd-bugs@FreeBSD.org In-Reply-To: <1855.857197505@time.cdrom.com> from "Jordan K. Hubbard" at "Feb 28, 97 10:25:05 pm" X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk > I think you may have missed the point. I can't speak for everyone > else, but if someone sends me a patch which doesn't apply, and I've > got 5001 other things to do (that being a constant), I simply won't > bother with it. This isn't snobbery, this is a simple matter of > saying "huh, oh well! I don't have time to grub through diff output, > and a patch reject implies problems on the submitter's end in 99.9% of > the cases (invalidating the patch) so I guess I'll come back to this > later and go on to the next item in my list (a new stack frame is > pushed, never to return :)." And thats one hudred percent and completely acceptable and accepted behavior. The problem is that the patch DID work, I didnt cut'n'paste, I read it in with VI, made extra sure it was perfect, applied it twice to my source copies, before sending it in. The comment I got back was "its got spaces in it" which it did, and I took as meaning he didnt like my spaces. Not that it didnt apply. > The moral of the story? Provide proper diffs, don't just go > cut-n-paste happy. Overwork is the order of the day here, and if you > make it harder on the committer then he's likely to simply move on to > the next task and drop yours on the floor. Given the backlog of tasks > we have, I also wouldn't have it any other way. Me neither. I understand this, I appreciate this, perhaps my interpretation of his message didnt match his message. But the patch did apply for me every damn time, hell thats why I included the command I used to make the diff, just so people could point out if I was doing something boneheaded. -Crh Charles Henrich Michigan State University henrich@msu.edu http://pilot.msu.edu/~henrich From owner-freebsd-bugs Fri Feb 28 22:40:52 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA14128 for bugs-outgoing; Fri, 28 Feb 1997 22:40:52 -0800 (PST) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA14118 for ; Fri, 28 Feb 1997 22:40:49 -0800 (PST) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id WAA01938; Fri, 28 Feb 1997 22:40:13 -0800 (PST) To: Charles Henrich cc: bde@zeta.org.au, mpp@freefall.freebsd.org, freebsd-bugs@FreeBSD.org Subject: Re: mail.local modifications? In-reply-to: Your message of "Sat, 01 Mar 1997 01:29:12 EST." <199703010629.BAA09181@crh.cl.msu.edu> Date: Fri, 28 Feb 1997 22:40:13 -0800 Message-ID: <1934.857198413@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk > And thats one hudred percent and completely acceptable and accepted behavior. > The problem is that the patch DID work, I didnt cut'n'paste, I read it in wit h > VI, made extra sure it was perfect, applied it twice to my source copies, > before sending it in. The comment I got back was "its got spaces in it" whic h > it did, and I took as meaning he didnt like my spaces. Not that it didnt > apply. Ah, I took it the latter way. Bruce, perhaps you'd care to enlighten both of us? :-) Jordan From owner-freebsd-bugs Fri Feb 28 23:18:33 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA15121 for bugs-outgoing; Fri, 28 Feb 1997 23:18:33 -0800 (PST) Received: from rocky.mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA15115 for ; Fri, 28 Feb 1997 23:18:29 -0800 (PST) Received: (from nate@localhost) by rocky.mt.sri.com (8.7.5/8.7.3) id AAA18610; Sat, 1 Mar 1997 00:18:23 -0700 (MST) Date: Sat, 1 Mar 1997 00:18:23 -0700 (MST) Message-Id: <199703010718.AAA18610@rocky.mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: "Jordan K. Hubbard" Cc: Charles Henrich , bde@zeta.org.au, freebsd-bugs@freebsd.org Subject: Re: mail.local modifications? In-Reply-To: <1934.857198413@time.cdrom.com> References: <199703010629.BAA09181@crh.cl.msu.edu> <1934.857198413@time.cdrom.com> Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk [ Jordan, you need to get a better mail program that doesn't trash quoted lines. Thanks goodness VM fixes them with a little help. :) ] >> And thats one hudred percent and completely acceptable and accepted >> behavior. The problem is that the patch DID work, I didnt >> cut'n'paste, I read it in with VI, made extra sure it was perfect, >> applied it twice to my source copies, before sending it in. The >> comment I got back was "its got spaces in it" which it did, and I >> took as meaning he didnt like my spaces. Not that it didnt apply. > > Ah, I took it the latter way. Bruce, perhaps you'd care to enlighten > both of us? :-) If the program was written with tabs (as most programs are), and a person uses spaces in their diff, it makes things really obnoxious when someone brings it up in an editor that has tabs set to be 4-spaces wide. If you don't keep the style consistant, you end up with sources that look like this (an exaggeration obviously). int method(foo,bar, bletch) int foo; char* bar; long *bletch; { int i; for(i=0;i<2;i++) { if ( i == 1 ) { i += 2; } else { printf("i=%d\n"); } } } vs. int method(foo, bar, bletch) int foo; char *bar; long *bletch; { int i; for (i = 0; i < 2; i++) { if ( i == 1 ) i += 2; else printf("i=%d\n"); } } (Although, some of us prefer 4-space tabs. :) Nate From owner-freebsd-bugs Sat Mar 1 06:52:25 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA07499 for bugs-outgoing; Sat, 1 Mar 1997 06:52:25 -0800 (PST) Received: (from joerg@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA07480; Sat, 1 Mar 1997 06:52:18 -0800 (PST) Date: Sat, 1 Mar 1997 06:52:18 -0800 (PST) From: Joerg Wunsch Message-Id: <199703011452.GAA07480@freefall.freebsd.org> To: pgiffuni@fps.biblos.unal.edu.co, joerg, freebsd-bugs Subject: Re: conf/2838 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Installation chooses incorrect default netmask State-Changed-From-To: open-closed State-Changed-By: joerg State-Changed-When: Sat Mar 1 15:51:21 MET 1997 State-Changed-Why: The 255.255.255.0 has been chosen deliberately after discussing the usefulness of a default. See also the audit-trail of this PR. From owner-freebsd-bugs Sat Mar 1 06:54:39 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA07564 for bugs-outgoing; Sat, 1 Mar 1997 06:54:39 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id GAA07556 for ; Sat, 1 Mar 1997 06:54:35 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id PAA05762; Sat, 1 Mar 1997 15:54:26 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id PAA01477; Sat, 1 Mar 1997 15:50:32 +0100 (MET) Message-ID: Date: Sat, 1 Mar 1997 15:50:32 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: henrich@crh.cl.msu.edu (Charles Henrich) Cc: mpp@freefall.freebsd.org (Mike Pritchard), freebsd-bugs@freebsd.org Subject: Re: mail.local modifications? References: <199702280358.TAA11910@freefall.freebsd.org> <199702282331.SAA07013@crh.cl.msu.edu> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199702282331.SAA07013@crh.cl.msu.edu>; from Charles Henrich on Feb 28, 1997 18:31:27 -0500 Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As Charles Henrich wrote: > Okay here is the correct patch. This is the same one I've been running for > years, so unless I had a complete brain fart, it works wonderful. Everyone > please review and commit asap, thanks! Charles, you'd really make our work easier by using a consistent style, and adhering to style(9) wherever it makes sense. As it was, it took just another 15 minutes for somebody else to walk over your patch, where you could have done it without any additional effort in the first place. Bruce, please reconsider the patch. Index: mail.local.c =================================================================== RCS file: /home/ncvs/src/libexec/mail.local/mail.local.c,v retrieving revision 1.12 diff -u -u -r1.12 mail.local.c --- mail.local.c 1997/02/22 14:21:48 1.12 +++ mail.local.c 1997/03/01 14:47:58 @@ -203,6 +203,7 @@ int mbfd, nr, nw, off; char biffmsg[100], buf[8*1024], path[MAXPATHLEN]; off_t curoff; + uid_t saveeuid; /* * Disallow delivery to unknown names -- special mailboxes can be @@ -238,6 +239,9 @@ * XXX * open(2) should support flock'ing the file. */ + + saveeuid = geteuid(); + tryagain: if (lstat(path, &sb)) { mbfd = open(path, @@ -250,11 +254,31 @@ warn("chown %u.%u: %s", pw->pw_uid, pw->pw_gid, name); return; } + + /* + * Now that the box is created and permissions are + * correct, we close it and go back to the top so that + * we will come in and write as the user. We don't + * seteuid() before the above open, because we have to + * be root/bin to write in /var/mail. + */ + + close(mbfd); + goto tryagain; + } else if (sb.st_nlink != 1 || S_ISLNK(sb.st_mode)) { e_to_sys(errno); warn("%s: linked file", path); return; } else { + + /* Become the user, so quota enforcement will occur */ + + if (seteuid(pw->pw_uid) != 0) { + warn("Unable to seteuid()"); + return; + } + mbfd = open(path, O_APPEND|O_WRONLY, 0); if (mbfd != -1 && (fstat(mbfd, &fsb) || fsb.st_nlink != 1 || @@ -262,6 +286,7 @@ sb.st_ino != fsb.st_ino)) { warn("%s: file changed after open", path); (void)close(mbfd); + seteuid(saveeuid); return; } } @@ -269,6 +294,8 @@ if (mbfd == -1) { e_to_sys(errno); warn("%s: %s", path, strerror(errno)); + seteuid(saveeuid); + return; } @@ -279,10 +306,10 @@ goto err1; } + curoff = lseek(mbfd, (off_t)0, SEEK_END); + if (!nobiff) { - /* Get the starting offset of the new message for biff. */ - curoff = lseek(mbfd, (off_t)0, SEEK_END); - (void)snprintf(biffmsg, sizeof(biffmsg), "%s@%qd\n", + (void)snprintf(biffmsg, sizeof(biffmsg), "%s@%qd\n", name, curoff); } @@ -304,6 +331,7 @@ warn("temporary file: %s", strerror(errno)); err2: (void)ftruncate(mbfd, curoff); err1: (void)close(mbfd); + seteuid(saveeuid); return; } @@ -320,8 +348,11 @@ if (close(mbfd)) { e_to_sys(errno); warn("%s: %s", path, strerror(errno)); + seteuid(saveeuid); return; } + + seteuid(saveeuid); if (!nobiff) notifybiff(biffmsg); -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sat Mar 1 07:00:03 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA07725 for bugs-outgoing; Sat, 1 Mar 1997 07:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA07705; Sat, 1 Mar 1997 07:00:01 -0800 (PST) Date: Sat, 1 Mar 1997 07:00:01 -0800 (PST) Message-Id: <199703011500.HAA07705@freefall.freebsd.org> To: freebsd-bugs Cc: From: j@uriah.heep.sax.de (J Wunsch) Subject: Re: conf/2838: Installation chooses incorrect default netmask Reply-To: j@uriah.heep.sax.de (J Wunsch) Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR conf/2838; it has been noted by GNATS. From: j@uriah.heep.sax.de (J Wunsch) To: pgiffuni@fps.biblos.unal.edu.co Cc: freebsd-gnats-submit@freebsd.org Subject: Re: conf/2838: Installation chooses incorrect default netmask Date: Sat, 1 Mar 1997 15:31:16 +0100 As pgiffuni@fps.biblos.unal.edu.co wrote: > In the initial ftp or nfs installation, or when an interface is added > the mask is, by default set to 255.255.255.0; the IP address of the > system is ignored. > >How-To-Repeat: > It's not really a problem since we can always set this manually, but > add an interface (/stand/sysinstall) on a class B network. > >Fix: > IMO the netmask selection should be intelligent enough to set 255.255.0.0 > when it is in a class B network, and 255.0.0.0 on a class A network. > The class could be determined by the IP address just typed. We've been discussing this back in the days when the default has been introduced (there used to be no default at all before, and you was always forced to type in something yourself), and we quickly came to the conclusion that 255.255.255.0 is the most reasonably default that can be provided. Almost none of the existing real-life class A or class B networks run without subnetting, and the probably most commonly used subnet mask at least in the typical university class B networks is /24 anyway. I don't think we'd do any better using something else. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sat Mar 1 08:29:00 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA15618 for bugs-outgoing; Sat, 1 Mar 1997 08:29:00 -0800 (PST) Received: from crh.cl.msu.edu (crh.cl.msu.edu [35.8.1.24]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA15608 for ; Sat, 1 Mar 1997 08:28:57 -0800 (PST) Received: (from henrich@localhost) by crh.cl.msu.edu (8.8.5/8.8.4) id LAA13156; Sat, 1 Mar 1997 11:28:39 -0500 (EST) From: Charles Henrich Message-Id: <199703011628.LAA13156@crh.cl.msu.edu> Subject: Re: mail.local modifications? To: nate@mt.sri.com (Nate Williams) Date: Sat, 1 Mar 1997 11:28:39 -0500 (EST) Cc: jkh@time.cdrom.com, bde@zeta.org.au, freebsd-bugs@freebsd.org In-Reply-To: <199703010718.AAA18610@rocky.mt.sri.com> from Nate Williams at "Mar 1, 97 00:18:23 am" X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > > If the program was written with tabs (as most programs are), and a > person uses spaces in their diff, it makes things really obnoxious when > someone brings it up in an editor that has tabs set to be 4-spaces wide. > > If you don't keep the style consistant, you end up with sources that > look like this (an exaggeration obviously). [snip] > (Although, some of us prefer 4-space tabs. :) I very much understand that, I am a extreme stickler in my organization when it comes to following style guidlines as well. Actually I almost think your made up "bad" example is more readable :) I Absolutely abhor tabs for the exact problem of some people use 4 space tabs, other 8, other 6, other 2, which makes lining up adjacent lines almost damn near impossible unless also indented to whatever tab spacing is currently operating. Bruce, I must apologize for getting as miffed as I did as fast as I did, bad timing on several incidents came together at once. Might I suggest perhaps in the future that if you say something like "Thanks for the patch, I looked it over, it had one small problem. You used spaces instead of tabs which makes the patch fall out of style on that piece of code. I changed those few lines and submitted it. In the future please try and follow closely the style of the existing piece of code you are working on, for more details you can also take a look at style(9)." To everyone: I reviewed the section on submitting patches before submitting it, nowhere did it mention the style man page. On top of it, the style man page doesnt mention spaces vs. tabs (or at least searching the pages for tab didnt find anything on my copy :) -Crh Charles Henrich Michigan State University henrich@msu.edu http://pilot.msu.edu/~henrich From owner-freebsd-bugs Sat Mar 1 08:32:24 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA16004 for bugs-outgoing; Sat, 1 Mar 1997 08:32:24 -0800 (PST) Received: from crh.cl.msu.edu (crh.cl.msu.edu [35.8.1.24]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA15996 for ; Sat, 1 Mar 1997 08:32:22 -0800 (PST) Received: (from henrich@localhost) by crh.cl.msu.edu (8.8.5/8.8.4) id LAA13177; Sat, 1 Mar 1997 11:32:09 -0500 (EST) From: Charles Henrich Message-Id: <199703011632.LAA13177@crh.cl.msu.edu> Subject: Re: mail.local modifications? To: joerg_wunsch@uriah.heep.sax.de Date: Sat, 1 Mar 1997 11:32:08 -0500 (EST) Cc: mpp@freefall.freebsd.org, freebsd-bugs@freebsd.org In-Reply-To: from J Wunsch at "Mar 1, 97 03:50:32 pm" X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > As Charles Henrich wrote: > > > Okay here is the correct patch. This is the same one I've been running for > > years, so unless I had a complete brain fart, it works wonderful. Everyone > > please review and commit asap, thanks! > > Charles, you'd really make our work easier by using a consistent > style, and adhering to style(9) wherever it makes sense. As it was, > it took just another 15 minutes for somebody else to walk over your > patch, where you could have done it without any additional effort in > the first place. How does it take 15 minutes to type "cts" on about 10 lines? > + /* > + * Now that the box is created and permissions are > + * correct, we close it and go back to the top so that > + * we will come in and write as the user. We don't > + * seteuid() before the above open, because we have to > + * be root/bin to write in /var/mail. > + */ Why remove my name from the comment? I dont know about you, but isnt it nice to be able to go back and find the moron (i.e. in this case me) who broke this particular piece of code and ask them for the details of why? -Crh Charles Henrich Michigan State University henrich@msu.edu http://pilot.msu.edu/~henrich From owner-freebsd-bugs Sat Mar 1 09:52:30 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA22471 for bugs-outgoing; Sat, 1 Mar 1997 09:52:30 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id JAA22461 for ; Sat, 1 Mar 1997 09:52:27 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id SAA10863; Sat, 1 Mar 1997 18:52:22 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id SAA02141; Sat, 1 Mar 1997 18:44:20 +0100 (MET) Message-ID: Date: Sat, 1 Mar 1997 18:44:20 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: henrich@crh.cl.msu.edu (Charles Henrich) Cc: mpp@freefall.freebsd.org, freebsd-bugs@freebsd.org Subject: Re: mail.local modifications? References: <199703011632.LAA13177@crh.cl.msu.edu> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199703011632.LAA13177@crh.cl.msu.edu>; from Charles Henrich on Mar 1, 1997 11:32:08 -0500 Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As Charles Henrich wrote: > How does it take 15 minutes to type "cts" on about 10 lines? Because there were more style violations i've caught (and even more Bruce reported to me :). > > + * seteuid() before the above open, because we have to > > + * be root/bin to write in /var/mail. > > + */ > > Why remove my name from the comment? Because CVS is there to track metadata. I.e., if your patch is accepted, you'll be given credit in the ``Submitted by'' line of the commit message (which will remain in the CVS track record, so anybody can verify this later). Think about how the sources e.g. in the VM area would be spicked with `D.G.' and `J.D.' if we'd all leave our initials there. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sat Mar 1 09:58:28 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA22910 for bugs-outgoing; Sat, 1 Mar 1997 09:58:28 -0800 (PST) Received: from crh.cl.msu.edu (crh.cl.msu.edu [35.8.1.24]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id JAA22902 for ; Sat, 1 Mar 1997 09:58:24 -0800 (PST) Received: (from henrich@localhost) by crh.cl.msu.edu (8.8.5/8.8.4) id MAA14024; Sat, 1 Mar 1997 12:58:17 -0500 (EST) From: Charles Henrich Message-Id: <199703011758.MAA14024@crh.cl.msu.edu> Subject: Re: mail.local modifications? To: joerg_wunsch@uriah.heep.sax.de Date: Sat, 1 Mar 1997 12:58:17 -0500 (EST) Cc: mpp@freefall.freebsd.org, freebsd-bugs@freebsd.org In-Reply-To: from J Wunsch at "Mar 1, 97 06:44:20 pm" X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > As Charles Henrich wrote: > > > How does it take 15 minutes to type "cts" on about 10 lines? > > Because there were more style violations i've caught (and even more > Bruce reported to me :). Could you enumerate them? -Crh Charles Henrich Michigan State University henrich@msu.edu http://pilot.msu.edu/~henrich From owner-freebsd-bugs Sat Mar 1 10:21:26 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA23802 for bugs-outgoing; Sat, 1 Mar 1997 10:21:26 -0800 (PST) Received: from halloran-eldar.lcs.mit.edu (halloran-eldar.lcs.mit.edu [18.26.0.159]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id KAA23797 for ; Sat, 1 Mar 1997 10:21:23 -0800 (PST) Received: by halloran-eldar.lcs.mit.edu; (5.65v3.2/1.1.8.2/19Aug95-0530PM) id AA04876; Sat, 1 Mar 1997 13:21:09 -0500 Date: Sat, 1 Mar 1997 13:21:09 -0500 From: Garrett Wollman Message-Id: <9703011821.AA04876@halloran-eldar.lcs.mit.edu> To: Charles Henrich Cc: freebsd-bugs@freebsd.org Subject: Re: mail.local modifications? In-Reply-To: <199703011632.LAA13177@crh.cl.msu.edu> References: <199703011632.LAA13177@crh.cl.msu.edu> Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk < said: > Why remove my name from the comment? I dont know about you, but > isnt it nice to be able to go back and find the moron (i.e. in this > case me) who broke this particular piece of code and ask them for > the details of why? That's what revision-control logs are for. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, ANA, or NSA| - Susan Aglukark and Chad Irschick From owner-freebsd-bugs Sat Mar 1 11:51:47 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA26488 for bugs-outgoing; Sat, 1 Mar 1997 11:51:47 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id LAA26482 for ; Sat, 1 Mar 1997 11:51:42 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id UAA14779; Sat, 1 Mar 1997 20:51:32 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id TAA02391; Sat, 1 Mar 1997 19:25:24 +0100 (MET) Message-ID: Date: Sat, 1 Mar 1997 19:25:23 +0100 From: j@uriah.heep.sax.de (J Wunsch) To: henrich@crh.cl.msu.edu (Charles Henrich) Cc: mpp@freefall.freebsd.org, freebsd-bugs@freebsd.org Subject: Re: mail.local modifications? References: <199703011758.MAA14024@crh.cl.msu.edu> X-Mailer: Mutt 0.55-PL10 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199703011758.MAA14024@crh.cl.msu.edu>; from Charles Henrich on Mar 1, 1997 12:58:17 -0500 Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As Charles Henrich wrote: > > > How does it take 15 minutes to type "cts" on about 10 lines? > > > > Because there were more style violations i've caught (and even more > > Bruce reported to me :). > > Could you enumerate them? Hmm, the emacs buffers are already deleted where i did it... At least, there were missing spaces after `if', a comment that wasn't in /* * xxx */ form even though it was multi-line, maybe more. It required a pass over all the spots you've been changing. However, i don't feel very competent for the contents, i let others judge about this -- and i feel this is more important in the end than just the style only. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-bugs Sat Mar 1 12:20:06 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA27612 for bugs-outgoing; Sat, 1 Mar 1997 12:20:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA27606; Sat, 1 Mar 1997 12:20:03 -0800 (PST) Resent-Date: Sat, 1 Mar 1997 12:20:03 -0800 (PST) Resent-Message-Id: <199703012020.MAA27606@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, Tor.Egge@idt.ntnu.no Received: from pat.idt.unit.no (0@pat.idt.unit.no [129.241.103.5]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id MAA27426 for ; Sat, 1 Mar 1997 12:17:55 -0800 (PST) Received: from ikke.idt.unit.no (tegge@ikke.idt.unit.no [129.241.111.65]) by pat.idt.unit.no (8.8.5/8.8.5) with ESMTP id VAA14624 for ; Sat, 1 Mar 1997 21:17:49 +0100 (MET) Received: (from tegge@localhost) by ikke.idt.unit.no (8.8.5/8.8.3) id VAA00598; Sat, 1 Mar 1997 21:17:49 +0100 (MET) Message-Id: <199703012017.VAA00598@ikke.idt.unit.no> Date: Sat, 1 Mar 1997 21:17:49 +0100 (MET) From: Tor Egge Reply-To: Tor.Egge@idt.ntnu.no To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/2840: mlock+minherit+fork+munlock causes panics or freezes Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2840 >Category: kern >Synopsis: mlock+minherit+fork+munlock causes panics or freezes >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 1 12:20:01 PST 1997 >Last-Modified: >Originator: Tor Egge >Organization: Norwegian University of Science and Technology, Trondheim, Norway >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD ikke.idt.unit.no 3.0-CURRENT FreeBSD 3.0-CURRENT #2: Sat Feb 1 03:55:57 MET 1997 root@ikke.idt.unit.no:/usr/src/sys-UP/compile/TEGGE i386 >Description: Accounting of wired pages is not consistent under all circumstances. By using mlock() and minherit(), then fork(), then munlock() in both child and parent processes, the wired count is reduced by both munlocks(), causing a too small (or even negative) value.for wired count. Other side effects are freezes (i.e. kernel is alive, but all programs hangs), or panics. >How-To-Repeat: Look at wire count (using top or systat). Run the appended program as root. If the program crashes, run it again. Look at wire count again. --- #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(int argc,char **argv) { int i; int j; char *a; char *b; char *aend; char *p; size_t alen; size_t blen; pid_t pid; int wres; int sum; int res; alen = 1024 * 1024 * 1; blen = 1024 * 1024 * 1; a = malloc(alen); assert(a); aend = a + alen; sum = 0; for (p=a;p0) { /* */ } munlock(b,blen); printf("munlock: res=%d, errno=%d\n",res,errno); free(b); } exit(0); } >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sat Mar 1 12:53:11 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA28872 for bugs-outgoing; Sat, 1 Mar 1997 12:53:11 -0800 (PST) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id MAA28864; Sat, 1 Mar 1997 12:53:05 -0800 (PST) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <15867(2)>; Sat, 1 Mar 1997 12:52:35 PST Received: by crevenia.parc.xerox.com id <177476>; Sat, 1 Mar 1997 12:52:23 -0800 From: Bill Fenner To: freebsd-gnats-submit@freebsd.org, mpp@freebsd.org Subject: Re: bin/2584 Cc: freebsd-bugs@freebsd.org Message-Id: <97Mar1.125223pst.177476@crevenia.parc.xerox.com> Date: Sat, 1 Mar 1997 12:52:18 PST Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Actually, I think I prefer if (hp && hp->h_length == sizeof to->sin_addr) { do DNS lookup succeeded stuff } else { do DNS lookup failed stuff } since if you got back a response longer than you expect and you copy the first 4 bytes, you're likely to just have junk. I'd rather it say "host not found" than "trying 58.16.99.128". Bill From owner-freebsd-bugs Sat Mar 1 15:48:42 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA04814 for bugs-outgoing; Sat, 1 Mar 1997 15:48:42 -0800 (PST) Received: from spinner.DIALix.COM (spinner.DIALix.COM [192.203.228.67]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA04807 for ; Sat, 1 Mar 1997 15:48:36 -0800 (PST) Received: from spinner.DIALix.COM (localhost.DIALix.oz.au [127.0.0.1]) by spinner.DIALix.COM (8.8.5/8.8.5) with ESMTP id HAA11217; Sun, 2 Mar 1997 07:47:48 +0800 (WST) Message-Id: <199703012347.HAA11217@spinner.DIALix.COM> X-Mailer: exmh version 2.0gamma 1/27/96 To: Charles Henrich cc: joerg_wunsch@uriah.heep.sax.de, mpp@freefall.freebsd.org, freebsd-bugs@FreeBSD.org Subject: Re: mail.local modifications? In-reply-to: Your message of "Sat, 01 Mar 1997 12:58:17 EST." <199703011758.MAA14024@crh.cl.msu.edu> Date: Sun, 02 Mar 1997 07:47:47 +0800 From: Peter Wemm Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Charles Henrich wrote: > > As Charles Henrich wrote: > > > > > How does it take 15 minutes to type "cts" on about 10 lines? > > > > Because there were more style violations i've caught (and even more > > Bruce reported to me :). > > Could you enumerate them? > > -Crh I'd hate to throw fuel on the fire, but I'd prefer that we replaced the mail.local sources with a .PATH to src/usr.sbin/sendmail/mail.local/*.. The change you describe is already present there (and has been for quite some time), along with a number of other enhancements. Unfortunately, there is some portability cruft in there, but at least it's being reasonably actively maintained. Cheers, -Peter From owner-freebsd-bugs Sat Mar 1 17:00:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA10216 for bugs-outgoing; Sat, 1 Mar 1997 17:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA10210; Sat, 1 Mar 1997 17:00:03 -0800 (PST) Resent-Date: Sat, 1 Mar 1997 17:00:03 -0800 (PST) Resent-Message-Id: <199703020100.RAA10210@freefall.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-bugs Resent-Reply-To: FreeBSD-gnats@freefall.FreeBSD.org, eserte@cs.tu-berlin.de Received: from cabulja.herceg.de (cottrell.dialup.fu-berlin.de [160.45.222.107]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA09556 for ; Sat, 1 Mar 1997 16:50:32 -0800 (PST) Received: (from eserte@localhost) by cabulja.herceg.de (8.7.5/8.7.3) id SAA00468; Sat, 1 Mar 1997 18:18:47 +0100 (MET) Message-Id: <199703011718.SAA00468@cabulja.herceg.de> Date: Sat, 1 Mar 1997 18:18:47 +0100 (MET) From: eserte@cs.tu-berlin.de Reply-To: eserte@cs.tu-berlin.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/2841: locale: LC_COLLATE for lt_LN.ISO_8859-1: change order for Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Number: 2841 >Category: bin >Synopsis: locale: LC_COLLATE for lt_LN.ISO_8859-1: change order for >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Mar 1 17:00:01 PST 1997 >Last-Modified: >Originator: Slaven Rezic >Organization: Private FreeBSD site, Berlin, Germany >Release: FreeBSD 3.0 i386 >Environment: I fetched only colldef for FreeBSD 3.0 and looked into the sources ... >Description: LC_COLLATE for lt_LN.ISO_8859-1 or at least for de* should be changed to put and (german double s) into one equivalence class. It is not quite right since for german sorting, is expanded into two , but it's better than putting behind . >How-To-Repeat: >Fix: see decription >Audit-Trail: >Unformatted: From owner-freebsd-bugs Sat Mar 1 19:06:56 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA16007 for bugs-outgoing; Sat, 1 Mar 1997 19:06:56 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA16002 for ; Sat, 1 Mar 1997 19:06:52 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id OAA05452; Sun, 2 Mar 1997 14:01:58 +1100 Date: Sun, 2 Mar 1997 14:01:58 +1100 From: Bruce Evans Message-Id: <199703020301.OAA05452@godzilla.zeta.org.au> To: henrich@crh.cl.msu.edu, peter@spinner.DIALix.COM Subject: Re: mail.local modifications? Cc: freebsd-bugs@FreeBSD.org, joerg_wunsch@uriah.heep.sax.de, mpp@freefall.freebsd.org Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk >I'd hate to throw fuel on the fire, but I'd prefer that we replaced the >mail.local sources with a .PATH to src/usr.sbin/sendmail/mail.local/*.. > >The change you describe is already present there (and has been for quite >some time), along with a number of other enhancements. Unfortunately, >there is some portability cruft in there, but at least it's being reasonably >actively maintained. It's also in Lite2. Berkeley ids for mail.local.c: -current: 8.6 Lite2: 8.22 sendmail: 8.34 All the versions make heavy work of restoring the original euid. The Lite2 and senddmail versions seem to miss restoring it in at least one case (when close(mfbd) fails). The easiest way to restore it is to use seteuid(0) after deliver(). Bruce From owner-freebsd-bugs Sat Mar 1 20:56:15 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA21148 for bugs-outgoing; Sat, 1 Mar 1997 20:56:15 -0800 (PST) Received: from crh.cl.msu.edu (crh.cl.msu.edu [35.8.1.24]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA21112 for ; Sat, 1 Mar 1997 20:55:58 -0800 (PST) Received: (from henrich@localhost) by crh.cl.msu.edu (8.8.5/8.8.4) id XAA02996; Sat, 1 Mar 1997 23:54:52 -0500 (EST) From: Charles Henrich Message-Id: <199703020454.XAA02996@crh.cl.msu.edu> Subject: Re: mail.local modifications? To: bde@zeta.org.au (Bruce Evans) Date: Sat, 1 Mar 1997 23:54:52 -0500 (EST) Cc: peter@spinner.DIALix.COM, freebsd-bugs@FreeBSD.org, joerg_wunsch@uriah.heep.sax.de, mpp@freefall.freebsd.org In-Reply-To: <199703020301.OAA05452@godzilla.zeta.org.au> from Bruce Evans at "Mar 2, 97 02:01:58 pm" X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk > >I'd hate to throw fuel on the fire, but I'd prefer that we replaced the > >mail.local sources with a .PATH to src/usr.sbin/sendmail/mail.local/*.. > > > >The change you describe is already present there (and has been for quite > >some time), along with a number of other enhancements. Unfortunately, > >there is some portability cruft in there, but at least it's being reasonably > >actively maintained. > > It's also in Lite2. Berkeley ids for mail.local.c: > > -current: 8.6 > Lite2: 8.22 > sendmail: 8.34 > > All the versions make heavy work of restoring the original euid. > The Lite2 and senddmail versions seem to miss restoring it in at least > one case (when close(mfbd) fails). The easiest way to restore it is to > use seteuid(0) after deliver(). Im happy with any change as long as the features get added :) It does seem to make most sense to tie it to sendmail which mail.local is sort of a complimentary component.. -Crh Charles Henrich Michigan State University henrich@msu.edu http://pilot.msu.edu/~henrich From owner-freebsd-bugs Sat Mar 1 23:26:33 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA26906 for bugs-outgoing; Sat, 1 Mar 1997 23:26:33 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA26884; Sat, 1 Mar 1997 23:26:21 -0800 (PST) Date: Sat, 1 Mar 1997 23:26:21 -0800 (PST) From: Mike Pritchard Message-Id: <199703020726.XAA26884@freefall.freebsd.org> To: kng@techincom.lipetsk.su, mpp, freebsd-bugs Subject: Re: kern/2015 Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: 2.2-960801-SNAP kernel dosn't recognise multi-sector transfer capability of IDE HDDs State-Changed-From-To: open-closed State-Changed-By: mpp State-Changed-When: Sat Mar 1 23:25:24 PST 1997 State-Changed-Why: The originator says that this has been fixed in a later version of FreeBSD.