Windows-powershell / PowerShell-master /src /System.Management.Automation /engine /Interop /Windows /QueryDosDevice.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Buffers; | |
| using System.ComponentModel; | |
| using System.Management.Automation; | |
| using System.Runtime.InteropServices; | |
| internal static partial class Interop | |
| { | |
| internal static partial class Windows | |
| { | |
| [] | |
| internal static partial int QueryDosDevice(Span<char> lpDeviceName, Span<char> lpTargetPath, uint ucchMax); | |
| internal static string GetDosDeviceForNetworkPath(char deviceName) | |
| { | |
| // By default buffer size is set to 300 which would generally be sufficient in most of the cases. | |
| const int StartLength = | |
| // In debug, validate ArrayPool growth. | |
| 1; | |
| 300; | |
| Span<char> buffer = stackalloc char[StartLength + 1]; | |
| Span<char> fullDeviceName = [deviceName, ':', '\0']; | |
| char[]? rentedArray = null; | |
| try | |
| { | |
| while (true) | |
| { | |
| uint length = (uint)buffer.Length; | |
| int retValue = QueryDosDevice(fullDeviceName, buffer, length); | |
| if (retValue > 0) | |
| { | |
| if (buffer.StartsWith("\\??\\")) | |
| { | |
| // QueryDosDevice always return array of NULL-terminating strings with additional final NULL | |
| // so the buffer has always two NULL-s on end. | |
| // | |
| // "\\??\\UNC\\localhost\\c$\\tmp\0\0" -> "UNC\\localhost\\c$\\tmp\0\0" | |
| Span<char> res = buffer.Slice(4); | |
| if (res.StartsWith("UNC")) | |
| { | |
| // -> "C\\localhost\\c$\\tmp\0\0" -> "\\\\localhost\\c$\\tmp" | |
| // | |
| // We need to take only first null-terminated string as QueryDosDevice() docs say. | |
| int i = 3; | |
| for (; i < res.Length; i++) | |
| { | |
| if (res[i] == '\0') | |
| { | |
| break; | |
| } | |
| } | |
| Diagnostics.Assert(i < res.Length, "Broken QueryDosDevice() buffer."); | |
| res = res.Slice(2, i); | |
| res[0] = '\\'; | |
| // If we want always to have terminating slash -> "\\\\localhost\\c$\\tmp\\" | |
| // res = res.Slice(2, retValue - 3); | |
| // res[0] = '\\'; | |
| // res[^1] = '\\'; | |
| } | |
| // else if (res[^3] == ':') | |
| // { | |
| // Diagnostics.Assert(false, "Really it is a dead code since GetDosDevice() is called only if PSDrive.DriveType == DriveType.Network"); | |
| // // The substed path is the root path of a drive. For example: subst Y: C:\ | |
| // // -> "C:\0\0" -> "C:\" | |
| // res = res.Slice(0, retValue - 1); | |
| // res[^1] = '\\'; | |
| // } | |
| else | |
| { | |
| throw new Exception("GetDosDeviceForNetworkPath() can be called only if PSDrive.DriveType == DriveType.Network."); | |
| } | |
| return res.ToString(); | |
| } | |
| else | |
| { | |
| Diagnostics.Assert(false, "Really it is a dead code since GetDosDevice() is called only if PSDrive.DriveType == DriveType.Network"); | |
| // The drive name is not a substed path, then we return the root path of the drive | |
| // "C:\0" -> "C:\\" | |
| fullDeviceName[^1] = '\\'; | |
| return fullDeviceName.ToString(); | |
| } | |
| } | |
| const int ERROR_INSUFFICIENT_BUFFER = 122; | |
| int errorCode = Marshal.GetLastPInvokeError(); | |
| if (errorCode != ERROR_INSUFFICIENT_BUFFER) | |
| { | |
| throw new Win32Exception((int)errorCode); | |
| } | |
| char[]? toReturn = rentedArray; | |
| buffer = rentedArray = ArrayPool<char>.Shared.Rent(buffer.Length * 2); | |
| if (toReturn is not null) | |
| { | |
| ArrayPool<char>.Shared.Return(toReturn); | |
| } | |
| } | |
| } | |
| finally | |
| { | |
| if (rentedArray is not null) | |
| { | |
| ArrayPool<char>.Shared.Return(rentedArray); | |
| } | |
| } | |
| } | |
| } | |
| } | |