158f0484fSRodney W. Grimes.\" Copyright (c) 1990, 1991, 1993 258f0484fSRodney W. Grimes.\" The Regents of the University of California. All rights reserved. 358f0484fSRodney W. Grimes.\" 458f0484fSRodney W. Grimes.\" This code is derived from software contributed to Berkeley by 558f0484fSRodney W. Grimes.\" Chris Torek and the American National Standards Committee X3, 658f0484fSRodney W. Grimes.\" on Information Processing Systems. 758f0484fSRodney W. Grimes.\" 858f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without 958f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions 1058f0484fSRodney W. Grimes.\" are met: 1158f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright 1258f0484fSRodney W. Grimes.\" notice, this list of conditions and the following disclaimer. 1358f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright 1458f0484fSRodney W. Grimes.\" notice, this list of conditions and the following disclaimer in the 1558f0484fSRodney W. Grimes.\" documentation and/or other materials provided with the distribution. 163fb3b97cSEd Maste.\" 3. Neither the name of the University nor the names of its contributors 1758f0484fSRodney W. Grimes.\" may be used to endorse or promote products derived from this software 1858f0484fSRodney W. Grimes.\" without specific prior written permission. 1958f0484fSRodney W. Grimes.\" 2058f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 2158f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 2258f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2358f0484fSRodney W. Grimes.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2458f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2558f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2658f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2758f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2858f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2958f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 3058f0484fSRodney W. Grimes.\" SUCH DAMAGE. 3158f0484fSRodney W. Grimes.\" 32*4b7f35dbSGordon Bergling.Dd April 3, 2022 3358f0484fSRodney W. Grimes.Dt STRCAT 3 3458f0484fSRodney W. Grimes.Os 3558f0484fSRodney W. Grimes.Sh NAME 36ef33e736SChristian Brueffer.Nm strcat , 37ef33e736SChristian Brueffer.Nm strncat 3858f0484fSRodney W. Grimes.Nd concatenate strings 3925bb73e0SAlexey Zelkin.Sh LIBRARY 4025bb73e0SAlexey Zelkin.Lb libc 4158f0484fSRodney W. Grimes.Sh SYNOPSIS 4232eef9aeSRuslan Ermilov.In string.h 4358f0484fSRodney W. Grimes.Ft char * 44ad906968SRobert Drehmel.Fn strcat "char * restrict s" "const char * restrict append" 4558f0484fSRodney W. Grimes.Ft char * 46ad906968SRobert Drehmel.Fn strncat "char * restrict s" "const char * restrict append" "size_t count" 4758f0484fSRodney W. Grimes.Sh DESCRIPTION 4858f0484fSRodney W. GrimesThe 4958f0484fSRodney W. Grimes.Fn strcat 5058f0484fSRodney W. Grimesand 5158f0484fSRodney W. Grimes.Fn strncat 5258f0484fSRodney W. Grimesfunctions 5358f0484fSRodney W. Grimesappend a copy of the null-terminated string 5458f0484fSRodney W. Grimes.Fa append 5558f0484fSRodney W. Grimesto the end of the null-terminated string 5658f0484fSRodney W. Grimes.Fa s , 5758f0484fSRodney W. Grimesthen add a terminating 5858f0484fSRodney W. Grimes.Ql \e0 . 5958f0484fSRodney W. GrimesThe string 6058f0484fSRodney W. Grimes.Fa s 6158f0484fSRodney W. Grimesmust have sufficient space to hold the result. 6250a717a6SWarner LoshIf 6350a717a6SWarner Losh.Fa s 6450a717a6SWarner Loshand 6550a717a6SWarner Losh.Fa append 6650a717a6SWarner Loshoverlap, the results are undefined. 6758f0484fSRodney W. Grimes.Pp 6858f0484fSRodney W. GrimesThe 6958f0484fSRodney W. Grimes.Fn strncat 7058f0484fSRodney W. Grimesfunction 7158f0484fSRodney W. Grimesappends not more than 7258f0484fSRodney W. Grimes.Fa count 7359f00bcdSMike Pritchardcharacters from 7459f00bcdSMike Pritchard.Fa append , 7559f00bcdSMike Pritchardand then adds a terminating 7659f00bcdSMike Pritchard.Ql \e0 . 7750a717a6SWarner LoshIf 7850a717a6SWarner Losh.Fa s 7950a717a6SWarner Loshand 8050a717a6SWarner Losh.Fa append 8150a717a6SWarner Loshoverlap, the results are undefined. 8258f0484fSRodney W. Grimes.Sh RETURN VALUES 8358f0484fSRodney W. GrimesThe 8458f0484fSRodney W. Grimes.Fn strcat 8558f0484fSRodney W. Grimesand 8658f0484fSRodney W. Grimes.Fn strncat 8758f0484fSRodney W. Grimesfunctions 8858f0484fSRodney W. Grimesreturn the pointer 8958f0484fSRodney W. Grimes.Fa s . 900afc94c1SUlrich Spörlein.Sh SEE ALSO 910afc94c1SUlrich Spörlein.Xr bcopy 3 , 920afc94c1SUlrich Spörlein.Xr memccpy 3 , 930afc94c1SUlrich Spörlein.Xr memcpy 3 , 940afc94c1SUlrich Spörlein.Xr memmove 3 , 950afc94c1SUlrich Spörlein.Xr strcpy 3 , 960afc94c1SUlrich Spörlein.Xr strlcat 3 , 970afc94c1SUlrich Spörlein.Xr strlcpy 3 , 980afc94c1SUlrich Spörlein.Xr wcscat 3 990afc94c1SUlrich Spörlein.Sh STANDARDS 1000afc94c1SUlrich SpörleinThe 1010afc94c1SUlrich Spörlein.Fn strcat 1020afc94c1SUlrich Spörleinand 1030afc94c1SUlrich Spörlein.Fn strncat 1040afc94c1SUlrich Spörleinfunctions 1050afc94c1SUlrich Spörleinconform to 1060afc94c1SUlrich Spörlein.St -isoC . 107*4b7f35dbSGordon Bergling.Sh HISTORY 108*4b7f35dbSGordon BerglingThe 109*4b7f35dbSGordon Bergling.Fn strcat 110*4b7f35dbSGordon Berglingfunction first appeared in the Programmer's Workbench (PWB/UNIX) 111*4b7f35dbSGordon Berglingand was ported to 112*4b7f35dbSGordon Bergling.At v7 ; 113*4b7f35dbSGordon Bergling.Fn strncat 114*4b7f35dbSGordon Berglingfirst appeared in 115*4b7f35dbSGordon Bergling.At v7 . 11641f91cb4SChris Costello.Sh SECURITY CONSIDERATIONS 11741f91cb4SChris CostelloThe 11841f91cb4SChris Costello.Fn strcat 11941f91cb4SChris Costellofunction is easily misused in a manner 12041f91cb4SChris Costellowhich enables malicious users to arbitrarily change 12141f91cb4SChris Costelloa running program's functionality through a buffer overflow attack. 12241f91cb4SChris Costello.Pp 12341f91cb4SChris CostelloAvoid using 12441f91cb4SChris Costello.Fn strcat . 12541f91cb4SChris CostelloInstead, use 12641f91cb4SChris Costello.Fn strncat 12741f91cb4SChris Costelloor 12841f91cb4SChris Costello.Fn strlcat 12941f91cb4SChris Costelloand ensure that no more characters are copied to the destination buffer 13041f91cb4SChris Costellothan it can hold. 13141f91cb4SChris Costello.Pp 13241f91cb4SChris CostelloNote that 13341f91cb4SChris Costello.Fn strncat 13441f91cb4SChris Costellocan also be problematic. 13541f91cb4SChris CostelloIt may be a security concern for a string to be truncated at all. 13641f91cb4SChris CostelloSince the truncated string will not be as long as the original, 13741f91cb4SChris Costelloit may refer to a completely different resource 13841f91cb4SChris Costelloand usage of the truncated resource 13941f91cb4SChris Costellocould result in very incorrect behavior. 14041f91cb4SChris CostelloExample: 14141f91cb4SChris Costello.Bd -literal 14241f91cb4SChris Costellovoid 14341f91cb4SChris Costellofoo(const char *arbitrary_string) 14441f91cb4SChris Costello{ 14541f91cb4SChris Costello char onstack[8]; 14641f91cb4SChris Costello 14741f91cb4SChris Costello#if defined(BAD) 14841f91cb4SChris Costello /* 14941f91cb4SChris Costello * This first strcat is bad behavior. Do not use strcat! 15041f91cb4SChris Costello */ 15141f91cb4SChris Costello (void)strcat(onstack, arbitrary_string); /* BAD! */ 15241f91cb4SChris Costello#elif defined(BETTER) 15341f91cb4SChris Costello /* 15441f91cb4SChris Costello * The following two lines demonstrate better use of 15541f91cb4SChris Costello * strncat(). 15641f91cb4SChris Costello */ 15741f91cb4SChris Costello (void)strncat(onstack, arbitrary_string, 15841f91cb4SChris Costello sizeof(onstack) - strlen(onstack) - 1); 15941f91cb4SChris Costello#elif defined(BEST) 16041f91cb4SChris Costello /* 16141f91cb4SChris Costello * These lines are even more robust due to testing for 16241f91cb4SChris Costello * truncation. 16341f91cb4SChris Costello */ 16441f91cb4SChris Costello if (strlen(arbitrary_string) + 1 > 16541f91cb4SChris Costello sizeof(onstack) - strlen(onstack)) 16641f91cb4SChris Costello err(1, "onstack would be truncated"); 16741f91cb4SChris Costello (void)strncat(onstack, arbitrary_string, 16841f91cb4SChris Costello sizeof(onstack) - strlen(onstack) - 1); 16941f91cb4SChris Costello#endif 17041f91cb4SChris Costello} 17141f91cb4SChris Costello.Ed 172