public inbox for cygwin-patches@cygwin.com
 help / color / mirror / Atom feed
From: Corinna Vinschen <corinna-cygwin@cygwin.com>
To: cygwin-patches@cygwin.com
Subject: Re: [PATCH v2] Cygwin: path: Add fallback for DFS mounted drive.
Date: Mon, 14 Mar 2022 12:04:18 +0100	[thread overview]
Message-ID: <Yi8hMjqUsMmPps7r@calimero.vinschen.de> (raw)
In-Reply-To: <20220314105744.739-1-takashi.yano@nifty.ne.jp>

Hi Takashi,

On Mar 14 19:57, Takashi Yano wrote:
> - If UNC path for DFS is mounted to a drive with drive letter, the
>   error "Too many levels of symbolic links" occurs when accessing
>   to that drive. This is because GetDosDeviceW() returns unexpected
>   string such as "\Device\Mup\DfsClient\;Z:000000000003fb89\dfsserver
>   \dfs\linkname" for the mounted UNC path "\??\UNC\fileserver\share".
>   This patch adds a workaround for this issue.
> 
>   Addresses: https://cygwin.com/pipermail/cygwin/2022-March/250979.html
> ---
>  winsup/cygwin/path.cc | 17 ++++++++++++-----
>  1 file changed, 12 insertions(+), 5 deletions(-)
> 
> diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc
> index 4ad4e0821..dd8f6c043 100644
> --- a/winsup/cygwin/path.cc
> +++ b/winsup/cygwin/path.cc
> @@ -3527,7 +3527,7 @@ restart:
>  		      int remlen = QueryDosDeviceW (drive, remote, MAX_PATH);
>  		      if (remlen < 3)
>  			goto file_not_symlink; /* fallback */
> -		      remlen -= 2;
> +		      remlen -= 2; /* Two L'\0' */
>  
>  		      if (remote[remlen - 1] == L'\\')
>  			remlen--;
> @@ -3535,20 +3535,27 @@ restart:
>  		      UNICODE_STRING rpath;
>  		      RtlInitCountedUnicodeString (&rpath, remote,
>  						   remlen * sizeof (WCHAR));
> +		      const int uncp_len =

I'd still prefer an unsigned type as USHORT or size_t here.  USHORT
because that's the type of the UNICODE_STRING::Length member, or
size_t because that's the standard type used for string lengths.

With that, GTG.

I just notice that remlen is int, too.  Given it represents the return
value from QueryDosDeviceW, it should ideally be converted to DWORD.


Thanks,
Corinna

      reply	other threads:[~2022-03-14 11:04 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-14 10:57 Takashi Yano
2022-03-14 11:04 ` Corinna Vinschen [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Yi8hMjqUsMmPps7r@calimero.vinschen.de \
    --to=corinna-cygwin@cygwin.com \
    --cc=cygwin-patches@cygwin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).