blob: dd95d33a5bd5d652647955c08ab927fb3d8d78f8 [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
Catalin Marinas2b8cac82013-03-21 16:23:43 +000019#define __HAVE_ARCH_STRRCHR
20extern char *strrchr(const char *, int c);
21
22#define __HAVE_ARCH_STRCHR
23extern char *strchr(const char *, int c);
24
zhichang.yuan192c4d92014-04-28 13:11:33 +080025#define __HAVE_ARCH_STRCMP
26extern int strcmp(const char *, const char *);
27
28#define __HAVE_ARCH_STRNCMP
29extern int strncmp(const char *, const char *, __kernel_size_t);
30
zhichang.yuan0a42cb02014-04-28 13:11:34 +080031#define __HAVE_ARCH_STRLEN
32extern __kernel_size_t strlen(const char *);
33
34#define __HAVE_ARCH_STRNLEN
35extern __kernel_size_t strnlen(const char *, __kernel_size_t);
36
Catalin Marinas4a899222013-03-21 16:16:43 +000037#define __HAVE_ARCH_MEMCPY
38extern void *memcpy(void *, const void *, __kernel_size_t);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030039extern void *__memcpy(void *, const void *, __kernel_size_t);
Catalin Marinas4a899222013-03-21 16:16:43 +000040
41#define __HAVE_ARCH_MEMMOVE
42extern void *memmove(void *, const void *, __kernel_size_t);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030043extern void *__memmove(void *, const void *, __kernel_size_t);
Catalin Marinas4a899222013-03-21 16:16:43 +000044
45#define __HAVE_ARCH_MEMCHR
46extern void *memchr(const void *, int, __kernel_size_t);
47
48#define __HAVE_ARCH_MEMSET
49extern void *memset(void *, int, __kernel_size_t);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030050extern void *__memset(void *, int, __kernel_size_t);
Catalin Marinas4a899222013-03-21 16:16:43 +000051
zhichang.yuand875c9b2014-04-28 06:11:32 +010052#define __HAVE_ARCH_MEMCMP
53extern int memcmp(const void *, const void *, size_t);
54
Robin Murphy5d7bdeb2017-07-25 11:55:43 +010055#ifdef CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE
56#define __HAVE_ARCH_MEMCPY_FLUSHCACHE
57void memcpy_flushcache(void *dst, const void *src, size_t cnt);
58#endif
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030059
60#if defined(CONFIG_KASAN) && !defined(__SANITIZE_ADDRESS__)
61
62/*
63 * For files that are not instrumented (e.g. mm/slub.c) we
64 * should use not instrumented version of mem* functions.
65 */
66
67#define memcpy(dst, src, len) __memcpy(dst, src, len)
68#define memmove(dst, src, len) __memmove(dst, src, len)
69#define memset(s, c, n) __memset(s, c, n)
Daniel Micay6974f0c2017-07-12 14:36:10 -070070
71#ifndef __NO_FORTIFY
72#define __NO_FORTIFY /* FORTIFY_SOURCE uses __builtin_memcpy, etc. */
73#endif
74
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030075#endif
76
Catalin Marinas4a899222013-03-21 16:16:43 +000077#endif