blob: d33f92b9fa228d91a5c5356b4afa5e6fbdf98832 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
H. Peter Anvin1965aae2008-10-22 22:26:29 -07002#ifndef _ASM_X86_STRING_64_H
3#define _ASM_X86_STRING_64_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5#ifdef __KERNEL__
Tony Luck3637efb2016-09-01 11:39:33 -07006#include <linux/jump_label.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Joe Perches953b2f12008-03-23 01:03:34 -07008/* Written 2002 by Andi Kleen */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Joe Perches953b2f12008-03-23 01:03:34 -070010/* Only used for special circumstances. Stolen from i386/string.h */
11static __always_inline void *__inline_memcpy(void *to, const void *from, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012{
Joe Perches953b2f12008-03-23 01:03:34 -070013 unsigned long d0, d1, d2;
14 asm volatile("rep ; movsl\n\t"
15 "testb $2,%b4\n\t"
16 "je 1f\n\t"
17 "movsw\n"
18 "1:\ttestb $1,%b4\n\t"
19 "je 2f\n\t"
20 "movsb\n"
21 "2:"
22 : "=&c" (d0), "=&D" (d1), "=&S" (d2)
23 : "0" (n / 4), "q" (n), "1" ((long)to), "2" ((long)from)
24 : "memory");
25 return to;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026}
27
28/* Even with __builtin_ the compiler may decide to use the out of line
29 function. */
30
31#define __HAVE_ARCH_MEMCPY 1
Andrey Ryabinina75ca542015-10-16 14:28:53 +030032extern void *memcpy(void *to, const void *from, size_t len);
Andrey Ryabinin393f2032015-02-13 14:39:56 -080033extern void *__memcpy(void *to, const void *from, size_t len);
34
Daniel Micay6974f0c2017-07-12 14:36:10 -070035#ifndef CONFIG_FORTIFY_SOURCE
Andrey Ryabinina75ca542015-10-16 14:28:53 +030036#if (__GNUC__ == 4 && __GNUC_MINOR__ < 3) || __GNUC__ < 4
Joe Perches953b2f12008-03-23 01:03:34 -070037#define memcpy(dst, src, len) \
38({ \
39 size_t __len = (len); \
40 void *__ret; \
41 if (__builtin_constant_p(len) && __len >= 64) \
42 __ret = __memcpy((dst), (src), __len); \
43 else \
44 __ret = __builtin_memcpy((dst), (src), __len); \
45 __ret; \
46})
Andi Kleenaac57f82007-07-21 17:09:58 +020047#endif
Daniel Micay6974f0c2017-07-12 14:36:10 -070048#endif /* !CONFIG_FORTIFY_SOURCE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define __HAVE_ARCH_MEMSET
Andi Kleen6edfba12006-03-25 16:29:49 +010051void *memset(void *s, int c, size_t n);
Andrey Ryabinin393f2032015-02-13 14:39:56 -080052void *__memset(void *s, int c, size_t n);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Matthew Wilcox4c512482017-09-08 16:13:56 -070054#define __HAVE_ARCH_MEMSET16
55static inline void *memset16(uint16_t *s, uint16_t v, size_t n)
56{
57 long d0, d1;
58 asm volatile("rep\n\t"
59 "stosw"
60 : "=&c" (d0), "=&D" (d1)
61 : "a" (v), "1" (s), "0" (n)
62 : "memory");
63 return s;
64}
65
66#define __HAVE_ARCH_MEMSET32
67static inline void *memset32(uint32_t *s, uint32_t v, size_t n)
68{
69 long d0, d1;
70 asm volatile("rep\n\t"
71 "stosl"
72 : "=&c" (d0), "=&D" (d1)
73 : "a" (v), "1" (s), "0" (n)
74 : "memory");
75 return s;
76}
77
78#define __HAVE_ARCH_MEMSET64
79static inline void *memset64(uint64_t *s, uint64_t v, size_t n)
80{
81 long d0, d1;
82 asm volatile("rep\n\t"
83 "stosq"
84 : "=&c" (d0), "=&D" (d1)
85 : "a" (v), "1" (s), "0" (n)
86 : "memory");
87 return s;
88}
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#define __HAVE_ARCH_MEMMOVE
Joe Perches953b2f12008-03-23 01:03:34 -070091void *memmove(void *dest, const void *src, size_t count);
Andrey Ryabinin393f2032015-02-13 14:39:56 -080092void *__memmove(void *dest, const void *src, size_t count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Joe Perches953b2f12008-03-23 01:03:34 -070094int memcmp(const void *cs, const void *ct, size_t count);
95size_t strlen(const char *s);
96char *strcpy(char *dest, const char *src);
97char *strcat(char *dest, const char *src);
98int strcmp(const char *cs, const char *ct);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Andrey Ryabinin393f2032015-02-13 14:39:56 -0800100#if defined(CONFIG_KASAN) && !defined(__SANITIZE_ADDRESS__)
101
102/*
103 * For files that not instrumented (e.g. mm/slub.c) we
104 * should use not instrumented version of mem* functions.
105 */
106
107#undef memcpy
108#define memcpy(dst, src, len) __memcpy(dst, src, len)
109#define memmove(dst, src, len) __memmove(dst, src, len)
110#define memset(s, c, n) __memset(s, c, n)
Daniel Micay6974f0c2017-07-12 14:36:10 -0700111
112#ifndef __NO_FORTIFY
113#define __NO_FORTIFY /* FORTIFY_SOURCE uses __builtin_memcpy, etc. */
114#endif
115
Andrey Ryabinin393f2032015-02-13 14:39:56 -0800116#endif
117
Dan Williams6abccd12017-01-13 14:14:23 -0800118#define __HAVE_ARCH_MEMCPY_MCSAFE 1
Dan Williams60622d62018-05-03 17:06:21 -0700119__must_check unsigned long __memcpy_mcsafe(void *dst, const void *src,
120 size_t cnt);
Tony Luck3637efb2016-09-01 11:39:33 -0700121DECLARE_STATIC_KEY_FALSE(mcsafe_key);
122
Tony Luck92b07292016-02-18 11:47:26 -0800123/**
124 * memcpy_mcsafe - copy memory with indication if a machine check happened
125 *
126 * @dst: destination address
127 * @src: source address
128 * @cnt: number of bytes to copy
129 *
130 * Low level memory copy function that catches machine checks
Tony Luck9a6fb282016-09-01 11:39:33 -0700131 * We only call into the "safe" function on systems that can
132 * actually do machine check recovery. Everyone else can just
133 * use memcpy().
Tony Luck92b07292016-02-18 11:47:26 -0800134 *
Dan Williams60622d62018-05-03 17:06:21 -0700135 * Return 0 for success, or number of bytes not copied if there was an
136 * exception.
Tony Luck92b07292016-02-18 11:47:26 -0800137 */
Dan Williams60622d62018-05-03 17:06:21 -0700138static __always_inline __must_check unsigned long
Tony Luck9a6fb282016-09-01 11:39:33 -0700139memcpy_mcsafe(void *dst, const void *src, size_t cnt)
140{
141#ifdef CONFIG_X86_MCE
142 if (static_branch_unlikely(&mcsafe_key))
Dan Williamsda7bc9c2018-05-03 17:06:11 -0700143 return __memcpy_mcsafe(dst, src, cnt);
Tony Luck9a6fb282016-09-01 11:39:33 -0700144 else
145#endif
146 memcpy(dst, src, cnt);
147 return 0;
148}
Tony Luck92b07292016-02-18 11:47:26 -0800149
Dan Williams0aed55a2017-05-29 12:22:50 -0700150#ifdef CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE
151#define __HAVE_ARCH_MEMCPY_FLUSHCACHE 1
152void memcpy_flushcache(void *dst, const void *src, size_t cnt);
153#endif
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155#endif /* __KERNEL__ */
156
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700157#endif /* _ASM_X86_STRING_64_H */