lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 28 May 2009 13:12:50 +0200
From:	Peter Zijlstra <a.p.zijlstra@...llo.nl>
To:	Paul Mackerras <paulus@...ba.org>
Cc:	Ingo Molnar <mingo@...e.hu>, linux-kernel@...r.kernel.org,
	Corey Ashford <cjashfor@...ux.vnet.ibm.com>,
	Thomas Gleixner <tglx@...utronix.de>
Subject: Re: [PATCH v4] perf_counter: Fix race in attaching counters to
 tasks and exiting

Looks good, few nits below.

On Thu, 2009-05-28 at 20:32 +1000, Paul Mackerras wrote:

> +static void free_ctx(struct rcu_head *head)
> +{
> +	struct perf_counter_context *ctx;
> +
> +	ctx = container_of(head, struct perf_counter_context, rcu_head);
> +	if (ctx->task)
> +		put_task_struct(ctx->task);
> +	kfree(ctx);
> +}

The poor task will now have to wait for yet another RCU grace period,
but yeah :-)

> @@ -932,18 +950,39 @@ void perf_counter_task_sched_out(struct task_struct *task,
>  		return;
>  
>  	update_context_time(ctx);
> +
> +	rcu_read_lock();
> +	parent = rcu_dereference(ctx->parent_ctx);
>  	next_ctx = next->perf_counter_ctxp;
> +	if (parent && next_ctx &&
> +	    rcu_dereference(next_ctx->parent_ctx) == parent) {
> +		/*
> +		 * Looks like the two contexts are clones, so we might be
> +		 * able to optimize the context switch.  We lock both
> +		 * contexts and check that they are clones under the
> +		 * lock (including re-checking that neither has been
> +		 * uncloned in the meantime).  It doesn't matter which
> +		 * order we take the locks because no other cpu could
> +		 * be trying to lock both of these tasks.
> +		 */
> +		spin_lock(&ctx->lock);
> +		spin_lock(&next_ctx->lock);
> +		if (context_equiv(ctx, next_ctx)) {
> +			task->perf_counter_ctxp = next_ctx;
> +			next->perf_counter_ctxp = ctx;
> +			ctx->task = next;
> +			next_ctx->task = task;
> +			do_switch = 0;
> +		}
> +		spin_unlock(&next_ctx->lock);
> +		spin_unlock(&ctx->lock);
>  	}
> +	rcu_read_unlock();

Looks good, although lockdep will complain, the proper annotation would
be spin_lock_nested_lock(&ctx->lock, &rq->lock), but since we don't have
access to the rq here, we should change the second spin_lock, to:

  spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);


> @@ -1265,37 +1300,78 @@ static struct perf_counter_context *find_get_context(pid_t pid, int cpu)
>  	if (!task)
>  		return ERR_PTR(-ESRCH);
>  
> +	/*
> +	 * Can't attach counters to a dying task.
> +	 */
> +	err = -ESRCH;
> +	if (task->flags & PF_EXITING)
> +		goto errout;
> +
>  	/* Reuse ptrace permission checks for now. */
> +	err = -EACCES;
> +	if (!ptrace_may_access(task, PTRACE_MODE_READ))
> +		goto errout;
> +
> +	rcu_read_lock();
> + retry:
> +	ctx = rcu_dereference(task->perf_counter_ctxp);
> +	if (ctx) {
> +		/*
> +		 * If this context is a clone of another, it might
> +		 * get swapped for another underneath us by
> +		 * perf_counter_task_sched_out, though the
> +		 * rcu_read_lock() protects us from any context
> +		 * getting freed.  Lock the context and check if it
> +		 * got swapped before we could get the lock, and retry
> +		 * if so.  If we locked the right context, then it
> +		 * can't get swapped on us any more and we can
> +		 * unclone it if necessary.
> +		 * Once it's not a clone things will be stable.
> +		 */
> +		spin_lock(&ctx->lock);
> +		if (ctx != rcu_dereference(task->perf_counter_ctxp)) {
> +			spin_unlock(&ctx->lock);
> +			goto retry;
> +		}
> +		parent_ctx = ctx->parent_ctx;
> +		if (parent_ctx) {
> +			put_ctx(parent_ctx);
> +			ctx->parent_ctx = NULL;		/* no longer a clone */
> +		}
> +		++ctx->generation;
> +		/*
> +		 * Get an extra reference before dropping the lock so that
> +		 * this context won't get freed if the task exits.
> +		 */
> +		get_ctx(ctx);
> +		spin_unlock(&ctx->lock);
>  	}
> +	rcu_read_unlock();
>  
>  	if (!ctx) {
>  		ctx = kmalloc(sizeof(struct perf_counter_context), GFP_KERNEL);
> +		err = -ENOMEM;
> +		if (!ctx)
> +			goto errout;
>  		__perf_counter_init_context(ctx, task);
> +		get_ctx(ctx);
> +		if (cmpxchg(&task->perf_counter_ctxp, NULL, ctx)) {
>  			/*
>  			 * We raced with some other task; use
>  			 * the context they set.
>  			 */
>  			kfree(ctx);
> +			goto retry;

You jump into an rcu_read_lock() section there.

>  		}
> +		get_task_struct(task);
>  	}
>  
> +	put_task_struct(task);
>  	return ctx;
> +
> + errout:
> +	put_task_struct(task);
> +	return ERR_PTR(err);
>  }
>  
>  static void free_counter_rcu(struct rcu_head *head)

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ