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]
Message-ID: <20110822152154.GB2067@redhat.com>
Date:	Mon, 22 Aug 2011 11:21:54 -0400
From:	Don Zickus <dzickus@...hat.com>
To:	Peter Zijlstra <peterz@...radead.org>
Cc:	x86@...nel.org, Andi Kleen <andi@...stfloor.org>,
	Robert Richter <robert.richter@....com>, ying.huang@...el.com,
	LKML <linux-kernel@...r.kernel.org>, jason.wessel@...driver.com
Subject: Re: [RFC][PATCH 2/6] x86, nmi: create new NMI handler routines

On Mon, Aug 22, 2011 at 04:13:49PM +0200, Peter Zijlstra wrote:
> On Fri, 2011-08-19 at 16:37 -0400, Don Zickus wrote:
> > +int register_nmi_handler(unsigned int type, nmi_handler_t handler,
> > +                       unsigned long nmiflags, const char *devname)
> > +{
> > +       struct nmiaction *action;
> > +       int retval;
> > +
> > +       if (!handler)
> > +               return -EINVAL;
> > +
> > +       action = kzalloc(sizeof(struct nmiaction), GFP_KERNEL);
> > +       if (!action)
> > +               return -ENOMEM;
> > +
> > +       action->handler = handler;
> > +       action->flags = nmiflags;
> > +       action->name = devname; 
> 
> So you assume the string passed as devname remains stable..

yeah, I just kinda copied the irq stuff, thinking if it works there, it
should work here.  It does seem odd, but I can change that to strncpy to
be safer.

> 
> 
> > +
> > +       retval = __setup_nmi(type, action);
> > +
> > +       if (retval)
> > +               kfree(action);
> > +       
> > +       return retval;
> > +}
> > +EXPORT_SYMBOL(register_nmi_handler);
> 
> Also, I'd use _GPL, the current register_die_notifier() is also.
> Preferably I'd not export NMI stuff at all.

Sure.  Well there are a few drivers that want to register.  Unless you
want to make a rule that all nmi handlers have to be built-in?

Cheers,
Don
--
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