pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Win32 reading symlink should pass-through POSIX /dev-symlinks unchanged, 2025-02-06
Posted by Anonymous on Thu 6th Feb 2025 20:08
raw | new post

  1. From 8684a23d8f90f2b2ec434a73def8398fa1e24028 Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Thu, 6 Feb 2025 20:45:16 +0100
  4. Subject: [PATCH] sys,tests: Reading POSIX symlink to /dev should be
  5.  passed-through unchanged
  6.  
  7. Reading POSIX symlink to /dev should be passed-through unchanged. Cygwin
  8. creates symlinks to /dev/null, /dev/zero, /dev/stdin, and expects
  9. to read them back 1:1.
  10.  
  11. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  12. ---
  13. sys/nfs41sys_symlink.c   | 50 ++++++++++++++++++++++++++++++++++++++++
  14.  tests/manual_testing.txt |  2 ++
  15.  2 files changed, 52 insertions(+)
  16.  
  17. diff --git a/sys/nfs41sys_symlink.c b/sys/nfs41sys_symlink.c
  18. index 8f4447b..442b883 100644
  19. --- a/sys/nfs41sys_symlink.c
  20. +++ b/sys/nfs41sys_symlink.c
  21. @@ -598,6 +598,56 @@ NTSTATUS nfs41_GetSymlinkReparsePoint(
  22.              "got TargetName='%wZ', len=%d\n",
  23.              &TargetName, (int)TargetName.Length);
  24.  
  25. +        /*
  26. +         * Cygwin: Pass-through for POSIX symlinks to /dev, e.g.
  27. +         * /dev/null, /dev/zero, /dev/stdin etc.
  28. +         * Otherwise code like
  29. +         * $ ln -s /dev/zero foo && ls -l foo && rm foo #
  30. +         * will fail.
  31. +         * We restrict this to /dev only, all other kind of POSIX
  32. +         * symlinks should be translated to Win32 symlink syntax
  33. +         */
  34. +        if (((TargetName.Length > 5*sizeof(wchar_t)) &&
  35. +            (!wcsncmp(TargetName.Buffer, L"/dev/", 5)))) {
  36. +            const USHORT HeaderLen = FIELD_OFFSET(REPARSE_DATA_BUFFER,
  37. +                SymbolicLinkReparseBuffer.PathBuffer);
  38. +
  39. +            DbgP("nfs41_GetSymlinkReparsePoint: "
  40. +                "Cygwin /dev/ symlink codepath\n");
  41. +
  42. +            /* Copy data into FsCtl buffer  */
  43. +            (void)memcpy(((PBYTE)FsCtl->pOutputBuffer + HeaderLen),
  44. +                TargetName.Buffer, TargetName.Length);
  45. +            TargetName.Buffer =
  46. +                (PWCH)((PBYTE)FsCtl->pOutputBuffer + HeaderLen);
  47. +
  48. +            DbgP("nfs41_GetSymlinkReparsePoint: "
  49. +                "Cygwin /dev/ symlink TargetName='%wZ'\n",
  50. +                &TargetName);
  51. +
  52. +            Reparse->ReparseTag = IO_REPARSE_TAG_SYMLINK;
  53. +            Reparse->ReparseDataLength = HeaderLen + TargetName.Length -
  54. +                REPARSE_DATA_BUFFER_HEADER_SIZE;
  55. +            Reparse->Reserved = 0;
  56. +            /* Cygwin wants |SYMLINK_FLAG_RELATIVE| for these symlinks */
  57. +            Reparse->SymbolicLinkReparseBuffer.Flags =
  58. +                SYMLINK_FLAG_RELATIVE;
  59. +
  60. +            /* PrintName and SubstituteName point to the same string */
  61. +            Reparse->SymbolicLinkReparseBuffer.SubstituteNameOffset = 0;
  62. +            Reparse->SymbolicLinkReparseBuffer.SubstituteNameLength =
  63. +                TargetName.Length;
  64. +            Reparse->SymbolicLinkReparseBuffer.PrintNameOffset = 0;
  65. +            Reparse->SymbolicLinkReparseBuffer.PrintNameLength =
  66. +                TargetName.Length;
  67. +
  68. +            print_reparse_buffer(Reparse);
  69. +
  70. +            RxContext->IoStatusBlock.Information =
  71. +                (ULONG_PTR)HeaderLen + TargetName.Length;
  72. +            goto out;
  73. +        }
  74. +
  75.          /* POSIX slash to Win32 backslash */
  76.          size_t i;
  77.          for (i=0 ; i < TargetName.Length ; i++) {
  78. diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
  79. index 173c753..6957e0e 100644
  80. --- a/tests/manual_testing.txt
  81. +++ b/tests/manual_testing.txt
  82. @@ -183,6 +183,8 @@ powershell -Command 'New-Item -Path sym_mypsfile1 -ItemType SymbolicLink -Value
  83.  mkdir targetdir1
  84.  cmd /C 'mklink /D targetdir1_sym targetdir1'
  85.  cmd /C 'mklink /D targetdir2_sym .\targetdir1'
  86. +# 6. Cygwin /dev/ symlinks, e.g. foo --> /dev/null
  87. +ln -s /dev/zero foo && ls -l foo && rm foo
  88.  
  89.  #
  90.  # Tests for groups
  91. --
  92. 2.45.1

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at