From owner-svn-src-head@FreeBSD.ORG Thu Apr 8 08:58:18 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8AB20106566B; Thu, 8 Apr 2010 08:58:18 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 792848FC15; Thu, 8 Apr 2010 08:58:18 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o388wI3n070674; Thu, 8 Apr 2010 08:58:18 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o388wIHc070673; Thu, 8 Apr 2010 08:58:18 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201004080858.o388wIHc070673@svn.freebsd.org> From: Konstantin Belousov Date: Thu, 8 Apr 2010 08:58:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r206395 - head/sys/kern X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Apr 2010 08:58:18 -0000 Author: kib Date: Thu Apr 8 08:58:18 2010 New Revision: 206395 URL: http://svn.freebsd.org/changeset/base/206395 Log: Do not leak master pty or ptmx vnode. Report and test case by: Petr Salinger Reviewed by: ed MFC after: 1 week Modified: head/sys/kern/tty_pts.c Modified: head/sys/kern/tty_pts.c ============================================================================== --- head/sys/kern/tty_pts.c Thu Apr 8 07:45:42 2010 (r206394) +++ head/sys/kern/tty_pts.c Thu Apr 8 08:58:18 2010 (r206395) @@ -575,6 +575,15 @@ ptsdev_close(struct file *fp, struct thr tty_lock(tp); tty_rel_gone(tp); + /* + * Open of /dev/ptmx or /dev/ptyXX changes the type of file + * from DTYPE_VNODE to DTYPE_PTS. vn_open() increases vnode + * use count, we need to decrement it, and possibly do other + * required cleanup. + */ + if (fp->f_vnode != NULL) + return (vnops.fo_close(fp, td)); + return (0); }