/* * This depends on trace_probe.h, but can not include it due to * the way trace_probe_tmpl.h is used by trace_kprobe.c and trace_eprobe.c. * Which means that any other user must include trace_probe.h before including * this file.
*/ /* Return the length of string -- including null terminal byte */ static nokprobe_inline int
fetch_store_strlen_user(unsignedlong addr)
{ constvoid __user *uaddr = (__force constvoid __user *)addr;
/* Return the length of string -- including null terminal byte */ static nokprobe_inline int
fetch_store_strlen(unsignedlong addr)
{ int ret, len = 0;
u8 c;
#ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE if (addr < TASK_SIZE) return fetch_store_strlen_user(addr); #endif
do {
ret = copy_from_kernel_nofault(&c, (u8 *)addr + len, 1);
len++;
} while (c && ret == 0 && len < MAX_STRING_SIZE);
/* * Fetch a null-terminated string from user. Caller MUST set *(u32 *)buf * with max length and relative data location.
*/ static nokprobe_inline int
fetch_store_string_user(unsignedlong addr, void *dest, void *base)
{ constvoid __user *uaddr = (__force constvoid __user *)addr; int maxlen = get_loc_len(*(u32 *)dest); void *__dest; long ret;
if (unlikely(!maxlen)) return -ENOMEM;
__dest = get_loc_data(dest, base);
ret = strncpy_from_user_nofault(__dest, uaddr, maxlen);
set_data_loc(ret, dest, __dest, base);
return ret;
}
/* * Fetch a null-terminated string. Caller MUST set *(u32 *)buf with max * length and relative data location.
*/ static nokprobe_inline int
fetch_store_string(unsignedlong addr, void *dest, void *base)
{ int maxlen = get_loc_len(*(u32 *)dest); void *__dest; long ret;
/* * Try to get string again, since the string can be changed while * probing.
*/
ret = strncpy_from_kernel_nofault(__dest, (void *)addr, maxlen);
set_data_loc(ret, dest, __dest, base);
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.