2 * arch/sh/mm/extable_64.c
4 * Copyright (C) 2003 Richard Curnow
5 * Copyright (C) 2003, 2004 Paul Mundt
7 * Cloned from the 2.5 SH version..
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file "COPYING" in the main directory of this archive
13 #include <linux/bsearch.h>
14 #include <linux/rwsem.h>
15 #include <linux/extable.h>
16 #include <linux/uaccess.h>
18 extern unsigned long copy_user_memcpy
, copy_user_memcpy_end
;
19 extern void __copy_user_fixup(void);
21 static const struct exception_table_entry __copy_user_fixup_ex
= {
22 .fixup
= (unsigned long)&__copy_user_fixup
,
26 * Some functions that may trap due to a bad user-mode address have too
27 * many loads and stores in them to make it at all practical to label
28 * each one and put them all in the main exception table.
30 * In particular, the fast memcpy routine is like this. It's fix-up is
31 * just to fall back to a slow byte-at-a-time copy, which is handled the
32 * conventional way. So it's functionally OK to just handle any trap
33 * occurring in the fast memcpy with that fixup.
35 static const struct exception_table_entry
*check_exception_ranges(unsigned long addr
)
37 if ((addr
>= (unsigned long)©_user_memcpy
) &&
38 (addr
<= (unsigned long)©_user_memcpy_end
))
39 return &__copy_user_fixup_ex
;
44 static int cmp_ex_search(const void *key
, const void *elt
)
46 const struct exception_table_entry
*_elt
= elt
;
47 unsigned long _key
= *(unsigned long *)key
;
50 if (_key
> _elt
->insn
)
52 if (_key
< _elt
->insn
)
57 /* Simple binary search */
58 const struct exception_table_entry
*
59 search_extable(const struct exception_table_entry
*base
,
63 const struct exception_table_entry
*mid
;
65 mid
= check_exception_ranges(value
);
69 return bsearch(&value
, base
, num
,
70 sizeof(struct exception_table_entry
), cmp_ex_search
);
73 int fixup_exception(struct pt_regs
*regs
)
75 const struct exception_table_entry
*fixup
;
77 fixup
= search_exception_tables(regs
->pc
);
79 regs
->pc
= fixup
->fixup
;