xref: /minix/include/ssp/string.h (revision 84d9c625)
1 /*	$NetBSD: string.h,v 1.9 2013/11/07 02:00:54 christos Exp $	*/
2 
3 /*-
4  * Copyright (c) 2006 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Christos Zoulas.
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  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31 #ifndef _SSP_STRING_H_
32 #define _SSP_STRING_H_
33 
34 #include <ssp/ssp.h>
35 
36 __BEGIN_DECLS
37 void *__memcpy_chk(void *, const void *, size_t, size_t);
38 void *__memmove_chk(void *, void *, size_t, size_t);
39 void *__memset_chk(void *, int, size_t, size_t);
40 char *__stpcpy_chk(char *, const char *, size_t);
41 char *__strcat_chk(char *, const char *, size_t);
42 char *__strcpy_chk(char *, const char *, size_t);
43 char *__strncat_chk(char *, const char *, size_t, size_t);
44 char *__strncpy_chk(char *, const char *, size_t, size_t);
45 __END_DECLS
46 
47 #if __SSP_FORTIFY_LEVEL > 0
48 
49 #define __ssp_bos_check3(fun, dst, src, len) \
50     ((__ssp_bos0(dst) != (size_t)-1) ? \
51     __builtin___ ## fun ## _chk(dst, src, len, __ssp_bos0(dst)) : \
52     __ ## fun ## _ichk(dst, src, len))
53 
54 #define __ssp_bos_check2(fun, dst, src) \
55     ((__ssp_bos0(dst) != (size_t)-1) ? \
56     __builtin___ ## fun ## _chk(dst, src, __ssp_bos0(dst)) : \
57     __ ## fun ## _ichk(dst, src))
58 
59 #define __ssp_bos_icheck3_restrict(fun, type1, type2) \
60 static __inline type1 __ ## fun ## _ichk(type1 __restrict, type2 __restrict, size_t); \
61 static __inline __attribute__((__always_inline__)) type1 \
62 __ ## fun ## _ichk(type1 __restrict dst, type2 __restrict src, size_t len) { \
63 	return __builtin___ ## fun ## _chk(dst, src, len, __ssp_bos0(dst)); \
64 }
65 
66 #define __ssp_bos_icheck3(fun, type1, type2) \
67 static __inline type1 __ ## fun ## _ichk(type1, type2, size_t); \
68 static __inline __attribute__((__always_inline__)) type1 \
69 __ ## fun ## _ichk(type1 dst, type2 src, size_t len) { \
70 	return __builtin___ ## fun ## _chk(dst, src, len, __ssp_bos0(dst)); \
71 }
72 
73 #define __ssp_bos_icheck2_restrict(fun, type1, type2) \
74 static __inline type1 __ ## fun ## _ichk(type1, type2); \
75 static __inline __attribute__((__always_inline__)) type1 \
76 __ ## fun ## _ichk(type1 __restrict dst, type2 __restrict src) { \
77 	return __builtin___ ## fun ## _chk(dst, src, __ssp_bos0(dst)); \
78 }
79 
80 __BEGIN_DECLS
81 __ssp_bos_icheck3_restrict(memcpy, void *, const void *)
82 __ssp_bos_icheck3(memmove, void *, const void *)
83 __ssp_bos_icheck3(memset, void *, int)
84 __ssp_bos_icheck2_restrict(stpcpy, char *, const char *)
85 __ssp_bos_icheck2_restrict(strcpy, char *, const char *)
86 __ssp_bos_icheck2_restrict(strcat, char *, const char *)
87 __ssp_bos_icheck3_restrict(strncpy, char *, const char *)
88 __ssp_bos_icheck3_restrict(strncat, char *, const char *)
89 __END_DECLS
90 
91 #define memcpy(dst, src, len) __ssp_bos_check3(memcpy, dst, src, len)
92 #define memmove(dst, src, len) __ssp_bos_check3(memmove, dst, src, len)
93 #define memset(dst, val, len) __ssp_bos_check3(memset, dst, val, len)
94 #define stpcpy(dst, src) __ssp_bos_check2(stpcpy, dst, src)
95 #define strcpy(dst, src) __ssp_bos_check2(strcpy, dst, src)
96 #define strcat(dst, src) __ssp_bos_check2(strcat, dst, src)
97 #define strncpy(dst, src, len) __ssp_bos_check3(strncpy, dst, src, len)
98 #define strncat(dst, src, len) __ssp_bos_check3(strncat, dst, src, len)
99 
100 #endif /* __SSP_FORTIFY_LEVEL > 0 */
101 #endif /* _SSP_STRING_H_ */
102