Commit bae8ec66 authored by Ian Kent's avatar Ian Kent Committed by Linus Torvalds

autofs4: fix string validation check order

In function validate_dev_ioctl() we check that the string we've been sent
is a valid path.  The function that does this check assumes the string is
NULL terminated but our NULL termination check isn't done until after this
call.  This patch changes the order of the check.
Signed-off-by: default avatarIan Kent <raven@themaw.net>
Acked-by: default avatarJeff Moyer <jmoyer@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent a92daf6b
...@@ -124,7 +124,7 @@ static inline void free_dev_ioctl(struct autofs_dev_ioctl *param) ...@@ -124,7 +124,7 @@ static inline void free_dev_ioctl(struct autofs_dev_ioctl *param)
/* /*
* Check sanity of parameter control fields and if a path is present * Check sanity of parameter control fields and if a path is present
* check that it has a "/" and is terminated. * check that it is terminated and contains at least one "/".
*/ */
static int validate_dev_ioctl(int cmd, struct autofs_dev_ioctl *param) static int validate_dev_ioctl(int cmd, struct autofs_dev_ioctl *param)
{ {
...@@ -138,15 +138,16 @@ static int validate_dev_ioctl(int cmd, struct autofs_dev_ioctl *param) ...@@ -138,15 +138,16 @@ static int validate_dev_ioctl(int cmd, struct autofs_dev_ioctl *param)
} }
if (param->size > sizeof(*param)) { if (param->size > sizeof(*param)) {
err = check_name(param->path); err = invalid_str(param->path,
(void *) ((size_t) param + param->size));
if (err) { if (err) {
AUTOFS_WARN("invalid path supplied for cmd(0x%08x)", AUTOFS_WARN(
cmd); "path string terminator missing for cmd(0x%08x)",
cmd);
goto out; goto out;
} }
err = invalid_str(param->path, err = check_name(param->path);
(void *) ((size_t) param + param->size));
if (err) { if (err) {
AUTOFS_WARN("invalid path supplied for cmd(0x%08x)", AUTOFS_WARN("invalid path supplied for cmd(0x%08x)",
cmd); cmd);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment