PowerShell/src/System.Management.Automation/CoreCLR/CorePsPlatform.cs

798 lines
26 KiB
C#
Raw Normal View History

/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Microsoft.Win32;
using Microsoft.Win32.SafeHandles;
using System.IO;
#if CORECLR
// SMA.Environment is only available on CoreCLR
using SpecialFolder = System.Management.Automation.Environment.SpecialFolder;
#endif
namespace System.Management.Automation
{
/// <summary>
/// These are platform abstractions and platform specific implementations
///
/// All these properties are calling into platform specific static classes, to make
/// sure the platform implementations are switched at runtime (including pinvokes).
/// </summary>
internal static class Platform
{
// Platform variables used to defined corresponding PowerShell built-in variables
public static bool IsLinux
{
get
{
#if CORECLR
return RuntimeInformation.IsOSPlatform(OSPlatform.Linux);
#else
return false;
#endif
}
}
2016-06-01 20:03:05 +02:00
//enum for selecting the xdgpaths
public enum XDG_Type
{
PROFILE,
MODULES,
CACHE,
2016-06-01 20:03:05 +02:00
DEFAULT
}
public static bool IsOSX
{
get
{
#if CORECLR
return RuntimeInformation.IsOSPlatform(OSPlatform.OSX);
#else
return false;
#endif
}
}
public static bool IsWindows
{
get
{
#if CORECLR
return RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
#else
return true;
#endif
}
}
public static bool IsCore
{
get
{
#if CORECLR
return true;
#else
return false;
#endif
}
}
// format files
internal static List<string> FormatFileNames = new List<string>
{
"Certificate.format.ps1xml",
"Diagnostics.format.ps1xml",
"DotNetTypes.format.ps1xml",
"Event.format.ps1xml",
"FileSystem.format.ps1xml",
"Help.format.ps1xml",
"HelpV3.format.ps1xml",
"PowerShellCore.format.ps1xml",
"PowerShellTrace.format.ps1xml",
"Registry.format.ps1xml",
"WSMan.format.ps1xml"
};
// function for choosing directory location of PowerShell for profile loading
public static string SelectProductNameForDirectory (Platform.XDG_Type dirpath)
{
2016-06-03 12:15:13 +02:00
//TODO: XDG_DATA_DIRS implementation as per GitHub issue #1060
string xdgconfighome = System.Environment.GetEnvironmentVariable("XDG_CONFIG_HOME");
string xdgdatahome = System.Environment.GetEnvironmentVariable("XDG_DATA_HOME");
string xdgcachehome = System.Environment.GetEnvironmentVariable("XDG_CACHE_HOME");
string xdgConfigHomeDefault = Path.Combine ( System.Environment.GetEnvironmentVariable("HOME"), ".config", "powershell");
2016-06-06 09:36:15 +02:00
string xdgModuleDefault = Path.Combine ( System.Environment.GetEnvironmentVariable("HOME"), ".local", "share", "powershell", "Modules");
string xdgCacheDefault = Path.Combine (System.Environment.GetEnvironmentVariable("HOME"), ".cache", "powershell");
2016-06-01 20:03:05 +02:00
switch (dirpath){
case Platform.XDG_Type.PROFILE:
//the user has set XDG_CONFIG_HOME corrresponding to profile path
2016-06-03 12:15:13 +02:00
if (String.IsNullOrEmpty(xdgconfighome))
{
2016-06-03 12:15:13 +02:00
//xdg values have not been set
return xdgConfigHomeDefault;
2016-06-01 20:03:05 +02:00
}
else
{
2016-06-03 12:15:13 +02:00
return Path.Combine(xdgconfighome, "powershell");
}
2016-06-01 20:03:05 +02:00
case Platform.XDG_Type.MODULES:
//the user has set XDG_DATA_HOME corresponding to module path
2016-06-03 12:15:13 +02:00
if (String.IsNullOrEmpty(xdgdatahome)){
//xdg values have not been set
if (!Directory.Exists(xdgModuleDefault)) //module folder not always guaranteed to exist
{
Directory.CreateDirectory(xdgModuleDefault);
}
2016-06-06 09:36:15 +02:00
return xdgModuleDefault;
2016-06-03 12:15:13 +02:00
}
else
{
2016-06-06 09:36:15 +02:00
return Path.Combine(xdgdatahome, "powershell", "Modules");
2016-06-01 20:03:05 +02:00
}
case Platform.XDG_Type.CACHE:
2016-06-01 20:03:05 +02:00
//the user has set XDG_CACHE_HOME
if (String.IsNullOrEmpty(xdgcachehome))
{
//xdg values have not been set
if (!Directory.Exists(xdgCacheDefault)) //module folder not always guaranteed to exist
{
Directory.CreateDirectory(xdgCacheDefault);
}
return xdgCacheDefault;
2016-06-01 20:03:05 +02:00
}
2016-06-06 09:36:15 +02:00
else
{
if (!Directory.Exists(Path.Combine(xdgcachehome, "powershell")))
{
Directory.CreateDirectory(Path.Combine(xdgcachehome, "powershell"));
}
2016-06-03 12:15:13 +02:00
return Path.Combine(xdgcachehome, "powershell");
}
2016-06-01 20:03:05 +02:00
case Platform.XDG_Type.DEFAULT:
//default for profile location
2016-06-03 12:15:13 +02:00
return xdgConfigHomeDefault;
2016-06-01 20:03:05 +02:00
default:
//xdgConfigHomeDefault needs to be created in the edge case that we do not have the folder or it was deleted
//This folder is the default in the event of all other failures for data storage
2016-06-03 12:15:13 +02:00
if (!Directory.Exists(xdgConfigHomeDefault))
2016-06-01 20:03:05 +02:00
{
try {
Directory.CreateDirectory(xdgConfigHomeDefault);
}
catch{
Console.Error.WriteLine("Failed to create default data directory: " + xdgConfigHomeDefault);
}
2016-06-01 20:03:05 +02:00
}
2016-06-03 12:15:13 +02:00
return xdgConfigHomeDefault;
}
2016-06-01 20:03:05 +02:00
}
// ComObjectType is null on CoreCLR for Linux since there is
// no COM support on Linux
internal static bool HasCom()
{
// TODO: catch exception from Type.IsComObject
return IsWindows;
}
// The Antimalware Scan Interface is not supported on Linux
internal static bool HasAmsi()
{
return IsWindows;
}
internal static bool UsesCodeSignedAssemblies()
{
return !Platform.IsCore;
}
// This is mainly with respect to the auto-mounting of
// disconnected network drives on Windows
internal static bool HasDriveAutoMounting()
{
return IsWindows;
}
// Linux does not have a registry
internal static bool HasRegistrySupport()
{
return IsWindows;
}
// Linux does not have PowerShell execution policies
internal static bool HasExecutionPolicy()
{
return IsWindows;
}
// Linux has a single rooted file system
internal static bool HasSingleRootFilesystem()
{
return !IsWindows;
}
// Linux has no notion of file shares. It has mount points
// instead, which are subdirectories of its single-root
// filesystem.
internal static bool HasFileShares()
{
return !HasSingleRootFilesystem();
}
// Linux has no support for UNC, just mounts in a single rooted hierarchy
// the UNC equivalent of a "network drive" aka mount would be the mount itself
internal static bool HasUNCSupport()
{
return IsWindows;
}
// Linux uses .net to query file attributes
internal static bool UseDotNetToQueryFileAttributes()
{
return true;
}
// Linux does not have group policy support
internal static bool HasGroupPolicySupport()
{
return IsWindows;
}
// non-windows does not have network drive support
internal static bool HasNetworkDriveSupport()
{
return IsWindows;
}
// non-windows does not have reparse points
internal static bool SupportsReparsePoints()
{
return IsWindows;
}
// non-windows does not support removing drives
internal static bool SupportsRemoveDrive()
{
return IsWindows;
}
// Platform methods prefixed NonWindows are:
// - non-windows by the definition of the IsWindows method above
// - here, because porting to Linux and other operating systems
// should not move the original Windows code out of the module
// it belongs to, so this way the windows code can remain in it's
// original source file and only the non-windows code has been moved
// out here
// - only to be used with the IsWindows feature query, and only if
// no other more specific feature query makes sense
internal static bool NonWindowsIsHardLink(ref IntPtr handle)
{
return LinuxPlatform.IsHardLink(ref handle);
}
internal static bool NonWindowsIsHardLink(FileSystemInfo fileInfo)
{
if (!IsWindows)
{
return LinuxPlatform.IsHardLink(fileInfo);
}
throw new PlatformNotSupportedException();
}
internal static bool NonWindowsIsSymLink(FileSystemInfo fileInfo)
{
if (!IsWindows)
{
return LinuxPlatform.IsSymLink(fileInfo);
}
throw new PlatformNotSupportedException();
}
internal static string NonWindowsInternalGetTarget(SafeFileHandle handle)
{
// SafeHandle is a Windows concept. Use the string version instead.
throw new PlatformNotSupportedException();
}
internal static string NonWindowsInternalGetTarget(string path)
{
if (!IsWindows)
{
return LinuxPlatform.FollowSymLink(path);
}
else
{
throw new PlatformNotSupportedException();
}
}
#if CORECLR
internal static string NonWindowsGetFolderPath(SpecialFolder folder)
{
if (!IsWindows)
{
return LinuxPlatform.GetFolderPath(folder);
}
else
{
throw new PlatformNotSupportedException();
}
}
#endif
internal static string NonWindowsInternalGetLinkType(FileSystemInfo fileInfo)
{
if (!IsWindows)
{
if (NonWindowsIsSymLink(fileInfo))
{
return "SymbolicLink";
}
if (NonWindowsIsHardLink(fileInfo))
{
return "HardLink";
}
return null;
}
else
{
throw new PlatformNotSupportedException();
}
}
internal static bool NonWindowsCreateSymbolicLink(string path, string strTargetPath, bool isDirectory)
{
if (!IsWindows)
{
// Linux doesn't care if target is a directory or not
return LinuxPlatform.CreateSymbolicLink(path, strTargetPath);
}
else
{
throw new PlatformNotSupportedException();
}
}
internal static bool NonWindowsCreateHardLink(string path, string strTargetPath)
{
if (!IsWindows)
{
return LinuxPlatform.CreateHardLink(path, strTargetPath);
}
else
{
throw new PlatformNotSupportedException();
}
}
internal static void NonWindowsSetDate(DateTime dateToUse)
{
if (!IsWindows)
{
LinuxPlatform.SetDateInfoInternal date = new LinuxPlatform.SetDateInfoInternal(dateToUse);
LinuxPlatform.SetDate(date);
}
else
{
throw new PlatformNotSupportedException();
}
}
internal static string NonWindowsGetDomainName()
{
if (!IsWindows)
{
string fullyQualifiedName = LinuxPlatform.Native.GetFullyQualifiedName();
if (string.IsNullOrEmpty(fullyQualifiedName))
{
int lastError = Marshal.GetLastWin32Error();
throw new InvalidOperationException("LinuxPlatform.NonWindowsGetDomainName error: " + lastError);
}
int index = fullyQualifiedName.IndexOf('.');
if (index >= 0)
{
return fullyQualifiedName.Substring(index + 1);
}
return "";
}
else
{
throw new PlatformNotSupportedException();
}
}
internal static string NonWindowsGetUserName()
{
if (!IsWindows)
{
return LinuxPlatform.UserName;
}
else
{
throw new PlatformNotSupportedException();
}
}
// Hostname in this context seems to be the FQDN
internal static string NonWindowsGetHostName()
{
if (!IsWindows)
{
string hostName = LinuxPlatform.Native.GetFullyQualifiedName();
if (string.IsNullOrEmpty(hostName))
{
int lastError = Marshal.GetLastWin32Error();
throw new InvalidOperationException("LinuxPlatform.NonWindowsHostName error: " + lastError);
}
return hostName;
}
else
{
throw new PlatformNotSupportedException();
}
}
internal static bool NonWindowsIsExecutable(string path)
{
if (!IsWindows)
{
return LinuxPlatform.IsExecutable(path);
}
throw new PlatformNotSupportedException();
}
internal static uint NonWindowsGetThreadId()
{
// TODO:PSL clean this up
return 0;
}
/// <summary>
/// This exception is meant to be thrown if a code path is not supported due
/// to platform restrictions
/// </summary>
internal class PlatformNotSupportedException : System.Exception
{
public PlatformNotSupportedException() : base() {}
}
/// <summary>
/// This models the native call CommandLineToArgvW in managed code.
/// </summary>
public static string[] CommandLineToArgv(string command)
{
StringBuilder arguments = new StringBuilder();
int len = command.Length;
IList<string> returnList = new List<string>();
bool inquote = false;
char current = '\0';
for (int argIndex = 0; argIndex < len; argIndex++)
{
current = command[argIndex];
if (current.Equals('"'))
{
// Treat anything in quotes as a single argument
// Because C# treats quotes differently than C++, instead of counting the slashes
// it makes more sense to count the quotes.
inquote = !inquote;
arguments.Append('"');
continue;
}
// If we're inside a quote, add the current character and cycle through
if (inquote && !current.Equals('"'))
{
arguments.Append(current.ToString());
continue;
}
if (current.Equals("\\"))
{
arguments.Append("\\");
continue;
}
if (string.IsNullOrWhiteSpace(current.ToString()))
{
if (arguments.Length > 0)
{
returnList.Add(arguments.ToString());
arguments.Clear();
}
continue;
}
// All other exclusion scenarios being exhausted, append the current character.
arguments.Append(current.ToString());
}
// add the final object to the arguments list
returnList.Add(arguments.ToString());
arguments.Clear();
return returnList.ToArray();
}
}
internal static class LinuxPlatform
{
private static string _userName;
public static string UserName
{
get
{
if (string.IsNullOrEmpty(_userName))
{
_userName = Native.GetUserName();
if (string.IsNullOrEmpty(_userName))
{
int lastError = Marshal.GetLastWin32Error();
throw new InvalidOperationException("LinuxPlatform.UserName error: " + lastError);
}
}
return _userName;
}
}
public static string TemporaryDirectory
{
get
{
// POSIX temporary directory environment variables
string[] environmentVariables = { "TMPDIR", "TMP", "TEMP", "TEMPDIR" };
string dir = string.Empty;
foreach (string s in environmentVariables)
{
dir = System.Environment.GetEnvironmentVariable(s);
if (!string.IsNullOrEmpty(dir))
{
return dir;
}
}
return "/tmp";
}
}
#if CORECLR
public static string GetFolderPath(SpecialFolder folder)
{
string s = null;
switch (folder)
{
case SpecialFolder.ProgramFiles:
s = "/bin";
break;
case SpecialFolder.ProgramFilesX86:
s = "/usr/bin";
break;
case SpecialFolder.System:
s = "/sbin";
break;
case SpecialFolder.SystemX86:
s = "/sbin";
break;
case SpecialFolder.Personal:
s = System.Environment.GetEnvironmentVariable("HOME");
break;
case SpecialFolder.LocalApplicationData:
s = System.IO.Path.Combine(System.Environment.GetEnvironmentVariable("HOME"), ".config");
if (!System.IO.Directory.Exists(s))
{
System.IO.Directory.CreateDirectory(s);
}
break;
default:
throw new NotSupportedException();
}
return s;
}
#endif
public static bool IsHardLink(ref IntPtr handle)
{
// TODO:PSL implement using fstat to query inode refcount to see if it is a hard link
return false;
}
public static bool IsHardLink(FileSystemInfo fs)
{
if (!fs.Exists || (fs.Attributes & FileAttributes.Directory) == FileAttributes.Directory)
{
return false;
}
int count;
string filePath = fs.FullName;
int ret = Native.GetLinkCount(filePath, out count);
if (ret == 1)
{
return count > 1;
}
else
{
int lastError = Marshal.GetLastWin32Error();
throw new InvalidOperationException("LinuxPlatform.IsHardLink error: " + lastError);
}
}
public static bool IsSymLink(FileSystemInfo fs)
{
if (!fs.Exists)
{
return false;
}
string filePath = fs.FullName;
int ret = Native.IsSymLink(filePath);
switch(ret)
{
case 1:
return true;
case 0:
return false;
default:
int lastError = Marshal.GetLastWin32Error();
throw new InvalidOperationException("LinuxPlatform.IsSymLink error: " + lastError);
}
}
public static bool IsExecutable(string filePath)
{
if (!File.Exists(filePath))
{
return false;
}
int ret = Native.IsExecutable(filePath);
switch(ret)
{
case 1:
return true;
case 0:
return false;
default:
int lastError = Marshal.GetLastWin32Error();
throw new InvalidOperationException("LinuxPlatform.IsExecutable error: " + lastError);
}
}
public static void SetDate(SetDateInfoInternal info)
{
int ret = Native.SetDate(info);
if (ret == -1)
{
int lastError = Marshal.GetLastWin32Error();
throw new InvalidOperationException("LinuxPlatform.NonWindowsSetDate error: " + lastError);
}
}
public static bool CreateSymbolicLink(string path, string strTargetPath)
{
int ret = Native.CreateSymLink(path, strTargetPath);
return ret == 1 ? true : false;
}
public static bool CreateHardLink(string path, string strTargetPath)
{
int ret = Native.CreateHardLink(path, strTargetPath);
return ret == 1 ? true : false;
}
public static string FollowSymLink(string path)
{
return Native.FollowSymLink(path);
}
[StructLayout(LayoutKind.Sequential)]
internal class SetDateInfoInternal
{
public int Year;
public int Month;
public int Day;
public int Hour;
public int Minute;
public int Second;
public int Millisecond;
public int DST;
public SetDateInfoInternal(DateTime d)
{
Year = d.Year;
Month = d.Month;
Day = d.Day;
Hour = d.Hour;
Minute = d.Minute;
Second = d.Second;
Millisecond = d.Millisecond;
DST = d.IsDaylightSavingTime() ? 1 : 0;
}
public override string ToString()
{
string ret = String.Format("Year = {0}; Month = {1}; Day = {2}; Hour = {3}; Minute = {4}; Second = {5}; Millisec = {6}; DST = {7}", Year, Month, Day, Hour, Minute, Second, Millisecond, DST);
return ret;
}
}
internal static class Native
{
const string psLib = "libpsl-native";
// Ansi is a misnomer, it is hardcoded to UTF-8 on Linux and OS X
[DllImport(psLib, CharSet = CharSet.Ansi, SetLastError = true)]
[return: MarshalAs(UnmanagedType.LPStr)]
internal static extern string GetUserName();
[DllImport(psLib, CharSet = CharSet.Ansi, SetLastError = true)]
internal static extern int GetLinkCount([MarshalAs(UnmanagedType.LPStr)]string filePath, out int linkCount);
[DllImport(psLib, CharSet = CharSet.Ansi, SetLastError = true)]
internal static extern int IsSymLink([MarshalAs(UnmanagedType.LPStr)]string filePath);
[DllImport(psLib, CharSet = CharSet.Ansi, SetLastError = true)]
internal static extern int IsExecutable([MarshalAs(UnmanagedType.LPStr)]string filePath);
[DllImport(psLib, CharSet = CharSet.Ansi, SetLastError = true)]
[return: MarshalAs(UnmanagedType.LPStr)]
internal static extern string GetFullyQualifiedName();
[DllImport(psLib, CharSet = CharSet.Ansi, SetLastError = true)]
internal static extern int SetDate(SetDateInfoInternal info);
[DllImport(psLib, CharSet = CharSet.Ansi, SetLastError = true)]
internal static extern int CreateSymLink([MarshalAs(UnmanagedType.LPStr)]string filePath,
[MarshalAs(UnmanagedType.LPStr)]string target);
[DllImport(psLib, CharSet = CharSet.Ansi, SetLastError = true)]
internal static extern int CreateHardLink([MarshalAs(UnmanagedType.LPStr)]string filePath,
[MarshalAs(UnmanagedType.LPStr)]string target);
[DllImport(psLib, CharSet = CharSet.Ansi, SetLastError = true)]
[return: MarshalAs(UnmanagedType.LPStr)]
internal static extern string FollowSymLink([MarshalAs(UnmanagedType.LPStr)]string filePath);
}
}
} // namespace System.Management.Automation