From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49241) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dmUD1-00021s-Bm for qemu-devel@nongnu.org; Mon, 28 Aug 2017 20:16:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dmUCy-0006OA-51 for qemu-devel@nongnu.org; Mon, 28 Aug 2017 20:16:47 -0400 Received: from mx0a-001b2d01.pphosted.com ([148.163.156.1]:50768) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dmUCx-0006ND-QD for qemu-devel@nongnu.org; Mon, 28 Aug 2017 20:16:44 -0400 Received: from pps.filterd (m0098396.ppops.net [127.0.0.1]) by mx0a-001b2d01.pphosted.com (8.16.0.21/8.16.0.21) with SMTP id v7T0GIc1010141 for ; Mon, 28 Aug 2017 20:16:42 -0400 Received: from e33.co.us.ibm.com (e33.co.us.ibm.com [32.97.110.151]) by mx0a-001b2d01.pphosted.com with ESMTP id 2cmvjejm5v-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Mon, 28 Aug 2017 20:16:42 -0400 Received: from localhost by e33.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 28 Aug 2017 18:16:41 -0600 From: Michael Roth Date: Mon, 28 Aug 2017 19:14:54 -0500 In-Reply-To: <1503965694-10794-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1503965694-10794-1-git-send-email-mdroth@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Message-Id: <1503965694-10794-80-git-send-email-mdroth@linux.vnet.ibm.com> Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 79/79] 9pfs: local: fix fchmodat_nofollow() limitations List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-stable@nongnu.org, Greg Kurz From: Greg Kurz This function has to ensure it doesn't follow a symlink that could be use= d to escape the virtfs directory. This could be easily achieved if fchmodat= () on linux honored the AT_SYMLINK_NOFOLLOW flag as described in POSIX, but it doesn't. There was a tentative to implement a new fchmodat2() syscall with the correct semantics: https://patchwork.kernel.org/patch/9596301/ but it didn't gain much momentum. Also it was suggested to look at an O_P= ATH based solution in the first place. The current implementation covers most use-cases, but it notably fails if= : - the target path has access rights equal to 0000 (openat() returns EPERM= ), =3D> once you've done chmod(0000) on a file, you can never chmod() agai= n - the target path is UNIX domain socket (openat() returns ENXIO) =3D> bind() of UNIX domain sockets fails if the file is on 9pfs The solution is to use O_PATH: openat() now succeeds in both cases, and w= e can ensure the path isn't a symlink with fstat(). The associated entry in "/proc/self/fd" can hence be safely passed to the regular chmod() syscall. The previous behavior is kept for older systems that don't have O_PATH. Signed-off-by: Greg Kurz Reviewed-by: Eric Blake Tested-by: Zhi Yong Wu Acked-by: Philippe Mathieu-Daud=C3=A9 (cherry picked from commit 4751fd5328dfcd4fe2f9055728a72a0e3ae56512) Signed-off-by: Michael Roth --- hw/9pfs/9p-local.c | 42 +++++++++++++++++++++++++++++++++++------- hw/9pfs/9p-util.h | 24 +++++++++++++++--------- 2 files changed, 50 insertions(+), 16 deletions(-) diff --git a/hw/9pfs/9p-local.c b/hw/9pfs/9p-local.c index b13ff21..a83dbfb 100644 --- a/hw/9pfs/9p-local.c +++ b/hw/9pfs/9p-local.c @@ -278,17 +278,27 @@ update_map_file: =20 static int fchmodat_nofollow(int dirfd, const char *name, mode_t mode) { + struct stat stbuf; int fd, ret; =20 /* FIXME: this should be handled with fchmodat(AT_SYMLINK_NOFOLLOW). - * Unfortunately, the linux kernel doesn't implement it yet. As an - * alternative, let's open the file and use fchmod() instead. This - * may fail depending on the permissions of the file, but it is the - * best we can do to avoid TOCTTOU. We first try to open read-only - * in case name points to a directory. If that fails, we try write-o= nly - * in case name doesn't point to a directory. + * Unfortunately, the linux kernel doesn't implement it yet. */ - fd =3D openat_file(dirfd, name, O_RDONLY, 0); + + /* First, we clear non-racing symlinks out of the way. */ + if (fstatat(dirfd, name, &stbuf, AT_SYMLINK_NOFOLLOW)) { + return -1; + } + if (S_ISLNK(stbuf.st_mode)) { + errno =3D ELOOP; + return -1; + } + + /* Access modes are ignored when O_PATH is supported. We try O_RDONL= Y and + * O_WRONLY for old-systems that don't support O_PATH. + */ + fd =3D openat_file(dirfd, name, O_RDONLY | O_PATH_9P_UTIL, 0); +#if O_PATH_9P_UTIL =3D=3D 0 if (fd =3D=3D -1) { /* In case the file is writable-only and isn't a directory. */ if (errno =3D=3D EACCES) { @@ -302,6 +312,24 @@ static int fchmodat_nofollow(int dirfd, const char *= name, mode_t mode) return -1; } ret =3D fchmod(fd, mode); +#else + if (fd =3D=3D -1) { + return -1; + } + + /* Now we handle racing symlinks. */ + ret =3D fstat(fd, &stbuf); + if (!ret) { + if (S_ISLNK(stbuf.st_mode)) { + errno =3D ELOOP; + ret =3D -1; + } else { + char *proc_path =3D g_strdup_printf("/proc/self/fd/%d", fd); + ret =3D chmod(proc_path, mode); + g_free(proc_path); + } + } +#endif close_preserve_errno(fd); return ret; } diff --git a/hw/9pfs/9p-util.h b/hw/9pfs/9p-util.h index 517027c..033e7e6 100644 --- a/hw/9pfs/9p-util.h +++ b/hw/9pfs/9p-util.h @@ -13,6 +13,12 @@ #ifndef QEMU_9P_UTIL_H #define QEMU_9P_UTIL_H =20 +#ifdef O_PATH +#define O_PATH_9P_UTIL O_PATH +#else +#define O_PATH_9P_UTIL 0 +#endif + static inline void close_preserve_errno(int fd) { int serrno =3D errno; @@ -22,13 +28,8 @@ static inline void close_preserve_errno(int fd) =20 static inline int openat_dir(int dirfd, const char *name) { -#ifdef O_PATH -#define OPENAT_DIR_O_PATH O_PATH -#else -#define OPENAT_DIR_O_PATH 0 -#endif return openat(dirfd, name, - O_DIRECTORY | O_RDONLY | O_NOFOLLOW | OPENAT_DIR_O_PAT= H); + O_DIRECTORY | O_RDONLY | O_NOFOLLOW | O_PATH_9P_UTIL); } =20 static inline int openat_file(int dirfd, const char *name, int flags, @@ -43,9 +44,14 @@ static inline int openat_file(int dirfd, const char *n= ame, int flags, } =20 serrno =3D errno; - /* O_NONBLOCK was only needed to open the file. Let's drop it. */ - ret =3D fcntl(fd, F_SETFL, flags); - assert(!ret); + /* O_NONBLOCK was only needed to open the file. Let's drop it. We do= n't + * do that with O_PATH since fcntl(F_SETFL) isn't supported, and ope= nat() + * ignored it anyway. + */ + if (!(flags & O_PATH_9P_UTIL)) { + ret =3D fcntl(fd, F_SETFL, flags); + assert(!ret); + } errno =3D serrno; return fd; } --=20 2.7.4