1 #include <linux/kernel.h>
2 #include <linux/export.h>
3 #include <linux/uaccess.h>
5 #include <asm/word-at-a-time.h>
7 /* Set bits in the first 'n' bytes when loaded from memory */
9 # define aligned_byte_mask(n) ((1ul << 8*(n))-1)
11 # define aligned_byte_mask(n) (~0xfful << (BITS_PER_LONG - 8 - 8*(n)))
15 * Do a strnlen, return length of string *with* final '\0'.
16 * 'count' is the user-supplied count, while 'max' is the
17 * address space maximum.
19 * Return 0 for exceptions (which includes hitting the address
20 * space maximum), or 'count+1' if hitting the user-supplied
23 * NOTE! We can sometimes overshoot the user-supplied maximum
24 * if it fits in a aligned 'long'. The caller needs to check
25 * the return value against "> max".
27 static inline long do_strnlen_user(const char __user
*src
, unsigned long count
, unsigned long max
)
29 const struct word_at_a_time constants
= WORD_AT_A_TIME_CONSTANTS
;
34 * Truncate 'max' to the user-specified limit, so that
35 * we only have one limit we need to check in the loop
41 * Do everything aligned. But that means that we
42 * need to also expand the maximum..
44 align
= (sizeof(long) - 1) & (unsigned long)src
;
48 if (unlikely(__get_user(c
,(unsigned long __user
*)src
)))
50 c
|= aligned_byte_mask(align
);
54 if (has_zero(c
, &data
, &constants
)) {
55 data
= prep_zero_mask(c
, data
, &constants
);
56 data
= create_zero_mask(data
);
57 return res
+ find_zero(data
) + 1 - align
;
59 res
+= sizeof(unsigned long);
60 /* We already handled 'unsigned long' bytes. Did we do it all ? */
61 if (unlikely(max
<= sizeof(unsigned long)))
63 max
-= sizeof(unsigned long);
64 if (unlikely(__get_user(c
,(unsigned long __user
*)(src
+res
))))
70 * Uhhuh. We hit 'max'. But was that the user-specified maximum
71 * too? If so, return the marker for "too long".
77 * Nope: we hit the address space limit, and we still had more
78 * characters the caller would have wanted. That's 0.
84 * strnlen_user: - Get the size of a user string INCLUDING final NUL.
85 * @str: The string to measure.
86 * @count: Maximum count (including NUL character)
88 * Context: User context only. This function may sleep.
90 * Get the size of a NUL-terminated string in user space.
92 * Returns the size of the string INCLUDING the terminating NUL.
93 * If the string is too long, returns 'count+1'.
94 * On exception (or invalid count), returns 0.
96 long strnlen_user(const char __user
*str
, long count
)
98 unsigned long max_addr
, src_addr
;
100 if (unlikely(count
<= 0))
103 max_addr
= user_addr_max();
104 src_addr
= (unsigned long)str
;
105 if (likely(src_addr
< max_addr
)) {
106 unsigned long max
= max_addr
- src_addr
;
107 return do_strnlen_user(str
, count
, max
);
111 EXPORT_SYMBOL(strnlen_user
);
114 * strlen_user: - Get the size of a user string INCLUDING final NUL.
115 * @str: The string to measure.
117 * Context: User context only. This function may sleep.
119 * Get the size of a NUL-terminated string in user space.
121 * Returns the size of the string INCLUDING the terminating NUL.
122 * On exception, returns 0.
124 * If there is a limit on the length of a valid string, you may wish to
125 * consider using strnlen_user() instead.
127 long strlen_user(const char __user
*str
)
129 unsigned long max_addr
, src_addr
;
131 max_addr
= user_addr_max();
132 src_addr
= (unsigned long)str
;
133 if (likely(src_addr
< max_addr
)) {
134 unsigned long max
= max_addr
- src_addr
;
135 return do_strnlen_user(str
, ~0ul, max
);
139 EXPORT_SYMBOL(strlen_user
);