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: <20141121150041.GA26264@treble.redhat.com>
Date:	Fri, 21 Nov 2014 09:00:41 -0600
From:	Josh Poimboeuf <jpoimboe@...hat.com>
To:	Miroslav Benes <mbenes@...e.cz>
Cc:	Jiri Kosina <jkosina@...e.cz>, Seth Jennings <sjenning@...hat.com>,
	Vojtech Pavlik <vojtech@...e.cz>,
	Steven Rostedt <rostedt@...dmis.org>,
	Petr Mladek <pmladek@...e.cz>,
	Christoph Hellwig <hch@...radead.org>,
	Greg KH <gregkh@...uxfoundation.org>,
	Andy Lutomirski <luto@...capital.net>,
	Masami Hiramatsu <masami.hiramatsu.pt@...achi.com>,
	live-patching@...r.kernel.org, x86@...nel.org, kpatch@...hat.com,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCHv3 2/3] kernel: add support for live patching

On Fri, Nov 21, 2014 at 03:44:35PM +0100, Miroslav Benes wrote:
> On Fri, 21 Nov 2014, Jiri Kosina wrote:
> 
> [...]
> 
> > [ ... snip ... ]
> > > +static int klp_init_patch(struct klp_patch *patch)
> > > +{
> > > +	int ret;
> > > +
> > > +	mutex_lock(&klp_mutex);
> > > +
> > > +	/* init */
> > > +	patch->state = LPC_DISABLED;
> > > +
> > > +	/* sysfs */
> > > +	ret = kobject_init_and_add(&patch->kobj, &klp_ktype_patch,
> > > +				   klp_root_kobj, patch->mod->name);
> > > +	if (ret)
> > > +		return ret;
> > 
> > klp_mutex is leaked locked here.
> > 
> > > +
> > > +	/* create objects */
> > > +	ret = klp_init_objects(patch);
> > > +	if (ret) {
> > > +		kobject_put(&patch->kobj);
> > > +		return ret;
> > 
> > And here as well.
> > 
> > All in all, this is looking very good to me. I think we are really close 
> > to having a code that all the parties would agree with. Thanks everybody,
> 
> The leaking is my fault. I missed that somehow during rebasing.
> 
> Seth, could you please fix it in v4? 

Is it necessary to grab the mutex at the beginning of klp_init_patch?  I
think we only need it when adding it to the global list at the end of
the function.

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