1 .\" $OpenBSD: strlcpy.3,v 1.26 2013/09/30 12:02:35 millert Exp $
3 .\" Copyright (c) 1998, 2000 Todd C. Miller <Todd.Miller@courtesan.com>
5 .\" Permission to use, copy, modify, and distribute this software for any
6 .\" purpose with or without fee is hereby granted, provided that the above
7 .\" copyright notice and this permission notice appear in all copies.
9 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 .\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 .\" INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
19 .\" AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
20 .\" THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
21 .\" EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 .\" PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 .\" OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 .\" WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 .\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 .Nd size-bounded string copying and concatenation
42 .Fn strlcpy "char * restrict dst" "const char * restrict src" "size_t dstsize"
44 .Fn strlcat "char * restrict dst" "const char * restrict src" "size_t dstsize"
50 functions copy and concatenate strings with the
51 same input parameters and output result as
53 They are designed to be safer, more consistent, and less error
54 prone replacements for the easily misused functions
62 take the full size of the destination buffer and guarantee
63 NUL-termination if there is room.
64 Note that room for the NUL should be included in
70 \- 1 characters from the string
74 NUL-terminating the result if
83 It will append at most
85 \- strlen(dst) \- 1 characters.
86 It will then NUL-terminate, unless
90 string was longer than
92 (in practice this should not happen
93 as it means that either
97 is not a proper string).
103 strings overlap, the behavior is undefined.
105 Besides quibbles over the return type
109 and signal handler safety
111 is not entirely safe on some systems), the
112 following two are equivalent:
113 .Bd -literal -offset indent
114 n = strlcpy(dst, src, len);
115 n = snprintf(dst, len, "%s", src);
124 functions return the total length of the string they tried to create.
127 that means the length of
131 that means the initial length of
137 If the return value is
140 the output string has been truncated.
141 It is the caller's responsibility to handle this.
143 The following code fragment illustrates the simple case:
144 .Bd -literal -offset indent
145 char *s, *p, buf[BUFSIZ];
149 (void)strlcpy(buf, s, sizeof(buf));
150 (void)strlcat(buf, p, sizeof(buf));
153 To detect truncation, perhaps while building a pathname, something
154 like the following might be used:
155 .Bd -literal -offset indent
156 char *dir, *file, pname[MAXPATHLEN];
160 if (strlcpy(pname, dir, sizeof(pname)) >= sizeof(pname))
162 if (strlcat(pname, file, sizeof(pname)) >= sizeof(pname))
166 Since it is known how many characters were copied the first time, things
167 can be sped up a bit by using a copy instead of an append:
168 .Bd -literal -offset indent
169 char *dir, *file, pname[MAXPATHLEN];
174 n = strlcpy(pname, dir, sizeof(pname));
175 if (n >= sizeof(pname))
177 if (strlcpy(pname + n, file, sizeof(pname) - n) >= sizeof(pname) - n)
181 However, one may question the validity of such optimizations, as they
182 defeat the whole purpose of
186 As a matter of fact, the first version of this manual page got it wrong.
197 functions first appeared in