Analogous to r230407 a separate path buffer in vfs_mount.c is required

for r230129. Fixes a out of bounds write to fspath.

MFC after:	10 days
This commit is contained in:
Martin Matuska 2012-02-05 10:59:50 +00:00
parent 627d915e25
commit a91d2201f9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=231012

View file

@ -1039,6 +1039,7 @@ vfs_domount(
struct vfsconf *vfsp;
struct nameidata nd;
struct vnode *vp;
char *pathbuf;
int error;
/*
@ -1102,12 +1103,15 @@ vfs_domount(
NDFREE(&nd, NDF_ONLY_PNBUF);
vp = nd.ni_vp;
if ((fsflags & MNT_UPDATE) == 0) {
error = vn_path_to_global_path(td, vp, fspath, MNAMELEN);
pathbuf = malloc(MNAMELEN, M_TEMP, M_WAITOK);
strcpy(pathbuf, fspath);
error = vn_path_to_global_path(td, vp, pathbuf, MNAMELEN);
/* debug.disablefullpath == 1 results in ENODEV */
if (error == 0 || error == ENODEV) {
error = vfs_domount_first(td, vfsp, fspath, vp,
error = vfs_domount_first(td, vfsp, pathbuf, vp,
fsflags, optlist);
}
free(pathbuf, M_TEMP);
} else
error = vfs_domount_update(td, vp, fsflags, optlist);
mtx_unlock(&Giant);