// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #if !UNIX using System; using System.Collections.ObjectModel; using System.Globalization; using System.Text; using Microsoft.Win32; using System.Management.Automation; using System.Management.Automation.Internal; using System.Management.Automation.Provider; using Dbg = System.Management.Automation; using Microsoft.PowerShell.Commands.Internal; namespace Microsoft.PowerShell.Commands { /// /// Provider that provides access to Registry through cmdlets. This provider /// implements , /// , /// , /// /// interfaces. /// /// #if CORECLR // System.Transaction namespace is not in CoreClr. [CmdletProvider(RegistryProvider.ProviderName, ProviderCapabilities.ShouldProcess)] #else [CmdletProvider(RegistryProvider.ProviderName, ProviderCapabilities.ShouldProcess | ProviderCapabilities.Transactions)] #endif [OutputType(typeof(string), ProviderCmdlet = ProviderCmdlet.MoveItemProperty)] [OutputType(typeof(RegistryKey), typeof(string), ProviderCmdlet = ProviderCmdlet.GetChildItem)] [OutputType(typeof(RegistryKey), ProviderCmdlet = ProviderCmdlet.GetItem)] [OutputType(typeof(System.Security.AccessControl.RegistrySecurity), ProviderCmdlet = ProviderCmdlet.GetAcl)] [OutputType(typeof(Microsoft.Win32.RegistryKey), ProviderCmdlet = ProviderCmdlet.GetChildItem)] [OutputType(typeof(RegistryKey), ProviderCmdlet = ProviderCmdlet.GetItem)] [OutputType(typeof(RegistryKey), typeof(string), typeof(Int32), typeof(Int64), ProviderCmdlet = ProviderCmdlet.GetItemProperty)] [OutputType(typeof(RegistryKey), ProviderCmdlet = ProviderCmdlet.NewItem)] [OutputType(typeof(string), typeof(PathInfo), ProviderCmdlet = ProviderCmdlet.ResolvePath)] [OutputType(typeof(PathInfo), ProviderCmdlet = ProviderCmdlet.PushLocation)] [OutputType(typeof(PathInfo), ProviderCmdlet = ProviderCmdlet.PopLocation)] public sealed partial class RegistryProvider : NavigationCmdletProvider, IPropertyCmdletProvider, IDynamicPropertyCmdletProvider, ISecurityDescriptorCmdletProvider { #region tracer /// /// An instance of the PSTraceSource class used for trace output /// using "ProviderProvider" as the category. /// [Dbg.TraceSourceAttribute( "RegistryProvider", "The namespace navigation provider for the Windows Registry")] private static readonly Dbg.PSTraceSource s_tracer = Dbg.PSTraceSource.GetTracer("RegistryProvider", "The namespace navigation provider for the Windows Registry"); #endregion tracer /// /// Gets the name of the provider. /// public const string ProviderName = "Registry"; #region CmdletProvider overrides /// /// Gets the alternate item separator character for this provider. /// public override char AltItemSeparator => ItemSeparator; #endregion #region DriveCmdletProvider overrides /// /// Verifies that the new drive has a valid root. /// /// A PSDriveInfo object. /// protected override PSDriveInfo NewDrive(PSDriveInfo drive) { if (drive == null) { throw PSTraceSource.NewArgumentNullException(nameof(drive)); } if (!ItemExists(drive.Root)) { Exception e = new ArgumentException(RegistryProviderStrings.NewDriveRootDoesNotExist); WriteError(new ErrorRecord( e, e.GetType().FullName, ErrorCategory.InvalidArgument, drive.Root)); } return drive; } /// /// Creates HKEY_LOCAL_MACHINE and HKEY_CURRENT_USER registry drives during provider initialization. /// /// /// After the Start method is called on a provider, the InitializeDefaultDrives /// method is called. This is an opportunity for the provider to /// mount drives that are important to it. For instance, the Active Directory /// provider might mount a drive for the defaultNamingContext if the /// machine is joined to a domain. The FileSystem mounts all drives then available. /// protected override Collection InitializeDefaultDrives() { Collection drives = new Collection(); drives.Add( new PSDriveInfo( "HKLM", ProviderInfo, "HKEY_LOCAL_MACHINE", RegistryProviderStrings.HKLMDriveDescription, null)); drives.Add( new PSDriveInfo( "HKCU", ProviderInfo, "HKEY_CURRENT_USER", RegistryProviderStrings.HKCUDriveDescription, null)); return drives; } #endregion DriveCmdletProvider overrides #region ItemCmdletProvider overrides /// /// Determines if the specified is syntactically and semantically valid. /// /// /// The path to validate. /// /// /// True if the path is valid, or False otherwise. /// protected override bool IsValidPath(string path) { bool result = true; do // false loop { // There really aren't any illegal characters or syntactical patterns // to validate, so just ensure that the path starts with one of the hive roots. string root = NormalizePath(path); root = root.TrimStart(StringLiterals.DefaultPathSeparator); root = root.TrimEnd(StringLiterals.DefaultPathSeparator); int pathSeparator = root.IndexOf(StringLiterals.DefaultPathSeparator); if (pathSeparator != -1) { root = root.Substring(0, pathSeparator); } if (string.IsNullOrEmpty(root)) { // An empty path means that we are at the root and should // enumerate the hives. So that is a valid path. result = true; break; } if (GetHiveRoot(root) == null) { result = false; } } while (false); return result; } /// /// Gets the RegistryKey item at the specified /// and writes it to the pipeline using the WriteObject method. /// Any non-terminating exceptions are written to the WriteError method. /// /// /// The path to the key to retrieve. /// protected override void GetItem(string path) { // Get the registry item IRegistryWrapper result = GetRegkeyForPathWriteIfError(path, false); if (result == null) { return; } // Write out the result WriteRegistryItemObject(result, path); } /// /// Sets registry values at to the specified. /// /// /// The path to the item that is to be set. Only registry values can be set using /// this method. /// /// /// The new value for the registry value. /// protected override void SetItem(string path, object value) { if (string.IsNullOrEmpty(path)) { throw PSTraceSource.NewArgumentException(nameof(path)); } // Confirm the set item with the user string action = RegistryProviderStrings.SetItemAction; string resourceTemplate = RegistryProviderStrings.SetItemResourceTemplate; string resource = string.Format( Host.CurrentCulture, resourceTemplate, path, value); if (ShouldProcess(resource, action)) { // Get the registry item IRegistryWrapper key = GetRegkeyForPathWriteIfError(path, true); if (key == null) { return; } // Check to see if the type was specified by the user bool valueSet = false; if (DynamicParameters != null) { RegistryProviderSetItemDynamicParameter dynParams = DynamicParameters as RegistryProviderSetItemDynamicParameter; if (dynParams != null) { try { // Convert the parameter to a RegistryValueKind RegistryValueKind kind = dynParams.Type; key.SetValue(null, value, kind); valueSet = true; } catch (ArgumentException argException) { WriteError(new ErrorRecord(argException, argException.GetType().FullName, ErrorCategory.InvalidArgument, null)); key.Close(); return; } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, path)); key.Close(); return; } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); key.Close(); return; } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); key.Close(); return; } } } if (!valueSet) { try { // Set the value key.SetValue(null, value); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, path)); key.Close(); return; } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); key.Close(); return; } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); key.Close(); return; } } // Write out the result object result = value; // Since SetValue can munge the data to a specified // type (RegistryValueKind), retrieve the value again // to output it in the correct form to the user. result = ReadExistingKeyValue(key, null); key.Close(); WriteItemObject(result, path, false); } } /// /// Gets the dynamic parameters for the SetItem method. /// /// /// Ignored. /// /// /// Ignored. /// /// /// An instance of the class which /// contains a parameter for the Type. /// protected override object SetItemDynamicParameters(string path, object value) { return new RegistryProviderSetItemDynamicParameter(); } /// /// Clears the item at the specified . /// /// /// The path to the item that is to be cleared. Only registry values can be cleared using /// this method. /// /// /// The registry provider implements this by removing all the values for the specified key. /// The item that is cleared is written to the WriteObject method. /// If the path is to a value, then an ArgumentException is written. /// protected override void ClearItem(string path) { if (string.IsNullOrEmpty(path)) { throw PSTraceSource.NewArgumentException(nameof(path)); } // Confirm the clear item with the user string action = RegistryProviderStrings.ClearItemAction; string resourceTemplate = RegistryProviderStrings.ClearItemResourceTemplate; string resource = string.Format( Host.CurrentCulture, resourceTemplate, path); if (ShouldProcess(resource, action)) { // Get the registry item IRegistryWrapper key = GetRegkeyForPathWriteIfError(path, true); if (key == null) { return; } string[] valueNames; try { // Remove each value valueNames = key.GetValueNames(); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.ReadError, path)); return; } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); return; } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); return; } for (int index = 0; index < valueNames.Length; ++index) { try { key.DeleteValue(valueNames[index]); } catch (System.IO.IOException ioException) { // An exception occurred while trying to delete the value. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, path)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to delete the value. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } } // Write out the key WriteRegistryItemObject(key, path); } } #endregion ItemCmdletProvider overrides #region ContainerCmdletProvider overrides /// /// Gets all the child keys and values of the key at the specified . /// /// /// The path to the key to get the child keys of. /// / /// /// Determines if the call should be recursive. If true, all subkeys of /// the key at the specified path will be written. If false, only the /// immediate children of the key at the specified path will be written. /// /// /// Current depth of recursion; special case uint.MaxValue performs full recursion. /// protected override void GetChildItems( string path, bool recurse, uint depth) { s_tracer.WriteLine("recurse = {0}, depth = {1}", recurse, depth); if (path == null) { throw PSTraceSource.NewArgumentNullException(nameof(path)); } if (IsHiveContainer(path)) { // If the path is empty or it is / or \, return all the hives foreach (string hiveName in s_hiveNames) { // Making sure to obey the StopProcessing. if (Stopping) { return; } GetItem(hiveName); } } else { // Get the key at the specified path IRegistryWrapper key = GetRegkeyForPathWriteIfError(path, false); if (key == null) { return; } try { // Get all the subkeys of the specified path string[] keyNames = key.GetSubKeyNames(); key.Close(); if (keyNames != null) { foreach (string subkeyName in keyNames) { // Making sure to obey the StopProcessing. if (Stopping) { return; } if (!string.IsNullOrEmpty(subkeyName)) { string keypath = path; try { // Generate the path for each key name keypath = MakePath(path, subkeyName, childIsLeaf: true); if (!string.IsNullOrEmpty(keypath)) { // Call GetItem to retrieve the RegistryKey object // and write it to the WriteObject method. IRegistryWrapper resultKey = GetRegkeyForPath(keypath, false); if (resultKey != null) { WriteRegistryItemObject(resultKey, keypath); } // Now recurse if necessary if (recurse) { // Limiter for recursion if (depth > 0) // this includes special case 'depth == uint.MaxValue' for unlimited recursion { GetChildItems(keypath, recurse, depth - 1); } } } } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.ReadError, keypath)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, keypath)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, keypath)); } } } } } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.ReadError, path)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } } } /// /// Gets all the child key and value names of the key at the specified . /// /// /// The path to the key to get the child names from. /// /// /// Ignored since the registry provider does not implement filtering. /// Normally, if this parameter is ReturnAllContainers then all subkeys should be /// returned. If it is false, then only those subkeys that match the /// filter should be returned. /// protected override void GetChildNames( string path, ReturnContainers returnContainers) { if (path == null) { throw PSTraceSource.NewArgumentNullException(nameof(path)); } if (path.Length == 0) { // If the path is empty get the names of the hives foreach (string hiveName in s_hiveNames) { // Making sure to obey the StopProcessing. if (Stopping) { return; } WriteItemObject(hiveName, hiveName, true); } } else { // Get the key at the specified path IRegistryWrapper key = GetRegkeyForPathWriteIfError(path, false); if (key == null) { return; } try { // Get the child key names string[] results = key.GetSubKeyNames(); key.Close(); // Write the child key names to the WriteItemObject method for (int index = 0; index < results.Length; ++index) { // Making sure to obey the StopProcessing. if (Stopping) { return; } string childName = EscapeChildName(results[index]); string childPath = MakePath(path, childName, childIsLeaf: true); WriteItemObject(childName, childPath, true); } } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.ReadError, path)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } } } private const string charactersThatNeedEscaping = ".*?[]:"; /// /// Escapes the characters in the registry key path that are used by globbing and /// path. /// /// /// The path to escape. /// /// /// The escaped path. /// /// /// This method handles surrogate pairs. Please see msdn documentation /// private static string EscapeSpecialChars(string path) { StringBuilder result = new StringBuilder(); // Get the text enumerator..this will iterate through each character // the character can be a surrogate pair System.Globalization.TextElementEnumerator textEnumerator = System.Globalization.StringInfo.GetTextElementEnumerator(path); Dbg.Diagnostics.Assert( textEnumerator != null, string.Create(CultureInfo.CurrentCulture, $"Cannot get a text enumerator for name {path}")); while (textEnumerator.MoveNext()) { // Iterate through each element and findout whether // any text needs escaping string textElement = textEnumerator.GetTextElement(); // NTRAID#Windows Out of Band Releases-939036-2006/07/12-LeeHolm // A single character can never contain a string of // charactersThatNeedEscaping, so this method does nothing. The fix // is to remove all calls to this escaping code, though, as this escaping // should not be done. if (textElement.Contains(charactersThatNeedEscaping)) { // This text element needs escaping result.Append('`'); } result.Append(textElement); } return result.ToString(); } /// /// Escapes the characters in the registry key name that are used by globbing and /// path. /// /// /// The name to escape. /// /// /// The escaped name. /// /// /// This method handles surrogate pairs. Please see msdn documentation /// private static string EscapeChildName(string name) { StringBuilder result = new StringBuilder(); // Get the text enumerator..this will iterate through each character // the character can be a surrogate pair System.Globalization.TextElementEnumerator textEnumerator = System.Globalization.StringInfo.GetTextElementEnumerator(name); Dbg.Diagnostics.Assert( textEnumerator != null, string.Create(CultureInfo.CurrentCulture, $"Cannot get a text enumerator for name {name}")); while (textEnumerator.MoveNext()) { // Iterate through each element and findout whether // any text needs escaping string textElement = textEnumerator.GetTextElement(); // NTRAID#Windows Out of Band Releases-939036-2006/07/12-LeeHolm // A single character can never contain a string of // charactersThatNeedEscaping, so this method does nothing. The fix // is to remove all calls to this escaping code, though, as this escaping // should not be done. if (textElement.Contains(charactersThatNeedEscaping)) { // This text element needs escaping result.Append('`'); } result.Append(textElement); } return result.ToString(); } /// /// Renames the key at the specified to . /// /// /// The path to the key to rename. /// /// /// The new name of the key. /// protected override void RenameItem( string path, string newName) { if (string.IsNullOrEmpty(path)) { throw PSTraceSource.NewArgumentException(nameof(path)); } if (string.IsNullOrEmpty(newName)) { throw PSTraceSource.NewArgumentException(nameof(newName)); } s_tracer.WriteLine("newName = {0}", newName); string parentPath = GetParentPath(path, null); string newPath = MakePath(parentPath, newName); // Make sure we aren't going to overwrite an existing item bool exists = ItemExists(newPath); if (exists) { Exception e = new ArgumentException(RegistryProviderStrings.RenameItemAlreadyExists); WriteError(new ErrorRecord( e, e.GetType().FullName, ErrorCategory.InvalidArgument, newPath)); return; } // Confirm the rename item with the user string action = RegistryProviderStrings.RenameItemAction; string resourceTemplate = RegistryProviderStrings.RenameItemResourceTemplate; string resource = string.Format( Host.CurrentCulture, resourceTemplate, path, newPath); if (ShouldProcess(resource, action)) { // Implement rename as a move operation MoveRegistryItem(path, newPath); } } /// /// Creates a new registry key or value at the specified . /// /// /// The path to the new key to create. /// /// /// The type is ignored because this provider only creates /// registry keys. /// /// /// The newItem is ignored because the provider creates the /// key based on the path. /// protected override void NewItem( string path, string type, object newItem) { if (string.IsNullOrEmpty(path)) { throw PSTraceSource.NewArgumentException(nameof(path)); } // Confirm the new item with the user string action = RegistryProviderStrings.NewItemAction; string resourceTemplate = RegistryProviderStrings.NewItemResourceTemplate; string resource = string.Format( Host.CurrentCulture, resourceTemplate, path); if (ShouldProcess(resource, action)) { // Check to see if the key already exists IRegistryWrapper resultKey = GetRegkeyForPath(path, false); if (resultKey != null) { if (!Force) { Exception e = new System.IO.IOException(RegistryProviderStrings.KeyAlreadyExists); WriteError(new ErrorRecord( e, e.GetType().FullName, ErrorCategory.ResourceExists, resultKey)); resultKey.Close(); return; } else { // Remove the existing key before creating the new one resultKey.Close(); RemoveItem(path, false); } } if (Force) { if (!CreateIntermediateKeys(path)) { // We are unable to create Intermediate keys. Just return. return; } } // Get the parent and child portions of the path string parentPath = GetParentPath(path, null); string childName = GetChildName(path); // Get the key at the specified path IRegistryWrapper key = GetRegkeyForPathWriteIfError(parentPath, true); if (key == null) { return; } try { // Create the new subkey IRegistryWrapper newKey = key.CreateSubKey(childName); key.Close(); try { // Set the default key value if the value and type were specified if (newItem != null) { RegistryValueKind kind; if (!ParseKind(type, out kind)) { return; } SetRegistryValue(newKey, string.Empty, newItem, kind, path, false); } } catch (Exception exception) { // The key has been created, but the default value failed to be set. // If possible, just write an error instead of failing the entire operation. if ((exception is ArgumentException) || (exception is InvalidCastException) || (exception is System.IO.IOException) || (exception is System.Security.SecurityException) || (exception is System.UnauthorizedAccessException) || (exception is NotSupportedException)) { ErrorRecord rec = new ErrorRecord( exception, exception.GetType().FullName, ErrorCategory.WriteError, newKey); rec.ErrorDetails = new ErrorDetails(StringUtil.Format(RegistryProviderStrings.KeyCreatedValueFailed, childName)); WriteError(rec); } else throw; } // Write the new key out. WriteRegistryItemObject(newKey, path); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, path)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } catch (ArgumentException argException) { WriteError(new ErrorRecord(argException, argException.GetType().FullName, ErrorCategory.InvalidArgument, path)); } catch (NotSupportedException notSupportedException) { WriteError(new ErrorRecord(notSupportedException, notSupportedException.GetType().FullName, ErrorCategory.InvalidOperation, path)); } } } /// /// Removes the specified registry key and all sub-keys. /// /// /// The path to the key to remove. /// /// /// Ignored. All removes are recursive because the /// registry provider does not support filters. /// protected override void RemoveItem( string path, bool recurse) { if (string.IsNullOrEmpty(path)) { throw PSTraceSource.NewArgumentException(nameof(path)); } s_tracer.WriteLine("recurse = {0}", recurse); // Get the parent and child portions of the path string parentPath = GetParentPath(path, null); string childName = GetChildName(path); // Get the parent key IRegistryWrapper key = GetRegkeyForPathWriteIfError(parentPath, true); if (key == null) { return; } // Confirm the remove item with the user string action = RegistryProviderStrings.RemoveKeyAction; string resourceTemplate = RegistryProviderStrings.RemoveKeyResourceTemplate; string resource = string.Format( Host.CurrentCulture, resourceTemplate, path); if (ShouldProcess(resource, action)) { try { key.DeleteSubKeyTree(childName); } catch (ArgumentException argumentException) { WriteError(new ErrorRecord(argumentException, argumentException.GetType().FullName, ErrorCategory.WriteError, path)); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, path)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } catch (NotSupportedException notSupportedException) { WriteError(new ErrorRecord(notSupportedException, notSupportedException.GetType().FullName, ErrorCategory.InvalidOperation, path)); } } key.Close(); } /// /// Determines if the key at the specified path exists. /// /// /// The path to the key to determine if it exists. /// /// /// True if the key at the specified path exists, false otherwise. /// protected override bool ItemExists(string path) { bool result = false; if (path == null) { throw PSTraceSource.NewArgumentNullException(nameof(path)); } try { if (IsHiveContainer(path)) { // an empty path, \ or / are valid because // we will enumerate all the hives result = true; } else { IRegistryWrapper key = GetRegkeyForPath(path, false); if (key != null) { result = true; key.Close(); } } } // Catch known non-terminating exceptions catch (System.IO.IOException) { } // In these cases, the item does exist catch (System.Security.SecurityException) { result = true; } catch (System.UnauthorizedAccessException) { result = true; } return result; } /// /// Determines if the specified key has subkeys. /// /// /// The path to the key to determine if it has sub keys. /// /// /// True if the specified key has subkeys, false otherwise. /// protected override bool HasChildItems(string path) { bool result = false; if (path == null) { throw PSTraceSource.NewArgumentNullException(nameof(path)); } try { if (IsHiveContainer(path)) { // An empty path will enumerate the hives result = s_hiveNames.Length > 0; } else { IRegistryWrapper key = GetRegkeyForPath(path, false); if (key != null) { result = key.SubKeyCount > 0; key.Close(); } } } catch (System.IO.IOException) { result = false; } catch (System.Security.SecurityException) { result = false; } catch (System.UnauthorizedAccessException) { result = false; } return result; } /// /// Copies the specified registry key to the specified . /// /// /// The path of the registry key to copy. /// /// /// The path to copy the key to. /// /// /// If true all subkeys should be copied. If false, only the /// specified key should be copied. /// protected override void CopyItem( string path, string destination, bool recurse) { if (string.IsNullOrEmpty(path)) { throw PSTraceSource.NewArgumentException(nameof(path)); } if (string.IsNullOrEmpty(destination)) { throw PSTraceSource.NewArgumentException(nameof(destination)); } s_tracer.WriteLine("destination = {0}", destination); s_tracer.WriteLine("recurse = {0}", recurse); IRegistryWrapper key = GetRegkeyForPathWriteIfError(path, false); if (key == null) { return; } try { CopyRegistryKey(key, path, destination, recurse, true, false); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, path)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } key.Close(); } private bool CopyRegistryKey( IRegistryWrapper key, string path, string destination, bool recurse, bool streamResult, bool streamFirstOnly) { bool result = true; // Make sure we are not trying to do a recursive copy of a key // to itself or a child of itself. if (recurse) { if (ErrorIfDestinationIsSourceOrChildOfSource(path, destination)) { return false; } } Dbg.Diagnostics.Assert( key != null, "The key should have been validated by the caller"); Dbg.Diagnostics.Assert( !string.IsNullOrEmpty(path), "The path should have been validated by the caller"); Dbg.Diagnostics.Assert( !string.IsNullOrEmpty(destination), "The destination should have been validated by the caller"); s_tracer.WriteLine("destination = {0}", destination); // Get the parent key of the destination // If the destination already exists and is a key, then it becomes // the container of the source. If the key doesn't already exist // the parent of the destination path becomes the container of source. IRegistryWrapper newParentKey = GetRegkeyForPath(destination, true); string destinationName = GetChildName(path); string destinationParent = destination; if (newParentKey == null) { destinationParent = GetParentPath(destination, null); destinationName = GetChildName(destination); newParentKey = GetRegkeyForPathWriteIfError(destinationParent, true); } if (newParentKey == null) { // The key was not found. // An error should have been written by GetRegkeyForPathWriteIfError return false; } string destinationPath = MakePath(destinationParent, destinationName); // Confirm the copy item with the user string action = RegistryProviderStrings.CopyKeyAction; string resourceTemplate = RegistryProviderStrings.CopyKeyResourceTemplate; string resource = string.Format( Host.CurrentCulture, resourceTemplate, path, destination); if (ShouldProcess(resource, action)) { // Create new key under the parent IRegistryWrapper newKey = null; try { newKey = newParentKey.CreateSubKey(destinationName); } catch (NotSupportedException e) { WriteError(new ErrorRecord(e, e.GetType().FullName, ErrorCategory.InvalidOperation, destinationName)); } if (newKey != null) { // Now copy all the properties from the source to the destination string[] valueNames = key.GetValueNames(); for (int index = 0; index < valueNames.Length; ++index) { // Making sure to obey the StopProcessing. if (Stopping) { newParentKey.Close(); newKey.Close(); return false; } newKey.SetValue( valueNames[index], key.GetValue(valueNames[index], null, RegistryValueOptions.DoNotExpandEnvironmentNames), key.GetValueKind(valueNames[index])); } if (streamResult) { // Write out the key that was copied WriteRegistryItemObject(newKey, destinationPath); if (streamFirstOnly) { streamResult = false; } } } } newParentKey.Close(); if (recurse) { // Copy all the subkeys string[] subkeyNames = key.GetSubKeyNames(); for (int keyIndex = 0; keyIndex < subkeyNames.Length; ++keyIndex) { // Making sure to obey the StopProcessing. if (Stopping) { return false; } // Make the new path under the copy path. string subKeyPath = MakePath(path, subkeyNames[keyIndex]); string newSubKeyPath = MakePath(destinationPath, subkeyNames[keyIndex]); IRegistryWrapper childKey = GetRegkeyForPath(subKeyPath, false); bool subtreeResult = CopyRegistryKey(childKey, subKeyPath, newSubKeyPath, recurse, streamResult, streamFirstOnly); childKey.Close(); if (!subtreeResult) { result = subtreeResult; } } } return result; } private bool ErrorIfDestinationIsSourceOrChildOfSource( string sourcePath, string destinationPath) { s_tracer.WriteLine("destinationPath = {0}", destinationPath); // Note the paths have already been normalized so case-insensitive // comparisons should be sufficient bool result = false; while (true) { // See if the paths are equal if (string.Equals( sourcePath, destinationPath, StringComparison.OrdinalIgnoreCase)) { result = true; break; } string newDestinationPath = GetParentPath(destinationPath, null); if (string.IsNullOrEmpty(newDestinationPath)) { // We reached the root so the destination must not be a child // of the source break; } if (string.Equals( newDestinationPath, destinationPath, StringComparison.OrdinalIgnoreCase)) { // We reached the root so the destination must not be a child // of the source break; } destinationPath = newDestinationPath; } if (result) { Exception e = new ArgumentException( RegistryProviderStrings.DestinationChildOfSource); WriteError(new ErrorRecord( e, e.GetType().FullName, ErrorCategory.InvalidArgument, destinationPath)); } return result; } #endregion ContainerCmdletProvider overrides #region NavigationCmdletProvider overrides /// /// Determines if the key at the specified is a container. /// /// /// The path to a key. /// /// /// Since all registry keys are containers this method just checks /// to see if the key exists and returns true if it is does or /// false otherwise. /// protected override bool IsItemContainer(string path) { if (path == null) { throw PSTraceSource.NewArgumentNullException(nameof(path)); } bool result = false; if (IsHiveContainer(path)) { result = true; } else { try { IRegistryWrapper key = GetRegkeyForPath(path, false); if (key != null) { // All registry keys can be containers. Values are considered // properties key.Close(); result = true; } } // Catch known exceptions that are not terminating catch (System.IO.IOException ioException) { WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.ReadError, path)); } catch (System.Security.SecurityException securityException) { WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } catch (UnauthorizedAccessException unauthorizedAccess) { WriteError(new ErrorRecord(unauthorizedAccess, unauthorizedAccess.GetType().FullName, ErrorCategory.PermissionDenied, path)); } } return result; } /// /// Moves the specified key. /// /// /// The path of the key to move. /// /// /// The path to move the key to. /// protected override void MoveItem( string path, string destination) { if (string.IsNullOrEmpty(path)) { throw PSTraceSource.NewArgumentException(nameof(path)); } if (string.IsNullOrEmpty(destination)) { throw PSTraceSource.NewArgumentException(nameof(destination)); } s_tracer.WriteLine("destination = {0}", destination); // Confirm the rename item with the user string action = RegistryProviderStrings.MoveItemAction; string resourceTemplate = RegistryProviderStrings.MoveItemResourceTemplate; string resource = string.Format( Host.CurrentCulture, resourceTemplate, path, destination); if (ShouldProcess(resource, action)) { MoveRegistryItem(path, destination); } } private void MoveRegistryItem(string path, string destination) { // Implement move by copying the item and then removing it. // The copy will write the item to the pipeline IRegistryWrapper key = GetRegkeyForPathWriteIfError(path, false); if (key == null) { return; } bool continueWithRemove = false; try { continueWithRemove = CopyRegistryKey(key, path, destination, true, true, true); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, path)); key.Close(); return; } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); key.Close(); return; } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); key.Close(); return; } key.Close(); string sourceParent = GetParentPath(path, null); // If the destination is the same container as the source container don't do remove // the source item because the source and destination are the same. if (string.Equals(sourceParent, destination, StringComparison.OrdinalIgnoreCase)) { continueWithRemove = false; } if (continueWithRemove) { try { RemoveItem(path, true); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, path)); return; } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); return; } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); return; } } } #endregion NavigationCmdletProvider overrides #region IPropertyCmdletProvider /// /// Gets the properties of the item specified by the . /// /// /// The path to the item to retrieve properties from. /// /// /// A list of properties that should be retrieved. If this parameter is null /// or empty, all properties should be retrieved. /// /// /// Nothing. An instance of PSObject representing the properties that were retrieved /// should be passed to the WriteObject() method. /// public void GetProperty( string path, Collection providerSpecificPickList) { if (path == null) { throw PSTraceSource.NewArgumentNullException(nameof(path)); } if (!CheckOperationNotAllowedOnHiveContainer(path)) { return; } // get a set of matching properties on the key itself IRegistryWrapper key; Collection filteredPropertyCollection; GetFilteredRegistryKeyProperties(path, providerSpecificPickList, true, false, out key, out filteredPropertyCollection); if (key == null) { return; } bool valueAdded = false; PSObject propertyResults = new PSObject(); foreach (string valueName in filteredPropertyCollection) { string notePropertyName = valueName; if (string.IsNullOrEmpty(valueName)) { // If the value name is empty then using "(default)" // as the property name when adding the note, as // PSObject does not allow an empty propertyName notePropertyName = LocalizedDefaultToken; } try { propertyResults.Properties.Add(new PSNoteProperty(notePropertyName, key.GetValue(valueName))); valueAdded = true; } catch (InvalidCastException invalidCast) { WriteError(new ErrorRecord( invalidCast, invalidCast.GetType().FullName, ErrorCategory.ReadError, path)); } } key.Close(); if (valueAdded) { WritePropertyObject(propertyResults, path); } } /// /// Sets the specified properties of the item at the specified . /// /// /// The path to the item to set the properties on. /// /// /// A PSObject which contains a collection of the name, type, value /// of the properties to be set. /// /// /// Nothing. An instance of PSObject representing the properties that were set /// should be passed to the WriteObject() method. /// public void SetProperty( string path, PSObject propertyValue) { if (path == null) { throw PSTraceSource.NewArgumentNullException(nameof(path)); } if (!CheckOperationNotAllowedOnHiveContainer(path)) { return; } if (propertyValue == null) { throw PSTraceSource.NewArgumentNullException(nameof(propertyValue)); } IRegistryWrapper key = GetRegkeyForPathWriteIfError(path, true); if (key == null) { return; } RegistryValueKind kind = RegistryValueKind.Unknown; // Get the kind of the value using the dynamic parameters if (DynamicParameters != null) { RegistryProviderSetItemDynamicParameter dynParams = DynamicParameters as RegistryProviderSetItemDynamicParameter; if (dynParams != null) { kind = dynParams.Type; } } string action = RegistryProviderStrings.SetPropertyAction; string resourceTemplate = RegistryProviderStrings.SetPropertyResourceTemplate; foreach (PSMemberInfo property in propertyValue.Properties) { object newPropertyValue = property.Value; string resource = string.Format( Host.CurrentCulture, resourceTemplate, path, property.Name); if (ShouldProcess(resource, action)) { try { SetRegistryValue(key, property.Name, newPropertyValue, kind, path); } catch (InvalidCastException invalidCast) { WriteError(new ErrorRecord(invalidCast, invalidCast.GetType().FullName, ErrorCategory.WriteError, path)); } catch (System.IO.IOException ioException) { // An exception occurred while trying to set the value. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, property.Name)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to set the value. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, property.Name)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, property.Name)); } } } key.Close(); } /// /// Gives the provider a chance to attach additional parameters to the /// get-itemproperty cmdlet. /// /// /// If the path was specified on the command line, this is the path /// to the item to get the dynamic parameters for. /// /// /// A PSObject which contains a collection of the name, type, value /// of the properties to be set. /// /// /// An object that has properties and fields decorated with /// parsing attributes similar to a cmdlet class. /// public object SetPropertyDynamicParameters( string path, PSObject propertyValue) { return new RegistryProviderSetItemDynamicParameter(); } /// /// Clears a property of the item at the specified . /// /// /// The path to the item on which to clear the property. /// /// /// The name of the property to clear. /// public void ClearProperty( string path, Collection propertyToClear) { if (path == null) { throw PSTraceSource.NewArgumentNullException(nameof(path)); } if (!CheckOperationNotAllowedOnHiveContainer(path)) { return; } // get a set of matching properties on the key itself IRegistryWrapper key; Collection filteredPropertyCollection; GetFilteredRegistryKeyProperties(path, propertyToClear, false, true, out key, out filteredPropertyCollection); if (key == null) { return; } string action = RegistryProviderStrings.ClearPropertyAction; string resourceTemplate = RegistryProviderStrings.ClearPropertyResourceTemplate; bool addedOnce = false; PSObject result = new PSObject(); foreach (string valueName in filteredPropertyCollection) { string resource = string.Format( Host.CurrentCulture, resourceTemplate, path, valueName); if (ShouldProcess(resource, action)) { // reset the value of the property to its default value object defaultValue = ResetRegistryKeyValue(key, valueName); string propertyNameToAdd = valueName; if (string.IsNullOrEmpty(valueName)) { propertyNameToAdd = LocalizedDefaultToken; } result.Properties.Add(new PSNoteProperty(propertyNameToAdd, defaultValue)); addedOnce = true; } } key.Close(); if (addedOnce) { WritePropertyObject(result, path); } } #region Unimplemented methods /// /// Gives the provider a chance to attach additional parameters to the /// get-itemproperty cmdlet. /// /// /// If the path was specified on the command line, this is the path /// to the item to get the dynamic parameters for. /// /// /// A list of properties that should be retrieved. If this parameter is null /// or empty, all properties should be retrieved. /// /// /// An object that has properties and fields decorated with /// parsing attributes similar to a cmdlet class. /// public object GetPropertyDynamicParameters( string path, Collection providerSpecificPickList) { return null; } /// /// Gives the provider a chance to attach additional parameters to the /// clear-itemproperty cmdlet. /// /// /// If the path was specified on the command line, this is the path /// to the item to get the dynamic parameters for. /// /// /// The name of the property to clear. /// /// /// An object that has properties and fields decorated with /// parsing attributes similar to a cmdlet class. /// public object ClearPropertyDynamicParameters( string path, Collection propertyToClear) { return null; } #endregion Unimplemented methods #endregion IPropertyCmdletProvider #region IDynamicPropertyCmdletProvider /// /// Creates a new property on the specified item. /// /// /// The path to the item on which the new property should be created. /// /// /// The name of the property that should be created. /// /// /// The type of the property that should be created. /// /// /// The new value of the property that should be created. /// /// /// Nothing. A PSObject representing the property that was created should /// be passed to the WriteObject() method. /// /// public void NewProperty( string path, string propertyName, string type, object value) { if (path == null) { throw PSTraceSource.NewArgumentNullException(nameof(path)); } if (!CheckOperationNotAllowedOnHiveContainer(path)) { return; } IRegistryWrapper key = GetRegkeyForPathWriteIfError(path, true); if (key == null) { return; } // Confirm the set item with the user string action = RegistryProviderStrings.NewPropertyAction; string resourceTemplate = RegistryProviderStrings.NewPropertyResourceTemplate; string resource = string.Format( Host.CurrentCulture, resourceTemplate, path, propertyName); if (ShouldProcess(resource, action)) { // convert the type to a RegistryValueKind RegistryValueKind kind; if (!ParseKind(type, out kind)) { key.Close(); return; } try { // Check to see if the property already exists // or overwrite if frce is on if (Force || key.GetValue(propertyName) == null) { // Create the value SetRegistryValue(key, propertyName, value, kind, path); } else { // The property already exists System.IO.IOException e = new System.IO.IOException( RegistryProviderStrings.PropertyAlreadyExists); WriteError(new ErrorRecord(e, e.GetType().FullName, ErrorCategory.ResourceExists, path)); key.Close(); return; } } catch (ArgumentException argumentException) { WriteError(new ErrorRecord(argumentException, argumentException.GetType().FullName, ErrorCategory.WriteError, path)); } catch (InvalidCastException invalidCast) { WriteError(new ErrorRecord(invalidCast, invalidCast.GetType().FullName, ErrorCategory.WriteError, path)); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, path)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } } key.Close(); } /// /// Removes a property on the item specified by the path. /// /// /// The path to the item on which the property should be removed. /// /// /// The name of the property to be removed. /// /// /// Implement this method when you are providing access to a data store /// that allows dynamic removal of properties. /// public void RemoveProperty( string path, string propertyName) { if (path == null) { throw PSTraceSource.NewArgumentNullException(nameof(path)); } if (!CheckOperationNotAllowedOnHiveContainer(path)) { return; } IRegistryWrapper key = GetRegkeyForPathWriteIfError(path, true); if (key == null) { return; } WildcardPattern propertyNamePattern = WildcardPattern.Get(propertyName, WildcardOptions.IgnoreCase); bool hadAMatch = false; foreach (string valueName in key.GetValueNames()) { if ( ((!Context.SuppressWildcardExpansion) && (!propertyNamePattern.IsMatch(valueName))) || (Context.SuppressWildcardExpansion && (!string.Equals(valueName, propertyName, StringComparison.OrdinalIgnoreCase)))) { continue; } hadAMatch = true; // Confirm the set item with the user string action = RegistryProviderStrings.RemovePropertyAction; string resourceTemplate = RegistryProviderStrings.RemovePropertyResourceTemplate; string resource = string.Format( Host.CurrentCulture, resourceTemplate, path, valueName); if (ShouldProcess(resource, action)) { string propertyNameToRemove = GetPropertyName(valueName); try { // Remove the value key.DeleteValue(propertyNameToRemove); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, propertyNameToRemove)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, propertyNameToRemove)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, propertyNameToRemove)); } } } key.Close(); WriteErrorIfPerfectMatchNotFound(hadAMatch, path, propertyName); } /// /// Renames a property of the item at the specified . /// /// /// The path to the item on which to rename the property. /// /// /// The property to rename. /// /// /// The new name of the property. /// /// /// Nothing. A PSObject that represents the property that was renamed should be /// passed to the WriteObject() method. /// public void RenameProperty( string path, string sourceProperty, string destinationProperty) { if (path == null) { throw PSTraceSource.NewArgumentNullException(nameof(path)); } if (!CheckOperationNotAllowedOnHiveContainer(path)) { return; } IRegistryWrapper key = GetRegkeyForPathWriteIfError(path, true); if (key == null) { return; } // Confirm the set item with the user string action = RegistryProviderStrings.RenamePropertyAction; string resourceTemplate = RegistryProviderStrings.RenamePropertyResourceTemplate; string resource = string.Format( Host.CurrentCulture, resourceTemplate, path, sourceProperty, destinationProperty); if (ShouldProcess(resource, action)) { try { MoveProperty(key, key, sourceProperty, destinationProperty); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, path)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); } } key.Close(); } /// /// Copies a property of the item at the specified to a new property on the /// destination . /// /// /// The path to the item on which to copy the property. /// /// /// The name of the property to copy. /// /// /// The path to the item on which to copy the property to. /// /// /// The destination property to copy to. /// /// /// Nothing. A PSObject that represents the property that was copied should be /// passed to the WriteObject() method. /// public void CopyProperty( string sourcePath, string sourceProperty, string destinationPath, string destinationProperty) { if (sourcePath == null) { throw PSTraceSource.NewArgumentNullException(nameof(sourcePath)); } if (destinationPath == null) { throw PSTraceSource.NewArgumentNullException(nameof(destinationPath)); } if (!CheckOperationNotAllowedOnHiveContainer(sourcePath, destinationPath)) { return; } IRegistryWrapper key = GetRegkeyForPathWriteIfError(sourcePath, false); if (key == null) { return; } IRegistryWrapper destinationKey = GetRegkeyForPathWriteIfError(destinationPath, true); if (destinationKey == null) { return; } // Confirm the set item with the user string action = RegistryProviderStrings.CopyPropertyAction; string resourceTemplate = RegistryProviderStrings.CopyPropertyResourceTemplate; string resource = string.Format( Host.CurrentCulture, resourceTemplate, sourcePath, sourceProperty, destinationPath, destinationProperty); if (ShouldProcess(resource, action)) { try { CopyProperty(key, destinationKey, sourceProperty, destinationProperty, true); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, sourcePath)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, sourcePath)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, sourcePath)); } } key.Close(); } /// /// Moves a property on an item specified by . /// /// /// The path to the item on which to move the property. /// /// /// The name of the property to move. /// /// /// The path to the item on which to move the property to. /// /// /// The destination property to move to. /// /// /// Nothing. A PSObject that represents the property that was moved should be /// passed to the WriteObject() method. /// public void MoveProperty( string sourcePath, string sourceProperty, string destinationPath, string destinationProperty) { if (sourcePath == null) { throw PSTraceSource.NewArgumentNullException(nameof(sourcePath)); } if (destinationPath == null) { throw PSTraceSource.NewArgumentNullException(nameof(destinationPath)); } if (!CheckOperationNotAllowedOnHiveContainer(sourcePath, destinationPath)) { return; } IRegistryWrapper key = GetRegkeyForPathWriteIfError(sourcePath, true); if (key == null) { return; } IRegistryWrapper destinationKey = GetRegkeyForPathWriteIfError(destinationPath, true); if (destinationKey == null) { return; } // Confirm the set item with the user string action = RegistryProviderStrings.MovePropertyAction; string resourceTemplate = RegistryProviderStrings.MovePropertyResourceTemplate; string resource = string.Format( Host.CurrentCulture, resourceTemplate, sourcePath, sourceProperty, destinationPath, destinationProperty); if (ShouldProcess(resource, action)) { try { MoveProperty(key, destinationKey, sourceProperty, destinationProperty); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, sourcePath)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, sourcePath)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, sourcePath)); } } key.Close(); destinationKey.Close(); } /// /// Gets the parent path of the given . /// /// /// The path to get the parent of. /// /// /// The root of the drive. /// /// /// The parent path of the given path. /// /// /// Since the base class implementation of GetParentPath of HKLM:\foo would return /// HKLM: we must add the \ back on. /// protected override string GetParentPath(string path, string root) { string parentPath = base.GetParentPath(path, root); // If the main path existed, we must do a semantic analysis // to find the parent -- since path elements may contain // path delimiters. We only need to do this comparison // if the base implementation returns something in our namespace. if (!string.Equals(parentPath, root, StringComparison.OrdinalIgnoreCase)) { bool originalPathExists = ItemExists(path); bool originalPathExistsWithRoot = false; // This is an expensive test, only do it if we need to. if (!originalPathExists) originalPathExistsWithRoot = ItemExists(MakePath(root, path)); if ((!string.IsNullOrEmpty(parentPath)) && (originalPathExists || originalPathExistsWithRoot)) { string parentPathToTest = parentPath; do { parentPathToTest = parentPath; if (originalPathExistsWithRoot) parentPathToTest = MakePath(root, parentPath); if (ItemExists(parentPathToTest)) break; parentPath = base.GetParentPath(parentPath, root); } while (!string.IsNullOrEmpty(parentPath)); } } return EnsureDriveIsRooted(parentPath); } /// /// Gets the child name for the given . /// /// /// The path to get the leaf element of. /// /// /// The leaf element of the given path. /// /// /// Since the base class implementation of GetChildName will return /// normalized paths (with \), we must change them to forward slashes.. /// protected override string GetChildName(string path) { string childName = base.GetChildName(path); return childName.Replace('\\', '/'); } private static string EnsureDriveIsRooted(string path) { string result = path; // Find the drive separator int index = path.IndexOf(':'); if (index != -1) { // if the drive separator is the end of the path, add // the root path separator back if (index + 1 == path.Length) { result = path + StringLiterals.DefaultPathSeparator; } } return result; } #region Unimplemented methods /// /// Gives the provider a chance to attach additional parameters to the /// new-itemproperty cmdlet. /// /// /// If the path was specified on the command line, this is the path /// to the item to get the dynamic parameters for. /// /// /// The name of the property that should be created. /// /// /// The type of the property that should be created. /// /// /// The new value of the property that should be created. /// /// /// An object that has properties and fields decorated with /// parsing attributes similar to a cmdlet class. /// public object NewPropertyDynamicParameters( string path, string propertyName, string type, object value) { return null; } /// /// Gives the provider a chance to attach additional parameters to the /// remove-itemproperty cmdlet. /// /// /// If the path was specified on the command line, this is the path /// to the item to get the dynamic parameters for. /// /// /// The name of the property that should be removed. /// /// /// An object that has properties and fields decorated with /// parsing attributes similar to a cmdlet class. /// public object RemovePropertyDynamicParameters( string path, string propertyName) { return null; } /// /// Gives the provider a chance to attach additional parameters to the /// rename-itemproperty cmdlet. /// /// /// If the path was specified on the command line, this is the path /// to the item to get the dynamic parameters for. /// /// /// The property to rename. /// /// /// The new name of the property. /// /// /// An object that has properties and fields decorated with /// parsing attributes similar to a cmdlet class. /// public object RenamePropertyDynamicParameters( string path, string sourceProperty, string destinationProperty) { return null; } /// /// Gives the provider a chance to attach additional parameters to the /// copy-itemproperty cmdlet. /// /// /// If the path was specified on the command line, this is the path /// to the item to get the dynamic parameters for. /// /// /// The name of the property to copy. /// /// /// The path to the item on which to copy the property to. /// /// /// The destination property to copy to. /// /// /// An object that has properties and fields decorated with /// parsing attributes similar to a cmdlet class. /// public object CopyPropertyDynamicParameters( string sourcePath, string sourceProperty, string destinationPath, string destinationProperty) { return null; } /// /// Gives the provider a chance to attach additional parameters to the /// move-itemproperty cmdlet. /// /// /// If the path was specified on the command line, this is the path /// to the item to get the dynamic parameters for. /// /// /// The name of the property to copy. /// /// /// The path to the item on which to copy the property to. /// /// /// The destination property to copy to. /// /// /// An object that has properties and fields decorated with /// parsing attributes similar to a cmdlet class. /// public object MovePropertyDynamicParameters( string sourcePath, string sourceProperty, string destinationPath, string destinationProperty) { return null; } #endregion Unimplemented methods #endregion IDynamicPropertyCmdletProvider #region Private members private void CopyProperty( IRegistryWrapper sourceKey, IRegistryWrapper destinationKey, string sourceProperty, string destinationProperty, bool writeOnSuccess) { string realSourceProperty = GetPropertyName(sourceProperty); string realDestinationProperty = GetPropertyName(destinationProperty); object sourceValue = sourceKey.GetValue(sourceProperty); RegistryValueKind sourceKind = sourceKey.GetValueKind(sourceProperty); destinationKey.SetValue(destinationProperty, sourceValue, sourceKind); if (writeOnSuccess) { WriteWrappedPropertyObject(sourceValue, realSourceProperty, sourceKey.Name); } } private void MoveProperty( IRegistryWrapper sourceKey, IRegistryWrapper destinationKey, string sourceProperty, string destinationProperty) { string realSourceProperty = GetPropertyName(sourceProperty); string realDestinationProperty = GetPropertyName(destinationProperty); try { // If sourceProperty and destinationProperty happens to be the same // then we shouldn't remove the property bool continueWithRemove = true; if (string.Equals(sourceKey.Name, destinationKey.Name, StringComparison.OrdinalIgnoreCase) && string.Equals(realSourceProperty, realDestinationProperty, StringComparison.OrdinalIgnoreCase)) { continueWithRemove = false; } // Move is implemented by copying the value and then deleting the original // Copy property will throw an exception if it fails CopyProperty( sourceKey, destinationKey, realSourceProperty, realDestinationProperty, false); // Delete sourceproperty only if it is not same as destination property if (continueWithRemove) { sourceKey.DeleteValue(realSourceProperty); } object newValue = destinationKey.GetValue(realDestinationProperty); WriteWrappedPropertyObject(newValue, destinationProperty, destinationKey.Name); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, sourceKey.Name)); return; } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, sourceKey.Name)); return; } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, sourceKey.Name)); return; } } /// /// Converts all / in the path to \ /// /// /// The path to normalize. /// /// /// The path with all / normalized to \ /// private string NormalizePath(string path) { string result = path; if (!string.IsNullOrEmpty(path)) { result = path.Replace(StringLiterals.AlternatePathSeparator, StringLiterals.DefaultPathSeparator); // Remove relative path tokens if (HasRelativePathTokens(path)) { result = NormalizeRelativePath(result, null); } } return result; } private static bool HasRelativePathTokens(string path) { return ( path.StartsWith('\\') || path.Contains("\\.\\") || path.Contains("\\..\\") || path.EndsWith("\\..", StringComparison.OrdinalIgnoreCase) || path.EndsWith("\\.", StringComparison.OrdinalIgnoreCase) || path.StartsWith("..\\", StringComparison.OrdinalIgnoreCase) || path.StartsWith(".\\", StringComparison.OrdinalIgnoreCase) || path.StartsWith('~')); } private void GetFilteredRegistryKeyProperties(string path, Collection propertyNames, bool getAll, bool writeAccess, out IRegistryWrapper key, out Collection filteredCollection) { bool expandAll = false; if (string.IsNullOrEmpty(path)) { throw PSTraceSource.NewArgumentException(nameof(path)); } filteredCollection = new Collection(); key = GetRegkeyForPathWriteIfError(path, writeAccess); if (key == null) { return; } // If properties were not specified, get all the values propertyNames ??= new Collection(); if (propertyNames.Count == 0 && getAll) { propertyNames.Add("*"); expandAll = true; } string[] valueNames; try { valueNames = key.GetValueNames(); } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.ReadError, path)); return; } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); return; } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); return; } foreach (string requestedValueName in propertyNames) { WildcardPattern valueNameMatcher = WildcardPattern.Get( requestedValueName, WildcardOptions.IgnoreCase); bool hadAMatch = false; foreach (string valueName in valueNames) { string valueNameToMatch = valueName; // Need to convert the default value name to "(default)" if (string.IsNullOrEmpty(valueName)) { // Only do the conversion if the caller isn't asking for // "" or null. if (!string.IsNullOrEmpty(requestedValueName)) { valueNameToMatch = LocalizedDefaultToken; } } if ( expandAll || ((!Context.SuppressWildcardExpansion) && (valueNameMatcher.IsMatch(valueNameToMatch))) || ((Context.SuppressWildcardExpansion) && (string.Equals(valueNameToMatch, requestedValueName, StringComparison.OrdinalIgnoreCase)))) { if (string.IsNullOrEmpty(valueNameToMatch)) { // If the value name is empty then using "(default)" // as the property name when adding the note, as // PSObject does not allow an empty propertyName valueNameToMatch = LocalizedDefaultToken; } hadAMatch = true; filteredCollection.Add(valueName); } } WriteErrorIfPerfectMatchNotFound(hadAMatch, path, requestedValueName); } } private void WriteErrorIfPerfectMatchNotFound(bool hadAMatch, string path, string requestedValueName) { if (!hadAMatch && !WildcardPattern.ContainsWildcardCharacters(requestedValueName)) { // we did not have any match and the requested name did not have // any globbing characters (perfect match attempted) // we need to write an error string formatString = RegistryProviderStrings.PropertyNotAtPath; Exception e = new PSArgumentException( string.Format( CultureInfo.CurrentCulture, formatString, requestedValueName, path), (Exception)null); WriteError(new ErrorRecord( e, e.GetType().FullName, ErrorCategory.InvalidArgument, requestedValueName)); } } /// /// IT resets the a registry key value to its default. /// /// Key whose value has to be reset. /// Name of the value to reset. /// Default value the key was set to. private object ResetRegistryKeyValue(IRegistryWrapper key, string valueName) { RegistryValueKind valueKind = key.GetValueKind(valueName); object defaultValue = null; switch (valueKind) { // NOTICE: we assume that an unknown type is treated as // the same as a binary blob case RegistryValueKind.Binary: case RegistryValueKind.Unknown: { defaultValue = Array.Empty(); } break; case RegistryValueKind.DWord: { defaultValue = (int)0; } break; case RegistryValueKind.ExpandString: case RegistryValueKind.String: { defaultValue = string.Empty; } break; case RegistryValueKind.MultiString: { defaultValue = Array.Empty(); } break; case RegistryValueKind.QWord: { defaultValue = (long)0; } break; } try { key.SetValue(valueName, defaultValue, valueKind); } catch (System.IO.IOException ioException) { // An exception occurred while trying to set the value. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.WriteError, valueName)); } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to set the value. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, valueName)); } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, valueName)); } return defaultValue; } /// /// Checks if the given path is the top container path (the one containing the hives) /// /// /// path to check /// /// /// true if the path is empty, a \ or a /, else false /// private static bool IsHiveContainer(string path) { bool result = false; if (path == null) { throw PSTraceSource.NewArgumentNullException(nameof(path)); } if (string.IsNullOrEmpty(path) || string.Equals(path, "\\", StringComparison.OrdinalIgnoreCase) || string.Equals(path, "/", StringComparison.OrdinalIgnoreCase)) { result = true; } return result; } /// /// Checks the container. if the container is the hive container (Registry::\) /// it throws an exception. /// /// Path to check. /// False if the operation is not allowed. private bool CheckOperationNotAllowedOnHiveContainer(string path) { if (IsHiveContainer(path)) { string message = RegistryProviderStrings.ContainerInvalidOperationTemplate; InvalidOperationException ex = new InvalidOperationException(message); WriteError(new ErrorRecord(ex, "InvalidContainer", ErrorCategory.InvalidArgument, path)); return false; } return true; } /// /// Checks the container. if the container is the hive container (Registry::\) /// it throws an exception. /// /// Source path to check. /// Destination path to check. private bool CheckOperationNotAllowedOnHiveContainer(string sourcePath, string destinationPath) { if (IsHiveContainer(sourcePath)) { string message = RegistryProviderStrings.SourceContainerInvalidOperationTemplate; InvalidOperationException ex = new InvalidOperationException(message); WriteError(new ErrorRecord(ex, "InvalidContainer", ErrorCategory.InvalidArgument, sourcePath)); return false; } if (IsHiveContainer(destinationPath)) { string message = RegistryProviderStrings.DestinationContainerInvalidOperationTemplate; InvalidOperationException ex = new InvalidOperationException(message); WriteError(new ErrorRecord(ex, "InvalidContainer", ErrorCategory.InvalidArgument, destinationPath)); return false; } return true; } /// /// Gets the appropriate hive root name for the specified path. /// /// /// The path to get the hive root name from. /// /// /// A registry key for the hive root specified by the path. /// private IRegistryWrapper GetHiveRoot(string path) { if (string.IsNullOrEmpty(path)) { throw PSTraceSource.NewArgumentException(nameof(path)); } if (TransactionAvailable()) { for (int k = 0; k < s_wellKnownHivesTx.Length; k++) { if (string.Equals(path, s_hiveNames[k], StringComparison.OrdinalIgnoreCase) || string.Equals(path, s_hiveShortNames[k], StringComparison.OrdinalIgnoreCase)) { using (CurrentPSTransaction) { return new TransactedRegistryWrapper(s_wellKnownHivesTx[k], this); } } } } else { for (int k = 0; k < s_wellKnownHives.Length; k++) { if (string.Equals(path, s_hiveNames[k], StringComparison.OrdinalIgnoreCase) || string.Equals(path, s_hiveShortNames[k], StringComparison.OrdinalIgnoreCase)) return new RegistryWrapper(s_wellKnownHives[k]); } } return null; } /// /// Creates the parent for the keypath specified by . /// /// RegistryKey path. /// /// True if key is created or already exist,False otherwise. /// /// /// This method wont call ShouldProcess. Callers should do this before /// calling this method. /// private bool CreateIntermediateKeys(string path) { bool result = false; // Check input. if (string.IsNullOrEmpty(path)) { throw PSTraceSource.NewArgumentException(nameof(path)); } try { // 1. Normalize path ( for "//","." etc ) // 2. Open the root // 3. Create subkey path = NormalizePath(path); int index = path.IndexOf('\\'); if (index == 0) { // The user may precede a path with \ path = path.Substring(1); index = path.IndexOf('\\'); } if (index == -1) { // we are at root..there is no subkey to create // just return return true; } string keyRoot = path.Substring(0, index); // NormalizePath will trim "\" at the end. So there is always something // after index. Asserting just in case.. Dbg.Diagnostics.Assert(index + 1 < path.Length, "Bad path"); string remainingPath = path.Substring(index + 1); IRegistryWrapper rootKey = GetHiveRoot(keyRoot); if (remainingPath.Length == 0 || rootKey == null) { throw PSTraceSource.NewArgumentException(nameof(path)); } // Create new subkey..and close IRegistryWrapper subKey = rootKey.CreateSubKey(remainingPath); if (subKey != null) { subKey.Close(); } else { // SubKey is null // Unable to create intermediate keys throw PSTraceSource.NewArgumentException(nameof(path)); } result = true; } catch (ArgumentException argumentException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(argumentException, argumentException.GetType().FullName, ErrorCategory.OpenError, path)); return result; } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.OpenError, path)); return result; } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); return result; } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); return result; } catch (NotSupportedException notSupportedException) { WriteError(new ErrorRecord(notSupportedException, notSupportedException.GetType().FullName, ErrorCategory.InvalidOperation, path)); } return result; } /// /// A private helper method that retrieves a RegistryKey for the specified /// path and if an exception is thrown retrieving the key, an error is written /// and null is returned. /// /// /// The path to the registry key to retrieve. /// /// /// If write access is required the key then this should be true. If false, /// the key will be opened with read access only. /// /// /// The RegistryKey associated with the specified path. /// private IRegistryWrapper GetRegkeyForPathWriteIfError(string path, bool writeAccess) { IRegistryWrapper result = null; try { result = GetRegkeyForPath(path, writeAccess); if (result == null) { // The key was not found, write out an error. ArgumentException exception = new ArgumentException( RegistryProviderStrings.KeyDoesNotExist); WriteError(new ErrorRecord(exception, exception.GetType().FullName, ErrorCategory.InvalidArgument, path)); return null; } } catch (ArgumentException argumentException) { WriteError(new ErrorRecord(argumentException, argumentException.GetType().FullName, ErrorCategory.OpenError, path)); return result; } catch (System.IO.IOException ioException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(ioException, ioException.GetType().FullName, ErrorCategory.OpenError, path)); return result; } catch (System.Security.SecurityException securityException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(securityException, securityException.GetType().FullName, ErrorCategory.PermissionDenied, path)); return result; } catch (System.UnauthorizedAccessException unauthorizedAccessException) { // An exception occurred while trying to get the key. Write // out the error. WriteError(new ErrorRecord(unauthorizedAccessException, unauthorizedAccessException.GetType().FullName, ErrorCategory.PermissionDenied, path)); return result; } return result; } /// /// A private helper method that retrieves a RegistryKey for the specified /// path. /// /// /// The path to the registry key to retrieve. /// /// /// If write access is required the key then this should be true. If false, /// the key will be opened with read access only. /// /// /// The RegistryKey associated with the specified path. /// private IRegistryWrapper GetRegkeyForPath(string path, bool writeAccess) { if (string.IsNullOrEmpty(path)) { // The key was not found, write out an error. ArgumentException exception = new ArgumentException( RegistryProviderStrings.KeyDoesNotExist); throw exception; } // Making sure to obey the StopProcessing. if (Stopping) { return null; } s_tracer.WriteLine("writeAccess = {0}", writeAccess); IRegistryWrapper result = null; do // false loop { int index = path.IndexOf('\\'); if (index == 0) { // The user may proceed a path with \ path = path.Substring(1); index = path.IndexOf('\\'); } if (index == -1) { result = GetHiveRoot(path); break; } string keyRoot = path.Substring(0, index); string remainingPath = path.Substring(index + 1); IRegistryWrapper resultRoot = GetHiveRoot(keyRoot); if (remainingPath.Length == 0 || resultRoot == null) { result = resultRoot; break; } try { result = resultRoot.OpenSubKey(remainingPath, writeAccess); } catch (NotSupportedException e) { WriteError(new ErrorRecord(e, e.GetType().FullName, ErrorCategory.InvalidOperation, path)); } // If we could not open the key, see if we can find the subkey that matches. if (result == null) { IRegistryWrapper currentKey = resultRoot; IRegistryWrapper tempKey = null; // While there is still more to process while (!string.IsNullOrEmpty(remainingPath)) { bool foundSubkey = false; foreach (string subKey in currentKey.GetSubKeyNames()) { string normalizedSubkey = subKey; // Check if the remaining path starts with the subkey name if (!remainingPath.Equals(subKey, StringComparison.OrdinalIgnoreCase) && !remainingPath.StartsWith(subKey + StringLiterals.DefaultPathSeparator, StringComparison.OrdinalIgnoreCase)) { // Actually normalize the subkey and then check again normalizedSubkey = NormalizePath(subKey); if (!remainingPath.Equals(normalizedSubkey, StringComparison.OrdinalIgnoreCase) && !remainingPath.StartsWith(normalizedSubkey + StringLiterals.DefaultPathSeparator, StringComparison.OrdinalIgnoreCase)) { continue; } } tempKey = currentKey.OpenSubKey(subKey, writeAccess); currentKey.Close(); currentKey = tempKey; foundSubkey = true; remainingPath = remainingPath.Equals(normalizedSubkey, StringComparison.OrdinalIgnoreCase) ? string.Empty : remainingPath.Substring((normalizedSubkey + StringLiterals.DefaultPathSeparator).Length); break; } if (!foundSubkey) { return null; } } return currentKey; } } while (false); return result; } // NB: The HKEY_DYN_DATA hive is left out of the following lists because // it is only available on Win98/ME and we do not support that platform. private static readonly string[] s_hiveNames = new string[] { "HKEY_LOCAL_MACHINE", "HKEY_CURRENT_USER", "HKEY_CLASSES_ROOT", "HKEY_CURRENT_CONFIG", "HKEY_USERS", "HKEY_PERFORMANCE_DATA" }; private static readonly string[] s_hiveShortNames = new string[] { "HKLM", "HKCU", "HKCR", "HKCC", "HKU", "HKPD" }; private static readonly RegistryKey[] s_wellKnownHives = new RegistryKey[] { Registry.LocalMachine, Registry.CurrentUser, Registry.ClassesRoot, Registry.CurrentConfig, Registry.Users, Registry.PerformanceData }; private static readonly TransactedRegistryKey[] s_wellKnownHivesTx = new TransactedRegistryKey[] { TransactedRegistry.LocalMachine, TransactedRegistry.CurrentUser, TransactedRegistry.ClassesRoot, TransactedRegistry.CurrentConfig, TransactedRegistry.Users }; /// /// Sets or creates a registry value on a key. /// /// /// The key to set or create the value on. /// /// /// The name of the value to set or create. /// /// /// The new data for the value. /// /// /// The RegistryValueKind of the value. /// /// /// The path to the key that the value is being set on. /// private void SetRegistryValue(IRegistryWrapper key, string propertyName, object value, RegistryValueKind kind, string path) { SetRegistryValue(key, propertyName, value, kind, path, true); } /// /// Sets or creates a registry value on a key. /// /// /// The key to set or create the value on. /// /// /// The name of the value to set or create. /// /// /// The new data for the value. /// /// /// The RegistryValueKind of the value. /// /// /// The path to the key that the value is being set on. /// /// /// If true, the value that is set will be written out. /// private void SetRegistryValue( IRegistryWrapper key, string propertyName, object value, RegistryValueKind kind, string path, bool writeResult) { Dbg.Diagnostics.Assert( key != null, "Caller should have verified key"); string propertyNameToSet = GetPropertyName(propertyName); RegistryValueKind existingKind = RegistryValueKind.Unknown; // If user does not specify a kind: get the valuekind if the property // already exists if (kind == RegistryValueKind.Unknown) { existingKind = GetValueKindForProperty(key, propertyNameToSet); } // try to do a conversion based on the existing kind, if we // were able to retrieve one if (existingKind != RegistryValueKind.Unknown) { try { value = ConvertValueToKind(value, existingKind); kind = existingKind; } catch (InvalidCastException) { // failed attempt, we reset to unknown to let the // default conversion process take over existingKind = RegistryValueKind.Unknown; } } // set the kind as defined by the user if (existingKind == RegistryValueKind.Unknown) { // we use to kind passed in, either because we had // a valid one or because we failed to retrieve an existing kind to match if (kind == RegistryValueKind.Unknown) { // set the kind based on value if (value != null) { kind = GetValueKindFromObject(value); } else { // if no value and unknown kind, then default to empty string kind = RegistryValueKind.String; } } value = ConvertValueToKind(value, kind); } key.SetValue(propertyNameToSet, value, kind); if (writeResult) { // Now write out the value object newValue = key.GetValue(propertyNameToSet); WriteWrappedPropertyObject(newValue, propertyName, path); } } /// /// Helper to wrap property values when sent to the pipeline into an PSObject; /// it adds the name of the property as a note. /// /// The property to be written. /// Name of the property being written. /// The path of the item being written. private void WriteWrappedPropertyObject(object value, string propertyName, string path) { PSObject result = new PSObject(); string propertyNameToAdd = propertyName; if (string.IsNullOrEmpty(propertyName)) { propertyNameToAdd = LocalizedDefaultToken; } result.Properties.Add(new PSNoteProperty(propertyNameToAdd, value)); WritePropertyObject(result, path); } /// /// Uses LanguagePrimitives.ConvertTo to convert the value to the type that is appropriate /// for the specified RegistryValueKind. /// /// /// The value to convert. /// /// /// The RegistryValueKind type to convert the value to. /// /// /// The converted value. /// private static object ConvertValueToKind(object value, RegistryValueKind kind) { switch (kind) { case RegistryValueKind.Binary: value = (value != null) ? (byte[])LanguagePrimitives.ConvertTo( value, typeof(byte[]), CultureInfo.CurrentCulture) : Array.Empty(); break; case RegistryValueKind.DWord: { if (value != null) { try { value = (int)LanguagePrimitives.ConvertTo(value, typeof(int), CultureInfo.CurrentCulture); } catch (PSInvalidCastException) { value = (UInt32)LanguagePrimitives.ConvertTo(value, typeof(UInt32), CultureInfo.CurrentCulture); } } else { value = 0; } } break; case RegistryValueKind.ExpandString: value = (value != null) ? (string)LanguagePrimitives.ConvertTo( value, typeof(string), CultureInfo.CurrentCulture) : string.Empty; break; case RegistryValueKind.MultiString: value = (value != null) ? (string[])LanguagePrimitives.ConvertTo( value, typeof(string[]), CultureInfo.CurrentCulture) : Array.Empty(); break; case RegistryValueKind.QWord: { if (value != null) { try { value = (long)LanguagePrimitives.ConvertTo(value, typeof(long), CultureInfo.CurrentCulture); } catch (PSInvalidCastException) { value = (UInt64)LanguagePrimitives.ConvertTo(value, typeof(UInt64), CultureInfo.CurrentCulture); } } else { value = 0; } } break; case RegistryValueKind.String: value = (value != null) ? (string)LanguagePrimitives.ConvertTo( value, typeof(string), CultureInfo.CurrentCulture) : string.Empty; break; // If kind is Unknown then just leave the value as-is. } return value; } /// /// Helper to infer the RegistryValueKind from an object. /// /// Object whose RegistryValueKind has to be determined. /// Corresponding RegistryValueKind. private static RegistryValueKind GetValueKindFromObject(object value) { if (value == null) { throw PSTraceSource.NewArgumentNullException(nameof(value)); } RegistryValueKind result = RegistryValueKind.Unknown; Type valueType = value.GetType(); if (valueType == typeof(byte[])) { result = RegistryValueKind.Binary; } else if (valueType == typeof(int)) { result = RegistryValueKind.DWord; } if (valueType == typeof(string)) { result = RegistryValueKind.String; } if (valueType == typeof(string[])) { result = RegistryValueKind.MultiString; } if (valueType == typeof(long)) { result = RegistryValueKind.QWord; } return result; } /// /// Helper to get RegistryValueKind for a Property. /// /// RegistryKey containing property. /// Property for which RegistryValueKind is requested. /// RegistryValueKind of the property. If the property does not exit,returns RegistryValueKind.Unknown. private static RegistryValueKind GetValueKindForProperty(IRegistryWrapper key, string valueName) { try { return key.GetValueKind(valueName); } catch (System.ArgumentException) { // RegistryKey that contains the specified value does not exist } catch (System.IO.IOException) { } catch (System.Security.SecurityException) { } catch (System.UnauthorizedAccessException) { } return RegistryValueKind.Unknown; } /// /// Helper to read back an existing registry key value. /// /// Key to read the value from. /// Name of the value to read. /// Value of the key, null if it could not retrieve /// it because known exceptions were thrown, else an exception is percolated up /// private static object ReadExistingKeyValue(IRegistryWrapper key, string valueName) { try { // Since SetValue can munge the data to a specified // type (RegistryValueKind), retrieve the value again // to output it in the correct form to the user. return key.GetValue(valueName, null, RegistryValueOptions.DoNotExpandEnvironmentNames); } catch (System.IO.IOException) { } catch (System.Security.SecurityException) { } catch (System.UnauthorizedAccessException) { } return null; } /// /// Wraps a registry item in a PSObject and sets the TreatAs to /// Microsoft.Win32.RegistryKey. This way values will be presented /// in the same format as keys. /// /// /// The registry key to be written out. /// /// /// The path to the item being written out. /// private void WriteRegistryItemObject( IRegistryWrapper key, string path) { if (key == null) { Dbg.Diagnostics.Assert( key != null, "The RegistryProvider should never attempt to write out a null value"); // Don't error, but don't write out anything either. return; } // Escape any wildcard characters in the path path = EscapeSpecialChars(path); // Wrap the key in an PSObject PSObject outputObject = PSObject.AsPSObject(key.RegistryKey); // Add the registry values to the PSObject string[] valueNames = key.GetValueNames(); for (int index = 0; index < valueNames.Length; ++index) { if (string.IsNullOrEmpty(valueNames[index])) { // The first unnamed value becomes the default value valueNames[index] = LocalizedDefaultToken; break; } } outputObject.AddOrSetProperty("Property", valueNames); WriteItemObject(outputObject, path, true); } /// /// Takes a string and tries to parse it into a RegistryValueKind enum /// type. /// If the conversion fails, WriteError() is called. /// /// /// The type as specified by the user that should be parsed into a RegistryValueKind enum. /// /// Output for the RegistryValueKind for the string. /// /// true if the conversion succeeded /// private bool ParseKind(string type, out RegistryValueKind kind) { kind = RegistryValueKind.Unknown; if (string.IsNullOrEmpty(type)) { return true; } bool success = true; Exception innerException = null; try { // Convert the parameter to a RegistryValueKind kind = (RegistryValueKind)Enum.Parse(typeof(RegistryValueKind), type, true); } catch (InvalidCastException invalidCast) { innerException = invalidCast; } catch (ArgumentException argException) { innerException = argException; } if (innerException != null) { success = false; string formatString = RegistryProviderStrings.TypeParameterBindingFailure; Exception e = new ArgumentException( string.Format( CultureInfo.CurrentCulture, formatString, type, typeof(RegistryValueKind).FullName), innerException); WriteError(new ErrorRecord( e, e.GetType().FullName, ErrorCategory.InvalidArgument, type)); } return success; } /// /// Gets the default value name token from the resource. /// In English that token is "(default)" without the quotes. /// /// /// This should not be localized as it will break scripts. /// /// /// A string containing the default value name. /// private static string LocalizedDefaultToken => "(default)"; /// /// Converts an empty or null userEnteredPropertyName to the localized /// string for the default property name. /// /// /// The property name to convert. /// /// /// If userEnteredPropertyName is null or empty, the localized default /// property name is returned, else the userEnteredPropertyName is returned. /// private string GetPropertyName(string userEnteredPropertyName) { string result = userEnteredPropertyName; if (!string.IsNullOrEmpty(userEnteredPropertyName)) { var stringComparer = Host.CurrentCulture.CompareInfo; if (stringComparer.Compare( userEnteredPropertyName, LocalizedDefaultToken, CompareOptions.IgnoreCase) == 0) { result = null; } } return result; } #endregion Private members } /// /// Defines dynamic parameters for the registry provider. /// public class RegistryProviderSetItemDynamicParameter { /// /// Gets or sets the Type parameter as a dynamic parameter for /// the registry provider's SetItem method. /// /// /// The only acceptable values for this parameter are those found /// in the RegistryValueKind enum /// [Parameter(ValueFromPipelineByPropertyName = true)] public RegistryValueKind Type { get; set; } = RegistryValueKind.Unknown; } } #endif // !UNIX