Audit: remove spaces from audit_log_d_path
audit_log_d_path had spaces in the strings which would be emitted on the error paths. This patch simply replaces those spaces with an _ or removes the needless spaces entirely. Signed-off-by: Eric Paris <eparis@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Родитель
679173b724
Коммит
def5754341
|
@ -1440,13 +1440,13 @@ void audit_log_d_path(struct audit_buffer *ab, const char *prefix,
|
||||||
/* We will allow 11 spaces for ' (deleted)' to be appended */
|
/* We will allow 11 spaces for ' (deleted)' to be appended */
|
||||||
pathname = kmalloc(PATH_MAX+11, ab->gfp_mask);
|
pathname = kmalloc(PATH_MAX+11, ab->gfp_mask);
|
||||||
if (!pathname) {
|
if (!pathname) {
|
||||||
audit_log_format(ab, "<no memory>");
|
audit_log_string(ab, "<no_memory>");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
p = d_path(path, pathname, PATH_MAX+11);
|
p = d_path(path, pathname, PATH_MAX+11);
|
||||||
if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */
|
if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */
|
||||||
/* FIXME: can we save some information here? */
|
/* FIXME: can we save some information here? */
|
||||||
audit_log_format(ab, "<too long>");
|
audit_log_string(ab, "<too_long>");
|
||||||
} else
|
} else
|
||||||
audit_log_untrustedstring(ab, p);
|
audit_log_untrustedstring(ab, p);
|
||||||
kfree(pathname);
|
kfree(pathname);
|
||||||
|
|
|
@ -1478,7 +1478,7 @@ static void audit_log_exit(struct audit_context *context, struct task_struct *ts
|
||||||
case 0:
|
case 0:
|
||||||
/* name was specified as a relative path and the
|
/* name was specified as a relative path and the
|
||||||
* directory component is the cwd */
|
* directory component is the cwd */
|
||||||
audit_log_d_path(ab, " name=", &context->pwd);
|
audit_log_d_path(ab, "name=", &context->pwd);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
/* log the name's directory component */
|
/* log the name's directory component */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче