File size: 32,480 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#region Using directives
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Management.Automation;
using System.Net;
using System.Text;
using Microsoft.Management.Infrastructure.Options;
#endregion
namespace Microsoft.Management.Infrastructure.CimCmdlets
{
#region Parameter Set Resolving Classes
/// <summary>
/// <para>
/// Define class <c>ParameterDefinitionEntry</c>.
/// </para>
/// </summary>
internal class ParameterDefinitionEntry
{
/// <summary>
/// Initializes a new instance of the <see cref="ParameterDefinitionEntry"/> class.
/// </summary>
/// <param name="parameterSetName"></param>
/// <param name="mandatory"></param>
internal ParameterDefinitionEntry(string parameterSetName, bool mandatory)
{
this.IsMandatory = mandatory;
this.ParameterSetName = parameterSetName;
}
/// <summary>
/// Property ParameterSetName.
/// </summary>
internal string ParameterSetName { get; }
/// <summary>
/// Whether the parameter is mandatory to the set.
/// </summary>
internal bool IsMandatory { get; }
}
/// <summary>
/// <para>
/// Define class <c>ParameterSetEntry</c>.
/// </para>
/// </summary>
internal class ParameterSetEntry
{
/// <summary>
/// Initializes a new instance of the <see cref="ParameterSetEntry"/> class.
/// </summary>
/// <param name="mandatoryParameterCount"></param>
internal ParameterSetEntry(uint mandatoryParameterCount)
{
this.MandatoryParameterCount = mandatoryParameterCount;
this.IsDefaultParameterSet = false;
reset();
}
/// <summary>
/// Initializes a new instance of the <see cref="ParameterSetEntry"/> class.
/// </summary>
/// <param name="toClone"></param>
internal ParameterSetEntry(ParameterSetEntry toClone)
{
this.MandatoryParameterCount = toClone.MandatoryParameterCount;
this.IsDefaultParameterSet = toClone.IsDefaultParameterSet;
reset();
}
/// <summary>
/// Initializes a new instance of the <see cref="ParameterSetEntry"/> class.
/// </summary>
/// <param name="mandatoryParameterCount"></param>
/// <param name="mandatory"></param>
internal ParameterSetEntry(uint mandatoryParameterCount, bool isDefault)
{
this.MandatoryParameterCount = mandatoryParameterCount;
this.IsDefaultParameterSet = isDefault;
reset();
}
/// <summary>
/// Reset the internal status.
/// </summary>
internal void reset()
{
this.SetMandatoryParameterCount = this.SetMandatoryParameterCountAtBeginProcess;
this.IsValueSet = this.IsValueSetAtBeginProcess;
}
/// <summary>
/// Property <c>DefaultParameterSet</c>
/// </summary>
internal bool IsDefaultParameterSet { get; }
/// <summary>
/// Property <c>MandatoryParameterCount</c>
/// </summary>
internal uint MandatoryParameterCount { get; } = 0;
/// <summary>
/// Property <c>IsValueSet</c>
/// </summary>
internal bool IsValueSet { get; set; }
/// <summary>
/// Property <c>IsValueSetAtBeginProcess</c>
/// </summary>
internal bool IsValueSetAtBeginProcess { get; set; }
/// <summary>
/// Property <c>SetMandatoryParameterCount</c>
/// </summary>
internal uint SetMandatoryParameterCount { get; set; } = 0;
/// <summary>
/// Property <c>SetMandatoryParameterCountAtBeginProcess</c>
/// </summary>
internal uint SetMandatoryParameterCountAtBeginProcess { get; set; } = 0;
}
/// <summary>
/// Define class <c>ParameterBinder</c>.
/// </summary>
internal class ParameterBinder
{
/// <summary>
/// Initializes a new instance of the <see cref="ParameterBinder"/> class.
/// </summary>
/// <param name="parameters"></param>
/// <param name="sets"></param>
internal ParameterBinder(
Dictionary<string, HashSet<ParameterDefinitionEntry>> parameters,
Dictionary<string, ParameterSetEntry> sets)
{
this.CloneParameterEntries(parameters, sets);
}
#region Two dictionaries used to determine the bound parameter set
/// <summary>
/// Define the parameter definition entries,
/// each parameter may belong a set of parameterSets, each parameter set
/// are defined by a <seealso cref="ParameterDefinitionEntry"/>.
/// </summary>
private Dictionary<string, HashSet<ParameterDefinitionEntry>> parameterDefinitionEntries;
/// <summary>
/// <para>
/// Define parameter set entries,
/// each cmdlet has a list of parameter set, each has number of mandatory parameters, etc.
/// This data structure is used to track the number of mandatory parameter has been set for
/// current parameterset, whether the parameter set was been set by user.
/// </para>
/// </summary>
private Dictionary<string, ParameterSetEntry> parameterSetEntries;
#endregion
/// <summary>
/// <para>
/// Used to remember the set of parameterset were set
/// if any conflict occurred with current parameter,
/// throw exception
/// </para>
/// </summary>
private List<string> parametersetNamesList = new();
/// <summary>
/// Parameter names list.
/// </summary>
private readonly List<string> parameterNamesList = new();
/// <summary>
/// <para>
/// Used to remember the set of parameterset were set before begin process
/// if any conflict occurred with current parameter,
/// throw exception
/// </para>
/// </summary>
private List<string> parametersetNamesListAtBeginProcess = new();
/// <summary>
/// Parameter names list before begin process.
/// </summary>
private readonly List<string> parameterNamesListAtBeginProcess = new();
/// <summary>
/// <para>
/// Reset the status of parameter set entries
/// </para>
/// </summary>
internal void reset()
{
foreach (KeyValuePair<string, ParameterSetEntry> setEntry in parameterSetEntries)
{
setEntry.Value.reset();
}
this.parametersetNamesList.Clear();
foreach (string parametersetName in this.parametersetNamesListAtBeginProcess)
{
this.parametersetNamesList.Add(parametersetName);
}
this.parameterNamesList.Clear();
foreach (string parameterName in this.parameterNamesListAtBeginProcess)
{
this.parameterNamesList.Add(parameterName);
}
}
/// <summary>
/// <para>
/// A given parameter's value was set by cmdlet caller,
/// check and change the status of parameter set,
/// throw exception if confliction occurred
/// </para>
/// </summary>
/// <param name="parameterName"></param>
/// <exception cref="PSArgumentException">Throw if conflict parameter was set.</exception>
internal void SetParameter(string parameterName, bool isBeginProcess)
{
DebugHelper.WriteLogEx("ParameterName = {0}, isBeginProcess = {1}", 0, parameterName, isBeginProcess);
if (this.parameterNamesList.Contains(parameterName))
{
DebugHelper.WriteLogEx("ParameterName {0} is already bound ", 1, parameterName);
return;
}
else
{
this.parameterNamesList.Add(parameterName);
if (isBeginProcess)
{
this.parameterNamesListAtBeginProcess.Add(parameterName);
}
}
if (this.parametersetNamesList.Count == 0)
{
List<string> nameset = new();
foreach (ParameterDefinitionEntry parameterDefinitionEntry in this.parameterDefinitionEntries[parameterName])
{
DebugHelper.WriteLogEx("parameterset name = '{0}'; mandatory = '{1}'", 1, parameterDefinitionEntry.ParameterSetName, parameterDefinitionEntry.IsMandatory);
ParameterSetEntry psEntry = this.parameterSetEntries[parameterDefinitionEntry.ParameterSetName];
if (psEntry == null)
continue;
if (parameterDefinitionEntry.IsMandatory)
{
psEntry.SetMandatoryParameterCount++;
if (isBeginProcess)
{
psEntry.SetMandatoryParameterCountAtBeginProcess++;
}
DebugHelper.WriteLogEx("parameterset name = '{0}'; SetMandatoryParameterCount = '{1}'", 1, parameterDefinitionEntry.ParameterSetName, psEntry.SetMandatoryParameterCount);
}
if (!psEntry.IsValueSet)
{
psEntry.IsValueSet = true;
if (isBeginProcess)
{
psEntry.IsValueSetAtBeginProcess = true;
}
}
nameset.Add(parameterDefinitionEntry.ParameterSetName);
}
this.parametersetNamesList = nameset;
if (isBeginProcess)
{
this.parametersetNamesListAtBeginProcess = nameset;
}
}
else
{
List<string> nameset = new();
foreach (ParameterDefinitionEntry entry in this.parameterDefinitionEntries[parameterName])
{
if (this.parametersetNamesList.Contains(entry.ParameterSetName))
{
nameset.Add(entry.ParameterSetName);
if (entry.IsMandatory)
{
ParameterSetEntry psEntry = this.parameterSetEntries[entry.ParameterSetName];
psEntry.SetMandatoryParameterCount++;
if (isBeginProcess)
{
psEntry.SetMandatoryParameterCountAtBeginProcess++;
}
DebugHelper.WriteLogEx("parameterset name = '{0}'; SetMandatoryParameterCount = '{1}'",
1,
entry.ParameterSetName,
psEntry.SetMandatoryParameterCount);
}
}
}
if (nameset.Count == 0)
{
throw new PSArgumentException(CimCmdletStrings.UnableToResolveParameterSetName);
}
else
{
this.parametersetNamesList = nameset;
if (isBeginProcess)
{
this.parametersetNamesListAtBeginProcess = nameset;
}
}
}
}
/// <summary>
/// Get the parameter set name based on current binding results.
/// </summary>
/// <returns></returns>
internal string GetParameterSet()
{
DebugHelper.WriteLogEx();
string boundParameterSetName = null;
string defaultParameterSetName = null;
List<string> noMandatoryParameterSet = new();
// Looking for parameter set which have mandatory parameters
foreach (string parameterSetName in this.parameterSetEntries.Keys)
{
ParameterSetEntry entry = this.parameterSetEntries[parameterSetName];
DebugHelper.WriteLogEx(
"parameterset name = {0}, {1}/{2} mandatory parameters.",
1,
parameterSetName,
entry.SetMandatoryParameterCount,
entry.MandatoryParameterCount);
// Ignore the parameter set which has no mandatory parameter firstly
if (entry.MandatoryParameterCount == 0)
{
if (entry.IsDefaultParameterSet)
{
defaultParameterSetName = parameterSetName;
}
if (entry.IsValueSet)
{
noMandatoryParameterSet.Add(parameterSetName);
}
continue;
}
if ((entry.SetMandatoryParameterCount == entry.MandatoryParameterCount) &&
this.parametersetNamesList.Contains(parameterSetName))
{
if (boundParameterSetName != null)
{
throw new PSArgumentException(CimCmdletStrings.UnableToResolveParameterSetName);
}
boundParameterSetName = parameterSetName;
}
}
// Looking for parameter set which has no mandatory parameters
if (boundParameterSetName == null)
{
// throw if there are > 1 parameter set
if (noMandatoryParameterSet.Count > 1)
{
throw new PSArgumentException(CimCmdletStrings.UnableToResolveParameterSetName);
}
else if (noMandatoryParameterSet.Count == 1)
{
boundParameterSetName = noMandatoryParameterSet[0];
}
}
// Looking for default parameter set
boundParameterSetName ??= defaultParameterSetName;
// throw if still can not find the parameter set name
if (boundParameterSetName == null)
{
throw new PSArgumentException(CimCmdletStrings.UnableToResolveParameterSetName);
}
return boundParameterSetName;
}
/// <summary>
/// Deep clone the parameter entries to member variable.
/// </summary>
private void CloneParameterEntries(
Dictionary<string, HashSet<ParameterDefinitionEntry>> parameters,
Dictionary<string, ParameterSetEntry> sets)
{
this.parameterDefinitionEntries = parameters;
this.parameterSetEntries = new Dictionary<string, ParameterSetEntry>();
foreach (KeyValuePair<string, ParameterSetEntry> parameterSet in sets)
{
this.parameterSetEntries.Add(parameterSet.Key, new ParameterSetEntry(parameterSet.Value));
}
}
}
#endregion
/// <summary>
/// Base command for all cim cmdlets.
/// </summary>
public class CimBaseCommand : Cmdlet, IDisposable
{
#region resolve parameter set name
/// <summary>
/// <para>
/// Check set parameters and set ParameterSetName
/// </para>
/// <para>
/// Following are special types to be handled
/// Microsoft.Management.Infrastructure.Options.PacketEncoding
/// Microsoft.Management.Infrastructure.Options.ImpersonationType
/// UInt32
/// Authentication.None (default value)?
/// ProxyType.None
/// </para>
/// </summary>
internal void CheckParameterSet()
{
if (this.parameterBinder != null)
{
try
{
this.ParameterSetName = this.parameterBinder.GetParameterSet();
}
finally
{
this.parameterBinder.reset();
}
}
DebugHelper.WriteLog("current parameterset is: " + this.ParameterSetName, 4);
}
/// <summary>
/// Redirect to parameterBinder to set one parameter.
/// </summary>
/// <param name="parameterName"></param>
internal void SetParameter(object value, string parameterName)
{
// Ignore the null value being set,
// Null value could be set by caller unintentionally,
// or by powershell to reset the parameter to default value
// before the next parameter binding, and ProcessRecord call
if (value == null)
{
return;
}
this.parameterBinder?.SetParameter(parameterName, this.AtBeginProcess);
}
#endregion
#region constructors
/// <summary>
/// Initializes a new instance of the <see cref="CimBaseCommand"/> class.
/// </summary>
internal CimBaseCommand()
{
this.disposed = false;
this.parameterBinder = null;
}
/// <summary>
/// Initializes a new instance of the <see cref="CimBaseCommand"/> class.
/// </summary>
internal CimBaseCommand(Dictionary<string, HashSet<ParameterDefinitionEntry>> parameters,
Dictionary<string, ParameterSetEntry> sets)
{
this.disposed = false;
this.parameterBinder = new ParameterBinder(parameters, sets);
}
#endregion
#region override functions of Cmdlet
/// <summary>
/// StopProcessing method.
/// </summary>
protected override void StopProcessing()
{
Dispose();
}
#endregion
#region IDisposable interface
/// <summary>
/// IDisposable interface.
/// </summary>
private bool disposed;
/// <summary>
/// <para>
/// Dispose() calls Dispose(true).
/// Implement IDisposable. Do not make this method virtual.
/// A derived class should not be able to override this method.
/// </para>
/// </summary>
public void Dispose()
{
Dispose(true);
// This object will be cleaned up by the Dispose method.
// Therefore, you should call GC.SuppressFinalize to
// take this object off the finalization queue
// and prevent finalization code for this object
// from executing a second time.
GC.SuppressFinalize(this);
}
/// <summary>
/// <para>
/// Dispose(bool disposing) executes in two distinct scenarios.
/// If disposing equals true, the method has been called directly
/// or indirectly by a user's code. Managed and unmanaged resources
/// can be disposed.
/// If disposing equals false, the method has been called by the
/// runtime from inside the finalizer and you should not reference
/// other objects. Only unmanaged resources can be disposed.
/// </para>
/// </summary>
/// <param name="disposing">Whether it is directly called.</param>
protected void Dispose(bool disposing)
{
// Check to see if Dispose has already been called.
if (!this.disposed)
{
// If disposing equals true, dispose all managed
// and unmanaged resources.
if (disposing)
{
DisposeInternal();
}
// Call the appropriate methods to clean up
// unmanaged resources here.
// If disposing is false,
// only the following code is executed.
// Note disposing has been done.
disposed = true;
}
}
/// <summary>
/// Clean up resources.
/// </summary>
protected virtual void DisposeInternal()
{
// Dispose managed resources.
this.operation?.Dispose();
}
#endregion
#region private members
/// <summary>
/// Parameter binder used to resolve parameter set name.
/// </summary>
private readonly ParameterBinder parameterBinder;
/// <summary>
/// <para>
/// Async operation handler
/// </para>
/// </summary>
private CimAsyncOperation operation;
/// <summary>
/// Lock object.
/// </summary>
private readonly object myLock = new();
/// <summary>
/// This flag is introduced to resolve the parameter set name
/// during process record
/// Whether at begin process time, false means in processrecord.
/// </summary>
private bool atBeginProcess = true;
internal bool AtBeginProcess
{
get
{
return this.atBeginProcess;
}
set
{
this.atBeginProcess = value;
}
}
#endregion
#region internal properties
/// <summary>
/// <para>
/// Set <see cref="CimAsyncOperation"/> object, to which
/// current cmdlet will delegate all operations.
/// </para>
/// </summary>
internal CimAsyncOperation AsyncOperation
{
get
{
return this.operation;
}
set
{
lock (this.myLock)
{
Debug.Assert(this.operation == null, "Caller should verify that operation is null");
this.operation = value;
}
}
}
/// <summary>
/// <para>
/// Get current ParameterSetName of the cmdlet
/// </para>
/// </summary>
internal string ParameterSetName { get; private set; }
/// <summary>
/// Gets/Sets cmdlet operation wrapper object.
/// </summary>
internal virtual CmdletOperationBase CmdletOperation
{
get;
set;
}
/// <summary>
/// <para>
/// Throw terminating error
/// </para>
/// </summary>
[System.Diagnostics.CodeAnalysis.DoesNotReturn]
internal void ThrowTerminatingError(Exception exception, string operation)
{
ErrorRecord errorRecord = new(exception, operation, ErrorCategory.InvalidOperation, this);
this.CmdletOperation.ThrowTerminatingError(errorRecord);
}
#endregion
#region internal const strings
/// <summary>
/// Alias CN - computer name.
/// </summary>
internal const string AliasCN = "CN";
/// <summary>
/// Alias ServerName - computer name.
/// </summary>
internal const string AliasServerName = "ServerName";
/// <summary>
/// Alias OT - operation timeout.
/// </summary>
internal const string AliasOT = "OT";
/// <summary>
/// Session set name.
/// </summary>
internal const string SessionSetName = "SessionSet";
/// <summary>
/// Computer set name.
/// </summary>
internal const string ComputerSetName = "ComputerSet";
/// <summary>
/// Class name computer set name.
/// </summary>
internal const string ClassNameComputerSet = "ClassNameComputerSet";
/// <summary>
/// Resource Uri computer set name.
/// </summary>
internal const string ResourceUriComputerSet = "ResourceUriComputerSet";
/// <summary>
/// <see cref="CimInstance"/> computer set name.
/// </summary>
internal const string CimInstanceComputerSet = "CimInstanceComputerSet";
/// <summary>
/// Query computer set name.
/// </summary>
internal const string QueryComputerSet = "QueryComputerSet";
/// <summary>
/// Class name session set name.
/// </summary>
internal const string ClassNameSessionSet = "ClassNameSessionSet";
/// <summary>
/// Resource Uri session set name.
/// </summary>
internal const string ResourceUriSessionSet = "ResourceUriSessionSet";
/// <summary>
/// <see cref="CimInstance"/> session set name.
/// </summary>
internal const string CimInstanceSessionSet = "CimInstanceSessionSet";
/// <summary>
/// Query session set name.
/// </summary>
internal const string QuerySessionSet = "QuerySessionSet";
/// <summary>
/// <see cref="CimClass"/> computer set name.
/// </summary>
internal const string CimClassComputerSet = "CimClassComputerSet";
/// <summary>
/// <see cref="CimClass"/> session set name.
/// </summary>
internal const string CimClassSessionSet = "CimClassSessionSet";
#region Session related parameter set name
internal const string ComputerNameSet = "ComputerNameSet";
internal const string SessionIdSet = "SessionIdSet";
internal const string InstanceIdSet = "InstanceIdSet";
internal const string NameSet = "NameSet";
internal const string CimSessionSet = "CimSessionSet";
internal const string WSManParameterSet = "WSManParameterSet";
internal const string DcomParameterSet = "DcomParameterSet";
internal const string ProtocolNameParameterSet = "ProtocolTypeSet";
#endregion
#region register cimindication parameter set name
internal const string QueryExpressionSessionSet = "QueryExpressionSessionSet";
internal const string QueryExpressionComputerSet = "QueryExpressionComputerSet";
#endregion
/// <summary>
/// Credential parameter set.
/// </summary>
internal const string CredentialParameterSet = "CredentialParameterSet";
/// <summary>
/// Certificate parameter set.
/// </summary>
internal const string CertificateParameterSet = "CertificateParameterSet";
/// <summary>
/// CimInstance parameter alias.
/// </summary>
internal const string AliasCimInstance = "CimInstance";
#endregion
#region internal helper function
/// <summary>
/// <para>
/// Throw invalid AuthenticationType
/// </para>
/// </summary>
/// <param name="operationName"></param>
/// <param name="parameterName"></param>
/// <param name="authentication"></param>
internal void ThrowInvalidAuthenticationTypeError(
string operationName,
string parameterName,
PasswordAuthenticationMechanism authentication)
{
string message = string.Format(CultureInfo.CurrentUICulture, CimCmdletStrings.InvalidAuthenticationTypeWithNullCredential,
authentication,
ImpersonatedAuthenticationMechanism.None,
ImpersonatedAuthenticationMechanism.Negotiate,
ImpersonatedAuthenticationMechanism.Kerberos,
ImpersonatedAuthenticationMechanism.NtlmDomain);
PSArgumentOutOfRangeException exception = new(
parameterName, authentication, message);
ThrowTerminatingError(exception, operationName);
}
/// <summary>
/// Throw conflict parameter error.
/// </summary>
/// <param name="operationName"></param>
/// <param name="parameterName"></param>
/// <param name="conflictParameterName"></param>
internal void ThrowConflictParameterWasSet(
string operationName,
string parameterName,
string conflictParameterName)
{
string message = string.Format(CultureInfo.CurrentUICulture,
CimCmdletStrings.ConflictParameterWasSet,
parameterName, conflictParameterName);
PSArgumentException exception = new(message, parameterName);
ThrowTerminatingError(exception, operationName);
}
/// <summary>
/// <para>
/// Throw not found property error
/// </para>
/// </summary>
internal void ThrowInvalidProperty(
IEnumerable<string> propertiesList,
string className,
string parameterName,
string operationName,
IDictionary actualValue)
{
StringBuilder propList = new();
foreach (string property in propertiesList)
{
if (propList.Length > 0)
{
propList.Append(',');
}
propList.Append(property);
}
string message = string.Format(CultureInfo.CurrentUICulture, CimCmdletStrings.CouldNotFindPropertyFromGivenClass,
className, propList);
PSArgumentOutOfRangeException exception = new(
parameterName, actualValue, message);
ThrowTerminatingError(exception, operationName);
}
/// <summary>
/// Create credentials based on given authentication type and PSCredential.
/// </summary>
/// <param name="psCredentials"></param>
/// <param name="passwordAuthentication"></param>
/// <returns></returns>
internal CimCredential CreateCimCredentials(PSCredential psCredentials,
PasswordAuthenticationMechanism passwordAuthentication,
string operationName,
string parameterName)
{
DebugHelper.WriteLogEx("PSCredential:{0}; PasswordAuthenticationMechanism:{1}; operationName:{2}; parameterName:{3}.", 0, psCredentials, passwordAuthentication, operationName, parameterName);
CimCredential credentials = null;
if (psCredentials != null)
{
NetworkCredential networkCredential = psCredentials.GetNetworkCredential();
DebugHelper.WriteLog("Domain:{0}; UserName:{1}; Password:{2}.", 1, networkCredential.Domain, networkCredential.UserName, psCredentials.Password);
credentials = new CimCredential(passwordAuthentication, networkCredential.Domain, networkCredential.UserName, psCredentials.Password);
}
else
{
ImpersonatedAuthenticationMechanism impersonatedAuthentication;
switch (passwordAuthentication)
{
case PasswordAuthenticationMechanism.Default:
impersonatedAuthentication = ImpersonatedAuthenticationMechanism.None;
break;
case PasswordAuthenticationMechanism.Negotiate:
impersonatedAuthentication = ImpersonatedAuthenticationMechanism.Negotiate;
break;
case PasswordAuthenticationMechanism.Kerberos:
impersonatedAuthentication = ImpersonatedAuthenticationMechanism.Kerberos;
break;
case PasswordAuthenticationMechanism.NtlmDomain:
impersonatedAuthentication = ImpersonatedAuthenticationMechanism.NtlmDomain;
break;
default:
ThrowInvalidAuthenticationTypeError(operationName, parameterName, passwordAuthentication);
return null;
}
credentials = new CimCredential(impersonatedAuthentication);
}
DebugHelper.WriteLogEx("return credential {0}", 1, credentials);
return credentials;
}
#endregion
}
}
|