summaryrefslogtreecommitdiffstats
path: root/lib/libc/memcpy_s.c
blob: 26953bf0a04f7300d6e063bf3a75fb0482871205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
 * Copyright (c) 2013-2023, Arm Limited and Contributors. All rights reserved.
 * Copyright (c) 2023, Intel Corporation. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <errno.h>
#include <stddef.h>
#include <string.h>

int memcpy_s(void *dst, size_t dsize, void *src, size_t ssize)
{
	unsigned int *s = (unsigned int *)src;
	unsigned int *d = (unsigned int *)dst;

	/*
	 * Check source and destination size is NULL
	 */
	if ((dst == NULL) || (src == NULL)) {
		return -ENOMEM;
	}

	/*
	 * Check source and destination size validity
	 */
	if ((dsize == 0) || (ssize == 0)) {
		return -ERANGE;
	}

	/*
	 * Check both source and destination size range
	 */
	if ((ssize > dsize) || (dsize > ssize)) {
		return -EINVAL;
	}

	/*
	 * Check both source and destination address overlapping
	 * When (s > d < s + ssize)
	 * Or (d > s < d + dsize)
	 */

	if (d > s) {
		if ((d) < (s + ssize)) {
			return -EOPNOTSUPP;
		}
	}

	if (s > d) {
		if ((s) < (d + dsize)) {
			return -EOPNOTSUPP;
		}
	}

	/*
	 * Start copy process when there is no error
	 */
	while (ssize--) {
		d[ssize] = s[ssize];
	}

	return 0;
}