From owner-svn-src-stable-9@FreeBSD.ORG Sat Aug 17 08:31:34 2013 Return-Path: Delivered-To: svn-src-stable-9@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E4AD175E; Sat, 17 Aug 2013 08:31:34 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D1A202C2D; Sat, 17 Aug 2013 08:31:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7H8VYBZ019998; Sat, 17 Aug 2013 08:31:34 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7H8VYOt019997; Sat, 17 Aug 2013 08:31:34 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201308170831.r7H8VYOt019997@svn.freebsd.org> From: Konstantin Belousov Date: Sat, 17 Aug 2013 08:31:34 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r254444 - stable/9/sys/kern X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Aug 2013 08:31:35 -0000 Author: kib Date: Sat Aug 17 08:31:34 2013 New Revision: 254444 URL: http://svnweb.freebsd.org/changeset/base/254444 Log: MFC r253969: Do not override the ENOENT error for the empty path, or EFAULT errors from copyins, with the relative lookup check. Modified: stable/9/sys/kern/vfs_lookup.c Directory Properties: stable/9/sys/ (props changed) Modified: stable/9/sys/kern/vfs_lookup.c ============================================================================== --- stable/9/sys/kern/vfs_lookup.c Sat Aug 17 08:08:58 2013 (r254443) +++ stable/9/sys/kern/vfs_lookup.c Sat Aug 17 08:31:34 2013 (r254444) @@ -175,7 +175,7 @@ namei(struct nameidata *ndp) * not an absolute path, and not containing '..' components) to * a real file descriptor, not the pseudo-descriptor AT_FDCWD. */ - if (IN_CAPABILITY_MODE(td)) { + if (error = 0 && IN_CAPABILITY_MODE(td)) { ndp->ni_strictrelative = 1; if (ndp->ni_dirfd == AT_FDCWD) error = ECAPMODE;