blob: 57642f2f2010aba3da5b6764cf29c2927c5dcc5c [file] [log] [blame]
Linus Torvaldsa08c5352012-05-26 11:06:38 -07001#include <linux/kernel.h>
2#include <linux/export.h>
3#include <linux/uaccess.h>
4
5#include <asm/word-at-a-time.h>
6
7/* Set bits in the first 'n' bytes when loaded from memory */
8#ifdef __LITTLE_ENDIAN
9# define aligned_byte_mask(n) ((1ul << 8*(n))-1)
10#else
Paul Mackerras69ea6402012-05-28 12:59:56 +100011# define aligned_byte_mask(n) (~0xfful << (BITS_PER_LONG - 8 - 8*(n)))
Linus Torvaldsa08c5352012-05-26 11:06:38 -070012#endif
13
14/*
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.
18 *
19 * Return 0 for exceptions (which includes hitting the address
20 * space maximum), or 'count+1' if hitting the user-supplied
21 * maximum count.
22 *
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".
26 */
27static inline long do_strnlen_user(const char __user *src, unsigned long count, unsigned long max)
28{
29 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
30 long align, res = 0;
31 unsigned long c;
32
33 /*
34 * Truncate 'max' to the user-specified limit, so that
35 * we only have one limit we need to check in the loop
36 */
37 if (max > count)
38 max = count;
39
40 /*
41 * Do everything aligned. But that means that we
42 * need to also expand the maximum..
43 */
44 align = (sizeof(long) - 1) & (unsigned long)src;
45 src -= align;
46 max += align;
47
Linus Torvalds34332042016-08-08 13:02:01 -070048 unsafe_get_user(c, (unsigned long __user *)src, efault);
Linus Torvaldsa08c5352012-05-26 11:06:38 -070049 c |= aligned_byte_mask(align);
50
51 for (;;) {
52 unsigned long data;
53 if (has_zero(c, &data, &constants)) {
54 data = prep_zero_mask(c, data, &constants);
55 data = create_zero_mask(data);
56 return res + find_zero(data) + 1 - align;
57 }
58 res += sizeof(unsigned long);
Jan Karaf18c34e2015-06-02 17:10:28 +020059 /* We already handled 'unsigned long' bytes. Did we do it all ? */
60 if (unlikely(max <= sizeof(unsigned long)))
Linus Torvaldsa08c5352012-05-26 11:06:38 -070061 break;
62 max -= sizeof(unsigned long);
Linus Torvalds34332042016-08-08 13:02:01 -070063 unsafe_get_user(c, (unsigned long __user *)(src+res), efault);
Linus Torvaldsa08c5352012-05-26 11:06:38 -070064 }
65 res -= align;
66
67 /*
68 * Uhhuh. We hit 'max'. But was that the user-specified maximum
69 * too? If so, return the marker for "too long".
70 */
71 if (res >= count)
72 return count+1;
73
74 /*
75 * Nope: we hit the address space limit, and we still had more
76 * characters the caller would have wanted. That's 0.
77 */
Linus Torvalds34332042016-08-08 13:02:01 -070078efault:
Linus Torvaldsa08c5352012-05-26 11:06:38 -070079 return 0;
80}
81
82/**
83 * strnlen_user: - Get the size of a user string INCLUDING final NUL.
84 * @str: The string to measure.
85 * @count: Maximum count (including NUL character)
86 *
87 * Context: User context only. This function may sleep.
88 *
89 * Get the size of a NUL-terminated string in user space.
90 *
91 * Returns the size of the string INCLUDING the terminating NUL.
Jan Kara226a07e2015-06-03 15:50:35 +020092 * If the string is too long, returns a number larger than @count. User
93 * has to check the return value against "> count".
Linus Torvaldsa08c5352012-05-26 11:06:38 -070094 * On exception (or invalid count), returns 0.
Jan Kara226a07e2015-06-03 15:50:35 +020095 *
96 * NOTE! You should basically never use this function. There is
97 * almost never any valid case for using the length of a user space
98 * string, since the string can be changed at any time by other
99 * threads. Use "strncpy_from_user()" instead to get a stable copy
100 * of the string.
Linus Torvaldsa08c5352012-05-26 11:06:38 -0700101 */
102long strnlen_user(const char __user *str, long count)
103{
104 unsigned long max_addr, src_addr;
105
106 if (unlikely(count <= 0))
107 return 0;
108
109 max_addr = user_addr_max();
110 src_addr = (unsigned long)str;
111 if (likely(src_addr < max_addr)) {
112 unsigned long max = max_addr - src_addr;
Linus Torvalds9303ac82015-12-17 10:05:19 -0800113 long retval;
114
115 user_access_begin();
116 retval = do_strnlen_user(str, count, max);
117 user_access_end();
118 return retval;
Linus Torvaldsa08c5352012-05-26 11:06:38 -0700119 }
120 return 0;
121}
122EXPORT_SYMBOL(strnlen_user);
123
124/**
125 * strlen_user: - Get the size of a user string INCLUDING final NUL.
126 * @str: The string to measure.
127 *
128 * Context: User context only. This function may sleep.
129 *
130 * Get the size of a NUL-terminated string in user space.
131 *
132 * Returns the size of the string INCLUDING the terminating NUL.
133 * On exception, returns 0.
134 *
135 * If there is a limit on the length of a valid string, you may wish to
136 * consider using strnlen_user() instead.
137 */
138long strlen_user(const char __user *str)
139{
140 unsigned long max_addr, src_addr;
141
142 max_addr = user_addr_max();
143 src_addr = (unsigned long)str;
144 if (likely(src_addr < max_addr)) {
145 unsigned long max = max_addr - src_addr;
Linus Torvalds9303ac82015-12-17 10:05:19 -0800146 long retval;
147
148 user_access_begin();
149 retval = do_strnlen_user(str, ~0ul, max);
150 user_access_end();
151 return retval;
Linus Torvaldsa08c5352012-05-26 11:06:38 -0700152 }
153 return 0;
154}
155EXPORT_SYMBOL(strlen_user);