blob: ae476cf1968a52a3bd6a0e3241c515615c99465e [file] [log] [blame]
Uwe Hermannc52761b2008-03-20 00:02:07 +00001/*
2 * This file is part of the libpayload project.
3 *
4 * It has originally been taken from the HelenOS project
5 * (http://www.helenos.eu), and slightly modified for our purposes.
6 *
7 * Copyright (c) 2005 Martin Decky
8 * All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 *
14 * - Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * - Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * - The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34#include <libpayload.h>
35
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -080036static void *default_memset(void *s, int c, size_t n)
Uwe Hermannc52761b2008-03-20 00:02:07 +000037{
Julius Wernerdbadb1d2014-06-12 10:28:57 -070038 size_t i;
39 void *ret = s;
40 unsigned long w = c & 0xff;
Uwe Hermannc52761b2008-03-20 00:02:07 +000041
Julius Wernerdbadb1d2014-06-12 10:28:57 -070042 for (i = 1; i < sizeof(unsigned long); i <<= 1)
43 w = (w << (i * 8)) | w;
Uwe Hermannc52761b2008-03-20 00:02:07 +000044
Julius Wernerdbadb1d2014-06-12 10:28:57 -070045 for (i = 0; i < n / sizeof(unsigned long); i++)
46 ((unsigned long *)s)[i] = w;
47
48 s += i * sizeof(unsigned long);
49
50 for (i = 0; i < n % sizeof(unsigned long); i++)
51 ((u8 *)s)[i] = (u8)c;
52
53 return ret;
Uwe Hermannc52761b2008-03-20 00:02:07 +000054}
55
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -080056void *memset(void *s, int c, size_t n)
57 __attribute__((weak, alias("default_memset")));
Gabe Blackc3247942012-09-27 17:39:41 -070058
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -080059static void *default_memcpy(void *dst, const void *src, size_t n)
Uwe Hermannc52761b2008-03-20 00:02:07 +000060{
Julius Wernerdbadb1d2014-06-12 10:28:57 -070061 size_t i;
Stefan Reinauer989c1782008-08-19 19:18:58 +000062 void *ret = dst;
Uwe Hermannc52761b2008-03-20 00:02:07 +000063
Jordan Crouse96f57ae2008-08-19 16:55:05 +000064 for(i = 0; i < n / sizeof(unsigned long); i++)
Julius Wernerdbadb1d2014-06-12 10:28:57 -070065 ((unsigned long *)dst)[i] = ((unsigned long *)src)[i];
66
67 src += i * sizeof(unsigned long);
68 dst += i * sizeof(unsigned long);
69
70 for(i = 0; i < n % sizeof(unsigned long); i++)
71 ((u8 *)dst)[i] = ((u8 *)src)[i];
Uwe Hermannc52761b2008-03-20 00:02:07 +000072
Stefan Reinauer989c1782008-08-19 19:18:58 +000073 return ret;
Uwe Hermannc52761b2008-03-20 00:02:07 +000074}
75
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -080076void *memcpy(void *dst, const void *src, size_t n)
77 __attribute__((weak, alias("default_memcpy")));
Gabe Blackc3247942012-09-27 17:39:41 -070078
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -080079static void *default_memmove(void *dst, const void *src, size_t n)
Uwe Hermannc52761b2008-03-20 00:02:07 +000080{
Nico Huberf58746b2015-08-19 17:22:26 +020081 size_t offs;
82 ssize_t i;
Uwe Hermannc52761b2008-03-20 00:02:07 +000083
84 if (src > dst)
85 return memcpy(dst, src, n);
86
Jordan Crouse96f57ae2008-08-19 16:55:05 +000087 offs = n - (n % sizeof(unsigned long));
88
89 for (i = (n % sizeof(unsigned long)) - 1; i >= 0; i--)
Julius Wernerdbadb1d2014-06-12 10:28:57 -070090 ((u8 *)dst)[i + offs] = ((u8 *)src)[i + offs];
Uwe Hermannc52761b2008-03-20 00:02:07 +000091
92 for (i = n / sizeof(unsigned long) - 1; i >= 0; i--)
93 ((unsigned long *)dst)[i] = ((unsigned long *)src)[i];
94
Jordan Crouse96f57ae2008-08-19 16:55:05 +000095 return dst;
Uwe Hermannc52761b2008-03-20 00:02:07 +000096}
97
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -080098void *memmove(void *dst, const void *src, size_t n)
99 __attribute__((weak, alias("default_memmove")));
100
Uwe Hermannc52761b2008-03-20 00:02:07 +0000101/**
102 * Compare two memory areas.
103 *
Uwe Hermann6a441bf2008-03-20 19:54:59 +0000104 * @param s1 Pointer to the first area to compare.
105 * @param s2 Pointer to the second area to compare.
Julius Wernerdbadb1d2014-06-12 10:28:57 -0700106 * @param n Size of the first area in bytes (both must have the same length).
107 * @return If n is 0, return zero. Otherwise, return a value less than, equal
108 * to, or greater than zero if s1 is found less than, equal to, or
109 * greater than s2 respectively.
Uwe Hermannc52761b2008-03-20 00:02:07 +0000110 */
Gabe Blackc3247942012-09-27 17:39:41 -0700111
Julius Wernerdbadb1d2014-06-12 10:28:57 -0700112static int default_memcmp(const void *s1, const void *s2, size_t n)
Uwe Hermannc52761b2008-03-20 00:02:07 +0000113{
Julius Wernerdbadb1d2014-06-12 10:28:57 -0700114 size_t i;
115
116 for (i = 0; i < n / sizeof(unsigned long); i++)
117 if (((unsigned long *)s1)[i] != ((unsigned long *)s2)[i])
118 break; /* fall through to find differing byte */
119
120 for (i *= sizeof(unsigned long); i < n; i++)
121 if (((u8 *)s1)[i] != ((u8 *)s2)[i])
122 return ((u8 *)s1)[i] - ((u8 *)s2)[i];
123
124 return 0;
Uwe Hermannc52761b2008-03-20 00:02:07 +0000125}
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -0800126
Julius Wernerdbadb1d2014-06-12 10:28:57 -0700127int memcmp(const void *s1, const void *s2, size_t n)
Ronald G. Minnichc1ee8642013-02-14 14:36:46 -0800128 __attribute__((weak, alias("default_memcmp")));