X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=probes%2Flttng-probe-user.c;h=ed566ddb424b123a02f8ec1ba496517801a7eb2d;hb=2230bf699820d6cc70492353600fcca409ea366c;hp=94ecf2f1cffb339d53d9c1dc4d62f58a13dc9ece;hpb=7b8ea3a503536c9d00f8bb14958a150cbf7370c0;p=lttng-modules.git diff --git a/probes/lttng-probe-user.c b/probes/lttng-probe-user.c index 94ecf2f1..ed566ddb 100644 --- a/probes/lttng-probe-user.c +++ b/probes/lttng-probe-user.c @@ -19,7 +19,9 @@ */ #include -#include "lttng-probe-user.h" +#include +#include +#include /* * Calculate string length. Include final null terminating character if there is @@ -30,18 +32,26 @@ long lttng_strlen_user_inatomic(const char *addr) { long count = 0; - mm_segment_t old_fs = get_fs(); + mm_segment_t old_fs; + if (!addr) + return 0; + + old_fs = get_fs(); set_fs(KERNEL_DS); pagefault_disable(); for (;;) { char v; - long ret; + unsigned long ret; + if (unlikely(!lttng_access_ok(VERIFY_READ, + (__force const char __user *) addr, + sizeof(v)))) + break; ret = __copy_from_user_inatomic(&v, (__force const char __user *)(addr), sizeof(v)); - if (unlikely(ret == -EFAULT)) + if (unlikely(ret > 0)) break; count++; if (unlikely(!v)) @@ -52,3 +62,4 @@ long lttng_strlen_user_inatomic(const char *addr) set_fs(old_fs); return count; } +EXPORT_SYMBOL_GPL(lttng_strlen_user_inatomic);