/** * prober_user() - Probe user read access * @sr: Space regster. * @va: Virtual address. * * Return: Non-zero if address is accessible. * * Due to the way _PAGE_READ is handled in TLB entries, we need * a special check to determine whether a user address is accessible. * The ldb instruction does the initial access check. If it is * successful, the probe instruction checks user access rights.
*/ #define prober_user(sr, va) ({ \ unsignedlong read_allowed; \
__asm__ __volatile__( \ "copy %%r0,%0\n" \ "8:\tldb 0(%%sr%1,%2),%%r0\n" \ "\tproberi (%%sr%1,%2),%3,%0\n" \ "9:\n" \
ASM_EXCEPTIONTABLE_ENTRY(8b, 9b, \ "or %%r0,%%r0,%%r0") \
: "=&r" (read_allowed) \
: "i" (sr), "r" (va), "i" (PRIV_USER) \
: "memory" \
); \
read_allowed; \
})
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.