From owner-freebsd-bugs Sun Oct 7 5:20: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4442837B409 for ; Sun, 7 Oct 2001 05:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f97CK1w25485; Sun, 7 Oct 2001 05:20:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E9F8037B406 for ; Sun, 7 Oct 2001 05:15:21 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f97CFLC25200; Sun, 7 Oct 2001 05:15:21 -0700 (PDT) (envelope-from nobody) Message-Id: <200110071215.f97CFLC25200@freefall.freebsd.org> Date: Sun, 7 Oct 2001 05:15:21 -0700 (PDT) From: liang weiya To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/31097: main thread will accept() failure when son thread and main thread accept() at the same time Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31097 >Category: misc >Synopsis: main thread will accept() failure when son thread and main thread accept() at the same time >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 07 05:20:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: liang weiya >Release: 4.1.1-Release >Organization: >Environment: >Description: when main thread and son threads call accept() after bind() at the same time , main thread's accept() will return -1 yet son threads's return value is ok. (env: g++ 2.95, pthread ,all are origin installed version) same programs tested in redhat linux 7.1 and aix4.3 , and all return correct value after accept(). >How-To-Repeat: example: void (*fun)(..) ; main(){ ... int s = socket (...) ; bind(...) ; pthread_create(fun,...) ; int v = accept(s,....) ; // here will always return -1 . ... } void* fun(s){ ... int sv = accept(s,...) ; // return ok ... } >Fix: this is used for thread pool server mode . don't let main() call accept() when thread pool call accept() . >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 7 9: 0: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FAAA37B401 for ; Sun, 7 Oct 2001 09:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f97G02O77773; Sun, 7 Oct 2001 09:00:02 -0700 (PDT) (envelope-from gnats) Date: Sun, 7 Oct 2001 09:00:02 -0700 (PDT) Message-Id: <200110071600.f97G02O77773@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dima Dorfman Subject: Re: kern/30985: incorrect signal handling in snpread() Reply-To: Dima Dorfman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/30985; it has been noted by GNATS. From: Dima Dorfman To: Valentin Nechayev Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/30985: incorrect signal handling in snpread() Date: Sun, 07 Oct 2001 08:50:41 -0700 Valentin Nechayev wrote: > >Fix: > > Following simple fix provides checking for tsleep() return code > and EINTR returning when signal is caught. It is applicable for > all late 4.* systems. > It also increases IPL around the data wait cycle. As data can be put > to snoop device during interrupt (am I wrong?), it is desirable. I don't think it's possible for data to enter snp during an interrupt. At least, there are no provisions for this anywhere else in the code. Thus, I think this is undesirable. > But it should be noted that there are some principal architectural > issues in this approach. As snp device is designed for use when > select/poll is used to wait and ioctl(FIONREAD) is desired to get > tty status, it may be desirable to avoid blocking reads of snp device > totally. I can't suppose what approach is more right. I think it's okay to sleep in snpread. snp generally tries to act like any other driver, and most allow sleeping in their read routine. > do { > if (snp->snp_len == 0) { > - if (flag & IO_NDELAY) > + if (flag & IO_NDELAY) { > + splx(s); > return (EWOULDBLOCK); > + } > snp->snp_flags |= SNOOP_RWAIT; > - tsleep((caddr_t) snp, (PZERO + 1) | PCATCH, "snoopread" > , 0); > + error = tsleep((caddr_t) snp, (PZERO + 1) | PCATCH, "snoopread", 0); > + if (error == EINTR || error == ERESTART) { > + splx(s); > + return EINTR; > + } Why can't we just return whatever tsleep() returns, as most (all?) other drivers do? Like so (untested): Index: snp.c =================================================================== RCS file: /ref/cvsf/src/sys/dev/snp/snp.c,v retrieving revision 1.63 diff -u -r1.63 snp.c --- snp.c 2001/09/12 08:37:11 1.63 +++ snp.c 2001/10/07 15:44:47 @@ -255,7 +255,10 @@ if (flag & IO_NDELAY) return (EWOULDBLOCK); snp->snp_flags |= SNOOP_RWAIT; - tsleep((caddr_t)snp, (PZERO + 1) | PCATCH, "snprd", 0); + error = tsleep((caddr_t)snp, (PZERO + 1) | PCATCH, + "snprd", 0); + if (error != 0) + return (error); } } while (snp->snp_len == 0); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 7 9:27:44 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0BBB837B407; Sun, 7 Oct 2001 09:27:43 -0700 (PDT) Received: (from tom@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f97GJL882889; Sun, 7 Oct 2001 09:19:21 -0700 (PDT) (envelope-from tom) Date: Sun, 7 Oct 2001 09:19:21 -0700 (PDT) From: Message-Id: <200110071619.f97GJL882889@freefall.freebsd.org> To: jazepeda@pacbell.net, tom@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/26307: libc_r aborts when using the KDE media player (noatun) with the sound server(aRts) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: libc_r aborts when using the KDE media player (noatun) with the sound server(aRts) State-Changed-From-To: closed->open State-Changed-By: tom State-Changed-When: Sun Oct 7 09:17:25 PDT 2001 State-Changed-Why: Alex Zepeda reports: The band-aid solution I implemented was to hack up a copy of mpg123 as the mp3 plugin, and hack up a separate ogg vorbis plugin for noatun. This should be re-opened and re-checked with the mpeglib plugin. Actually, the mpg123 based plugin is generally superior, however, judging by where the crash is pointing at (within libc_r), there's something wrong with libc_r, thus the open pr. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=26307 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 7 11: 0: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BA06C37B406 for ; Sun, 7 Oct 2001 11:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f97I01h96434; Sun, 7 Oct 2001 11:00:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8572837B401 for ; Sun, 7 Oct 2001 10:54:55 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f97Hsts96052; Sun, 7 Oct 2001 10:54:55 -0700 (PDT) (envelope-from nobody) Message-Id: <200110071754.f97Hsts96052@freefall.freebsd.org> Date: Sun, 7 Oct 2001 10:54:55 -0700 (PDT) From: Sam Choong Wai To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/31102: lge + Pentium III data transmission problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31102 >Category: kern >Synopsis: lge + Pentium III data transmission problem >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 07 11:00:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Sam Choong Wai >Release: 4.4 iso >Organization: Southern College >Environment: FreeBSD cc3.intranet.sc.edu.my 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Thu Oct 4 16 :06:02 GMT 2001 root@cc3.intranet.sc.edu.my:/usr/src/sys/compile/GENERIC i3 86 >Description: Case 1: Recompile kernel with "device lge" + "SMP" in a dual Pentium II 400MHz machine, everything work just fine ! Case 2: Recompile kernel with "device lge" + "SMP" in a single Pentium III 1G machine, some data transmission became "corrupted", there are: samba, ftp ( so far I tried ), but telnet and ping worked just fine. Case 3: Same as case 2 but in a dual PIII 1G machine, same problem. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 7 11:12:30 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from VisaPro.com (lsanca1-ar2-013-165.lsanca1.dsl.gtei.net [4.33.13.165]) by hub.freebsd.org (Postfix) with SMTP id B670937B406 for ; Sun, 7 Oct 2001 11:12:17 -0700 (PDT) To: freebsd-bugs@FreeBSD.ORG From: Lucy Subject: ONLINE IMMIGRATION - TRAVEL VISAS - GREEN CARD LOTTERY MIME-Version: 1.0 (produced by IP*Works! www.dev-soft.com) Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Message-Id: <20011007181217.B670937B406@hub.freebsd.org> Date: Sun, 7 Oct 2001 11:12:17 -0700 (PDT) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Greetings! You are cordially invited to attend the launch of VisaPro. www.VisaPro.com Complete Online Visa Processing - It's Fast, Easy & Economical. PROCESS YOUR IMMIGRATION OR TRAVEL VISA ONLINE Select visa, Apply and Collect your visa. Log on to VisaPro today! SUBMIT ERROR-FREE GREEN CARD LOTTERY APPLICATION VisaPro guarantees the error-free submission of your Green Card Lottery Application. This is a great opportunity to help your colleagues, friends and family win the US Green Card Lottery. Forward this email to them Today! FAST AND EFFICIENT VISA PROCESSING Start processing your visa application in minutes, not days. SAVE VALUABLE MONEY VisaPro's low, flat fee is very economical compared with traditional visa application procedures. SAVE VALUABLE TIME Tracking the status of your visa application is a snap with your own online VisaPro account. VISAPRO COMBINES HIGH TECH WITH HIGH TOUCH Use VisaPro's cutting-edge technology to consult online with VisaPro's expert immigration attorneys. GET INFORMATION WHEN YOU NEED IT VisaPro is open 24 hours a day, every day of the year. Thank You, The VisaPro Team www.VisaPro.com Complete Online Visa Processing by Immigration Experts Visit our Green Card Lottery Center today at: http://GreenCardLottery.VisaPro.com ***************************************************************************= * We do not intend to invade your privacy, this is just for information purposes. If you do not wish to receive our email please let us know and we will REMOVE your email immediately. ***************************************************************************= * To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 7 11:20: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E804737B405 for ; Sun, 7 Oct 2001 11:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f97IK2T01515; Sun, 7 Oct 2001 11:20:02 -0700 (PDT) (envelope-from gnats) Date: Sun, 7 Oct 2001 11:20:02 -0700 (PDT) Message-Id: <200110071820.f97IK2T01515@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Valentin Nechayev Subject: Re: kern/30985: incorrect signal handling in snpread() Reply-To: Valentin Nechayev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/30985; it has been noted by GNATS. From: Valentin Nechayev To: Dima Dorfman Cc: Valentin Nechayev , FreeBSD-gnats-submit@freebsd.org Subject: Re: kern/30985: incorrect signal handling in snpread() Date: Sun, 7 Oct 2001 21:15:36 +0300 Sun, Oct 07, 2001 at 08:50:41, dima wrote about "Re: kern/30985: incorrect signal handling in snpread()": > > - tsleep((caddr_t) snp, (PZERO + 1) | PCATCH, "snoopread" > > , 0); > > + error = tsleep((caddr_t) snp, (PZERO + 1) | PCATCH, "snoopread", 0); > > + if (error == EINTR || error == ERESTART) { > > + splx(s); > > + return EINTR; > > + } > > Why can't we just return whatever tsleep() returns, as most (all?) > other drivers do? Like so (untested): I am not experienced kernel hacker ;) The examples I saw in kernel code, mostly test for ERESTART and possibly EINTR and exit from routine in case of such codes. tsleep(9) man page (in RELENG_4_4) mentions the only another return code allowed - EWOULDBLOCK in timeout case, but snpread() doesn't suppose timeout. If you suppose that exit on any nonzero value is correct, you probably are right. > snp->snp_flags |= SNOOP_RWAIT; > - tsleep((caddr_t)snp, (PZERO + 1) | PCATCH, "snprd", 0); > + error = tsleep((caddr_t)snp, (PZERO + 1) | PCATCH, > + "snprd", 0); > + if (error != 0) > + return (error); > } /netch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 7 11:30: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D07437B403 for ; Sun, 7 Oct 2001 11:30:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f97IU4Z03910; Sun, 7 Oct 2001 11:30:04 -0700 (PDT) (envelope-from gnats) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id A325237B406 for ; Sun, 7 Oct 2001 11:27:03 -0700 (PDT) Received: from citylink.dinoex.sub.org (uucp@localhost) by net2.dinoex.sub.org (8.11.6/8.11.6) with UUCP id f97IQRU13900 for freebsd.org!FreeBSD-gnats-submit; Sun, 7 Oct 2001 20:26:27 +0200 (CEST) (envelope-from citylink.dinoex.sub.de!admin%dyn@citylink.dinoex.sub.org) Received: from dyn.oper.dinoex.org by citylink.dinoex.sub.org (8.8.5/PMuch-B3b) with ESMTP id UAA17629 for ; Sun, 7 Oct 2001 20:23:03 +0200 (CEST) Received: (from admin@localhost) by dyn.oper.dinoex.org (8.11.1/8.11.1) id f97ILDb06332; Sun, 7 Oct 2001 20:21:13 +0200 (CEST) (envelope-from admin) Message-Id: <200110071821.f97ILDb06332@dyn.oper.dinoex.org> Date: Sun, 7 Oct 2001 20:21:13 +0200 (CEST) From: System Admin Account Reply-To: peter.much@sercon.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: kern/31103: nfs read: Input/output error Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31103 >Category: kern >Synopsis: nfs read i/o error when nfs-mounting onto server >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 07 11:30:02 PDT 2001 >Closed-Date: >Last-Modified: >Originator: System Admin Account >Release: FreeBSD 4.4-RELEASE i386 >Organization: no org >Environment: Three systems: dyn: FreeBSD 4.2-RELEASE nfs client from "srv" nfs server to "disp" disp: FreeBSD 4.4-RELEASE nfs client from "dyn" srv: FreeBSD 2.2.1-RELEASE nfs server to "dyn" The same thing happens when exchanging the 4.2- and 4.4- RELEASE systems. -> This bug is still present in 4.4 >Description: At the moment when mounting from "srv" onto "dyn" into a directory in the filesystem that is exported to "disp", "disp" gets a read error from the nfs ("i/o error" or "permission denied"). (The export from "dyn" to "disp" has option "-alldirs" set.) >How-To-Repeat: see description above. >Fix: Puuuh, not yet. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 7 11:47:46 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 371BD37B406; Sun, 7 Oct 2001 11:47:44 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f97IeKF05849; Sun, 7 Oct 2001 11:40:20 -0700 (PDT) (envelope-from des) Date: Sun, 7 Oct 2001 11:40:20 -0700 (PDT) From: Message-Id: <200110071840.f97IeKF05849@freefall.freebsd.org> To: des@FreeBSD.org, freebsd-bugs@FreeBSD.org, des@FreeBSD.org Subject: Re: bin/31094: show more precision in fetch % complete Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: show more precision in fetch % complete Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: des Responsible-Changed-When: Sun Oct 7 11:40:02 PDT 2001 Responsible-Changed-Why: fetch(1) is mine. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31094 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 7 20:50:17 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 77DA237B407 for ; Sun, 7 Oct 2001 20:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f983o1j83927; Sun, 7 Oct 2001 20:50:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D3D5937B407 for ; Sun, 7 Oct 2001 20:41:12 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f983fCv83034; Sun, 7 Oct 2001 20:41:12 -0700 (PDT) (envelope-from nobody) Message-Id: <200110080341.f983fCv83034@freefall.freebsd.org> Date: Sun, 7 Oct 2001 20:41:12 -0700 (PDT) From: Takanori Saneto To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/31122: linux setre*uid() doesn't handle uid -1 properly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31122 >Category: kern >Synopsis: linux setre*uid() doesn't handle uid -1 properly >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 07 20:50:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Takanori Saneto >Release: 5.0-CURRENT as of 2001/10/07 >Organization: an individual >Environment: FreeBSD muse.sanewo 5.0-CURRENT FreeBSD 5.0-CURRENT #2: Sun Oct 7 18:06:09 JST 2001 root@muse.sanewo:/export/usr/obj/usr/src/sys/MUSE i386 >Description: Although manpage of setre*uid() says that "Passing -1 as an argument causes the corresponding value to remain unchanged," under linux ABI, they are treated as if 65535 was specified. (Maybe this is i386 specific) Because of this, vmware won't start up on CURRENT. >How-To-Repeat: Compile following program in linux environment and run it as root. #include #include #include #include void printid() { printf("ruid=%d, euid=%d\n", getuid(), geteuid()); } int main(int ac, char **av) { printid(); if (setreuid(-1,-1) < 0) { perror("setreuid"); exit(1); } printid(); } >Fix: Following patch should fix the problem. Yes, it's a quick hack. Index: src/sys/compat/linux/linux_uid16.c =================================================================== RCS file: /export/cvsup/cvs/src/sys/compat/linux/linux_uid16.c,v retrieving revision 1.2 diff -u -u -r1.2 linux_uid16.c --- linux_uid16.c 12 Sep 2001 08:36:57 -0000 1.2 +++ linux_uid16.c 15 Sep 2001 06:32:48 -0000 @@ -244,13 +244,16 @@ return (setuid(td, &bsd)); } +#define NOIDCHG16 ((l_uid16_t)-1) +#define NOIDCHG32 ((uid_t) -1) + int linux_setregid16(struct thread *td, struct linux_setregid16_args *args) { struct setregid_args bsd; - bsd.rgid = args->rgid; - bsd.egid = args->egid; + bsd.rgid = args->rgid == NOIDCHG16? NOIDCHG32: args->rgid; + bsd.egid = args->egid == NOIDCHG16? NOIDCHG32: args->egid; return (setregid(td, &bsd)); } @@ -259,8 +262,8 @@ { struct setreuid_args bsd; - bsd.ruid = args->ruid; - bsd.euid = args->euid; + bsd.ruid = args->ruid == NOIDCHG16? NOIDCHG32: args->ruid; + bsd.euid = args->euid == NOIDCHG16? NOIDCHG32: args->euid; return (setreuid(td, &bsd)); } @@ -269,9 +272,9 @@ { struct setresgid_args bsd; - bsd.rgid = args->rgid; - bsd.egid = args->egid; - bsd.sgid = args->sgid; + bsd.rgid = args->rgid == NOIDCHG16? NOIDCHG32: args->rgid; + bsd.egid = args->egid == NOIDCHG16? NOIDCHG32: args->egid; + bsd.egid = args->sgid == NOIDCHG16? NOIDCHG32: args->sgid; return (setresgid(td, &bsd)); } @@ -280,8 +283,8 @@ { struct setresuid_args bsd; - bsd.ruid = args->ruid; - bsd.euid = args->euid; - bsd.suid = args->suid; + bsd.ruid = args->ruid == NOIDCHG16? NOIDCHG32: args->ruid; + bsd.euid = args->euid == NOIDCHG16? NOIDCHG32: args->euid; + bsd.euid = args->suid == NOIDCHG16? NOIDCHG32: args->suid; return (setresuid(td, &bsd)); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Oct 7 22:27:46 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 65A9537B401; Sun, 7 Oct 2001 22:27:44 -0700 (PDT) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f985Lpa98063; Sun, 7 Oct 2001 22:21:51 -0700 (PDT) (envelope-from jkoshy) Date: Sun, 7 Oct 2001 22:21:51 -0700 (PDT) From: Message-Id: <200110080521.f985Lpa98063@freefall.freebsd.org> To: jkoshy@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Subject: Re: kern/31084: xe driver device probe fails in CIS tuple scan Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: xe driver device probe fails in CIS tuple scan Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: jkoshy Responsible-Changed-When: Sun Oct 7 22:20:23 PDT 2001 Responsible-Changed-Why: handles this driver. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31084 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 2:10:15 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 25CB337B409 for ; Mon, 8 Oct 2001 02:10:11 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f989ABS38043; Mon, 8 Oct 2001 02:10:11 -0700 (PDT) (envelope-from gnats) Received: from mainframe.timmins.net (annex-0-5-port-26.dialup.coast.net [207.158.189.90]) by hub.freebsd.org (Postfix) with ESMTP id EF87237B405 for ; Mon, 8 Oct 2001 02:07:20 -0700 (PDT) Received: (from root@localhost) by mainframe.timmins.net (0.0.0/0.0.0) id f9897DE06162; Mon, 8 Oct 2001 05:07:13 -0400 (EDT) (envelope-from noweb4u) Message-Id: <200110080907.f9897DE06162@mainframe.timmins.net> Date: Mon, 8 Oct 2001 05:07:13 -0400 (EDT) From: Paul Timmins To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/31129: libncurses broken... Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31129 >Category: bin >Synopsis: libncurses broken... >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 08 02:10:07 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Paul Timmins >Release: FreeBSD 5.0-CURRENT i386 >Organization: none >Environment: System: FreeBSD mainframe.timmins.net 5.0-CURRENT FreeBSD 5.0-CURRENT #4: Mon Oct 8 03:56:44 EDT 2001 noweb4u@mainframe.timmins.net:/usr/src/sys/i386/compile/MAINFRAME i386 >Description: Anything using the libncurses library gives this error: /usr/libexec/ld-elf.so.1: /usr/lib/libncurses.so.5: Undefined symbol "__stdoutp" >How-To-Repeat: cvsup to CURRENT, make world. >Fix: Wish I was familiar enough with the code to fix this... >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 2:20:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 440E337B405 for ; Mon, 8 Oct 2001 02:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f989K2639946; Mon, 8 Oct 2001 02:20:02 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B18C137B405 for ; Mon, 8 Oct 2001 02:14:18 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f989EIh38572; Mon, 8 Oct 2001 02:14:18 -0700 (PDT) (envelope-from nobody) Message-Id: <200110080914.f989EIh38572@freefall.freebsd.org> Date: Mon, 8 Oct 2001 02:14:18 -0700 (PDT) From: Tim Burgess To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/31130: ipfw tee functionality causes malfunction and security hole Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31130 >Category: kern >Synopsis: ipfw tee functionality causes malfunction and security hole >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 08 02:20:02 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Tim Burgess >Release: 4.2-RELEASE >Organization: Whitley College >Environment: FreeBSD death.whitley.unimelb.edu.au 4.2-RELEASE FreeBSD 4.2-RELEASE #4: Tue Sep 4 21:42:46 EST 2001 tburgess@death.whitley.unimelb.edu.au:/usr/src/sys/com pile/DEATH i386 >Description: It looks to me like using the ipfw 'tee' function on incoming packets actually accepts the packets as destined for the localhost. Hence a rule such as: 600 tee 8665 ip from any to any in Means that anyone browsing the web on the subnet behind the gateway sees the gateway machine's webserver no matter which url they enter. www.hotmail.com/wi actually goes to www.whitley.unimelb.edu.au/wi ! Outgoing packets are fine. >How-To-Repeat: See above >Fix: Here is my experimental fix (untested, but it gives you an idea of what I think the problem is). I will test it when I have a chance to bring down the (relatively important to us) machine for a little while. (from netinet/ip_input.c) /* If 'tee', continue with original packet */ if (clone == NULL) return; m = clone; ip = mtod(m, struct ip *); Then normally it just keeps going in the 'ours' section of the code, which might explain the observed phenomena. I think something along the lines of: /* TJB added this as an experimental bug fix */ /* make sure we don't divert again - just accept the packet*/ divert_info = 0; goto pass; Note that ideally the packet SHOULD continue processing through the firewall but looking at the way the code is put together I can understand why this is nontrivial. Oh well :( Maybe it's possible to export the divert_out function from ip_divert.c and call it to reinject the duplicated packet immediately? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 2:27:46 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CE13A37B405; Mon, 8 Oct 2001 02:27:44 -0700 (PDT) Received: (from roam@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f989JMv39723; Mon, 8 Oct 2001 02:19:22 -0700 (PDT) (envelope-from roam) Date: Mon, 8 Oct 2001 02:19:22 -0700 (PDT) From: Message-Id: <200110080919.f989JMv39723@freefall.freebsd.org> To: paul@timmins.net, roam@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/31129: libncurses broken... Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: libncurses broken... State-Changed-From-To: open->feedback State-Changed-By: roam State-Changed-When: Mon Oct 8 02:18:19 PDT 2001 State-Changed-Why: Have you built the 4.x compatibility libraries, as the src/UPDATING file strongly suggests? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31129 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 2:34:55 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 49E2437B406; Mon, 8 Oct 2001 02:34:53 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f989YjE41848; Mon, 8 Oct 2001 02:34:45 -0700 (PDT) (envelope-from ru) Date: Mon, 8 Oct 2001 02:34:45 -0700 (PDT) From: Message-Id: <200110080934.f989YjE41848@freefall.freebsd.org> To: paul@timmins.net, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/31129: libncurses broken... Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: libncurses broken... State-Changed-From-To: feedback->closed State-Changed-By: ru State-Changed-When: Mon Oct 8 02:34:14 PDT 2001 State-Changed-Why: Wish you were reading the -current mailing list and src/UPDATING. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31129 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 3:30: 4 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5ED0737B406 for ; Mon, 8 Oct 2001 03:30:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f98AU2R51796; Mon, 8 Oct 2001 03:30:02 -0700 (PDT) (envelope-from gnats) Date: Mon, 8 Oct 2001 03:30:02 -0700 (PDT) Message-Id: <200110081030.f98AU2R51796@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: kern/31130: ipfw tee functionality causes malfunction and security hole Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/31130; it has been noted by GNATS. From: "Crist J. Clark" To: Tim Burgess Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/31130: ipfw tee functionality causes malfunction and security hole Date: Mon, 8 Oct 2001 03:20:15 -0700 On Mon, Oct 08, 2001 at 02:14:18AM -0700, Tim Burgess wrote: [snip] > >Description: > It looks to me like using the ipfw 'tee' function on incoming packets actually accepts the packets as destined for the localhost. Hence a rule such as: > > 600 tee 8665 ip from any to any in > > Means that anyone browsing the web on the subnet behind the gateway sees the gateway machine's webserver no matter which url they enter. www.hotmail.com/wi actually goes to www.whitley.unimelb.edu.au/wi ! I am not sure what you are saying here. The fact that the original packet is accepted is clearly documented in ipfw(8). Not ideal behavior, but documented behavior. As for this issue where you believe that you have redirected packets, what is listening on 8665/divert? Can we see a tcpdump(8) of this behavior? -- Crist J. Clark cjclark@alum.mit.edu cjclark@jhu.edu cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 5:10: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1338F37B40B for ; Mon, 8 Oct 2001 05:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f98CA2T74776; Mon, 8 Oct 2001 05:10:02 -0700 (PDT) (envelope-from gnats) Received: from tao.org.uk (genius.tao.org.uk [212.135.162.51]) by hub.freebsd.org (Postfix) with ESMTP id 4923137B408 for ; Mon, 8 Oct 2001 05:07:08 -0700 (PDT) Received: by tao.org.uk (Postfix, from userid 100) id 83CAB334; Mon, 8 Oct 2001 13:06:27 +0100 (BST) Message-Id: <20011008120627.83CAB334@tao.org.uk> Date: Mon, 8 Oct 2001 13:06:27 +0100 (BST) From: Joe Karthauser Reply-To: Joe Karthauser To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/31135: /bin/df reporting 'NaNB' as a Size. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31135 >Category: bin >Synopsis: /bin/df reporting 'NaNB' as a Size. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 08 05:10:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Joe Karthauser >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD genius.tao.org.uk 5.0-CURRENT FreeBSD 5.0-CURRENT #27: Fri Sep 28 21:44:58 BST 2001 joe@genius.tao.org.uk:/usr/obj/usr/src/sys/GENIUS i386 >Description: I've just had the strangest output from 'df': % while test /tmp; do df -h /data; sleep 5; done [cut] Filesystem Size Used Avail Capacity Mounted on /dev/ad0s2h 10G 9.5G 72M 99% /data Filesystem Size Used Avail Capacity Mounted on /dev/ad0s2h NaNB 9.5G 69M 99% /data ^^^^ Filesystem Size Used Avail Capacity Mounted on /dev/ad0s2h 10G 9.5G 72M 99% /data [cut] >How-To-Repeat: Unknown. This is the first time I've seen this. >Fix: I've not looked for a fix yet. I don't know where the problem lies, I'm just recording that there is one. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 5:10:13 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E35EB37B407 for ; Mon, 8 Oct 2001 05:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f98CA1F74767; Mon, 8 Oct 2001 05:10:01 -0700 (PDT) (envelope-from gnats) Received: from tim1.hosting.flyingcroc.net (tim1.hosting.flyingcroc.net [207.246.157.196]) by hub.freebsd.org (Postfix) with ESMTP id 4F32837B406 for ; Mon, 8 Oct 2001 05:07:03 -0700 (PDT) Received: by tim1.hosting.flyingcroc.net (Postfix, from userid 0) id 4122813D55; Mon, 8 Oct 2001 05:06:28 -0700 (PDT) Message-Id: <20011008120628.4122813D55@tim1.hosting.flyingcroc.net> Date: Mon, 8 Oct 2001 05:06:28 -0700 (PDT) From: sean@chittenden.org Reply-To: sean-freebsd-gnats@chittenden.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: conf/31134: /etc/rc doesn't allow you to specify a different sendmail daemon Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31134 >Category: conf >Synopsis: /etc/rc doesn't allow you to specify a different sendmail daemon >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 08 05:10:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Sean Chittenden >Release: FreeBSD 4.4-RELEASE i386 >Organization: >Environment: System: FreeBSD tim1.hosting.flyingcroc.net 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Tue Sep 18 11:57:08 PDT 2001 murray@builder.FreeBSD.org:/usr/src/sys/compile/GENERIC i386 >Description: I use the postfix mailer instead of sendmail and would like to continue to use sendmail -bd as the way of starting postfix. That said, /etc/rc and /etc/defaults/rc.conf need to be updated to include a sendmail_program variable. /etc/rc also relies on /etc/mail/sendmail.cf to be present for sendmail to be enabled: this is not true for postfix and has been disabled. >How-To-Repeat: >Fix: --- /etc/defaults/rc.conf.orig Mon Oct 8 05:01:03 2001 +++ /etc/defaults/rc.conf Mon Oct 8 05:02:04 2001 @@ -322,6 +322,7 @@ usbd_flags="" # Flags to usbd (if enabled). sendmail_enable="YES" # Run the sendmail inbound daemon (or NO). sendmail_flags="-bd -q30m" # Flags to sendmail (as a server) +sendmail_program="/usr/sbin/sendmail" # Which sendmail executable to run (if enabled). sendmail_outbound_enable="NO" # Dequeue stuck mail (or YES). sendmail_outbound_flags="-q30m" # Flags to sendmail (outbound only) dumpdev="NO" # Device name to crashdump to (or NO). --- /etc/rc Mon Oct 8 05:04:08 2001 +++ /etc/rc.orig Mon Oct 8 05:00:20 2001 @@ -516,20 +516,22 @@ ;; esac -case ${sendmail_enable} in -[Yy][Ee][Ss]) - echo -n ' sendmail' - ${sendmail_program} ${sendmail_flags} - ;; -*) - case ${sendmail_outbound_enable} in +if [ -r /etc/mail/sendmail.cf ]; then + case ${sendmail_enable} in [Yy][Ee][Ss]) echo -n ' sendmail' - ${sendmail_program} ${sendmail_outbound_flags} + /usr/sbin/sendmail ${sendmail_flags} + ;; + *) + case ${sendmail_outbound_enable} in + [Yy][Ee][Ss]) + echo -n ' sendmail' + /usr/sbin/sendmail ${sendmail_outbound_flags} + ;; + esac ;; esac - ;; -esac +fi echo '.' >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 5:20: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D6F1837B409 for ; Mon, 8 Oct 2001 05:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f98CK3I76499; Mon, 8 Oct 2001 05:20:03 -0700 (PDT) (envelope-from gnats) Date: Mon, 8 Oct 2001 05:20:03 -0700 (PDT) Message-Id: <200110081220.f98CK3I76499@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Dima Dorfman Subject: Re: conf/31134: /etc/rc doesn't allow you to specify a different sendmail daemon Reply-To: Dima Dorfman Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/31134; it has been noted by GNATS. From: Dima Dorfman To: sean-freebsd-gnats@chittenden.org Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: conf/31134: /etc/rc doesn't allow you to specify a different sendmail daemon Date: Mon, 08 Oct 2001 05:19:22 -0700 sean@chittenden.org wrote: > >Description: > I use the postfix mailer instead of sendmail and would like to > continue to use sendmail -bd as the way of starting postfix. That > said, /etc/rc and /etc/defaults/rc.conf need to be updated to > include a sendmail_program variable. This is not the correct way to change MTAs. See mailwrapper(8) and how the various MTA ports do it (e.g., ports/mail/postfix, post/mail/qmail). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 5:20:12 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 20DE737B403 for ; Mon, 8 Oct 2001 05:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f98CK2O76481; Mon, 8 Oct 2001 05:20:02 -0700 (PDT) (envelope-from gnats) Date: Mon, 8 Oct 2001 05:20:02 -0700 (PDT) Message-Id: <200110081220.f98CK2O76481@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: conf/31134: /etc/rc doesn't allow you to specify a different sendmail daemon Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/31134; it has been noted by GNATS. From: Peter Pentchev To: sean-freebsd-gnats@chittenden.org Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: conf/31134: /etc/rc doesn't allow you to specify a different sendmail daemon Date: Mon, 8 Oct 2001 15:16:32 +0300 On Mon, Oct 08, 2001 at 05:06:28AM -0700, sean@chittenden.org wrote: > > >Number: 31134 > >Category: conf > >Synopsis: /etc/rc doesn't allow you to specify a different sendmail daemon > >Originator: Sean Chittenden > >Release: FreeBSD 4.4-RELEASE i386 > >Organization: > >Environment: > System: FreeBSD tim1.hosting.flyingcroc.net 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Tue Sep 18 11:57:08 PDT 2001 murray@builder.FreeBSD.org:/usr/src/sys/compile/GENERIC i386 > > > > >Description: > I use the postfix mailer instead of sendmail and would like to continue to > use sendmail -bd as the way of starting postfix. That said, /etc/rc and > /etc/defaults/rc.conf need to be updated to include a sendmail_program > variable. /etc/rc also relies on /etc/mail/sendmail.cf to be present for > sendmail to be enabled: this is not true for postfix and has been disabled. The sendmail.cf part might be a real problem. Specifying the program to run though is actually done via mailer.conf(5) - this is a greatly thought out way to ensure that all legacy applications may still invoke sendmail(8), newaliases(8), mailq and such, while mailwrapper(8) transparently runs the actual executable of your choice. So, just edit the /etc/mail/mailer.conf file and specify the appropriate program from the Postfix package to run instead of sendmail. The sendmail.cf thing might be a real issue, but I've never seen any harm in just leaving it there, and I've never actually removed it :) G'luck, Peter -- This sentence every third, but it still comprehensible. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 5:30:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2708537B408 for ; Mon, 8 Oct 2001 05:30:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f98CU2D82798; Mon, 8 Oct 2001 05:30:02 -0700 (PDT) (envelope-from gnats) Date: Mon, 8 Oct 2001 05:30:02 -0700 (PDT) Message-Id: <200110081230.f98CU2D82798@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Sean Chittenden Subject: Re: conf/31134: /etc/rc doesn't allow you to specify a different sendmail daemon Reply-To: Sean Chittenden Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/31134; it has been noted by GNATS. From: Sean Chittenden To: Peter Pentchev Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: conf/31134: /etc/rc doesn't allow you to specify a different sendmail daemon Date: Mon, 8 Oct 2001 05:29:36 -0700 > > >Description: > > I use the postfix mailer instead of sendmail and would like to continue to > > use sendmail -bd as the way of starting postfix. That said, /etc/rc and > > /etc/defaults/rc.conf need to be updated to include a sendmail_program > > variable. /etc/rc also relies on /etc/mail/sendmail.cf to be present for > > sendmail to be enabled: this is not true for postfix and has been disabled. > > The sendmail.cf part might be a real problem. Specifying the program to run > though is actually done via mailer.conf(5) - this is a greatly thought out > way to ensure that all legacy applications may still invoke sendmail(8), > newaliases(8), mailq and such, while mailwrapper(8) transparently runs > the actual executable of your choice. > > So, just edit the /etc/mail/mailer.conf file and specify the appropriate > program from the Postfix package to run instead of sendmail. Howdy. I've setup my mailer.conf but spaced on realizing it'd be in effect on the system's startup. If mailer.conf takes care of this for me, then groovy and feel free to close this PR. > The sendmail.cf thing might be a real issue, but I've never seen any harm > in just leaving it there, and I've never actually removed it :) I'm confused as to why it'd be an issue to remove the sendmail.cf, but I'll have to take your word on it: sendmail hasn't been in my repretoir for quite some time. <:~) Thanks. -sc -- Sean Chittenden To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 5:50: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1788D37B401 for ; Mon, 8 Oct 2001 05:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f98Co2E87050; Mon, 8 Oct 2001 05:50:02 -0700 (PDT) (envelope-from gnats) Date: Mon, 8 Oct 2001 05:50:02 -0700 (PDT) Message-Id: <200110081250.f98Co2E87050@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: conf/31134: /etc/rc doesn't allow you to specify a different sendmail daemon Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/31134; it has been noted by GNATS. From: Peter Pentchev To: Sean Chittenden Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: conf/31134: /etc/rc doesn't allow you to specify a different sendmail daemon Date: Mon, 8 Oct 2001 15:47:41 +0300 On Mon, Oct 08, 2001 at 05:30:02AM -0700, Sean Chittenden wrote: > The following reply was made to PR conf/31134; it has been noted by GNATS. > > From: Sean Chittenden > To: Peter Pentchev > Cc: FreeBSD-gnats-submit@freebsd.org > Subject: Re: conf/31134: /etc/rc doesn't allow you to specify a different sendmail daemon > Date: Mon, 8 Oct 2001 05:29:36 -0700 > > > > >Description: > > > I use the postfix mailer instead of sendmail and would like to continue to > > > use sendmail -bd as the way of starting postfix. That said, /etc/rc and > > > /etc/defaults/rc.conf need to be updated to include a sendmail_program > > > variable. /etc/rc also relies on /etc/mail/sendmail.cf to be present for > > > sendmail to be enabled: this is not true for postfix and has been disabled. [snip] > > The sendmail.cf thing might be a real issue, but I've never seen any harm > > in just leaving it there, and I've never actually removed it :) > > I'm confused as to why it'd be an issue to remove the sendmail.cf, but > I'll have to take your word on it: sendmail hasn't been in my repretoir > for quite some time. <:~) Thanks. -sc I meant that it could be an issue that /etc/rc relies on sendmail.cf; I did not mean that the system would fall over if sendmail.cf was not present. All I meant was that, yes, /etc/rc still wants sendmail.cf to be there, even if you don't use it, but there's no harm in just leaving it there so /etc/rc is happy. G'luck, Peter -- Hey, out there - is it *you* reading me, or is it someone else? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 5:50:30 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C7DC37B401; Mon, 8 Oct 2001 05:50:28 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f98CoSa87204; Mon, 8 Oct 2001 05:50:28 -0700 (PDT) (envelope-from sobomax) Date: Mon, 8 Oct 2001 05:50:28 -0700 (PDT) From: Message-Id: <200110081250.f98CoSa87204@freefall.freebsd.org> To: sobomax@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/18940: Reading from stdin using linux-jdk-1.2.2 under Linux emulation fails Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Reading from stdin using linux-jdk-1.2.2 under Linux emulation fails State-Changed-From-To: feedback->closed State-Changed-By: sobomax State-Changed-When: Mon Oct 8 05:50:08 PDT 2001 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=18940 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 9:49:40 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id 6D01D37B409 for ; Mon, 8 Oct 2001 09:49:31 -0700 (PDT) Received: from hades.hell.gr (patr530-a113.otenet.gr [212.205.215.113]) by mailsrv.otenet.gr (8.11.5/8.11.5) with ESMTP id f98GnSd07793 for ; Mon, 8 Oct 2001 19:49:28 +0300 (EEST) Received: (from charon@localhost) by hades.hell.gr (8.11.6/8.11.6) id f98Ffvo01925; Mon, 8 Oct 2001 18:41:57 +0300 (EEST) (envelope-from charon@labs.gr) Date: Mon, 8 Oct 2001 18:41:57 +0300 From: Giorgos Keramidas To: Sean Chittenden Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: conf/31134: /etc/rc doesn't allow you to specify a different sendmail daemon Message-ID: <20011008184157.A1900@hades.hell.gr> References: <200110081230.f98CU2D82798@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200110081230.f98CU2D82798@freefall.freebsd.org> User-Agent: Mutt/1.3.22.1i X-GPG-Fingerprint: C1EB 0653 DB8B A557 3829 00F9 D60F 941A 3186 03B6 X-URL: http://labs.gr/~charon/ Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Sean Chittenden wrote: > > > The sendmail.cf thing might be a real issue, but I've never seen any harm > > in just leaving it there, and I've never actually removed it :) > > I'm confused as to why it'd be an issue to remove the sendmail.cf, but > I'll have to take your word on it: sendmail hasn't been in my repretoir > for quite some time. <:~) Thanks. -sc Ideally you would be able to just remove the file, but that would require changes in rc.conf like: sendmail_require_cf="YES" and code in /etc/rc that only checks for sendmail.cf if the variable sendmail_require_cf is set to YES. On the other hand, if it really bugs you to have /etc/mail/sendmail.cf you can create it as an empty file, and let /etc/rc fall through the existing check. -giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 11: 0:13 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C596837B403 for ; Mon, 8 Oct 2001 11:00:02 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f98I02s54214 for freebsd-bugs@freebsd.org; Mon, 8 Oct 2001 11:00:02 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 8 Oct 2001 11:00:02 -0700 (PDT) Message-Id: <200110081800.f98I02s54214@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: open PR's (mis)filed to gnats-admin and in limbo Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/10/07] pending/31098gnats-adminRe: [MAINTAINER] ports/30920: Fix environ 1 problem total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/10/07] pending/31104gnats-adminUpdate port: devel/doxygen 1.2.10_1 -> 1. 1 problem total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 11: 3:33 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 129FD37B40F for ; Mon, 8 Oct 2001 11:00:08 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f98I03154222 for freebsd-bugs@freebsd.org; Mon, 8 Oct 2001 11:00:03 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 8 Oct 2001 11:00:03 -0700 (PDT) Message-Id: <200110081800.f98I03154222@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD bugs list Subject: Current problem reports Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org 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 The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. 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 ------------------------------------------------------------------------------- f [1998/05/13] kern/6630 julian [PATCH] Fix for Cyrix I8254 bug o [1998/07/12] kern/7264 gibbs Buslogic BT 950 scsi card not detected o [1998/11/25] kern/8861 mdodd under heavy (multi interface) traffic ep0 o [1999/02/20] kern/10172 [panics] Kernel (esp kern/sys_pipe.c) die f [1999/03/11] kern/10542 page fault while in kernel mode, not kern o [1999/03/30] kern/10872 Panic in sorecieve() due to NULL mbuf poi o [1999/05/24] kern/11869 wpaul Network hangging due to xl0: tx underrun o [1999/05/31] kern/11966 TCP copies send and receive socket buffer o [1999/06/02] kern/11988 recvmsg with a cmsghdr but no iovec is br s [1999/06/05] kern/12041 n_hibma Crashes on startup if Zip drive is switch f [1999/06/25] kern/12395 gibbs Buslogic SCSI cards (BT948) time out unde o [1999/06/30] kern/12466 Fast system hangs under high FS load o [1999/07/13] alpha/12623 alpha Certain valid numeric strings cause a SIG o [1999/08/10] i386/13059 imp Install aborts with panic:aha0: Invalid C o [1999/09/12] kern/13709 panic: sched_sync: fsync failed o [1999/09/19] kern/13825 tx0 "holds" packets for long periods, eve o [1999/09/28] i386/14030 imp aha0 probe fails 3.3.0-RELEASE install wi o [1999/10/30] kern/14614 dillon VM DoS attack (with exploit attached) o [1999/11/20] kern/15013 SMP Panic on Dell PowerEdge 1300/600 f [1999/11/22] i386/15040 Installation problems with 3.x FreeBSD o [1999/12/05] kern/15281 Please fix handling Ross(?) host to PCI b o [1999/12/08] kern/15356 ahc driver (Adaptec 7896) cannot see 4x18 o [2000/01/17] misc/16157 green "fire" screensave kills network performan o [2000/01/19] ports/16211 markm pgp5 port creates pgp_old instead of pgpo o [2000/01/28] kern/16420 mdodd 3C5x9 isa nic card f [2000/02/07] kern/16574 missing aout shared libs -> panic o [2000/02/14] kern/16708 wpaul 3Com 3c900-Combo Ehternet card make kerne o [2000/02/15] kern/16740 mckusick The kernel panics with "ffs_clusteralloc: o [2000/02/18] i386/16802 An user math program have the system on K f [2000/02/19] kern/16828 High Speed Pinging Over 8184 bytes Kills f [2000/03/07] kern/17248 FreeBSD 3.4 won't install on 486/100 IBM o [2000/03/10] kern/17305 advansys driver time-out around 30 minute o [2000/03/15] i386/17391 jhb FreeBSD boot loader does not recognize ke o [2000/03/18] i386/17485 Partition editor completely non-functiona o [2000/03/27] kern/17620 jhay Digi/570i sync driver (if_ar.c) causes sy f [2000/03/28] alpha/17642 alpha FreeBSD/alpha 4.0 RELEASE installation fa o [2000/04/04] bin/17791 mjacob Restore does not handle bad or missing ta o [2000/04/04] ports/17806 msmith make in ports/net/citrix_ica loops on scr o [2000/04/04] i386/17808 cannot swap /dev/.... f [2000/04/18] kern/18074 Fatal trap 12: page fault while in kernel f [2000/04/23] kern/18182 Remote serial gdb no longer works since m o [2000/05/09] misc/18466 dillon install via nfs or ftp media silently tru s [2000/05/17] misc/18641 paul FreeBSD V4.0 crashes when using ifconfig s [2000/05/24] misc/18793 ken Hitachi DK319H needs quirk entry to work o [2000/05/29] kern/18874 32bit NFS servers export wrong negative v o [2000/05/29] bin/18887 Undefined symbol "_krb_err_txt" in telnet f [2000/06/09] kern/19162 4.0-STABLE panics w/ softupdates and quot o [2000/06/13] kern/19247 jasone uthread_sigaction.c does not do anything o [2000/06/14] misc/19257 Detection of connected ports on a Cyclom f [2000/06/23] kern/19480 System hang when use current (GENERIC) ke o [2000/07/01] conf/19629 imp /etc/rc.sysctl can't set all syctls o [2000/07/05] kern/19726 wpaul fatal trap 12 / page fault o [2000/07/12] gnu/19882 obrien ld does not detect all undefined symbols! o [2000/07/30] i386/20308 yokota vidcontrol VESA_800x600 causes a kernel p f [2000/07/31] kern/20310 groudier Symbios 53c875j drivers don't work o [2000/08/03] kern/20375 APM doesn't work properly! Suspend/resum o [2000/08/05] kern/20429 yokota setting flags 0x1 in atkbd0 locks keyboar o [2000/08/08] bin/20489 davidn pw problems: -w random not working correc o [2000/08/08] i386/20495 yokota 4.1-STABLE and 4.1-RELEASE: keyboard does o [2000/08/15] ports/20624 vmware vmmon module locks kernel o [2000/08/16] kern/20671 wpaul panicstr:page fault; panic messages:Fatal o [2000/08/28] kern/20895 groudier sym driver doesn't work for SYM53C895A o [2000/09/04] misc/21025 msmith BTX loader 1.00 gets 1Gb of memory from B f [2000/09/04] i386/21042 mdodd Keyboard driver problems with PS/2 Model f [2000/09/08] i386/21117 When booting 4.0 install disk receive thi o [2000/09/12] kern/21220 msmith mlx0: I/O error - attempt to write beyond f [2000/09/13] bin/21253 mjacob dump/restore fail on any stream (tape/pip o [2000/09/14] kern/21272 wpaul USB interrupts seem to be turned off o [2000/09/14] kern/21278 gibbs ahc driver wedges on stressed SMP system o [2000/09/17] kern/21323 msmith Lock up at boot on Acer507DX with pci.c 1 f [2000/09/18] kern/21378 Accessing floppy under 4.1-STABLE (with D o [2000/09/19] kern/21397 Floppy drive doesn't work on Compaq ProLi o [2000/10/01] i386/21677 Instalation crashed when shell started o [2000/10/05] i386/21772 No interrupts for 39160 PCI adapter in PR o [2000/10/06] misc/21782 4.1.1 and ADAPTEC 29160N SCSI controller o [2000/10/06] kern/21783 When msgrcv() blocks, it blocks ALL threa o [2000/10/06] i386/21802 after working fine for a few weeks, mach o [2000/10/26] kern/22324 Kernel panic when second Compaq Smart Arr o [2000/10/28] kern/22376 Some problems in ar driver with FastTrak o [2000/11/01] kern/22494 wpaul Fatal trap 12: page fault while in kernel o [2000/11/02] kern/22557 fatal kernel trap 0x2(memory management) o [2000/11/02] kern/22561 xl networkhanging f [2000/11/03] bin/22595 brian telnetd tricked into using arbitrary peer f [2000/11/06] i386/22640 SCSI problem halts system after long peri o [2000/11/18] kern/22953 keu driver throws 'usb error on rx: IOERR o [2000/11/20] gnu/22972 obrien Internal Compiler Error o [2000/11/25] misc/23103 lacks many ISO C99 features (NAN o [2000/11/26] kern/23126 Can't boot kernel with ADAPTEC 1522 SCSI f [2000/11/27] i386/23145 brian pppoe-test-program panics the server o [2000/11/29] kern/23173 read hangs in linux emulation o [2000/12/04] kern/23258 mckusick panic: softdep_lock: locking against myse o [2000/12/04] kern/23281 Installation hangs on PowerEdge 2450 Per3 o [2000/12/09] kern/23411 SMP Kernel Freezes Machines on Dual Proce o [2000/12/11] kern/23480 panic: vm_pageout_flush page 0xc0a0a8fc i o [2000/12/12] kern/23505 processes die with SIGPROF, usually under a [2000/12/14] kern/23547 msmith only one logical device on Mylex AcceleRA o [2000/12/14] i386/23548 4.x causes Thinkpad 560X disk to spin up/ o [2000/12/19] i386/23681 keyboard is not working when the laptop i a [2000/12/21] kern/23740 roam kernel DoS tha could be executed by any u o [2000/12/22] kern/23752 panic with smp 4.2 kernel and dma lpt o [2000/12/26] kern/23859 panicked on sofree o [2000/12/27] kern/23887 panic: softdep_disk_write_complete: lock o [2000/12/30] misc/23958 Installation fails on an i486 DX2 machine o [2000/12/30] misc/23960 Installation fails on an i486 DX2 machine o [2001/01/17] kern/24418 jasone read/write in thread library (-lc_r) does o [2001/01/18] kern/24433 NFSv3 service hangs when writing large am f [2001/01/19] i386/24469 system hangs on scsi disk access error f [2001/01/30] kern/24740 filesystem corruption CFP1080 CAM SCSI ca o [2001/02/02] kern/24811 Networking in FreeBSD 4.2-RELEASE doesn't o [2001/02/15] i386/25123 Heavy NFS traffic over virtual interface f [2001/02/15] kern/25130 dcs kernel crash with kldload/kldunload md.ko f [2001/02/19] kern/25215 RELENG_4 kernel crashes starting SCSI dis f [2001/02/20] misc/25230 gibbs ... SCB Memory Parity Error at seqaddr = o [2001/02/20] kern/25235 OS Hungs up when using with a Battery of o [2001/02/23] i386/25328 4.x stable kernel crash: page fault o [2001/02/27] misc/25407 Error while booting 4.2 : ahc0 Signaled A a [2001/03/04] kern/25536 ache fix annoying console mouse cursor flicker o [2001/03/09] kern/25632 n_hibma USB modem (umodem) may destroy the cfreel o [2001/03/20] kern/25950 Bad drives on asr look zero-length and pa o [2001/03/24] kern/26048 4.3-RC: SMP and asr driver don't work to o [2001/03/30] kern/26223 Linux /compat/linux/dev devices doesn't w o [2001/03/30] kern/26224 VFS Panic/SMP/CFLOW(HEAVY network)/Heavy o [2001/04/02] bin/26305 mjacob Cannnot restore partions with FreeBSD 4.x f [2001/04/07] kern/26417 kernel crash using mpd-netgraph o [2001/04/12] kern/26510 kernel panic while booting on Intel STL2 o [2001/04/13] kern/26549 IPsec policies for more than one pair of a [2001/04/18] kern/26667 Kernel Page Fault/Panic on SWAP Partition o [2001/04/20] i386/26736 System freeze booting from (i386) 4.3 flo o [2001/04/25] kern/26840 process doing mmap() over nfs hangs in vm o [2001/05/02] ports/27036 sobomax All Ports using Mesa3 are required with - o [2001/05/02] i386/27042 4.3-RELEASE installation from CDROM fails o [2001/05/02] kern/27048 Bus support (I believe) broken in freeBSD f [2001/05/03] kern/27059 groudier (symbios) SCSI subsystem hangs under heav o [2001/05/07] ports/27186 ports Firebird's gbak failed at make install o [2001/05/09] bin/27231 NFS client-side locking problem a [2001/05/10] kern/27250 bp unionfs filesystem panics in large number o [2001/05/11] bin/27264 green ssh won't do RSA authentication with Open o [2001/05/11] kern/27275 kernel bug ? o [2001/05/11] kern/27278 ex0 panics system at boot with Ethernet c o [2001/05/16] conf/27385 BusLogic FlashPoint SCSI not found by ins o [2001/05/17] conf/27408 rc.network hangs at rpc.umntall if stale o [2001/06/07] bin/27939 rlogin uses wrong IP address for remote h o [2001/06/08] kern/27985 Recent -STABLE crashes when accessing dc o [2001/06/09] kern/27987 New ATA Driver failure with VIA Southbrid a [2001/06/09] i386/27991 ssh 1 and 2 login with keys is not possib o [2001/06/09] i386/28002 make world fails (ref. to ipf) o [2001/06/11] kern/28031 ThinkPad 570 doesn't need clkrun_hack o [2001/06/11] kern/28087 Fatal trap 12: page fault while in kernel o [2001/06/14] kern/28162 RELENG_4 (4.2, 4.3) Panics when system ha o [2001/06/14] kern/28163 in_pcballoc Panic in RELENG_4 with large o [2001/06/15] bin/28191 jdp rtld-elf ignores LD_LIBRARY_PATH o [2001/06/20] i386/28293 imp Dell Latitude CpxJ 750 hangs on install o [2001/06/25] kern/28402 kernel panic caused by softupdates (may b o [2001/06/25] kern/28418 XFree86 4.X panics FreeBSD 4.3-STABLE on o [2001/06/27] bin/28447 GNU tar silently fails on large files (> o [2001/06/27] kern/28465 Enabling softupdates on a clean but activ o [2001/06/27] kern/28466 When soft updates is enabled, cpl is not o [2001/06/30] i386/28550 Boot: Fatal Trap 12: page fault while in o [2001/06/30] i386/28558 makedev return non-zero status after inst o [2001/07/01] misc/28571 Missing ukrainian capital GHE (G3) in koi o [2001/07/01] misc/28573 Missing ukrainian GHE in koi8-u keyboard o [2001/07/02] kern/28630 Look like hung up a kernel after few minu f [2001/07/04] kern/28703 Kernel reboot during tape backup of nfs m o [2001/07/05] kern/28751 n_hibma USB Mouse doesn't seem to work! o [2001/07/09] kern/28844 Router/nameserver system crashes 2-3 time o [2001/07/12] kern/28905 wpaul FreeBSD 4.3 freeze when ppp dials over T- o [2001/07/14] kern/28966 pirzyk math libraries in linux emulation do not o [2001/07/14] kern/28974 PPPoE software fails when SOCK_RAW employ o [2001/07/15] ports/28995 max deMime produces blank line in header part o [2001/07/17] i386/29045 Heavy disk usage causes panic in ffs_blkf o [2001/07/19] i386/29096 freebsd 4.2/4.3 hangs after probing devic o [2001/07/21] kern/29121 msdos fs causes kernel panic when writing o [2001/07/22] kern/29150 Incomplete cleanup in the netgraph bridge o [2001/07/24] bin/29191 NFS file locking fails from Solaris 8 cli o [2001/07/24] misc/29200 dcs Syntax errors in /boot/device.hints cause f [2001/07/29] i386/29315 Promise ATA100 UDMA5 works incorrectly o [2001/07/30] ports/29325 ports Dbview contains an error, because of whic o [2001/08/01] kern/29365 When We configure up the xl0 device BSD h o [2001/08/04] kern/29454 buslogic driver checks wrong bit for exte o [2001/08/13] ports/29681 portmgr bsd.port.mk cannot handle some module's P o [2001/08/14] conf/29699 Setting NO_MAILWRAPPER results in a syst o [2001/08/15] kern/29741 ptrace(pid);ptrace(ppid) makes pid and pp o [2001/08/15] kern/29742 PCCARD Modems don't work on cardbus bridg o [2001/08/15] kern/29743 TI-1450 interrupt storm o [2001/08/16] conf/29773 server disapear from the network - nothin f [2001/08/16] kern/29785 4.4-PRERELEASE not booting with aic-7770 o [2001/08/16] i386/29792 userconfig doesn't have matcd0 o [2001/08/18] kern/29844 setpgrp does not behave as manual says o [2001/08/18] kern/29847 n_hibma USB usbd_probe_and_attach() is broken and o [2001/08/23] kern/29994 Boot fault during mounting root o [2001/08/28] kern/30164 Machine hangs on swap problems. o [2001/08/31] kern/30238 3Com 509-Combo ISA NIC don`t work o [2001/09/03] ports/30292 kde QT/KDE 1.x needs to be removed o [2001/09/03] kern/30300 -current hang caught and crash-dump'd. o [2001/09/04] kern/30307 dmesg output: looutput: mbuf allocation f o [2001/09/04] kern/30315 ifpw broken: curr_dyn_buckets cannot be c o [2001/09/04] ports/30331 portmgr Conflict between bsd.port.mk MAKEFILE var a [2001/09/06] ports/30396 lioux LPRng port has a checksum mismatch and pa o [2001/09/09] i386/30458 Workstation sometimes hangs when connecte a [2001/09/11] misc/30509 Server stops responding f [2001/09/12] i386/30527 does not like scsi on atrend 6260 dual PI o [2001/09/14] i386/30580 named crashes on 4.4-PRERELEASE o [2001/09/15] bin/30591 rwatson .login_conf is not vetted for settings us o [2001/09/16] kern/30617 [PATCH] ACPI bug: don't dereference a poi o [2001/09/18] kern/30665 acpi_ec driver does not release its resou o [2001/09/19] i386/30670 4.3 and 4.4 mfsroot floppies reboot Dell o [2001/09/20] i386/30693 On new install bootup does endless usb0: o [2001/09/20] kern/30702 4.4 Crashes During Boot with Fatal Trap 1 o [2001/09/21] i386/30705 msmith Installation fails on system with Mylex A o [2001/09/22] ports/30735 gnome Nautilus does not start up successfully o [2001/09/23] ports/30758 ports nntpcache-2.4.0b5 doesn't build on FreeBS o [2001/09/23] kern/30771 Panic when mounting drive o [2001/09/24] kern/30781 msgrcv call blocks other pthread's jobs o [2001/09/24] ports/30786 lioux LPRng-3.7.5: Checksum mismatch, no in 4.4 o [2001/09/24] i386/30802 scsi repeat of i386/22760. Adaptec SCSI contro o [2001/09/27] bin/30869 dump does not dump all files of a filesys o [2001/09/27] ports/30877 kde unable to build kdepim-port o [2001/09/28] misc/30889 Regarding MySQL database connection o [2001/09/28] i386/30898 Inspiron 8100 keyboard unusable off mains o [2001/09/29] kern/30921 ACER mechanic ps/2 keyboard don´t work an o [2001/09/30] ports/30935 ports pips sc880 - needs to have syvr4 support o [2001/10/01] i386/30961 On lsdev -> error & BTX halted =( o [2001/10/04] kern/31042 Device name conflict o [2001/10/05] ports/31057 ports Update port: security/drweb-sendmail o [2001/10/05] i386/31079 scanpci fails on /dev/io 225 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1996/11/08] gnu/1981 ypserv handles null key incorrectly s [1996/12/30] kern/2325 quota.user enlarged, no boot on 2.2-BETA o [1997/02/07] kern/2690 asami When Using ccd in a mirror mode, file cre o [1997/02/19] kern/2768 ktrace(1) -i dumps corrupted trace data o [1997/02/20] bin/2785 wpaul callbootd uses an unitialized variable f [1997/03/01] kern/2840 tegge mlock+minherit+fork+munlock causes panics a [1997/04/01] bin/3170 vi freaks and dump core if user doesn't e o [1997/04/05] kern/3201 peter de0 not re-enabled after hub down f [1997/05/04] i386/3502 mdodd Merge of if_ix* and if_ie* broke EE/16 su o [1997/05/06] bin/3524 imp rlogin doesn't read $HOSTALIASES for non- o [1997/06/28] misc/3980 peter access via NFS fails during mount-operati o [1997/07/02] kern/4012 peter 2.2-RELEASE/Digital UNIX NFSv3 0 length f f [1997/07/17] kern/4115 peter SunOS NFS file has wrong owner if creator s [1997/07/26] bin/4176 restore gets confused when run over pipe o [1997/07/30] kern/4194 peter kernel pci driver for Digital 21041 Ether o [1997/08/12] kern/4284 paul le0 goes OACTIVE after some time o [1997/08/22] bin/4357 wosch bug in adduser script causes duplicate UI o [1997/10/01] kern/4666 dfr umount -f doesn't seem to work s [1997/10/01] bin/4672 rdist does not do hard links right when t o [1997/10/03] bin/4683 imp restore doesn't correctly handle "sparse" f [1997/10/16] kern/4774 trying to use IBCS2 shared libraries cras o [1997/10/16] kern/4782 dillon Under certain conditions, several krsh's o [1997/12/14] bin/5297 make incompatibility with System V style o [1997/12/19] kern/5347 peter DEC (de0) ethernet card has no buffers af o [1997/12/31] i386/5401 peter de0 selects wrong media when reconnected o [1998/01/27] kern/5587 session id gets dropped o [1998/02/28] kern/5877 bmilekic sb_cc counts control data as well as data f [1998/03/16] kern/6035 The system "sort-of" hangs when playing b o [1998/03/19] kern/6066 paul lnc driver does not work correctly with A a [1998/04/07] kern/6238 cg Sound-driver patch for MAD16 (OPTi 928,92 o [1998/04/14] kern/6300 System locks up in SMP mode when accessin o [1998/04/19] kern/6351 DPT RAID controller stops working under h a [1998/05/06] bin/6536 pppd doesn't restore drainwait for tty s [1998/06/02] bin/6830 make(1) exhibits confusing and non-standa s [1998/06/23] bin/7033 Same process notified multiple times o [1998/06/24] i386/7057 mdodd 3Com 3C509 locks up, or has >1000ms rtt u s [1998/07/05] kern/7169 cannot use accton on a append-only file s [1998/07/06] misc/7190 phk "Invalid partition table" after new insta o [1998/07/11] kern/7245 processes die with signal 6, if machine o o [1998/07/12] i386/7266 yokota PSM detection failure with Linksys consol s [1998/07/14] kern/7281 [STABLE] Multicast kludge does not work c o [1998/07/26] kern/7405 dillon in pmap_changebit, pmap_pte_quick() retur s [1998/07/27] kern/7410 [PATCH] driver for arlan-655 s [1998/07/27] i386/7420 [PATCH] Maximum socket buffer size (SB_MA o [1998/07/28] kern/7424 dillon Machine crashes do not occur very often, s [1998/08/10] kern/7556 sl_compress_init() will fail if called an f [1998/08/27] kern/7766 de driver still buggy - random ifc death f [1998/08/27] kern/7767 de driver still buggy - power cycle of de o [1998/09/09] bin/7876 tegge gethostbyname flags temporary failure as o [1998/09/11] kern/7902 if_de doesn't properly recognize a "Magic o [1998/09/17] bin/7968 If /usr/libexec/yppwupdate DNE, rpc.yppas f [1998/09/28] i386/8081 Problem with MULTIPORT driver and Boca BB o [1998/09/30] gnu/8099 obrien [patch] some bugs in cpio f [1998/10/03] kern/8137 [patch] quotaoff followed by quotaon can o [1998/10/08] kern/8206 [patch] Unconected UDP socket declined, i o [1998/11/01] kern/8534 insufficient support routines for poll(2) o [1998/11/10] bin/8646 peter Implement rlogind -a option f [1998/11/11] kern/8657 dillon nfs client hung in nfs_bwrite/vfs_busy_pa o [1998/11/18] bin/8745 wosch adduser permit adding `root' and mail ali f [1998/11/20] kern/8778 gibbs Buslogic BT948 in 2 boxes upgraded from S f [1998/11/25] bin/8865 dwmalone syslogd hangs with serial console o [1998/11/29] conf/8903 dillon /etc/rc can do NFS mounts before the netw o [1998/12/21] kern/9163 adrian [patch] squid does not join a multicast g s [1999/01/07] bin/9379 pppd does not go through all interfaces l s [1999/01/08] kern/9391 if_addmulti doesn't check for retifma == f [1999/01/09] kern/9411 System crash on swapping to hole-files o [1999/01/13] kern/9478 assar support for running a script from kldload s [1999/02/06] kern/9927 gibbs the ahc driver doesn't correctly grok swi f [1999/02/13] kern/10066 problem with a X-Window and syscons drive o [1999/02/15] kern/10107 dillon interlock situation with exec_map and a p f [1999/02/25] bin/10264 davidn passwd(1) tryis NIS even with `-l' switch o [1999/02/28] bin/10312 ken pciconf -l generates output incompatible f [1999/02/28] kern/10316 le0 goes OACTIVE after some time s [1999/03/02] bin/10353 mikeh ypserv gets segmentation violation f [1999/03/03] kern/10381 hlfsd/NFS failure -- directory cached bet f [1999/03/07] kern/10466 resume causes crashes if BIOS extmem != R o [1999/03/09] bin/10510 Remote cvs botches commits on occassion f [1999/03/14] kern/10594 EXT2FS mount problems f [1999/03/14] bin/10596 I can't find out where someone is logged o [1999/03/16] bin/10633 fenner [patch] tcpslice timezone problem and upd f [1999/03/19] kern/10671 setlogin(2) return EINVAL for length of n a [1999/03/24] kern/10778 ru "ipforward_rt" is not cleared when routin o [1999/03/27] bin/10821 des getpwent() fails on NIS clients after dro o [1999/03/30] kern/10870 eivind Kernel panic when writing to write-protec f [1999/04/06] bin/10991 lpd hangs system if printer not ready on o [1999/04/07] bin/11005 iedowse `umount -f' does not work if the NFS-serv s [1999/04/08] misc/11024 getpwnam(3) uses incorrect #define to lim f [1999/04/11] kern/11080 fatal trap 18 while trying to mount inval s [1999/04/28] conf/11376 NFS mount may be happening too soon in /e o [1999/05/03] kern/11462 imp CS network interface driver (for CS89XX b o [1999/05/04] kern/11490 yokota VESA+VM86+Splash == unstable system o [1999/05/05] kern/11507 imp CS89XX (i386/isa/if_cs.c) fails to proper o [1999/05/05] misc/11525 dwmalone [PATCH] Networking patches to increase # s [1999/05/07] gnu/11562 tar verification doesn't work f [1999/05/12] i386/11664 lnc1 NIC fail to work f [1999/05/13] kern/11686 APM: Always "Resume failure" from suspend o [1999/05/13] kern/11697 tegge Disk failure hangs system o [1999/05/18] i386/11773 yokota mouse works at setup time. Under X it go f [1999/05/21] kern/11821 /dev/fd0a hangs on large files, including o [1999/05/28] kern/11922 deischen missing reentrant interfaces for getpwnam f [1999/05/29] kern/11937 vm problems after havy memory usage f [1999/05/31] kern/11969 VM_fault with mmap'd CDROM data. o [1999/06/04] kern/12022 phk System clock timewarps f [1999/06/06] bin/12054 explicit -ltermcap after -lncurses causes o [1999/06/12] gnu/12175 gdb crashes with pids > 32736 o [1999/06/22] bin/12349 des 3.2-R inetd doesn't re-read ALL configura s [1999/06/24] kern/12381 bde Bad scheduling in FreeBSD o [1999/06/30] kern/12464 bp bad reference in struct vm_zone f [1999/07/06] bin/12538 getpwuid() NIS UID override fails o [1999/07/07] kern/12551 mks ASIC output is shifted following a short f [1999/07/13] kern/12632 Panic (trap 18) with Symbios SCSI control o [1999/07/20] bin/12727 billf Game patches from NetBSD f [1999/07/21] conf/12745 diffs to delay start of amd rwhod timed o o [1999/07/24] kern/12800 tegge buffer leak in cluster_wbuild f [1999/07/27] kern/12838 PC-Card ctlr(0) Vadem 365 support seems b o [1999/08/02] ports/12930 asami libtool create defuct makefiles if PREFIX o [1999/08/14] kern/13141 se Multiple LUN support in NCR driver is bro a [1999/08/15] kern/13150 mckusick panic: ufs_dirbad: bad dir f [1999/08/17] gnu/13200 The assembler chokes on very long operand f [1999/08/25] misc/13378 Tecra 8000 hangs in UserConfig, cannot co o [1999/08/27] gnu/13427 gdb reports wrong info f [1999/08/28] gnu/13438 objc forward core dump using system cc f [1999/08/29] bin/13463 /bin/sh does not handle interrupts correc o [1999/09/10] bin/13691 fenner tcpslice cannot extract over 2GB part of o [1999/09/13] kern/13740 wrong IP statistics o [1999/09/15] kern/13757 wpaul tl0: adapter check: 180005 mesages keep c s [1999/09/16] conf/13775 multi-user boot may hang in NIS environme s [1999/09/17] i386/13787 lnc driver isn't really the lnc driver f [1999/09/23] misc/13920 pppd acts differently on 3.3-RELEASE ("mi o [1999/09/26] misc/13978 peter a write to last column bug appears since o [1999/09/27] kern/13997 phk RLIMIT_NPROC works unadequately for jails f [1999/10/04] misc/14121 resurfaced bug in rmt preventing remote d s [1999/10/04] i386/14135 lpt1 nolonger exists after 3.2-RELEASE o [1999/10/12] kern/14285 dillon NFS client appears to lose data f [1999/10/14] misc/14326 kerberos4 pam-related breakage in current o [1999/10/14] i386/14334 imp AHA-1542A not supported by FreeBSD 3.x (" s [1999/10/20] bin/14444 enigma command can't decrypt files encryp f [1999/10/21] i386/14446 Doesn't boot on Mobile Celeron f [1999/10/25] kern/14536 kernel panic on 64KB block size ufs files o [1999/10/26] kern/14549 mdodd 3C509 broken in 3.3 o [1999/10/27] kern/14566 yokota Non-kernel programs have little/no contro a [1999/11/04] kern/14712 iedowse root has access to NFS mounted directorie o [1999/11/05] kern/14722 TCP connections hangs in FIN_WAIT_2 for > s [1999/11/12] kern/14848 Frame Relay support, corrected a [1999/11/12] misc/14856 billf ftp stalls on FreeBSD 3.3 (CDROM) tested f [1999/11/15] misc/14895 portmap bug (when run with -v flag) o [1999/11/17] i386/14946 mjacob rmt - remote magtape protocol o [1999/11/19] i386/15003 mdodd 3C574 (ep0) reads bogus ethernet address o [1999/11/23] bin/15070 tegge vfprintf/cvt/__dtoa race condition in thr o [1999/11/27] ports/15123 rse www/apache13-modssl has PREFIX problems f f [1999/12/01] kern/15204 systems panics when ktrace-ing o [1999/12/02] kern/15235 dillon Race conditions in pipe_write causes kern f [1999/12/13] kern/15475 pppd(8) sets the Source Address field of s [1999/12/14] kern/15478 incorrect utmp/wtmp records update upon c f [1999/12/17] i386/15548 Intel EtherExpress Pro/10+: Only 1024 byt f [1999/12/20] bin/15581 ftp(1) file completion does not work if s o [1999/12/23] misc/15662 markm [PATCH] perl5 Sys::Hostname fails if no P o [1999/12/26] kern/15707 dillon bad trap in mprotect o [2000/01/01] kern/15825 dillon Softupdates gets behind, runs the system s [2000/01/02] i386/15845 Driver for RealTek 8029 o [2000/01/03] bin/15877 tobez Perl 5.00503 interpreter crashes with a s f [2000/01/04] i386/15879 System hangs while watching the tv and ap o [2000/01/05] ports/15922 chuckr print/a2ps cannot find ogonkfied fonts [p f [2000/01/09] kern/16013 FreeBSD 3.3 sends ICMP reply to IP unicas o [2000/01/12] kern/16090 mdodd No buffer space available o [2000/01/17] bin/16155 cp -p does not preserve modification time f [2000/01/19] i386/16214 Driver for Intel EtherExpress 16 is unrel f [2000/01/21] kern/16257 Kernel panic in sbdrop f [2000/01/21] i386/16269 smp dosen't work with >2 cpus on AMI Goli a [2000/01/22] kern/16299 tmm nfs.ko can be unloaded when nfsd is runni f [2000/01/23] kern/16318 Fix for wrong interface when adding new r o [2000/01/24] ports/16343 reg bsd.port.mk cannot override make.conf. f [2000/01/25] i386/16349 Intel EtherExpress Pro/10+ card detection f [2000/01/25] bin/16353 rlogin encryption is broken on transmit s o [2000/01/27] ports/16396 reg libtool -export-symbols doesn't restrict f [2000/01/27] kern/16416 Hang on boot with SMP Dell 2400 o [2000/02/08] kern/16587 cg Can't record with newpcm & CS4236 (AW35/P f [2000/02/10] kern/16644 Bad comparsion expression in bpf_filter.c o [2000/02/21] conf/16879 tanimura Sound drivers seem to be using shared irq o [2000/02/23] conf/16948 qa Sysinstall/disklabel: bad partition table o [2000/02/23] ports/16955 markm 'pgp5' built with ports/security/pgp5 doe o [2000/02/25] misc/16991 jhb booting install disk and USB f [2000/02/28] bin/17056 rshd does improper home directory check s [2000/03/01] misc/17108 SecureRPC not supported in mount_nfs comm f [2000/03/02] bin/17134 problem with 3.0-RELEASE cron forgetting f [2000/03/03] kern/17142 4.0-CURRENT hangs in ex_isa_identify() wh o [2000/03/10] misc/17310 wpaul NIS host name resolving may loop forever o [2000/03/13] bin/17360 green [PATCH] Cleanup bug in pam_ssh o [2000/03/16] kern/17422 bde 4.0-STABLE: top: nlist failed f [2000/03/17] gnu/17433 libobjc locks mutex before deallocating i o [2000/03/20] kern/17504 ken Another Micropolis Synchronize Cache Prob f [2000/03/20] misc/17517 wpaul 100/10baseT card resets under load s [2000/03/21] conf/17540 NIS host lookups cause NFS mounts to wedg f [2000/03/21] kern/17542 greid random static with GUS PnP o [2000/03/24] misc/17584 groudier fatal SCSI error with a Symbios 53c875 co o [2000/03/27] i386/17626 green sshd cores when I scp to it f [2000/03/28] kern/17634 Non-deterministic PnP sound device config o [2000/03/28] alpha/17637 billf misconfigured syscons bell causes panic o o [2000/03/29] i386/17662 gibbs cam_xpt.c incorrectly disables tagged que o [2000/03/31] i386/17713 gibbs MAKEDEV and /stand/sysinstall goofups wit f [2000/04/02] i386/17761 disk label editor in 4.0 deleted 3.4 part o [2000/04/04] i386/17800 bde [PATCH] problem with statclock initializa f [2000/04/06] kern/17829 The dc driver is seriously broken f [2000/04/07] kern/17842 Erratic user time reports for long runnin o [2000/04/07] bin/17843 ftpd fails to set cwd with mode 700 NFS m f [2000/04/10] kern/17895 dwmalone stale unix domain connections f [2000/04/10] kern/17905 dillon 4.0-SNAP keep on crashing every 3 days o [2000/04/11] i386/17926 yokota psm device problems with apm resume o [2000/04/11] i386/17930 wpaul Patch to MFC WaveLAN WEP into 3.4-STABLE f [2000/04/11] kern/17936 panic: resource_list_alloc: resource entr o [2000/04/12] kern/17961 n_hibma Fatal Trap 12. Page fault while in kernel o [2000/04/12] kern/17965 wpaul vr (MII-bus version in 4.0 ONLY) driver l o [2000/04/14] kern/18012 adrian vnode_free_list corruption, "free vnode i o [2000/04/17] misc/18065 mdodd FREEBSD 4.0 crashes on boot Compaq Prolia o [2000/04/23] ports/18180 jmz xdm authorization fails with XDM-AUTHORIZ s [2000/04/23] bin/18181 Getty can fail to observe :de: specificat f [2000/04/23] i386/18185 gibbs Adaptec 3950U2 errors during boot/probe o [2000/04/24] kern/18200 mdodd 3com 3c509b recognized twice during boot f [2000/04/25] kern/18209 green rlimits are never checked in exec() if ex o [2000/04/28] kern/18285 the system froze when use scon -s 50 f [2000/04/30] kern/18316 close-together bt848/878 captures to file o [2000/05/02] kern/18345 cg sbc / pcm not fully recognizing AWE64 o [2000/05/02] kern/18348 yokota tags o [2000/07/19] kern/20040 msmith Toshiba 2775 hangs after pcib0 driver is o [2000/07/25] misc/20172 byacc 1.9 fails to generate $default tran o [2000/07/27] kern/20213 NFS and Linuxulator issues in PR kern/194 o [2000/07/27] kern/20217 darrenr IPF default block and inclusion in rc.net o [2000/07/27] kern/20234 green panic(): lockmgr: pid 259, not exclusive o [2000/07/28] bin/20259 des fetch(1) confused when redirected from ht o [2000/07/29] conf/20282 qa sysinstall does not recover some /etc fil f [2000/07/31] kern/20335 yokota S3Trio64V+ is detected as CGA by syscons a [2000/08/02] bin/20373 Setting breakpoints in shared objects bro o [2000/08/08] ports/20490 tg Termios timeout parameters, VMIN, VTIME, f [2000/08/09] i386/20507 yokota Mouse freezes in 4.0-release after some u o [2000/08/10] kern/20523 Support for PCI multiport cards for sio d o [2000/08/13] kern/20572 marcel cannot safely remove COMPAT_43 from the k o [2000/08/14] kern/20609 dillon panic: vm_fault: fault on nofault entry, f [2000/08/15] kern/20631 kernel panics on ifconfig if_le f [2000/08/15] kern/20632 stacking mount_null causes an error: moun o [2000/08/15] bin/20633 fdisk doesn't handle LBA correctly f [2000/08/17] i386/20685 fbsd 4.1-stable crashed when compiling st f [2000/08/17] kern/20689 groudier Newbusified version of ncr driver does no o [2000/08/18] kern/20708 imp Adaptec 1542 ISA SCSI Controller not dete o [2000/08/20] kern/20734 n_hibma USB mouse detaches and never reataches f [2000/08/22] bin/20779 assar junk pointer error causes kpasswd to fail o [2000/08/26] misc/20861 jasone libc_r does not honor socket timeouts o [2000/08/28] gnu/20912 gdb does not recognise old executables. f [2000/08/30] bin/20952 markm ftpd doesn't honor account expiration tim o [2000/08/31] kern/20958 mdodd ep0 lockup with ifconfig showing OACTIVE o [2000/09/06] i386/21087 tanimura ed driver incorrectly fails probe for ISA o [2000/09/07] misc/21089 vi silently corrupt open file on SIGINT w f [2000/09/08] kern/21131 Floppy causing cold boot in -STABLE f [2000/09/08] kern/21139 ken IBM DNES drives need 'quirk table' entry. o [2000/09/11] bin/21208 mjacob tar does not support 2.5 GB file o [2000/09/11] kern/21209 groudier scsi ncr driver installs instead of scsi o [2000/09/11] ports/21210 dima acroread port missing lib a [2000/09/13] bin/21248 kris openssl dumps core with blank passwords o [2000/09/13] bin/21251 NIS problem - ypbind does loop in CLNT_BR o [2000/09/14] gnu/21260 buffer overrun in uux o [2000/09/14] ports/21264 markm tn3270 port receives segmentation fault f [2000/09/14] kern/21270 Kernel compilation errors and dies when c o [2000/09/14] gnu/21276 libI77 is unable to handle files >2Gbytes o [2000/09/15] bin/21292 ifconfig warn but does duplicate IP addre f [2000/09/15] i386/21297 kernel panic TRAP 18 during kern.flp inst o [2000/09/15] kern/21304 wpaul dc0 watchdog timeouts on NetGear FA310TX o [2000/09/15] kern/21305 roger bktr driver dosn't send signals in contin s [2000/09/18] misc/21384 greid pcm driver has static in recorded audio o [2000/09/19] misc/21406 freebsd's bootinst or booteasy overwrites f [2000/09/20] kern/21424 Blocking issue while regenerating aliases o [2000/09/20] gnu/21433 g++ optimiser produces bad code on right o [2000/09/21] kern/21461 imp ISA PnP resource allocator problem o [2000/09/21] kern/21463 marcel Linux compatability mode should not allow o [2000/09/26] i386/21559 BTX loader sometime show registers f [2000/09/27] bin/21603 green Can't change user passwords on 4.1.1-STAB o [2000/09/28] i386/21624 trap in gusc_attach o [2000/09/28] kern/21631 4.1.1 Release and Stable don't detect my o [2000/09/28] kern/21642 Compaq Netelligent 10/100 card (TI Thunde o [2000/09/29] kern/21653 I need a AD1816 Driver o [2000/09/29] bin/21654 Re: nvi's -c flag does no do what it is d o [2000/10/01] kern/21674 Fujitsu MO drives M2513A don't like the s o [2000/10/01] kern/21688 Kernel crash with Adaptec AAA-133 and ahc o [2000/10/02] misc/21701 qa Keymap selection menu broken on initial i o [2000/10/02] docs/21708 jlemon kqueue/kevent man pages isn't specific ab o [2000/10/02] ports/21714 sobomax audio problem with nil o [2000/10/04] ports/21756 adrian errors in Squid-2.3.4's configure prevent o [2000/10/04] ports/21761 adrian Re: errors in Squid-2.3.4's configure pre o [2000/10/05] kern/21771 Fix for sppp and Cronyx drivers update o [2000/10/05] gnu/21779 patch(1)'s bug of new file creation o [2000/10/06] kern/21791 Hang on FIN_WAIT_2 a [2000/10/06] kern/21808 [patches] msdosfs incorrectly handles vno o [2000/10/07] kern/21827 mount causes freebsd 4.1.1 to reboot o [2000/10/09] kern/21860 The fix to TCP_ISSINCR after the bugtraq o [2000/10/09] bin/21877 green [PATCH] DSA support for pam_ssh o [2000/10/10] kern/21898 If options NFS is not in the kernel, moun o [2000/10/12] misc/21940 Modem Power-Off kills system o [2000/10/13] kern/21965 Running ldconfig (linux binary) from ld-1 o [2000/10/15] misc/21998 green ident only for outgoing connections o [2000/10/16] kern/22029 mckusick use of softdependencies leads to major fi o [2000/10/17] kern/22063 jdp bpf when used with the select system call o [2000/10/19] kern/22142 securelevel does not affect mount o [2000/10/22] bin/22212 skeyaccess(3) doesn't for primary group o [2000/10/22] kern/22225 Trying to build a CURRENT snapshot on 4.1 o [2000/10/23] kern/22265 Suspend only possible once after reboot o [2000/10/24] misc/22284 Change (SunOS) NIS passwd error o [2000/10/25] bin/22291 getcwd() fails on recently-modified NFS-m o [2000/10/26] i386/22315 Cannot reboot or power-off the machine o [2000/10/29] ports/22403 portmgr "make readmes" hangs if category director o [2000/10/30] kern/22417 gibbs advansys wide scsi driver does not suppor a [2000/10/30] ports/22421 ports New port: Enhydra 3.1 beta 1 o [2000/10/31] i386/22441 pmap_growkernel() is not effective at ker o [2000/11/02] kern/22532 [patch] /dev/dsp is sometimes busy when n o [2000/11/03] misc/22588 scp hangs when using Lucent 802.11b card f [2000/11/03] kern/22594 NFS can't handle asymmetric server routin f [2000/11/04] i386/22606 Panic on boot: panic string "panic ahc0: o [2000/11/05] bin/22614 billf pam_ssh dumps core o [2000/11/05] kern/22624 Interrupt conflict btw. vga and Ethernet o [2000/11/06] gnu/22635 Why don't you use truncate(2) in libI77 o [2000/11/06] kern/22642 Load average stuck not changing o [2000/11/06] kern/22643 Cannot compile kernel with support for Gr o [2000/11/06] bin/22647 rmail calls sendmail with -G which upsets o [2000/11/08] bin/22685 Repairing a directory hard link. o [2000/11/08] i386/22708 fpe in healthd when it starts o [2000/11/08] i386/22712 sysinstall makes wacky keymap choices o [2000/11/10] bin/22737 syslog gets spammed with /kernel: arp_rtr o [2000/11/13] kern/22826 marcel Memory limits have no effect in linux com o [2000/11/14] bin/22846 Routed does not reflect preference of Int f [2000/11/15] kern/22862 ncr probe fails with CACHE TEST FAILED: ? o [2000/11/15] kern/22866 Packets send on INET6 sockets compatible o [2000/11/15] kern/22877 installation panic if ep0 presents o [2000/11/16] kern/22896 When kernel boots uhci fails o [2000/11/17] kern/22926 kernel 4.1-RELEASE, 4.1.1-RELEASE (floppy o [2000/11/18] kern/22942 Problem with ext2fs support o [2000/11/18] kern/22943 marcel Problem with linux emulation o [2000/11/18] i386/22944 isa_dmainit fails on machines with 512MB s [2000/11/18] bin/22945 tftp (4.1.1-RELEASE) appears broken a [2000/11/18] kern/22947 jon IBM 10/100 EtherJet Cardbus (Xircom X3201 o [2000/11/18] kern/22951 failed drive causes panic with HPT370 RAI o [2000/11/19] i386/22969 4.1.1 stable kernel cannot find console f [2000/11/20] conf/22998 darrenr ipf fails to load the rules if IPFILTER i o [2000/11/22] i386/23039 disklabel editor couldn't create partitio o [2000/11/23] gnu/23058 ncurses: tgoto_internal() ugliness o [2000/11/24] misc/23069 jkh Compat22 does not work until you reboot o [2000/11/25] bin/23098 murray If installing on a serial console, enable o [2000/11/26] misc/23120 '|more' takes up to 100% system resources o [2000/11/26] ports/23125 ports Successful emulation of StarOffice depend o [2000/11/27] ports/23140 pst GNU id-utils port is out-of-date a [2000/11/28] misc/23161 mp tcsh execs /bin/ls --color 80 char. but u o [2001/02/14] kern/25093 4.2-STABLE does not recognize PCNet-ISA+ o [2001/02/16] kern/25136 Fatal trap 12: page fault while in kernel o [2001/02/16] bin/25153 pirzyk kdump does not finish displaying data a [2001/02/19] kern/25201 imp pccard event and syscons beep duration de o [2001/02/19] kern/25213 peter Bus abstraction interface doesn't allow p o [2001/02/19] i386/25214 Installing 4.2, and after the initial set o [2001/02/20] i386/25236 Intel 82559 is not working behind a DEC/I o [2001/02/20] bin/25244 termcap and printcap interference o [2001/02/21] kern/25245 mounting NFS to/from same host + activity o [2001/02/21] kern/25248 bde sys/user.h needs sys/param.h, but doesn't o [2001/02/21] kern/25255 keyboard response very slow with PCMCIA E f [2001/02/21] kern/25261 gibbs ahc0 no active SCB errors when booting of a [2001/02/21] kern/25266 chris fdesc file system in -STABLE locks up dur o [2001/02/21] ports/25272 rse Using eperl as cgi/nph binary executor ca o [2001/02/23] bin/25337 rwatson dmesg -a should be restricted o [2001/02/24] kern/25344 ipfilter and ppp insecure in 4.2-Stable o [2001/02/24] kern/25346 Some interrupts not delivered on Dell Wor o [2001/02/25] ports/25374 okazaki A new port math/atlas highly optimized BL o [2001/02/26] bin/25403 darrenr ipfilter: enable ipv6 and STATETOP in 4.2 o [2001/02/28] bin/25461 qa sysinstall's fdisk and disklabel don't wo o [2001/02/28] kern/25464 if_xl.so kld does not work with "options o [2001/03/01] kern/25476 [PATCH] The syscall oldgetkerninfo can re o [2001/03/03] kern/25511 ioctl(fd, FIONREAD, &c) on a FIFO (not PI o [2001/03/04] ports/25522 portmgr FORBIDDEN ports doesn't return error for o [2001/03/05] bin/25542 /bin/sh: null char in quoted string o [2001/03/07] misc/25585 sed.test 8.16 puts bugged sed into infini o [2001/03/07] bin/25586 green Password expiration doesn't work after up o [2001/03/10] kern/25650 le nic driver causes kernel panic o [2001/03/11] i386/25693 VGA driver on Current not found o [2001/03/13] kern/25781 Statclocks cannot be disables on ServerWo o [2001/03/14] misc/25801 imp change IP-address on pccard (3Com) fails o [2001/03/15] bin/25826 nfsd -t -h adr1 -h adr2 doesn't work o [2001/03/16] misc/25851 qa Security hole in anonymous FTP setup scri o [2001/03/17] bin/25886 cgetset(3) doesn't get cleared when switc o [2001/03/18] i386/25889 FDISK lost a partition ! o [2001/03/19] bin/25929 Can't use MAKEDEV in fixit mount o [2001/03/20] kern/25949 msmith camcontrol doesn't find new drives or RAI o [2001/03/20] i386/25958 jhb Xfree86's savage and vesa drivers can pan o [2001/03/20] kern/25959 pcn driver disables nic after kernel is l o [2001/03/21] i386/25968 /usr/src/lib/libcrypt/../libutil/property o [2001/03/22] kern/25986 Socket would hang at LAST_ACK forever. o [2001/03/22] misc/26002 n_hibma Poor read/write performance on uhci USB c a [2001/03/22] bin/26010 ache tar(1) core-dumps on '-I file' o [2001/03/22] kern/26013 Linksys (rev 3) USB 100TX NIC causes infi o [2001/03/23] ports/26036 dima acroread4 produces invalid postscript in o [2001/03/25] kern/26078 Jails cannot connect to the main server a o [2001/03/26] bin/26093 markm pam_unix rejects authenticating accounts o [2001/03/27] kern/26142 Unlink fails on NFS mounted filesystem o [2001/03/27] kern/26161 Kernel Panic on Dual Processor System dur o [2001/03/28] kern/26171 marcel not work Linux-emulator, but hi is work i o [2001/03/31] i386/26261 silo overflow problem in sio driver o [2001/04/01] conf/26275 darrenr ipfilter_enable in rc.conf does not load o [2001/04/02] kern/26304 pcm only plays left channel in FreeBSD 4. o [2001/04/02] bin/26307 libc_r aborts when using the KDE media pl o [2001/04/03] kern/26309 PPPoE client panics in kernel - fxp probl o [2001/04/03] misc/26320 mountd breaks IRIX automounter f [2001/04/04] kern/26356 Large copy of files to the machine causes o [2001/04/04] kern/26361 5.0-04022001-CURRENT kernel panic on kern f [2001/04/05] gnu/26362 "cvs server" doesn't honour the global -- o [2001/04/06] kern/26384 dc driver hangs in dc_rxeof o [2001/04/08] kern/26430 cg -CURRENT panics on cat /dev/dsp or cat /d o [2001/04/09] ports/26464 ports Citrix client no longer reads files in lo o [2001/04/10] misc/26486 setnetgrent hangs when netgroup contains o [2001/04/11] kern/26501 imp Unsuported PCCARD freeze the kernel in is o [2001/04/12] kern/26506 sendto() syscall returns EINVAL in jail e o [2001/04/12] kern/26517 sos ATAPI DVD drive not recognized (solo mast o [2001/04/14] kern/26567 Mouse driver will not properly restart if o [2001/04/14] kern/26568 Mouse driver will die if you move mouse a o [2001/04/15] ports/26607 adrian squid port don't work corretly when compi o [2001/04/16] kern/26613 ethernet vr0 hangs f [2001/04/18] ports/26679 sobomax make on qpopper4 fails because it's using o [2001/04/19] kern/26704 AHA-2940[UW] gives MPARERR on cold boot ( a [2001/04/22] gnu/26771 cvs checkout bug with existing val-tags a o [2001/04/23] ports/26797 assar arla-0.34.6 causes kernel panic/page faul o [2001/04/23] bin/26809 /etc not saved on upgrade o [2001/04/25] bin/26842 dd dump with h flag takes a very long time o [2001/04/25] ports/26848 sobomax jre port core dumps o [2001/04/25] bin/26869 vi(1) crashes in viewing a file with long o [2001/04/26] kern/26878 Kernel panic in nfs subststem (vrele: neg o [2001/04/27] ports/26891 ports Star Office 5.2 doesn't run after install o [2001/04/27] ports/26894 ejc omniORB 3.0.3 servers die when using Free o [2001/04/27] kern/26896 Kernel panic during ktrace (vrele: negati o [2001/04/27] misc/26897 qa 4.3R sysinstall fails to create swap part f [2001/04/27] i386/26903 qa Cannot use DHCP from /stand/sysinstall ne o [2001/04/27] ports/26909 chuckr a2ps cannot handle long hostnames o [2001/04/28] kern/26920 imp PCI autoconfiguration of USB, dc ether, a o [2001/04/29] kern/26953 adter the installation is over it's make o [2001/04/30] i386/26985 jkh floppy install 4.3 via FTP hangs o [2001/04/30] bin/26996 green sshd fails when / mounted read-only o [2001/05/01] bin/27016 ipnat should not require existence of ipf o [2001/05/01] kern/27020 FreeBSD 4.3RC compiled with an SMP kernel o [2001/05/02] kern/27044 remounting a r/w filesystem read-only cau o [2001/05/02] ports/27052 reg libtool port broken in 4.3 RELEASE o [2001/05/04] bin/27086 green OpenSSH does not set X11 forwarding o [2001/05/04] kern/27087 FreeBSD 4.3-RELEASE does not recognize Gi a [2001/05/08] ports/27202 dougb mail/pine sucks rocks when saving over NF o [2001/05/09] bin/27230 nectar Users after NIS lines in /etc/passwd o [2001/05/09] kern/27237 Watchdog Timeouts under EXCESSIVE load o [2001/05/09] kern/27242 SIGHUP propagation failure to processes o o [2001/05/10] i386/27247 Panic on install - "page fault syncing di o [2001/05/10] kern/27262 process won't be terminated after CPUTIME o [2001/05/15] ports/27358 ports Naming scheme for JDK ports (java) f [2001/05/16] misc/27384 SCSI Hardrive bios of COMPAQ Proliant is o [2001/05/16] misc/27400 4.3 install hangs because it is looking f o [2001/05/17] i386/27404 FreeBSD-4.3 crashes in VMware o [2001/05/17] ports/27419 jhb E-FancyLauncer clones itself over and ove o [2001/05/20] kern/27474 Interactive use of user PPP and ipfilter o [2001/05/21] misc/27498 grog vinum crashed after 'vinum dumpconfig' o [2001/05/21] misc/27510 Alcatel Speed Touch ASDL Modem - USB o [2001/05/21] kern/27522 des linprocfs:/proc/stat does not handle SMP o [2001/05/22] kern/27543 des /proc/cpuinfo does not handle SMP hosts o [2001/05/23] bin/27593 sos burncd msinfo returns wrong info at more o [2001/05/23] docs/27605 doc Cross-document references () f [2001/05/24] bin/27630 mktime failure. o [2001/05/25] ports/27632 reg SNNSv4.2 port has known and fixable bug a [2001/05/26] kern/27674 sos IDE Interrupts disabled on resume o [2001/05/27] kern/27694 cg Panic in csa(4) f [2001/05/28] i386/27711 panic: ffs_write: type: 0xc39b2fc9 9 (0,5 o [2001/05/29] i386/27729 qa the ls120 device "afd" does not show up u a [2001/05/29] ports/27739 ports Broken Port: textproc/pspell-ispell -- co o [2001/05/30] kern/27782 darrenr ipf packet munging bug using "to" option o [2001/06/01] misc/27810 rpc.statd can loop o [2001/06/04] ports/27875 ports invoked on boot, SIGHUP is delivered and f [2001/06/04] misc/27880 select fails to return incoming connect o [2001/06/04] ports/27883 bp shares mounted by the smbfs-1.4.1 port ar o [2001/06/05] misc/27893 can't burn audio cds on LG CD-RW CED-8083 o [2001/06/05] misc/27896 Error in /etc/exports invalidates entire o [2001/06/06] bin/27922 imp FreeBSD-SA-01:40 o [2001/06/07] ports/27925 portmgr index is not updated when it html manpage o [2001/06/07] ports/27926 portmgr bsd.port.mk does not handle MLINKS with h o [2001/06/07] ports/27929 jmz make extract on x11/XFree86-4 port fails o [2001/06/09] bin/27988 [PATCH] let pam_ssh.so explicitly start s o [2001/06/09] kern/27995 src/sys/pci if_pcn.c revision 1.21 resp. o [2001/06/11] ports/28030 ports VMware requires block device for linux /d o [2001/06/12] misc/28095 [PATCH] pax may descend into directories o [2001/06/12] i386/28098 mbus leakage in FreeBSD 4.3R somewhere o [2001/06/12] kern/28100 Hang after device probe on EISA machine o [2001/06/12] ports/28102 assar Recent changes to 4.3-STABLE break arla-0 o [2001/06/12] kern/28112 Packet capture does not work well with -p o [2001/06/14] ports/28155 portmgr DESTDIR is used incorrectly in bsd.port.m o [2001/06/14] kern/28164 [PATCH] crashdump can trash disklabel/oth o [2001/06/15] kern/28173 Problem with Touchpad on Inspiron 5000e o [2001/06/15] ports/28179 nbm vsftpd port creates a user without a warn o [2001/06/15] misc/28188 Cron is being started to early in /etc/rc o [2001/06/16] kern/28218 A peer of TCP socket cannot detect termin o [2001/06/16] bin/28221 eric dialog(1) segfaults (due to the bug in li o [2001/06/17] bin/28223 su doesn't look at login.conf all the tim o [2001/06/17] bin/28224 ftpd doesn't honor invalid shelll in logi o [2001/06/17] i386/28231 /boot/loader can't load kernel on Xyberna f [2001/06/19] ports/28278 gnome mozilla doesn't build o [2001/06/20] ports/28301 ports Isakmpd port hogs 99% of cpu capacity. o [2001/06/20] bin/28311 markm ftpd and sshd do not honor expired pw ent f [2001/06/22] misc/28339 roam Slow Disk performance on 4.3 (about half o [2001/06/23] misc/28374 Re: gdb output is wrong (same as #13427 ? o [2001/06/23] ports/28378 ports p5-Net-IRC-0.70_1 eats irc text with col o [2001/06/23] bin/28381 Can't turn off telnet autologin o [2001/06/24] ports/28398 ports ja-dvips cannot find tex.pro o [2001/06/25] bin/28403 Re: make(1) does not correctly substitute o [2001/06/25] kern/28417 arplookup uses potentially unprotected st o [2001/06/26] bin/28424 mtree fails to report directory hierarchy o [2001/06/26] kern/28434 cs0's promiscuous mode does not work o [2001/06/27] misc/28442 hot rebuild on Compaq Intergrated Smart A o [2001/06/27] ports/28458 ports Gnome-1.4's use of Xalf out of sync with o [2001/06/28] ports/28474 joe incorrect permissions on log files create f [2001/06/28] ports/28475 kde klaptop daemon incorrectly thinks that th o [2001/06/28] ports/28491 kiri www/w3-4 port: mismatch between pkg-plist o [2001/06/28] kern/28497 dmesg corrupted buffer/output o [2001/06/28] kern/28498 /var/log/messages incorrect o [2001/06/29] misc/28508 problems with backup to Tandberg SLR40 st o [2001/06/30] i386/28536 writing to corrupted msdosfs causes kerne o [2001/06/30] bin/28552 EUC support of wcstombs(3) is broken for o [2001/07/01] i386/28592 Please support boot from ATA RAID-0 devic o [2001/07/01] misc/28605 Syntax error in Ukrainian message in INDE o [2001/07/02] ports/28623 ports New port: Sun's Java Communication API o [2001/07/02] ports/28624 ports New port: FreeBSD-specific support for Su o [2001/07/02] misc/28629 ftpd REST command does not support restar o [2001/07/03] kern/28672 Erroneously mounting Audio-CDs as ISO cra o [2001/07/04] kern/28692 cg ICH sound driver hangs kernel o [2001/07/04] kern/28713 NEW IPFW FEATURE [PATCHES]: Dynamic rule o [2001/07/05] bin/28724 green ssh client won't do RhostsRSAAuthenticati o [2001/07/05] misc/28737 D-Link DFE530TX - vr0: Watchdog Timeouts; o [2001/07/06] kern/28768 The system doesn't get connects on one of o [2001/07/06] bin/28773 [PATCH] Bug in pw, no $ in username o [2001/07/07] bin/28798 mikeh mail(1) with a pager (more) requires fg/C o [2001/07/07] i386/28802 3com Performance Pro modem conflicts with o [2001/07/09] kern/28840 gibbs Possible interrupt masking trouble in sys o [2001/07/09] bin/28852 cracauer behavior of /bin/sh with -e option looks o [2001/07/09] ports/28853 gnome textproc/scrollkeeper doesn't compile o [2001/07/09] kern/28856 3COM PCI FaxModem with shared IRQ causes o [2001/07/11] ports/28889 lioux qpopper-4.0.3 error: Insufficient room to o [2001/07/12] i386/28928 wpaul dual starfire nic doesn't seem to work (a o [2001/07/13] bin/28935 dwmalone syslogd -u doesn't treat * as "all levels o [2001/07/15] i386/28985 Installing FreeBSD 4.3 on a Dell Optiplex o [2001/07/16] bin/29026 traceroute -s option allows any IP addres o [2001/07/17] bin/29049 green multi-user with star o [2001/09/15] misc/30590 /etc/hosts.equiv and ~/.rhosts interactio o [2001/09/15] kern/30592 roam [PATCH] panic: static sysctl oid too high o [2001/09/16] ports/30607 kde KOffice doesn't build o [2001/09/16] ports/30613 mharo ttcp should print statistics on stderr o [2001/09/17] kern/30630 Failure to check for existence of interfa o [2001/09/17] ports/30635 dougb Reduce bindir clutter in xscreensaver por o [2001/09/17] i386/30637 MAKEDEV 1.243.2.36 errors in i4bteld* nod a [2001/09/17] ports/30638 ports SQL-Ledger port update o [2001/09/18] kern/30653 brooks KAME option MAX_GIF_NEST missing from /us o [2001/09/18] bin/30654 Added ability for newsyslog to archive lo o [2001/09/18] ports/30663 ports NEW PORT: devel/libCxClient o [2001/09/20] ports/30679 ports Update port: Sablot-0.70 o [2001/09/20] kern/30684 4.4-RELEASE floppy instalation freezes be o [2001/09/21] kern/30704 4.4R and I4B: loaded NETGRAPH and ifconfi o [2001/09/21] misc/30708 DHCP and multiple interfaces o [2001/09/21] kern/30712 fatal kernel trap during ufs_rename o [2001/09/21] kern/30715 4.4-RELEASE cannot boot up with fxp NIC o o [2001/09/21] ports/30728 ports pkg_add causes install of multiple versio o [2001/09/22] kern/30744 UDMA ICRC error results in kernel panic o [2001/09/23] kern/30755 o [2001/09/23] ports/30767 ports silly links break XFree-4 port if /usr/X1 o [2001/09/24] i386/30784 4.4 does not install KDE or Gnome+Sawfish o [2001/09/24] i386/30789 4.4 AMD K7 350 " microuptime() went back o [2001/09/24] kern/30798 contigfree() doesn't o [2001/09/24] ports/30807 ports NEW PORT: net/citadel o [2001/09/25] kern/30817 Addition to kern/28166: impossibility of o [2001/09/25] kern/30820 PCM sound fails o [2001/09/25] ports/30823 ports New port: KinterbasDB, Python module to a o [2001/09/26] bin/30837 Sysinstall doesn't set the schg flag on t o [2001/09/26] i386/30842 PCMCIA and Token Ring f [2001/09/27] ports/30872 ports Patch for IPv6 compat doesn't handle extr o [2001/09/27] gnu/30876 tar ignores complaints from gzip o [2001/09/28] ports/30886 ports upgrade port of lla.pl o [2001/09/28] ports/30892 roam new port suggested o [2001/09/28] ports/30899 jdp build of lang/pm3-base failure on -curren f [2001/09/28] alpha/30905 mjacob reboot hang when using qlogic 1040/isp ba o [2001/09/30] ports/30944 ports mail/postilion broken o [2001/09/30] ports/30947 ports mail/mahogany fails to build, conflicts w o [2001/09/30] misc/30948 ls'ing mounted brand new floppy locks up o [2001/09/30] kern/30952 kernel panics with 3C905[BC] cards / xl d o [2001/10/01] kern/30958 QUOTA with 0 bytes in quota.user hangs up o [2001/10/01] bin/30959 newfs -i x dumps core for small values of o [2001/10/01] i386/30965 Cyclades Cyclom-Yep causes FreeBSD to han o [2001/10/01] bin/30966 fenner TCPdump repeating on Radius accounting pa o [2001/10/01] ports/30969 dirk mkisofs path grafting will not work o [2001/10/01] kern/30971 peter NFS client modification time resolution i o [2001/10/02] ports/30987 ports mail/evolution does not depend on db3 and o [2001/10/02] i386/30991 pcm in PNP-OS mode vs. non-PNP-OS mode po o [2001/10/02] bin/30993 xxgdb cannot open source file a [2001/10/03] bin/31002 mike whois dumps contents of /etc/services whe o [2001/10/03] bin/31009 Installing the current snapshot fails whe o [2001/10/04] bin/31029 syslogd remote logging back down o [2001/10/04] ports/31031 ports Maintainer update port: net/ipcad: upgrad o [2001/10/04] i386/31035 Smart Array & SMP o [2001/10/04] bin/31045 routed dumps core o [2001/10/04] kern/31046 Linux OpenGL programs do not work under t o [2001/10/04] kern/31047 Linux programs do not dump core in linux o [2001/10/06] kern/31084 imp xe driver device probe fails in CIS tuple o [2001/10/06] kern/31085 kernel panic on tftp only pxeboot o [2001/10/06] ports/31086 ports StarOffice52 port failing on FreeBSD 4.4 o [2001/10/07] kern/31102 lge + Pentium III data transmission probl o [2001/10/07] kern/31103 nfs read i/o error when nfs-mounting onto o [2001/10/07] ports/31113 ports bsd.ports.subdir.mk: remove NOCLEANDEPEND o [2001/10/07] kern/31122 linux setre*uid() doesn't handle uid -1 p o [2001/10/08] kern/31130 ipfw tee functionality causes malfunction o [2001/10/08] ports/31140 ports irssi segfaults on bad channel topics o [2001/10/08] ports/31141 ports OpenDX port dumps core in dxexec o [2001/10/08] ports/31143 ports gd does not compile, uses nonexistent ftg 860 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1995/01/11] i386/105 Distributed libm (msun) has non-standard s [1995/09/26] kern/742 syslog errors accessing Mac hard disks [p s [1995/11/20] kern/831 one minor complaint about the kernel visu a [1996/01/30] bin/981 fenner clnt_broadcast() is not aware of aliases a [1996/07/07] bin/1375 eivind Extraneous warning from mv(1) [PATCH] o [1996/09/14] gnu/1611 phk groff should use "system-wide" papersize s [1996/10/13] misc/1791 tegge syslimits.h does not allow overriding def o [1996/10/20] bin/1849 gdb sets library breakpoints on the wrong s [1996/11/04] gnu/1961 [PATCH] uucp logging files are in /var/sp s [1996/11/22] bin/2090 clients may bind to FreeBSD ypserv refusi s [1996/12/02] bin/2137 tegge vm statistics are bad s [1996/12/14] bin/2216 [PATCH] Ada specs not being compiled into o [1996/12/24] kern/2273 dufault support for POSIX.4 / POSIX.1a RT-schedul s [1996/12/27] kern/2298 Support for DSR/DCD swapping on serial po a [1996/12/27] misc/2302 brandon new crypt() including SHS and an extendab o [1997/01/10] bin/2442 davidn setusershell()/endusershell() missing o [1997/01/28] bin/2603 dufault Added POSIX.4/POSIX.1b constants in unist a [1997/02/02] bin/2641 wpaul login_access.c doesn't work with NIS by d o [1997/02/15] misc/2745 fenner PR querry web form doesn't sort correctly o [1997/03/03] kern/2865 peter NFS client hangs on umount, ls, df when N o [1997/03/10] bin/2934 cracauer sh(1) has problems with $ENV s [1997/03/10] bin/2938 hoek Add -b, -l, and -f options to du(1) o [1997/03/31] gnu/3157 obrien Patches to gas and gdb to support MMX ext o [1997/04/07] bin/3221 rpc.rusersd : can't communicate with SunO o [1997/04/07] misc/3225 [PATCH] uucpd.c should normalize host nam o [1997/04/09] bin/3242 incorrect prototype for initgroups o [1997/04/14] bin/3284 [PATCH] symorder(1): -t option doesn´t wo a [1997/05/08] gnu/3552 asmodai the -L option of tar does not work proper f [1997/05/16] bin/3608 jkoshy Telnet in linemode will break apart long o [1997/06/02] bin/3762 dufault Bogus return values from rtprio(1) o [1997/06/09] bin/3826 KerberosIV sometimes hangs rcp o [1997/06/10] bin/3837 dufault new feature for rtprio o [1997/06/19] misc/3912 ctags(1) cannot trace some macro correctl o [1997/06/24] kern/3944 paul if_le doesnt receive ether multicast pack o [1997/06/25] kern/3948 jlemon nonworking t/tcp server side o [1997/06/27] kern/3968 Hardware probes die on Peak SBCs. o [1997/07/18] bin/4116 davidn Kerberized login as .root fails to o [1997/07/26] bin/4172 des suggest reconnection option added to fetc s [1997/07/28] kern/4184 [PATCH] minor nits in sys/netatalk o [1997/08/07] kern/4243 file locking doesn't work for pipe o [1997/08/08] misc/4249 wpaul ypchsh doesn't care about changing a user o [1997/08/12] misc/4285 SDL RISCom/N2 (ISA) o [1997/08/13] kern/4297 dufault SIGEV_NONE and SIGEV_SIGNAL go in signal. o [1997/08/13] i386/4300 msmith The initial timeout on open("/dev/lpt0".. o [1997/08/14] ports/4304 portmgr Recommendation re. Ports Collection o [1997/08/29] kern/4413 No way to unmount a floppy that goes bad o [1997/08/29] bin/4419 sheldonh man can display the same man page twice o [1997/08/29] bin/4420 roberto find -exedir doesn't chdir for first entr o [1997/09/03] bin/4459 bde No prototype for moncontrol(3) and monsta o [1997/09/13] kern/4528 processes hang if the mount_portal proces o [1997/09/21] kern/4597 Patch to pass NPX status word in signal c o [1997/09/25] bin/4629 calendar doesn't print all dates sometime o [1997/09/28] misc/4646 qa Can't fixit with an NFS-mounted CD. o [1997/10/05] bin/4696 ping hangs on certain unresolvable hosts o [1997/10/15] gnu/4771 diff to correct misleading total bytes in o [1997/10/24] kern/4845 Boot complains about disk slices in FAT p o [1997/11/08] bin/4975 quotaon while server very busy causes loc o [1997/11/13] bin/5031 gad lpr does not remove original file if -s i o [1997/11/14] kern/5048 dillon Calling shutdown(fd,1) multiple times wil o [1997/11/20] kern/5108 dillon pmap_release panics with 'freeing held pa o [1997/11/20] kern/5110 dillon kernel crash & core in pmap_testbit durin s [1997/11/28] bin/5173 [PATCH] restore ought to deal with root s s [1997/11/30] i386/5182 bde [PATCH] A patch support high speed serial s [1997/12/11] kern/5275 dillon [PATCH] Added volume (barcode) support to s [1997/12/14] bin/5296 slattach fails creating pidfile with ioct o [1997/12/22] kern/5362 peter mount incorrectly reports / as an NFS exp s [1998/01/03] bin/5419 [PATCH] timed rejects valid networks with f [1998/01/08] bin/5444 [PATCH] ypserv uses wrong dns lookup orde o [1998/01/11] bin/5483 Login(1) clears utmp entry s [1998/01/20] kern/5532 [PATCH] Dropped packet counts are inaccur o [1998/01/24] i386/5559 imp PC-Card joystick ports were not supported o [1998/01/26] kern/5577 bde Unnecessary disk I/O and noatime ffs fixe a [1998/01/28] bin/5591 jkoshy Trouble with LD_PRELOAD environment varia o [1998/01/31] bin/5609 gad lpd cannot send long files to HP's JetDir o [1998/02/09] kern/5689 phk sysctl vm.vmmeter - bogus and unsupported o [1998/02/10] bin/5712 mikeh /bin/chio code cleaup and option added o [1998/02/14] bin/5745 [PATCH] Add /usr/local/share/mk to defaul o [1998/02/18] i386/5784 ibcs2 emulation not handling ioctl(..FION o [1998/02/26] kern/5863 Kernel support for sorted SHUTDOWN & SHUT o [1998/03/06] kern/5931 dma errors in syslog with GUS-max a [1998/03/06] i386/5932 perfmon kernel code should check for non- o [1998/03/11] gnu/5982 no error exit code from tar on child fail o [1998/03/15] bin/6015 indent(1) breaks source with backslash ne f [1998/03/28] bin/6161 assar 2.2.6 kerberos servers are awfully visibl o [1998/03/30] bin/6176 running architextSearch (excite) under li o [1998/03/31] bin/6183 quota hangups o [1998/03/31] kern/6184 No error if resulting file pos in lseek i o [1998/04/14] kern/6296 IP_HDRINCL sockets force header fields to o [1998/04/16] kern/6318 pppd does not update wtmp on hangup a [1998/04/16] misc/6320 mike Sometimes nohup isn't good enough. o [1998/04/17] bin/6332 bde /usr/include/time.h doesn't compile with o [1998/04/17] gnu/6338 Gnu tar not working properly with the -G o [1998/04/18] conf/6346 Kernel version strings need to relate to o [1998/05/11] i386/6595 Old IP address persistent after change o [1998/05/12] misc/6612 bsd.man.mk can't handle man pages with ": f [1998/05/13] kern/6623 non-root user can crash system if disconn o [1998/05/13] conf/6624 davidn One class with nologin=/etc/nologin: reje o [1998/05/15] kern/6651 peter Possible NFS deadlock clue s [1998/05/17] kern/6668 babkin [PATCH] new driver: Virtual Ethernet driv a [1998/05/26] misc/6759 phk buggy code in libdisk.a's disk.c s [1998/05/29] bin/6785 place for all the default dump flags s [1998/06/01] kern/6820 jesper cd9660_mount NULL pointer deref for no CD o [1998/06/06] kern/6874 accounting prevents transition to multi u o [1998/06/13] misc/6936 phk sysinstall: install from MS-DOS MO divece o [1998/06/22] bin/7023 portmgr bsd.port.(%|subdir.).mk patches for size s [1998/06/24] kern/7044 [PATCH] WaveLAN (2.4G, ISA, full-length b o [1998/06/25] docs/7065 wosch FreeBSD webpages -> applications, port br s [1998/06/28] i386/7100 integrate pcvt configuration into the /et s [1998/07/01] bin/7136 kerberized telnetd doesn't use gettytab % s [1998/07/08] kern/7210 [PATCH] od(4) bug fixes and enhancements, s [1998/07/10] misc/7232 qa Suggestion for FreeBSD installation dialo o [1998/07/10] kern/7234 yokota keyboard problems during login immediatel o [1998/07/12] bin/7265 A warning flag is added to ln(1). o [1998/07/13] ports/7268 portmgr MASTER_SITE_OVERRIDE works more better o [1998/07/14] kern/7282 some old and rarely used drivers have app o [1998/07/15] bin/7287 Incorrect domain name for MAP_UPDATE in m a [1998/07/19] bin/7324 wosch Suggestions for minor modifications to ad s [1998/08/13] conf/7606 [PATCH] NIS Makefile.dist: NOPUSH replace s [1998/08/18] bin/7669 libalias does not IRC DCC packets under c o [1998/08/19] gnu/7687 description of default baud rate for cu c s [1998/08/22] kern/7722 Changes to acct format o [1998/08/28] misc/7771 Debugging putenv/getenv o [1998/09/03] bin/7828 Add a command line option to cp to make i o [1998/09/05] kern/7837 rwatson patches to add a p_auth extension pointer o [1998/09/08] bin/7860 gad Extra option to pr(1). s [1998/09/08] bin/7868 [almost patch]Morse Code Fixups o [1998/09/16] misc/7946 asami ccdconfig gives confusing error when give o [1998/09/18] bin/7973 gad lpd: Bad control file owner in case of re s [1998/09/21] kern/8015 nbm [patch] Some sysctl descriptions for the o [1998/09/27] ports/8063 portmgr [PATCH] Add multiple CDROM support to bsd o [1998/10/03] misc/8133 markm [patch] bug in telnetd (Kerberos IV) o [1998/10/12] bin/8295 order of options in printcap causes some o [1998/10/16] kern/8349 [PATCH] Changer definition for SureStore o [1998/10/19] kern/8376 CLOCK_VIRTUAL not implemented o [1998/10/24] bin/8438 ex/vi: Error: tcsetattr: Interrupted syst o [1998/10/27] i386/8474 repquota does not pick up NIS information a [1998/10/28] bin/8479 dd Final \'s in /etc/exports did not work in o [1998/10/30] kern/8498 Race condition between unp_gc() and accep o [1998/11/03] bin/8553 /usr/libexec/mail.local doesn't handle "> o [1998/11/07] kern/8589 incorrect spelling for "dependency" and " o [1998/11/08] kern/8604 ps u gets confused about process start ti o [1998/11/09] kern/8633 TCP packet via SLIP/CSLIP containing this o [1998/11/19] misc/8764 pwd_mkdb is slow on many users o [1998/11/19] docs/8765 dwhite some suggested text for describing passwo o [1998/11/27] i386/8867 qa /stand/sysinstall core dumps (signal 11) o [1998/12/01] kern/8925 options kern file needs AWE_DEFAULT_MEM_S o [1998/12/16] ports/9107 portmgr Addition to bsd.port.mk for searching mul a [1998/12/18] bin/9123 kris pax can't read tar archives that contain o [1998/12/22] bin/9176 dillon placemark to split mount_ufs out of mount o [1998/12/24] bin/9188 telnet gets stuck in ttydrain() f [1998/12/28] misc/9220 ache nvi: catalog: mistake in Russian error me o [1998/12/29] bin/9233 gmp's mpq_add and mpq_sub are buggy o [1999/01/04] bin/9318 vgrind(1): no JAVA support o [1999/01/04] i386/9319 D-Link DE-528CT poor performance a [1999/01/05] bin/9333 jkoshy timestamp dump's progress o [1999/01/08] kern/9392 Alternate system clock OR kernel stats cl o [1999/01/19] kern/9570 dfr ed(4) irq config enhancement o [1999/01/22] kern/9619 Restarting mountd kills existing mounts o [1999/01/25] kern/9679 fix for uninterruptible open in portal fi f [1999/01/25] kern/9689 panic in sbdrop(kern/uipc_socket2.c) o [1999/01/26] bin/9711 Fails: cd /usr/bin; gzip file ; mv file. o [1999/01/28] kern/9748 error in queue handling of at_shutdown() a [1999/01/28] bin/9770 kris An openpty(3) auxiliary program o [1999/01/29] i386/9777 cg Generic AD1816 sound suport in Luigi's pc o [1999/01/31] ports/9840 portmgr patch allows ports to fetch their sources o [1999/02/01] bin/9868 Patch to add "date -a" o [1999/02/01] kern/9869 When using macros out of function, they s o [1999/02/01] conf/9874 idle-timeout facilities in /etc/login.con o [1999/02/03] bin/9902 error in german (and some other) locale s o [1999/02/09] i386/9991 new driver for National Instruments GPIB o [1999/02/11] bin/10030 markm Kerberized telnet fails to encrypt when a o [1999/02/25] docs/10240 wosch We need a script which check if our web m f [1999/02/26] bin/10274 make does not understand "lib(obj)" synta o [1999/02/26] bin/10283 Race condition in rc.network o [1999/03/01] docs/10349 phantom For long .Dt fields, rendering is broken- o [1999/03/02] bin/10358 mikeh ftp(1) has problems with long pathnames f [1999/03/05] ports/10396 asami SPIN is in the wrong category f [1999/03/07] i386/10465 mdodd Must disable ex0 to install. o [1999/03/12] kern/10563 QIC 40/80 tape drive ft present in versio o [1999/03/14] conf/10582 marcel Makefile.upgrade fails with make -j o [1999/03/15] bin/10601 wosch Ownership of symlinks copied by adduser a o [1999/03/15] i386/10608 add Opti Viper-M PCI ID o [1999/03/15] kern/10609 adjtime bug (tv_sec > 2147) and enhanceme o [1999/03/15] bin/10610 New options to date to slowly adjust time o [1999/03/15] bin/10611 timed enhancement o [1999/03/17] kern/10641 groudier Default sync rate in ncr SCSI driver is s o [1999/03/18] kern/10663 hpscan doesn't like 3.1's pt device o [1999/03/19] gnu/10670 cvs doesn't allow digits in local keyword o [1999/03/19] kern/10673 wpaul Non-ASCII chars on serial console with Re o [1999/03/19] kern/10678 Printing problems using ppc bus o [1999/03/19] ports/10682 portmgr List mirror sites in MASTER_SITE_BACKUP - o [1999/03/23] kern/10755 de driver says `invalid EESPROM checksum' o [1999/04/02] bin/10924 Extensions to biff(1) o [1999/04/03] bin/10931 biff b o [1999/04/05] ports/10965 ports lcc-3.6 unable to compile anything o [1999/04/08] kern/11020 popen does not honor ISO 9899 syntax o [1999/04/08] bin/11036 markm Perl does not honor -DNOMAN o [1999/04/10] conf/11058 Recent change to rc script causes hang on o [1999/04/11] bin/11085 Per-host configuration for syslog.conf o [1999/04/11] bin/11092 readlink(1) from OpenBSD o [1999/04/13] bin/11114 make(1) does not work as documented with o [1999/04/13] misc/11126 vt100 termcap entry appears broken o [1999/04/14] ports/11134 hoek existense of /usr/obj/usr/ports/shells/ba o [1999/04/16] i386/11165 IBCS2 don't work correctly with PID_MAX 9 a [1999/04/16] bin/11168 davidn pw(8) usermod does not recognize -w flag o [1999/04/18] bin/11205 Suggestion: move mt(1) to /bin o [1999/04/20] bin/11236 mountd fails to properly check for kernel o [1999/04/20] bin/11248 Shuffle o [1999/04/23] kern/11293 brian FreeBSD's PPP implementation of LQM appea o [1999/04/23] bin/11294 direct logging to other hosts (no local s o [1999/04/28] kern/11365 plip in Linux mode has trouble with some o [1999/05/06] misc/11553 /usr/share/misc/latin1 (new file submissi o [1999/05/18] misc/11767 sppp does not implement VJ compression o [1999/05/19] kern/11789 obrien ELF machine definition missing for ARM o [1999/05/26] bin/11900 mikeh Sed(1) fails with MALLOC_OPTIONS set to ' o [1999/05/28] bin/11914 wosch makewhatis during installworld uses /usr/ o [1999/05/29] bin/11929 symorder doesn't work on elf format objec f [1999/05/30] kern/11945 mjacob tape problems on -stable, mt bl(ocksize), o [1999/05/31] kern/11968 kldload should call module entry point be o [1999/06/01] i386/11979 Vaio 505DX touchpad not detected as Glide o [1999/06/03] kern/12014 alfred Fix SysV Semaphore handling o [1999/06/06] gnu/12046 markm Perl subsystem does not install all tutor o [1999/06/07] kern/12071 [PATCH] large scale IP aliasing o [1999/06/08] i386/12088 Enhancement to ed driver for Linksys 10/1 o [1999/06/16] bin/12244 realpath() fails when there is no permiss o [1999/06/17] bin/12263 hoek "more" problems with long filenames o [1999/06/18] bin/12280 LD_IGNORE_MISSING_OBJECTS not honored for o [1999/06/18] kern/12281 active-filter option in pppd doesn't stop o [1999/06/21] conf/12324 qa Sysinstall's fdisk partition editor is mi o [1999/06/21] ports/12325 portmgr Adds refetch functionallity to bsd.port.m s [1999/06/23] bin/12358 ken Patch: "camcontrol help" should go to std o [1999/06/24] i386/12383 make release warns about /dev entries mak o [1999/06/26] bin/12398 fsck in free(): warning: pointer to wrong o [1999/06/28] conf/12432 dougb empty amd_flags causes start failure in r o [1999/07/06] kern/12543 dg [PATCH] cumulative error counters for fxp o [1999/07/07] bin/12545 kldload(8) should be more sensitive to er o [1999/07/08] ports/12566 billf a guide to pyrotechnics f [1999/07/15] kern/12655 Kernel config file needs more commenting o [1999/07/20] bin/12712 release/Makefile: mounting /some/dir with o [1999/07/20] kern/12723 imp Unnecessary use of magic numbers in F_[SG f [1999/07/22] misc/12765 mikeh cable problem: link down for de0 NICs. o [1999/07/24] bin/12789 Confusing error msg when dumping a filesy o [1999/07/25] bin/12801 sheldonh nvi infinite recursion with options "left o [1999/07/28] kern/12855 mckusick panic:softdep_flushfiles:looping, caused o [1999/08/03] bin/12939 add flag to quota to suppress NFS quota c o [1999/08/04] ports/12952 portmgr make _PORT_USE touch cookies by variable, o [1999/08/04] kern/12966 receiver lockups in vr0 driver o [1999/08/05] bin/12982 last does not support -y option. f [1999/08/05] i386/12993 gibbs "ahc0: Data Parity Error Detected during o [1999/08/08] misc/13036 de doesn't work with DEC 21143 based PCI o [1999/08/09] bin/13042 make doesn't handle wildcards in subdirec o [1999/08/09] bin/13043 minigzip -c option support. o [1999/08/09] i386/13051 after installation on system using COM1, o [1999/08/10] kern/13062 lnc ethernet xmit underflow problem o [1999/08/11] bin/13068 billf Don't stamp out score files! o [1999/08/11] bin/13072 billf Extensions to biff(1) o [1999/08/11] bin/13073 billf Extensions to mesg(1) o [1999/08/11] docs/13079 dwhite new man page describing timeradd() family o [1999/08/12] bin/13108 authunix_create_default includes egid twi o [1999/08/13] bin/13128 billf pkg_delete doesn't handle absolute pathna o [1999/08/15] kern/13161 alfred mounting on top of a mounted file system o [1999/08/18] kern/13232 panic("rtfree"); when sending bootp reque o [1999/08/20] misc/13266 Removal of #defines and addition of const o [1999/08/21] bin/13309 Fixes to nos-tun o [1999/08/22] misc/13326 additional timeval interfaces for ' cannot be used in "via" o [2000/05/29] ports/18896 ports Tcl "info hostname" command returns chop- o [2000/05/30] kern/18909 dwmalone select(2) timeout limited to 100000000 se o [2000/05/31] kern/18928 options ROOTDENAME=xxx on kernel config f o [2000/06/01] ports/18960 portmgr Add USE_APACHE to bsd.port.mk for Apache o [2000/06/01] bin/18961 green sshd does not print before motd o [2000/06/02] bin/18967 ypserv not linked with tcp wrappers f [2000/06/03] misc/18987 Problems with Comtrol RocketPort o [2000/06/03] bin/18992 brian log packets blocked by filter rules o [2000/06/03] misc/18997 markm Kerberos5 CFLAGS needed o [2000/06/04] conf/19001 Delayed fsck + mount of insignificant fil a [2000/06/05] docs/19010 doc Bad144 obsoletion by 4.0 is undocumented; o [2000/06/05] i386/19012 No volume run out for /var and lead my Fr f [2000/06/06] bin/19056 yacc in 3.4 and 4.0 reports "maximum tabl o [2000/06/06] bin/19057 offer of patch to uname that produces pre f [2000/06/06] kern/19063 VGA keyboard sometimes fails to work in b o [2000/06/07] ports/19112 portmgr files with names something,v in patches d o [2000/06/08] misc/19124 ps(1) to support SysV-style options? o [2000/06/08] misc/19129 AMI Raid Express 200 card extremely slow o [2000/06/09] kern/19156 jkh Enable the doFS.sh to run in arbitrary lo o [2000/06/09] kern/19158 U.S.Robotics 56K FAX INT not recognize co f [2000/06/10] bin/19183 more(1) doesn't handle redraw correctly o [2000/06/11] kern/19213 SC_DFLT_FONT compile option breaks kernel f [2000/06/13] conf/19236 sanpei not-existing PCMCI cards in pccard.conf.s o [2000/06/13] bin/19239 login allows users to login remotely with o [2000/06/13] misc/19246 portmgr Poor error message when fetching files wi o [2000/06/13] ports/19253 dirk mod_php4 has pkg dependency when not usin o [2000/06/14] ports/19270 portmgr Ports build mechanism doesn't check wheth o [2000/06/15] gnu/19327 Fix to build 'a.out' binary. f [2000/06/17] bin/19355 fstat gives signal 10 (SIGBUS) when outpu o [2000/06/19] misc/19391 marcel Evilness with Linux Terminus, causes X to o [2000/06/20] bin/19404 /usr/bin/error should be included in the o [2000/06/20] misc/19406 setenv() allocates memory which is not fr f [2000/06/20] i386/19410 spontaneous reboot when esd runs on a -ST f [2000/06/21] bin/19422 dd users can overflow argv to make ps segfau f [2000/06/22] conf/19442 can't install on diverse harddisks. o [2000/06/22] ports/19448 markm filename input broken o [2000/06/22] ports/19456 chuckr the sp port is hardwired to install it's o [2000/06/22] ports/19457 vanilla The gimp port has /usr/local/bin hardwire o [2000/06/23] misc/19467 green OpenSSH (as an rsync tunnel) blocks forev o [2000/06/24] kern/19490 faith0 network device has high number of o [2000/06/26] kern/19535 adrian procfs_rlimit tidyup o [2000/06/28] conf/19573 des Dot Files for Optional Shells o [2000/06/29] ports/19585 obrien bounce port misconfiguration o [2000/06/29] ports/19591 issei ssh2 port ignores 'ignorenologin' from lo o [2000/06/30] ports/19594 trevor update port: qrash o [2000/07/01] kern/19624 make {DFL,MAX}SSIZ kernel options o [2000/07/01] bin/19635 add -c for grand total to df(1), like du( o [2000/07/02] gnu/19642 kbyanc patch to merge OpenBSD changes to patch(1 o [2000/07/02] ports/19650 asami python package causes segmentation fault o [2000/07/03] bin/19683 green mount displays incorrect mount point on f a [2000/07/03] kern/19686 yokota splash screen fails f [2000/07/05] kern/19706 Framing error on PC/NET 32 also used in o o [2000/07/05] bin/19719 imp pccard_ether lacks the start_if hooks as o [2000/07/05] kern/19720 kbyanc more sysctl signed-ness patches o [2000/07/05] misc/19725 4.0-STABLE: sys/boot/ficl build fails if o [2000/07/06] gnu/19733 obrien GDB 4.18 is not GDB 4.18 o [2000/07/07] bin/19755 nologin not configurable o [2000/07/07] kern/19756 sheldonh Inability to use linux extended partition o [2000/07/07] bin/19772 df output wrong for union-mounts o [2000/07/08] kern/19782 dirk mkisofs 1.12.1 (i386-unknown-freebsd4.0) f [2000/07/09] misc/19798 cg 4DWAVE doesn't work. f [2000/07/09] misc/19805 not installable on old-fashioned dx50 o [2000/07/10] kern/19827 yokota psm flag bit9(NOIDPROBE) doesn't work cor o [2000/07/10] misc/19837 murray Run Fit it floppy from serial port o [2000/07/11] conf/19849 MAKEDEV still defaults to da0X instead of o [2000/07/11] kern/19863 markm Non-blocking IO not supported on /dev/ran o [2000/07/12] ports/19868 portmgr modify ports/Mk/bsd.port.mk to remove ALL o [2000/07/12] kern/19871 select on named pipes always returns 'ava o [2000/07/14] kern/19913 des add SYN+FIN counter o [2000/07/15] kern/19966 new syscons screensaver o [2000/07/17] ports/19977 rse mod_php3 and mod_php4 ports doesn't recog f [2000/07/17] docs/19981 doc Indonesian translations o [2000/07/18] gnu/20004 FBSD4 gcc __attribute__(constructor) not o [2000/07/18] misc/20024 jake [PATCH] queue(3) concatenation macros o [2000/07/19] bin/20042 "rsh -t" doesn't timeout if rcmd(3) never o [2000/07/20] bin/20054 ftpd: rotating _PATH_FTPDSTATFILE losts x o [2000/07/23] docs/20121 jim Better user ppp documentation in man page o [2000/07/24] misc/20139 msmith Simple typo in src/share/examples/ppi/ppi o [2000/07/24] ports/20145 dburr improving the devel/SN port o [2000/07/24] misc/20159 strftime() can't produce ISO8601 format t o [2000/07/24] misc/20166 billf Corrections & additions to games/quiz/dat o [2000/07/26] bin/20204 ps more doesn't handle 8-bit characters prop o [2000/07/27] kern/20214 dec kernel routing bug for nexthop is routed o [2000/07/28] misc/20254 jhb BTX loader 1.00 can not recognize floppy o [2000/07/28] ports/20270 reg libtool needlessly runs ldconfig after in o [2000/07/29] kern/20297 cg Joystick is not enabled with es1370 based o [2000/07/30] ports/20301 billf New port: irc/ircd-hybrid6 o [2000/07/31] bin/20311 markm src/release/Makefile: broken CHECKSUM.MD5 o [2000/07/31] misc/20326 marcel [PATCH] installkernel fails if DESTDIR is o [2000/07/31] misc/20333 sheldonh ftp login fails on unix password when s/k o [2000/08/01] kern/20352 yokota Configuring a synaptics touchpad o [2000/08/02] ports/20359 demon New port: Apache-mod_perl_guide o [2000/08/02] bin/20371 dhclient inserts bogus configurations o [2000/08/03] kern/20384 n_hibma Phase errors with Zip650 CD on USB o [2000/08/03] kern/20389 ken "device pass" required for CD ripping o [2000/08/03] bin/20391 jhb sysinstall should check debug.boothowto s o [2000/08/03] kern/20393 dillon processes get stuck in vmwait instead of o [2000/08/04] bin/20402 ache 4.1R's ls conflicts with Emacs' dired mod o [2000/08/04] kern/20410 sio support for high speed NS16550A, ST16 o [2000/08/05] conf/20436 asmodai Can't make only cd0 under 4.1-STABLE o [2000/08/06] kern/20448 luigi expired dynamic rules shown in "ipfw get" o [2000/08/07] misc/20457 davidn pw command doesn't generate random passwo o [2000/08/07] misc/20475 mjacob SES/SAF-TE giving bogus temps on JMR ELEC o [2000/08/09] ports/20499 obrien [PATCH] conserver port doesn't like MD5 c o [2000/08/09] bin/20501 mjacob extra flag to dump to offline autoloaders a [2000/08/10] ports/20520 olgeni New port: lang/mercury o [2000/08/10] docs/20528 doc sysconf(3) manpage doesn't mention posix. s [2000/08/10] kern/20529 billf gigabit cards fail to link o [2000/08/11] i386/20537 msmith HP NetRAID controller error when rebootin a [2000/08/14] ports/20601 ports DESTDIR and /etc/shells a [2000/08/14] ports/20610 patrick New port of cgoban2 o [2000/08/15] bin/20613 des fetch -T n is not timeout correctly when o [2000/08/16] i386/20660 wpaul if_wi provides 802.11 src and dst, not et o [2000/08/17] ports/20678 portmgr make SORTED_MASTER_SITES_CMD variable ove o [2000/08/20] docs/20738 doc correction and modification to clocks(7) o [2000/08/21] bin/20742 ps Weird problem with 'more' on 4-1-STABLE o [2000/08/22] conf/20774 sheldonh 'NFS access cache time=2' is not a daemon o [2000/08/23] ports/20795 msmith FBSD 4.x: Citrix client with drive mappin o [2000/08/23] bin/20799 davidn top's problem o [2000/08/23] i386/20803 mdodd ep0 driver finds additional "shadow" ep c o [2000/08/23] kern/20804 deadlocking when using vnode disk file an o [2000/08/24] bin/20824 ftpd returns, "ad0s1a: not a plain file." o [2000/08/24] bin/20827 billf pkg_add -r only fetchs one-level deep dep o [2000/08/24] misc/20830 lile kernel link problems with Olicom token ri o [2000/08/25] i386/20845 Cyclades cy driver incompatible with Cycl o [2000/08/26] kern/20878 wpaul Patch to add support for the 3c556B MiniP o [2000/08/26] bin/20881 kris There's no reason not to build DNSsec-DSA o [2000/08/27] bin/20889 dwmalone syslogd.c still uses depreciated domain A o [2000/08/28] bin/20908 qa /stand/sysinstall too limited in selectio o [2000/08/29] misc/20920 yokota window(1) interferes with screensaver o [2000/08/30] bin/20944 ru natd enhancements, default config file an o [2000/08/30] docs/20950 kris [PATCH] openssl.1 has bogus section title f [2000/09/01] kern/20992 kern/tty_subr.c, b_to_q to a clist with n f [2000/09/02] ports/20995 sheldonh freeciv-civ gtk make problem. o [2000/09/02] bin/20996 kris permissions on /usr/bin/opiepasswd a [2000/09/02] kern/21000 sheldonh 4.1-STABLE doesn't have card ID o [2000/09/02] bin/21008 gad Fix for lpr's handling of lots of jobs in a [2000/09/04] ports/21021 ports graphics/quickpics bogus colorspace error o [2000/09/04] bin/21024 pow() ERANGE bug o [2000/09/04] kern/21051 Updating 4.1-RELEASE to -current fails be o [2000/09/05] conf/21059 marcel `make -jN buildkernel' can't keep source o [2000/09/05] conf/21066 Proposed change in rc scripts o [2000/09/05] misc/21070 marcel default setting of ${SUP} in Makefile.inc o [2000/09/06] bin/21074 davidn chkgrp vs group(5) inconsistency f [2000/09/06] bin/21075 sheldonh top: can't allocate sufficient memory o [2000/09/06] bin/21080 mjacob dump doesn't use eject tape device correc o [2000/09/08] gnu/21128 a proposed patch for uucp package o [2000/09/09] bin/21142 [PATCH] avoid errors from "make objlink" o [2000/09/09] kern/21154 Change the name of *_saver.ko to saver_*. o [2000/09/09] kern/21156 yokota [PATCH] inconsistency in scmouse vs xterm s [2000/09/10] bin/21178 ken voltag selector, and unload support for c f [2000/09/10] ports/21179 ports New port: math/gul-vdog-qt o [2000/09/11] ports/21211 rse the startup file installed by apache-mods o [2000/09/12] kern/21222 wrong behavior of concurrent mmap()s on N o [2000/09/12] kern/21229 Proper value for vfs.nfs.access_cache_tim f [2000/09/12] kern/21240 mbufs allocated to data is huge number in o [2000/09/13] misc/21255 phk /sbin/md5 suggestion f [2000/09/14] misc/21273 murray PLIP Configuration in sysinstall is broke o [2000/09/16] bin/21312 more incorrectly redraws screen on xterm f [2000/09/16] ports/21313 ports vmwarIPv6 and vmware2 panic: Fatal trap 1 o [2000/09/16] bin/21315 Shells often behave oddly when executing o [2000/09/19] kern/21409 The ID for the VIA KT133 chipset is not i o [2000/09/22] bin/21476 ftp in 4.1-STABLE fails on http:// URLs o [2000/09/22] conf/21489 imp /etc/pccard_ether feature request o [2000/09/22] misc/21494 mikeh ftpd can't handle /etc/chroot entries wit o [2000/09/24] bin/21519 sys/dir.h should be deprecated some more o [2000/09/24] misc/21528 kris installworld fails in secure/usr.bin/open o [2000/09/24] bin/21531 csh/tcsh provide no way to see/adjust new a [2000/09/25] docs/21542 asmodai sigaction(2) man page is misleading f [2000/09/26] bin/21570 dougb [PATCH] Add -r option to /usr/bin/mail, q o [2000/09/28] ports/21621 reg Update port: devel/libtool to 1.3.5 o [2000/09/28] kern/21623 wpaul Chipset SiS630E / NIC SiS 900 o [2000/09/29] misc/21644 /usr/include/sys/mman.h uses a type defin o [2000/09/30] bin/21659 Berkeley db library is statically compile o [2000/10/01] i386/21672 obrien AMD Duron Rev. A0 reports incorrect L2 ca o [2000/10/01] misc/21675 Better and more disktab entries for MO dr o [2000/10/02] conf/21695 ifconfig_XXX_aliasY in rc.conf; Y must be o [2000/10/02] docs/21712 dan core(5) manpage fails to mention kern.sug o [2000/10/02] misc/21715 The freebsd mail list digifier loses MIME o [2000/10/02] ports/21719 nbm New Port: Courier Mail Suite o [2000/10/03] conf/21722 The mixer settings are lost on sysetm reb o [2000/10/03] kern/21737 sendto returns systematically EINVAL with o [2000/10/04] bin/21751 ken libcam's cam_real_open_device() may lose o [2000/10/04] kern/21752 Infortrend IFT-3102 doesn't like SCSI Cac o [2000/10/04] kern/21754 n_hibma Sound stops working when NetGear USB Devi o [2000/10/05] ports/21765 portmgr I cat't make ports using pw_gid) != typeof(group->g o [2000/10/22] bin/22211 typoed tar -c clobbers archives o [2000/10/26] conf/22308 mounting NFS during boot blocks if host m o [2000/10/26] misc/22332 request to add vtys to /etc/ttys o [2000/10/26] docs/22338 asmodai ugen(4) man page missing o [2000/10/27] bin/22347 dd copies incorrect data after 2^32 bytes o [2000/10/27] bin/22351 sed(1) fails with backslash on buffer bou f [2000/10/28] ports/22379 ports New port: libudbc o [2000/10/29] ports/22399 msmith PIB 1.2 still looks for MD5 info in files o [2000/10/30] ports/22412 taoka two extraneous ports and one name change o [2000/10/30] misc/22434 problem with certain NIC's using rl on au o [2000/10/31] bin/22442 greid [PATCH] Increase speed of split(1) s [2000/11/01] docs/22470 doc man 3 msgrcv's BUGS section needs updatin o [2000/11/02] ports/22550 obrien Patch for conserver for log file rotation o [2000/11/04] kern/22602 CDRoms checked during shutdown (umount) o [2000/11/04] bin/22612 crontab -e failures o [2000/11/05] i386/22633 when kernel boots smp scsi fails o [2000/11/06] conf/22645 Cannot override "ignore" in /etc/mail.rc o [2000/11/07] misc/22660 termcap kterm entry tc=xterm is wrong f [2000/11/07] ports/22683 ports New port net/dnip-update o [2000/11/08] conf/22695 MAKEDEV has no entry for cfs0, the device a [2000/11/08] misc/22696 luigi picobsd build with router configuration c o [2000/11/08] ports/22698 portmgr Ports' rc.d files should use rc.conf o [2000/11/09] ports/22716 billf [PATCH] ports/net/ucd-snmp o [2000/11/09] bin/22730 tcpslice doesn't handle long file offsets o [2000/11/10] kern/22754 mmap man page states that non-page aligne o [2000/11/10] alpha/22759 alpha zip cannot work with existing .zip archiv o [2000/11/13] alpha/22824 alpha unaligned accesses from dhclient o [2000/11/14] conf/22859 darrenr rc.network should start ipf/ipnat AFTER p o [2000/11/14] bin/22860 [PATCH] adduser & friends with '$' in use o [2000/11/14] docs/22861 dd newsyslog man page is misleading and inco o [2000/11/15] kern/22868 getsockname may return an incorrect addre o [2000/11/15] misc/22873 markm Perl's core'h conflicts with ncurses.h o [2000/11/16] i386/22900 patch: Adds Brand ID support to src/sys/i o [2000/11/17] misc/22914 bootinst messages are not updated s [2000/11/17] conf/22916 green Ssh/sshd binaries lacks kerberos support o [2000/11/17] bin/22933 green Typographical error in ssh.1 o [2000/11/18] i386/22940 Can't install 4.1.1 on ad0s2 if da0 exist a [2000/11/20] i386/22971 marcel RealProducer doesn't work on linux emulat f [2000/11/20] ports/22995 grog Update port: x11-servers/x2x (fix ports/2 o [2000/11/23] ports/23060 steve lsof warning msg o [2000/11/23] conf/23063 [PATCH] for static ARP tables in rc.netwo o [2000/11/24] bin/23081 Touchpad on NEC Versa laptop is unusable o [2000/11/24] bin/23082 dwmalone ntpd has only one reference-clock parser o [2000/11/24] misc/23084 mount_nfs hangs self with some NFS server o [2000/11/25] bin/23097 Enhance WEP some more including ability t o [2000/11/26] kern/23123 IP options reveal IPstealth mode. Just t o [2000/11/27] i386/23141 ad1816 audio driver produces noise. o [2000/11/27] misc/23148 getopt(3) works non-intuitively? f [2000/11/28] ports/23151 ports NEW PORT : sysutils/wake-on-lan o [2000/11/29] bin/23178 'talk' not doing right thing o [2000/11/29] bin/23180 Certain KOI8 characters are treated as "w o [2000/12/01] bin/23204 length of salt in crypt() is not the same a [2000/12/02] ports/23232 ports gettext/xview port collision o [2000/12/02] bin/23233 kris Reincorporate /usr/bin/error in the FreeB a [2000/12/03] bin/23254 fenner yacc accepts bad grammer o [2000/12/04] ports/23287 portmgr allow system-local patches for ports o [2000/12/05] kern/23304 POSIX clock_gettime, clock_getres return o [2000/12/05] kern/23314 aic driver fails to detect Adaptec 1520B o [2000/12/06] bin/23321 [PATCH] reduce redundant code in /bin/cat o [2000/12/07] kern/23353 fcntl(F_GETLK) return l_pid equal to -1 f o [2000/12/07] i386/23359 Installation diskettes don't boot o [2000/12/07] misc/23362 tcpdump wrong on sppp CISCO_HDLC encoded o [2000/12/07] misc/23366 mmap() non conforming o [2000/12/07] gnu/23367 some src/gnu Makefiles are missing $FreeB o [2000/12/09] conf/23402 sysinstall upgrade ought to check partiti o [2000/12/09] ports/23410 obrien [PATCH] FreeBSD throws away information o o [2000/12/10] kern/23414 fail to probe my pnp modem o [2000/12/11] bin/23472 gdb weirdness on programs compiled with - o [2000/12/11] kern/23493 race in 'make -jN buildkernel' pollutes / a [2000/12/12] ports/23499 ports [NEW PORT]: Two LaTeX macro package ports o [2000/12/12] bin/23509 Augment dev_mkdb to allow different direc o [2000/12/13] kern/23520 sb0 old style audio support in 4.2-RELEAS o [2000/12/13] bin/23526 Patch for bin/9529 (ftp completion cant h o [2000/12/13] misc/23539 marcel make installworld from nfs mounted /usr/s o [2000/12/14] kern/23546 tanimura [PATCH] csa DMA-interrupt problem o [2000/12/14] ports/23560 portmgr linux-jdk/Makefile assumes default `patch o [2000/12/15] i386/23562 telnetd doesn't show message in file spec o [2000/12/15] ports/23581 portmgr Updates to bsd.port.mk to detect changing o [2000/12/17] gnu/23598 Merge libgcc_r with libgcc o [2000/12/17] ports/23602 portmgr Recursive distclean for bsd.port.mk w/pat o [2000/12/18] bin/23635 mike [PATCH] whois enhancement - smarter whois o [2000/12/19] ports/23649 rse the port of mod_php4 does not install cor o [2000/12/20] kern/23692 GENERIC kernel config on 4.2 changes defa o [2000/12/22] misc/23766 /etc/periodic/daily/440.status-mailq does o [2000/12/24] kern/23814 .au sound files < 528 bytes actual data d o [2000/12/24] ports/23822 ports mtree entries for German X11 man pages o [2000/12/28] bin/23912 underflow of cnt in vs_paint() by O_NUMBE o [2000/12/29] bin/23944 Patch for ftpd to add a cd after the chro a [2001/01/01] kern/23989 murray NEW CODE: AMD 756 Power Management / SMBu o [2001/01/02] misc/24034 "CWD" discloses the full "real" path in a o [2001/01/04] bin/24066 gdb can't detach from programs linked wit f [2001/01/04] ports/24071 ports security/digest - md5,md4,sha1,ripemd160 o [2001/01/06] ports/24120 portmgr "/usr/ports/Mk/bsd.port.mk", line 626: In o [2001/01/07] misc/24132 gdb output is wrong (same as #13427 ?) o [2001/01/07] kern/24141 emu10k1 has trouble playing non-44.1KHz s o [2001/01/08] i386/24150 network traffic appears bottlecaped. o [2001/01/10] ports/24214 portmgr [PATCH] verbose 'make index' a [2001/01/10] ports/24237 ports new port: kde-i18n-pl o [2001/01/11] ports/24259 steve port of open-motif on make install compla o [2001/01/11] misc/24265 Linksys LNE100TX V.4.1 MAC address not de o [2001/01/12] kern/24269 Failure to setup DMA on ATA HDs (Alladin o [2001/01/12] ports/24292 portmgr update-patches target in ports/Mk/bsd.por o [2001/01/12] ports/24299 ports Configure the synaptics touchpad. a [2001/01/14] misc/24324 Greek console support o [2001/01/15] ports/24361 asami wrong filemodes o [2001/01/16] misc/24384 4.1 Cant add entry to neighbour discovery o [2001/01/16] bin/24390 Replacing old dir-symlinks when using /bi o [2001/01/16] kern/24393 Patch to msdosfs to handle a kind of inco f [2001/01/16] ports/24395 ports Date object is not deserialized correct o [2001/01/18] bin/24435 Changing slice type causes Auto-partition o [2001/01/18] bin/24439 suggested replament for adduser(8) o [2001/01/20] bin/24485 [PATCH] to make cron(8) handle clock jump o [2001/01/20] ports/24493 msmith Pib maker function unable to launch xterm a [2001/01/21] kern/24512 jesper Sent ICMP unreach when packet not for us f [2001/01/21] misc/24513 new options for pppd o [2001/01/21] conf/24515 Fix for find(1) warning in /etc/rc o [2001/01/21] kern/24516 Mouse Logitech M-S48 does not in FreeBSD o [2001/01/21] bin/24521 green ssh-agent exits when authenticating DSA v o [2001/01/22] kern/24528 Bad tracking of Modem status o [2001/01/23] bin/24569 PATCH for PPPD o [2001/01/23] bin/24592 cjc dmesg.boot Gets Overwritten without Reboo o [2001/01/25] ports/24651 mharo portlint gives a bogus warning o [2001/01/26] ports/24658 jkh Enhancement to src/release/Makefile a [2001/01/26] ports/24660 ports New port: Xerces-C 1.3.0 o [2001/01/26] alpha/24663 alpha Console output gets scribbled into /var/l o [2001/01/27] gnu/24681 gcc 2.95.3 cannot compile rince.c from IO o [2001/01/27] ports/24687 ports QUAKE FORGE & SVGALIB o [2001/01/30] bin/24732 dwmalone cmp can not compare files lager 2GB but s a [2001/01/30] ports/24736 ports New port: SGI's open inventor (graphics/i o [2001/01/30] bin/24742 send adduser.message before dirs are crea o [2001/01/30] ports/24743 chuckr a2ps port installs files in / o [2001/01/30] misc/24746 green SSH terminal hangs on large paste of data o [2001/01/30] ports/24749 dirk mysql323-server pkg-install script doesn' o [2001/01/31] ports/24756 billf net-snmp-4.2 does not compile with LPRng o [2001/01/31] bin/24757 ftpd not RFC compliant o [2001/02/01] conf/24781 MAKEDEV: rast* -> ast* a [2001/02/01] misc/24784 Why isn't bind always running as -u bind o [2001/02/01] docs/24786 doc missing FILES descriptions in sa(4) o [2001/02/02] docs/24797 phk when using MALLOC_DEFINE sys/param.h and o [2001/02/03] kern/24827 Erratic Intellimouse Explorer in 4.1 and o [2001/02/03] bin/24828 [PATCH] ntpd compilation and additional r o [2001/02/04] gnu/24844 gdb does not support kernel threads o [2001/02/04] ports/24845 tegge linuxthreads does not detect failed rfork a [2001/02/05] docs/24869 asmodai Some text elf.5 is duplicated o [2001/02/05] kern/24882 ktrace not syncing .out file before panic o [2001/02/06] kern/24900 Server logs:indfcntl(8, F_SETFL, 4): Inap o [2001/02/06] kern/24902 IPC Message Queue number to big o [2001/02/06] misc/24907 qa Options screen at MenuMedia menu problem o [2001/02/06] docs/24921 phk Typo /devs --> /dev o [2001/02/07] ports/24940 demon prolem with Tnm::icmp echo command due to o [2001/02/07] misc/24942 tftp client timeout failure o [2001/02/07] bin/24944 new execute-file can't running(not found o [2001/02/08] bin/24953 green adduser ignores passwd_format in login.co o [2001/02/08] bin/24955 /usr/bin/tail -F in 4.1+ doesn't work if o [2001/02/08] kern/24959 jesper proper TCP_NOPUSH/TCP_CORK compatibility o [2001/02/08] i386/24963 perfmon(4) doesn't work on SMP systems o [2001/02/09] ports/24983 asami Emacs ports have misleading names o [2001/02/10] ports/24987 nbm New port: Courier mail server. o [2001/02/10] kern/24998 More verbose logging for Joliet CDs o [2001/02/11] bin/25012 tar(1) as root does not preserve ownershi o [2001/02/11] bin/25013 mv(1) cannot move unresolvable symlinks a o [2001/02/11] bin/25015 cp: options -i and -f do not work as docu a [2001/02/11] docs/25016 ru symlink(7) manpage says symlinks have no o [2001/02/11] bin/25017 cp -pRP does not preserve symlink ownersh o [2001/02/11] kern/25018 lstat(2) returns bogus permissions on sym o [2001/02/12] ports/25031 ache www/apache: dbmmanage fails verifying md5 o [2001/02/13] bin/25059 dlopen(..,RTLD_GLOBAL) doesn't work for s o [2001/02/13] bin/25070 newsyslog(8) should send signals only onc o [2001/02/13] ports/25071 peter Ports-Skeletons gone after update o [2001/02/13] bin/25085 msmith mlxcontrol utility fails silently if devi o [2001/02/15] misc/25109 Fujitsu MO device MCC3064AP could't be c o [2001/02/17] ports/25169 wosch [PATCH] update of p5-libwww port 1.62 -> a [2001/02/17] ports/25177 ports New port: java/jdbcpool-current o [2001/02/19] misc/25217 user with login 'connected' shows bogus f o [2001/02/19] misc/25218 peter mailwrapper invokes sendmail when resourc f [2001/02/19] ports/25219 ports New port: plist-builder o [2001/02/19] conf/25223 darrenr PATCH for rc.network to enable ipnat sepe a [2001/02/20] docs/25239 doc fdp-primer/tools/chapter.sgml says about o [2001/02/20] bin/25241 luigi ipfw shouldn't show dynamics rules when s o [2001/02/21] ports/25251 dima acroread4 uses hard coded path for lpr f [2001/02/21] bin/25263 green openssh and /etc/login.access does not wo o [2001/02/21] bin/25273 add fs type feature to vnconfig(8) to all o [2001/02/21] kern/25275 X server freezes system randomly on pentu f [2001/02/22] bin/25278 dd bs accepts -s -c but not -sc o [2001/02/22] alpha/25284 alpha PC164 won't reboot with graphics console o [2001/02/23] ports/25297 kde kcontrol writes wrong variable names in c o [2001/02/23] ports/25299 kde kdm´s "Console mode" command isn´t meanin o [2001/02/23] ports/25313 wosch Script source displayed at http://www.nl. a [2001/02/24] ports/25342 ports saint: user authentication fails in remot o [2001/02/25] misc/25354 Slovak (sk_SK) locale missing o [2001/02/25] kern/25369 Miscellaneous CD drivers have potentially o [2001/02/26] misc/25378 kris update contrib/libgmp to newer version (3 o [2001/02/26] kern/25386 cg Incorrect mixer registers (line & synth) s [2001/02/26] docs/25392 doc Chapter 9 pages could use 'location of fu o [2001/02/26] docs/25405 wosch misleading warning from catman(1), etc. a [2001/02/27] ports/25419 dwcjr Difficulties installing print/teTeX port o [2001/02/27] docs/25420 dd man page missing important information. o [2001/02/27] kern/25445 kernel statistics are displayed in wrong o [2001/02/28] ports/25448 ports mpmf20 fails to correctly display the dir o [2001/02/28] gnu/25459 Dumpvalue.pm says SYNOPSYS instead of SYN o [2001/02/28] bin/25462 daemon(3) fails if called by a session le o [2001/02/28] i386/25463 PS/2 mouse sync problems with KVM switch o [2001/03/01] conf/25472 add bg_BG.CP1251 locale support o [2001/03/01] bin/25474 dump can't close fifo pipe correctly o [2001/03/01] bin/25477 billf pam_radius fix to allow null passwords fo o [2001/03/02] ports/25490 wosch [PATCH] fix various bugs in stat(1) a [2001/03/02] conf/25495 keichii missing et_EE.ISO_8859-15 locale a [2001/03/02] misc/25499 buffer paste functionality from keyboard o [2001/03/03] kern/25517 ARP cache timeout behavior can be improve o [2001/03/04] kern/25521 Laptop with FreeBSD4.2 freezes in battery f [2001/03/04] conf/25527 jdp `man ldconfig' does not reflect its behav o [2001/03/04] ports/25531 portmgr INSTALL_* macros fail for non-root users a [2001/03/05] ports/25560 ports New port: ftp/kbear: An ftp client for KD o [2001/03/05] alpha/25564 obrien Port ups-debug doesn't build on the alpha o [2001/03/06] bin/25572 sshd core dump o [2001/03/06] ports/25576 jmz XFree86-4 port installs manual pages with s [2001/03/06] kern/25582 paul lnc driver uses wrong driver name s [2001/03/07] bin/25584 arp.c - better printed ether address o [2001/03/07] bin/25587 Add Solaris-like functionality to truss(1 o [2001/03/07] bin/25598 patch to let ftpd output message when cha o [2001/03/08] docs/25606 keichii Incorrect Email Lists on Website a [2001/03/08] kern/25608 sos ATA CD-ROM is not recognized on IBM Netfi s [2001/03/09] bin/25627 Cannot append hash after .elif in Makefil o [2001/03/09] misc/25635 gad lpr -# didn't work on network printer a [2001/03/10] docs/25648 asmodai typos in some manpages (dependant) a [2001/03/11] ports/25708 dougb pine4 port hard-code /usr/local/include a [2001/03/11] ports/25710 ports New port: news/slrn-pl, slrn with polish o [2001/03/11] bin/25723 green OpenSSH on 4.2 excessively regenerates RS o [2001/03/12] bin/25724 quota(1) outputs wrong limits about NFS q o [2001/03/12] kern/25733 mismatch between error reporting in smbus o [2001/03/12] bin/25736 ac -d option probrem with overdays logon o [2001/03/12] ports/25763 shige XV fails to refresh properly on image dis o [2001/03/13] kern/25777 atime not updated on exec o [2001/03/13] ports/25779 portmgr (patch) make fetch-list should list all m o [2001/03/14] gnu/25794 markm [PATCH] make perl use a decent random num o [2001/03/14] conf/25809 /etc/default/rc.conf bad default ipfilter o [2001/03/14] ports/25815 portmgr [PATCH] Port build collision fix. o [2001/03/15] ports/25828 portmgr The devel/autoconf port won't install ins o [2001/03/15] conf/25829 IPSec config in rc.network doesn't allow f [2001/03/15] bin/25833 LOG_FAC() is bogus a [2001/03/16] bin/25850 peter CRON shouts o [2001/03/16] kern/25866 more than 256 ptys, up to 1302 ptys. o [2001/03/17] ports/25878 tegge error during compilation of linuxthreads s [2001/03/18] ports/25907 roam Firebird shared libs not added to shared o [2001/03/18] kern/25909 4.x kernel freezes on P3-Asus CUSL2-C mot o [2001/03/18] kern/25910 cg Kernel sound driver may die if a program o [2001/03/19] misc/25917 green Paste thrue SSH Secure Shell v.2.4.0 (bui o [2001/03/19] kern/25923 vm_map.h defines a macro called "min_offs a [2001/03/21] ports/25983 ports New port: databases/py-bsddb3 o [2001/03/21] misc/25984 bsd.prog.mk doesn't link C++ programs pro f [2001/03/22] docs/26003 doc getgroups(2) lists NGROUPS_MAX but not sy o [2001/03/22] bin/26005 MIME quoted-printable encoding added to v a [2001/03/22] docs/26006 doc Changing zone(9) man page o [2001/03/22] bin/26012 FTPD utmp logging support o [2001/03/22] kern/26016 VMWare is crash on SMP machine o [2001/03/23] misc/26035 System hangs when playing mp3 on PCI Maes o [2001/03/24] ports/26058 billf textproc/htdig simplifications and separa o [2001/03/26] ports/26104 billf PORT UPDATE: add ${FREETYPE_CONFIG} suppo o [2001/03/27] conf/26145 [PATCH] There is no make.conf equivalent o [2001/03/27] bin/26152 ps compat4x should include librsaINTL.so o [2001/03/27] misc/26153 sed G does not double space o [2001/03/28] ports/26192 ports apel appeared both in xemacs/site-package o [2001/03/29] bin/26201 telnet SRA password exchange trap when no a [2001/04/01] ports/26274 ports New port: Perl/TK Jabber client o [2001/04/01] kern/26277 ppc driver doesn't work with port 0x3BC p o [2001/04/02] docs/26286 doc *printf(3) etc should gain format string a [2001/04/02] ports/26292 ports New port: Version 3 of Squeak, the Smallt a [2001/04/02] ports/26297 ports New port: devel/florist o [2001/04/02] ports/26303 adrian Wrong permission on Squid24's errors dire a [2001/04/03] ports/26313 ports New Port: german/eagle: A tool for design o [2001/04/03] kern/26316 Booting FreeBSD on VMware2 with 2 or 3 et o [2001/04/03] misc/26323 Quota system create zero-length files o [2001/04/03] kern/26324 Defaults for NFS mounts over TCP are slow o [2001/04/04] kern/26348 [pcvt] scon -s, page fault in HP mode o [2001/04/04] bin/26359 [PATCH] a minor nit in how netstat detect o [2001/04/05] misc/26373 Rpc.statd implements the SM_NOTIFY call b o [2001/04/06] bin/26375 markm PAMized su allows non-wheel members to su o [2001/04/06] misc/26378 All 4.X-Release and 4.3rc2 Panics Install o [2001/04/06] kern/26385 VMWare reboots entire system after starti o [2001/04/08] kern/26437 Kernel Panics on SMP box when subjected t o [2001/04/08] docs/26451 doc ctype.h defined functions are not accurat o [2001/04/09] kern/26454 cg mixer volume settings on Maestro-2E (Diam o [2001/04/09] bin/26468 pkg_delete clears dependencies after runn o [2001/04/10] conf/26488 incomplete named sandbox information a [2001/04/13] docs/26532 green ".Ql ?" becomes "`'?" through nroff (and a [2001/04/13] kern/26534 Add an option to ipfw to log gid/uid of w o [2001/04/13] kern/26546 des Add ioctl support to linux emulation and o [2001/04/13] kern/26547 "lnc" problem with shared memory mode wit o [2001/04/13] i386/26562 /dev/lpt0 returns EBUSY when attempting t o [2001/04/14] kern/26563 ioctl(SNDCTL_DSP_SPEED) returns -1 when f o [2001/04/14] kern/26584 kernel boot messages aren't logged correc o [2001/04/15] bin/26602 RELENG_4 ssh/sshd modifies the 'erase' ch o [2001/04/16] kern/26608 when boot Freebsd 4.2 Release from the c o [2001/04/16] kern/26618 unmount(2) can't unmount a filesystem who a [2001/04/16] ports/26628 ports New port: audio/qtecasound, well done o [2001/04/17] misc/26636 If /etc/ttys goes empty, init(8) never re o [2001/04/17] kern/26638 kern.fast_vfork sysctl doesn't do anythin o [2001/04/17] kern/26644 sos [PATCH] ATA/ATAPI driver doesn't implemen a [2001/04/17] misc/26646 srand() provides only 8-bit table o [2001/04/17] misc/26649 diskless client can't share root with ser o [2001/04/17] misc/26653 RTL8012 ethernet not listed in LINT or ha o [2001/04/17] misc/26658 update to src/usr.bin/calendar/calendars/ o [2001/04/18] ports/26670 markp ports/biology/molden has a checksum error o [2001/04/18] misc/26678 Correction of: misc/26521 o [2001/04/18] bin/26686 Freeze at boot from 4.3-RC4 floopies - US o [2001/04/18] docs/26692 rnordier boot manpage describes bootfile prompt in o [2001/04/18] misc/26695 CHANGE REQUEST: kill(all) -l output o [2001/04/19] misc/26720 Both .cshrc and .profile should have the o [2001/04/20] kern/26740 rwatson [PATCH] jail improvement f [2001/04/21] bin/26746 dmesg only prints the last couple of line o [2001/04/22] misc/26763 darrenr installing ipfilter sample files to share o [2001/04/22] conf/26774 gshapiro Installation of rmail, even without sendm o [2001/04/22] kern/26787 dd sysctl change request o [2001/04/22] ports/26788 obrien ratfor name incorrect? o [2001/04/23] kern/26798 cvsup 4.3-RC -> 4.3-STABLE causes problem o [2001/04/23] kern/26800 wpaul Support for Netgear MA-301 wireless o [2001/04/23] ports/26801 ports cyrus port should add periodic file to pr o [2001/04/23] bin/26803 des Fix fetch to allow FTP puts in '-o' & all o [2001/04/24] i386/26812 old bootstrap /sys/i386/boot/... still in a [2001/04/24] ports/26825 ports port xmms-avi won't compile libavixmms.so o [2001/04/25] bin/26854 Better fix for ESS Technology Maestro-2E o [2001/04/25] docs/26861 doc accept(2) manpage documents non-existant a [2001/04/26] ports/26872 olgeni ports/devel/wedit has a checksum error o [2001/04/26] misc/26879 mkfilter not installed, yet referred to v s [2001/04/26] ports/26882 kde KDE should use ca-roots port for SSL cert a [2001/04/26] ports/26884 ports new port for visualworks 5i.3 o [2001/04/26] kern/26885 add if_xe as kernel module o [2001/04/27] ports/26904 jim New port(?): net/everybuddy-i18n (i18n pa o [2001/04/28] bin/26919 qa sysinstall' fdisk can ONLY set bootable f f [2001/04/28] ports/26931 ports (NEW PORT) Virtual Terrain Applications o [2001/04/29] bin/26943 [patch] description of :C modifier is mis o [2001/04/29] kern/26955 marcel Patches to get the DVD-ROM ioctl()s in th o [2001/04/30] i386/26994 obrien AMD Athlon Thunderbird not known to ident o [2001/05/01] kern/27008 kernel function sysbeep(xxx, 0) does prod o [2001/05/01] ports/27019 marcel patch supplied in PR ports/26976 breaks l o [2001/05/02] docs/27027 nik Update src/share/misc/iso639 o [2001/05/02] misc/27039 new syscons screensaver a [2001/05/02] docs/27040 dougb rc(8) and syscons(4) talk about rc.conf.l o [2001/05/02] misc/27041 modify src/release/Makefile to make anoth o [2001/05/03] bin/27063 darrenr /sbin/ipfs missing o [2001/05/03] conf/27070 darrenr save/restore IP Filter's state tables at o [2001/05/04] ports/27075 sobomax Port java/javavmwrapper installs no man p o [2001/05/04] ports/27079 sobomax Improvements for javavmwrapper? o [2001/05/06] bin/27163 cracauer sh trap TSTP () deadly hangs o [2001/05/06] ports/27167 ports ETHOberonV4 won't run a [2001/05/07] ports/27182 mharo Teach portlint to recognize RUN_DEPENDS=$ o [2001/05/07] ports/27187 jmz add linux ioctl handler to dri xf86-403 c o [2001/05/07] bin/27188 fix of rsh non-interactive mode behaviour o [2001/05/07] misc/27190 Day light savings in Mexico. o [2001/05/08] ports/27200 greid new port: bed (binary editor) o [2001/05/09] kern/27232 On NFSv3 mounted filesystems, stat return o [2001/05/10] bin/27258 getty didn't check if if= isn't empty o [2001/05/11] ports/27266 kevlo Port textproc/xerces should be named xerc o [2001/05/11] bin/27268 fdisk does not recognize Linux extended p o [2001/05/11] kern/27269 Cannot mount linux extended (logical) par o [2001/05/11] bin/27270 cg sys/soundcard.h fails to define AFMT_S16_ a [2001/05/11] ports/27272 ports New Port: John McCalpin's STREAM Benchmar o [2001/05/12] bin/27281 vidcontrol(1) does not have error codes f [2001/05/12] bin/27283 brian netstat -i missing IPv4 input packet coun o [2001/05/12] bin/27289 green SSH don't do correct diagnostic when no r a [2001/05/12] misc/27290 Slovak(sk) locale was not present o [2001/05/12] ports/27291 jim Bluefish port doesn't build mo files o [2001/05/12] bin/27294 paul pkg_update disregards suffixes (portrevis o [2001/05/13] i386/27306 hw watchpoints work unreliable under gdb o [2001/05/14] misc/27311 pthread_attr_setscope always fails o [2001/05/14] bin/27319 obrien df displays amd pid processes f [2001/05/15] ports/27332 ports New port: swedish/staroffice52 o [2001/05/15] kern/27334 load average constantly above 1.0, even w o [2001/05/15] kern/27342 change-request o [2001/05/16] bin/27374 Added bold color to the /bin/ls color sup o [2001/05/17] kern/27403 lpt driver doesn't handle flags anymore o [2001/05/17] bin/27423 change request a [2001/05/18] misc/27425 Slovak definitions of locale missing o [2001/05/18] kern/27429 'dependant' is a misspelling o [2001/05/18] bin/27433 ps binary does not do what the man page s o [2001/05/20] misc/27471 Linux emulation is missing code needed to o [2001/05/20] ports/27473 jmz when I install the package XFree86-4.0.3_ f [2001/05/20] bin/27483 make sysinstall ask for the keymap at ins o [2001/05/20] bin/27489 patch for feature sysconf(_SC_NPROCESSORS f [2001/05/22] ports/27542 sobomax xmps should not require gnome a [2001/05/23] ports/27569 ports bootup error problem with Apache 2 o [2001/05/23] kern/27571 bp Changing policy of shadowing files and di o [2001/05/23] docs/27572 luigi ipfw(8) manpage does not clearly state ch o [2001/05/23] ports/27573 ports The port of ascd dumped core o [2001/05/23] bin/27604 change truncate to support low case size o [2001/05/24] ports/27610 ports www/apache-jserv: some docs are installed o [2001/05/24] kern/27615 darrenr ipf restricts rule-changing at secureleve o [2001/05/24] i386/27627 machdep.tsc_freq does not exists on machi o [2001/05/25] misc/27633 Mapping for serbian keyboards, follows IS o [2001/05/25] docs/27653 doc Updates to send-pr.html to support MIME o [2001/05/26] docs/27654 doc Update to PR 27653 o [2001/05/26] kern/27660 Kernel does not return error if adding du o [2001/05/26] misc/27677 asmodai miss BIND name server library o [2001/05/27] bin/27687 fsck wrapper is not properly passing opti o [2001/05/27] bin/27697 assar trouble compiling libroken o [2001/05/28] gnu/27715 dwmalone UUCP doesn't recognize traditional BSD co f [2001/05/29] ports/27740 ports new port: isoqlog Qmail Log Analyzer o [2001/05/29] ports/27743 kuriyama UPDATE to converters/tcs o [2001/05/31] gnu/27803 Enhancement to sort(1) o [2001/05/31] ports/27805 ports New port: SQL-Ledger Accounting o [2001/06/01] conf/27811 alfred bad order of rpc.lockd and rpc.statd star o [2001/06/01] misc/27816 rpcgen -b generates server code which doe o [2001/06/01] misc/27829 kris pax's uid/gid cache is read-only o [2001/06/02] docs/27833 doc No man page for locate.rc o [2001/06/02] kern/27834 Cannot warm-reboot Compaq AP400 due to SC o [2001/06/02] kern/27835 execve() doesn't conform to execve(2) spe o [2001/06/02] ports/27838 keichii dot.emacs is 600 s [2001/06/02] docs/27843 alex [PATCH] make.conf WITH_* variables aren't o [2001/06/02] kern/27849 dfr AGP RELEASE ioctl frees memory o [2001/06/04] misc/27872 "Load Config" (sysinstall) hangs Compaq D o [2001/06/05] kern/27894 remounting local filesystem causes nfsd t o [2001/06/06] ports/27903 peter Update: www/transproxy f [2001/06/06] kern/27912 darrenr ipfilter state table limits are too small o [2001/06/06] docs/27915 doc man 5 passwd does not properly explain th o [2001/06/06] docs/27919 n_hibma missing usb man pages o [2001/06/06] docs/27921 markm manpage skey(1) should be skey(7) o [2001/06/07] alpha/27930 NE2000 not supported on FreeBSD Alpha 4.x o [2001/06/07] ports/27931 ports devel/pth vs. native pthreads conflict fi o [2001/06/07] alpha/27933 alpha Time jitter under load on FreeBSD 4.3 alp a [2001/06/07] ports/27936 mi Update /usr/ports/deskutils/xmdiary 3.0.1 a [2001/06/08] ports/27956 ports New port:A messenging client supporting A a [2001/06/08] conf/27959 imp Add cygwin termcap entry o [2001/06/08] bin/27970 cp -pR does not preserve modification tim o [2001/06/08] bin/27972 losing information with talk o [2001/06/10] bin/28007 added "force printing of non-print chars" o [2001/06/10] i386/28023 sendmail tries to get the netgraph.ko mod o [2001/06/10] ports/28025 ports New port: net/spread o [2001/06/10] bin/28026 Graphics mode suspend causes weird hang o a [2001/06/11] conf/28078 /stand/sysinstall skips distro selection a [2001/06/11] conf/28081 murray /stand/sysinstall errs out if /cdrom/ alr o [2001/06/12] ports/28106 ports New port: libCxClient-0.10 - Citadel/UX C f [2001/06/12] ports/28110 knu new port : P4DB, perforce web interface o [2001/06/12] ports/28111 ports pcb port has unlisted dependencies a [2001/06/12] ports/28115 ports New Port - textproc/htmldoc o [2001/06/13] bin/28116 des init: allow reboot during runcom o [2001/06/13] ports/28121 sobomax New port: 3D modelling and animation syst o [2001/06/13] ports/28138 tg python os.statvfs module is not functiona o [2001/06/14] docs/28143 asmodai the Hz kernel config option is not docume s [2001/06/14] docs/28144 doc no manpage for host.conf, no xrefs in oth o [2001/06/14] kern/28166 sos Mounted CD-ROM can be ejected in some cas o [2001/06/15] bin/28171 des [PATCH] to support a HTTP_REFERER env var o [2001/06/15] docs/28180 dillon tuning man page and rfc1323 a [2001/06/15] gnu/28189 [PATCH] fix for detecting empty CVS commi f [2001/06/16] misc/28203 NEWCARD won't recognize my cardbus contro o [2001/06/16] kern/28206 bp UMAPFS module should depend on NULLFS - p o [2001/06/17] ports/28225 ports [New Port] net/xipdump - displays ip pack f [2001/06/17] misc/28230 iso-8859-1_to_cp437.scm doesn't contain s o [2001/06/17] misc/28236 [PATCH] iso-8859-1_to_cp437.scm doesn't c o [2001/06/17] kern/28247 pirzyk ATM/HARP driver for IDT and ForeLE ATM ca o [2001/06/18] misc/28255 picobsd documentation still references ol o [2001/06/18] ports/28256 ports New port: citadel-5.74 s [2001/06/18] kern/28260 UIO_MAXIOV needs to be made public o [2001/06/19] ports/28271 tobez New port: A perl GUI toolkit a [2001/06/19] ports/28272 ports Update port: net/libsocket++ o [2001/06/20] conf/28290 peter Mouse refuses to run o [2001/06/20] bin/28294 dump of vinum based file systems by devic o [2001/06/20] kern/28297 change request for sys/i386/conf/NOTES o [2001/06/20] docs/28306 doc docbook.css and OBJDIR o [2001/06/21] conf/28320 dougb Denied zone transfers in daily run output o [2001/06/21] ports/28332 ports Gimp manual port 1-2 years out of date, m o [2001/06/21] bin/28333 rtprio/idprio setuid problems s [2001/06/22] i386/28346 n_hibma USB ethernet dongle detach requires "ifco o [2001/06/22] misc/28360 ru /sbin/route bug o [2001/06/23] ports/28363 ports New port: audacity-0.95 - a graphical wav o [2001/06/23] bin/28364 lex(1) generated files fail to compile cl o [2001/06/23] ports/28365 wosch Typical use of portchecheckout breaks int o [2001/06/23] docs/28371 phk malloc(2) man page correction o [2001/06/23] ports/28375 vanilla New port: chinese/pycodec o [2001/06/26] ports/28428 ports New port: graphics/xmms-xvs o [2001/06/26] ports/28432 obrien [patch] comms/conserver fails with MD5 pa o [2001/06/26] bin/28435 [patch] allow newsyslog to signal process f [2001/06/27] i386/28444 qa instal.cfg; setting tryRTSOL=NO does not o [2001/06/27] bin/28449 cracauer sh(1) aborts on certain input o [2001/06/27] ports/28450 ports New ports: sword bible library, sword-mod o [2001/06/27] misc/28455 ache GNU readline should be updated to 4.2 o [2001/06/27] misc/28456 german keymap with dead keys o [2001/06/27] ports/28464 ports New port: www/orion-current f [2001/06/27] misc/28468 There may be problems about login o [2001/06/27] ports/28471 keith no iso8859 font a [2001/06/28] ports/28482 ports PostgreSQL Compile problem o [2001/06/28] misc/28494 n_hibma ugen usable only from "attach" or by usbd o [2001/06/29] ports/28509 keith zh-dia is broken o [2001/06/29] ports/28510 portmgr Can't make ports readmes if categories mi o [2001/06/29] ports/28521 ports inconsistency: daemontools and serialmail o [2001/06/29] ports/28526 nakai x11-wm/icewm can't show the CPU status wi o [2001/06/29] misc/28529 runetype.h doesn't have C++ 'extern "C"' f [2001/06/30] ports/28551 ports ports/mail/faces doesn't build (linking w o [2001/06/30] docs/28555 doc [PATCH] style(9) isn't explicit about boo o [2001/06/30] kern/28566 bp Mount_null loopbacks can hang startx temp o [2001/07/01] ports/28576 sobomax Fix pkg-plist for archivers/ucl o [2001/07/01] bin/28620 ru xinstall has no way to pass options to st f [2001/07/02] bin/28634 des Bug in syslogd.c prevents #+hostname work o [2001/07/02] ports/28644 jmz Make error when rebuilding xdvi o [2001/07/02] ports/28658 ports new port: x11/mwheel.el o [2001/07/03] ports/28678 wosch portcheckout doesn't allow flexible build o [2001/07/03] ports/28680 portmgr pkg_update complains about missing REQUIR o [2001/07/03] kern/28681 ATAPI MO drive support o [2001/07/03] ports/28682 portmgr Some port install builds fail if silent ( o [2001/07/04] docs/28699 doc strptime(3) %d format specifier not compl o [2001/07/05] ports/28717 billf net/net-snmp stop enumerate interfaces wh o [2001/07/05] ports/28727 ports patch to make expect build WITHOUT_X11 o [2001/07/05] bin/28738 IPFW log messages causes syslogd to fsync a [2001/07/05] ports/28758 roam New port: security/apg o [2001/07/06] ports/28771 ports opendx server fails to start o [2001/07/07] bin/28789 /usr/bin/last does not filter for uucp co a [2001/07/07] bin/28790 mike [PATCH] whois: AUNIC fix, Add an option t o [2001/07/07] ports/28796 ports New port: russian/tac+ia a [2001/07/07] misc/28800 qa sysinstall provides no way to overwrite M o [2001/07/07] ports/28803 obrien ports/comms/conserver does not support ## o [2001/07/08] ports/28806 portmgr FIND inconsistency o [2001/07/08] ports/28810 lioux qpopper 4.0.3 + PAM modification; HAVE_SH o [2001/07/08] ports/28812 ports New port: databases/ccc o [2001/07/08] bin/28820 mjacob tar and cpio cannot deal with files > 2GB o [2001/07/08] bin/28824 sos [patch] src/usr.sbin/burncd warning clean o [2001/07/09] ports/28851 ports New port: conserver-7.0.2 o [2001/07/10] bin/28884 auth.conf out of date in -Stable o [2001/07/10] ports/28887 brian [PATCH] sandbox for httptunnel! o [2001/07/10] kern/28888 Acer 8000 NIC not detected correctly o [2001/07/11] misc/28890 merge.c compares int i against size_t siz f [2001/07/11] ports/28904 portmgr bsd.port.mk: PLIST_SUB for DOCSDIR, DATAD o [2001/07/13] misc/28938 small PicoBSD - An update to the build script t o [2001/07/13] kern/28947 dup2 closing pthread file descriptor o [2001/07/13] ports/28948 dirk Add domxml and imap-ssl support to mod_ph a [2001/07/13] docs/28949 phk the mknod(8) man page stills refers to bl o [2001/07/14] ports/28964 ports New port: chat client for VChat conferenc o [2001/07/14] bin/28972 gamma returns same result as lgamma o [2001/07/14] i386/28975 mjacob RocketPort problems o [2001/07/14] kern/28976 ddb doesn't understand ctrl-u o [2001/07/14] misc/28980 Fujitsu/Siemens Lifebook E-6540 stalls wh o [2001/07/15] bin/28988 We need more simple message digesting too f [2001/07/15] docs/28994 dd New article for docproj "Checkpoint VPN-1 o [2001/07/16] ports/29004 gnome make error at gnomeutils/po o [2001/07/16] ports/29009 dburr fsgs port installs cfg file with wrong pa o [2001/07/16] ports/29030 obrien [PATCH] net/netcat: support for IPv6 o [2001/07/18] bin/29062 markm krb4 and krb5 multiply defined version sy o [2001/07/18] ports/29068 nsayer cyrus-sasl port pwcheck should allow PAM o [2001/07/18] ports/29069 portmgr Update port devel/autoconf o [2001/07/18] bin/29071 relay patch for rwhod o [2001/07/19] misc/29077 At loading notebook pccardd not correctly o [2001/07/19] ports/29080 ports New port: net/icradius - IC-Radius daemon o [2001/07/19] ports/29081 ports New port: net/p5-IC-Radius o [2001/07/19] docs/29088 phk jail(8) man page has innacurate instructi o [2001/07/19] misc/29089 Some kind of fsbn0 error... o [2001/07/19] bin/29090 add `no_rip_out' option to routed o [2001/07/19] ports/29095 lioux Update of jgnat to jgnat-1.1p o [2001/07/20] misc/29103 make (1) dump core while processing ^C fr o [2001/07/20] kern/29104 phk [PATCH] md, disklabel and devfs do not pl o [2001/07/20] i386/29107 Unable to download repository from releng o [2001/07/20] conf/29117 pccard.conf missing an entry for NOVAC NV o [2001/07/21] bin/29119 menu of fdisk editor in 4.3R does not lis o [2001/07/21] ports/29120 ports [PATCH] net/radiusd-cistron: Add PAM supp a [2001/07/21] ports/29137 obrien Brand New Tripwire-2.3.1 Port o [2001/07/22] docs/29143 doc List of man pages that need to be written o [2001/07/22] ports/29153 nik Locating jadetex in textproc/docproj port o [2001/07/22] ports/29154 nik TeX resource settings from MAKE_ENV in pr o [2001/07/23] kern/29160 mount of NIKON Coolpix 995 via umass driv o [2001/07/23] ports/29163 jmz XFree86-4 port should register XFree86-4- o [2001/07/23] bin/29164 [PATCH] lack of 'Do not fragment' flag in f [2001/07/23] docs/29166 tomsoft Flaw in growfs(8) manpage o [2001/07/23] conf/29167 rc.pccard doesn't check /var/run/pccardd. o [2001/07/23] kern/29169 mjacob FC loop that 'goes away' never times out o [2001/07/23] bin/29171 [PATCH] keyserv and rpc.yppasswd o [2001/07/23] bin/29172 [PATCH] Add more checks in rpc/svc_vc.c a o [2001/07/23] bin/29173 [PATCH] wrong flags for rpcgen(1) o [2001/07/23] bin/29174 [PATCH] cleanup of the ti-rpc merger o [2001/07/23] bin/29175 tmm [PATCH] rpcgen(1) and inetdflag/pmflag su o [2001/07/23] bin/29177 [PATCH] rpc client create functions with s [2001/07/24] kern/29187 sound device don't work o [2001/07/24] ports/29199 sobomax jdk12beta port should register open-motif o [2001/07/25] docs/29215 ue NIS Section in Handbook should be more de o [2001/07/25] ports/29219 bp smbfs-1.4.1 don't compile o [2001/07/25] ports/29223 ports cyrus-imapd and postfix master.8 manpage o [2001/07/25] ports/29227 ports New port: zclock time/date applet for GNO o [2001/07/25] kern/29233 VIA 82C686 AC97 codec gets probed as 'chi o [2001/07/26] misc/29241 mike Mailing list seach web page lacks an entr o [2001/07/26] docs/29245 doc top(1) manpage doesn't understand SMP o [2001/07/26] ports/29248 jmz XFree86 4.1 hangs with an i815 chip while o [2001/07/26] ports/29250 greid Update net/ettercap to 0.5.4 o [2001/07/27] kern/29264 Recovery from LIPs on FCAL using isp not o [2001/07/27] ports/29267 nbm Update the svscan.sh startup script for d o [2001/07/28] ports/29278 greid Update port net/ettercap o [2001/07/28] ports/29282 lioux New port ftp/swiftfxp o [2001/07/28] ports/29286 ports New port: french/xtel - an emulator for t o [2001/07/28] ports/29291 billf ethereal fails to build in wiretap a [2001/07/28] misc/29292 sos The functional addtion to burncd(8) o [2001/07/29] ports/29297 ports NEW PORT: System Maintenance Aid written o [2001/07/29] ports/29298 cpiazza Installation of documentation for vcdgear o [2001/07/29] alpha/29299 alpha FreeBSD 4.3 Alpha + Tekram SCSI adapter p o [2001/07/29] kern/29307 NIC Initialization fails on dual CPU syst o [2001/07/29] ports/29310 steve Fix bento checksum errors o [2001/07/29] misc/29312 sound Using mixer on pcm misbehaves with onboar f [2001/07/29] kern/29318 mjacob Exabyte 8200 needs SA_QUIRK_1FM and SA_QU o [2001/07/30] gnu/29331 still documented broken options in gcc ma o [2001/07/30] ports/29332 ports Refiling New Port: ripem-2.1 o [2001/07/30] ports/29343 ports new postgresql7 port feature o [2001/07/31] ports/29346 ports New port: misc/afbackup-beta o [2001/07/31] kern/29355 adrian [patch] lchflags support o [2001/08/01] bin/29361 startslip can't load if_sl.ko o [2001/08/01] bin/29363 [PATCH] newsyslog can support time as ext o [2001/08/01] conf/29364 imp please add STI Flash 5.0 to pccard.config o [2001/08/01] ports/29369 ports new port for the CHTML package o [2001/08/01] misc/29376 phk Realloc() doesn't (by default) comply wit o [2001/08/02] ports/29392 ports Small built-time glitch in Makefile for a o [2001/08/02] kern/29395 reaction on ctrl-alt-del - poweroff, halt o [2001/08/02] kern/29405 bp many mount/umount smbfs share results in o [2001/08/03] ports/29418 ports New Port: www/waccess-1.1 - A Quick-N-Dir o [2001/08/03] kern/29423 [PATCH] kernel security hooks implementat o [2001/08/03] ports/29426 ports New port: he2 - a Hebrew LaTeX oriented e o [2001/08/04] ports/29456 ports New port of blimitd (daemon to enforce lo o [2001/08/04] ports/29461 ports new port: x11-wm/bbapm (blackbox APM mete o [2001/08/04] ports/29462 ports new port: x11-wm/bbrun (blackbox run box) o [2001/08/07] kern/29499 dwmalone it is not possible to send creditionals o [2001/08/07] ports/29514 ports new port submission: games/xlogical (SDL o [2001/08/07] bin/29516 markm telnet from an non FreeBSD host still use o [2001/08/07] ports/29519 ports X11 ports generate undef pthread refs wit f [2001/08/07] docs/29525 doc hier(7) has sometimes-erroneous descripti o [2001/08/07] ports/29528 dburr Update misc/tvguide to 0.9.0 o [2001/08/07] misc/29529 dcs Boot prompt "?" command doesn't list "boo o [2001/08/08] kern/29538 joerg Mounting /dev/fd0 never completes o [2001/08/08] misc/29550 duplicate pings jinside of vmware 2.0 o [2001/08/09] ports/29565 dirk Update port: www/mod_php4 o [2001/08/09] docs/29571 doc [PATCH] No man page for pgrp kernel funct o [2001/08/09] ports/29573 ports New port: A script to fetch mail from a H o [2001/08/09] bin/29581 proposed gethostbyXXXX_r() implementation o [2001/08/09] ports/29590 ports [new port] www/parser-bin One more server o [2001/08/10] kern/29602 darrenr kernel doesn't check if newly allocated e f [2001/08/10] i386/29611 nfsd eats 100% cpu when run without TCP s o [2001/08/10] ports/29616 ports ports/net/generic-nqs loaddaemon does not o [2001/08/10] ports/29620 petef New port: devel/libcapsinetwork o [2001/08/11] kern/29621 n_hibma Missing man page for ulpt o [2001/08/11] kern/29624 kernel prints "bmaj but is not a boot dis a [2001/08/11] ports/29630 ports New port : xtexsh o [2001/08/11] ports/29638 green [patch] upgrade security/cfs a [2001/08/12] i386/29639 murray entry for zip 250 drives in /etc/disktab o [2001/08/12] ports/29667 ports New port: www/mod_auth_pwcheck o [2001/08/13] ports/29674 ports diclookup-mule port which works on emacs- o [2001/08/13] bin/29675 lint fails on stdio.h o [2001/08/13] ports/29691 portmgr New port variable USE_COMPAT_LIB - bsd.po o [2001/08/14] kern/29698 linux ipcs doesn'work o [2001/08/14] ports/29710 portmgr bsd.port.mk - Include more MASTER_SITE_* o [2001/08/14] ports/29711 ports New port: xjumpx -- improved version of g f [2001/08/14] ports/29712 dwcjr New port : muttprint - fancy printing for f [2001/08/14] ports/29719 dwcjr update extipl-5.03 o [2001/08/15] kern/29727 amr_enquiry3 structure in amrreg.h (amr d o [2001/08/15] ports/29731 ports minor errors in docs, install o [2001/08/15] ports/29732 sobomax linking error o [2001/08/15] ports/29745 keith Fix pkg-plist for chinese/CJK o [2001/08/15] ports/29746 obrien Fix pkg-plist for chinese/cless o [2001/08/15] ports/29747 obrien Fix pkg-plist for chinese/cxterm o [2001/08/15] ports/29749 obrien Fix pkg-plist for chinese/gb2ps o [2001/08/15] ports/29750 keith Fix pkg-plist for chinese/libtabe o [2001/08/15] ports/29753 keith Fix pkg-plist for chinese/xcin25 o [2001/08/15] ports/29754 sobomax Fix pkg-plist for comms/mserver o [2001/08/15] ports/29756 sobomax Fix pkg-plist and Makefile for comms/sred o [2001/08/15] ports/29757 se Fix pkg-plist for comms/yaps o [2001/08/15] ports/29760 hoek Fix pkg-plist and Makefile for converters o [2001/08/15] ports/29762 hoek Fix Makefile and pkg-plist for converters f [2001/08/16] ports/29763 ade port addition request o [2001/08/16] kern/29769 Kernel configuration hangs on i815e with f [2001/08/16] kern/29777 n_hibma kernel uscanner.c contains wrong vendor a o [2001/08/17] ports/29805 ports New port: devel/c2man f [2001/08/17] docs/29807 dd [PATCH] XFREE86_VERSION is undocumented o [2001/08/17] ports/29831 ume Fix port sysutils/gkrellm o [2001/08/17] ports/29836 ports New port: cyrus-imspd o [2001/08/18] ports/29843 ports StarOffice 5.2 port does not find CD-ROM f [2001/08/18] bin/29850 markm ftpd.c doesn't check via PAM/pam_acct_mgm o [2001/08/18] ports/29851 kuriyama ports/textproc/cocoon has a checksum erro o [2001/08/18] ports/29856 portmgr make extract of cyrus did an install of c o [2001/08/18] ports/29857 ports New port: www/py-websvcs o [2001/08/18] ports/29858 ports Updated port: audio/lame (3.89b) o [2001/08/19] conf/29870 rc.diskless2 uses /usr/sbin/mtree before o [2001/08/19] kern/29875 CURRENT driver for Tekram DC395X and DC31 o [2001/08/19] ports/29876 portmgr bsd.port.mk: MLINKS Description wrong o [2001/08/19] ports/29883 markm Update textproc/par to 1.53 a [2001/08/20] bin/29892 dd pw user add + qmail problem o [2001/08/20] misc/29893 qa suggestions for 4.4 sysinstall o [2001/08/20] bin/29897 pam_unix patch, which uses loginclass pas a [2001/08/20] docs/29902 www Mozilla package URL problems o [2001/08/20] kern/29915 kernel panics on interaction with mlock a o [2001/08/21] ports/29924 ports remove port smalleiffel-0.76.b4 o [2001/08/21] ports/29926 demon kdeadmin fails to compile at kpackage o [2001/08/21] conf/29928 gshapiro SENDMAIL_ADDITIONAL_MC is less than entir o [2001/08/21] ports/29929 ache wginstall.pl script chokes on calculated o [2001/08/21] ports/29930 demon new port for LAM/MPI o [2001/08/21] ports/29948 ports Update port converters/tnef to version 1. o [2001/08/22] ports/29960 ports ports/devel/glg has a checksum error o [2001/08/22] bin/29961 ru A4 paper size for groff knob for /etc/mak o [2001/08/22] kern/29962 sent broadcast packets get spurious 4 byt o [2001/08/22] bin/29966 cleanup of ppp server socket on unclean s a [2001/08/22] ports/29969 gnome gnomedb does not build o [2001/08/22] kern/29974 bp smbfs generates a ''Negative opencount'' a [2001/08/23] docs/29984 dd random(4) manpage has typo o [2001/08/23] misc/29996 asmodai stdbool.h is not installed f [2001/08/23] ports/29999 petef update sysutils/gcombust to 0.1.46 o [2001/08/23] ports/30007 ports [NEW PORT] of Gary Pearlman's unix|stat s a [2001/08/23] docs/30008 doc This document should be translated, comme o [2001/08/23] ports/30012 dirk mod_php4 does not build on 4.4 with apach f [2001/08/23] i386/30013 a program loops when used with && a [2001/08/23] ports/30014 ports Installation of PHP with GD fails o [2001/08/24] ports/30028 billf Issue between www/mod_php4 and graphics/g o [2001/08/24] ports/30029 ports new port: net/papaya-plugins (plugins for o [2001/08/24] ports/30030 ports new port: net/papaya-plugins (graphical m o [2001/08/24] ports/30050 ports New port: audio/ecawave o [2001/08/24] kern/30052 dc(4) driver queues outgoing pkts indefin a [2001/08/24] bin/30054 mike ftp(1)'s fetch.c could easily have vhost o [2001/08/24] bin/30055 ftp(1)'s fetch.c has readability-issues w f [2001/08/25] ports/30075 gnome print/ggv just USE_GNOMELIBS o [2001/08/25] docs/30082 jkoshy Dead URL on website o [2001/08/25] bin/30091 darrenr IPFilter Fails to Filter Bridged Packets o [2001/08/25] ports/30094 ports New port: ferite o [2001/08/26] ports/30095 billf net/net-snmp fails compile on 5-current o [2001/08/26] ports/30096 kde [KDE 2.2] KSpell doesn't include /usr/loc o [2001/08/26] ports/30097 kde [KDE 2.2] KDE-session fails to start o [2001/08/26] ports/30099 portmgr [PATCH] Useless use of cat in /usr/ports/ o [2001/08/26] ports/30114 sobomax Update port: graphics/py-opengl o [2001/08/26] ports/30115 ports New Port: pdnmesh a finite element progra o [2001/08/26] ports/30116 ports New Port: x86info shows interesting info o [2001/08/27] ports/30122 ports print/ttf2pt1 is compiled with freetype2 o [2001/08/27] ports/30148 portmgr devel/libtool: shared libs with compaq-cc o [2001/08/28] kern/30160 Kernel panic when flash disk is removed a f [2001/08/28] ports/30166 ports ports/net/nettest2001 o [2001/08/28] ports/30170 ports majordomo port: scripts/createuser does n o [2001/08/28] kern/30179 FreeBSD 5.0 install hangs: deviceTry: mak f [2001/08/29] ports/30185 roam [PATCH] databases/firebird: Fix UDF loadi o [2001/08/29] misc/30186 getaddrinfo does not handle incorrect ser o [2001/08/29] ports/30196 portmgr HTTP_PROXY (and FTP_PROXY) in /etc/make.c o [2001/08/29] kern/30200 yokota Bug in psm in 4.4-RC o [2001/08/29] ports/30201 msmith editors/wordperfect in ports is not usabl o [2001/08/29] docs/30202 dd pointer to pointer to information o [2001/08/29] i386/30206 PS/2 server 85 can't boot kern.flp o [2001/08/29] misc/30213 Fatal Errors of Server Programe o [2001/08/30] misc/30224 No irq - PCI wi card doesn't allow interu o [2001/08/30] ports/30225 nectar mozilla 0.93 build problem o [2001/08/30] ports/30232 petef New Port orbitcpp o [2001/08/31] ports/30236 obrien vim6 with max feature o [2001/09/01] bin/30247 sh cannot redirect to /dev/fd/1 or from / f [2001/09/01] ports/30249 ports SmallEiffel update to -0.75 o [2001/09/01] docs/30253 bp [PATCH] mount_unionfs(8) and mount_nullfs o [2001/09/01] kern/30257 apm enabled kernel panics (4.4-RC) o [2001/09/01] bin/30258 aborting burncd using Ctrl-C screws up CD f [2001/09/02] bin/30262 brian ppp segfault o [2001/09/02] ports/30264 greid Update port: graphics/xawtv o [2001/09/02] ports/30272 grog [PATCH] instant-workstation RUN_DEPENDS b o [2001/09/03] ports/30290 kde Remove port: deskutils/korganizer o [2001/09/03] ports/30291 kde Remove port: misc/khotkeys o [2001/09/03] misc/30297 dwmalone CLOCKS_PER_SEC non-standard o [2001/09/03] ports/30298 chuckr [PATCH] a2ps-4.13 can't cope with ENOMEM o [2001/09/03] conf/30301 Default printcap "mx" config too small o [2001/09/04] bin/30304 [PATCH] PAM authentication for uucpd o [2001/09/04] ports/30311 dbaker Update port: dnetc-2.8015.469 o [2001/09/04] ports/30314 ports [PATCH] Add Exim packages to CDROM 1 o [2001/09/04] misc/30320 n_hibma USB mouse does not work after return'ing o [2001/09/04] bin/30321 strftime(3) '%s' format does not work pro o [2001/09/04] ports/30328 portmgr bsd.port.mk has a wrong comment. o [2001/09/04] misc/30329 imp PCCARD configuration for GVC 10Mbps Ether o [2001/09/05] bin/30334 mount_nfs ignores acregmin, acregmax, axd a [2001/09/05] ports/30335 gnome rep-gtk port breaks on 4.3 -> 4.4 rollove o [2001/09/05] ports/30337 ports Update to new distribution/ old one broke o [2001/09/05] ports/30339 nakai port compilation problem found in rpm arc o [2001/09/05] conf/30341 be keymap: wrong Capslock behaviour with o [2001/09/05] i386/30352 adduser rollback request f [2001/09/05] ports/30358 ports new port: www/httpgrabber - HTTP traffic o [2001/09/05] bin/30360 vmstat returns impossible data o [2001/09/05] ports/30361 ports Update port: russian/apache13 o [2001/09/05] ports/30363 lioux [NEW PORT] ${PORTSDIR}/lang/gnat-doc-* G o [2001/09/05] ports/30365 lioux [NEW PORT] ${PORTSDIR}/lang/jgnat-doc-* o [2001/09/06] ports/30368 ports New port: net/p5-RPC-XML o [2001/09/06] ports/30376 kde kdegraphics2 fails to make package o [2001/09/06] ports/30381 ports Updated port: textproc/latex2html (pkg-me o [2001/09/06] ports/30382 ports New port: x11-toolkits/notif2 (1.0) o [2001/09/06] ports/30383 sobomax Updated port: x11-toolkits/gtk-engines-co o [2001/09/06] bin/30392 sh: incorrect value of $? in here-documen o [2001/09/06] ports/30395 ports New port: lang/spl o [2001/09/06] docs/30408 doc loader man page is out-of-date o [2001/09/06] ports/30411 ports new port: mail/ricochet o [2001/09/07] misc/30412 rtdl/dlopen() fails to merge common varia o [2001/09/07] kern/30422 WDT hardware watchdog driver & daemon o [2001/09/07] bin/30424 Generalization of vipw to lock pwdb while o [2001/09/08] ports/30431 ports ircd-hybrid fails to open logfile when st o [2001/09/08] conf/30441 Can't set interface arguments for dhcp co o [2001/09/08] docs/30442 doc remove broken referemce to gettime(9) fro o [2001/09/08] docs/30443 doc remove broken reference to kerberos(1) fr o [2001/09/08] docs/30444 doc remove broken references to gated(8) and a [2001/09/08] docs/30445 murray remove reference to nonexistent crd(4) fr a [2001/09/08] docs/30446 murray remove broken references to pvcsif(8) and a [2001/09/08] docs/30447 doc remove broken cxconfig(8) reference from o [2001/09/08] misc/30448 Olympus 4040Z Camera is seen by umass asi o [2001/09/09] i386/30461 sound no audio cd with cmi8330 o [2001/09/09] bin/30464 pthread mutex attributes -- pshared f [2001/09/09] bin/30471 brian periodic script output to a file always a o [2001/09/09] ports/30476 ports new port www/gallery o [2001/09/10] bin/30484 rpc.rstatd consumed lots of open file des o [2001/09/10] bin/30496 `host` does not work properly with top-le o [2001/09/10] ports/30499 portmgr libtool-1.4.1 port diffs o [2001/09/10] misc/30500 Fortune cites wrong source o [2001/09/11] i386/30503 imp stray pccard card insertion events after o [2001/09/11] kern/30510 no apm for VIA KT133A chipset o [2001/09/11] ports/30511 kde Problem getting opengl/mesa to work with o [2001/09/11] misc/30517 using sysinstall with install.cfg has no o [2001/09/12] conf/30520 rc files creation problem o [2001/09/12] misc/30526 inserting a Sony Ninja-ATA pcmcia style c o [2001/09/12] ports/30535 nakai Update port: x11-wm/icewm (fix ports/2806 o [2001/09/12] misc/30536 sos burncd(8) doesn't wait long enough for CD o [2001/09/12] kern/30540 [PATCH] spelling and grammar fixes in a c o [2001/09/12] kern/30541 imp [PATCH] old pccard beep depends on value o [2001/09/12] bin/30542 [PATCH] add -q option to shut up killall s [2001/09/12] bin/30543 ru [PATCH] use err() instead of just exit() o [2001/09/12] bin/30546 [PATCH] /etc/rc pedantry o [2001/09/13] misc/30548 Mount disk Solaris o [2001/09/13] ports/30549 ports Maintainer update: Jakarta Ant 1.4 o [2001/09/13] docs/30556 doc vnconfig man page incorrect; functionalit o [2001/09/13] ports/30557 ports bitchx fails to build when WITH_TCL=yes i o [2001/09/13] ports/30560 ports Typos in /usr/ports/french/staroffice52/p f [2001/09/13] ports/30569 ports Gdm won't compile o [2001/09/13] kern/30570 boot loader don't reacts on USB keyboard o [2001/09/14] ports/30573 ports /usr/X11R6/bin/xfce_setup does not create a [2001/09/14] misc/30579 chern Installation hangs during install while s o [2001/09/15] bin/30587 [PATCH] small fix to ifconfig output o [2001/09/15] conf/30596 Patch to specify a different directory to o [2001/09/15] ports/30600 keith abiword had move to share/ o [2001/09/15] docs/30603 doc physio(9) is internally inconsistent o [2001/09/15] ports/30604 ports postgresql7 doesn't build with kerberos5 o [2001/09/16] kern/30608 kern.ps_showallproc=0 doesn't limit queri o [2001/09/16] ports/30615 ports The 'bcwipe' port installs Linux binaries o [2001/09/16] docs/30618 doc ediff man page incomplete o [2001/09/16] ports/30623 sobomax Update of the audio/glame port o [2001/09/17] ports/30625 ports [PATCH] vmware2 patch for -current with K o [2001/09/17] bin/30627 /usr/libexec/makekey doesn't grok modern o [2001/09/17] misc/30631 readdir_r() SEGV on large directories o [2001/09/17] kern/30634 kevent.data value incorrect for UDP socke o [2001/09/17] bin/30639 apmd crashes on SIGHUP (under certain con o [2001/09/17] bin/30640 apmd does not terminate properly on SIGTE o [2001/09/18] misc/30647 "make release" in src/release/ creates po o [2001/09/18] bin/30661 FreeBSD-current fails to do partial NFS f o [2001/09/19] gnu/30666 peter [PATCH] ident(1) doesn't work on XFree86 o [2001/09/19] ports/30667 ports update port: mail/ezmlm-web - config file o [2001/09/19] ports/30668 petef [PATCH] fvwm2 2.4.2 o [2001/09/19] ports/30669 ports New port: www/moinmoin o [2001/09/19] ports/30673 greid Update port: net/ettercap to 0.6.0 o [2001/09/19] bin/30676 mike whois(1) does not supports all IP authori o [2001/09/19] ports/30677 ports New Port: International Components for Un o [2001/09/20] misc/30683 [PATCH] loader(8) fails to load module wh a [2001/09/20] bin/30685 cjc Patch for usr.bin/hexdump a [2001/09/20] misc/30690 mikeh Bad advice in ftpd man page o [2001/09/20] ports/30698 ports New port: news/pl-slrn o [2001/09/20] misc/30699 pthread_attr_setscope function fails unco o [2001/09/20] i386/30700 Applications cannot synchronize sound usi o [2001/09/20] ports/30701 ports setiathome port misuses the 'nobody' user o [2001/09/21] bin/30706 des Problem with mount linuxproc filesystem o o [2001/09/21] ports/30707 gnome midnight commander can't handle correctly o [2001/09/21] ports/30711 ports New port: C++ SOAP Library based on expat o [2001/09/21] ports/30713 ports 'gtar --version' segfaults o [2001/09/21] ports/30722 ports Update port: math/oleo o [2001/09/21] ports/30726 nakai Update port: x11-wm/xfce to 3.8.8 (fix po o [2001/09/22] docs/30731 doc printf(1) refers to ANSI C Standard draft o [2001/09/22] ports/30732 obrien bash2 - pkg-plist fix and sample files ad o [2001/09/22] ports/30733 nakai upgrade port: x11-wm/xfce to version 3.8. a [2001/09/22] bin/30737 murray sysinstall leaks file descriptors on rest o [2001/09/22] ports/30741 ports ftp.proxy's syslog facility is LOG_MAIL o [2001/09/23] ports/30754 nakai x11/dgs port overwrites a number of files o [2001/09/23] ports/30763 ports Maintainer UPDATE: net/gtk-gnutella f [2001/09/23] bin/30764 des PATCH: fetch(1) prints d/l status even if a [2001/09/23] kern/30766 murray maxusers comment in LINT contains incorre o [2001/09/23] docs/30772 doc blackhole(4) manpage updates o [2001/09/23] ports/30776 ports new port: sysutils/pkg_tree o [2001/09/23] ports/30777 portmgr add a 'make pkg-plist' make target in por o [2001/09/23] misc/30778 termcap problem with wyse-60 terminal o [2001/09/24] ports/30779 ports make deinstall fails on mysql-server-3.23 o [2001/09/24] ports/30788 sobomax compile works, install fails of graphics/ o [2001/09/24] ports/30790 petef Maintainer update: net/adasockets o [2001/09/24] ports/30791 kris upgrade ports/rats to 1.2 o [2001/09/24] misc/30792 traffic destined for 127/8 addresses shou o [2001/09/24] ports/30793 ports Maintainer update: devel/adabroker o [2001/09/24] kern/30794 sound ESS Solo-1 does not work after suspend/re o [2001/09/24] misc/30795 peter the "Current problems assigned to you" sc o [2001/09/24] ports/30796 kris improper man page installation o [2001/09/24] docs/30797 doc YP documentation should not be in section o [2001/09/24] ports/30799 ports New port: lang/hope o [2001/09/24] ports/30800 ports Update port: russian/apache13 o [2001/09/24] i386/30801 sos ata UMDA problem o [2001/09/24] i386/30808 sound t4dwave on Acer Alladin M5451 interrupt p o [2001/09/24] docs/30809 doc fdisk(8) cleanup o [2001/09/25] ports/30810 ports Wish: apcupsd port o [2001/09/25] ports/30811 ports new port o [2001/09/25] bin/30812 giant termcap database update o [2001/09/25] ports/30813 jmz Xfree86-4 port creates libfreetype.so.6 w o [2001/09/25] ports/30814 nbm Added option to specify the mysql server a [2001/09/25] bin/30816 yar usr.sbin/edquota new option [-f] o [2001/09/25] bin/30819 /bin/mv results in warnings when /bin/cp o [2001/09/25] ports/30822 ports New port: devel/glui o [2001/09/25] ports/30824 ports security/amavis-perl port update o [2001/09/25] ports/30826 ports NEW PORT: vterrain-sdk o [2001/09/25] ports/30827 ports NEW PORT: vterrain-apps o [2001/09/25] ports/30828 ports NEW PORT: gdal o [2001/09/25] ports/30829 ports NEW PORT: usgs-proj o [2001/09/25] ports/30831 roger net/aim upgrade to version 1.5.234 o [2001/09/25] kern/30836 Chipset SiS735 / NIC SiS 900 o [2001/09/26] ports/30840 ports [NEW PORT]: x11-fonts/mkfontalias o [2001/09/26] ports/30841 ports News port: fortuneru, contains fortune fi o [2001/09/26] bin/30843 pkg_add don't threat -t flag properly o [2001/09/26] ports/30845 ports New port: textproc/xerces-c: Xerces C++ X o [2001/09/26] ports/30848 nbm courier imapd won't compile with vpopmail o [2001/09/26] ports/30849 ports news/ntpcache fails compiling authinfo_pa o [2001/09/26] bin/30854 bootpd/bootpgw change - skip ARP modifica o [2001/09/26] misc/30857 intr_machdep.c allows access out of array o [2001/09/26] i386/30858 intr_machdep.c allows access out of array o [2001/09/26] ports/30859 ports A New Port o [2001/09/26] i386/30860 While install after "Mounting root from u o [2001/09/26] kern/30861 marcel Linuxulator: stackgap does not handle rec o [2001/09/26] ports/30862 portmgr Add support for bzip2 compressed patch fi o [2001/09/27] bin/30863 bootpd/dovend.c Win95 compatibility impro o [2001/09/27] ports/30870 ports httpd in free(): warning: recursive call o [2001/09/27] docs/30873 doc ``ip'' man page does not specify byte ord o [2001/09/27] ports/30875 ports fix bug in 'prompt' variable processing i o [2001/09/27] ports/30878 ports [PATH] Fixes build of port strace for -CU o [2001/09/28] bin/30887 dump allways saves files with modified c- o [2001/09/28] ports/30890 ports Mark ports/devel/stlport as broken for Fr o [2001/09/28] ports/30891 ports Maintainer update: irc/{irchat-pj-*,pure- o [2001/09/28] bin/30893 sos [PATCH] burncd(8) progress meter o [2001/09/28] i386/30902 hangs during "mounting root from ufs:/dev o [2001/09/28] ports/30903 ports Updated port: mail/pgp4pine (NOPORTDOCS a o [2001/09/28] kern/30906 jlemon Add 28800 baud support to sio o [2001/09/29] bin/30907 green [PATCH] ssh configuration oddities o [2001/09/29] bin/30908 [PATCH] Tweak ldd to provide more informa a [2001/09/29] misc/30909 greid I can't use Creative SB AWE64-Compatible o [2001/09/29] ports/30910 ports New port: lang/ghc5, rename lang/ghc to l o [2001/09/29] ports/30911 ports Update devel/happy to version 1.11 o [2001/09/29] ports/30912 ports [PATCH] port editors/AbiWord fails to set o [2001/09/29] bin/30913 fingerd(8) execv failure due to missing a o [2001/09/29] ports/30923 obrien small fix for devel/gindent port o [2001/09/29] ports/30924 lioux LPRng 3.7.8 Port Update o [2001/09/29] ports/30925 ports ifhp port update o [2001/09/29] ports/30926 ports LPRngTool port update o [2001/09/29] ports/30927 lioux LPRng port update o [2001/09/30] ports/30929 ports [net/pppoa] use usbd to initialize USB AD o [2001/09/30] ports/30930 ports maintainer-update mail/mutt-devel o [2001/09/30] ports/30932 ports maintainer update: net/samplicator o [2001/09/30] ports/30933 ports New port : lang/linux-j o [2001/09/30] ports/30934 ports new port: net/stools o [2001/09/30] ports/30936 taoka pips-sc880 installed script contains inco o [2001/09/30] ports/30937 ports pnet 1.2 -> 1.6 o [2001/09/30] conf/30938 Improving behavior of /etc/periodic/daily o [2001/09/30] bin/30939 top(1) behaves badly when it loses termin o [2001/09/30] ports/30942 ports New port: Pike 7.0 from CVS o [2001/09/30] ports/30943 ports [MAINTAINER UPDATE] doxygen 1.2.10_1 -> 1 o [2001/09/30] kern/30951 Optimize page queue scan on miss of speci o [2001/10/01] ports/30953 ports New port: net/p5-Net-ParseWhois o [2001/10/01] ports/30956 ports update to ports/net/gq o [2001/10/01] ports/30957 ports New port: japanese/gqmpeg o [2001/10/01] ports/30963 ports Make net/generic-nqs honor CFLAGS a [2001/10/01] bin/30968 mike whois client bug w/ .biz o [2001/10/01] alpha/30970 alpha Ensoniq 1371 (Creative chipset) does not o [2001/10/01] bin/30972 peter nfsd and mountd are in the wrong location o [2001/10/01] ports/30979 ports New port for "txfonts" TeX's font package o [2001/10/01] kern/30980 Nikon Coolpic 995 is supported incorrectl o [2001/10/02] alpha/30982 alpha "ip_dooptions()" might dereference unalig o [2001/10/02] ports/30983 portmgr [PATCH] Some staroffice cdrom fixes o [2001/10/02] kern/30985 incorrect signal handling in snpread() o [2001/10/02] ports/30986 obrien vim6 LITE=YES packing list incorrect o [2001/10/02] ports/30988 ports AbiWord's american.hash dictionary appear o [2001/10/02] ports/30990 ports biology/ncbi-toolkit will not compile (PA o [2001/10/02] ports/30997 ports new port: security/p5-Digest-HMAC o [2001/10/02] ports/30998 ports Update Port: java/bluej 1.1.4 -> 1.1.5 o [2001/10/02] ports/30999 ports [PORT UPDATE] security/gpgme 0.2.2 -> 0.2 o [2001/10/03] ports/31001 ports Maintainer update: www/orion 1.4.5_7 o [2001/10/03] ports/31010 ports update port biology/molden for checksum e o [2001/10/03] ports/31011 ports Update port biology/psi88 for unreachable o [2001/10/03] ports/31012 ports security/aide doesn't compile o [2001/10/03] ports/31013 obrien John The Ripper Package Lists Bad Path o [2001/10/03] ports/31015 greid Fix port audio/rioutil o [2001/10/03] ports/31017 ache Add missing manpage entry to news/tin o [2001/10/03] ports/31019 nakai Fix x11/xmascot o [2001/10/03] ports/31022 nakai Fix port games/xrubik o [2001/10/03] conf/31023 imp Update to /etc/defaults/pccard.conf for C o [2001/10/03] ports/31024 kde update of deskutils/kdepim to build kpilo o [2001/10/03] misc/31025 link(2)'s man page leaves out reasons for o [2001/10/03] ports/31026 ports New Port: Internet Message Support Protoc o [2001/10/04] bin/31034 regularly add original address logging fo o [2001/10/04] ports/31036 ports NEW PORT: KWebget o [2001/10/04] ports/31037 ports NEW PORT: Krusader o [2001/10/04] ports/31038 ports [PATCH] ratpoison port is out of date. o [2001/10/04] ports/31039 ports New Port: nhc98 1.08 - a haskell compiler o [2001/10/04] kern/31043 Missing Ptrace functionality in Linuxulat o [2001/10/04] ports/31044 ports UPDATE: mosfet-liquid-0.6 o [2001/10/04] kern/31048 linprocfs:/proc/meminfo cannot handle mul o [2001/10/04] bin/31049 /usr/sbin/adduser does not allow '.' in l o [2001/10/04] ports/31051 keith Update port: chinese/mozilla-tclp from 0. o [2001/10/04] bin/31052 Traceroute needs update f [2001/10/04] ports/31053 ports Update port: devel/stlport o [2001/10/05] ports/31056 dwcjr postfix program_directory parameter's def o [2001/10/05] ports/31058 ports Maintainer update: net/isc-dhcp3 - 3.0 re o [2001/10/05] ports/31061 ports New port: security/gnupg-devel o [2001/10/05] ports/31063 ports Upgrade aim-transport in jabber port. f [2001/10/05] ports/31065 sf wget needs autoconf but the ports don't k o [2001/10/05] i386/31067 malloc.h, lines 81,82,and 87 - syntax err o [2001/10/05] ports/31068 kde x11/kdelibs2 can't build static libraries o [2001/10/05] ports/31072 ports Update port: graphics/libmng to 1.0.3 o [2001/10/05] ports/31074 lioux Update port: japanese/truetypefonts o [2001/10/05] ports/31076 lioux Update port: mail/pop3lite to 0.2.4a o [2001/10/05] ports/31082 ports New port: LaBrea security utility a [2001/10/05] ports/31083 dougb Update port: net/bind8 o [2001/10/06] ports/31087 ports Update port: games/actx from 1.01 to 1.05 o [2001/10/06] bin/31088 tobez Make whereis.pl use strict, and a couple o [2001/10/06] ports/31089 ports Port www/horde: minor patch to make the c o [2001/10/06] ports/31090 ports Port mail/imp: change the default IMAP se o [2001/10/06] ports/31091 lioux New port: sysutils/wmzazof o [2001/10/06] ports/31093 ports new port "flyway" o [2001/10/06] bin/31094 des show more precision in fetch % complete o [2001/10/06] ports/31095 ports Update port: security/amavis-perl from 10 o [2001/10/06] ports/31096 ports New port for jakarta-tomcat 4 o [2001/10/07] misc/31097 main thread will accept() failure when so o [2001/10/07] ports/31099 ports New port: sysutils/flog o [2001/10/07] ports/31101 ports Update port: mail/vpopmail various requir o [2001/10/07] pending/31104gnats-adminUpdate port: devel/doxygen 1.2.10_1 -> 1. o [2001/10/07] ports/31106 ports Update port: security/amavis-perl [MAINTA o [2001/10/07] ports/31108 ports Updated port: textproc/p5-Tree-Nary from o [2001/10/07] docs/31109 doc replace gif images w/ png ones due to pat o [2001/10/07] ports/31110 ports Updated port: sysutils/fcron from 1.1.1 t o [2001/10/07] ports/31111 lioux New port security/altivore o [2001/10/07] ports/31112 ports Update port graphics/imlib2 o [2001/10/07] ports/31114 ports Update port databases/edb o [2001/10/07] ports/31115 ports Update port devel/libast o [2001/10/07] ports/31116 ports Update Port: irc/ircd-hybrid to ircd-hybr o [2001/10/07] ports/31117 ports Update ports graphics/gliv o [2001/10/07] ports/31118 ports Update port graphics/evas o [2001/10/07] ports/31119 ports New ports: graphics/imlib2_loaders o [2001/10/07] ports/31120 ports New port: graphics/entice o [2001/10/07] ports/31121 ports audio/mpg321: update to 0.2.0 and unbreak o [2001/10/07] ports/31123 ports New port: www/w3m-m17n o [2001/10/07] ports/31124 ports Update port: www/w3m o [2001/10/07] ports/31125 ports Update port: devel/boehm-gc o [2001/10/08] ports/31127 ports Update port: x11/eterm o [2001/10/08] ports/31128 ports Update port: japanese/eterm o [2001/10/08] docs/31131 doc build/install doc isn't /usr/obj prefix c o [2001/10/08] docs/31132 doc build/install www isn't /usr/obj prefix c o [2001/10/08] ports/31133 ports irc/xchat: dependence problem with x11/gn o [2001/10/08] conf/31134 /etc/rc doesn't allow you to specify a di o [2001/10/08] bin/31135 /bin/df reporting 'NaNB' as a Size. o [2001/10/08] ports/31137 ports Fix: ports/x11/xlockmore/Makefile uses in o [2001/10/08] ports/31138 ports New port o [2001/10/08] ports/31139 ports New port: security/nessus-devel o [2001/10/08] ports/31142 portmgr patch-libtool target in bsd.port.mk break 1778 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 13:22:17 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.tgd.net (rand.tgd.net [64.81.67.117]) by hub.freebsd.org (Postfix) with SMTP id 249BD37B408 for ; Mon, 8 Oct 2001 13:22:15 -0700 (PDT) Received: (qmail 34363 invoked by uid 1001); 8 Oct 2001 20:22:11 -0000 Date: Mon, 8 Oct 2001 13:22:11 -0700 From: Sean Chittenden To: Giorgos Keramidas Cc: freebsd-bugs@FreeBSD.ORG Subject: Re: conf/31134: /etc/rc doesn't allow you to specify a different sendmail daemon Message-ID: <20011008132210.A34324@rand.tgd.net> References: <200110081230.f98CU2D82798@freefall.freebsd.org> <20011008184157.A1900@hades.hell.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011008184157.A1900@hades.hell.gr>; from "charon@labs.gr" on Mon, Oct 08, 2001 at = 06:41:57PM X-PGP-Key: 0x1EDDFAAD X-PGP-Fingerprint: C665 A17F 9A56 286C 5CFB 1DEA 9F4F 5CEF 1EDD FAAD X-Web-Homepage: http://sean.chittenden.org/ Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > > > The sendmail.cf thing might be a real issue, but I've never seen any harm > > > in just leaving it there, and I've never actually removed it :) > > > > I'm confused as to why it'd be an issue to remove the sendmail.cf, but > > I'll have to take your word on it: sendmail hasn't been in my repretoir > > for quite some time. <:~) Thanks. -sc > > Ideally you would be able to just remove the file, but that would > require changes in rc.conf like: > > sendmail_require_cf="YES" > > and code in /etc/rc that only checks for sendmail.cf if the variable > sendmail_require_cf is set to YES. On the other hand, if it really > bugs you to have /etc/mail/sendmail.cf you can create it as an empty > file, and let /etc/rc fall through the existing check. How about I submit a more extensive patch set that checks the source tree and changes /etc/sendmail.cf to use the sendmail_enable variable. I'm not particularly fond of the idea of having program specific stuff hardwired into FreeBSD's boot process. Objections? -sc -- Sean Chittenden To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 15:50: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 57F5A37B40A for ; Mon, 8 Oct 2001 15:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f98Mo1C10860; Mon, 8 Oct 2001 15:50:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A0D737B401 for ; Mon, 8 Oct 2001 15:42:50 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f98Mgom09995; Mon, 8 Oct 2001 15:42:50 -0700 (PDT) (envelope-from nobody) Message-Id: <200110082242.f98Mgom09995@freefall.freebsd.org> Date: Mon, 8 Oct 2001 15:42:50 -0700 (PDT) From: Ivan Mikhnevich To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/31147: Kernel panics (double fault) in some "netinet" functions Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31147 >Category: kern >Synopsis: Kernel panics (double fault) in some "netinet" functions >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 08 15:50:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Ivan Mikhnevich >Release: 4.1-RELEASE >Organization: interVelopers >Environment: FreeBSD dbaol.com 4.1-RELEASE FreeBSD 4.1-RELEASE #2: Thu Mar 8 17:55:35 EET 2001 root@dbaol.com:/usr/src/sys/compile/DBAOL i386 >Description: The problem is in frequent kernel panic (fatal double fault). It occurs once a day in average. Since August 2001, there were no more than 3 days of server's uptime. Last week it happend in the following functions: 1) eip = 0xc01e829e c01e8298 T ip_output 2) eip = 0xc01f395e c01f3958 T fr_makefrip 3) eip = 0xc01f4424 c01f4424 T fr_check 4) eip = 0xc01ef94f c01ef94c T tcp_rtlookup >How-To-Repeat: 1) Kernel configuration is derived from GENERIC but: options IPFIREWALL options IPFIREWALL_FORWARD options IPFIREWALL_VERBOSE_LIMIT=100 options IPFIREWALL_DEFAULT_TO_ACCEPT options IPDIVERT options IPFILTER options IPFILTER_LOG options IPSTEALTH 2) /etc/firewall.rules add deny icmp from any to any frag add pass icmp from any to any add pass udp from any to any 53,161,514 add pass udp from any 53,161,514 to any add fwd 216.55.6.182,8080 tcp from any to 216.55.15.17 80 add fwd 216.55.6.182,25 tcp from any to any 2525 add pass tcp from any to any smtp,http,ftp,ftp\-data,pop3,https,telnet,ssh add pass tcp from any smtp,http,ftp,ftp\-data,pop3,https,telnet,ssh to any add pass tcp from any to any 2525,3128,3514,8080,40202 add pass tcp from any 2525,3128,3514,8080,40202 to any add pass all from any to any via lo0 add deny all from any to 127.0.0.0/8 add deny tcp from any to any 3306 via fxp0 add 65000 deny all from any to any 3) Hardware is: Celeron 733, 128Mb ECC SDRAM, i810E chipset, Intel Pro 10/100B/100+ Ethernet a couple of 30Gb IDE HDDs: IBM-DTLA-307030 4) The server was OK for about 6 months. Now it reboots almost everyday. Probably, it's a kind of specific traffic that nukes this server. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 18:17:39 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mrout2.yahoo.com (mrout2.yahoo.com [216.145.54.172]) by hub.freebsd.org (Postfix) with ESMTP id 8DAAD37B403; Mon, 8 Oct 2001 18:17:36 -0700 (PDT) Received: from yahoo-inc.com (zoot.corp.yahoo.com [216.145.52.89]) by mrout2.yahoo.com (8.11.6/8.11.6/y.out) with ESMTP id f991HR966620; Mon, 8 Oct 2001 18:17:27 -0700 (PDT) Message-ID: <3BC25027.D9909092@yahoo-inc.com> Date: Mon, 08 Oct 2001 18:17:27 -0700 From: Doug Barton X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD bugmaster Cc: FreeBSD bugs list Subject: Re: open PR's (mis)filed to gnats-admin and in limbo References: <200110081800.f98I02s54214@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Dima handled both of these, thanks. FreeBSD bugmaster wrote: > > Current FreeBSD problem reports > Critical problems > Serious problems > > S Submitted Tracker Resp. Description > ------------------------------------------------------------------------------- > o [2001/10/07] pending/31098gnats-adminRe: [MAINTAINER] ports/30920: Fix environ > > 1 problem total. > > Non-critical problems > > S Submitted Tracker Resp. Description > ------------------------------------------------------------------------------- > o [2001/10/07] pending/31104gnats-adminUpdate port: devel/doxygen 1.2.10_1 -> 1. > > 1 problem total. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message -- Doug Barton, Yahoo! DNS Administration and Development If you're never wrong, you're not trying hard enough. Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 18:50: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E07B037B406 for ; Mon, 8 Oct 2001 18:50:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f991o0h41592; Mon, 8 Oct 2001 18:50:00 -0700 (PDT) (envelope-from gnats) Received: from CRWdog.demon.co.uk (adsl-216-103-105-71.dsl.snfc21.pacbell.net [216.103.105.71]) by hub.freebsd.org (Postfix) with ESMTP id 579D537B405 for ; Mon, 8 Oct 2001 18:48:46 -0700 (PDT) Received: by CRWdog.demon.co.uk (Postfix, from userid 1001) id 2A7393E94; Mon, 8 Oct 2001 18:48:40 -0700 (PDT) Message-Id: <20011009014840.2A7393E94@CRWdog.demon.co.uk> Date: Mon, 8 Oct 2001 18:48:40 -0700 (PDT) From: Andy Sparrow Reply-To: Andy Sparrow To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/31149: New Intel disk controller chip ID 0x248a Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31149 >Category: kern >Synopsis: New Intel disk controller chip ID 0x248a >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 08 18:50:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Andy Sparrow >Release: FreeBSD 4.4-STABLE i386 >Organization: None >Environment: System: FreeBSD omni.geek4food.org 4.4-STABLE FreeBSD 4.4-STABLE #64: Sat Oct 6 17:16:06 CDT 2001 root@omni.geek4food.org:/usr/src/sys/compile/tureg i386 >Description: The (fairly new) HP Omnibook 6100 has an Intel UltraATA controller chip probed as vendor=0x8086 id=0x248a, which isn't included in the files 'ata-all.c' & 'ata-dma.c'. This causes it to get attached as a "Generic PCI ATA controller". Unfortunately, when attached thus, this device will subsequently fail to resume after a suspend: ad0: READ command timeout tag=0 serv=0 - resetting ata0: resetting devices . ata0: mask=01 ostat0-58 ostat2=00 ata0-master: ATAPI probe a=bd b=00 ata0-slave: ATAPI probe a=bd b=00 ata0: mask=01 status0=58 status1=58 ata0-master: ATA probe a=00 b=00 ata0: devices=00 done ad0s2a: hard error reading fsbn 51472 of 3056-3059 (ad0s2 bn 51472; cn 3 tn 97 sn 1) ata0-master: success setting PIO4 on generic chip ad0s2a: hard error reading fsbn 51472 of 3056-3059 (ad0s2 bn 51472; cn 3 tn 97 sn 1) status=51 error=04 ad0: DMA problem fallback to PIO mode spec_getpages:(#ad/0x30000) I/O read failure: (error=5) bp 0xc64b12d4 vp 0xcc045ec0 size: 2048, resid: 2048, a_count: 1891, valid: 0x0 nread: 0, reqpage: 0, pindex: 0, pcount: 1 pcic0: Event mask 0x9 stat 0x30000459 the drive is then completely dead, and you have to resort to the paperclip to reboot (because you can't load halt & friends)... >How-To-Repeat: Acquire an Omnibook 6100 (or other laptop with same chipset), install 4.4-STABLE, set up APM, suspend/resume. :) >Fix: Couldn't find any docs on Intel's web site, although chip id was listed on the PCI/Vendor device lists found at http://www.yourvote.com/pci (0where it is simply described as an "Intel UltraDMA controller"). I guessed that it was similar to the comparitively-recent ICH2 Mobile chipset (which also does UltraATA and seems to have similar capabilities), and duly applied the following trivial patch: --- sys/dev/ata/ata-all.c.orig Mon Oct 8 18:13:29 2001 +++ sys/dev/ata/ata-all.c Mon Oct 8 18:12:57 2001 @@ -261,6 +261,9 @@ case 0x24218086: return "Intel ICH0 ATA33 controller"; + case 0x248a8086: + return "Intel UltraATA controller"; + case 0x24118086: return "Intel ICH ATA66 controller"; --- sys/dev/ata/ata-dma.c.orig Mon Oct 8 18:13:45 2001 +++ sys/dev/ata/ata-dma.c Mon Oct 8 18:13:04 2001 @@ -111,6 +111,7 @@ switch (scp->chiptype) { + case 0x248a8086: /* Intel UltraATA mobile */ case 0x244a8086: /* Intel ICH2 mobile */ case 0x244b8086: /* Intel ICH2 */ if (udmamode >= 5) { Which works for me. Machine runs at least as well as before ('dmesg' now reports the drive as using UDMA100, rather than BIOSDMA), and the laptop now correctly resumes post-suspend. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 19:20: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E5FF37B407 for ; Mon, 8 Oct 2001 19:20:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f992K5X47373; Mon, 8 Oct 2001 19:20:05 -0700 (PDT) (envelope-from gnats) Date: Mon, 8 Oct 2001 19:20:05 -0700 (PDT) Message-Id: <200110090220.f992K5X47373@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: tburgess@whitley.unimelb.edu.au Subject: Re: kern/31130: ipfw tee functionality causes malfunction and security hole Reply-To: tburgess@whitley.unimelb.edu.au Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/31130; it has been noted by GNATS. From: tburgess@whitley.unimelb.edu.au To: cristjc@earthlink.net, tburgess@whitley.unimelb.edu.au Cc: freebsd-gnats-submit@FreeBSD.ORG, tburgess-sent@whitley.unimelb.edu.au Subject: Re: kern/31130: ipfw tee functionality causes malfunction and security hole Date: Tue, 9 Oct 2001 12:15:52 +1000 (EST) OK, sorry for the cloudy explanation. Yeah ipfw says the packet is accepted. But what i mean is: We have a machine with interfaces 203.5.71.6, 10.0.0.1 and others. It forwards packets between the inside network and outside network, through natd. It also runs a webserver, squid proxy etc. if 10.0.1.53 (me) tries to access a webpage, say 64.1.2.3:80. The packet actually gets accepted by the apache server on the gateway machine!! So the packet is 'accepted' but not in the normal sense of the firewall 'accepting' the packet. It's original destination is just completely ignored. The daemon listening on 8665 is a traffic accounting program I have written. It does not inject any packets back into the socket. In fact, the behaviour is reproducible even when the userspace program is not running (ie the packets from the tee are getting blackholed). Hope this helps to clarify things... I'll see if I can get a tcpdump of the behaviour in a few days. Since it's a relatively important machine, I'll have to set up the firewall rules to only create the problem for me and then do it. Thanks for your help, Tim ---- Original Message ---- From: Crist J. Clark Date: Mon 10/8/01 20:24 To: Tim Burgess Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/31130: ipfw tee functionality causes malfunction and security hole On Mon, Oct 08, 2001 at 02:14:18AM -0700, Tim Burgess wrote: [snip] > >Description: > It looks to me like using the ipfw 'tee' function on incoming packets actually accepts the packets as destined for the localhost. Hence a rule such as: > > 600 tee 8665 ip from any to any in > > Means that anyone browsing the web on the subnet behind the gateway sees the gateway machine's webserver no matter which url they enter. www.hotmail.com/wi actually goes to www.whitley.unimelb.edu.au/wi ! I am not sure what you are saying here. The fact that the original packet is accepted is clearly documented in ipfw(8). Not ideal behavior, but documented behavior. As for this issue where you believe that you have redirected packets, what is listening on 8665/divert? Can we see a tcpdump(8) of this behavior? -- Crist J. Clark cjclark@alum.mit.edu cjclark@jhu.edu cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Oct 8 19:30: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B4E1B37B403 for ; Mon, 8 Oct 2001 19:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f992U1648451; Mon, 8 Oct 2001 19:30:01 -0700 (PDT) (envelope-from gnats) Date: Mon, 8 Oct 2001 19:30:01 -0700 (PDT) Message-Id: <200110090230.f992U1648451@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: tburgess@whitley.unimelb.edu.au Subject: Re: kern/31130: ipfw tee functionality causes malfunction and security hole Reply-To: tburgess@whitley.unimelb.edu.au Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/31130; it has been noted by GNATS. From: tburgess@whitley.unimelb.edu.au To: cristjc@earthlink.net, tburgess-sent@whitley.unimelb.edu.au Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/31130: ipfw tee functionality causes malfunction and security hole Date: Tue, 9 Oct 2001 12:21:49 +1000 (EST) If it helps, this appears to be a more complicated description of the same problem, a long time ago. http://docs.freebsd.org/cgi/getmsg.cgi? fetch=86560+0+archive/2000/freebsd-hackers/20000409.freebsd-hackers Kind regards, Tim ---- Original Message ---- From: Crist J. Clark Date: Mon 10/8/01 20:24 To: Tim Burgess Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: kern/31130: ipfw tee functionality causes malfunction and security hole On Mon, Oct 08, 2001 at 02:14:18AM -0700, Tim Burgess wrote: [snip] > >Description: > It looks to me like using the ipfw 'tee' function on incoming packets actually accepts the packets as destined for the localhost. Hence a rule such as: > > 600 tee 8665 ip from any to any in > > Means that anyone browsing the web on the subnet behind the gateway sees the gateway machine's webserver no matter which url they enter. www.hotmail.com/wi actually goes to www.whitley.unimelb.edu.au/wi ! I am not sure what you are saying here. The fact that the original packet is accepted is clearly documented in ipfw(8). Not ideal behavior, but documented behavior. As for this issue where you believe that you have redirected packets, what is listening on 8665/divert? Can we see a tcpdump(8) of this behavior? -- Crist J. Clark cjclark@alum.mit.edu cjclark@jhu.edu cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 1:10: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BCFF37B409 for ; Tue, 9 Oct 2001 01:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f998A1n06889; Tue, 9 Oct 2001 01:10:01 -0700 (PDT) (envelope-from gnats) Received: from abovenet.chime.com (abovenet.chime.com [216.200.125.135]) by hub.freebsd.org (Postfix) with ESMTP id 53DCE37B401 for ; Tue, 9 Oct 2001 01:03:07 -0700 (PDT) Received: (from falcon@localhost) by abovenet.chime.com (8.11.6/8.11.6) id f99837F39888; Tue, 9 Oct 2001 01:03:07 -0700 (PDT) (envelope-from falcon) Message-Id: <200110090803.f99837F39888@abovenet.chime.com> Date: Tue, 9 Oct 2001 01:03:07 -0700 (PDT) From: "jon r. luini" Reply-To: "jon r. luini" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/31156: uuencode should pad with nulls instead of random garbage Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31156 >Category: bin >Synopsis: uuencode should pad with nulls instead of random garbage >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 09 01:10:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: jon r. luini >Release: FreeBSD 4.4-RELEASE i386 >Organization: chime interactive >Environment: System: FreeBSD abovenet.chime.com 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Fri Sep 21 01:25:55 PDT 2001 falcon@newbie.chime.com:/usr/obj/usr/src/sys/CHIME i386 >Description: when uuencode's input is not a multiple of 4, garbage is used to pad it out, according to the doc. it's much more useful to pad with nulls since it provides consistent output when compared against another implementation. >How-To-Repeat: write your own version of uuencode which doesn't use un-initialized data and compare the output of both on an input data which isn't a multiple of 4 bytes in length. >Fix: clear the buffer before reading into it each iteration of the loop, or if you prefer, manually assign nulls only when necessary. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 2:20: 4 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9AB6437B403 for ; Tue, 9 Oct 2001 02:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f999K2X17814; Tue, 9 Oct 2001 02:20:02 -0700 (PDT) (envelope-from gnats) Date: Tue, 9 Oct 2001 02:20:02 -0700 (PDT) Message-Id: <200110090920.f999K2X17814@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: kern/31130: ipfw tee functionality causes malfunction and security hole Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/31130; it has been noted by GNATS. From: "Crist J. Clark" To: tburgess@whitley.unimelb.edu.au Cc: freebsd-gnats-submit@FreeBSD.ORG, tburgess-sent@whitley.unimelb.edu.au Subject: Re: kern/31130: ipfw tee functionality causes malfunction and security hole Date: Tue, 9 Oct 2001 02:14:17 -0700 Yep. I can easily replicate this. If I ping a box with, 01000 tee 2222 icmp from any to any I see, 01:22:38.769793 0:c0:f0:5a:6c:a 0:90:27:13:25:40 0800 98: 192.168.64.60 > 172.16.0.1: icmp: echo request 01:22:38.770281 0:90:27:13:25:40 0:c0:f0:5a:6c:a 0800 98: 192.168.64.30 > 192.168.64.60: icmp: echo reply 01:22:39.776983 0:c0:f0:5a:6c:a 0:90:27:13:25:40 0800 98: 192.168.64.60 > 172.16.0.1: icmp: echo request 01:22:39.777441 0:90:27:13:25:40 0:c0:f0:5a:6c:a 0800 98: 192.168.64.30 > 192.168.64.60: icmp: echo reply . . . On the wire and the packets never get routed to the "real" 172.16.0.1. Trying to figure out if, a) This is the expected behavior, but is poorly documented, or b) Something is broken. I'm thinking (b), but still wading through src/sys/netinet to verify. -- Crist J. Clark cjclark@alum.mit.edu cjclark@jhu.edu cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 4: 6:43 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 76D8937B408; Tue, 9 Oct 2001 04:06:41 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f99B6a142343; Tue, 9 Oct 2001 04:06:36 -0700 (PDT) (envelope-from ru) Date: Tue, 9 Oct 2001 04:06:36 -0700 (PDT) From: Message-Id: <200110091106.f99B6a142343@freefall.freebsd.org> To: falcon@chime.com, ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, ru@FreeBSD.org Subject: Re: bin/31156: uuencode should pad with nulls instead of random garbage Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: uuencode should pad with nulls instead of random garbage State-Changed-From-To: open->closed State-Changed-By: ru State-Changed-When: Tue Oct 9 04:05:49 PDT 2001 State-Changed-Why: Fixed in uuencode/uuencode.c,v 1.7 and uuencode/uuencode.format.5,v 1.12. Responsible-Changed-From-To: freebsd-bugs->ru Responsible-Changed-By: ru Responsible-Changed-When: Tue Oct 9 04:05:49 PDT 2001 Responsible-Changed-Why: http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31156 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 4: 8:23 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 0547537B40B for ; Tue, 9 Oct 2001 04:08:16 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id f99B7ea48252; Tue, 9 Oct 2001 14:07:40 +0300 (EEST) (envelope-from ru) Date: Tue, 9 Oct 2001 14:07:40 +0300 From: Ruslan Ermilov To: falcon@chime.com, freebsd-bugs@FreeBSD.ORG Subject: Re: bin/31156: uuencode should pad with nulls instead of random garbage Message-ID: <20011009140740.B10753@sunbay.com> References: <200110091106.f99B6a142343@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200110091106.f99B6a142343@freefall.freebsd.org>; from ru@FreeBSD.ORG on Tue, Oct 09, 2001 at 04:06:36AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org MFC after 1 week. On Tue, Oct 09, 2001 at 04:06:36AM -0700, ru@FreeBSD.ORG wrote: > Synopsis: uuencode should pad with nulls instead of random garbage > > State-Changed-From-To: open->closed > State-Changed-By: ru > State-Changed-When: Tue Oct 9 04:05:49 PDT 2001 > State-Changed-Why: > Fixed in uuencode/uuencode.c,v 1.7 and uuencode/uuencode.format.5,v 1.12. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 8:10: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC8E637B40A for ; Tue, 9 Oct 2001 08:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f99FA1q07122; Tue, 9 Oct 2001 08:10:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D6C337B403 for ; Tue, 9 Oct 2001 08:08:13 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f99F8DP06881; Tue, 9 Oct 2001 08:08:13 -0700 (PDT) (envelope-from nobody) Message-Id: <200110091508.f99F8DP06881@freefall.freebsd.org> Date: Tue, 9 Oct 2001 08:08:13 -0700 (PDT) From: ulrich To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: gnu/31165: bash core dumps if a function called by PROMPT_COMMAND generates an error Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31165 >Category: gnu >Synopsis: bash core dumps if a function called by PROMPT_COMMAND generates an error >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 09 08:10:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: ulrich >Release: 4.1 >Organization: >Environment: FreeBSD mozart.infopuls.com 4.1-RELEASE FreeBSD 4.1-RELEASE #0: Fri Sep 8 02:29:03 CEST 2000 root@fbsdi1.infopuls.com:/usr/src/sys/compile/FBSD i386 >Description: If a shell function which is called by PROMPT_COMMAND returns a non-numeric value and generates an error message bush produces a core dump. >How-To-Repeat: put the following statements into a script test.bash: function showdate(){ return `date -j "+%a%Y-%b-%d"`; } showdate PROMPT_COMMAND=test_prompt_command.bash With the next prompt invocation the error message appears and the message about the core dump that is to be produced >Fix: :-( >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 9:16: 7 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from blaubaer.kn-bremen.de (blaubaer.kn-bremen.de [195.37.179.254]) by hub.freebsd.org (Postfix) with ESMTP id 66B0B37B401; Tue, 9 Oct 2001 09:16:03 -0700 (PDT) Received: from saturn.UUCP (uucp@localhost) by blaubaer.kn-bremen.de (8.9.1/8.9.1) with UUCP id IAA23887; Thu, 7 Feb 2036 08:17:44 +0100 Received: (from nox@localhost) by saturn (8.11.4/8.8.5) id f99GCY369476; Tue, 9 Oct 2001 18:12:34 +0200 (CEST) From: Juergen Lock Date: Tue, 9 Oct 2001 18:12:34 +0200 To: mjacob@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/11945: tape problems on -stable, mt bl(ocksize), mt erase and hanging SCSI bus Message-ID: <20011009181234.A69300@saturn.kn-bremen.de> References: <200110020528.f925Sgq16795@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i In-Reply-To: <200110020528.f925Sgq16795@freefall.freebsd.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Oct 01, 2001 at 10:28:42PM -0700, mjacob@FreeBSD.org wrote: > Synopsis: tape problems on -stable, mt bl(ocksize), mt erase and hanging SCSI bus > > State-Changed-From-To: open->feedback > State-Changed-By: mjacob > State-Changed-When: Mon Oct 1 22:28:03 PDT 2001 > State-Changed-Why: > Feedback needed- is this still broken for you in a more recent release? Sorry my tape drive has died... Will check this once i got it fixed/replaced (this can take a while). Regards, Juergen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 9:30: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 13D1F37B406 for ; Tue, 9 Oct 2001 09:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f99GU1S21023; Tue, 9 Oct 2001 09:30:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C6B1737B407 for ; Tue, 9 Oct 2001 09:25:16 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f99GPGb20474; Tue, 9 Oct 2001 09:25:16 -0700 (PDT) (envelope-from nobody) Message-Id: <200110091625.f99GPGb20474@freefall.freebsd.org> Date: Tue, 9 Oct 2001 09:25:16 -0700 (PDT) From: Brad Laue To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/31166: smbfs.ko module loads when compiled in, causes panic Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31166 >Category: kern >Synopsis: smbfs.ko module loads when compiled in, causes panic >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 09 09:30:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Brad Laue >Release: 4.4-STABLE >Organization: brad-x.com >Environment: FreeBSD Odyssey.brad-x.com 4.4-STABLE FreeBSD 4.4-STABLE #0: Sun Oct 7 00:39:55 EDT 2001 root@Odyssey.brad-x.com:/usr/src/sys/compile/HAVEN i386 >Description: If the following are compiled into the kernel: options NETSMB #SMB/CIFS requester options NETSMBCRYPTO #encrypted password support for SMB # mchain library. It can be either loaded as KLD or compiled into kernel options LIBMCHAIN #mbuf management library options LIBICONV mount_smbfs will load smbfs.ko, and any attempt to unload this module will panic the system with a fatal trap If this is added: options SMBFS It is possible to load the smbfs.ko module anyway, generating seven lines worth of error messaging reading like so: module_register: module dev_netsmb already exists! linker_file_sysinit: "smbfs.ko" failed to register! 17 module_register: module smbfs already exists! linker_file_sysinit: "smbfs.ko" failed to register! 17 WARNING: "nsmb" is usurping "nsmb"'s cdevsw[] netsmb_dev: loaded module_register_init: MOD_LOAD (smbfs, c016ebfc, 0xc3c46b00) error 17 kldstat shows smbfs.ko loaded. kldunload smbfs.ko will now crash the system. >How-To-Repeat: 1) Add the following to a kernel: options NETSMB #SMB/CIFS requester options NETSMBCRYPTO #encrypted password support for SMB # mchain library. It can be either loaded as KLD or compiled into kernel options LIBMCHAIN #mbuf management library options LIBICONV reboot, mount a windows share, and attempt to unload the smbfs.ko module. Panic is immediate 2) Add "options SMBFS", and recompile; reboot kldload smbfs.ko, kldunload smbfs.ko, panic is immediate. >Fix: The best workaround is not to ever attempt unloading the smbfs.ko module, and to include SMBFS in the kernel itself. This is not however a fix. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 12:10: 4 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 137D437B409 for ; Tue, 9 Oct 2001 12:10:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f99JA3j49880; Tue, 9 Oct 2001 12:10:03 -0700 (PDT) (envelope-from gnats) Date: Tue, 9 Oct 2001 12:10:03 -0700 (PDT) Message-Id: <200110091910.f99JA3j49880@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Maxime Henrion Subject: Re: conf/30596: Patch to specify a different directory to savecore Reply-To: Maxime Henrion Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/30596; it has been noted by GNATS. From: Maxime Henrion To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: conf/30596: Patch to specify a different directory to savecore Date: Tue, 9 Oct 2001 21:09:51 +0200 Not much, it's just cleaner IMO. Anyway, des just committed a similar patch, so this PR should be closed, I guess. Thanks, Maxime To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 12:50: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B47F37B40B for ; Tue, 9 Oct 2001 12:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f99Jo1E53944; Tue, 9 Oct 2001 12:50:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B8CDA37B408 for ; Tue, 9 Oct 2001 12:45:13 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f99JjD453492; Tue, 9 Oct 2001 12:45:13 -0700 (PDT) (envelope-from nobody) Message-Id: <200110091945.f99JjD453492@freefall.freebsd.org> Date: Tue, 9 Oct 2001 12:45:13 -0700 (PDT) From: David Hare To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/31175: 4.4 wikk not detect ethernet cards on HP Pavillion xe749 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31175 >Category: misc >Synopsis: 4.4 wikk not detect ethernet cards on HP Pavillion xe749 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 09 12:50:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: David Hare >Release: 4.4 >Organization: Grateful Guns >Environment: generic i-386 >Description: I installed 4.4 on my hp xe749 containing a 3com ethernet card that att broadband recognizes. At the configure ethernet dialog, the card was not detected. I took the pci card put in an old packard bell installed 4.4 from same disc and the card was recognized and dhcp worked and am connected. >How-To-Repeat: Get a xe740 install 4.4 and see if ethernet cards are detected >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 13:10:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A753637B40B for ; Tue, 9 Oct 2001 13:10:07 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f99KA7L59244; Tue, 9 Oct 2001 13:10:07 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D631437B408 for ; Tue, 9 Oct 2001 13:05:06 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f99K56555847; Tue, 9 Oct 2001 13:05:06 -0700 (PDT) (envelope-from nobody) Message-Id: <200110092005.f99K56555847@freefall.freebsd.org> Date: Tue, 9 Oct 2001 13:05:06 -0700 (PDT) From: Gregor Jasny To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/31177: FreeBSD 4.4 mkfs on install failed (virtual timer expired) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31177 >Category: i386 >Synopsis: FreeBSD 4.4 mkfs on install failed (virtual timer expired) >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 09 13:10:02 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Gregor Jasny >Release: 4.4 >Organization: >Environment: N/A i686 P3 on Asus P2B-F (iBX-chipset) >Description: If I format my 19GB Partition during the installation-process, mkfs breaks with sig 29 (virtual timer expired) >How-To-Repeat: just reinstall from 4.4er ISO's >Fix: Boot with 4.3 and ignore the warning. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 17:27:51 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 05A7E37B407; Tue, 9 Oct 2001 17:27:49 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A0M0g99707; Tue, 9 Oct 2001 17:22:00 -0700 (PDT) (envelope-from des) Date: Tue, 9 Oct 2001 17:22:00 -0700 (PDT) From: Message-Id: <200110100022.f9A0M0g99707@freefall.freebsd.org> To: mux@qualys.com, des@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/30596: Patch to specify a different directory to savecore Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Patch to specify a different directory to savecore State-Changed-From-To: open->feedback State-Changed-By: des State-Changed-When: Tue Oct 9 17:20:54 PDT 2001 State-Changed-Why: Similar patch committed to -CURRENT, awaiting MFC. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=30596 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 17:27:51 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C717137B403; Tue, 9 Oct 2001 17:27:48 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A0MXd99823; Tue, 9 Oct 2001 17:22:33 -0700 (PDT) (envelope-from des) Date: Tue, 9 Oct 2001 17:22:33 -0700 (PDT) From: Message-Id: <200110100022.f9A0MXd99823@freefall.freebsd.org> To: des@FreeBSD.org, freebsd-bugs@FreeBSD.org, des@FreeBSD.org Subject: Re: conf/30596: Patch to specify a different directory to savecore Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Patch to specify a different directory to savecore Responsible-Changed-From-To: freebsd-bugs->des Responsible-Changed-By: des Responsible-Changed-When: Tue Oct 9 17:22:05 PDT 2001 Responsible-Changed-Why: So I remember to MFC. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=30596 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 18:37:51 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D6EA37B403; Tue, 9 Oct 2001 18:37:49 -0700 (PDT) Received: (from chern@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A1SDu14499; Tue, 9 Oct 2001 18:28:13 -0700 (PDT) (envelope-from chern) Date: Tue, 9 Oct 2001 18:28:13 -0700 (PDT) From: Message-Id: <200110100128.f9A1SDu14499@freefall.freebsd.org> To: dimitri@hinttech.com, chern@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/30913: fingerd(8) execv failure due to missing argv termination (patch) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: fingerd(8) execv failure due to missing argv termination (patch) State-Changed-From-To: open->closed State-Changed-By: chern State-Changed-When: Tue Oct 9 18:26:30 PDT 2001 State-Changed-Why: ru has applied your patch--fingerd.c v1.18 no longer suffers from this problem. Thanks! http://www.FreeBSD.org/cgi/query-pr.cgi?pr=30913 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Oct 9 18:47:50 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EBA7F37B405; Tue, 9 Oct 2001 18:47:48 -0700 (PDT) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A1cn915406; Tue, 9 Oct 2001 18:38:49 -0700 (PDT) (envelope-from dougb) Date: Tue, 9 Oct 2001 18:38:49 -0700 (PDT) From: Message-Id: <200110100138.f9A1cn915406@freefall.freebsd.org> To: dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: kern/31149: New Intel disk controller chip ID 0x248a Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: New Intel disk controller chip ID 0x248a Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: dougb Responsible-Changed-When: Tue Oct 9 18:38:27 PDT 2001 Responsible-Changed-Why: Over to Mr. ATA http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31149 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 0: 0:14 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88AA937B407 for ; Wed, 10 Oct 2001 00:00:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A704e62774; Wed, 10 Oct 2001 00:00:04 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 00:00:04 -0700 (PDT) Message-Id: <200110100700.f9A704e62774@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: misc/31175: 4.4 wikk not detect ethernet cards on HP Pavillion xe749 Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/31175; it has been noted by GNATS. From: Peter Pentchev To: David Hare Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/31175: 4.4 wikk not detect ethernet cards on HP Pavillion xe749 Date: Wed, 10 Oct 2001 09:55:02 +0300 On Tue, Oct 09, 2001 at 12:45:13PM -0700, David Hare wrote: > > >Number: 31175 > >Category: misc > >Synopsis: 4.4 wikk not detect ethernet cards on HP Pavillion xe749 > >Originator: David Hare > >Release: 4.4 > >Organization: > Grateful Guns > >Environment: > generic i-386 > >Description: > I installed 4.4 on my hp xe749 containing a 3com ethernet card that att broadband recognizes. At the configure ethernet dialog, the card was not detected. I took the pci card put in an old packard bell > installed 4.4 from same disc and the card was recognized and dhcp worked and am connected. > >How-To-Repeat: > Get a xe740 install 4.4 and see if ethernet cards are detected It would help a *lot* if you would tell us exactly which of 3Com's Ethernet NIC's are you using. Many people use 4.4 with many different Ethernet cards. G'luck, Peter -- No language can express every thought unambiguously, least of all this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 0: 0:22 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from NewWB.workbench.net (ns1.workbench.net [207.158.155.129]) by hub.freebsd.org (Postfix) with ESMTP id 94BF937B409; Wed, 10 Oct 2001 00:00:06 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by NewWB.workbench.net (8.11.3/8.11.3) with ESMTP id f989Ugu05059; Mon, 8 Oct 2001 05:30:42 -0400 (EDT) Date: Mon, 8 Oct 2001 05:30:36 -0400 (EDT) From: Paul Timmins Reply-To: paul@timmins.net To: roam@FreeBSD.org Cc: freebsd-bugs@FreeBSD.org Subject: Re: bin/31129: libncurses broken... In-Reply-To: <200110080919.f989JMv39723@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org My apologies, please close this PR. :-) -Paul On Mon, 8 Oct 2001 roam@FreeBSD.org wrote: > Date: Mon, 8 Oct 2001 02:19:22 -0700 (PDT) > From: roam@FreeBSD.org > To: paul@timmins.net, roam@FreeBSD.org, freebsd-bugs@FreeBSD.org > Subject: Re: bin/31129: libncurses broken... > > Synopsis: libncurses broken... > > State-Changed-From-To: open->feedback > State-Changed-By: roam > State-Changed-When: Mon Oct 8 02:18:19 PDT 2001 > State-Changed-Why: > Have you built the 4.x compatibility libraries, as the src/UPDATING > file strongly suggests? > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31129 > Paul Timmins paul@timmins.net http://www.timmins.net/ Home: 248-858-7526 Pager: 248-333-9113 "By definition, if you don't stand up for anything, you stand for nothing." ---Paul Timmins To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 0:37:51 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8352337B401; Wed, 10 Oct 2001 00:37:49 -0700 (PDT) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A7WRQ69561; Wed, 10 Oct 2001 00:32:27 -0700 (PDT) (envelope-from dougb) Date: Wed, 10 Oct 2001 00:32:27 -0700 (PDT) From: Message-Id: <200110100732.f9A7WRQ69561@freefall.freebsd.org> To: sean-freebsd-gnats@chittenden.org, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/31134: /etc/rc doesn't allow you to specify a different sendmail daemon Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: /etc/rc doesn't allow you to specify a different sendmail daemon State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Wed Oct 10 00:30:43 PDT 2001 State-Changed-Why: As discussed, /etc/mail/mailer.conf provides this mechanism already. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31134 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 0:50: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF6AE37B405 for ; Wed, 10 Oct 2001 00:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A7o1571974; Wed, 10 Oct 2001 00:50:01 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 00:50:01 -0700 (PDT) Message-Id: <200110100750.f9A7o1571974@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Yar Tikhiy" Subject: Re: bin/29966: cleanup of ppp server socket on unclean startup Reply-To: "Yar Tikhiy" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/29966; it has been noted by GNATS. From: "Yar Tikhiy" To: , Cc: Subject: Re: bin/29966: cleanup of ppp server socket on unclean startup Date: Wed, 10 Oct 2001 11:43:31 +0400 /var/run is cleaned now, so please put all files that must be removed at the boot time there. It won't be sensible to have an rc.conf knob for every such case. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 1:30: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 666AA37B409 for ; Wed, 10 Oct 2001 01:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A8U1a80452; Wed, 10 Oct 2001 01:30:01 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 01:30:01 -0700 (PDT) Message-Id: <200110100830.f9A8U1a80452@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: bin/31135: /bin/df reporting 'NaNB' as a Size. Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/31135; it has been noted by GNATS. From: "Crist J. Clark" To: Joe Karthauser Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/31135: /bin/df reporting 'NaNB' as a Size. Date: Wed, 10 Oct 2001 01:23:50 -0700 On Mon, Oct 08, 2001 at 01:06:27PM +0100, Joe Karthauser wrote: > >Description: > I've just had the strangest output from 'df': > > % while test /tmp; do df -h /data; sleep 5; done > [cut] > Filesystem Size Used Avail Capacity Mounted on > /dev/ad0s2h 10G 9.5G 72M 99% /data > Filesystem Size Used Avail Capacity Mounted on > /dev/ad0s2h NaNB 9.5G 69M 99% /data > ^^^^ > Filesystem Size Used Avail Capacity Mounted on > /dev/ad0s2h 10G 9.5G 72M 99% /data > [cut] Can you reproduce this? Looking through src/bin/df/df.c, I can't see what type of exceptional condition could sneak through. There are some checks for "impossible" conditions. It's hard to see how the 'size' can be messed up and yet the 'used' is OK since 'size' is used to calculate 'used.' And obviously, the size of your file system is not changing between df(1) runs. -- Crist J. Clark cjclark@alum.mit.edu cjclark@jhu.edu cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 1:40: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E88737B406 for ; Wed, 10 Oct 2001 01:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A8e1A81539; Wed, 10 Oct 2001 01:40:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B0E8837B403 for ; Wed, 10 Oct 2001 01:30:40 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A8UeY80531; Wed, 10 Oct 2001 01:30:40 -0700 (PDT) (envelope-from nobody) Message-Id: <200110100830.f9A8UeY80531@freefall.freebsd.org> Date: Wed, 10 Oct 2001 01:30:40 -0700 (PDT) From: "Serg O. Malakhov" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/31190: Program, like top, is used libkvm doesn't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31190 >Category: bin >Synopsis: Program, like top, is used libkvm doesn't work >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 10 01:40:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Serg O. Malakhov >Release: 4.4 Stable >Organization: Servocomp Inc. >Environment: FreeBSD camel.servocomp.ru 4.3-RELEASE FreeBSD 4.4-RELEASE #0: Wed Sep 26 15:34:56 MSD 2001 root@camel.servocomp.ru:/usr/src/sys/compile/SERG i386 >Description: After upgrade system to 4.4 and nothing else, program like top and systat repot error "nlist failed" In kdump we can see the messeges: CALL kldsym(0,0x1,0xbfbff834) RET kldsym -1 errno 2 No such file or directory >How-To-Repeat: make cvsup for src and build kernel and all sources, reboot, and just type after login top >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 1:50: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AD7D37B407 for ; Wed, 10 Oct 2001 01:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A8o1V82915; Wed, 10 Oct 2001 01:50:01 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 01:50:01 -0700 (PDT) Message-Id: <200110100850.f9A8o1V82915@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/31190: Program, like top, is used libkvm doesn't work Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/31190; it has been noted by GNATS. From: Peter Pentchev To: "Serg O. Malakhov" Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/31190: Program, like top, is used libkvm doesn't work Date: Wed, 10 Oct 2001 11:44:00 +0300 On Wed, Oct 10, 2001 at 01:30:40AM -0700, Serg O. Malakhov wrote: > > >Number: 31190 > >Category: bin > >Synopsis: Program, like top, is used libkvm doesn't work > >Originator: Serg O. Malakhov > >Release: 4.4 Stable > >Organization: > Servocomp Inc. > >Environment: > FreeBSD camel.servocomp.ru 4.3-RELEASE FreeBSD 4.4-RELEASE #0: Wed Sep 26 15:34:56 MSD 2001 > root@camel.servocomp.ru:/usr/src/sys/compile/SERG i386 > >Description: > After upgrade system to 4.4 and nothing else, program like top and systat > repot error "nlist failed" > In kdump we can see the messeges: > CALL kldsym(0,0x1,0xbfbff834) > RET kldsym -1 errno 2 No such file or directory > > >How-To-Repeat: > make cvsup for src and build kernel and all sources, reboot, and just type after login top What were the exact commands you used to 'build kernel and all sources'? Did you run 'make world', or did you use 'make buildworld buildkernel'? If you did it the 'buildworld' way, did you run both 'make installkernel' and 'make installworld' afterwards? What is the output of 'ls -l /usr/bin/top'? G'luck, Peter -- Thit sentence is not self-referential because "thit" is not a word. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 2:10: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2749137B408 for ; Wed, 10 Oct 2001 02:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A9A2187857; Wed, 10 Oct 2001 02:10:02 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 02:10:02 -0700 (PDT) Message-Id: <200110100910.f9A9A2187857@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/31190: Program, like top, is used libkvm doesn't work Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/31190; it has been noted by GNATS. From: Peter Pentchev To: Serg Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/31190: Program, like top, is used libkvm doesn't work Date: Wed, 10 Oct 2001 12:02:47 +0300 On Wed, Oct 10, 2001 at 12:52:00PM +0400, Serg wrote: > Peter Pentchev wrote: > > >On Wed, Oct 10, 2001 at 01:30:40AM -0700, Serg O. Malakhov wrote: > >>>Environment: > >>> > >>FreeBSD camel.servocomp.ru 4.3-RELEASE FreeBSD 4.4-RELEASE #0: Wed Sep 26 15:34:56 MSD 2001 [snip] > >>make cvsup for src and build kernel and all sources, reboot, and just type after login top > >> > > > >What were the exact commands you used to 'build kernel and all sources'? > >Did you run 'make world', or did you use 'make buildworld buildkernel'? > >If you did it the 'buildworld' way, did you run both 'make installkernel' > >and 'make installworld' afterwards? > > > Sure > > > > > > >What is the output of 'ls -l /usr/bin/top'? > > > -r-xr-sr-x 1 root kmem 32456 9 okt 21:36 /usr/bin/top OK, now for a really stupid question: are you sure you are running your newly compiled kernel? What does 'uname -a' say? If it says the same as in your PR (quoted above, saying 4.4-RELEASE #0 Sep 26), you are *not* running your compiled kernel, but the default 4.4-RELEASE kernel. G'luck, Peter -- This sentence is false. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 2:34: 1 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.auriga.ru (mail.auriga.ru [213.24.253.102]) by hub.freebsd.org (Postfix) with ESMTP id AFFA937B407 for ; Wed, 10 Oct 2001 02:33:55 -0700 (PDT) Received: from vagabond.auriga.ru ([213.24.253.246]) by mail.auriga.ru with smtp (Exim 3.14 #1) id 15rFpv-0003Kt-00; Wed, 10 Oct 2001 13:39:35 +0400 Content-Type: text/plain; charset="koi8-r" From: Alexey V.Neyman To: Peter Pentchev , Serg Subject: Fwd: Re: bin/31190: Program, like top, is used libkvm doesn't work Date: Wed, 10 Oct 2001 13:33:39 +0400 X-Mailer: KMail [version 1.2] Cc: freebsd-bugs@freebsd.org MIME-Version: 1.0 Message-Id: <01101013333904.29652@vagabond.auriga.ru> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Submitter reports this was due to direct /kernel booting instead of /boot/loader. - ---------- Forwarded Message ---------- Subject: Re: bin/31190: Program, like top, is used libkvm doesn't work Date: Wed, 10 Oct 2001 13:21:00 +0400 From: Serg To: "Alexey V. Neyman" Alexey V. Neyman wrote: >I encountered this when I started the kernel directly, bypassing the loader. >(I used /boot.config file to do this). Since I switched back to starting >/boot/loader instead of /kernel, top & family works fine. > >Does it work for you? YES! Thank you, very much. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE7xBXz9lSeDZjilyARAoaoAJ43ogwsOkWaoCsNa9vcZrjJkGBZxQCgrm6o peAGjPiENRFsRpdAuGippmk= =BzQ7 -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 2:40:12 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0496E37B407 for ; Wed, 10 Oct 2001 02:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A9e1e91417; Wed, 10 Oct 2001 02:40:01 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 02:40:01 -0700 (PDT) Message-Id: <200110100940.f9A9e1e91417@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Crist J. Clark" Subject: Re: kern/31130: ipfw tee functionality causes malfunction and security hole Reply-To: "Crist J. Clark" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/31130; it has been noted by GNATS. From: "Crist J. Clark" To: Tim Burgess Cc: freebsd-gnats-submit@FreeBSD.ORG, freebsd-net@FreeBSD.ORG Subject: Re: kern/31130: ipfw tee functionality causes malfunction and security hole Date: Wed, 10 Oct 2001 02:35:47 -0700 On Tue, Oct 09, 2001 at 02:20:02AM -0700, Crist J. Clark wrote: [snip] > On the wire and the packets never get routed to the "real" 172.16.0.1. > Trying to figure out if, > > a) This is the expected behavior, but is poorly documented, or > b) Something is broken. > > I'm thinking (b), but still wading through src/sys/netinet to verify. Well, I see why this happens, but still not sure if it is supposed to happen. If we look at src/sys/netinet/ip_input.c, we see that all diverted or teed packets are accepted by the host as destined for itself, #ifdef IPDIVERT if (i != 0 && (i & IP_FW_PORT_DYNT_FLAG) == 0) { /* Divert or tee packet */ divert_info = i; goto ours; } #endif The packets are clearly going to be processed by the gateway. You seem to have already found this in the code snipped in your original PR, but I didn't notice your change. Please post changes to code as unified diffs. I now understand the 'fix' you were talking about. Have you actually built a kernel with your modifications? Does it seem to work? But packets _leaving_ the system seem to be processed as one would expect. That is, a copy is divert(4)ed and then the packet heads out onto to the wire. This apparent inconsistency is a bug since it is either unintended behavior or at least undocumented behavior. But the inconsistency gives you a temporary workaround. Instead of, 600 tee 8665 ip from any to any in Does, 600 tee 8665 ip from any to any out Work as you would expect? -- Crist J. Clark cjclark@alum.mit.edu cjclark@jhu.edu cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 2:40:16 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CAA9337B409 for ; Wed, 10 Oct 2001 02:40:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A9e3N91426; Wed, 10 Oct 2001 02:40:03 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 02:40:03 -0700 (PDT) Message-Id: <200110100940.f9A9e3N91426@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: bin/31190: Program, like top, is used libkvm doesn't work Reply-To: Peter Pentchev Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/31190; it has been noted by GNATS. From: Peter Pentchev To: Serg Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: bin/31190: Program, like top, is used libkvm doesn't work Date: Wed, 10 Oct 2001 12:36:13 +0300 On Wed, Oct 10, 2001 at 01:14:55PM +0400, Serg wrote: > Peter Pentchev wrote: > > >On Wed, Oct 10, 2001 at 12:52:00PM +0400, Serg wrote: > > > >>Peter Pentchev wrote: > >> > >>>On Wed, Oct 10, 2001 at 01:30:40AM -0700, Serg O. Malakhov wrote: > >>> > >>>>>Environment: > >>>>> > >>>>FreeBSD camel.servocomp.ru 4.3-RELEASE FreeBSD 4.4-RELEASE #0: Wed Sep 26 15:34:56 MSD 2001 > >>>> > >[snip] > > > >>>>make cvsup for src and build kernel and all sources, reboot, and just type after login top > >>>> > >>>What were the exact commands you used to 'build kernel and all sources'? > >>>Did you run 'make world', or did you use 'make buildworld buildkernel'? > >>>If you did it the 'buildworld' way, did you run both 'make installkernel' > >>>and 'make installworld' afterwards? > >>> > >>Sure > >> > >>> > >>>What is the output of 'ls -l /usr/bin/top'? > >>> > >>-r-xr-sr-x 1 root kmem 32456 9 okt 21:36 /usr/bin/top > >> > > > >OK, now for a really stupid question: are you sure you are running > >your newly compiled kernel? What does 'uname -a' say? If it says > >the same as in your PR (quoted above, saying 4.4-RELEASE #0 Sep 26), > >you are *not* running your compiled kernel, but the default 4.4-RELEASE > >kernel. > > > No. It's ok > I loaded various kernel, with patch of des@freebsd.org for linuxprocfs > and without. > > I've got mail from Alexey Neyman. He wrote: > > I encountered this when I started the kernel directly, bypassing the loader. > (I used /boot.config file to do this). Since I switched back to starting > /boot/loader instead of /kernel, top & family works fine. > > > I done all this and top works properly for now. > I don't understend why and can I load without the loader. Ahh... now I remember that I had this problem when booting a diskless station using Etherboot, too. Well, the loader's task is to load the kernel binary (the kernel is almost a normal ELF executable file) into memory, then fix up some symbols, load the necessary modules (just more ELF objects) and link the whole together. I had the nlist problem too, when I tried to bypass the loader; first I worked around it by removing the 'static' keyword before a couple of variable definitions in kern_{clock,fork,malloc,synch}.c, vfs_bio.c and vm_zone.c - that made top(1) work. Then, I just started actually loading loader(8) before the kernel and letting it do its job :) So.. now that you are not bypassing loader(8), things work for you, right? Can this PR be closed? G'luck, Peter -- This sentence was in the past tense. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 2:57:52 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2454037B406; Wed, 10 Oct 2001 02:57:50 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9A9n5N92630; Wed, 10 Oct 2001 02:49:05 -0700 (PDT) (envelope-from dwmalone) Date: Wed, 10 Oct 2001 02:49:05 -0700 (PDT) From: Message-Id: <200110100949.f9A9n5N92630@freefall.freebsd.org> To: gjasny@wh8.tu-dresden.de, dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/31177: FreeBSD 4.4 mkfs on install failed (virtual timer expired) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: FreeBSD 4.4 mkfs on install failed (virtual timer expired) State-Changed-From-To: open->feedback State-Changed-By: dwmalone State-Changed-When: Wed Oct 10 02:48:17 PDT 2001 State-Changed-Why: Wait to see if problem is fixed by changing UPAGES from 2 to 3. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31177 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 3: 0: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C7BCE37B405 for ; Wed, 10 Oct 2001 03:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AA02J93549; Wed, 10 Oct 2001 03:00:02 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 03:00:02 -0700 (PDT) Message-Id: <200110101000.f9AA02J93549@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Malone Subject: Re: i386/31177: FreeBSD 4.4 mkfs on install failed (virtual timer expired) Reply-To: David Malone Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/31177; it has been noted by GNATS. From: David Malone To: Gregor Jasny Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: i386/31177: FreeBSD 4.4 mkfs on install failed (virtual timer expired) Date: Wed, 10 Oct 2001 10:48:04 +0100 On Tue, Oct 09, 2001 at 01:05:06PM -0700, Gregor Jasny wrote: > If I format my 19GB Partition during the installation-process, > mkfs breaks with sig 29 (virtual timer expired) This is almost certainly due to a bug which was fixed just after 4.4-RELEASE. You can fix the problem by either upgrading to 4.4-STABLE or by changing /usr/src/sys/i386/include/param.h and then building a new kernel. You'll need to edit that file, look for the "#define UPAGES 2" and change the 2 to 3. Then rebuild, reinstall and reboot. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 3:34: 3 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id E3D1837B401 for ; Wed, 10 Oct 2001 03:33:59 -0700 (PDT) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id UAA00798; Wed, 10 Oct 2001 20:33:30 +1000 Date: Wed, 10 Oct 2001 20:32:45 +1000 (EST) From: Bruce Evans X-X-Sender: To: "Alexey V.Neyman" Cc: Peter Pentchev , Serg , Subject: Re: Fwd: Re: bin/31190: Program, like top, is used libkvm doesn't work In-Reply-To: <01101013333904.29652@vagabond.auriga.ru> Message-ID: <20011010203035.K32749-100000@delplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, 10 Oct 2001, Alexey V.Neyman wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Submitter reports this was due to direct /kernel booting instead of > /boot/loader. This is an old bug. See PR 17422. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 3:47:52 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D27F37B405; Wed, 10 Oct 2001 03:47:50 -0700 (PDT) Received: (from roam@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AAhiI09386; Wed, 10 Oct 2001 03:43:44 -0700 (PDT) (envelope-from roam) Date: Wed, 10 Oct 2001 03:43:44 -0700 (PDT) From: Message-Id: <200110101043.f9AAhiI09386@freefall.freebsd.org> To: serg@servocomp.ru, roam@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/31190: Program, like top, is used libkvm doesn't work Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Program, like top, is used libkvm doesn't work State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Wed Oct 10 03:40:16 PDT 2001 State-Changed-Why: The problem was due to booting the kernel directly, bypassing loader(8). This PR is thus a duplicate of kern/17422. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31190 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 5:50:23 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 65A3437B406 for ; Wed, 10 Oct 2001 05:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9ACo3C48057; Wed, 10 Oct 2001 05:50:03 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 05:50:03 -0700 (PDT) Message-Id: <200110101250.f9ACo3C48057@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Josef Karthauser Subject: Re: bin/31135: /bin/df reporting 'NaNB' as a Size. Reply-To: Josef Karthauser Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/31135; it has been noted by GNATS. From: Josef Karthauser To: cjclark@alum.mit.edu Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/31135: /bin/df reporting 'NaNB' as a Size. Date: Wed, 10 Oct 2001 13:49:08 +0100 --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 10, 2001 at 01:23:50AM -0700, Crist J. Clark wrote: > On Mon, Oct 08, 2001 at 01:06:27PM +0100, Joe Karthauser wrote: > > >Description: > > I've just had the strangest output from 'df': > >=20 > > % while test /tmp; do df -h /data; sleep 5; done > > [cut] > > Filesystem Size Used Avail Capacity Mounted on > > /dev/ad0s2h 10G 9.5G 72M 99% /data > > Filesystem Size Used Avail Capacity Mounted on > > /dev/ad0s2h NaNB 9.5G 69M 99% /data > > ^^^^ > > Filesystem Size Used Avail Capacity Mounted on > > /dev/ad0s2h 10G 9.5G 72M 99% /data > > [cut] >=20 > Can you reproduce this? Looking through src/bin/df/df.c, I can't see > what type of exceptional condition could sneak through. There are some > checks for "impossible" conditions. It's hard to see how the 'size' > can be messed up and yet the 'used' is OK since 'size' is used to > calculate 'used.' And obviously, the size of your file system is not > changing between df(1) runs. No I can't. I did a: while true; df -h /data | grep -i nan; done for several hours but didn't see anything. Wierd isn't it? I definitely didn't dream this up though; the example above is cut and pasted from the console. Joe --1yeeQ81UyVL57Vl7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjvEQ8MACgkQXVIcjOaxUBaxXwCgxIMMhE8fywJPBfzWwvq3qXEC A1oAnibz/XV2MZo1Jvtv/dVJ5Q54EqS/ =y2b+ -----END PGP SIGNATURE----- --1yeeQ81UyVL57Vl7-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 8:20: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 375AE37B406 for ; Wed, 10 Oct 2001 08:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AFK2r89959; Wed, 10 Oct 2001 08:20:02 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 08:20:02 -0700 (PDT) Message-Id: <200110101520.f9AFK2r89959@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jean-Francois Dockes Subject: Re: conf/29870: rc.diskless2 uses /usr/sbin/mtree before /usr mounted Reply-To: Jean-Francois Dockes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR conf/29870; it has been noted by GNATS. From: Jean-Francois Dockes To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: conf/29870: rc.diskless2 uses /usr/sbin/mtree before /usr mounted Date: Wed, 10 Oct 2001 17:14:18 +0200 In addition to the proposed fix, it would be a nice thing to add an 'mkdir /var/db' before the 'mount -a' so that mount does not complain about being unable to access /var/db/mounttab -- Jean-Francois Dockes jean-francois.dockes@wanadoo.fr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 8:50:16 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AD5D37B408 for ; Wed, 10 Oct 2001 08:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AFo1r94500; Wed, 10 Oct 2001 08:50:01 -0700 (PDT) (envelope-from gnats) Received: from mail.wlcg.com (mail.wlcg.com [198.92.199.5]) by hub.freebsd.org (Postfix) with ESMTP id DCC7737B405 for ; Wed, 10 Oct 2001 08:46:08 -0700 (PDT) Received: (from rsimmons@localhost) by mail.wlcg.com (8.11.6/8.11.6) id f9AFk7j97527; Wed, 10 Oct 2001 11:46:07 -0400 (EDT) (envelope-from rsimmons) Message-Id: <200110101546.f9AFk7j97527@mail.wlcg.com> Date: Wed, 10 Oct 2001 11:46:07 -0400 (EDT) From: Rob Simmons Reply-To: Rob Simmons To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/31199: tunefs error is incorrect when enabling softupdates Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31199 >Category: bin >Synopsis: tunefs error is incorrect when enabling softupdates >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 10 08:50:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Rob Simmons >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD mail 4.4-STABLE FreeBSD 4.4-STABLE #0: Wed Sep 19 20:15:26 EDT 2001 rsimmons@mail:/usr/obj/usr/src/sys/WASABI i386 >Description: When tunefs is used to enable softupdates, it gives conflicting mesages if the filesystem is mounted. >How-To-Repeat: run "tunefs -n enable " on a mounted filesystem. You will get the following output: bash-2.05$ tunefs -n enable /dev/ad0s1a tunefs: soft updates set tunefs: cannot open /dev/ad0s1a: Permission denied >Fix: in tunefs.c, check for write permission on the device before going through the case statement for argument "n". I don't know how to implement this check :( >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 8:50:17 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BACFE37B40B for ; Wed, 10 Oct 2001 08:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AFo1a94509; Wed, 10 Oct 2001 08:50:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 76F6937B405 for ; Wed, 10 Oct 2001 08:49:25 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AFnPn94413; Wed, 10 Oct 2001 08:49:25 -0700 (PDT) (envelope-from nobody) Message-Id: <200110101549.f9AFnPn94413@freefall.freebsd.org> Date: Wed, 10 Oct 2001 08:49:25 -0700 (PDT) From: Jean-Francois Dockes To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/31200: Modification of rc.diskless1 needs change in examples/diskless/clone_root Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31200 >Category: conf >Synopsis: Modification of rc.diskless1 needs change in examples/diskless/clone_root >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 10 08:50:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Jean-Francois Dockes >Release: 4.4-STABLE >Organization: >Environment: FreeBSD hautmedoc 4.4-STABLE FreeBSD 4.4-STABLE #2: Mon Oct 8 18:44:52 CEST 2001 dockes@hautmedoc:/usr/src/sys/compile/HAUTMEDOC i386 >Description: Revision 1.10 of rc.diskless1 introduced a change where the script now expects a fully populated /conf/default/etc (instead of only override files). /usr/share/examples/diskless/clone_root was not updated to reflect this change, so that the final /etc after startup is missing most files. >How-To-Repeat: Create a root hierarchy with clone_root and try to boot a diskless workstation using it. >Fix: When cloning the root, clone_root should copy the server's /etc directory before copying files from /conf/default/etc. The end result will be the same as what existed before the change in rc.diskless1. The patch follows. tabs are mangled, but I guess that the four added lines are easy enough to copy by hand... *** clone_root.orig Wed Oct 10 16:52:15 2001 --- clone_root Wed Oct 10 17:03:58 2001 *************** *** 99,104 **** --- 99,108 ---- update_conf_and_pw() { echo "+++ Copying files in /conf and password files" (cd ${DEST} ; rm -rf conf ) + # rc.diskless1 expects a fully populated etc in conf/default/etc + mkdir -p ${DEST}/conf/default/etc || exit 1 + (cd /etc ; tar clf - .) | (cd ${DEST}/conf/default/etc ; tar xf -) + # Add diskless-specific files from /conf on the server (cd / ; tar clf - conf ) | (cd ${DEST}; tar xvf - ) mkdir -p ${DEST}/conf/etc # used to mount things (cd /etc ; tar cvf - ${PWFILES} ) | (cd ${DEST}/etc ; tar xf - ) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 9: 0: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E1C3837B409 for ; Wed, 10 Oct 2001 09:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AG02A95815; Wed, 10 Oct 2001 09:00:02 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 09:00:02 -0700 (PDT) Message-Id: <200110101600.f9AG02A95815@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Malone Subject: Re: i386/31079: scanpci fails on /dev/io Reply-To: David Malone Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/31079; it has been noted by GNATS. From: David Malone To: Steven Davidson Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: i386/31079: scanpci fails on /dev/io Date: Wed, 10 Oct 2001 16:54:36 +0100 > I was root user when I ran it. Hmmm - do you have the secure level turned up. See what: sysctl kern.securelevel prints. > Could it be related to the i810 video chip? I don't think so - unless the error message which scanpci gives is misleading. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 9:40:12 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E668637B40A for ; Wed, 10 Oct 2001 09:40:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AGe0H05104; Wed, 10 Oct 2001 09:40:00 -0700 (PDT) (envelope-from gnats) Received: from tomts12-srv.bellnexxia.net (tomts12.bellnexxia.net [209.226.175.56]) by hub.freebsd.org (Postfix) with ESMTP id 8B63937B406 for ; Wed, 10 Oct 2001 09:31:59 -0700 (PDT) Received: from khan.anarcat.dyndns.org ([65.94.128.156]) by tomts12-srv.bellnexxia.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20011010163158.CJOP10438.tomts12-srv.bellnexxia.net@khan.anarcat.dyndns.org> for ; Wed, 10 Oct 2001 12:31:58 -0400 Received: from shall.anarcat.dyndns.org (shall.anarcat.dyndns.org [192.168.0.1]) by khan.anarcat.dyndns.org (Postfix) with ESMTP id CC9DC1893 for ; Wed, 10 Oct 2001 12:31:54 -0400 (EDT) Received: by shall.anarcat.dyndns.org (Postfix, from userid 1000) id 3258220B50; Wed, 10 Oct 2001 12:32:06 -0400 (EDT) Message-Id: <20011010163206.3258220B50@shall.anarcat.dyndns.org> Date: Wed, 10 Oct 2001 12:32:06 -0400 (EDT) From: The Anarcat Reply-To: The Anarcat To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/31201: [patch] add free_space(chunk) to libdisk Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31201 >Category: bin >Synopsis: [patch] add free_space(chunk) to libdisk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 10 09:40:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: The Anarcat >Release: FreeBSD 4.4-STABLE i386 >Organization: Nada, Inc >Environment: System: FreeBSD shall.anarcat.dyndns.org 4.4-STABLE FreeBSD 4.4-STABLE #7: Sat Sep 15 00:41:38 EDT 2001 anarcat@shall.anarcat.dyndns.org:/usr/obj/usr/src/sys/SHALL i386 >Description: There is no function available to see the "free space" available on a given slice, where free space is defined as per src/release/sysinstall/label.c:255 (free = size - sum of used parts) >How-To-Repeat: n/a >Fix: patch libdisk to include sysinstall' space_free. note that this makes use of errno to signal an error, this might not be proper style since size args are usually u_long and we're using plain long here to signal the error (-1). diff -c /usr/src/lib/libdisk/chunk.c.orig /usr/src/lib/libdisk/chunk.c *** /usr/src/lib/libdisk/chunk.c.orig Wed Oct 10 12:29:42 2001 --- /usr/src/lib/libdisk/chunk.c Wed Oct 10 12:29:42 2001 *************** *** 16,21 **** --- 16,22 ---- #include #include #include + #include #include "libdisk.h" #define new_chunk() memset(malloc(sizeof(struct chunk)), 0, sizeof(struct chunk)) *************** *** 327,332 **** --- 328,350 ---- if (c->flags & CHUNK_IS_ROOT) ret[i++] = 'R'; ret[i++] = '\0'; return ret; + } + + /* return free space of that chunk */ + long + free_space(struct chunk *c) + { + struct chunk *c1; + int sz = c->size; + if (!c) { + errno = EFAULT; + return -1; + } + for (c1 = c->part; c1; c1 = c1->next) { + if (c1->type != unused) + sz -= c1->size; + } + return sz; } void diff -c /usr/src/lib/libdisk/libdisk.h.orig /usr/src/lib/libdisk/libdisk.h *** /usr/src/lib/libdisk/libdisk.h.orig Wed Oct 10 12:30:42 2001 --- /usr/src/lib/libdisk/libdisk.h Wed Oct 10 12:30:43 2001 *************** *** 156,161 **** --- 156,173 ---- /* Create a chunk with the specified paramters */ + long + free_space(struct chunk *c); + /* + * return the free space available in this chunk + * + * free = total - sum "not unused" partitions + * + * returns the space or -1 if an error occured + * + * EFAULT: bad chunk pointer given + */ + void All_FreeBSD(struct disk *d, int force_all); /* Make one FreeBSD chunk covering the entire disk; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 11:47:52 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DFDD037B403; Wed, 10 Oct 2001 11:47:50 -0700 (PDT) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AIll928654; Wed, 10 Oct 2001 11:47:47 -0700 (PDT) (envelope-from alfred) Date: Wed, 10 Oct 2001 11:47:47 -0700 (PDT) From: Message-Id: <200110101847.f9AIll928654@freefall.freebsd.org> To: alfred@FreeBSD.org, freebsd-bugs@FreeBSD.org, alfred@FreeBSD.org Subject: Re: bin/27231: NFS client-side locking problem Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: NFS client-side locking problem Responsible-Changed-From-To: freebsd-bugs->alfred Responsible-Changed-By: alfred Responsible-Changed-When: Wed Oct 10 11:47:04 PDT 2001 Responsible-Changed-Why: I 'implemented' locking, might as well take another shot at it. :) http://www.FreeBSD.org/cgi/query-pr.cgi?pr=27231 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 12:10:14 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D72C37B40C for ; Wed, 10 Oct 2001 12:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AJA1P34206; Wed, 10 Oct 2001 12:10:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 46BDD37B401 for ; Wed, 10 Oct 2001 12:05:36 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AJ5aO33641; Wed, 10 Oct 2001 12:05:36 -0700 (PDT) (envelope-from nobody) Message-Id: <200110101905.f9AJ5aO33641@freefall.freebsd.org> Date: Wed, 10 Oct 2001 12:05:36 -0700 (PDT) From: David Ljung Madison To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: misc/31204: FreeBSD login will display secure log notices before password is given Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31204 >Category: misc >Synopsis: FreeBSD login will display secure log notices before password is given >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 10 12:10:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: David Ljung Madison >Release: 4.4 >Organization: MarginalHacks.com >Environment: FreeBSD ***.com 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Tue Sep 18 11:57:08 PDT 2001 murray@builder.FreeBSD.org:/usr/src/sys/compile/GENERIC i386 >Description: First of all, I should point out that I don't actually run FreeBSD as my unix flavor, I was working on a friend's machine. If you try to login as root, you can see security warnings that only root should see before you ever enter your password. An obvious exploit would be to login to the machine, enter "root" at the login prompt, then sit back and watch security messages, which could be very useful to an attacker to learn about what kind of security the system has implemented >How-To-Repeat: Make a bad attempt to login to some account (use the wrong password). Then try to login as root - you will see the "bad login" message after you enter the "login:" prompt but before you type a password. >Fix: Dunno - don't have a FreeBSD system. Presumably the login exec is doing a setuid before it actually verifies the password? >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 12:10:19 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A5CB37B40A for ; Wed, 10 Oct 2001 12:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AJA1P34197; Wed, 10 Oct 2001 12:10:01 -0700 (PDT) (envelope-from gnats) Received: from amd.stokely.org (mao.stokely.org [65.84.64.228]) by hub.freebsd.org (Postfix) with ESMTP id 5309E37B403 for ; Wed, 10 Oct 2001 12:02:05 -0700 (PDT) Received: (from murray@localhost) by amd.stokely.org (8.11.6/8.11.6) id f9AB8U739198; Wed, 10 Oct 2001 11:08:30 GMT (envelope-from murray) Message-Id: <200110101108.f9AB8U739198@amd.stokely.org> Date: Wed, 10 Oct 2001 11:08:30 GMT From: murray@freebsd.org Reply-To: murray@freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: kern/31203: Cardbus xl driver broken on -CURRENT Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31203 >Category: kern >Synopsis: Cardbus xl driver broken on -CURRENT >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 10 12:10:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 5.0-CURRENT i386 >Organization: WRS >Environment: System: FreeBSD amd.stokely.org 4.4-STABLE FreeBSD 4.4-STABLE #1: Sun Sep 23 10:47:19 PDT 2001 murray@amd.stokely.org:/usr/src/sys/compile/AMD i386 >Description: The xl driver on -CURRENT recently started failing on my laptop. This device has been working fine for 6 months. I haven't narrowed down when exactly this broke but I assume the problem is known. If you need more details then I can debug this further. Dell Inspiron 7000 3Com 3C575 Adapter (Dell branded) TUPLE: LINKTARGET[3]: 43 49 53 Manufacturer ID: 01015752 TUPLE: CONFIG_CB [6]: 03 01 00 00 00 00 TUPLE: CFTABLE_ENTRY_CB [13]: 41 9a 01 b5 1e 01 b5 1e 02 30 ff ff 01 cardbus1: Opening BAR: type=IO, bar=10, len=0040 Product version: 5.0 Product name: 3Com Corporation | 3CCFE575CT | LAN Cardbus Card | 004 | Functions: Network Adaptor, Memory CIS reading done cardbus1: Resource not specified in CIS: id=14, size=80 cardbus1: Resource not specified in CIS: id=18, size=80 cardbus1: Non-prefetchable memory at 44000000-440000ff cardbus1: Non-prefetchable memory rid=14 at 44000000-4400007f (80) cardbus1: Non-prefetchable memory rid=18 at 44000000-440000ff (80) cardbus1: IO port at 1080-10bf cardbus1: IO port rid=10 at 1080-10bf xl0: <3Com 3c575C Fast Etherlink XL> port 0x1080-0x10bf mem 0x44000000-0x4400007f,0x44000080-0x440000ff irq 11 at device 0.0 on cardbus1 xl0: Ethernet address: 00:50:da:31:1a:0e xl0: no PHY found! device_probe_and_attach: xl0 attach returned 6 cardbus1: release_all_resource: Resource still owned by child, oops. (type=3, rid=24, addr=44000000) pccbb1: pccbb_power: CARD_VCC_0V and CARD_VPP_0V [44] pccbb1: card activation failed - Murray >How-To-Repeat: Try to use a 3Com 3c575 cardbus adapter. >Fix: Go back to using a 2 month-old -CURRENT. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 12:17:53 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B7D4C37B405; Wed, 10 Oct 2001 12:17:51 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AJGZX35030; Wed, 10 Oct 2001 12:16:35 -0700 (PDT) (envelope-from johan) Date: Wed, 10 Oct 2001 12:16:35 -0700 (PDT) From: Message-Id: <200110101916.f9AJGZX35030@freefall.freebsd.org> To: admin@citylink.dinoex.sub.org, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/3826: KerberosIV sometimes hangs rcp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: KerberosIV sometimes hangs rcp State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Wed Oct 10 12:14:54 PDT 2001 State-Changed-Why: The file in the patch was removed 4 years ago. Please open a new PR if the problem persists in more recent versions of FreeBSD. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=3826 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 12:27:54 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA57237B405; Wed, 10 Oct 2001 12:27:50 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AJOA336295; Wed, 10 Oct 2001 12:24:10 -0700 (PDT) (envelope-from johan) Date: Wed, 10 Oct 2001 12:24:10 -0700 (PDT) From: Message-Id: <200110101924.f9AJOA336295@freefall.freebsd.org> To: ben@algroup.co.uk, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/3968: Hardware probes die on Peak SBCs. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Hardware probes die on Peak SBCs. State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Wed Oct 10 12:22:00 PDT 2001 State-Changed-Why: This PR is just too old and alot has happened in the hardware detection area. Please open a new PR if the problem persists in more recent versions of FreeBSD. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=3968 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 12:37:52 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D7B8837B405; Wed, 10 Oct 2001 12:37:50 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AJWdA37398; Wed, 10 Oct 2001 12:32:39 -0700 (PDT) (envelope-from johan) Date: Wed, 10 Oct 2001 12:32:39 -0700 (PDT) From: Message-Id: <200110101932.f9AJWdA37398@freefall.freebsd.org> To: derek@i-planet.com, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/4285: SDL RISCom/N2 (ISA) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: SDL RISCom/N2 (ISA) State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Wed Oct 10 12:32:19 PDT 2001 State-Changed-Why: Not a problem report. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=4285 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 12:47:52 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 01DFC37B406; Wed, 10 Oct 2001 12:47:51 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AJhYK38459; Wed, 10 Oct 2001 12:43:34 -0700 (PDT) (envelope-from dwmalone) Date: Wed, 10 Oct 2001 12:43:34 -0700 (PDT) From: Message-Id: <200110101943.f9AJhYK38459@freefall.freebsd.org> To: sdn@sprintlabs.com, dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/31079: scanpci fails on /dev/io Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: scanpci fails on /dev/io State-Changed-From-To: open->closed State-Changed-By: dwmalone State-Changed-When: Wed Oct 10 12:43:03 PDT 2001 State-Changed-Why: Submitter confirms that problem was due to elivated secure level. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31079 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 12:57:53 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F1D237B403; Wed, 10 Oct 2001 12:57:51 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AJoKn39232; Wed, 10 Oct 2001 12:50:20 -0700 (PDT) (envelope-from johan) Date: Wed, 10 Oct 2001 12:50:20 -0700 (PDT) From: Message-Id: <200110101950.f9AJoKn39232@freefall.freebsd.org> To: dtc@scrooge.ee.swin.oz.au, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/4597: Patch to pass NPX status word in signal code on SIGFPE. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Patch to pass NPX status word in signal code on SIGFPE. State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Wed Oct 10 12:48:10 PDT 2001 State-Changed-Why: Alot has happened in this area of the file and the patch will not apply cleanly any more. If this is still a problem in more recent versions of FreeBSD please open a new PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=4597 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 13:20: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7590537B405 for ; Wed, 10 Oct 2001 13:20:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AKK4s45230; Wed, 10 Oct 2001 13:20:04 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 13:20:04 -0700 (PDT) Message-Id: <200110102020.f9AKK4s45230@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Malone Subject: Re: misc/31204: FreeBSD login will display secure log notices before password is given Reply-To: David Malone Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/31204; it has been noted by GNATS. From: David Malone To: David Ljung Madison Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: misc/31204: FreeBSD login will display secure log notices before password is given Date: Wed, 10 Oct 2001 21:10:40 +0100 On Wed, Oct 10, 2001 at 12:05:36PM -0700, David Ljung Madison wrote: > I was working on a friend's machine. If you try to login as root, you can see security warnings that only > root should see before you ever enter your password. An obvious exploit would be to login to the machine, enter "root" at > the login prompt, then sit back and watch security messages, which could > be very useful to an attacker to learn about what kind of security the > system has implemented Are you sure you weren't seeing these messages because you were logging on to the system console? The default syslog.conf logs a selection of messages to the console, including the one for attempted root logins. Some of the more sensitive messages shouldn't logged to the console. If you weren't logging in at the console, were you using telnet, ssh or another method to log in? David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 13:27:53 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C8AC637B405; Wed, 10 Oct 2001 13:27:50 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AKLqw45433; Wed, 10 Oct 2001 13:21:52 -0700 (PDT) (envelope-from johan) Date: Wed, 10 Oct 2001 13:21:52 -0700 (PDT) From: Message-Id: <200110102021.f9AKLqw45433@freefall.freebsd.org> To: marijn@stack.nl, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/5931: dma errors in syslog with GUS-max Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: dma errors in syslog with GUS-max State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Wed Oct 10 13:20:36 PDT 2001 State-Changed-Why: The sound system has been rewritten twice since this PR. Please open a new PR if the problem persists in a more recent version of FreeBSD (4.4-RELEASE). http://www.FreeBSD.org/cgi/query-pr.cgi?pr=5931 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 13:37:53 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 137BA37B403; Wed, 10 Oct 2001 13:37:51 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AKSOX46168; Wed, 10 Oct 2001 13:28:24 -0700 (PDT) (envelope-from johan) Date: Wed, 10 Oct 2001 13:28:24 -0700 (PDT) From: Message-Id: <200110102028.f9AKSOX46168@freefall.freebsd.org> To: schweikh@noc.dfn.de, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/6015: indent(1) breaks source with backslash newline continuation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: indent(1) breaks source with backslash newline continuation State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Wed Oct 10 13:24:57 PDT 2001 State-Changed-Why: Ok, indent(1) is broken as you say. However, it will not get fixed unless someone (you?) sends a patch. Moreover, you should not write your c code like that :-) Closed since the PR is too old and noone will fix it. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=6015 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 14:10:15 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 06A5837B406 for ; Wed, 10 Oct 2001 14:10:08 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9ALA8Z54486; Wed, 10 Oct 2001 14:10:08 -0700 (PDT) (envelope-from gnats) Received: from noos.fr (r178m112.cybercable.tm.fr [195.132.178.112]) by hub.freebsd.org (Postfix) with ESMTP id ECF9937B408 for ; Wed, 10 Oct 2001 14:07:35 -0700 (PDT) Received: (from mux@localhost) by noos.fr (8.11.6/8.11.4) id f9AL7YQ07781; Wed, 10 Oct 2001 23:07:34 +0200 (CEST) (envelope-from mux) Message-Id: <200110102107.f9AL7YQ07781@noos.fr> Date: Wed, 10 Oct 2001 23:07:34 +0200 (CEST) From: Maxime Henrion Reply-To: Maxime Henrion To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: bin/31205: [PATCH] WARNSify and add a new option to script(1) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31205 >Category: bin >Synopsis: [PATCH] WARNSify and add a new option to script(1) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 10 14:10:07 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Maxime Henrion >Release: FreeBSD 5.0-CURRENT i386 >Organization: None. >Environment: System: FreeBSD nebula 5.0-CURRENT FreeBSD 5.0-CURRENT #120: Wed Oct 10 17:46:49 CEST 2001 mux@nebula.cybercable.fr:/usr/src/sys/i386/compile/NEBULA i386 >Description: This patch WARNSify the script(1) command and add a new option (-A) to rip ascii characters 13 out. Since the WARNS changes are just two `const' to add, I didn't separate the two patches. I can send them separate on demand. >How-To-Repeat: >Fix: --- script.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/src/usr.bin/script/Makefile,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Makefile --- Makefile 27 May 1994 12:32:38 -0000 1.1.1.1 +++ Makefile 10 Oct 2001 20:53:52 -0000 @@ -4,4 +4,6 @@ LDADD= -lutil DPADD= ${LIBUTIL} +WARNS?= 2 + .include Index: script.1 =================================================================== RCS file: /home/ncvs/src/usr.bin/script/script.1,v retrieving revision 1.15 diff -u -r1.15 script.1 --- script.1 15 Jul 2001 08:01:34 -0000 1.15 +++ script.1 10 Oct 2001 21:00:46 -0000 @@ -41,6 +41,7 @@ .Sh SYNOPSIS .Nm .Op Fl a +.Op Fl A .Op Fl k .Op Fl q .Op Fl t Ar time @@ -77,6 +78,8 @@ or .Pa typescript , retaining the prior contents. +.It Fl A +Skip the ASCII 13 characters from the script output file. .It Fl k Log keys sent to program as well as output. .It Fl q @@ -141,7 +144,8 @@ .Nm Script places .Sy everything -in the log file, including linefeeds and backspaces. +(except if you use the -A option), in the log file, +including linefeeds and backspaces. This is not what the naive user expects. .Pp It is not possible to specify a command without also naming the script file Index: script.c =================================================================== RCS file: /home/ncvs/src/usr.bin/script/script.c,v retrieving revision 1.15 diff -u -r1.15 script.c --- script.c 26 Jul 2001 11:02:35 -0000 1.15 +++ script.c 10 Oct 2001 01:08:04 -0000 @@ -66,8 +66,8 @@ FILE *fscript; int master, slave; int child; -char *fname; -int qflg; +const char *fname; +int Aflg, qflg; struct termios tt; @@ -76,6 +76,7 @@ void doshell __P((char **)); void fail __P((void)); void finish __P((void)); +void log_write __P((const char *, int)); static void usage __P((void)); int @@ -95,11 +96,14 @@ int flushtime = 30; aflg = kflg = 0; - while ((ch = getopt(argc, argv, "aqkt:")) != -1) + while ((ch = getopt(argc, argv, "aAqkt:")) != -1) switch(ch) { case 'a': aflg = 1; break; + case 'A': + Aflg = 1; + break; case 'q': qflg = 1; break; @@ -177,7 +181,7 @@ (void)write(master, ibuf, cc); if (kflg && tcgetattr(master, &stt) >= 0 && ((stt.c_lflag & ECHO) == 0)) { - (void)fwrite(ibuf, 1, cc, fscript); + log_write(ibuf, cc); } } } @@ -186,7 +190,7 @@ if (cc <= 0) break; (void)write(STDOUT_FILENO, obuf, cc); - (void)fwrite(obuf, 1, cc, fscript); + log_write(obuf, cc); } tvec = time(0); if (tvec - start >= flushtime) { @@ -202,7 +206,7 @@ usage() { (void)fprintf(stderr, - "usage: script [-a] [-q] [-k] [-t time] [file] [command]\n"); + "usage: script [-a] [-A] [-q] [-k] [-t time] [file] [command]\n"); exit(1); } @@ -232,7 +236,7 @@ doshell(av) char **av; { - char *shell; + const char *shell; shell = getenv("SHELL"); if (shell == NULL) @@ -273,4 +277,24 @@ (void)fclose(fscript); (void)close(master); exit(eno); +} + +void +log_write(const char *buf, int size) +{ + int off, i; + + if (!Aflg) { + (void)fwrite(buf, 1, size, fscript); + return; + } + off = 0; + do { + i = 0; + while ((off + i < size) && (buf[off + i] != '\r')) + i++; + if (i > 0) + (void)fwrite(buf + off, 1, i, fscript); + off += i + 1; + } while (off < size); } --- script.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 14:17:57 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A28E37B405; Wed, 10 Oct 2001 14:17:55 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9ALCqW54807; Wed, 10 Oct 2001 14:12:52 -0700 (PDT) (envelope-from johan) Date: Wed, 10 Oct 2001 14:12:52 -0700 (PDT) From: Message-Id: <200110102112.f9ALCqW54807@freefall.freebsd.org> To: aa8vb@pagesz.net, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/8925: options kern file needs AWE_DEFAULT_MEM_SIZE added for AWE sound drvr Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: options kern file needs AWE_DEFAULT_MEM_SIZE added for AWE sound drvr State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Wed Oct 10 14:12:17 PDT 2001 State-Changed-Why: The sound driver has been rewritten since this PR. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=8925 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 16: 0: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6959437B401 for ; Wed, 10 Oct 2001 16:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AN01w67524; Wed, 10 Oct 2001 16:00:01 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 16:00:01 -0700 (PDT) Message-Id: <200110102300.f9AN01w67524@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: root Subject: Re: misc/31175: 4.4 wikk not detect ethernet cards on HP Pavillion xe749 Reply-To: root Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/31175; it has been noted by GNATS. From: root To: freebsd-gnats-submit@FreeBSD.org, pixiedave@mediaone.net Cc: Subject: Re: misc/31175: 4.4 wikk not detect ethernet cards on HP Pavillion xe749 Date: Wed, 10 Oct 2001 18:52:27 -0400 3com 3c59x fast etherlink To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 16: 0: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 626A137B409 for ; Wed, 10 Oct 2001 16:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AN02V67529; Wed, 10 Oct 2001 16:00:02 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 16:00:02 -0700 (PDT) Message-Id: <200110102300.f9AN02V67529@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: root Subject: Re: misc/31175: 4.4 wikk not detect ethernet cards on HP Pavillion xe749 Reply-To: root Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/31175; it has been noted by GNATS. From: root To: freebsd-gnats-submit@FreeBSD.org, pixiedave@mediaone.net Cc: Subject: Re: misc/31175: 4.4 wikk not detect ethernet cards on HP Pavillion xe749 Date: Wed, 10 Oct 2001 18:50:12 -0400 3 com 3c59x fast etherlink To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 16: 0:13 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3734F37B40A for ; Wed, 10 Oct 2001 16:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9AN03s67534; Wed, 10 Oct 2001 16:00:03 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 16:00:03 -0700 (PDT) Message-Id: <200110102300.f9AN03s67534@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: root Subject: Re: misc/31175: 4.4 wikk not detect ethernet cards on HP Pavillion xe749 Reply-To: root Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR misc/31175; it has been noted by GNATS. From: root To: freebsd-gnats-submit@FreeBSD.org, pixiedave@mediaone.net Cc: Subject: Re: misc/31175: 4.4 wikk not detect ethernet cards on HP Pavillion xe749 Date: Wed, 10 Oct 2001 18:46:13 -0400 3c59x Fast Etherlink To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 17:40: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A42737B403 for ; Wed, 10 Oct 2001 17:40:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9B0e3386414; Wed, 10 Oct 2001 17:40:03 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Oct 2001 17:40:03 -0700 (PDT) Message-Id: <200110110040.f9B0e3386414@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Gregory Bond Subject: Re: bin/28884: auth.conf out of date in -Stable Reply-To: Gregory Bond Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/28884; it has been noted by GNATS. From: Gregory Bond To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: bin/28884: auth.conf out of date in -Stable Date: Thu, 11 Oct 2001 10:39:47 +1000 This PR can be closed. DD did the MFC (1.4.2.1) on 13/7/01. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Oct 10 22:57:53 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C629A37B401; Wed, 10 Oct 2001 22:57:51 -0700 (PDT) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9B5pbS29417; Wed, 10 Oct 2001 22:51:37 -0700 (PDT) (envelope-from dougb) Date: Wed, 10 Oct 2001 22:51:37 -0700 (PDT) From: Message-Id: <200110110551.f9B5pbS29417@freefall.freebsd.org> To: gnb@itga.com.au, dougb@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/28884: auth.conf out of date in -Stable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: auth.conf out of date in -Stable State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Wed Oct 10 22:51:12 PDT 2001 State-Changed-Why: Originator states that the problem was solved by Dima. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28884 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 3: 0: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E76C37B403 for ; Thu, 11 Oct 2001 03:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BA02j71576; Thu, 11 Oct 2001 03:00:02 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Oct 2001 03:00:02 -0700 (PDT) Message-Id: <200110111000.f9BA02j71576@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: yuri.viktarovich@philips.com Subject: Re: kern/30781: msgrcv call blocks other pthread's jobs Reply-To: yuri.viktarovich@philips.com Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/30781; it has been noted by GNATS. From: yuri.viktarovich@philips.com To: freebsd-gnats-submit@FreeBSD.org, dwchoe@naver.com Cc: Subject: Re: kern/30781: msgrcv call blocks other pthread's jobs Date: Thu, 11 Oct 2001 11:52:28 +0200 > For msgrcv(3), it is the msgflg parameter - read the msgrcv(3) manual page > and set the IPC_NOWAIT flag. Then have your main thread call msgrcv(3) > in non-blocking mode and if it returns nothing, sleep for a while before > the next call. That's not really "message waiting" architecture than. Sending process should trigger the event and listening process should awake on it. Just like with sockets. Looks like that's currently impossible in FreeBSD with msgXXX functions without interrupting the other threads. Anyway shouldn't it be some generic uniform way to wakeup processes/threads on events working the same way on msgXXX, FDs, process start/end, other events? Yuri. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 4:31: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F25BA37B401; Thu, 11 Oct 2001 04:31:04 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BBV4n94534; Thu, 11 Oct 2001 04:31:04 -0700 (PDT) (envelope-from sobomax) Date: Thu, 11 Oct 2001 04:31:04 -0700 (PDT) From: Message-Id: <200110111131.f9BBV4n94534@freefall.freebsd.org> To: vova@express.ru, sobomax@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/30843: pkg_add don't threat -t flag properly Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: pkg_add don't threat -t flag properly State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Thu Oct 11 04:29:37 PDT 2001 State-Changed-Why: The fix for the problem has been committed into -current and will be MFC'ed into -stable shortly. Thank you for reporting! http://www.freebsd.org/cgi/query-pr.cgi?pr=30843 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 5: 0:18 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 832C137B405 for ; Thu, 11 Oct 2001 05:00:08 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BC08l99096; Thu, 11 Oct 2001 05:00:08 -0700 (PDT) (envelope-from gnats) Received: from mx1.zsea.zp.ua (ZSEA.zp.ua [212.8.40.5]) by hub.freebsd.org (Postfix) with ESMTP id 9311B37B407 for ; Thu, 11 Oct 2001 04:50:53 -0700 (PDT) Received: (from laa@localhost) by mx1.zsea.zp.ua with id f9BBoRT79283; Thu, 11 Oct 2001 14:50:27 +0300 (EEST) (envelope-from laa) Message-Id: <200110111150.f9BBoRT79283@mx1.zsea.zp.ua> Date: Thu, 11 Oct 2001 14:50:27 +0300 (EEST) From: Alexandr Listopad Reply-To: Alexandr Listopad To: FreeBSD-gnats-submit@freebsd.org Cc: laa@laa.zp.ua X-Send-Pr-Version: 3.113 Subject: misc/31218: How to build release from selected date Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31218 >Category: misc >Synopsis: How to build release from selected date >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 11 05:00:03 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Alexandr Listopad >Release: FreeBSD 4.4-SABLE i386 >Organization: CIT ZSEA >Environment: System: FreeBSD Eagle.zgia.zp.ua 4.4-STABLE FreeBSD 4.4-STABLE #5: Wed Oct 3 09:36:26 EEST 2001 root@Eagle.zgia.zp.ua:/usr/obj/usr/src/sys/Eagle i386 >Description: I write a patch for use cvs ``-D '' feature in src/release/Makefile. This feature helps build releases with/from sources prior to selected date. Now I can run cvsup with ``date='', rebuild system, reboot, and make release if all fine. This is my example: [18:23:39] root@ns # make CHROOTDIR=/home/ftp/pub/FreeBSD/releases/ BUILDNAME=4.4-20011003053200-STABLE \ CVSROOT=/home/ncvs \ RELEASETAG=RELENG_4 \ NOPORTS=YES NODOC=YES \ CVSDATE='10/03/2001 03:05:00 UTC' \ CVSCMDARGS="-D $CVSDATE" \ release > RELEASE.log 2>&1 & So, this way I have a release from 03 Oct 2001 03:05:00 UTC. >How-To-Repeat: >Fix: This is a patch for src/release/Makefile: --- Makefile.orig Wed Sep 26 16:53:38 2001 +++ Makefile Mon Oct 8 18:28:08 2001 @@ -22,6 +22,12 @@ BASE = 4.4 BUILDNAME?=${BASE}-${DATE}-STABLE # +# If you want to make release from sources prior to specified date +# put CVSDATE and CVSCMDARGS to command line arguments. +#CVSDATE="10/03/2001 03:05:00 UTC" +#CVSCMDARGS="-D ${CVSDATE}" +# +# #CHROOTDIR=/junk/release # If this is a -stable snapshot, then set #RELEASETAG=RELENG_4 @@ -259,10 +265,11 @@ done .if !defined(RELEASETAG) cd ${CHROOTDIR}/usr && rm -rf src && \ - cvs -R -d ${CVSROOT} co -P ${RELEASESRCMODULE} + cvs -R -d ${CVSROOT} co "${CVSCMDARGS}" -P ${RELEASESRCMODULE} .else cd ${CHROOTDIR}/usr && rm -rf src && \ - cvs -R -d ${CVSROOT} co -P -r ${RELEASETAG} ${RELEASESRCMODULE} + cvs -R -d ${CVSROOT} co "${CVSCMDARGS}" -P -r ${RELEASETAG} \ + ${RELEASESRCMODULE} .endif .if defined(LOCAL_PATCHES) && exists(${LOCAL_PATCHES}) cd ${CHROOTDIR}/usr/src && patch ${PATCH_FLAGS} < ${LOCAL_PATCHES} @@ -272,22 +279,30 @@ .endif .if !defined(NOPORTS) .if defined(PORTSRELEASETAG) - cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} co -P -r ${PORTSRELEASETAG} ${RELEASEPORTSMODULE} && cd ports && ${MAKEREADMES} + cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} \ + co "${CVSCMDARGS}" -P -r ${PORTSRELEASETAG} \ + ${RELEASEPORTSMODULE} && cd ports && ${MAKEREADMES} .else - cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} co -P ${RELEASEPORTSMODULE} && cd ports && ${MAKEREADMES} + cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} \ + co "${CVSCMDARGS}" -P ${RELEASEPORTSMODULE} && cd ports \ + && ${MAKEREADMES} .endif .elif defined(DOMINIMALDOCPORTS) && ${DOMINIMALDOCPORTS} == "YES" .if defined(PORTSRELEASETAG) - cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} co -P -r ${PORTSRELEASETAG} ${MINIMALDOCPORTS} + cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} \ + "${CVSCMDARGS}" co -P -r ${PORTSRELEASETAG} ${MINIMALDOCPORTS} .else - cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} co -P ${MINIMALDOCPORTS} + cd ${CHROOTDIR}/usr && rm -rf ports && cvs -R -d ${CVSROOT} \ + "${CVSCMDARGS}" co -P ${MINIMALDOCPORTS} .endif .endif .if !defined(NODOC) .if defined(DOCRELEASETAG) - cd ${CHROOTDIR}/usr && rm -rf doc && cvs -R -d ${CVSROOT} co -P -r ${DOCRELEASETAG} ${RELEASEDOCMODULE} + cd ${CHROOTDIR}/usr && rm -rf doc && cvs -R -d ${CVSROOT} \ + "${CVSCMDARGS}" co -P -r ${DOCRELEASETAG} ${RELEASEDOCMODULE} .else - cd ${CHROOTDIR}/usr && rm -rf doc && cvs -R -d ${CVSROOT} co -P ${RELEASEDOCMODULE} + cd ${CHROOTDIR}/usr && rm -rf doc && cvs -R -d ${CVSROOT} \ + "${CVSCMDARGS}" co -P ${RELEASEDOCMODULE} .endif if [ -d ${DOCDISTFILES}/ ]; then \ cp -rp ${DOCDISTFILES} ${CHROOTDIR}/usr/ports/distfiles; \ @@ -297,20 +312,22 @@ .if make(rerelease) .if !defined(RELEASENOUPDATE) .if !defined(RELEASETAG) - cd ${CHROOTDIR}/usr/src && cvs -R -q update -P -d + cd ${CHROOTDIR}/usr/src && cvs -R -q up "${CVSCMDARGS}" -P -d .else - cd ${CHROOTDIR}/usr/src && cvs -R -q update -P -d -r ${RELEASETAG} + cd ${CHROOTDIR}/usr/src && cvs -R -q up "${CVSCMDARGS}" -P -d \ + -r ${RELEASETAG} .endif .if !defined(NOPORTS) cd ${CHROOTDIR}/usr/ports && cvs -R -q update -P -d .endif .if defined(DOMINIMALDOCPORTS) && ${DOMINIMALDOCPORTS} == "YES" for i in ${MINIMALDOCPORTS}; do \ - ( cd ${CHROOTDIR}/usr/$$i && cvs -R -q update -P -d ) ; \ + ( cd ${CHROOTDIR}/usr/$$i && cvs -R -q up "${CVSCMDARGS}" \ + -P -d ) ; \ done .endif .if !defined(NODOC) - cd ${CHROOTDIR}/usr/doc && cvs -R -q update -P -d + cd ${CHROOTDIR}/usr/doc && cvs -R -q up "${CVSCMDARGS}" -P -d .endif .endif .endif -- Laa >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 5:10: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D97A37B405 for ; Thu, 11 Oct 2001 05:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BCA1e04104; Thu, 11 Oct 2001 05:10:01 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 37F2C37B403 for ; Thu, 11 Oct 2001 05:00:25 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BC0Pe99173; Thu, 11 Oct 2001 05:00:25 -0700 (PDT) (envelope-from nobody) Message-Id: <200110111200.f9BC0Pe99173@freefall.freebsd.org> Date: Thu, 11 Oct 2001 05:00:25 -0700 (PDT) From: Oleg Kostyuchenko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: conf/31219: Missing cons25u entry in termcap Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31219 >Category: conf >Synopsis: Missing cons25u entry in termcap >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 11 05:10:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Oleg Kostyuchenko >Release: 4.4 >Organization: Ukraine International Airlines >Environment: really doesn't matter >Description: Entry cons25u missing in termcap database, though it was specified as needed change in ttys (according to Handbook - installing Ukrainian koi8-u console support). This entry exist in termcap.small though. I'm a novice in FreeBSD, so please excuse me if I'm wrong. >How-To-Repeat: Change cons25 to cons25u in /etc/ttys >Fix: Synchronize termcap with more up-to-date records in termcap.small??? (I'm not sure if cons25u is a alias for cons25r or it's just some testing record in termcap.small . May be cons25u should contain different from cons25r records...) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 5:38:43 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.auriga.ru (mail.auriga.ru [213.24.253.102]) by hub.freebsd.org (Postfix) with ESMTP id C966237B403; Thu, 11 Oct 2001 05:38:38 -0700 (PDT) Received: from vagabond.auriga.ru ([213.24.253.246]) by mail.auriga.ru with smtp (Exim 3.14 #1) id 15rfC8-0002y8-00; Thu, 11 Oct 2001 16:44:12 +0400 Content-Type: Multipart/Mixed; charset="koi8-r"; boundary="------------Boundary-00=_OFK13LWOU3XJV6M73E0I" From: Alexey V.Neyman To: schweikh@noc.dfn.de, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/6015: indent(1) breaks source with backslash newline continuation Date: Thu, 11 Oct 2001 16:38:12 +0400 X-Mailer: KMail [version 1.2] References: <200110102028.f9AKSOX46168@freefall.freebsd.org> In-Reply-To: <200110102028.f9AKSOX46168@freefall.freebsd.org> MIME-Version: 1.0 Message-Id: <01101116381203.00992@vagabond.auriga.ru> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --------------Boundary-00=_OFK13LWOU3XJV6M73E0I Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 8bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello there! On 11 October 2001 00:28, johan@FreeBSD.org wrote: > Moreover, you should not write your c code like that :-) > Closed since the PR is too old and noone will fix it. Please review & try the patch attached. Also, I thought that confirmed PRs are not to be closed, as the bug still exists. Isn't it what 'suspended' state is for? Regards, Alexey. - -- - -------------------------------+--------------------------------- May the Sun and Water | Regards, Alexey V. Neyman always fall upon you! | mailto: alex.neyman@auriga.ru - -------------------------------+--------------------------------- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE7xZK09lSeDZjilyARAhk4AJ9TujgePR/IWnIlfYLa8foAwXDgWACcClr3 2WG7pQSrnANpdOWC0hZh8Sw= =v+lZ -----END PGP SIGNATURE----- --------------Boundary-00=_OFK13LWOU3XJV6M73E0I Content-Type: text/x-c; charset="koi8-r"; name="indent.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="indent.patch" --- lexi.c.orig Thu Oct 11 16:27:31 2001 +++ lexi.c Thu Oct 11 16:27:42 2001 @@ -209,8 +209,19 @@ } } else - while (chartype[*buf_ptr] == alphanum) { /* copy it over */ + while (chartype[*buf_ptr] == alphanum || *buf_ptr == BACKSLASH) { + /* fill_buffer() terminates buffer with newline */ + if (*buf_ptr == BACKSLASH) { + if (*(buf_ptr + 1) == '\n') { + buf_ptr += 2; + if (buf_ptr >= buf_end) + fill_buffer(); + } + else + break; + } CHECK_SIZE_TOKEN; + /* copy it over */ *e_token++ = *buf_ptr++; if (buf_ptr >= buf_end) fill_buffer(); --------------Boundary-00=_OFK13LWOU3XJV6M73E0I-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 6:30: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E014E37B401 for ; Thu, 11 Oct 2001 06:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BDU1i24517; Thu, 11 Oct 2001 06:30:01 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Oct 2001 06:30:01 -0700 (PDT) Message-Id: <200110111330.f9BDU1i24517@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Will Andrews Subject: Re: bin/31052: Traceroute needs update Reply-To: Will Andrews Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/31052; it has been noted by GNATS. From: Will Andrews To: Kris Kennaway Cc: FreeBSD GNATS DB Subject: Re: bin/31052: Traceroute needs update Date: Thu, 11 Oct 2001 08:19:26 -0500 On Thu, Oct 04, 2001 at 10:50:02PM -0700, Kris Kennaway wrote: > 1.4 alpha 12 by definition isn't release-quality. If it was release > quality, they would call it 1.4. Not a reason not to try it in -CURRENT. Besides, naming conventions are always arbitrary. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 7: 0: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7702137B403 for ; Thu, 11 Oct 2001 07:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BE02i39682; Thu, 11 Oct 2001 07:00:02 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Oct 2001 07:00:02 -0700 (PDT) Message-Id: <200110111400.f9BE02i39682@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Yar Tikhiy" Subject: Re: kern/15478: incorrect utmp/wtmp records update upon connection being interrupted Reply-To: "Yar Tikhiy" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/15478; it has been noted by GNATS. From: "Yar Tikhiy" To: , Cc: Subject: Re: kern/15478: incorrect utmp/wtmp records update upon connection being interrupted Date: Thu, 11 Oct 2001 17:57:08 +0400 As I can see, it's hardly a FreeBSD problem. It's the consequence of some applications (e.g. xterm, rxvt, screen) modifying utmp bogusly. Rxvt and xterm just can't clean up if killed unconditionally. As for screen, it does a Very Bad Thing: It takes a user record out of utmp at startup. Of course, /sbin/init then won't add a logout record to wtmp if the session gets aborted. If I were in your shoes, I'd report that to the author of screen. The instant cure is to remove the set-uid bit from the programs so they won't mess utmp up. If you don't mind, I'd rather close this PR since it has to do nothing with FreeBSD. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 7: 0:14 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1EFC237B406 for ; Thu, 11 Oct 2001 07:00:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BE04439691; Thu, 11 Oct 2001 07:00:04 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Oct 2001 07:00:04 -0700 (PDT) Message-Id: <200110111400.f9BE04439691@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Alexey V.Neyman" Subject: Re: bin/6015: indent(1) breaks source with backslash newline continuation Reply-To: "Alexey V.Neyman" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/6015; it has been noted by GNATS. From: "Alexey V.Neyman" To: schweikh@noc.dfn.de, johan@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Cc: Subject: Re: bin/6015: indent(1) breaks source with backslash newline continuation Date: Thu, 11 Oct 2001 16:38:12 +0400 --------------Boundary-00=_OFK13LWOU3XJV6M73E0I Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 8bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello there! On 11 October 2001 00:28, johan@FreeBSD.org wrote: > Moreover, you should not write your c code like that :-) > Closed since the PR is too old and noone will fix it. Please review & try the patch attached. Also, I thought that confirmed PRs are not to be closed, as the bug still exists. Isn't it what 'suspended' state is for? Regards, Alexey. - -- - -------------------------------+--------------------------------- May the Sun and Water | Regards, Alexey V. Neyman always fall upon you! | mailto: alex.neyman@auriga.ru - -------------------------------+--------------------------------- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE7xZK09lSeDZjilyARAhk4AJ9TujgePR/IWnIlfYLa8foAwXDgWACcClr3 2WG7pQSrnANpdOWC0hZh8Sw= =v+lZ -----END PGP SIGNATURE----- --------------Boundary-00=_OFK13LWOU3XJV6M73E0I Content-Type: text/x-c; charset="koi8-r"; name="indent.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="indent.patch" --- lexi.c.orig Thu Oct 11 16:27:31 2001 +++ lexi.c Thu Oct 11 16:27:42 2001 @@ -209,8 +209,19 @@ } } else - while (chartype[*buf_ptr] == alphanum) { /* copy it over */ + while (chartype[*buf_ptr] == alphanum || *buf_ptr == BACKSLASH) { + /* fill_buffer() terminates buffer with newline */ + if (*buf_ptr == BACKSLASH) { + if (*(buf_ptr + 1) == '\n') { + buf_ptr += 2; + if (buf_ptr >= buf_end) + fill_buffer(); + } + else + break; + } CHECK_SIZE_TOKEN; + /* copy it over */ *e_token++ = *buf_ptr++; if (buf_ptr >= buf_end) fill_buffer(); --------------Boundary-00=_OFK13LWOU3XJV6M73E0I-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 7:27:55 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EBCFC37B403; Thu, 11 Oct 2001 07:27:52 -0700 (PDT) Received: (from yar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BEP6l46532; Thu, 11 Oct 2001 07:25:06 -0700 (PDT) (envelope-from yar) Date: Thu, 11 Oct 2001 07:25:06 -0700 (PDT) From: Message-Id: <200110111425.f9BEP6l46532@freefall.freebsd.org> To: grg@isabase.philol.msu.ru, yar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/17830: /usr/bin/login called from command line doesn't restore the utmp record Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: /usr/bin/login called from command line doesn't restore the utmp record State-Changed-From-To: open->closed State-Changed-By: yar State-Changed-When: Thu Oct 11 07:24:13 PDT 2001 State-Changed-Why: Duplicate of bin/16971 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=17830 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 7:27:56 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7093037B405; Thu, 11 Oct 2001 07:27:53 -0700 (PDT) Received: (from yar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BELLP46003; Thu, 11 Oct 2001 07:21:21 -0700 (PDT) (envelope-from yar) Date: Thu, 11 Oct 2001 07:21:21 -0700 (PDT) From: Message-Id: <200110111421.f9BELLP46003@freefall.freebsd.org> To: ejb@klamath.uucp.legui.org.uk, yar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/26012: FTPD utmp logging support Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: FTPD utmp logging support State-Changed-From-To: open->closed State-Changed-By: yar State-Changed-When: Thu Oct 11 07:16:33 PDT 2001 State-Changed-Why: FTPD logging to utmp will be likely to cause more utmp troubles. BTW, both the originator's address and the host with the patch file have ceased to exist. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=26012 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 7:30: 7 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 78E4337B406 for ; Thu, 11 Oct 2001 07:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BEU1W47042; Thu, 11 Oct 2001 07:30:01 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Oct 2001 07:30:01 -0700 (PDT) Message-Id: <200110111430.f9BEU1W47042@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Yar Tikhiy" Subject: Re: bin/26012: FTPD utmp logging support Reply-To: "Yar Tikhiy" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/26012; it has been noted by GNATS. From: "Yar Tikhiy" To: , Cc: Subject: Re: bin/26012: FTPD utmp logging support Date: Thu, 11 Oct 2001 18:15:32 +0400 The patch cannot be found any more. Where is it now? And is it really big enough to omit it from the bug report text? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 7:40: 5 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A759B37B401 for ; Thu, 11 Oct 2001 07:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BEe2V48362; Thu, 11 Oct 2001 07:40:02 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Oct 2001 07:40:02 -0700 (PDT) Message-Id: <200110111440.f9BEe2V48362@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Yar Tikhiy" Subject: Re: kern/6318: pppd does not update wtmp on hangup Reply-To: "Yar Tikhiy" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/6318; it has been noted by GNATS. From: "Yar Tikhiy" To: , Cc: Subject: Re: kern/6318: pppd does not update wtmp on hangup Date: Thu, 11 Oct 2001 18:32:29 +0400 Does the problem persist in modern FreeBSD versions? The code looks to me like it has been fixed . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 7:45:30 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89E6637B405; Thu, 11 Oct 2001 07:45:28 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BEjL149028; Thu, 11 Oct 2001 07:45:21 -0700 (PDT) (envelope-from ru) Date: Thu, 11 Oct 2001 07:45:21 -0700 (PDT) From: Message-Id: <200110111445.f9BEjL149028@freefall.freebsd.org> To: ru@FreeBSD.org, freebsd-bugs@FreeBSD.org, ru@FreeBSD.org Subject: Re: bin/28002: SHARED=symlinks is broken Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Old Synopsis: make world fails (ref. to ipf) New Synopsis: SHARED=symlinks is broken Responsible-Changed-From-To: freebsd-bugs->ru Responsible-Changed-By: ru Responsible-Changed-When: Thu Oct 11 07:44:25 PDT 2001 Responsible-Changed-Why: I plan to work this out. Somehow... http://www.FreeBSD.org/cgi/query-pr.cgi?pr=28002 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 7:57:55 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A27FA37B403; Thu, 11 Oct 2001 07:57:52 -0700 (PDT) Received: (from yar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BEquQ50188; Thu, 11 Oct 2001 07:52:56 -0700 (PDT) (envelope-from yar) Date: Thu, 11 Oct 2001 07:52:56 -0700 (PDT) From: Message-Id: <200110111452.f9BEquQ50188@freefall.freebsd.org> To: martti.kuparinen@sl.sgn.ellemtel.net, yar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/6318: pppd does not update wtmp on hangup Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: pppd does not update wtmp on hangup State-Changed-From-To: open->closed State-Changed-By: yar State-Changed-When: Thu Oct 11 07:51:59 PDT 2001 State-Changed-Why: The bug has been fixed long ago. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=6318 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 8: 0:59 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id EBE3F37B405 for ; Thu, 11 Oct 2001 08:00:56 -0700 (PDT) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 11 Oct 2001 16:00:56 +0100 (BST) Date: Thu, 11 Oct 2001 16:00:55 +0100 From: David Malone To: yuri.viktarovich@philips.com Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/30781: msgrcv call blocks other pthread's jobs Message-ID: <20011011160055.A43403@walton.maths.tcd.ie> References: <200110111000.f9BA02j71576@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200110111000.f9BA02j71576@freefall.freebsd.org>; from yuri.viktarovich@philips.com on Thu, Oct 11, 2001 at 03:00:02AM -0700 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Oct 11, 2001 at 03:00:02AM -0700, yuri.viktarovich@philips.com wrote: > Anyway shouldn't it be some generic uniform way to wakeup processes/threads > on events working the same way on msgXXX, FDs, process start/end, other events? I guess that would kqueue. Unfortunately, I don't think it understands message queues yet, but it would probably be a useful addition. If it were implimented then that could be used to provide proper threaded msgXXX calls in the library. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 8:17:56 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B8E7937B406; Thu, 11 Oct 2001 08:17:53 -0700 (PDT) Received: (from yar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BFG4j56597; Thu, 11 Oct 2001 08:16:04 -0700 (PDT) (envelope-from yar) Date: Thu, 11 Oct 2001 08:16:04 -0700 (PDT) From: Message-Id: <200110111516.f9BFG4j56597@freefall.freebsd.org> To: ligang@fesco.com.cn, yar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/24944: new execute-file can't running(not found err),unless relogin. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: new execute-file can't running(not found err),unless relogin. State-Changed-From-To: open->closed State-Changed-By: yar State-Changed-When: Thu Oct 11 08:12:15 PDT 2001 State-Changed-Why: It's not a FreeBSD problem, but a *documented* feature of some shells. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24944 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 8:20: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBB5637B403 for ; Thu, 11 Oct 2001 08:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BFK1x57097; Thu, 11 Oct 2001 08:20:01 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Oct 2001 08:20:01 -0700 (PDT) Message-Id: <200110111520.f9BFK1x57097@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Yar Tikhiy" Subject: Re: bin/31049: /usr/sbin/adduser does not allow '.' in login name. [PATCH] Reply-To: "Yar Tikhiy" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/31049; it has been noted by GNATS. From: "Yar Tikhiy" To: , Cc: Subject: Re: bin/31049: /usr/sbin/adduser does not allow '.' in login name. [PATCH] Date: Thu, 11 Oct 2001 19:11:07 +0400 Could you quote POSIX on the characters allowed in usernames? What characters are allowed? This question has to do with the fact that "adduser" and "pw" use inconsistent algorithms of validating a username, so I'd like to fix both. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 8:50:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 280A137B407 for ; Thu, 11 Oct 2001 08:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BFo2261020; Thu, 11 Oct 2001 08:50:02 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Oct 2001 08:50:02 -0700 (PDT) Message-Id: <200110111550.f9BFo2261020@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: "Yar Tikhiy" Subject: Re: bin/19755: nologin not configurable Reply-To: "Yar Tikhiy" Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/19755; it has been noted by GNATS. From: "Yar Tikhiy" To: , Cc: Subject: Re: bin/19755: nologin not configurable Date: Thu, 11 Oct 2001 19:41:11 +0400 First, your solution is by no means secure. Think what would happen if a user linked its ~/.nologin to /etc/master.passwd. Second, have you ever heard of term "creeping featurism"? See http://www.tuxedo.org/~esr/jargon/html/entry/creeping-featurism.html Sorry, but a standard operating system distribution doesn't need to meet your every whim. There are administration tasks that are specific to your site, that you have to do by yourself. Please also take a look at login.access(5). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 9: 0:12 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D058937B403 for ; Thu, 11 Oct 2001 09:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BG02O62523; Thu, 11 Oct 2001 09:00:02 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Oct 2001 09:00:02 -0700 (PDT) Message-Id: <200110111600.f9BG02O62523@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Jim Pirzyk Subject: Re: bin/31049: /usr/sbin/adduser does not allow '.' in login name. [PATCH] Reply-To: Jim Pirzyk Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/31049; it has been noted by GNATS. From: Jim Pirzyk To: "Yar Tikhiy" , Cc: Subject: Re: bin/31049: /usr/sbin/adduser does not allow '.' in login name. [PATCH] Date: Thu, 11 Oct 2001 08:51:36 -0700 On Thursday 11 October 2001 08:11 am, Yar Tikhiy wrote: > Could you quote POSIX on the characters allowed in usernames? > What characters are allowed? This question has to do with the fact > that "adduser" and "pw" use inconsistent algorithms of validating a > username, > so I'd like to fix both. This is grom Garrett: From XBDd6 section 3.426 says: User Name A string that is used to identify a user; see also Section 3.424 (on page 90). To be portable across systems conforming to IEEE Std 1003.1-200x, the value is composed of characters from the portable filename character set. The hyphen should not be used as the first character of a portable user name. - JimP -- --- @(#) $Id: dot.signature,v 1.10 2001/05/17 23:38:49 Jim.Pirzyk Exp $ __o Jim.Pirzyk@disney.com ------------- pirzyk@freebsd.org _'\<,_ Senior Systems Engineer, Walt Disney Feature Animation (*)/ (*) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 9:40:10 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA8E137B403 for ; Thu, 11 Oct 2001 09:40:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BGe3h71115; Thu, 11 Oct 2001 09:40:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Oct 2001 09:40:03 -0700 (PDT) Message-Id: <200110111640.f9BGe3h71115@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Igor Roshchin Subject: Re: kern/15478: incorrect utmp/wtmp records update upon connection being interrupted Reply-To: Igor Roshchin Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/15478; it has been noted by GNATS. From: Igor Roshchin To: freebsd-gnats-submit@FreeBSD.org, str@giganda.komkon.org, yar@comp.chem.msu.su Cc: Subject: Re: kern/15478: incorrect utmp/wtmp records update upon connection being interrupted Date: Thu, 11 Oct 2001 12:33:27 -0400 (EDT) > From yar@comp.chem.msu.su Thu Oct 11 09:57:05 2001 > From: "Yar Tikhiy" > To: , > Subject: Re: kern/15478: incorrect utmp/wtmp records update upon connection being interrupted > Date: Thu, 11 Oct 2001 17:57:08 +0400 > > As I can see, it's hardly a FreeBSD problem. It's the consequence of some > applications (e.g. xterm, rxvt, screen) modifying utmp bogusly. > > Rxvt and xterm just can't clean up if killed unconditionally. > > As for screen, it does a Very Bad Thing: It takes a user record out of utmp > at startup. Of course, /sbin/init then won't add a logout record to wtmp if > the > session gets aborted. If I were in your shoes, I'd report that to the author > of screen. > > The instant cure is to remove the set-uid bit from the programs so they > won't > mess utmp up. > > If you don't mind, I'd rather close this PR since it has to do nothing > with FreeBSD. > First of all, I am not completely sure if the part "2" of the initial PR is still happening on 4.x systems (the one concerning the utmp), while the part 1 (concerning the wtmp) is still valid for sure. I just don't have a conclusive evidence that the part "2" is gone completely. In a presence of the part "2", when utmp has a record of a currently logged user when there are no processes related to the tty in question, your comments about screen and its behavior do not have a complete description of the problem. Removing the set-uid bit is not a good thing. It prevents you from seeing the users on the computer with w(1). Although I see your point, at this moment I am not convinced that this an application-only problem. I believe the system should be able to correct both utmp and wtmp. Thus, I don't think this PR should be closed without a proper fix. From init(8): In multi-user operation, init maintains processes for the terminal ports found in the file ttys(5). .. ... getty opens and initializes the tty line and executes the login(1) program. The login program, when a valid user logs in, executes a shell for that user. When this shell dies, either because the user logged out or an abnormal termination occurred (a signal), the init program wakes up, deletes the user from the utmp(5) file of current users and records the logout in the wtmp(5) file. The cycle is then restarted by init executing a new getty for the line. In the initially reported behavior, the utmp record of a user disconnected was present until somebody else would log in onto the same tty. Then the utmp would get cleared (by init ?), while wtmp record still wouldn't be closed (i.e. logout record is not added). Again, the part "2" of the initial PR might've been fixed in the recent releases. Regardless whether that part was fixed or not, how about some type of check-and-cleanup procedure in init, when it regains the ownership of the tty , and checks if there is a record in utmp, and if not, just adds a logout record to utmp ? Igor PS. This wtmp-related bug reveals a bug in last(1) Interestingly enough, last(1) , depending on the invocation, behaves differently. Note, that "user" is no longer logged in. machine: [12:13] [651] ~>last | grep user user ttypi 64.152.168.61 Thu Oct 11 00:38 - 02:23 (01:44) user ttypt 63.210.212.179 Wed Oct 10 23:19 still logged in user ttypm 209.246.81.251 Tue Oct 9 22:00 - 22:48 (00:47) user ttyq3 209.246.91.243 Thu Oct 4 21:33 still logged in user ttypc 64.152.174.71 Wed Oct 3 18:13 - 18:58 (00:44) machine: [12:13] [652] ~> machine: [12:13] [652] ~>last -10 user user ttypi 64.152.168.61 Thu Oct 11 00:38 - 02:23 (01:44) user ttypt 63.210.212.179 Wed Oct 10 23:19 - 09:18 (09:59) user ttypm 209.246.81.251 Tue Oct 9 22:00 - 22:48 (00:47) user ttyq3 209.246.91.243 Thu Oct 4 21:33 - 17:09 (19:35) ^C interrupted Thu Oct 4 07:19 In the second case it is reporting the logout time of the next user (user2) logged on the same tty later: user2 ttypt 130.91.163.208 Thu Oct 11 09:12 - 09:18 (00:06) This is a bug in last(1) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 11:40:19 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D15BD37B408 for ; Thu, 11 Oct 2001 11:40:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BIe0F96086; Thu, 11 Oct 2001 11:40:00 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB84937B426 for ; Thu, 11 Oct 2001 11:36:52 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BIaqE95698; Thu, 11 Oct 2001 11:36:52 -0700 (PDT) (envelope-from nobody) Message-Id: <200110111836.f9BIaqE95698@freefall.freebsd.org> Date: Thu, 11 Oct 2001 11:36:52 -0700 (PDT) From: Steve Davidson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: i386/31224: XFree4.1 fails to run on Intel i810 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31224 >Category: i386 >Synopsis: XFree4.1 fails to run on Intel i810 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 11 11:40:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Steve Davidson >Release: FreeBSD 4.4 Release >Organization: >Environment: FreeBSD 4.4 Release XFree4.1.0 Dell OptiPlex GX1 (Intel i810) >Description: When running startx, I get the following error. Symbol fbPictureInit from module /usr/X11R6/lib/modules/drivers/i810_drv.o is unresolved! Symbol XAAFillSolidRects from module /usr/X11R6/lib/modules/drivers/i810_drv.o is unresolved! Symbol XAAFillSolidRects from module /usr/X11R6/lib/modules/drivers/i810_drv.o is unresolved! The entire XFree86.0.log log is included: XFree86 Version 4.1.0 / X Window System (protocol Version 11, revision 0, vendor release 6510) Release Date: 2 June 2001 If the server is older than 6-12 months, or if your card is newer than the above date, look for a newer version before reporting problems. (See http://www.XFree86.Org/FAQ) Build Operating System: FreeBSD 4.4-RELEASE i386 [ELF] Module Loader present (==) Log file: "/var/log/XFree86.0.log", Time: Wed Oct 10 08:57:09 2001 (==) Using config file: "/etc/X11/XF86Config" Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) ServerLayout "Simple Layout" (**) |-->Screen "Screen 1" (0) (**) | |-->Monitor "Sun Monitor" (**) | |-->Device "INTEL i810" (**) |-->Input Device "Mouse1" (**) |-->Input Device "Keyboard1" (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xfree86" (**) XKB: rules: "xfree86" (**) Option "XkbModel" "pc104" (**) XKB: model: "pc104" (**) Option "XkbLayout" "us_intl" (**) XKB: layout: "us_intl" (==) Keyboard: CustomKeycode disabled (**) FontPath set to "/usr/X11R6/lib/X11/fonts/local/,/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/ X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/X11R6/lib/X11/fonts/Type1/, /usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" (**) RgbPath set to "/usr/X11R6/lib/X11/rgb" (==) ModulePath set to "/usr/X11R6/lib/modules" (II) xf86ReadBIOS(f8000, e80, Buf, 2)-> db 92 ec f9... (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (II) Module ABI versions: XFree86 ANSI C Emulation: 0.1 XFree86 Video Driver: 0.4 XFree86 XInput driver : 0.2 XFree86 Server Extension : 0.1 XFree86 Font Renderer : 0.2 (II) Loader running on freebsd (II) LoadModule: "bitmap" (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a (II) Module bitmap: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.2 (II) Loading font Bitmap (II) LoadModule: "pcidata" (II) Loading /usr/X11R6/lib/modules/libpcidata.a (II) Module pcidata: vendor="The XFree86 Project" compiled for 4.1.0, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.4 (II) PCI: Probing config type using method 1 (II) PCI: Config type is 1 (II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000 (II) PCI: PCI scan (all values are in hex) (II) PCI: 00:00:0: chip 8086,7124 card 1028,00b4 rev 03 class 06,00,00 hdr 00 (II) PCI: 00:01:0: chip 8086,7125 card 1028,00b4 rev 03 class 03,00,00 hdr 00 (II) PCI: 00:1e:0: chip 8086,2418 card 0000,0000 rev 02 class 06,04,00 hdr 01 (II) PCI: 00:1f:0: chip 8086,2410 card 0000,0000 rev 02 class 06,01,00 hdr 80 (II) PCI: 00:1f:1: chip 8086,2411 card 8086,2411 rev 02 class 01,01,80 hdr 00 (II) PCI: 00:1f:2: chip 8086,2412 card 8086,2412 rev 02 class 0c,03,00 hdr 00 (II) PCI: 00:1f:3: chip 8086,2413 card 8086,2413 rev 02 class 0c,05,00 hdr 00 (II) PCI: 00:1f:5: chip 8086,2415 card 1028,00b4 rev 02 class 04,01,00 hdr 00 (II) PCI: 01:0c:0: chip 10b7,9200 card 1028,00b4 rev 78 class 02,00,00 hdr 00 (II) PCI: End of PCI scan (II) LoadModule: "scanpci" (II) Loading /usr/X11R6/lib/modules/libscanpci.a (II) Module scanpci: vendor="The XFree86 Project" compiled for 4.1.0, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.4 (II) UnloadModule: "scanpci" (II) Unloading /usr/X11R6/lib/modules/libscanpci.a (II) Host-to-PCI bridge: (II) PCI-to-ISA bridge: (II) PCI-to-PCI bridge: (II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set) (II) Bus 0 I/O range: [0] -1 0x00000000 - 0x0000ffff (0x10000) IX[B] (II) Bus 0 non-prefetchable memory range: [0] -1 0x00000000 - 0xffffffff (0x0) MX[B] (II) Bus 0 prefetchable memory range: [0] -1 0x00000000 - 0xffffffff (0x0) MX[B] (II) Bus 1: bridge is at (0:30:0), (0,1,1), BCTRL: 0x06 (VGA_EN is cleared) (II) Bus 1 I/O range: [0] -1 0x0000e000 - 0x0000e0ff (0x100) IX[B] [1] -1 0x0000e400 - 0x0000e4ff (0x100) IX[B] [2] -1 0x0000e800 - 0x0000e8ff (0x100) IX[B] [3] -1 0x0000ec00 - 0x0000ecff (0x100) IX[B] (II) Bus 1 non-prefetchable memory range: [0] -1 0xfd000000 - 0xfeffffff (0x2000000) MX[B] (II) Bus 1 prefetchable memory range: (II) Bus -1: bridge is at (0:31:0), (0,-1,0), BCTRL: 0x08 (VGA_EN is set) (II) Bus -1 I/O range: (II) Bus -1 non-prefetchable memory range: (II) Bus -1 prefetchable memory range: (--) PCI:*(0:1:0) Intel i810e rev 3, Mem @ 0xf8000000/26, 0xff000000/19 (II) Addressable bus resource ranges are [0] -1 0x00000000 - 0xffffffff (0x0) MX[B] [1] -1 0x00000000 - 0x0000ffff (0x10000) IX[B] (II) OS-reported resource ranges: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [6] -1 0x00000000 - 0x000000ff (0x100) IX[B] (II) Active PCI resource ranges: [0] -1 0xfdfffc00 - 0xfdffffff (0x400) MX[B]E [1] -1 0xff000000 - 0xff07ffff (0x80000) MX[B](B) [2] -1 0xf8000000 - 0xfbffffff (0x4000000) MX[B](B) [3] -1 0x0000ec80 - 0x0000ecff (0x80) IX[B]E [4] -1 0x0000dc80 - 0x0000dcff (0x80) IX[B]E [5] -1 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [6] -1 0x0000dcd0 - 0x0000dcdf (0x10) IX[B]E [7] -1 0x0000ff80 - 0x0000ffff (0x80) IX[B]E [8] -1 0x0000ffa0 - 0x0000ffbf (0x20) IX[B]E (II) PCI I/O resource overlap reduced 0x0000dc80 from 0x0000dcff to 0x0000dcbf (II) PCI I/O resource overlap reduced 0x0000ff80 from 0x0000ffff to 0x0000ff9f (II) Active PCI resource ranges after removing overlaps: [0] -1 0xfdfffc00 - 0xfdffffff (0x400) MX[B]E [1] -1 0xff000000 - 0xff07ffff (0x80000) MX[B](B) [2] -1 0xf8000000 - 0xfbffffff (0x4000000) MX[B](B) [3] -1 0x0000ec80 - 0x0000ecff (0x80) IX[B]E [4] -1 0x0000dc80 - 0x0000dcbf (0x40) IX[B]E [5] -1 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [6] -1 0x0000dcd0 - 0x0000dcdf (0x10) IX[B]E [7] -1 0x0000ff80 - 0x0000ff9f (0x20) IX[B]E [8] -1 0x0000ffa0 - 0x0000ffbf (0x20) IX[B]E (II) OS-reported resource ranges after removing overlaps with PCI: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [6] -1 0x00000000 - 0x000000ff (0x100) IX[B] (II) All system resource ranges: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0xfdfffc00 - 0xfdffffff (0x400) MX[B]E [6] -1 0xff000000 - 0xff07ffff (0x80000) MX[B](B) [7] -1 0xf8000000 - 0xfbffffff (0x4000000) MX[B](B) [8] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [9] -1 0x00000000 - 0x000000ff (0x100) IX[B] [10] -1 0x0000ec80 - 0x0000ecff (0x80) IX[B]E [11] -1 0x0000dc80 - 0x0000dcbf (0x40) IX[B]E [12] -1 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [13] -1 0x0000dcd0 - 0x0000dcdf (0x10) IX[B]E [14] -1 0x0000ff80 - 0x0000ff9f (0x20) IX[B]E [15] -1 0x0000ffa0 - 0x0000ffbf (0x20) IX[B]E (II) LoadModule: "dbe" (II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a (II) Module dbe: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 Module class: XFree86 Server Extension ABI class: XFree86 Server Extension, version 0.1 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "extmod" (II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a (II) Module extmod: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 Module class: XFree86 Server Extension ABI class: XFree86 Server Extension, version 0.1 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension DPMS (II) Loading extension FontCache (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) LoadModule: "type1" (II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a (II) Module type1: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.2 (II) Loading font Type1 (II) Loading font CID (II) LoadModule: "freetype" (II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a (II) Module freetype: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.1.9 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.2 (II) Loading font FreeType (II) LoadModule: "i810" (II) Loading /usr/X11R6/lib/modules/drivers/i810_drv.o (II) Module i810: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 Module class: XFree86 Video Driver ABI class: XFree86 Video Driver, version 0.4 (II) LoadModule: "mouse" (II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o (II) Module mouse: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 Module class: XFree86 XInput Driver ABI class: XFree86 XInput driver, version 0.2 (II) I810: Driver for Intel i810 chipset: i810, i810-dc100, i810e, i815 (II) Primary Device is: PCI 00:01:0 (--) Chipset i810e found (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0xfdfffc00 - 0xfdffffff (0x400) MX[B]E [6] -1 0xff000000 - 0xff07ffff (0x80000) MX[B](B) [7] -1 0xf8000000 - 0xfbffffff (0x4000000) MX[B](B) [8] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [9] -1 0x00000000 - 0x000000ff (0x100) IX[B] [10] -1 0x0000ec80 - 0x0000ecff (0x80) IX[B]E [11] -1 0x0000dc80 - 0x0000dcbf (0x40) IX[B]E [12] -1 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [13] -1 0x0000dcd0 - 0x0000dcdf (0x10) IX[B]E [14] -1 0x0000ff80 - 0x0000ff9f (0x20) IX[B]E [15] -1 0x0000ffa0 - 0x0000ffbf (0x20) IX[B]E (II) resource ranges after probing: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0xfdfffc00 - 0xfdffffff (0x400) MX[B]E [6] -1 0xff000000 - 0xff07ffff (0x80000) MX[B](B) [7] -1 0xf8000000 - 0xfbffffff (0x4000000) MX[B](B) [8] 0 0x000a0000 - 0x000affff (0x10000) MS[B] [9] 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [10] 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [11] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [12] -1 0x00000000 - 0x000000ff (0x100) IX[B] [13] -1 0x0000ec80 - 0x0000ecff (0x80) IX[B]E [14] -1 0x0000dc80 - 0x0000dcbf (0x40) IX[B]E [15] -1 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [16] -1 0x0000dcd0 - 0x0000dcdf (0x10) IX[B]E [17] -1 0x0000ff80 - 0x0000ff9f (0x20) IX[B]E [18] -1 0x0000ffa0 - 0x0000ffbf (0x20) IX[B]E [19] 0 0x000003b0 - 0x000003bb (0xc) IS[B] [20] 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Setting vga for screen 0. (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/X11R6/lib/modules/libvgahw.a (II) Module vgahw: vendor="The XFree86 Project" compiled for 4.1.0, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.4 (**) I810(0): Depth 16, (--) framebuffer bpp 16 (==) I810(0): RGB weight 565 (==) I810(0): Default visual is TrueColor (II) Loading sub module "vbe" (II) LoadModule: "vbe" (II) Loading /usr/X11R6/lib/modules/libvbe.a (II) Module vbe: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.4 (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/X11R6/lib/modules/libint10.a (II) Module int10: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.4 (II) I810(0): initializing int10 (==) I810(0): Write-combining range (0xa0000,0x20000) was already clear (==) I810(0): Write-combining range (0xf0000,0x10000) (II) xf86ReadBIOS(0, 0, Buf, 600)-> 8e b0 00 f0... (II) xf86ReadBIOS(c0000, 0, Buf, 10000)-> 55 aa 40 eb... (II) xf86ReadBIOS(d0000, 0, Buf, 10000)-> ff ff ff ff... (II) xf86ReadBIOS(e0000, 0, Buf, 10000)-> 07 00 60 06... (II) I810(0): Primary V_BIOS segment is: 0xc000 (II) I810(0): VESA BIOS detected (II) I810(0): VESA VBE Version 2.0 (II) I810(0): VESA VBE Total Mem: 1024 kB (II) I810(0): VESA VBE OEM: Intel810(TM) Graphics Chip Accelerated VGA BIOS (II) I810(0): VESA VBE OEM Software Rev: 2.20 (II) I810(0): VESA VBE OEM Vendor: <8E> (II) I810(0): VESA VBE OEM Product: <8E> (II) I810(0): VESA VBE OEM Product Rev: <8E> (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Loading /usr/X11R6/lib/modules/libddc.a (II) Module ddc: vendor="The XFree86 Project" compiled for 4.1.0, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.4 Symbol fbPictureInit from module /usr/X11R6/lib/modules/drivers/i810_drv.o is unresolved! Symbol XAAFillSolidRects from module /usr/X11R6/lib/modules/drivers/i810_drv.o is unresolved! Symbol XAAFillSolidRects from module /usr/X11R6/lib/modules/drivers/i810_drv.o is unresolved! Fatal server error: Caught signal 11. Server aborting When reporting a problem related to a server crash, please send the full server output, not just the last messages. This can be found in the log file "/var/log/XFree86.0.log". Please report problems to xfree86@xfree86.org. % scanpci pci bus 0x0 cardnum 0x00 function 0x0000: vendor 0x8086 device 0x7124 Intel i810e Bridge pci bus 0x0 cardnum 0x01 function 0x0000: vendor 0x8086 device 0x7125 Intel i810e pci bus 0x0 cardnum 0x1e function 0x0000: vendor 0x8086 device 0x2418 Intel Device unknown pci bus 0x0 cardnum 0x1f function 0x0000: vendor 0x8086 device 0x2410 Intel Device unknown pci bus 0x0 cardnum 0x1f function 0x0001: vendor 0x8086 device 0x2411 Intel Device unknown pci bus 0x0 cardnum 0x1f function 0x0002: vendor 0x8086 device 0x2412 Intel Device unknown pci bus 0x0 cardnum 0x1f function 0x0003: vendor 0x8086 device 0x2413 Intel Device unknown pci bus 0x0 cardnum 0x1f function 0x0005: vendor 0x8086 device 0x2415 Intel Device unknown pci bus 0x1 cardnum 0x0c function 0x0000: vendor 0x10b7 device 0x9200 3COM Device unknown >How-To-Repeat: Install 4.4 Release Do a cvsupdate to latest (Oct 9, 2001) cd /usr/ports/X11/XFree86-4 make install ...works Rebuild the kernel with "device agp", reboot. Configure X with i810 driver. Here is a segment of the XF86config file: Section "Device" Identifier "INTEL i810" Driver "i810" BusID "PCI:0:1:0" #VideoRam 256 # Insert Clocks lines here if appropriate EndSection >Fix: Unknown but the i810 is reputed to work with XFree86-4.1.0. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 13:40: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A0FFD37B407 for ; Thu, 11 Oct 2001 13:40:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BKe4v17226; Thu, 11 Oct 2001 13:40:04 -0700 (PDT) (envelope-from gnats) Received: from cdn4.research.att.com (H-135-207-14-39.research.att.com [135.207.14.39]) by hub.freebsd.org (Postfix) with ESMTP id DCF3637B406 for ; Thu, 11 Oct 2001 13:36:41 -0700 (PDT) Received: (from chuck@localhost) by cdn4.research.att.com (8.11.6/8.11.6) id f9C0XsR89165; Thu, 11 Oct 2001 20:33:54 -0400 (EDT) (envelope-from chuck) Message-Id: <200110120033.f9C0XsR89165@cdn4.research.att.com> Date: Thu, 11 Oct 2001 20:33:54 -0400 (EDT) From: Chuck Cranor Reply-To: Chuck Cranor To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: misc/31225: "make release" fails if TERMCAP environment variable not set Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31225 >Category: misc >Synopsis: "make release" fails if TERMCAP environment variable not set >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 11 13:40:04 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Chuck Cranor >Release: FreeBSD 4.4-STABLE i386 >Organization: AT&T Labs -- Research >Environment: System: FreeBSD cdn4.research.att.com 4.4-STABLE FreeBSD 4.4-STABLE #1: Mon Oct 8 19:31:30 EDT 2001 chuck@cdn4.research.att.com:/a/chuck/44s-kern/src/sys/compile/GENERIC_SMP i386 >Description: "make release" fails if $TERMCAP not set: make release BUILDNAME=4.4-RELEASE CHROOTDIR=/a/build/sep01/root RELEASETAG=RE LENG_4_4_0_RELEASE rm -rf /a/build/sep01/root 2>/dev/null chflags -R noschg /a/build/sep01/root/. chflags: /a/build/sep01/root/.: No such file or directory *** Error code 1 (ignored) rm -rf /a/build/sep01/root mkdir -p /a/build/sep01/root >How-To-Repeat: unsetenv TERMCAP cd /usr/src/release make release ... >Fix: make release really shouldn't require a terminal database, but you can set it in the "/mk" script in the chroot area. >Release-Note: >Audit-Trail: >Unformatted: >>> make release started on Thu Oct 11 23:40:25 GMT 2001 ... ===> share/tabset uudecode < /usr/src/share/tabset/3101.uu uudecode < /usr/src/share/tabset/9837.uu uudecode < /usr/src/share/tabset/aa.uu uudecode < /usr/src/share/tabset/aed512.uu uudecode < /usr/src/share/tabset/beehive.uu uudecode < /usr/src/share/tabset/diablo.uu uudecode < /usr/src/share/tabset/dtc382.uu uudecode < /usr/src/share/tabset/hp700-wy.uu uudecode < /usr/src/share/tabset/ibm3101.uu uudecode < /usr/src/share/tabset/std.uu uudecode < /usr/src/share/tabset/stdcrt.uu uudecode < /usr/src/share/tabset/tandem653.uu uudecode < /usr/src/share/tabset/teleray.uu uudecode < /usr/src/share/tabset/vt100.uu uudecode < /usr/src/share/tabset/vt100-w.uu uudecode < /usr/src/share/tabset/wyse-adds.uu uudecode < /usr/src/share/tabset/xerox1720.uu uudecode < /usr/src/share/tabset/xerox1730.uu uudecode < /usr/src/share/tabset/xerox1730-lm.uu uudecode < /usr/src/share/tabset/zenith29.uu ===> share/termcap TERM=dumb ex - /usr/src/share/termcap/termcap.src < /usr/src/share/termcap/reord er > /dev/null ex: No terminal database found *** Error code 1 Stop in /usr/src/share/termcap. *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 14:27:57 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB1DB37B403; Thu, 11 Oct 2001 14:27:53 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BLRmh27081; Thu, 11 Oct 2001 14:27:48 -0700 (PDT) (envelope-from johan) Date: Thu, 11 Oct 2001 14:27:48 -0700 (PDT) From: Message-Id: <200110112127.f9BLRmh27081@freefall.freebsd.org> To: schweikh@noc.dfn.de, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, schweikh@FreeBSD.org Subject: Re: bin/6015: indent(1) breaks source with backslash newline continuation Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: indent(1) breaks source with backslash newline continuation State-Changed-From-To: closed->open State-Changed-By: johan State-Changed-When: Thu Oct 11 11:40:59 PDT 2001 State-Changed-Why: We actually got a patch, thanks. Jens is now a committer and can have a look at the attached patch. Responsible-Changed-From-To: freebsd-bugs->schweikh Responsible-Changed-By: johan Responsible-Changed-When: Thu Oct 11 11:40:59 PDT 2001 Responsible-Changed-Why: http://www.FreeBSD.org/cgi/query-pr.cgi?pr=6015 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 14:48: 0 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 32EDB37B407; Thu, 11 Oct 2001 14:47:58 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BLia329376; Thu, 11 Oct 2001 14:44:36 -0700 (PDT) (envelope-from johan) Date: Thu, 11 Oct 2001 14:44:36 -0700 (PDT) From: Message-Id: <200110112144.f9BLia329376@freefall.freebsd.org> To: naddy@mips.rhein-neckar.de, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/11205: Suggestion: move mt(1) to /bin Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Suggestion: move mt(1) to /bin State-Changed-From-To: open->feedback State-Changed-By: johan State-Changed-When: Thu Oct 11 14:43:00 PDT 2001 State-Changed-Why: In PR 18312 (http://www.FreeBSD.org/cgi/query-pr.cgi?pr=18312) it was suggested to use 'restore -s' instead as a solution to this problem. Will that work for you as well? http://www.FreeBSD.org/cgi/query-pr.cgi?pr=11205 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 14:57:56 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A545C37B401; Thu, 11 Oct 2001 14:57:53 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BLoSC30247; Thu, 11 Oct 2001 14:50:28 -0700 (PDT) (envelope-from johan) Date: Thu, 11 Oct 2001 14:50:28 -0700 (PDT) From: Message-Id: <200110112150.f9BLoSC30247@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, re@FreeBSD.org Subject: Re: bin/12712: release/Makefile: mounting /some/dir with nodev option Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: release/Makefile: mounting /some/dir with nodev option Responsible-Changed-From-To: freebsd-bugs->re Responsible-Changed-By: johan Responsible-Changed-When: Thu Oct 11 14:49:03 PDT 2001 Responsible-Changed-Why: vn has been replaced by md in the Makefile. However, I think the release engineers know if this is a problem with md as well. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=12712 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 14:57:58 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E941237B406; Thu, 11 Oct 2001 14:57:53 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BLrBL30533; Thu, 11 Oct 2001 14:53:11 -0700 (PDT) (envelope-from johan) Date: Thu, 11 Oct 2001 14:53:11 -0700 (PDT) From: Message-Id: <200110112153.f9BLrBL30533@freefall.freebsd.org> To: eric@estinc.com, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, wpaul@FreeBSD.org Subject: Re: kern/12966: receiver lockups in vr0 driver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: receiver lockups in vr0 driver State-Changed-From-To: open->feedback State-Changed-By: johan State-Changed-When: Thu Oct 11 14:51:46 PDT 2001 State-Changed-Why: Is this still a problem in more recent versions of FreeBSD (e.g 4.4-RELSEASE)? Over to vr maintainer. Responsible-Changed-From-To: freebsd-bugs->wpaul Responsible-Changed-By: johan Responsible-Changed-When: Thu Oct 11 14:51:46 PDT 2001 Responsible-Changed-Why: http://www.FreeBSD.org/cgi/query-pr.cgi?pr=12966 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 15: 7:55 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6372E37B407; Thu, 11 Oct 2001 15:07:53 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BM7Qi36283; Thu, 11 Oct 2001 15:07:26 -0700 (PDT) (envelope-from johan) Date: Thu, 11 Oct 2001 15:07:26 -0700 (PDT) From: Message-Id: <200110112207.f9BM7Qi36283@freefall.freebsd.org> To: naddy@mips.rhein-neckar.de, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/11205: Suggestion: move mt(1) to /bin Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Suggestion: move mt(1) to /bin State-Changed-From-To: feedback->closed State-Changed-By: johan State-Changed-When: Thu Oct 11 15:06:31 PDT 2001 State-Changed-Why: Mail to submitter bounces and this PR has been superseeded by PR 18312 which is closed. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=11205 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 15:17:56 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB16937B401; Thu, 11 Oct 2001 15:17:54 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BMECt37709; Thu, 11 Oct 2001 15:14:12 -0700 (PDT) (envelope-from johan) Date: Thu, 11 Oct 2001 15:14:12 -0700 (PDT) From: Message-Id: <200110112214.f9BMECt37709@freefall.freebsd.org> To: joelh@gnu.org, johan@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/16971: Exiting from /usr/sbin/login does not restore utmp Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Exiting from /usr/sbin/login does not restore utmp State-Changed-From-To: open->closed State-Changed-By: johan State-Changed-When: Thu Oct 11 15:13:27 PDT 2001 State-Changed-Why: Kind of duplicate of PR 5483. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=16971 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 15:20: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0C5B37B406 for ; Thu, 11 Oct 2001 15:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9BMK2d38436; Thu, 11 Oct 2001 15:20:02 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Oct 2001 15:20:02 -0700 (PDT) Message-Id: <200110112220.f9BMK2d38436@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: bin/5483: Login(1) clears utmp entry Reply-To: Johan Karlsson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/5483; it has been noted by GNATS. From: Johan Karlsson To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: bin/5483: Login(1) clears utmp entry Date: Fri, 12 Oct 2001 00:16:34 +0200 This was (is?) still a problem in 4-current, see PR 16971 -- Johan Karlsson mailto:k@numeri.campus.luth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 18:40: 8 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1CEBC37B40C for ; Thu, 11 Oct 2001 18:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9C1e2374333; Thu, 11 Oct 2001 18:40:02 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 177E637B408 for ; Thu, 11 Oct 2001 18:33:15 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9C1XFt73739; Thu, 11 Oct 2001 18:33:15 -0700 (PDT) (envelope-from nobody) Message-Id: <200110120133.f9C1XFt73739@freefall.freebsd.org> Date: Thu, 11 Oct 2001 18:33:15 -0700 (PDT) From: Pavel Antonov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: bin/31228: vnconfig -ae configures but not mount devices specified in /etc/vntab. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31228 >Category: bin >Synopsis: vnconfig -ae configures but not mount devices specified in /etc/vntab. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 11 18:40:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Pavel Antonov >Release: 4.4 >Organization: DSI >Environment: FreeBSD lilo.icc.ru 4.4-RC FreeBSD 4.4-RC #0: Sun Oct 7 09:56:38 IRKST 2001 holly@lilo.icc.ru:/usr/src/sys/compile/LILO i386 >Description: lilo# more /etc/vntab /dev/vn0c /disk/vservers/195.206.40.165/vn0.195.206.40.165 mount=/disk/vservers/195.206.40.165/mp lilo# vnconfig -ae vnconfig: mount: Device busy lilo# /dev/vn0c now configured, if i mount manual all ok ... >How-To-Repeat: >Fix: lilo# diff -u vnconfig.c.orig vnconfig.c --- vnconfig.c.orig Thu Oct 11 19:42:06 2001 +++ vnconfig.c Fri Oct 12 10:29:34 2001 @@ -436,6 +436,7 @@ printf("%s: flags now=%08lx\n",dev,l); } + fclose(f); /* * Enable special functions on the device */ @@ -461,7 +462,6 @@ } } /* done: */ - fclose(f); fflush(stdout); return(rv < 0); } lilo# >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 20:31: 7 2001 Delivered-To: freebsd-bugs@freebsd.org Received: from mail.aalbaek.com (port126.ds1-van.adsl.cybercity.dk [217.157.140.131]) by hub.freebsd.org (Postfix) with SMTP id E631F37B405 for ; Thu, 11 Oct 2001 20:30:37 -0700 (PDT) Received: from ksbyr.Email.cz (209.134.34.38) by mail.aalbaek.com with MERCUR-SMTP/POP3/IMAP4-Server (v3.30.03 FC-8388608) for ; Fri, 12 Oct 2001 05:00:35 +0200 From: wyove@Email.cz Reply-To: kdzlukdtxl@zxmail.com To: freebsd-newbies@freebsd.org Subject: What Have You Been Smokin'? bfcip Date: Fri, 12 Oct 2001 05:00:35 +0200 Message-Id: <011012050035112200@mail.aalbaek.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Now Offering for your "Sensitive" Delight ... NEW & IMPROVED *** KATHMANDU 2 *** Thanks to recent dramatic advances in the laboratorial processes for the extraction of botanical/herbal alkaloids and glycocides, we are now able to offer what has already been the most incredibly potent marijuana/cannabis alternative available on the planet .... KATHMANDU TEMPLE KIFF!!! It is NEW, IMPROVED and 20 times more stokin'-tokin' potent in its formulation. KATHMANDU 2 ... a viripotent cannabis alternative for blissful regressions of vexatious depressions... * BURNS AND SMOKES EASIER! * TOKES DEEPER! * TASTES SWEETER! * LASTS LONGER! Kathmandu Temple Kiff is a proprietary; Nepalese, sensitive, pipe-smoking/stoking substance. Kathmandu Temple Kiff is indeed the most substantial marijuana/cannabis alternative on the planet. Absolutely Legal! Marvelously Potent! Kathmandu Temple Kiff possesses all of the positive virtues fine ganja/cannabis without any of the negatives. An amalgamation of high concentrates of rare euphoric herbas, Kathmandu is offered in a solid jigget/bar format and is actually more UPLIFTING & POISED than cannabis / marijuana while rendering Euphoria, Happiness, Mood-Enhancement, Stress/Depression Relief and promoting contemplativeness, creativity, better sleep, lucid dreaming ... and enhancing the sexual experience!!! Kathmandu Temple Kiff is simply the best and just a little pinch/snippet of the Kathmandu goes a long, "sensitive" way. Just 4 or 5 draws of the pipe ... (an herb pipe included with each package of Kathmandu Temple Kiff). PLEASE NOTE: Although no botanical factor in Kathmandu Temple Kiff is illegal or considered to be harmful by regulatory agencies and no tobacco is included therein, it is the policy of our company that Kathmandu Temple Kiff may not be offered or sold to any person that has not attained at least 21 years of age. So power-smokin potent is our new formulation, that much to our delight and actually even to our amazement, we have even be able to establish a very happy clientele within the hard core stoner market. Here is what our customers are saying about Kathmandu Temple Kiff: "Thank you so much for the Temple Kiff. It is everything you guys claim, and then some! I was a bit skeptical when I read your description of its effects, but there is literally no exaggeration in your advertisements. How nice that this is legal! It tastes great and feels great too! I am so glad I took a chance and ordered. Blessings to all of you." -- Frankie R. "I'm a man of my 40's and I really know my stuff. I don't drink or do illegal drugs anymore and have found a much more spiritual path. I used to have to take Valium in the past. Not anymore with the Temple Kiff. It really amazes me how this stuff tastes exactly like the lebanese red and blond hash I used to smoke in the 70's and it has a much more pleasurable effect. I am very satisfied with this product. I like it a lot and will be a customer for life for sure. Whoever makes this stuff is an ARTIST at it. Who would have thought?! Folks, this is the real stuff! Look no further!!" -- A.J. ************************************************************ Our other fine herbal, botanical products include the following: 1. Sweet Vjestika Aphrodisia Drops (tm); An erotic aphrodisia; sexual intensifier / enhancer liquid amalgamated extract for MEN and WOMEN. 2. "Seventh Heaven" Prosaka Tablets (tm); a botanical alternative to pharmaceutical medications for calm, balance, serenity and joyful living... 3. "Seventh Heaven" Gentle Ferocity Tablets (tm); a most efficacious, non-caffeine, non-ephedrine, non-MaHuang botanical energizer and cutting-edge appetite suppressant... 4. Extreme Martial Arts Botanical Remedies; Equivalence Tablets & Dragon Wing Remedy Spray ... pain management that works to alleviate pain even for arthritis and fibromyalgia sufferers... ********************************************* Sweet Vjestika Aphrodisia Drops (tm) inspires and enhances: * Penile & clitoral sensitivity * Sensitivity to touch * Desire to touch and be touched * Fantasy, lust, rapture, erogenous sensitivity ... * Prolongs and intensifies foreplay, orgasm & climax ********************************************* "Seventh Heaven" Prosaka Tablets ... Entirely natural, proprietary, botanical prescription comprised of uncommon Asian Herbs for Calm, Balance, Serenity and Joyful Living. "Seventh Heaven" Prosaka is indeed a most extraordinary, viripotent, calming, centering, mood-enhancing, holistically-formulated, exotic herbaceous alternative to pharmaceutical medications for depression, anxiety, stress, insomnia, etc. NO side effects! NO dependency! Vivaciously Mellow! ********************************************** "Seventh Heaven" Gentle Ferocity Tablets (tm) ... a non-caffeine, non-ephedrine, non-ephedra, non-MaHuang; viripotent, herbaceous prescription for the dynamic energization of body, mind and spirit. This Gentle Ferocity Formulation is amalgamated in accordance with the fundamental Taoist herbal principle of botanical interactiveness and precursorship which in essence is a molecular equation of the relevant botanical/herbal alkaloids and glycosides interacting with one another to prolificate molecular communion and thereby to achieve demonstrative herbal efficaciousness without negative implication to any aspect of human composition. These Gentle Ferocity Cordial Tablets are incredulously and thoroughly effective. Enjoy! For those of you who seek to achieve most demonstrative/non-invasive/non-prohibitive appetite suppression without the negative implications of ongoing usage of MaHuang Herb, Ephedra/Ephedrine or Caffeine as are so magnaminously utilized in a multitude of herbal "diet aids" entitled as "Thermogenics" ... this is ABSOLUTELY the herbal agenda/product for you!! Entirely Natural! Increases Energy! Increases Metabolism! Decreases Appetite! *********************************************** Extreme Martial Arts Botanical Remedies Eastern culture has long had a treatment for bone, muscle, tendon, ligament, sinew and joint distress, traumas, afflictions and constrictions. We are pleased to offer Equivalence Tablets & Dragon Wing Remedy Spray (Hei Ping Shun) (Hei Long Chibang) PLEASE NOTE: While it is true that all physiological traumas and injuries are unique and that no product can arbitrarily eliminate all of the pain and discomfort in all people all of the time, the combination of Equivalence Tablets (Hei Ping Shun) and Dragon Wing Remedy (Hei Long Chibang) remedial botanicals does guarantee to at the least: 1. Significantly reduce discomfort and pain! (In many instances most, if not all, traumas and distress can be eliminated!) 2. Significantly increase mobility and strength ratio. (Please remember also the significance of proper diet, excercise, rest and prayer.) Equivalence Tablets & Dragon Wing Spray Remedials are comprised of entirely natural botanical factors. While Equivalence Tablets (Hei Ping Shun) and Dragon Wing Remedy Spray (Hei Long Chibang) are extremely effective individually, they are utilized to maximum advantage when used in conjunction with one another. ======================================================== PRICING INFORMATION: 1. SEVENTH HEAVEN KATHMANDU TEMPLE KIFF (tm) One .75 oz. jigget/bar $65.00 One 2.0 oz. jigget/bar $115.00 (Free Capillaris Herba with 2.0 oz. bar. Refer to Capillaris paragraph at end of text) 2. SWEET VJESTIKA APHRODISIA DROPS (tm) One 1.0 oz. bottle $90.00 Two 1.0 oz. bottles $140.00 3. SEVENTH HEAVEN PROSAKA (tm) One 100 tablet tin $40.00 Three 100 tablet tins $105.00 Six 100 tablet tins $185.00 4. SEVENTH HEAVEN GENTLE FEROCITY (tm) One 300 tablet jar $130.00 5. Equivalence Tablets - Each bottle contains 90 - 500mg tablets. ** 3-pack (270 tablets) $83.00 ** 6-pack (540 tablets) $126.00 (save $40.00) ** 9-pack (810 tablets) $159.00 (save $90.00) ** 12-pack (1,080 tablets) $192.00 (save $140.00) 6. Dragon Wing Spray Remedy - Each spray bottle contains 4 liquid oz. ** 3-pack (3 - 4 oz. bottles) $83.00 ** 6-pack (6 - 4 oz. bottles) $126.00 (save $40.00) ** 9-pack (9 - 4 oz. bottles) $159.00 (save $90.00) ** 12-pack (12 - 4 oz. bottles) $192.00 (save $140.00) 7. Dynamic Duo Introductory Offers ** 3-pack Equivalence Tabs & 3-pack Dragon Wing $126.00 (save $40.00) ** 6-pack Equivalence Tabs & 3-pack Dragon Wing $159.00 (save $50.00) ** 9-pack Equivalence Tabs & 6-pack Dragon Wing $215.00 (save $70.00) ** 12-pack Equivalence Tabs & 9-pack Dragon Wing $271.00 (save $80.00) 8. SWEET APHRODISIA INTRO COMBINATION OFFER Includes one, 2.0 oz. jigget/bar of Kathmandu Temple Kiff & one, 1 oz. bottle of Sweet Vjestika Aphrodisia Drops. For $150.00 (Reg. $205.00 Save $55) (Free Capillaris Herba with this intro offer. Refer to Capillaris paragraph at end of text) 9. BODY, MIND, SPIRIT "HEAVENLY" INTRO COMBINATION OFFER Includes one, 2.0 oz. jigget/bar of Kathmandu Temple Kiff & 1 tin (100 tablets) of Seventh Heaven Prosaka. For $125.00 (Reg. $155.00 Save $30) (Free Capillaris Herba with this intro offer. Refer to Capillaris paragraph at end of text) 10. "PURE ENERGY" INTRO COMBINATION OFFER Includes one, 2.0 oz. jigget/bar of Kathmandu Temple Kiff & 1 jar (300 tablets) of Seventh Heaven Gentle Ferocity. For $170.00 (Reg. $245.00 Save $75) (Free Capillaris Herba with this intro offer Refer to Capillaris paragraph at end of text) 11. "SENSITIVE" PREFERENTIAL INTRO COMBINATION OFFER Includes one, 2.0 oz. jigget/bar of Kathmandu Temple Kiff & 1 tin (100 tablets) of Seventh Heaven Prosaka & 1 jar (300 tablets) of Seventh Heaven Gentle Ferocity For $200.00 (Reg. $285.00 Save $85) (Free Capillaris Herba with this intro offer Refer to Capillaris paragraph at end of text.) 12. ULTIMATE HERBACEOUSNESS INTRO COMBINATION OFFER Includes one - 2.0 oz. jigget / bar of Kathmandu Temple Kiff, one - 1 oz. bottle of Sweet Vjestika Aphrodisia Drops, one - 100 tablet tin of Prosaka, and one - 300 count jar of Gentle Ferocity for a deep discounted Retail Price of $260.00 (Reg. $375.00 Save $115) (Free Capillaris Herba with this intro offer Refer to Capillaris paragraph at end of text.) SPECIAL OFFER: For a limited time only, you will receive a FREE personal brass hookah with the Ultimate Herbaceous Intro Offer as our gift to you. This hookah has a retail value of $25.00. ************************************************** ORDERING INFORMATION: For your convenience, you can call us direct with your orders or questions. Call 1-719-686-1161 Monday - Friday -- 10:30 AM to 7:00 PM (Mountain Time) Saturday -- 11:00 AM to 3:00 PM (Mountain Time) For all domestic orders, add $5.00 shipping & handling (shipped U.S. Priority Mail). Add $20.00 for International orders. ************************************************** SPECIAL DISCOUNT & GIFT Call now and receive a FREE botanical gift! With every order for a 2.0 oz. jigget / bar of Kathmandu Temple Kiff or one of our four (4) Intro Combination Offers, we will include as our free gift to you ... a 2.0 oz. package of our ever so sedate, sensitive Asian import, loose-leaf Capillaris Herba for "happy" smoking or brewing ... (a $65.00 retail value). ==================================================== To remove your address from our list, click "Reply" in your email software and type "Remove" in the subject field, then send. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Oct 11 23:30: 6 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD17537B408 for ; Thu, 11 Oct 2001 23:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9C6U1S20659; Thu, 11 Oct 2001 23:30:01 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Oct 2001 23:30:01 -0700 (PDT) Message-Id: <200110120630.f9C6U1S20659@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: bin/30581: top(1) races when it loses its terminal Reply-To: Edwin Groothuis Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/30581; it has been noted by GNATS. From: Edwin Groothuis To: freebsd-gnats-submit@FreeBSD.org, pavalos@theshell.com Cc: Subject: bin/30581: top(1) races when it loses its terminal Date: Fri, 12 Oct 2001 16:21:40 +1000 A fix for this is this. I've forward this to the author of top also, can please somebody in the mean time submit this to the FreeBSD source? --- /usr/src/contrib/top/top.c.old Fri Oct 12 16:13:52 2001 +++ /usr/src/contrib/top/top.c Fri Oct 12 16:16:44 2001 @@ -721,7 +721,11 @@ /* now read it and convert to command strchr */ /* (use "change" as a temporary to hold strchr) */ - (void) read(0, &ch, 1); + if (read(0, &ch, 1)==0) { + /* this happens if the controlling terminal */ + /* has disappeared. Maybe due to network problems? */ + quit(0); + } if ((iptr = strchr(command_chars, ch)) == NULL) { if (ch != '\r' && ch != '\n') -- Edwin Groothuis | Personal website: http://www.MavEtJu.org edwin@mavetju.org | Interested in MUDs? Visit Fatal Dimensions: ------------------+ http://www.FatalDimensions.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 12 1:17:55 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B8A337B406; Fri, 12 Oct 2001 01:17:54 -0700 (PDT) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9C8DCp40718; Fri, 12 Oct 2001 01:13:12 -0700 (PDT) (envelope-from alfred) Date: Fri, 12 Oct 2001 01:13:12 -0700 (PDT) From: Message-Id: <200110120813.f9C8DCp40718@freefall.freebsd.org> To: matt@gsicomp.on.ca, alfred@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/24998: More verbose logging for Joliet CDs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: More verbose logging for Joliet CDs State-Changed-From-To: open->closed State-Changed-By: alfred State-Changed-When: Fri Oct 12 01:12:32 PDT 2001 State-Changed-Why: Matthew reminded me that I committed the patch contained a while back. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24998 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 12 2:50:11 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35D4637B405 for ; Fri, 12 Oct 2001 02:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9C9o1o53717; Fri, 12 Oct 2001 02:50:01 -0700 (PDT) (envelope-from gnats) Date: Fri, 12 Oct 2001 02:50:01 -0700 (PDT) Message-Id: <200110120950.f9C9o1o53717@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Yar Tikhiy Subject: Re: kern/15478: incorrect utmp/wtmp records update upon connection being interrupted Reply-To: Yar Tikhiy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/15478; it has been noted by GNATS. From: Yar Tikhiy To: Igor Roshchin Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: kern/15478: incorrect utmp/wtmp records update upon connection being interrupted Date: Fri, 12 Oct 2001 13:39:57 +0400 On Thu, Oct 11, 2001 at 12:33:27PM -0400, Igor Roshchin wrote: > > In a presence of the part "2", when utmp has a record of a currently logged > user when there are no processes related to the tty in question, > your comments about screen and its behavior do not have a complete > description of the problem. Does screen produce such dead utmp records? I interpreted your message that it was rxvt that caused the "zombie" records in utmp. > Removing the set-uid bit is not a good thing. It prevents you from seeing > the users on the computer with w(1). No it doesn't. If you remove the suid bit from screen, you'll just see a user's initial login instead of his screen sessions. > Although I see your point, at this moment I am not convinced that this an > application-only problem. I believe the system should be able to correct > both utmp and wtmp. Thus, I don't think this PR should be closed without > a proper fix. I don't see a clear way of fixing the wtmp file in such a case. Additionally, I believe an operating system cannot have a tool/code to fix every breakage that a lame program run with the superuser rights may introduce. > In the initially reported behavior, the utmp record of a user disconnected > was present until somebody else would log in onto the same tty. Then > the utmp would get cleared (by init ?), while wtmp record still wouldn't be > closed (i.e. logout record is not added). init, sshd, and telnetd effectively move a utmp record from the utmp file to the wtmp file. If there's no record in the utmp file for the tty, these programs can do nothing about fixing the wtmp file. And screen removes the utmp record for the user when started. If screen didn't, the problem wouldn't appear at all. > Again, the part "2" of the initial PR > might've been fixed in the recent releases. I'd like to repeat once more: The problem hardly can be fixed in FreeBSD itself. > Regardless whether that part was fixed or not, > how about some type of check-and-cleanup procedure in init, when it > regains the ownership of the tty , and checks if there is a record > in utmp, and if not, just adds a logout record to utmp ? ^^^^ wtmp? The actual init's (and sshd's, and telnetd's) logic is opposite to what you propose: init won't add a logout record to wtmp if there is no record in utmp for the tty by the time of a logout. That's because programs run by init don't need to record logins to utmp--some of them may have to do nothing with logins/logouts. > PS. This wtmp-related bug reveals a bug in last(1) > Interestingly enough, last(1) , depending on the invocation, > behaves differently. Note, that "user" is no longer logged in. > > machine: [12:13] [651] ~>last | grep user > user ttypi 64.152.168.61 Thu Oct 11 00:38 - 02:23 (01:44) > user ttypt 63.210.212.179 Wed Oct 10 23:19 still logged in > user ttypm 209.246.81.251 Tue Oct 9 22:00 - 22:48 (00:47) > user ttyq3 209.246.91.243 Thu Oct 4 21:33 still logged in > user ttypc 64.152.174.71 Wed Oct 3 18:13 - 18:58 (00:44) > machine: [12:13] [652] ~> > machine: [12:13] [652] ~>last -10 user > user ttypi 64.152.168.61 Thu Oct 11 00:38 - 02:23 (01:44) > user ttypt 63.210.212.179 Wed Oct 10 23:19 - 09:18 (09:59) > user ttypm 209.246.81.251 Tue Oct 9 22:00 - 22:48 (00:47) > user ttyq3 209.246.91.243 Thu Oct 4 21:33 - 17:09 (19:35) > ^C > interrupted Thu Oct 4 07:19 > > In the second case it is reporting the logout > time of the next user (user2) logged on the same tty later: > user2 ttypt 130.91.163.208 Thu Oct 11 09:12 - 09:18 (00:06) > > This is a bug in last(1) Sorry, but I couldn't reproduce that. Would you mind sending me an example of such wtmp in a personal mail? -- Yar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 12 6:27:59 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 05C1037B405; Fri, 12 Oct 2001 06:27:55 -0700 (PDT) Received: (from yar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9CDIk213173; Fri, 12 Oct 2001 06:18:46 -0700 (PDT) (envelope-from yar) Date: Fri, 12 Oct 2001 06:18:46 -0700 (PDT) From: Message-Id: <200110121318.f9CDIk213173@freefall.freebsd.org> To: peter@dataloss.net, yar@FreeBSD.org, freebsd-bugs@FreeBSD.org, yar@FreeBSD.org Subject: Re: misc/25217: user with login 'connected' shows bogus ftpd ps output Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: user with login 'connected' shows bogus ftpd ps output State-Changed-From-To: open->analyzed State-Changed-By: yar State-Changed-When: Fri Oct 12 06:17:11 PDT 2001 State-Changed-Why: Fixed in -current, thanks. The fix in -stable will follow. Responsible-Changed-From-To: freebsd-bugs->yar Responsible-Changed-By: yar Responsible-Changed-When: Fri Oct 12 06:17:11 PDT 2001 Responsible-Changed-Why: I'll take care of it. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=25217 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 12 6:27:59 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C92B437B401; Fri, 12 Oct 2001 06:27:54 -0700 (PDT) Received: (from yar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9CDMRG15623; Fri, 12 Oct 2001 06:22:27 -0700 (PDT) (envelope-from yar) Date: Fri, 12 Oct 2001 06:22:27 -0700 (PDT) From: Message-Id: <200110121322.f9CDMRG15623@freefall.freebsd.org> To: yar@FreeBSD.org, freebsd-bugs@FreeBSD.org, yar@FreeBSD.org Subject: Re: bin/31049: /usr/sbin/adduser does not allow '.' in login name. [PATCH] Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: /usr/sbin/adduser does not allow '.' in login name. [PATCH] Responsible-Changed-From-To: freebsd-bugs->yar Responsible-Changed-By: yar Responsible-Changed-When: Fri Oct 12 06:21:20 PDT 2001 Responsible-Changed-Why: I'll try do something about that. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=31049 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 12 6:47:56 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 25B7237B401; Fri, 12 Oct 2001 06:47:55 -0700 (PDT) Received: (from yar@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9CDetw72258; Fri, 12 Oct 2001 06:40:55 -0700 (PDT) (envelope-from yar) Date: Fri, 12 Oct 2001 06:40:55 -0700 (PDT) From: Message-Id: <200110121340.f9CDetw72258@freefall.freebsd.org> To: tolik@mpeks.tomsk.su, yar@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/10671: setlogin(2) return EINVAL for length of name greather than MAXLOGNAME - 2 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: setlogin(2) return EINVAL for length of name greather than MAXLOGNAME - 2 State-Changed-From-To: feedback->closed State-Changed-By: yar State-Changed-When: Fri Oct 12 06:38:33 PDT 2001 State-Changed-Why: The bug has been fixed long ago. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=10671 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Oct 12 11:30:25 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF30337B408 for ; Fri, 12 Oct 2001 11:30:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9CIU0A42616; Fri, 12 Oct 2001 11:30:00 -0700 (PDT) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5771B37B407 for ; Fri, 12 Oct 2001 11:25:06 -0700 (PDT) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9CIP6A41758; Fri, 12 Oct 2001 11:25:06 -0700 (PDT) (envelope-from nobody) Message-Id: <200110121825.f9CIP6A41758@freefall.freebsd.org> Date: Fri, 12 Oct 2001 11:25:06 -0700 (PDT) From: Kristian Kraemmer Nielsen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: kern/31233: Kernel panics after upgrading to 4.4-STABLE on ASUS P2B running less than a day Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31233 >Category: kern >Synopsis: Kernel panics after upgrading to 4.4-STABLE on ASUS P2B running less than a day >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Oct 12 11:30:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Kristian Kraemmer Nielsen >Release: 4.4-STABLE >Organization: >Environment: FreeBSD jkkn.jkkn.net 4.4-STABLE FreeBSD 4.4-STABLE #0: Wed Oct 10 23:33:25 CEST 2001 jkkn@jkkn.jkkn.net:/usr/src/sys/compile/JKKN_KRNL i386 >Description: Machine crashes after running less than a day. Problem started after upgrading from 3.5-STABLE to 4.4-STABLE. It is most like to have something to do with the IDE controller and the new ata-drivers since it panics under high disk activity/seeks. It does not make any difference to disable UDMA, write-cache nor soft-updates. Panic: IdlePTD 3276800 initial pcb at 2966c0 panicstr: page fault panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0x7145cfb0 fault code = supervisor read, page not present instruction pointer = 0x8:0xc01496d2 stack pointer = 0x10:0xd720ef20 frame pointer = 0x10:0xd720ef38 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 364 (rmserver) interrupt mask = none trap number = 12 panic: page fault syncing disks... 104 13 10 9 8 done Uptime: 18h53m51s dumping to dev #ad/0x20001, offset 794120 dump ata0: resetting devices .. done --- cut --- (kgdb) where #0 dumpsys () at ../../kern/kern_shutdown.c:473 #1 0xc0143efc in boot (howto=256) at ../../kern/kern_shutdown.c:313 #2 0xc01442dc in poweroff_wait (junk=0xc02711ac, howto=-1071182641) at ../../kern/kern_shutdown.c:581 #3 0xc023b07f in trap_fatal (frame=0xd720eee0, eva=1900400560) at ../../i386/i386/trap.c:956 #4 0xc023ad39 in trap_pfault (frame=0xd720eee0, usermode=0, eva=1900400560) at ../../i386/i386/trap.c:849 #5 0xc023a90f in trap (frame={tf_fs = 16, tf_es = -685768688, tf_ds = -685768688, tf_edi = 753273225, tf_esi = 1900400556, tf_ebp = -685707464, tf_isp = -685707508, tf_ebx = 4, tf_edx = -685707516, tf_ecx = 59999, tf_eax = 4, tf_trapno = 12, tf_err = 0, tf_eip = -1072392494, tf_cs = 8, tf_eflags = 66066, tf_esp = -755888352, tf_ss = 2}) at ../../i386/i386/trap.c:448 #6 0xc01496d2 in nanosleep (p=0xd2f20f20, uap=0xd720ef80) at ../../kern/kern_time.c:283 #7 0xc023b2e1 in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = -1078001617, tf_edi = 0, tf_esi = 60000, tf_ebp = -1077937184, tf_isp = -685707308, tf_ebx = 673886912, tf_edx = -1, tf_ecx = 4, tf_eax = 240, tf_trapno = 22, tf_err = 2, tf_eip = 673632288, tf_cs = 31, tf_eflags = 659, tf_esp = -1077937220, tf_ss = 47}) at ../../i386/i386/trap.c:1155 #8 0xc022f8a5 in Xint0x80_syscall () #9 0x8074fd6 in ?? () #10 0x8075302 in ?? () #11 0x80728cd in ?? () #12 0x8076d8b in ?? () ---cut--- (kgdb) up 5 #5 0xc023a90f in trap (frame={tf_fs = 16, tf_es = -685768688, tf_ds = -685768688, tf_edi = 753273225, tf_esi = 1900400556, tf_ebp = -685707464, tf_isp = -685707508, tf_ebx = 4, tf_edx = -685707516, tf_ecx = 59999, tf_eax = 4, tf_trapno = 12, tf_err = 0, tf_eip = -1072392494, tf_cs = 8, tf_eflags = 66066, tf_esp = -755888352, tf_ss = 2}) at ../../i386/i386/trap.c:448 448 (void) trap_pfault(&frame, FALSE, eva); (kgdb) frame frame->tf_ebp frame->tf_eip #0 0xc01496d2 in nanosleep (p=0xd2f20f20, uap=0xd720ef80) at ../../kern/kern_time.c:283 283 if (error && SCARG(uap, rmtp)) { (kgdb) list 278 if (SCARG(uap, rmtp)) 279 if (!useracc((caddr_t)SCARG(uap, rmtp), sizeof(rmt), 280 VM_PROT_WRITE)) 281 return (EFAULT); 282 error = nanosleep1(p, &rqt, &rmt); 283 if (error && SCARG(uap, rmtp)) { 284 error2 = copyout(&rmt, SCARG(uap, rmtp), sizeof(rmt)); 285 if (error2) /* XXX shouldn't happen, did useracc() above */ 286 return (error2); 287 } For more information please mail jkkn@jkkn.dk. >How-To-Repeat: Kernel panic seem to accour under high disk activity/seeks. Output of dmesg: Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.4-STABLE #0: Wed Oct 10 23:33:25 CEST 2001 jkkn@jkkn.jkkn.net:/usr/src/sys/compile/JKKN_KRNL Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 300683475 Hz CPU: Pentium II/Pentium II Xeon/Celeron (300.68-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x634 Stepping = 4 Features=0x80f9ff real memory = 402640896 (393204K bytes) avail memory = 387919872 (378828K bytes) Preloaded elf kernel "kernel" at 0xc0301000. Pentium Pro MTRR support enabled Using $PIR table, 6 entries at 0xc00f0d10 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 isab0: at device 4.0 on pci0 isa0: on isab0 atapci0: port 0xd800-0xd80f at device 4.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 4.2 chip1: port 0xe800-0xe80f at device 4.3 on pci0 rl0: port 0xd000-0xd0ff mem 0xe3000000-0xe30000ff irq 10 at device 10.0 on pci0 rl0: Ethernet address: 00:40:95:30:2e:5e miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pci0: at 12.0 irq 11 orm0: