blob: 03a6c256b7ec44ec14ce9b6aca27376dc2292fd1 [file] [log] [blame]
Catalin Marinas4a899222013-03-21 16:16:43 +00001/*
2 * Copyright (C) 2013 ARM Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#ifndef __ASM_STRING_H
17#define __ASM_STRING_H
18
Andrey Ryabinin19a2ca02018-10-26 15:02:30 -070019#ifndef CONFIG_KASAN
Catalin Marinas2b8cac82013-03-21 16:23:43 +000020#define __HAVE_ARCH_STRRCHR
21extern char *strrchr(const char *, int c);
22
23#define __HAVE_ARCH_STRCHR
24extern char *strchr(const char *, int c);
25
zhichang.yuan192c4d92014-04-28 13:11:33 +080026#define __HAVE_ARCH_STRCMP
27extern int strcmp(const char *, const char *);
28
29#define __HAVE_ARCH_STRNCMP
30extern int strncmp(const char *, const char *, __kernel_size_t);
31
zhichang.yuan0a42cb02014-04-28 13:11:34 +080032#define __HAVE_ARCH_STRLEN
33extern __kernel_size_t strlen(const char *);
34
35#define __HAVE_ARCH_STRNLEN
36extern __kernel_size_t strnlen(const char *, __kernel_size_t);
37
Andrey Ryabinin19a2ca02018-10-26 15:02:30 -070038#define __HAVE_ARCH_MEMCMP
39extern int memcmp(const void *, const void *, size_t);
40
41#define __HAVE_ARCH_MEMCHR
42extern void *memchr(const void *, int, __kernel_size_t);
43#endif
44
Catalin Marinas4a899222013-03-21 16:16:43 +000045#define __HAVE_ARCH_MEMCPY
46extern void *memcpy(void *, const void *, __kernel_size_t);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030047extern void *__memcpy(void *, const void *, __kernel_size_t);
Catalin Marinas4a899222013-03-21 16:16:43 +000048
49#define __HAVE_ARCH_MEMMOVE
50extern void *memmove(void *, const void *, __kernel_size_t);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030051extern void *__memmove(void *, const void *, __kernel_size_t);
Catalin Marinas4a899222013-03-21 16:16:43 +000052
Catalin Marinas4a899222013-03-21 16:16:43 +000053#define __HAVE_ARCH_MEMSET
54extern void *memset(void *, int, __kernel_size_t);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030055extern void *__memset(void *, int, __kernel_size_t);
Catalin Marinas4a899222013-03-21 16:16:43 +000056
Robin Murphy5d7bdeb2017-07-25 11:55:43 +010057#ifdef CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE
58#define __HAVE_ARCH_MEMCPY_FLUSHCACHE
59void memcpy_flushcache(void *dst, const void *src, size_t cnt);
60#endif
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030061
62#if defined(CONFIG_KASAN) && !defined(__SANITIZE_ADDRESS__)
63
64/*
65 * For files that are not instrumented (e.g. mm/slub.c) we
66 * should use not instrumented version of mem* functions.
67 */
68
69#define memcpy(dst, src, len) __memcpy(dst, src, len)
70#define memmove(dst, src, len) __memmove(dst, src, len)
71#define memset(s, c, n) __memset(s, c, n)
Daniel Micay6974f0c2017-07-12 14:36:10 -070072
73#ifndef __NO_FORTIFY
74#define __NO_FORTIFY /* FORTIFY_SOURCE uses __builtin_memcpy, etc. */
75#endif
76
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030077#endif
78
Catalin Marinas4a899222013-03-21 16:16:43 +000079#endif