16b6f7148SSean Christopherson // SPDX-License-Identifier: GPL-2.0-only
26b6f7148SSean Christopherson #include <stddef.h>
36b6f7148SSean Christopherson
46b6f7148SSean Christopherson /*
56b6f7148SSean Christopherson * Override the "basic" built-in string helpers so that they can be used in
66b6f7148SSean Christopherson * guest code. KVM selftests don't support dynamic loading in guest code and
76b6f7148SSean Christopherson * will jump into the weeds if the compiler decides to insert an out-of-line
86b6f7148SSean Christopherson * call via the PLT.
96b6f7148SSean Christopherson */
memcmp(const void * cs,const void * ct,size_t count)106b6f7148SSean Christopherson int memcmp(const void *cs, const void *ct, size_t count)
116b6f7148SSean Christopherson {
126b6f7148SSean Christopherson const unsigned char *su1, *su2;
136b6f7148SSean Christopherson int res = 0;
146b6f7148SSean Christopherson
156b6f7148SSean Christopherson for (su1 = cs, su2 = ct; 0 < count; ++su1, ++su2, count--) {
166b6f7148SSean Christopherson if ((res = *su1 - *su2) != 0)
176b6f7148SSean Christopherson break;
186b6f7148SSean Christopherson }
196b6f7148SSean Christopherson return res;
206b6f7148SSean Christopherson }
216b6f7148SSean Christopherson
memcpy(void * dest,const void * src,size_t count)226b6f7148SSean Christopherson void *memcpy(void *dest, const void *src, size_t count)
236b6f7148SSean Christopherson {
246b6f7148SSean Christopherson char *tmp = dest;
256b6f7148SSean Christopherson const char *s = src;
266b6f7148SSean Christopherson
276b6f7148SSean Christopherson while (count--)
286b6f7148SSean Christopherson *tmp++ = *s++;
296b6f7148SSean Christopherson return dest;
306b6f7148SSean Christopherson }
316b6f7148SSean Christopherson
memset(void * s,int c,size_t count)326b6f7148SSean Christopherson void *memset(void *s, int c, size_t count)
336b6f7148SSean Christopherson {
346b6f7148SSean Christopherson char *xs = s;
356b6f7148SSean Christopherson
366b6f7148SSean Christopherson while (count--)
376b6f7148SSean Christopherson *xs++ = c;
386b6f7148SSean Christopherson return s;
396b6f7148SSean Christopherson }
40*a1c1b55eSAaron Lewis
strnlen(const char * s,size_t count)41*a1c1b55eSAaron Lewis size_t strnlen(const char *s, size_t count)
42*a1c1b55eSAaron Lewis {
43*a1c1b55eSAaron Lewis const char *sc;
44*a1c1b55eSAaron Lewis
45*a1c1b55eSAaron Lewis for (sc = s; count-- && *sc != '\0'; ++sc)
46*a1c1b55eSAaron Lewis /* nothing */;
47*a1c1b55eSAaron Lewis return sc - s;
48*a1c1b55eSAaron Lewis }
49