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] [day] [month] [year] [list]
Date:	Sat, 29 Aug 2009 00:36:01 +0530
From:	"K.Prasad" <prasad@...ux.vnet.ibm.com>
To:	Ananth N Mavinakayanahalli <ananth@...ibm.com>
Cc:	LKML <linux-kernel@...r.kernel.org>,
	Frederic Weisbecker <fweisbec@...il.com>,
	Ingo Molnar <mingo@...e.hu>,
	Peter Zijlstra <a.p.zijlstra@...llo.nl>,
	Lai Jiangshan <laijs@...fujitsu.com>,
	Steven Rostedt <rostedt@...dmis.org>,
	Mathieu Desnoyers <mathieu.desnoyers@...ymtl.ca>,
	Alan Stern <stern@...land.harvard.edu>
Subject: Re: [Patch 3/3] HW-BKPT: Enable/disable the breakpoints when still
	registered

On Thu, Aug 27, 2009 at 11:25:08AM +0530, Ananth N Mavinakayanahalli wrote:
> On Thu, Aug 27, 2009 at 01:45:06AM +0530, K.Prasad wrote:
> 
> ...
> 
> >  struct hw_breakpoint {
> > +	/*
> > +	 * Denotes if a breakpoint is currently enabled in physical debug
> > +	 * registers. Not to be set directly by the end-user. Must be
> > +	 * operated through enable_hw_breakpoint() API only.
> > +	 */
> > +	unsigned int enabled;
> 
> bool?
> 
> ...
> 

A 'bool' data-type doesn't really provide advantages in terms of the
bytes consumed as far as I can see...leaving it as 'unsigned int' would
allow any positive integer to be considered as a 'enable' request.

However considering the change due to the second comment, and for the
fact that the data-type is more intuitive I'll change them to 'bool'.

> > +void enable_hw_breakpoint(struct hw_breakpoint *bp, struct task_struct *tsk,
> > +							unsigned int enabled)
> > +{
> > +	int i;
> > +	struct thread_struct *thread = &(tsk->thread);
> > +
> > +	spin_lock_bh(&hw_breakpoint_lock);
> > +
> > +	bp->enabled = enabled;
> > +	/* Enable/Disable the kernel-space breakpoint */
> > +	if (!tsk) {
> > +		if (cpumask_test_cpu(smp_processor_id(), bp->cpumask))
> > +			arch_update_kernel_hw_breakpoint(NULL);
> > +		smp_call_function_many(bp->cpumask,
> > +				arch_update_kernel_hw_breakpoint, NULL, 1);
> > +		goto out;
> > +	}
> > +
> > +	/* Enable/disable the user-space breakpoint */
> > +	for (i = 0; i < hbp_kernel_pos; i++) {
> > +		if (thread->hbp[i] != bp)
> > +			continue;
> > +		arch_update_user_hw_breakpoint(i, tsk);
> > +		if (tsk == current)
> > +			arch_install_thread_hw_breakpoint(tsk);
> > +		break;
> > +	}
> > +out:
> > +	spin_unlock_bh(&hw_breakpoint_lock);
> > +}
> > +EXPORT_SYMBOL_GPL(enable_hw_breakpoint);
> 
> Not sure if its cleaner to have enable_hw_breakpoint() and
> disable_hw_breakpoint() rather than one overloaded call.
> 

The plan was to have two separate interfaces at first, but then it
turned out that the code was largely similar...tempting them to be
clubbed together.

But after looking at 'struct pmu' (whose callbacks are intended to map
to these interfaces), I see that two distinct interfaces would be
better (there's a enable/disable callback in struct pmu too).

I shall post a new version of this patch including more changes.

Thanks,
K.Prasad

--
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