From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Serge E. Hallyn" Date: Wed, 11 Jul 2018 15:15:10 +0000 Subject: Re: [PATCH -next] EVM: fix return value check in evm_write_xattrs() Message-Id: <20180711151510.GA23645@mail.hallyn.com> List-Id: References: <1531315720-4191-1-git-send-email-weiyongjun1@huawei.com> In-Reply-To: <1531315720-4191-1-git-send-email-weiyongjun1@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Wei Yongjun Cc: Mimi Zohar , James Morris , "Serge E. Hallyn" , Matthew Garrett , linux-integrity@vger.kernel.org, linux-security-module@vger.kernel.org, kernel-janitors@vger.kernel.org Quoting Wei Yongjun (weiyongjun1@huawei.com): > In case of error, the function audit_log_start() returns NULL pointer > not ERR_PTR(). The IS_ERR() test in the return value check should be > replaced with NULL test. > > Fixes: fa516b66a1bf ("EVM: Allow runtime modification of the set of verified xattrs") > Signed-off-by: Wei Yongjun Acked-by: Serge Hallyn > --- > security/integrity/evm/evm_secfs.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/security/integrity/evm/evm_secfs.c b/security/integrity/evm/evm_secfs.c > index 637eb99..77de71b 100644 > --- a/security/integrity/evm/evm_secfs.c > +++ b/security/integrity/evm/evm_secfs.c > @@ -193,8 +193,8 @@ static ssize_t evm_write_xattrs(struct file *file, const char __user *buf, > return -E2BIG; > > ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_INTEGRITY_EVM_XATTR); > - if (IS_ERR(ab)) > - return PTR_ERR(ab); > + if (!ab) > + return -ENOMEM; > > xattr = kmalloc(sizeof(struct xattr_list), GFP_KERNEL); > if (!xattr) {