///////////////////////////////////////////////////////////////////////////// // // Copyright (c) 1998-2002 Microsoft Corporation // // Module Name: // AclBase.cpp // // Description: // Implementation of the ISecurityInformation interface. This interface // is the new common security UI in NT 5.0. // // Author: // Galen Barbee (galenb) February 6, 1998 // From \nt\private\admin\snapin\filemgmt\permpage.cpp // by JonN // // Revision History: // // Notes: // ///////////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include #include "AclBase.h" #include "AclUtils.h" #include "resource.h" #include #include #include #include "CluAdmx.h" ///////////////////////////////////////////////////////////////////////////// // CSecurityInformation ///////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////// //++ // // CSecurityInformation::CSecurityInformation // // Routine Description: // ctor // // Arguments: // none. // // Return Value: // none. // //-- ///////////////////////////////////////////////////////////////////////////// CSecurityInformation::CSecurityInformation( void ) : m_pShareMap( NULL ), m_dwFlags( 0 ), m_nDefAccess( 0 ), m_psiAccess( NULL ), m_pObjectPicker( NULL ), m_cRef( 1 ) { m_nLocalSIDErrorMessageID = 0; } //*** CSecurityInformation::CSecurityInformation() ///////////////////////////////////////////////////////////////////////////// //++ // // CSecurityInformation::~CSecurityInformation // // Routine Description: // dtor // // Arguments: // none. // // Return Value: // none. // //-- ///////////////////////////////////////////////////////////////////////////// CSecurityInformation::~CSecurityInformation( void ) { if ( m_pObjectPicker != NULL ) { m_pObjectPicker->Release(); m_pObjectPicker = NULL; } // if: } //*** CSecurityInformation::CSecurityInformation() ///////////////////////////////////////////////////////////////////////////// //++ // // CSecurityInformation::MapGeneric // // Routine Description: // Maps specific rights to generic rights // // Arguments: // pguidObjectType [IN] // pAceFlags [IN] // pMask [OUT] // // Return Value: // S_OK // //-- ///////////////////////////////////////////////////////////////////////////// STDMETHODIMP CSecurityInformation::MapGeneric( IN const GUID *, //pguidObjectType, IN UCHAR *, //pAceFlags, OUT ACCESS_MASK *pMask ) { ASSERT( pMask != NULL ); ASSERT( m_pShareMap != NULL ); AFX_MANAGE_STATE( AfxGetStaticModuleState() ); ::MapGenericMask( pMask, m_pShareMap ); return S_OK; } //*** CSecurityInformation::MapGeneric() ///////////////////////////////////////////////////////////////////////////// //++ // // CSecurityInformation::GetInheritTypes // // Routine Description: // // // Arguments: // None. // // Return Value: // E_NOTIMPL // //-- ///////////////////////////////////////////////////////////////////////////// STDMETHODIMP CSecurityInformation::GetInheritTypes( PSI_INHERIT_TYPE *, //ppInheritTypes, ULONG * //pcInheritTypes ) { ASSERT( FALSE ); AFX_MANAGE_STATE( AfxGetStaticModuleState() ); return E_NOTIMPL; } //*** CSecurityInformation::GetInheritTypes() ///////////////////////////////////////////////////////////////////////////// //++ // // CSecurityInformation::PropertySheetPageCallback // // Routine Description: // This method is called by the ACL editor when something interesting // happens. // // Arguments: // hwnd [IN] ACL editor window (currently NULL) // uMsg [IN] reason for call back // uPage [IN] kind of page we are dealing with // // Return Value: // S_OK. Want to keep everything movin' along // //-- ///////////////////////////////////////////////////////////////////////////// STDMETHODIMP CSecurityInformation::PropertySheetPageCallback( IN HWND hwnd, IN UINT uMsg, IN SI_PAGE_TYPE uPage ) { AFX_MANAGE_STATE( AfxGetStaticModuleState() ); return S_OK; } //*** CSecurityInformation::PropertySheetPageCallback() ///////////////////////////////////////////////////////////////////////////// //++ // // CSecurityInformation::GetObjectInformation // // Routine Description: // // // Arguments: // pObjectInfo [IN OUT] // // Return Value: // S_OK. Want to keep everything movin' along // //-- ///////////////////////////////////////////////////////////////////////////// STDMETHODIMP CSecurityInformation::GetObjectInformation( IN OUT PSI_OBJECT_INFO pObjectInfo ) { ASSERT( pObjectInfo != NULL && !IsBadWritePtr( pObjectInfo, sizeof( *pObjectInfo ) ) ); ASSERT( !m_strServer.IsEmpty() ); ASSERT( m_dwFlags != 0 ); AFX_MANAGE_STATE( AfxGetStaticModuleState() ); pObjectInfo->dwFlags = m_dwFlags; // SI_EDIT_PERMS | SI_NO_ACL_PROTECT; pObjectInfo->hInstance = AfxGetInstanceHandle(); pObjectInfo->pszServerName = (LPTSTR)(LPCTSTR) m_strServer; // pObjectInfo->pszObjectName = /* pObjectInfo->dwUgopServer = UGOP_BUILTIN_GROUPS //| UGOP_USERS //| UGOP_COMPUTERS //| UGOP_WELL_KNOWN_PRINCIPALS_USERS //| UGOP_GLOBAL_GROUPS //| UGOP_USER_WORLD //| UGOP_USER_AUTHENTICATED_USER //| UGOP_USER_ANONYMOUS //| UGOP_USER_DIALUP //| UGOP_USER_NETWORK //| UGOP_USER_BATCH //| UGOP_USER_INTERACTIVE | UGOP_USER_SERVICE | UGOP_USER_SYSTEM | UGOP_LOCAL_GROUPS //| UGOP_UNIVERSAL_GROUPS //| UGOP_UNIVERSAL_GROUPS_SE //| UGOP_ACCOUNT_GROUPS //| UGOP_ACCOUNT_GROUPS_SE //| UGOP_RESOURCE_GROUPS //| UGOP_RESOURCE_GROUPS_SE ; pObjectInfo->dwUgopOther = ( NT5_UGOP_FLAGS | NT4_UGOP_FLAGS ) &~ UGOP_COMPUTERS; */ return S_OK; } //*** CSecurityInformation::GetObjectInformation() ///////////////////////////////////////////////////////////////////////////// //++ // // CSecurityInformation::SetSecurity // // Routine Description: // ISecurityInformation is giving back the edited security descriptor // and we need to validate it. A valid SD is one that doesn't contain // any local SIDs. // // Arguments: // SecurityInformation [IN] // pSecurityDescriptor [IN OUT] // // Return Value: // E_FAIL for error and S_OK for success and S_FALSE for SD no good. // //-- ///////////////////////////////////////////////////////////////////////////// STDMETHODIMP CSecurityInformation::SetSecurity( IN SECURITY_INFORMATION SecurityInformation, IN PSECURITY_DESCRIPTOR pSecurityDescriptor ) { ASSERT( m_nLocalSIDErrorMessageID != 0 ); AFX_MANAGE_STATE( ::AfxGetStaticModuleState() ); HRESULT hr = S_OK; BOOL bFound = FALSE; hr = HrLocalAccountsInSD( pSecurityDescriptor, &bFound ); if ( SUCCEEDED( hr ) ) { if ( bFound ) { CString strMsg; strMsg.LoadString( m_nLocalSIDErrorMessageID ); AfxMessageBox( strMsg, MB_OK | MB_ICONSTOP ); hr = S_FALSE; // if there are local accounts then return S_FALSE to keep AclUi alive. } } else { CString strMsg; CString strMsgIdFmt; CString strMsgId; CString strErrorMsg; strMsg.LoadString( IDS_ERROR_VALIDATING_CLUSTER_SECURITY_DESCRIPTOR ); FormatError( strErrorMsg, hr ); strMsgIdFmt.LoadString( IDS_ERROR_MSG_ID ); strMsgId.Format( strMsgIdFmt, hr, hr); strMsg.Format( _T("%s\n\n%s%s"), strMsg, strErrorMsg, strMsgId ); AfxMessageBox( strMsg ); hr = S_FALSE; // return S_FALSE to keep AclUi alive. } return hr; } //*** CSecurityInformation::SetSecurity() ///////////////////////////////////////////////////////////////////////////// //++ // // CSecurityInformation::GetAccessRights // // Routine Description: // Return the access rights that you want the user to be able to set. // // Arguments: // pguidObjectType [IN] // dwFlags [IN] // ppAccess [OUT] // pcAccesses [OUT] // piDefaultAccess [OUT] // // Return Value: // S_OK. Want to keep everything movin' along // //-- ///////////////////////////////////////////////////////////////////////////// STDMETHODIMP CSecurityInformation::GetAccessRights( IN const GUID * pguidObjectType, IN DWORD dwFlags, OUT PSI_ACCESS * ppAccess, OUT ULONG * pcAccesses, OUT ULONG * piDefaultAccess ) { ASSERT( ppAccess != NULL ); ASSERT( pcAccesses != NULL ); ASSERT( piDefaultAccess != NULL ); ASSERT( m_psiAccess != NULL ); ASSERT( m_nAccessElems > 0 ); AFX_MANAGE_STATE( AfxGetStaticModuleState() ); *ppAccess = m_psiAccess; *pcAccesses = m_nAccessElems; *piDefaultAccess = m_nDefAccess; return S_OK; } //*** CSecurityInformation::GetAccessRights() ///////////////////////////////////////////////////////////////////////////// //++ // // CSecurityInformation::Initialize // // Routine Description: // Initialize. // // Arguments: // pInitInfo [IN] - Info to use for initialization. // // Return Value: // S_OK if successful, or HRESULT error if not. // //-- ///////////////////////////////////////////////////////////////////////////// STDMETHODIMP CSecurityInformation::Initialize( IN PDSOP_INIT_INFO pInitInfo ) { HRESULT hr = S_OK; DSOP_INIT_INFO InitInfo; PDSOP_SCOPE_INIT_INFO pDSOPScopes = NULL; if ( m_pObjectPicker == NULL ) { hr = CoCreateInstance( CLSID_DsObjectPicker, NULL, CLSCTX_INPROC_SERVER, IID_IDsObjectPicker, (LPVOID *) &m_pObjectPicker ); } // if: if ( SUCCEEDED( hr ) ) { // // Make a local copy of the InitInfo so we can modify it safely // CopyMemory( &InitInfo, pInitInfo, min( pInitInfo->cbSize, sizeof( InitInfo ) ) ); // // Make a local copy of g_aDSOPScopes so we can modify it safely. // Note also that m_pObjectPicker->Initialize returns HRESULTs // in this buffer. // pDSOPScopes = (PDSOP_SCOPE_INIT_INFO) ::LocalAlloc( LPTR, sizeof( g_aDefaultScopes ) ); if (pDSOPScopes != NULL ) { CopyMemory( pDSOPScopes, g_aDefaultScopes, sizeof( g_aDefaultScopes ) ); // // Override the ACLUI default scopes, but don't touch // the other stuff. // // pDSOPScopes->pwzDcName = m_strServer; InitInfo.cDsScopeInfos = ARRAYSIZE( g_aDefaultScopes ); InitInfo.aDsScopeInfos = pDSOPScopes; InitInfo.pwzTargetComputer = m_strServer; hr = m_pObjectPicker->Initialize( &InitInfo ); ::LocalFree( pDSOPScopes ); } else { hr = HRESULT_FROM_WIN32( ::GetLastError() ); } // else: } // if: return hr; } //*** CSecurityInformation::Initialize() ///////////////////////////////////////////////////////////////////////////// //++ // // CSecurityInformation::InvokeDialog // // Routine Description: // Forward the InvokeDialog call into the contained object. // // Arguments: // hwndParent [IN] // ppdoSelection [IN] // // Return Value: // E_POINTER if m_pObjectPicker is NULL, or the return from // m_pObjectPicker->InvokeDialog(). // //-- ///////////////////////////////////////////////////////////////////////////// STDMETHODIMP CSecurityInformation::InvokeDialog( IN HWND hwndParent, IN IDataObject ** ppdoSelection ) { HRESULT hr = E_POINTER; if ( m_pObjectPicker != NULL ) { hr = m_pObjectPicker->InvokeDialog( hwndParent, ppdoSelection ); } // if: return hr; } //*** CSecurityInformation::InvokeDialog() // // It seems that you cannot resolve the problem with multiple definitions // between ntstatus.h and winnt.h/windows.h. // // The core issue is that STATUS_SUCCESS is defined n ntstatus.h and I have // been unable to figure the proper sequence of includes and defines that // will allow ntstatus.h to be included in an MFC app. // //#define WIN32_NO_STATUS //#include //#undef WIN32_NO_STATUS #define STATUS_SUCCESS 0L ///////////////////////////////////////////////////////////////////////////// //++ // // CSecurityInformation::BLocalAccountsInSD // // Routine Description: // Determines if any ACEs for local accounts are in DACL stored in // Security Descriptor (pSD) after the ACL editor has been called // // Arguments: // pSD [IN] - Security Descriptor to be checked. // // Return Value: // TRUE if at least one ACE was removed from the DACL, False otherwise. // //-- ///////////////////////////////////////////////////////////////////////////// HRESULT CSecurityInformation::HrLocalAccountsInSD( PSECURITY_DESCRIPTOR pSDIn , BOOL * pfFoundLocalOut ) { HRESULT hr = S_OK; PACL paclDACL = NULL; BOOL bHasDACL = FALSE; BOOL bDaclDefaulted = FALSE; BOOL bLocalAccountInACL = FALSE; BOOL fRet = FALSE; ACL_SIZE_INFORMATION asiAclSize; DWORD idxAce = 0L; ACCESS_ALLOWED_ACE * paaAce; DWORD sc = ERROR_SUCCESS; PSID pAdminSid = NULL; PSID pServiceSid = NULL; PSID pSystemSid = NULL; PSID pSID; SID_IDENTIFIER_AUTHORITY siaNtAuthority = SECURITY_NT_AUTHORITY; PSID LocalMachineSid = NULL; NTSTATUS nts = ERROR_SUCCESS; LSA_OBJECT_ATTRIBUTES lsaoa; LSA_UNICODE_STRING lsausSystemName; LSA_HANDLE lsah = NULL; PPOLICY_ACCOUNT_DOMAIN_INFO ppadi = NULL; BOOL fEqual; ASSERT( m_strServer.IsEmpty() == FALSE ); ZeroMemory( &lsaoa, sizeof( lsaoa ) ); fRet = IsValidSecurityDescriptor( pSDIn ); if ( fRet == FALSE ) { goto MakeHr; } // if: // // Create the well known Administrators group SID. // if ( AllocateAndInitializeSid( &siaNtAuthority, 2, SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_ADMINS, 0, 0, 0, 0, 0, 0, &pAdminSid ) == FALSE ) { goto MakeHr; } // if: // // Create the well known Local System account SID. // if ( AllocateAndInitializeSid( &siaNtAuthority, 1, SECURITY_LOCAL_SYSTEM_RID, 0, 0, 0, 0, 0, 0, 0, &pSystemSid ) == FALSE ) { goto MakeHr; } // if: // // Create the well known Local Service account SID. // if ( AllocateAndInitializeSid( &siaNtAuthority, 1, SECURITY_SERVICE_RID, 0, 0, 0, 0, 0, 0, 0, &pServiceSid ) == FALSE ) { goto MakeHr; } // if: // // Get the DACL from the passed in SD so that we can run down its ACEs... // fRet = GetSecurityDescriptorDacl( pSDIn, (LPBOOL) &bHasDACL, (PACL *) &paclDACL, (LPBOOL) &bDaclDefaulted ); if ( fRet == FALSE ) { goto MakeHr; } // if: ASSERT( paclDACL != NULL ); fRet = IsValidAcl( paclDACL ); if ( fRet == FALSE ) { goto MakeHr; } // if: // // Get the number of ACEs in the DACL. // fRet = GetAclInformation( paclDACL, &asiAclSize, sizeof( asiAclSize ), AclSizeInformation ); if ( fRet == FALSE ) { goto MakeHr; } // if: // // Open the policy object for the cluster. Meaning the node that is currently // hosting the cluster name. // lsausSystemName.Buffer = const_cast< PWSTR >( static_cast< LPCTSTR >( m_strServer ) ); lsausSystemName.Length = (USHORT)( m_strServer.GetLength() * sizeof( WCHAR ) ); lsausSystemName.MaximumLength = lsausSystemName.Length; nts = LsaOpenPolicy( &lsausSystemName, &lsaoa, POLICY_ALL_ACCESS, &lsah ); if ( nts != STATUS_SUCCESS ) { sc = LsaNtStatusToWinError( nts ); hr = HRESULT_FROM_WIN32( sc ); goto Cleanup; } // if: nts = LsaQueryInformationPolicy( lsah, PolicyAccountDomainInformation, (void **) &ppadi ); if ( nts != STATUS_SUCCESS ) { sc = LsaNtStatusToWinError( nts ); hr = HRESULT_FROM_WIN32( sc ); goto Cleanup; } // if: // // Search the ACL for local account ACEs // for ( idxAce = 0; idxAce < asiAclSize.AceCount; idxAce++ ) { if ( GetAce( paclDACL, idxAce, (LPVOID *) &paaAce ) == FALSE ) { goto MakeHr; } // if: // // Get the SID from the ACE. // pSID = &paaAce->SidStart; // // The local machine SIDs for the administrators group, local system, and local service are allowed. // if ( EqualSid( pSID, pAdminSid ) ) { continue; // allowed } // if: is this the local admin SID? else if ( EqualSid( pSID, pSystemSid ) ) { continue; // allowed } // else if: is this the local system SID? else if ( EqualSid( pSID, pServiceSid ) ) { continue; // allowed } // else if: is this the service SID? // // If the domains of these SIDs are equal then the SID is a local machine SID and is not allowed. // if ( EqualDomainSid( pSID, ppadi->DomainSid, &fEqual ) ) { if ( fEqual ) { bLocalAccountInACL = TRUE; break; } // if: } // if: } // for: hr = S_OK; goto Cleanup; MakeHr: sc = GetLastError(); hr = HRESULT_FROM_WIN32( sc ); goto Cleanup; Cleanup: if ( ppadi != NULL ) { LsaFreeMemory( ppadi ); } // if: if ( lsah != NULL ) { LsaClose( lsah ); } // if: if ( pAdminSid != NULL ) { FreeSid( pAdminSid ); } // if: if ( pServiceSid != NULL ) { FreeSid( pServiceSid ); } // if: if ( pSystemSid != NULL ) { FreeSid( pSystemSid ); } // if: if ( pfFoundLocalOut != NULL ) { *pfFoundLocalOut = bLocalAccountInACL; } // if: return hr; } //*** CSecurityInformation::HrBLocalAccountsInSD()