On Mon, Feb 04, 2013 at 12:06:55PM -0500, David Teigland wrote: > Please pull the following fix from branch: > > git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git for-linus > > This reverts commit 2b75bc9121e54e22537207b47b71373bcb0be41c.
Hi Linus, You can choose to pull that revert, or you can alternatively pull this fix to the original patch from this branch: git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git fix-max-write Thanks to Jana who reported the problem and was able to test this fix so quickly. Subject: [PATCH] dlm: check the write size from user Return EINVAL from write if the size is larger than allowed. Do this before allocating kernel memory for the bogus size, which could lead to OOM. Reported-by: Sasha Levin <levinsasha...@gmail.com> Tested-by: Jana Saout <j...@saout.de> Signed-off-by: David Teigland <teigl...@redhat.com> --- fs/dlm/user.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fs/dlm/user.c b/fs/dlm/user.c index 7ff4985..911649a 100644 --- a/fs/dlm/user.c +++ b/fs/dlm/user.c @@ -503,11 +503,11 @@ static ssize_t device_write(struct file *file, const char __user *buf, #endif return -EINVAL; -#ifdef CONFIG_COMPAT - if (count > sizeof(struct dlm_write_request32) + DLM_RESNAME_MAXLEN) -#else + /* + * can't compare against COMPAT/dlm_write_request32 because + * we don't yet know if is64bit is zero + */ if (count > sizeof(struct dlm_write_request) + DLM_RESNAME_MAXLEN) -#endif return -EINVAL; kbuf = kzalloc(count + 1, GFP_NOFS); -- 1.8.1.rc1.5.g7e0651a -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/