Re: [kernel-hardening] Re: [PATCH] shm: fix a race betweenshm_exit() and shm_init()

From: Vasiliy Kulikov
Date: Wed Aug 03 2011 - 15:53:12 EST


On Wed, Aug 03, 2011 at 12:33 -0700, Andrew Morton wrote:
> > > + /*
> > > + * For init_ipc_ns shm_ids().rw_mutex is statically initialized
> > > + * as kernel threads should be able to use it in do_exit() before
> > > + * shm_init(), which is called on do_initcall()
> > > + */
> > > + if (ns == &init_ipc_ns)
> > > + ipc_init_ids(&shm_ids(ns));
> > > + else
> > > + ipc_init_ids(&shm_ids(ns));
>
> afacit init_ipc_ns.ids[0].rw_mutex and init_ipc_ns.ids[1].rw_mutex
> never get initialised with this patch?

No, these .rw_mutex are initialized in runtime, as before.


This patch should fix the specific oops (not a dependency issue):

https://lkml.org/lkml/2011/8/3/256


> Still. It seems that the real bug is that driver_init() is trying to
> invoke userspace helpers before the kernel is ready to run userspace.

What if declare a completion, trigger it after all ns init code is
finished, and wait on the completion inside of
call_usermodehelper_exec()?

Thanks,

--
Vasiliy Kulikov
http://www.openwall.com - bringing security into open computing environments
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/