xref: /optee_os/lib/libutils/ext/strlcpy.c (revision 1bb929836182ecb96d2d9d268daa807c67596396)
1*1bb92983SJerome Forissier // SPDX-License-Identifier: BSD-3-Clause
2b0104773SPascal Brand /* This file is copied from newlib-1.19 */
3b0104773SPascal Brand 
4b0104773SPascal Brand /*      $OpenBSD: strlcpy.c,v 1.5 2001/05/13 15:40:16 deraadt Exp $        */
5b0104773SPascal Brand 
6b0104773SPascal Brand /*
7b0104773SPascal Brand  * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
8b0104773SPascal Brand  * All rights reserved.
9b0104773SPascal Brand  *
10b0104773SPascal Brand  * Redistribution and use in source and binary forms, with or without
11b0104773SPascal Brand  * modification, are permitted provided that the following conditions
12b0104773SPascal Brand  * are met:
13b0104773SPascal Brand  * 1. Redistributions of source code must retain the above copyright
14b0104773SPascal Brand  *    notice, this list of conditions and the following disclaimer.
15b0104773SPascal Brand  * 2. Redistributions in binary form must reproduce the above copyright
16b0104773SPascal Brand  *    notice, this list of conditions and the following disclaimer in the
17b0104773SPascal Brand  *    documentation and/or other materials provided with the distribution.
18b0104773SPascal Brand  * 3. The name of the author may not be used to endorse or promote products
19b0104773SPascal Brand  *    derived from this software without specific prior written permission.
20b0104773SPascal Brand  *
21b0104773SPascal Brand  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
22b0104773SPascal Brand  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
23b0104773SPascal Brand  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
24b0104773SPascal Brand  * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25b0104773SPascal Brand  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26b0104773SPascal Brand  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27b0104773SPascal Brand  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28b0104773SPascal Brand  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29b0104773SPascal Brand  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
30b0104773SPascal Brand  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31b0104773SPascal Brand  */
32b0104773SPascal Brand 
33b0104773SPascal Brand #if defined(LIBC_SCCS) && !defined(lint)
34b0104773SPascal Brand static char *rcsid =
35b0104773SPascal Brand 	"$OpenBSD: strlcpy.c,v 1.5 2001/05/13 15:40:16 deraadt Exp $";
36b0104773SPascal Brand #endif /* LIBC_SCCS and not lint */
37b0104773SPascal Brand 
38ec219598SPascal Brand #include <types_ext.h>
39b0104773SPascal Brand #include <string_ext.h>
40b0104773SPascal Brand 
41b0104773SPascal Brand /*
42b0104773SPascal Brand  * Copy src to string dst of size siz.  At most siz-1 characters
43b0104773SPascal Brand  * will be copied.  Always NUL terminates (unless siz == 0).
44b0104773SPascal Brand  * Returns strlen(src); if retval >= siz, truncation occurred.
45b0104773SPascal Brand  */
strlcpy(char * dst,const char * src,size_t siz)46b0104773SPascal Brand size_t strlcpy(char *dst, const char *src, size_t siz)
47b0104773SPascal Brand {
48b0104773SPascal Brand 	register char *d = dst;
49b0104773SPascal Brand 	register const char *s = src;
50b0104773SPascal Brand 	register size_t n = siz;
51b0104773SPascal Brand 
52b0104773SPascal Brand 	/* Copy as many bytes as will fit */
53b0104773SPascal Brand 	if (n != 0 && --n != 0) {
54b0104773SPascal Brand 		do {
55b0104773SPascal Brand 			if ((*d++ = *s++) == 0)
56b0104773SPascal Brand 				break;
57b0104773SPascal Brand 		} while (--n != 0);
58b0104773SPascal Brand 	}
59b0104773SPascal Brand 
60b0104773SPascal Brand 	/* Not enough room in dst, add NUL and traverse rest of src */
61b0104773SPascal Brand 	if (n == 0) {
62b0104773SPascal Brand 		if (siz != 0)
63b0104773SPascal Brand 			*d = '\0';	/* NUL-terminate dst */
64b0104773SPascal Brand 		while (*s++)
65b0104773SPascal Brand 			;
66b0104773SPascal Brand 	}
67b0104773SPascal Brand 
68b0104773SPascal Brand 	return s - src - 1;	/* count does not include NUL */
69b0104773SPascal Brand }
70