From owner-freebsd-current Thu Feb 15 10:15:21 2001 Delivered-To: freebsd-current@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id EAEEC37B65D; Thu, 15 Feb 2001 10:15:15 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id f1FIFCr27130; Thu, 15 Feb 2001 10:15:12 -0800 (PST) Date: Thu, 15 Feb 2001 10:15:12 -0800 From: Alfred Perlstein To: Martin Blapp Cc: adrian@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Fix for mountpath lenght Message-ID: <20010215101512.F3274@fw.wintelcom.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from mb@imp.ch on Thu, Feb 15, 2001 at 06:46:04PM +0100 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This looks right, except that Bruce says that SCARG isn't to be used, instead just use uap->path. -Alfred * Martin Blapp [010215 09:46] wrote: > > In mount.h, we have a #define MNAMELEN 80 > > and in struct statfs {} we have: > > char f_mntonname[MNAMELEN]; /* directory on which mounted */ > > but the kernel does no check to see if the mountpath is longer > than MNAMELEN, it just accepts it ? It's impossible to umount(8) > it, because umount(8) does not like to unmount some device which > does not belong to the mountpoint. > > --- vfs_syscalls.c Sun Nov 26 03:30:05 2000 > +++ vfs_syscalls.c.new Thu Feb 15 18:22:13 2001 > @@ -140,6 +140,8 @@ > /* > * Get vnode to be covered > */ > + if (strlen(SCARG(uap, path)) > MNAMELEN) > + return (ENAMETOOLONG); > NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE, > SCARG(uap, path), p); > if ((error = namei(&nd)) != 0) > > Martin Blapp, mb@imp.ch > ------------------------------------------------ > Improware AG, UNIX solution and service provider > Zurlindenstrasse 29, 4133 Pratteln, Switzerland > Phone: +41 79 370 26 05, Fax: +41 61 826 93 01 > ------------------------------------------------ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message