Skip to content

Commit 4a78921

Browse files
committed
x86 uaccess: Introduce __put_user_goto
This is finally the actual reason for the odd error handling in the "unsafe_get/put_user()" functions, introduced over three years ago. Using a "jump to error label" interface is somewhat odd, but very convenient as a programming interface, and more importantly, it fits very well with simply making the target be the exception handler address directly from the inline asm. The reason it took over three years to actually do this? We need "asm goto" support for it, which only became the default on x86 last year. It's now been a year that we've forced asm goto support (see commit e501ce9 "x86: Force asm-goto"), and so let's just do it here too. [ Side note: this commit was originally done back in 2016. The above commentary about timing is obviously about it only now getting merged into my real upstream tree - Linus ] Sadly, gcc still only supports "asm goto" with asms that do not have any outputs, so we are limited to only the put_user case for this. Maybe in several more years we can do the get_user case too. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 594cc25 commit 4a78921

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

arch/x86/include/asm/uaccess.h

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -463,17 +463,23 @@ struct __large_struct { unsigned long buf[100]; };
463463
* we do not write to any memory gcc knows about, so there are no
464464
* aliasing issues.
465465
*/
466-
#define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) \
467-
asm volatile("\n" \
468-
"1: mov"itype" %"rtype"1,%2\n" \
469-
"2:\n" \
470-
".section .fixup,\"ax\"\n" \
471-
"3: mov %3,%0\n" \
472-
" jmp 2b\n" \
473-
".previous\n" \
474-
_ASM_EXTABLE_UA(1b, 3b) \
475-
: "=r"(err) \
476-
: ltype(x), "m" (__m(addr)), "i" (errret), "0" (err))
466+
#define __put_user_goto(x, addr, itype, rtype, ltype, label) \
467+
asm_volatile_goto("\n" \
468+
"1: mov"itype" %"rtype"0,%1\n" \
469+
_ASM_EXTABLE_UA(1b, %l2) \
470+
: : ltype(x), "m" (__m(addr)) \
471+
: : label)
472+
473+
#define __put_user_failed(x, addr, itype, rtype, ltype, errret) \
474+
({ __label__ __puflab; \
475+
int __pufret = errret; \
476+
__put_user_goto(x,addr,itype,rtype,ltype,__puflab); \
477+
__pufret = 0; \
478+
__puflab: __pufret; })
479+
480+
#define __put_user_asm(x, addr, retval, itype, rtype, ltype, errret) do { \
481+
retval = __put_user_failed(x, addr, itype, rtype, ltype, errret); \
482+
} while (0)
477483

478484
#define __put_user_asm_ex(x, addr, itype, rtype, ltype) \
479485
asm volatile("1: mov"itype" %"rtype"0,%1\n" \

0 commit comments

Comments
 (0)