413 lines
11 KiB
C++
413 lines
11 KiB
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright(c) Microsoft Corporation
|
|
//
|
|
// pgauthen2k.cpp
|
|
// Implementation of CPgAuthentication -- property page to edit
|
|
// profile attributes related to Authenticaion
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
#include "stdafx.h"
|
|
#include <rrascfg.h>
|
|
#include "resource.h"
|
|
#include "PgAuthen2k.h"
|
|
#include "hlptable.h"
|
|
#include <htmlhelp.h>
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
#define NO_OLD_VALUE
|
|
|
|
// help path
|
|
// hh.exe <SystemRoot>\help\RRASconcepts.chm::/sag_RRAS-Ch1_44.htm
|
|
|
|
#define AUTHEN_WARNING_helppath "\\help\\RRASconcepts.chm::/sag_RRAS-Ch1_44.htm"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPgAuthentication2kMerge property page
|
|
|
|
IMPLEMENT_DYNCREATE(CPgAuthentication2kMerge, CPropertyPage)
|
|
|
|
CPgAuthentication2kMerge::CPgAuthentication2kMerge(CRASProfileMerge* profile)
|
|
: CManagedPage(CPgAuthentication2kMerge::IDD),
|
|
m_pProfile(profile)
|
|
{
|
|
//{{AFX_DATA_INIT(CPgAuthentication2kMerge)
|
|
m_bEAP = FALSE;
|
|
m_bMD5Chap = FALSE;
|
|
m_bMSChap = FALSE;
|
|
m_bPAP = FALSE;
|
|
m_strEapType = _T("");
|
|
m_bMSCHAP2 = FALSE;
|
|
m_bUNAUTH = FALSE;
|
|
//}}AFX_DATA_INIT
|
|
|
|
m_bEAP = (m_pProfile->m_dwArrayAuthenticationTypes.Find(RAS_AT_EAP)!= -1);
|
|
m_bMSChap = (m_pProfile->m_dwArrayAuthenticationTypes.Find(RAS_AT_MSCHAP) != -1);
|
|
m_bMD5Chap = (m_pProfile->m_dwArrayAuthenticationTypes.Find(RAS_AT_MD5CHAP) != -1);
|
|
m_bPAP = (m_pProfile->m_dwArrayAuthenticationTypes.Find(RAS_AT_PAP_SPAP) != -1);
|
|
m_bMSCHAP2 = (m_pProfile->m_dwArrayAuthenticationTypes.Find(RAS_AT_MSCHAP2) != -1);
|
|
m_bUNAUTH = (m_pProfile->m_dwArrayAuthenticationTypes.Find(RAS_AT_UNAUTHEN) != -1);
|
|
|
|
// orginal value before edit
|
|
m_bOrgEAP = m_bEAP;
|
|
m_bOrgMD5Chap = m_bMD5Chap;
|
|
m_bOrgMSChap = m_bMSChap;
|
|
m_bOrgPAP = m_bPAP;
|
|
m_bOrgMSCHAP2 = m_bMSCHAP2;
|
|
m_bOrgUNAUTH = m_bUNAUTH;
|
|
|
|
m_bAppliedEver = FALSE;
|
|
|
|
m_pBox = NULL;
|
|
|
|
SetHelpTable(g_aHelpIDs_IDD_AUTHENTICATION_MERGE);
|
|
|
|
m_bInited = false;
|
|
}
|
|
|
|
CPgAuthentication2kMerge::~CPgAuthentication2kMerge()
|
|
{
|
|
delete m_pBox;
|
|
|
|
// compare the setting with the original ones,
|
|
// if user turned on more authentication type,
|
|
// start help
|
|
if(
|
|
(!m_bOrgEAP && m_bEAP)
|
|
|| (!m_bOrgMD5Chap && m_bMD5Chap)
|
|
|| (!m_bOrgMSChap && m_bMSChap)
|
|
|| (!m_bOrgPAP && m_bPAP)
|
|
|| (!m_bOrgMSCHAP2 && m_bMSCHAP2)
|
|
|| (!m_bOrgUNAUTH && m_bUNAUTH))
|
|
{
|
|
if ( IDYES== AfxMessageBox(IDS_WARN_MORE_STEPS_FOR_AUTHEN, MB_YESNO))
|
|
HtmlHelpA(NULL, AUTHEN_WARNING_helppath, HH_DISPLAY_TOPIC, 0);
|
|
}
|
|
}
|
|
|
|
void CPgAuthentication2kMerge::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
ASSERT(m_pProfile);
|
|
CPropertyPage::DoDataExchange(pDX);
|
|
//{{AFX_DATA_MAP(CPgAuthentication2kMerge)
|
|
DDX_Check(pDX, IDC_CHECKEAP, m_bEAP);
|
|
DDX_Check(pDX, IDC_CHECKMD5CHAP, m_bMD5Chap);
|
|
DDX_Check(pDX, IDC_CHECKMSCHAP, m_bMSChap);
|
|
DDX_CBString(pDX, IDC_COMBOEAPTYPE, m_strEapType);
|
|
DDX_Check(pDX, IDC_CHECKMSCHAP2, m_bMSCHAP2);
|
|
DDX_Check(pDX, IDC_CHECKNOAUTHEN, m_bUNAUTH);
|
|
DDX_Check(pDX, IDC_CHECKPAP, m_bPAP);
|
|
//}}AFX_DATA_MAP
|
|
}
|
|
|
|
BEGIN_MESSAGE_MAP(CPgAuthentication2kMerge, CPropertyPage)
|
|
//{{AFX_MSG_MAP(CPgAuthentication2kMerge)
|
|
ON_BN_CLICKED(IDC_CHECKEAP, OnCheckeap)
|
|
ON_BN_CLICKED(IDC_CHECKMD5CHAP, OnCheckmd5chap)
|
|
ON_BN_CLICKED(IDC_CHECKMSCHAP, OnCheckmschap)
|
|
ON_BN_CLICKED(IDC_CHECKPAP, OnCheckpap)
|
|
ON_CBN_SELCHANGE(IDC_COMBOEAPTYPE, OnSelchangeComboeaptype)
|
|
ON_WM_CONTEXTMENU()
|
|
ON_WM_HELPINFO()
|
|
ON_BN_CLICKED(IDC_AUTH_CONFIG_EAP, OnAuthConfigEap)
|
|
ON_BN_CLICKED(IDC_CHECKMSCHAP2, OnCheckmschap2)
|
|
ON_BN_CLICKED(IDC_CHECKNOAUTHEN, OnChecknoauthen)
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPgAuthentication2kMerge message handlers
|
|
|
|
BOOL CPgAuthentication2kMerge::OnInitDialog()
|
|
{
|
|
BOOL bEnableConfig = FALSE;
|
|
|
|
CPropertyPage::OnInitDialog();
|
|
|
|
// the combobox for eap types
|
|
try
|
|
{
|
|
HRESULT hr = m_pProfile->GetEapTypeList(m_EapTypes, m_EapIds, m_EapTypeKeys, &m_EapInfoArray);
|
|
|
|
m_pBox = new CStrBox<CComboBox>(this, IDC_COMBOEAPTYPE, m_EapTypes);
|
|
|
|
if(m_pBox == NULL)
|
|
{
|
|
AfxMessageBox(IDS_OUTOFMEMORY);
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
if FAILED(hr)
|
|
ReportError(hr, IDS_ERR_EAPTYPELIST, NULL);
|
|
else
|
|
{
|
|
m_pBox->Fill();
|
|
GetDlgItem(IDC_COMBOEAPTYPE)->EnableWindow(m_bEAP);
|
|
}
|
|
}
|
|
catch(CMemoryException&)
|
|
{
|
|
AfxMessageBox(IDS_OUTOFMEMORY);
|
|
return TRUE;
|
|
}
|
|
|
|
// if there is a value selected from the list
|
|
if(m_EapIds.GetSize())
|
|
{
|
|
// find index in the list
|
|
int i = m_EapIds.Find(m_pProfile->m_dwEapType);
|
|
|
|
// if in the list, select it
|
|
if(i != -1)
|
|
{
|
|
m_pBox->Select(i);
|
|
bEnableConfig = !(m_EapInfoArray.ElementAt(i).m_stConfigCLSID.IsEmpty());
|
|
}
|
|
else
|
|
{
|
|
if(m_EapIds.GetSize())
|
|
m_pBox->Select(0);
|
|
}
|
|
}
|
|
|
|
GetDlgItem(IDC_AUTH_CONFIG_EAP)->EnableWindow(bEnableConfig);
|
|
|
|
m_bInited = true;
|
|
return TRUE; // return TRUE unless you set the focus to a control
|
|
// EXCEPTION: OCX Property Pages should return FALSE
|
|
}
|
|
|
|
void CPgAuthentication2kMerge::OnCheckeap()
|
|
{
|
|
BOOL b = ((CButton*)GetDlgItem(IDC_CHECKEAP))->GetCheck();
|
|
// enable / disable configure button based on if the type has config clsID
|
|
int i = m_pBox->GetSelected();
|
|
BOOL bEnableConfig;
|
|
|
|
if (i != -1)
|
|
{
|
|
bEnableConfig = !(m_EapInfoArray.ElementAt(i).m_stConfigCLSID.IsEmpty());
|
|
}
|
|
else
|
|
bEnableConfig = FALSE;
|
|
|
|
GetDlgItem(IDC_COMBOEAPTYPE)->EnableWindow(b);
|
|
GetDlgItem(IDC_AUTH_CONFIG_EAP)->EnableWindow(bEnableConfig);
|
|
|
|
SetModified();
|
|
}
|
|
|
|
void CPgAuthentication2kMerge::OnCheckmd5chap()
|
|
{
|
|
SetModified();
|
|
}
|
|
|
|
void CPgAuthentication2kMerge::OnCheckmschap()
|
|
{
|
|
SetModified();
|
|
}
|
|
|
|
void CPgAuthentication2kMerge::OnCheckmschap2()
|
|
{
|
|
SetModified();
|
|
}
|
|
|
|
void CPgAuthentication2kMerge::OnCheckpap()
|
|
{
|
|
// TODO: Add your control notification handler code here
|
|
SetModified();
|
|
}
|
|
|
|
void CPgAuthentication2kMerge::OnChecknoauthen()
|
|
{
|
|
// TODO: Add your control notification handler code here
|
|
|
|
SetModified();
|
|
}
|
|
|
|
void CPgAuthentication2kMerge::OnSelchangeComboeaptype()
|
|
{
|
|
// enable / disable configure button based on if the type has config clsID
|
|
int i = m_pBox->GetSelected();
|
|
BOOL bEnableConfig;
|
|
if (i != -1)
|
|
{
|
|
bEnableConfig = !(m_EapInfoArray.ElementAt(i).m_stConfigCLSID.IsEmpty());
|
|
}
|
|
else
|
|
bEnableConfig = FALSE;
|
|
|
|
GetDlgItem(IDC_AUTH_CONFIG_EAP)->EnableWindow(bEnableConfig);
|
|
|
|
if(m_bInited) SetModified();
|
|
}
|
|
|
|
BOOL CPgAuthentication2kMerge::TransferDataToProfile()
|
|
{
|
|
|
|
// clear the string in profile
|
|
m_pProfile->m_dwArrayAuthenticationTypes.DeleteAll();
|
|
|
|
if(m_bEAP || m_bMSChap || m_bMD5Chap || m_bPAP || m_bMSCHAP2 || m_bUNAUTH)
|
|
m_pProfile->m_dwAttributeFlags |= PABF_msNPAuthenticationType;
|
|
else
|
|
{
|
|
AfxMessageBox(IDS_DATAENTRY_AUTHENTICATIONTYPE);
|
|
return FALSE;
|
|
}
|
|
|
|
// EAP
|
|
if(m_bEAP)
|
|
{
|
|
m_pProfile->m_dwArrayAuthenticationTypes.Add(RAS_AT_EAP);
|
|
|
|
// get the EAP type
|
|
if (m_pBox->GetSelected() != -1)
|
|
{
|
|
m_pProfile->m_dwAttributeFlags |= PABF_msNPAllowedEapType;
|
|
m_pProfile->m_dwEapType = m_EapIds.GetAt(m_pBox->GetSelected());
|
|
m_pProfile->m_nEAPTypeKey = m_EapTypeKeys.GetAt(m_pBox->GetSelected());
|
|
}
|
|
else
|
|
{
|
|
GotoDlgCtrl( m_pBox->m_pBox );
|
|
AfxMessageBox(IDS_DATAENTRY_EAPTYPE);
|
|
return FALSE;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
m_pProfile->m_dwAttributeFlags &= ~PABF_msNPAllowedEapType;
|
|
m_pProfile->m_dwEapType = 0;
|
|
}
|
|
|
|
// MS-Chap2
|
|
if(m_bMSCHAP2)
|
|
m_pProfile->m_dwArrayAuthenticationTypes.Add(IAS_AUTH_MSCHAP2);
|
|
|
|
// MS-Chap
|
|
if(m_bMSChap)
|
|
m_pProfile->m_dwArrayAuthenticationTypes.Add(IAS_AUTH_MSCHAP);
|
|
|
|
// Chap
|
|
if(m_bMD5Chap)
|
|
m_pProfile->m_dwArrayAuthenticationTypes.Add(IAS_AUTH_MD5CHAP);
|
|
|
|
// PAP
|
|
if(m_bPAP)
|
|
{
|
|
m_pProfile->m_dwArrayAuthenticationTypes.Add(IAS_AUTH_PAP);
|
|
}
|
|
|
|
// UNAUTH
|
|
if(m_bUNAUTH)
|
|
{
|
|
m_pProfile->m_dwArrayAuthenticationTypes.Add(IAS_AUTH_NONE);
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
void CPgAuthentication2kMerge::OnOK()
|
|
{
|
|
CManagedPage::OnOK();
|
|
|
|
}
|
|
|
|
|
|
BOOL CPgAuthentication2kMerge::OnApply()
|
|
{
|
|
if(!GetModified()) return TRUE;
|
|
|
|
if(!TransferDataToProfile())
|
|
return FALSE;
|
|
|
|
m_bAppliedEver = TRUE;
|
|
return CManagedPage::OnApply();
|
|
}
|
|
|
|
void CPgAuthentication2kMerge::OnContextMenu(CWnd* pWnd, CPoint point)
|
|
{
|
|
CManagedPage::OnContextMenu(pWnd, point);
|
|
}
|
|
|
|
BOOL CPgAuthentication2kMerge::OnHelpInfo(HELPINFO* pHelpInfo)
|
|
{
|
|
return CManagedPage::OnHelpInfo(pHelpInfo);
|
|
}
|
|
|
|
BOOL CPgAuthentication2kMerge::OnKillActive()
|
|
{
|
|
UpdateData();
|
|
|
|
if(!TransferDataToProfile())
|
|
return FALSE;
|
|
|
|
return CPropertyPage::OnKillActive();
|
|
}
|
|
|
|
//const IID IID_IEAPProviderConfig = {0x66A2DB19,0xD706,0x11D0,{0xA3,0x7B,0x00,0xC0,0x4F,0xC9,0xDA,0x04}};
|
|
|
|
void CPgAuthentication2kMerge::OnAuthConfigEap()
|
|
{
|
|
// enable / disable configure button based on if the type has config clsID
|
|
int i = m_pBox->GetSelected();
|
|
// Bring up the configuration UI for this EAP
|
|
// ----------------------------------------------------------------
|
|
AuthProviderData * pData;
|
|
CComPtr<IEAPProviderConfig> spEAPConfig;
|
|
|
|
GUID guid;
|
|
HRESULT hr = S_OK;
|
|
ULONG_PTR uConnection = 0;
|
|
BOOL bEnableConfig;
|
|
DWORD dwId;
|
|
|
|
ASSERT(i != -1); // in case of i == -1; the button should be disabled
|
|
if (i != -1)
|
|
{
|
|
bEnableConfig = !(m_EapInfoArray.ElementAt(i).m_stConfigCLSID.IsEmpty());
|
|
}
|
|
else
|
|
bEnableConfig = FALSE;
|
|
|
|
|
|
CHECK_HR( hr = CLSIDFromString((LPTSTR) (LPCTSTR)(m_EapInfoArray.ElementAt(i).m_stConfigCLSID), &guid) );
|
|
|
|
// Create the EAP provider object
|
|
// ----------------------------------------------------------------
|
|
CHECK_HR( hr = CoCreateInstance(guid,
|
|
NULL,
|
|
CLSCTX_INPROC_SERVER,
|
|
IID_IEAPProviderConfig,
|
|
(LPVOID *) &spEAPConfig) );
|
|
|
|
// Configure this EAP provider
|
|
// ----------------------------------------------------------------
|
|
// EAP configure displays its own error message, so no hr is kept
|
|
dwId = _ttol(m_EapInfoArray.ElementAt(i).m_stKey);
|
|
if ( !FAILED(spEAPConfig->Initialize(m_pProfile->m_strMachineName, dwId, &uConnection)) )
|
|
{
|
|
spEAPConfig->ServerInvokeConfigUI(dwId, uConnection, GetSafeHwnd(), 0, 0);
|
|
spEAPConfig->Uninitialize(dwId, uConnection);
|
|
}
|
|
|
|
if ( hr == E_NOTIMPL )
|
|
hr = S_OK;
|
|
|
|
L_ERR:
|
|
if ( FAILED(hr) )
|
|
{
|
|
// Bring up an error message
|
|
// ------------------------------------------------------------
|
|
ReportError(hr, IDS_ERR_CONFIG_EAP, GetSafeHwnd());
|
|
}
|
|
}
|