1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _LINUX_FORTIFY_STRING_H_ 3 #define _LINUX_FORTIFY_STRING_H_ 4 5 #include <linux/const.h> 6 7 #define __FORTIFY_INLINE extern __always_inline __gnu_inline __overloadable 8 #define __RENAME(x) __asm__(#x) 9 10 void fortify_panic(const char *name) __noreturn __cold; 11 void __read_overflow(void) __compiletime_error("detected read beyond size of object (1st parameter)"); 12 void __read_overflow2(void) __compiletime_error("detected read beyond size of object (2nd parameter)"); 13 void __read_overflow2_field(size_t avail, size_t wanted) __compiletime_warning("detected read beyond size of field (2nd parameter); maybe use struct_group()?"); 14 void __write_overflow(void) __compiletime_error("detected write beyond size of object (1st parameter)"); 15 void __write_overflow_field(size_t avail, size_t wanted) __compiletime_warning("detected write beyond size of field (1st parameter); maybe use struct_group()?"); 16 17 #define __compiletime_strlen(p) \ 18 ({ \ 19 unsigned char *__p = (unsigned char *)(p); \ 20 size_t __ret = (size_t)-1; \ 21 size_t __p_size = __builtin_object_size(p, 1); \ 22 if (__p_size != (size_t)-1) { \ 23 size_t __p_len = __p_size - 1; \ 24 if (__builtin_constant_p(__p[__p_len]) && \ 25 __p[__p_len] == '\0') \ 26 __ret = __builtin_strlen(__p); \ 27 } \ 28 __ret; \ 29 }) 30 31 #if defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS) 32 extern void *__underlying_memchr(const void *p, int c, __kernel_size_t size) __RENAME(memchr); 33 extern int __underlying_memcmp(const void *p, const void *q, __kernel_size_t size) __RENAME(memcmp); 34 extern void *__underlying_memcpy(void *p, const void *q, __kernel_size_t size) __RENAME(memcpy); 35 extern void *__underlying_memmove(void *p, const void *q, __kernel_size_t size) __RENAME(memmove); 36 extern void *__underlying_memset(void *p, int c, __kernel_size_t size) __RENAME(memset); 37 extern char *__underlying_strcat(char *p, const char *q) __RENAME(strcat); 38 extern char *__underlying_strcpy(char *p, const char *q) __RENAME(strcpy); 39 extern __kernel_size_t __underlying_strlen(const char *p) __RENAME(strlen); 40 extern char *__underlying_strncat(char *p, const char *q, __kernel_size_t count) __RENAME(strncat); 41 extern char *__underlying_strncpy(char *p, const char *q, __kernel_size_t size) __RENAME(strncpy); 42 #else 43 #define __underlying_memchr __builtin_memchr 44 #define __underlying_memcmp __builtin_memcmp 45 #define __underlying_memcpy __builtin_memcpy 46 #define __underlying_memmove __builtin_memmove 47 #define __underlying_memset __builtin_memset 48 #define __underlying_strcat __builtin_strcat 49 #define __underlying_strcpy __builtin_strcpy 50 #define __underlying_strlen __builtin_strlen 51 #define __underlying_strncat __builtin_strncat 52 #define __underlying_strncpy __builtin_strncpy 53 #endif 54 55 /** 56 * unsafe_memcpy - memcpy implementation with no FORTIFY bounds checking 57 * 58 * @dst: Destination memory address to write to 59 * @src: Source memory address to read from 60 * @bytes: How many bytes to write to @dst from @src 61 * @justification: Free-form text or comment describing why the use is needed 62 * 63 * This should be used for corner cases where the compiler cannot do the 64 * right thing, or during transitions between APIs, etc. It should be used 65 * very rarely, and includes a place for justification detailing where bounds 66 * checking has happened, and why existing solutions cannot be employed. 67 */ 68 #define unsafe_memcpy(dst, src, bytes, justification) \ 69 __underlying_memcpy(dst, src, bytes) 70 71 /* 72 * Clang's use of __builtin_object_size() within inlines needs hinting via 73 * __pass_object_size(). The preference is to only ever use type 1 (member 74 * size, rather than struct size), but there remain some stragglers using 75 * type 0 that will be converted in the future. 76 */ 77 #define POS __pass_object_size(1) 78 #define POS0 __pass_object_size(0) 79 80 __FORTIFY_INLINE __diagnose_as(__builtin_strncpy, 1, 2, 3) 81 char *strncpy(char * const POS p, const char *q, __kernel_size_t size) 82 { 83 size_t p_size = __builtin_object_size(p, 1); 84 85 if (__builtin_constant_p(size) && p_size < size) 86 __write_overflow(); 87 if (p_size < size) 88 fortify_panic(__func__); 89 return __underlying_strncpy(p, q, size); 90 } 91 92 __FORTIFY_INLINE __diagnose_as(__builtin_strcat, 1, 2) 93 char *strcat(char * const POS p, const char *q) 94 { 95 size_t p_size = __builtin_object_size(p, 1); 96 97 if (p_size == (size_t)-1) 98 return __underlying_strcat(p, q); 99 if (strlcat(p, q, p_size) >= p_size) 100 fortify_panic(__func__); 101 return p; 102 } 103 104 extern __kernel_size_t __real_strnlen(const char *, __kernel_size_t) __RENAME(strnlen); 105 __FORTIFY_INLINE __kernel_size_t strnlen(const char * const POS p, __kernel_size_t maxlen) 106 { 107 size_t p_size = __builtin_object_size(p, 1); 108 size_t p_len = __compiletime_strlen(p); 109 size_t ret; 110 111 /* We can take compile-time actions when maxlen is const. */ 112 if (__builtin_constant_p(maxlen) && p_len != (size_t)-1) { 113 /* If p is const, we can use its compile-time-known len. */ 114 if (maxlen >= p_size) 115 return p_len; 116 } 117 118 /* Do not check characters beyond the end of p. */ 119 ret = __real_strnlen(p, maxlen < p_size ? maxlen : p_size); 120 if (p_size <= ret && maxlen != ret) 121 fortify_panic(__func__); 122 return ret; 123 } 124 125 /* 126 * Defined after fortified strnlen to reuse it. However, it must still be 127 * possible for strlen() to be used on compile-time strings for use in 128 * static initializers (i.e. as a constant expression). 129 */ 130 #define strlen(p) \ 131 __builtin_choose_expr(__is_constexpr(__builtin_strlen(p)), \ 132 __builtin_strlen(p), __fortify_strlen(p)) 133 __FORTIFY_INLINE __diagnose_as(__builtin_strlen, 1) 134 __kernel_size_t __fortify_strlen(const char * const POS p) 135 { 136 __kernel_size_t ret; 137 size_t p_size = __builtin_object_size(p, 1); 138 139 /* Give up if we don't know how large p is. */ 140 if (p_size == (size_t)-1) 141 return __underlying_strlen(p); 142 ret = strnlen(p, p_size); 143 if (p_size <= ret) 144 fortify_panic(__func__); 145 return ret; 146 } 147 148 /* defined after fortified strlen to reuse it */ 149 extern size_t __real_strlcpy(char *, const char *, size_t) __RENAME(strlcpy); 150 __FORTIFY_INLINE size_t strlcpy(char * const POS p, const char * const POS q, size_t size) 151 { 152 size_t p_size = __builtin_object_size(p, 1); 153 size_t q_size = __builtin_object_size(q, 1); 154 size_t q_len; /* Full count of source string length. */ 155 size_t len; /* Count of characters going into destination. */ 156 157 if (p_size == (size_t)-1 && q_size == (size_t)-1) 158 return __real_strlcpy(p, q, size); 159 q_len = strlen(q); 160 len = (q_len >= size) ? size - 1 : q_len; 161 if (__builtin_constant_p(size) && __builtin_constant_p(q_len) && size) { 162 /* Write size is always larger than destination. */ 163 if (len >= p_size) 164 __write_overflow(); 165 } 166 if (size) { 167 if (len >= p_size) 168 fortify_panic(__func__); 169 __underlying_memcpy(p, q, len); 170 p[len] = '\0'; 171 } 172 return q_len; 173 } 174 175 /* defined after fortified strnlen to reuse it */ 176 extern ssize_t __real_strscpy(char *, const char *, size_t) __RENAME(strscpy); 177 __FORTIFY_INLINE ssize_t strscpy(char * const POS p, const char * const POS q, size_t size) 178 { 179 size_t len; 180 /* Use string size rather than possible enclosing struct size. */ 181 size_t p_size = __builtin_object_size(p, 1); 182 size_t q_size = __builtin_object_size(q, 1); 183 184 /* If we cannot get size of p and q default to call strscpy. */ 185 if (p_size == (size_t) -1 && q_size == (size_t) -1) 186 return __real_strscpy(p, q, size); 187 188 /* 189 * If size can be known at compile time and is greater than 190 * p_size, generate a compile time write overflow error. 191 */ 192 if (__builtin_constant_p(size) && size > p_size) 193 __write_overflow(); 194 195 /* 196 * This call protects from read overflow, because len will default to q 197 * length if it smaller than size. 198 */ 199 len = strnlen(q, size); 200 /* 201 * If len equals size, we will copy only size bytes which leads to 202 * -E2BIG being returned. 203 * Otherwise we will copy len + 1 because of the final '\O'. 204 */ 205 len = len == size ? size : len + 1; 206 207 /* 208 * Generate a runtime write overflow error if len is greater than 209 * p_size. 210 */ 211 if (len > p_size) 212 fortify_panic(__func__); 213 214 /* 215 * We can now safely call vanilla strscpy because we are protected from: 216 * 1. Read overflow thanks to call to strnlen(). 217 * 2. Write overflow thanks to above ifs. 218 */ 219 return __real_strscpy(p, q, len); 220 } 221 222 /* defined after fortified strlen and strnlen to reuse them */ 223 __FORTIFY_INLINE __diagnose_as(__builtin_strncat, 1, 2, 3) 224 char *strncat(char * const POS p, const char * const POS q, __kernel_size_t count) 225 { 226 size_t p_len, copy_len; 227 size_t p_size = __builtin_object_size(p, 1); 228 size_t q_size = __builtin_object_size(q, 1); 229 230 if (p_size == (size_t)-1 && q_size == (size_t)-1) 231 return __underlying_strncat(p, q, count); 232 p_len = strlen(p); 233 copy_len = strnlen(q, count); 234 if (p_size < p_len + copy_len + 1) 235 fortify_panic(__func__); 236 __underlying_memcpy(p + p_len, q, copy_len); 237 p[p_len + copy_len] = '\0'; 238 return p; 239 } 240 241 __FORTIFY_INLINE void fortify_memset_chk(__kernel_size_t size, 242 const size_t p_size, 243 const size_t p_size_field) 244 { 245 if (__builtin_constant_p(size)) { 246 /* 247 * Length argument is a constant expression, so we 248 * can perform compile-time bounds checking where 249 * buffer sizes are known. 250 */ 251 252 /* Error when size is larger than enclosing struct. */ 253 if (p_size > p_size_field && p_size < size) 254 __write_overflow(); 255 256 /* Warn when write size is larger than dest field. */ 257 if (p_size_field < size) 258 __write_overflow_field(p_size_field, size); 259 } 260 /* 261 * At this point, length argument may not be a constant expression, 262 * so run-time bounds checking can be done where buffer sizes are 263 * known. (This is not an "else" because the above checks may only 264 * be compile-time warnings, and we want to still warn for run-time 265 * overflows.) 266 */ 267 268 /* 269 * Always stop accesses beyond the struct that contains the 270 * field, when the buffer's remaining size is known. 271 * (The -1 test is to optimize away checks where the buffer 272 * lengths are unknown.) 273 */ 274 if (p_size != (size_t)(-1) && p_size < size) 275 fortify_panic("memset"); 276 } 277 278 #define __fortify_memset_chk(p, c, size, p_size, p_size_field) ({ \ 279 size_t __fortify_size = (size_t)(size); \ 280 fortify_memset_chk(__fortify_size, p_size, p_size_field), \ 281 __underlying_memset(p, c, __fortify_size); \ 282 }) 283 284 /* 285 * __builtin_object_size() must be captured here to avoid evaluating argument 286 * side-effects further into the macro layers. 287 */ 288 #ifndef CONFIG_KMSAN 289 #define memset(p, c, s) __fortify_memset_chk(p, c, s, \ 290 __builtin_object_size(p, 0), __builtin_object_size(p, 1)) 291 #endif 292 293 /* 294 * To make sure the compiler can enforce protection against buffer overflows, 295 * memcpy(), memmove(), and memset() must not be used beyond individual 296 * struct members. If you need to copy across multiple members, please use 297 * struct_group() to create a named mirror of an anonymous struct union. 298 * (e.g. see struct sk_buff.) Read overflow checking is currently only 299 * done when a write overflow is also present, or when building with W=1. 300 * 301 * Mitigation coverage matrix 302 * Bounds checking at: 303 * +-------+-------+-------+-------+ 304 * | Compile time | Run time | 305 * memcpy() argument sizes: | write | read | write | read | 306 * dest source length +-------+-------+-------+-------+ 307 * memcpy(known, known, constant) | y | y | n/a | n/a | 308 * memcpy(known, unknown, constant) | y | n | n/a | V | 309 * memcpy(known, known, dynamic) | n | n | B | B | 310 * memcpy(known, unknown, dynamic) | n | n | B | V | 311 * memcpy(unknown, known, constant) | n | y | V | n/a | 312 * memcpy(unknown, unknown, constant) | n | n | V | V | 313 * memcpy(unknown, known, dynamic) | n | n | V | B | 314 * memcpy(unknown, unknown, dynamic) | n | n | V | V | 315 * +-------+-------+-------+-------+ 316 * 317 * y = perform deterministic compile-time bounds checking 318 * n = cannot perform deterministic compile-time bounds checking 319 * n/a = no run-time bounds checking needed since compile-time deterministic 320 * B = can perform run-time bounds checking (currently unimplemented) 321 * V = vulnerable to run-time overflow (will need refactoring to solve) 322 * 323 */ 324 __FORTIFY_INLINE void fortify_memcpy_chk(__kernel_size_t size, 325 const size_t p_size, 326 const size_t q_size, 327 const size_t p_size_field, 328 const size_t q_size_field, 329 const char *func) 330 { 331 if (__builtin_constant_p(size)) { 332 /* 333 * Length argument is a constant expression, so we 334 * can perform compile-time bounds checking where 335 * buffer sizes are known. 336 */ 337 338 /* Error when size is larger than enclosing struct. */ 339 if (p_size > p_size_field && p_size < size) 340 __write_overflow(); 341 if (q_size > q_size_field && q_size < size) 342 __read_overflow2(); 343 344 /* Warn when write size argument larger than dest field. */ 345 if (p_size_field < size) 346 __write_overflow_field(p_size_field, size); 347 /* 348 * Warn for source field over-read when building with W=1 349 * or when an over-write happened, so both can be fixed at 350 * the same time. 351 */ 352 if ((IS_ENABLED(KBUILD_EXTRA_WARN1) || p_size_field < size) && 353 q_size_field < size) 354 __read_overflow2_field(q_size_field, size); 355 } 356 /* 357 * At this point, length argument may not be a constant expression, 358 * so run-time bounds checking can be done where buffer sizes are 359 * known. (This is not an "else" because the above checks may only 360 * be compile-time warnings, and we want to still warn for run-time 361 * overflows.) 362 */ 363 364 /* 365 * Always stop accesses beyond the struct that contains the 366 * field, when the buffer's remaining size is known. 367 * (The -1 test is to optimize away checks where the buffer 368 * lengths are unknown.) 369 */ 370 if ((p_size != (size_t)(-1) && p_size < size) || 371 (q_size != (size_t)(-1) && q_size < size)) 372 fortify_panic(func); 373 } 374 375 #define __fortify_memcpy_chk(p, q, size, p_size, q_size, \ 376 p_size_field, q_size_field, op) ({ \ 377 size_t __fortify_size = (size_t)(size); \ 378 fortify_memcpy_chk(__fortify_size, p_size, q_size, \ 379 p_size_field, q_size_field, #op); \ 380 __underlying_##op(p, q, __fortify_size); \ 381 }) 382 383 /* 384 * __builtin_object_size() must be captured here to avoid evaluating argument 385 * side-effects further into the macro layers. 386 */ 387 #define memcpy(p, q, s) __fortify_memcpy_chk(p, q, s, \ 388 __builtin_object_size(p, 0), __builtin_object_size(q, 0), \ 389 __builtin_object_size(p, 1), __builtin_object_size(q, 1), \ 390 memcpy) 391 #define memmove(p, q, s) __fortify_memcpy_chk(p, q, s, \ 392 __builtin_object_size(p, 0), __builtin_object_size(q, 0), \ 393 __builtin_object_size(p, 1), __builtin_object_size(q, 1), \ 394 memmove) 395 396 extern void *__real_memscan(void *, int, __kernel_size_t) __RENAME(memscan); 397 __FORTIFY_INLINE void *memscan(void * const POS0 p, int c, __kernel_size_t size) 398 { 399 size_t p_size = __builtin_object_size(p, 0); 400 401 if (__builtin_constant_p(size) && p_size < size) 402 __read_overflow(); 403 if (p_size < size) 404 fortify_panic(__func__); 405 return __real_memscan(p, c, size); 406 } 407 408 __FORTIFY_INLINE __diagnose_as(__builtin_memcmp, 1, 2, 3) 409 int memcmp(const void * const POS0 p, const void * const POS0 q, __kernel_size_t size) 410 { 411 size_t p_size = __builtin_object_size(p, 0); 412 size_t q_size = __builtin_object_size(q, 0); 413 414 if (__builtin_constant_p(size)) { 415 if (p_size < size) 416 __read_overflow(); 417 if (q_size < size) 418 __read_overflow2(); 419 } 420 if (p_size < size || q_size < size) 421 fortify_panic(__func__); 422 return __underlying_memcmp(p, q, size); 423 } 424 425 __FORTIFY_INLINE __diagnose_as(__builtin_memchr, 1, 2, 3) 426 void *memchr(const void * const POS0 p, int c, __kernel_size_t size) 427 { 428 size_t p_size = __builtin_object_size(p, 0); 429 430 if (__builtin_constant_p(size) && p_size < size) 431 __read_overflow(); 432 if (p_size < size) 433 fortify_panic(__func__); 434 return __underlying_memchr(p, c, size); 435 } 436 437 void *__real_memchr_inv(const void *s, int c, size_t n) __RENAME(memchr_inv); 438 __FORTIFY_INLINE void *memchr_inv(const void * const POS0 p, int c, size_t size) 439 { 440 size_t p_size = __builtin_object_size(p, 0); 441 442 if (__builtin_constant_p(size) && p_size < size) 443 __read_overflow(); 444 if (p_size < size) 445 fortify_panic(__func__); 446 return __real_memchr_inv(p, c, size); 447 } 448 449 extern void *__real_kmemdup(const void *src, size_t len, gfp_t gfp) __RENAME(kmemdup); 450 __FORTIFY_INLINE void *kmemdup(const void * const POS0 p, size_t size, gfp_t gfp) 451 { 452 size_t p_size = __builtin_object_size(p, 0); 453 454 if (__builtin_constant_p(size) && p_size < size) 455 __read_overflow(); 456 if (p_size < size) 457 fortify_panic(__func__); 458 return __real_kmemdup(p, size, gfp); 459 } 460 461 /* Defined after fortified strlen to reuse it. */ 462 __FORTIFY_INLINE __diagnose_as(__builtin_strcpy, 1, 2) 463 char *strcpy(char * const POS p, const char * const POS q) 464 { 465 size_t p_size = __builtin_object_size(p, 1); 466 size_t q_size = __builtin_object_size(q, 1); 467 size_t size; 468 469 /* If neither buffer size is known, immediately give up. */ 470 if (p_size == (size_t)-1 && q_size == (size_t)-1) 471 return __underlying_strcpy(p, q); 472 size = strlen(q) + 1; 473 /* Compile-time check for const size overflow. */ 474 if (__builtin_constant_p(size) && p_size < size) 475 __write_overflow(); 476 /* Run-time check for dynamic size overflow. */ 477 if (p_size < size) 478 fortify_panic(__func__); 479 __underlying_memcpy(p, q, size); 480 return p; 481 } 482 483 /* Don't use these outside the FORITFY_SOURCE implementation */ 484 #undef __underlying_memchr 485 #undef __underlying_memcmp 486 #undef __underlying_strcat 487 #undef __underlying_strcpy 488 #undef __underlying_strlen 489 #undef __underlying_strncat 490 #undef __underlying_strncpy 491 492 #undef POS 493 #undef POS0 494 495 #endif /* _LINUX_FORTIFY_STRING_H_ */ 496