All of lore.kernel.org
 help / color / mirror / Atom feed
From: Oleg Nesterov <oleg@redhat.com>
To: Andrey Vagin <avagin@openvz.org>
Cc: Thomas Gleixner <tglx@linutronix.de>,
	Andrew Morton <akpm@linux-foundation.org>,
	linux-kernel@vger.kernel.org, stable@kernel.org,
	Pavel Emelyanov <xemul@openvz.org>,
	Stanislaw Gruszka <sgruszka@redhat.com>
Subject: Re: [PATCH 2/2] posix_timer: clean up properly if anything fails after *_timer_create
Date: Fri, 14 May 2010 18:03:57 +0200	[thread overview]
Message-ID: <20100514160357.GB3727@redhat.com> (raw)
In-Reply-To: <1273843731-12595-2-git-send-email-avagin@openvz.org>

On 05/14, Andrey Vagin wrote:
>
> *_timer_create may allocate/get some resources, so need call *_timer_cleanup.
>
> https://bugzilla.sw.ru/show_bug.cgi?id=473702

Authorization Required

> --- a/kernel/posix-timers.c
> +++ b/kernel/posix-timers.c
> @@ -574,19 +574,19 @@ SYSCALL_DEFINE3(timer_create, const clockid_t, which_clock,
>  	if (copy_to_user(created_timer_id,
>  			 &new_timer_id, sizeof (new_timer_id))) {
>  		error = -EFAULT;
> -		goto out;
> +		goto out_cleanup;
>  	}
>  	if (timer_event_spec) {
>  		if (copy_from_user(&event, timer_event_spec, sizeof (event))) {
>  			error = -EFAULT;
> -			goto out;
> +			goto out_cleanup;
>  		}
>  		rcu_read_lock();
>  		new_timer->it_pid = get_pid(good_sigevent(&event));
>  		rcu_read_unlock();
>  		if (!new_timer->it_pid) {
>  			error = -EINVAL;
> -			goto out;
> +			goto out_cleanup;
>  		}
>  	} else {
>  		event.sigev_notify = SIGEV_SIGNAL;
> @@ -613,6 +613,8 @@ SYSCALL_DEFINE3(timer_create, const clockid_t, which_clock,
>  	 * and may cease to exist at any time.  Don't use or modify
>  	 * new_timer after the unlock call.
>  	 */
> +out_cleanup:
> +	CLOCK_DISPATCH(new_timer->it_clock, timer_cleanup, (new_timer));

But at first glance you are right, posix_cpu_timer_create() does
get_task_struct(it.cpu.task).

Oleg.


  reply	other threads:[~2010-05-14 16:06 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-14 13:28 [PATCH 1/2] posix_timer: separate timer_cleanup from timer_del Andrey Vagin
2010-05-14 13:28 ` [PATCH 2/2] posix_timer: clean up properly if anything fails after *_timer_create Andrey Vagin
2010-05-14 16:03   ` Oleg Nesterov [this message]
2010-05-14 17:18     ` Stanislaw Gruszka
2010-05-14 18:48       ` Oleg Nesterov
2010-05-15 14:17         ` Andrew Vagin
2010-05-14 16:01 ` [PATCH 1/2] posix_timer: separate timer_cleanup from timer_del Oleg Nesterov
2010-05-24 21:40 ` [stable] " Greg KH

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=20100514160357.GB3727@redhat.com \
    --to=oleg@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=avagin@openvz.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sgruszka@redhat.com \
    --cc=stable@kernel.org \
    --cc=tglx@linutronix.de \
    --cc=xemul@openvz.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.