From owner-cvs-usrsbin Mon Jul 21 10:43:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA27730 for cvs-usrsbin-outgoing; Mon, 21 Jul 1997 10:43:31 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id KAA27548; Mon, 21 Jul 1997 10:41:24 -0700 (PDT) From: Bill Paul Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id KAA01888; Mon, 21 Jul 1997 10:39:41 -0700 (PDT) Date: Mon, 21 Jul 1997 10:39:41 -0700 (PDT) Message-Id: <199707211739.KAA01888@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ypserv yp_server.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 1997/07/21 10:39:41 PDT Modified files: usr.sbin/ypserv yp_server.c Log: Fix a very stupid heap corruption bug: in ypproc_match_2_svc(), when we decide to do a DNS lookup, we NUL terminate the key string provided by the client before passing it into the DNS lookup module. This is actually wrong. Assume the key is 'foo.com'. In this case, key.keydat_val will be "foo.com" and key.keydat_len will be 7 (seven characters; the string is not NUL-terminated so it is not 8 as you might expect). The string "foo.com" is actually allocated by the XDR routines when the RPC request is decoded; exactly 7 bytes are allocated. By adding a NUL, the string becomes "foo.com\0", but the '\0' goes into an 8th byte which was never allocated for this string and which could be anywhere. The result is that while the initial request may succeed, we could trash other dynamically allocated structures (like, oh, I dunno, the circular map cache queue?) and SEGV later. This is in fact what happens. The fix is to copy the string into a larger local buffer and NUL-terminate that buffer instead. Crash first reported by: Ricky Chan Bug finally located with: Electric Fence 2.0.5 Revision Changes Path 1.23 +7 -9 src/usr.sbin/ypserv/yp_server.c From owner-cvs-usrsbin Mon Jul 21 10:44:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA27851 for cvs-usrsbin-outgoing; Mon, 21 Jul 1997 10:44:31 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id KAA27667; Mon, 21 Jul 1997 10:42:41 -0700 (PDT) From: Bill Paul Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id KAA01924; Mon, 21 Jul 1997 10:40:58 -0700 (PDT) Date: Mon, 21 Jul 1997 10:40:58 -0700 (PDT) Message-Id: <199707211740.KAA01924@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ypserv yp_server.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 1997/07/21 10:40:58 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/ypserv yp_server.c Log: Merge from current: fix heap corruption bug in ypproc_match_2_svc(). Revision Changes Path 1.12.2.4 +7 -9 src/usr.sbin/ypserv/yp_server.c From owner-cvs-usrsbin Mon Jul 21 15:44:52 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id PAA17390 for cvs-usrsbin-outgoing; Mon, 21 Jul 1997 15:44:52 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA17135; Mon, 21 Jul 1997 15:41:50 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id PAA03119; Mon, 21 Jul 1997 15:40:06 -0700 (PDT) Date: Mon, 21 Jul 1997 15:40:06 -0700 (PDT) Message-Id: <199707212240.PAA03119@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/lpr/lpd lpd.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/07/21 15:40:06 PDT Modified files: usr.sbin/lpr/lpd lpd.c Log: Output name of duplicate spool dir. Submitted by: Wayne Scott Revision Changes Path 1.5 +2 -1 src/usr.sbin/lpr/lpd/lpd.c From owner-cvs-usrsbin Mon Jul 21 15:49:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id PAA17682 for cvs-usrsbin-outgoing; Mon, 21 Jul 1997 15:49:30 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA17505; Mon, 21 Jul 1997 15:46:48 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id PAA03158; Mon, 21 Jul 1997 15:45:03 -0700 (PDT) Date: Mon, 21 Jul 1997 15:45:03 -0700 (PDT) Message-Id: <199707212245.PAA03158@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/lpr/lpd lpd.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/07/21 15:45:03 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/lpr/lpd lpd.c Log: YAMFC: Output name of duplicate spool dir. Submitted by: Wayne Scott Revision Changes Path 1.3.2.2 +2 -1 src/usr.sbin/lpr/lpd/lpd.c From owner-cvs-usrsbin Tue Jul 22 11:59:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id LAA19457 for cvs-usrsbin-outgoing; Tue, 22 Jul 1997 11:59:10 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id LAA19211; Tue, 22 Jul 1997 11:54:11 -0700 (PDT) From: Steve Passe Received: (from fsmp@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id LAA23777; Tue, 22 Jul 1997 11:52:20 -0700 (PDT) Date: Tue, 22 Jul 1997 11:52:20 -0700 (PDT) Message-Id: <199707221852.LAA23777@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/mptable mptable.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk fsmp 1997/07/22 11:52:20 PDT Modified files: usr.sbin/mptable mptable.c Log: Removed the SMP_TIMER_NC suggestion. This is (almost) defunct, start to phase it out... Revision Changes Path 1.6 +4 -3 src/usr.sbin/mptable/mptable.c From owner-cvs-usrsbin Tue Jul 22 17:54:32 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA12138 for cvs-usrsbin-outgoing; Tue, 22 Jul 1997 17:54:32 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA11892; Tue, 22 Jul 1997 17:51:42 -0700 (PDT) From: Warner Losh Received: (from imp@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id RAA27631; Tue, 22 Jul 1997 17:49:49 -0700 (PDT) Date: Tue, 22 Jul 1997 17:49:49 -0700 (PDT) Message-Id: <199707230049.RAA27631@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/lpr/common_source common.c displayq.c rmjob.c startdaemon.c src/usr.sbin/lpr/lpc cmds.c lpc.c src/usr.sbin/lpr/lpd lpd.c src/usr.sbin/lpr/lpq lpq.c src/usr.sbin/lpr/lpr lpr.c src/usr.sbin/lpr/lprm lprm.c ... Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk imp 1997/07/22 17:49:49 PDT Modified files: usr.sbin/lpr/common_source common.c displayq.c rmjob.c startdaemon.c usr.sbin/lpr/lpc cmds.c lpc.c usr.sbin/lpr/lpd lpd.c usr.sbin/lpr/lpq lpq.c usr.sbin/lpr/lpr lpr.c usr.sbin/lpr/lprm lprm.c usr.sbin/lpr/pac pac.c Log: Use setuid/seteuid around dangerous operations. Also a few buffer overflow patches that were "near" to where these operations are taking place. The buffer overflows are from OpenBSD. The setuid/seteuid patches are from NetBSD by way of OpenBSD (they changed them a little), at least from my read of the tree. This is the first of a series of OpenBSD lpr/et al merges. It (and them) should be merged back into 2.2 and/or 2.1 (if requested) branches when they have been shaken out in -current. Obtained from: OpenBSD Revision Changes Path 1.6 +9 -1 src/usr.sbin/lpr/common_source/common.c 1.7 +29 -5 src/usr.sbin/lpr/common_source/displayq.c 1.6 +31 -5 src/usr.sbin/lpr/common_source/rmjob.c 1.3 +9 -1 src/usr.sbin/lpr/common_source/startdaemon.c 1.7 +59 -22 src/usr.sbin/lpr/lpc/cmds.c 1.4 +12 -4 src/usr.sbin/lpr/lpc/lpc.c 1.6 +11 -6 src/usr.sbin/lpr/lpd/lpd.c 1.3 +5 -0 src/usr.sbin/lpr/lpq/lpq.c 1.17 +26 -6 src/usr.sbin/lpr/lpr/lpr.c 1.2 +4 -0 src/usr.sbin/lpr/lprm/lprm.c 1.5 +4 -0 src/usr.sbin/lpr/pac/pac.c From owner-cvs-usrsbin Wed Jul 23 13:54:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA13734 for cvs-usrsbin-outgoing; Wed, 23 Jul 1997 13:54:12 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA13708; Wed, 23 Jul 1997 13:53:48 -0700 (PDT) From: Warner Losh Received: (from imp@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id NAA19007; Wed, 23 Jul 1997 13:53:42 -0700 (PDT) Date: Wed, 23 Jul 1997 13:53:42 -0700 (PDT) Message-Id: <199707232053.NAA19007@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/lpr/lpc cmds.c src/usr.sbin/lpr/lpd printjob.c recvjob.c src/usr.sbin/lpr/lpr lpr.c src/usr.sbin/lpr/pac pac.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk imp 1997/07/23 13:53:42 PDT Modified files: usr.sbin/lpr/lpc cmds.c usr.sbin/lpr/lpd printjob.c recvjob.c usr.sbin/lpr/lpr lpr.c usr.sbin/lpr/pac pac.c Log: index -> strchr and rindex -> strrchr to reduce the number of gratuitous diffes with NetBSD/OpenBSD. These changes seem to predate the NetBSD/OpenBSD split, so it is hard to give proper credit for them. Obtained from: OpenBSD. Revision Changes Path 1.8 +1 -1 src/usr.sbin/lpr/lpc/cmds.c 1.13 +5 -5 src/usr.sbin/lpr/lpd/printjob.c 1.7 +1 -1 src/usr.sbin/lpr/lpd/recvjob.c 1.18 +4 -4 src/usr.sbin/lpr/lpr/lpr.c 1.6 +2 -2 src/usr.sbin/lpr/pac/pac.c From owner-cvs-usrsbin Wed Jul 23 15:07:40 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id PAA18154 for cvs-usrsbin-outgoing; Wed, 23 Jul 1997 15:07:40 -0700 (PDT) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id PAA18053; Wed, 23 Jul 1997 15:05:07 -0700 (PDT) Received: from rover.village.org [127.0.0.1] by rover.village.org with esmtp (Exim 1.60 #1) id 0wr9Wq-0005yn-00; Wed, 23 Jul 1997 16:05:04 -0600 Subject: Re: cvs commit: src/usr.sbin/lpr/common_source common.c displayq.c rmjob.c startdaemon.c src/usr.sbin/lpr/lpc cmds.c lpc.c src/usr.sbin/lpr/lpd lpd.c src/usr.sbin/lpr/lpq lpq.c src/usr.sbin/lpr/lpr lpr.c src/usr.sbin/lpr/lprm lprm.c ... Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org, cvs-usrsbin@freebsd.org In-reply-to: Your message of "Tue, 22 Jul 1997 17:49:49 PDT." <199707230049.RAA27631@freefall.freebsd.org> References: <199707230049.RAA27631@freefall.freebsd.org> Date: Wed, 23 Jul 1997 16:05:04 -0600 From: Warner Losh Message-Id: Sender: owner-cvs-usrsbin@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In message <199707230049.RAA27631@freefall.freebsd.org> Warner Losh writes: : The setuid/seteuid patches : are from NetBSD by way of OpenBSD (they changed them a little) I have been informed that this is incorrect. They are from OpenBSD and NetBSD picked them up from there. Warner From owner-cvs-usrsbin Wed Jul 23 19:43:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA02145 for cvs-usrsbin-outgoing; Wed, 23 Jul 1997 19:43:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA02116; Wed, 23 Jul 1997 19:42:44 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id TAA20709; Wed, 23 Jul 1997 19:42:35 -0700 (PDT) Date: Wed, 23 Jul 1997 19:42:35 -0700 (PDT) Message-Id: <199707240242.TAA20709@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp modem.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/07/23 19:42:35 PDT Modified files: usr.sbin/ppp modem.c Log: Don't try to ioctl(,TIOCOUTQ,) on a closed descriptor. Reported by: Stephane Raimbault Revision Changes Path 1.46 +6 -5 src/usr.sbin/ppp/modem.c From owner-cvs-usrsbin Thu Jul 24 10:45:29 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA14515 for cvs-usrsbin-outgoing; Thu, 24 Jul 1997 10:45:29 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id KAA14481; Thu, 24 Jul 1997 10:45:02 -0700 (PDT) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id KAA09059; Thu, 24 Jul 1997 10:44:48 -0700 (PDT) Date: Thu, 24 Jul 1997 10:44:48 -0700 (PDT) Message-Id: <199707241744.KAA09059@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/adduser adduser.perl Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wosch 1997/07/24 10:44:48 PDT Modified files: usr.sbin/adduser adduser.perl Log: Delete dead test code. Revision Changes Path 1.33 +1 -13 src/usr.sbin/adduser/adduser.perl From owner-cvs-usrsbin Thu Jul 24 16:48:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA02599 for cvs-usrsbin-outgoing; Thu, 24 Jul 1997 16:48:20 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA02516; Thu, 24 Jul 1997 16:46:52 -0700 (PDT) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id QAA11344; Thu, 24 Jul 1997 16:46:37 -0700 (PDT) Date: Thu, 24 Jul 1997 16:46:37 -0700 (PDT) Message-Id: <199707242346.QAA11344@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/vidcontrol vidcontrol.1 Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wosch 1997/07/24 16:46:36 PDT Modified files: usr.sbin/vidcontrol vidcontrol.1 Log: Add ref to moused(8). Revision Changes Path 1.11 +3 -1 src/usr.sbin/vidcontrol/vidcontrol.1 From owner-cvs-usrsbin Thu Jul 24 16:50:18 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA02733 for cvs-usrsbin-outgoing; Thu, 24 Jul 1997 16:50:18 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA02659; Thu, 24 Jul 1997 16:49:45 -0700 (PDT) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id QAA11434; Thu, 24 Jul 1997 16:49:29 -0700 (PDT) Date: Thu, 24 Jul 1997 16:49:29 -0700 (PDT) Message-Id: <199707242349.QAA11434@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/moused moused.8 Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wosch 1997/07/24 16:49:29 PDT Modified files: usr.sbin/moused moused.8 Log: Add ref to vidcontrol(1). Revision Changes Path 1.3 +3 -0 src/usr.sbin/moused/moused.8 From owner-cvs-usrsbin Thu Jul 24 16:59:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA03212 for cvs-usrsbin-outgoing; Thu, 24 Jul 1997 16:59:31 -0700 (PDT) Received: from pahtoh.cwu.edu (root@pahtoh.cwu.edu [198.104.65.27]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA03171; Thu, 24 Jul 1997 16:58:58 -0700 (PDT) Received: from opus.cts.cwu.edu (skynyrd@opus.cts.cwu.edu [198.104.92.71]) by pahtoh.cwu.edu (8.8.5/8.8.5) with ESMTP id QAA25916; Thu, 24 Jul 1997 16:58:57 -0700 (PDT) Received: from localhost (skynyrd@localhost) by opus.cts.cwu.edu (8.8.6/8.8.5) with SMTP id QAA18318; Thu, 24 Jul 1997 16:58:56 -0700 (PDT) Date: Thu, 24 Jul 1997 16:58:56 -0700 (PDT) From: Chris Timmons To: Wolfram Schneider cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/moused moused.8 In-Reply-To: <199707242349.QAA11434@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk While you are at it, would you consider adding a reference to sysmouse(4)? Perhaps also it would be appropriate to mention on this page that events supplied by moused (and read from /dev/sysmouse) are in MouseSystems protocol (that information is available at the tail end of sysmouse(4) and in the FAQ, but it is not terribly handy for users grappling with XFree86 and moused together for the first time.) -Chris On Thu, 24 Jul 1997, Wolfram Schneider wrote: > wosch 1997/07/24 16:49:29 PDT > > Modified files: > usr.sbin/moused moused.8 > Log: > Add ref to vidcontrol(1). > > Revision Changes Path > 1.3 +3 -0 src/usr.sbin/moused/moused.8 > From owner-cvs-usrsbin Fri Jul 25 06:22:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA02725 for cvs-usrsbin-outgoing; Fri, 25 Jul 1997 06:22:34 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA02673; Fri, 25 Jul 1997 06:21:57 -0700 (PDT) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id GAA14582; Fri, 25 Jul 1997 06:21:37 -0700 (PDT) Date: Fri, 25 Jul 1997 06:21:37 -0700 (PDT) Message-Id: <199707251321.GAA14582@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/moused moused.8 Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wosch 1997/07/25 06:21:36 PDT Modified files: usr.sbin/moused moused.8 Log: Add ref to sysmouse(4). Revision Changes Path 1.4 +3 -2 src/usr.sbin/moused/moused.8 From owner-cvs-usrsbin Fri Jul 25 13:48:51 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA24255 for cvs-usrsbin-outgoing; Fri, 25 Jul 1997 13:48:51 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA24087; Fri, 25 Jul 1997 13:47:04 -0700 (PDT) From: Stefan Esser Received: (from se@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id NAA02488; Fri, 25 Jul 1997 13:46:41 -0700 (PDT) Date: Fri, 25 Jul 1997 13:46:41 -0700 (PDT) Message-Id: <199707252046.NAA02488@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ncrcontrol ncrcontrol.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk se 1997/07/25 13:46:41 PDT Modified files: usr.sbin/ncrcontrol ncrcontrol.c Log: Adjust for changes in data structures brought into ncr.c rev. 1.100. Revision Changes Path 1.17 +21 -6 src/usr.sbin/ncrcontrol/ncrcontrol.c From owner-cvs-usrsbin Sat Jul 26 10:36:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA09251 for cvs-usrsbin-outgoing; Sat, 26 Jul 1997 10:36:16 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id KAA09224; Sat, 26 Jul 1997 10:36:04 -0700 (PDT) From: Wolfram Schneider Received: (from wosch@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id KAA24005; Sat, 26 Jul 1997 10:35:34 -0700 (PDT) Date: Sat, 26 Jul 1997 10:35:34 -0700 (PDT) Message-Id: <199707261735.KAA24005@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/adduser addgroup.tcl Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wosch 1997/07/26 10:35:34 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/adduser addgroup.tcl Log: Typo: increase max group line length from 100 to 1000. Submitted by: "Yaroslav Terletsky" Revision Changes Path 1.1.2.1 +2 -2 src/usr.sbin/adduser/Attic/addgroup.tcl From owner-cvs-usrsbin Sat Jul 26 20:42:51 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id UAA15219 for cvs-usrsbin-outgoing; Sat, 26 Jul 1997 20:42:51 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA15179; Sat, 26 Jul 1997 20:42:28 -0700 (PDT) From: Bill Paul Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id UAA26484; Sat, 26 Jul 1997 20:41:54 -0700 (PDT) Date: Sat, 26 Jul 1997 20:41:54 -0700 (PDT) Message-Id: <199707270341.UAA26484@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ypserv yp_dnslookup.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 1997/07/26 20:41:54 PDT Modified files: usr.sbin/ypserv yp_dnslookup.c Log: Fix a bug in the async DNS resolver that can crash ypserv. yp_prune_dnsq() is not sane: if the TTL on a pending but unanswered query hits 0 and the circular queue entry is removed and free()d, the for() loop may still try to use the entry pointer (which now points at no longer valid memory). usually, deleting only the last entry off the end of the queue worked, but if more than one was deleted, the server would crash. I changed things a bit so this shouldn't happen anymore. Also arranged to call the prune routine a bit more often. Revision Changes Path 1.11 +9 -4 src/usr.sbin/ypserv/yp_dnslookup.c From owner-cvs-usrsbin Sat Jul 26 20:43:39 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id UAA15260 for cvs-usrsbin-outgoing; Sat, 26 Jul 1997 20:43:39 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA15236; Sat, 26 Jul 1997 20:43:28 -0700 (PDT) From: Bill Paul Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id UAA26521; Sat, 26 Jul 1997 20:42:55 -0700 (PDT) Date: Sat, 26 Jul 1997 20:42:55 -0700 (PDT) Message-Id: <199707270342.UAA26521@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ypserv yp_dnslookup.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 1997/07/26 20:42:55 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/ypserv yp_dnslookup.c Log: Merge from head: fix async DNS resolver bug. Revision Changes Path 1.3.2.2 +9 -4 src/usr.sbin/ypserv/yp_dnslookup.c