Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932609AbdCIOuf (ORCPT ); Thu, 9 Mar 2017 09:50:35 -0500 Received: from mx2.suse.de ([195.135.220.15]:51886 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932424AbdCIOtf (ORCPT ); Thu, 9 Mar 2017 09:49:35 -0500 Date: Thu, 9 Mar 2017 15:49:22 +0100 (CET) From: Miroslav Benes To: Richard Guy Briggs cc: linux-kernel@vger.kernel.org, linux-audit@redhat.com, Jessica Yu , Eric Paris , Paul Moore , Steve Grubb Subject: Re: [PATCH] audit: log module name on delete_module In-Reply-To: Message-ID: References: User-Agent: Alpine 2.20 (LSU 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 914 Lines: 35 On Thu, 9 Mar 2017, Richard Guy Briggs wrote: > Record the module name of a delete_module call. > > See: https://github.com/linux-audit/audit-kernel/issues/37 > > Signed-off-by: Richard Guy Briggs Could you improve the changelog, please? I don't think that a link to a github issue can and should replace it. Proper description and reason of the change should be in git log. Thanks, Miroslav > --- > kernel/module.c | 2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/kernel/module.c b/kernel/module.c > index 5432dbe..633f6da 100644 > --- a/kernel/module.c > +++ b/kernel/module.c > @@ -943,6 +943,8 @@ SYSCALL_DEFINE2(delete_module, const char __user *, name_user, > return -EFAULT; > name[MODULE_NAME_LEN-1] = '\0'; > > + audit_log_kern_module(name); > + > if (mutex_lock_interruptible(&module_mutex) != 0) > return -EINTR; > > -- > 1.7.1 >