Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1a61c88d authored by zhangxiliang's avatar zhangxiliang Committed by Al Viro
Browse files

Re: [PATCH] Fix the kernel panic of audit_filter_task when key field is set



Sorry, I miss a blank between if and "(".
And I add "unlikely" to check "ctx" in audit_match_perm() and audit_match_filetype().
This is a new patch for it.

Signed-off-by: default avatarZhang Xiliang <zhangxiliang@cn.fujitsu.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 2b12a4c5
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -243,6 +243,9 @@ static inline int open_arg(int flags, int mask)


static int audit_match_perm(struct audit_context *ctx, int mask)
static int audit_match_perm(struct audit_context *ctx, int mask)
{
{
	if (unlikely(!ctx))
		return 0;

	unsigned n = ctx->major;
	unsigned n = ctx->major;
	switch (audit_classify_syscall(ctx->arch, n)) {
	switch (audit_classify_syscall(ctx->arch, n)) {
	case 0:	/* native */
	case 0:	/* native */
@@ -284,6 +287,10 @@ static int audit_match_filetype(struct audit_context *ctx, int which)
{
{
	unsigned index = which & ~S_IFMT;
	unsigned index = which & ~S_IFMT;
	mode_t mode = which & S_IFMT;
	mode_t mode = which & S_IFMT;

	if (unlikely(!ctx))
		return 0;

	if (index >= ctx->name_count)
	if (index >= ctx->name_count)
		return 0;
		return 0;
	if (ctx->names[index].ino == -1)
	if (ctx->names[index].ino == -1)