bin/projects/dbatools/dbatools/Connection/ManagementConnection.cs
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 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 |
using System;
using System.Collections.Generic; using System.Management.Automation; using Microsoft.Management.Infrastructure; using Microsoft.Management.Infrastructure.Options; namespace Sqlcollaborative.Dbatools.Connection { /// <summary> /// Contains management connection information for a windows server /// </summary> [Serializable] public class ManagementConnection { /// <summary> /// The computer to connect to /// </summary> public string ComputerName { get; set; } #region Configuration /// <summary> /// Locally disables the caching of bad credentials /// </summary> public bool DisableBadCredentialCache { get { switch (_disableBadCredentialCache) { case -1: return false; case 1: return true; default: return ConnectionHost.DisableBadCredentialCache; } } set { _disableBadCredentialCache = value ? 1 : -1; } } private int _disableBadCredentialCache; /// <summary> /// Locally disables the caching of working credentials /// </summary> public bool DisableCredentialAutoRegister { get { switch (_disableCredentialAutoRegister) { case -1: return false; case 1: return true; default: return ConnectionHost.DisableCredentialAutoRegister; } } set { _disableCredentialAutoRegister = value ? 1 : -1; } } private int _disableCredentialAutoRegister; /// <summary> /// Locally overrides explicit credentials with working ones that were cached /// </summary> public bool OverrideExplicitCredential { get { switch (_overrideExplicitCredential) { case -1: return false; case 1: return true; default: return ConnectionHost.OverrideExplicitCredential; } } set { _overrideExplicitCredential = value ? 1 : -1; } } private int _overrideExplicitCredential; /// <summary> /// Locally enables automatic failover to working credentials, when passed credentials either are known, or turn out to not work. /// </summary> public bool EnableCredentialFailover { get { switch (_enableCredentialFailover) { case -1: return false; case 1: return true; default: return ConnectionHost.EnableCredentialFailover; } } set { _enableCredentialFailover = value ? 1 : -1; } } private int _enableCredentialFailover; /// <summary> /// Locally disables the persistence of Cim sessions used to connect to a target system. /// </summary> public bool DisableCimPersistence { get { switch (_disableCimPersistence) { case -1: return false; case 1: return true; default: return ConnectionHost.DisableCimPersistence; } } set { _disableCimPersistence = value ? 1 : -1; } } private int _disableCimPersistence; /// <summary> /// Connectiontypes that will never be used /// </summary> public ManagementConnectionType DisabledConnectionTypes { get { ManagementConnectionType temp = ManagementConnectionType.None; if (CimRM == ManagementConnectionProtocolState.Disabled) { temp = temp | ManagementConnectionType.CimRM; } if (CimDCOM == ManagementConnectionProtocolState.Disabled) { temp = temp | ManagementConnectionType.CimDCOM; } if (Wmi == ManagementConnectionProtocolState.Disabled) { temp = temp | ManagementConnectionType.Wmi; } if (PowerShellRemoting == ManagementConnectionProtocolState.Disabled) { temp = temp | ManagementConnectionType.PowerShellRemoting; } return temp; } set { if ((value & ManagementConnectionType.CimRM) != 0) { CimRM = ManagementConnectionProtocolState.Disabled; } else if ((CimRM & ManagementConnectionProtocolState.Disabled) != 0) { CimRM = ManagementConnectionProtocolState.Unknown; } if ((value & ManagementConnectionType.CimDCOM) != 0) { CimDCOM = ManagementConnectionProtocolState.Disabled; } else if ((CimDCOM & ManagementConnectionProtocolState.Disabled) != 0) { CimDCOM = ManagementConnectionProtocolState.Unknown; } if ((value & ManagementConnectionType.Wmi) != 0) { Wmi = ManagementConnectionProtocolState.Disabled; } else if ((Wmi & ManagementConnectionProtocolState.Disabled) != 0) { Wmi = ManagementConnectionProtocolState.Unknown; } if ((value & ManagementConnectionType.PowerShellRemoting) != 0) { PowerShellRemoting = ManagementConnectionProtocolState.Disabled; } else if ((PowerShellRemoting & ManagementConnectionProtocolState.Disabled) != 0) { PowerShellRemoting = ManagementConnectionProtocolState.Unknown; } } } /// <summary> /// Restores all deviations from public policy back to default /// </summary> public void RestoreDefaultConfiguration() { _disableBadCredentialCache = 0; _disableCredentialAutoRegister = 0; _overrideExplicitCredential = 0; _disableCimPersistence = 0; _enableCredentialFailover = 0; OverrideConnectionPolicy = false; } #endregion Configuration #region Connection Stats /// <summary> /// Whether this connection adhers to the global connection lockdowns or not /// </summary> public bool OverrideConnectionPolicy = false; /// <summary> /// Did the last connection attempt using CimRM work? /// </summary> public ManagementConnectionProtocolState CimRM { get { if (!OverrideConnectionPolicy && ConnectionHost.DisableConnectionCimRM) return ManagementConnectionProtocolState.Disabled; else return _CimRM; } set { _CimRM = value; } } private ManagementConnectionProtocolState _CimRM = ManagementConnectionProtocolState.Unknown; /// <summary> /// When was the last connection attempt using CimRM? /// </summary> public DateTime LastCimRM; /// <summary> /// Did the last connection attempt using CimDCOM work? /// </summary> public ManagementConnectionProtocolState CimDCOM { get { if (!OverrideConnectionPolicy && ConnectionHost.DisableConnectionCimDCOM) return ManagementConnectionProtocolState.Disabled; else return _CimDCOM; } set { _CimDCOM = value; } } private ManagementConnectionProtocolState _CimDCOM = ManagementConnectionProtocolState.Unknown; /// <summary> /// When was the last connection attempt using CimRM? /// </summary> public DateTime LastCimDCOM; /// <summary> /// Did the last connection attempt using Wmi work? /// </summary> public ManagementConnectionProtocolState Wmi { get { if (!OverrideConnectionPolicy && ConnectionHost.DisableConnectionWMI) return ManagementConnectionProtocolState.Disabled; else return _Wmi; } set { _Wmi = value; } } private ManagementConnectionProtocolState _Wmi = ManagementConnectionProtocolState.Unknown; /// <summary> /// When was the last connection attempt using CimRM? /// </summary> public DateTime LastWmi; /// <summary> /// Did the last connection attempt using PowerShellRemoting work? /// </summary> public ManagementConnectionProtocolState PowerShellRemoting { get { if (!OverrideConnectionPolicy && ConnectionHost.DisableConnectionPowerShellRemoting) return ManagementConnectionProtocolState.Disabled; else return _PowerShellRemoting; } set { _PowerShellRemoting = value; } } private ManagementConnectionProtocolState _PowerShellRemoting = ManagementConnectionProtocolState.Unknown; /// <summary> /// When was the last connection attempt using CimRM? /// </summary> public DateTime LastPowerShellRemoting; /// <summary> /// Report the successful connection against the computer of this connection /// </summary> /// <param name="Type">What connection type succeeded?</param> public void ReportSuccess(ManagementConnectionType Type) { switch (Type) { case ManagementConnectionType.CimRM: CimRM = ManagementConnectionProtocolState.Success; LastCimRM = DateTime.Now; break; case ManagementConnectionType.CimDCOM: CimDCOM = ManagementConnectionProtocolState.Success; LastCimDCOM = DateTime.Now; break; case ManagementConnectionType.Wmi: Wmi = ManagementConnectionProtocolState.Success; LastWmi = DateTime.Now; break; case ManagementConnectionType.PowerShellRemoting: PowerShellRemoting = ManagementConnectionProtocolState.Success; LastPowerShellRemoting = DateTime.Now; break; } } /// <summary> /// Report the failure of connecting to the target computer /// </summary> /// <param name="Type">What connection type failed?</param> public void ReportFailure(ManagementConnectionType Type) { switch (Type) { case ManagementConnectionType.CimRM: CimRM = ManagementConnectionProtocolState.Error; LastCimRM = DateTime.Now; break; case ManagementConnectionType.CimDCOM: CimDCOM = ManagementConnectionProtocolState.Error; LastCimDCOM = DateTime.Now; break; case ManagementConnectionType.Wmi: Wmi = ManagementConnectionProtocolState.Error; LastWmi = DateTime.Now; break; case ManagementConnectionType.PowerShellRemoting: PowerShellRemoting = ManagementConnectionProtocolState.Error; LastPowerShellRemoting = DateTime.Now; break; } } #endregion Connection Stats #region Credential Management /// <summary> /// Any registered credentials to use on the connection. /// </summary> public PSCredential Credentials; /// <summary> /// Whether the default windows credentials are known to not work against the target. /// </summary> public bool WindowsCredentialsAreBad; /// <summary> /// Whether windows credentials are known to be good. Do not build conditions on them being false, just on true. /// </summary> public bool UseWindowsCredentials; /// <summary> /// Credentials known to not work. They will not be used when specified. /// </summary> public List<PSCredential> KnownBadCredentials = new List<PSCredential>(); /// <summary> /// Adds a credentials object to the list of credentials known to not work. /// </summary> /// <param name="Credential">The bad credential that must be punished</param> public void AddBadCredential(PSCredential Credential) { if (DisableBadCredentialCache) return; if (Credential == null) { WindowsCredentialsAreBad = true; UseWindowsCredentials = false; return; } // If previously good credentials have been revoked, better remove them from the list if ((Credentials != null) && (Credentials.UserName.ToLower() == Credential.UserName.ToLower())) { if (Credentials.GetNetworkCredential().Password == Credential.GetNetworkCredential().Password) Credentials = null; } foreach (PSCredential cred in KnownBadCredentials) { if (cred.UserName.ToLower() == Credential.UserName.ToLower()) { if (cred.GetNetworkCredential().Password == Credential.GetNetworkCredential().Password) return; } } KnownBadCredentials.Add(Credential); } /// <summary> /// Reports a credentials object as being legit. /// </summary> /// <param name="Credential">The functioning credential that we may want to use again</param> public void AddGoodCredential(PSCredential Credential) { if (!DisableCredentialAutoRegister) { Credentials = Credential; if (Credential == null) { UseWindowsCredentials = true; } } } /// <summary> /// Calculates, which credentials to use. Will consider input, compare it with know not-working credentials or use the configured working credentials for that. /// </summary> /// <param name="Credential">Any credential object a user may have explicitly specified.</param> /// <returns>The Credentials to use</returns> public PSCredential GetCredential(PSCredential Credential) { // If nothing was bound, return whatever is available // If something was bound, however explicit override is in effect AND either we have a good credential OR know Windows Credentials are good to use, use the cached credential // Without the additional logic conditions, OverrideExplicitCredential would override all input, even if we haven't found a working credential yet. if (OverrideExplicitCredential && (UseWindowsCredentials || (Credentials != null))) { return Credentials; } // Handle Windows authentication if (Credential == null) { if (WindowsCredentialsAreBad) { if (EnableCredentialFailover && (Credentials != null)) return Credentials; throw new PSArgumentException("Windows authentication was used, but is known to not work!", "Credential"); } return null; } // Compare with bad credential cache if (!DisableBadCredentialCache) { foreach (PSCredential cred in KnownBadCredentials) { if (cred.UserName.ToLower() == Credential.UserName.ToLower()) { if (cred.GetNetworkCredential().Password == Credential.GetNetworkCredential().Password) { if (EnableCredentialFailover) { if ((Credentials != null) || !WindowsCredentialsAreBad) return Credentials; throw new PSArgumentException( "Specified credentials are known to not work! Credential failover is enabled but there are no known working credentials.", "Credential"); } throw new PSArgumentException("Specified credentials are known to not work!", "Credential"); } } } } // Return unknown credential, so it may be tried out return Credential; } /// <summary> /// Tests whether the input credential is on the list known, bad credentials /// </summary> /// <param name="Credential">The credential to test</param> /// <returns>True if the credential is known to not work, False if it is not yet known to not work</returns> public bool IsBadCredential(PSCredential Credential) { if (Credential == null) { return WindowsCredentialsAreBad; } foreach (PSCredential cred in KnownBadCredentials) { if (cred.UserName.ToLower() == Credential.UserName.ToLower()) { if (cred.GetNetworkCredential().Password == Credential.GetNetworkCredential().Password) return true; } } return false; } /// <summary> /// Removes an item from the list of known bad credentials /// </summary> /// <param name="Credential">The credential to remove</param> public void RemoveBadCredential(PSCredential Credential) { if (Credential == null) { return; } foreach (PSCredential cred in KnownBadCredentials) { if (cred.UserName.ToLower() == Credential.UserName.ToLower()) { if (cred.GetNetworkCredential().Password == Credential.GetNetworkCredential().Password) { KnownBadCredentials.Remove(cred); } } } } #endregion Credential Management #region Connection Types /// <summary> /// Returns the next connection type to try. /// </summary> /// <param name="ExcludedTypes">Exclude any type already tried and failed</param> /// <param name="Force">Overrides the timeout on bad connections</param> /// <returns>The next type to try.</returns> public ManagementConnectionType GetConnectionType(ManagementConnectionType ExcludedTypes, bool Force) { ManagementConnectionType temp = ExcludedTypes | DisabledConnectionTypes; #region Use working connections first if (((ManagementConnectionType.CimRM & temp) == 0) && ((CimRM & ManagementConnectionProtocolState.Success) != 0)) return ManagementConnectionType.CimRM; if (((ManagementConnectionType.CimDCOM & temp) == 0) && ((CimDCOM & ManagementConnectionProtocolState.Success) != 0)) return ManagementConnectionType.CimDCOM; if (((ManagementConnectionType.Wmi & temp) == 0) && ((Wmi & ManagementConnectionProtocolState.Success) != 0)) return ManagementConnectionType.Wmi; if (((ManagementConnectionType.PowerShellRemoting & temp) == 0) && ((PowerShellRemoting & ManagementConnectionProtocolState.Success) != 0)) return ManagementConnectionType.PowerShellRemoting; #endregion Use working connections first #region Then prefer unknown connections if (((ManagementConnectionType.CimRM & temp) == 0) && ((CimRM & ManagementConnectionProtocolState.Unknown) != 0)) return ManagementConnectionType.CimRM; if (((ManagementConnectionType.CimDCOM & temp) == 0) && ((CimDCOM & ManagementConnectionProtocolState.Unknown) != 0)) return ManagementConnectionType.CimDCOM; if (((ManagementConnectionType.Wmi & temp) == 0) && ((Wmi & ManagementConnectionProtocolState.Unknown) != 0)) return ManagementConnectionType.Wmi; if (((ManagementConnectionType.PowerShellRemoting & temp) == 0) && ((PowerShellRemoting & ManagementConnectionProtocolState.Unknown) != 0)) return ManagementConnectionType.PowerShellRemoting; #endregion Then prefer unknown connections #region Finally try what would not work previously if (((ManagementConnectionType.CimRM & temp) == 0) && ((CimRM & ManagementConnectionProtocolState.Error) != 0) && ((LastCimRM + ConnectionHost.BadConnectionTimeout < DateTime.Now) | Force)) return ManagementConnectionType.CimRM; if (((ManagementConnectionType.CimDCOM & temp) == 0) && ((CimDCOM & ManagementConnectionProtocolState.Error) != 0) && ((LastCimDCOM + ConnectionHost.BadConnectionTimeout < DateTime.Now) | Force)) return ManagementConnectionType.CimDCOM; if (((ManagementConnectionType.Wmi & temp) == 0) && ((Wmi & ManagementConnectionProtocolState.Error) != 0) && ((LastWmi + ConnectionHost.BadConnectionTimeout < DateTime.Now) | Force)) return ManagementConnectionType.Wmi; if (((ManagementConnectionType.PowerShellRemoting & temp) == 0) && ((PowerShellRemoting & ManagementConnectionProtocolState.Error) != 0) && ((LastPowerShellRemoting + ConnectionHost.BadConnectionTimeout < DateTime.Now) | Force)) return ManagementConnectionType.PowerShellRemoting; #endregion Finally try what would not work previously // Do not try to use disabled protocols throw new PSInvalidOperationException("No connectiontypes left to try."); } /// <summary> /// Returns a list of all available connection types whose inherent timeout has expired. /// </summary> /// <param name="Timestamp">All last connection failures older than this point in time are considered to be expired</param> /// <returns>A list of all valid connection types</returns> public List<ManagementConnectionType> GetConnectionTypesTimed(DateTime Timestamp) { List<ManagementConnectionType> types = new List<ManagementConnectionType>(); if (((DisabledConnectionTypes & ManagementConnectionType.CimRM) == 0) && ((CimRM == ManagementConnectionProtocolState.Success) || (LastCimRM < Timestamp))) types.Add(ManagementConnectionType.CimRM); if (((DisabledConnectionTypes & ManagementConnectionType.CimDCOM) == 0) && ((CimDCOM == ManagementConnectionProtocolState.Success) || (LastCimDCOM < Timestamp))) types.Add(ManagementConnectionType.CimDCOM); if (((DisabledConnectionTypes & ManagementConnectionType.Wmi) == 0) && ((Wmi == ManagementConnectionProtocolState.Success) || (LastWmi < Timestamp))) types.Add(ManagementConnectionType.Wmi); if (((DisabledConnectionTypes & ManagementConnectionType.PowerShellRemoting) == 0) && ((PowerShellRemoting == ManagementConnectionProtocolState.Success) || (LastPowerShellRemoting < Timestamp))) types.Add(ManagementConnectionType.PowerShellRemoting); return types; } /// <summary> /// Returns a list of all available connection types whose inherent timeout has expired. /// </summary> /// <param name="Timespan">All last connection failures older than this far back into the past are considered to be expired</param> /// <returns>A list of all valid connection types</returns> public List<ManagementConnectionType> GetConnectionTypesTimed(TimeSpan Timespan) { return GetConnectionTypesTimed(DateTime.Now - Timespan); } #endregion Connection Types #region Internals internal void CopyTo(ManagementConnection Connection) { Connection.ComputerName = ComputerName; Connection.CimRM = CimRM; Connection.LastCimRM = LastCimRM; Connection.CimDCOM = CimDCOM; Connection.LastCimDCOM = LastCimDCOM; Connection.Wmi = Wmi; Connection.LastWmi = LastWmi; Connection.PowerShellRemoting = PowerShellRemoting; Connection.LastPowerShellRemoting = LastPowerShellRemoting; Connection.Credentials = Credentials; Connection.OverrideExplicitCredential = OverrideExplicitCredential; Connection.KnownBadCredentials = KnownBadCredentials; Connection.WindowsCredentialsAreBad = WindowsCredentialsAreBad; } #endregion Internals #region Constructors /// <summary> /// Creates a new, empty connection object. Necessary for serialization. /// </summary> public ManagementConnection() { } /// <summary> /// Creates a new default connection object, containing only its computer's name and default results. /// </summary> /// <param name="ComputerName">The computer targeted. Will be forced to lowercase.</param> public ManagementConnection(string ComputerName) { this.ComputerName = ComputerName.ToLower(); if (Utility.Validation.IsLocalhost(ComputerName)) CimRM = ManagementConnectionProtocolState.Disabled; } #endregion Constructors #region CIM Execution #region WinRM /// <summary> /// The options ot use when establishing a CIM Session /// </summary> public WSManSessionOptions CimWinRMOptions { get { if (_CimWinRMOptions == null) { return null; } return new WSManSessionOptions(_CimWinRMOptions); } set { cimWinRMSession = null; _CimWinRMOptions = value; } } private WSManSessionOptions _CimWinRMOptions; private CimSession cimWinRMSession; private PSCredential cimWinRMSessionLastCredential; private CimSession GetCimWinRMSession(PSCredential Credential) { // Prepare the last session if any CimSession tempSession = cimWinRMSession; // If we use different credentials than last time, now's the time to interrupt if (!(cimWinRMSessionLastCredential == null && Credential == null)) { if (cimWinRMSessionLastCredential == null || Credential == null) tempSession = null; else if (cimWinRMSessionLastCredential.UserName != Credential.UserName) tempSession = null; else if (cimWinRMSessionLastCredential.GetNetworkCredential().Password != Credential.GetNetworkCredential().Password) tempSession = null; } if (tempSession == null) { WSManSessionOptions options; if (CimWinRMOptions == null) { options = GetDefaultCimWsmanOptions(); } else { options = CimWinRMOptions; } if (Credential != null) { options.AddDestinationCredentials(new CimCredential(PasswordAuthenticationMechanism.Default, Credential.GetNetworkCredential().Domain, Credential.GetNetworkCredential().UserName, Credential.Password)); } try { tempSession = CimSession.Create(ComputerName, options); } catch (Exception e) { bool testBadCredential = false; try { string tempMessageId = ((CimException) (e.InnerException)).MessageId; if (tempMessageId == "HRESULT 0x8007052e") testBadCredential = true; else if (tempMessageId == "HRESULT 0x80070005") testBadCredential = true; } catch { } if (testBadCredential) { throw new UnauthorizedAccessException("Invalid credentials!", e); } throw; } cimWinRMSessionLastCredential = Credential; } return tempSession; } /// <summary> /// Returns the default wsman options object /// </summary> /// <returns>Something very default-y</returns> private WSManSessionOptions GetDefaultCimWsmanOptions() { WSManSessionOptions options = new WSManSessionOptions(); options.DestinationPort = 0; options.MaxEnvelopeSize = 0; options.CertCACheck = true; options.CertCNCheck = true; options.CertRevocationCheck = true; options.UseSsl = false; options.PacketEncoding = PacketEncoding.Utf8; options.NoEncryption = false; options.EncodePortInServicePrincipalName = false; return options; } /// <summary> /// Get all cim instances of the appropriate class using WinRM /// </summary> /// <param name="Credential">The credentiuls to use for the connection.</param> /// <param name="Class">The class to query.</param> /// <param name="Namespace">The namespace to look in (defaults to root\cimv2).</param> /// <returns>Hopefully a mountainload of CimInstances</returns> public object GetCimRMInstance(PSCredential Credential, string Class, string Namespace = @"root\cimv2") { CimSession tempSession; IEnumerable<CimInstance> result; tempSession = GetCimWinRMSession(Credential); result = tempSession.EnumerateInstances(Namespace, Class); if (DisableCimPersistence) { try { tempSession.Close(); } catch { } cimWinRMSession = null; } else { cimWinRMSession = tempSession; } return result; } /// <summary> /// Get all cim instances matching the query using WinRM /// </summary> /// <param name="Credential">The credentiuls to use for the connection.</param> /// <param name="Query">The query to use requesting information.</param> /// <param name="Dialect">Defaults to WQL.</param> /// <param name="Namespace">The namespace to look in (defaults to root\cimv2).</param> /// <returns></returns> public object QueryCimRMInstance(PSCredential Credential, string Query, string Dialect = "WQL", string Namespace = @"root\cimv2") { CimSession tempSession; IEnumerable<CimInstance> result = new List<CimInstance>(); try { tempSession = GetCimWinRMSession(Credential); result = tempSession.QueryInstances(Namespace, Dialect, Query); result.GetEnumerator().MoveNext(); } catch (Exception e) { bool testBadCredential = false; try { string tempMessageId = ((CimException) e).MessageId; if (tempMessageId == "HRESULT 0x8007052e") testBadCredential = true; else if (tempMessageId == "HRESULT 0x80070005") testBadCredential = true; } catch { } if (testBadCredential) { throw new UnauthorizedAccessException("Invalid credentials!", e); } throw; } if (DisableCimPersistence) { try { tempSession.Close(); } catch { } cimWinRMSession = null; } else { if (cimWinRMSession != tempSession) cimWinRMSession = tempSession; } return result; } #endregion WinRM #region DCOM /// <summary> /// The options ot use when establishing a CIM Session /// </summary> public DComSessionOptions CimDComOptions { get { if (_CimDComOptions == null) { return null; } DComSessionOptions options = new DComSessionOptions(); options.PacketPrivacy = _CimDComOptions.PacketPrivacy; options.PacketIntegrity = _CimDComOptions.PacketIntegrity; options.Impersonation = _CimDComOptions.Impersonation; return options; } set { _CimDComOptions = null; _CimDComOptions = value; } } private DComSessionOptions _CimDComOptions; private CimSession cimDComSession; private PSCredential cimDComSessionLastCredential; private CimSession GetCimDComSession(PSCredential Credential) { // Prepare the last session if any CimSession tempSession = cimDComSession; // If we use different credentials than last time, now's the time to interrupt if (!(cimDComSessionLastCredential == null && Credential == null)) { if (cimDComSessionLastCredential == null || Credential == null) tempSession = null; else if (cimDComSessionLastCredential.UserName != Credential.UserName) tempSession = null; else if (cimDComSessionLastCredential.GetNetworkCredential().Password != Credential.GetNetworkCredential().Password) tempSession = null; } if (tempSession == null) { DComSessionOptions options = null; if (CimWinRMOptions == null) { options = GetDefaultCimDcomOptions(); } else { options = CimDComOptions; } if (Credential != null) { options.AddDestinationCredentials(new CimCredential(PasswordAuthenticationMechanism.Default, Credential.GetNetworkCredential().Domain, Credential.GetNetworkCredential().UserName, Credential.Password)); } try { tempSession = CimSession.Create(ComputerName, options); } catch (Exception e) { bool testBadCredential = false; try { string tempMessageId = ((CimException) (e.InnerException)).MessageId; if (tempMessageId == "HRESULT 0x8007052e") testBadCredential = true; else if (tempMessageId == "HRESULT 0x80070005") testBadCredential = true; } catch { } if (testBadCredential) { throw new UnauthorizedAccessException("Invalid credentials!", e); } throw; } cimDComSessionLastCredential = Credential; } return tempSession; } /// <summary> /// Returns the default DCom options object /// </summary> /// <returns>Something very default-y</returns> private DComSessionOptions GetDefaultCimDcomOptions() { DComSessionOptions options = new DComSessionOptions(); options.PacketPrivacy = true; options.PacketIntegrity = true; options.Impersonation = ImpersonationType.Impersonate; return options; } /// <summary> /// Get all cim instances of the appropriate class using DCOM /// </summary> /// <param name="Credential">The credentiuls to use for the connection.</param> /// <param name="Class">The class to query</param> /// <param name="Namespace">The namespace to look in (defaults to root\cimv2)</param> /// <returns>Hopefully a mountainload of CimInstances</returns> public object GetCimDComInstance(PSCredential Credential, string Class, string Namespace = @"root\cimv2") { CimSession tempSession; IEnumerable<CimInstance> result = new List<CimInstance>(); tempSession = GetCimDComSession(Credential); result = tempSession.EnumerateInstances(Namespace, Class); if (DisableCimPersistence) { try { tempSession.Close(); } catch { } cimDComSession = null; } else { if (cimDComSession != tempSession) cimDComSession = tempSession; } return result; } /// <summary> /// Get all cim instances matching the query using DCOM /// </summary> /// <param name="Credential">The credentiuls to use for the connection.</param> /// <param name="Query">The query to use requesting information.</param> /// <param name="Dialect">Defaults to WQL.</param> /// <param name="Namespace">The namespace to look in (defaults to root\cimv2).</param> /// <returns></returns> public object QueryCimDCOMInstance(PSCredential Credential, string Query, string Dialect = "WQL", string Namespace = @"root\cimv2") { CimSession tempSession; IEnumerable<CimInstance> result = new List<CimInstance>(); tempSession = GetCimDComSession(Credential); result = tempSession.QueryInstances(Namespace, Dialect, Query); result.GetEnumerator().MoveNext(); if (DisableCimPersistence) { try { tempSession.Close(); } catch { } cimDComSession = null; } else { if (cimDComSession != tempSession) cimDComSession = tempSession; } return result; } #endregion DCOM #endregion CIM Execution /// <summary> /// Simple string representation /// </summary> /// <returns>Returns the computerName it is connection for</returns> public override string ToString() { return ComputerName; } } } |