From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id 6F60D3882107; Thu, 28 Sep 2023 17:58:55 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6F60D3882107 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1695923935; bh=rsHqlmTy39Y4n7vy9ETGA6ekFM5M3cHRS6BPlAazsPc=; h=From:To:Subject:Date:From; b=jPiWt9RtNrH3SZ0iMKXqohLIYPKsz/spRIxhVxnskUV+VkPMfTSdBa6i9vrEcQkIG 2bRFkhJ49GysCqZJzV3sS9goLC5Z4XnqeROusDHz3n9LHeOe4xqNya1oTS9XvrZJNz QBuyiAqHWxvCPbY+Ie0VCiJhtvIA8HDrz4dL7q/s= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc/azanella/clang] posix: Remove the __strcpy_chk from glob tests X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/azanella/clang X-Git-Oldrev: bf49aea618dd0376acdd1d2ac8ce46533dd44566 X-Git-Newrev: c1fa35997693da03bcef1b96682de2b76b1c2550 Message-Id: <20230928175855.6F60D3882107@sourceware.org> Date: Thu, 28 Sep 2023 17:58:55 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c1fa35997693da03bcef1b96682de2b76b1c2550 commit c1fa35997693da03bcef1b96682de2b76b1c2550 Author: Adhemerval Zanella Date: Wed Aug 30 09:00:04 2023 -0300 posix: Remove the __strcpy_chk from glob tests Not all compiler supports the builtin. Diff: --- posix/tst-glob_lstat_compat.c | 8 +++++++- posix/tst-gnuglob-skeleton.c | 9 ++++++++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/posix/tst-glob_lstat_compat.c b/posix/tst-glob_lstat_compat.c index 6559954247..9e6f9b2c36 100644 --- a/posix/tst-glob_lstat_compat.c +++ b/posix/tst-glob_lstat_compat.c @@ -173,7 +173,13 @@ my_readdir (void *gdir) dir->d.d_type = filesystem[dir->idx].type; - __strcpy_chk (dir->d.d_name, filesystem[dir->idx].name, NAME_MAX); + { + size_t len = strlen (filesystem[dir->idx].name); + if (len >= NAME_MAX) + FAIL_EXIT1 ("[%s] entry name larger than NAME_MAX (%d)", __func__, + NAME_MAX); + memcpy (dir->d.d_name, filesystem[dir->idx].name, len + 1); + } ++dir->idx; diff --git a/posix/tst-gnuglob-skeleton.c b/posix/tst-gnuglob-skeleton.c index 998fc2d94d..f8888c388c 100644 --- a/posix/tst-gnuglob-skeleton.c +++ b/posix/tst-gnuglob-skeleton.c @@ -35,6 +35,7 @@ #include #include #include +#include #include @@ -222,7 +223,13 @@ my_readdir (void *gdir) dir->d.d_type = filesystem[dir->idx].type; - __strcpy_chk (dir->d.d_name, filesystem[dir->idx].name, NAME_MAX); + { + size_t len = strlen (filesystem[dir->idx].name); + if (len >= NAME_MAX) + FAIL_EXIT1 ("[%s] entry name larger than NAME_MAX (%d)", __func__, + NAME_MAX); + memcpy (dir->d.d_name, filesystem[dir->idx].name, len + 1); + } if (test_verbose > 0) printf ("info: my_readdir ({ level: %d, idx: %ld })"