mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Prarit Bhargava <prarit@redhat.com>
To: Konstantin Khorenko <khorenko@virtuozzo.com>,
	Jessica Yu <jeyu@kernel.org>, Barret Rhoden <brho@google.com>
Cc: Andrey Ryabinin <aryabinin@virtuozzo.com>,
	linux-kernel@vger.kernel.org, David Arcari <darcari@redhat.com>,
	Heiko Carstens <heiko.carstens@de.ibm.com>
Subject: Re: [PATCH 1/1] kernel/module.c: wakeup processes in module_wq on module unload
Date: Wed, 13 Nov 2019 08:51:09 -0500	[thread overview]
Message-ID: <1b047b83-e6cd-9c56-9c55-a2ef6a3e16f5@redhat.com> (raw)
In-Reply-To: <20191113092950.15556-2-khorenko@virtuozzo.com>



On 11/13/19 4:29 AM, Konstantin Khorenko wrote:
> Fix the race between load and unload a kernel module.
> 
> sys_delete_module()
>  try_stop_module()
>   mod->state = _GOING
> 					add_unformed_module()
> 					 old = find_module_all()
> 					 (old->state == _GOING =>
> 					  wait_event_interruptible())
> 
> 					 During pre-condition
> 					 finished_loading() rets 0
> 					 schedule()
> 					 (never gets waken up later)
>  free_module()
>   mod->state = _UNFORMED
>    list_del_rcu(&mod->list)
>    (dels mod from "modules" list)
> 
> return
> 
> The race above leads to modprobe hanging forever on loading
> a module.
> 
> Error paths on loading module call wake_up_all(&module_wq) after
> freeing module, so let's do the same on straight module unload.
> 
> Fixes: 6e6de3dee51a ("kernel/module.c: Only return -EEXIST
> for modules that have finished loading")
> 
> Signed-off-by: Konstantin Khorenko <khorenko@virtuozzo.com>
> ---
>  kernel/module.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/kernel/module.c b/kernel/module.c
> index ff2d7359a418..cb09a5f37a5f 100644
> --- a/kernel/module.c
> +++ b/kernel/module.c
> @@ -1033,6 +1033,8 @@ SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
>  	strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
>  
>  	free_module(mod);
> +	/* someone could wait for the module in add_unformed_module() */
> +	wake_up_all(&module_wq);

free_module() acts on that *this* module so it makes sense to include the
wake_up_all(&module_wq) call in delete_module.  IIRC I did try a module load &
unload stress test but it looks like my testing wasn't hard enough :(

In any case,

Reviewed-by: Prarit Bhargava <prarit@redhat.com>

P.

>  	return 0;
>  out:
>  	mutex_unlock(&module_mutex);
> 


  reply	other threads:[~2019-11-13 13:51 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-13  9:29 [PATCH 0/1] kernel/module.c: don't allow modprobe to hang forever on a module load Konstantin Khorenko
2019-11-13  9:29 ` [PATCH 1/1] kernel/module.c: wakeup processes in module_wq on module unload Konstantin Khorenko
2019-11-13 13:51   ` Prarit Bhargava [this message]
2019-11-15 10:28   ` Jessica Yu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1b047b83-e6cd-9c56-9c55-a2ef6a3e16f5@redhat.com \
    --to=prarit@redhat.com \
    --cc=aryabinin@virtuozzo.com \
    --cc=brho@google.com \
    --cc=darcari@redhat.com \
    --cc=heiko.carstens@de.ibm.com \
    --cc=jeyu@kernel.org \
    --cc=khorenko@virtuozzo.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®