From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 83101385AF88; Wed, 26 Jul 2023 13:20:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 83101385AF88 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1690377628; bh=0tiWRwj066GM75vgLnUGv39uX9Gs2aMLafulpLobEyI=; h=From:To:Subject:Date:From; b=fPSI/iCQe0pmEovf2xbgLpB4hAeS7jOYKLEnAX+DtPgOoqUWhtKzOm6Gam5+/K4I3 hfDsw5LqEo8KOK/IoFkNHstUMUn15UyWJUJed9tHILn/sb4s8l+WjrM4dpgIfG0SMN 3jKTUlmEGs4hi3m22g1mipOjO/MTXu8BNHeJYz5Q= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin/cygwin-3_4-branch] Cygwin: Fix and streamline AT_EMPTY_PATH handling X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/cygwin-3_4-branch X-Git-Oldrev: a2e5f53217861d09c9fd9c692c6e38222eb6a32d X-Git-Newrev: b56b4d7fd85b4caa04593b20320468de12bfcec3 Message-Id: <20230726132028.83101385AF88@sourceware.org> Date: Wed, 26 Jul 2023 13:20:28 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3Db56b4d7fd85= b4caa04593b20320468de12bfcec3 commit b56b4d7fd85b4caa04593b20320468de12bfcec3 Author: Corinna Vinschen AuthorDate: Wed Jul 12 13:47:49 2023 +0200 Commit: Corinna Vinschen CommitDate: Wed Jul 26 15:19:59 2023 +0200 Cygwin: Fix and streamline AT_EMPTY_PATH handling =20 The GLIBC extension AT_EMPTY_PATH allows the functions fchownat and fstatat to operate on dirfd alone, if the given pathname is an empty string. This also allows to operate on any file type, not only directories. =20 Commit fa84aa4dd2fb4 broke this. It only allows dirfd to be a directory in calls to these two functions. =20 Fix that by handling AT_EMPTY_PATH right in gen_full_path_at. A valid dirfd and an empty pathname is now a valid combination and, noticably, this returns a valid path in path_ret. That in turn allows to remove the additional path generation code from the callers. =20 Fixes: fa84aa4dd2fb ("Cygwin: fix errno values set by readlinkat") Reported-by: Johannes Schindelin Tested-by: Johannes Schindelin Signed-off-by: Corinna Vinschen Diff: --- winsup/cygwin/syscalls.cc | 47 +++++++++++--------------------------------= ---- 1 file changed, 11 insertions(+), 36 deletions(-) diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc index 33cf4f07212c..a0ad3c2d0b29 100644 --- a/winsup/cygwin/syscalls.cc +++ b/winsup/cygwin/syscalls.cc @@ -4439,7 +4439,7 @@ gen_full_path_at (char *path_ret, int dirfd, const ch= ar *pathname, cygheap_fdget cfd (dirfd); if (cfd < 0) return -1; - if (!cfd->pc.isdir ()) + if (!cfd->pc.isdir () && !(flags & AT_EMPTY_PATH)) { set_errno (ENOTDIR); return -1; @@ -4450,6 +4450,8 @@ gen_full_path_at (char *path_ret, int dirfd, const ch= ar *pathname, { if (!*pathname) { + if (flags & AT_EMPTY_PATH) + return 0; set_errno (ENOENT); return -1; } @@ -4571,29 +4573,14 @@ fchownat (int dirfd, const char *pathname, uid_t ui= d, gid_t gid, int flags) __leave; } char *path =3D tp.c_get (); - int res =3D gen_full_path_at (path, dirfd, pathname); + int res =3D gen_full_path_at (path, dirfd, pathname, flags); if (res) + __leave; + if (!*pathname) /* Implies AT_EMPTY_PATH */ { - if (!(errno =3D=3D ENOENT && (flags & AT_EMPTY_PATH))) - __leave; - /* pathname is an empty string. Operate on dirfd. */ - if (dirfd =3D=3D AT_FDCWD) - { - cwdstuff::acquire_read (); - strcpy (path, cygheap->cwd.get_posix ()); - cwdstuff::release_read (); - } - else - { - cygheap_fdget cfd (dirfd); - if (cfd < 0) - __leave; - strcpy (path, cfd->get_name ()); - /* If dirfd refers to a symlink (which was necessarily - opened with O_PATH | O_NOFOLLOW), we must operate - directly on that symlink.. */ - flags =3D AT_SYMLINK_NOFOLLOW; - } + /* If dirfd refers to a symlink (which was necessarily opened with + O_PATH | O_NOFOLLOW), we must operate directly on that symlink. */ + flags =3D AT_SYMLINK_NOFOLLOW; } return chown_worker (path, (flags & AT_SYMLINK_NOFOLLOW) ? PC_SYM_NOFOLLOW : PC_SYM_FOLLOW, uid, gid); @@ -4616,21 +4603,9 @@ fstatat (int dirfd, const char *__restrict pathname,= struct stat *__restrict st, __leave; } char *path =3D tp.c_get (); - int res =3D gen_full_path_at (path, dirfd, pathname); + int res =3D gen_full_path_at (path, dirfd, pathname, flags); if (res) - { - if (!(errno =3D=3D ENOENT && (flags & AT_EMPTY_PATH))) - __leave; - /* pathname is an empty string. Operate on dirfd. */ - if (dirfd =3D=3D AT_FDCWD) - { - cwdstuff::acquire_read (); - strcpy (path, cygheap->cwd.get_posix ()); - cwdstuff::release_read (); - } - else - return fstat (dirfd, st); - } + __leave; path_conv pc (path, ((flags & AT_SYMLINK_NOFOLLOW) ? PC_SYM_NOFOLLOW : PC_SYM_FOLLOW) | PC_POSIX | PC_KEEP_HANDLE, stat_suffixes);