]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
dlm: don't leak kernel pointer to userspace
authorTycho Andersen <tycho@tycho.ws>
Fri, 2 Nov 2018 20:18:22 +0000 (14:18 -0600)
committerMarcelo Henrique Cerri <marcelo.cerri@canonical.com>
Fri, 17 Jan 2020 17:21:04 +0000 (14:21 -0300)
BugLink: https://bugs.launchpad.net/bugs/1854975
[ Upstream commit 9de30f3f7f4d31037cfbb7c787e1089c1944b3a7 ]

In copy_result_to_user(), we first create a struct dlm_lock_result, which
contains a struct dlm_lksb, the last member of which is a pointer to the
lvb. Unfortunately, we copy the entire struct dlm_lksb to the result
struct, which is then copied to userspace at the end of the function,
leaking the contents of sb_lvbptr, which is a valid kernel pointer in some
cases (indeed, later in the same function the data it points to is copied
to userspace).

It is an error to leak kernel pointers to userspace, as it undermines KASLR
protections (see e.g. 65eea8edc31 ("floppy: Do not copy a kernel pointer to
user memory in FDGETPRM ioctl") for another example of this).

Signed-off-by: Tycho Andersen <tycho@tycho.ws>
Signed-off-by: David Teigland <teigland@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
fs/dlm/user.c

index d18e7a539f116209e3a7d0a972d7ca4a28522a09..1f0c071d4a8616ab60915784eb17004751bba198 100644 (file)
@@ -702,7 +702,7 @@ static int copy_result_to_user(struct dlm_user_args *ua, int compat,
        result.version[0] = DLM_DEVICE_VERSION_MAJOR;
        result.version[1] = DLM_DEVICE_VERSION_MINOR;
        result.version[2] = DLM_DEVICE_VERSION_PATCH;
-       memcpy(&result.lksb, &ua->lksb, sizeof(struct dlm_lksb));
+       memcpy(&result.lksb, &ua->lksb, offsetof(struct dlm_lksb, sb_lvbptr));
        result.user_lksb = ua->user_lksb;
 
        /* FIXME: dlm1 provides for the user's bastparam/addr to not be updated