* [PATCH RFC] x86: uaccess s/might_sleep/might_fault/ @ 2013-05-02 2:21 Michael S. Tsirkin 2013-05-02 8:52 ` Ingo Molnar 0 siblings, 1 reply; 4+ messages in thread From: Michael S. Tsirkin @ 2013-05-02 2:21 UTC (permalink / raw) To: linux-kernel Cc: Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86, Fenghua Yu The only reason uaccess routines might sleep is if they fault. Make this explicit for __copy_from_user_nocache, and consistent with copy_from_user and friends. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> --- I've updated all other arches as well - still build-testing. Any objections to the x86 patch? arch/x86/include/asm/uaccess_64.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/include/asm/uaccess_64.h b/arch/x86/include/asm/uaccess_64.h index 142810c..4f7923d 100644 --- a/arch/x86/include/asm/uaccess_64.h +++ b/arch/x86/include/asm/uaccess_64.h @@ -235,7 +235,7 @@ extern long __copy_user_nocache(void *dst, const void __user *src, static inline int __copy_from_user_nocache(void *dst, const void __user *src, unsigned size) { - might_sleep(); + might_fault(); return __copy_user_nocache(dst, src, size, 1); } -- MST ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH RFC] x86: uaccess s/might_sleep/might_fault/ 2013-05-02 2:21 [PATCH RFC] x86: uaccess s/might_sleep/might_fault/ Michael S. Tsirkin @ 2013-05-02 8:52 ` Ingo Molnar 2013-05-02 13:28 ` Michael S. Tsirkin 0 siblings, 1 reply; 4+ messages in thread From: Ingo Molnar @ 2013-05-02 8:52 UTC (permalink / raw) To: Michael S. Tsirkin Cc: linux-kernel, Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86, Fenghua Yu * Michael S. Tsirkin <mst@redhat.com> wrote: > The only reason uaccess routines might sleep > is if they fault. Make this explicit for > __copy_from_user_nocache, and consistent with > copy_from_user and friends. > > Signed-off-by: Michael S. Tsirkin <mst@redhat.com> > --- > > I've updated all other arches as well - still > build-testing. Any objections to the x86 patch? > > arch/x86/include/asm/uaccess_64.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/x86/include/asm/uaccess_64.h b/arch/x86/include/asm/uaccess_64.h > index 142810c..4f7923d 100644 > --- a/arch/x86/include/asm/uaccess_64.h > +++ b/arch/x86/include/asm/uaccess_64.h > @@ -235,7 +235,7 @@ extern long __copy_user_nocache(void *dst, const void __user *src, > static inline int > __copy_from_user_nocache(void *dst, const void __user *src, unsigned size) > { > - might_sleep(); > + might_fault(); > return __copy_user_nocache(dst, src, size, 1); Looks good to me: Acked-by: Ingo Molnar <mingo@kernel.org> ... but while reviewing the effects I noticed a bug in might_fault(): #ifdef CONFIG_PROVE_LOCKING void might_fault(void) { /* * Some code (nfs/sunrpc) uses socket ops on kernel memory while * holding the mmap_sem, this is safe because kernel memory doesn't * get paged out, therefore we'll never actually fault, and the * below annotations will generate false positives. */ if (segment_eq(get_fs(), KERNEL_DS)) return; might_sleep(); the might_sleep() call should come first. With the current code might_fault() schedules differently depending on CONFIG_PROVE_LOCKING, which is an undesired semantical side effect ... So please fix that too while at it. Thanks, Ingo ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH RFC] x86: uaccess s/might_sleep/might_fault/ 2013-05-02 8:52 ` Ingo Molnar @ 2013-05-02 13:28 ` Michael S. Tsirkin 2013-05-07 10:11 ` Michael S. Tsirkin 0 siblings, 1 reply; 4+ messages in thread From: Michael S. Tsirkin @ 2013-05-02 13:28 UTC (permalink / raw) To: Ingo Molnar Cc: linux-kernel, Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86, Fenghua Yu On Thu, May 02, 2013 at 10:52:41AM +0200, Ingo Molnar wrote: > > * Michael S. Tsirkin <mst@redhat.com> wrote: > > > The only reason uaccess routines might sleep > > is if they fault. Make this explicit for > > __copy_from_user_nocache, and consistent with > > copy_from_user and friends. > > > > Signed-off-by: Michael S. Tsirkin <mst@redhat.com> > > --- > > > > I've updated all other arches as well - still > > build-testing. Any objections to the x86 patch? > > > > arch/x86/include/asm/uaccess_64.h | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/arch/x86/include/asm/uaccess_64.h b/arch/x86/include/asm/uaccess_64.h > > index 142810c..4f7923d 100644 > > --- a/arch/x86/include/asm/uaccess_64.h > > +++ b/arch/x86/include/asm/uaccess_64.h > > @@ -235,7 +235,7 @@ extern long __copy_user_nocache(void *dst, const void __user *src, > > static inline int > > __copy_from_user_nocache(void *dst, const void __user *src, unsigned size) > > { > > - might_sleep(); > > + might_fault(); > > return __copy_user_nocache(dst, src, size, 1); > > Looks good to me: > > Acked-by: Ingo Molnar <mingo@kernel.org> > > > ... but while reviewing the effects I noticed a bug in might_fault(): > > #ifdef CONFIG_PROVE_LOCKING > void might_fault(void) > { > /* > * Some code (nfs/sunrpc) uses socket ops on kernel memory while > * holding the mmap_sem, this is safe because kernel memory doesn't > * get paged out, therefore we'll never actually fault, and the > * below annotations will generate false positives. > */ > if (segment_eq(get_fs(), KERNEL_DS)) > return; > > might_sleep(); > > the might_sleep() call should come first. With the current code > might_fault() schedules differently depending on CONFIG_PROVE_LOCKING, > which is an undesired semantical side effect ... > > So please fix that too while at it. > > Thanks, > > Ingo OK. And there's another bug that I'd like to fix: if caller does pagefault_disable, pagefaults don't actually sleep: the page fault handler will detect we are in tomic context and go directly to fixups instead of processing the page fault. So calling anything that faults in atomic context is ok, and it should be if (pagefault_disabled()) might_sleep(); Except we don't have pagefault_disabled(), and we still want to catch the calls within preempt_disable sections (as these can be compiled out), so I plan to add a per-cpu flag (only if CONFIG_DEBUG_ATOMIC_SLEEP is set) to distinguish between preempt_disable and pagefault_disable. -- MST ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH RFC] x86: uaccess s/might_sleep/might_fault/ 2013-05-02 13:28 ` Michael S. Tsirkin @ 2013-05-07 10:11 ` Michael S. Tsirkin 0 siblings, 0 replies; 4+ messages in thread From: Michael S. Tsirkin @ 2013-05-07 10:11 UTC (permalink / raw) To: Ingo Molnar Cc: linux-kernel, Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86, Fenghua Yu On Thu, May 02, 2013 at 04:28:40PM +0300, Michael S. Tsirkin wrote: > On Thu, May 02, 2013 at 10:52:41AM +0200, Ingo Molnar wrote: > > > > * Michael S. Tsirkin <mst@redhat.com> wrote: > > > > > The only reason uaccess routines might sleep > > > is if they fault. Make this explicit for > > > __copy_from_user_nocache, and consistent with > > > copy_from_user and friends. > > > > > > Signed-off-by: Michael S. Tsirkin <mst@redhat.com> > > > --- > > > > > > I've updated all other arches as well - still > > > build-testing. Any objections to the x86 patch? > > > > > > arch/x86/include/asm/uaccess_64.h | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/arch/x86/include/asm/uaccess_64.h b/arch/x86/include/asm/uaccess_64.h > > > index 142810c..4f7923d 100644 > > > --- a/arch/x86/include/asm/uaccess_64.h > > > +++ b/arch/x86/include/asm/uaccess_64.h > > > @@ -235,7 +235,7 @@ extern long __copy_user_nocache(void *dst, const void __user *src, > > > static inline int > > > __copy_from_user_nocache(void *dst, const void __user *src, unsigned size) > > > { > > > - might_sleep(); > > > + might_fault(); > > > return __copy_user_nocache(dst, src, size, 1); > > > > Looks good to me: > > > > Acked-by: Ingo Molnar <mingo@kernel.org> > > > > > > ... but while reviewing the effects I noticed a bug in might_fault(): > > > > #ifdef CONFIG_PROVE_LOCKING > > void might_fault(void) > > { > > /* > > * Some code (nfs/sunrpc) uses socket ops on kernel memory while > > * holding the mmap_sem, this is safe because kernel memory doesn't > > * get paged out, therefore we'll never actually fault, and the > > * below annotations will generate false positives. > > */ > > if (segment_eq(get_fs(), KERNEL_DS)) > > return; > > > > might_sleep(); > > > > the might_sleep() call should come first. With the current code > > might_fault() schedules differently depending on CONFIG_PROVE_LOCKING, > > which is an undesired semantical side effect ... > > > > So please fix that too while at it. > > > > Thanks, > > > > Ingo > > > OK. And there's another bug that I'd like to fix: > if caller does pagefault_disable, pagefaults don't > actually sleep: the page fault handler will detect we are in > tomic context and go directly to fixups instead of > processing the page fault. > > So calling anything that faults in atomic context is > ok, and it should be > > if (pagefault_disabled()) > might_sleep(); Hi Ingo, Okay, so I thought the following will do the trick for the code in include/linux/kernel.h : #ifdef CONFIG_PROVE_LOCKING void might_fault(void); #elif CONFIG_DEBUG_ATOMIC_SLEEP static inline void might_fault(void) { might_sleep_if(!in_atomic()); } #else static inline void might_fault(void) { } #endif And similarly in mm/memory.c: - might_sleep(); + might_sleep_if(!in_atomic()); Except in_atomic is not available in kernel.h - so will have to make might_fault a macro from an inline, or move it to another header. Any comments on this part? Now if I do this, it becomes possible to do extend this to: #ifdef CONFIG_PROVE_LOCKING void might_fault(void); #elif CONFIG_DEBUG_ATOMIC_SLEEP static inline void might_fault(void) { might_sleep_if(!in_atomic() && !segment_eq(get_fs(), KERNEL_DS)); } #else static inline void might_fault(void) { } #endif And this will address your comment? Any early comments on the above? Thanks, > -- > MST ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-05-07 10:12 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-05-02 2:21 [PATCH RFC] x86: uaccess s/might_sleep/might_fault/ Michael S. Tsirkin 2013-05-02 8:52 ` Ingo Molnar 2013-05-02 13:28 ` Michael S. Tsirkin 2013-05-07 10:11 ` Michael S. Tsirkin
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox